blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e78ad8a5d8b0d32ef5f6919760e88a29e858567a | 59d26f54e985df3a0df505827b25da0c5ff586e8 | /External/algorithm-master/combinatorics/permutation_hash.cc | 0c0760b9cdf6b41dbd0179d7596c9525acef162d | [] | no_license | minhaz1217/My-C-Journey | 820f7b284e221eff2595611b2e86dc9e32f90278 | 3c8d998ede172e9855dc6bd02cb468d744a9cad6 | refs/heads/master | 2022-12-06T06:12:30.823678 | 2022-11-27T12:09:03 | 2022-11-27T12:09:03 | 160,788,252 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,652 | cc | //
// Permutation Hash
//
// Description:
// hash_perm gives one-to-one correspondence between
// permutations over [0,n) and the integer less than n!.
// unhash_perm is the inverse function of hash_perm.
//
// Algorithm:
// The idea is based on the Fisher-Yates shuffle algorithm:
// while n > 1:
// swap(x[n-1], x[rand() % n]);
// --n;
// For an integer given by a factorial number system:
// hash = d_0 (n-1)! + d_1 (n-2)! + ... + d_{n-1} 0!
// The algorithm computes
// while n > 1:
// swap(x[n-1], x[d_{n-1}]
// --n;
//
// Complexity:
// O(n) time, O(n) space.
//
// Verification:
// self.
#include <iostream>
#include <vector>
#include <cstdio>
#include <algorithm>
#include <numeric>
#include <functional>
using namespace std;
#define fst first
#define snd second
#define all(c) ((c).begin()), ((c).end())
typedef long long ll;
vector<int> unhash_perm(ll r, int n) {
vector<int> x(n);
iota(all(x), 0);
for (; n > 0; --n) {
swap(x[n-1], x[r % n]);
r /= n;
}
return x;
}
ll hash_perm(vector<int> x) {
int n = x.size();
vector<int> y(n);
for (int i = 0; i < n; ++i) y[x[i]] = i;
ll c = 0, fac = 1;
for (; n > 1; --n) {
c += fac * x[n-1]; fac *= n;
swap(x[n-1], x[y[n-1]]);
swap(y[n-1], y[x[y[n-1]]]);
}
return c;
}
int main() {
int n = 9;
vector<int> x(n);
iota(all(x), 0);
do {
ll r = hash_perm(x);
cout << r << ": ";
auto a = unhash_perm(r, n);
for (int i = 0; i < n; ++i) {
cout << a[i] << " ";
if (a[i] != x[i]) exit(-1);
}
cout << endl;
} while (next_permutation(all(x)));
return 0;
}
| [
"minhaz1217@gmail.com"
] | minhaz1217@gmail.com |
9cbb89d5b2d96fd06e33d763292449ee7ba1cdc7 | d16985a72e39109c30b1e975007cc1cabe8a6ac8 | /Server/Server/Base/IDTable.h | 40e67a53005868cd6a8f923d0bc213b43b9b7d98 | [] | no_license | uvbs/wx2Server | e878c3c5c27715a0a1044f6b3229960d36eff4b4 | 78a4b693ac018a4ae82e7919f6e29c97b92554ab | refs/heads/master | 2021-01-18T00:06:34.770227 | 2013-12-13T09:18:54 | 2013-12-13T09:18:54 | 43,288,843 | 2 | 3 | null | 2015-09-28T08:24:45 | 2015-09-28T08:24:44 | null | UTF-8 | C++ | false | false | 707 | h |
#ifndef __IDTABLE_H__
#define __IDTABLE_H__
#include "Type.h"
struct _TABLEITEM
{
uint m_ID ;
VOID* m_pPtr ;
uint m_Status ;
};
class IDTable
{
public :
IDTable( ) ;
~IDTable( ) ;
//初始化表
VOID InitTable( uint MaxItem ) ;
//增加一个表项
BOOL Add( uint id, VOID* pPtr ) ;
//读取信息
VOID* Get( uint id ) ;
//删除表项
VOID Remove( uint id ) ;
//清除所有数据
VOID CleanUp( ) ;
protected :
enum {
IDTS_EMPTY = 0 ,
IDTS_SET = 1 ,
IDTS_USE = 2 ,
};
UINT toIndex( uint id )
{
return (UINT)((id&0xffff)+(id>>6))%m_Count ;
};
private :
_TABLEITEM* m_pTable ;
uint m_Count ;
};
#endif
| [
"tangming032@outlook.com"
] | tangming032@outlook.com |
c02461cb0377e291ab8ce40f0c3b1dc9250d2383 | 9224fb04d78a8d26546dfb1943e32e14355ebcbf | /Algorithm/leetcode105.cpp | 33b0fbd563f551b5743758db10c9dd8665570545 | [] | no_license | Liuyangfeixiao/C- | c561b605c4a35f34f1e98b8d2ae0fcfe9f11b427 | 211b61ad778291cf1578c9cf31a44058f82e0af0 | refs/heads/master | 2022-09-25T10:45:41.747029 | 2022-09-13T09:59:32 | 2022-09-13T09:59:32 | 166,560,179 | 8 | 0 | null | 2020-10-07T06:46:03 | 2019-01-19T15:13:18 | Java | UTF-8 | C++ | false | false | 1,370 | cpp | #include <iostream>
#include <vector>
#include <unordered_map>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode() : val(0), left(nullptr), right(nullptr) {}
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
};
class Solution {
public:
unordered_map<int, int> cmap;
TreeNode *dfs(const vector<int>& preorder, const vector<int>& inorder, int pre_left, int pre_right, int in_left, int in_right) {
if (pre_left > pre_right) return nullptr;
int pre_root = pre_left;
int in_root = cmap[preorder[pre_root]];
TreeNode* root = new TreeNode(preorder[pre_root]);
int left_sz = in_root - in_left;
int right_sz = in_right - in_root;
root->left = dfs(preorder, inorder, pre_left+1, pre_left+left_sz, in_left, in_root-1);
root->right = dfs(preorder, inorder, pre_left+left_sz+1, pre_right, in_root+1, in_right);
return root;
}
TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
int n = preorder.size();
for (int i = 0; i < inorder.size(); ++i) {
cmap[inorder[i]] = i;
}
TreeNode* root = dfs(preorder, inorder, 0, n-1, 0, n-1);
return root;
}
}; | [
"2391461132@qq.com"
] | 2391461132@qq.com |
ec6ce45e4150a4645f1eddbba1ef0cedd1d23546 | afb07dad0c482ac5fe175a7e56988e56d5e9a573 | /LifecycleTools/LifecycleRuntime/include/spri/spri_bindingBuilder.h | 74b94862584bd9fa54fd3765b79e860ada18c2ed | [] | no_license | lctdev/lct-store | 53abb10da7964dbd30854417ccc96d0819d91662 | 136217c665e4e3aede124cd4038d43722ca3dc63 | refs/heads/master | 2021-01-21T05:02:51.621083 | 2016-05-11T19:54:26 | 2016-05-11T19:54:26 | 33,164,640 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 712 | h | #ifndef SPRI_BINDING_BUILDER_H
#define SPRI_BINDING_BUILDER_H
#include <foun/foun_primitives.h>
#include <foun/foun_allocator.h>
namespace lct
{
namespace spri
{
struct FigureAsset;
struct SkinAsset;
struct AnimationAsset;
struct FigureSkinBinding;
struct AnimationFigureBinding;
class BindingBuilder
{
public:
BindingBuilder();
void SetAllocator(lct::foun::Allocator* pAllocator);
FigureSkinBinding* CreateFigureSkinBinding(FigureAsset& figureAsset, SkinAsset& skinAsset);
AnimationFigureBinding* CreateAnimationFigureBinding(AnimationAsset& animationAsset, FigureAsset& figureAsset);
private:
foun::Allocator* m_pAllocator;
};
//namespace spri
}
//namespace lct
}
#endif//SPRI_BINDING_BUILDER_H
| [
"lctdev01@gmail.com"
] | lctdev01@gmail.com |
543912d97a77141ac209f58cd0e09dc8511161e2 | 6fd6bdcc284218883dea1f649daaa26b6529bc21 | /include/Engine/ResourceTypes/IModel.h | aa09aff1960a25037f55bd6029073b97e2978880 | [
"Unlicense"
] | permissive | aknetk/HatchGameEngine | bd7d38807e89ac33a58384f0f254ebdbfbebec54 | 364ee32bda8b469d51c3eaab952eb6e2bda069cf | refs/heads/master | 2022-09-25T06:20:57.789609 | 2022-09-16T03:42:49 | 2022-09-16T03:42:49 | 241,234,254 | 26 | 14 | Unlicense | 2023-08-30T21:04:57 | 2020-02-18T00:05:23 | C | UTF-8 | C++ | false | false | 802 | h | #ifndef ENGINE_RESOURCETYPES_IMODEL_H
#define ENGINE_RESOURCETYPES_IMODEL_H
#define PUBLIC
#define PRIVATE
#define PROTECTED
#define STATIC
#define VIRTUAL
#define EXPOSED
#include <Engine/Includes/Standard.h>
#include <Engine/Rendering/3D.h>
#include <Engine/Graphics.h>
#include <Engine/IO/Stream.h>
class IModel {
public:
Vector3* PositionBuffer;
Vector2* UVBuffer;
Uint32* ColorBuffer;
Sint16* VertexIndexBuffer;
Uint16 VertexCount;
Uint16 VertexIndexCount;
Uint16 FrameCount;
Uint8 VertexFlag;
Uint8 FaceVertexCount;
IModel();
IModel(const char* filename);
bool Load(Stream* stream, const char* filename);
bool ReadRSDK(Stream* stream);
bool HasColors();
void Cleanup();
};
#endif /* ENGINE_RESOURCETYPES_IMODEL_H */
| [
"aurumdude@gmail.com"
] | aurumdude@gmail.com |
4dc7c6317e383b7859cd5a34529e2f4ceb98585f | a1034d9db7582f9a9287c4fa04c0e413dc92d075 | /Google APAC 2017/warmingup/A/A.cpp | f96cd3141261a9bc17d4e76fe527efdb4df9d33f | [] | no_license | STLighter/LearnCoding | 24b62bbc270a8809b05e5304c2a3c39f61f45ee9 | 018ebd7bff4c91a5c3f13a4630d132940147d712 | refs/heads/master | 2020-04-09T21:22:34.354407 | 2019-03-22T09:50:01 | 2019-03-22T09:50:01 | 60,454,595 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 894 | cpp | #include<iostream>
#include<cstdio>
#include<cstdlib>
#include<string>
#include<cstring>
#include<map>
#include<algorithm>
#include<vector>
#include<queue>
#include<cmath>
#include<deque>
#include<stack>
#include<ctime>
#include<bitset>
#include<set>
using namespace std;
typedef long long ll;
string s;
const ll M = 1000000007;
void useFile(string f) {
freopen((f+".in").c_str(),"r",stdin);
freopen((f+".out").c_str(),"w",stdout);
}
void gao(){
cin>>s;
ll ans = 1;
for(int i=0;i<s.length();++i) {
int cnt = 0;
bool used[30] = {0};
for(int j=i-1;j<=i+1;++j) {
if(j<0||j>=s.length())
continue;
if(!used[s[j]-'a']) {
used[s[j]-'a'] = 1;
++cnt;
}
}
ans*=cnt;
ans%=M;
}
printf("%lld\n",ans);
}
int main()
{
useFile("A-large-practice");
int t;
scanf("%d",&t);
for(int i=1;i<=t;++i) {
printf("Case #%d: ",i);
gao();
}
return 0;
}
| [
"123939775@qq.com"
] | 123939775@qq.com |
c5a689b8bb5f71317d136f820d296f7956e1c966 | 67cc55789f71aee8742e9abcf549379aec1b7994 | /dygraph/deploy/cpp/model_deploy/ppdet/include/det_preprocess.h | e50a4b9ce7e470e72b3bc1339186cfa6d4184704 | [
"Apache-2.0"
] | permissive | LaraStuStu/PaddleX | 0bc86222fedde31ebb0914acfd19cc65211a63fb | 70eac2a3e1101a59212db01daa8ced712fcab7fa | refs/heads/develop | 2023-06-03T23:53:12.479750 | 2021-06-24T08:05:00 | 2021-06-24T08:05:00 | 250,249,414 | 1 | 1 | Apache-2.0 | 2020-03-28T13:05:12 | 2020-03-26T12:14:17 | null | UTF-8 | C++ | false | false | 2,180 | h | // Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <string>
#include <vector>
#include "yaml-cpp/yaml.h"
#include "model_deploy/common/include/base_preprocess.h"
#include "model_deploy/common/include/output_struct.h"
namespace PaddleDeploy {
class DetPreprocess : public BasePreprocess {
public:
bool Init(const YAML::Node &yaml_config);
bool PrepareInputs(const std::vector<ShapeInfo>& shape_infos,
std::vector<cv::Mat>* imgs,
std::vector<DataBlob>* inputs,
int thread_num = 1);
bool PrepareInputsForV2(const std::vector<cv::Mat>& imgs,
const std::vector<ShapeInfo>& shape_infos,
std::vector<DataBlob>* inputs,
int thread_num = 1);
bool PrepareInputsForRCNN(const std::vector<cv::Mat>& imgs,
const std::vector<ShapeInfo>& shape_infos,
std::vector<DataBlob>* inputs,
int thread_num = 1);
bool PrepareInputsForYOLO(const std::vector<cv::Mat>& imgs,
const std::vector<ShapeInfo>& shape_infos,
std::vector<DataBlob>* inputs,
int thread_num = 1);
virtual bool Run(std::vector<cv::Mat>* imgs,
std::vector<DataBlob>* inputs,
std::vector<ShapeInfo>* shape_info,
int thread_num = 1);
private:
std::string model_arch_;
std::string version_;
};
} // namespace PaddleDeploy
| [
"245467267@qq.com"
] | 245467267@qq.com |
1064e73a8b3157cfaeae972b0df3ab22618b52b7 | 940aa752c52f55109cc9dcd898b325dfa9a78558 | /src/parser/Parser.cpp | abefc72c59b2b301aab0ffd16a5a5232371a2074 | [] | no_license | robinli08/mirror-monkey | 7d3829f7508caa66237e4ded6562b19111cb4fde | 87c3164cb71bf494b09b6d93371718c69227da04 | refs/heads/master | 2023-06-24T15:11:35.005155 | 2021-07-23T17:58:18 | 2021-07-23T17:58:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,232 | cpp | #include "Parser.hpp"
#include "ArrayLiteral.hpp"
#include "Boolean.hpp"
#include "CallExpression.hpp"
#include "Common.hpp"
#include "Constant.hpp"
#include "Expression.hpp"
#include "FunctionLiteral.hpp"
#include "HashLiteral.hpp"
#include "IfExpression.hpp"
#include "IndexExpression.hpp"
#include "InfixExpression.hpp"
#include "IntegerLiteral.hpp"
#include "Lexer.hpp"
#include "PrefixExpression.hpp"
#include "StringLiteral.hpp"
#include <iostream>
#include <map>
#include <memory>
#include <utility>
#include <vector>
using namespace token;
using namespace std;
using namespace std::placeholders;
using namespace ast;
void Parser::init() {
register_prefix(TOKEN_TYPE::IDENT,
std::bind(&Parser::parse_identifier, this));
register_prefix(TOKEN_TYPE::INT,
std::bind(&Parser::parse_integer_literal, this));
register_prefix(TOKEN_TYPE::STRING,
std::bind(&Parser::parse_string_literal, this));
register_prefix(TOKEN_TYPE::BANG,
std::bind(&Parser::parse_prefix_expression, this));
register_prefix(TOKEN_TYPE::MINUS,
std::bind(&Parser::parse_prefix_expression, this));
register_prefix(TOKEN_TYPE::TRUE_, std::bind(&Parser::parse_boolean, this));
register_prefix(TOKEN_TYPE::FALSE_,
std::bind(&Parser::parse_boolean, this));
register_prefix(TOKEN_TYPE::LPAREN,
std::bind(&Parser::parse_grouped_expression, this));
register_prefix(TOKEN_TYPE::IF,
std::bind(&Parser::parse_if_expression, this));
register_prefix(TOKEN_TYPE::FUNCTION,
std::bind(&Parser::parse_function_literal, this));
register_prefix(TOKEN_TYPE::LBRACKET,
std::bind(&Parser::parse_array_literal, this));
register_prefix(TOKEN_TYPE::LBRACE,
std::bind(&Parser::parse_hash_literal, this));
register_infix(TOKEN_TYPE::PLUS,
std::bind(&Parser::parse_infix_expression, this, _1));
register_infix(TOKEN_TYPE::MINUS,
std::bind(&Parser::parse_infix_expression, this, _1));
register_infix(TOKEN_TYPE::SLASH,
std::bind(&Parser::parse_infix_expression, this, _1));
register_infix(TOKEN_TYPE::ASTERISK,
std::bind(&Parser::parse_infix_expression, this, _1));
register_infix(TOKEN_TYPE::EQ,
std::bind(&Parser::parse_infix_expression, this, _1));
register_infix(TOKEN_TYPE::NOT_EQ,
std::bind(&Parser::parse_infix_expression, this, _1));
register_infix(TOKEN_TYPE::LT,
std::bind(&Parser::parse_infix_expression, this, _1));
register_infix(TOKEN_TYPE::GT,
std::bind(&Parser::parse_infix_expression, this, _1));
register_infix(TOKEN_TYPE::LPAREN,
std::bind(&Parser::parse_call_expression, this, _1));
register_infix(TOKEN_TYPE::LBRACKET,
std::bind(&Parser::parse_index_expression, this, _1));
next_token();
next_token();
}
Parser::Parser(string input) : m_lexer(make_unique<Lexer>(input)) { init(); }
Parser::Parser(Lexer &l) : m_lexer(make_unique<Lexer>(l)) { init(); }
void Parser::next_token() {
m_cur_token = std::move(m_peek_token);
m_peek_token = std::move(m_lexer->next_token());
}
shared_ptr<Program> Parser::parse_program() {
auto program = make_shared<Program>();
while (!cur_token_is(TOKEN_TYPE::EOF_)) {
auto stmt = parse_statement();
if (stmt) {
program->m_statements.push_back(std::move(stmt));
}
next_token();
}
return program;
}
unique_ptr<Statement> Parser::parse_statement() {
switch (m_cur_token->m_type) {
case TOKEN_TYPE::LET:
return parse_let_statement();
break;
case TOKEN_TYPE::RETURN:
return parse_return_statement();
break;
default:
return parse_expression_statement();
break;
}
return nullptr;
}
unique_ptr<ExpressionStatement> Parser::parse_expression_statement() {
auto stmt = make_unique<ExpressionStatement>(*m_cur_token);
auto exp = parse_expression(PRECEDENCE::LOWEST);
if (!exp) {
return nullptr;
}
stmt->m_expression = std::move(exp);
if (peek_token_is(TOKEN_TYPE::SEMICOLON)) {
next_token();
}
return stmt;
}
unique_ptr<ReturnStatement> Parser::parse_return_statement() {
auto stmt = make_unique<ReturnStatement>(*m_cur_token);
next_token();
auto exp = parse_expression(PRECEDENCE::LOWEST);
if (!exp) {
return nullptr;
}
stmt->m_return_value = std::move(exp);
if (peek_token_is(TOKEN_TYPE::SEMICOLON))
next_token();
return stmt;
}
unique_ptr<LetStatement> Parser::parse_let_statement() {
auto stmt = make_unique<LetStatement>(*m_cur_token);
if (!expect_peek(TOKEN_TYPE::IDENT)) {
return nullptr;
}
stmt->m_name =
make_unique<Identifier>(*m_cur_token, m_cur_token->m_literal);
if (!expect_peek(TOKEN_TYPE::ASSIGN)) {
return nullptr;
}
next_token();
auto exp = parse_expression(PRECEDENCE::LOWEST);
if (!exp) {
return nullptr;
}
stmt->m_value = std::move(exp);
if (peek_token_is(TOKEN_TYPE::SEMICOLON))
next_token();
return stmt;
}
bool Parser::cur_token_is(TOKEN_TYPE t) { return m_cur_token->m_type == t; }
bool Parser::peek_token_is(TOKEN_TYPE t) { return m_peek_token->m_type == t; }
bool Parser::expect_peek(TOKEN_TYPE t) {
if (peek_token_is(t)) {
next_token();
return true;
} else {
peek_error(t);
return false;
}
}
PRECEDENCE Parser::cur_precedence() {
auto it = c_precedences.find(m_cur_token->m_type);
if (it != c_precedences.end()) {
return it->second;
}
return PRECEDENCE::LOWEST;
}
PRECEDENCE Parser::peek_precedence() {
auto it = c_precedences.find(m_peek_token->m_type);
if (it != c_precedences.end()) {
return it->second;
}
return PRECEDENCE::LOWEST;
}
void Parser::register_prefix(TOKEN_TYPE token_type, fn_prefix fn) {
m_prefix_fns[token_type] = fn;
}
void Parser::register_infix(TOKEN_TYPE token_type, fn_infix fn) {
m_infix_fns[token_type] = fn;
}
unique_ptr<Expression> Parser::parse_identifier() {
return make_unique<Identifier>(*m_cur_token, m_cur_token->m_literal);
}
unique_ptr<Expression> Parser::parse_integer_literal() {
auto lit = make_unique<IntegerLiteral>(*m_cur_token);
lit->m_value =
static_cast<int64_t>(stoll(m_cur_token->m_literal, nullptr, 10));
return lit;
}
vector<string> Parser::errors() { return m_errors; }
void Parser::peek_error(TOKEN_TYPE t) {
string msg = "expected next token to be " + Token::token_type_value(t) +
", got " + Token::token_type_value(m_peek_token->m_type) +
" instead";
m_errors.push_back(msg);
}
void Parser::no_prefix_parse_fn_error(TOKEN_TYPE t) {
string msg =
"no prefix parse function for " + Token::token_type_value(t) + " found";
m_errors.push_back(msg);
}
unique_ptr<Expression> Parser::parse_expression(PRECEDENCE precedence) {
auto it = m_prefix_fns.find(m_cur_token->m_type);
if (it == m_prefix_fns.end()) {
no_prefix_parse_fn_error(m_cur_token->m_type);
return nullptr;
}
auto left_exp = it->second();
while (!peek_token_is(TOKEN_TYPE::SEMICOLON) &&
precedence < peek_precedence()) {
auto it = m_infix_fns.find(m_peek_token->m_type);
if (it == m_infix_fns.end()) {
return left_exp;
}
next_token();
left_exp = it->second(std::move(left_exp)); // parse_infix_expression
}
return left_exp;
}
unique_ptr<Expression>
Parser::parse_infix_expression(unique_ptr<Expression> left) {
auto expression = make_unique<InfixExpression>(
*m_cur_token, m_cur_token->m_literal, std::move(left));
auto precedence = cur_precedence();
next_token();
expression->m_right = parse_expression(precedence);
return expression;
}
unique_ptr<Expression> Parser::parse_boolean() {
return make_unique<Boolean>(*m_cur_token, cur_token_is(TOKEN_TYPE::TRUE_));
}
unique_ptr<Expression> Parser::parse_prefix_expression() {
auto expression =
make_unique<PrefixExpression>(*m_cur_token, m_cur_token->m_literal);
next_token();
expression->m_right = parse_expression(PRECEDENCE::PREFIX);
return expression;
}
unique_ptr<Expression> Parser::parse_grouped_expression() {
next_token();
auto exp = parse_expression(PRECEDENCE::LOWEST);
if (!expect_peek(TOKEN_TYPE::RPAREN)) {
return nullptr;
}
return exp;
}
unique_ptr<Expression> Parser::parse_if_expression() {
auto expression = make_unique<IfExpression>(*m_cur_token);
if (!expect_peek(TOKEN_TYPE::LPAREN)) {
return nullptr;
}
next_token();
expression->m_condition = parse_expression(PRECEDENCE::LOWEST);
if (!expect_peek(TOKEN_TYPE::RPAREN)) {
return nullptr;
}
if (!expect_peek(TOKEN_TYPE::LBRACE)) {
return nullptr;
}
expression->m_consequence = parse_block_statement();
if (peek_token_is(TOKEN_TYPE::ELSE)) {
next_token();
if (!expect_peek(TOKEN_TYPE::LBRACE)) {
return nullptr;
}
expression->m_alternative = parse_block_statement();
}
return expression;
}
unique_ptr<BlockStatement> Parser::parse_block_statement() {
auto block = make_unique<BlockStatement>(*m_cur_token);
next_token();
while (!cur_token_is(TOKEN_TYPE::RBRACE) &&
!cur_token_is(TOKEN_TYPE::EOF_)) {
auto stmt = parse_statement();
if (stmt != nullptr) {
block->m_statements.push_back(std::move(stmt));
}
next_token();
}
return block;
}
unique_ptr<Expression> Parser::parse_function_literal() {
auto lit = make_unique<FunctionLiteral>(*m_cur_token);
if (!expect_peek(TOKEN_TYPE::LPAREN)) {
return nullptr;
}
if (auto params = parse_function_parameters()) {
lit->m_parameters = std::move(params);
} else {
return nullptr;
}
if (!expect_peek(TOKEN_TYPE::LBRACE)) {
return nullptr;
}
lit->m_body = parse_block_statement();
return lit;
}
unique_ptr<vector<unique_ptr<Identifier>>> Parser::parse_function_parameters() {
auto identifiers = make_unique<vector<unique_ptr<Identifier>>>();
if (peek_token_is(TOKEN_TYPE::RPAREN)) {
next_token();
return identifiers;
}
next_token();
auto ident = make_unique<Identifier>(*m_cur_token, m_cur_token->m_literal);
identifiers->push_back(std::move(ident));
while (peek_token_is(TOKEN_TYPE::COMMA)) {
next_token();
next_token();
auto ident =
make_unique<Identifier>(*m_cur_token, m_cur_token->m_literal);
identifiers->push_back(std::move(ident));
}
if (!expect_peek(TOKEN_TYPE::RPAREN)) {
return nullptr;
}
return identifiers;
}
unique_ptr<Expression>
Parser::parse_call_expression(unique_ptr<Expression> funciton) {
auto exp = make_unique<CallExpression>(*m_cur_token, std::move(funciton));
exp->m_arguments = parse_expression_list(TOKEN_TYPE::RPAREN);
return exp;
}
// abandoned, replace by parse_expression_list
unique_ptr<vector<unique_ptr<Expression>>> Parser::parse_call_arguments() {
auto args = make_unique<vector<unique_ptr<Expression>>>();
if (peek_token_is(TOKEN_TYPE::RPAREN)) {
next_token();
return args;
}
next_token();
auto exp = parse_expression(PRECEDENCE::LOWEST);
args->push_back(std::move(exp));
while (peek_token_is(TOKEN_TYPE::COMMA)) {
next_token();
next_token();
auto exp = parse_expression(PRECEDENCE::LOWEST);
args->push_back(std::move(exp));
}
if (!expect_peek(TOKEN_TYPE::RPAREN)) {
return nullptr;
}
return args;
}
// copy from parse_call_arguments
unique_ptr<vector<unique_ptr<Expression>>>
Parser::parse_expression_list(TOKEN_TYPE end) {
auto args = make_unique<vector<unique_ptr<Expression>>>();
if (peek_token_is(end)) {
next_token();
return args;
}
next_token();
auto exp = parse_expression(PRECEDENCE::LOWEST);
args->push_back(std::move(exp));
while (peek_token_is(TOKEN_TYPE::COMMA)) {
next_token();
next_token();
auto exp = parse_expression(PRECEDENCE::LOWEST);
args->push_back(std::move(exp));
}
if (!expect_peek(end)) {
return nullptr;
}
return args;
}
unique_ptr<Expression> Parser::parse_string_literal() {
return make_unique<StringLiteral>(*m_cur_token, m_cur_token->m_literal);
}
unique_ptr<Expression> Parser::parse_array_literal() {
auto array = make_unique<ArrayLiteral>(*m_cur_token);
array->m_elements = parse_expression_list(TOKEN_TYPE::RBRACKET);
return array;
}
unique_ptr<Expression>
Parser::parse_index_expression(unique_ptr<Expression> left) {
auto exp = make_unique<IndexExpression>(*m_cur_token, std::move(left));
next_token();
exp->m_index = parse_expression(PRECEDENCE::LOWEST);
if (!expect_peek(TOKEN_TYPE::RBRACKET))
return nullptr;
return exp;
}
unique_ptr<Expression> Parser::parse_hash_literal() {
auto hash = make_unique<HashLiteral>(*m_cur_token);
hash->m_pairs =
make_unique<map<shared_ptr<Expression>, shared_ptr<Expression>>>();
while (!peek_token_is(TOKEN_TYPE::RBRACE)) {
next_token();
auto key = parse_expression(PRECEDENCE::LOWEST);
if (!expect_peek(TOKEN_TYPE::COLON)) {
return nullptr;
}
next_token();
auto value = parse_expression(PRECEDENCE::LOWEST);
(*hash->m_pairs)[std::move(key)] = std::move(value);
if (!peek_token_is(TOKEN_TYPE::RBRACE) &&
!expect_peek(TOKEN_TYPE::COMMA)) {
return nullptr;
}
}
if (!expect_peek(TOKEN_TYPE::RBRACE)) {
return nullptr;
}
return hash;
} | [
"2633610394@qq.com"
] | 2633610394@qq.com |
dcac9257b6c8f557f0b790377f7a39d58d49d44e | 03d83787d0749a0d2bbc6a44aaffd81cc1f2a0e9 | /Beijing_1232_lines/Beijing/Beijing - cpptest/Example39.cpp | a13c4c27b3761c72952a92bac8605bc9ccc02e7e | [] | no_license | dortal/ExampleBeijing | c374cb436b8da22c50aaa4ab1fc31419dad2f503 | 08f453c550c48c0e121c384bcb03a0a41e7a516f | refs/heads/master | 2016-09-06T08:28:08.294655 | 2015-05-12T09:33:24 | 2015-05-12T09:33:24 | 35,479,515 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,530 | cpp | /* The principle here is that incorrectly casting a pointer to a C++
object potentially breaks the abstraction represented by that object,
since the (non-virtual) methods called on that object are determined
at compile-time, while the actual type of the object might not be
known until runtime. In this example, a seemingly safe strncpy causes
a buffer overflow. (In gcc the buffer overflows into object itself
and then onto the stack, for this particular program. With some compilers
the overflow might modify the object's virtual table.)
It's hard to say what a scanner should flag in this test file. In my
opinion the only casts allowed should be virtual member functions that
cast the this pointer to the class that owns them (e.g., As()
functions) and I think that prevents this type of vulnerability.
*/
#include <iostream>
class Stringg
{
};
class LongString: public Stringg
{
private:
static const int maxLength = 1023;
char contents[1024];
public:
void AddString(char *str)
{
strncpy(contents, str, maxLength);
contents[strlen(contents)] = 0;
}
};
class ShortString: public Stringg
{
private:
static const int maxLength = 5;
char contents[6];
public:
void AddString(char *str)
{
strncpy(contents, str, maxLength);
contents[strlen(contents)] = 0;
}
};
void func(Stringg *str)
{
LongString *lstr = (LongString *)str;
lstr->AddString("hello world");
}
main(int argc, char **argv)
{
ShortString str;
func(&str);
}
| [
"annas@Annas-PC.dm.cx"
] | annas@Annas-PC.dm.cx |
8e7033300d90556fe8b3298d9639c0c4d8d31ad0 | d52d5fdbcd848334c6b7799cad7b3dfd2f1f33e4 | /third_party/folly/folly/logging/test/LogStreamTest.cpp | 9ab8bc9cd575710937ac3ced1d3e8b0a90e5fe59 | [
"Apache-2.0"
] | permissive | zhiliaoniu/toolhub | 4109c2a488b3679e291ae83cdac92b52c72bc592 | 39a3810ac67604e8fa621c69f7ca6df1b35576de | refs/heads/master | 2022-12-10T23:17:26.541731 | 2020-07-18T03:33:48 | 2020-07-18T03:33:48 | 125,298,974 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,107 | cpp | /*
* Copyright 2017-present Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <folly/logging/LogStream.h>
#include <folly/portability/GTest.h>
using namespace folly;
TEST(LogStream, simple) {
LogStream ls{nullptr};
ls << "test";
ls << " foobar";
EXPECT_EQ("test foobar", ls.extractString());
}
TEST(LogStream, largeMessage) {
std::string largeString(4096, 'a');
LogStream ls{nullptr};
ls << "prefix ";
ls << largeString;
ls << " suffix";
EXPECT_EQ("prefix " + largeString + " suffix", ls.extractString());
}
| [
"yangshengzhi1@bigo.sg"
] | yangshengzhi1@bigo.sg |
ea17a93756a311477e82e67b3e7644205ebce36d | b2802041b897319dd71a78cc11de51b15ffec1e7 | /fallingStars.cpp | 861a023d97734eec1d76c86bf37689e554ec4c72 | [] | no_license | SabiqueShadmanRafeed/FallingStars | e71d33226ca890c54db9739585527f951c943d3d | 1aa35d4784e4c33e92142ab769b9685b9c79f3e8 | refs/heads/master | 2021-04-15T14:00:35.303584 | 2018-03-23T14:43:43 | 2018-03-23T14:43:43 | 126,498,145 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,948 | cpp | #include <bits/stdc++.h>
#include <stdlib.h>
#include <fstream>
#include <math.h>
#include <GL/glu.h>
#include <GL/glut.h>
#include"star.h"
#include"nightSky.h"
#include"menu.h"
#include"gameOver.h"
#include"PauseScreen.h"
using namespace std;
static int score;
static int life= 7;
float _angle = 0.0;
float px = 7.0;
//float _cameraAngle = 0.0;
float _ang_tri = 0.0;
float posx = 0;
float posy =-2.20;
float dposx1=-2.0,dposx2=0,dposx3=1.5;
float dposy1=2.9,dposy2=4,dposy3=5.5;//= 2.9;
float cposx1 = -2, cposx2 = 2, cposx3 = 0; //added this
float cposy1 = 4, cposy2 = 2, cposy3 = 0; //added this
float z = 5, y=2.5;
float dLifeposx1=0.0;
float dLifeposy1=50.0;
bool playgame=false;
bool gameover = false;
bool gamemenu = true;
bool pause= false;
char line[10]="Point";
Star star;
NightSky nightSky;
Menu menu;
GameOverScreen gameOverScreen;
PauseScreen pauseScreen;
void displayRasterText(float x ,float y ,float z ,char *stringToDisplay) {
int length;
glRasterPos3f(x, y, z);
length = strlen(stringToDisplay);
for(int i=0 ;i<length ;i++){
glutBitmapCharacter(GLUT_BITMAP_TIMES_ROMAN_24 ,stringToDisplay[i]);
}
}
//added comets
float RandomComet(float min, float max)
{
float r = (float)rand() / (float)RAND_MAX;
return min + r * (max - min);
}
void comet1()
{
cposx1 = RandomComet(-2,6);
cposy1 = RandomComet(-2,4);
}
void comet2()
{
cposx1 = RandomComet(-4,4);
cposy1 = RandomComet(-2,6);
}
void comet3()
{
cposx1 = RandomComet(-1,6);
cposy1 = RandomComet(-4,4);
}
float RandomFloat(float min, float max)
{
float r = (float)rand() / (float)RAND_MAX;
return min + r * (max - min);
}
void genX1Y1()
{
dposx1 = RandomFloat(-2.0,-1.5);
dposy1 = RandomFloat(2.5,2.9);
}
void genX2Y2()
{
dposx2 = RandomFloat(-1,2.0);
dposy2 = RandomFloat(4.0,5.0);
}
void genX3Y3()
{
dposx3 = RandomFloat(1.2,2.2);
dposy3 = RandomFloat(6.0,7.0);
}
void genLifeX1Y1()
{
dLifeposx1 = RandomFloat(-1.2,2.2);
dLifeposy1 = RandomFloat(50.0,60.0);
}
//Initializes 3D rendering
void initRendering() {
glEnable(GL_DEPTH_TEST);
}
void handleResize(int w, int h) {
glViewport(0, 0, w, h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(45.0, (double)w / (double)h, 1.0, 200.0);
}
//Draws the 3D scene
void drawScene() {
glClearColor(0.000, 0.000, 0.1, 1.0); //added this
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW); //Switch to the drawing perspective
glLoadIdentity(); //Reset the drawing perspective
//glRotatef(-_cameraAngle, 0.0, 1.0, 0.0); //Rotate the camera
glTranslatef(0.0, 0.0, -7.0);//Move forward 7 unit
glColor3f(1,1,1);
nightSky.displaySky();
if(gameover){
ofstream myfile;
myfile.open ("score.txt");
myfile << score;
myfile.close();
ifstream scorefromfile("score.txt");
string myscore;
getline(scorefromfile, myscore);
const char *ch = myscore.c_str();
scorefromfile.close();
glColor3f(1.0,0.0, 0.0);
gameOverScreen.drawGameOverScreen();
glColor3f(0.5,0.2, 0.8);
gameOverScreen.drawText("Your Score is: ", 16, -0.33, 0.2);
glColor3f(1.0,1.0, 1.0);
gameOverScreen.drawText(ch, 2, 0.15, 0.2);
gameOverScreen.drawText("Restart? Press R", 16, -0.33, -0.40);
nightSky.x=-3.0;
nightSky.y=-0.5;
nightSky.cloudx1=-1.5;
nightSky.cloudx2=6;
}
if(pause){
pauseScreen.drawText("GAME PAUSED !!", 16, -0.33, 0.2);
}
if(gamemenu)
menu.createMenu();
if(playgame){
//added this comet
glPushMatrix();
glTranslatef(cposx1, cposy1, 0.0);
star.drawComet();
glPopMatrix();
glPushMatrix();
glTranslatef(cposx2, cposy2, 0.0);
star.drawComet();
glPopMatrix();
glPushMatrix();
glTranslatef(cposx3, cposy3, 0.0);
star.drawComet();
glPopMatrix();
//red ring
glColor3f(1,0,0);
glPushMatrix(); //Save the current state of transformations
glTranslatef(posx, posy, 0.0);
glRotatef(55, 1.0, 0.0, 0.0);
glutWireTorus(0.03,0.4,20,30);
glPopMatrix();
//falling objects
glPushMatrix(); //Save the current state of transformations
glTranslatef(dposx1, dposy1, 0.0);
star.drawStar();
glPopMatrix();
glPushMatrix(); //Save the current state of transformations
glTranslatef(dposx2, dposy2, 0.0);
star.drawStar();
glPopMatrix();
glPushMatrix(); //Save the current state of transformations
glTranslatef(dposx3, dposy3, 0.0);
star.drawStar();
glPopMatrix();
glPushMatrix(); //Save the current state of transformations
glTranslatef(dLifeposx1, dLifeposy1, 0.0);
star.drawStar();
glColor3f(1,0,0);
glutWireTorus(.01,.16,30,20);
glPopMatrix();
char temp[40];
glPushMatrix();
sprintf(temp,"SCORE : %d",score);
displayRasterText(-2.3 ,2.5,0,temp);
glPopMatrix();
char temp1[40];
glPushMatrix();
sprintf(temp1,"LIFE : %d",life);
displayRasterText(1.5,2.5,0,temp1);
glPopMatrix();
}
glutSwapBuffers();
}
void Keyboard(unsigned char key, int x, int y){
if(key=='d' || key=='D'){
if(posx<1.8){
posx+=.5;
}
}
if(key=='a' || key=='A'){
if(posx>=-1.8){
posx-=.5;
}
}
if(key=='q'|| key=='Q')
exit(0);
if(key=='R'|| key=='r'){
life= 7;
score = 0;
genX1Y1();
genX2Y2();
genX3Y3();
genLifeX1Y1();
//menu.createMenu();
gameover= false;
playgame = true;
}
if(key=='p'|| key=='P'){
if(playgame){
playgame = false;
pause = true;
}
else{
playgame =true;
pause= false;
}
}
}
void SpecialInput(int key, int x, int y){
if(key == GLUT_KEY_RIGHT){
if(posx<1.8){
posx+=.5;
}
}
if(key == GLUT_KEY_LEFT ){
if(posx>=-1.8){
posx-=.5;
}
}
}
void update(int value) {
if(playgame){
//cout<<"SCORE : "<<score<<" HP : "<<life<<endl;
float posPosx,negPosx;
posPosx = posx+.4;
negPosx = posx-.4;
if((dposx1>=negPosx && dposx1<= posPosx )&& (dposy1<=-2.2 && dposy1>-2.23) ){
//cout<<"COLLISSION DETECTED :D dpos 1"<<endl;
score++;
genX1Y1();
}
else if(dposy1<=-2.2 && dposy1>-2.23)
{
//cout<<"one life gone :D dpos 1 "<<endl;
life--;
if(life<=0){
playgame = false;
gameover = true;
}
}
if((dposx2>=negPosx && dposx2<= posPosx )&& (dposy2<=-2.2 && dposy2>-2.23) ){
//cout<<"COLLISSION DETECTED :D dpos2"<<endl;
score++;
genX2Y2();
}
else if(dposy2<=-2.2 && dposy2>-2.23)
{
//cout<<"one life gone :D dpos 2 "<<endl;
life--;
if(life<=0){
playgame = false;
gameover = true;
}
}
if((dposx3>=negPosx && dposx3<= posPosx )&& (dposy3<=-2.2 && dposy3>-2.23) ){
//cout<<"COLLISSION DETECTED :D dpos 3"<<endl;
score++;
genX3Y3();
}
else if(dposy3<=-2.2 && dposy3>-2.23){
//cout<<"one life gone :D dpos 3 "<<endl;
life--;
if(life<=0){
playgame = false;
gameover = true;
}
}
if((dLifeposx1>=negPosx && dLifeposx1<= posPosx )&& (dLifeposy1<=-2.2 && dLifeposy1>-2.23) ){
//cout<<"COLLISSION DETECTED :D dpos 3"<<endl;
score++;
life+=5;
genLifeX1Y1();
}
//added this
if(cposx1<-3 || cposy1<-4){
comet1();
}
if(cposx1<-5 || cposy1<-4){
comet1();
}
if(cposx1<-2 || cposy1<-6){
comet1();
}
cposx1-=0.05;
cposy1-=0.05;
cposx2-=0.05;
cposy2-=0.05;
cposx3-=0.05;
cposy3-=0.05;
if(dposy1< -5.5){
genX1Y1();
}
if(dposy2<-5.5){
genX2Y2();
}
if(dposy3<-5.5){
genX3Y3();
}
if(dLifeposy1<-5.5){
genLifeX1Y1();
}
dposy1-=.03;
dposy2-=.03;
dposy3-=.03;
dLifeposy1-=.03;
if(nightSky.x >3.1 && nightSky.y>3.61){
nightSky.x=-3.5;
nightSky.y=-0.5;
}
if(nightSky.cloudx1>3.5){
nightSky.cloudx1=-1.5;
}
if(nightSky.cloudx2<-1.5){
nightSky.cloudx2=6;
}
nightSky.cloudx1+=0.004;
nightSky.cloudx2-=0.005;
nightSky.x+=0.006;
nightSky.y+=0.001;
}
if(y>=-0.6)
y-=0.05;
if(z>=0.15)
z-=0.05;
star.StarUpdate();
glutPostRedisplay();
glutTimerFunc(13, update, 0);
}
void mouseClick(int button, int state, int x, int y)
{
if (button == GLUT_LEFT_BUTTON && state == GLUT_DOWN){
//cout<<(double)x<< " "<<(double)y<<endl;
if(x >= 245 && x <=340 && y >=245 && y <=273)
exit(0);
else if(x >= 245 && x <=340 && y >=205 && y <=235){
gamemenu = false;
playgame= true;
}
}
}
int main(int argc, char** argv) {
//Initialize GLUT
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
//glutInitWindowSize(800, 600);
//glutInitWindowPosition(500,100);
glutInitWindowSize(600, 700);
glutInitWindowPosition(500,00);
//Create the window
glutCreateWindow("Falling Star");
initRendering();
//Set handler functions
glutDisplayFunc(drawScene);
glutReshapeFunc(handleResize);
glutTimerFunc(15, update, 0); //Add a timer
glutSpecialFunc(SpecialInput); // for arrow keys
glutKeyboardFunc(Keyboard);
glutMouseFunc(mouseClick);
//init();
glutMainLoop();
return 0;
}
/*
void init(void)
{
GLfloat mat_specular[] = { 1.0, 1.0, 1.0, 1.0 };
GLfloat mat_shininess[] = { 20.0 };
GLfloat light_position[] = { 0.2, 0.8, 0.3, 1.0 };
GLfloat red_light_position[] = { 0.5, 0.5, 0.5, 1.0 };
GLfloat blue_light_position[] = { 0.2, 0.8, 0.9, 1.0 };
GLfloat white_light[] = { 0.0, 0.0,0.0, 0.0 };
GLfloat red_light[] = { 1.0, 0.0,0.0, 1.0 };
GLfloat blue_light[] = { 1.0, 1.0,1.0, 1.0 };
GLfloat lmodel_ambient[] = { 0.2, 0.2, 0.2, 0.2 };
glClearColor(0.0, 0.0, 0.0, 1.0);
glShadeModel(GL_SMOOTH);
glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular);
glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess);
glLightfv(GL_LIGHT0, GL_POSITION, light_position);
glLightfv(GL_LIGHT0, GL_DIFFUSE, white_light);
glLightfv(GL_LIGHT0, GL_SPECULAR, white_light);
glLightfv(GL_LIGHT1, GL_POSITION, red_light_position);
glLightfv(GL_LIGHT1, GL_DIFFUSE,red_light);
glLightfv(GL_LIGHT1, GL_SPECULAR, red_light);
glLightfv(GL_LIGHT2, GL_POSITION, blue_light_position);
glLightfv(GL_LIGHT2, GL_DIFFUSE, blue_light);
glLightfv(GL_LIGHT2, GL_SPECULAR, blue_light);
glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient);
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0);
glEnable(GL_LIGHT1);
glEnable(GL_LIGHT2);
glEnable(GL_DEPTH_TEST);
}
*/
| [
"32905440+SabiqueShadmanRafeed@users.noreply.github.com"
] | 32905440+SabiqueShadmanRafeed@users.noreply.github.com |
9bc9e7c7a0f37332f64068957f70a210f78f1467 | 56b65fbf1880a8323ab7dc15c9694d5975d2cd2c | /src/sync.h | ab8f51dcb7881df3436f8f070a127231f4202fa0 | [
"MIT"
] | permissive | btclambo/BitcoinLambo | 3e4043e9486ea42401f7d38fc5d5ebbbb38b005e | fc823516765338f06bce5ad8c7e3a5d6fe90f22b | refs/heads/master | 2020-03-06T18:31:07.897658 | 2018-03-27T15:34:49 | 2018-03-27T15:34:49 | 127,008,721 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,456 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOINLAMBO_SYNC_H
#define BITCOINLAMBO_SYNC_H
#include "threadsafety.h"
#include <boost/thread/condition_variable.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/recursive_mutex.hpp>
////////////////////////////////////////////////
// //
// THE SIMPLE DEFINITION, EXCLUDING DEBUG CODE //
// //
////////////////////////////////////////////////
/*
CCriticalSection mutex;
boost::recursive_mutex mutex;
LOCK(mutex);
boost::unique_lock<boost::recursive_mutex> criticalblock(mutex);
LOCK2(mutex1, mutex2);
boost::unique_lock<boost::recursive_mutex> criticalblock1(mutex1);
boost::unique_lock<boost::recursive_mutex> criticalblock2(mutex2);
TRY_LOCK(mutex, name);
boost::unique_lock<boost::recursive_mutex> name(mutex, boost::try_to_lock_t);
ENTER_CRITICAL_SECTION(mutex); // no RAII
mutex.lock();
LEAVE_CRITICAL_SECTION(mutex); // no RAII
mutex.unlock();
*/
///////////////////////////////
// //
// THE ACTUAL IMPLEMENTATION //
// //
///////////////////////////////
/**
* Template mixin that adds -Wthread-safety locking
* annotations to a subset of the mutex API.
*/
template <typename PARENT>
class LOCKABLE AnnotatedMixin : public PARENT
{
public:
void lock() EXCLUSIVE_LOCK_FUNCTION()
{
PARENT::lock();
}
void unlock() UNLOCK_FUNCTION()
{
PARENT::unlock();
}
bool try_lock() EXCLUSIVE_TRYLOCK_FUNCTION(true)
{
return PARENT::try_lock();
}
};
#ifdef DEBUG_LOCKORDER
void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false);
void LeaveCritical();
std::string LocksHeld();
void AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs);
void DeleteLock(void* cs);
#else
void static inline EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false)
{
}
void static inline LeaveCritical() {}
void static inline AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs) {}
void static inline DeleteLock(void* cs) {}
#endif
#define AssertLockHeld(cs) AssertLockHeldInternal(#cs, __FILE__, __LINE__, &cs)
/**
* Wrapped boost mutex: supports recursive locking, but no waiting
* TODO: We should move away from using the recursive lock by default.
*/
class CCriticalSection : public AnnotatedMixin<boost::recursive_mutex>
{
public:
~CCriticalSection()
{
DeleteLock((void*)this);
}
};
/** Wrapped boost mutex: supports waiting but not recursive locking */
typedef AnnotatedMixin<boost::mutex> CWaitableCriticalSection;
/** Just a typedef for boost::condition_variable, can be wrapped later if desired */
typedef boost::condition_variable CConditionVariable;
#ifdef DEBUG_LOCKCONTENTION
void PrintLockContention(const char* pszName, const char* pszFile, int nLine);
#endif
/** Wrapper around boost::unique_lock<Mutex> */
template <typename Mutex>
class SCOPED_LOCKABLE CMutexLock
{
private:
boost::unique_lock<Mutex> lock;
void Enter(const char* pszName, const char* pszFile, int nLine)
{
EnterCritical(pszName, pszFile, nLine, (void*)(lock.mutex()));
#ifdef DEBUG_LOCKCONTENTION
if (!lock.try_lock()) {
PrintLockContention(pszName, pszFile, nLine);
#endif
lock.lock();
#ifdef DEBUG_LOCKCONTENTION
}
#endif
}
bool TryEnter(const char* pszName, const char* pszFile, int nLine)
{
EnterCritical(pszName, pszFile, nLine, (void*)(lock.mutex()), true);
lock.try_lock();
if (!lock.owns_lock())
LeaveCritical();
return lock.owns_lock();
}
public:
CMutexLock(Mutex& mutexIn, const char* pszName, const char* pszFile, int nLine, bool fTry = false) EXCLUSIVE_LOCK_FUNCTION(mutexIn) : lock(mutexIn, boost::defer_lock)
{
if (fTry)
TryEnter(pszName, pszFile, nLine);
else
Enter(pszName, pszFile, nLine);
}
CMutexLock(Mutex* pmutexIn, const char* pszName, const char* pszFile, int nLine, bool fTry = false) EXCLUSIVE_LOCK_FUNCTION(pmutexIn)
{
if (!pmutexIn) return;
lock = boost::unique_lock<Mutex>(*pmutexIn, boost::defer_lock);
if (fTry)
TryEnter(pszName, pszFile, nLine);
else
Enter(pszName, pszFile, nLine);
}
~CMutexLock() UNLOCK_FUNCTION()
{
if (lock.owns_lock())
LeaveCritical();
}
operator bool()
{
return lock.owns_lock();
}
};
typedef CMutexLock<CCriticalSection> CCriticalBlock;
#define PASTE(x, y) x##y
#define PASTE2(x, y) PASTE(x, y)
#define LOCK(cs) CCriticalBlock PASTE2(criticalblock, __COUNTER__)(cs, #cs, __FILE__, __LINE__)
#define LOCK2(cs1, cs2) CCriticalBlock criticalblock1(cs1, #cs1, __FILE__, __LINE__), criticalblock2(cs2, #cs2, __FILE__, __LINE__)
#define TRY_LOCK(cs, name) CCriticalBlock name(cs, #cs, __FILE__, __LINE__, true)
#define ENTER_CRITICAL_SECTION(cs) \
{ \
EnterCritical(#cs, __FILE__, __LINE__, (void*)(&cs)); \
(cs).lock(); \
}
#define LEAVE_CRITICAL_SECTION(cs) \
{ \
(cs).unlock(); \
LeaveCritical(); \
}
class CSemaphore
{
private:
boost::condition_variable condition;
boost::mutex mutex;
int value;
public:
CSemaphore(int init) : value(init) {}
void wait()
{
boost::unique_lock<boost::mutex> lock(mutex);
while (value < 1) {
condition.wait(lock);
}
value--;
}
bool try_wait()
{
boost::unique_lock<boost::mutex> lock(mutex);
if (value < 1)
return false;
value--;
return true;
}
void post()
{
{
boost::unique_lock<boost::mutex> lock(mutex);
value++;
}
condition.notify_one();
}
};
/** RAII-style semaphore lock */
class CSemaphoreGrant
{
private:
CSemaphore* sem;
bool fHaveGrant;
public:
void Acquire()
{
if (fHaveGrant)
return;
sem->wait();
fHaveGrant = true;
}
void Release()
{
if (!fHaveGrant)
return;
sem->post();
fHaveGrant = false;
}
bool TryAcquire()
{
if (!fHaveGrant && sem->try_wait())
fHaveGrant = true;
return fHaveGrant;
}
void MoveTo(CSemaphoreGrant& grant)
{
grant.Release();
grant.sem = sem;
grant.fHaveGrant = fHaveGrant;
fHaveGrant = false;
}
CSemaphoreGrant() : sem(nullptr), fHaveGrant(false) {}
CSemaphoreGrant(CSemaphore& sema, bool fTry = false) : sem(&sema), fHaveGrant(false)
{
if (fTry)
TryAcquire();
else
Acquire();
}
~CSemaphoreGrant()
{
Release();
}
operator bool()
{
return fHaveGrant;
}
};
#endif // BITCOINLAMBO_SYNC_H
| [
"alfa.alvaro.rodriguez@gmail.com"
] | alfa.alvaro.rodriguez@gmail.com |
7794ec39d413118a5e5cfdb5fbda4f03de5c5719 | 19a012b6a66374235771a8c2baee19560e98f8d7 | /TJU/contests/Preparacion_UAM_2012II/candy_sharing_game.cpp | 95fa5e0076507b5967d3de9b83aae5340e18b7e5 | [] | no_license | juancate/CompetitivePrograming | 735e992fd6ac9c264059604fb7a2f2dfce74d330 | 8cea3695fd0dec7122c94ab45b4517cb13232fb3 | refs/heads/master | 2021-01-25T10:06:47.576470 | 2018-12-19T01:11:41 | 2018-12-19T01:11:41 | 14,966,965 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,592 | cpp | #include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <ctime>
#include <cctype>
#include <cassert>
#include <iostream>
#include <sstream>
#include <iomanip>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <list>
#include <set>
#include <map>
#include <bitset>
#include <algorithm>
#include <numeric>
#include <complex>
#define D(x) cerr << #x << " = " << (x) << endl;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define FOREACH(it,v) for(typeof((v).begin()) it=(v).begin(); it!=(v).end(); ++it)
#define ALL(v) (v).begin(), (v).end()
using namespace std;
typedef long long int64;
const int INF = (int)(1e9);
const int64 INFLL = (int64)(1e18);
const double EPS = 1e-13;
int n;
vector<int> numbers;
bool check() {
int first = numbers[0];
REP(i, 1, n)
if(numbers[i] != first)
return false;
return true;
}
int main() {
while(~scanf("%d", &n) && n) {
numbers.assign(n, 0);
REP(i, 0, n)
scanf("%d", &numbers[i]);
int blows = 0;
while(!check()) {
vector<int> current(n);
for(int i = 1; i < n; i++) {
current[i] = (numbers[i-1] >> 1) + (numbers[i] >> 1);
if(current[i] & 1)
current[i]++;
}
current[0] = (numbers[n-1] >> 1) + (numbers[0] >> 1);
if(current[0] & 1)
current[0]++;
numbers = current;
blows++;
}
printf("%d %d\n", blows, numbers[0]);
}
}
| [
"jcamargo@gmail.com"
] | jcamargo@gmail.com |
3988bdeab6d81b300f1e71208bd69d07503a83f1 | 7ab3757bde602ebe0b2f9e49d7e1d5f672ee150a | /easyeditor/include/ee/SpritePropertySetting.h | 31051fbdd8672ccd7c88819420f2d5506629bcf1 | [
"MIT"
] | permissive | brucelevis/easyeditor | 310dc05084b06de48067acd7ef5d6882fd5b7bba | d0bb660a491c7d990b0dae5b6fa4188d793444d9 | refs/heads/master | 2021-01-16T18:36:37.012604 | 2016-08-11T11:25:20 | 2016-08-11T11:25:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 918 | h | #ifndef _EASYEDITOR_SPRITE_PROPERTY_SETTING_H_
#define _EASYEDITOR_SPRITE_PROPERTY_SETTING_H_
#include "PropertySetting.h"
#include "Observer.h"
namespace ee
{
class EditPanelImpl;
class Sprite;
class SpritePropertyImpl;
class SpritePropertySetting : public PropertySetting, public Observer
{
public:
SpritePropertySetting(EditPanelImpl* stage, Sprite* sprite);
virtual ~SpritePropertySetting();
//
// interface PropertySetting
//
virtual void OnPropertyGridChange(const std::string& name, const wxAny& value);
protected:
//
// interface PropertySetting
//
virtual void UpdateProperties(wxPropertyGrid* pg);
virtual void InitProperties(wxPropertyGrid* pg);
//
// interface Observer
//
virtual void OnNotify(int sj_id, void* ud);
Sprite* GetSprite();
private:
SpritePropertyImpl* m_impl;
wxPropertyGrid* m_pg;
}; // SpritePropertySetting
}
#endif // _EASYEDITOR_SPRITE_PROPERTY_SETTING_H_ | [
"zhuguang@ejoy.com"
] | zhuguang@ejoy.com |
b4fa0c0daa4b4866485d628e8fc43f72136a60eb | 575ac6292d7f3a7c0698913aa896a9ab5b07af12 | /src/plugins/azoth/plugins/velvetbird/protomanager.cpp | 03e466bbdb75a2fdaf6f6939411cbacf61d14e57 | [
"BSL-1.0"
] | permissive | devel29a/leechcraft | 7e753ed425332179300eaa152e5946270f8827bb | faf5e856010fb785e4bbf3ce7b5c6a5c49f3239a | refs/heads/master | 2021-01-15T22:57:13.863534 | 2017-09-04T02:40:31 | 2017-09-04T02:40:31 | 11,744,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,656 | cpp | /**********************************************************************
* LeechCraft - modular cross-platform feature rich internet client.
* Copyright (C) 2006-2014 Georg Rudoy
*
* Boost Software License - Version 1.0 - August 17th, 2003
*
* Permission is hereby granted, free of charge, to any person or organization
* obtaining a copy of the software and accompanying documentation covered by
* this license (the "Software") to use, reproduce, display, distribute,
* execute, and transmit the Software, and to prepare derivative works of the
* Software, and to permit third-parties to whom the Software is furnished to
* do so, all subject to the following:
*
* The copyright notices in the Software and this entire statement, including
* the above license grant, this restriction and the following disclaimer,
* must be included in all copies of the Software, in whole or in part, and
* all derivative works of the Software, unless such copies or derivative
* works are solely in the form of machine-executable object code generated by
* a source language processor.
*
* 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
* SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
* FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
**********************************************************************/
#include "protomanager.h"
#include <util/util.h>
#include <util/sys/paths.h>
#include <libpurple/purple.h>
#include <libpurple/core.h>
#include <libpurple/plugin.h>
#include "protocol.h"
#include "account.h"
#include "buddy.h"
namespace LeechCraft
{
namespace Azoth
{
namespace VelvetBird
{
namespace
{
GHashTable* GetUIInfo ()
{
static GHashTable *uiInfo = 0;
if (!uiInfo)
{
uiInfo = g_hash_table_new (g_str_hash, g_str_equal);
auto localUiInfo = uiInfo;
auto add = [localUiInfo] (const char *name, const char *value)
{
g_hash_table_insert (localUiInfo, g_strdup (name), g_strdup (value));
};
add ("name", "LeechCraft VelvetBird");
add ("version", "dummy");
add ("website", "http://leechcraft.org");
add ("dev_website", "http://leechcraft.org");
add ("client_type", "pc");
}
return uiInfo;
}
class Debugger
{
QFile File_;
public:
Debugger ()
: File_ (Util::CreateIfNotExists ("azoth/velvetbird").absoluteFilePath ("purple.log"))
{
}
void print (PurpleDebugLevel level, const char *cat, const char *msg)
{
static const QMap<PurpleDebugLevel, QString> levels
{
{ PURPLE_DEBUG_ALL, "ALL" },
{ PURPLE_DEBUG_MISC, "MISC" },
{ PURPLE_DEBUG_INFO, "INFO" },
{ PURPLE_DEBUG_WARNING, "WARN" },
{ PURPLE_DEBUG_ERROR, "ERR" },
{ PURPLE_DEBUG_FATAL, "FATAL" }
};
QString data = "[" + levels [level] + "] " + cat + ": " + msg + "\n";
File_.open (QIODevice::WriteOnly);
File_.write (data.toUtf8 ());
File_.close ();
}
};
PurpleDebugUiOps DbgUiOps =
{
[] (PurpleDebugLevel level, const char *cat, const char *msg)
{
static Debugger dbg;
dbg.print (level, cat, msg);
},
[] (PurpleDebugLevel, const char*) -> gboolean { return true; },
NULL,
NULL,
NULL,
NULL
};
PurpleCoreUiOps UiOps =
{
NULL,
[] () { purple_debug_set_ui_ops (&DbgUiOps); },
NULL,
NULL,
GetUIInfo,
NULL,
NULL,
NULL
};
const auto PurpleReadCond = G_IO_IN | G_IO_HUP | G_IO_ERR;
const auto PurpleWriteCond = G_IO_OUT | G_IO_HUP | G_IO_ERR | G_IO_NVAL;
struct InputClosure
{
PurpleInputFunction F_;
guint Result_;
gpointer Data_;
};
guint glib_input_add (gint fd, PurpleInputCondition condition,
PurpleInputFunction function, gpointer data)
{
int cond = 0;
if (condition & PURPLE_INPUT_READ)
cond |= PurpleReadCond;
if (condition & PURPLE_INPUT_WRITE)
cond |= PurpleWriteCond;
auto closure = new InputClosure { function, 0, data };
auto channel = g_io_channel_unix_new (fd);
auto res = g_io_add_watch_full (channel,
G_PRIORITY_DEFAULT,
static_cast<GIOCondition> (cond),
[] (GIOChannel *source, GIOCondition condition, gpointer data) -> gboolean
{
int cond = 0;
if (condition & PURPLE_INPUT_READ)
cond |= PurpleReadCond;
if (condition & PURPLE_INPUT_WRITE)
cond |= PurpleWriteCond;
auto closure = static_cast<InputClosure*> (data);
closure->F_ (closure->Data_,
g_io_channel_unix_get_fd (source),
static_cast<PurpleInputCondition> (cond));
return true;
},
closure,
[] (gpointer data) { delete static_cast<InputClosure*> (data); });
g_io_channel_unref(channel);
return res;
}
PurpleEventLoopUiOps EvLoopOps =
{
g_timeout_add,
g_source_remove,
glib_input_add,
g_source_remove,
NULL,
g_timeout_add_seconds,
NULL,
NULL,
NULL
};
PurpleIdleUiOps IdleOps =
{
[] () { return time_t (); },
nullptr,
nullptr,
nullptr,
nullptr
};
PurpleAccountUiOps AccUiOps =
{
NULL,
[] (PurpleAccount *acc, PurpleStatus *status)
{
if (acc->ui_data)
static_cast<Account*> (acc->ui_data)->HandleStatus (status);
},
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL
};
PurpleConnectionUiOps ConnUiOps =
{
NULL,
[] (PurpleConnection *gc)
{
static_cast<Account*> (gc->account->ui_data)->UpdateStatus ();
},
[] (PurpleConnection *gc)
{
static_cast<Account*> (gc->account->ui_data)->UpdateStatus ();
},
NULL,
NULL,
NULL,
NULL,
[] (PurpleConnection *gc, PurpleConnectionError reason, const char *text)
{
static_cast<Account*> (gc->account->ui_data)->HandleDisconnect (reason, text);
},
NULL,
NULL,
NULL
};
PurpleBlistUiOps BListUiOps =
{
nullptr,
nullptr,
[] (PurpleBuddyList *list) { static_cast<ProtoManager*> (list->ui_data)->Show (list); },
[] (PurpleBuddyList *list, PurpleBlistNode *node)
{ static_cast<ProtoManager*> (list->ui_data)->Update (list, node); },
[] (PurpleBuddyList *list, PurpleBlistNode *node)
{ static_cast<ProtoManager*> (list->ui_data)->Remove (list, node); },
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr
};
PurpleConversationUiOps ConvUiOps =
{
nullptr,
nullptr,
nullptr,
[] (PurpleConversation *conv, const char *who, const char *message, PurpleMessageFlags flags, time_t mtime)
{
if (conv->ui_data)
static_cast<Buddy*> (conv->ui_data)->HandleMessage (who, message, flags, mtime);
else
static_cast<Account*> (conv->account->ui_data)->
HandleConvLessMessage (conv, who, message, flags, mtime);
},
[] (PurpleConversation*, const char *name, const char *alias, const char *message, PurpleMessageFlags, time_t)
{
qDebug () << Q_FUNC_INFO << name << alias << message;
},
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr
};
PurpleNotifyUiOps NotifyUiOps
{
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
[] (PurpleConnection*, const char*, PurpleNotifyUserInfo*) -> void* { qDebug () << Q_FUNC_INFO; return 0; },
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr
};
}
ProtoManager::ProtoManager (ICoreProxy_ptr proxy, QObject *parent)
: QObject (parent)
, Proxy_ (proxy)
{
}
void ProtoManager::PluginsAvailable ()
{
purple_debug_set_enabled (true);
const auto& dir = Util::CreateIfNotExists ("azoth/velvetbird/purple");
purple_util_set_user_dir (dir.absolutePath ().toUtf8 ().constData ());
purple_core_set_ui_ops (&UiOps);
purple_eventloop_set_ui_ops (&EvLoopOps);
purple_idle_set_ui_ops (&IdleOps);
purple_connections_set_ui_ops (&ConnUiOps);
purple_set_blist (purple_blist_new ());
purple_blist_set_ui_data (this);
purple_blist_set_ui_ops (&BListUiOps);
purple_conversations_set_ui_ops (&ConvUiOps);
purple_accounts_set_ui_ops (&AccUiOps);
purple_notify_set_ui_ops (&NotifyUiOps);
purple_imgstore_init ();
purple_buddy_icons_init ();
if (!purple_core_init ("leechcraft.azoth"))
{
qWarning () << Q_FUNC_INFO
<< "failed initializing libpurple";
return;
}
QMap<QByteArray, Protocol_ptr> id2proto;
auto protos = purple_plugins_get_protocols ();
while (protos)
{
auto item = static_cast<PurplePlugin*> (protos->data);
protos = protos->next;
const auto& proto = std::make_shared<Protocol> (item, Proxy_);
const auto& purpleId = proto->GetPurpleID ();
if (purpleId == "prpl-jabber" || purpleId == "prpl-irc")
continue;
Protocols_ << proto;
id2proto [purpleId] = proto;
}
auto accs = purple_accounts_get_all ();
while (accs)
{
auto acc = static_cast<PurpleAccount*> (accs->data);
accs = accs->next;
id2proto [purple_account_get_protocol_id (acc)]->PushAccount (acc);
}
purple_blist_load ();
purple_savedstatus_activate (purple_savedstatus_get_startup ());
}
void ProtoManager::Release ()
{
for (auto proto : Protocols_)
proto->Release ();
Protocols_.clear ();
AccUiOps.status_changed = nullptr;
ConnUiOps.connected = nullptr;
ConnUiOps.disconnected = nullptr;
ConnUiOps.report_disconnect_reason = nullptr;
BListUiOps.show = nullptr;
BListUiOps.update = nullptr;
BListUiOps.remove = nullptr;
ConvUiOps.write_im = nullptr;
ConvUiOps.write_conv = nullptr;
purple_core_quit ();
}
QList<QObject*> ProtoManager::GetProtoObjs () const
{
QList<QObject*> result;
for (auto proto : Protocols_)
result << proto.get ();
return result;
}
void ProtoManager::Show (PurpleBuddyList *list)
{
qDebug () << Q_FUNC_INFO << list;
}
void ProtoManager::Update (PurpleBuddyList*, PurpleBlistNode *node)
{
if (node->type != PURPLE_BLIST_BUDDY_NODE)
return;
auto buddy = reinterpret_cast<PurpleBuddy*> (node);
auto account = static_cast<Account*> (buddy->account->ui_data);
account->UpdateBuddy (buddy);
}
void ProtoManager::Remove (PurpleBuddyList*, PurpleBlistNode *node)
{
if (node->type != PURPLE_BLIST_BUDDY_NODE)
return;
auto buddy = reinterpret_cast<PurpleBuddy*> (node);
auto account = static_cast<Account*> (buddy->account->ui_data);
account->RemoveBuddy (buddy);
}
}
}
}
| [
"0xd34df00d@gmail.com"
] | 0xd34df00d@gmail.com |
e0a8804c29c9095593b291a2b06786e567485f07 | 33d262f6a12e1ca708dfd8ad8e56e6037b92f103 | /Arduino/UnitTests/testParseTest/testParseTest.ino | 3b2abf780eec3514c7e6b7b10221e88ad5112859 | [
"ISC"
] | permissive | PHPirates/SolArduino | cc966549969310eca4639d09b9bc329255db62c7 | d7fee339dd4af896cee267306127a13b160e032b | refs/heads/master | 2022-07-07T12:50:31.415215 | 2022-01-29T21:26:58 | 2022-01-29T21:26:58 | 71,649,988 | 4 | 0 | ISC | 2022-06-24T07:55:16 | 2016-10-22T16:04:57 | C++ | UTF-8 | C++ | false | false | 2,369 | ino | long dates[10];
int angles[10];
int tableLength;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
// parse("HTTP/1.1 200 OK Server: nginx Date: Sun, 04 Sep 2016 11:02:43 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding _10_1472985855,1472992720,1472999585,1473006450,1473051780,1473058611,1473065442,1473072273,1473079104,1473085935_43.206504993939,33.48797085722,7.0476353122625,0,69.731646222543,56.910196970006,49.713304612523,43.41411150273,33.631148156268,6.7525193195698"
// );
parseString("HTTP/1.1 200 OK Server: nginx Date: Sun, 04 Sep 2016 11:02:43 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding _10_1472985855,1472992720,1472999585,1473006450,1473051780,1473058611,1473065442,1473072273,1473079104,1473085935_432,334,70,0,697,569,497,434,336,67"
);
}
void loop() {
// put your main code here, to run repeatedly:
}
void parseString(const char *everything) {
char from [300]; //testing what's needed
strcpy(from, everything);
char *found;
int leng;
char *times;
char dateString[120];
char angleString[30];
found = strtok(from, "_");
int i = 0;
while(found != NULL){
if(i==1){
tableLength = atoi(found);
// Serial.println(leng);
} else if(i==2) {
strcpy(dateString,found);
Serial.println(found);
// Serial.println(dateString);
} else if(i==3) {
Serial.println(found);
strcpy(angleString,found);
}
found = strtok(NULL, "_"); //extract next token
i++;
}
// now the same splitting up again but for the substrings with dates and angles
found = strtok(dateString,",");
i = 0;
while (found != NULL) {
//convert char* 'found' to long
dates[i] = atol(found);
found = strtok(NULL, ","); //extract next token
// Serial.println(dates[i]);
i++;
}
//Now again for the angles
found = strtok(angleString,",");
i = 0;
while (found != NULL) {
//convert char* 'found' to int
angles[i] = atoi(found);
found = strtok(NULL, ","); //extract next token
i++;
}
Serial.println("strings parsed: ");
Serial.println("dates: ");
for(int i = 0; i<tableLength; i++) {
Serial.println(dates[i]);
}
Serial.println("angles: ");
for(int i = 0; i<tableLength; i++) {
Serial.println(angles[i]);
}
}
| [
"t.m.schouten@student.tue.nl"
] | t.m.schouten@student.tue.nl |
2fcdcc84f956cedca0f9d4ed3f04c8face2b8caf | fce7082b196d765ba979d1770f848493afa98aa2 | /src/geos-version.cpp | a2efe1e6ee767b04e04c3de2d6957ab36bc32fe5 | [] | no_license | mdsumner/geovctrs | 4766cd48c833f1f3586a7c333dfe677dece1ad83 | c3177798f189e4f5866d7f2f4bb330965d6ee888 | refs/heads/master | 2021-05-23T14:52:16.420179 | 2020-04-19T16:19:13 | 2020-04-19T16:19:13 | 257,264,049 | 0 | 0 | null | 2020-04-20T11:47:17 | 2020-04-20T11:47:16 | null | UTF-8 | C++ | false | false | 316 | cpp |
#include "geovctrs/geos/handler.hpp"
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
std::string geovctrs_cpp_geos_version_runtime() {
return GeovctrsGEOSHandler::runtimeVersion();
}
// [[Rcpp::export]]
std::string geovctrs_cpp_geos_version_build() {
return GeovctrsGEOSHandler::buildVersion();
}
| [
"dewey@fishandwhistle.net"
] | dewey@fishandwhistle.net |
0a67cac1294ed5a78eba2d9e7c39b9a7b23080db | 9120a9b17d00f41e5af26b66f5b667c02d870df0 | /EXAMPLES/Classes/Apxrevdv/APXMDDAD.H | ccdd1a7d1a7a90c963c61b6dc43fe112c2f70280 | [] | no_license | pierrebestwork/owl | dd77c095abb214a107f17686e6143907bf809930 | 807aa5ab4df9ee9faa35ba6df9a342a62b9bac76 | refs/heads/master | 2023-02-14T02:12:38.490348 | 2020-03-16T16:41:49 | 2020-03-16T16:41:49 | 326,663,704 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 1,635 | h | //----------------------------------------------------------------------------
// Project ApxMdiDv
// Borland International
// Copyright © 1996. All Rights Reserved.
//
// SUBSYSTEM: ApxMdiDv Application
// FILE: apxmddad.h
// AUTHOR:
//
// OVERVIEW
// ~~~~~~~~
// Class definition for TApxMdiDvAboutDlg (TDialog).
//
//----------------------------------------------------------------------------
#if !defined(apxmddad_h) // Sentry, use file only if it's not already included.
#define apxmddad_h
#include <owl/static.h>
#include "apxmddva.rh" // Definition of all resources.
//{{TDialog = TApxMdiDvAboutDlg}}
class TApxMdiDvAboutDlg : public TDialog {
public:
TApxMdiDvAboutDlg(TWindow* parent, TResId resId = IDD_ABOUT, TModule* module = 0);
virtual ~TApxMdiDvAboutDlg();
//{{TApxMdiDvAboutDlgVIRTUAL_BEGIN}}
public:
void SetupWindow();
//{{TApxMdiDvAboutDlgVIRTUAL_END}}
}; //{{TApxMdiDvAboutDlg}}
// Reading the VERSIONINFO resource.
//
class TProjectRCVersion {
public:
TProjectRCVersion(TModule* module);
virtual ~TProjectRCVersion();
bool GetProductName(LPSTR& prodName);
bool GetProductVersion(LPSTR& prodVersion);
bool GetCopyright(LPSTR& copyright);
bool GetDebug(LPSTR& debug);
protected:
uint8 far* TransBlock;
void far* FVData;
private:
// Don't allow this object to be copied.
//
TProjectRCVersion(const TProjectRCVersion&);
TProjectRCVersion& operator = (const TProjectRCVersion&);
};
#endif // apxmddad_h sentry.
| [
"Chris.Driver@taxsystems.com"
] | Chris.Driver@taxsystems.com |
a3674ed9b2d567871c27b1b5f6ad4db6c43571b2 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5631572862566400_1/C++/pedrohlf/C.cpp | d6ab07930f7c524236c6e1ffd2a535bad09d87aa | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 996 | cpp | #include <iostream>
#include <cstdio>
#include <vector>
#include <cstring>
#include <map>
#include <queue>
#include <stdlib.h>
#include <set>
#include <algorithm>
#include <math.h>
#include <stdio.h>
#include <unistd.h>
#include <stack>
#include <sstream>
#include <list>
#include <bitset>
#define ff first
#define ss second
using namespace std;
typedef long long ll;
int f[1005],ans,n, vis[1005],first;
int dfs(int a, int pai, int cont){
vis[a] = 1;
if(vis[f[a]]){
if(pai == f[a]){
ans = max(cont,ans);
for(int i = 1; i <= n; i++){
if(vis[i]) continue;
dfs(i,a,cont+1);
}
}
else if(f[a] == first){
ans = max(cont,ans);
}
}
else{
dfs(f[a],a,cont+1);
}
}
int main() {
int t,tc=1,x,i;
scanf("%d", &t);
while(t--){
scanf("%d", &n);
for(i = 1; i <= n; i++){
scanf("%d", &f[i]);
}
ans = 0;
for(i = 1; i <= n; i++){
memset(vis,0,sizeof(vis));
first = i;
int x = dfs(i,i,1);
}
printf("Case #%d: %d\n", tc++, ans);
}
return 0;
}
| [
"alexandra1.back@gmail.com"
] | alexandra1.back@gmail.com |
09fcff08c91635a82db2a762c486a7a8802c1d4e | 46f95fdf9dec3ace2701d0b11b39da60c018a797 | /src/engines-testing/dram_vcmap.h | 3db4c95819f27fa39161cc61287989fe3315725e | [
"BSD-3-Clause",
"MIT"
] | permissive | skygyh/pmemkv | 39962a3dff0ecbb879a7ecd2cdbe9606847082c8 | f0ee63d2edebb9b74c76edd12c9294764240af23 | refs/heads/master | 2023-03-16T01:11:28.468811 | 2021-03-09T05:21:15 | 2021-03-09T05:21:15 | 268,701,627 | 0 | 0 | NOASSERTION | 2020-06-02T04:35:16 | 2020-06-02T04:35:16 | null | UTF-8 | C++ | false | false | 566 | h | // SPDX-License-Identifier: BSD-3-Clause
/* Copyright 2021, Intel Corporation */
#pragma once
#include "../engines/basic_vcmap.h"
namespace pmem
{
namespace kv
{
namespace internal
{
template <typename AllocatorT>
class std_allocator_wrapper : public std::allocator<AllocatorT> {
public:
using std::allocator<AllocatorT>::allocator;
std_allocator_wrapper(internal::config &cfg)
: std::allocator<AllocatorT>()
{
}
};
} /* namespace internal */
using dram_vcmap = basic_vcmap<internal::std_allocator_wrapper>;
} /* namespace kv */
} /* namespace pmem */
| [
"pawel.karczewski@intel.com"
] | pawel.karczewski@intel.com |
f6881a0132df2bf66fee74a9f2d9eb78ad942b9d | fd3312e7bea36d855798ea22d6d2a124166967b3 | /protos/language-agent/KeyWithStringValue.grpc.pb.h | 853242e02f189e6e1263ce90c5f70220d046bcab | [] | no_license | lrklx/skywalking-grpc-cpp | 851b398a354d345d5ad3e1d5a20d6e120307fbda | d9dc0979eec0dff191cabf837f837ca7dc6f117d | refs/heads/master | 2021-03-01T04:16:33.517998 | 2019-12-12T02:08:39 | 2019-12-12T02:08:39 | 245,753,048 | 3 | 1 | null | 2020-03-08T04:42:14 | 2020-03-08T04:42:13 | null | UTF-8 | C++ | false | true | 1,952 | h | // Generated by the gRPC C++ plugin.
// If you make any local change, they will be lost.
// source: language-agent/KeyWithStringValue.proto
// Original file comments:
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
#ifndef GRPC_language_2dagent_2fKeyWithStringValue_2eproto__INCLUDED
#define GRPC_language_2dagent_2fKeyWithStringValue_2eproto__INCLUDED
#include "language-agent/KeyWithStringValue.pb.h"
#include <functional>
#include <grpcpp/impl/codegen/async_generic_service.h>
#include <grpcpp/impl/codegen/async_stream.h>
#include <grpcpp/impl/codegen/async_unary_call.h>
#include <grpcpp/impl/codegen/client_callback.h>
#include <grpcpp/impl/codegen/method_handler_impl.h>
#include <grpcpp/impl/codegen/proto_utils.h>
#include <grpcpp/impl/codegen/rpc_method.h>
#include <grpcpp/impl/codegen/server_callback.h>
#include <grpcpp/impl/codegen/service_type.h>
#include <grpcpp/impl/codegen/status.h>
#include <grpcpp/impl/codegen/stub_options.h>
#include <grpcpp/impl/codegen/sync_stream.h>
namespace grpc {
class CompletionQueue;
class Channel;
class ServerCompletionQueue;
class ServerContext;
} // namespace grpc
#endif // GRPC_language_2dagent_2fKeyWithStringValue_2eproto__INCLUDED
| [
"liyanyan@agree.com.cn"
] | liyanyan@agree.com.cn |
0d80f45fb9333f41ff0d7932272bf323e55c6a5c | 9f3d0bad72a5a0bfa23ace7af8dbf63093be9c86 | /vendor/imgui/imgui_internal.h | 2802f519bb6704c3da94347595d73ae16b44ce96 | [
"MIT",
"Zlib"
] | permissive | 0xc0dec/solo | ec700066951f7ef5c90aee4ae505bb5e85154da2 | 6c7f78da49beb09b51992741df3e47067d1b7e10 | refs/heads/master | 2023-04-27T09:23:15.554730 | 2023-02-26T11:46:16 | 2023-02-26T11:46:16 | 28,027,226 | 37 | 2 | Zlib | 2023-04-19T19:39:31 | 2014-12-15T08:19:32 | C++ | UTF-8 | C++ | false | false | 140,600 | h | // dear imgui, v1.77 WIP
// (internal structures/api)
// You may use this file to debug, understand or extend ImGui features but we don't provide any guarantee of forward compatibility!
// Set:
// #define IMGUI_DEFINE_MATH_OPERATORS
// To implement maths operators for ImVec2 (disabled by default to not collide with using IM_VEC2_CLASS_EXTRA along with your own math types+operators)
/*
Index of this file:
// [SECTION] Header mess
// [SECTION] Forward declarations
// [SECTION] Context pointer
// [SECTION] STB libraries includes
// [SECTION] Macros
// [SECTION] Generic helpers
// [SECTION] ImDrawList support
// [SECTION] Widgets support: flags, enums, data structures
// [SECTION] Columns support
// [SECTION] Settings support
// [SECTION] Multi-select support
// [SECTION] Docking support
// [SECTION] Viewport support
// [SECTION] ImGuiContext (main imgui context)
// [SECTION] ImGuiWindowTempData, ImGuiWindow
// [SECTION] Tab bar, Tab item support
// [SECTION] Table support
// [SECTION] Internal API
// [SECTION] Test Engine Hooks (imgui_test_engine)
*/
#pragma once
#ifndef IMGUI_DISABLE
//-----------------------------------------------------------------------------
// [SECTION] Header mess
//-----------------------------------------------------------------------------
#ifndef IMGUI_VERSION
#error Must include imgui.h before imgui_internal.h
#endif
#include <stdio.h> // FILE*, sscanf
#include <stdlib.h> // NULL, malloc, free, qsort, atoi, atof
#include <math.h> // sqrtf, fabsf, fmodf, powf, floorf, ceilf, cosf, sinf
#include <limits.h> // INT_MIN, INT_MAX
// Visual Studio warnings
#ifdef _MSC_VER
#pragma warning (push)
#pragma warning (disable: 4251) // class 'xxx' needs to have dll-interface to be used by clients of struct 'xxx' // when IMGUI_API is set to__declspec(dllexport)
#endif
// Clang/GCC warnings with -Weverything
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-function" // for stb_textedit.h
#pragma clang diagnostic ignored "-Wmissing-prototypes" // for stb_textedit.h
#pragma clang diagnostic ignored "-Wold-style-cast"
#if __has_warning("-Wzero-as-null-pointer-constant")
#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
#endif
#if __has_warning("-Wdouble-promotion")
#pragma clang diagnostic ignored "-Wdouble-promotion"
#endif
#elif defined(__GNUC__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind
#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead
#endif
// Legacy defines
#ifdef IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS // Renamed in 1.74
#error Use IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS
#endif
#ifdef IMGUI_DISABLE_MATH_FUNCTIONS // Renamed in 1.74
#error Use IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS
#endif
//-----------------------------------------------------------------------------
// [SECTION] Forward declarations
//-----------------------------------------------------------------------------
struct ImBitVector; // Store 1-bit per value
struct ImRect; // An axis-aligned rectangle (2 points)
struct ImDrawDataBuilder; // Helper to build a ImDrawData instance
struct ImDrawListSharedData; // Data shared between all ImDrawList instances
struct ImGuiColorMod; // Stacked color modifier, backup of modified data so we can restore it
struct ImGuiColumnData; // Storage data for a single column
struct ImGuiColumns; // Storage data for a columns set
struct ImGuiContext; // Main Dear ImGui context
struct ImGuiDataTypeInfo; // Type information associated to a ImGuiDataType enum
struct ImGuiGroupData; // Stacked storage data for BeginGroup()/EndGroup()
struct ImGuiInputTextState; // Internal state of the currently focused/edited text input box
struct ImGuiItemHoveredDataBackup; // Backup and restore IsItemHovered() internal data
struct ImGuiMenuColumns; // Simple column measurement, currently used for MenuItem() only
struct ImGuiNavMoveResult; // Result of a gamepad/keyboard directional navigation move query result
struct ImGuiNextWindowData; // Storage for SetNextWindow** functions
struct ImGuiNextItemData; // Storage for SetNextItem** functions
struct ImGuiPopupData; // Storage for current popup stack
struct ImGuiSettingsHandler; // Storage for one type registered in the .ini file
struct ImGuiStyleMod; // Stacked style modifier, backup of modified data so we can restore it
struct ImGuiTabBar; // Storage for a tab bar
struct ImGuiTabItem; // Storage for a tab item (within a tab bar)
struct ImGuiWindow; // Storage for one window
struct ImGuiWindowTempData; // Temporary storage for one window (that's the data which in theory we could ditch at the end of the frame)
struct ImGuiWindowSettings; // Storage for a window .ini settings (we keep one of those even if the actual window wasn't instanced during this session)
// Use your programming IDE "Go to definition" facility on the names of the center columns to find the actual flags/enum lists.
typedef int ImGuiLayoutType; // -> enum ImGuiLayoutType_ // Enum: Horizontal or vertical
typedef int ImGuiButtonFlags; // -> enum ImGuiButtonFlags_ // Flags: for ButtonEx(), ButtonBehavior()
typedef int ImGuiColumnsFlags; // -> enum ImGuiColumnsFlags_ // Flags: BeginColumns()
typedef int ImGuiDragFlags; // -> enum ImGuiDragFlags_ // Flags: for DragBehavior()
typedef int ImGuiItemFlags; // -> enum ImGuiItemFlags_ // Flags: for PushItemFlag()
typedef int ImGuiItemStatusFlags; // -> enum ImGuiItemStatusFlags_ // Flags: for DC.LastItemStatusFlags
typedef int ImGuiNavHighlightFlags; // -> enum ImGuiNavHighlightFlags_ // Flags: for RenderNavHighlight()
typedef int ImGuiNavDirSourceFlags; // -> enum ImGuiNavDirSourceFlags_ // Flags: for GetNavInputAmount2d()
typedef int ImGuiNavMoveFlags; // -> enum ImGuiNavMoveFlags_ // Flags: for navigation requests
typedef int ImGuiNextItemDataFlags; // -> enum ImGuiNextItemDataFlags_ // Flags: for SetNextItemXXX() functions
typedef int ImGuiNextWindowDataFlags; // -> enum ImGuiNextWindowDataFlags_// Flags: for SetNextWindowXXX() functions
typedef int ImGuiSeparatorFlags; // -> enum ImGuiSeparatorFlags_ // Flags: for SeparatorEx()
typedef int ImGuiSliderFlags; // -> enum ImGuiSliderFlags_ // Flags: for SliderBehavior()
typedef int ImGuiTextFlags; // -> enum ImGuiTextFlags_ // Flags: for TextEx()
typedef int ImGuiTooltipFlags; // -> enum ImGuiTooltipFlags_ // Flags: for BeginTooltipEx()
//-----------------------------------------------------------------------------
// [SECTION] Context pointer
// See implementation of this variable in imgui.cpp for comments and details.
//-----------------------------------------------------------------------------
#ifndef GImGui
extern IMGUI_API ImGuiContext* GImGui; // Current implicit context pointer
#endif
//-------------------------------------------------------------------------
// [SECTION] STB libraries includes
//-------------------------------------------------------------------------
namespace ImStb
{
#undef STB_TEXTEDIT_STRING
#undef STB_TEXTEDIT_CHARTYPE
#define STB_TEXTEDIT_STRING ImGuiInputTextState
#define STB_TEXTEDIT_CHARTYPE ImWchar
#define STB_TEXTEDIT_GETWIDTH_NEWLINE -1.0f
#define STB_TEXTEDIT_UNDOSTATECOUNT 99
#define STB_TEXTEDIT_UNDOCHARCOUNT 999
#include "imstb_textedit.h"
} // namespace ImStb
//-----------------------------------------------------------------------------
// [SECTION] Macros
//-----------------------------------------------------------------------------
// Debug Logging
#ifndef IMGUI_DEBUG_LOG
#define IMGUI_DEBUG_LOG(_FMT,...) printf("[%05d] " _FMT, GImGui->FrameCount, __VA_ARGS__)
#endif
// Static Asserts
#if (__cplusplus >= 201100)
#define IM_STATIC_ASSERT(_COND) static_assert(_COND, "")
#else
#define IM_STATIC_ASSERT(_COND) typedef char static_assertion_##__line__[(_COND)?1:-1]
#endif
// "Paranoid" Debug Asserts are meant to only be enabled during specific debugging/work, otherwise would slow down the code too much.
// We currently don't have many of those so the effect is currently negligible, but onward intent to add more aggressive ones in the code.
//#define IMGUI_DEBUG_PARANOID
#ifdef IMGUI_DEBUG_PARANOID
#define IM_ASSERT_PARANOID(_EXPR) IM_ASSERT(_EXPR)
#else
#define IM_ASSERT_PARANOID(_EXPR)
#endif
// Error handling
// Down the line in some frameworks/languages we would like to have a way to redirect those to the programmer and recover from more faults.
#ifndef IM_ASSERT_USER_ERROR
#define IM_ASSERT_USER_ERROR(_EXP,_MSG) IM_ASSERT((_EXP) && _MSG) // Recoverable User Error
#endif
// Misc Macros
#define IM_PI 3.14159265358979323846f
#ifdef _WIN32
#define IM_NEWLINE "\r\n" // Play it nice with Windows users (Update: since 2018-05, Notepad finally appears to support Unix-style carriage returns!)
#else
#define IM_NEWLINE "\n"
#endif
#define IM_TABSIZE (4)
#define IM_F32_TO_INT8_UNBOUND(_VAL) ((int)((_VAL) * 255.0f + ((_VAL)>=0 ? 0.5f : -0.5f))) // Unsaturated, for display purpose
#define IM_F32_TO_INT8_SAT(_VAL) ((int)(ImSaturate(_VAL) * 255.0f + 0.5f)) // Saturated, always output 0..255
#define IM_FLOOR(_VAL) ((float)(int)(_VAL)) // ImFloor() is not inlined in MSVC debug builds
#define IM_ROUND(_VAL) ((float)(int)((_VAL) + 0.5f)) //
// Enforce cdecl calling convention for functions called by the standard library, in case compilation settings changed the default to e.g. __vectorcall
#ifdef _MSC_VER
#define IMGUI_CDECL __cdecl
#else
#define IMGUI_CDECL
#endif
// Debug Tools
// Use 'Metrics->Tools->Item Picker' to break into the call-stack of a specific item.
#ifndef IM_DEBUG_BREAK
#if defined(__clang__)
#define IM_DEBUG_BREAK() __builtin_debugtrap()
#elif defined (_MSC_VER)
#define IM_DEBUG_BREAK() __debugbreak()
#else
#define IM_DEBUG_BREAK() IM_ASSERT(0) // It is expected that you define IM_DEBUG_BREAK() into something that will break nicely in a debugger!
#endif
#endif // #ifndef IM_DEBUG_BREAK
//-----------------------------------------------------------------------------
// [SECTION] Generic helpers
// Note that the ImXXX helpers functions are lower-level than ImGui functions.
// ImGui functions or the ImGui context are never called/used from other ImXXX functions.
//-----------------------------------------------------------------------------
// - Helpers: Hashing
// - Helpers: Sorting
// - Helpers: Bit manipulation
// - Helpers: String, Formatting
// - Helpers: UTF-8 <> wchar conversions
// - Helpers: ImVec2/ImVec4 operators
// - Helpers: Maths
// - Helpers: Geometry
// - Helper: ImVec1
// - Helper: ImVec2ih
// - Helper: ImRect
// - Helper: ImBitArray
// - Helper: ImBitVector
// - Helper: ImPool<>
// - Helper: ImChunkStream<>
//-----------------------------------------------------------------------------
// Helpers: Hashing
IMGUI_API ImU32 ImHashData(const void* data, size_t data_size, ImU32 seed = 0);
IMGUI_API ImU32 ImHashStr(const char* data, size_t data_size = 0, ImU32 seed = 0);
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
static inline ImU32 ImHash(const void* data, int size, ImU32 seed = 0) { return size ? ImHashData(data, (size_t)size, seed) : ImHashStr((const char*)data, 0, seed); } // [moved to ImHashStr/ImHashData in 1.68]
#endif
// Helpers: Sorting
#define ImQsort qsort
// Helpers: Color Blending
IMGUI_API ImU32 ImAlphaBlendColors(ImU32 col_a, ImU32 col_b);
// Helpers: Bit manipulation
static inline bool ImIsPowerOfTwo(int v) { return v != 0 && (v & (v - 1)) == 0; }
static inline int ImUpperPowerOfTwo(int v) { v--; v |= v >> 1; v |= v >> 2; v |= v >> 4; v |= v >> 8; v |= v >> 16; v++; return v; }
// Helpers: String, Formatting
IMGUI_API int ImStricmp(const char* str1, const char* str2);
IMGUI_API int ImStrnicmp(const char* str1, const char* str2, size_t count);
IMGUI_API void ImStrncpy(char* dst, const char* src, size_t count);
IMGUI_API char* ImStrdup(const char* str);
IMGUI_API char* ImStrdupcpy(char* dst, size_t* p_dst_size, const char* str);
IMGUI_API const char* ImStrchrRange(const char* str_begin, const char* str_end, char c);
IMGUI_API int ImStrlenW(const ImWchar* str);
IMGUI_API const char* ImStreolRange(const char* str, const char* str_end); // End end-of-line
IMGUI_API const ImWchar*ImStrbolW(const ImWchar* buf_mid_line, const ImWchar* buf_begin); // Find beginning-of-line
IMGUI_API const char* ImStristr(const char* haystack, const char* haystack_end, const char* needle, const char* needle_end);
IMGUI_API void ImStrTrimBlanks(char* str);
IMGUI_API const char* ImStrSkipBlank(const char* str);
IMGUI_API int ImFormatString(char* buf, size_t buf_size, const char* fmt, ...) IM_FMTARGS(3);
IMGUI_API int ImFormatStringV(char* buf, size_t buf_size, const char* fmt, va_list args) IM_FMTLIST(3);
IMGUI_API const char* ImParseFormatFindStart(const char* format);
IMGUI_API const char* ImParseFormatFindEnd(const char* format);
IMGUI_API const char* ImParseFormatTrimDecorations(const char* format, char* buf, size_t buf_size);
IMGUI_API int ImParseFormatPrecision(const char* format, int default_value);
static inline bool ImCharIsBlankA(char c) { return c == ' ' || c == '\t'; }
static inline bool ImCharIsBlankW(unsigned int c) { return c == ' ' || c == '\t' || c == 0x3000; }
// Helpers: UTF-8 <> wchar conversions
IMGUI_API int ImTextStrToUtf8(char* buf, int buf_size, const ImWchar* in_text, const ImWchar* in_text_end); // return output UTF-8 bytes count
IMGUI_API int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end); // read one character. return input UTF-8 bytes count
IMGUI_API int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_remaining = NULL); // return input UTF-8 bytes count
IMGUI_API int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count)
IMGUI_API int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end); // return number of bytes to express one char in UTF-8
IMGUI_API int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end); // return number of bytes to express string in UTF-8
// Helpers: ImVec2/ImVec4 operators
// We are keeping those disabled by default so they don't leak in user space, to allow user enabling implicit cast operators between ImVec2 and their own types (using IM_VEC2_CLASS_EXTRA etc.)
// We unfortunately don't have a unary- operator for ImVec2 because this would needs to be defined inside the class itself.
#ifdef IMGUI_DEFINE_MATH_OPERATORS
static inline ImVec2 operator*(const ImVec2& lhs, const float rhs) { return ImVec2(lhs.x*rhs, lhs.y*rhs); }
static inline ImVec2 operator/(const ImVec2& lhs, const float rhs) { return ImVec2(lhs.x/rhs, lhs.y/rhs); }
static inline ImVec2 operator+(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x+rhs.x, lhs.y+rhs.y); }
static inline ImVec2 operator-(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x-rhs.x, lhs.y-rhs.y); }
static inline ImVec2 operator*(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x*rhs.x, lhs.y*rhs.y); }
static inline ImVec2 operator/(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x/rhs.x, lhs.y/rhs.y); }
static inline ImVec2& operator*=(ImVec2& lhs, const float rhs) { lhs.x *= rhs; lhs.y *= rhs; return lhs; }
static inline ImVec2& operator/=(ImVec2& lhs, const float rhs) { lhs.x /= rhs; lhs.y /= rhs; return lhs; }
static inline ImVec2& operator+=(ImVec2& lhs, const ImVec2& rhs) { lhs.x += rhs.x; lhs.y += rhs.y; return lhs; }
static inline ImVec2& operator-=(ImVec2& lhs, const ImVec2& rhs) { lhs.x -= rhs.x; lhs.y -= rhs.y; return lhs; }
static inline ImVec2& operator*=(ImVec2& lhs, const ImVec2& rhs) { lhs.x *= rhs.x; lhs.y *= rhs.y; return lhs; }
static inline ImVec2& operator/=(ImVec2& lhs, const ImVec2& rhs) { lhs.x /= rhs.x; lhs.y /= rhs.y; return lhs; }
static inline ImVec4 operator+(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x+rhs.x, lhs.y+rhs.y, lhs.z+rhs.z, lhs.w+rhs.w); }
static inline ImVec4 operator-(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x-rhs.x, lhs.y-rhs.y, lhs.z-rhs.z, lhs.w-rhs.w); }
static inline ImVec4 operator*(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x*rhs.x, lhs.y*rhs.y, lhs.z*rhs.z, lhs.w*rhs.w); }
#endif
// Helpers: File System
#ifdef IMGUI_DISABLE_FILE_FUNCTIONS
#define IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS
typedef void* ImFileHandle;
static inline ImFileHandle ImFileOpen(const char*, const char*) { return NULL; }
static inline bool ImFileClose(ImFileHandle) { return false; }
static inline ImU64 ImFileGetSize(ImFileHandle) { return (ImU64)-1; }
static inline ImU64 ImFileRead(void*, ImU64, ImU64, ImFileHandle) { return 0; }
static inline ImU64 ImFileWrite(const void*, ImU64, ImU64, ImFileHandle) { return 0; }
#endif
#ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS
typedef FILE* ImFileHandle;
IMGUI_API ImFileHandle ImFileOpen(const char* filename, const char* mode);
IMGUI_API bool ImFileClose(ImFileHandle file);
IMGUI_API ImU64 ImFileGetSize(ImFileHandle file);
IMGUI_API ImU64 ImFileRead(void* data, ImU64 size, ImU64 count, ImFileHandle file);
IMGUI_API ImU64 ImFileWrite(const void* data, ImU64 size, ImU64 count, ImFileHandle file);
#else
#define IMGUI_DISABLE_TTY_FUNCTIONS // Can't use stdout, fflush if we are not using default file functions
#endif
IMGUI_API void* ImFileLoadToMemory(const char* filename, const char* mode, size_t* out_file_size = NULL, int padding_bytes = 0);
// Helpers: Maths
// - Wrapper for standard libs functions. (Note that imgui_demo.cpp does _not_ use them to keep the code easy to copy)
#ifndef IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS
#define ImFabs(X) fabsf(X)
#define ImSqrt(X) sqrtf(X)
#define ImFmod(X, Y) fmodf((X), (Y))
#define ImCos(X) cosf(X)
#define ImSin(X) sinf(X)
#define ImAcos(X) acosf(X)
#define ImAtan2(Y, X) atan2f((Y), (X))
#define ImAtof(STR) atof(STR)
#define ImFloorStd(X) floorf(X) // We already uses our own ImFloor() { return (float)(int)v } internally so the standard one wrapper is named differently (it's used by e.g. stb_truetype)
#define ImCeil(X) ceilf(X)
static inline float ImPow(float x, float y) { return powf(x, y); } // DragBehaviorT/SliderBehaviorT uses ImPow with either float/double and need the precision
static inline double ImPow(double x, double y) { return pow(x, y); }
#endif
// - ImMin/ImMax/ImClamp/ImLerp/ImSwap are used by widgets which support variety of types: signed/unsigned int/long long float/double
// (Exceptionally using templates here but we could also redefine them for those types)
template<typename T> static inline T ImMin(T lhs, T rhs) { return lhs < rhs ? lhs : rhs; }
template<typename T> static inline T ImMax(T lhs, T rhs) { return lhs >= rhs ? lhs : rhs; }
template<typename T> static inline T ImClamp(T v, T mn, T mx) { return (v < mn) ? mn : (v > mx) ? mx : v; }
template<typename T> static inline T ImLerp(T a, T b, float t) { return (T)(a + (b - a) * t); }
template<typename T> static inline void ImSwap(T& a, T& b) { T tmp = a; a = b; b = tmp; }
template<typename T> static inline T ImAddClampOverflow(T a, T b, T mn, T mx) { if (b < 0 && (a < mn - b)) return mn; if (b > 0 && (a > mx - b)) return mx; return a + b; }
template<typename T> static inline T ImSubClampOverflow(T a, T b, T mn, T mx) { if (b > 0 && (a < mn + b)) return mn; if (b < 0 && (a > mx + b)) return mx; return a - b; }
// - Misc maths helpers
static inline ImVec2 ImMin(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x < rhs.x ? lhs.x : rhs.x, lhs.y < rhs.y ? lhs.y : rhs.y); }
static inline ImVec2 ImMax(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x >= rhs.x ? lhs.x : rhs.x, lhs.y >= rhs.y ? lhs.y : rhs.y); }
static inline ImVec2 ImClamp(const ImVec2& v, const ImVec2& mn, ImVec2 mx) { return ImVec2((v.x < mn.x) ? mn.x : (v.x > mx.x) ? mx.x : v.x, (v.y < mn.y) ? mn.y : (v.y > mx.y) ? mx.y : v.y); }
static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, float t) { return ImVec2(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t); }
static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, const ImVec2& t) { return ImVec2(a.x + (b.x - a.x) * t.x, a.y + (b.y - a.y) * t.y); }
static inline ImVec4 ImLerp(const ImVec4& a, const ImVec4& b, float t) { return ImVec4(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t, a.z + (b.z - a.z) * t, a.w + (b.w - a.w) * t); }
static inline float ImSaturate(float f) { return (f < 0.0f) ? 0.0f : (f > 1.0f) ? 1.0f : f; }
static inline float ImLengthSqr(const ImVec2& lhs) { return lhs.x*lhs.x + lhs.y*lhs.y; }
static inline float ImLengthSqr(const ImVec4& lhs) { return lhs.x*lhs.x + lhs.y*lhs.y + lhs.z*lhs.z + lhs.w*lhs.w; }
static inline float ImInvLength(const ImVec2& lhs, float fail_value) { float d = lhs.x*lhs.x + lhs.y*lhs.y; if (d > 0.0f) return 1.0f / ImSqrt(d); return fail_value; }
static inline float ImFloor(float f) { return (float)(int)(f); }
static inline ImVec2 ImFloor(const ImVec2& v) { return ImVec2((float)(int)(v.x), (float)(int)(v.y)); }
static inline int ImModPositive(int a, int b) { return (a + b) % b; }
static inline float ImDot(const ImVec2& a, const ImVec2& b) { return a.x * b.x + a.y * b.y; }
static inline ImVec2 ImRotate(const ImVec2& v, float cos_a, float sin_a) { return ImVec2(v.x * cos_a - v.y * sin_a, v.x * sin_a + v.y * cos_a); }
static inline float ImLinearSweep(float current, float target, float speed) { if (current < target) return ImMin(current + speed, target); if (current > target) return ImMax(current - speed, target); return current; }
static inline ImVec2 ImMul(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x * rhs.x, lhs.y * rhs.y); }
// Helpers: Geometry
IMGUI_API ImVec2 ImBezierCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, float t); // Cubic Bezier
IMGUI_API ImVec2 ImBezierClosestPoint(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, int num_segments); // For curves with explicit number of segments
IMGUI_API ImVec2 ImBezierClosestPointCasteljau(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, float tess_tol);// For auto-tessellated curves you can use tess_tol = style.CurveTessellationTol
IMGUI_API ImVec2 ImLineClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& p);
IMGUI_API bool ImTriangleContainsPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p);
IMGUI_API ImVec2 ImTriangleClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p);
IMGUI_API void ImTriangleBarycentricCoords(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p, float& out_u, float& out_v, float& out_w);
inline float ImTriangleArea(const ImVec2& a, const ImVec2& b, const ImVec2& c) { return ImFabs((a.x * (b.y - c.y)) + (b.x * (c.y - a.y)) + (c.x * (a.y - b.y))) * 0.5f; }
IMGUI_API ImGuiDir ImGetDirQuadrantFromDelta(float dx, float dy);
// Helper: ImVec1 (1D vector)
// (this odd construct is used to facilitate the transition between 1D and 2D, and the maintenance of some branches/patches)
struct ImVec1
{
float x;
ImVec1() { x = 0.0f; }
ImVec1(float _x) { x = _x; }
};
// Helper: ImVec2ih (2D vector, half-size integer, for long-term packed storage)
struct ImVec2ih
{
short x, y;
ImVec2ih() { x = y = 0; }
ImVec2ih(short _x, short _y) { x = _x; y = _y; }
explicit ImVec2ih(const ImVec2& rhs) { x = (short)rhs.x; y = (short)rhs.y; }
};
// Helper: ImRect (2D axis aligned bounding-box)
// NB: we can't rely on ImVec2 math operators being available here!
struct IMGUI_API ImRect
{
ImVec2 Min; // Upper-left
ImVec2 Max; // Lower-right
ImRect() : Min(0.0f, 0.0f), Max(0.0f, 0.0f) {}
ImRect(const ImVec2& min, const ImVec2& max) : Min(min), Max(max) {}
ImRect(const ImVec4& v) : Min(v.x, v.y), Max(v.z, v.w) {}
ImRect(float x1, float y1, float x2, float y2) : Min(x1, y1), Max(x2, y2) {}
ImVec2 GetCenter() const { return ImVec2((Min.x + Max.x) * 0.5f, (Min.y + Max.y) * 0.5f); }
ImVec2 GetSize() const { return ImVec2(Max.x - Min.x, Max.y - Min.y); }
float GetWidth() const { return Max.x - Min.x; }
float GetHeight() const { return Max.y - Min.y; }
ImVec2 GetTL() const { return Min; } // Top-left
ImVec2 GetTR() const { return ImVec2(Max.x, Min.y); } // Top-right
ImVec2 GetBL() const { return ImVec2(Min.x, Max.y); } // Bottom-left
ImVec2 GetBR() const { return Max; } // Bottom-right
bool Contains(const ImVec2& p) const { return p.x >= Min.x && p.y >= Min.y && p.x < Max.x && p.y < Max.y; }
bool Contains(const ImRect& r) const { return r.Min.x >= Min.x && r.Min.y >= Min.y && r.Max.x <= Max.x && r.Max.y <= Max.y; }
bool Overlaps(const ImRect& r) const { return r.Min.y < Max.y && r.Max.y > Min.y && r.Min.x < Max.x && r.Max.x > Min.x; }
void Add(const ImVec2& p) { if (Min.x > p.x) Min.x = p.x; if (Min.y > p.y) Min.y = p.y; if (Max.x < p.x) Max.x = p.x; if (Max.y < p.y) Max.y = p.y; }
void Add(const ImRect& r) { if (Min.x > r.Min.x) Min.x = r.Min.x; if (Min.y > r.Min.y) Min.y = r.Min.y; if (Max.x < r.Max.x) Max.x = r.Max.x; if (Max.y < r.Max.y) Max.y = r.Max.y; }
void Expand(const float amount) { Min.x -= amount; Min.y -= amount; Max.x += amount; Max.y += amount; }
void Expand(const ImVec2& amount) { Min.x -= amount.x; Min.y -= amount.y; Max.x += amount.x; Max.y += amount.y; }
void Translate(const ImVec2& d) { Min.x += d.x; Min.y += d.y; Max.x += d.x; Max.y += d.y; }
void TranslateX(float dx) { Min.x += dx; Max.x += dx; }
void TranslateY(float dy) { Min.y += dy; Max.y += dy; }
void ClipWith(const ImRect& r) { Min = ImMax(Min, r.Min); Max = ImMin(Max, r.Max); } // Simple version, may lead to an inverted rectangle, which is fine for Contains/Overlaps test but not for display.
void ClipWithFull(const ImRect& r) { Min = ImClamp(Min, r.Min, r.Max); Max = ImClamp(Max, r.Min, r.Max); } // Full version, ensure both points are fully clipped.
void Floor() { Min.x = IM_FLOOR(Min.x); Min.y = IM_FLOOR(Min.y); Max.x = IM_FLOOR(Max.x); Max.y = IM_FLOOR(Max.y); }
bool IsInverted() const { return Min.x > Max.x || Min.y > Max.y; }
};
// Helper: ImBitArray
inline bool ImBitArrayTestBit(const ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); return (arr[n >> 5] & mask) != 0; }
inline void ImBitArrayClearBit(ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); arr[n >> 5] &= ~mask; }
inline void ImBitArraySetBit(ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); arr[n >> 5] |= mask; }
inline void ImBitArraySetBitRange(ImU32* arr, int n, int n2)
{
while (n <= n2)
{
int a_mod = (n & 31);
int b_mod = ((n2 >= n + 31) ? 31 : (n2 & 31)) + 1;
ImU32 mask = (ImU32)(((ImU64)1 << b_mod) - 1) & ~(ImU32)(((ImU64)1 << a_mod) - 1);
arr[n >> 5] |= mask;
n = (n + 32) & ~31;
}
}
// Helper: ImBitVector
// Store 1-bit per value.
struct IMGUI_API ImBitVector
{
ImVector<ImU32> Storage;
void Create(int sz) { Storage.resize((sz + 31) >> 5); memset(Storage.Data, 0, (size_t)Storage.Size * sizeof(Storage.Data[0])); }
void Clear() { Storage.clear(); }
bool TestBit(int n) const { IM_ASSERT(n < (Storage.Size << 5)); return ImBitArrayTestBit(Storage.Data, n); }
void SetBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArraySetBit(Storage.Data, n); }
void ClearBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArrayClearBit(Storage.Data, n); }
};
// Helper: ImPool<>
// Basic keyed storage for contiguous instances, slow/amortized insertion, O(1) indexable, O(Log N) queries by ID over a dense/hot buffer,
// Honor constructor/destructor. Add/remove invalidate all pointers. Indexes have the same lifetime as the associated object.
typedef int ImPoolIdx;
template<typename T>
struct IMGUI_API ImPool
{
ImVector<T> Buf; // Contiguous data
ImGuiStorage Map; // ID->Index
ImPoolIdx FreeIdx; // Next free idx to use
ImPool() { FreeIdx = 0; }
~ImPool() { Clear(); }
T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Buf[idx] : NULL; }
T* GetByIndex(ImPoolIdx n) { return &Buf[n]; }
ImPoolIdx GetIndex(const T* p) const { IM_ASSERT(p >= Buf.Data && p < Buf.Data + Buf.Size); return (ImPoolIdx)(p - Buf.Data); }
T* GetOrAddByKey(ImGuiID key) { int* p_idx = Map.GetIntRef(key, -1); if (*p_idx != -1) return &Buf[*p_idx]; *p_idx = FreeIdx; return Add(); }
bool Contains(const T* p) const { return (p >= Buf.Data && p < Buf.Data + Buf.Size); }
void Clear() { for (int n = 0; n < Map.Data.Size; n++) { int idx = Map.Data[n].val_i; if (idx != -1) Buf[idx].~T(); } Map.Clear(); Buf.clear(); FreeIdx = 0; }
T* Add() { int idx = FreeIdx; if (idx == Buf.Size) { Buf.resize(Buf.Size + 1); FreeIdx++; } else { FreeIdx = *(int*)&Buf[idx]; } IM_PLACEMENT_NEW(&Buf[idx]) T(); return &Buf[idx]; }
void Remove(ImGuiID key, const T* p) { Remove(key, GetIndex(p)); }
void Remove(ImGuiID key, ImPoolIdx idx) { Buf[idx].~T(); *(int*)&Buf[idx] = FreeIdx; FreeIdx = idx; Map.SetInt(key, -1); }
void Reserve(int capacity) { Buf.reserve(capacity); Map.Data.reserve(capacity); }
int GetSize() const { return Buf.Size; }
};
// Helper: ImChunkStream<>
// Build and iterate a contiguous stream of variable-sized structures.
// This is used by Settings to store persistent data while reducing allocation count.
// We store the chunk size first, and align the final size on 4 bytes boundaries (this what the '(X + 3) & ~3' statement is for)
// The tedious/zealous amount of casting is to avoid -Wcast-align warnings.
template<typename T>
struct IMGUI_API ImChunkStream
{
ImVector<char> Buf;
void clear() { Buf.clear(); }
bool empty() const { return Buf.Size == 0; }
int size() const { return Buf.Size; }
T* alloc_chunk(size_t sz) { size_t HDR_SZ = 4; sz = ((HDR_SZ + sz) + 3u) & ~3u; int off = Buf.Size; Buf.resize(off + (int)sz); ((int*)(void*)(Buf.Data + off))[0] = (int)sz; return (T*)(void*)(Buf.Data + off + (int)HDR_SZ); }
T* begin() { size_t HDR_SZ = 4; if (!Buf.Data) return NULL; return (T*)(void*)(Buf.Data + HDR_SZ); }
T* next_chunk(T* p) { size_t HDR_SZ = 4; IM_ASSERT(p >= begin() && p < end()); p = (T*)(void*)((char*)(void*)p + chunk_size(p)); if (p == (T*)(void*)((char*)end() + HDR_SZ)) return (T*)0; IM_ASSERT(p < end()); return p; }
int chunk_size(const T* p) { return ((const int*)p)[-1]; }
T* end() { return (T*)(void*)(Buf.Data + Buf.Size); }
int offset_from_ptr(const T* p) { IM_ASSERT(p >= begin() && p < end()); const ptrdiff_t off = (const char*)p - Buf.Data; return (int)off; }
T* ptr_from_offset(int off) { IM_ASSERT(off >= 4 && off < Buf.Size); return (T*)(void*)(Buf.Data + off); }
};
//-----------------------------------------------------------------------------
// [SECTION] ImDrawList support
//-----------------------------------------------------------------------------
// ImDrawList: Helper function to calculate a circle's segment count given its radius and a "maximum error" value.
#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN 12
#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX 512
#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(_RAD,_MAXERROR) ImClamp((int)((IM_PI * 2.0f) / ImAcos(((_RAD) - (_MAXERROR)) / (_RAD))), IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX)
// ImDrawList: You may set this to higher values (e.g. 2 or 3) to increase tessellation of fast rounded corners path.
#ifndef IM_DRAWLIST_ARCFAST_TESSELLATION_MULTIPLIER
#define IM_DRAWLIST_ARCFAST_TESSELLATION_MULTIPLIER 1
#endif
// Data shared between all ImDrawList instances
// You may want to create your own instance of this if you want to use ImDrawList completely without ImGui. In that case, watch out for future changes to this structure.
struct IMGUI_API ImDrawListSharedData
{
ImVec2 TexUvWhitePixel; // UV of white pixel in the atlas
ImFont* Font; // Current/default font (optional, for simplified AddText overload)
float FontSize; // Current/default font size (optional, for simplified AddText overload)
float CurveTessellationTol; // Tessellation tolerance when using PathBezierCurveTo()
float CircleSegmentMaxError; // Number of circle segments to use per pixel of radius for AddCircle() etc
ImVec4 ClipRectFullscreen; // Value for PushClipRectFullscreen()
ImDrawListFlags InitialFlags; // Initial flags at the beginning of the frame (it is possible to alter flags on a per-drawlist basis afterwards)
// [Internal] Lookup tables
ImVec2 ArcFastVtx[12 * IM_DRAWLIST_ARCFAST_TESSELLATION_MULTIPLIER]; // FIXME: Bake rounded corners fill/borders in atlas
ImU8 CircleSegmentCounts[64]; // Precomputed segment count for given radius (array index + 1) before we calculate it dynamically (to avoid calculation overhead)
ImDrawListSharedData();
void SetCircleSegmentMaxError(float max_error);
};
struct ImDrawDataBuilder
{
ImVector<ImDrawList*> Layers[2]; // Global layers for: regular, tooltip
void Clear() { for (int n = 0; n < IM_ARRAYSIZE(Layers); n++) Layers[n].resize(0); }
void ClearFreeMemory() { for (int n = 0; n < IM_ARRAYSIZE(Layers); n++) Layers[n].clear(); }
IMGUI_API void FlattenIntoSingleLayer();
};
//-----------------------------------------------------------------------------
// [SECTION] Widgets support: flags, enums, data structures
//-----------------------------------------------------------------------------
// Transient per-window flags, reset at the beginning of the frame. For child window, inherited from parent on first Begin().
// This is going to be exposed in imgui.h when stabilized enough.
enum ImGuiItemFlags_
{
ImGuiItemFlags_None = 0,
ImGuiItemFlags_NoTabStop = 1 << 0, // false
ImGuiItemFlags_ButtonRepeat = 1 << 1, // false // Button() will return true multiple times based on io.KeyRepeatDelay and io.KeyRepeatRate settings.
ImGuiItemFlags_Disabled = 1 << 2, // false // [BETA] Disable interactions but doesn't affect visuals yet. See github.com/ocornut/imgui/issues/211
ImGuiItemFlags_NoNav = 1 << 3, // false
ImGuiItemFlags_NoNavDefaultFocus = 1 << 4, // false
ImGuiItemFlags_SelectableDontClosePopup = 1 << 5, // false // MenuItem/Selectable() automatically closes current Popup window
ImGuiItemFlags_MixedValue = 1 << 6, // false // [BETA] Represent a mixed/indeterminate value, generally multi-selection where values differ. Currently only supported by Checkbox() (later should support all sorts of widgets)
ImGuiItemFlags_Default_ = 0
};
// Storage for LastItem data
enum ImGuiItemStatusFlags_
{
ImGuiItemStatusFlags_None = 0,
ImGuiItemStatusFlags_HoveredRect = 1 << 0,
ImGuiItemStatusFlags_HasDisplayRect = 1 << 1,
ImGuiItemStatusFlags_Edited = 1 << 2, // Value exposed by item was edited in the current frame (should match the bool return value of most widgets)
ImGuiItemStatusFlags_ToggledSelection = 1 << 3, // Set when Selectable(), TreeNode() reports toggling a selection. We can't report "Selected" because reporting the change allows us to handle clipping with less issues.
ImGuiItemStatusFlags_ToggledOpen = 1 << 4, // Set when TreeNode() reports toggling their open state.
ImGuiItemStatusFlags_HasDeactivated = 1 << 5, // Set if the widget/group is able to provide data for the ImGuiItemStatusFlags_Deactivated flag.
ImGuiItemStatusFlags_Deactivated = 1 << 6 // Only valid if ImGuiItemStatusFlags_HasDeactivated is set.
#ifdef IMGUI_ENABLE_TEST_ENGINE
, // [imgui_tests only]
ImGuiItemStatusFlags_Openable = 1 << 10, //
ImGuiItemStatusFlags_Opened = 1 << 11, //
ImGuiItemStatusFlags_Checkable = 1 << 12, //
ImGuiItemStatusFlags_Checked = 1 << 13 //
#endif
};
enum ImGuiButtonFlags_
{
ImGuiButtonFlags_None = 0,
ImGuiButtonFlags_Repeat = 1 << 0, // hold to repeat
ImGuiButtonFlags_PressedOnClick = 1 << 1, // return true on click (mouse down event)
ImGuiButtonFlags_PressedOnClickRelease = 1 << 2, // [Default] return true on click + release on same item <-- this is what the majority of Button are using
ImGuiButtonFlags_PressedOnClickReleaseAnywhere = 1 << 3, // return true on click + release even if the release event is not done while hovering the item
ImGuiButtonFlags_PressedOnRelease = 1 << 4, // return true on release (default requires click+release)
ImGuiButtonFlags_PressedOnDoubleClick = 1 << 5, // return true on double-click (default requires click+release)
ImGuiButtonFlags_PressedOnDragDropHold = 1 << 6, // return true when held into while we are drag and dropping another item (used by e.g. tree nodes, collapsing headers)
ImGuiButtonFlags_FlattenChildren = 1 << 7, // allow interactions even if a child window is overlapping
ImGuiButtonFlags_AllowItemOverlap = 1 << 8, // require previous frame HoveredId to either match id or be null before being usable, use along with SetItemAllowOverlap()
ImGuiButtonFlags_DontClosePopups = 1 << 9, // disable automatically closing parent popup on press // [UNUSED]
ImGuiButtonFlags_Disabled = 1 << 10, // disable interactions
ImGuiButtonFlags_AlignTextBaseLine = 1 << 11, // vertically align button to match text baseline - ButtonEx() only // FIXME: Should be removed and handled by SmallButton(), not possible currently because of DC.CursorPosPrevLine
ImGuiButtonFlags_NoKeyModifiers = 1 << 12, // disable mouse interaction if a key modifier is held
ImGuiButtonFlags_NoHoldingActiveId = 1 << 13, // don't set ActiveId while holding the mouse (ImGuiButtonFlags_PressedOnClick only)
ImGuiButtonFlags_NoNavFocus = 1 << 14, // don't override navigation focus when activated
ImGuiButtonFlags_NoHoveredOnFocus = 1 << 15, // don't report as hovered when nav focus is on this item
ImGuiButtonFlags_MouseButtonLeft = 1 << 16, // [Default] react on left mouse button
ImGuiButtonFlags_MouseButtonRight = 1 << 17, // react on right mouse button
ImGuiButtonFlags_MouseButtonMiddle = 1 << 18, // react on center mouse button
ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle,
ImGuiButtonFlags_MouseButtonShift_ = 16,
ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft,
ImGuiButtonFlags_PressedOnMask_ = ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere | ImGuiButtonFlags_PressedOnRelease | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_PressedOnDragDropHold,
ImGuiButtonFlags_PressedOnDefault_ = ImGuiButtonFlags_PressedOnClickRelease
};
enum ImGuiSliderFlags_
{
ImGuiSliderFlags_None = 0,
ImGuiSliderFlags_Vertical = 1 << 0
};
enum ImGuiDragFlags_
{
ImGuiDragFlags_None = 0,
ImGuiDragFlags_Vertical = 1 << 0
};
// Extend ImGuiSelectableFlags_
enum ImGuiSelectableFlagsPrivate_
{
// NB: need to be in sync with last value of ImGuiSelectableFlags_
ImGuiSelectableFlags_NoHoldingActiveID = 1 << 20,
ImGuiSelectableFlags_SelectOnClick = 1 << 21, // Override button behavior to react on Click (default is Click+Release)
ImGuiSelectableFlags_SelectOnRelease = 1 << 22, // Override button behavior to react on Release (default is Click+Release)
ImGuiSelectableFlags_SpanAvailWidth = 1 << 23, // Span all avail width even if we declared less for layout purpose. FIXME: We may be able to remove this (added in 6251d379, 2bcafc86 for menus)
ImGuiSelectableFlags_DrawHoveredWhenHeld= 1 << 24, // Always show active when held, even is not hovered. This concept could probably be renamed/formalized somehow.
ImGuiSelectableFlags_SetNavIdOnHover = 1 << 25
};
// Extend ImGuiTreeNodeFlags_
enum ImGuiTreeNodeFlagsPrivate_
{
ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 20
};
enum ImGuiSeparatorFlags_
{
ImGuiSeparatorFlags_None = 0,
ImGuiSeparatorFlags_Horizontal = 1 << 0, // Axis default to current layout type, so generally Horizontal unless e.g. in a menu bar
ImGuiSeparatorFlags_Vertical = 1 << 1,
ImGuiSeparatorFlags_SpanAllColumns = 1 << 2
};
enum ImGuiTextFlags_
{
ImGuiTextFlags_None = 0,
ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0
};
enum ImGuiTooltipFlags_
{
ImGuiTooltipFlags_None = 0,
ImGuiTooltipFlags_OverridePreviousTooltip = 1 << 0 // Override will clear/ignore previously submitted tooltip (defaults to append)
};
// FIXME: this is in development, not exposed/functional as a generic feature yet.
// Horizontal/Vertical enums are fixed to 0/1 so they may be used to index ImVec2
enum ImGuiLayoutType_
{
ImGuiLayoutType_Horizontal = 0,
ImGuiLayoutType_Vertical = 1
};
enum ImGuiLogType
{
ImGuiLogType_None = 0,
ImGuiLogType_TTY,
ImGuiLogType_File,
ImGuiLogType_Buffer,
ImGuiLogType_Clipboard
};
// X/Y enums are fixed to 0/1 so they may be used to index ImVec2
enum ImGuiAxis
{
ImGuiAxis_None = -1,
ImGuiAxis_X = 0,
ImGuiAxis_Y = 1
};
enum ImGuiPlotType
{
ImGuiPlotType_Lines,
ImGuiPlotType_Histogram
};
enum ImGuiInputSource
{
ImGuiInputSource_None = 0,
ImGuiInputSource_Mouse,
ImGuiInputSource_Nav,
ImGuiInputSource_NavKeyboard, // Only used occasionally for storage, not tested/handled by most code
ImGuiInputSource_NavGamepad, // "
ImGuiInputSource_COUNT
};
// FIXME-NAV: Clarify/expose various repeat delay/rate
enum ImGuiInputReadMode
{
ImGuiInputReadMode_Down,
ImGuiInputReadMode_Pressed,
ImGuiInputReadMode_Released,
ImGuiInputReadMode_Repeat,
ImGuiInputReadMode_RepeatSlow,
ImGuiInputReadMode_RepeatFast
};
enum ImGuiNavHighlightFlags_
{
ImGuiNavHighlightFlags_None = 0,
ImGuiNavHighlightFlags_TypeDefault = 1 << 0,
ImGuiNavHighlightFlags_TypeThin = 1 << 1,
ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2, // Draw rectangular highlight if (g.NavId == id) _even_ when using the mouse.
ImGuiNavHighlightFlags_NoRounding = 1 << 3
};
enum ImGuiNavDirSourceFlags_
{
ImGuiNavDirSourceFlags_None = 0,
ImGuiNavDirSourceFlags_Keyboard = 1 << 0,
ImGuiNavDirSourceFlags_PadDPad = 1 << 1,
ImGuiNavDirSourceFlags_PadLStick = 1 << 2
};
enum ImGuiNavMoveFlags_
{
ImGuiNavMoveFlags_None = 0,
ImGuiNavMoveFlags_LoopX = 1 << 0, // On failed request, restart from opposite side
ImGuiNavMoveFlags_LoopY = 1 << 1,
ImGuiNavMoveFlags_WrapX = 1 << 2, // On failed request, request from opposite side one line down (when NavDir==right) or one line up (when NavDir==left)
ImGuiNavMoveFlags_WrapY = 1 << 3, // This is not super useful for provided for completeness
ImGuiNavMoveFlags_AllowCurrentNavId = 1 << 4, // Allow scoring and considering the current NavId as a move target candidate. This is used when the move source is offset (e.g. pressing PageDown actually needs to send a Up move request, if we are pressing PageDown from the bottom-most item we need to stay in place)
ImGuiNavMoveFlags_AlsoScoreVisibleSet = 1 << 5, // Store alternate result in NavMoveResultLocalVisibleSet that only comprise elements that are already fully visible.
ImGuiNavMoveFlags_ScrollToEdge = 1 << 6
};
enum ImGuiNavForward
{
ImGuiNavForward_None,
ImGuiNavForward_ForwardQueued,
ImGuiNavForward_ForwardActive
};
enum ImGuiNavLayer
{
ImGuiNavLayer_Main = 0, // Main scrolling layer
ImGuiNavLayer_Menu = 1, // Menu layer (access with Alt/ImGuiNavInput_Menu)
ImGuiNavLayer_COUNT
};
enum ImGuiPopupPositionPolicy
{
ImGuiPopupPositionPolicy_Default,
ImGuiPopupPositionPolicy_ComboBox
};
struct ImGuiDataTypeTempStorage
{
ImU8 Data[8]; // Can fit any data up to ImGuiDataType_COUNT
};
// Type information associated to one ImGuiDataType. Retrieve with DataTypeGetInfo().
struct ImGuiDataTypeInfo
{
size_t Size; // Size in byte
const char* PrintFmt; // Default printf format for the type
const char* ScanFmt; // Default scanf format for the type
};
// Extend ImGuiDataType_
enum ImGuiDataTypePrivate_
{
ImGuiDataType_String = ImGuiDataType_COUNT + 1,
ImGuiDataType_Pointer,
ImGuiDataType_ID
};
// Stacked color modifier, backup of modified data so we can restore it
struct ImGuiColorMod
{
ImGuiCol Col;
ImVec4 BackupValue;
};
// Stacked style modifier, backup of modified data so we can restore it. Data type inferred from the variable.
struct ImGuiStyleMod
{
ImGuiStyleVar VarIdx;
union { int BackupInt[2]; float BackupFloat[2]; };
ImGuiStyleMod(ImGuiStyleVar idx, int v) { VarIdx = idx; BackupInt[0] = v; }
ImGuiStyleMod(ImGuiStyleVar idx, float v) { VarIdx = idx; BackupFloat[0] = v; }
ImGuiStyleMod(ImGuiStyleVar idx, ImVec2 v) { VarIdx = idx; BackupFloat[0] = v.x; BackupFloat[1] = v.y; }
};
// Stacked storage data for BeginGroup()/EndGroup()
struct ImGuiGroupData
{
ImVec2 BackupCursorPos;
ImVec2 BackupCursorMaxPos;
ImVec1 BackupIndent;
ImVec1 BackupGroupOffset;
ImVec2 BackupCurrLineSize;
float BackupCurrLineTextBaseOffset;
ImGuiID BackupActiveIdIsAlive;
bool BackupActiveIdPreviousFrameIsAlive;
bool EmitItem;
};
// Simple column measurement, currently used for MenuItem() only.. This is very short-sighted/throw-away code and NOT a generic helper.
struct IMGUI_API ImGuiMenuColumns
{
float Spacing;
float Width, NextWidth;
float Pos[3], NextWidths[3];
ImGuiMenuColumns();
void Update(int count, float spacing, bool clear);
float DeclColumns(float w0, float w1, float w2);
float CalcExtraSpace(float avail_w) const;
};
// Internal state of the currently focused/edited text input box
// For a given item ID, access with ImGui::GetInputTextState()
struct IMGUI_API ImGuiInputTextState
{
ImGuiID ID; // widget id owning the text state
int CurLenW, CurLenA; // we need to maintain our buffer length in both UTF-8 and wchar format. UTF-8 length is valid even if TextA is not.
ImVector<ImWchar> TextW; // edit buffer, we need to persist but can't guarantee the persistence of the user-provided buffer. so we copy into own buffer.
ImVector<char> TextA; // temporary UTF8 buffer for callbacks and other operations. this is not updated in every code-path! size=capacity.
ImVector<char> InitialTextA; // backup of end-user buffer at the time of focus (in UTF-8, unaltered)
bool TextAIsValid; // temporary UTF8 buffer is not initially valid before we make the widget active (until then we pull the data from user argument)
int BufCapacityA; // end-user buffer capacity
float ScrollX; // horizontal scrolling/offset
ImStb::STB_TexteditState Stb; // state for stb_textedit.h
float CursorAnim; // timer for cursor blink, reset on every user action so the cursor reappears immediately
bool CursorFollow; // set when we want scrolling to follow the current cursor position (not always!)
bool SelectedAllMouseLock; // after a double-click to select all, we ignore further mouse drags to update selection
ImGuiInputTextFlags UserFlags; // Temporarily set while we call user's callback
ImGuiInputTextCallback UserCallback; // "
void* UserCallbackData; // "
ImGuiInputTextState() { memset(this, 0, sizeof(*this)); }
void ClearText() { CurLenW = CurLenA = 0; TextW[0] = 0; TextA[0] = 0; CursorClamp(); }
void ClearFreeMemory() { TextW.clear(); TextA.clear(); InitialTextA.clear(); }
int GetUndoAvailCount() const { return Stb.undostate.undo_point; }
int GetRedoAvailCount() const { return STB_TEXTEDIT_UNDOSTATECOUNT - Stb.undostate.redo_point; }
void OnKeyPressed(int key); // Cannot be inline because we call in code in stb_textedit.h implementation
// Cursor & Selection
void CursorAnimReset() { CursorAnim = -0.30f; } // After a user-input the cursor stays on for a while without blinking
void CursorClamp() { Stb.cursor = ImMin(Stb.cursor, CurLenW); Stb.select_start = ImMin(Stb.select_start, CurLenW); Stb.select_end = ImMin(Stb.select_end, CurLenW); }
bool HasSelection() const { return Stb.select_start != Stb.select_end; }
void ClearSelection() { Stb.select_start = Stb.select_end = Stb.cursor; }
void SelectAll() { Stb.select_start = 0; Stb.cursor = Stb.select_end = CurLenW; Stb.has_preferred_x = 0; }
};
// Storage for current popup stack
struct ImGuiPopupData
{
ImGuiID PopupId; // Set on OpenPopup()
ImGuiWindow* Window; // Resolved on BeginPopup() - may stay unresolved if user never calls OpenPopup()
ImGuiWindow* SourceWindow; // Set on OpenPopup() copy of NavWindow at the time of opening the popup
int OpenFrameCount; // Set on OpenPopup()
ImGuiID OpenParentId; // Set on OpenPopup(), we need this to differentiate multiple menu sets from each others (e.g. inside menu bar vs loose menu items)
ImVec2 OpenPopupPos; // Set on OpenPopup(), preferred popup position (typically == OpenMousePos when using mouse)
ImVec2 OpenMousePos; // Set on OpenPopup(), copy of mouse position at the time of opening popup
ImGuiPopupData() { PopupId = 0; Window = SourceWindow = NULL; OpenFrameCount = -1; OpenParentId = 0; }
};
struct ImGuiNavMoveResult
{
ImGuiWindow* Window; // Best candidate window
ImGuiID ID; // Best candidate ID
ImGuiID FocusScopeId; // Best candidate focus scope ID
float DistBox; // Best candidate box distance to current NavId
float DistCenter; // Best candidate center distance to current NavId
float DistAxial;
ImRect RectRel; // Best candidate bounding box in window relative space
ImGuiNavMoveResult() { Clear(); }
void Clear() { Window = NULL; ID = FocusScopeId = 0; DistBox = DistCenter = DistAxial = FLT_MAX; RectRel = ImRect(); }
};
enum ImGuiNextWindowDataFlags_
{
ImGuiNextWindowDataFlags_None = 0,
ImGuiNextWindowDataFlags_HasPos = 1 << 0,
ImGuiNextWindowDataFlags_HasSize = 1 << 1,
ImGuiNextWindowDataFlags_HasContentSize = 1 << 2,
ImGuiNextWindowDataFlags_HasCollapsed = 1 << 3,
ImGuiNextWindowDataFlags_HasSizeConstraint = 1 << 4,
ImGuiNextWindowDataFlags_HasFocus = 1 << 5,
ImGuiNextWindowDataFlags_HasBgAlpha = 1 << 6,
ImGuiNextWindowDataFlags_HasScroll = 1 << 7
};
// Storage for SetNexWindow** functions
struct ImGuiNextWindowData
{
ImGuiNextWindowDataFlags Flags;
ImGuiCond PosCond;
ImGuiCond SizeCond;
ImGuiCond CollapsedCond;
ImVec2 PosVal;
ImVec2 PosPivotVal;
ImVec2 SizeVal;
ImVec2 ContentSizeVal;
ImVec2 ScrollVal;
bool CollapsedVal;
ImRect SizeConstraintRect;
ImGuiSizeCallback SizeCallback;
void* SizeCallbackUserData;
float BgAlphaVal; // Override background alpha
ImVec2 MenuBarOffsetMinVal; // *Always on* This is not exposed publicly, so we don't clear it.
ImGuiNextWindowData() { memset(this, 0, sizeof(*this)); }
inline void ClearFlags() { Flags = ImGuiNextWindowDataFlags_None; }
};
enum ImGuiNextItemDataFlags_
{
ImGuiNextItemDataFlags_None = 0,
ImGuiNextItemDataFlags_HasWidth = 1 << 0,
ImGuiNextItemDataFlags_HasOpen = 1 << 1
};
struct ImGuiNextItemData
{
ImGuiNextItemDataFlags Flags;
float Width; // Set by SetNextItemWidth()
ImGuiID FocusScopeId; // Set by SetNextItemMultiSelectData() (!= 0 signify value has been set, so it's an alternate version of HasSelectionData, we don't use Flags for this because they are cleared too early. This is mostly used for debugging)
ImGuiCond OpenCond;
bool OpenVal; // Set by SetNextItemOpen()
ImGuiNextItemData() { memset(this, 0, sizeof(*this)); }
inline void ClearFlags() { Flags = ImGuiNextItemDataFlags_None; } // Also cleared manually by ItemAdd()!
};
struct ImGuiShrinkWidthItem
{
int Index;
float Width;
};
struct ImGuiPtrOrIndex
{
void* Ptr; // Either field can be set, not both. e.g. Dock node tab bars are loose while BeginTabBar() ones are in a pool.
int Index; // Usually index in a main pool.
ImGuiPtrOrIndex(void* ptr) { Ptr = ptr; Index = -1; }
ImGuiPtrOrIndex(int index) { Ptr = NULL; Index = index; }
};
//-----------------------------------------------------------------------------
// [SECTION] Columns support
//-----------------------------------------------------------------------------
enum ImGuiColumnsFlags_
{
// Default: 0
ImGuiColumnsFlags_None = 0,
ImGuiColumnsFlags_NoBorder = 1 << 0, // Disable column dividers
ImGuiColumnsFlags_NoResize = 1 << 1, // Disable resizing columns when clicking on the dividers
ImGuiColumnsFlags_NoPreserveWidths = 1 << 2, // Disable column width preservation when adjusting columns
ImGuiColumnsFlags_NoForceWithinWindow = 1 << 3, // Disable forcing columns to fit within window
ImGuiColumnsFlags_GrowParentContentsSize= 1 << 4 // (WIP) Restore pre-1.51 behavior of extending the parent window contents size but _without affecting the columns width at all_. Will eventually remove.
};
struct ImGuiColumnData
{
float OffsetNorm; // Column start offset, normalized 0.0 (far left) -> 1.0 (far right)
float OffsetNormBeforeResize;
ImGuiColumnsFlags Flags; // Not exposed
ImRect ClipRect;
ImGuiColumnData() { OffsetNorm = OffsetNormBeforeResize = 0.0f; Flags = ImGuiColumnsFlags_None; }
};
struct ImGuiColumns
{
ImGuiID ID;
ImGuiColumnsFlags Flags;
bool IsFirstFrame;
bool IsBeingResized;
int Current;
int Count;
float OffMinX, OffMaxX; // Offsets from HostWorkRect.Min.x
float LineMinY, LineMaxY;
float HostCursorPosY; // Backup of CursorPos at the time of BeginColumns()
float HostCursorMaxPosX; // Backup of CursorMaxPos at the time of BeginColumns()
ImRect HostClipRect; // Backup of ClipRect at the time of BeginColumns()
ImRect HostWorkRect; // Backup of WorkRect at the time of BeginColumns()
ImVector<ImGuiColumnData> Columns;
ImDrawListSplitter Splitter;
ImGuiColumns() { Clear(); }
void Clear()
{
ID = 0;
Flags = ImGuiColumnsFlags_None;
IsFirstFrame = false;
IsBeingResized = false;
Current = 0;
Count = 1;
OffMinX = OffMaxX = 0.0f;
LineMinY = LineMaxY = 0.0f;
HostCursorPosY = 0.0f;
HostCursorMaxPosX = 0.0f;
Columns.clear();
}
};
//-----------------------------------------------------------------------------
// [SECTION] Multi-select support
//-----------------------------------------------------------------------------
#ifdef IMGUI_HAS_MULTI_SELECT
// <this is filled in 'range_select' branch>
#endif // #ifdef IMGUI_HAS_MULTI_SELECT
//-----------------------------------------------------------------------------
// [SECTION] Docking support
//-----------------------------------------------------------------------------
#ifdef IMGUI_HAS_DOCK
// <this is filled in 'docking' branch>
#endif // #ifdef IMGUI_HAS_DOCK
//-----------------------------------------------------------------------------
// [SECTION] Viewport support
//-----------------------------------------------------------------------------
#ifdef IMGUI_HAS_VIEWPORT
// <this is filled in 'docking' branch>
#endif // #ifdef IMGUI_HAS_VIEWPORT
//-----------------------------------------------------------------------------
// [SECTION] Settings support
//-----------------------------------------------------------------------------
// Windows data saved in imgui.ini file
// Because we never destroy or rename ImGuiWindowSettings, we can store the names in a separate buffer easily.
// (this is designed to be stored in a ImChunkStream buffer, with the variable-length Name following our structure)
struct ImGuiWindowSettings
{
ImGuiID ID;
ImVec2ih Pos;
ImVec2ih Size;
bool Collapsed;
bool WantApply; // Set when loaded from .ini data (to enable merging/loading .ini data into an already running context)
ImGuiWindowSettings() { ID = 0; Pos = Size = ImVec2ih(0, 0); Collapsed = WantApply = false; }
char* GetName() { return (char*)(this + 1); }
};
struct ImGuiSettingsHandler
{
const char* TypeName; // Short description stored in .ini file. Disallowed characters: '[' ']'
ImGuiID TypeHash; // == ImHashStr(TypeName)
void (*ClearAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Clear all settings data
void (*ReadInitFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Read: Called before reading (in registration order)
void* (*ReadOpenFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, const char* name); // Read: Called when entering into a new ini entry e.g. "[Window][Name]"
void (*ReadLineFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, void* entry, const char* line); // Read: Called for every line of text within an ini entry
void (*ApplyAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Read: Called after reading (in registration order)
void (*WriteAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer* out_buf); // Write: Output every entries into 'out_buf'
void* UserData;
ImGuiSettingsHandler() { memset(this, 0, sizeof(*this)); }
};
//-----------------------------------------------------------------------------
// [SECTION] ImGuiContext (main imgui context)
//-----------------------------------------------------------------------------
struct ImGuiContext
{
bool Initialized;
bool FontAtlasOwnedByContext; // IO.Fonts-> is owned by the ImGuiContext and will be destructed along with it.
ImGuiIO IO;
ImGuiStyle Style;
ImFont* Font; // (Shortcut) == FontStack.empty() ? IO.Font : FontStack.back()
float FontSize; // (Shortcut) == FontBaseSize * g.CurrentWindow->FontWindowScale == window->FontSize(). Text height for current window.
float FontBaseSize; // (Shortcut) == IO.FontGlobalScale * Font->Scale * Font->FontSize. Base text height.
ImDrawListSharedData DrawListSharedData;
double Time;
int FrameCount;
int FrameCountEnded;
int FrameCountRendered;
bool WithinFrameScope; // Set by NewFrame(), cleared by EndFrame()
bool WithinFrameScopeWithImplicitWindow; // Set by NewFrame(), cleared by EndFrame() when the implicit debug window has been pushed
bool WithinEndChild; // Set within EndChild()
bool TestEngineHookItems; // Will call test engine hooks: ImGuiTestEngineHook_ItemAdd(), ImGuiTestEngineHook_ItemInfo(), ImGuiTestEngineHook_Log()
ImGuiID TestEngineHookIdInfo; // Will call test engine hooks: ImGuiTestEngineHook_IdInfo() from GetID()
void* TestEngine; // Test engine user data
// Windows state
ImVector<ImGuiWindow*> Windows; // Windows, sorted in display order, back to front
ImVector<ImGuiWindow*> WindowsFocusOrder; // Windows, sorted in focus order, back to front. (FIXME: We could only store root windows here! Need to sort out the Docking equivalent which is RootWindowDockStop and is unfortunately a little more dynamic)
ImVector<ImGuiWindow*> WindowsTempSortBuffer; // Temporary buffer used in EndFrame() to reorder windows so parents are kept before their child
ImVector<ImGuiWindow*> CurrentWindowStack;
ImGuiStorage WindowsById; // Map window's ImGuiID to ImGuiWindow*
int WindowsActiveCount; // Number of unique windows submitted by frame
ImGuiWindow* CurrentWindow; // Window being drawn into
ImGuiWindow* HoveredWindow; // Will catch mouse inputs
ImGuiWindow* HoveredRootWindow; // Will catch mouse inputs (for focus/move only)
ImGuiWindow* MovingWindow; // Track the window we clicked on (in order to preserve focus). The actually window that is moved is generally MovingWindow->RootWindow.
ImGuiWindow* WheelingWindow; // Track the window we started mouse-wheeling on. Until a timer elapse or mouse has moved, generally keep scrolling the same window even if during the course of scrolling the mouse ends up hovering a child window.
ImVec2 WheelingWindowRefMousePos;
float WheelingWindowTimer;
// Item/widgets state and tracking information
ImGuiID HoveredId; // Hovered widget
bool HoveredIdAllowOverlap;
ImGuiID HoveredIdPreviousFrame;
float HoveredIdTimer; // Measure contiguous hovering time
float HoveredIdNotActiveTimer; // Measure contiguous hovering time where the item has not been active
ImGuiID ActiveId; // Active widget
ImGuiID ActiveIdIsAlive; // Active widget has been seen this frame (we can't use a bool as the ActiveId may change within the frame)
float ActiveIdTimer;
bool ActiveIdIsJustActivated; // Set at the time of activation for one frame
bool ActiveIdAllowOverlap; // Active widget allows another widget to steal active id (generally for overlapping widgets, but not always)
bool ActiveIdHasBeenPressedBefore; // Track whether the active id led to a press (this is to allow changing between PressOnClick and PressOnRelease without pressing twice). Used by range_select branch.
bool ActiveIdHasBeenEditedBefore; // Was the value associated to the widget Edited over the course of the Active state.
bool ActiveIdHasBeenEditedThisFrame;
ImU32 ActiveIdUsingNavDirMask; // Active widget will want to read those nav move requests (e.g. can activate a button and move away from it)
ImU32 ActiveIdUsingNavInputMask; // Active widget will want to read those nav inputs.
ImU64 ActiveIdUsingKeyInputMask; // Active widget will want to read those key inputs. When we grow the ImGuiKey enum we'll need to either to order the enum to make useful keys come first, either redesign this into e.g. a small array.
ImVec2 ActiveIdClickOffset; // Clicked offset from upper-left corner, if applicable (currently only set by ButtonBehavior)
ImGuiWindow* ActiveIdWindow;
ImGuiInputSource ActiveIdSource; // Activating with mouse or nav (gamepad/keyboard)
int ActiveIdMouseButton;
ImGuiID ActiveIdPreviousFrame;
bool ActiveIdPreviousFrameIsAlive;
bool ActiveIdPreviousFrameHasBeenEditedBefore;
ImGuiWindow* ActiveIdPreviousFrameWindow;
ImGuiID LastActiveId; // Store the last non-zero ActiveId, useful for animation.
float LastActiveIdTimer; // Store the last non-zero ActiveId timer since the beginning of activation, useful for animation.
// Next window/item data
ImGuiNextWindowData NextWindowData; // Storage for SetNextWindow** functions
ImGuiNextItemData NextItemData; // Storage for SetNextItem** functions
// Shared stacks
ImVector<ImGuiColorMod> ColorModifiers; // Stack for PushStyleColor()/PopStyleColor()
ImVector<ImGuiStyleMod> StyleModifiers; // Stack for PushStyleVar()/PopStyleVar()
ImVector<ImFont*> FontStack; // Stack for PushFont()/PopFont()
ImVector<ImGuiPopupData>OpenPopupStack; // Which popups are open (persistent)
ImVector<ImGuiPopupData>BeginPopupStack; // Which level of BeginPopup() we are in (reset every frame)
// Gamepad/keyboard Navigation
ImGuiWindow* NavWindow; // Focused window for navigation. Could be called 'FocusWindow'
ImGuiID NavId; // Focused item for navigation
ImGuiID NavFocusScopeId; // Identify a selection scope (selection code often wants to "clear other items" when landing on an item of the selection set)
ImGuiID NavActivateId; // ~~ (g.ActiveId == 0) && IsNavInputPressed(ImGuiNavInput_Activate) ? NavId : 0, also set when calling ActivateItem()
ImGuiID NavActivateDownId; // ~~ IsNavInputDown(ImGuiNavInput_Activate) ? NavId : 0
ImGuiID NavActivatePressedId; // ~~ IsNavInputPressed(ImGuiNavInput_Activate) ? NavId : 0
ImGuiID NavInputId; // ~~ IsNavInputPressed(ImGuiNavInput_Input) ? NavId : 0
ImGuiID NavJustTabbedId; // Just tabbed to this id.
ImGuiID NavJustMovedToId; // Just navigated to this id (result of a successfully MoveRequest).
ImGuiID NavJustMovedToFocusScopeId; // Just navigated to this focus scope id (result of a successfully MoveRequest).
ImGuiKeyModFlags NavJustMovedToKeyMods;
ImGuiID NavNextActivateId; // Set by ActivateItem(), queued until next frame.
ImGuiInputSource NavInputSource; // Keyboard or Gamepad mode? THIS WILL ONLY BE None or NavGamepad or NavKeyboard.
ImRect NavScoringRect; // Rectangle used for scoring, in screen space. Based of window->DC.NavRefRectRel[], modified for directional navigation scoring.
int NavScoringCount; // Metrics for debugging
ImGuiNavLayer NavLayer; // Layer we are navigating on. For now the system is hard-coded for 0=main contents and 1=menu/title bar, may expose layers later.
int NavIdTabCounter; // == NavWindow->DC.FocusIdxTabCounter at time of NavId processing
bool NavIdIsAlive; // Nav widget has been seen this frame ~~ NavRefRectRel is valid
bool NavMousePosDirty; // When set we will update mouse position if (io.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos) if set (NB: this not enabled by default)
bool NavDisableHighlight; // When user starts using mouse, we hide gamepad/keyboard highlight (NB: but they are still available, which is why NavDisableHighlight isn't always != NavDisableMouseHover)
bool NavDisableMouseHover; // When user starts using gamepad/keyboard, we hide mouse hovering highlight until mouse is touched again.
bool NavAnyRequest; // ~~ NavMoveRequest || NavInitRequest
bool NavInitRequest; // Init request for appearing window to select first item
bool NavInitRequestFromMove;
ImGuiID NavInitResultId; // Init request result (first item of the window, or one for which SetItemDefaultFocus() was called)
ImRect NavInitResultRectRel; // Init request result rectangle (relative to parent window)
bool NavMoveFromClampedRefRect; // Set by manual scrolling, if we scroll to a point where NavId isn't visible we reset navigation from visible items
bool NavMoveRequest; // Move request for this frame
ImGuiNavMoveFlags NavMoveRequestFlags;
ImGuiNavForward NavMoveRequestForward; // None / ForwardQueued / ForwardActive (this is used to navigate sibling parent menus from a child menu)
ImGuiKeyModFlags NavMoveRequestKeyMods;
ImGuiDir NavMoveDir, NavMoveDirLast; // Direction of the move request (left/right/up/down), direction of the previous move request
ImGuiDir NavMoveClipDir; // FIXME-NAV: Describe the purpose of this better. Might want to rename?
ImGuiNavMoveResult NavMoveResultLocal; // Best move request candidate within NavWindow
ImGuiNavMoveResult NavMoveResultLocalVisibleSet; // Best move request candidate within NavWindow that are mostly visible (when using ImGuiNavMoveFlags_AlsoScoreVisibleSet flag)
ImGuiNavMoveResult NavMoveResultOther; // Best move request candidate within NavWindow's flattened hierarchy (when using ImGuiWindowFlags_NavFlattened flag)
ImGuiWindow* NavWrapRequestWindow; // Window which requested trying nav wrap-around.
ImGuiNavMoveFlags NavWrapRequestFlags; // Wrap-around operation flags.
// Navigation: Windowing (CTRL+TAB for list, or Menu button + keys or directional pads to move/resize)
ImGuiWindow* NavWindowingTarget; // Target window when doing CTRL+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most!
ImGuiWindow* NavWindowingTargetAnim; // Record of last valid NavWindowingTarget until DimBgRatio and NavWindowingHighlightAlpha becomes 0.0f, so the fade-out can stay on it.
ImGuiWindow* NavWindowingListWindow; // Internal window actually listing the CTRL+Tab contents
float NavWindowingTimer;
float NavWindowingHighlightAlpha;
bool NavWindowingToggleLayer;
// Legacy Focus/Tabbing system (older than Nav, active even if Nav is disabled, misnamed. FIXME-NAV: This needs a redesign!)
ImGuiWindow* FocusRequestCurrWindow; //
ImGuiWindow* FocusRequestNextWindow; //
int FocusRequestCurrCounterRegular; // Any item being requested for focus, stored as an index (we on layout to be stable between the frame pressing TAB and the next frame, semi-ouch)
int FocusRequestCurrCounterTabStop; // Tab item being requested for focus, stored as an index
int FocusRequestNextCounterRegular; // Stored for next frame
int FocusRequestNextCounterTabStop; // "
bool FocusTabPressed; //
// Render
ImDrawData DrawData; // Main ImDrawData instance to pass render information to the user
ImDrawDataBuilder DrawDataBuilder;
float DimBgRatio; // 0.0..1.0 animation when fading in a dimming background (for modal window and CTRL+TAB list)
ImDrawList BackgroundDrawList; // First draw list to be rendered.
ImDrawList ForegroundDrawList; // Last draw list to be rendered. This is where we the render software mouse cursor (if io.MouseDrawCursor is set) and most debug overlays.
ImGuiMouseCursor MouseCursor;
// Drag and Drop
bool DragDropActive;
bool DragDropWithinSource; // Set when within a BeginDragDropXXX/EndDragDropXXX block for a drag source.
bool DragDropWithinTarget; // Set when within a BeginDragDropXXX/EndDragDropXXX block for a drag target.
ImGuiDragDropFlags DragDropSourceFlags;
int DragDropSourceFrameCount;
int DragDropMouseButton;
ImGuiPayload DragDropPayload;
ImRect DragDropTargetRect; // Store rectangle of current target candidate (we favor small targets when overlapping)
ImGuiID DragDropTargetId;
ImGuiDragDropFlags DragDropAcceptFlags;
float DragDropAcceptIdCurrRectSurface; // Target item surface (we resolve overlapping targets by prioritizing the smaller surface)
ImGuiID DragDropAcceptIdCurr; // Target item id (set at the time of accepting the payload)
ImGuiID DragDropAcceptIdPrev; // Target item id from previous frame (we need to store this to allow for overlapping drag and drop targets)
int DragDropAcceptFrameCount; // Last time a target expressed a desire to accept the source
ImGuiID DragDropHoldJustPressedId; // Set when holding a payload just made ButtonBehavior() return a press.
ImVector<unsigned char> DragDropPayloadBufHeap; // We don't expose the ImVector<> directly, ImGuiPayload only holds pointer+size
unsigned char DragDropPayloadBufLocal[16]; // Local buffer for small payloads
// Tab bars
ImGuiTabBar* CurrentTabBar;
ImPool<ImGuiTabBar> TabBars;
ImVector<ImGuiPtrOrIndex> CurrentTabBarStack;
ImVector<ImGuiShrinkWidthItem> ShrinkWidthBuffer;
// Widget state
ImVec2 LastValidMousePos;
ImGuiInputTextState InputTextState;
ImFont InputTextPasswordFont;
ImGuiID TempInputId; // Temporary text input when CTRL+clicking on a slider, etc.
ImGuiColorEditFlags ColorEditOptions; // Store user options for color edit widgets
float ColorEditLastHue; // Backup of last Hue associated to LastColor[3], so we can restore Hue in lossy RGB<>HSV round trips
float ColorEditLastSat; // Backup of last Saturation associated to LastColor[3], so we can restore Saturation in lossy RGB<>HSV round trips
float ColorEditLastColor[3];
ImVec4 ColorPickerRef; // Initial/reference color at the time of opening the color picker.
bool DragCurrentAccumDirty;
float DragCurrentAccum; // Accumulator for dragging modification. Always high-precision, not rounded by end-user precision settings
float DragSpeedDefaultRatio; // If speed == 0.0f, uses (max-min) * DragSpeedDefaultRatio
float ScrollbarClickDeltaToGrabCenter; // Distance between mouse and center of grab box, normalized in parent space. Use storage?
int TooltipOverrideCount;
ImVector<char> ClipboardHandlerData; // If no custom clipboard handler is defined
ImVector<ImGuiID> MenusIdSubmittedThisFrame; // A list of menu IDs that were rendered at least once
// Platform support
ImVec2 PlatformImePos; // Cursor position request & last passed to the OS Input Method Editor
ImVec2 PlatformImeLastPos;
// Settings
bool SettingsLoaded;
float SettingsDirtyTimer; // Save .ini Settings to memory when time reaches zero
ImGuiTextBuffer SettingsIniData; // In memory .ini settings
ImVector<ImGuiSettingsHandler> SettingsHandlers; // List of .ini settings handlers
ImChunkStream<ImGuiWindowSettings> SettingsWindows; // ImGuiWindow .ini settings entries
// Capture/Logging
bool LogEnabled; // Currently capturing
ImGuiLogType LogType; // Capture target
ImFileHandle LogFile; // If != NULL log to stdout/ file
ImGuiTextBuffer LogBuffer; // Accumulation buffer when log to clipboard. This is pointer so our GImGui static constructor doesn't call heap allocators.
float LogLinePosY;
bool LogLineFirstItem;
int LogDepthRef;
int LogDepthToExpand;
int LogDepthToExpandDefault; // Default/stored value for LogDepthMaxExpand if not specified in the LogXXX function call.
// Debug Tools
bool DebugItemPickerActive; // Item picker is active (started with DebugStartItemPicker())
ImGuiID DebugItemPickerBreakId; // Will call IM_DEBUG_BREAK() when encountering this id
// Misc
float FramerateSecPerFrame[120]; // Calculate estimate of framerate for user over the last 2 seconds.
int FramerateSecPerFrameIdx;
float FramerateSecPerFrameAccum;
int WantCaptureMouseNextFrame; // Explicit capture via CaptureKeyboardFromApp()/CaptureMouseFromApp() sets those flags
int WantCaptureKeyboardNextFrame;
int WantTextInputNextFrame;
char TempBuffer[1024*3+1]; // Temporary text buffer
ImGuiContext(ImFontAtlas* shared_font_atlas) : BackgroundDrawList(&DrawListSharedData), ForegroundDrawList(&DrawListSharedData)
{
Initialized = false;
FontAtlasOwnedByContext = shared_font_atlas ? false : true;
Font = NULL;
FontSize = FontBaseSize = 0.0f;
IO.Fonts = shared_font_atlas ? shared_font_atlas : IM_NEW(ImFontAtlas)();
Time = 0.0f;
FrameCount = 0;
FrameCountEnded = FrameCountRendered = -1;
WithinFrameScope = WithinFrameScopeWithImplicitWindow = WithinEndChild = false;
TestEngineHookItems = false;
TestEngineHookIdInfo = 0;
TestEngine = NULL;
WindowsActiveCount = 0;
CurrentWindow = NULL;
HoveredWindow = NULL;
HoveredRootWindow = NULL;
MovingWindow = NULL;
WheelingWindow = NULL;
WheelingWindowTimer = 0.0f;
HoveredId = 0;
HoveredIdAllowOverlap = false;
HoveredIdPreviousFrame = 0;
HoveredIdTimer = HoveredIdNotActiveTimer = 0.0f;
ActiveId = 0;
ActiveIdIsAlive = 0;
ActiveIdTimer = 0.0f;
ActiveIdIsJustActivated = false;
ActiveIdAllowOverlap = false;
ActiveIdHasBeenPressedBefore = false;
ActiveIdHasBeenEditedBefore = false;
ActiveIdHasBeenEditedThisFrame = false;
ActiveIdUsingNavDirMask = 0x00;
ActiveIdUsingNavInputMask = 0x00;
ActiveIdUsingKeyInputMask = 0x00;
ActiveIdClickOffset = ImVec2(-1,-1);
ActiveIdWindow = NULL;
ActiveIdSource = ImGuiInputSource_None;
ActiveIdMouseButton = 0;
ActiveIdPreviousFrame = 0;
ActiveIdPreviousFrameIsAlive = false;
ActiveIdPreviousFrameHasBeenEditedBefore = false;
ActiveIdPreviousFrameWindow = NULL;
LastActiveId = 0;
LastActiveIdTimer = 0.0f;
NavWindow = NULL;
NavId = NavFocusScopeId = NavActivateId = NavActivateDownId = NavActivatePressedId = NavInputId = 0;
NavJustTabbedId = NavJustMovedToId = NavJustMovedToFocusScopeId = NavNextActivateId = 0;
NavJustMovedToKeyMods = ImGuiKeyModFlags_None;
NavInputSource = ImGuiInputSource_None;
NavScoringRect = ImRect();
NavScoringCount = 0;
NavLayer = ImGuiNavLayer_Main;
NavIdTabCounter = INT_MAX;
NavIdIsAlive = false;
NavMousePosDirty = false;
NavDisableHighlight = true;
NavDisableMouseHover = false;
NavAnyRequest = false;
NavInitRequest = false;
NavInitRequestFromMove = false;
NavInitResultId = 0;
NavMoveFromClampedRefRect = false;
NavMoveRequest = false;
NavMoveRequestFlags = ImGuiNavMoveFlags_None;
NavMoveRequestForward = ImGuiNavForward_None;
NavMoveRequestKeyMods = ImGuiKeyModFlags_None;
NavMoveDir = NavMoveDirLast = NavMoveClipDir = ImGuiDir_None;
NavWrapRequestWindow = NULL;
NavWrapRequestFlags = ImGuiNavMoveFlags_None;
NavWindowingTarget = NavWindowingTargetAnim = NavWindowingListWindow = NULL;
NavWindowingTimer = NavWindowingHighlightAlpha = 0.0f;
NavWindowingToggleLayer = false;
FocusRequestCurrWindow = FocusRequestNextWindow = NULL;
FocusRequestCurrCounterRegular = FocusRequestCurrCounterTabStop = INT_MAX;
FocusRequestNextCounterRegular = FocusRequestNextCounterTabStop = INT_MAX;
FocusTabPressed = false;
DimBgRatio = 0.0f;
BackgroundDrawList._OwnerName = "##Background"; // Give it a name for debugging
ForegroundDrawList._OwnerName = "##Foreground"; // Give it a name for debugging
MouseCursor = ImGuiMouseCursor_Arrow;
DragDropActive = DragDropWithinSource = DragDropWithinTarget = false;
DragDropSourceFlags = ImGuiDragDropFlags_None;
DragDropSourceFrameCount = -1;
DragDropMouseButton = -1;
DragDropTargetId = 0;
DragDropAcceptFlags = ImGuiDragDropFlags_None;
DragDropAcceptIdCurrRectSurface = 0.0f;
DragDropAcceptIdPrev = DragDropAcceptIdCurr = 0;
DragDropAcceptFrameCount = -1;
DragDropHoldJustPressedId = 0;
memset(DragDropPayloadBufLocal, 0, sizeof(DragDropPayloadBufLocal));
CurrentTabBar = NULL;
LastValidMousePos = ImVec2(0.0f, 0.0f);
TempInputId = 0;
ColorEditOptions = ImGuiColorEditFlags__OptionsDefault;
ColorEditLastHue = ColorEditLastSat = 0.0f;
ColorEditLastColor[0] = ColorEditLastColor[1] = ColorEditLastColor[2] = FLT_MAX;
DragCurrentAccumDirty = false;
DragCurrentAccum = 0.0f;
DragSpeedDefaultRatio = 1.0f / 100.0f;
ScrollbarClickDeltaToGrabCenter = 0.0f;
TooltipOverrideCount = 0;
PlatformImePos = PlatformImeLastPos = ImVec2(FLT_MAX, FLT_MAX);
SettingsLoaded = false;
SettingsDirtyTimer = 0.0f;
LogEnabled = false;
LogType = ImGuiLogType_None;
LogFile = NULL;
LogLinePosY = FLT_MAX;
LogLineFirstItem = false;
LogDepthRef = 0;
LogDepthToExpand = LogDepthToExpandDefault = 2;
DebugItemPickerActive = false;
DebugItemPickerBreakId = 0;
memset(FramerateSecPerFrame, 0, sizeof(FramerateSecPerFrame));
FramerateSecPerFrameIdx = 0;
FramerateSecPerFrameAccum = 0.0f;
WantCaptureMouseNextFrame = WantCaptureKeyboardNextFrame = WantTextInputNextFrame = -1;
memset(TempBuffer, 0, sizeof(TempBuffer));
}
};
//-----------------------------------------------------------------------------
// [SECTION] ImGuiWindowTempData, ImGuiWindow
//-----------------------------------------------------------------------------
// Transient per-window data, reset at the beginning of the frame. This used to be called ImGuiDrawContext, hence the DC variable name in ImGuiWindow.
// FIXME: That's theory, in practice the delimitation between ImGuiWindow and ImGuiWindowTempData is quite tenuous and could be reconsidered.
struct IMGUI_API ImGuiWindowTempData
{
// Layout
ImVec2 CursorPos; // Current emitting position, in absolute coordinates.
ImVec2 CursorPosPrevLine;
ImVec2 CursorStartPos; // Initial position after Begin(), generally ~ window position + WindowPadding.
ImVec2 CursorMaxPos; // Used to implicitly calculate the size of our contents, always growing during the frame. Used to calculate window->ContentSize at the beginning of next frame
ImVec2 CurrLineSize;
ImVec2 PrevLineSize;
float CurrLineTextBaseOffset; // Baseline offset (0.0f by default on a new line, generally == style.FramePadding.y when a framed item has been added).
float PrevLineTextBaseOffset;
ImVec1 Indent; // Indentation / start position from left of window (increased by TreePush/TreePop, etc.)
ImVec1 ColumnsOffset; // Offset to the current column (if ColumnsCurrent > 0). FIXME: This and the above should be a stack to allow use cases like Tree->Column->Tree. Need revamp columns API.
ImVec1 GroupOffset;
// Last item status
ImGuiID LastItemId; // ID for last item
ImGuiItemStatusFlags LastItemStatusFlags; // Status flags for last item (see ImGuiItemStatusFlags_)
ImRect LastItemRect; // Interaction rect for last item
ImRect LastItemDisplayRect; // End-user display rect for last item (only valid if LastItemStatusFlags & ImGuiItemStatusFlags_HasDisplayRect)
// Keyboard/Gamepad navigation
ImGuiNavLayer NavLayerCurrent; // Current layer, 0..31 (we currently only use 0..1)
int NavLayerCurrentMask; // = (1 << NavLayerCurrent) used by ItemAdd prior to clipping.
int NavLayerActiveMask; // Which layer have been written to (result from previous frame)
int NavLayerActiveMaskNext; // Which layer have been written to (buffer for current frame)
ImGuiID NavFocusScopeIdCurrent; // Current focus scope ID while appending
bool NavHideHighlightOneFrame;
bool NavHasScroll; // Set when scrolling can be used (ScrollMax > 0.0f)
// Miscellaneous
bool MenuBarAppending; // FIXME: Remove this
ImVec2 MenuBarOffset; // MenuBarOffset.x is sort of equivalent of a per-layer CursorPos.x, saved/restored as we switch to the menu bar. The only situation when MenuBarOffset.y is > 0 if when (SafeAreaPadding.y > FramePadding.y), often used on TVs.
ImGuiMenuColumns MenuColumns; // Simplified columns storage for menu items measurement
int TreeDepth; // Current tree depth.
ImU32 TreeJumpToParentOnPopMask; // Store a copy of !g.NavIdIsAlive for TreeDepth 0..31.. Could be turned into a ImU64 if necessary.
ImVector<ImGuiWindow*> ChildWindows;
ImGuiStorage* StateStorage; // Current persistent per-window storage (store e.g. tree node open/close state)
ImGuiColumns* CurrentColumns; // Current columns set
ImGuiLayoutType LayoutType;
ImGuiLayoutType ParentLayoutType; // Layout type of parent window at the time of Begin()
int FocusCounterRegular; // (Legacy Focus/Tabbing system) Sequential counter, start at -1 and increase as assigned via FocusableItemRegister() (FIXME-NAV: Needs redesign)
int FocusCounterTabStop; // (Legacy Focus/Tabbing system) Same, but only count widgets which you can Tab through.
// Local parameters stacks
// We store the current settings outside of the vectors to increase memory locality (reduce cache misses). The vectors are rarely modified. Also it allows us to not heap allocate for short-lived windows which are not using those settings.
ImGuiItemFlags ItemFlags; // == ItemFlagsStack.back() [empty == ImGuiItemFlags_Default]
float ItemWidth; // == ItemWidthStack.back(). 0.0: default, >0.0: width in pixels, <0.0: align xx pixels to the right of window
float TextWrapPos; // == TextWrapPosStack.back() [empty == -1.0f]
ImVector<ImGuiItemFlags>ItemFlagsStack;
ImVector<float> ItemWidthStack;
ImVector<float> TextWrapPosStack;
ImVector<ImGuiGroupData>GroupStack;
short StackSizesBackup[6]; // Store size of various stacks for asserting
ImGuiWindowTempData()
{
CursorPos = CursorPosPrevLine = CursorStartPos = CursorMaxPos = ImVec2(0.0f, 0.0f);
CurrLineSize = PrevLineSize = ImVec2(0.0f, 0.0f);
CurrLineTextBaseOffset = PrevLineTextBaseOffset = 0.0f;
Indent = ImVec1(0.0f);
ColumnsOffset = ImVec1(0.0f);
GroupOffset = ImVec1(0.0f);
LastItemId = 0;
LastItemStatusFlags = ImGuiItemStatusFlags_None;
LastItemRect = LastItemDisplayRect = ImRect();
NavLayerActiveMask = NavLayerActiveMaskNext = 0x00;
NavLayerCurrent = ImGuiNavLayer_Main;
NavLayerCurrentMask = (1 << ImGuiNavLayer_Main);
NavFocusScopeIdCurrent = 0;
NavHideHighlightOneFrame = false;
NavHasScroll = false;
MenuBarAppending = false;
MenuBarOffset = ImVec2(0.0f, 0.0f);
TreeDepth = 0;
TreeJumpToParentOnPopMask = 0x00;
StateStorage = NULL;
CurrentColumns = NULL;
LayoutType = ParentLayoutType = ImGuiLayoutType_Vertical;
FocusCounterRegular = FocusCounterTabStop = -1;
ItemFlags = ImGuiItemFlags_Default_;
ItemWidth = 0.0f;
TextWrapPos = -1.0f;
memset(StackSizesBackup, 0, sizeof(StackSizesBackup));
}
};
// Storage for one window
struct IMGUI_API ImGuiWindow
{
char* Name; // Window name, owned by the window.
ImGuiID ID; // == ImHashStr(Name)
ImGuiWindowFlags Flags; // See enum ImGuiWindowFlags_
ImVec2 Pos; // Position (always rounded-up to nearest pixel)
ImVec2 Size; // Current size (==SizeFull or collapsed title bar size)
ImVec2 SizeFull; // Size when non collapsed
ImVec2 ContentSize; // Size of contents/scrollable client area (calculated from the extents reach of the cursor) from previous frame. Does not include window decoration or window padding.
ImVec2 ContentSizeExplicit; // Size of contents/scrollable client area explicitly request by the user via SetNextWindowContentSize().
ImVec2 WindowPadding; // Window padding at the time of Begin().
float WindowRounding; // Window rounding at the time of Begin().
float WindowBorderSize; // Window border size at the time of Begin().
int NameBufLen; // Size of buffer storing Name. May be larger than strlen(Name)!
ImGuiID MoveId; // == window->GetID("#MOVE")
ImGuiID ChildId; // ID of corresponding item in parent window (for navigation to return from child window to parent window)
ImVec2 Scroll;
ImVec2 ScrollMax;
ImVec2 ScrollTarget; // target scroll position. stored as cursor position with scrolling canceled out, so the highest point is always 0.0f. (FLT_MAX for no change)
ImVec2 ScrollTargetCenterRatio; // 0.0f = scroll so that target position is at top, 0.5f = scroll so that target position is centered
ImVec2 ScrollbarSizes; // Size taken by each scrollbars on their smaller axis. Pay attention! ScrollbarSizes.x == width of the vertical scrollbar, ScrollbarSizes.y = height of the horizontal scrollbar.
bool ScrollbarX, ScrollbarY; // Are scrollbars visible?
bool Active; // Set to true on Begin(), unless Collapsed
bool WasActive;
bool WriteAccessed; // Set to true when any widget access the current window
bool Collapsed; // Set when collapsing window to become only title-bar
bool WantCollapseToggle;
bool SkipItems; // Set when items can safely be all clipped (e.g. window not visible or collapsed)
bool Appearing; // Set during the frame where the window is appearing (or re-appearing)
bool Hidden; // Do not display (== (HiddenFrames*** > 0))
bool IsFallbackWindow; // Set on the "Debug##Default" window.
bool HasCloseButton; // Set when the window has a close button (p_open != NULL)
signed char ResizeBorderHeld; // Current border being held for resize (-1: none, otherwise 0-3)
short BeginCount; // Number of Begin() during the current frame (generally 0 or 1, 1+ if appending via multiple Begin/End pairs)
short BeginOrderWithinParent; // Order within immediate parent window, if we are a child window. Otherwise 0.
short BeginOrderWithinContext; // Order within entire imgui context. This is mostly used for debugging submission order related issues.
ImGuiID PopupId; // ID in the popup stack when this window is used as a popup/menu (because we use generic Name/ID for recycling)
ImS8 AutoFitFramesX, AutoFitFramesY;
ImS8 AutoFitChildAxises;
bool AutoFitOnlyGrows;
ImGuiDir AutoPosLastDirection;
int HiddenFramesCanSkipItems; // Hide the window for N frames
int HiddenFramesCannotSkipItems; // Hide the window for N frames while allowing items to be submitted so we can measure their size
ImGuiCond SetWindowPosAllowFlags; // store acceptable condition flags for SetNextWindowPos() use.
ImGuiCond SetWindowSizeAllowFlags; // store acceptable condition flags for SetNextWindowSize() use.
ImGuiCond SetWindowCollapsedAllowFlags; // store acceptable condition flags for SetNextWindowCollapsed() use.
ImVec2 SetWindowPosVal; // store window position when using a non-zero Pivot (position set needs to be processed when we know the window size)
ImVec2 SetWindowPosPivot; // store window pivot for positioning. ImVec2(0,0) when positioning from top-left corner; ImVec2(0.5f,0.5f) for centering; ImVec2(1,1) for bottom right.
ImVector<ImGuiID> IDStack; // ID stack. ID are hashes seeded with the value at the top of the stack. (In theory this should be in the TempData structure)
ImGuiWindowTempData DC; // Temporary per-window data, reset at the beginning of the frame. This used to be called ImGuiDrawContext, hence the "DC" variable name.
// The best way to understand what those rectangles are is to use the 'Metrics -> Tools -> Show windows rectangles' viewer.
// The main 'OuterRect', omitted as a field, is window->Rect().
ImRect OuterRectClipped; // == Window->Rect() just after setup in Begin(). == window->Rect() for root window.
ImRect InnerRect; // Inner rectangle (omit title bar, menu bar, scroll bar)
ImRect InnerClipRect; // == InnerRect shrunk by WindowPadding*0.5f on each side, clipped within viewport or parent clip rect.
ImRect WorkRect; // Cover the whole scrolling region, shrunk by WindowPadding*1.0f on each side. This is meant to replace ContentRegionRect over time (from 1.71+ onward).
ImRect ClipRect; // Current clipping/scissoring rectangle, evolve as we are using PushClipRect(), etc. == DrawList->clip_rect_stack.back().
ImRect ContentRegionRect; // FIXME: This is currently confusing/misleading. It is essentially WorkRect but not handling of scrolling. We currently rely on it as right/bottom aligned sizing operation need some size to rely on.
int LastFrameActive; // Last frame number the window was Active.
float LastTimeActive; // Last timestamp the window was Active (using float as we don't need high precision there)
float ItemWidthDefault;
ImGuiStorage StateStorage;
ImVector<ImGuiColumns> ColumnsStorage;
float FontWindowScale; // User scale multiplier per-window, via SetWindowFontScale()
int SettingsOffset; // Offset into SettingsWindows[] (offsets are always valid as we only grow the array from the back)
ImDrawList* DrawList; // == &DrawListInst (for backward compatibility reason with code using imgui_internal.h we keep this a pointer)
ImDrawList DrawListInst;
ImGuiWindow* ParentWindow; // If we are a child _or_ popup window, this is pointing to our parent. Otherwise NULL.
ImGuiWindow* RootWindow; // Point to ourself or first ancestor that is not a child window.
ImGuiWindow* RootWindowForTitleBarHighlight; // Point to ourself or first ancestor which will display TitleBgActive color when this window is active.
ImGuiWindow* RootWindowForNav; // Point to ourself or first ancestor which doesn't have the NavFlattened flag.
ImGuiWindow* NavLastChildNavWindow; // When going to the menu bar, we remember the child window we came from. (This could probably be made implicit if we kept g.Windows sorted by last focused including child window.)
ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; // Last known NavId for this window, per layer (0/1)
ImRect NavRectRel[ImGuiNavLayer_COUNT]; // Reference rectangle, in window relative space
bool MemoryCompacted; // Set when window extraneous data have been garbage collected
int MemoryDrawListIdxCapacity; // Backup of last idx/vtx count, so when waking up the window we can preallocate and avoid iterative alloc/copy
int MemoryDrawListVtxCapacity;
public:
ImGuiWindow(ImGuiContext* context, const char* name);
~ImGuiWindow();
ImGuiID GetID(const char* str, const char* str_end = NULL);
ImGuiID GetID(const void* ptr);
ImGuiID GetID(int n);
ImGuiID GetIDNoKeepAlive(const char* str, const char* str_end = NULL);
ImGuiID GetIDNoKeepAlive(const void* ptr);
ImGuiID GetIDNoKeepAlive(int n);
ImGuiID GetIDFromRectangle(const ImRect& r_abs);
// We don't use g.FontSize because the window may be != g.CurrentWidow.
ImRect Rect() const { return ImRect(Pos.x, Pos.y, Pos.x+Size.x, Pos.y+Size.y); }
float CalcFontSize() const { ImGuiContext& g = *GImGui; float scale = g.FontBaseSize * FontWindowScale; if (ParentWindow) scale *= ParentWindow->FontWindowScale; return scale; }
float TitleBarHeight() const { ImGuiContext& g = *GImGui; return (Flags & ImGuiWindowFlags_NoTitleBar) ? 0.0f : CalcFontSize() + g.Style.FramePadding.y * 2.0f; }
ImRect TitleBarRect() const { return ImRect(Pos, ImVec2(Pos.x + SizeFull.x, Pos.y + TitleBarHeight())); }
float MenuBarHeight() const { ImGuiContext& g = *GImGui; return (Flags & ImGuiWindowFlags_MenuBar) ? DC.MenuBarOffset.y + CalcFontSize() + g.Style.FramePadding.y * 2.0f : 0.0f; }
ImRect MenuBarRect() const { float y1 = Pos.y + TitleBarHeight(); return ImRect(Pos.x, y1, Pos.x + SizeFull.x, y1 + MenuBarHeight()); }
};
// Backup and restore just enough data to be able to use IsItemHovered() on item A after another B in the same window has overwritten the data.
struct ImGuiItemHoveredDataBackup
{
ImGuiID LastItemId;
ImGuiItemStatusFlags LastItemStatusFlags;
ImRect LastItemRect;
ImRect LastItemDisplayRect;
ImGuiItemHoveredDataBackup() { Backup(); }
void Backup() { ImGuiWindow* window = GImGui->CurrentWindow; LastItemId = window->DC.LastItemId; LastItemStatusFlags = window->DC.LastItemStatusFlags; LastItemRect = window->DC.LastItemRect; LastItemDisplayRect = window->DC.LastItemDisplayRect; }
void Restore() const { ImGuiWindow* window = GImGui->CurrentWindow; window->DC.LastItemId = LastItemId; window->DC.LastItemStatusFlags = LastItemStatusFlags; window->DC.LastItemRect = LastItemRect; window->DC.LastItemDisplayRect = LastItemDisplayRect; }
};
//-----------------------------------------------------------------------------
// [SECTION] Tab bar, Tab item support
//-----------------------------------------------------------------------------
// Extend ImGuiTabBarFlags_
enum ImGuiTabBarFlagsPrivate_
{
ImGuiTabBarFlags_DockNode = 1 << 20, // Part of a dock node [we don't use this in the master branch but it facilitate branch syncing to keep this around]
ImGuiTabBarFlags_IsFocused = 1 << 21,
ImGuiTabBarFlags_SaveSettings = 1 << 22 // FIXME: Settings are handled by the docking system, this only request the tab bar to mark settings dirty when reordering tabs
};
// Extend ImGuiTabItemFlags_
enum ImGuiTabItemFlagsPrivate_
{
ImGuiTabItemFlags_NoCloseButton = 1 << 20 // Track whether p_open was set or not (we'll need this info on the next frame to recompute ContentWidth during layout)
};
// Storage for one active tab item (sizeof() 26~32 bytes)
struct ImGuiTabItem
{
ImGuiID ID;
ImGuiTabItemFlags Flags;
int LastFrameVisible;
int LastFrameSelected; // This allows us to infer an ordered list of the last activated tabs with little maintenance
int NameOffset; // When Window==NULL, offset to name within parent ImGuiTabBar::TabsNames
float Offset; // Position relative to beginning of tab
float Width; // Width currently displayed
float ContentWidth; // Width of actual contents, stored during BeginTabItem() call
ImGuiTabItem() { ID = 0; Flags = ImGuiTabItemFlags_None; LastFrameVisible = LastFrameSelected = -1; NameOffset = -1; Offset = Width = ContentWidth = 0.0f; }
};
// Storage for a tab bar (sizeof() 92~96 bytes)
struct ImGuiTabBar
{
ImVector<ImGuiTabItem> Tabs;
ImGuiID ID; // Zero for tab-bars used by docking
ImGuiID SelectedTabId; // Selected tab/window
ImGuiID NextSelectedTabId;
ImGuiID VisibleTabId; // Can occasionally be != SelectedTabId (e.g. when previewing contents for CTRL+TAB preview)
int CurrFrameVisible;
int PrevFrameVisible;
ImRect BarRect;
float LastTabContentHeight; // Record the height of contents submitted below the tab bar
float OffsetMax; // Distance from BarRect.Min.x, locked during layout
float OffsetMaxIdeal; // Ideal offset if all tabs were visible and not clipped
float OffsetNextTab; // Distance from BarRect.Min.x, incremented with each BeginTabItem() call, not used if ImGuiTabBarFlags_Reorderable if set.
float ScrollingAnim;
float ScrollingTarget;
float ScrollingTargetDistToVisibility;
float ScrollingSpeed;
ImGuiTabBarFlags Flags;
ImGuiID ReorderRequestTabId;
ImS8 ReorderRequestDir;
bool WantLayout;
bool VisibleTabWasSubmitted;
short LastTabItemIdx; // For BeginTabItem()/EndTabItem()
ImVec2 FramePadding; // style.FramePadding locked at the time of BeginTabBar()
ImGuiTextBuffer TabsNames; // For non-docking tab bar we re-append names in a contiguous buffer.
ImGuiTabBar();
int GetTabOrder(const ImGuiTabItem* tab) const { return Tabs.index_from_ptr(tab); }
const char* GetTabName(const ImGuiTabItem* tab) const
{
IM_ASSERT(tab->NameOffset != -1 && tab->NameOffset < TabsNames.Buf.Size);
return TabsNames.Buf.Data + tab->NameOffset;
}
};
//-----------------------------------------------------------------------------
// [SECTION] Table support
//-----------------------------------------------------------------------------
#ifdef IMGUI_HAS_TABLE
// <this is filled in 'tables' branch>
#endif // #ifdef IMGUI_HAS_TABLE
//-----------------------------------------------------------------------------
// [SECTION] Internal API
// No guarantee of forward compatibility here!
//-----------------------------------------------------------------------------
namespace ImGui
{
// Windows
// We should always have a CurrentWindow in the stack (there is an implicit "Debug" window)
// If this ever crash because g.CurrentWindow is NULL it means that either
// - ImGui::NewFrame() has never been called, which is illegal.
// - You are calling ImGui functions after ImGui::EndFrame()/ImGui::Render() and before the next ImGui::NewFrame(), which is also illegal.
inline ImGuiWindow* GetCurrentWindowRead() { ImGuiContext& g = *GImGui; return g.CurrentWindow; }
inline ImGuiWindow* GetCurrentWindow() { ImGuiContext& g = *GImGui; g.CurrentWindow->WriteAccessed = true; return g.CurrentWindow; }
IMGUI_API ImGuiWindow* FindWindowByID(ImGuiID id);
IMGUI_API ImGuiWindow* FindWindowByName(const char* name);
IMGUI_API void UpdateWindowParentAndRootLinks(ImGuiWindow* window, ImGuiWindowFlags flags, ImGuiWindow* parent_window);
IMGUI_API ImVec2 CalcWindowExpectedSize(ImGuiWindow* window);
IMGUI_API bool IsWindowChildOf(ImGuiWindow* window, ImGuiWindow* potential_parent);
IMGUI_API bool IsWindowNavFocusable(ImGuiWindow* window);
IMGUI_API ImRect GetWindowAllowedExtentRect(ImGuiWindow* window);
IMGUI_API void SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond = 0);
IMGUI_API void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond = 0);
IMGUI_API void SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond = 0);
// Windows: Display Order and Focus Order
IMGUI_API void FocusWindow(ImGuiWindow* window);
IMGUI_API void FocusTopMostWindowUnderOne(ImGuiWindow* under_this_window, ImGuiWindow* ignore_window);
IMGUI_API void BringWindowToFocusFront(ImGuiWindow* window);
IMGUI_API void BringWindowToDisplayFront(ImGuiWindow* window);
IMGUI_API void BringWindowToDisplayBack(ImGuiWindow* window);
// Fonts, drawing
IMGUI_API void SetCurrentFont(ImFont* font);
inline ImFont* GetDefaultFont() { ImGuiContext& g = *GImGui; return g.IO.FontDefault ? g.IO.FontDefault : g.IO.Fonts->Fonts[0]; }
inline ImDrawList* GetForegroundDrawList(ImGuiWindow* window) { IM_UNUSED(window); ImGuiContext& g = *GImGui; return &g.ForegroundDrawList; } // This seemingly unnecessary wrapper simplifies compatibility between the 'master' and 'docking' branches.
// Init
IMGUI_API void Initialize(ImGuiContext* context);
IMGUI_API void Shutdown(ImGuiContext* context); // Since 1.60 this is a _private_ function. You can call DestroyContext() to destroy the context created by CreateContext().
// NewFrame
IMGUI_API void UpdateHoveredWindowAndCaptureFlags();
IMGUI_API void StartMouseMovingWindow(ImGuiWindow* window);
IMGUI_API void UpdateMouseMovingWindowNewFrame();
IMGUI_API void UpdateMouseMovingWindowEndFrame();
// Settings
IMGUI_API void MarkIniSettingsDirty();
IMGUI_API void MarkIniSettingsDirty(ImGuiWindow* window);
IMGUI_API void ClearIniSettings();
IMGUI_API ImGuiWindowSettings* CreateNewWindowSettings(const char* name);
IMGUI_API ImGuiWindowSettings* FindWindowSettings(ImGuiID id);
IMGUI_API ImGuiWindowSettings* FindOrCreateWindowSettings(const char* name);
IMGUI_API ImGuiSettingsHandler* FindSettingsHandler(const char* type_name);
// Scrolling
IMGUI_API void SetNextWindowScroll(const ImVec2& scroll); // Use -1.0f on one axis to leave as-is
IMGUI_API void SetScrollX(ImGuiWindow* window, float new_scroll_x);
IMGUI_API void SetScrollY(ImGuiWindow* window, float new_scroll_y);
IMGUI_API void SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio = 0.5f);
IMGUI_API void SetScrollFromPosY(ImGuiWindow* window, float local_y, float center_y_ratio = 0.5f);
IMGUI_API ImVec2 ScrollToBringRectIntoView(ImGuiWindow* window, const ImRect& item_rect);
// Basic Accessors
inline ImGuiID GetItemID() { ImGuiContext& g = *GImGui; return g.CurrentWindow->DC.LastItemId; } // Get ID of last item (~~ often same ImGui::GetID(label) beforehand)
inline ImGuiItemStatusFlags GetItemStatusFlags() { ImGuiContext& g = *GImGui; return g.CurrentWindow->DC.LastItemStatusFlags; }
inline ImGuiID GetActiveID() { ImGuiContext& g = *GImGui; return g.ActiveId; }
inline ImGuiID GetFocusID() { ImGuiContext& g = *GImGui; return g.NavId; }
IMGUI_API void SetActiveID(ImGuiID id, ImGuiWindow* window);
IMGUI_API void SetFocusID(ImGuiID id, ImGuiWindow* window);
IMGUI_API void ClearActiveID();
IMGUI_API ImGuiID GetHoveredID();
IMGUI_API void SetHoveredID(ImGuiID id);
IMGUI_API void KeepAliveID(ImGuiID id);
IMGUI_API void MarkItemEdited(ImGuiID id); // Mark data associated to given item as "edited", used by IsItemDeactivatedAfterEdit() function.
IMGUI_API void PushOverrideID(ImGuiID id); // Push given value as-is at the top of the ID stack (whereas PushID combines old and new hashes)
// Basic Helpers for widget code
IMGUI_API void ItemSize(const ImVec2& size, float text_baseline_y = -1.0f);
IMGUI_API void ItemSize(const ImRect& bb, float text_baseline_y = -1.0f);
IMGUI_API bool ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb = NULL);
IMGUI_API bool ItemHoverable(const ImRect& bb, ImGuiID id);
IMGUI_API bool IsClippedEx(const ImRect& bb, ImGuiID id, bool clip_even_when_logged);
IMGUI_API bool FocusableItemRegister(ImGuiWindow* window, ImGuiID id); // Return true if focus is requested
IMGUI_API void FocusableItemUnregister(ImGuiWindow* window);
IMGUI_API ImVec2 CalcItemSize(ImVec2 size, float default_w, float default_h);
IMGUI_API float CalcWrapWidthForPos(const ImVec2& pos, float wrap_pos_x);
IMGUI_API void PushMultiItemsWidths(int components, float width_full);
IMGUI_API void PushItemFlag(ImGuiItemFlags option, bool enabled);
IMGUI_API void PopItemFlag();
IMGUI_API bool IsItemToggledSelection(); // Was the last item selection toggled? (after Selectable(), TreeNode() etc. We only returns toggle _event_ in order to handle clipping correctly)
IMGUI_API ImVec2 GetContentRegionMaxAbs();
IMGUI_API void ShrinkWidths(ImGuiShrinkWidthItem* items, int count, float width_excess);
// Logging/Capture
IMGUI_API void LogBegin(ImGuiLogType type, int auto_open_depth); // -> BeginCapture() when we design v2 api, for now stay under the radar by using the old name.
IMGUI_API void LogToBuffer(int auto_open_depth = -1); // Start logging/capturing to internal buffer
// Popups, Modals, Tooltips
IMGUI_API bool BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags flags);
IMGUI_API void OpenPopupEx(ImGuiID id);
IMGUI_API void ClosePopupToLevel(int remaining, bool restore_focus_to_window_under_popup);
IMGUI_API void ClosePopupsOverWindow(ImGuiWindow* ref_window, bool restore_focus_to_window_under_popup);
IMGUI_API bool IsPopupOpen(ImGuiID id); // Test for id at current popup stack level (currently begin-ed into); this doesn't scan the whole popup stack!
IMGUI_API bool BeginPopupEx(ImGuiID id, ImGuiWindowFlags extra_flags);
IMGUI_API void BeginTooltipEx(ImGuiWindowFlags extra_flags, ImGuiTooltipFlags tooltip_flags);
IMGUI_API ImGuiWindow* GetTopMostPopupModal();
IMGUI_API ImVec2 FindBestWindowPosForPopup(ImGuiWindow* window);
IMGUI_API ImVec2 FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* last_dir, const ImRect& r_outer, const ImRect& r_avoid, ImGuiPopupPositionPolicy policy = ImGuiPopupPositionPolicy_Default);
// Gamepad/Keyboard Navigation
IMGUI_API void NavInitWindow(ImGuiWindow* window, bool force_reinit);
IMGUI_API bool NavMoveRequestButNoResultYet();
IMGUI_API void NavMoveRequestCancel();
IMGUI_API void NavMoveRequestForward(ImGuiDir move_dir, ImGuiDir clip_dir, const ImRect& bb_rel, ImGuiNavMoveFlags move_flags);
IMGUI_API void NavMoveRequestTryWrapping(ImGuiWindow* window, ImGuiNavMoveFlags move_flags);
IMGUI_API float GetNavInputAmount(ImGuiNavInput n, ImGuiInputReadMode mode);
IMGUI_API ImVec2 GetNavInputAmount2d(ImGuiNavDirSourceFlags dir_sources, ImGuiInputReadMode mode, float slow_factor = 0.0f, float fast_factor = 0.0f);
IMGUI_API int CalcTypematicRepeatAmount(float t0, float t1, float repeat_delay, float repeat_rate);
IMGUI_API void ActivateItem(ImGuiID id); // Remotely activate a button, checkbox, tree node etc. given its unique ID. activation is queued and processed on the next frame when the item is encountered again.
IMGUI_API void SetNavID(ImGuiID id, int nav_layer, ImGuiID focus_scope_id);
IMGUI_API void SetNavIDWithRectRel(ImGuiID id, int nav_layer, ImGuiID focus_scope_id, const ImRect& rect_rel);
// Focus Scope (WIP)
// This is generally used to identify a selection set (multiple of which may be in the same window), as selection
// patterns generally need to react (e.g. clear selection) when landing on an item of the set.
IMGUI_API void PushFocusScope(ImGuiID id);
IMGUI_API void PopFocusScope();
inline ImGuiID GetFocusScopeID() { ImGuiContext& g = *GImGui; return g.NavFocusScopeId; }
// Inputs
// FIXME: Eventually we should aim to move e.g. IsActiveIdUsingKey() into IsKeyXXX functions.
inline bool IsActiveIdUsingNavDir(ImGuiDir dir) { ImGuiContext& g = *GImGui; return (g.ActiveIdUsingNavDirMask & (1 << dir)) != 0; }
inline bool IsActiveIdUsingNavInput(ImGuiNavInput input) { ImGuiContext& g = *GImGui; return (g.ActiveIdUsingNavInputMask & (1 << input)) != 0; }
inline bool IsActiveIdUsingKey(ImGuiKey key) { ImGuiContext& g = *GImGui; IM_ASSERT(key < 64); return (g.ActiveIdUsingKeyInputMask & ((ImU64)1 << key)) != 0; }
IMGUI_API bool IsMouseDragPastThreshold(ImGuiMouseButton button, float lock_threshold = -1.0f);
inline bool IsKeyPressedMap(ImGuiKey key, bool repeat = true) { ImGuiContext& g = *GImGui; const int key_index = g.IO.KeyMap[key]; return (key_index >= 0) ? IsKeyPressed(key_index, repeat) : false; }
inline bool IsNavInputDown(ImGuiNavInput n) { ImGuiContext& g = *GImGui; return g.IO.NavInputs[n] > 0.0f; }
inline bool IsNavInputTest(ImGuiNavInput n, ImGuiInputReadMode rm) { return (GetNavInputAmount(n, rm) > 0.0f); }
IMGUI_API ImGuiKeyModFlags GetMergedKeyModFlags();
// Drag and Drop
IMGUI_API bool BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id);
IMGUI_API void ClearDragDrop();
IMGUI_API bool IsDragDropPayloadBeingAccepted();
// Internal Columns API (this is not exposed because we will encourage transitioning to the Tables API)
IMGUI_API void BeginColumns(const char* str_id, int count, ImGuiColumnsFlags flags = 0); // setup number of columns. use an identifier to distinguish multiple column sets. close with EndColumns().
IMGUI_API void EndColumns(); // close columns
IMGUI_API void PushColumnClipRect(int column_index);
IMGUI_API void PushColumnsBackground();
IMGUI_API void PopColumnsBackground();
IMGUI_API ImGuiID GetColumnsID(const char* str_id, int count);
IMGUI_API ImGuiColumns* FindOrCreateColumns(ImGuiWindow* window, ImGuiID id);
IMGUI_API float GetColumnOffsetFromNorm(const ImGuiColumns* columns, float offset_norm);
IMGUI_API float GetColumnNormFromOffset(const ImGuiColumns* columns, float offset);
// Tab Bars
IMGUI_API bool BeginTabBarEx(ImGuiTabBar* tab_bar, const ImRect& bb, ImGuiTabBarFlags flags);
IMGUI_API ImGuiTabItem* TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id);
IMGUI_API void TabBarRemoveTab(ImGuiTabBar* tab_bar, ImGuiID tab_id);
IMGUI_API void TabBarCloseTab(ImGuiTabBar* tab_bar, ImGuiTabItem* tab);
IMGUI_API void TabBarQueueChangeTabOrder(ImGuiTabBar* tab_bar, const ImGuiTabItem* tab, int dir);
IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags);
IMGUI_API ImVec2 TabItemCalcSize(const char* label, bool has_close_button);
IMGUI_API void TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col);
IMGUI_API bool TabItemLabelAndCloseButton(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImVec2 frame_padding, const char* label, ImGuiID tab_id, ImGuiID close_button_id, bool is_contents_visible);
// Render helpers
// AVOID USING OUTSIDE OF IMGUI.CPP! NOT FOR PUBLIC CONSUMPTION. THOSE FUNCTIONS ARE A MESS. THEIR SIGNATURE AND BEHAVIOR WILL CHANGE, THEY NEED TO BE REFACTORED INTO SOMETHING DECENT.
// NB: All position are in absolute pixels coordinates (we are never using window coordinates internally)
IMGUI_API void RenderText(ImVec2 pos, const char* text, const char* text_end = NULL, bool hide_text_after_hash = true);
IMGUI_API void RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_width);
IMGUI_API void RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0,0), const ImRect* clip_rect = NULL);
IMGUI_API void RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL);
IMGUI_API void RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end, const ImVec2* text_size_if_known);
IMGUI_API void RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border = true, float rounding = 0.0f);
IMGUI_API void RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding = 0.0f);
IMGUI_API void RenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list, ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, float grid_step, ImVec2 grid_off, float rounding = 0.0f, int rounding_corners_flags = ~0);
IMGUI_API void RenderNavHighlight(const ImRect& bb, ImGuiID id, ImGuiNavHighlightFlags flags = ImGuiNavHighlightFlags_TypeDefault); // Navigation highlight
IMGUI_API const char* FindRenderedTextEnd(const char* text, const char* text_end = NULL); // Find the optional ## from which we stop displaying text.
IMGUI_API void LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_end = NULL);
// Render helpers (those functions don't access any ImGui state!)
IMGUI_API void RenderArrow(ImDrawList* draw_list, ImVec2 pos, ImU32 col, ImGuiDir dir, float scale = 1.0f);
IMGUI_API void RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col);
IMGUI_API void RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz);
IMGUI_API void RenderMouseCursor(ImDrawList* draw_list, ImVec2 pos, float scale, ImGuiMouseCursor mouse_cursor, ImU32 col_fill, ImU32 col_border, ImU32 col_shadow);
IMGUI_API void RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir direction, ImU32 col);
IMGUI_API void RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x_start_norm, float x_end_norm, float rounding);
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
// [1.71: 2019/06/07: Updating prototypes of some of the internal functions. Leaving those for reference for a short while]
inline void RenderArrow(ImVec2 pos, ImGuiDir dir, float scale=1.0f) { ImGuiWindow* window = GetCurrentWindow(); RenderArrow(window->DrawList, pos, GetColorU32(ImGuiCol_Text), dir, scale); }
inline void RenderBullet(ImVec2 pos) { ImGuiWindow* window = GetCurrentWindow(); RenderBullet(window->DrawList, pos, GetColorU32(ImGuiCol_Text)); }
#endif
// Widgets
IMGUI_API void TextEx(const char* text, const char* text_end = NULL, ImGuiTextFlags flags = 0);
IMGUI_API bool ButtonEx(const char* label, const ImVec2& size_arg = ImVec2(0,0), ImGuiButtonFlags flags = 0);
IMGUI_API bool CloseButton(ImGuiID id, const ImVec2& pos);
IMGUI_API bool CollapseButton(ImGuiID id, const ImVec2& pos);
IMGUI_API bool ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size_arg, ImGuiButtonFlags flags = 0);
IMGUI_API void Scrollbar(ImGuiAxis axis);
IMGUI_API bool ScrollbarEx(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* p_scroll_v, float avail_v, float contents_v, ImDrawCornerFlags rounding_corners);
IMGUI_API ImRect GetWindowScrollbarRect(ImGuiWindow* window, ImGuiAxis axis);
IMGUI_API ImGuiID GetWindowScrollbarID(ImGuiWindow* window, ImGuiAxis axis);
IMGUI_API ImGuiID GetWindowResizeID(ImGuiWindow* window, int n); // 0..3: corners, 4..7: borders
IMGUI_API void SeparatorEx(ImGuiSeparatorFlags flags);
// Widgets low-level behaviors
IMGUI_API bool ButtonBehavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGuiButtonFlags flags = 0);
IMGUI_API bool DragBehavior(ImGuiID id, ImGuiDataType data_type, void* p_v, float v_speed, const void* p_min, const void* p_max, const char* format, float power, ImGuiDragFlags flags);
IMGUI_API bool SliderBehavior(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, void* p_v, const void* p_min, const void* p_max, const char* format, float power, ImGuiSliderFlags flags, ImRect* out_grab_bb);
IMGUI_API bool SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend = 0.0f, float hover_visibility_delay = 0.0f);
IMGUI_API bool TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* label, const char* label_end = NULL);
IMGUI_API bool TreeNodeBehaviorIsOpen(ImGuiID id, ImGuiTreeNodeFlags flags = 0); // Consume previous SetNextItemOpen() data, if any. May return true when logging
IMGUI_API void TreePushOverrideID(ImGuiID id);
// Template functions are instantiated in imgui_widgets.cpp for a finite number of types.
// To use them externally (for custom widget) you may need an "extern template" statement in your code in order to link to existing instances and silence Clang warnings (see #2036).
// e.g. " extern template IMGUI_API float RoundScalarWithFormatT<float, float>(const char* format, ImGuiDataType data_type, float v); "
template<typename T, typename SIGNED_T, typename FLOAT_T> IMGUI_API bool DragBehaviorT(ImGuiDataType data_type, T* v, float v_speed, T v_min, T v_max, const char* format, float power, ImGuiDragFlags flags);
template<typename T, typename SIGNED_T, typename FLOAT_T> IMGUI_API bool SliderBehaviorT(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, T* v, T v_min, T v_max, const char* format, float power, ImGuiSliderFlags flags, ImRect* out_grab_bb);
template<typename T, typename FLOAT_T> IMGUI_API float SliderCalcRatioFromValueT(ImGuiDataType data_type, T v, T v_min, T v_max, float power, float linear_zero_pos);
template<typename T, typename SIGNED_T> IMGUI_API T RoundScalarWithFormatT(const char* format, ImGuiDataType data_type, T v);
// Data type helpers
IMGUI_API const ImGuiDataTypeInfo* DataTypeGetInfo(ImGuiDataType data_type);
IMGUI_API int DataTypeFormatString(char* buf, int buf_size, ImGuiDataType data_type, const void* p_data, const char* format);
IMGUI_API void DataTypeApplyOp(ImGuiDataType data_type, int op, void* output, void* arg_1, const void* arg_2);
IMGUI_API bool DataTypeApplyOpFromText(const char* buf, const char* initial_value_buf, ImGuiDataType data_type, void* p_data, const char* format);
IMGUI_API bool DataTypeClamp(ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max);
// InputText
IMGUI_API bool InputTextEx(const char* label, const char* hint, char* buf, int buf_size, const ImVec2& size_arg, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);
IMGUI_API bool TempInputText(const ImRect& bb, ImGuiID id, const char* label, char* buf, int buf_size, ImGuiInputTextFlags flags);
IMGUI_API bool TempInputScalar(const ImRect& bb, ImGuiID id, const char* label, ImGuiDataType data_type, void* p_data, const char* format, const void* p_clamp_min = NULL, const void* p_clamp_max = NULL);
inline bool TempInputIsActive(ImGuiID id) { ImGuiContext& g = *GImGui; return (g.ActiveId == id && g.TempInputId == id); }
inline ImGuiInputTextState* GetInputTextState(ImGuiID id) { ImGuiContext& g = *GImGui; return (g.InputTextState.ID == id) ? &g.InputTextState : NULL; } // Get input text state if active
// Color
IMGUI_API void ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags);
IMGUI_API void ColorEditOptionsPopup(const float* col, ImGuiColorEditFlags flags);
IMGUI_API void ColorPickerOptionsPopup(const float* ref_col, ImGuiColorEditFlags flags);
// Plot
IMGUI_API int PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_size);
// Shade functions (write over already created vertices)
IMGUI_API void ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1);
IMGUI_API void ShadeVertsLinearUV(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, bool clamp);
// Garbage collection
IMGUI_API void GcCompactTransientWindowBuffers(ImGuiWindow* window);
IMGUI_API void GcAwakeTransientWindowBuffers(ImGuiWindow* window);
// Debug Tools
inline void DebugDrawItemRect(ImU32 col = IM_COL32(255,0,0,255)) { ImGuiContext& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; GetForegroundDrawList(window)->AddRect(window->DC.LastItemRect.Min, window->DC.LastItemRect.Max, col); }
inline void DebugStartItemPicker() { ImGuiContext& g = *GImGui; g.DebugItemPickerActive = true; }
} // namespace ImGui
// ImFontAtlas internals
IMGUI_API bool ImFontAtlasBuildWithStbTruetype(ImFontAtlas* atlas);
IMGUI_API void ImFontAtlasBuildInit(ImFontAtlas* atlas);
IMGUI_API void ImFontAtlasBuildSetupFont(ImFontAtlas* atlas, ImFont* font, ImFontConfig* font_config, float ascent, float descent);
IMGUI_API void ImFontAtlasBuildPackCustomRects(ImFontAtlas* atlas, void* stbrp_context_opaque);
IMGUI_API void ImFontAtlasBuildFinish(ImFontAtlas* atlas);
IMGUI_API void ImFontAtlasBuildMultiplyCalcLookupTable(unsigned char out_table[256], float in_multiply_factor);
IMGUI_API void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsigned char* pixels, int x, int y, int w, int h, int stride);
//-----------------------------------------------------------------------------
// [SECTION] Test Engine Hooks (imgui_test_engine)
//-----------------------------------------------------------------------------
//#define IMGUI_ENABLE_TEST_ENGINE
#ifdef IMGUI_ENABLE_TEST_ENGINE
extern void ImGuiTestEngineHook_PreNewFrame(ImGuiContext* ctx);
extern void ImGuiTestEngineHook_PostNewFrame(ImGuiContext* ctx);
extern void ImGuiTestEngineHook_ItemAdd(ImGuiContext* ctx, const ImRect& bb, ImGuiID id);
extern void ImGuiTestEngineHook_ItemInfo(ImGuiContext* ctx, ImGuiID id, const char* label, ImGuiItemStatusFlags flags);
extern void ImGuiTestEngineHook_IdInfo(ImGuiContext* ctx, ImGuiDataType data_type, ImGuiID id, const void* data_id);
extern void ImGuiTestEngineHook_IdInfo(ImGuiContext* ctx, ImGuiDataType data_type, ImGuiID id, const void* data_id, const void* data_id_end);
extern void ImGuiTestEngineHook_Log(ImGuiContext* ctx, const char* fmt, ...);
#define IMGUI_TEST_ENGINE_ITEM_ADD(_BB,_ID) if (g.TestEngineHookItems) ImGuiTestEngineHook_ItemAdd(&g, _BB, _ID) // Register item bounding box
#define IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS) if (g.TestEngineHookItems) ImGuiTestEngineHook_ItemInfo(&g, _ID, _LABEL, _FLAGS) // Register item label and status flags (optional)
#define IMGUI_TEST_ENGINE_LOG(_FMT,...) if (g.TestEngineHookItems) ImGuiTestEngineHook_Log(&g, _FMT, __VA_ARGS__) // Custom log entry from user land into test log
#define IMGUI_TEST_ENGINE_ID_INFO(_ID,_TYPE,_DATA) if (g.TestEngineHookIdInfo == id) ImGuiTestEngineHook_IdInfo(&g, _TYPE, _ID, (const void*)(_DATA));
#define IMGUI_TEST_ENGINE_ID_INFO2(_ID,_TYPE,_DATA,_DATA2) if (g.TestEngineHookIdInfo == id) ImGuiTestEngineHook_IdInfo(&g, _TYPE, _ID, (const void*)(_DATA), (const void*)(_DATA2));
#else
#define IMGUI_TEST_ENGINE_ITEM_ADD(_BB,_ID) do { } while (0)
#define IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS) do { } while (0)
#define IMGUI_TEST_ENGINE_LOG(_FMT,...) do { } while (0)
#define IMGUI_TEST_ENGINE_ID_INFO(_ID,_TYPE,_DATA) do { } while (0)
#define IMGUI_TEST_ENGINE_ID_INFO2(_ID,_TYPE,_DATA,_DATA2) do { } while (0)
#endif
#if defined(__clang__)
#pragma clang diagnostic pop
#elif defined(__GNUC__)
#pragma GCC diagnostic pop
#endif
#ifdef _MSC_VER
#pragma warning (pop)
#endif
#endif // #ifndef IMGUI_DISABLE
| [
"aleksey.fedotov@gmail.com"
] | aleksey.fedotov@gmail.com |
9b85ea7b40aa818df404ff64cc76cf85dde6fe42 | ce6229f5915f9e6de1238861b4a940d61e56960b | /Sonder/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_EqualityCompar4142834369.h | 50ac9d26513a1efb8d7f9279041a54f27047ec54 | [
"Apache-2.0"
] | permissive | HackingForGood/GoogleyEyes | d9e36e3dffb4edbd0736ab49a764736a91ecebcf | a92b962ab220686794350560a47e88191e165c05 | refs/heads/master | 2021-04-15T10:03:59.093464 | 2017-06-25T17:32:52 | 2017-06-25T17:32:52 | 94,575,021 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,424 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Object2689449295.h"
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/InputType>
struct EqualityComparer_1_t4142834369;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/InputType>
struct EqualityComparer_1_t4142834369 : public Il2CppObject
{
public:
public:
};
struct EqualityComparer_1_t4142834369_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1::_default
EqualityComparer_1_t4142834369 * ____default_0;
public:
inline static int32_t get_offset_of__default_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4142834369_StaticFields, ____default_0)); }
inline EqualityComparer_1_t4142834369 * get__default_0() const { return ____default_0; }
inline EqualityComparer_1_t4142834369 ** get_address_of__default_0() { return &____default_0; }
inline void set__default_0(EqualityComparer_1_t4142834369 * value)
{
____default_0 = value;
Il2CppCodeGenWriteBarrier(&____default_0, value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"anishdhesikan@gmail.com"
] | anishdhesikan@gmail.com |
d2412d4128c38cbecce7a76e6532049d06bc463e | d8114efc4af9b9c629844df67b4a9e8596055525 | /boj/passWithHelp/201123_1978.cpp | 7ef561b2c9d1683401807a04ede7b53a30daa264 | [] | no_license | noeykan/algorithm-study | 631ec33b58726e92b6f2bd16ef18dcec3adc291a | 383bc2a0a99f709740b877a7531ec06c9c39800e | refs/heads/master | 2022-05-06T09:55:28.989748 | 2022-04-25T09:56:04 | 2022-04-25T09:56:04 | 177,935,358 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,222 | cpp | // 소수 찾기
// https://www.acmicpc.net/problem/1978
/*
- 1부터 일일이 나눠가며 소수 찾는 법 밖에 생각 안나서 블로그 보고 풀었음
최적화를 한 것이, n까지 안가고 루트 n 까지만 검사해도 된다고 수학적으로 증명되었다고 함
예를들어 80이면 8 까지만 조사 하고 난 이후에는 어차피 조사 한 값이니까 (8*10)
- 여기서 더 최적화 화려면 이미 검사한 배열 그대로 사용하거나 아니면 가장 큰 값을 먼저
구하고 한번 배열 완성 시킨 후에 그 배열로 모든 숫자 체크하면 된다.
*/
#include <iostream>
#include <vector>
using namespace std;
bool isPrime(int n)
{
vector<bool> isPrimeVec(n+1, true);
isPrimeVec[1] = false;
for (int i=2; i*i<=n; ++i) {
if (isPrimeVec[i] == false) {
continue;
}
for (int j=i*2; j<=n; j+=i) {
isPrimeVec[j] = false;
}
}
return isPrimeVec[n];
}
int main()
{
int cnt;
cin >> cnt;
int primeCnt = 0;
while (cnt--) {
int input;
cin >> input;
if (isPrime(input))
primeCnt++;
}
cout << primeCnt;
return 0;
}
| [
"noeykan@gmail.com"
] | noeykan@gmail.com |
0960951ff4a61e3583a50385d44e66cba18eab4b | 1efee3dd074ffa6820fad5d76d2e126c5b235dbe | /misc/old/hamster/wifi.h | d6a5de8ba0dcb62179eff380c28cd1299a7c1653 | [] | no_license | Julien5/sandbox | c9899371741a02384bde516941638740cfa58597 | 265f5aeb02bcdac0d60b3a5b91c4e2e4aafad2cc | refs/heads/master | 2023-08-04T08:28:00.338175 | 2023-05-13T09:05:35 | 2023-05-13T09:05:35 | 149,029,974 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 637 | h | #pragma once
#include "parse.h"
#include <stdint.h>
namespace wifi {
class interface {
public:
virtual bool reset() = 0;
virtual bool join() = 0;
virtual bool get(const char* req, char** response) = 0;
virtual int post(const char* req, const u8 * data, const int Ldata, char** response=0) = 0;
virtual bool enabled() const = 0;
int test_upload();
};
class mock : public interface {
public:
bool reset();
bool join();
bool get(const char* req, char** response);
int post(const char* req, const u8 * data, const int Ldata, char** response=0);
bool enabled() const;
};
}
| [
"julien_bourgeois@yahoo.fr"
] | julien_bourgeois@yahoo.fr |
d53b7837de5daae6ebaa403b89af7d48af0d90fa | 67ed24f7e68014e3dbe8970ca759301f670dc885 | /win10.19042/SysWOW64/rasppp.dll.cpp | 9c29c8037a41035272d68b790e88268080622951 | [] | no_license | nil-ref/dll-exports | d010bd77a00048e52875d2a739ea6a0576c82839 | 42ccc11589b2eb91b1aa82261455df8ee88fa40c | refs/heads/main | 2023-04-20T21:28:05.295797 | 2021-05-07T14:06:23 | 2021-05-07T14:06:23 | 401,055,938 | 1 | 0 | null | 2021-08-29T14:00:50 | 2021-08-29T14:00:49 | null | UTF-8 | C++ | false | false | 932 | cpp | #pragma comment(linker, "/export:InitializeProtocolEngine=\"C:\\Windows\\SysWOW64\\rasppp.InitializeProtocolEngine\"")
#pragma comment(linker, "/export:InitializeServerProtocolEngine=\"C:\\Windows\\SysWOW64\\rasppp.InitializeServerProtocolEngine\"")
#pragma comment(linker, "/export:PppStop=\"C:\\Windows\\SysWOW64\\rasppp.PppStop\"")
#pragma comment(linker, "/export:RasCpEnumProtocolIds=\"C:\\Windows\\SysWOW64\\rasppp.RasCpEnumProtocolIds\"")
#pragma comment(linker, "/export:RasCpGetInfo=\"C:\\Windows\\SysWOW64\\rasppp.RasCpGetInfo\"")
#pragma comment(linker, "/export:SendMessageToProtocolEngine=\"C:\\Windows\\SysWOW64\\rasppp.SendMessageToProtocolEngine\"")
#pragma comment(linker, "/export:UninitializeProtocolEngine=\"C:\\Windows\\SysWOW64\\rasppp.UninitializeProtocolEngine\"")
#pragma comment(linker, "/export:UninitializeServerProtocolEngine=\"C:\\Windows\\SysWOW64\\rasppp.UninitializeServerProtocolEngine\"")
| [
"magnus@stubman.eu"
] | magnus@stubman.eu |
8bc74ae694e49c93b21bc29ac89071a29be591e5 | e04f52ed50f42ad255c66d7b6f87ba642f41e125 | /appseed/hellobase/hellobase.h | 0e5e5befc8ad502f6c3be531ec2acd1822005b64 | [] | no_license | ca2/app2018 | 6b5f3cfecaa56b0e8c8ec92ed26e8ce44f9b44c0 | 89e713c36cdfb31329e753ba9d7b9ff5b80fe867 | refs/heads/main | 2023-03-19T08:41:48.729250 | 2018-11-15T16:27:31 | 2018-11-15T16:27:31 | 98,031,531 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 720 | h | #pragma once
#include "helloaxis/helloaxis.h"
#include "base/base/base.h"
#ifdef _APP_HELLO_BASE_LIBRARY
#define CLASS_DECL_APP_HELLO_BASE CLASS_DECL_EXPORT
#else
#define CLASS_DECL_APP_HELLO_BASE CLASS_DECL_IMPORT
#endif
namespace user
{
typedef ::user::show < ::user::button > button_view;
} // namespace user
namespace hellobase
{
class application;
class document;
class view;
} // namespace flag
#undef App
#define App(pbaseapp) (pbaseapp->m_papp->cast_app < ::hellobase::application > ())
#include "hellobase_render.h"
#include "hellobase_document.h"
#include "hellobase_view_base.h"
#include "hellobase_view.h"
#include "hellobase_main_frame.h"
#include "hellobase_application.h"
| [
"camilo@ca2.email"
] | camilo@ca2.email |
5ff4af61d3959f99b77623c14ac68a9d6d5570a0 | 2262f894227d5abdbb5c2d66dfc49a97128774ec | /cc/resources/shared_bitmap_manager.h | 1dd089758d787bd6a3723ca66258bb8f7e28ecaf | [
"BSD-3-Clause"
] | permissive | willbittner/mojo | 7e3253184351f7fbdde9e5c4b5f91ae1e6887641 | 810682eae832db3f8bc7bce01919b59d6e9538f2 | refs/heads/master | 2020-12-11T01:52:04.546158 | 2016-01-14T23:48:44 | 2016-01-14T23:48:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 844 | h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_RESOURCES_SHARED_BITMAP_MANAGER_H_
#define CC_RESOURCES_SHARED_BITMAP_MANAGER_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "cc/resources/shared_bitmap.h"
#include "ui/gfx/geometry/size.h"
namespace cc {
class SharedBitmapManager {
public:
SharedBitmapManager() {}
virtual ~SharedBitmapManager() {}
virtual scoped_ptr<SharedBitmap> AllocateSharedBitmap(const gfx::Size&) = 0;
virtual scoped_ptr<SharedBitmap> GetSharedBitmapFromId(
const gfx::Size&,
const SharedBitmapId&) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(SharedBitmapManager);
};
} // namespace cc
#endif // CC_RESOURCES_SHARED_BITMAP_MANAGER_H_
| [
"viettrungluu@chromium.org"
] | viettrungluu@chromium.org |
bb126fd1086fae720aad4f4dead76ded7c90a58d | 0efc7890f5b2e69721a869fdba6335677dcc5e79 | /src/states/SummaryState.h | a5cd1f05abb6cf173685993afee2a5c3c0df8e97 | [
"MIT"
] | permissive | ashleygwinnell/foh-ld40 | e7be1ca900f020341a681325909fb61205df44f3 | 6ee3ed856c1915177532161cb5de13ad7ce13264 | refs/heads/master | 2020-03-27T17:47:05.292330 | 2018-08-31T10:01:49 | 2018-08-31T10:01:49 | 146,874,115 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,734 | h |
#ifndef ARK2D_DEFAULTGAME_SUMMARYSTATE_H_
#define ARK2D_DEFAULTGAME_SUMMARYSTATE_H_
#include <ARK2D/Core/State/GameState.h>
class DefaultGame;
class MapLocation {
public:
Image* cityImage;
float x;
float y;
float timer;
float duration;
bool ruined;
static const unsigned int FACE_INTRO = 0;
static const unsigned int FACE_IDLE = 1;
};
class SummaryState : public GameState {
public:
ARK::UI::Button* m_buttonRetry;
ARK::UI::Button* m_buttonMenu;
float m_introTimer;
float m_introDuration;
float m_outroTimer;
float m_outroDuration;
GameState* m_outroTo;
float m_showUITimer;
float m_showUIDuration;
Image* m_map;
Image* m_mapSadFace;
Image* m_mapPresent;
vector<MapLocation*> m_mapLocations;
Image* m_santaSleigh;
Image* m_santaHuman;
Image* m_santaCarl;
float m_santaTimer;
float m_santaDuration;
bool m_finalWin;
int m_mapLocationsRuined;
CameraShake* m_cameraShake;
vector<string> winLines;
vector<string> loseLines;
int loseIndex;
SummaryState();
void enter(GameContainer* container, StateBasedGame* game, GameState* from);
void leave(GameContainer* container, StateBasedGame* game, GameState* to);
unsigned int id();
float getSantaX();
void init(GameContainer* container, StateBasedGame* game);
void update(GameContainer* container, StateBasedGame* game, GameTimer* timer);
void render(GameContainer* container, StateBasedGame* game, Renderer* r);
virtual bool keyPressed(unsigned int key);
virtual bool keyReleased(unsigned int key);
virtual bool mouseMoved(int x, int y, int oldx, int oldy);
virtual ~SummaryState();
};
#endif /* ARK2D_DEFAULTGAME_SUMMARYSTATE_H_ */
| [
"info@ashleygwinnell.co.uk"
] | info@ashleygwinnell.co.uk |
e739bf70f76f8d537e1b055cec6c36ee81a2a87a | 11de11312ac3a34fbf74b204fd401db60eb7d90e | /Data Structures/Binary Tree/binary tree without recursion.cpp | 00dbf92316ec8cd9c37cf27ea7d1a8020beb4817 | [] | no_license | AdityapravaSen/C-Programs | db61458e822bf1cab46eed5dcfffe5fb9409be2c | c52114a2048c02eb882ca2fe0040e28d7a1bfbcc | refs/heads/main | 2023-06-28T11:02:44.785414 | 2021-07-12T15:38:44 | 2021-07-12T15:38:44 | 322,871,888 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,347 | cpp | #include<stdio.h>
#include<conio.h>
#include<stdlib.h>
struct btree{
struct btree *lc;
int root;
struct btree *rc;
};
typedef struct btree bt;
bt *base,*nw,*temp,*tem;
main(){
int no;
void insert(void);
void preorder(void);
void del(int);
//clrscr();
fflush(stdin);
base=NULL;
insert();
//clrscr();
fflush(stdin);
printf("\n preorder \n");
preorder();
printf("\n data to be deleted :");
scanf("%d",&no);
del(no);
printf("\n preorder \n");
preorder();
getch();
}
void insert(void){
int i,n;
printf("\n no of data :");
scanf("%d",&n);
for(i=0;i<n;i++){
nw=(bt *)malloc(sizeof(bt));
printf("\n data :");
scanf("%d",&nw->root);
nw->lc=nw->rc=NULL;
if(base==NULL)
base=nw;
else{
temp=base;
while(temp){
tem=temp;
if(nw->root>=temp->root)
temp=temp->rc;
else
temp=temp->lc;
}
if(nw->root>=tem->root)
tem->rc=nw;
else
tem->lc=nw;
}
}
return;
}
void preorder(void)
{
bt *stk[20];
int i=0;
temp=base;
while(i>=0)
{
while(temp)
{
stk[i++]=temp;
printf("%d,",temp->root);
temp=temp->lc;
}
temp=stk[--i];
temp=temp->rc;
}
return;
}
void del(int no)
{
bt *x,*parant;
parant=x=NULL;
temp=base;
while(temp)
{
if(temp->root==no)
{
x=temp;
break;
}
if(no>temp->root)
{
parant=temp;
temp=temp->rc;
}
else
{
parant=temp;
temp=temp->lc;
}
}
if(temp->root!=no)
{
printf("\n data to be deleted not found ");
getch();
return;
}
if(x->lc!=NULL&&x->rc!=NULL)
{
parant=x;
temp=x->rc;
while(temp->lc!=NULL)
{
parant=temp;
temp=temp->lc;
}
x->root=temp->root;
x=temp;
}
if(x->lc==NULL&&x->rc==NULL)
{
if(parant->lc==x)
parant->lc=NULL;
else
parant->rc=NULL;
free(x);
return;
}
if(x->lc==NULL&&x->rc!=NULL)
{
if(parant->lc==x)
parant->lc=x->rc;
else
parant->rc=x->rc;
free(x);
return;
}
if(x->lc!=NULL&&x->rc==NULL)
{
if(parant->lc==x)
parant->lc=x->lc;
else
parant->rc=x->lc;
free(x);
return;
}
}
| [
"adityapravasen0911@gmail.com"
] | adityapravasen0911@gmail.com |
0591741ce006147fdd57b996831cc9a45f6cc014 | b1cd56bd4445a9a4b6dc1c164a41cc229b968c46 | /CODEFORCES/EDUCATIONAL ROUNDS/ed85/4.cpp | f1e54825158bf6d8cc15bf033b9ce44509b9cac3 | [] | no_license | Manvityagi/Codechef-Codeforces-spoj | ee6668d8dee2c13adc1592ed53f5d1ce10accc46 | 2ea51729061f140086e967d90d5a52c634375676 | refs/heads/master | 2023-04-26T05:34:30.473878 | 2021-06-02T13:09:27 | 2021-06-02T13:09:27 | 201,567,207 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,179 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long
void printCircuit(vector<vector<ll>> adj, ll l, ll r)
{
// adj represents the adjacency list of
// the directed graph
// edge_count represents the number of edges
// emerging from a vertex
unordered_map<ll, ll> edge_count;
for (ll i = 1; i <= adj.size(); i++)
{
//find the count of edges to keep track
//of unused edges
edge_count[i] = adj[i].size();
}
if (!adj.size())
return; //empty graph
// Mallain a stack to keep vertices
stack<ll> curr_path;
// vector to store final circuit
vector<ll> circuit;
// start from any vertex
curr_path.push(1);
ll curr_v = 0; // Current vertex
while (!curr_path.empty())
{
// If there's remaining edge
if (edge_count[curr_v])
{
// Push the vertex
curr_path.push(curr_v);
// Find the next vertex using an edge
ll next_v = adj[curr_v].back();
// and remove that edge
edge_count[curr_v]--;
adj[curr_v].pop_back();
// Move to next vertex
curr_v = next_v;
}
// back-track to find remaining circuit
else
{
circuit.push_back(curr_v);
// Back-tracking
curr_v = curr_path.top();
curr_path.pop();
}
}
// we've got the circuit, now prll it in reverse
// for (ll i = circuit.size() - 1; i >= 0; i--)
// {
// cout << circuit[i];
// if (i)
// cout << " ";
// }
for (ll i = circuit.size() - 1; i >= 0; i--)
{
if (i >= l && i <= r)
{
cout << circuit[i];
if (i)
cout << " ";
}
}
}
main()
{
ll t;
cin >> t;
while (t--)
{
ll n, l, r;
cin >> n >> l >> r;
vector<vector<ll>> adj(n+2);
for (ll i = 1; i <= n; i++)
{
adj[i].push_back(i + 1);
adj[i + 1].push_back(i);
}
printCircuit(adj, l, r);
cout << "\n";
}
return 0;
}
| [
"manvityagi770@gmail.com"
] | manvityagi770@gmail.com |
403be0800cb615da1e903db9db86a131834169b9 | 98b930ecc859985287b400dcd4e91a43e00232bd | /components/history_clusters/core/history_clusters_service.h | a37c3420803f240e66f63c8619f3ae563bd735ac | [
"BSD-3-Clause"
] | permissive | pick-stars/chromium | 45c7eac217a2cef978fae0a7e793bf3991c1ae61 | e0d87073054b2bc50da303d7f1ac5eeb92ca7f9f | refs/heads/master | 2023-06-18T11:15:59.290987 | 2021-06-25T11:38:29 | 2021-06-25T11:38:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,710 | h | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_HISTORY_CLUSTERS_CORE_HISTORY_CLUSTERS_SERVICE_H_
#define COMPONENTS_HISTORY_CLUSTERS_CORE_HISTORY_CLUSTERS_SERVICE_H_
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "base/callback.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/task/cancelable_task_tracker.h"
#include "base/time/time.h"
#include "components/history/core/browser/history_service.h"
#include "components/history/core/browser/history_types.h"
#include "components/history_clusters/core/clustering_backend.h"
#include "components/history_clusters/core/history_clusters.mojom.h"
#include "components/history_clusters/core/visit_data.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/query_parser/query_parser.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
namespace history_clusters {
// This Service is the API for UIs to fetch Chrome Memories.
class HistoryClustersService : public KeyedService {
public:
class Observer : public base::CheckedObserver {
public:
virtual void OnMemoriesDebugMessage(const std::string& message) = 0;
};
struct QueryMemoriesResponse {
QueryMemoriesResponse(mojom::QueryParamsPtr query_params,
std::vector<mojom::ClusterPtr> clusters);
QueryMemoriesResponse(QueryMemoriesResponse&& other);
~QueryMemoriesResponse();
mojom::QueryParamsPtr query_params;
std::vector<mojom::ClusterPtr> clusters;
};
explicit HistoryClustersService(
history::HistoryService* history_service,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory);
HistoryClustersService(const HistoryClustersService&) = delete;
HistoryClustersService& operator=(const HistoryClustersService&) = delete;
~HistoryClustersService() override;
// KeyedService:
void Shutdown() override;
// Used to add and remove observers.
void AddObserver(Observer* obs);
void RemoveObserver(Observer* obs);
// Notifies the observers of a debug message being available.
void NotifyDebugMessage(const std::string& message) const;
// TODO(manukh) `HistoryClustersService` should be responsible for
// constructing the
// `AnnotatedVisit`s rather than exposing these methods which are used by
// `HistoryClustersTabHelper` to construct the visits.
// Gets an `IncompleteVisitContextAnnotations` after DCHECKing it exists; this
// saves the call sites the effort.
IncompleteVisitContextAnnotations& GetIncompleteVisitContextAnnotations(
int64_t nav_id);
// Gets or creates an `IncompleteVisitContextAnnotations`.
IncompleteVisitContextAnnotations&
GetOrCreateIncompleteVisitContextAnnotations(int64_t nav_id);
// Returns whether an `IncompleteVisitContextAnnotations` exists.
// TODO(manukh): Merge `HasIncompleteVisitContextAnnotations()` and
// `GetIncompleteVisitContextAnnotations()`.
bool HasIncompleteVisitContextAnnotations(int64_t nav_id);
// Completes the `IncompleteVisitContextAnnotations` if the expected metrics
// have been recorded. References retrieved prior will no longer be valid.
void CompleteVisitContextAnnotationsIfReady(int64_t nav_id);
// Returns the freshest Memories created from the user visit history, in
// reverse chronological order, based on the parameters in `query_params`
// along with continuation query params meant to be used in the follow-up
// request to load older Memories.
// Note: At the moment, this method asks `remote_model_helper_` to construct
// Memories.
void QueryMemories(mojom::QueryParamsPtr query_params,
base::OnceCallback<void(QueryMemoriesResponse)> callback,
base::CancelableTaskTracker* task_tracker);
// Removes all visits to the specified URLs in the specified time ranges in
// `expire_list`. Calls `closure` when done.
void RemoveVisits(const std::vector<history::ExpireHistoryArgs>& expire_list,
base::OnceClosure closure,
base::CancelableTaskTracker* task_tracker);
// Returns true synchronously if `query` matches a cluster keyword.
// Note: This depends on the cache state, so this may kick off a cache refresh
// request while immediately returning false. It's expected that on the next
// keystroke, the cache may be ready and return true then.
bool DoesQueryMatchAnyCluster(const std::string& query);
private:
friend class HistoryClustersServiceTestApi;
using IncompleteVisitMap =
std::map<int64_t, IncompleteVisitContextAnnotations>;
// This is a callback used for the `QueryMemories()` call from
// `DoesQueryMatchAnyCluster()`. Populates the cluster keyword cache from the
// clusters in `response`.
// TODO(tommycli): Make this callback only take a vector of clusters after
// we refactor the `QueryMemories()` interface.
void PopulateClusterKeywordCache(QueryMemoriesResponse response);
// `VisitContextAnnotations`s are constructed stepwise; they're initially
// placed in `incomplete_visit_context_annotations_` and saved to the history
// database once completed (if persistence is enabled).
IncompleteVisitMap incomplete_visit_context_annotations_;
// Non-owning pointer, but never nullptr.
history::HistoryService* const history_service_;
// Helper service to handle communicating with the remote model. This will be
// used for debugging only; the launch ready feature will use a local model
// instead.
std::unique_ptr<ClusteringBackend> backend_;
// In-memory cache of keywords match clusters, so we can query this
// synchronously as the user types in the omnibox. Also save the timestamp
// the cache was generated so we can periodically re-generate.
// TODO(tommycli): Make a smarter mechanism for regenerating the cache.
query_parser::QueryWordVector all_keywords_cache_;
base::Time all_keywords_cache_timestamp_;
base::CancelableTaskTracker cache_query_task_tracker_;
// A list of observers for this service.
base::ObserverList<Observer> observers_;
// Used to asyncly call into `backend_` after async history request.
std::unique_ptr<base::WeakPtrFactory<ClusteringBackend>>
backend_weak_factory_;
// Weak pointers issued from this factory never get invalidated before the
// service is destroyed.
base::WeakPtrFactory<HistoryClustersService> weak_ptr_factory_{this};
};
} // namespace history_clusters
#endif // COMPONENTS_HISTORY_CLUSTERS_CORE_HISTORY_CLUSTERS_SERVICE_H_
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
7b2d45cff3d906783f1e6c1610b10fae72016898 | 6b660cb96baa003de9e18e332b048c0f1fa67ab9 | /External/SDK/BP_gmp_compass_ash_01_a_ItemInfo_parameters.h | 20889a30c3e878ea7169585ad7fac6f73fd31a6c | [] | no_license | zanzo420/zSoT-SDK | 1edbff62b3e12695ecf3969537a6d2631a0ff36f | 5e581eb0400061f6e5f93b3affd95001f62d4f7c | refs/heads/main | 2022-07-30T03:35:51.225374 | 2021-07-07T01:07:20 | 2021-07-07T01:07:20 | 383,634,601 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | h | #pragma once
// Name: SoT, Version: 2.2.0.2
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function BP_gmp_compass_ash_01_a_ItemInfo.BP_gmp_compass_ash_01_a_ItemInfo_C.UserConstructionScript
struct ABP_gmp_compass_ash_01_a_ItemInfo_C_UserConstructionScript_Params
{
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"Massimo.linker@gmail.com"
] | Massimo.linker@gmail.com |
1a2f88185abee00d39161e36f34daf12e8551f48 | 74dff4e7eef21966cfbcb48d9db44d1b236787ce | /src/main.cpp | 0ca258fc18538d9a12944cf6577397fb5339cf1e | [
"MIT"
] | permissive | backspacebar/backspacebar | b78b13d9e0aa0aa07e9e77f164790fc8b702d665 | fe476de81707d33dc74a58f7f04b3554d93ad6b7 | refs/heads/master | 2021-07-24T16:37:05.684207 | 2017-11-05T18:46:13 | 2017-11-05T18:46:13 | 104,499,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 171,745 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "alert.h"
#include "checkpoints.h"
#include "db.h"
#include "txdb.h"
#include "net.h"
#include "init.h"
#include "ui_interface.h"
#include "checkqueue.h"
#include <boost/algorithm/string/replace.hpp>
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
using namespace std;
using namespace boost;
#if defined(NDEBUG)
# error "backspacebar cannot be compiled without assertions."
#endif
//
// Global state
//
CCriticalSection cs_setpwalletRegistered;
set<CWallet*> setpwalletRegistered;
CCriticalSection cs_main;
CTxMemPool mempool;
unsigned int nTransactionsUpdated = 0;
map<uint256, CBlockIndex*> mapBlockIndex;
uint256 hashGenesisBlock("0x8fb4c8900064e3bf139aa89fb22ed89b951055874f79ce55e8798e984b7e652b");
static CBigNum bnProofOfWorkLimit(~uint256(0) >> 20); // backspacebar: starting difficulty is 1 / 2^12
CBlockIndex* pindexGenesisBlock = NULL;
int nBestHeight = -1;
uint256 nBestChainWork = 0;
uint256 nBestInvalidWork = 0;
uint256 hashBestChain = 0;
CBlockIndex* pindexBest = NULL;
set<CBlockIndex*, CBlockIndexWorkComparator> setBlockIndexValid; // may contain all CBlockIndex*'s that have validness >=BLOCK_VALID_TRANSACTIONS, and must contain those who aren't failed
int64 nTimeBestReceived = 0;
int nScriptCheckThreads = 0;
bool fImporting = false;
bool fReindex = false;
bool fBenchmark = false;
bool fTxIndex = false;
unsigned int nCoinCacheSize = 5000;
/** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */
int64 CTransaction::nMinTxFee = 100000;
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */
int64 CTransaction::nMinRelayTxFee = 100000;
CMedianFilter<int> cPeerBlockCounts(8, 0); // Amount of blocks that other nodes claim to have
map<uint256, CBlock*> mapOrphanBlocks;
multimap<uint256, CBlock*> mapOrphanBlocksByPrev;
map<uint256, CTransaction> mapOrphanTransactions;
map<uint256, set<uint256> > mapOrphanTransactionsByPrev;
// Constant stuff for coinbase transactions we create:
CScript COINBASE_FLAGS;
const string strMessageMagic = "backspacebar Signed Message:\n";
double dHashesPerSec = 0.0;
int64 nHPSTimerStart = 0;
// Settings
int64 nTransactionFee = 0;
int64 nMinimumInputValue = DUST_HARD_LIMIT;
//////////////////////////////////////////////////////////////////////////////
//
// dispatching functions
//
// These functions dispatch to one or all registered wallets
void RegisterWallet(CWallet* pwalletIn)
{
{
LOCK(cs_setpwalletRegistered);
setpwalletRegistered.insert(pwalletIn);
}
}
void UnregisterWallet(CWallet* pwalletIn)
{
{
LOCK(cs_setpwalletRegistered);
setpwalletRegistered.erase(pwalletIn);
}
}
// get the wallet transaction with the given hash (if it exists)
bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
{
BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
if (pwallet->GetTransaction(hashTx,wtx))
return true;
return false;
}
// erases transaction with the given hash from all wallets
void static EraseFromWallets(uint256 hash)
{
BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
pwallet->EraseFromWallet(hash);
}
// make sure all wallets know about the given transaction, in the given block
void SyncWithWallets(const uint256 &hash, const CTransaction& tx, const CBlock* pblock, bool fUpdate)
{
BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
pwallet->AddToWalletIfInvolvingMe(hash, tx, pblock, fUpdate);
}
// notify wallets about a new best chain
void static SetBestChain(const CBlockLocator& loc)
{
BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
pwallet->SetBestChain(loc);
}
// notify wallets about an updated transaction
void static UpdatedTransaction(const uint256& hashTx)
{
BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
pwallet->UpdatedTransaction(hashTx);
}
// dump all wallets
void static PrintWallets(const CBlock& block)
{
BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
pwallet->PrintWallet(block);
}
// notify wallets about an incoming inventory (for request counts)
void static Inventory(const uint256& hash)
{
BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
pwallet->Inventory(hash);
}
// ask wallets to resend their transactions
void static ResendWalletTransactions()
{
BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
pwallet->ResendWalletTransactions();
}
//////////////////////////////////////////////////////////////////////////////
//
// CCoinsView implementations
//
bool CCoinsView::GetCoins(const uint256 &txid, CCoins &coins) { return false; }
bool CCoinsView::SetCoins(const uint256 &txid, const CCoins &coins) { return false; }
bool CCoinsView::HaveCoins(const uint256 &txid) { return false; }
CBlockIndex *CCoinsView::GetBestBlock() { return NULL; }
bool CCoinsView::SetBestBlock(CBlockIndex *pindex) { return false; }
bool CCoinsView::BatchWrite(const std::map<uint256, CCoins> &mapCoins, CBlockIndex *pindex) { return false; }
bool CCoinsView::GetStats(CCoinsStats &stats) { return false; }
CCoinsViewBacked::CCoinsViewBacked(CCoinsView &viewIn) : base(&viewIn) { }
bool CCoinsViewBacked::GetCoins(const uint256 &txid, CCoins &coins) { return base->GetCoins(txid, coins); }
bool CCoinsViewBacked::SetCoins(const uint256 &txid, const CCoins &coins) { return base->SetCoins(txid, coins); }
bool CCoinsViewBacked::HaveCoins(const uint256 &txid) { return base->HaveCoins(txid); }
CBlockIndex *CCoinsViewBacked::GetBestBlock() { return base->GetBestBlock(); }
bool CCoinsViewBacked::SetBestBlock(CBlockIndex *pindex) { return base->SetBestBlock(pindex); }
void CCoinsViewBacked::SetBackend(CCoinsView &viewIn) { base = &viewIn; }
bool CCoinsViewBacked::BatchWrite(const std::map<uint256, CCoins> &mapCoins, CBlockIndex *pindex) { return base->BatchWrite(mapCoins, pindex); }
bool CCoinsViewBacked::GetStats(CCoinsStats &stats) { return base->GetStats(stats); }
CCoinsViewCache::CCoinsViewCache(CCoinsView &baseIn, bool fDummy) : CCoinsViewBacked(baseIn), pindexTip(NULL) { }
bool CCoinsViewCache::GetCoins(const uint256 &txid, CCoins &coins) {
if (cacheCoins.count(txid)) {
coins = cacheCoins[txid];
return true;
}
if (base->GetCoins(txid, coins)) {
cacheCoins[txid] = coins;
return true;
}
return false;
}
std::map<uint256,CCoins>::iterator CCoinsViewCache::FetchCoins(const uint256 &txid) {
std::map<uint256,CCoins>::iterator it = cacheCoins.lower_bound(txid);
if (it != cacheCoins.end() && it->first == txid)
return it;
CCoins tmp;
if (!base->GetCoins(txid,tmp))
return cacheCoins.end();
std::map<uint256,CCoins>::iterator ret = cacheCoins.insert(it, std::make_pair(txid, CCoins()));
tmp.swap(ret->second);
return ret;
}
CCoins &CCoinsViewCache::GetCoins(const uint256 &txid) {
std::map<uint256,CCoins>::iterator it = FetchCoins(txid);
assert(it != cacheCoins.end());
return it->second;
}
bool CCoinsViewCache::SetCoins(const uint256 &txid, const CCoins &coins) {
cacheCoins[txid] = coins;
return true;
}
bool CCoinsViewCache::HaveCoins(const uint256 &txid) {
return FetchCoins(txid) != cacheCoins.end();
}
CBlockIndex *CCoinsViewCache::GetBestBlock() {
if (pindexTip == NULL)
pindexTip = base->GetBestBlock();
return pindexTip;
}
bool CCoinsViewCache::SetBestBlock(CBlockIndex *pindex) {
pindexTip = pindex;
return true;
}
bool CCoinsViewCache::BatchWrite(const std::map<uint256, CCoins> &mapCoins, CBlockIndex *pindex) {
for (std::map<uint256, CCoins>::const_iterator it = mapCoins.begin(); it != mapCoins.end(); it++)
cacheCoins[it->first] = it->second;
pindexTip = pindex;
return true;
}
bool CCoinsViewCache::Flush() {
bool fOk = base->BatchWrite(cacheCoins, pindexTip);
if (fOk)
cacheCoins.clear();
return fOk;
}
unsigned int CCoinsViewCache::GetCacheSize() {
return cacheCoins.size();
}
/** CCoinsView that brings transactions from a memorypool into view.
It does not check for spendings by memory pool transactions. */
CCoinsViewMemPool::CCoinsViewMemPool(CCoinsView &baseIn, CTxMemPool &mempoolIn) : CCoinsViewBacked(baseIn), mempool(mempoolIn) { }
bool CCoinsViewMemPool::GetCoins(const uint256 &txid, CCoins &coins) {
if (base->GetCoins(txid, coins))
return true;
if (mempool.exists(txid)) {
const CTransaction &tx = mempool.lookup(txid);
coins = CCoins(tx, MEMPOOL_HEIGHT);
return true;
}
return false;
}
bool CCoinsViewMemPool::HaveCoins(const uint256 &txid) {
return mempool.exists(txid) || base->HaveCoins(txid);
}
CCoinsViewCache *pcoinsTip = NULL;
CBlockTreeDB *pblocktree = NULL;
//////////////////////////////////////////////////////////////////////////////
//
// mapOrphanTransactions
//
bool AddOrphanTx(const CTransaction& tx)
{
uint256 hash = tx.GetHash();
if (mapOrphanTransactions.count(hash))
return false;
// Ignore big transactions, to avoid a
// send-big-orphans memory exhaustion attack. If a peer has a legitimate
// large transaction with a missing parent then we assume
// it will rebroadcast it later, after the parent transaction(s)
// have been mined or received.
// 10,000 orphans, each of which is at most 5,000 bytes big is
// at most 500 megabytes of orphans:
unsigned int sz = tx.GetSerializeSize(SER_NETWORK, CTransaction::CURRENT_VERSION);
if (sz > 5000)
{
printf("ignoring large orphan tx (size: %u, hash: %s)\n", sz, hash.ToString().c_str());
return false;
}
mapOrphanTransactions[hash] = tx;
BOOST_FOREACH(const CTxIn& txin, tx.vin)
mapOrphanTransactionsByPrev[txin.prevout.hash].insert(hash);
printf("stored orphan tx %s (mapsz %"PRIszu")\n", hash.ToString().c_str(),
mapOrphanTransactions.size());
return true;
}
void static EraseOrphanTx(uint256 hash)
{
map<uint256, CTransaction>::iterator it = mapOrphanTransactions.find(hash);
if (it == mapOrphanTransactions.end())
return;
BOOST_FOREACH(const CTxIn& txin, it->second.vin)
{
map<uint256, set<uint256> >::iterator itPrev = mapOrphanTransactionsByPrev.find(txin.prevout.hash);
if (itPrev == mapOrphanTransactionsByPrev.end())
continue;
itPrev->second.erase(hash);
if (itPrev->second.empty())
mapOrphanTransactionsByPrev.erase(itPrev);
}
mapOrphanTransactions.erase(it);
}
unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans)
{
unsigned int nEvicted = 0;
while (mapOrphanTransactions.size() > nMaxOrphans)
{
// Evict a random orphan:
uint256 randomhash = GetRandHash();
map<uint256, CTransaction>::iterator it = mapOrphanTransactions.lower_bound(randomhash);
if (it == mapOrphanTransactions.end())
it = mapOrphanTransactions.begin();
EraseOrphanTx(it->first);
++nEvicted;
}
return nEvicted;
}
//////////////////////////////////////////////////////////////////////////////
//
// CTransaction / CTxOut
//
bool CTxOut::IsDust() const
{
// backspacebar: IsDust() detection disabled, allows any valid dust to be relayed.
// The fees imposed on each dust txo is considered sufficient spam deterrant.
return false;
}
bool CTransaction::IsStandard(string& strReason) const
{
if (nVersion > CTransaction::CURRENT_VERSION || nVersion < 1) {
strReason = "version";
return false;
}
if (!IsFinal()) {
strReason = "not-final";
return false;
}
// Extremely large transactions with lots of inputs can cost the network
// almost as much to process as they cost the sender in fees, because
// computing signature hashes is O(ninputs*txsize). Limiting transactions
// to MAX_STANDARD_TX_SIZE mitigates CPU exhaustion attacks.
unsigned int sz = this->GetSerializeSize(SER_NETWORK, CTransaction::CURRENT_VERSION);
if (sz >= MAX_STANDARD_TX_SIZE) {
strReason = "tx-size";
return false;
}
BOOST_FOREACH(const CTxIn& txin, vin)
{
// Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG
// pay-to-script-hash, which is 3 ~80-byte signatures, 3
// ~65-byte public keys, plus a few script ops.
if (txin.scriptSig.size() > 500) {
strReason = "scriptsig-size";
return false;
}
if (!txin.scriptSig.IsPushOnly()) {
strReason = "scriptsig-not-pushonly";
return false;
}
if (!txin.scriptSig.HasCanonicalPushes()) {
strReason = "non-canonical-push";
return false;
}
}
BOOST_FOREACH(const CTxOut& txout, vout) {
if (!::IsStandard(txout.scriptPubKey)) {
strReason = "scriptpubkey";
return false;
}
if (txout.IsDust()) {
strReason = "dust";
return false;
}
}
return true;
}
//
// Check transaction inputs, and make sure any
// pay-to-script-hash transactions are evaluating IsStandard scripts
//
// Why bother? To avoid denial-of-service attacks; an attacker
// can submit a standard HASH... OP_EQUAL transaction,
// which will get accepted into blocks. The redemption
// script can be anything; an attacker could use a very
// expensive-to-check-upon-redemption script like:
// DUP CHECKSIG DROP ... repeated 100 times... OP_1
//
bool CTransaction::AreInputsStandard(CCoinsViewCache& mapInputs) const
{
if (IsCoinBase())
return true; // Coinbases don't use vin normally
for (unsigned int i = 0; i < vin.size(); i++)
{
const CTxOut& prev = GetOutputFor(vin[i], mapInputs);
vector<vector<unsigned char> > vSolutions;
txnouttype whichType;
// get the scriptPubKey corresponding to this input:
const CScript& prevScript = prev.scriptPubKey;
if (!Solver(prevScript, whichType, vSolutions))
return false;
int nArgsExpected = ScriptSigArgsExpected(whichType, vSolutions);
if (nArgsExpected < 0)
return false;
// Transactions with extra stuff in their scriptSigs are
// non-standard. Note that this EvalScript() call will
// be quick, because if there are any operations
// beside "push data" in the scriptSig the
// IsStandard() call returns false
vector<vector<unsigned char> > stack;
if (!EvalScript(stack, vin[i].scriptSig, *this, i, false, 0))
return false;
if (whichType == TX_SCRIPTHASH)
{
if (stack.empty())
return false;
CScript subscript(stack.back().begin(), stack.back().end());
vector<vector<unsigned char> > vSolutions2;
txnouttype whichType2;
if (!Solver(subscript, whichType2, vSolutions2))
return false;
if (whichType2 == TX_SCRIPTHASH)
return false;
int tmpExpected;
tmpExpected = ScriptSigArgsExpected(whichType2, vSolutions2);
if (tmpExpected < 0)
return false;
nArgsExpected += tmpExpected;
}
if (stack.size() != (unsigned int)nArgsExpected)
return false;
}
return true;
}
unsigned int CTransaction::GetLegacySigOpCount() const
{
unsigned int nSigOps = 0;
BOOST_FOREACH(const CTxIn& txin, vin)
{
nSigOps += txin.scriptSig.GetSigOpCount(false);
}
BOOST_FOREACH(const CTxOut& txout, vout)
{
nSigOps += txout.scriptPubKey.GetSigOpCount(false);
}
return nSigOps;
}
int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
{
CBlock blockTmp;
if (pblock == NULL) {
CCoins coins;
if (pcoinsTip->GetCoins(GetHash(), coins)) {
CBlockIndex *pindex = FindBlockByHeight(coins.nHeight);
if (pindex) {
if (!blockTmp.ReadFromDisk(pindex))
return 0;
pblock = &blockTmp;
}
}
}
if (pblock) {
// Update the tx's hashBlock
hashBlock = pblock->GetHash();
// Locate the transaction
for (nIndex = 0; nIndex < (int)pblock->vtx.size(); nIndex++)
if (pblock->vtx[nIndex] == *(CTransaction*)this)
break;
if (nIndex == (int)pblock->vtx.size())
{
vMerkleBranch.clear();
nIndex = -1;
printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
return 0;
}
// Fill in merkle branch
vMerkleBranch = pblock->GetMerkleBranch(nIndex);
}
// Is the tx in a block that's in the main chain
map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
if (mi == mapBlockIndex.end())
return 0;
CBlockIndex* pindex = (*mi).second;
if (!pindex || !pindex->IsInMainChain())
return 0;
return pindexBest->nHeight - pindex->nHeight + 1;
}
bool CTransaction::CheckTransaction(CValidationState &state) const
{
// Basic checks that don't depend on any context
if (vin.empty())
return state.DoS(10, error("CTransaction::CheckTransaction() : vin empty"));
if (vout.empty())
return state.DoS(10, error("CTransaction::CheckTransaction() : vout empty"));
// Size limits
if (::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
return state.DoS(100, error("CTransaction::CheckTransaction() : size limits failed"));
// Check for negative or overflow output values
int64 nValueOut = 0;
BOOST_FOREACH(const CTxOut& txout, vout)
{
if (txout.nValue < 0)
return state.DoS(100, error("CTransaction::CheckTransaction() : txout.nValue negative"));
if (txout.nValue > MAX_MONEY)
return state.DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));
nValueOut += txout.nValue;
if (!MoneyRange(nValueOut))
return state.DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));
}
// Check for duplicate inputs
set<COutPoint> vInOutPoints;
BOOST_FOREACH(const CTxIn& txin, vin)
{
if (vInOutPoints.count(txin.prevout))
return state.DoS(100, error("CTransaction::CheckTransaction() : duplicate inputs"));
vInOutPoints.insert(txin.prevout);
}
if (IsCoinBase())
{
if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
return state.DoS(100, error("CTransaction::CheckTransaction() : coinbase script size"));
}
else
{
BOOST_FOREACH(const CTxIn& txin, vin)
if (txin.prevout.IsNull())
return state.DoS(10, error("CTransaction::CheckTransaction() : prevout is null"));
}
return true;
}
int64 CTransaction::GetMinFee(unsigned int nBlockSize, bool fAllowFree,
enum GetMinFee_mode mode) const
{
// Base fee is either nMinTxFee or nMinRelayTxFee
int64 nBaseFee = (mode == GMF_RELAY) ? nMinRelayTxFee : nMinTxFee;
unsigned int nBytes = ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION);
unsigned int nNewBlockSize = nBlockSize + nBytes;
int64 nMinFee = (1 + (int64)nBytes / 1000) * nBaseFee;
if (fAllowFree)
{
// There is a free transaction area in blocks created by most miners,
// * If we are relaying we allow transactions up to DEFAULT_BLOCK_PRIORITY_SIZE - 1000
// to be considered to fall into this category. We don't want to encourage sending
// multiple transactions instead of one big transaction to avoid fees.
// * If we are creating a transaction we allow transactions up to 5,000 bytes
// to be considered safe and assume they can likely make it into this section.
if (nBytes < (mode == GMF_SEND ? 5000 : (DEFAULT_BLOCK_PRIORITY_SIZE - 1000)))
nMinFee = 0;
}
// backspacebar
// To limit dust spam, add nBaseFee for each output less than DUST_SOFT_LIMIT
BOOST_FOREACH(const CTxOut& txout, vout)
if (txout.nValue < DUST_SOFT_LIMIT)
nMinFee += nBaseFee;
// Raise the price as the block approaches full
if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2)
{
if (nNewBlockSize >= MAX_BLOCK_SIZE_GEN)
return MAX_MONEY;
nMinFee *= MAX_BLOCK_SIZE_GEN / (MAX_BLOCK_SIZE_GEN - nNewBlockSize);
}
if (!MoneyRange(nMinFee))
nMinFee = MAX_MONEY;
return nMinFee;
}
void CTxMemPool::pruneSpent(const uint256 &hashTx, CCoins &coins)
{
LOCK(cs);
std::map<COutPoint, CInPoint>::iterator it = mapNextTx.lower_bound(COutPoint(hashTx, 0));
// iterate over all COutPoints in mapNextTx whose hash equals the provided hashTx
while (it != mapNextTx.end() && it->first.hash == hashTx) {
coins.Spend(it->first.n); // and remove those outputs from coins
it++;
}
}
bool CTxMemPool::accept(CValidationState &state, CTransaction &tx, bool fCheckInputs, bool fLimitFree,
bool* pfMissingInputs, bool fRejectInsaneFee)
{
if (pfMissingInputs)
*pfMissingInputs = false;
if (!tx.CheckTransaction(state))
return error("CTxMemPool::accept() : CheckTransaction failed");
// Coinbase is only valid in a block, not as a loose transaction
if (tx.IsCoinBase())
return state.DoS(100, error("CTxMemPool::accept() : coinbase as individual tx"));
// To help v0.1.5 clients who would see it as a negative number
if ((int64)tx.nLockTime > std::numeric_limits<int>::max())
return error("CTxMemPool::accept() : not accepting nLockTime beyond 2038 yet");
// Rather not work on nonstandard transactions (unless -testnet)
string strNonStd;
if (!fTestNet && !tx.IsStandard(strNonStd))
return error("CTxMemPool::accept() : nonstandard transaction (%s)",
strNonStd.c_str());
// is it already in the memory pool?
uint256 hash = tx.GetHash();
{
LOCK(cs);
if (mapTx.count(hash))
return false;
}
// Check for conflicts with in-memory transactions
CTransaction* ptxOld = NULL;
for (unsigned int i = 0; i < tx.vin.size(); i++)
{
COutPoint outpoint = tx.vin[i].prevout;
if (mapNextTx.count(outpoint))
{
// Disable replacement feature for now
return false;
// Allow replacing with a newer version of the same transaction
if (i != 0)
return false;
ptxOld = mapNextTx[outpoint].ptx;
if (ptxOld->IsFinal())
return false;
if (!tx.IsNewerThan(*ptxOld))
return false;
for (unsigned int i = 0; i < tx.vin.size(); i++)
{
COutPoint outpoint = tx.vin[i].prevout;
if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
return false;
}
break;
}
}
if (fCheckInputs)
{
CCoinsView dummy;
CCoinsViewCache view(dummy);
{
LOCK(cs);
CCoinsViewMemPool viewMemPool(*pcoinsTip, *this);
view.SetBackend(viewMemPool);
// do we already have it?
if (view.HaveCoins(hash))
return false;
// do all inputs exist?
// Note that this does not check for the presence of actual outputs (see the next check for that),
// only helps filling in pfMissingInputs (to determine missing vs spent).
BOOST_FOREACH(const CTxIn txin, tx.vin) {
if (!view.HaveCoins(txin.prevout.hash)) {
if (pfMissingInputs)
*pfMissingInputs = true;
return false;
}
}
// are the actual inputs available?
if (!tx.HaveInputs(view))
return state.Invalid(error("CTxMemPool::accept() : inputs already spent"));
// Bring the best block into scope
view.GetBestBlock();
// we have all inputs cached now, so switch back to dummy, so we don't need to keep lock on mempool
view.SetBackend(dummy);
}
// Check for non-standard pay-to-script-hash in inputs
if (!tx.AreInputsStandard(view) && !fTestNet)
return error("CTxMemPool::accept() : nonstandard transaction input");
// Note: if you modify this code to accept non-standard transactions, then
// you should add code here to check that the transaction does a
// reasonable number of ECDSA signature verifications.
int64 nFees = tx.GetValueIn(view)-tx.GetValueOut();
unsigned int nSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
// Don't accept it if it can't get into a block
int64 txMinFee = tx.GetMinFee(1000, true, GMF_RELAY);
if (fLimitFree && nFees < txMinFee)
return error("CTxMemPool::accept() : not enough fees %s, %"PRI64d" < %"PRI64d,
hash.ToString().c_str(),
nFees, txMinFee);
// Continuously rate-limit free transactions
// This mitigates 'penny-flooding' -- sending thousands of free transactions just to
// be annoying or make others' transactions take longer to confirm.
if (fLimitFree && nFees < CTransaction::nMinRelayTxFee)
{
static double dFreeCount;
static int64 nLastTime;
int64 nNow = GetTime();
LOCK(cs);
// Use an exponentially decaying ~10-minute window:
dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime));
nLastTime = nNow;
// -limitfreerelay unit is thousand-bytes-per-minute
// At default rate it would take over a month to fill 1GB
if (dFreeCount >= GetArg("-limitfreerelay", 15)*10*1000)
return error("CTxMemPool::accept() : free transaction rejected by rate limiter");
if (fDebug)
printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
dFreeCount += nSize;
}
if (fRejectInsaneFee && nFees > CTransaction::nMinRelayTxFee * 1000)
return error("CTxMemPool::accept() : insane fees %s, %"PRI64d" > %"PRI64d,
hash.ToString().c_str(),
nFees, CTransaction::nMinRelayTxFee * 1000);
// Check against previous transactions
// This is done last to help prevent CPU exhaustion denial-of-service attacks.
if (!tx.CheckInputs(state, view, true, SCRIPT_VERIFY_P2SH | SCRIPT_VERIFY_STRICTENC))
{
return error("CTxMemPool::accept() : ConnectInputs failed %s", hash.ToString().c_str());
}
}
// Store transaction in memory
{
LOCK(cs);
if (ptxOld)
{
printf("CTxMemPool::accept() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str());
remove(*ptxOld);
}
addUnchecked(hash, tx);
}
///// are we sure this is ok when loading transactions or restoring block txes
// If updated, erase old tx from wallet
if (ptxOld)
EraseFromWallets(ptxOld->GetHash());
SyncWithWallets(hash, tx, NULL, true);
return true;
}
bool CTransaction::AcceptToMemoryPool(CValidationState &state, bool fCheckInputs, bool fLimitFree, bool* pfMissingInputs, bool fRejectInsaneFee)
{
try {
return mempool.accept(state, *this, fCheckInputs, fLimitFree, pfMissingInputs, fRejectInsaneFee);
} catch(std::runtime_error &e) {
return state.Abort(_("System error: ") + e.what());
}
}
bool CTxMemPool::addUnchecked(const uint256& hash, const CTransaction &tx)
{
// Add to memory pool without checking anything. Don't call this directly,
// call CTxMemPool::accept to properly check the transaction first.
{
mapTx[hash] = tx;
for (unsigned int i = 0; i < tx.vin.size(); i++)
mapNextTx[tx.vin[i].prevout] = CInPoint(&mapTx[hash], i);
nTransactionsUpdated++;
}
return true;
}
bool CTxMemPool::remove(const CTransaction &tx, bool fRecursive)
{
// Remove transaction from memory pool
{
LOCK(cs);
uint256 hash = tx.GetHash();
if (fRecursive) {
for (unsigned int i = 0; i < tx.vout.size(); i++) {
std::map<COutPoint, CInPoint>::iterator it = mapNextTx.find(COutPoint(hash, i));
if (it != mapNextTx.end())
remove(*it->second.ptx, true);
}
}
if (mapTx.count(hash))
{
BOOST_FOREACH(const CTxIn& txin, tx.vin)
mapNextTx.erase(txin.prevout);
mapTx.erase(hash);
nTransactionsUpdated++;
}
}
return true;
}
bool CTxMemPool::removeConflicts(const CTransaction &tx)
{
// Remove transactions which depend on inputs of tx, recursively
LOCK(cs);
BOOST_FOREACH(const CTxIn &txin, tx.vin) {
std::map<COutPoint, CInPoint>::iterator it = mapNextTx.find(txin.prevout);
if (it != mapNextTx.end()) {
const CTransaction &txConflict = *it->second.ptx;
if (txConflict != tx)
remove(txConflict, true);
}
}
return true;
}
void CTxMemPool::clear()
{
LOCK(cs);
mapTx.clear();
mapNextTx.clear();
++nTransactionsUpdated;
}
void CTxMemPool::queryHashes(std::vector<uint256>& vtxid)
{
vtxid.clear();
LOCK(cs);
vtxid.reserve(mapTx.size());
for (map<uint256, CTransaction>::iterator mi = mapTx.begin(); mi != mapTx.end(); ++mi)
vtxid.push_back((*mi).first);
}
int CMerkleTx::GetDepthInMainChainINTERNAL(CBlockIndex* &pindexRet) const
{
if (hashBlock == 0 || nIndex == -1)
return 0;
// Find the block it claims to be in
map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
if (mi == mapBlockIndex.end())
return 0;
CBlockIndex* pindex = (*mi).second;
if (!pindex || !pindex->IsInMainChain())
return 0;
// Make sure the merkle branch connects to this block
if (!fMerkleVerified)
{
if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot)
return 0;
fMerkleVerified = true;
}
pindexRet = pindex;
return pindexBest->nHeight - pindex->nHeight + 1;
}
int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const
{
int nResult = GetDepthInMainChainINTERNAL(pindexRet);
if (nResult == 0 && !mempool.exists(GetHash()))
return -1; // Not in chain, not in mempool
return nResult;
}
int CMerkleTx::GetBlocksToMaturity() const
{
if (!IsCoinBase())
return 0;
return max(0, (COINBASE_MATURITY+0) - GetDepthInMainChain());
}
bool CMerkleTx::AcceptToMemoryPool(bool fCheckInputs, bool fLimitFree)
{
CValidationState state;
return CTransaction::AcceptToMemoryPool(state, fCheckInputs, fLimitFree);
}
bool CWalletTx::AcceptWalletTransaction(bool fCheckInputs)
{
{
LOCK(mempool.cs);
// Add previous supporting transactions first
BOOST_FOREACH(CMerkleTx& tx, vtxPrev)
{
if (!tx.IsCoinBase())
{
uint256 hash = tx.GetHash();
if (!mempool.exists(hash) && pcoinsTip->HaveCoins(hash))
tx.AcceptToMemoryPool(fCheckInputs, false);
}
}
return AcceptToMemoryPool(fCheckInputs, false);
}
return false;
}
// Return transaction in tx, and if it was found inside a block, its hash is placed in hashBlock
bool GetTransaction(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock, bool fAllowSlow)
{
CBlockIndex *pindexSlow = NULL;
{
LOCK(cs_main);
{
LOCK(mempool.cs);
if (mempool.exists(hash))
{
txOut = mempool.lookup(hash);
return true;
}
}
if (fTxIndex) {
CDiskTxPos postx;
if (pblocktree->ReadTxIndex(hash, postx)) {
CAutoFile file(OpenBlockFile(postx, true), SER_DISK, CLIENT_VERSION);
CBlockHeader header;
try {
file >> header;
fseek(file, postx.nTxOffset, SEEK_CUR);
file >> txOut;
} catch (std::exception &e) {
return error("%s() : deserialize or I/O error", __PRETTY_FUNCTION__);
}
hashBlock = header.GetHash();
if (txOut.GetHash() != hash)
return error("%s() : txid mismatch", __PRETTY_FUNCTION__);
return true;
}
}
if (fAllowSlow) { // use coin database to locate block that contains transaction, and scan it
int nHeight = -1;
{
CCoinsViewCache &view = *pcoinsTip;
CCoins coins;
if (view.GetCoins(hash, coins))
nHeight = coins.nHeight;
}
if (nHeight > 0)
pindexSlow = FindBlockByHeight(nHeight);
}
}
if (pindexSlow) {
CBlock block;
if (block.ReadFromDisk(pindexSlow)) {
BOOST_FOREACH(const CTransaction &tx, block.vtx) {
if (tx.GetHash() == hash) {
txOut = tx;
hashBlock = pindexSlow->GetBlockHash();
return true;
}
}
}
}
return false;
}
//////////////////////////////////////////////////////////////////////////////
//
// CBlock and CBlockIndex
//
static CBlockIndex* pblockindexFBBHLast;
CBlockIndex* FindBlockByHeight(int nHeight)
{
CBlockIndex *pblockindex;
if (nHeight < nBestHeight / 2)
pblockindex = pindexGenesisBlock;
else
pblockindex = pindexBest;
if (pblockindexFBBHLast && abs(nHeight - pblockindex->nHeight) > abs(nHeight - pblockindexFBBHLast->nHeight))
pblockindex = pblockindexFBBHLast;
while (pblockindex->nHeight > nHeight)
pblockindex = pblockindex->pprev;
while (pblockindex->nHeight < nHeight)
pblockindex = pblockindex->pnext;
pblockindexFBBHLast = pblockindex;
return pblockindex;
}
bool CBlock::ReadFromDisk(const CBlockIndex* pindex)
{
if (!ReadFromDisk(pindex->GetBlockPos()))
return false;
if (GetHash() != pindex->GetBlockHash())
return error("CBlock::ReadFromDisk() : GetHash() doesn't match index");
return true;
}
uint256 static GetOrphanRoot(const CBlockHeader* pblock)
{
// Work back to the first block in the orphan chain
while (mapOrphanBlocks.count(pblock->hashPrevBlock))
pblock = mapOrphanBlocks[pblock->hashPrevBlock];
return pblock->GetHash();
}
int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 100 * COIN;
if(nHeight == 0)
{
nSubsidy = 10000000 * COIN;
}
//Luigi
if(nBestHeight > 10000)
nSubsidy = 50 * COIN;
//Luigi
//Luigi
if(nBestHeight > 50000)
nSubsidy = 25 * COIN;
//Luigi
//Luigi
if(nBestHeight > 170000)
nSubsidy = 5 * COIN;
//Luigi
// Subsidy is cut in half every 970000 blocks
nSubsidy >>= (nHeight / 970000);
return nSubsidy + nFees;
}
static const int64 nTargetTimespan = 4 * 60;
static const int64 nTargetSpacing = 2 * 60;
static const int64 nInterval = nTargetTimespan / nTargetSpacing;
//
// minimum amount of work that could possibly be required nTime after
// minimum work required was nBase
//
unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
{
// Testnet has min-difficulty blocks
// after nTargetSpacing*2 time between blocks:
if (fTestNet && nTime > nTargetSpacing*2)
return bnProofOfWorkLimit.GetCompact();
CBigNum bnResult;
bnResult.SetCompact(nBase);
while (nTime > 0 && bnResult < bnProofOfWorkLimit)
{
// Maximum 400% adjustment...
bnResult *= 4;
// ... in best-case exactly 4-times-normal target time
nTime -= nTargetTimespan*4;
}
if (bnResult > bnProofOfWorkLimit)
bnResult = bnProofOfWorkLimit;
return bnResult.GetCompact();
}
unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock)
{
unsigned int nProofOfWorkLimit = bnProofOfWorkLimit.GetCompact();
// Genesis block
if (pindexLast == NULL)
return nProofOfWorkLimit;
// Only change once per interval
if ((pindexLast->nHeight+1) % nInterval != 0)
{
// Special difficulty rule for testnet:
if (fTestNet)
{
// If the new block's timestamp is more than 2* 10 minutes
// then allow mining of a min-difficulty block.
if (pblock->nTime > pindexLast->nTime + nTargetSpacing*2)
return nProofOfWorkLimit;
else
{
// Return the last non-special-min-difficulty-rules-block
const CBlockIndex* pindex = pindexLast;
while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit)
pindex = pindex->pprev;
return pindex->nBits;
}
}
return pindexLast->nBits;
}
// backspacebar: This fixes an issue where a 51% attack can change difficulty at will.
// Go back the full period unless it's the first retarget after genesis. Code courtesy of Art Forz
int blockstogoback = nInterval-1;
if ((pindexLast->nHeight+1) != nInterval)
blockstogoback = nInterval;
// Go back by what we want to be 14 days worth of blocks
const CBlockIndex* pindexFirst = pindexLast;
for (int i = 0; pindexFirst && i < blockstogoback; i++)
pindexFirst = pindexFirst->pprev;
assert(pindexFirst);
// Limit adjustment step
int64 nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
printf(" nActualTimespan = %"PRI64d" before bounds\n", nActualTimespan);
if (nActualTimespan < nTargetTimespan/4)
nActualTimespan = nTargetTimespan/4;
if (nActualTimespan > nTargetTimespan*4)
nActualTimespan = nTargetTimespan*4;
// Retarget
CBigNum bnNew;
bnNew.SetCompact(pindexLast->nBits);
bnNew *= nActualTimespan;
bnNew /= nTargetTimespan;
if (bnNew > bnProofOfWorkLimit)
bnNew = bnProofOfWorkLimit;
/// debug print
printf("GetNextWorkRequired RETARGET\n");
printf("nTargetTimespan = %"PRI64d" nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan);
printf("Before: %08x %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str());
printf("After: %08x %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str());
return bnNew.GetCompact();
}
bool CheckProofOfWork(uint256 hash, unsigned int nBits)
{
CBigNum bnTarget;
bnTarget.SetCompact(nBits);
// Check range
if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit)
return error("CheckProofOfWork() : nBits below minimum work");
// Check proof of work matches claimed amount
if (hash > bnTarget.getuint256())
return error("CheckProofOfWork() : hash doesn't match nBits");
return true;
}
// Return maximum amount of blocks that other nodes claim to have
int GetNumBlocksOfPeers()
{
return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate());
}
bool IsInitialBlockDownload()
{
if (pindexBest == NULL || fImporting || fReindex || nBestHeight < Checkpoints::GetTotalBlocksEstimate())
return true;
static int64 nLastUpdate;
static CBlockIndex* pindexLastBest;
if (pindexBest != pindexLastBest)
{
pindexLastBest = pindexBest;
nLastUpdate = GetTime();
}
return (GetTime() - nLastUpdate < 10 &&
pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60);
}
void static InvalidChainFound(CBlockIndex* pindexNew)
{
if (pindexNew->nChainWork > nBestInvalidWork)
{
nBestInvalidWork = pindexNew->nChainWork;
pblocktree->WriteBestInvalidWork(CBigNum(nBestInvalidWork));
uiInterface.NotifyBlocksChanged();
}
printf("InvalidChainFound: invalid block=%s height=%d log2_work=%.8g date=%s\n",
pindexNew->GetBlockHash().ToString().c_str(), pindexNew->nHeight,
log(pindexNew->nChainWork.getdouble())/log(2.0), DateTimeStrFormat("%Y-%m-%d %H:%M:%S",
pindexNew->GetBlockTime()).c_str());
printf("InvalidChainFound: current best=%s height=%d log2_work=%.8g date=%s\n",
hashBestChain.ToString().c_str(), nBestHeight, log(nBestChainWork.getdouble())/log(2.0),
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", pindexBest->GetBlockTime()).c_str());
if (pindexBest && nBestInvalidWork > nBestChainWork + (pindexBest->GetBlockWork() * 6).getuint256())
printf("InvalidChainFound: Warning: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.\n");
}
void static InvalidBlockFound(CBlockIndex *pindex) {
pindex->nStatus |= BLOCK_FAILED_VALID;
pblocktree->WriteBlockIndex(CDiskBlockIndex(pindex));
setBlockIndexValid.erase(pindex);
InvalidChainFound(pindex);
if (pindex->pnext) {
CValidationState stateDummy;
ConnectBestBlock(stateDummy); // reorganise away from the failed block
}
}
bool ConnectBestBlock(CValidationState &state) {
do {
CBlockIndex *pindexNewBest;
{
std::set<CBlockIndex*,CBlockIndexWorkComparator>::reverse_iterator it = setBlockIndexValid.rbegin();
if (it == setBlockIndexValid.rend())
return true;
pindexNewBest = *it;
}
if (pindexNewBest == pindexBest || (pindexBest && pindexNewBest->nChainWork == pindexBest->nChainWork))
return true; // nothing to do
// check ancestry
CBlockIndex *pindexTest = pindexNewBest;
std::vector<CBlockIndex*> vAttach;
do {
if (pindexTest->nStatus & BLOCK_FAILED_MASK) {
// mark descendants failed
CBlockIndex *pindexFailed = pindexNewBest;
while (pindexTest != pindexFailed) {
pindexFailed->nStatus |= BLOCK_FAILED_CHILD;
setBlockIndexValid.erase(pindexFailed);
pblocktree->WriteBlockIndex(CDiskBlockIndex(pindexFailed));
pindexFailed = pindexFailed->pprev;
}
InvalidChainFound(pindexNewBest);
break;
}
if (pindexBest == NULL || pindexTest->nChainWork > pindexBest->nChainWork)
vAttach.push_back(pindexTest);
if (pindexTest->pprev == NULL || pindexTest->pnext != NULL) {
reverse(vAttach.begin(), vAttach.end());
BOOST_FOREACH(CBlockIndex *pindexSwitch, vAttach) {
boost::this_thread::interruption_point();
try {
if (!SetBestChain(state, pindexSwitch))
return false;
} catch(std::runtime_error &e) {
return state.Abort(_("System error: ") + e.what());
}
}
return true;
}
pindexTest = pindexTest->pprev;
} while(true);
} while(true);
}
void CBlockHeader::UpdateTime(const CBlockIndex* pindexPrev)
{
nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
// Updating time can change work required on testnet:
if (fTestNet)
nBits = GetNextWorkRequired(pindexPrev, this);
}
const CTxOut &CTransaction::GetOutputFor(const CTxIn& input, CCoinsViewCache& view)
{
const CCoins &coins = view.GetCoins(input.prevout.hash);
assert(coins.IsAvailable(input.prevout.n));
return coins.vout[input.prevout.n];
}
int64 CTransaction::GetValueIn(CCoinsViewCache& inputs) const
{
if (IsCoinBase())
return 0;
int64 nResult = 0;
for (unsigned int i = 0; i < vin.size(); i++)
nResult += GetOutputFor(vin[i], inputs).nValue;
return nResult;
}
unsigned int CTransaction::GetP2SHSigOpCount(CCoinsViewCache& inputs) const
{
if (IsCoinBase())
return 0;
unsigned int nSigOps = 0;
for (unsigned int i = 0; i < vin.size(); i++)
{
const CTxOut &prevout = GetOutputFor(vin[i], inputs);
if (prevout.scriptPubKey.IsPayToScriptHash())
nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig);
}
return nSigOps;
}
void CTransaction::UpdateCoins(CValidationState &state, CCoinsViewCache &inputs, CTxUndo &txundo, int nHeight, const uint256 &txhash) const
{
bool ret;
// mark inputs spent
if (!IsCoinBase()) {
BOOST_FOREACH(const CTxIn &txin, vin) {
CCoins &coins = inputs.GetCoins(txin.prevout.hash);
CTxInUndo undo;
ret = coins.Spend(txin.prevout, undo);
assert(ret);
txundo.vprevout.push_back(undo);
}
}
// add outputs
assert(inputs.SetCoins(txhash, CCoins(*this, nHeight)));
}
bool CTransaction::HaveInputs(CCoinsViewCache &inputs) const
{
if (!IsCoinBase()) {
// first check whether information about the prevout hash is available
for (unsigned int i = 0; i < vin.size(); i++) {
const COutPoint &prevout = vin[i].prevout;
if (!inputs.HaveCoins(prevout.hash))
return false;
}
// then check whether the actual outputs are available
for (unsigned int i = 0; i < vin.size(); i++) {
const COutPoint &prevout = vin[i].prevout;
const CCoins &coins = inputs.GetCoins(prevout.hash);
if (!coins.IsAvailable(prevout.n))
return false;
}
}
return true;
}
bool CScriptCheck::operator()() const {
const CScript &scriptSig = ptxTo->vin[nIn].scriptSig;
if (!VerifyScript(scriptSig, scriptPubKey, *ptxTo, nIn, nFlags, nHashType))
return error("CScriptCheck() : %s VerifySignature failed", ptxTo->GetHash().ToString().c_str());
return true;
}
bool VerifySignature(const CCoins& txFrom, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType)
{
return CScriptCheck(txFrom, txTo, nIn, flags, nHashType)();
}
bool CTransaction::CheckInputs(CValidationState &state, CCoinsViewCache &inputs, bool fScriptChecks, unsigned int flags, std::vector<CScriptCheck> *pvChecks) const
{
if (!IsCoinBase())
{
if (pvChecks)
pvChecks->reserve(vin.size());
// This doesn't trigger the DoS code on purpose; if it did, it would make it easier
// for an attacker to attempt to split the network.
if (!HaveInputs(inputs))
return state.Invalid(error("CheckInputs() : %s inputs unavailable", GetHash().ToString().c_str()));
// While checking, GetBestBlock() refers to the parent block.
// This is also true for mempool checks.
int nSpendHeight = inputs.GetBestBlock()->nHeight + 1;
int64 nValueIn = 0;
int64 nFees = 0;
for (unsigned int i = 0; i < vin.size(); i++)
{
const COutPoint &prevout = vin[i].prevout;
const CCoins &coins = inputs.GetCoins(prevout.hash);
// If prev is coinbase, check that it's matured
if (coins.IsCoinBase()) {
if (nSpendHeight - coins.nHeight < COINBASE_MATURITY)
return state.Invalid(error("CheckInputs() : tried to spend coinbase at depth %d", nSpendHeight - coins.nHeight));
}
// Check for negative or overflow input values
nValueIn += coins.vout[prevout.n].nValue;
if (!MoneyRange(coins.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
return state.DoS(100, error("CheckInputs() : txin values out of range"));
}
if (nValueIn < GetValueOut())
return state.DoS(100, error("CheckInputs() : %s value in < value out", GetHash().ToString().c_str()));
// Tally transaction fees
int64 nTxFee = nValueIn - GetValueOut();
if (nTxFee < 0)
return state.DoS(100, error("CheckInputs() : %s nTxFee < 0", GetHash().ToString().c_str()));
nFees += nTxFee;
if (!MoneyRange(nFees))
return state.DoS(100, error("CheckInputs() : nFees out of range"));
// The first loop above does all the inexpensive checks.
// Only if ALL inputs pass do we perform expensive ECDSA signature checks.
// Helps prevent CPU exhaustion attacks.
// Skip ECDSA signature verification when connecting blocks
// before the last block chain checkpoint. This is safe because block merkle hashes are
// still computed and checked, and any change will be caught at the next checkpoint.
if (fScriptChecks) {
for (unsigned int i = 0; i < vin.size(); i++) {
const COutPoint &prevout = vin[i].prevout;
const CCoins &coins = inputs.GetCoins(prevout.hash);
// Verify signature
CScriptCheck check(coins, *this, i, flags, 0);
if (pvChecks) {
pvChecks->push_back(CScriptCheck());
check.swap(pvChecks->back());
} else if (!check()) {
if (flags & SCRIPT_VERIFY_STRICTENC) {
// For now, check whether the failure was caused by non-canonical
// encodings or not; if so, don't trigger DoS protection.
CScriptCheck check(coins, *this, i, flags & (~SCRIPT_VERIFY_STRICTENC), 0);
if (check())
return state.Invalid();
}
return state.DoS(100,false);
}
}
}
}
return true;
}
bool CBlock::DisconnectBlock(CValidationState &state, CBlockIndex *pindex, CCoinsViewCache &view, bool *pfClean)
{
assert(pindex == view.GetBestBlock());
if (pfClean)
*pfClean = false;
bool fClean = true;
CBlockUndo blockUndo;
CDiskBlockPos pos = pindex->GetUndoPos();
if (pos.IsNull())
return error("DisconnectBlock() : no undo data available");
if (!blockUndo.ReadFromDisk(pos, pindex->pprev->GetBlockHash()))
return error("DisconnectBlock() : failure reading undo data");
if (blockUndo.vtxundo.size() + 1 != vtx.size())
return error("DisconnectBlock() : block and undo data inconsistent");
// undo transactions in reverse order
for (int i = vtx.size() - 1; i >= 0; i--) {
const CTransaction &tx = vtx[i];
uint256 hash = tx.GetHash();
// check that all outputs are available
if (!view.HaveCoins(hash)) {
fClean = fClean && error("DisconnectBlock() : outputs still spent? database corrupted");
view.SetCoins(hash, CCoins());
}
CCoins &outs = view.GetCoins(hash);
CCoins outsBlock = CCoins(tx, pindex->nHeight);
// The CCoins serialization does not serialize negative numbers.
// No network rules currently depend on the version here, so an inconsistency is harmless
// but it must be corrected before txout nversion ever influences a network rule.
if (outsBlock.nVersion < 0)
outs.nVersion = outsBlock.nVersion;
if (outs != outsBlock)
fClean = fClean && error("DisconnectBlock() : added transaction mismatch? database corrupted");
// remove outputs
outs = CCoins();
// restore inputs
if (i > 0) { // not coinbases
const CTxUndo &txundo = blockUndo.vtxundo[i-1];
if (txundo.vprevout.size() != tx.vin.size())
return error("DisconnectBlock() : transaction and undo data inconsistent");
for (unsigned int j = tx.vin.size(); j-- > 0;) {
const COutPoint &out = tx.vin[j].prevout;
const CTxInUndo &undo = txundo.vprevout[j];
CCoins coins;
view.GetCoins(out.hash, coins); // this can fail if the prevout was already entirely spent
if (undo.nHeight != 0) {
// undo data contains height: this is the last output of the prevout tx being spent
if (!coins.IsPruned())
fClean = fClean && error("DisconnectBlock() : undo data overwriting existing transaction");
coins = CCoins();
coins.fCoinBase = undo.fCoinBase;
coins.nHeight = undo.nHeight;
coins.nVersion = undo.nVersion;
} else {
if (coins.IsPruned())
fClean = fClean && error("DisconnectBlock() : undo data adding output to missing transaction");
}
if (coins.IsAvailable(out.n))
fClean = fClean && error("DisconnectBlock() : undo data overwriting existing output");
if (coins.vout.size() < out.n+1)
coins.vout.resize(out.n+1);
coins.vout[out.n] = undo.txout;
if (!view.SetCoins(out.hash, coins))
return error("DisconnectBlock() : cannot restore coin inputs");
}
}
}
// move best block pointer to prevout block
view.SetBestBlock(pindex->pprev);
if (pfClean) {
*pfClean = fClean;
return true;
} else {
return fClean;
}
}
void static FlushBlockFile(bool fFinalize = false)
{
LOCK(cs_LastBlockFile);
CDiskBlockPos posOld(nLastBlockFile, 0);
FILE *fileOld = OpenBlockFile(posOld);
if (fileOld) {
if (fFinalize)
TruncateFile(fileOld, infoLastBlockFile.nSize);
FileCommit(fileOld);
fclose(fileOld);
}
fileOld = OpenUndoFile(posOld);
if (fileOld) {
if (fFinalize)
TruncateFile(fileOld, infoLastBlockFile.nUndoSize);
FileCommit(fileOld);
fclose(fileOld);
}
}
bool FindUndoPos(CValidationState &state, int nFile, CDiskBlockPos &pos, unsigned int nAddSize);
static CCheckQueue<CScriptCheck> scriptcheckqueue(128);
void ThreadScriptCheck() {
RenameThread("bitcoin-scriptch");
scriptcheckqueue.Thread();
}
bool CBlock::ConnectBlock(CValidationState &state, CBlockIndex* pindex, CCoinsViewCache &view, bool fJustCheck)
{
// Check it again in case a previous version let a bad block in
if (!CheckBlock(state, !fJustCheck, !fJustCheck))
return false;
// verify that the view's current state corresponds to the previous block
assert(pindex->pprev == view.GetBestBlock());
// Special case for the genesis block, skipping connection of its transactions
// (its coinbase is unspendable)
if (GetHash() == hashGenesisBlock) {
view.SetBestBlock(pindex);
pindexGenesisBlock = pindex;
return true;
}
bool fScriptChecks = pindex->nHeight >= Checkpoints::GetTotalBlocksEstimate();
// Do not allow blocks that contain transactions which 'overwrite' older transactions,
// unless those are already completely spent.
// If such overwrites are allowed, coinbases and transactions depending upon those
// can be duplicated to remove the ability to spend the first instance -- even after
// being sent to another address.
// See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
// This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
// already refuses previously-known transaction ids entirely.
// This rule was originally applied all blocks whose timestamp was after October 1, 2012, 0:00 UTC.
// Now that the whole chain is irreversibly beyond that time it is applied to all blocks,
// this prevents exploiting the issue against nodes in their initial block download.
bool fEnforceBIP30 = true;
if (fEnforceBIP30) {
for (unsigned int i=0; i<vtx.size(); i++) {
uint256 hash = GetTxHash(i);
if (view.HaveCoins(hash) && !view.GetCoins(hash).IsPruned())
return state.DoS(100, error("ConnectBlock() : tried to overwrite transaction"));
}
}
// BIP16 didn't become active until Oct 1 2012
int64 nBIP16SwitchTime = 1349049600;
bool fStrictPayToScriptHash = (pindex->nTime >= nBIP16SwitchTime);
unsigned int flags = SCRIPT_VERIFY_NOCACHE |
(fStrictPayToScriptHash ? SCRIPT_VERIFY_P2SH : SCRIPT_VERIFY_NONE);
CBlockUndo blockundo;
CCheckQueueControl<CScriptCheck> control(fScriptChecks && nScriptCheckThreads ? &scriptcheckqueue : NULL);
int64 nStart = GetTimeMicros();
int64 nFees = 0;
int nInputs = 0;
unsigned int nSigOps = 0;
CDiskTxPos pos(pindex->GetBlockPos(), GetSizeOfCompactSize(vtx.size()));
std::vector<std::pair<uint256, CDiskTxPos> > vPos;
vPos.reserve(vtx.size());
for (unsigned int i=0; i<vtx.size(); i++)
{
const CTransaction &tx = vtx[i];
nInputs += tx.vin.size();
nSigOps += tx.GetLegacySigOpCount();
if (nSigOps > MAX_BLOCK_SIGOPS)
return state.DoS(100, error("ConnectBlock() : too many sigops"));
if (!tx.IsCoinBase())
{
if (!tx.HaveInputs(view))
return state.DoS(100, error("ConnectBlock() : inputs missing/spent"));
if (fStrictPayToScriptHash)
{
// Add in sigops done by pay-to-script-hash inputs;
// this is to prevent a "rogue miner" from creating
// an incredibly-expensive-to-validate block.
nSigOps += tx.GetP2SHSigOpCount(view);
if (nSigOps > MAX_BLOCK_SIGOPS)
return state.DoS(100, error("ConnectBlock() : too many sigops"));
}
nFees += tx.GetValueIn(view)-tx.GetValueOut();
std::vector<CScriptCheck> vChecks;
if (!tx.CheckInputs(state, view, fScriptChecks, flags, nScriptCheckThreads ? &vChecks : NULL))
return false;
control.Add(vChecks);
}
CTxUndo txundo;
tx.UpdateCoins(state, view, txundo, pindex->nHeight, GetTxHash(i));
if (!tx.IsCoinBase())
blockundo.vtxundo.push_back(txundo);
vPos.push_back(std::make_pair(GetTxHash(i), pos));
pos.nTxOffset += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION);
}
int64 nTime = GetTimeMicros() - nStart;
if (fBenchmark)
printf("- Connect %u transactions: %.2fms (%.3fms/tx, %.3fms/txin)\n", (unsigned)vtx.size(), 0.001 * nTime, 0.001 * nTime / vtx.size(), nInputs <= 1 ? 0 : 0.001 * nTime / (nInputs-1));
if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees))
return state.DoS(100, error("ConnectBlock() : coinbase pays too much (actual=%"PRI64d" vs limit=%"PRI64d")", vtx[0].GetValueOut(), GetBlockValue(pindex->nHeight, nFees)));
if (!control.Wait())
return state.DoS(100, false);
int64 nTime2 = GetTimeMicros() - nStart;
if (fBenchmark)
printf("- Verify %u txins: %.2fms (%.3fms/txin)\n", nInputs - 1, 0.001 * nTime2, nInputs <= 1 ? 0 : 0.001 * nTime2 / (nInputs-1));
if (fJustCheck)
return true;
// Write undo information to disk
if (pindex->GetUndoPos().IsNull() || (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_SCRIPTS)
{
if (pindex->GetUndoPos().IsNull()) {
CDiskBlockPos pos;
if (!FindUndoPos(state, pindex->nFile, pos, ::GetSerializeSize(blockundo, SER_DISK, CLIENT_VERSION) + 40))
return error("ConnectBlock() : FindUndoPos failed");
if (!blockundo.WriteToDisk(pos, pindex->pprev->GetBlockHash()))
return state.Abort(_("Failed to write undo data"));
// update nUndoPos in block index
pindex->nUndoPos = pos.nPos;
pindex->nStatus |= BLOCK_HAVE_UNDO;
}
pindex->nStatus = (pindex->nStatus & ~BLOCK_VALID_MASK) | BLOCK_VALID_SCRIPTS;
CDiskBlockIndex blockindex(pindex);
if (!pblocktree->WriteBlockIndex(blockindex))
return state.Abort(_("Failed to write block index"));
}
if (fTxIndex)
if (!pblocktree->WriteTxIndex(vPos))
return state.Abort(_("Failed to write transaction index"));
// add this block to the view's block chain
assert(view.SetBestBlock(pindex));
// Watch for transactions paying to me
for (unsigned int i=0; i<vtx.size(); i++)
SyncWithWallets(GetTxHash(i), vtx[i], this, true);
return true;
}
bool SetBestChain(CValidationState &state, CBlockIndex* pindexNew)
{
// All modifications to the coin state will be done in this cache.
// Only when all have succeeded, we push it to pcoinsTip.
CCoinsViewCache view(*pcoinsTip, true);
// Find the fork (typically, there is none)
CBlockIndex* pfork = view.GetBestBlock();
CBlockIndex* plonger = pindexNew;
while (pfork && pfork != plonger)
{
while (plonger->nHeight > pfork->nHeight) {
plonger = plonger->pprev;
assert(plonger != NULL);
}
if (pfork == plonger)
break;
pfork = pfork->pprev;
assert(pfork != NULL);
}
// List of what to disconnect (typically nothing)
vector<CBlockIndex*> vDisconnect;
for (CBlockIndex* pindex = view.GetBestBlock(); pindex != pfork; pindex = pindex->pprev)
vDisconnect.push_back(pindex);
// List of what to connect (typically only pindexNew)
vector<CBlockIndex*> vConnect;
for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
vConnect.push_back(pindex);
reverse(vConnect.begin(), vConnect.end());
if (vDisconnect.size() > 0) {
printf("REORGANIZE: Disconnect %"PRIszu" blocks; %s..\n", vDisconnect.size(), pfork->GetBlockHash().ToString().c_str());
printf("REORGANIZE: Connect %"PRIszu" blocks; ..%s\n", vConnect.size(), pindexNew->GetBlockHash().ToString().c_str());
}
// Disconnect shorter branch
vector<CTransaction> vResurrect;
BOOST_FOREACH(CBlockIndex* pindex, vDisconnect) {
CBlock block;
if (!block.ReadFromDisk(pindex))
return state.Abort(_("Failed to read block"));
int64 nStart = GetTimeMicros();
if (!block.DisconnectBlock(state, pindex, view))
return error("SetBestBlock() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().c_str());
if (fBenchmark)
printf("- Disconnect: %.2fms\n", (GetTimeMicros() - nStart) * 0.001);
// Queue memory transactions to resurrect.
// We only do this for blocks after the last checkpoint (reorganisation before that
// point should only happen with -reindex/-loadblock, or a misbehaving peer.
BOOST_FOREACH(const CTransaction& tx, block.vtx)
if (!tx.IsCoinBase() && pindex->nHeight > Checkpoints::GetTotalBlocksEstimate())
vResurrect.push_back(tx);
}
// Connect longer branch
vector<CTransaction> vDelete;
BOOST_FOREACH(CBlockIndex *pindex, vConnect) {
CBlock block;
if (!block.ReadFromDisk(pindex))
return state.Abort(_("Failed to read block"));
int64 nStart = GetTimeMicros();
if (!block.ConnectBlock(state, pindex, view)) {
if (state.IsInvalid()) {
InvalidChainFound(pindexNew);
InvalidBlockFound(pindex);
}
return error("SetBestBlock() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().c_str());
}
if (fBenchmark)
printf("- Connect: %.2fms\n", (GetTimeMicros() - nStart) * 0.001);
// Queue memory transactions to delete
BOOST_FOREACH(const CTransaction& tx, block.vtx)
vDelete.push_back(tx);
}
// Flush changes to global coin state
int64 nStart = GetTimeMicros();
int nModified = view.GetCacheSize();
assert(view.Flush());
int64 nTime = GetTimeMicros() - nStart;
if (fBenchmark)
printf("- Flush %i transactions: %.2fms (%.4fms/tx)\n", nModified, 0.001 * nTime, 0.001 * nTime / nModified);
// Make sure it's successfully written to disk before changing memory structure
bool fIsInitialDownload = IsInitialBlockDownload();
if (!fIsInitialDownload || pcoinsTip->GetCacheSize() > nCoinCacheSize) {
// Typical CCoins structures on disk are around 100 bytes in size.
// Pushing a new one to the database can cause it to be written
// twice (once in the log, and once in the tables). This is already
// an overestimation, as most will delete an existing entry or
// overwrite one. Still, use a conservative safety factor of 2.
if (!CheckDiskSpace(100 * 2 * 2 * pcoinsTip->GetCacheSize()))
return state.Error();
FlushBlockFile();
pblocktree->Sync();
if (!pcoinsTip->Flush())
return state.Abort(_("Failed to write to coin database"));
}
// At this point, all changes have been done to the database.
// Proceed by updating the memory structures.
// Disconnect shorter branch
BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
if (pindex->pprev)
pindex->pprev->pnext = NULL;
// Connect longer branch
BOOST_FOREACH(CBlockIndex* pindex, vConnect)
if (pindex->pprev)
pindex->pprev->pnext = pindex;
// Resurrect memory transactions that were in the disconnected branch
BOOST_FOREACH(CTransaction& tx, vResurrect) {
// ignore validation errors in resurrected transactions
CValidationState stateDummy;
if (!tx.AcceptToMemoryPool(stateDummy, true, false))
mempool.remove(tx, true);
}
// Delete redundant memory transactions that are in the connected branch
BOOST_FOREACH(CTransaction& tx, vDelete) {
mempool.remove(tx);
mempool.removeConflicts(tx);
}
// Update best block in wallet (so we can detect restored wallets)
if ((pindexNew->nHeight % 20160) == 0 || (!fIsInitialDownload && (pindexNew->nHeight % 144) == 0))
{
const CBlockLocator locator(pindexNew);
::SetBestChain(locator);
}
// New best block
hashBestChain = pindexNew->GetBlockHash();
pindexBest = pindexNew;
pblockindexFBBHLast = NULL;
nBestHeight = pindexBest->nHeight;
nBestChainWork = pindexNew->nChainWork;
nTimeBestReceived = GetTime();
nTransactionsUpdated++;
printf("SetBestChain: new best=%s height=%d log2_work=%.8g tx=%lu date=%s progress=%f\n",
hashBestChain.ToString().c_str(), nBestHeight, log(nBestChainWork.getdouble())/log(2.0), (unsigned long)pindexNew->nChainTx,
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", pindexBest->GetBlockTime()).c_str(),
Checkpoints::GuessVerificationProgress(pindexBest));
// Check the version of the last 100 blocks to see if we need to upgrade:
if (!fIsInitialDownload)
{
int nUpgraded = 0;
const CBlockIndex* pindex = pindexBest;
for (int i = 0; i < 100 && pindex != NULL; i++)
{
if (pindex->nVersion > CBlock::CURRENT_VERSION)
++nUpgraded;
pindex = pindex->pprev;
}
if (nUpgraded > 0)
printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CURRENT_VERSION);
if (nUpgraded > 100/2)
// strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
strMiscWarning = _("Warning: This version is obsolete, upgrade required!");
}
std::string strCmd = GetArg("-blocknotify", "");
if (!fIsInitialDownload && !strCmd.empty())
{
boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
boost::thread t(runCommand, strCmd); // thread runs free
}
return true;
}
bool CBlock::AddToBlockIndex(CValidationState &state, const CDiskBlockPos &pos)
{
// Check for duplicate
uint256 hash = GetHash();
if (mapBlockIndex.count(hash))
return state.Invalid(error("AddToBlockIndex() : %s already exists", hash.ToString().c_str()));
// Construct new block index object
CBlockIndex* pindexNew = new CBlockIndex(*this);
assert(pindexNew);
map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
pindexNew->phashBlock = &((*mi).first);
map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
if (miPrev != mapBlockIndex.end())
{
pindexNew->pprev = (*miPrev).second;
pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
}
pindexNew->nTx = vtx.size();
pindexNew->nChainWork = (pindexNew->pprev ? pindexNew->pprev->nChainWork : 0) + pindexNew->GetBlockWork().getuint256();
pindexNew->nChainTx = (pindexNew->pprev ? pindexNew->pprev->nChainTx : 0) + pindexNew->nTx;
pindexNew->nFile = pos.nFile;
pindexNew->nDataPos = pos.nPos;
pindexNew->nUndoPos = 0;
pindexNew->nStatus = BLOCK_VALID_TRANSACTIONS | BLOCK_HAVE_DATA;
setBlockIndexValid.insert(pindexNew);
if (!pblocktree->WriteBlockIndex(CDiskBlockIndex(pindexNew)))
return state.Abort(_("Failed to write block index"));
// New best?
if (!ConnectBestBlock(state))
return false;
if (pindexNew == pindexBest)
{
// Notify UI to display prev block's coinbase if it was ours
static uint256 hashPrevBestCoinBase;
UpdatedTransaction(hashPrevBestCoinBase);
hashPrevBestCoinBase = GetTxHash(0);
}
if (!pblocktree->Flush())
return state.Abort(_("Failed to sync block index"));
uiInterface.NotifyBlocksChanged();
return true;
}
bool FindBlockPos(CValidationState &state, CDiskBlockPos &pos, unsigned int nAddSize, unsigned int nHeight, uint64 nTime, bool fKnown = false)
{
bool fUpdatedLast = false;
LOCK(cs_LastBlockFile);
if (fKnown) {
if (nLastBlockFile != pos.nFile) {
nLastBlockFile = pos.nFile;
infoLastBlockFile.SetNull();
pblocktree->ReadBlockFileInfo(nLastBlockFile, infoLastBlockFile);
fUpdatedLast = true;
}
} else {
while (infoLastBlockFile.nSize + nAddSize >= MAX_BLOCKFILE_SIZE) {
printf("Leaving block file %i: %s\n", nLastBlockFile, infoLastBlockFile.ToString().c_str());
FlushBlockFile(true);
nLastBlockFile++;
infoLastBlockFile.SetNull();
pblocktree->ReadBlockFileInfo(nLastBlockFile, infoLastBlockFile); // check whether data for the new file somehow already exist; can fail just fine
fUpdatedLast = true;
}
pos.nFile = nLastBlockFile;
pos.nPos = infoLastBlockFile.nSize;
}
infoLastBlockFile.nSize += nAddSize;
infoLastBlockFile.AddBlock(nHeight, nTime);
if (!fKnown) {
unsigned int nOldChunks = (pos.nPos + BLOCKFILE_CHUNK_SIZE - 1) / BLOCKFILE_CHUNK_SIZE;
unsigned int nNewChunks = (infoLastBlockFile.nSize + BLOCKFILE_CHUNK_SIZE - 1) / BLOCKFILE_CHUNK_SIZE;
if (nNewChunks > nOldChunks) {
if (CheckDiskSpace(nNewChunks * BLOCKFILE_CHUNK_SIZE - pos.nPos)) {
FILE *file = OpenBlockFile(pos);
if (file) {
printf("Pre-allocating up to position 0x%x in blk%05u.dat\n", nNewChunks * BLOCKFILE_CHUNK_SIZE, pos.nFile);
AllocateFileRange(file, pos.nPos, nNewChunks * BLOCKFILE_CHUNK_SIZE - pos.nPos);
fclose(file);
}
}
else
return state.Error();
}
}
if (!pblocktree->WriteBlockFileInfo(nLastBlockFile, infoLastBlockFile))
return state.Abort(_("Failed to write file info"));
if (fUpdatedLast)
pblocktree->WriteLastBlockFile(nLastBlockFile);
return true;
}
bool FindUndoPos(CValidationState &state, int nFile, CDiskBlockPos &pos, unsigned int nAddSize)
{
pos.nFile = nFile;
LOCK(cs_LastBlockFile);
unsigned int nNewSize;
if (nFile == nLastBlockFile) {
pos.nPos = infoLastBlockFile.nUndoSize;
nNewSize = (infoLastBlockFile.nUndoSize += nAddSize);
if (!pblocktree->WriteBlockFileInfo(nLastBlockFile, infoLastBlockFile))
return state.Abort(_("Failed to write block info"));
} else {
CBlockFileInfo info;
if (!pblocktree->ReadBlockFileInfo(nFile, info))
return state.Abort(_("Failed to read block info"));
pos.nPos = info.nUndoSize;
nNewSize = (info.nUndoSize += nAddSize);
if (!pblocktree->WriteBlockFileInfo(nFile, info))
return state.Abort(_("Failed to write block info"));
}
unsigned int nOldChunks = (pos.nPos + UNDOFILE_CHUNK_SIZE - 1) / UNDOFILE_CHUNK_SIZE;
unsigned int nNewChunks = (nNewSize + UNDOFILE_CHUNK_SIZE - 1) / UNDOFILE_CHUNK_SIZE;
if (nNewChunks > nOldChunks) {
if (CheckDiskSpace(nNewChunks * UNDOFILE_CHUNK_SIZE - pos.nPos)) {
FILE *file = OpenUndoFile(pos);
if (file) {
printf("Pre-allocating up to position 0x%x in rev%05u.dat\n", nNewChunks * UNDOFILE_CHUNK_SIZE, pos.nFile);
AllocateFileRange(file, pos.nPos, nNewChunks * UNDOFILE_CHUNK_SIZE - pos.nPos);
fclose(file);
}
}
else
return state.Error();
}
return true;
}
bool CBlock::CheckBlock(CValidationState &state, bool fCheckPOW, bool fCheckMerkleRoot) const
{
// These are checks that are independent of context
// that can be verified before saving an orphan block.
// Size limits
if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
return state.DoS(100, error("CheckBlock() : size limits failed"));
// backspacebar: Special short-term limits to avoid 10,000 BDB lock limit:
if (GetBlockTime() < 1376568000) // stop enforcing 15 August 2013 00:00:00
{
// Rule is: #unique txids referenced <= 4,500
// ... to prevent 10,000 BDB lock exhaustion on old clients
set<uint256> setTxIn;
for (size_t i = 0; i < vtx.size(); i++)
{
setTxIn.insert(vtx[i].GetHash());
if (i == 0) continue; // skip coinbase txin
BOOST_FOREACH(const CTxIn& txin, vtx[i].vin)
setTxIn.insert(txin.prevout.hash);
}
size_t nTxids = setTxIn.size();
if (nTxids > 4500)
return error("CheckBlock() : 15 August maxlocks violation");
}
// Check proof of work matches claimed amount
if (fCheckPOW && !CheckProofOfWork(GetPoWHash(), nBits))
return state.DoS(50, error("CheckBlock() : proof of work failed"));
// Check timestamp
if (GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60)
return state.Invalid(error("CheckBlock() : block timestamp too far in the future"));
// First transaction must be coinbase, the rest must not be
if (vtx.empty() || !vtx[0].IsCoinBase())
return state.DoS(100, error("CheckBlock() : first tx is not coinbase"));
for (unsigned int i = 1; i < vtx.size(); i++)
if (vtx[i].IsCoinBase())
return state.DoS(100, error("CheckBlock() : more than one coinbase"));
// Check transactions
BOOST_FOREACH(const CTransaction& tx, vtx)
if (!tx.CheckTransaction(state))
return error("CheckBlock() : CheckTransaction failed");
// Build the merkle tree already. We need it anyway later, and it makes the
// block cache the transaction hashes, which means they don't need to be
// recalculated many times during this block's validation.
BuildMerkleTree();
// Check for duplicate txids. This is caught by ConnectInputs(),
// but catching it earlier avoids a potential DoS attack:
set<uint256> uniqueTx;
for (unsigned int i=0; i<vtx.size(); i++) {
uniqueTx.insert(GetTxHash(i));
}
if (uniqueTx.size() != vtx.size())
return state.DoS(100, error("CheckBlock() : duplicate transaction"), true);
unsigned int nSigOps = 0;
BOOST_FOREACH(const CTransaction& tx, vtx)
{
nSigOps += tx.GetLegacySigOpCount();
}
if (nSigOps > MAX_BLOCK_SIGOPS)
return state.DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
// Check merkle root
if (fCheckMerkleRoot && hashMerkleRoot != BuildMerkleTree())
return state.DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
return true;
}
bool CBlock::AcceptBlock(CValidationState &state, CDiskBlockPos *dbp)
{
// Check for duplicate
uint256 hash = GetHash();
if (mapBlockIndex.count(hash))
return state.Invalid(error("AcceptBlock() : block already in mapBlockIndex"));
// Get prev block index
CBlockIndex* pindexPrev = NULL;
int nHeight = 0;
if (hash != hashGenesisBlock) {
map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
if (mi == mapBlockIndex.end())
return state.DoS(10, error("AcceptBlock() : prev block not found"));
pindexPrev = (*mi).second;
nHeight = pindexPrev->nHeight+1;
// Check proof of work
if (nBits != GetNextWorkRequired(pindexPrev, this))
return state.DoS(100, error("AcceptBlock() : incorrect proof of work"));
// Check timestamp against prev
if (GetBlockTime() <= pindexPrev->GetMedianTimePast())
return state.Invalid(error("AcceptBlock() : block's timestamp is too early"));
// Check that all transactions are finalized
BOOST_FOREACH(const CTransaction& tx, vtx)
if (!tx.IsFinal(nHeight, GetBlockTime()))
return state.DoS(10, error("AcceptBlock() : contains a non-final transaction"));
// Check that the block chain matches the known block chain up to a checkpoint
if (!Checkpoints::CheckBlock(nHeight, hash))
return state.DoS(100, error("AcceptBlock() : rejected by checkpoint lock-in at %d", nHeight));
// Don't accept any forks from the main chain prior to last checkpoint
CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex);
if (pcheckpoint && nHeight < pcheckpoint->nHeight)
return state.DoS(100, error("AcceptBlock() : forked chain older than last checkpoint (height %d)", nHeight));
// Reject block.nVersion=1 blocks (mainnet >= 710000, testnet >= 400000)
if (nVersion < 2)
{
if ((!fTestNet && nHeight >= 710000) ||
(fTestNet && nHeight >= 400000))
{
return state.Invalid(error("AcceptBlock() : rejected nVersion=1 block"));
}
}
// Enforce block.nVersion=2 rule that the coinbase starts with serialized block height
if (nVersion >= 2)
{
if ((!fTestNet && nHeight >= 710000) ||
(fTestNet && nHeight >= 400000))
{
CScript expect = CScript() << nHeight;
if (vtx[0].vin[0].scriptSig.size() < expect.size() ||
!std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin()))
return state.DoS(100, error("AcceptBlock() : block height mismatch in coinbase"));
}
}
}
// Write block to history file
try {
unsigned int nBlockSize = ::GetSerializeSize(*this, SER_DISK, CLIENT_VERSION);
CDiskBlockPos blockPos;
if (dbp != NULL)
blockPos = *dbp;
if (!FindBlockPos(state, blockPos, nBlockSize+8, nHeight, nTime, dbp != NULL))
return error("AcceptBlock() : FindBlockPos failed");
if (dbp == NULL)
if (!WriteToDisk(blockPos))
return state.Abort(_("Failed to write block"));
if (!AddToBlockIndex(state, blockPos))
return error("AcceptBlock() : AddToBlockIndex failed");
} catch(std::runtime_error &e) {
return state.Abort(_("System error: ") + e.what());
}
// Relay inventory, but don't relay old inventory during initial block download
int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
if (hashBestChain == hash)
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
pnode->PushInventory(CInv(MSG_BLOCK, hash));
}
return true;
}
bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck)
{
unsigned int nFound = 0;
for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++)
{
if (pstart->nVersion >= minVersion)
++nFound;
pstart = pstart->pprev;
}
return (nFound >= nRequired);
}
bool ProcessBlock(CValidationState &state, CNode* pfrom, CBlock* pblock, CDiskBlockPos *dbp)
{
// Check for duplicate
uint256 hash = pblock->GetHash();
if (mapBlockIndex.count(hash))
return state.Invalid(error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().c_str()));
if (mapOrphanBlocks.count(hash))
return state.Invalid(error("ProcessBlock() : already have block (orphan) %s", hash.ToString().c_str()));
// Preliminary checks
if (!pblock->CheckBlock(state))
return error("ProcessBlock() : CheckBlock FAILED");
CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex);
if (pcheckpoint && pblock->hashPrevBlock != hashBestChain)
{
// Extra checks to prevent "fill up memory by spamming with bogus blocks"
int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
if (deltaTime < 0)
{
return state.DoS(100, error("ProcessBlock() : block with timestamp before last checkpoint"));
}
CBigNum bnNewBlock;
bnNewBlock.SetCompact(pblock->nBits);
CBigNum bnRequired;
bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime));
if (bnNewBlock > bnRequired)
{
return state.DoS(100, error("ProcessBlock() : block with too little proof-of-work"));
}
}
// If we don't already have its previous block, shunt it off to holding area until we get it
if (pblock->hashPrevBlock != 0 && !mapBlockIndex.count(pblock->hashPrevBlock))
{
printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().c_str());
// Accept orphans as long as there is a node to request its parents from
if (pfrom) {
CBlock* pblock2 = new CBlock(*pblock);
mapOrphanBlocks.insert(make_pair(hash, pblock2));
mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
// Ask this guy to fill in what we're missing
pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
}
return true;
}
// Store to disk
if (!pblock->AcceptBlock(state, dbp))
return error("ProcessBlock() : AcceptBlock FAILED");
// Recursively process any orphan blocks that depended on this one
vector<uint256> vWorkQueue;
vWorkQueue.push_back(hash);
for (unsigned int i = 0; i < vWorkQueue.size(); i++)
{
uint256 hashPrev = vWorkQueue[i];
for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
++mi)
{
CBlock* pblockOrphan = (*mi).second;
// Use a dummy CValidationState so someone can't setup nodes to counter-DoS based on orphan resolution (that is, feeding people an invalid block based on LegitBlockX in order to get anyone relaying LegitBlockX banned)
CValidationState stateDummy;
if (pblockOrphan->AcceptBlock(stateDummy))
vWorkQueue.push_back(pblockOrphan->GetHash());
mapOrphanBlocks.erase(pblockOrphan->GetHash());
delete pblockOrphan;
}
mapOrphanBlocksByPrev.erase(hashPrev);
}
printf("ProcessBlock: ACCEPTED\n");
return true;
}
CMerkleBlock::CMerkleBlock(const CBlock& block, CBloomFilter& filter)
{
header = block.GetBlockHeader();
vector<bool> vMatch;
vector<uint256> vHashes;
vMatch.reserve(block.vtx.size());
vHashes.reserve(block.vtx.size());
for (unsigned int i = 0; i < block.vtx.size(); i++)
{
uint256 hash = block.vtx[i].GetHash();
if (filter.IsRelevantAndUpdate(block.vtx[i], hash))
{
vMatch.push_back(true);
vMatchedTxn.push_back(make_pair(i, hash));
}
else
vMatch.push_back(false);
vHashes.push_back(hash);
}
txn = CPartialMerkleTree(vHashes, vMatch);
}
uint256 CPartialMerkleTree::CalcHash(int height, unsigned int pos, const std::vector<uint256> &vTxid) {
if (height == 0) {
// hash at height 0 is the txids themself
return vTxid[pos];
} else {
// calculate left hash
uint256 left = CalcHash(height-1, pos*2, vTxid), right;
// calculate right hash if not beyong the end of the array - copy left hash otherwise1
if (pos*2+1 < CalcTreeWidth(height-1))
right = CalcHash(height-1, pos*2+1, vTxid);
else
right = left;
// combine subhashes
return Hash(BEGIN(left), END(left), BEGIN(right), END(right));
}
}
void CPartialMerkleTree::TraverseAndBuild(int height, unsigned int pos, const std::vector<uint256> &vTxid, const std::vector<bool> &vMatch) {
// determine whether this node is the parent of at least one matched txid
bool fParentOfMatch = false;
for (unsigned int p = pos << height; p < (pos+1) << height && p < nTransactions; p++)
fParentOfMatch |= vMatch[p];
// store as flag bit
vBits.push_back(fParentOfMatch);
if (height==0 || !fParentOfMatch) {
// if at height 0, or nothing interesting below, store hash and stop
vHash.push_back(CalcHash(height, pos, vTxid));
} else {
// otherwise, don't store any hash, but descend into the subtrees
TraverseAndBuild(height-1, pos*2, vTxid, vMatch);
if (pos*2+1 < CalcTreeWidth(height-1))
TraverseAndBuild(height-1, pos*2+1, vTxid, vMatch);
}
}
uint256 CPartialMerkleTree::TraverseAndExtract(int height, unsigned int pos, unsigned int &nBitsUsed, unsigned int &nHashUsed, std::vector<uint256> &vMatch) {
if (nBitsUsed >= vBits.size()) {
// overflowed the bits array - failure
fBad = true;
return 0;
}
bool fParentOfMatch = vBits[nBitsUsed++];
if (height==0 || !fParentOfMatch) {
// if at height 0, or nothing interesting below, use stored hash and do not descend
if (nHashUsed >= vHash.size()) {
// overflowed the hash array - failure
fBad = true;
return 0;
}
const uint256 &hash = vHash[nHashUsed++];
if (height==0 && fParentOfMatch) // in case of height 0, we have a matched txid
vMatch.push_back(hash);
return hash;
} else {
// otherwise, descend into the subtrees to extract matched txids and hashes
uint256 left = TraverseAndExtract(height-1, pos*2, nBitsUsed, nHashUsed, vMatch), right;
if (pos*2+1 < CalcTreeWidth(height-1))
right = TraverseAndExtract(height-1, pos*2+1, nBitsUsed, nHashUsed, vMatch);
else
right = left;
// and combine them before returning
return Hash(BEGIN(left), END(left), BEGIN(right), END(right));
}
}
CPartialMerkleTree::CPartialMerkleTree(const std::vector<uint256> &vTxid, const std::vector<bool> &vMatch) : nTransactions(vTxid.size()), fBad(false) {
// reset state
vBits.clear();
vHash.clear();
// calculate height of tree
int nHeight = 0;
while (CalcTreeWidth(nHeight) > 1)
nHeight++;
// traverse the partial tree
TraverseAndBuild(nHeight, 0, vTxid, vMatch);
}
CPartialMerkleTree::CPartialMerkleTree() : nTransactions(0), fBad(true) {}
uint256 CPartialMerkleTree::ExtractMatches(std::vector<uint256> &vMatch) {
vMatch.clear();
// An empty set will not work
if (nTransactions == 0)
return 0;
// check for excessively high numbers of transactions
if (nTransactions > MAX_BLOCK_SIZE / 60) // 60 is the lower bound for the size of a serialized CTransaction
return 0;
// there can never be more hashes provided than one for every txid
if (vHash.size() > nTransactions)
return 0;
// there must be at least one bit per node in the partial tree, and at least one node per hash
if (vBits.size() < vHash.size())
return 0;
// calculate height of tree
int nHeight = 0;
while (CalcTreeWidth(nHeight) > 1)
nHeight++;
// traverse the partial tree
unsigned int nBitsUsed = 0, nHashUsed = 0;
uint256 hashMerkleRoot = TraverseAndExtract(nHeight, 0, nBitsUsed, nHashUsed, vMatch);
// verify that no problems occured during the tree traversal
if (fBad)
return 0;
// verify that all bits were consumed (except for the padding caused by serializing it as a byte sequence)
if ((nBitsUsed+7)/8 != (vBits.size()+7)/8)
return 0;
// verify that all hashes were consumed
if (nHashUsed != vHash.size())
return 0;
return hashMerkleRoot;
}
bool AbortNode(const std::string &strMessage) {
strMiscWarning = strMessage;
printf("*** %s\n", strMessage.c_str());
uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_ERROR);
StartShutdown();
return false;
}
bool CheckDiskSpace(uint64 nAdditionalBytes)
{
uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
// Check for nMinDiskSpace bytes (currently 50MB)
if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
return AbortNode(_("Error: Disk space is low!"));
return true;
}
CCriticalSection cs_LastBlockFile;
CBlockFileInfo infoLastBlockFile;
int nLastBlockFile = 0;
FILE* OpenDiskFile(const CDiskBlockPos &pos, const char *prefix, bool fReadOnly)
{
if (pos.IsNull())
return NULL;
boost::filesystem::path path = GetDataDir() / "blocks" / strprintf("%s%05u.dat", prefix, pos.nFile);
boost::filesystem::create_directories(path.parent_path());
FILE* file = fopen(path.string().c_str(), "rb+");
if (!file && !fReadOnly)
file = fopen(path.string().c_str(), "wb+");
if (!file) {
printf("Unable to open file %s\n", path.string().c_str());
return NULL;
}
if (pos.nPos) {
if (fseek(file, pos.nPos, SEEK_SET)) {
printf("Unable to seek to position %u of %s\n", pos.nPos, path.string().c_str());
fclose(file);
return NULL;
}
}
return file;
}
FILE* OpenBlockFile(const CDiskBlockPos &pos, bool fReadOnly) {
return OpenDiskFile(pos, "blk", fReadOnly);
}
FILE* OpenUndoFile(const CDiskBlockPos &pos, bool fReadOnly) {
return OpenDiskFile(pos, "rev", fReadOnly);
}
CBlockIndex * InsertBlockIndex(uint256 hash)
{
if (hash == 0)
return NULL;
// Return existing
map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
if (mi != mapBlockIndex.end())
return (*mi).second;
// Create new
CBlockIndex* pindexNew = new CBlockIndex();
if (!pindexNew)
throw runtime_error("LoadBlockIndex() : new CBlockIndex failed");
mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
pindexNew->phashBlock = &((*mi).first);
return pindexNew;
}
bool static LoadBlockIndexDB()
{
if (!pblocktree->LoadBlockIndexGuts())
return false;
boost::this_thread::interruption_point();
// Calculate nChainWork
vector<pair<int, CBlockIndex*> > vSortedByHeight;
vSortedByHeight.reserve(mapBlockIndex.size());
BOOST_FOREACH(const PAIRTYPE(uint256, CBlockIndex*)& item, mapBlockIndex)
{
CBlockIndex* pindex = item.second;
vSortedByHeight.push_back(make_pair(pindex->nHeight, pindex));
}
sort(vSortedByHeight.begin(), vSortedByHeight.end());
BOOST_FOREACH(const PAIRTYPE(int, CBlockIndex*)& item, vSortedByHeight)
{
CBlockIndex* pindex = item.second;
pindex->nChainWork = (pindex->pprev ? pindex->pprev->nChainWork : 0) + pindex->GetBlockWork().getuint256();
pindex->nChainTx = (pindex->pprev ? pindex->pprev->nChainTx : 0) + pindex->nTx;
if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_TRANSACTIONS && !(pindex->nStatus & BLOCK_FAILED_MASK))
setBlockIndexValid.insert(pindex);
}
// Load block file info
pblocktree->ReadLastBlockFile(nLastBlockFile);
printf("LoadBlockIndexDB(): last block file = %i\n", nLastBlockFile);
if (pblocktree->ReadBlockFileInfo(nLastBlockFile, infoLastBlockFile))
printf("LoadBlockIndexDB(): last block file info: %s\n", infoLastBlockFile.ToString().c_str());
// Load nBestInvalidWork, OK if it doesn't exist
CBigNum bnBestInvalidWork;
pblocktree->ReadBestInvalidWork(bnBestInvalidWork);
nBestInvalidWork = bnBestInvalidWork.getuint256();
// Check whether we need to continue reindexing
bool fReindexing = false;
pblocktree->ReadReindexing(fReindexing);
fReindex |= fReindexing;
// Check whether we have a transaction index
pblocktree->ReadFlag("txindex", fTxIndex);
printf("LoadBlockIndexDB(): transaction index %s\n", fTxIndex ? "enabled" : "disabled");
// Load hashBestChain pointer to end of best chain
pindexBest = pcoinsTip->GetBestBlock();
if (pindexBest == NULL)
return true;
hashBestChain = pindexBest->GetBlockHash();
nBestHeight = pindexBest->nHeight;
nBestChainWork = pindexBest->nChainWork;
// set 'next' pointers in best chain
CBlockIndex *pindex = pindexBest;
while(pindex != NULL && pindex->pprev != NULL) {
CBlockIndex *pindexPrev = pindex->pprev;
pindexPrev->pnext = pindex;
pindex = pindexPrev;
}
printf("LoadBlockIndexDB(): hashBestChain=%s height=%d date=%s\n",
hashBestChain.ToString().c_str(), nBestHeight,
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", pindexBest->GetBlockTime()).c_str());
return true;
}
bool VerifyDB(int nCheckLevel, int nCheckDepth)
{
if (pindexBest == NULL || pindexBest->pprev == NULL)
return true;
// Verify blocks in the best chain
if (nCheckDepth <= 0)
nCheckDepth = 1000000000; // suffices until the year 19000
if (nCheckDepth > nBestHeight)
nCheckDepth = nBestHeight;
nCheckLevel = std::max(0, std::min(4, nCheckLevel));
printf("Verifying last %i blocks at level %i\n", nCheckDepth, nCheckLevel);
CCoinsViewCache coins(*pcoinsTip, true);
CBlockIndex* pindexState = pindexBest;
CBlockIndex* pindexFailure = NULL;
int nGoodTransactions = 0;
CValidationState state;
for (CBlockIndex* pindex = pindexBest; pindex && pindex->pprev; pindex = pindex->pprev)
{
boost::this_thread::interruption_point();
if (pindex->nHeight < nBestHeight-nCheckDepth)
break;
CBlock block;
// check level 0: read from disk
if (!block.ReadFromDisk(pindex))
return error("VerifyDB() : *** block.ReadFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
// check level 1: verify block validity
if (nCheckLevel >= 1 && !block.CheckBlock(state))
return error("VerifyDB() : *** found bad block at %d, hash=%s\n", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
// check level 2: verify undo validity
if (nCheckLevel >= 2 && pindex) {
CBlockUndo undo;
CDiskBlockPos pos = pindex->GetUndoPos();
if (!pos.IsNull()) {
if (!undo.ReadFromDisk(pos, pindex->pprev->GetBlockHash()))
return error("VerifyDB() : *** found bad undo data at %d, hash=%s\n", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
}
}
// check level 3: check for inconsistencies during memory-only disconnect of tip blocks
if (nCheckLevel >= 3 && pindex == pindexState && (coins.GetCacheSize() + pcoinsTip->GetCacheSize()) <= 2*nCoinCacheSize + 32000) {
bool fClean = true;
if (!block.DisconnectBlock(state, pindex, coins, &fClean))
return error("VerifyDB() : *** irrecoverable inconsistency in block data at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
pindexState = pindex->pprev;
if (!fClean) {
nGoodTransactions = 0;
pindexFailure = pindex;
} else
nGoodTransactions += block.vtx.size();
}
}
if (pindexFailure)
return error("VerifyDB() : *** coin database inconsistencies found (last %i blocks, %i good transactions before that)\n", pindexBest->nHeight - pindexFailure->nHeight + 1, nGoodTransactions);
// check level 4: try reconnecting blocks
if (nCheckLevel >= 4) {
CBlockIndex *pindex = pindexState;
while (pindex != pindexBest) {
boost::this_thread::interruption_point();
pindex = pindex->pnext;
CBlock block;
if (!block.ReadFromDisk(pindex))
return error("VerifyDB() : *** block.ReadFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
if (!block.ConnectBlock(state, pindex, coins))
return error("VerifyDB() : *** found unconnectable block at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
}
}
printf("No coin database inconsistencies in last %i blocks (%i transactions)\n", pindexBest->nHeight - pindexState->nHeight, nGoodTransactions);
return true;
}
void UnloadBlockIndex()
{
mapBlockIndex.clear();
setBlockIndexValid.clear();
pindexGenesisBlock = NULL;
nBestHeight = 0;
nBestChainWork = 0;
nBestInvalidWork = 0;
hashBestChain = 0;
pindexBest = NULL;
}
bool LoadBlockIndex()
{
if (fTestNet)
{
pchMessageStart[0] = 0x46;
pchMessageStart[1] = 0xfc;
pchMessageStart[2] = 0x2c;
pchMessageStart[3] = 0x6d;
hashGenesisBlock = uint256("0x08769028f3f23b1ef3df0c33957344211baf6822f3a9e255c3a2ca2bad4bac0e");
}
//
// Load block index from databases
//
if (!fReindex && !LoadBlockIndexDB())
return false;
return true;
}
bool InitBlockIndex() {
// Check whether we're already initialized
if (pindexGenesisBlock != NULL)
return true;
// Use the provided setting for -txindex in the new database
fTxIndex = GetBoolArg("-txindex", false);
pblocktree->WriteFlag("txindex", fTxIndex);
printf("Initializing databases...\n");
// Only add the genesis block if not reindexing (in which case we reuse the one already on disk)
if (!fReindex) {
// Genesis Block:
// CBlock(hash=12a765e31ffd4059bada, PoW=0000050c34a64b415b6b, ver=1, hashPrevBlock=00000000000000000000, hashMerkleRoot=97ddfbbae6, nTime=1509039318, nBits=1e0ffff0, nNonce=0, vtx=1)
// CTransaction(hash=97ddfbbae6, ver=1, vin.size=1, vout.size=1, nLockTime=0)
// CTxIn(COutPoint(0000000000, -1), coinbase 04ffff001d0104404e592054696d65732030352f4f63742f32303131205374657665204a6f62732c204170706c65e280997320566973696f6e6172792c2044696573206174203536)
// CTxOut(nValue=50.00000000, scriptPubKey=040184710fa689ad5023690c80f3a4)
// vMerkleTree: 97ddfbbae6
// Genesis block
const char* pszTimestamp = "05 Nov 17";
CTransaction txNew;
txNew.vin.resize(1);
txNew.vout.resize(1);
txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
txNew.vout[0].nValue = 50 * COIN;
txNew.vout[0].scriptPubKey = CScript() << ParseHex("043c0ef37c0c1175ccfe084a44064757c962444c0e29d3ff2b4a3b2c14c3c9b48117c33cce32c47e75aefc16777bc5c9d67ce2b3a7d077f6876561fedde3e0510a") << OP_CHECKSIG;
CBlock block;
block.vtx.push_back(txNew);
block.hashPrevBlock = 0;
block.hashMerkleRoot = block.BuildMerkleTree();
block.nVersion = 1;
block.nTime = 1509901398;
block.nBits = 0x1e0ffff0;
block.nNonce = 4437948;
if (fTestNet)
{
block.nTime = 1509901398;
block.nNonce = 385370188;
}
//// debug print
uint256 hash = block.GetHash();
printf("%s\n", hash.ToString().c_str());
printf("%s\n", hashGenesisBlock.ToString().c_str());
printf("%s\n", block.hashMerkleRoot.ToString().c_str());
assert(block.hashMerkleRoot == uint256("0x4f69a6f292d25f7c6a98dbbc718581603444dc07fda07918f6f11a499d35ea23"));
if (false && block.GetHash() != hashGenesisBlock)
{
printf("Searching for genesis block...\n");
uint256 hashTarget = CBigNum().SetCompact(block.nBits).getuint256();
uint256 thash;
char scratchpad[SCRYPT_SCRATCHPAD_SIZE];
loop
{
scrypt_1024_1_1_256_sp(BEGIN(block.nVersion), BEGIN(thash), scratchpad);
if (thash <= hashTarget)
break;
if ((block.nNonce & 0xFFF) == 0)
{
printf("nonce %08X: hash = %s (target = %s)\n", block.nNonce, thash.ToString().c_str(), hashTarget.ToString().c_str());
}
++block.nNonce;
if (block.nNonce == 0)
{
printf("NONCE WRAPPED, incrementing time\n");
++block.nTime;
}
}
printf("block.GetHash() == %s\n", block.GetHash().ToString().c_str());
printf("block.nTime = %u \n", block.nTime);
printf("block.nNonce = %u \n", block.nNonce);
}
block.print();
assert(hash == hashGenesisBlock);
// Start new block file
try {
unsigned int nBlockSize = ::GetSerializeSize(block, SER_DISK, CLIENT_VERSION);
CDiskBlockPos blockPos;
CValidationState state;
if (!FindBlockPos(state, blockPos, nBlockSize+8, 0, block.nTime))
return error("LoadBlockIndex() : FindBlockPos failed");
if (!block.WriteToDisk(blockPos))
return error("LoadBlockIndex() : writing genesis block to disk failed");
if (!block.AddToBlockIndex(state, blockPos))
return error("LoadBlockIndex() : genesis block not accepted");
} catch(std::runtime_error &e) {
return error("LoadBlockIndex() : failed to initialize block database: %s", e.what());
}
}
return true;
}
void PrintBlockTree()
{
// pre-compute tree structure
map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
{
CBlockIndex* pindex = (*mi).second;
mapNext[pindex->pprev].push_back(pindex);
// test
//while (rand() % 3 == 0)
// mapNext[pindex->pprev].push_back(pindex);
}
vector<pair<int, CBlockIndex*> > vStack;
vStack.push_back(make_pair(0, pindexGenesisBlock));
int nPrevCol = 0;
while (!vStack.empty())
{
int nCol = vStack.back().first;
CBlockIndex* pindex = vStack.back().second;
vStack.pop_back();
// print split or gap
if (nCol > nPrevCol)
{
for (int i = 0; i < nCol-1; i++)
printf("| ");
printf("|\\\n");
}
else if (nCol < nPrevCol)
{
for (int i = 0; i < nCol; i++)
printf("| ");
printf("|\n");
}
nPrevCol = nCol;
// print columns
for (int i = 0; i < nCol; i++)
printf("| ");
// print item
CBlock block;
block.ReadFromDisk(pindex);
printf("%d (blk%05u.dat:0x%x) %s tx %"PRIszu"",
pindex->nHeight,
pindex->GetBlockPos().nFile, pindex->GetBlockPos().nPos,
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", block.GetBlockTime()).c_str(),
block.vtx.size());
PrintWallets(block);
// put the main time-chain first
vector<CBlockIndex*>& vNext = mapNext[pindex];
for (unsigned int i = 0; i < vNext.size(); i++)
{
if (vNext[i]->pnext)
{
swap(vNext[0], vNext[i]);
break;
}
}
// iterate children
for (unsigned int i = 0; i < vNext.size(); i++)
vStack.push_back(make_pair(nCol+i, vNext[i]));
}
}
bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp)
{
int64 nStart = GetTimeMillis();
int nLoaded = 0;
try {
CBufferedFile blkdat(fileIn, 2*MAX_BLOCK_SIZE, MAX_BLOCK_SIZE+8, SER_DISK, CLIENT_VERSION);
uint64 nStartByte = 0;
if (dbp) {
// (try to) skip already indexed part
CBlockFileInfo info;
if (pblocktree->ReadBlockFileInfo(dbp->nFile, info)) {
nStartByte = info.nSize;
blkdat.Seek(info.nSize);
}
}
uint64 nRewind = blkdat.GetPos();
while (blkdat.good() && !blkdat.eof()) {
boost::this_thread::interruption_point();
blkdat.SetPos(nRewind);
nRewind++; // start one byte further next time, in case of failure
blkdat.SetLimit(); // remove former limit
unsigned int nSize = 0;
try {
// locate a header
unsigned char buf[4];
blkdat.FindByte(pchMessageStart[0]);
nRewind = blkdat.GetPos()+1;
blkdat >> FLATDATA(buf);
if (memcmp(buf, pchMessageStart, 4))
continue;
// read size
blkdat >> nSize;
if (nSize < 80 || nSize > MAX_BLOCK_SIZE)
continue;
} catch (std::exception &e) {
// no valid block header found; don't complain
break;
}
try {
// read block
uint64 nBlockPos = blkdat.GetPos();
blkdat.SetLimit(nBlockPos + nSize);
CBlock block;
blkdat >> block;
nRewind = blkdat.GetPos();
// process block
if (nBlockPos >= nStartByte) {
LOCK(cs_main);
if (dbp)
dbp->nPos = nBlockPos;
CValidationState state;
if (ProcessBlock(state, NULL, &block, dbp))
nLoaded++;
if (state.IsError())
break;
}
} catch (std::exception &e) {
printf("%s() : Deserialize or I/O error caught during load\n", __PRETTY_FUNCTION__);
}
}
fclose(fileIn);
} catch(std::runtime_error &e) {
AbortNode(_("Error: system error: ") + e.what());
}
if (nLoaded > 0)
printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
return nLoaded > 0;
}
//////////////////////////////////////////////////////////////////////////////
//
// CAlert
//
extern map<uint256, CAlert> mapAlerts;
extern CCriticalSection cs_mapAlerts;
string GetWarnings(string strFor)
{
int nPriority = 0;
string strStatusBar;
string strRPC;
if (GetBoolArg("-testsafemode"))
strRPC = "test";
if (!CLIENT_VERSION_IS_RELEASE)
strStatusBar = _("This is a pre-release test build - use at your own risk - do not use for mining or merchant applications");
// Misc warnings like out of disk space and clock is wrong
if (strMiscWarning != "")
{
nPriority = 1000;
strStatusBar = strMiscWarning;
}
// Longer invalid proof-of-work chain
if (pindexBest && nBestInvalidWork > nBestChainWork + (pindexBest->GetBlockWork() * 6).getuint256())
{
nPriority = 2000;
strStatusBar = strRPC = _("Warning: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.");
}
// Alerts
{
LOCK(cs_mapAlerts);
BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
{
const CAlert& alert = item.second;
if (alert.AppliesToMe() && alert.nPriority > nPriority)
{
nPriority = alert.nPriority;
strStatusBar = alert.strStatusBar;
}
}
}
if (strFor == "statusbar")
return strStatusBar;
else if (strFor == "rpc")
return strRPC;
assert(!"GetWarnings() : invalid parameter");
return "error";
}
//////////////////////////////////////////////////////////////////////////////
//
// Messages
//
bool static AlreadyHave(const CInv& inv)
{
switch (inv.type)
{
case MSG_TX:
{
bool txInMap = false;
{
LOCK(mempool.cs);
txInMap = mempool.exists(inv.hash);
}
return txInMap || mapOrphanTransactions.count(inv.hash) ||
pcoinsTip->HaveCoins(inv.hash);
}
case MSG_BLOCK:
return mapBlockIndex.count(inv.hash) ||
mapOrphanBlocks.count(inv.hash);
}
// Don't know what it is, just say we already got one
return true;
}
// The message start string is designed to be unlikely to occur in normal data.
// The characters are rarely used upper ASCII, not valid as UTF-8, and produce
// a large 4-byte int at any alignment.
unsigned char pchMessageStart[4] = { 0x29, 0x3b, 0x7d, 0x81 }; // backspacebar: increase each by adding 2 to bitcoin's value.
void static ProcessGetData(CNode* pfrom)
{
std::deque<CInv>::iterator it = pfrom->vRecvGetData.begin();
vector<CInv> vNotFound;
while (it != pfrom->vRecvGetData.end()) {
// Don't bother if send buffer is too full to respond anyway
if (pfrom->nSendSize >= SendBufferSize())
break;
// Don't waste work on slow peers until they catch up on the blocks we
// give them. 80 bytes is just the size of a block header - obviously
// the minimum we might return.
if (pfrom->nBlocksRequested * 80 > pfrom->nSendBytes)
break;
const CInv &inv = *it;
{
boost::this_thread::interruption_point();
it++;
if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK)
{
bool send = true;
map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
pfrom->nBlocksRequested++;
if (mi != mapBlockIndex.end())
{
// If the requested block is at a height below our last
// checkpoint, only serve it if it's in the checkpointed chain
int nHeight = ((*mi).second)->nHeight;
CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex);
if (pcheckpoint && nHeight < pcheckpoint->nHeight) {
if (!((*mi).second)->IsInMainChain())
{
printf("ProcessGetData(): ignoring request for old block that isn't in the main chain\n");
send = false;
}
}
} else {
send = false;
}
if (send)
{
// Send block from disk
CBlock block;
block.ReadFromDisk((*mi).second);
if (inv.type == MSG_BLOCK)
pfrom->PushMessage("block", block);
else // MSG_FILTERED_BLOCK)
{
LOCK(pfrom->cs_filter);
if (pfrom->pfilter)
{
CMerkleBlock merkleBlock(block, *pfrom->pfilter);
pfrom->PushMessage("merkleblock", merkleBlock);
// CMerkleBlock just contains hashes, so also push any transactions in the block the client did not see
// This avoids hurting performance by pointlessly requiring a round-trip
// Note that there is currently no way for a node to request any single transactions we didnt send here -
// they must either disconnect and retry or request the full block.
// Thus, the protocol spec specified allows for us to provide duplicate txn here,
// however we MUST always provide at least what the remote peer needs
typedef std::pair<unsigned int, uint256> PairType;
BOOST_FOREACH(PairType& pair, merkleBlock.vMatchedTxn)
if (!pfrom->setInventoryKnown.count(CInv(MSG_TX, pair.second)))
pfrom->PushMessage("tx", block.vtx[pair.first]);
}
// else
// no response
}
// Trigger them to send a getblocks request for the next batch of inventory
if (inv.hash == pfrom->hashContinue)
{
// Bypass PushInventory, this must send even if redundant,
// and we want it right after the last block so they don't
// wait for other stuff first.
vector<CInv> vInv;
vInv.push_back(CInv(MSG_BLOCK, hashBestChain));
pfrom->PushMessage("inv", vInv);
pfrom->hashContinue = 0;
}
}
}
else if (inv.IsKnownType())
{
// Send stream from relay memory
bool pushed = false;
{
LOCK(cs_mapRelay);
map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
if (mi != mapRelay.end()) {
pfrom->PushMessage(inv.GetCommand(), (*mi).second);
pushed = true;
}
}
if (!pushed && inv.type == MSG_TX) {
LOCK(mempool.cs);
if (mempool.exists(inv.hash)) {
CTransaction tx = mempool.lookup(inv.hash);
CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
ss.reserve(1000);
ss << tx;
pfrom->PushMessage("tx", ss);
pushed = true;
}
}
if (!pushed) {
vNotFound.push_back(inv);
}
}
// Track requests for our stuff.
Inventory(inv.hash);
if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK)
break;
}
}
pfrom->vRecvGetData.erase(pfrom->vRecvGetData.begin(), it);
if (!vNotFound.empty()) {
// Let the peer know that we didn't find what it asked for, so it doesn't
// have to wait around forever. Currently only SPV clients actually care
// about this message: it's needed when they are recursively walking the
// dependencies of relevant unconfirmed transactions. SPV clients want to
// do that because they want to know about (and store and rebroadcast and
// risk analyze) the dependencies of transactions relevant to them, without
// having to download the entire memory pool.
pfrom->PushMessage("notfound", vNotFound);
}
}
bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
{
RandAddSeedPerfmon();
if (fDebug)
printf("received: %s (%"PRIszu" bytes)\n", strCommand.c_str(), vRecv.size());
if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
{
printf("dropmessagestest DROPPING RECV MESSAGE\n");
return true;
}
if (strCommand == "version")
{
// Each connection can only send one version message
if (pfrom->nVersion != 0)
{
pfrom->Misbehaving(1);
return false;
}
int64 nTime;
CAddress addrMe;
CAddress addrFrom;
uint64 nNonce = 1;
vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
if (pfrom->nVersion < MIN_PEER_PROTO_VERSION)
{
// disconnect from peers older than this proto version
printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
pfrom->fDisconnect = true;
return false;
}
if (pfrom->nVersion == 10300)
pfrom->nVersion = 300;
if (!vRecv.empty())
vRecv >> addrFrom >> nNonce;
if (!vRecv.empty()) {
vRecv >> pfrom->strSubVer;
pfrom->cleanSubVer = SanitizeString(pfrom->strSubVer);
}
if (!vRecv.empty())
vRecv >> pfrom->nStartingHeight;
if (!vRecv.empty())
vRecv >> pfrom->fRelayTxes; // set to true after we get the first filter* message
else
pfrom->fRelayTxes = true;
if (pfrom->fInbound && addrMe.IsRoutable())
{
pfrom->addrLocal = addrMe;
SeenLocal(addrMe);
}
// Disconnect if we connected to ourself
if (nNonce == nLocalHostNonce && nNonce > 1)
{
printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
pfrom->fDisconnect = true;
return true;
}
// Be shy and don't send version until we hear
if (pfrom->fInbound)
pfrom->PushVersion();
pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
AddTimeData(pfrom->addr, nTime);
// Change version
pfrom->PushMessage("verack");
pfrom->ssSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
if (!pfrom->fInbound)
{
// Advertise our address
if (!fNoListen && !IsInitialBlockDownload())
{
CAddress addr = GetLocalAddress(&pfrom->addr);
if (addr.IsRoutable())
pfrom->PushAddress(addr);
}
// Get recent addresses
if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000)
{
pfrom->PushMessage("getaddr");
pfrom->fGetAddr = true;
}
addrman.Good(pfrom->addr);
} else {
if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
{
addrman.Add(addrFrom, addrFrom);
addrman.Good(addrFrom);
}
}
// Relay alerts
{
LOCK(cs_mapAlerts);
BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
item.second.RelayTo(pfrom);
}
pfrom->fSuccessfullyConnected = true;
printf("receive version message: %s: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", pfrom->cleanSubVer.c_str(), pfrom->nVersion, pfrom->nStartingHeight, addrMe.ToString().c_str(), addrFrom.ToString().c_str(), pfrom->addr.ToString().c_str());
cPeerBlockCounts.input(pfrom->nStartingHeight);
}
else if (pfrom->nVersion == 0)
{
// Must have a version message before anything else
pfrom->Misbehaving(1);
return false;
}
else if (strCommand == "verack")
{
pfrom->SetRecvVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
}
else if (strCommand == "addr")
{
vector<CAddress> vAddr;
vRecv >> vAddr;
// Don't want addr from older versions unless seeding
if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000)
return true;
if (vAddr.size() > 1000)
{
pfrom->Misbehaving(20);
return error("message addr size() = %"PRIszu"", vAddr.size());
}
// Store the new addresses
vector<CAddress> vAddrOk;
int64 nNow = GetAdjustedTime();
int64 nSince = nNow - 10 * 60;
BOOST_FOREACH(CAddress& addr, vAddr)
{
boost::this_thread::interruption_point();
if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
addr.nTime = nNow - 5 * 24 * 60 * 60;
pfrom->AddAddressKnown(addr);
bool fReachable = IsReachable(addr);
if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
{
// Relay to a limited number of other nodes
{
LOCK(cs_vNodes);
// Use deterministic randomness to send to the same nodes for 24 hours
// at a time so the setAddrKnowns of the chosen nodes prevent repeats
static uint256 hashSalt;
if (hashSalt == 0)
hashSalt = GetRandHash();
uint64 hashAddr = addr.GetHash();
uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
hashRand = Hash(BEGIN(hashRand), END(hashRand));
multimap<uint256, CNode*> mapMix;
BOOST_FOREACH(CNode* pnode, vNodes)
{
if (pnode->nVersion < CADDR_TIME_VERSION)
continue;
unsigned int nPointer;
memcpy(&nPointer, &pnode, sizeof(nPointer));
uint256 hashKey = hashRand ^ nPointer;
hashKey = Hash(BEGIN(hashKey), END(hashKey));
mapMix.insert(make_pair(hashKey, pnode));
}
int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
((*mi).second)->PushAddress(addr);
}
}
// Do not store addresses outside our network
if (fReachable)
vAddrOk.push_back(addr);
}
addrman.Add(vAddrOk, pfrom->addr, 2 * 60 * 60);
if (vAddr.size() < 1000)
pfrom->fGetAddr = false;
if (pfrom->fOneShot)
pfrom->fDisconnect = true;
}
else if (strCommand == "inv")
{
vector<CInv> vInv;
vRecv >> vInv;
if (vInv.size() > MAX_INV_SZ)
{
pfrom->Misbehaving(20);
return error("message inv size() = %"PRIszu"", vInv.size());
}
// find last block in inv vector
unsigned int nLastBlock = (unsigned int)(-1);
for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) {
if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) {
nLastBlock = vInv.size() - 1 - nInv;
break;
}
}
for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
{
const CInv &inv = vInv[nInv];
boost::this_thread::interruption_point();
pfrom->AddInventoryKnown(inv);
bool fAlreadyHave = AlreadyHave(inv);
if (fDebug)
printf(" got inventory: %s %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
if (!fAlreadyHave) {
if (!fImporting && !fReindex)
pfrom->AskFor(inv);
} else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) {
pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
} else if (nInv == nLastBlock) {
// In case we are on a very long side-chain, it is possible that we already have
// the last block in an inv bundle sent in response to getblocks. Try to detect
// this situation and push another getblocks to continue.
pfrom->PushGetBlocks(mapBlockIndex[inv.hash], uint256(0));
if (fDebug)
printf("force request: %s\n", inv.ToString().c_str());
}
// Track requests for our stuff
Inventory(inv.hash);
if (pfrom->nSendSize > (SendBufferSize() * 2)) {
pfrom->Misbehaving(50);
return error("send buffer size() = %"PRIszu"", pfrom->nSendSize);
}
}
}
else if (strCommand == "getdata")
{
vector<CInv> vInv;
vRecv >> vInv;
if (vInv.size() > MAX_INV_SZ)
{
pfrom->Misbehaving(20);
return error("message getdata size() = %"PRIszu"", vInv.size());
}
if (fDebugNet || (vInv.size() != 1))
printf("received getdata (%"PRIszu" invsz)\n", vInv.size());
if ((fDebugNet && vInv.size() > 0) || (vInv.size() == 1))
printf("received getdata for: %s\n", vInv[0].ToString().c_str());
pfrom->vRecvGetData.insert(pfrom->vRecvGetData.end(), vInv.begin(), vInv.end());
ProcessGetData(pfrom);
}
else if (strCommand == "getblocks")
{
CBlockLocator locator;
uint256 hashStop;
vRecv >> locator >> hashStop;
// Find the last block the caller has in the main chain
CBlockIndex* pindex = locator.GetBlockIndex();
// Send the rest of the chain
if (pindex)
pindex = pindex->pnext;
int nLimit = 500;
printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().c_str(), nLimit);
for (; pindex; pindex = pindex->pnext)
{
if (pindex->GetBlockHash() == hashStop)
{
printf(" getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
break;
}
pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
if (--nLimit <= 0)
{
// When this block is requested, we'll send an inv that'll make them
// getblocks the next batch of inventory.
printf(" getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
pfrom->hashContinue = pindex->GetBlockHash();
break;
}
}
}
else if (strCommand == "getheaders")
{
CBlockLocator locator;
uint256 hashStop;
vRecv >> locator >> hashStop;
CBlockIndex* pindex = NULL;
if (locator.IsNull())
{
// If locator is null, return the hashStop block
map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
if (mi == mapBlockIndex.end())
return true;
pindex = (*mi).second;
}
else
{
// Find the last block the caller has in the main chain
pindex = locator.GetBlockIndex();
if (pindex)
pindex = pindex->pnext;
}
// we must use CBlocks, as CBlockHeaders won't include the 0x00 nTx count at the end
vector<CBlock> vHeaders;
int nLimit = 2000;
printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().c_str());
for (; pindex; pindex = pindex->pnext)
{
vHeaders.push_back(pindex->GetBlockHeader());
if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
break;
}
pfrom->PushMessage("headers", vHeaders);
}
else if (strCommand == "tx")
{
vector<uint256> vWorkQueue;
vector<uint256> vEraseQueue;
CDataStream vMsg(vRecv);
CTransaction tx;
vRecv >> tx;
CInv inv(MSG_TX, tx.GetHash());
pfrom->AddInventoryKnown(inv);
bool fMissingInputs = false;
CValidationState state;
if (tx.AcceptToMemoryPool(state, true, true, &fMissingInputs))
{
RelayTransaction(tx, inv.hash);
mapAlreadyAskedFor.erase(inv);
vWorkQueue.push_back(inv.hash);
vEraseQueue.push_back(inv.hash);
printf("AcceptToMemoryPool: %s %s : accepted %s (poolsz %"PRIszu")\n",
pfrom->addr.ToString().c_str(), pfrom->cleanSubVer.c_str(),
tx.GetHash().ToString().c_str(),
mempool.mapTx.size());
// Recursively process any orphan transactions that depended on this one
for (unsigned int i = 0; i < vWorkQueue.size(); i++)
{
map<uint256, set<uint256> >::iterator itByPrev = mapOrphanTransactionsByPrev.find(vWorkQueue[i]);
if (itByPrev == mapOrphanTransactionsByPrev.end())
continue;
for (set<uint256>::iterator mi = itByPrev->second.begin();
mi != itByPrev->second.end();
++mi)
{
const uint256& orphanHash = *mi;
const CTransaction& orphanTx = mapOrphanTransactions[orphanHash];
bool fMissingInputs2 = false;
// Use a dummy CValidationState so someone can't setup nodes to counter-DoS based on orphan
// resolution (that is, feeding people an invalid transaction based on LegitTxX in order to get
// anyone relaying LegitTxX banned)
CValidationState stateDummy;
if (tx.AcceptToMemoryPool(stateDummy, true, true, &fMissingInputs2))
{
printf(" accepted orphan tx %s\n", orphanHash.ToString().c_str());
RelayTransaction(orphanTx, orphanHash);
mapAlreadyAskedFor.erase(CInv(MSG_TX, orphanHash));
vWorkQueue.push_back(orphanHash);
vEraseQueue.push_back(orphanHash);
}
else if (!fMissingInputs2)
{
// invalid or too-little-fee orphan
vEraseQueue.push_back(orphanHash);
printf(" removed orphan tx %s\n", orphanHash.ToString().c_str());
}
}
}
BOOST_FOREACH(uint256 hash, vEraseQueue)
EraseOrphanTx(hash);
}
else if (fMissingInputs)
{
AddOrphanTx(tx);
// DoS prevention: do not allow mapOrphanTransactions to grow unbounded
unsigned int nMaxOrphanTx = (unsigned int)std::max((int64)0, GetArg("-maxorphantx", DEFAULT_MAX_ORPHAN_TRANSACTIONS));
unsigned int nEvicted = LimitOrphanTxSize(nMaxOrphanTx);
if (nEvicted > 0)
printf("mapOrphan overflow, removed %u tx\n", nEvicted);
}
int nDoS = 0;
if (state.IsInvalid(nDoS))
{
printf("%s from %s %s was not accepted into the memory pool\n", tx.GetHash().ToString().c_str(),
pfrom->addr.ToString().c_str(), pfrom->cleanSubVer.c_str());
if (nDoS > 0)
pfrom->Misbehaving(nDoS);
}
}
else if (strCommand == "block" && !fImporting && !fReindex) // Ignore blocks received while importing
{
CBlock block;
vRecv >> block;
printf("received block %s\n", block.GetHash().ToString().c_str());
// block.print();
CInv inv(MSG_BLOCK, block.GetHash());
pfrom->AddInventoryKnown(inv);
CValidationState state;
if (ProcessBlock(state, pfrom, &block) || state.CorruptionPossible())
mapAlreadyAskedFor.erase(inv);
int nDoS = 0;
if (state.IsInvalid(nDoS))
if (nDoS > 0)
pfrom->Misbehaving(nDoS);
}
else if (strCommand == "getaddr")
{
pfrom->vAddrToSend.clear();
vector<CAddress> vAddr = addrman.GetAddr();
BOOST_FOREACH(const CAddress &addr, vAddr)
pfrom->PushAddress(addr);
}
else if (strCommand == "mempool")
{
std::vector<uint256> vtxid;
LOCK2(mempool.cs, pfrom->cs_filter);
mempool.queryHashes(vtxid);
vector<CInv> vInv;
BOOST_FOREACH(uint256& hash, vtxid) {
CInv inv(MSG_TX, hash);
if ((pfrom->pfilter && pfrom->pfilter->IsRelevantAndUpdate(mempool.lookup(hash), hash)) ||
(!pfrom->pfilter))
vInv.push_back(inv);
if (vInv.size() == MAX_INV_SZ)
break;
}
if (vInv.size() > 0)
pfrom->PushMessage("inv", vInv);
}
else if (strCommand == "ping")
{
if (pfrom->nVersion > BIP0031_VERSION)
{
uint64 nonce = 0;
vRecv >> nonce;
// Echo the message back with the nonce. This allows for two useful features:
//
// 1) A remote node can quickly check if the connection is operational
// 2) Remote nodes can measure the latency of the network thread. If this node
// is overloaded it won't respond to pings quickly and the remote node can
// avoid sending us more work, like chain download requests.
//
// The nonce stops the remote getting confused between different pings: without
// it, if the remote node sends a ping once per second and this node takes 5
// seconds to respond to each, the 5th ping the remote sends would appear to
// return very quickly.
pfrom->PushMessage("pong", nonce);
}
}
else if (strCommand == "alert")
{
CAlert alert;
vRecv >> alert;
uint256 alertHash = alert.GetHash();
if (pfrom->setKnown.count(alertHash) == 0)
{
if (alert.ProcessAlert())
{
// Relay
pfrom->setKnown.insert(alertHash);
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
alert.RelayTo(pnode);
}
}
else {
// Small DoS penalty so peers that send us lots of
// duplicate/expired/invalid-signature/whatever alerts
// eventually get banned.
// This isn't a Misbehaving(100) (immediate ban) because the
// peer might be an older or different implementation with
// a different signature key, etc.
pfrom->Misbehaving(10);
}
}
}
else if (!fBloomFilters &&
(strCommand == "filterload" ||
strCommand == "filteradd" ||
strCommand == "filterclear"))
{
pfrom->CloseSocketDisconnect();
return error("peer %s attempted to set a bloom filter even though we do not advertise that service",
pfrom->addr.ToString().c_str());
}
else if (strCommand == "filterload")
{
CBloomFilter filter;
vRecv >> filter;
if (!filter.IsWithinSizeConstraints())
// There is no excuse for sending a too-large filter
pfrom->Misbehaving(100);
else
{
LOCK(pfrom->cs_filter);
delete pfrom->pfilter;
pfrom->pfilter = new CBloomFilter(filter);
pfrom->pfilter->UpdateEmptyFull();
}
pfrom->fRelayTxes = true;
}
else if (strCommand == "filteradd")
{
vector<unsigned char> vData;
vRecv >> vData;
// Nodes must NEVER send a data item > 520 bytes (the max size for a script data object,
// and thus, the maximum size any matched object can have) in a filteradd message
if (vData.size() > MAX_SCRIPT_ELEMENT_SIZE)
{
pfrom->Misbehaving(100);
} else {
LOCK(pfrom->cs_filter);
if (pfrom->pfilter)
pfrom->pfilter->insert(vData);
else
pfrom->Misbehaving(100);
}
}
else if (strCommand == "filterclear")
{
LOCK(pfrom->cs_filter);
delete pfrom->pfilter;
pfrom->pfilter = new CBloomFilter();
pfrom->fRelayTxes = true;
}
else
{
// Ignore unknown commands for extensibility
}
// Update the last seen time for this node's address
if (pfrom->fNetworkNode)
if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
AddressCurrentlyConnected(pfrom->addr);
return true;
}
// requires LOCK(cs_vRecvMsg)
bool ProcessMessages(CNode* pfrom)
{
//if (fDebug)
// printf("ProcessMessages(%zu messages)\n", pfrom->vRecvMsg.size());
//
// Message format
// (4) message start
// (12) command
// (4) size
// (4) checksum
// (x) data
//
bool fOk = true;
if (!pfrom->vRecvGetData.empty())
ProcessGetData(pfrom);
// this maintains the order of responses
if (!pfrom->vRecvGetData.empty()) return fOk;
std::deque<CNetMessage>::iterator it = pfrom->vRecvMsg.begin();
while (!pfrom->fDisconnect && it != pfrom->vRecvMsg.end()) {
// Don't bother if send buffer is too full to respond anyway
if (pfrom->nSendSize >= SendBufferSize())
break;
// get next message
CNetMessage& msg = *it;
//if (fDebug)
// printf("ProcessMessages(message %u msgsz, %zu bytes, complete:%s)\n",
// msg.hdr.nMessageSize, msg.vRecv.size(),
// msg.complete() ? "Y" : "N");
// end, if an incomplete message is found
if (!msg.complete())
break;
// at this point, any failure means we can delete the current message
it++;
// Scan for message start
if (memcmp(msg.hdr.pchMessageStart, pchMessageStart, sizeof(pchMessageStart)) != 0) {
printf("\n\nPROCESSMESSAGE: INVALID MESSAGESTART\n\n");
fOk = false;
break;
}
// Read header
CMessageHeader& hdr = msg.hdr;
if (!hdr.IsValid())
{
printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
continue;
}
string strCommand = hdr.GetCommand();
// Message size
unsigned int nMessageSize = hdr.nMessageSize;
// Checksum
CDataStream& vRecv = msg.vRecv;
uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
unsigned int nChecksum = 0;
memcpy(&nChecksum, &hash, sizeof(nChecksum));
if (nChecksum != hdr.nChecksum)
{
printf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
continue;
}
// Process message
bool fRet = false;
try
{
{
LOCK(cs_main);
fRet = ProcessMessage(pfrom, strCommand, vRecv);
}
boost::this_thread::interruption_point();
}
catch (std::ios_base::failure& e)
{
if (strstr(e.what(), "end of data"))
{
// Allow exceptions from under-length message on vRecv
printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what());
}
else if (strstr(e.what(), "size too large"))
{
// Allow exceptions from over-long size
printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
}
else
{
PrintExceptionContinue(&e, "ProcessMessages()");
}
}
catch (boost::thread_interrupted) {
throw;
}
catch (std::exception& e) {
PrintExceptionContinue(&e, "ProcessMessages()");
} catch (...) {
PrintExceptionContinue(NULL, "ProcessMessages()");
}
if (!fRet)
printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
break;
}
// In case the connection got shut down, its receive buffer was wiped
if (!pfrom->fDisconnect)
pfrom->vRecvMsg.erase(pfrom->vRecvMsg.begin(), it);
return fOk;
}
bool SendMessages(CNode* pto, bool fSendTrickle)
{
TRY_LOCK(cs_main, lockMain);
if (lockMain) {
// Don't send anything until we get their version message
if (pto->nVersion == 0)
return true;
// Keep-alive ping. We send a nonce of zero because we don't use it anywhere
// right now.
if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSendMsg.empty()) {
uint64 nonce = 0;
if (pto->nVersion > BIP0031_VERSION)
pto->PushMessage("ping", nonce);
else
pto->PushMessage("ping");
}
// Start block sync
if (pto->fStartSync && !fImporting && !fReindex) {
pto->fStartSync = false;
pto->PushGetBlocks(pindexBest, uint256(0));
}
// Resend wallet transactions that haven't gotten in a block yet
// Except during reindex, importing and IBD, when old wallet
// transactions become unconfirmed and spams other nodes.
if (!fReindex && !fImporting && !IsInitialBlockDownload())
{
ResendWalletTransactions();
}
// Address refresh broadcast
static int64 nLastRebroadcast;
if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
{
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
{
// Periodically clear setAddrKnown to allow refresh broadcasts
if (nLastRebroadcast)
pnode->setAddrKnown.clear();
// Rebroadcast our address
if (!fNoListen)
{
CAddress addr = GetLocalAddress(&pnode->addr);
if (addr.IsRoutable())
pnode->PushAddress(addr);
}
}
}
nLastRebroadcast = GetTime();
}
//
// Message: addr
//
if (fSendTrickle)
{
vector<CAddress> vAddr;
vAddr.reserve(pto->vAddrToSend.size());
BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
{
// returns true if wasn't already contained in the set
if (pto->setAddrKnown.insert(addr).second)
{
vAddr.push_back(addr);
// receiver rejects addr messages larger than 1000
if (vAddr.size() >= 1000)
{
pto->PushMessage("addr", vAddr);
vAddr.clear();
}
}
}
pto->vAddrToSend.clear();
if (!vAddr.empty())
pto->PushMessage("addr", vAddr);
}
//
// Message: inventory
//
vector<CInv> vInv;
vector<CInv> vInvWait;
{
LOCK(pto->cs_inventory);
vInv.reserve(pto->vInventoryToSend.size());
vInvWait.reserve(pto->vInventoryToSend.size());
BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
{
if (pto->setInventoryKnown.count(inv))
continue;
// trickle out tx inv to protect privacy
if (inv.type == MSG_TX && !fSendTrickle)
{
// 1/4 of tx invs blast to all immediately
static uint256 hashSalt;
if (hashSalt == 0)
hashSalt = GetRandHash();
uint256 hashRand = inv.hash ^ hashSalt;
hashRand = Hash(BEGIN(hashRand), END(hashRand));
bool fTrickleWait = ((hashRand & 3) != 0);
// always trickle our own transactions
if (!fTrickleWait)
{
CWalletTx wtx;
if (GetTransaction(inv.hash, wtx))
if (wtx.fFromMe)
fTrickleWait = true;
}
if (fTrickleWait)
{
vInvWait.push_back(inv);
continue;
}
}
// returns true if wasn't already contained in the set
if (pto->setInventoryKnown.insert(inv).second)
{
vInv.push_back(inv);
if (vInv.size() >= 1000)
{
pto->PushMessage("inv", vInv);
vInv.clear();
}
}
}
pto->vInventoryToSend = vInvWait;
}
if (!vInv.empty())
pto->PushMessage("inv", vInv);
//
// Message: getdata
//
vector<CInv> vGetData;
int64 nNow = GetTime() * 1000000;
while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
{
const CInv& inv = (*pto->mapAskFor.begin()).second;
if (!AlreadyHave(inv))
{
if (fDebugNet)
printf("sending getdata: %s\n", inv.ToString().c_str());
vGetData.push_back(inv);
if (vGetData.size() >= 1000)
{
pto->PushMessage("getdata", vGetData);
vGetData.clear();
}
}
pto->mapAskFor.erase(pto->mapAskFor.begin());
}
if (!vGetData.empty())
pto->PushMessage("getdata", vGetData);
}
return true;
}
//////////////////////////////////////////////////////////////////////////////
//
// backspacebarMiner
//
int static FormatHashBlocks(void* pbuffer, unsigned int len)
{
unsigned char* pdata = (unsigned char*)pbuffer;
unsigned int blocks = 1 + ((len + 8) / 64);
unsigned char* pend = pdata + 64 * blocks;
memset(pdata + len, 0, 64 * blocks - len);
pdata[len] = 0x80;
unsigned int bits = len * 8;
pend[-1] = (bits >> 0) & 0xff;
pend[-2] = (bits >> 8) & 0xff;
pend[-3] = (bits >> 16) & 0xff;
pend[-4] = (bits >> 24) & 0xff;
return blocks;
}
static const unsigned int pSHA256InitState[8] =
{0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
void SHA256Transform(void* pstate, void* pinput, const void* pinit)
{
SHA256_CTX ctx;
unsigned char data[64];
SHA256_Init(&ctx);
for (int i = 0; i < 16; i++)
((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
for (int i = 0; i < 8; i++)
ctx.h[i] = ((uint32_t*)pinit)[i];
SHA256_Update(&ctx, data, sizeof(data));
for (int i = 0; i < 8; i++)
((uint32_t*)pstate)[i] = ctx.h[i];
}
// Some explaining would be appreciated
class COrphan
{
public:
CTransaction* ptx;
set<uint256> setDependsOn;
double dPriority;
double dFeePerKb;
COrphan(CTransaction* ptxIn)
{
ptx = ptxIn;
dPriority = dFeePerKb = 0;
}
void print() const
{
printf("COrphan(hash=%s, dPriority=%.1f, dFeePerKb=%.1f)\n",
ptx->GetHash().ToString().c_str(), dPriority, dFeePerKb);
BOOST_FOREACH(uint256 hash, setDependsOn)
printf(" setDependsOn %s\n", hash.ToString().c_str());
}
};
uint64 nLastBlockTx = 0;
uint64 nLastBlockSize = 0;
// We want to sort transactions by priority and fee, so:
typedef boost::tuple<double, double, CTransaction*> TxPriority;
class TxPriorityCompare
{
bool byFee;
public:
TxPriorityCompare(bool _byFee) : byFee(_byFee) { }
bool operator()(const TxPriority& a, const TxPriority& b)
{
if (byFee)
{
if (a.get<1>() == b.get<1>())
return a.get<0>() < b.get<0>();
return a.get<1>() < b.get<1>();
}
else
{
if (a.get<0>() == b.get<0>())
return a.get<1>() < b.get<1>();
return a.get<0>() < b.get<0>();
}
}
};
CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn)
{
// Create new block
auto_ptr<CBlockTemplate> pblocktemplate(new CBlockTemplate());
if(!pblocktemplate.get())
return NULL;
CBlock *pblock = &pblocktemplate->block; // pointer for convenience
// Create coinbase tx
CTransaction txNew;
txNew.vin.resize(1);
txNew.vin[0].prevout.SetNull();
txNew.vout.resize(1);
txNew.vout[0].scriptPubKey = scriptPubKeyIn;
// Add our coinbase tx as first transaction
pblock->vtx.push_back(txNew);
pblocktemplate->vTxFees.push_back(-1); // updated at end
pblocktemplate->vTxSigOps.push_back(-1); // updated at end
// Largest block you're willing to create:
unsigned int nBlockMaxSize = GetArg("-blockmaxsize", DEFAULT_BLOCK_MAX_SIZE);
// Limit to betweeen 1K and MAX_BLOCK_SIZE-1K for sanity:
nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize));
// How much of the block should be dedicated to high-priority transactions,
// included regardless of the fees they pay
unsigned int nBlockPrioritySize = GetArg("-blockprioritysize", DEFAULT_BLOCK_PRIORITY_SIZE);
nBlockPrioritySize = std::min(nBlockMaxSize, nBlockPrioritySize);
// Minimum block size you want to create; block will be filled with free transactions
// until there are no more or the block reaches this size:
unsigned int nBlockMinSize = GetArg("-blockminsize", 0);
nBlockMinSize = std::min(nBlockMaxSize, nBlockMinSize);
// Collect memory pool transactions into the block
int64 nFees = 0;
{
LOCK2(cs_main, mempool.cs);
CBlockIndex* pindexPrev = pindexBest;
CCoinsViewCache view(*pcoinsTip, true);
// Priority order to process transactions
list<COrphan> vOrphan; // list memory doesn't move
map<uint256, vector<COrphan*> > mapDependers;
bool fPrintPriority = GetBoolArg("-printpriority");
// This vector will be sorted into a priority queue:
vector<TxPriority> vecPriority;
vecPriority.reserve(mempool.mapTx.size());
for (map<uint256, CTransaction>::iterator mi = mempool.mapTx.begin(); mi != mempool.mapTx.end(); ++mi)
{
CTransaction& tx = (*mi).second;
if (tx.IsCoinBase() || !tx.IsFinal())
continue;
COrphan* porphan = NULL;
double dPriority = 0;
int64 nTotalIn = 0;
bool fMissingInputs = false;
BOOST_FOREACH(const CTxIn& txin, tx.vin)
{
// Read prev transaction
if (!view.HaveCoins(txin.prevout.hash))
{
// This should never happen; all transactions in the memory
// pool should connect to either transactions in the chain
// or other transactions in the memory pool.
if (!mempool.mapTx.count(txin.prevout.hash))
{
printf("ERROR: mempool transaction missing input\n");
if (fDebug) assert("mempool transaction missing input" == 0);
fMissingInputs = true;
if (porphan)
vOrphan.pop_back();
break;
}
// Has to wait for dependencies
if (!porphan)
{
// Use list for automatic deletion
vOrphan.push_back(COrphan(&tx));
porphan = &vOrphan.back();
}
mapDependers[txin.prevout.hash].push_back(porphan);
porphan->setDependsOn.insert(txin.prevout.hash);
nTotalIn += mempool.mapTx[txin.prevout.hash].vout[txin.prevout.n].nValue;
continue;
}
const CCoins &coins = view.GetCoins(txin.prevout.hash);
int64 nValueIn = coins.vout[txin.prevout.n].nValue;
nTotalIn += nValueIn;
int nConf = pindexPrev->nHeight - coins.nHeight + 1;
dPriority += (double)nValueIn * nConf;
}
if (fMissingInputs) continue;
// Priority is sum(valuein * age) / txsize
unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
dPriority /= nTxSize;
// This is a more accurate fee-per-kilobyte than is used by the client code, because the
// client code rounds up the size to the nearest 1K. That's good, because it gives an
// incentive to create smaller transactions.
double dFeePerKb = double(nTotalIn-tx.GetValueOut()) / (double(nTxSize)/1000.0);
if (porphan)
{
porphan->dPriority = dPriority;
porphan->dFeePerKb = dFeePerKb;
}
else
vecPriority.push_back(TxPriority(dPriority, dFeePerKb, &(*mi).second));
}
// Collect transactions into block
uint64 nBlockSize = 1000;
uint64 nBlockTx = 0;
int nBlockSigOps = 100;
bool fSortedByFee = (nBlockPrioritySize <= 0);
TxPriorityCompare comparer(fSortedByFee);
std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
while (!vecPriority.empty())
{
// Take highest priority transaction off the priority queue:
double dPriority = vecPriority.front().get<0>();
double dFeePerKb = vecPriority.front().get<1>();
CTransaction& tx = *(vecPriority.front().get<2>());
std::pop_heap(vecPriority.begin(), vecPriority.end(), comparer);
vecPriority.pop_back();
// Size limits
unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
if (nBlockSize + nTxSize >= nBlockMaxSize)
continue;
// Legacy limits on sigOps:
unsigned int nTxSigOps = tx.GetLegacySigOpCount();
if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
continue;
// Skip free transactions if we're past the minimum block size:
if (fSortedByFee && (dFeePerKb < CTransaction::nMinTxFee) && (nBlockSize + nTxSize >= nBlockMinSize))
continue;
// Prioritize by fee once past the priority size or we run out of high-priority
// transactions:
if (!fSortedByFee &&
((nBlockSize + nTxSize >= nBlockPrioritySize) || (dPriority < COIN * 576 / 250)))
{
fSortedByFee = true;
comparer = TxPriorityCompare(fSortedByFee);
std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
}
if (!tx.HaveInputs(view))
continue;
int64 nTxFees = tx.GetValueIn(view)-tx.GetValueOut();
nTxSigOps += tx.GetP2SHSigOpCount(view);
if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
continue;
CValidationState state;
if (!tx.CheckInputs(state, view, true, SCRIPT_VERIFY_P2SH))
continue;
CTxUndo txundo;
uint256 hash = tx.GetHash();
tx.UpdateCoins(state, view, txundo, pindexPrev->nHeight+1, hash);
// Added
pblock->vtx.push_back(tx);
pblocktemplate->vTxFees.push_back(nTxFees);
pblocktemplate->vTxSigOps.push_back(nTxSigOps);
nBlockSize += nTxSize;
++nBlockTx;
nBlockSigOps += nTxSigOps;
nFees += nTxFees;
if (fPrintPriority)
{
printf("priority %.1f feeperkb %.1f txid %s\n",
dPriority, dFeePerKb, tx.GetHash().ToString().c_str());
}
// Add transactions that depend on this one to the priority queue
if (mapDependers.count(hash))
{
BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
{
if (!porphan->setDependsOn.empty())
{
porphan->setDependsOn.erase(hash);
if (porphan->setDependsOn.empty())
{
vecPriority.push_back(TxPriority(porphan->dPriority, porphan->dFeePerKb, porphan->ptx));
std::push_heap(vecPriority.begin(), vecPriority.end(), comparer);
}
}
}
}
}
nLastBlockTx = nBlockTx;
nLastBlockSize = nBlockSize;
printf("CreateNewBlock(): total size %"PRI64u"\n", nBlockSize);
pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees);
pblocktemplate->vTxFees[0] = -nFees;
// Fill in header
pblock->hashPrevBlock = pindexPrev->GetBlockHash();
pblock->UpdateTime(pindexPrev);
pblock->nBits = GetNextWorkRequired(pindexPrev, pblock);
pblock->nNonce = 0;
pblock->vtx[0].vin[0].scriptSig = CScript() << OP_0 << OP_0;
pblocktemplate->vTxSigOps[0] = pblock->vtx[0].GetLegacySigOpCount();
CBlockIndex indexDummy(*pblock);
indexDummy.pprev = pindexPrev;
indexDummy.nHeight = pindexPrev->nHeight + 1;
CCoinsViewCache viewNew(*pcoinsTip, true);
CValidationState state;
if (!pblock->ConnectBlock(state, &indexDummy, viewNew, true))
throw std::runtime_error("CreateNewBlock() : ConnectBlock failed");
}
return pblocktemplate.release();
}
CBlockTemplate* CreateNewBlockWithKey(CReserveKey& reservekey)
{
CPubKey pubkey;
if (!reservekey.GetReservedKey(pubkey))
return NULL;
CScript scriptPubKey = CScript() << pubkey << OP_CHECKSIG;
return CreateNewBlock(scriptPubKey);
}
void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
{
// Update nExtraNonce
static uint256 hashPrevBlock;
if (hashPrevBlock != pblock->hashPrevBlock)
{
nExtraNonce = 0;
hashPrevBlock = pblock->hashPrevBlock;
}
++nExtraNonce;
unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2
pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
pblock->hashMerkleRoot = pblock->BuildMerkleTree();
}
void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
{
//
// Pre-build hash buffers
//
struct
{
struct unnamed2
{
int nVersion;
uint256 hashPrevBlock;
uint256 hashMerkleRoot;
unsigned int nTime;
unsigned int nBits;
unsigned int nNonce;
}
block;
unsigned char pchPadding0[64];
uint256 hash1;
unsigned char pchPadding1[64];
}
tmp;
memset(&tmp, 0, sizeof(tmp));
tmp.block.nVersion = pblock->nVersion;
tmp.block.hashPrevBlock = pblock->hashPrevBlock;
tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
tmp.block.nTime = pblock->nTime;
tmp.block.nBits = pblock->nBits;
tmp.block.nNonce = pblock->nNonce;
FormatHashBlocks(&tmp.block, sizeof(tmp.block));
FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
// Byte swap all the input buffer
for (unsigned int i = 0; i < sizeof(tmp)/4; i++)
((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
// Precalc the first half of the first hash, which stays constant
SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
memcpy(pdata, &tmp.block, 128);
memcpy(phash1, &tmp.hash1, 64);
}
bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
{
uint256 hash = pblock->GetPoWHash();
uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
if (hash > hashTarget)
return false;
//// debug print
printf("backspacebarMiner:\n");
printf("proof-of-work found \n hash: %s \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
pblock->print();
printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
// Found a solution
{
LOCK(cs_main);
if (pblock->hashPrevBlock != hashBestChain)
return error("backspacebarMiner : generated block is stale");
// Remove key from key pool
reservekey.KeepKey();
// Track how many getdata requests this block gets
{
LOCK(wallet.cs_wallet);
wallet.mapRequestCount[pblock->GetHash()] = 0;
}
// Process this block the same as if we had received it from another node
CValidationState state;
if (!ProcessBlock(state, NULL, pblock))
return error("backspacebarMiner : ProcessBlock, block not accepted");
}
return true;
}
void static backspacebarMiner(CWallet *pwallet)
{
printf("backspacebarMiner started\n");
SetThreadPriority(THREAD_PRIORITY_LOWEST);
RenameThread("backspacebar-miner");
// Each thread has its own key and counter
CReserveKey reservekey(pwallet);
unsigned int nExtraNonce = 0;
try { loop {
while (vNodes.empty())
MilliSleep(1000);
//
// Create new block
//
unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
CBlockIndex* pindexPrev = pindexBest;
auto_ptr<CBlockTemplate> pblocktemplate(CreateNewBlockWithKey(reservekey));
if (!pblocktemplate.get())
return;
CBlock *pblock = &pblocktemplate->block;
IncrementExtraNonce(pblock, pindexPrev, nExtraNonce);
printf("Running backspacebarMiner with %"PRIszu" transactions in block (%u bytes)\n", pblock->vtx.size(),
::GetSerializeSize(*pblock, SER_NETWORK, PROTOCOL_VERSION));
//
// Pre-build hash buffers
//
char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
char pdatabuf[128+16]; char* pdata = alignup<16>(pdatabuf);
char phash1buf[64+16]; char* phash1 = alignup<16>(phash1buf);
FormatHashBuffers(pblock, pmidstate, pdata, phash1);
unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
unsigned int& nBlockBits = *(unsigned int*)(pdata + 64 + 8);
//unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
//
// Search
//
int64 nStart = GetTime();
uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
loop
{
unsigned int nHashesDone = 0;
uint256 thash;
char scratchpad[SCRYPT_SCRATCHPAD_SIZE];
loop
{
scrypt_1024_1_1_256_sp(BEGIN(pblock->nVersion), BEGIN(thash), scratchpad);
if (thash <= hashTarget)
{
// Found a solution
SetThreadPriority(THREAD_PRIORITY_NORMAL);
CheckWork(pblock, *pwallet, reservekey);
SetThreadPriority(THREAD_PRIORITY_LOWEST);
break;
}
pblock->nNonce += 1;
nHashesDone += 1;
if ((pblock->nNonce & 0xFF) == 0)
break;
}
// Meter hashes/sec
static int64 nHashCounter;
if (nHPSTimerStart == 0)
{
nHPSTimerStart = GetTimeMillis();
nHashCounter = 0;
}
else
nHashCounter += nHashesDone;
if (GetTimeMillis() - nHPSTimerStart > 4000)
{
static CCriticalSection cs;
{
LOCK(cs);
if (GetTimeMillis() - nHPSTimerStart > 4000)
{
dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
nHPSTimerStart = GetTimeMillis();
nHashCounter = 0;
static int64 nLogTime;
if (GetTime() - nLogTime > 30 * 60)
{
nLogTime = GetTime();
printf("hashmeter %6.0f khash/s\n", dHashesPerSec/1000.0);
}
}
}
}
// Check for stop or if block needs to be rebuilt
boost::this_thread::interruption_point();
if (vNodes.empty())
break;
if (pblock->nNonce >= 0xffff0000)
break;
if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
break;
if (pindexPrev != pindexBest)
break;
// Update nTime every few seconds
pblock->UpdateTime(pindexPrev);
nBlockTime = ByteReverse(pblock->nTime);
if (fTestNet)
{
// Changing pblock->nTime can change work required on testnet:
nBlockBits = ByteReverse(pblock->nBits);
hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
}
}
} }
catch (boost::thread_interrupted)
{
printf("backspacebarMiner terminated\n");
throw;
}
}
void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
{
static boost::thread_group* minerThreads = NULL;
int nThreads = GetArg("-genproclimit", -1);
if (nThreads < 0)
nThreads = boost::thread::hardware_concurrency();
if (minerThreads != NULL)
{
minerThreads->interrupt_all();
delete minerThreads;
minerThreads = NULL;
}
if (nThreads == 0 || !fGenerate)
return;
minerThreads = new boost::thread_group();
for (int i = 0; i < nThreads; i++)
minerThreads->create_thread(boost::bind(&backspacebarMiner, pwallet));
}
// Amount compression:
// * If the amount is 0, output 0
// * first, divide the amount (in base units) by the largest power of 10 possible; call the exponent e (e is max 9)
// * if e<9, the last digit of the resulting number cannot be 0; store it as d, and drop it (divide by 10)
// * call the result n
// * output 1 + 10*(9*n + d - 1) + e
// * if e==9, we only know the resulting number is not zero, so output 1 + 10*(n - 1) + 9
// (this is decodable, as d is in [1-9] and e is in [0-9])
uint64 CTxOutCompressor::CompressAmount(uint64 n)
{
if (n == 0)
return 0;
int e = 0;
while (((n % 10) == 0) && e < 9) {
n /= 10;
e++;
}
if (e < 9) {
int d = (n % 10);
assert(d >= 1 && d <= 9);
n /= 10;
return 1 + (n*9 + d - 1)*10 + e;
} else {
return 1 + (n - 1)*10 + 9;
}
}
uint64 CTxOutCompressor::DecompressAmount(uint64 x)
{
// x = 0 OR x = 1+10*(9*n + d - 1) + e OR x = 1+10*(n - 1) + 9
if (x == 0)
return 0;
x--;
// x = 10*(9*n + d - 1) + e
int e = x % 10;
x /= 10;
uint64 n = 0;
if (e < 9) {
// x = 9*n + d - 1
int d = (x % 9) + 1;
x /= 9;
// x = n
n = x*10 + d;
} else {
n = x+1;
}
while (e) {
n *= 10;
e--;
}
return n;
}
class CMainCleanup
{
public:
CMainCleanup() {}
~CMainCleanup() {
// block headers
std::map<uint256, CBlockIndex*>::iterator it1 = mapBlockIndex.begin();
for (; it1 != mapBlockIndex.end(); it1++)
delete (*it1).second;
mapBlockIndex.clear();
// orphan blocks
std::map<uint256, CBlock*>::iterator it2 = mapOrphanBlocks.begin();
for (; it2 != mapOrphanBlocks.end(); it2++)
delete (*it2).second;
mapOrphanBlocks.clear();
// orphan transactions
mapOrphanTransactions.clear();
}
} instance_of_cmaincleanup;
| [
"skippagroup19@gmail.com"
] | skippagroup19@gmail.com |
36d621dd1e630a7a469168c2ba4eddce1d6f00ef | fe28250f9b9a7eacde867976d43be0b86d64acfc | /9960/coolant/p_rgh | 4bba76d66f087ad808b4501b67296948551d2abd | [] | no_license | vitorvas/teste2 | d179705e27fc070644a5e44d5b2fcef976504200 | 5f8c9ff21d48d6fb5ed7ef503a0601dac1bcf924 | refs/heads/master | 2021-01-09T20:17:09.115079 | 2016-07-21T20:07:21 | 2016-07-21T20:07:21 | 63,899,410 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 895,370 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.x |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "9960/coolant";
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
109760
(
5.25231
4.64044
4.31255
4.10467
3.92168
3.75369
3.59934
3.45424
3.31524
3.18065
3.04936
2.92047
2.79328
2.66723
2.5419
2.41697
2.29224
2.16757
2.04287
1.91813
1.79334
1.66853
1.54373
1.41898
1.29432
1.16979
1.04542
0.921259
0.797321
0.673669
0.550296
0.427315
0.304628
0.182421
0.0628353
5.33219
4.59389
4.30281
4.09906
3.91744
3.75116
3.59763
3.45284
3.314
3.17951
3.04829
2.91945
2.79231
2.6663
2.54102
2.41614
2.29145
2.16682
2.04216
1.91745
1.7927
1.66791
1.54314
1.41841
1.29378
1.16927
1.04493
0.92078
0.79686
0.673224
0.549855
0.426883
0.304139
0.181988
0.0612986
5.54502
4.51754
4.28107
4.08646
3.90737
3.74428
3.59267
3.44901
3.31104
3.17727
3.04667
2.91837
2.79168
2.66604
2.54103
2.41635
2.29178
2.1672
2.04256
1.91783
1.79303
1.6682
1.54337
1.41859
1.2939
1.16935
1.04496
0.920787
0.796842
0.673196
0.549802
0.426856
0.303784
0.182324
0.0551134
5.38628
4.56443
4.29794
4.09538
3.91494
3.74933
3.59608
3.45147
3.31278
3.17843
3.04732
2.91858
2.79152
2.66559
2.54037
2.41554
2.2909
2.16631
2.04169
1.91702
1.79229
1.66753
1.54278
1.41808
1.29346
1.16897
1.04464
0.920514
0.796615
0.672997
0.549639
0.426662
0.303919
0.181716
0.0613927
5.46852
4.54128
4.28882
4.0906
3.9111
3.74667
3.5942
3.45005
3.3117
3.17761
3.04671
2.91815
2.79123
2.66541
2.54027
2.41551
2.29091
2.16635
2.04174
1.91707
1.79234
1.66758
1.54282
1.41811
1.29348
1.16898
1.04464
0.920504
0.796592
0.672967
0.549603
0.426646
0.303799
0.181887
0.0587057
5.32082
4.59861
4.30417
4.09955
3.91798
3.75154
3.59791
3.45309
3.31422
3.17972
3.04847
2.91961
2.79244
2.66642
2.54112
2.41623
2.29153
2.16689
2.04223
1.91752
1.79276
1.66798
1.5432
1.41848
1.29384
1.16934
1.04499
0.920848
0.796929
0.673296
0.549935
0.426963
0.304249
0.182032
0.0619805
5.17022
4.68691
4.324
4.11007
3.92694
3.75682
3.60127
3.4557
3.31639
3.18158
3.05014
2.92115
2.79389
2.66781
2.54246
2.41754
2.29283
2.16818
2.04352
1.91881
1.79405
1.66927
1.5445
1.41978
1.29515
1.17065
1.04631
0.922171
0.79826
0.674627
0.551282
0.428312
0.305703
0.183624
0.0656118
5.36356
4.58258
4.29829
4.09667
3.91557
3.74986
3.59666
3.45206
3.31335
3.17898
3.04785
2.91909
2.79202
2.66606
2.54082
2.41598
2.29131
2.1667
2.04206
1.91736
1.7926
1.66782
1.54305
1.41833
1.29369
1.16918
1.04484
0.920695
0.796776
0.673142
0.549774
0.426807
0.304025
0.181987
0.0601178
5.20011
4.67099
4.31938
4.10813
3.92492
3.7556
3.60052
3.45514
3.31595
3.18123
3.04985
2.92091
2.79369
2.66764
2.54231
2.4174
2.2927
2.16806
2.04339
1.91868
1.79392
1.66913
1.54434
1.4196
1.29494
1.17041
1.04604
0.921872
0.797928
0.674265
0.550887
0.427894
0.305236
0.183072
0.0641483
5.54405
4.5165
4.28107
4.0866
3.90716
3.74427
3.59276
3.44913
3.31118
3.17746
3.04689
2.91864
2.792
2.66639
2.54139
2.4167
2.29211
2.16751
2.04284
1.91808
1.79326
1.6684
1.54355
1.41875
1.29405
1.16948
1.04509
0.920904
0.796941
0.67327
0.549826
0.426864
0.303678
0.182436
0.0542192
5.54441
4.51584
4.28106
4.08666
3.90724
3.74433
3.59281
3.44917
3.3112
3.17746
3.04689
2.91863
2.79197
2.66636
2.54136
2.41666
2.29207
2.16747
2.0428
1.91804
1.79322
1.66836
1.54351
1.41872
1.29401
1.16945
1.04505
0.920876
0.796928
0.67328
0.549877
0.42693
0.303773
0.182459
0.0541576
5.54072
4.5175
4.28125
4.08678
3.90736
3.74437
3.59279
3.44913
3.31115
3.1774
3.04681
2.91854
2.79188
2.66626
2.54126
2.41658
2.292
2.16741
2.04274
1.918
1.79318
1.66833
1.54349
1.4187
1.294
1.16944
1.04505
0.920866
0.796907
0.673238
0.549798
0.426835
0.303673
0.182381
0.0545
5.53992
4.51714
4.28119
4.08675
3.90739
3.74439
3.59282
3.44916
3.31118
3.17742
3.04683
2.91856
2.79189
2.66626
2.54125
2.41656
2.29198
2.16738
2.04272
1.91797
1.79316
1.66831
1.54347
1.41868
1.29398
1.16942
1.04502
0.920848
0.796901
0.673253
0.549853
0.426906
0.303779
0.182419
0.054474
5.47523
4.54006
4.28852
4.09041
3.91108
3.74667
3.5942
3.45005
3.31169
3.1776
3.04669
2.91812
2.79119
2.66536
2.54022
2.41546
2.29086
2.16629
2.04168
1.91701
1.79229
1.66753
1.54277
1.41806
1.29344
1.16894
1.0446
0.920467
0.796558
0.672937
0.549576
0.426619
0.303785
0.181844
0.0589323
5.40626
4.57091
4.29255
4.09429
3.91328
3.74843
3.5958
3.45148
3.31297
3.17875
3.04774
2.91909
2.7921
2.66622
2.54104
2.41622
2.29158
2.16696
2.0423
1.91759
1.79281
1.66801
1.54321
1.41846
1.2938
1.16927
1.04491
0.920755
0.796824
0.67318
0.549795
0.426833
0.303924
0.182163
0.0575563
5.39401
4.57114
4.29456
4.09483
3.91401
3.74883
3.59595
3.45151
3.31292
3.17864
3.04759
2.9189
2.79188
2.66598
2.54078
2.41597
2.29132
2.16672
2.04208
1.91739
1.79263
1.66785
1.54307
1.41834
1.2937
1.16919
1.04484
0.920692
0.79677
0.673134
0.54976
0.426795
0.303953
0.182046
0.0588839
5.3904
4.56746
4.2959
4.09483
3.91431
3.74893
3.59587
3.45135
3.31272
3.17841
3.04734
2.91864
2.79161
2.66569
2.54049
2.41567
2.29103
2.16644
2.04181
1.91713
1.79239
1.66763
1.54287
1.41815
1.29353
1.16903
1.04469
0.920558
0.796648
0.673023
0.549661
0.426697
0.303917
0.181866
0.06013
5.4649
4.54284
4.28812
4.09079
3.91085
3.74659
3.59425
3.45014
3.31182
3.17777
3.04691
2.91839
2.79152
2.66574
2.54063
2.41588
2.29129
2.16672
2.0421
1.91742
1.79266
1.66788
1.5431
1.41836
1.29371
1.16919
1.04483
0.920675
0.796747
0.673109
0.549728
0.426772
0.303842
0.182111
0.0573026
5.48619
4.53359
4.28845
4.09065
3.91116
3.74671
3.59422
3.45004
3.31166
3.17755
3.04665
2.91809
2.79118
2.66536
2.54023
2.41548
2.29088
2.16632
2.04172
1.91705
1.79232
1.66756
1.5428
1.41808
1.29345
1.16895
1.04461
0.920478
0.796565
0.672937
0.549557
0.426587
0.303707
0.181795
0.0586995
5.33173
4.59229
4.30305
4.09875
3.91735
3.75106
3.59748
3.45268
3.31384
3.17935
3.04813
2.91929
2.79215
2.66614
2.54086
2.41598
2.2913
2.16667
2.04202
1.91732
1.79257
1.66779
1.54303
1.41831
1.29368
1.16917
1.04483
0.920696
0.796783
0.673154
0.549796
0.426827
0.304113
0.1819
0.061827
5.45406
4.54529
4.29057
4.09141
3.91185
3.74718
3.59455
3.45031
3.31188
3.17774
3.04679
2.91819
2.79123
2.66538
2.54022
2.41545
2.29084
2.16627
2.04166
1.91699
1.79227
1.66751
1.54275
1.41805
1.29343
1.16893
1.0446
0.920469
0.796564
0.672945
0.549586
0.426625
0.303815
0.181815
0.0595176
5.51304
4.53168
4.28359
4.08869
3.90854
3.74544
3.5938
3.45002
3.31193
3.17807
3.04738
2.91902
2.79227
2.66657
2.5415
2.41675
2.29211
2.16748
2.04278
1.91801
1.79318
1.66831
1.54346
1.41866
1.29396
1.1694
1.04502
0.920838
0.796882
0.673212
0.54976
0.426785
0.303563
0.182351
0.0538351
5.51313
4.53157
4.28357
4.08869
3.90854
3.74545
3.5938
3.45003
3.31194
3.17808
3.04739
2.91902
2.79227
2.66657
2.5415
2.41675
2.29211
2.16748
2.04278
1.91801
1.79317
1.66831
1.54346
1.41866
1.29396
1.1694
1.045
0.920827
0.796877
0.673227
0.549827
0.426895
0.303754
0.182521
0.0538572
5.56411
4.5091
4.2798
4.0857
3.90656
3.74385
3.59247
3.44893
3.31105
3.17738
3.04687
2.91866
2.79205
2.66647
2.54149
2.4168
2.29222
2.16761
2.04293
1.91817
1.79334
1.66847
1.54361
1.4188
1.29409
1.16952
1.04512
0.920939
0.796992
0.673346
0.549942
0.426984
0.303786
0.182467
0.0539556
5.56706
4.5086
4.27964
4.08557
3.90646
3.74379
3.59242
3.44889
3.31102
3.17736
3.04686
2.91865
2.79205
2.66647
2.54149
2.41681
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.41881
1.2941
1.16953
1.04513
0.92094
0.796974
0.673301
0.549859
0.426905
0.30371
0.182507
0.054056
5.24185
4.64621
4.31384
4.10535
3.9223
3.75407
3.59959
3.45445
3.31541
3.18081
3.04952
2.92064
2.79346
2.66742
2.5421
2.41718
2.29246
2.16779
2.0431
1.91836
1.79357
1.66875
1.54395
1.41919
1.29453
1.16999
1.04563
0.921457
0.797515
0.673858
0.550482
0.427497
0.304814
0.182603
0.0631922
5.58236
4.50664
4.27882
4.08506
3.90619
3.74359
3.59227
3.44879
3.31095
3.1773
3.04681
2.91862
2.79202
2.66644
2.54147
2.41679
2.29221
2.16761
2.04294
1.91817
1.79334
1.66847
1.54362
1.41881
1.2941
1.16953
1.04513
0.92094
0.796973
0.6733
0.54986
0.42691
0.303732
0.182499
0.0542171
5.41598
4.56756
4.29151
4.09372
3.91278
3.74812
3.59562
3.45137
3.3129
3.17872
3.04774
2.91912
2.79215
2.66629
2.54111
2.4163
2.29165
2.16703
2.04237
1.91764
1.79286
1.66804
1.54324
1.41848
1.29382
1.16929
1.04492
0.920763
0.796828
0.673183
0.549796
0.426836
0.303904
0.182195
0.0571381
5.56792
4.51758
4.28104
4.08641
3.90733
3.74426
3.59266
3.449
3.31102
3.17725
3.04664
2.91834
2.79165
2.66602
2.54101
2.41634
2.29177
2.16721
2.04257
1.91785
1.79305
1.66822
1.54339
1.41861
1.29393
1.16937
1.04499
0.920812
0.796856
0.67319
0.549757
0.426789
0.303686
0.18226
0.0552358
5.45678
4.55049
4.29458
4.09303
3.91339
3.74824
3.59526
3.45083
3.31227
3.17801
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41798
1.29336
1.16887
1.04455
0.920434
0.796545
0.672935
0.549578
0.426588
0.30383
0.181608
0.0613914
5.52425
4.52308
4.28246
4.08742
3.90802
3.74472
3.59298
3.44923
3.31118
3.17736
3.04671
2.91838
2.79166
2.666
2.54097
2.41628
2.2917
2.16712
2.04248
1.91776
1.79297
1.66814
1.54332
1.41854
1.29386
1.16931
1.04493
0.920758
0.796816
0.67317
0.549777
0.426831
0.303771
0.1823
0.0552637
5.35127
4.58686
4.29983
4.09733
3.91613
3.75023
3.59691
3.45226
3.31352
3.17912
3.04797
2.91919
2.79208
2.66611
2.54086
2.416
2.29133
2.16671
2.04206
1.91736
1.79261
1.66783
1.54306
1.41833
1.2937
1.16919
1.04485
0.92071
0.796793
0.673161
0.549797
0.426828
0.304073
0.181977
0.0607245
5.56051
4.51044
4.28012
4.08591
3.90668
3.74394
3.59253
3.44898
3.31108
3.1774
3.04688
2.91866
2.79205
2.66646
2.54147
2.41679
2.2922
2.16759
2.04292
1.91815
1.79332
1.66845
1.54359
1.41879
1.29408
1.16951
1.04511
0.920928
0.796981
0.673335
0.549932
0.426976
0.303782
0.182472
0.0539442
5.56189
4.51011
4.28002
4.08583
3.90663
3.74391
3.59251
3.44896
3.31107
3.17739
3.04687
2.91866
2.79204
2.66646
2.54147
2.41679
2.2922
2.1676
2.04292
1.91815
1.79332
1.66845
1.5436
1.41879
1.29408
1.16951
1.04512
0.920928
0.796964
0.673291
0.549847
0.426891
0.303691
0.182491
0.0540314
5.20727
4.66941
4.31778
4.10763
3.92445
3.75527
3.60032
3.45499
3.31584
3.18115
3.04979
2.92087
2.79367
2.66762
2.5423
2.4174
2.2927
2.16806
2.04339
1.91868
1.79392
1.66913
1.54435
1.41961
1.29496
1.17043
1.04607
0.921899
0.797955
0.67429
0.550908
0.427907
0.30522
0.183063
0.0633439
5.52411
4.5226
4.28237
4.08747
3.908
3.74472
3.59298
3.44922
3.31116
3.17734
3.04668
2.91835
2.79163
2.66597
2.54095
2.41626
2.29169
2.16711
2.04248
1.91775
1.79296
1.66814
1.54331
1.41854
1.29386
1.16931
1.04493
0.920756
0.796806
0.673143
0.549713
0.426746
0.303644
0.182215
0.055245
5.4404
4.5504
4.29045
4.09199
3.91191
3.74729
3.59472
3.45047
3.31205
3.17792
3.04698
2.9184
2.79146
2.66563
2.54049
2.41572
2.29111
2.16654
2.04193
1.91724
1.7925
1.66773
1.54296
1.41824
1.2936
1.16909
1.04475
0.920604
0.796685
0.673053
0.549681
0.426722
0.303852
0.181997
0.0583338
5.43734
4.54978
4.29308
4.0925
3.91285
3.74787
3.59502
3.45065
3.31214
3.17792
3.04692
2.91826
2.79127
2.66539
2.54021
2.41541
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54272
1.41801
1.2934
1.16891
1.04458
0.920458
0.796562
0.672948
0.549593
0.42662
0.30385
0.181717
0.0606262
5.58151
4.51442
4.28022
4.08588
3.90689
3.744
3.5925
3.4489
3.31097
3.17724
3.04667
2.91841
2.79175
2.66614
2.54114
2.41647
2.2919
2.16732
2.04267
1.91794
1.79313
1.66829
1.54345
1.41866
1.29397
1.16941
1.04502
0.920837
0.796878
0.67321
0.549774
0.426811
0.303682
0.182321
0.0548675
5.58154
4.51375
4.28009
4.08574
3.90685
3.74397
3.59249
3.44891
3.31099
3.17728
3.04672
2.91846
2.7918
2.66618
2.54119
2.41651
2.29194
2.16735
2.0427
1.91796
1.79315
1.66831
1.54347
1.41868
1.29398
1.16942
1.04503
0.920847
0.796899
0.673252
0.549855
0.426909
0.30381
0.182381
0.0548457
5.43298
4.54879
4.29277
4.09325
3.91294
3.74796
3.59514
3.45074
3.31221
3.178
3.04701
2.91838
2.79141
2.66556
2.5404
2.41562
2.29101
2.16643
2.04182
1.91715
1.79241
1.66765
1.54288
1.41817
1.29354
1.16903
1.0447
0.920557
0.796643
0.673011
0.549631
0.426658
0.3038
0.181854
0.0591419
5.31754
4.60281
4.30394
4.09967
3.91801
3.75155
3.59795
3.45316
3.31432
3.17983
3.04858
2.91972
2.79255
2.66652
2.54121
2.41632
2.29162
2.16697
2.04231
1.91759
1.79283
1.66804
1.54326
1.41853
1.29389
1.16938
1.04503
0.920882
0.796961
0.673324
0.549961
0.426989
0.304267
0.182088
0.0616978
5.34159
4.59057
4.30131
4.09808
3.9168
3.75069
3.59724
3.45251
3.31371
3.17926
3.04807
2.91926
2.79213
2.66614
2.54087
2.416
2.29132
2.1667
2.04205
1.91735
1.79259
1.66782
1.54305
1.41833
1.29369
1.16919
1.04485
0.920709
0.796794
0.673164
0.549803
0.426835
0.3041
0.181951
0.061212
5.38628
4.56751
4.29727
4.09529
3.91483
3.74929
3.59609
3.4515
3.31282
3.17848
3.04738
2.91865
2.79159
2.66566
2.54044
2.41562
2.29098
2.16639
2.04177
1.91709
1.79236
1.66759
1.54284
1.41813
1.29351
1.16902
1.04469
0.920558
0.796654
0.673033
0.549675
0.426705
0.303956
0.181808
0.0609424
5.37714
4.58429
4.29533
4.096
3.91456
3.74925
3.59643
3.45203
3.31346
3.17919
3.04812
2.91942
2.79238
2.66645
2.54122
2.41638
2.2917
2.16707
2.0424
1.91767
1.79289
1.66808
1.54327
1.41852
1.29386
1.16933
1.04497
0.920809
0.796875
0.673229
0.549845
0.426878
0.304003
0.182164
0.05818
5.53024
4.52255
4.28217
4.08755
3.90779
3.74482
3.59323
3.44953
3.31151
3.17771
3.04709
2.91879
2.79211
2.66646
2.54144
2.41672
2.29211
2.1675
2.04282
1.91805
1.79322
1.66836
1.54351
1.41871
1.29401
1.16945
1.04506
0.920875
0.796916
0.673244
0.549796
0.426827
0.303615
0.182406
0.0539532
5.53128
4.52208
4.28207
4.08743
3.90771
3.74476
3.5932
3.44951
3.3115
3.17772
3.04711
2.91881
2.79213
2.66648
2.54146
2.41674
2.29213
2.16751
2.04283
1.91806
1.79323
1.66837
1.54352
1.41872
1.29402
1.16945
1.04505
0.920874
0.796925
0.673275
0.549872
0.426931
0.303773
0.182514
0.0539343
5.22729
4.65648
4.31525
4.10627
3.92315
3.75452
3.59985
3.45464
3.31556
3.18093
3.04962
2.92074
2.79356
2.66755
2.54225
2.41737
2.29268
2.16803
2.04336
1.91863
1.79384
1.66902
1.54421
1.41945
1.29479
1.17025
1.04587
0.921701
0.797755
0.674091
0.55071
0.427717
0.305029
0.182846
0.0632165
5.29311
4.6177
4.30696
4.10149
3.91927
3.75225
3.59839
3.4535
3.3146
3.18006
3.04879
2.91991
2.79272
2.66668
2.54135
2.41644
2.29173
2.16707
2.04239
1.91766
1.79289
1.66809
1.5433
1.41856
1.29392
1.1694
1.04505
0.920903
0.796979
0.67334
0.549978
0.427007
0.304301
0.182114
0.0619762
5.45702
4.55032
4.28745
4.09166
3.91101
3.74695
3.59475
3.45064
3.31229
3.17822
3.04735
2.91884
2.79197
2.66618
2.54106
2.4163
2.29167
2.16707
2.04241
1.91768
1.79289
1.66806
1.54324
1.41848
1.29381
1.16927
1.0449
0.920735
0.796793
0.673138
0.549716
0.426742
0.303679
0.182144
0.0557675
5.49857
4.53299
4.28408
4.08882
3.90892
3.74543
3.59355
3.44969
3.31155
3.17766
3.04695
2.91857
2.79181
2.66612
2.54106
2.41634
2.29175
2.16716
2.0425
1.91777
1.79298
1.66814
1.54332
1.41854
1.29386
1.16931
1.04493
0.920762
0.796819
0.673172
0.549776
0.426829
0.303764
0.182326
0.0551075
5.48846
4.53412
4.28579
4.08914
3.90963
3.7457
3.59357
3.4496
3.31139
3.17742
3.04663
2.91816
2.79133
2.66558
2.54049
2.41576
2.29118
2.16662
2.04201
1.91732
1.79257
1.66778
1.543
1.41826
1.29361
1.16909
1.04473
0.920582
0.796655
0.67302
0.549642
0.426691
0.30375
0.182044
0.0569827
5.39692
4.56471
4.2955
4.0953
3.91445
3.74913
3.59612
3.45159
3.31293
3.17862
3.04754
2.91884
2.79181
2.66591
2.54071
2.41589
2.29126
2.16666
2.04203
1.91734
1.79259
1.66781
1.54304
1.41831
1.29367
1.16916
1.04482
0.920674
0.796752
0.673113
0.549729
0.426754
0.303905
0.181954
0.0593064
5.2703
4.63449
4.30904
4.10321
3.92047
3.7529
3.59884
3.45389
3.31499
3.18048
3.04926
2.92043
2.79328
2.66725
2.54194
2.41702
2.29229
2.16761
2.04291
1.91816
1.79336
1.66854
1.54373
1.41898
1.29432
1.16978
1.04542
0.92125
0.797309
0.673652
0.550272
0.427286
0.304559
0.182417
0.0617431
5.33218
4.60697
4.30074
4.09911
3.9169
3.75067
3.59739
3.45279
3.3141
3.17974
3.04862
2.91986
2.79276
2.66679
2.54151
2.41663
2.29193
2.16728
2.04259
1.91785
1.79306
1.66824
1.54343
1.41867
1.29401
1.16948
1.04511
0.920944
0.797005
0.673353
0.549969
0.426993
0.304171
0.182214
0.0592574
5.4999
4.5324
4.28414
4.08901
3.90901
3.74548
3.59358
3.44968
3.31152
3.17761
3.0469
2.91851
2.79175
2.66606
2.54101
2.4163
2.29171
2.16713
2.04248
1.91775
1.79296
1.66813
1.5433
1.41853
1.29385
1.1693
1.04493
0.920756
0.796807
0.673146
0.549716
0.426747
0.303634
0.182218
0.0551244
5.40197
4.56176
4.29545
4.09434
3.91407
3.74877
3.59572
3.45122
3.3126
3.17831
3.04725
2.91855
2.79152
2.66561
2.54041
2.4156
2.29097
2.16638
2.04176
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.04468
0.920553
0.796647
0.673025
0.549666
0.426698
0.303928
0.181833
0.0604576
5.5055
4.5296
4.28378
4.08835
3.90869
3.7452
3.59334
3.4495
3.31139
3.17752
3.04682
2.91845
2.79169
2.66601
2.54096
2.41625
2.29167
2.16709
2.04245
1.91773
1.79295
1.66812
1.5433
1.41853
1.29386
1.16931
1.04493
0.920762
0.796821
0.673175
0.549781
0.426833
0.303789
0.182296
0.0554819
5.40915
4.55694
4.29631
4.09418
3.91414
3.74875
3.59563
3.45111
3.31249
3.17819
3.04712
2.91841
2.79138
2.66546
2.54025
2.41544
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54273
1.41802
1.29341
1.16892
1.0446
0.920476
0.796582
0.672968
0.549611
0.426628
0.303882
0.18166
0.0614382
5.3428
4.61188
4.29856
4.09916
3.91637
3.75028
3.59721
3.45271
3.31412
3.17986
3.04883
2.92017
2.79316
2.66726
2.54204
2.41718
2.29249
2.16781
2.0431
1.91831
1.79347
1.66861
1.54375
1.41896
1.29426
1.16969
1.0453
0.921116
0.797161
0.673495
0.550094
0.427114
0.304211
0.18239
0.0574842
5.33954
4.58812
4.30244
4.09848
3.91717
3.75096
3.59741
3.45261
3.31376
3.17927
3.04805
2.91922
2.79209
2.66609
2.54081
2.41595
2.29127
2.16665
2.04201
1.91731
1.79256
1.66779
1.54302
1.41831
1.29368
1.16918
1.04484
0.9207
0.796787
0.673158
0.549798
0.426827
0.304102
0.1819
0.0616566
5.55792
4.52208
4.28216
4.08694
3.90791
3.74461
3.59287
3.44914
3.3111
3.17729
3.04663
2.91828
2.79155
2.66588
2.54085
2.41616
2.2916
2.16703
2.04241
1.9177
1.79292
1.66811
1.54329
1.41853
1.29385
1.1693
1.04493
0.920757
0.796816
0.673171
0.549782
0.426833
0.30381
0.18225
0.0558307
5.31662
4.60492
4.30386
4.09976
3.91799
3.75149
3.5979
3.45312
3.31429
3.1798
3.04856
2.91971
2.79255
2.66652
2.54122
2.41632
2.29162
2.16697
2.04231
1.91759
1.79282
1.66803
1.54325
1.41852
1.29388
1.16936
1.04502
0.920866
0.796944
0.673306
0.549941
0.42697
0.304241
0.182085
0.0614525
5.21735
4.6665
4.31593
4.10708
3.92382
3.75484
3.60006
3.45481
3.3157
3.18104
3.04972
2.92082
2.79363
2.6676
2.54229
2.4174
2.2927
2.16805
2.04339
1.91868
1.79392
1.66913
1.54435
1.41962
1.29497
1.17046
1.0461
0.921936
0.797994
0.674328
0.550937
0.427929
0.305208
0.183057
0.0623715
5.38253
4.56661
4.29839
4.09565
3.91518
3.74952
3.59624
3.4516
3.31289
3.17852
3.0474
2.91865
2.79158
2.66564
2.54041
2.41558
2.29094
2.16635
2.04173
1.91705
1.79232
1.66756
1.54281
1.41811
1.29349
1.169
1.04467
0.920544
0.796644
0.673026
0.549669
0.426692
0.303957
0.181738
0.0615242
5.33888
4.59523
4.30088
4.09828
3.91676
3.75068
3.59733
3.45266
3.31391
3.1795
3.04833
2.91953
2.79241
2.66642
2.54115
2.41628
2.29159
2.16695
2.04229
1.91758
1.79281
1.66802
1.54324
1.41851
1.29386
1.16935
1.045
0.920845
0.79692
0.673279
0.549908
0.426936
0.30417
0.182096
0.060575
5.55136
4.51671
4.2807
4.08626
3.90731
3.74424
3.59264
3.44898
3.31101
3.17724
3.04664
2.91833
2.79164
2.66599
2.54098
2.4163
2.29173
2.16716
2.04251
1.91779
1.793
1.66817
1.54334
1.41856
1.29388
1.16932
1.04494
0.920767
0.796823
0.673178
0.549786
0.426841
0.303781
0.1823
0.0552571
5.45586
4.55137
4.29436
4.09285
3.91325
3.74815
3.5952
3.45078
3.31223
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04455
0.920431
0.79654
0.672929
0.549572
0.426585
0.303831
0.181624
0.0613018
5.31976
4.6023
4.30395
4.09997
3.918
3.7515
3.59791
3.45311
3.31427
3.17979
3.04856
2.91972
2.79257
2.66656
2.54126
2.41637
2.29167
2.16703
2.04236
1.91764
1.79287
1.66808
1.54329
1.41856
1.29392
1.1694
1.04505
0.920896
0.796968
0.673324
0.549949
0.426973
0.30422
0.182087
0.0612005
5.44091
4.56849
4.28838
4.09304
3.91142
3.74734
3.59532
3.45136
3.31315
3.17917
3.04836
2.91985
2.79295
2.66711
2.5419
2.41704
2.29232
2.16761
2.04286
1.91805
1.79319
1.66831
1.54345
1.41864
1.29394
1.16938
1.04499
0.92081
0.79686
0.673204
0.549801
0.426852
0.303798
0.182363
0.0547427
5.27626
4.63867
4.30743
4.10321
3.92013
3.75259
3.59866
3.45377
3.31491
3.18044
3.04925
2.92045
2.79334
2.66736
2.54209
2.41721
2.29251
2.16785
2.04315
1.9184
1.7936
1.66877
1.54394
1.41917
1.29448
1.16992
1.04554
0.92135
0.797393
0.67372
0.550324
0.427328
0.30454
0.182488
0.0601198
5.40453
4.56006
4.29587
4.09424
3.91408
3.74873
3.59565
3.45114
3.31252
3.17823
3.04716
2.91847
2.79144
2.66553
2.54032
2.41551
2.29088
2.1663
2.04168
1.91701
1.79228
1.66753
1.54278
1.41807
1.29346
1.16896
1.04464
0.920511
0.796611
0.672993
0.549637
0.426664
0.303911
0.181755
0.0609169
5.42326
4.55501
4.29291
4.09306
3.91296
3.74798
3.59516
3.45079
3.31227
3.17805
3.04705
2.91841
2.79143
2.66555
2.54038
2.41559
2.29097
2.16639
2.04177
1.9171
1.79237
1.66761
1.54285
1.41813
1.29351
1.16901
1.04467
0.92054
0.796631
0.673007
0.549644
0.426681
0.303872
0.181877
0.0595626
5.27934
4.62869
4.30834
4.10303
3.9201
3.7527
3.59875
3.45382
3.31494
3.18045
3.04923
2.9204
2.79325
2.66723
2.54191
2.417
2.29227
2.16759
2.04289
1.91814
1.79335
1.66852
1.54371
1.41896
1.29429
1.16976
1.04539
0.92122
0.797276
0.673616
0.550227
0.427239
0.304485
0.182361
0.0613076
5.44355
4.54493
4.29215
4.0927
3.91261
3.7477
3.59492
3.45056
3.31206
3.17786
3.04689
2.91827
2.79131
2.66546
2.5403
2.41552
2.29091
2.16634
2.04173
1.91706
1.79233
1.66757
1.54281
1.41809
1.29347
1.16897
1.04463
0.920497
0.796587
0.67296
0.549584
0.426611
0.303761
0.181794
0.0592853
5.19253
4.67734
4.32
4.10862
3.92543
3.75586
3.60068
3.45527
3.31605
3.18132
3.04993
2.92099
2.79377
2.66771
2.54238
2.41748
2.29277
2.16813
2.04346
1.91875
1.79399
1.66921
1.54443
1.41971
1.29507
1.17057
1.04622
0.92208
0.798161
0.674518
0.551155
0.428168
0.305504
0.183367
0.0639155
5.46312
4.54244
4.28894
4.09077
3.91112
3.74669
3.59423
3.45008
3.31172
3.17764
3.04674
2.91819
2.79128
2.66546
2.54033
2.41557
2.29098
2.16641
2.0418
1.91713
1.7924
1.66763
1.54287
1.41815
1.29352
1.16902
1.04467
0.920535
0.79662
0.672993
0.549626
0.426669
0.303808
0.181926
0.0584544
5.5604
4.51248
4.28017
4.08596
3.90685
3.74401
3.59254
3.44896
3.31104
3.17734
3.04679
2.91855
2.79191
2.66631
2.54133
2.41665
2.29208
2.16749
2.04283
1.91808
1.79326
1.66841
1.54356
1.41877
1.29407
1.1695
1.04511
0.920919
0.796955
0.673284
0.549843
0.426883
0.303726
0.182429
0.0545652
5.43199
4.54836
4.29409
4.09312
3.91328
3.74813
3.59518
3.45075
3.3122
3.17796
3.04693
2.91826
2.79125
2.66536
2.54017
2.41537
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54267
1.41797
1.29335
1.16886
1.04454
0.920415
0.796522
0.67291
0.54955
0.426568
0.303788
0.181632
0.0608207
5.58015
4.50852
4.27905
4.08527
3.9064
3.74372
3.59235
3.44883
3.31096
3.17729
3.04678
2.91856
2.79194
2.66636
2.54138
2.4167
2.29213
2.16753
2.04287
1.91811
1.79329
1.66843
1.54358
1.41878
1.29407
1.1695
1.04511
0.920919
0.796954
0.673282
0.549842
0.426887
0.303725
0.182451
0.0544273
5.4796
4.54267
4.28544
4.09
3.90967
3.74601
3.59406
3.45013
3.31192
3.17797
3.0472
2.91877
2.79197
2.66624
2.54115
2.41641
2.29179
2.16718
2.04251
1.91777
1.79297
1.66814
1.54331
1.41853
1.29385
1.1693
1.04492
0.920755
0.796812
0.673164
0.549766
0.42682
0.303758
0.182331
0.055032
5.4075
4.57462
4.29228
4.09501
3.9134
3.74858
3.59605
3.45179
3.31332
3.17913
3.04815
2.91951
2.79253
2.66664
2.54144
2.4166
2.29192
2.16727
2.04258
1.91783
1.79302
1.66818
1.54336
1.41859
1.29391
1.16937
1.045
0.920833
0.796891
0.673235
0.54982
0.42684
0.303837
0.182163
0.0566482
5.34315
4.61048
4.29856
4.09949
3.91653
3.75038
3.59728
3.45275
3.31413
3.17985
3.04882
2.92015
2.79314
2.66724
2.54203
2.41718
2.29249
2.16782
2.04311
1.91833
1.79349
1.66862
1.54377
1.41897
1.29427
1.1697
1.04531
0.921127
0.797169
0.673497
0.550078
0.427083
0.304142
0.182308
0.0574618
5.3936
4.56178
4.29751
4.09521
3.91478
3.74921
3.596
3.4514
3.31272
3.17838
3.04728
2.91856
2.79151
2.66558
2.54036
2.41554
2.29091
2.16632
2.04171
1.91703
1.7923
1.66755
1.5428
1.41809
1.29347
1.16898
1.04465
0.920527
0.796628
0.673009
0.549649
0.42667
0.303916
0.181729
0.061235
5.41515
4.55419
4.29522
4.09417
3.91386
3.74856
3.59552
3.45103
3.31243
3.17815
3.04711
2.91843
2.79142
2.66553
2.54034
2.41554
2.29092
2.16634
2.04173
1.91706
1.79233
1.66757
1.54282
1.41811
1.29349
1.169
1.04467
0.920536
0.796631
0.673009
0.549642
0.426665
0.30387
0.181776
0.0603969
5.40175
4.56619
4.29421
4.09495
3.91394
3.7488
3.59595
3.45149
3.3129
3.17862
3.04758
2.91891
2.79191
2.66602
2.54083
2.41602
2.29138
2.16678
2.04214
1.91744
1.79268
1.66788
1.5431
1.41836
1.29371
1.1692
1.04484
0.920693
0.796764
0.67312
0.549725
0.42675
0.303852
0.182
0.0583993
5.41072
4.56064
4.29367
4.09375
3.91339
3.74831
3.59544
3.45103
3.31248
3.17823
3.04722
2.91856
2.79156
2.66568
2.54049
2.41569
2.29107
2.16649
2.04187
1.91718
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04473
0.920591
0.796678
0.67305
0.549683
0.42672
0.303904
0.181934
0.0594029
5.16087
4.68988
4.3261
4.11083
3.92759
3.75726
3.60155
3.45591
3.31655
3.1817
3.05023
2.92123
2.79396
2.66786
2.54251
2.41758
2.29287
2.16822
2.04355
1.91884
1.79409
1.66931
1.54454
1.41982
1.2952
1.1707
1.04636
0.922222
0.798311
0.674677
0.551329
0.428357
0.30576
0.183694
0.0665648
5.57173
4.50736
4.27922
4.0853
3.90631
3.74367
3.59233
3.44882
3.31096
3.17731
3.04681
2.91862
2.79201
2.66644
2.54146
2.41678
2.2922
2.1676
2.04292
1.91816
1.79332
1.66846
1.5436
1.41879
1.29409
1.16951
1.04512
0.920926
0.79696
0.673288
0.549848
0.426898
0.303711
0.182498
0.0541083
5.57428
4.50612
4.27894
4.08515
3.90624
3.74363
3.59232
3.44883
3.31099
3.17734
3.04685
2.91866
2.79206
2.66648
2.54151
2.41683
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16953
1.04513
0.92095
0.797003
0.673358
0.549953
0.426992
0.303792
0.182449
0.0540063
5.38659
4.57677
4.29488
4.09534
3.91426
3.74905
3.5962
3.45177
3.31319
3.17891
3.04785
2.91915
2.79212
2.66621
2.54099
2.41616
2.29151
2.16689
2.04224
1.91753
1.79276
1.66796
1.54317
1.41843
1.29378
1.16926
1.0449
0.920752
0.796823
0.673182
0.549802
0.426837
0.303977
0.182106
0.0585486
5.46026
4.54359
4.28979
4.09108
3.91152
3.74696
3.5944
3.4502
3.3118
3.17768
3.04675
2.91817
2.79123
2.66539
2.54024
2.41547
2.29087
2.1663
2.04169
1.91702
1.7923
1.66754
1.54278
1.41807
1.29345
1.16895
1.04461
0.92048
0.796572
0.67295
0.549589
0.426631
0.303803
0.181846
0.0591212
5.22564
4.6575
4.31591
4.10677
3.92336
3.75465
3.59996
3.45472
3.31561
3.18096
3.04964
2.92074
2.79356
2.66752
2.54222
2.41732
2.29263
2.16798
2.04331
1.91858
1.7938
1.66898
1.54417
1.41941
1.29474
1.1702
1.04582
0.921649
0.797699
0.674033
0.550646
0.427649
0.304951
0.182769
0.062981
5.37636
4.57802
4.29663
4.09596
3.91497
3.74951
3.59646
3.45192
3.31326
3.17892
3.04782
2.91908
2.79202
2.66609
2.54086
2.41603
2.29137
2.16676
2.04212
1.91742
1.79266
1.66788
1.5431
1.41837
1.29373
1.16922
1.04487
0.920724
0.796802
0.673166
0.549793
0.426825
0.304013
0.182038
0.0595156
5.36803
4.57295
4.2997
4.09663
3.91587
3.75004
3.59666
3.45195
3.31319
3.17878
3.04762
2.91884
2.79175
2.66579
2.54055
2.41571
2.29105
2.16645
2.04182
1.91714
1.79241
1.66764
1.54289
1.41818
1.29356
1.16906
1.04473
0.9206
0.796696
0.673073
0.549715
0.426739
0.304005
0.181797
0.0615193
5.30149
4.62441
4.30437
4.10189
3.91881
3.75181
3.59818
3.4534
3.31462
3.18022
3.04909
2.92034
2.79326
2.66731
2.54205
2.41717
2.29246
2.16779
2.04309
1.91833
1.79352
1.66867
1.54384
1.41906
1.29438
1.16982
1.04544
0.921257
0.797301
0.67363
0.550221
0.427224
0.304382
0.182383
0.0594098
5.45949
4.54579
4.2884
4.09114
3.91101
3.74674
3.5944
3.45028
3.31194
3.17788
3.04702
2.9185
2.79162
2.66584
2.54073
2.41598
2.29139
2.16681
2.04218
1.91749
1.79273
1.66794
1.54315
1.41841
1.29375
1.16923
1.04487
0.92071
0.796779
0.673138
0.549754
0.426798
0.303854
0.182156
0.0570612
5.45126
4.54728
4.29192
4.09191
3.91239
3.74756
3.5948
3.45049
3.31201
3.17783
3.04685
2.91821
2.79123
2.66536
2.54019
2.4154
2.29078
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04457
0.920445
0.796547
0.672933
0.549578
0.42661
0.303828
0.181731
0.060296
5.24478
4.65448
4.31173
4.10537
3.92209
3.75376
3.5994
3.45431
3.31532
3.18075
3.04949
2.92065
2.7935
2.66749
2.5422
2.41732
2.29263
2.16799
2.04332
1.9186
1.79383
1.66903
1.54424
1.41949
1.29483
1.17028
1.0459
0.921717
0.797756
0.674074
0.55067
0.42766
0.304896
0.182782
0.0610029
5.25351
4.64277
4.3116
4.10445
3.92154
3.75355
3.59925
3.4542
3.31522
3.18066
3.0494
2.92053
2.79335
2.66731
2.54198
2.41705
2.2923
2.16761
2.0429
1.91815
1.79334
1.66852
1.54372
1.41896
1.2943
1.16977
1.04541
0.921243
0.797307
0.673654
0.550281
0.427299
0.304598
0.182433
0.0623273
5.29373
4.61964
4.30637
4.10144
3.91914
3.75213
3.59832
3.45346
3.3146
3.18011
3.04887
2.92001
2.79284
2.6668
2.54149
2.41657
2.29186
2.16719
2.04251
1.91778
1.793
1.6682
1.5434
1.41866
1.29401
1.16949
1.04513
0.920979
0.797049
0.673404
0.550035
0.427059
0.304334
0.18219
0.061553
5.41122
4.55833
4.29426
4.09359
3.91345
3.7483
3.59537
3.45093
3.31237
3.17812
3.04709
2.91842
2.79141
2.66552
2.54033
2.41553
2.29091
2.16632
2.04171
1.91703
1.7923
1.66754
1.54279
1.41808
1.29346
1.16897
1.04463
0.920505
0.7966
0.672979
0.549621
0.426656
0.303876
0.181811
0.0601632
5.53495
4.52221
4.28225
4.08713
3.90807
3.74471
3.59293
3.44918
3.31113
3.1773
3.04662
2.91826
2.79152
2.66584
2.54081
2.41611
2.29154
2.16698
2.04235
1.91765
1.79287
1.66806
1.54325
1.41849
1.29382
1.16927
1.0449
0.920731
0.796791
0.673148
0.54976
0.426811
0.303797
0.182226
0.0559142
5.48814
4.53995
4.28498
4.0898
3.90952
3.74599
3.5941
3.45019
3.312
3.17806
3.04731
2.91888
2.79209
2.66636
2.54127
2.41652
2.29189
2.16728
2.0426
1.91785
1.79304
1.6682
1.54336
1.41858
1.2939
1.16935
1.04496
0.920792
0.796848
0.673198
0.549799
0.426853
0.303774
0.182384
0.0548158
5.48897
4.53567
4.28508
4.08926
3.90938
3.74569
3.59369
3.44977
3.31159
3.17765
3.04691
2.91849
2.7917
2.66598
2.54091
2.41619
2.2916
2.16702
2.04238
1.91767
1.79288
1.66807
1.54325
1.41849
1.29382
1.16928
1.0449
0.920736
0.796797
0.673152
0.54976
0.42681
0.303787
0.18226
0.0557407
5.48371
4.53696
4.28575
4.0895
3.90968
3.74584
3.59377
3.44981
3.3116
3.17764
3.04687
2.91842
2.79161
2.66588
2.54081
2.41608
2.2915
2.16692
2.04229
1.91759
1.79282
1.66801
1.54321
1.41846
1.29379
1.16925
1.04489
0.920723
0.796787
0.673143
0.549754
0.426802
0.303809
0.182217
0.0562325
5.37596
4.56921
4.29889
4.09599
3.91541
3.74968
3.59636
3.4517
3.31297
3.17859
3.04745
2.9187
2.79162
2.66567
2.54044
2.41561
2.29096
2.16636
2.04174
1.91706
1.79233
1.66757
1.54282
1.41811
1.29349
1.169
1.04467
0.920544
0.796643
0.673023
0.549666
0.426691
0.303958
0.181743
0.0615299
5.4169
4.56817
4.29096
4.09356
3.91251
3.74794
3.59551
3.45131
3.31289
3.17873
3.04777
2.91916
2.7922
2.66635
2.54117
2.41636
2.2917
2.16707
2.0424
1.91767
1.79287
1.66805
1.54324
1.41848
1.29381
1.16927
1.04491
0.920745
0.796809
0.673163
0.549774
0.426817
0.303864
0.182203
0.056691
5.51948
4.52737
4.28284
4.08821
3.90829
3.74522
3.59357
3.44981
3.31173
3.17789
3.04722
2.91888
2.79215
2.66648
2.54142
2.41669
2.29207
2.16745
2.04276
1.918
1.79317
1.66831
1.54346
1.41867
1.29397
1.16941
1.04501
0.920836
0.796887
0.673237
0.549835
0.426898
0.303757
0.182501
0.0539713
5.4433
4.56699
4.2885
4.09335
3.91171
3.74757
3.59548
3.45145
3.31316
3.17911
3.04823
2.91968
2.79274
2.66689
2.54169
2.41684
2.29215
2.16748
2.04276
1.91798
1.79314
1.66828
1.54343
1.41864
1.29395
1.1694
1.04502
0.920843
0.796893
0.673229
0.549795
0.426814
0.303693
0.182233
0.0548819
5.36078
4.57676
4.30037
4.09708
3.91626
3.75036
3.59694
3.45221
3.31342
3.17898
3.0478
2.919
2.79189
2.66592
2.54066
2.41581
2.29115
2.16654
2.04191
1.91722
1.79248
1.66772
1.54296
1.41825
1.29363
1.16913
1.0448
0.920664
0.796757
0.673133
0.549775
0.426801
0.304072
0.181854
0.0616504
5.45648
4.54496
4.2887
4.09093
3.91101
3.74665
3.59425
3.45012
3.31178
3.17771
3.04683
2.91829
2.7914
2.6656
2.54048
2.41572
2.29113
2.16656
2.04195
1.91726
1.79252
1.66774
1.54297
1.41824
1.2936
1.16908
1.04473
0.920585
0.796662
0.673029
0.549654
0.426699
0.303798
0.182008
0.0577255
5.57696
4.50631
4.27872
4.08507
3.90626
3.74364
3.59231
3.44882
3.31097
3.17732
3.04681
2.91861
2.79199
2.66641
2.54143
2.41675
2.29217
2.16757
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29407
1.1695
1.0451
0.920917
0.79697
0.673324
0.549923
0.426968
0.303797
0.182433
0.0541997
5.43968
4.56732
4.28888
4.09315
3.91168
3.74752
3.59541
3.45138
3.3131
3.17906
3.04819
2.91964
2.79273
2.66688
2.54168
2.41684
2.29214
2.16746
2.04274
1.91795
1.79311
1.66825
1.54341
1.41862
1.29393
1.16938
1.04499
0.92082
0.796875
0.673221
0.549821
0.42687
0.303831
0.182359
0.0551232
5.29928
4.61275
4.30638
4.10103
3.91899
3.75213
3.59833
3.45346
3.31457
3.18004
3.04878
2.9199
2.79271
2.66667
2.54135
2.41644
2.29172
2.16706
2.04239
1.91767
1.79289
1.6681
1.54332
1.41858
1.29394
1.16942
1.04507
0.920924
0.797001
0.673363
0.550001
0.427029
0.304323
0.18212
0.0620898
5.46194
4.55335
4.28711
4.09143
3.91063
3.74676
3.59473
3.45074
3.31248
3.17848
3.04766
2.91917
2.79231
2.66653
2.5414
2.41661
2.29196
2.16732
2.04264
1.91788
1.79306
1.66822
1.54339
1.41861
1.29392
1.16937
1.04499
0.92082
0.796875
0.673224
0.549824
0.426874
0.303824
0.182376
0.0551603
5.5454
4.51944
4.28164
4.0869
3.90777
3.74454
3.59283
3.4491
3.31105
3.17723
3.04658
2.91823
2.79151
2.66585
2.54083
2.41614
2.29157
2.16701
2.04238
1.91767
1.79289
1.66807
1.54325
1.41849
1.29381
1.16927
1.04489
0.92072
0.796771
0.673111
0.549685
0.426717
0.303644
0.182153
0.0555982
5.36374
4.57838
4.29917
4.09669
3.91585
3.75006
3.59673
3.45205
3.31329
3.17888
3.04772
2.91895
2.79185
2.6659
2.54065
2.41581
2.29115
2.16654
2.04191
1.91722
1.79248
1.66771
1.54295
1.41823
1.29361
1.16911
1.04477
0.920639
0.796729
0.673103
0.549743
0.426775
0.30403
0.18189
0.0610223
5.54443
4.51764
4.28113
4.08656
3.90739
3.74428
3.59266
3.44897
3.31097
3.17719
3.04656
2.91825
2.79156
2.66592
2.54091
2.41622
2.29165
2.16708
2.04244
1.91772
1.79293
1.6681
1.54328
1.4185
1.29382
1.16927
1.04489
0.92072
0.796769
0.673107
0.549678
0.426714
0.303613
0.182194
0.0551584
5.38114
4.58581
4.29476
4.09602
3.9144
3.74916
3.5964
3.45204
3.31349
3.17923
3.04818
2.91949
2.79246
2.66654
2.54131
2.41647
2.29179
2.16715
2.04247
1.91774
1.79294
1.66812
1.54331
1.41855
1.29388
1.16935
1.04498
0.920819
0.796883
0.673234
0.549847
0.426881
0.303983
0.182194
0.0576602
5.44937
4.54473
4.2929
4.09259
3.91275
3.74776
3.59492
3.45055
3.31204
3.17783
3.04684
2.91821
2.79123
2.66536
2.54018
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04457
0.920444
0.796546
0.672929
0.549564
0.426586
0.303778
0.181688
0.0602246
5.46252
4.54371
4.29017
4.09113
3.91176
3.74714
3.59452
3.45028
3.31186
3.17772
3.04677
2.91816
2.7912
2.66535
2.54018
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.16889
1.04456
0.920436
0.796534
0.672918
0.549562
0.4266
0.303799
0.181773
0.0597042
5.44621
4.54458
4.29152
4.09258
3.91241
3.7476
3.59488
3.45055
3.31207
3.17789
3.04694
2.91833
2.79139
2.66556
2.54041
2.41564
2.29104
2.16647
2.04186
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16906
1.04472
0.920583
0.796665
0.673032
0.549647
0.426674
0.303794
0.18189
0.058792
5.41415
4.5557
4.29402
4.09399
3.91351
3.74837
3.59546
3.451
3.31243
3.17817
3.04714
2.91849
2.79149
2.66561
2.54043
2.41564
2.29102
2.16644
2.04182
1.91714
1.7924
1.66763
1.54287
1.41815
1.29353
1.16902
1.04469
0.920548
0.796634
0.673003
0.549625
0.426653
0.303812
0.181844
0.0593886
5.5373
4.52804
4.28424
4.08811
3.90891
3.74522
3.59323
3.44936
3.31122
3.17731
3.04657
2.91814
2.79134
2.66562
2.54055
2.41584
2.29127
2.16672
2.0421
1.91742
1.79267
1.66788
1.54309
1.41834
1.29369
1.16916
1.0448
0.920639
0.796708
0.673071
0.549691
0.42674
0.303779
0.182096
0.0567289
5.31725
4.61309
4.30273
4.10007
3.91773
3.75119
3.59772
3.45303
3.31429
3.17989
3.04874
2.91995
2.79283
2.66684
2.54156
2.41667
2.29196
2.1673
2.04261
1.91787
1.79308
1.66827
1.54346
1.41871
1.29405
1.16951
1.04515
0.920982
0.797043
0.673391
0.550008
0.427031
0.304235
0.182226
0.0598541
5.58445
4.51312
4.27997
4.08574
3.90679
3.74395
3.59248
3.4489
3.31098
3.17727
3.04671
2.91846
2.79181
2.6662
2.54121
2.41654
2.29197
2.16739
2.04273
1.91799
1.79318
1.66833
1.54349
1.4187
1.294
1.16944
1.04505
0.920868
0.796907
0.673237
0.549799
0.426837
0.3037
0.18236
0.0547729
5.58615
4.51266
4.27992
4.08562
3.90674
3.7439
3.59244
3.44888
3.31097
3.17727
3.04671
2.91846
2.79181
2.6662
2.5412
2.41652
2.29195
2.16736
2.0427
1.91796
1.79315
1.6683
1.54346
1.41867
1.29397
1.16941
1.04502
0.920838
0.796891
0.673245
0.549849
0.426902
0.303796
0.182378
0.0547405
5.46748
4.53971
4.29077
4.09169
3.91198
3.74726
3.59459
3.45031
3.31187
3.17772
3.04677
2.91818
2.79123
2.6654
2.54025
2.41548
2.29088
2.16632
2.04171
1.91705
1.79232
1.66757
1.54281
1.4181
1.29348
1.16898
1.04465
0.920513
0.796606
0.672982
0.549608
0.426633
0.303784
0.181795
0.0594165
5.3696
4.57622
4.29841
4.09636
3.91558
3.74989
3.59663
3.45199
3.31326
3.17886
3.04772
2.91896
2.79187
2.66592
2.54068
2.41584
2.29118
2.16658
2.04194
1.91725
1.79251
1.66774
1.54298
1.41826
1.29363
1.16913
1.0448
0.920659
0.796747
0.673119
0.549757
0.426788
0.304031
0.181917
0.0607624
5.53672
4.5201
4.28172
4.08685
3.9077
3.74448
3.59279
3.44908
3.31107
3.17727
3.04663
2.91831
2.79159
2.66594
2.54092
2.41623
2.29166
2.16709
2.04245
1.91773
1.79294
1.66812
1.5433
1.41853
1.29384
1.1693
1.04491
0.920744
0.796802
0.673158
0.549767
0.426821
0.303773
0.182275
0.0554072
5.53281
4.52217
4.28228
4.08713
3.90798
3.74466
3.59291
3.44916
3.31112
3.1773
3.04664
2.91829
2.79155
2.66588
2.54085
2.41616
2.29159
2.16703
2.0424
1.91769
1.79291
1.66809
1.54328
1.41851
1.29383
1.16929
1.04491
0.920743
0.796802
0.673159
0.549769
0.426821
0.303794
0.182252
0.0557313
5.18355
4.68015
4.32178
4.10919
3.92602
3.75625
3.60092
3.45544
3.31618
3.18141
3.05
2.92104
2.7938
2.66773
2.54239
2.41748
2.29277
2.16812
2.04346
1.91875
1.794
1.66922
1.54446
1.41974
1.29511
1.17061
1.04627
0.922127
0.798205
0.67456
0.551196
0.42821
0.305566
0.183436
0.0648055
5.46232
4.53952
4.29064
4.09174
3.91195
3.74724
3.59458
3.4503
3.31186
3.1777
3.04676
2.91817
2.79123
2.66539
2.54024
2.41547
2.29087
2.16631
2.0417
1.91704
1.79231
1.66755
1.54279
1.41808
1.29345
1.16895
1.04462
0.920486
0.796577
0.672952
0.549576
0.426603
0.303746
0.181786
0.0591863
5.40961
4.58294
4.29147
4.09549
3.91322
3.74845
3.59608
3.45192
3.31358
3.17951
3.04863
2.92008
2.79315
2.66728
2.54206
2.41719
2.29245
2.16774
2.04299
1.91817
1.79331
1.66843
1.54356
1.41875
1.29405
1.16949
1.0451
0.920923
0.79697
0.673304
0.549875
0.42689
0.303821
0.182243
0.0555423
5.47125
4.5368
4.28957
4.09121
3.91152
3.74695
3.59438
3.45015
3.31174
3.17762
3.0467
2.91812
2.7912
2.66538
2.54024
2.41548
2.29088
2.16632
2.04171
1.91704
1.79232
1.66755
1.54279
1.41808
1.29345
1.16895
1.04462
0.920479
0.796567
0.67294
0.549561
0.42659
0.303717
0.181793
0.058839
5.44387
4.54869
4.29051
4.09183
3.91188
3.74723
3.59464
3.45039
3.31197
3.17784
3.0469
2.91831
2.79138
2.66554
2.5404
2.41563
2.29102
2.16645
2.04184
1.91716
1.79243
1.66766
1.5429
1.41818
1.29355
1.16904
1.0447
0.92056
0.796644
0.673016
0.549648
0.426689
0.303835
0.181942
0.0586332
5.48774
4.53913
4.29043
4.09142
3.91182
3.74715
3.59451
3.45024
3.31181
3.17766
3.04672
2.91813
2.79118
2.66534
2.54019
2.41542
2.29082
2.16626
2.04165
1.91699
1.79226
1.6675
1.54275
1.41804
1.29342
1.16892
1.04459
0.92046
0.796555
0.672933
0.549562
0.426588
0.303742
0.181747
0.0594039
5.50129
4.53083
4.28457
4.08863
3.90901
3.74535
3.59338
3.44949
3.31134
3.17744
3.04671
2.9183
2.79152
2.66581
2.54075
2.41604
2.29146
2.16689
2.04227
1.91756
1.79279
1.66798
1.54318
1.41842
1.29375
1.16921
1.04484
0.92068
0.796744
0.673103
0.549715
0.426766
0.30376
0.182191
0.0559951
5.41193
4.55513
4.29556
4.09424
3.91394
3.7486
3.59554
3.45104
3.31243
3.17814
3.04709
2.91841
2.79139
2.66549
2.5403
2.41549
2.29087
2.16629
2.04168
1.917
1.79228
1.66752
1.54277
1.41806
1.29344
1.16895
1.04462
0.920491
0.796589
0.672969
0.549605
0.426629
0.303844
0.181728
0.0605673
5.33207
4.59679
4.30201
4.09875
3.91725
3.75105
3.5976
3.45289
3.3141
3.17966
3.04845
2.91963
2.79249
2.66648
2.54119
2.41631
2.29162
2.16698
2.04232
1.91761
1.79284
1.66806
1.54328
1.41854
1.2939
1.16939
1.04504
0.92089
0.796966
0.673326
0.549957
0.426983
0.304236
0.182108
0.0611127
5.50192
4.53829
4.28451
4.08948
3.90903
3.74585
3.59417
3.45037
3.31224
3.17834
3.04761
2.9192
2.7924
2.66667
2.54156
2.41678
2.29213
2.16748
2.04277
1.91799
1.79315
1.66829
1.54343
1.41863
1.29394
1.16938
1.04499
0.920816
0.796862
0.673192
0.54974
0.426763
0.303541
0.182319
0.0537983
5.50286
4.53773
4.28442
4.08942
3.90901
3.74583
3.59415
3.45035
3.31223
3.17833
3.04761
2.9192
2.79241
2.66667
2.54157
2.41679
2.29213
2.16748
2.04278
1.918
1.79316
1.66829
1.54344
1.41864
1.29394
1.16938
1.04499
0.920811
0.796861
0.673209
0.549808
0.426878
0.303748
0.182517
0.0538459
5.3928
4.5652
4.29646
4.09488
3.9145
3.74906
3.59593
3.45138
3.31273
3.17841
3.04733
2.91861
2.79157
2.66565
2.54043
2.41562
2.29098
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.04469
0.920556
0.79665
0.673028
0.54967
0.426701
0.303942
0.18182
0.0607022
5.45836
4.55665
4.28712
4.09176
3.91077
3.74695
3.59498
3.45102
3.31277
3.17876
3.04792
2.9194
2.79251
2.6667
2.54154
2.41672
2.29204
2.16738
2.04267
1.9179
1.79307
1.66821
1.54337
1.41859
1.2939
1.16935
1.04496
0.920793
0.796847
0.673196
0.549796
0.42685
0.303791
0.182374
0.0548599
5.37959
4.56837
4.29856
4.09577
3.91528
3.7496
3.5963
3.45166
3.31294
3.17856
3.04744
2.91869
2.79161
2.66567
2.54044
2.41561
2.29097
2.16637
2.04175
1.91707
1.79234
1.66758
1.54283
1.41812
1.2935
1.16901
1.04468
0.920556
0.796655
0.673036
0.54968
0.426705
0.303971
0.181758
0.0614902
5.48225
4.5384
4.28773
4.09001
3.91062
3.74635
3.59399
3.4499
3.31159
3.17753
3.04666
2.91812
2.79123
2.66542
2.5403
2.41555
2.29096
2.16639
2.04179
1.91712
1.79239
1.66762
1.54286
1.41814
1.29351
1.16901
1.04466
0.920523
0.796608
0.672981
0.549614
0.426659
0.303792
0.181919
0.0583229
5.2837
4.62865
4.30717
4.10234
3.91968
3.75239
3.5985
3.45363
3.31477
3.18029
3.04908
2.92026
2.79311
2.6671
2.54179
2.41688
2.29215
2.16748
2.04279
1.91804
1.79325
1.66843
1.54363
1.41887
1.29421
1.16968
1.04531
0.921148
0.797208
0.673553
0.550173
0.427189
0.304442
0.18234
0.0611031
5.43693
4.55361
4.29044
4.09286
3.91218
3.74759
3.59506
3.45078
3.31233
3.17818
3.04724
2.91867
2.79175
2.66593
2.54079
2.41602
2.29141
2.16682
2.04218
1.91748
1.79272
1.66792
1.54313
1.41838
1.29373
1.1692
1.04485
0.920692
0.796758
0.67311
0.549703
0.426729
0.303759
0.182045
0.0572076
5.39509
4.57218
4.29453
4.09547
3.91418
3.749
3.59616
3.45171
3.31312
3.17884
3.04779
2.91911
2.7921
2.6662
2.541
2.41618
2.29153
2.16691
2.04226
1.91755
1.79278
1.66798
1.54318
1.41844
1.29378
1.16926
1.0449
0.92075
0.796817
0.673169
0.54977
0.426793
0.303878
0.182054
0.0581015
5.21461
4.66623
4.31705
4.10771
3.9241
3.75505
3.60022
3.45491
3.31578
3.1811
3.04976
2.92085
2.79366
2.66761
2.5423
2.4174
2.2927
2.16805
2.04339
1.91867
1.79391
1.66912
1.54434
1.4196
1.29496
1.17044
1.04609
0.921923
0.797979
0.674311
0.550915
0.427904
0.305182
0.183012
0.0625213
5.61768
4.50353
4.2779
4.08446
3.90582
3.74338
3.59216
3.44873
3.31094
3.17734
3.04687
2.9187
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41886
1.29414
1.16957
1.04516
0.920967
0.796998
0.673324
0.549885
0.426939
0.303749
0.182546
0.0540617
5.61779
4.50345
4.27788
4.08444
3.90581
3.74337
3.59215
3.44873
3.31094
3.17734
3.04688
2.91871
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16956
1.04515
0.920973
0.797028
0.673384
0.549979
0.427009
0.303787
0.18243
0.0539165
5.47726
4.53456
4.28843
4.09071
3.91103
3.74663
3.59417
3.45001
3.31164
3.17756
3.04668
2.91813
2.79124
2.66544
2.54032
2.41557
2.29099
2.16643
2.04182
1.91715
1.79242
1.66765
1.54289
1.41816
1.29353
1.16902
1.04468
0.92054
0.796621
0.672986
0.549599
0.426627
0.303722
0.181864
0.0582816
5.61516
4.50346
4.27796
4.0845
3.90586
3.7434
3.59217
3.44874
3.31095
3.17734
3.04688
2.9187
2.79212
2.66655
2.54158
2.4169
2.29231
2.1677
2.04302
1.91825
1.7934
1.66853
1.54367
1.41885
1.29414
1.16956
1.04515
0.920973
0.797027
0.673383
0.549977
0.427009
0.303792
0.182433
0.0539471
5.61424
4.50386
4.27807
4.08457
3.90589
3.74342
3.59218
3.44874
3.31094
3.17733
3.04686
2.91869
2.79211
2.66654
2.54157
2.41689
2.29231
2.1677
2.04301
1.91824
1.7934
1.66853
1.54366
1.41885
1.29414
1.16956
1.04516
0.920967
0.796997
0.673324
0.549884
0.426938
0.303751
0.182544
0.0540899
5.4153
4.55513
4.29567
4.09375
3.91385
3.74855
3.59549
3.451
3.3124
3.17812
3.04706
2.91837
2.79134
2.66543
2.54022
2.41542
2.29079
2.16621
2.04159
1.91693
1.7922
1.66745
1.54271
1.418
1.29339
1.1689
1.04458
0.920458
0.796566
0.672952
0.549596
0.426611
0.303864
0.181645
0.0614127
5.41927
4.55456
4.295
4.09342
3.91357
3.74836
3.59535
3.45089
3.31232
3.17806
3.04702
2.91833
2.79131
2.66541
2.54021
2.41541
2.29078
2.1662
2.04159
1.91692
1.7922
1.66745
1.5427
1.418
1.29338
1.16889
1.04457
0.920449
0.796555
0.672941
0.549586
0.426607
0.303855
0.181666
0.0611492
5.38686
4.57116
4.29591
4.09522
3.91451
3.74914
3.5961
3.45158
3.31295
3.17863
3.04755
2.91884
2.7918
2.66588
2.54067
2.41585
2.2912
2.1666
2.04197
1.91728
1.79254
1.66777
1.543
1.41828
1.29365
1.16914
1.0448
0.920661
0.796745
0.673114
0.549746
0.42678
0.30398
0.181977
0.0597698
5.40319
4.55909
4.29646
4.09433
3.91424
3.74883
3.5957
3.45117
3.31253
3.17823
3.04715
2.91845
2.79141
2.66549
2.54028
2.41547
2.29084
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16893
1.04461
0.920486
0.796591
0.672976
0.549619
0.426639
0.303896
0.181686
0.0613744
5.47552
4.54379
4.29229
4.09219
3.91249
3.7476
3.59481
3.45047
3.31198
3.17779
3.04682
2.91819
2.79121
2.66535
2.54018
2.4154
2.29079
2.16622
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.2934
1.16891
1.04458
0.920455
0.796557
0.67294
0.549575
0.426596
0.303782
0.181702
0.0601257
5.53097
4.52428
4.28295
4.08751
3.90843
3.74492
3.59305
3.44924
3.31114
3.17727
3.04656
2.91816
2.79139
2.66568
2.54063
2.41593
2.29136
2.1668
2.04218
1.91748
1.79272
1.66792
1.54312
1.41837
1.29371
1.16917
1.0448
0.920643
0.79671
0.673071
0.549688
0.42674
0.303754
0.182129
0.0562831
5.40493
4.55872
4.29621
4.0942
3.91413
3.74876
3.59565
3.45113
3.31251
3.17821
3.04714
2.91844
2.7914
2.66549
2.54028
2.41547
2.29084
2.16626
2.04164
1.91697
1.79225
1.66749
1.54275
1.41804
1.29343
1.16894
1.04461
0.920491
0.796595
0.672979
0.549623
0.426644
0.303899
0.181699
0.0612931
5.26372
4.63317
4.31096
4.10371
3.92098
3.7533
3.59911
3.4541
3.31514
3.18059
3.04933
2.92046
2.79327
2.66722
2.54188
2.41696
2.29222
2.16755
2.04286
1.91812
1.79333
1.66852
1.54372
1.41897
1.29432
1.16979
1.04543
0.921263
0.797328
0.673677
0.550306
0.427326
0.304634
0.182418
0.0627759
5.50473
4.52803
4.28444
4.08863
3.90911
3.74543
3.59343
3.44951
3.31133
3.1774
3.04666
2.91824
2.79145
2.66575
2.54069
2.41599
2.29142
2.16686
2.04225
1.91755
1.79279
1.66799
1.54319
1.41844
1.29377
1.16924
1.04487
0.920708
0.796766
0.673111
0.549693
0.426721
0.303692
0.182097
0.0563234
5.34669
4.58466
4.30141
4.09799
3.91673
3.75066
3.5972
3.45245
3.31364
3.17919
3.04799
2.91918
2.79206
2.66607
2.54081
2.41594
2.29127
2.16665
2.04201
1.91731
1.79256
1.66779
1.54302
1.4183
1.29367
1.16917
1.04483
0.920691
0.796777
0.673147
0.549783
0.426811
0.304069
0.181901
0.0613298
5.44119
4.54977
4.29046
4.09265
3.91215
3.74753
3.59496
3.45068
3.31222
3.17806
3.04713
2.91855
2.79163
2.66581
2.54067
2.41591
2.2913
2.16672
2.04209
1.9174
1.79264
1.66785
1.54307
1.41833
1.29368
1.16916
1.04481
0.920654
0.796724
0.673079
0.549677
0.426704
0.303754
0.182002
0.0575359
5.46765
4.55845
4.28686
4.09181
3.91046
3.74684
3.59504
3.4512
3.31307
3.17914
3.04837
2.91989
2.79301
2.66718
2.54198
2.41711
2.29238
2.16766
2.0429
1.91808
1.79321
1.66832
1.54345
1.41864
1.29393
1.16937
1.04497
0.920792
0.796839
0.673182
0.549778
0.426841
0.303742
0.182439
0.0540397
5.46666
4.55902
4.28703
4.09204
3.91059
3.74693
3.59511
3.45124
3.31309
3.17915
3.04837
2.91989
2.79301
2.66718
2.54199
2.41712
2.2924
2.16768
2.04292
1.9181
1.79323
1.66834
1.54347
1.41866
1.29395
1.16938
1.04499
0.920812
0.796856
0.673187
0.549739
0.426757
0.303565
0.182246
0.0539903
5.47895
4.5358
4.28735
4.09045
3.91052
3.74635
3.59405
3.44995
3.31164
3.1776
3.04677
2.91828
2.79143
2.66567
2.54058
2.41585
2.29127
2.1667
2.04209
1.91741
1.79265
1.66787
1.54308
1.41834
1.29369
1.16916
1.04481
0.920652
0.796719
0.673071
0.549664
0.426692
0.303711
0.18202
0.0570656
5.43472
4.57258
4.28917
4.09397
3.91203
3.74774
3.59561
3.45158
3.31331
3.1793
3.04845
2.91993
2.79302
2.66717
2.54196
2.41709
2.29237
2.16766
2.04291
1.9181
1.79324
1.66836
1.5435
1.41869
1.29399
1.16943
1.04504
0.920865
0.796912
0.673245
0.54981
0.426828
0.303708
0.182238
0.0548479
5.27585
4.63942
4.30745
4.10376
3.92034
3.75269
3.59874
3.45382
3.31493
3.18045
3.04926
2.92047
2.79336
2.66739
2.54213
2.41727
2.29259
2.16796
2.04329
1.91856
1.79378
1.66895
1.54413
1.41935
1.29466
1.1701
1.0457
0.921502
0.797531
0.673844
0.550426
0.427415
0.304589
0.182534
0.0597382
5.33876
4.59942
4.30045
4.09851
3.91673
3.75067
3.5974
3.45278
3.31407
3.17967
3.04851
2.91972
2.79261
2.66662
2.54135
2.41647
2.29177
2.16713
2.04246
1.91773
1.79295
1.66815
1.54335
1.41861
1.29395
1.16943
1.04507
0.920907
0.796974
0.673326
0.549947
0.426972
0.304173
0.182166
0.0598466
5.39801
4.57933
4.29304
4.09502
3.91351
3.74855
3.59595
3.45166
3.31318
3.17898
3.04799
2.91934
2.79235
2.66647
2.54127
2.41645
2.29178
2.16714
2.04247
1.91772
1.79293
1.6681
1.54329
1.41852
1.29386
1.16932
1.04495
0.920787
0.79685
0.673201
0.549812
0.42685
0.303919
0.182206
0.057038
5.27452
4.63812
4.3081
4.10379
3.92044
3.7528
3.59881
3.45387
3.31497
3.18047
3.04927
2.92046
2.79334
2.66735
2.54207
2.41718
2.29248
2.16781
2.04312
1.91837
1.79357
1.66874
1.54392
1.41914
1.29446
1.16991
1.04552
0.921337
0.797377
0.673701
0.550293
0.427291
0.30449
0.182423
0.0601468
5.49028
4.54444
4.29018
4.09101
3.91159
3.74701
3.59443
3.45022
3.31182
3.1777
3.04676
2.91817
2.79123
2.66538
2.54023
2.41546
2.29086
2.16629
2.04168
1.91702
1.79229
1.66754
1.54278
1.41808
1.29345
1.16896
1.04463
0.920496
0.79659
0.672971
0.549612
0.42665
0.303835
0.181835
0.0594771
5.51295
4.52868
4.28329
4.08849
3.90854
3.74527
3.59352
3.4497
3.31159
3.17773
3.04705
2.9187
2.79197
2.6663
2.54125
2.41654
2.29194
2.16734
2.04267
1.91793
1.79311
1.66827
1.54343
1.41864
1.29395
1.1694
1.04501
0.920837
0.796882
0.673215
0.549774
0.426805
0.30364
0.182332
0.0545055
5.51335
4.52852
4.28312
4.08832
3.90844
3.74521
3.59348
3.44969
3.3116
3.17775
3.04708
2.91874
2.79201
2.66633
2.54129
2.41657
2.29196
2.16735
2.04268
1.91793
1.79312
1.66827
1.54343
1.41864
1.29395
1.16939
1.045
0.920827
0.796879
0.67323
0.549828
0.426884
0.303771
0.182433
0.0544641
5.44798
4.54327
4.29184
4.09223
3.91238
3.74752
3.59477
3.45044
3.31196
3.17778
3.04682
2.9182
2.79124
2.66539
2.54023
2.41545
2.29084
2.16628
2.04167
1.917
1.79228
1.66752
1.54277
1.41806
1.29344
1.16894
1.04461
0.920478
0.796573
0.672951
0.549581
0.426606
0.303773
0.181755
0.0596492
5.53629
4.51923
4.2817
4.08713
3.90756
3.74453
3.59293
3.44924
3.31124
3.17747
3.04687
2.91859
2.79192
2.66629
2.54128
2.41659
2.292
2.16741
2.04274
1.91799
1.79317
1.66832
1.54348
1.41868
1.29399
1.16943
1.04504
0.920857
0.796898
0.673229
0.549788
0.426825
0.303649
0.182383
0.0543308
5.53766
4.51796
4.2814
4.08695
3.9075
3.74451
3.59293
3.44926
3.31126
3.1775
3.0469
2.91862
2.79195
2.66632
2.54131
2.41661
2.29202
2.16742
2.04275
1.918
1.79318
1.66833
1.54349
1.41869
1.29399
1.16943
1.04504
0.920859
0.796911
0.673263
0.549861
0.426915
0.303775
0.182445
0.0542991
5.43158
4.55044
4.29482
4.09329
3.91351
3.74831
3.5953
3.45085
3.31228
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04156
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16887
1.04455
0.920432
0.796541
0.672931
0.549573
0.426586
0.303824
0.181613
0.0613009
5.49655
4.54261
4.28937
4.09066
3.91125
3.74678
3.59427
3.45011
3.31174
3.17764
3.04673
2.91816
2.79123
2.6654
2.54026
2.41549
2.29089
2.16633
2.04173
1.91706
1.79233
1.66758
1.54282
1.41811
1.29349
1.16899
1.04465
0.920517
0.796608
0.672986
0.549624
0.426664
0.303832
0.181875
0.0590925
5.5147
4.52739
4.28405
4.08817
3.90884
3.74521
3.59327
3.44941
3.31128
3.17739
3.04666
2.91826
2.79148
2.66577
2.54072
2.41601
2.29144
2.16688
2.04226
1.91756
1.7928
1.668
1.5432
1.41844
1.29378
1.16924
1.04487
0.920712
0.796776
0.673134
0.549748
0.426797
0.303809
0.182187
0.0563393
5.4121
4.55757
4.29501
4.09378
3.91372
3.74848
3.59547
3.451
3.31241
3.17814
3.0471
2.91841
2.7914
2.6655
2.5403
2.41549
2.29087
2.16628
2.04167
1.917
1.79227
1.66752
1.54276
1.41806
1.29344
1.16895
1.04462
0.920497
0.796597
0.672979
0.549623
0.426652
0.30389
0.181758
0.0607063
5.22926
4.65954
4.31425
4.10621
3.92302
3.75437
3.59976
3.45458
3.31552
3.1809
3.0496
2.92072
2.79355
2.66752
2.54222
2.41734
2.29264
2.16801
2.04334
1.91863
1.79385
1.66905
1.54425
1.4195
1.29483
1.17029
1.04592
0.92174
0.797787
0.674115
0.550723
0.427718
0.304995
0.182848
0.0621789
5.46078
4.5504
4.29363
4.09253
3.913
3.74798
3.59508
3.45069
3.31216
3.17793
3.04692
2.91825
2.79125
2.66536
2.54016
2.41536
2.29074
2.16616
2.04155
1.91689
1.79216
1.66741
1.54267
1.41796
1.29335
1.16886
1.04454
0.920422
0.796531
0.672919
0.549564
0.426583
0.303825
0.18164
0.0610769
5.45644
4.55093
4.29442
4.09291
3.91333
3.74821
3.59524
3.45082
3.31226
3.17801
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54268
1.41797
1.29336
1.16887
1.04455
0.920434
0.796544
0.672934
0.549576
0.426587
0.303834
0.181612
0.0614156
5.29586
4.61582
4.3068
4.10165
3.91924
3.75227
3.59847
3.4536
3.31474
3.18024
3.04901
2.92016
2.793
2.66696
2.54165
2.41674
2.29202
2.16736
2.04268
1.91794
1.79316
1.66836
1.54356
1.41882
1.29416
1.16964
1.04528
0.921121
0.797186
0.673535
0.550156
0.427173
0.304435
0.182269
0.061694
5.4255
4.57714
4.29025
4.09438
3.91244
3.74801
3.59581
3.45175
3.31346
3.17942
3.04855
2.91999
2.79305
2.66718
2.54195
2.41707
2.29234
2.16764
2.04289
1.91808
1.79323
1.66835
1.5435
1.4187
1.294
1.16944
1.04505
0.920878
0.796929
0.673273
0.549871
0.426916
0.303885
0.182385
0.0551858
5.4654
4.54921
4.29304
4.09228
3.91279
3.74783
3.59498
3.45062
3.31211
3.17789
3.04689
2.91823
2.79123
2.66535
2.54016
2.41536
2.29074
2.16616
2.04155
1.91689
1.79216
1.66741
1.54266
1.41796
1.29335
1.16886
1.04454
0.920417
0.796525
0.672913
0.549559
0.426582
0.303819
0.181655
0.060877
5.58623
4.50517
4.27822
4.08487
3.90619
3.74359
3.59228
3.44879
3.31095
3.1773
3.04679
2.91858
2.79197
2.66638
2.5414
2.41671
2.29213
2.16753
2.04286
1.9181
1.79327
1.66841
1.54355
1.41875
1.29404
1.16947
1.04507
0.920894
0.796946
0.673301
0.549902
0.426951
0.303791
0.182417
0.0542664
5.57755
4.50808
4.27907
4.08525
3.90634
3.74368
3.59232
3.4488
3.31094
3.17727
3.04676
2.91855
2.79194
2.66635
2.54138
2.4167
2.29212
2.16753
2.04286
1.9181
1.79328
1.66842
1.54356
1.41876
1.29406
1.16949
1.04509
0.920904
0.796939
0.673268
0.549829
0.426877
0.30371
0.182451
0.0543379
5.57253
4.51678
4.28092
4.08633
3.90725
3.74422
3.59264
3.44899
3.31101
3.17725
3.04665
2.91836
2.79168
2.66606
2.54106
2.41638
2.29181
2.16724
2.0426
1.91788
1.79308
1.66824
1.54341
1.41863
1.29394
1.16939
1.045
0.920824
0.796868
0.673201
0.549767
0.4268
0.303689
0.182283
0.0551346
5.48204
4.53487
4.28879
4.09082
3.91117
3.74671
3.59422
3.45003
3.31166
3.17756
3.04666
2.91811
2.7912
2.6654
2.54027
2.41552
2.29093
2.16637
2.04176
1.91709
1.79236
1.6676
1.54284
1.41812
1.29349
1.16898
1.04464
0.920504
0.796589
0.672958
0.549575
0.426603
0.303712
0.181826
0.0585063
5.58005
4.51704
4.28098
4.08621
3.90721
3.74418
3.59261
3.44899
3.31103
3.17729
3.0467
2.91841
2.79173
2.66611
2.54111
2.41642
2.29186
2.16728
2.04264
1.91791
1.79311
1.66827
1.54344
1.41865
1.29396
1.1694
1.04501
0.920837
0.796891
0.673243
0.549848
0.4269
0.303824
0.182362
0.0551269
5.40251
4.56079
4.29549
4.09486
3.91419
3.74885
3.59582
3.45129
3.31266
3.17836
3.0473
2.91861
2.7916
2.6657
2.5405
2.4157
2.29107
2.16649
2.04187
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04473
0.920594
0.79668
0.673048
0.549671
0.426698
0.303873
0.181869
0.0597216
5.46497
4.53883
4.28874
4.09112
3.91113
3.74672
3.59427
3.45009
3.31171
3.17762
3.04674
2.9182
2.79131
2.66551
2.5404
2.41565
2.29106
2.16649
2.04188
1.9172
1.79246
1.66768
1.5429
1.41818
1.29353
1.16902
1.04467
0.920528
0.796604
0.672965
0.549571
0.426601
0.303667
0.181886
0.0576956
5.43514
4.54981
4.29479
4.09332
3.91351
3.74831
3.5953
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.5402
2.4154
2.29077
2.1662
2.04159
1.91692
1.7922
1.66745
1.54271
1.418
1.29339
1.1689
1.04458
0.920457
0.796566
0.672954
0.549596
0.426608
0.303842
0.181638
0.0612552
5.42304
4.55658
4.29223
4.093
3.91274
3.74786
3.59512
3.45078
3.31229
3.17809
3.04711
2.91848
2.79151
2.66565
2.54049
2.4157
2.29108
2.1665
2.04188
1.9172
1.79246
1.66769
1.54293
1.41821
1.29357
1.16907
1.04473
0.920585
0.796669
0.67304
0.549671
0.42671
0.303867
0.181954
0.058862
5.36492
4.58829
4.29719
4.09684
3.91534
3.74978
3.59678
3.45228
3.31365
3.17932
3.04822
2.91948
2.79241
2.66646
2.54122
2.41637
2.29169
2.16706
2.04239
1.91767
1.79289
1.66808
1.54329
1.41854
1.29388
1.16935
1.04499
0.920833
0.7969
0.673254
0.549871
0.426901
0.304057
0.182145
0.0588911
5.368
4.57534
4.29906
4.09686
3.9158
3.75001
3.59671
3.45203
3.31328
3.17888
3.04773
2.91897
2.79188
2.66593
2.5407
2.41586
2.2912
2.1666
2.04196
1.91727
1.79253
1.66776
1.54299
1.41827
1.29364
1.16914
1.0448
0.920663
0.796748
0.673116
0.549745
0.426772
0.303994
0.181899
0.0606228
5.4785
4.54732
4.28587
4.09065
3.90997
3.74634
3.59443
3.4505
3.31229
3.17833
3.04755
2.91911
2.79229
2.66653
2.54142
2.41664
2.292
2.16736
2.04267
1.9179
1.79308
1.66823
1.54339
1.41861
1.29392
1.16936
1.04498
0.920806
0.796859
0.673207
0.549805
0.426861
0.303778
0.182407
0.0546362
5.51839
4.52628
4.28447
4.08859
3.90914
3.74544
3.59343
3.44951
3.31133
3.1774
3.04665
2.91823
2.79144
2.66573
2.54068
2.41597
2.29141
2.16685
2.04224
1.91755
1.79279
1.66799
1.54319
1.41844
1.29378
1.16925
1.04488
0.920718
0.796776
0.673121
0.549705
0.426732
0.303713
0.182096
0.0564911
5.54001
4.52609
4.28422
4.08831
3.90899
3.74533
3.59334
3.44943
3.31126
3.17733
3.04658
2.91816
2.79137
2.66566
2.5406
2.4159
2.29133
2.16678
2.04216
1.91748
1.79272
1.66792
1.54313
1.41838
1.29372
1.16919
1.04483
0.920664
0.796724
0.673072
0.549658
0.426687
0.303674
0.182047
0.0565171
5.48289
4.5484
4.28545
4.09056
3.90968
3.74631
3.5946
3.45079
3.31266
3.17874
3.04796
2.91949
2.79263
2.66683
2.54167
2.41685
2.29216
2.16748
2.04276
1.91796
1.79312
1.66824
1.54339
1.41859
1.29389
1.16933
1.04494
0.920768
0.796816
0.673148
0.5497
0.426722
0.30352
0.182247
0.0538917
5.48259
4.54801
4.2853
4.09043
3.90962
3.74628
3.59458
3.45078
3.31266
3.17874
3.04796
2.91949
2.79263
2.66682
2.54165
2.41682
2.29213
2.16745
2.04272
1.91792
1.79308
1.66821
1.54335
1.41855
1.29385
1.16929
1.0449
0.920728
0.796779
0.673128
0.549728
0.426797
0.30369
0.18242
0.0539284
5.22134
4.66193
4.31612
4.10718
3.92364
3.75478
3.60005
3.45478
3.31567
3.18102
3.04969
2.92079
2.7936
2.66756
2.54225
2.41736
2.29265
2.16801
2.04335
1.91863
1.79387
1.66908
1.54429
1.41955
1.2949
1.17037
1.046
0.921828
0.797878
0.674207
0.550811
0.427803
0.305082
0.182912
0.0625284
5.51478
4.53063
4.28341
4.08855
3.90844
3.74535
3.59371
3.44994
3.31185
3.178
3.04733
2.91897
2.79223
2.66654
2.54148
2.41673
2.2921
2.16747
2.04278
1.91801
1.79318
1.66832
1.54346
1.41867
1.29397
1.16941
1.04502
0.920843
0.796887
0.673216
0.549766
0.426792
0.303574
0.182359
0.053878
5.51611
4.52964
4.28323
4.08846
3.90842
3.74534
3.5937
3.44993
3.31184
3.17799
3.04731
2.91896
2.79222
2.66653
2.54146
2.41672
2.29209
2.16746
2.04277
1.918
1.79317
1.66831
1.54346
1.41866
1.29396
1.1694
1.04501
0.920831
0.796882
0.673231
0.54983
0.426896
0.303755
0.182514
0.0539
5.48915
4.53634
4.28529
4.08994
3.90981
3.74609
3.59407
3.45008
3.31184
3.17787
3.0471
2.91866
2.79186
2.66614
2.54107
2.41633
2.29174
2.16714
2.04249
1.91777
1.79298
1.66815
1.54333
1.41856
1.29388
1.16934
1.04497
0.920795
0.796848
0.673187
0.549758
0.426786
0.303692
0.182227
0.055461
5.4809
4.53393
4.28802
4.09054
3.91085
3.74651
3.5941
3.44996
3.31161
3.17754
3.04667
2.91814
2.79125
2.66546
2.54035
2.41561
2.29102
2.16646
2.04186
1.91719
1.79245
1.66768
1.54291
1.41818
1.29355
1.16904
1.04469
0.920549
0.796627
0.67299
0.549599
0.426627
0.303708
0.181883
0.0580087
5.34238
4.58651
4.30187
4.09801
3.91688
3.75076
3.59726
3.4525
3.31368
3.17922
3.04801
2.91919
2.79206
2.66607
2.54079
2.41593
2.29125
2.16663
2.04199
1.91729
1.79254
1.66777
1.54301
1.41829
1.29367
1.16916
1.04483
0.920691
0.79678
0.673154
0.549797
0.426826
0.304108
0.181892
0.0617604
5.44331
4.56275
4.28861
4.0926
3.91144
3.7473
3.59515
3.4511
3.31279
3.17874
3.04787
2.91933
2.79243
2.66661
2.54145
2.41663
2.29197
2.16732
2.04262
1.91786
1.79304
1.66819
1.54336
1.41858
1.2939
1.16935
1.04497
0.920803
0.79686
0.673209
0.549811
0.426859
0.303831
0.182334
0.0554126
5.48555
4.5351
4.28644
4.08947
3.91005
3.74598
3.59375
3.44973
3.31147
3.17747
3.04664
2.91814
2.79127
2.6655
2.5404
2.41566
2.29107
2.16651
2.04191
1.91723
1.79249
1.66771
1.54294
1.41821
1.29357
1.16905
1.0447
0.920557
0.796635
0.673003
0.54963
0.426677
0.303769
0.181992
0.057561
5.50394
4.54057
4.28855
4.09029
3.9109
3.74654
3.59411
3.44999
3.31165
3.17758
3.04669
2.91814
2.79122
2.66541
2.54028
2.41552
2.29093
2.16636
2.04176
1.91709
1.79236
1.6676
1.54284
1.41813
1.2935
1.169
1.04466
0.920523
0.79661
0.672986
0.549621
0.426664
0.303815
0.1819
0.0587026
5.43603
4.54657
4.2928
4.09267
3.91276
3.74778
3.59495
3.45058
3.31208
3.17787
3.04688
2.91825
2.79127
2.6654
2.54023
2.41545
2.29084
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16894
1.04461
0.920483
0.796581
0.672961
0.549594
0.426618
0.303802
0.181744
0.0600092
5.42309
4.56449
4.29117
4.09394
3.91277
3.74811
3.5956
3.45132
3.31285
3.17868
3.04772
2.91911
2.79216
2.66631
2.54114
2.41634
2.2917
2.16708
2.04241
1.91768
1.79289
1.66807
1.54326
1.4185
1.29383
1.1693
1.04493
0.920771
0.796832
0.673179
0.549765
0.426788
0.303788
0.18212
0.0567253
5.48088
4.53885
4.28568
4.09003
3.90982
3.746
3.59394
3.44995
3.31171
3.17773
3.04695
2.91851
2.79171
2.66598
2.54091
2.41618
2.29159
2.16701
2.04237
1.91765
1.79286
1.66805
1.54323
1.41847
1.2938
1.16926
1.04489
0.92072
0.796775
0.673118
0.549695
0.426723
0.303649
0.182146
0.0556389
5.41343
4.55458
4.29591
4.09413
3.914
3.74864
3.59555
3.45104
3.31243
3.17814
3.04709
2.91839
2.79136
2.66546
2.54026
2.41545
2.29082
2.16624
2.04163
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16893
1.0446
0.920482
0.796586
0.672972
0.549612
0.42663
0.303865
0.181682
0.0611293
5.50419
4.52933
4.28403
4.08856
3.9088
3.74523
3.59333
3.44945
3.31131
3.17742
3.0467
2.91831
2.79155
2.66586
2.54082
2.41612
2.29154
2.16697
2.04234
1.91763
1.79285
1.66803
1.54322
1.41845
1.29378
1.16924
1.04487
0.920701
0.796756
0.673098
0.549674
0.426705
0.303631
0.182138
0.0556156
5.41598
4.55457
4.29581
4.09385
3.91389
3.74857
3.5955
3.451
3.3124
3.17812
3.04706
2.91837
2.79134
2.66543
2.54023
2.41542
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.2934
1.16891
1.04458
0.920463
0.79657
0.672958
0.5496
0.426615
0.303864
0.181644
0.061406
5.28405
4.62439
4.30811
4.1026
3.91986
3.75258
3.59864
3.45372
3.31482
3.18031
3.04907
2.92022
2.79305
2.66702
2.5417
2.41679
2.29207
2.1674
2.04271
1.91797
1.79319
1.66837
1.54357
1.41883
1.29417
1.16964
1.04528
0.921118
0.79718
0.673527
0.550146
0.427163
0.304424
0.182277
0.0615866
5.40546
4.57969
4.29199
4.09485
3.91314
3.74836
3.5959
3.4517
3.31329
3.17914
3.04819
2.91957
2.79261
2.66673
2.54152
2.41668
2.29199
2.16733
2.04263
1.91787
1.79305
1.66821
1.54337
1.4186
1.29392
1.16937
1.045
0.920832
0.796891
0.673239
0.549845
0.426885
0.303917
0.182284
0.0563086
5.5051
4.53466
4.2838
4.08901
3.90879
3.7456
3.5939
3.4501
3.31198
3.1781
3.04739
2.919
2.79224
2.66652
2.54144
2.41668
2.29205
2.16741
2.04272
1.91795
1.79312
1.66826
1.54342
1.41862
1.29393
1.16937
1.04498
0.920799
0.796851
0.6732
0.549798
0.426863
0.303739
0.18247
0.0540378
5.49701
4.54013
4.28475
4.08983
3.90932
3.74603
3.5943
3.45045
3.3123
3.17838
3.04763
2.91921
2.79241
2.66666
2.54155
2.41677
2.29212
2.16747
2.04277
1.91799
1.79316
1.66829
1.54344
1.41865
1.29395
1.16939
1.04501
0.920832
0.796877
0.673209
0.54976
0.426783
0.30358
0.182322
0.0540093
5.28548
4.6202
4.30824
4.10207
3.91974
3.75258
3.59863
3.45371
3.31479
3.18026
3.04898
2.9201
2.79291
2.66685
2.54152
2.4166
2.29188
2.16722
2.04254
1.91781
1.79303
1.66823
1.54344
1.4187
1.29406
1.16954
1.04518
0.921029
0.797101
0.673459
0.550094
0.427119
0.304421
0.182207
0.0623939
5.35127
4.58341
4.30075
4.09771
3.91642
3.7504
3.59699
3.45227
3.31348
3.17905
3.04787
2.91908
2.79197
2.666
2.54074
2.41589
2.29122
2.1666
2.04196
1.91727
1.79252
1.66774
1.54298
1.41826
1.29363
1.16912
1.04479
0.920646
0.796732
0.673101
0.549735
0.426765
0.304011
0.181881
0.0610025
5.52454
4.5243
4.28346
4.08796
3.90867
3.74512
3.5932
3.44933
3.31118
3.17728
3.04654
2.91813
2.79136
2.66565
2.5406
2.4159
2.29133
2.16677
2.04216
1.91746
1.7927
1.6679
1.5431
1.41835
1.29369
1.16916
1.04479
0.920629
0.79669
0.673037
0.549622
0.426653
0.303628
0.182035
0.0562634
5.45495
4.55108
4.29431
4.09283
3.91326
3.74816
3.59521
3.45079
3.31224
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29335
1.16886
1.04454
0.920422
0.796532
0.672921
0.549564
0.426577
0.303824
0.18161
0.0613425
5.43736
4.56492
4.28896
4.09323
3.91184
3.74755
3.59532
3.4512
3.31283
3.17874
3.04783
2.91927
2.79236
2.66654
2.54137
2.41656
2.2919
2.16726
2.04257
1.91781
1.793
1.66816
1.54333
1.41855
1.29387
1.16932
1.04495
0.920783
0.796838
0.67318
0.549754
0.426778
0.303699
0.182174
0.0554663
5.45688
4.54229
4.29181
4.09208
3.91235
3.74749
3.59473
3.4504
3.31192
3.17774
3.04676
2.91814
2.79117
2.66531
2.54014
2.41536
2.29075
2.16618
2.04157
1.9169
1.79218
1.66742
1.54267
1.41796
1.29334
1.16885
1.04452
0.920396
0.796496
0.67288
0.549514
0.42654
0.30372
0.181667
0.0598914
5.38444
4.57308
4.29627
4.09594
3.91472
3.74928
3.59625
3.45171
3.31307
3.17875
3.04767
2.91896
2.79192
2.66601
2.5408
2.41597
2.29132
2.16672
2.04208
1.91738
1.79262
1.66784
1.54306
1.41833
1.29369
1.16917
1.04483
0.920679
0.796755
0.673114
0.549727
0.426752
0.303895
0.181972
0.0590583
5.48443
4.53774
4.28745
4.08987
3.91045
3.74623
3.59391
3.44984
3.31154
3.17751
3.04665
2.91812
2.79124
2.66544
2.54033
2.41558
2.29099
2.16643
2.04183
1.91715
1.79242
1.66765
1.54289
1.41817
1.29353
1.16902
1.04468
0.920537
0.796619
0.672991
0.549622
0.426667
0.303789
0.181941
0.0581029
5.41887
4.55213
4.29517
4.0936
3.9137
3.74844
3.59541
3.45094
3.31235
3.17808
3.04703
2.91834
2.79132
2.66542
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.54271
1.41801
1.29339
1.1689
1.04458
0.920455
0.796563
0.67295
0.549592
0.426608
0.303846
0.181649
0.0612307
5.60682
4.50469
4.27833
4.08473
3.90602
3.74349
3.59223
3.44878
3.31097
3.17735
3.04687
2.91868
2.79209
2.66652
2.54154
2.41687
2.29228
2.16768
2.04299
1.91823
1.79339
1.66852
1.54366
1.41884
1.29413
1.16955
1.04515
0.920969
0.797021
0.673376
0.549972
0.427009
0.303811
0.182447
0.0540677
5.60494
4.50576
4.2785
4.08482
3.90605
3.74351
3.59223
3.44877
3.31095
3.17732
3.04684
2.91865
2.79206
2.66649
2.54152
2.41684
2.29226
2.16766
2.04298
1.91821
1.79338
1.66851
1.54364
1.41884
1.29413
1.16955
1.04515
0.920957
0.796988
0.673315
0.549875
0.426926
0.303746
0.182521
0.0541853
5.49125
4.5446
4.28525
4.0902
3.90946
3.74617
3.59447
3.45065
3.31251
3.17858
3.04782
2.91938
2.79254
2.66677
2.54163
2.41683
2.29216
2.16749
2.04277
1.91798
1.79314
1.66827
1.54341
1.41861
1.29392
1.16936
1.04497
0.920795
0.796841
0.673172
0.549721
0.426742
0.303526
0.182284
0.0538006
5.49231
4.54398
4.28511
4.09009
3.9094
3.74613
3.59442
3.45061
3.31248
3.17857
3.04781
2.91937
2.79254
2.66677
2.54164
2.41684
2.29216
2.1675
2.04278
1.91799
1.79315
1.66828
1.54342
1.41862
1.29392
1.16936
1.04497
0.92079
0.796839
0.673186
0.549784
0.426854
0.303735
0.182492
0.0538633
5.52336
4.52354
4.28235
4.08746
3.90793
3.74472
3.59303
3.4493
3.31127
3.17747
3.04683
2.91852
2.79181
2.66616
2.54114
2.41644
2.29186
2.16727
2.04262
1.91788
1.79308
1.66824
1.5434
1.41862
1.29393
1.16937
1.04499
0.920812
0.796866
0.673218
0.54982
0.426873
0.303783
0.182374
0.0548656
5.47329
4.54723
4.29187
4.09178
3.91238
3.74756
3.5948
3.45049
3.31201
3.17783
3.04685
2.91821
2.79123
2.66536
2.54018
2.41539
2.29078
2.1662
2.0416
1.91693
1.79221
1.66745
1.54271
1.418
1.29339
1.1689
1.04457
0.920449
0.796553
0.67294
0.549586
0.426615
0.303838
0.181719
0.06046
5.38207
4.57132
4.29699
4.09603
3.91497
3.74944
3.59631
3.45172
3.31303
3.17869
3.04759
2.91886
2.79181
2.66589
2.54068
2.41585
2.29121
2.16661
2.04198
1.91728
1.79254
1.66776
1.54299
1.41826
1.29363
1.16912
1.04478
0.920638
0.796719
0.673083
0.549703
0.42673
0.303905
0.181913
0.0596578
5.5223
4.52443
4.28255
4.08768
3.90802
3.74478
3.59308
3.44933
3.31128
3.17747
3.04683
2.91851
2.79181
2.66616
2.54114
2.41645
2.29187
2.16728
2.04263
1.9179
1.79309
1.66825
1.54342
1.41864
1.29395
1.16939
1.04501
0.92083
0.796874
0.673208
0.549772
0.426804
0.30367
0.182304
0.0548835
5.27512
4.64117
4.30729
4.10342
3.92022
3.75261
3.59868
3.45379
3.31492
3.18045
3.04927
2.92048
2.79337
2.6674
2.54214
2.41727
2.29259
2.16795
2.04328
1.91856
1.79377
1.66894
1.54412
1.41934
1.29465
1.17009
1.04569
0.921495
0.797529
0.673848
0.550443
0.42744
0.304634
0.18259
0.0597759
5.51145
4.53556
4.28669
4.08939
3.91011
3.74601
3.59375
3.44972
3.31146
3.17744
3.0466
2.91808
2.79121
2.66542
2.54031
2.41556
2.29097
2.16641
2.04181
1.91713
1.7924
1.66763
1.54286
1.41814
1.29351
1.169
1.04465
0.920511
0.796593
0.672966
0.549597
0.426644
0.303759
0.18193
0.0579304
5.56073
4.51109
4.27989
4.08577
3.90668
3.7439
3.59247
3.4489
3.311
3.17731
3.04677
2.91854
2.79191
2.66632
2.54133
2.41665
2.29207
2.16748
2.04281
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16947
1.04508
0.920888
0.796925
0.673255
0.549815
0.42686
0.303692
0.18243
0.0543603
5.5649
4.50951
4.27956
4.08559
3.9066
3.74385
3.59245
3.4489
3.31102
3.17733
3.0468
2.91858
2.79195
2.66635
2.54137
2.41669
2.29211
2.16751
2.04284
1.91808
1.79326
1.6684
1.54355
1.41875
1.29404
1.16947
1.04508
0.920898
0.79695
0.673304
0.549903
0.426951
0.303795
0.182435
0.0542908
5.41844
4.5603
4.29239
4.09398
3.91311
3.74823
3.59553
3.45117
3.31264
3.17842
3.04743
2.9188
2.79184
2.66598
2.54082
2.41603
2.2914
2.1668
2.04217
1.91746
1.7927
1.66791
1.54312
1.41838
1.29373
1.16921
1.04485
0.9207
0.79677
0.673123
0.549723
0.426747
0.303814
0.182028
0.0578095
5.54602
4.51567
4.28108
4.08663
3.90717
3.74432
3.59283
3.4492
3.31125
3.17752
3.04696
2.9187
2.79205
2.66644
2.54144
2.41674
2.29215
2.16754
2.04286
1.91809
1.79326
1.6684
1.54355
1.41874
1.29404
1.16947
1.04507
0.920894
0.796946
0.673298
0.549896
0.426948
0.303773
0.18249
0.0539497
5.54817
4.51499
4.28091
4.08651
3.90708
3.74425
3.59278
3.44916
3.31122
3.1775
3.04694
2.9187
2.79206
2.66645
2.54146
2.41676
2.29217
2.16756
2.04288
1.91812
1.79329
1.66843
1.54357
1.41877
1.29406
1.16949
1.0451
0.920914
0.796952
0.673279
0.549832
0.426871
0.303666
0.182461
0.0540163
5.56285
4.51019
4.27985
4.0857
3.90656
3.74384
3.59244
3.44889
3.31101
3.17734
3.04682
2.91861
2.79199
2.66641
2.54143
2.41675
2.29216
2.16756
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29408
1.16951
1.04511
0.92092
0.796955
0.673284
0.549842
0.426888
0.303705
0.182476
0.0541886
5.55881
4.51082
4.2799
4.08577
3.90663
3.7439
3.59251
3.44896
3.31107
3.17739
3.04687
2.91865
2.79203
2.66644
2.54145
2.41677
2.29218
2.16758
2.0429
1.91814
1.79331
1.66845
1.54359
1.41879
1.29408
1.16951
1.04511
0.920926
0.796977
0.67333
0.549926
0.426972
0.303796
0.182468
0.0541027
5.34998
4.60006
4.29852
4.09862
3.91621
3.75028
3.5972
3.45268
3.31405
3.17975
3.04867
2.91995
2.79289
2.66694
2.54168
2.4168
2.29209
2.16743
2.04273
1.91797
1.79316
1.66832
1.5435
1.41872
1.29405
1.1695
1.04513
0.920958
0.797013
0.673353
0.549947
0.426961
0.304057
0.18219
0.0582132
5.54035
4.51997
4.28206
4.08714
3.90782
3.74458
3.59288
3.44915
3.31112
3.17731
3.04667
2.91835
2.79164
2.666
2.54099
2.4163
2.29174
2.16718
2.04254
1.91783
1.79304
1.66821
1.54339
1.41861
1.29393
1.16938
1.045
0.920819
0.796865
0.6732
0.549768
0.426799
0.303703
0.182256
0.0553955
5.37607
4.57956
4.29666
4.09653
3.91504
3.74954
3.59652
3.45199
3.31334
3.17902
3.04793
2.91921
2.79216
2.66624
2.54101
2.41618
2.29151
2.16689
2.04224
1.91752
1.79275
1.66795
1.54316
1.41842
1.29377
1.16924
1.04489
0.920736
0.796805
0.673158
0.549764
0.426788
0.303912
0.182017
0.0587269
5.42434
4.56973
4.29034
4.09404
3.9125
3.74798
3.59562
3.45143
3.31301
3.17887
3.04793
2.91933
2.79239
2.66654
2.54136
2.41655
2.29188
2.16723
2.04255
1.91779
1.79298
1.66814
1.54332
1.41854
1.29386
1.16932
1.04495
0.920785
0.796843
0.673186
0.549765
0.426788
0.303739
0.182156
0.0558812
5.17116
4.68495
4.32436
4.1102
3.92687
3.75681
3.60128
3.4557
3.31638
3.18157
3.05013
2.92114
2.79389
2.6678
2.54245
2.41753
2.29282
2.16817
2.04351
1.9188
1.79404
1.66925
1.54448
1.41976
1.29512
1.17062
1.04628
0.922133
0.798215
0.674574
0.551216
0.428236
0.305619
0.18351
0.0657445
5.44272
4.54841
4.29118
4.09191
3.91211
3.74736
3.59469
3.45042
3.31197
3.17781
3.04686
2.91825
2.79129
2.66544
2.54028
2.4155
2.29089
2.16632
2.04171
1.91704
1.79231
1.66755
1.54279
1.41808
1.29346
1.16896
1.04463
0.920495
0.796586
0.672964
0.549603
0.426643
0.303824
0.18185
0.059318
5.43364
4.55727
4.29046
4.09308
3.9122
3.74762
3.59511
3.45084
3.31239
3.17824
3.04731
2.91874
2.79182
2.666
2.54086
2.41609
2.29147
2.16687
2.04223
1.91752
1.79275
1.66794
1.54314
1.41839
1.29374
1.16921
1.04485
0.920691
0.796755
0.673106
0.549696
0.426722
0.303734
0.182054
0.0568748
5.57783
4.50562
4.27879
4.08502
3.90614
3.74358
3.59228
3.4488
3.31097
3.17734
3.04686
2.91867
2.79208
2.66651
2.54153
2.41685
2.29227
2.16766
2.04298
1.91821
1.79338
1.6685
1.54364
1.41883
1.29412
1.16955
1.04515
0.920956
0.796988
0.673315
0.549874
0.426924
0.303731
0.182529
0.0540528
5.57769
4.50563
4.2788
4.08503
3.90614
3.74358
3.59228
3.4488
3.31097
3.17734
3.04686
2.91867
2.79208
2.66651
2.54154
2.41686
2.29227
2.16766
2.04298
1.91821
1.79338
1.6685
1.54364
1.41883
1.29412
1.16954
1.04514
0.920959
0.797014
0.673369
0.549964
0.427
0.303787
0.182448
0.0539292
5.4844
4.54155
4.28527
4.09019
3.90974
3.74611
3.59416
3.45021
3.312
3.17804
3.04727
2.91884
2.79204
2.66631
2.54123
2.41648
2.29186
2.16725
2.04258
1.91784
1.79303
1.66819
1.54336
1.41858
1.29389
1.16934
1.04497
0.920794
0.796845
0.673183
0.549749
0.426776
0.303647
0.182247
0.0549173
5.39206
4.56271
4.29732
4.09535
3.91478
3.74922
3.59603
3.45144
3.31276
3.17842
3.04733
2.9186
2.79155
2.66563
2.54042
2.4156
2.29096
2.16637
2.04176
1.91708
1.79235
1.66759
1.54283
1.41813
1.29351
1.16901
1.04468
0.92055
0.796646
0.673024
0.54966
0.426685
0.303915
0.181777
0.0608506
5.33208
4.60108
4.30141
4.09886
3.91708
3.75089
3.59753
3.45286
3.31411
3.17969
3.04851
2.9197
2.79257
2.66658
2.54129
2.41641
2.29172
2.16707
2.0424
1.91768
1.79291
1.66811
1.54332
1.41858
1.29393
1.16941
1.04505
0.9209
0.796971
0.673327
0.549953
0.42698
0.304202
0.182157
0.060319
5.50385
4.53101
4.28729
4.0901
3.91062
3.74635
3.59398
3.44986
3.31154
3.17748
3.04661
2.91809
2.7912
2.66542
2.5403
2.41556
2.29098
2.16642
2.04182
1.91714
1.79241
1.66764
1.54287
1.41815
1.29352
1.16901
1.04466
0.92052
0.7966
0.672965
0.549577
0.426606
0.303694
0.181852
0.0581133
5.42361
4.55594
4.29215
4.09351
3.91285
3.74799
3.59529
3.45093
3.31242
3.17822
3.04724
2.91862
2.79167
2.66582
2.54066
2.41588
2.29126
2.16668
2.04205
1.91736
1.79261
1.66782
1.54304
1.41831
1.29367
1.16915
1.0448
0.920654
0.796727
0.673085
0.549689
0.426715
0.3038
0.181982
0.0581077
5.46244
4.54258
4.28871
4.09072
3.91099
3.74661
3.59418
3.45004
3.3117
3.17763
3.04675
2.9182
2.7913
2.66549
2.54037
2.41561
2.29102
2.16645
2.04185
1.91717
1.79243
1.66766
1.5429
1.41817
1.29354
1.16903
1.04469
0.920544
0.796626
0.672997
0.549627
0.426672
0.303795
0.18195
0.0581475
5.53447
4.52906
4.28446
4.08821
3.90902
3.74529
3.59327
3.44938
3.31123
3.1773
3.04654
2.91811
2.7913
2.66556
2.54049
2.41578
2.29121
2.16665
2.04204
1.91736
1.79261
1.66782
1.54303
1.41829
1.29364
1.16912
1.04476
0.920602
0.796674
0.673039
0.54966
0.42671
0.30376
0.182057
0.0568647
5.57284
4.5194
4.28152
4.08653
3.9075
3.74436
3.59273
3.44906
3.31108
3.17731
3.0467
2.91839
2.7917
2.66606
2.54105
2.41637
2.2918
2.16723
2.0426
1.91787
1.79308
1.66825
1.54343
1.41865
1.29396
1.1694
1.04502
0.920842
0.796895
0.673247
0.549852
0.426903
0.303846
0.18235
0.0554
5.43655
4.5512
4.29453
4.09303
3.91338
3.74823
3.59526
3.45082
3.31227
3.17801
3.04698
2.9183
2.79128
2.66538
2.54019
2.41538
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54269
1.41798
1.29337
1.16888
1.04456
0.920444
0.796553
0.672942
0.549584
0.426597
0.303844
0.181627
0.0613784
5.32403
4.5981
4.30353
4.09926
3.91776
3.75139
3.59781
3.45301
3.31416
3.17967
3.04843
2.91957
2.79241
2.66639
2.54109
2.4162
2.29151
2.16687
2.04221
1.9175
1.79274
1.66796
1.54318
1.41846
1.29382
1.16932
1.04497
0.920828
0.796911
0.673278
0.549918
0.426948
0.30423
0.182033
0.0618062
5.4567
4.54994
4.29451
4.09303
3.91336
3.74821
3.59524
3.45081
3.31225
3.178
3.04696
2.91828
2.79126
2.66537
2.54017
2.41536
2.29074
2.16616
2.04155
1.91689
1.79217
1.66741
1.54267
1.41797
1.29335
1.16886
1.04454
0.920423
0.796533
0.672924
0.549566
0.426578
0.303815
0.181602
0.0613035
5.4326
4.54909
4.29448
4.09323
3.9134
3.74822
3.59524
3.45081
3.31225
3.178
3.04697
2.9183
2.79129
2.6654
2.54021
2.41541
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.2934
1.16891
1.04459
0.920468
0.796575
0.672963
0.549603
0.426618
0.303843
0.181666
0.0610431
5.49163
4.53191
4.28597
4.08962
3.90987
3.74593
3.59376
3.44974
3.31149
3.1775
3.0467
2.91824
2.79142
2.66569
2.54061
2.41589
2.29132
2.16676
2.04214
1.91745
1.7927
1.6679
1.54311
1.41837
1.29371
1.16918
1.04482
0.920662
0.796725
0.673075
0.549663
0.426692
0.303688
0.182045
0.0566853
5.43787
4.55075
4.29409
4.09282
3.91322
3.74813
3.59519
3.45077
3.31222
3.17798
3.04695
2.91828
2.79126
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04454
0.920426
0.796535
0.672923
0.549567
0.426583
0.30383
0.181631
0.0612264
5.40156
4.55926
4.29689
4.09459
3.91442
3.74896
3.59579
3.45123
3.31259
3.17827
3.04719
2.91847
2.79142
2.6655
2.54029
2.41548
2.29084
2.16626
2.04164
1.91697
1.79225
1.6675
1.54275
1.41804
1.29343
1.16894
1.04461
0.920492
0.796597
0.672982
0.549625
0.426643
0.3039
0.181679
0.0614572
5.31383
4.60882
4.30374
4.10002
3.91805
3.75151
3.59795
3.45321
3.31442
3.17998
3.04878
2.91995
2.7928
2.66678
2.54148
2.41658
2.29187
2.16721
2.04253
1.9178
1.79303
1.66823
1.54343
1.41869
1.29404
1.16952
1.04516
0.921
0.797068
0.673421
0.550046
0.427069
0.304318
0.182206
0.0610631
5.40158
4.56332
4.29493
4.09442
3.91403
3.7488
3.59581
3.45132
3.31271
3.17842
3.04736
2.91867
2.79164
2.66574
2.54054
2.41573
2.2911
2.1665
2.04188
1.9172
1.79246
1.6677
1.54294
1.41822
1.29359
1.16909
1.04475
0.920617
0.796705
0.673077
0.549712
0.426747
0.303951
0.181927
0.0598985
5.47331
4.544
4.29238
4.09223
3.91257
3.74765
3.59484
3.4505
3.312
3.1778
3.04682
2.91818
2.79121
2.66534
2.54017
2.41538
2.29077
2.1662
2.04159
1.91692
1.7922
1.66745
1.5427
1.41799
1.29338
1.16888
1.04456
0.920433
0.796537
0.672922
0.549558
0.426579
0.303771
0.181674
0.0602451
5.48375
4.53326
4.28747
4.09026
3.91056
3.74632
3.59397
3.44985
3.31153
3.17748
3.04663
2.91811
2.79124
2.66546
2.54036
2.41562
2.29104
2.16648
2.04187
1.91719
1.79246
1.66768
1.54291
1.41818
1.29354
1.16903
1.04468
0.920531
0.796607
0.672969
0.549575
0.426605
0.303669
0.181883
0.0576862
5.36031
4.57718
4.3001
4.0968
3.916
3.75013
3.59674
3.45204
3.31327
3.17886
3.04769
2.91891
2.79181
2.66584
2.54059
2.41574
2.29108
2.16647
2.04184
1.91715
1.79242
1.66765
1.54289
1.41818
1.29356
1.16907
1.04473
0.920602
0.796696
0.673074
0.549719
0.426747
0.304023
0.181809
0.0616117
5.41621
4.55425
4.29581
4.09388
3.91392
3.74859
3.59552
3.45102
3.31242
3.17813
3.04707
2.91838
2.79135
2.66544
2.54024
2.41543
2.2908
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.29341
1.16892
1.04459
0.920473
0.79658
0.672967
0.549609
0.426624
0.30387
0.181654
0.0613809
5.56455
4.52165
4.28209
4.08686
3.90781
3.74455
3.59284
3.44913
3.31111
3.17731
3.04666
2.91832
2.7916
2.66594
2.54092
2.41623
2.29167
2.1671
2.04247
1.91776
1.79298
1.66816
1.54334
1.41857
1.29389
1.16934
1.04496
0.92079
0.796846
0.673201
0.549809
0.42686
0.303827
0.182288
0.0557094
5.31641
4.61736
4.30233
4.10037
3.91775
3.75116
3.59773
3.45308
3.31436
3.18
3.04888
2.92013
2.79304
2.66706
2.54178
2.41689
2.29218
2.1675
2.0428
1.91805
1.79325
1.66842
1.5436
1.41883
1.29415
1.16961
1.04524
0.921065
0.797122
0.673464
0.550076
0.427096
0.304273
0.182312
0.0591932
5.3725
4.57517
4.29822
4.09669
3.91555
3.74986
3.59664
3.452
3.31327
3.17889
3.04775
2.919
2.79193
2.66599
2.54076
2.41593
2.29128
2.16667
2.04203
1.91734
1.79259
1.66781
1.54304
1.41832
1.29369
1.16918
1.04484
0.920693
0.796774
0.673137
0.549759
0.426785
0.30398
0.181944
0.0600814
5.46833
4.55092
4.28629
4.09124
3.91037
3.74662
3.59465
3.45067
3.31241
3.17841
3.04759
2.91911
2.79226
2.66648
2.54136
2.41658
2.29193
2.16729
2.0426
1.91785
1.79303
1.66818
1.54334
1.41856
1.29388
1.16933
1.04495
0.920779
0.796831
0.673169
0.549735
0.42676
0.303628
0.182222
0.0548017
5.4714
4.54012
4.28805
4.09041
3.91071
3.74643
3.59407
3.44997
3.31166
3.17761
3.04675
2.91822
2.79133
2.66554
2.54043
2.41568
2.29109
2.16653
2.04192
1.91724
1.79251
1.66773
1.54296
1.41823
1.2936
1.16908
1.04473
0.920589
0.796667
0.673036
0.549663
0.426707
0.303813
0.182001
0.0578759
5.37183
4.58263
4.29684
4.0963
3.91506
3.74954
3.5965
3.45197
3.31332
3.17898
3.04788
2.91915
2.79209
2.66616
2.54092
2.41609
2.29142
2.16681
2.04216
1.91745
1.79269
1.6679
1.54312
1.41838
1.29374
1.16922
1.04487
0.920724
0.796799
0.67316
0.549785
0.426818
0.303992
0.18205
0.0591825
5.26594
4.63331
4.3107
4.10379
3.92089
3.75321
3.59904
3.45402
3.31507
3.18052
3.04926
2.92039
2.79321
2.66717
2.54184
2.41691
2.29218
2.1675
2.0428
1.91805
1.79326
1.66845
1.54364
1.41889
1.29424
1.16971
1.04534
0.921181
0.797244
0.673591
0.550216
0.427233
0.304525
0.182332
0.0623016
5.20735
4.66777
4.31844
4.10803
3.92451
3.75534
3.60039
3.45504
3.31587
3.18117
3.04981
2.92089
2.79368
2.66762
2.5423
2.4174
2.2927
2.16806
2.0434
1.91869
1.79393
1.66914
1.54436
1.41962
1.29497
1.17045
1.04608
0.921914
0.797967
0.6743
0.550911
0.427909
0.305218
0.183043
0.0634407
5.49084
4.5424
4.28935
4.09066
3.91132
3.74683
3.5943
3.45012
3.31174
3.17763
3.0467
2.91811
2.79117
2.66533
2.54018
2.41541
2.2908
2.16623
2.04163
1.91696
1.79223
1.66747
1.54272
1.41801
1.29339
1.16889
1.04456
0.920432
0.796527
0.672908
0.54955
0.426593
0.303774
0.181795
0.0592597
5.55158
4.51728
4.28134
4.08669
3.90745
3.74436
3.59274
3.44907
3.31108
3.17731
3.0467
2.91841
2.79173
2.66611
2.54111
2.41643
2.29186
2.16729
2.04265
1.91792
1.79312
1.66829
1.54346
1.41867
1.29398
1.16943
1.04504
0.92086
0.796902
0.673234
0.549799
0.426831
0.303715
0.182317
0.0551098
5.43531
4.5534
4.2907
4.09239
3.91212
3.74748
3.5949
3.45064
3.3122
3.17805
3.04711
2.91852
2.79158
2.66575
2.5406
2.41583
2.29122
2.16663
2.04201
1.91732
1.79258
1.66779
1.54302
1.41829
1.29364
1.16913
1.04478
0.920631
0.796708
0.673073
0.549697
0.426739
0.303852
0.182035
0.0580215
5.40309
4.55976
4.29626
4.09428
3.91416
3.74878
3.59567
3.45114
3.31252
3.17822
3.04715
2.91844
2.79141
2.66549
2.54029
2.41547
2.29084
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41803
1.29342
1.16893
1.0446
0.92048
0.796582
0.672966
0.549611
0.426635
0.303889
0.181701
0.061183
5.50275
4.53011
4.28657
4.08973
3.91023
3.7461
3.59382
3.44975
3.31145
3.17742
3.04659
2.91809
2.79123
2.66546
2.54036
2.41563
2.29105
2.1665
2.04189
1.91722
1.79248
1.6677
1.54293
1.4182
1.29356
1.16905
1.0447
0.920552
0.796626
0.672987
0.549592
0.426621
0.303682
0.181898
0.0576485
5.44857
4.546
4.29339
4.09275
3.91301
3.74796
3.59506
3.45066
3.31213
3.1779
3.04689
2.91824
2.79124
2.66536
2.54017
2.41538
2.29076
2.16619
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16888
1.04455
0.920433
0.796539
0.672927
0.549566
0.426583
0.303794
0.181649
0.0606958
5.5561
4.51262
4.28018
4.08599
3.90692
3.74404
3.59255
3.44896
3.31103
3.17732
3.04676
2.91851
2.79186
2.66625
2.54126
2.41658
2.292
2.16741
2.04275
1.918
1.79319
1.66834
1.54349
1.4187
1.294
1.16944
1.04504
0.920863
0.796916
0.673269
0.54987
0.426922
0.303796
0.182411
0.0545499
5.36772
4.5765
4.29884
4.0969
3.91576
3.74999
3.59671
3.45204
3.31329
3.17889
3.04775
2.91899
2.79191
2.66596
2.54072
2.41588
2.29123
2.16662
2.04198
1.91729
1.79255
1.66777
1.543
1.41828
1.29365
1.16914
1.0448
0.920663
0.796746
0.673112
0.549739
0.426766
0.303977
0.18191
0.0603646
5.31908
4.61817
4.30187
4.10086
3.91786
3.75122
3.59781
3.45313
3.31442
3.18007
3.04898
2.92027
2.79322
2.66728
2.54203
2.41716
2.29245
2.16777
2.04306
1.91829
1.79346
1.66861
1.54377
1.41898
1.29429
1.16973
1.04534
0.921154
0.797197
0.673525
0.550113
0.427116
0.304238
0.182298
0.0586121
5.26767
4.63211
4.31008
4.10335
3.9207
3.75311
3.59898
3.454
3.31507
3.18054
3.04929
2.92043
2.79325
2.6672
2.54188
2.41696
2.29223
2.16756
2.04287
1.91813
1.79334
1.66853
1.54373
1.41899
1.29433
1.1698
1.04544
0.921277
0.797341
0.673689
0.550316
0.427334
0.304632
0.182434
0.0625038
5.49727
4.5404
4.28852
4.09029
3.91097
3.74659
3.59414
3.45
3.31165
3.17756
3.04666
2.91809
2.79116
2.66533
2.54019
2.41542
2.29082
2.16626
2.04165
1.91698
1.79225
1.66749
1.54273
1.41802
1.2934
1.1689
1.04457
0.920432
0.796524
0.672904
0.549544
0.426589
0.303753
0.181818
0.0588658
5.52804
4.52361
4.28238
4.08769
3.90788
3.7449
3.59331
3.44959
3.31156
3.17776
3.04713
2.91882
2.79213
2.66648
2.54144
2.41672
2.29211
2.16749
2.04281
1.91804
1.79321
1.66835
1.5435
1.4187
1.294
1.16944
1.04505
0.920867
0.796909
0.673237
0.549787
0.426817
0.303601
0.182396
0.0539152
5.52764
4.52383
4.28241
4.0877
3.90789
3.74491
3.59333
3.44961
3.31158
3.17778
3.04715
2.91884
2.79214
2.66649
2.54145
2.41673
2.29212
2.1675
2.04281
1.91805
1.79322
1.66835
1.5435
1.4187
1.294
1.16943
1.04504
0.92086
0.796911
0.673262
0.549861
0.426922
0.303767
0.182516
0.0539049
5.49384
4.54197
4.28492
4.08998
3.90942
3.74607
3.59431
3.45046
3.31231
3.17839
3.04765
2.91922
2.79241
2.66667
2.54155
2.41677
2.29211
2.16746
2.04276
1.91798
1.79315
1.66829
1.54344
1.41864
1.29395
1.16939
1.045
0.92082
0.79687
0.673217
0.549814
0.426877
0.303763
0.182482
0.0541148
5.30846
4.6267
4.30275
4.10129
3.91827
3.75143
3.59794
3.45325
3.31453
3.18017
3.04906
2.92034
2.79328
2.66735
2.5421
2.41724
2.29255
2.16789
2.04319
1.91843
1.79361
1.66875
1.54391
1.41911
1.29441
1.16985
1.04545
0.921264
0.797305
0.673633
0.550232
0.427241
0.304391
0.182448
0.0586021
5.24738
4.64856
4.31189
4.10491
3.92187
3.7537
3.59934
3.45426
3.31527
3.18071
3.04944
2.92059
2.79345
2.66744
2.54215
2.41727
2.29257
2.16791
2.04323
1.91848
1.79369
1.66886
1.54405
1.41928
1.29461
1.17007
1.04569
0.92152
0.797571
0.673905
0.550519
0.427523
0.304798
0.182652
0.0619843
5.50042
4.53946
4.28473
4.08963
3.90913
3.74595
3.59427
3.45047
3.31234
3.17844
3.0477
2.91928
2.79247
2.66673
2.54161
2.41682
2.29216
2.1675
2.04279
1.91801
1.79316
1.6683
1.54344
1.41864
1.29394
1.16938
1.045
0.920818
0.796863
0.673193
0.54974
0.426761
0.303535
0.182316
0.0537522
5.50066
4.5393
4.28471
4.08962
3.90912
3.74594
3.59426
3.45046
3.31233
3.17843
3.0477
2.91927
2.79247
2.66672
2.54161
2.41682
2.29216
2.1675
2.04279
1.91801
1.79316
1.6683
1.54344
1.41864
1.29394
1.16938
1.04498
0.920805
0.796855
0.673204
0.549804
0.426876
0.303745
0.182522
0.0537961
5.46271
4.55001
4.29341
4.09243
3.91291
3.74791
3.59504
3.45066
3.31214
3.17791
3.0469
2.91824
2.79124
2.66535
2.54016
2.41536
2.29074
2.16616
2.04155
1.91689
1.79216
1.66741
1.54266
1.41796
1.29335
1.16886
1.04454
0.920419
0.796527
0.672916
0.549561
0.426582
0.303822
0.181647
0.0609819
5.46239
4.54572
4.29324
4.0926
3.91299
3.74795
3.59506
3.45066
3.31214
3.17791
3.04689
2.91823
2.79123
2.66534
2.54016
2.41536
2.29074
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16886
1.04454
0.920418
0.796527
0.672916
0.549557
0.426573
0.30379
0.181625
0.0608764
5.1526
4.69425
4.32744
4.11127
3.92816
3.75761
3.60175
3.45606
3.31667
3.1818
3.05031
2.9213
2.79401
2.66791
2.54255
2.41762
2.2929
2.16825
2.04359
1.91888
1.79412
1.66934
1.54457
1.41985
1.29522
1.17072
1.04638
0.922241
0.79833
0.674698
0.551354
0.428387
0.305808
0.183795
0.0672443
5.47557
4.53869
4.28742
4.09015
3.91044
3.74626
3.59397
3.4499
3.31161
3.17759
3.04675
2.91824
2.79137
2.66559
2.54049
2.41575
2.29116
2.16659
2.04198
1.9173
1.79255
1.66777
1.543
1.41826
1.29362
1.1691
1.04475
0.9206
0.796675
0.673041
0.549665
0.426711
0.303794
0.182037
0.0574592
5.33114
4.60435
4.30165
4.09962
3.91724
3.75091
3.59753
3.45284
3.31409
3.17969
3.04853
2.91975
2.79264
2.66666
2.54139
2.41651
2.29181
2.16716
2.04248
1.91775
1.79296
1.66815
1.54335
1.4186
1.29394
1.16941
1.04504
0.920881
0.796942
0.673288
0.549894
0.426912
0.304079
0.182099
0.059456
5.50709
4.52906
4.28439
4.0883
3.90896
3.74526
3.59328
3.44941
3.31126
3.17735
3.04662
2.9182
2.7914
2.66569
2.54063
2.41592
2.29135
2.16679
2.04217
1.91748
1.79272
1.66793
1.54313
1.41839
1.29373
1.1692
1.04483
0.92067
0.796737
0.673098
0.549714
0.426763
0.30379
0.182137
0.0565461
5.35284
4.59792
4.29823
4.09783
3.91587
3.75006
3.59699
3.45248
3.31385
3.17952
3.04842
2.91968
2.7926
2.66664
2.54138
2.41652
2.29183
2.16718
2.0425
1.91777
1.79298
1.66816
1.54335
1.41859
1.29393
1.1694
1.04503
0.920866
0.796929
0.673279
0.549894
0.426921
0.304071
0.182176
0.0586237
5.4785
4.5432
4.28589
4.09053
3.91006
3.74628
3.59424
3.45025
3.312
3.17802
3.04723
2.91879
2.79198
2.66625
2.54117
2.41643
2.29182
2.16722
2.04256
1.91783
1.79303
1.6682
1.54337
1.4186
1.29392
1.16937
1.04499
0.920823
0.796874
0.673212
0.54978
0.426805
0.303698
0.182248
0.0552734
5.48756
4.5323
4.28705
4.09011
3.91043
3.74626
3.59395
3.44986
3.31155
3.17752
3.04668
2.91818
2.79132
2.66556
2.54046
2.41573
2.29115
2.1666
2.04199
1.91731
1.79257
1.66779
1.54301
1.41828
1.29363
1.16912
1.04477
0.920613
0.796684
0.673041
0.549641
0.426669
0.303715
0.181962
0.0574709
5.47098
4.53733
4.28818
4.0909
3.91094
3.74663
3.59423
3.45007
3.31172
3.17764
3.04678
2.91825
2.79138
2.6656
2.54049
2.41575
2.29117
2.1666
2.04199
1.91731
1.79256
1.66778
1.543
1.41826
1.29362
1.1691
1.04475
0.920599
0.79667
0.673027
0.549627
0.426656
0.303702
0.181957
0.057453
5.51244
4.52742
4.28507
4.08892
3.90948
3.74564
3.59354
3.44956
3.31134
3.17738
3.0466
2.91815
2.79134
2.66561
2.54054
2.41583
2.29126
2.16671
2.0421
1.91741
1.79266
1.66787
1.54308
1.41834
1.29369
1.16916
1.0448
0.920644
0.796708
0.673059
0.54965
0.426678
0.303686
0.182016
0.0568466
5.43093
4.55177
4.293
4.09266
3.91282
3.74785
3.59502
3.45065
3.31215
3.17794
3.04694
2.91829
2.79131
2.66543
2.54025
2.41546
2.29084
2.16627
2.04166
1.91699
1.79226
1.66751
1.54275
1.41805
1.29343
1.16894
1.04461
0.920482
0.796581
0.672963
0.549606
0.42664
0.303857
0.181782
0.0601831
5.41282
4.55467
4.29565
4.09418
3.91395
3.7486
3.59554
3.45103
3.31243
3.17814
3.04709
2.9184
2.79138
2.66548
2.54028
2.41548
2.29085
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29344
1.16894
1.04461
0.920489
0.796589
0.672971
0.549609
0.426631
0.303852
0.181715
0.0607448
5.57366
4.51702
4.28079
4.08615
3.90722
3.74417
3.59258
3.44894
3.31098
3.17722
3.04661
2.91831
2.79162
2.66598
2.54097
2.41628
2.29171
2.16714
2.0425
1.91777
1.79298
1.66815
1.54332
1.41854
1.29386
1.1693
1.04492
0.920748
0.796805
0.673161
0.549769
0.426825
0.303763
0.182286
0.0552147
5.4574
4.5505
4.29438
4.09292
3.91335
3.74823
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54268
1.41797
1.29336
1.16887
1.04455
0.920433
0.796544
0.672933
0.549576
0.426587
0.303833
0.181608
0.0614293
5.48269
4.5461
4.29103
4.09138
3.91192
3.74724
3.59458
3.45033
3.3119
3.17775
3.04679
2.91818
2.79122
2.66537
2.54021
2.41543
2.29082
2.16625
2.04164
1.91697
1.79225
1.66749
1.54274
1.41804
1.29342
1.16893
1.0446
0.92047
0.796568
0.672951
0.549594
0.42663
0.303831
0.181787
0.0598375
5.4783
4.5424
4.29175
4.09194
3.9123
3.74747
3.59471
3.45039
3.31192
3.17773
3.04676
2.91814
2.79117
2.66531
2.54014
2.41535
2.29074
2.16617
2.04157
1.9169
1.79217
1.66742
1.54267
1.41796
1.29334
1.16885
1.04452
0.920397
0.796499
0.672883
0.549519
0.426543
0.303726
0.181662
0.0599625
5.39468
4.56367
4.29633
4.09528
3.91454
3.7491
3.596
3.45144
3.31278
3.17846
3.04738
2.91867
2.79164
2.66573
2.54053
2.41571
2.29108
2.16649
2.04187
1.91718
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04473
0.920597
0.796684
0.673054
0.549679
0.426706
0.303896
0.18186
0.0599989
5.40082
4.56621
4.29423
4.09435
3.91375
3.74861
3.59572
3.45129
3.31271
3.17844
3.04741
2.91873
2.79172
2.66583
2.54063
2.41583
2.29119
2.1666
2.04197
1.91728
1.79254
1.66776
1.54299
1.41827
1.29363
1.16912
1.04478
0.920637
0.796719
0.673086
0.549716
0.426752
0.303924
0.181984
0.0591567
5.48455
4.54421
4.29021
4.09103
3.91166
3.74707
3.59446
3.45024
3.31183
3.17768
3.04674
2.91813
2.79118
2.66532
2.54016
2.41538
2.29077
2.1662
2.04159
1.91692
1.7922
1.66744
1.54269
1.41798
1.29336
1.16887
1.04454
0.920413
0.796511
0.672895
0.549539
0.426579
0.303776
0.181754
0.0596369
5.33028
4.59379
4.30305
4.09886
3.91749
3.7512
3.59764
3.45284
3.314
3.17951
3.04828
2.91943
2.79228
2.66627
2.54098
2.4161
2.29141
2.16678
2.04212
1.91742
1.79267
1.66789
1.54312
1.4184
1.29377
1.16926
1.04492
0.920779
0.796864
0.673234
0.549876
0.426905
0.304188
0.181978
0.0618281
5.43182
4.55168
4.29329
4.09277
3.91294
3.74793
3.59507
3.45069
3.31217
3.17795
3.04695
2.91829
2.7913
2.66542
2.54024
2.41544
2.29082
2.16625
2.04164
1.91697
1.79224
1.66749
1.54273
1.41803
1.29341
1.16892
1.04459
0.920465
0.796565
0.672948
0.549592
0.426624
0.303847
0.181752
0.0603221
5.40778
4.57992
4.29182
4.09533
3.9133
3.7485
3.59607
3.45186
3.31345
3.1793
3.04835
2.91973
2.79276
2.66687
2.54166
2.41681
2.29211
2.16744
2.04273
1.91796
1.79313
1.66827
1.54343
1.41865
1.29396
1.16941
1.04503
0.920863
0.796916
0.673256
0.549833
0.426852
0.303808
0.182195
0.055937
5.48698
4.53406
4.2861
4.08987
3.90995
3.74601
3.59385
3.44982
3.31156
3.17757
3.04678
2.91832
2.79151
2.66577
2.5407
2.41598
2.2914
2.16684
2.04222
1.91752
1.79276
1.66795
1.54316
1.4184
1.29374
1.16921
1.04485
0.920687
0.796748
0.673095
0.54968
0.426708
0.303684
0.182081
0.0563891
5.41483
4.55502
4.29483
4.09417
3.91375
3.74849
3.5955
3.45101
3.31241
3.17814
3.04711
2.91844
2.79143
2.66555
2.54036
2.41556
2.29094
2.16636
2.04175
1.91707
1.79234
1.66758
1.54282
1.41811
1.29349
1.16899
1.04465
0.92052
0.796612
0.672986
0.549615
0.426641
0.303826
0.181787
0.0599155
5.45916
4.55054
4.2938
4.09261
3.91307
3.74803
3.59512
3.45072
3.31219
3.17795
3.04693
2.91826
2.79125
2.66536
2.54016
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29335
1.16886
1.04454
0.920419
0.796528
0.672916
0.549561
0.426578
0.303823
0.181629
0.0611656
5.45757
4.55028
4.29438
4.09294
3.91336
3.74823
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54268
1.41798
1.29336
1.16888
1.04455
0.920436
0.796546
0.672936
0.549579
0.426589
0.303834
0.181608
0.0614308
5.40084
4.58107
4.29284
4.09572
3.91374
3.74879
3.59625
3.45198
3.31351
3.17931
3.04832
2.91968
2.79268
2.66679
2.54157
2.41672
2.29202
2.16735
2.04265
1.91788
1.79306
1.66821
1.54338
1.4186
1.29392
1.16938
1.045
0.920836
0.796893
0.673236
0.549819
0.426839
0.303826
0.182164
0.0563978
5.58253
4.50435
4.27832
4.08477
3.906
3.74349
3.59223
3.44878
3.31097
3.17735
3.04688
2.9187
2.79211
2.66655
2.54158
2.4169
2.29231
2.1677
2.04302
1.91825
1.79341
1.66854
1.54367
1.41886
1.29415
1.16957
1.04517
0.920975
0.797006
0.673332
0.54989
0.426942
0.30375
0.182547
0.0540647
5.58222
4.50429
4.27831
4.08477
3.906
3.7435
3.59224
3.44879
3.31098
3.17736
3.04689
2.91871
2.79212
2.66655
2.54158
2.4169
2.29232
2.16771
2.04302
1.91825
1.79341
1.66854
1.54367
1.41886
1.29414
1.16957
1.04516
0.920981
0.797035
0.673389
0.549983
0.427016
0.3038
0.182454
0.0539341
5.42312
4.57473
4.29016
4.09442
3.91254
3.74804
3.59578
3.45168
3.31335
3.17928
3.04837
2.91979
2.79283
2.66695
2.54173
2.41687
2.29216
2.16748
2.04276
1.91797
1.79314
1.66828
1.54343
1.41864
1.29395
1.1694
1.04502
0.920851
0.796903
0.673242
0.549815
0.426834
0.303756
0.182208
0.0554445
5.27282
4.62778
4.30991
4.1031
3.92047
3.753
3.59891
3.45393
3.315
3.18046
3.0492
2.92033
2.79314
2.66709
2.54176
2.41683
2.2921
2.16743
2.04274
1.918
1.79322
1.66841
1.54362
1.41887
1.29422
1.16969
1.04533
0.921172
0.797238
0.67359
0.55022
0.427241
0.304543
0.182329
0.0625635
5.54333
4.5168
4.2813
4.08679
3.90727
3.74441
3.5929
3.44926
3.3113
3.17755
3.04698
2.91872
2.79207
2.66645
2.54144
2.41674
2.29215
2.16754
2.04286
1.91809
1.79326
1.6684
1.54354
1.41874
1.29404
1.16947
1.04507
0.920892
0.796944
0.673296
0.549893
0.426947
0.303774
0.182499
0.0539341
5.54479
4.51621
4.28118
4.0867
3.90722
3.74436
3.59286
3.44923
3.31127
3.17753
3.04696
2.91871
2.79206
2.66645
2.54144
2.41674
2.29215
2.16754
2.04286
1.9181
1.79327
1.6684
1.54355
1.41875
1.29404
1.16948
1.04509
0.920899
0.796938
0.673266
0.549818
0.426855
0.303646
0.182445
0.0539826
5.15051
4.69484
4.32802
4.11148
3.9283
3.75771
3.60182
3.45611
3.31671
3.18182
3.05033
2.92131
2.79403
2.66792
2.54256
2.41763
2.29291
2.16826
2.04359
1.91888
1.79412
1.66934
1.54458
1.41986
1.29523
1.17073
1.04639
0.92225
0.798339
0.674706
0.551362
0.428395
0.30582
0.183813
0.0674874
5.24329
4.65354
4.31241
4.10589
3.92232
3.75393
3.59953
3.4544
3.31538
3.1808
3.04953
2.92068
2.79353
2.66752
2.54223
2.41735
2.29266
2.16802
2.04336
1.91864
1.79387
1.66908
1.54428
1.41954
1.29487
1.17033
1.04595
0.921766
0.797801
0.674116
0.550703
0.427686
0.304912
0.182779
0.0610945
5.52859
4.53092
4.2851
4.08862
3.90943
3.74557
3.59346
3.44953
3.31133
3.17738
3.04659
2.91812
2.79129
2.66554
2.54046
2.41573
2.29116
2.1666
2.042
1.91732
1.79258
1.6678
1.54302
1.41828
1.29364
1.16912
1.04476
0.92061
0.796684
0.67305
0.549674
0.426721
0.303794
0.182044
0.0572848
5.43827
4.55067
4.29465
4.09312
3.91346
3.74828
3.59529
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79218
1.66743
1.54269
1.41799
1.29337
1.16889
1.04456
0.920445
0.796555
0.672944
0.549587
0.426598
0.303843
0.181618
0.0614271
5.46131
4.53994
4.28961
4.09161
3.91159
3.74705
3.59452
3.45029
3.31188
3.17776
3.04685
2.91829
2.79139
2.66558
2.54046
2.4157
2.29111
2.16655
2.04194
1.91726
1.79253
1.66775
1.54298
1.41826
1.29362
1.16911
1.04476
0.920614
0.796691
0.673052
0.549659
0.426685
0.303768
0.18194
0.0581374
5.52933
4.52244
4.28213
4.08749
3.90776
3.74472
3.59311
3.4494
3.31138
3.1776
3.04699
2.91869
2.79201
2.66638
2.54136
2.41666
2.29206
2.16746
2.04278
1.91803
1.79321
1.66835
1.5435
1.41871
1.29401
1.16945
1.04506
0.920875
0.796916
0.673246
0.549801
0.426834
0.303646
0.182394
0.0542174
5.5276
4.5226
4.28213
4.08755
3.90787
3.74483
3.59321
3.44949
3.31146
3.17766
3.04704
2.91873
2.79204
2.66639
2.54136
2.41665
2.29205
2.16744
2.04277
1.91801
1.79319
1.66833
1.54348
1.41869
1.29399
1.16943
1.04504
0.920857
0.796909
0.673259
0.549856
0.426912
0.303772
0.182473
0.0541811
5.27468
4.62919
4.30893
4.10284
3.92028
3.75286
3.59884
3.45392
3.31502
3.18052
3.04928
2.92043
2.79326
2.66722
2.54189
2.41696
2.29223
2.16755
2.04285
1.91811
1.79332
1.6685
1.5437
1.41895
1.29429
1.16977
1.0454
0.921239
0.797303
0.673651
0.550277
0.427295
0.304583
0.182401
0.0621868
5.24453
4.65141
4.3124
4.10567
3.92219
3.75387
3.59948
3.45437
3.31535
3.18078
3.04951
2.92066
2.7935
2.6675
2.54221
2.41733
2.29264
2.168
2.04333
1.9186
1.79382
1.66901
1.54421
1.41945
1.29478
1.17024
1.04586
0.921673
0.797714
0.674035
0.550628
0.427618
0.304858
0.18272
0.0613991
5.29796
4.62802
4.30451
4.10174
3.91882
3.75179
3.59814
3.45338
3.3146
3.18019
3.04905
2.92029
2.7932
2.66724
2.54198
2.4171
2.29239
2.16773
2.04303
1.91827
1.79346
1.66862
1.54379
1.41901
1.29433
1.16977
1.04539
0.921209
0.797257
0.673591
0.550197
0.42721
0.304396
0.182401
0.0594383
5.47506
4.54699
4.29151
4.0916
3.91216
3.7474
3.59469
3.45041
3.31196
3.17779
3.04682
2.91819
2.79122
2.66536
2.54019
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.2934
1.1689
1.04458
0.920453
0.796554
0.67294
0.549585
0.426618
0.30383
0.181747
0.060153
5.39186
4.57671
4.2944
4.09576
3.91422
3.74904
3.59626
3.45185
3.31327
3.17901
3.04797
2.91929
2.79228
2.66638
2.54117
2.41634
2.29168
2.16705
2.04239
1.91766
1.79288
1.66806
1.54326
1.4185
1.29384
1.16931
1.04495
0.920792
0.796856
0.673204
0.5498
0.426821
0.303883
0.182098
0.0576812
5.36448
4.57563
4.2995
4.09641
3.91568
3.74988
3.59653
3.45186
3.31311
3.17872
3.04757
2.9188
2.79171
2.66576
2.54051
2.41567
2.29102
2.16642
2.04179
1.9171
1.79237
1.6676
1.54285
1.41814
1.29352
1.16902
1.04469
0.92056
0.796656
0.673035
0.549681
0.426711
0.303984
0.181782
0.0614789
5.30868
4.61462
4.30431
4.10058
3.91833
3.75162
3.598
3.45323
3.31441
3.17995
3.04873
2.9199
2.79275
2.66672
2.54142
2.41652
2.29181
2.16715
2.04247
1.91773
1.79295
1.66815
1.54335
1.41861
1.29396
1.16943
1.04508
0.920919
0.796988
0.673341
0.549967
0.426991
0.304235
0.182154
0.0606967
5.50869
4.52892
4.2841
4.08838
3.90879
3.74522
3.59332
3.44946
3.31134
3.17746
3.04675
2.91836
2.7916
2.66591
2.54086
2.41615
2.29158
2.167
2.04237
1.91766
1.79288
1.66807
1.54325
1.41849
1.29382
1.16928
1.0449
0.920734
0.796795
0.673151
0.549761
0.426812
0.303789
0.182251
0.0557879
5.48287
4.5415
4.29145
4.09185
3.9122
3.7474
3.59468
3.45037
3.31191
3.17773
3.04677
2.91816
2.7912
2.66534
2.54018
2.41541
2.2908
2.16623
2.04163
1.91696
1.79224
1.66748
1.54273
1.41802
1.2934
1.16891
1.04458
0.920451
0.79655
0.672931
0.549564
0.426588
0.30376
0.181717
0.0598117
5.53602
4.5268
4.28448
4.08846
3.90913
3.74542
3.59339
3.44946
3.31127
3.17733
3.04657
2.91813
2.79133
2.66561
2.54055
2.41585
2.29128
2.16673
2.04212
1.91743
1.79268
1.66788
1.54309
1.41835
1.29369
1.16916
1.0448
0.92064
0.796703
0.673052
0.549642
0.426671
0.303668
0.182019
0.0566599
5.44515
4.54907
4.29306
4.09239
3.91284
3.74786
3.595
3.45063
3.31212
3.17791
3.0469
2.91824
2.79125
2.66536
2.54018
2.41538
2.29076
2.16618
2.04158
1.91691
1.79219
1.66743
1.54269
1.41798
1.29337
1.16888
1.04456
0.920437
0.796543
0.67293
0.549575
0.426599
0.303834
0.181678
0.0608216
5.41642
4.55379
4.2948
4.09403
3.9137
3.74844
3.59544
3.45096
3.31236
3.1781
3.04706
2.91839
2.79139
2.6655
2.54031
2.41552
2.29089
2.16631
2.0417
1.91703
1.7923
1.66754
1.54278
1.41807
1.29345
1.16896
1.04463
0.920494
0.796589
0.672966
0.549598
0.426624
0.303818
0.181754
0.0601102
5.45168
4.54456
4.29278
4.09257
3.91271
3.74774
3.59491
3.45055
3.31205
3.17785
3.04687
2.91824
2.79127
2.66541
2.54024
2.41546
2.29085
2.16629
2.04168
1.91702
1.7923
1.66754
1.54279
1.41809
1.29347
1.16897
1.04464
0.920514
0.796612
0.672993
0.549625
0.426646
0.303829
0.181756
0.060115
5.31258
4.60357
4.3052
4.10019
3.91837
3.75176
3.59805
3.4532
3.31432
3.17979
3.04854
2.91967
2.79249
2.66646
2.54115
2.41626
2.29156
2.16691
2.04225
1.91753
1.79277
1.66799
1.54321
1.41848
1.29385
1.16934
1.04499
0.920845
0.796925
0.673289
0.549927
0.426956
0.304245
0.182035
0.0620056
5.30809
4.6067
4.3055
4.10041
3.91856
3.75189
3.59816
3.4533
3.31442
3.1799
3.04864
2.91977
2.79258
2.66655
2.54123
2.41633
2.29162
2.16698
2.04231
1.91759
1.79283
1.66804
1.54326
1.41853
1.29389
1.16938
1.04503
0.920884
0.796963
0.673327
0.549966
0.426995
0.304288
0.182075
0.0620761
5.48957
4.53483
4.28584
4.08941
3.90969
3.74581
3.5937
3.44973
3.31152
3.17756
3.04678
2.91833
2.79152
2.66578
2.5407
2.41598
2.2914
2.16683
2.04221
1.91751
1.79274
1.66794
1.54315
1.4184
1.29374
1.1692
1.04484
0.920678
0.796745
0.673104
0.549719
0.426767
0.30379
0.182163
0.0564696
5.61258
4.50377
4.27798
4.08451
3.90586
3.7434
3.59217
3.44874
3.31095
3.17734
3.04687
2.9187
2.79211
2.66654
2.54157
2.41689
2.2923
2.16769
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29413
1.16955
1.04515
0.920967
0.797021
0.673376
0.549971
0.427005
0.303793
0.182434
0.0539709
5.61071
4.50439
4.27815
4.08461
3.90591
3.74343
3.59218
3.44875
3.31094
3.17733
3.04686
2.91868
2.7921
2.66653
2.54156
2.41688
2.29229
2.16769
2.043
1.91823
1.79339
1.66852
1.54366
1.41885
1.29414
1.16956
1.04516
0.920963
0.796994
0.67332
0.549881
0.426934
0.303749
0.182537
0.0541105
5.59531
4.5033
4.27814
4.08464
3.90592
3.74343
3.59218
3.44874
3.31094
3.17732
3.04685
2.91868
2.79209
2.66653
2.54155
2.41687
2.29229
2.16768
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16955
1.04515
0.920966
0.79702
0.673376
0.549971
0.427003
0.303786
0.182431
0.0539427
5.59523
4.50356
4.27818
4.08468
3.90594
3.74344
3.59218
3.44874
3.31093
3.17732
3.04685
2.91867
2.79208
2.66652
2.54155
2.41687
2.29228
2.16768
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16956
1.04515
0.920959
0.796991
0.673318
0.549878
0.426932
0.303744
0.182537
0.054082
5.42517
4.57114
4.29015
4.09369
3.91226
3.74783
3.59556
3.45144
3.31309
3.17899
3.04808
2.9195
2.79256
2.6667
2.5415
2.41667
2.29198
2.16732
2.04262
1.91786
1.79304
1.66819
1.54336
1.41858
1.2939
1.16936
1.04498
0.920813
0.796871
0.67322
0.549824
0.426869
0.303868
0.18231
0.0558023
5.3778
4.59354
4.29495
4.09726
3.91481
3.74941
3.5967
3.45237
3.3139
3.17974
3.04878
2.92016
2.79317
2.66726
2.54201
2.41712
2.29239
2.16768
2.04293
1.91813
1.79328
1.66841
1.54355
1.41876
1.29406
1.16951
1.04512
0.920948
0.796998
0.673335
0.549918
0.426932
0.303944
0.182217
0.0567423
5.42148
4.55489
4.29328
4.09307
3.91306
3.74804
3.59519
3.4508
3.31227
3.17805
3.04704
2.91839
2.79139
2.66551
2.54033
2.41554
2.29092
2.16634
2.04172
1.91705
1.79232
1.66756
1.54281
1.4181
1.29348
1.16898
1.04465
0.920518
0.796612
0.672991
0.549631
0.426667
0.303875
0.181837
0.0599325
5.22251
4.65748
4.31653
4.10676
3.92351
3.75477
3.60002
3.45476
3.31565
3.18099
3.04966
2.92076
2.79356
2.66752
2.54221
2.41731
2.2926
2.16794
2.04326
1.91852
1.79373
1.66892
1.54411
1.41935
1.29468
1.17015
1.04577
0.921603
0.797659
0.673998
0.550621
0.427631
0.30496
0.18276
0.063608
5.55884
4.52144
4.28221
4.08715
3.90801
3.7447
3.59294
3.44917
3.3111
3.17725
3.04657
2.91821
2.79147
2.66579
2.54076
2.41607
2.29151
2.16695
2.04232
1.91762
1.79285
1.66803
1.54322
1.41846
1.29379
1.16925
1.04487
0.920705
0.796758
0.6731
0.549677
0.426707
0.30365
0.182121
0.0558306
5.54456
4.52455
4.28351
4.08792
3.90868
3.74513
3.5932
3.44933
3.31118
3.17727
3.04654
2.91813
2.79134
2.66564
2.54059
2.41588
2.29132
2.16676
2.04214
1.91745
1.79269
1.66789
1.54309
1.41834
1.29368
1.16915
1.04479
0.920627
0.796688
0.673035
0.549621
0.426652
0.303631
0.182027
0.0563269
5.52489
4.5258
4.28346
4.08775
3.90861
3.74503
3.5931
3.44926
3.31114
3.17724
3.04651
2.9181
2.79131
2.66559
2.54053
2.41582
2.29125
2.16669
2.04207
1.91738
1.79262
1.66783
1.54304
1.41829
1.29363
1.1691
1.04474
0.920584
0.796654
0.673018
0.549639
0.426691
0.30372
0.182067
0.0564734
5.3017
4.62357
4.30442
4.10134
3.91861
3.7517
3.59808
3.45333
3.31455
3.18015
3.049
2.92023
2.79313
2.66716
2.54188
2.41699
2.29228
2.16762
2.04292
1.91817
1.79337
1.66853
1.54371
1.41894
1.29426
1.16972
1.04534
0.921161
0.797212
0.673549
0.550158
0.427172
0.304371
0.182359
0.0598139
5.31136
4.60605
4.30522
4.10049
3.91845
3.75177
3.59806
3.45319
3.3143
3.17978
3.04852
2.91966
2.79249
2.66646
2.54116
2.41626
2.29156
2.16691
2.04224
1.91752
1.79276
1.66797
1.54319
1.41846
1.29382
1.16931
1.04496
0.920812
0.796889
0.673251
0.549885
0.426913
0.304187
0.182016
0.0615962
5.3822
4.56752
4.2983
4.09566
3.91521
3.74955
3.59627
3.45163
3.31292
3.17855
3.04742
2.91868
2.79161
2.66567
2.54044
2.41561
2.29097
2.16637
2.04175
1.91707
1.79234
1.66759
1.54283
1.41813
1.29351
1.16902
1.04469
0.920562
0.796662
0.673042
0.549686
0.426711
0.303975
0.181767
0.0614367
5.47365
4.53827
4.28741
4.09066
3.91059
3.74644
3.59415
3.45004
3.31172
3.17768
3.04684
2.91835
2.7915
2.66574
2.54065
2.41592
2.29133
2.16677
2.04215
1.91745
1.7927
1.6679
1.54311
1.41836
1.29371
1.16918
1.04482
0.920665
0.79673
0.67308
0.54967
0.426698
0.303701
0.182044
0.0568013
5.45616
4.55091
4.29433
4.09286
3.91329
3.74818
3.59522
3.4508
3.31225
3.178
3.04697
2.91829
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04455
0.920432
0.796542
0.672931
0.549573
0.426585
0.303832
0.181613
0.0613882
5.43756
4.55003
4.29202
4.09228
3.91246
3.74761
3.59486
3.45054
3.31207
3.17788
3.04691
2.91828
2.79131
2.66545
2.54028
2.4155
2.29088
2.16631
2.0417
1.91703
1.7923
1.66755
1.54279
1.41808
1.29346
1.16897
1.04463
0.920504
0.796598
0.672977
0.549618
0.426655
0.303852
0.181835
0.0597106
5.45763
4.55078
4.29403
4.09271
3.91316
3.74809
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79126
2.66536
2.54016
2.41536
2.29073
2.16615
2.04154
1.91688
1.79216
1.6674
1.54266
1.41796
1.29334
1.16885
1.04453
0.920415
0.796525
0.672914
0.549557
0.426573
0.303819
0.181617
0.0612458
5.25151
4.64965
4.3109
4.10478
3.92162
3.7535
3.59922
3.45418
3.31521
3.18066
3.04942
2.92058
2.79343
2.66743
2.54215
2.41727
2.29258
2.16794
2.04326
1.91853
1.79374
1.66893
1.54411
1.41935
1.29467
1.17012
1.04574
0.921556
0.797598
0.673923
0.550526
0.427523
0.304768
0.182658
0.061128
5.43705
4.54818
4.29181
4.09302
3.91265
3.7478
3.59506
3.4507
3.31219
3.17799
3.04702
2.91841
2.79146
2.66563
2.54047
2.4157
2.29109
2.16652
2.0419
1.91722
1.79248
1.6677
1.54293
1.41821
1.29357
1.16906
1.04472
0.920572
0.796651
0.673014
0.549626
0.426653
0.303758
0.181894
0.0584533
5.55031
4.51419
4.28067
4.08633
3.90697
3.74416
3.5927
3.44911
3.31118
3.17748
3.04693
2.91869
2.79206
2.66646
2.54147
2.41678
2.29219
2.16758
2.0429
1.91814
1.79331
1.66844
1.54359
1.41878
1.29408
1.16951
1.04512
0.920927
0.796963
0.67329
0.549844
0.426884
0.303683
0.182472
0.0540628
5.52994
4.52248
4.28213
4.08755
3.9078
3.74479
3.59319
3.44948
3.31145
3.17767
3.04705
2.91875
2.79207
2.66643
2.54141
2.4167
2.2921
2.16748
2.04281
1.91805
1.79322
1.66836
1.54351
1.41872
1.29402
1.16945
1.04506
0.920882
0.796922
0.673251
0.549805
0.426837
0.303638
0.182405
0.0541027
5.52255
4.5254
4.28251
4.08792
3.90809
3.74504
3.59341
3.44967
3.31161
3.17779
3.04715
2.91882
2.79211
2.66645
2.54141
2.41669
2.29208
2.16746
2.04278
1.91801
1.79319
1.66833
1.54348
1.41869
1.29399
1.16942
1.04503
0.920853
0.796904
0.673253
0.54985
0.426911
0.303769
0.182494
0.0540644
5.25515
4.63885
4.312
4.10433
3.92148
3.75358
3.59928
3.45421
3.31522
3.18065
3.04937
2.92049
2.79329
2.66723
2.54189
2.41696
2.29222
2.16754
2.04284
1.9181
1.79331
1.6685
1.5437
1.41895
1.29429
1.16976
1.0454
0.921235
0.7973
0.67365
0.55028
0.427301
0.304615
0.182407
0.0628367
5.43439
4.55072
4.29477
4.0932
3.91349
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16889
1.04456
0.920445
0.796555
0.672944
0.549586
0.426598
0.30384
0.181619
0.0613956
5.29317
4.61585
4.30742
4.10168
3.91937
3.75235
3.59848
3.45357
3.31467
3.18014
3.04888
2.92001
2.79282
2.66678
2.54146
2.41655
2.29183
2.16717
2.04249
1.91777
1.79299
1.66819
1.5434
1.41867
1.29402
1.1695
1.04515
0.920992
0.797063
0.673419
0.55005
0.427074
0.304361
0.182163
0.062087
5.28424
4.63181
4.3067
4.1025
3.91963
3.75233
3.59849
3.45364
3.31481
3.18036
3.04919
2.9204
2.79329
2.6673
2.54202
2.41712
2.29241
2.16774
2.04304
1.91828
1.79348
1.66865
1.54383
1.41906
1.29438
1.16984
1.04545
0.921275
0.797323
0.673656
0.550264
0.427273
0.304495
0.182434
0.060434
5.46013
4.54815
4.29401
4.09286
3.91323
3.74812
3.59517
3.45075
3.31221
3.17796
3.04693
2.91826
2.79125
2.66535
2.54015
2.41535
2.29073
2.16615
2.04154
1.91688
1.79215
1.6674
1.54266
1.41795
1.29334
1.16885
1.04453
0.920409
0.796519
0.67291
0.549552
0.426565
0.303797
0.181599
0.06117
5.56725
4.51942
4.28133
4.08647
3.90751
3.74435
3.5927
3.44902
3.31102
3.17724
3.04661
2.91828
2.79157
2.66591
2.5409
2.41621
2.29164
2.16707
2.04243
1.91772
1.79293
1.66811
1.54329
1.41852
1.29384
1.16929
1.04491
0.920737
0.796795
0.673151
0.549761
0.426815
0.303774
0.182259
0.0555074
5.55683
4.51356
4.28016
4.08592
3.90693
3.74402
3.59253
3.44894
3.31101
3.17729
3.04673
2.91847
2.79181
2.6662
2.5412
2.41652
2.29195
2.16736
2.0427
1.91796
1.79315
1.66831
1.54347
1.41868
1.29398
1.16942
1.04503
0.920847
0.7969
0.673253
0.549856
0.426908
0.303802
0.182388
0.0547452
5.55979
4.51447
4.28033
4.08604
3.90697
3.74404
3.59253
3.44891
3.31097
3.17724
3.04666
2.91839
2.79173
2.66612
2.54113
2.41645
2.29188
2.1673
2.04265
1.91792
1.79311
1.66827
1.54343
1.41864
1.29395
1.16939
1.04501
0.920824
0.796866
0.673198
0.549763
0.4268
0.30367
0.182314
0.0548366
5.434
4.55058
4.293
4.09249
3.91281
3.74784
3.595
3.45064
3.31214
3.17793
3.04693
2.91828
2.79129
2.66541
2.54023
2.41543
2.29082
2.16624
2.04163
1.91696
1.79224
1.66749
1.54274
1.41804
1.29342
1.16893
1.0446
0.920479
0.796581
0.672965
0.54961
0.42664
0.303867
0.181749
0.0605185
5.39138
4.56387
4.29702
4.09543
3.91476
3.74923
3.59607
3.45148
3.3128
3.17847
3.04737
2.91865
2.79161
2.66569
2.54048
2.41566
2.29103
2.16644
2.04182
1.91714
1.7924
1.66764
1.54288
1.41817
1.29355
1.16905
1.04472
0.920582
0.796673
0.673046
0.549677
0.426703
0.303917
0.181826
0.0604827
5.39859
4.56072
4.29697
4.09464
3.91445
3.74898
3.59581
3.45125
3.3126
3.17828
3.0472
2.91848
2.79144
2.66552
2.5403
2.41548
2.29085
2.16626
2.04165
1.91698
1.79225
1.6675
1.54275
1.41805
1.29343
1.16894
1.04462
0.920494
0.796598
0.672982
0.549626
0.426646
0.303905
0.181689
0.0614323
5.41428
4.56687
4.2921
4.09434
3.91311
3.74828
3.59566
3.45132
3.3128
3.17859
3.0476
2.91898
2.79201
2.66616
2.54099
2.41619
2.29155
2.16694
2.04229
1.91757
1.79279
1.66798
1.54318
1.41843
1.29377
1.16924
1.04488
0.92072
0.796784
0.673134
0.549726
0.42675
0.303776
0.182065
0.0570568
5.50677
4.53383
4.28832
4.09052
3.91106
3.74664
3.59417
3.44999
3.31161
3.17752
3.04662
2.91805
2.79114
2.66532
2.54019
2.41543
2.29083
2.16627
2.04166
1.91699
1.79226
1.6675
1.54274
1.41803
1.2934
1.1689
1.04456
0.920427
0.796516
0.672889
0.549511
0.426542
0.303663
0.181754
0.0586441
5.57713
4.50788
4.27911
4.08529
3.90644
3.74373
3.59236
3.44884
3.31096
3.17729
3.04677
2.91855
2.79192
2.66633
2.54134
2.41666
2.29208
2.16749
2.04282
1.91807
1.79324
1.66839
1.54353
1.41873
1.29403
1.16946
1.04507
0.920885
0.796938
0.673293
0.549894
0.426943
0.303792
0.182417
0.0543491
5.36979
4.57252
4.2993
4.09665
3.91579
3.74999
3.59665
3.45197
3.31321
3.1788
3.04765
2.91888
2.79179
2.66584
2.5406
2.41576
2.29111
2.1665
2.04187
1.91719
1.79245
1.66768
1.54293
1.41821
1.29359
1.16909
1.04475
0.92062
0.796711
0.673085
0.549721
0.426747
0.303992
0.181834
0.061104
5.39142
4.56333
4.29718
4.09536
3.91474
3.7492
3.59602
3.45143
3.31276
3.17842
3.04733
2.91861
2.79156
2.66564
2.54043
2.41561
2.29097
2.16638
2.04176
1.91709
1.79235
1.66759
1.54283
1.41812
1.2935
1.16901
1.04467
0.920542
0.796636
0.673012
0.549646
0.426673
0.303895
0.181781
0.0606536
5.50568
4.53639
4.28928
4.09092
3.91136
3.74684
3.5943
3.4501
3.31171
3.1776
3.04669
2.91812
2.7912
2.66538
2.54025
2.41549
2.29089
2.16633
2.04173
1.91706
1.79233
1.66757
1.54281
1.4181
1.29347
1.16897
1.04464
0.920499
0.796587
0.67296
0.549581
0.426608
0.303735
0.181804
0.0588723
5.54694
4.51566
4.28095
4.08652
3.9071
3.74424
3.59275
3.44913
3.31119
3.17747
3.04691
2.91866
2.79202
2.66642
2.54142
2.41673
2.29214
2.16754
2.04286
1.9181
1.79328
1.66841
1.54356
1.41876
1.29406
1.16949
1.0451
0.92091
0.796948
0.673276
0.549831
0.42687
0.303677
0.182449
0.0541434
5.5435
4.51638
4.28122
4.08678
3.9073
3.74439
3.59286
3.44922
3.31125
3.17751
3.04693
2.91867
2.79201
2.66639
2.54139
2.41669
2.2921
2.1675
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29402
1.16946
1.04506
0.920884
0.796936
0.673288
0.549885
0.426938
0.303776
0.182476
0.0540821
5.31348
4.60798
4.30446
4.10052
3.91828
3.75164
3.59802
3.45321
3.31437
3.17989
3.04866
2.91981
2.79265
2.66663
2.54133
2.41643
2.29172
2.16707
2.0424
1.91767
1.79289
1.6681
1.54331
1.41857
1.29392
1.1694
1.04505
0.920893
0.796963
0.673317
0.549939
0.426962
0.304202
0.182096
0.060949
5.45627
4.54926
4.28785
4.0911
3.91073
3.7466
3.59437
3.45029
3.31198
3.17794
3.0471
2.9186
2.79174
2.66597
2.54086
2.41611
2.2915
2.16691
2.04227
1.91756
1.79278
1.66797
1.54317
1.41842
1.29375
1.16922
1.04485
0.920692
0.796757
0.673114
0.549725
0.426773
0.303791
0.182186
0.0562905
5.39591
4.56079
4.29708
4.09509
3.91462
3.74909
3.59591
3.45133
3.31266
3.17833
3.04725
2.91853
2.79148
2.66557
2.54035
2.41554
2.29091
2.16632
2.0417
1.91703
1.7923
1.66754
1.54279
1.41808
1.29346
1.16897
1.04464
0.920511
0.796609
0.672989
0.549627
0.426652
0.303886
0.181732
0.0609406
5.55012
4.52373
4.2831
4.08766
3.90845
3.74498
3.59311
3.44928
3.31116
3.17727
3.04656
2.91816
2.79139
2.6657
2.54066
2.41596
2.29139
2.16683
2.04222
1.91752
1.79275
1.66795
1.54315
1.41839
1.29373
1.16919
1.04483
0.920662
0.79672
0.673065
0.549648
0.426678
0.303643
0.182065
0.0561535
5.15554
4.69253
4.32719
4.11124
3.92795
3.75748
3.60169
3.45601
3.31663
3.18176
3.05028
2.92127
2.794
2.66789
2.54254
2.41761
2.29289
2.16824
2.04357
1.91886
1.79411
1.66933
1.54456
1.41984
1.29521
1.1707
1.04636
0.922224
0.798312
0.674677
0.55133
0.428361
0.305776
0.183741
0.0670202
5.46892
4.5419
4.28931
4.09076
3.91142
3.74691
3.59436
3.45017
3.31178
3.17766
3.04673
2.91814
2.7912
2.66536
2.5402
2.41543
2.29082
2.16626
2.04165
1.91698
1.79226
1.6675
1.54274
1.41804
1.29341
1.16892
1.04459
0.920456
0.796551
0.672932
0.549573
0.426615
0.303798
0.181813
0.0593363
5.56411
4.5135
4.28027
4.08602
3.90695
3.74406
3.59257
3.44897
3.31104
3.17732
3.04676
2.91851
2.79186
2.66626
2.54127
2.4166
2.29203
2.16745
2.04279
1.91805
1.79324
1.66839
1.54355
1.41876
1.29406
1.16949
1.0451
0.920915
0.796953
0.673281
0.549842
0.426878
0.303736
0.182402
0.0547696
5.53467
4.52733
4.28486
4.08874
3.90938
3.74558
3.5935
3.44954
3.31133
3.17737
3.04659
2.91815
2.79134
2.66561
2.54055
2.41583
2.29127
2.16671
2.04211
1.91742
1.79267
1.66788
1.5431
1.41835
1.2937
1.16917
1.04481
0.920653
0.796716
0.673066
0.549657
0.426685
0.303693
0.182021
0.0568467
5.43689
4.54958
4.29207
4.09215
3.91245
3.7476
3.59484
3.45052
3.31204
3.17785
3.04687
2.91824
2.79126
2.66539
2.54021
2.41542
2.29081
2.16623
2.04162
1.91695
1.79222
1.66747
1.54272
1.41801
1.29339
1.1689
1.04457
0.920443
0.796541
0.672924
0.549568
0.426604
0.303815
0.181763
0.0599669
5.54933
4.51434
4.28055
4.08627
3.90701
3.74413
3.59263
3.44901
3.31106
3.17734
3.04678
2.91852
2.79188
2.66627
2.54127
2.41659
2.29201
2.16742
2.04275
1.918
1.79319
1.66833
1.54349
1.41869
1.29399
1.16943
1.04504
0.920858
0.796897
0.673229
0.549789
0.42683
0.303664
0.182391
0.054403
5.55155
4.51316
4.28038
4.08618
3.907
3.74413
3.59263
3.44903
3.31109
3.17737
3.04681
2.91856
2.79191
2.6663
2.5413
2.41661
2.29203
2.16744
2.04277
1.91802
1.7932
1.66835
1.5435
1.41871
1.294
1.16944
1.04505
0.920867
0.79692
0.673273
0.549873
0.426924
0.303783
0.182427
0.0543774
5.6076
4.50496
4.27831
4.08471
3.90598
3.74347
3.59221
3.44876
3.31094
3.17732
3.04685
2.91867
2.79208
2.66651
2.54154
2.41686
2.29228
2.16767
2.04299
1.91822
1.79339
1.66851
1.54365
1.41884
1.29413
1.16956
1.04516
0.92096
0.796992
0.673318
0.549878
0.426931
0.303748
0.18253
0.0541439
5.61016
4.50401
4.27811
4.0846
3.90593
3.74344
3.59219
3.44876
3.31095
3.17734
3.04686
2.91868
2.79209
2.66652
2.54155
2.41687
2.29228
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41883
1.29412
1.16954
1.04514
0.920959
0.797012
0.673368
0.549964
0.427
0.303795
0.182434
0.0540112
5.54367
4.51676
4.281
4.08658
3.90729
3.7443
3.59274
3.44908
3.31111
3.17736
3.04677
2.9185
2.79183
2.66621
2.54121
2.41653
2.29196
2.16737
2.04272
1.91798
1.79317
1.66832
1.54348
1.41869
1.294
1.16944
1.04505
0.920866
0.796906
0.673238
0.549799
0.426835
0.30369
0.182362
0.0547088
5.54477
4.51686
4.28132
4.08672
3.90741
3.74437
3.59278
3.44912
3.31115
3.1774
3.04681
2.91853
2.79186
2.66624
2.54124
2.41655
2.29197
2.16738
2.04273
1.91799
1.79318
1.66833
1.54349
1.4187
1.29401
1.16944
1.04505
0.920874
0.796926
0.673278
0.549879
0.42693
0.303817
0.182423
0.0547006
5.32562
4.59639
4.30366
4.09943
3.91781
3.75145
3.59787
3.45306
3.31421
3.17971
3.04848
2.91962
2.79246
2.66644
2.54114
2.41626
2.29156
2.16692
2.04226
1.91755
1.79279
1.66801
1.54323
1.4185
1.29387
1.16936
1.04501
0.920868
0.796947
0.67331
0.549943
0.426969
0.304237
0.182052
0.0616677
5.45333
4.56467
4.28796
4.09292
3.91123
3.74732
3.59537
3.45144
3.31324
3.17927
3.04846
2.91996
2.79307
2.66722
2.54202
2.41715
2.29241
2.1677
2.04294
1.91811
1.79324
1.66836
1.54348
1.41867
1.29397
1.1694
1.04502
0.920835
0.79688
0.673212
0.54977
0.426788
0.303626
0.182247
0.0543368
5.45487
4.56449
4.28793
4.09272
3.91116
3.7473
3.59539
3.45149
3.31331
3.17936
3.04855
2.92003
2.79312
2.66726
2.54203
2.41714
2.2924
2.16768
2.04292
1.9181
1.79323
1.66835
1.54348
1.41868
1.29398
1.16941
1.04502
0.920842
0.79689
0.673234
0.549829
0.426884
0.303804
0.182437
0.0544115
5.53834
4.52116
4.28227
4.08727
3.90806
3.74473
3.59296
3.44918
3.31111
3.17726
3.04658
2.91822
2.79148
2.66581
2.54078
2.41609
2.29153
2.16696
2.04234
1.91763
1.79286
1.66805
1.54323
1.41847
1.2938
1.16926
1.04488
0.920713
0.796767
0.673108
0.549684
0.426714
0.303653
0.182134
0.055784
5.38757
4.56557
4.29776
4.09531
3.91494
3.74936
3.59613
3.45152
3.31283
3.17847
3.04737
2.91863
2.79157
2.66564
2.54041
2.41559
2.29095
2.16636
2.04174
1.91706
1.79233
1.66757
1.54282
1.41812
1.2935
1.16901
1.04468
0.920553
0.796653
0.673034
0.549677
0.426702
0.303962
0.181764
0.0613493
5.51174
4.52695
4.28461
4.08864
3.90922
3.74546
3.59342
3.44948
3.31128
3.17733
3.04656
2.91813
2.79132
2.6656
2.54053
2.41582
2.29125
2.1667
2.04208
1.9174
1.79264
1.66785
1.54306
1.41831
1.29366
1.16913
1.04477
0.92061
0.796674
0.673024
0.549615
0.426645
0.303642
0.182
0.0566142
5.37079
4.57313
4.29899
4.09665
3.91569
3.74993
3.59662
3.45195
3.3132
3.1788
3.04765
2.91889
2.79181
2.66586
2.54062
2.41579
2.29113
2.16653
2.0419
1.91721
1.79247
1.6677
1.54294
1.41822
1.2936
1.1691
1.04476
0.920623
0.796711
0.673082
0.549714
0.426742
0.303972
0.181855
0.0607774
5.49581
4.53921
4.29042
4.09139
3.91175
3.7471
3.59447
3.45022
3.3118
3.17766
3.04672
2.91814
2.7912
2.66537
2.54022
2.41545
2.29085
2.16629
2.04169
1.91702
1.7923
1.66754
1.54278
1.41807
1.29345
1.16895
1.04462
0.920483
0.796576
0.672952
0.549578
0.426604
0.303749
0.181774
0.0592554
5.52261
4.5245
4.28295
4.0876
3.90821
3.74482
3.59302
3.44924
3.31118
3.17734
3.04667
2.91832
2.79158
2.66591
2.54087
2.41617
2.2916
2.16703
2.04239
1.91768
1.7929
1.66808
1.54326
1.41849
1.29382
1.16927
1.04489
0.920727
0.796787
0.673144
0.549753
0.426806
0.30377
0.182256
0.0555756
5.39699
4.56077
4.29728
4.09487
3.9146
3.74907
3.59588
3.4513
3.31264
3.17831
3.04722
2.91849
2.79145
2.66552
2.54031
2.41549
2.29086
2.16627
2.04165
1.91698
1.79226
1.6675
1.54275
1.41805
1.29343
1.16894
1.04462
0.920495
0.796599
0.672983
0.549626
0.426646
0.303902
0.181686
0.0614379
5.3824
4.56647
4.29833
4.09587
3.91524
3.74957
3.5963
3.45165
3.31294
3.17856
3.04744
2.91869
2.79162
2.66569
2.54046
2.41563
2.29099
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41814
1.29352
1.16902
1.04469
0.920561
0.796657
0.673035
0.549674
0.426698
0.303944
0.181771
0.0611713
5.54927
4.51404
4.28086
4.08651
3.90713
3.74427
3.59277
3.44915
3.3112
3.17747
3.0469
2.91865
2.792
2.66639
2.54139
2.4167
2.29211
2.1675
2.04283
1.91807
1.79324
1.66838
1.54353
1.41873
1.29403
1.16946
1.04506
0.920886
0.796939
0.673292
0.54989
0.426941
0.303769
0.182469
0.0540279
5.54222
4.52609
4.2835
4.08772
3.90862
3.74503
3.5931
3.44926
3.31114
3.17724
3.04651
2.91809
2.7913
2.66558
2.54052
2.41581
2.29124
2.16668
2.04206
1.91737
1.79262
1.66782
1.54303
1.41829
1.29363
1.1691
1.04474
0.920586
0.796656
0.673021
0.549641
0.426694
0.303727
0.182064
0.0565361
5.43381
4.5505
4.29477
4.09323
3.9135
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16889
1.04456
0.920444
0.796554
0.672943
0.549585
0.426597
0.303837
0.18162
0.0613597
5.29913
4.61138
4.30667
4.10113
3.91907
3.75223
3.59843
3.45357
3.31469
3.18017
3.04891
2.92004
2.79285
2.6668
2.54148
2.41657
2.29185
2.1672
2.04252
1.9178
1.79303
1.66823
1.54345
1.41871
1.29407
1.16955
1.0452
0.921046
0.797119
0.673477
0.550111
0.427135
0.304426
0.182208
0.0622557
5.35621
4.58072
4.30044
4.09735
3.91645
3.75054
3.59713
3.4524
3.3136
3.17915
3.04796
2.91915
2.79204
2.66606
2.54079
2.41594
2.29127
2.16666
2.04202
1.91733
1.79258
1.66782
1.54305
1.41834
1.29371
1.16921
1.04487
0.920736
0.796825
0.673197
0.549837
0.426864
0.30413
0.181942
0.0614484
5.22914
4.65704
4.3147
4.10616
3.92304
3.75442
3.5998
3.4546
3.31554
3.18092
3.04961
2.92074
2.79357
2.66755
2.54225
2.41737
2.29268
2.16803
2.04336
1.91863
1.79384
1.66902
1.5442
1.41944
1.29477
1.17023
1.04585
0.921677
0.79773
0.674066
0.550685
0.42769
0.304993
0.182823
0.0628272
5.34842
4.58907
4.30041
4.09824
3.91662
3.75064
3.59733
3.45264
3.31388
3.17945
3.04827
2.91947
2.79236
2.66638
2.54112
2.41625
2.29157
2.16694
2.04228
1.91757
1.79281
1.66801
1.54323
1.4185
1.29385
1.16934
1.04499
0.920834
0.796906
0.673261
0.549878
0.4269
0.304099
0.182058
0.0602156
5.43142
4.55175
4.29474
4.09317
3.91345
3.74827
3.59529
3.45084
3.31228
3.17802
3.04698
2.9183
2.79128
2.66538
2.54019
2.41538
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29337
1.16888
1.04456
0.920437
0.796546
0.672934
0.549577
0.426591
0.303839
0.181628
0.06132
5.43265
4.55194
4.29476
4.09319
3.91345
3.74827
3.59528
3.45084
3.31228
3.17803
3.04699
2.91831
2.7913
2.6654
2.54021
2.4154
2.29078
2.1662
2.04159
1.91693
1.79221
1.66746
1.54271
1.41801
1.2934
1.16891
1.04459
0.920467
0.796575
0.672962
0.549605
0.426619
0.303865
0.18166
0.0612869
5.38194
4.57099
4.29719
4.09567
3.91504
3.74952
3.59635
3.45175
3.31306
3.1787
3.04758
2.91884
2.79178
2.66585
2.54062
2.41579
2.29114
2.16654
2.04191
1.91723
1.79249
1.66772
1.54296
1.41825
1.29362
1.16912
1.04478
0.920645
0.796733
0.673106
0.549742
0.426774
0.304004
0.181917
0.0604891
5.31655
4.60152
4.30472
4.09995
3.91816
3.7516
3.59792
3.45307
3.31419
3.17967
3.04841
2.91956
2.79239
2.66636
2.54106
2.41617
2.29148
2.16684
2.04218
1.91747
1.79271
1.66792
1.54315
1.41842
1.29379
1.16928
1.04493
0.92079
0.79687
0.673236
0.549873
0.426902
0.304186
0.18199
0.0618264
5.34106
4.59167
4.30138
4.09863
3.91697
3.75085
3.59744
3.45271
3.31391
3.17946
3.04826
2.91945
2.79232
2.66633
2.54106
2.41619
2.29151
2.16688
2.04222
1.91751
1.79275
1.66796
1.54318
1.41845
1.29381
1.1693
1.04495
0.920803
0.796878
0.673236
0.549859
0.426884
0.304105
0.182028
0.0605857
5.27585
4.62652
4.30927
4.10276
3.92026
3.75288
3.59884
3.45389
3.31497
3.18043
3.04917
2.92029
2.7931
2.66705
2.54171
2.41678
2.29205
2.16738
2.04269
1.91795
1.79317
1.66836
1.54357
1.41882
1.29417
1.16965
1.04529
0.921131
0.797199
0.673552
0.550184
0.427206
0.304509
0.1823
0.0624834
5.60694
4.50509
4.2783
4.08473
3.90603
3.7435
3.59222
3.44877
3.31095
3.17732
3.04683
2.91864
2.79204
2.66646
2.54149
2.4168
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.4188
1.29409
1.16951
1.04511
0.920933
0.796985
0.673341
0.549939
0.426981
0.303794
0.182429
0.0541169
5.60255
4.5066
4.27866
4.08491
3.90611
3.74355
3.59225
3.44878
3.31095
3.17731
3.04683
2.91864
2.79204
2.66647
2.54149
2.41682
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41883
1.29412
1.16954
1.04514
0.92095
0.796982
0.673309
0.549869
0.426918
0.303742
0.182507
0.0542301
5.50699
4.53737
4.2873
4.08967
3.91033
3.74616
3.59386
3.4498
3.31152
3.17748
3.04663
2.9181
2.79122
2.66542
2.54031
2.41556
2.29097
2.16641
2.04181
1.91713
1.7924
1.66764
1.54287
1.41815
1.29352
1.16901
1.04467
0.920525
0.796608
0.672981
0.549613
0.426659
0.303782
0.181931
0.0581207
5.35102
4.58251
4.30108
4.09757
3.91659
3.75059
3.59713
3.45239
3.31358
3.17913
3.04793
2.91912
2.792
2.66602
2.54075
2.41589
2.29123
2.16661
2.04197
1.91728
1.79254
1.66777
1.54301
1.41829
1.29367
1.16917
1.04483
0.920695
0.796785
0.673159
0.549802
0.42683
0.304105
0.181895
0.0616324
5.2432
4.64642
4.31335
4.10516
3.92217
3.75396
3.59951
3.45438
3.31536
3.18077
3.04948
2.92061
2.79344
2.66742
2.54211
2.41721
2.2925
2.16784
2.04316
1.91842
1.79364
1.66883
1.54403
1.41927
1.29461
1.17008
1.04571
0.921541
0.797599
0.673942
0.550565
0.427578
0.304888
0.182686
0.0630492
5.56172
4.51427
4.2801
4.0859
3.90702
3.74407
3.59254
3.44893
3.31099
3.17726
3.04668
2.9184
2.79172
2.6661
2.5411
2.41641
2.29184
2.16726
2.04262
1.91788
1.79308
1.66824
1.54341
1.41862
1.29393
1.16937
1.04498
0.920806
0.79686
0.673214
0.549819
0.426874
0.303792
0.182343
0.0549962
5.47321
4.54421
4.29253
4.0923
3.91267
3.74773
3.5949
3.45054
3.31203
3.17783
3.04683
2.91819
2.79121
2.66533
2.54016
2.41537
2.29075
2.16618
2.04157
1.91691
1.79218
1.66743
1.54268
1.41798
1.29336
1.16887
1.04454
0.920419
0.796524
0.672911
0.549549
0.426569
0.303768
0.181652
0.0604142
5.37557
4.56944
4.29895
4.09615
3.91547
3.74972
3.5964
3.45173
3.313
3.17861
3.04748
2.91872
2.79164
2.6657
2.54046
2.41563
2.29099
2.16639
2.04177
1.91709
1.79235
1.66759
1.54284
1.41813
1.29351
1.16902
1.04469
0.920557
0.796654
0.673033
0.549673
0.426698
0.303955
0.181763
0.0613579
5.529
4.52798
4.28548
4.08915
3.90978
3.74583
3.59365
3.44964
3.31139
3.1774
3.04659
2.91812
2.79129
2.66554
2.54046
2.41574
2.29117
2.16662
2.04201
1.91733
1.79259
1.66781
1.54303
1.41829
1.29364
1.16912
1.04477
0.920615
0.796683
0.673038
0.549635
0.426664
0.303698
0.181969
0.057247
5.51066
4.5293
4.28471
4.08842
3.90913
3.74535
3.59331
3.44941
3.31124
3.17731
3.04654
2.9181
2.79129
2.66555
2.54048
2.41576
2.29118
2.16662
2.04201
1.91733
1.79258
1.66779
1.543
1.41826
1.29361
1.16909
1.04473
0.920575
0.796648
0.673013
0.549636
0.426686
0.303736
0.182039
0.0568386
5.46106
4.54167
4.28859
4.0913
3.91114
3.74679
3.59439
3.45021
3.31184
3.17776
3.04688
2.91835
2.79147
2.66569
2.54058
2.41584
2.29125
2.16668
2.04206
1.91737
1.79262
1.66784
1.54305
1.41831
1.29366
1.16914
1.04479
0.920636
0.796705
0.673059
0.549655
0.426683
0.303717
0.181997
0.0572731
5.43051
4.55791
4.29072
4.09282
3.9123
3.74771
3.59518
3.45093
3.31248
3.17832
3.04737
2.91878
2.79184
2.666
2.54085
2.41607
2.29144
2.16685
2.04221
1.91751
1.79275
1.66795
1.54316
1.41842
1.29377
1.16924
1.04489
0.920732
0.796802
0.673161
0.549778
0.426818
0.303901
0.182152
0.0574944
5.50544
4.52849
4.28441
4.08863
3.90901
3.74536
3.59339
3.44949
3.31132
3.1774
3.04667
2.91826
2.79148
2.66578
2.54073
2.41603
2.29146
2.1669
2.04228
1.91758
1.79281
1.66801
1.5432
1.41844
1.29378
1.16924
1.04487
0.920707
0.796764
0.673107
0.549688
0.426716
0.303674
0.182109
0.0561038
5.49713
4.52919
4.28566
4.0893
3.9098
3.74585
3.59367
3.44965
3.31139
3.1774
3.04659
2.91812
2.79128
2.66554
2.54046
2.41573
2.29116
2.1666
2.042
1.91731
1.79257
1.66778
1.543
1.41826
1.29361
1.16909
1.04474
0.920582
0.796651
0.673006
0.549602
0.426633
0.303658
0.181957
0.0570635
5.48536
4.5382
4.28775
4.09003
3.91072
3.74642
3.59403
3.44993
3.31161
3.17754
3.04666
2.91811
2.79121
2.6654
2.54026
2.41551
2.29091
2.16635
2.04175
1.91708
1.79235
1.66759
1.54283
1.41811
1.29348
1.16898
1.04464
0.920501
0.796588
0.672964
0.549599
0.426643
0.303789
0.181891
0.0585378
5.41729
4.55411
4.29559
4.09371
3.91383
3.74854
3.59548
3.45099
3.3124
3.17811
3.04706
2.91836
2.79133
2.66543
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.54271
1.41801
1.29339
1.1689
1.04458
0.920461
0.796568
0.672956
0.549599
0.426613
0.303863
0.18164
0.0614333
5.50624
4.53881
4.28785
4.08996
3.91065
3.74638
3.594
3.4499
3.31158
3.17752
3.04664
2.91809
2.79118
2.66537
2.54024
2.41548
2.29088
2.16632
2.04171
1.91704
1.79231
1.66755
1.54279
1.41808
1.29345
1.16895
1.04461
0.920469
0.796557
0.672934
0.54957
0.426616
0.303761
0.181868
0.0584961
5.42924
4.54918
4.29295
4.0931
3.91291
3.7479
3.59506
3.45066
3.31214
3.17792
3.04692
2.91829
2.79131
2.66545
2.54028
2.41549
2.29088
2.1663
2.04169
1.91702
1.79228
1.66752
1.54276
1.41805
1.29343
1.16893
1.04459
0.920461
0.796552
0.672927
0.549554
0.426583
0.303747
0.18176
0.0594536
5.42096
4.5526
4.29504
4.09338
3.91364
3.74842
3.59539
3.45093
3.31235
3.17808
3.04703
2.91834
2.79131
2.66541
2.5402
2.4154
2.29077
2.16619
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04457
0.920447
0.796556
0.672944
0.549587
0.426601
0.303851
0.181627
0.0614429
5.51328
4.52956
4.28485
4.08851
3.90926
3.74544
3.59337
3.44944
3.31126
3.17731
3.04654
2.91808
2.79125
2.66551
2.54043
2.4157
2.29113
2.16657
2.04196
1.91728
1.79253
1.66775
1.54297
1.41823
1.29358
1.16906
1.0447
0.920553
0.796628
0.672995
0.54962
0.42667
0.303733
0.182013
0.0570315
5.45648
4.5502
4.29455
4.09303
3.91338
3.74823
3.59526
3.45082
3.31226
3.17801
3.04697
2.91829
2.79127
2.66537
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54268
1.41798
1.29336
1.16887
1.04455
0.920432
0.796543
0.672933
0.549575
0.426586
0.303826
0.181608
0.0613526
5.41104
4.56441
4.29265
4.09377
3.91312
3.74822
3.59551
3.45116
3.31264
3.17842
3.04742
2.91878
2.7918
2.66593
2.54075
2.41595
2.29132
2.16673
2.04209
1.91739
1.79264
1.66785
1.54307
1.41833
1.29369
1.16917
1.04482
0.920672
0.796748
0.673111
0.549733
0.426772
0.303898
0.182058
0.0582562
5.56463
4.5108
4.2797
4.08565
3.90663
3.74387
3.59245
3.44889
3.311
3.17731
3.04677
2.91854
2.79191
2.66632
2.54134
2.41666
2.29209
2.16749
2.04283
1.91808
1.79326
1.6684
1.54355
1.41875
1.29405
1.16948
1.04509
0.920903
0.796939
0.673268
0.549828
0.426871
0.303709
0.182433
0.0544462
5.56497
4.50945
4.27931
4.08547
3.90658
3.74383
3.59242
3.44887
3.31098
3.1773
3.04676
2.91853
2.79189
2.66629
2.5413
2.41662
2.29204
2.16745
2.04278
1.91803
1.79321
1.66836
1.54351
1.41871
1.29401
1.16944
1.04505
0.920866
0.796919
0.673273
0.549874
0.426926
0.303787
0.182411
0.0544218
5.45209
4.54742
4.29211
4.09196
3.91247
3.74761
3.59484
3.45052
3.31204
3.17785
3.04686
2.91822
2.79124
2.66537
2.54019
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66746
1.54272
1.41801
1.2934
1.16891
1.04458
0.920458
0.796561
0.672947
0.549592
0.426622
0.303845
0.181729
0.0604547
5.48981
4.53401
4.28561
4.08909
3.90952
3.74564
3.59355
3.4496
3.3114
3.17745
3.04667
2.91822
2.7914
2.66567
2.54059
2.41587
2.29129
2.16673
2.04211
1.91742
1.79266
1.66787
1.54308
1.41834
1.29368
1.16916
1.04479
0.920638
0.796707
0.673069
0.549687
0.426735
0.303776
0.182106
0.0567297
5.49205
4.53602
4.28692
4.08961
3.91022
3.74609
3.59381
3.44977
3.3115
3.17748
3.04664
2.91813
2.79125
2.66547
2.54036
2.41562
2.29103
2.16647
2.04187
1.91719
1.79246
1.66769
1.54292
1.4182
1.29356
1.16905
1.0447
0.920555
0.796635
0.673005
0.549634
0.42668
0.303789
0.181969
0.0578834
5.39339
4.57936
4.29379
4.09575
3.91401
3.74889
3.59619
3.45181
3.31326
3.17901
3.04798
2.91932
2.79232
2.66642
2.54122
2.41639
2.29173
2.1671
2.04243
1.91769
1.7929
1.66808
1.54327
1.41851
1.29385
1.16931
1.04495
0.920787
0.796849
0.673196
0.549787
0.426808
0.303841
0.182106
0.0571166
5.47404
4.54717
4.29169
4.0917
3.91227
3.74748
3.59475
3.45045
3.31199
3.17781
3.04683
2.9182
2.79123
2.66536
2.54018
2.4154
2.29078
2.16621
2.0416
1.91694
1.79221
1.66746
1.54271
1.41801
1.29339
1.1689
1.04457
0.920451
0.796553
0.672939
0.549585
0.426616
0.303834
0.181733
0.0603039
5.5239
4.53183
4.28539
4.08877
3.90959
3.74567
3.59352
3.44955
3.31133
3.17735
3.04655
2.91806
2.79121
2.66544
2.54034
2.41561
2.29103
2.16647
2.04186
1.91718
1.79244
1.66767
1.5429
1.41817
1.29353
1.16901
1.04466
0.920517
0.796596
0.672966
0.549594
0.426644
0.303734
0.181959
0.0574663
5.53211
4.52962
4.28466
4.08837
3.9092
3.74541
3.59335
3.44944
3.31126
3.17732
3.04655
2.9181
2.79127
2.66553
2.54045
2.41573
2.29116
2.1666
2.04199
1.91731
1.79256
1.66778
1.543
1.41826
1.29361
1.16909
1.04473
0.920583
0.796657
0.673023
0.549646
0.426696
0.303758
0.182033
0.0570566
5.23377
4.65129
4.31482
4.10587
3.92278
3.75434
3.59975
3.45457
3.3155
3.18088
3.04957
2.92069
2.7935
2.66746
2.54214
2.41723
2.2925
2.16783
2.04314
1.9184
1.7936
1.66879
1.54398
1.41922
1.29456
1.17003
1.04566
0.921486
0.797545
0.673887
0.550513
0.427526
0.304849
0.182645
0.0633209
5.55136
4.51417
4.28082
4.08639
3.90704
3.74416
3.59265
3.44903
3.31109
3.17736
3.0468
2.91856
2.79192
2.66631
2.54132
2.41664
2.29206
2.16747
2.0428
1.91805
1.79323
1.66837
1.54352
1.41873
1.29403
1.16946
1.04507
0.920885
0.796924
0.673254
0.549813
0.426855
0.303679
0.182426
0.0543058
5.5533
4.51255
4.28033
4.08612
3.90691
3.74408
3.59262
3.44902
3.3111
3.17739
3.04684
2.9186
2.79195
2.66635
2.54136
2.41667
2.29209
2.16749
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16946
1.04507
0.920887
0.796939
0.673292
0.54989
0.42694
0.303783
0.182445
0.0542288
5.59368
4.51265
4.27997
4.08567
3.90671
3.74389
3.59244
3.44887
3.31096
3.17725
3.0467
2.91845
2.79181
2.66621
2.54122
2.41654
2.29197
2.16739
2.04273
1.91799
1.79318
1.66833
1.54349
1.41869
1.294
1.16943
1.04504
0.92086
0.796899
0.67323
0.549792
0.426832
0.303691
0.182366
0.0546939
5.59711
4.51161
4.27971
4.08548
3.90663
3.74383
3.5924
3.44884
3.31094
3.17725
3.0467
2.91845
2.7918
2.66619
2.5412
2.41652
2.29194
2.16736
2.0427
1.91795
1.79314
1.66829
1.54345
1.41866
1.29396
1.16939
1.045
0.920825
0.796879
0.673234
0.549838
0.426892
0.303778
0.18237
0.0546492
5.27708
4.63412
4.30817
4.10345
3.92026
3.75273
3.59876
3.45382
3.31493
3.18043
3.04922
2.9204
2.79326
2.66726
2.54196
2.41706
2.29234
2.16767
2.04297
1.91822
1.79342
1.66859
1.54378
1.41901
1.29434
1.1698
1.04542
0.921241
0.797289
0.67362
0.550221
0.427225
0.304442
0.182361
0.0605645
5.40442
4.56944
4.29287
4.0942
3.9133
3.74837
3.59568
3.45134
3.31282
3.17859
3.04759
2.91894
2.79195
2.66607
2.54089
2.41608
2.29144
2.16683
2.04219
1.91748
1.79271
1.66792
1.54313
1.41838
1.29373
1.16921
1.04485
0.9207
0.796772
0.673131
0.549751
0.426789
0.303899
0.182098
0.0579011
5.40404
4.55791
4.29677
4.09463
3.9144
3.74893
3.59577
3.45121
3.31257
3.17826
3.04718
2.91847
2.79143
2.66551
2.5403
2.41549
2.29086
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16895
1.04463
0.920503
0.796607
0.672991
0.549632
0.42665
0.303895
0.181696
0.0612932
5.46972
4.54824
4.29264
4.09213
3.91267
3.74776
3.59493
3.45058
3.31208
3.17788
3.04688
2.91823
2.79123
2.66535
2.54017
2.41537
2.29075
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16887
1.04455
0.92043
0.796536
0.672924
0.54957
0.426594
0.303827
0.181676
0.0607601
5.56439
4.52021
4.28175
4.08688
3.90778
3.74455
3.59284
3.44911
3.31106
3.17724
3.04658
2.91823
2.7915
2.66584
2.54082
2.41613
2.29157
2.167
2.04238
1.91767
1.79289
1.66807
1.54325
1.41849
1.29381
1.16927
1.04489
0.920721
0.796773
0.673113
0.549687
0.426718
0.303649
0.182147
0.0556648
5.48618
4.5332
4.28714
4.0902
3.9104
3.74625
3.59395
3.44986
3.31155
3.17751
3.04668
2.91818
2.79133
2.66556
2.54047
2.41574
2.29116
2.1666
2.04199
1.9173
1.79256
1.66777
1.54299
1.41825
1.29361
1.16909
1.04473
0.920582
0.796653
0.673009
0.549607
0.426637
0.30367
0.181954
0.0572213
5.5816
4.51485
4.28028
4.08586
3.90696
3.74402
3.5925
3.4489
3.31096
3.17723
3.04665
2.91837
2.7917
2.66607
2.54107
2.41638
2.29181
2.16723
2.04258
1.91785
1.79305
1.66821
1.54338
1.41859
1.2939
1.16934
1.04496
0.92078
0.796835
0.673191
0.549798
0.426853
0.303771
0.182324
0.054975
5.57794
4.51531
4.28044
4.08604
3.90703
3.74408
3.59254
3.44892
3.31096
3.17722
3.04663
2.91835
2.79168
2.66606
2.54106
2.41638
2.29182
2.16724
2.0426
1.91787
1.79307
1.66823
1.54339
1.41861
1.29392
1.16936
1.04498
0.920801
0.796844
0.673178
0.549744
0.42678
0.303662
0.182279
0.0549879
5.3428
4.58869
4.30135
4.09791
3.91671
3.75061
3.59714
3.4524
3.3136
3.17915
3.04796
2.91916
2.79203
2.66605
2.54078
2.41592
2.29124
2.16662
2.04198
1.91728
1.79253
1.66775
1.54299
1.41827
1.29364
1.16914
1.0448
0.920664
0.796752
0.673125
0.549767
0.4268
0.304073
0.181902
0.0613899
5.60552
4.50607
4.27842
4.08486
3.90616
3.74357
3.59227
3.44879
3.31095
3.17731
3.04681
2.9186
2.79199
2.66641
2.54142
2.41674
2.29216
2.16756
2.04289
1.91813
1.7933
1.66843
1.54358
1.41877
1.29406
1.16949
1.04509
0.920909
0.796961
0.673316
0.549916
0.426962
0.303796
0.182424
0.054239
5.59889
4.50769
4.27877
4.08505
3.90624
3.74363
3.5923
3.44881
3.31096
3.1773
3.0468
2.9186
2.79199
2.66641
2.54143
2.41676
2.29218
2.16758
2.04291
1.91815
1.79332
1.66846
1.5436
1.4188
1.29409
1.16952
1.04513
0.920934
0.796967
0.673295
0.549854
0.426901
0.303733
0.182475
0.0543438
5.42053
4.57661
4.29056
4.09434
3.91257
3.74806
3.5958
3.45171
3.31338
3.17931
3.04841
2.91983
2.79287
2.66699
2.54176
2.4169
2.29218
2.16749
2.04276
1.91797
1.79313
1.66827
1.54343
1.41864
1.29395
1.1694
1.04502
0.920844
0.796899
0.673246
0.549847
0.426892
0.303881
0.182339
0.0555485
5.44675
4.54958
4.28919
4.09141
3.91126
3.74685
3.59444
3.45028
3.31192
3.17783
3.04695
2.9184
2.7915
2.6657
2.54057
2.41581
2.29121
2.16664
2.04202
1.91733
1.79258
1.6678
1.54302
1.41828
1.29364
1.16912
1.04476
0.920614
0.796689
0.673053
0.549675
0.426719
0.303806
0.182047
0.0574912
5.52378
4.52861
4.28578
4.0893
3.90993
3.74592
3.5937
3.44966
3.3114
3.17739
3.04657
2.91808
2.79124
2.66548
2.54039
2.41566
2.29109
2.16653
2.04193
1.91725
1.79251
1.66773
1.54295
1.41822
1.29358
1.16906
1.04471
0.920562
0.796634
0.672993
0.549595
0.426624
0.303673
0.181916
0.0574319
5.54898
4.52459
4.28292
4.08742
3.90839
3.7449
3.59303
3.44922
3.31112
3.17725
3.04653
2.91814
2.79136
2.66565
2.5406
2.41589
2.29132
2.16676
2.04214
1.91745
1.79269
1.66789
1.54309
1.41834
1.29368
1.16915
1.04478
0.920623
0.796691
0.673053
0.549671
0.426723
0.303742
0.182106
0.0563442
5.56024
4.52288
4.28242
4.08712
3.90808
3.74471
3.59292
3.44917
3.31111
3.17727
3.0466
2.91823
2.79148
2.6658
2.54077
2.41607
2.2915
2.16694
2.04232
1.91761
1.79284
1.66803
1.54323
1.41846
1.29379
1.16925
1.04488
0.920712
0.796773
0.673131
0.549744
0.426796
0.303787
0.182203
0.0559951
5.39938
4.55959
4.29708
4.09478
3.91454
3.74904
3.59585
3.45128
3.31262
3.1783
3.04721
2.91849
2.79144
2.66552
2.54031
2.41549
2.29086
2.16627
2.04166
1.91699
1.79226
1.66751
1.54276
1.41806
1.29344
1.16895
1.04462
0.9205
0.796604
0.672988
0.54963
0.426649
0.303902
0.181691
0.0613957
5.16967
4.68593
4.32474
4.1105
3.92702
3.75689
3.60134
3.45575
3.31643
3.18161
3.05016
2.92117
2.79392
2.66783
2.54248
2.41756
2.29285
2.1682
2.04353
1.91882
1.79406
1.66928
1.54451
1.41979
1.29516
1.17066
1.04632
0.922179
0.798267
0.674635
0.551287
0.428319
0.305713
0.183618
0.065763
5.51856
4.53364
4.28606
4.08912
3.90988
3.74586
3.59366
3.44966
3.31142
3.17742
3.04659
2.91809
2.79123
2.66545
2.54035
2.41561
2.29103
2.16647
2.04187
1.91719
1.79245
1.66768
1.54291
1.41819
1.29355
1.16904
1.04469
0.920541
0.796621
0.672991
0.54962
0.426667
0.303769
0.181966
0.0577134
5.50252
4.5339
4.28628
4.08928
3.90995
3.74591
3.5937
3.44969
3.31145
3.17746
3.04664
2.91814
2.79129
2.66552
2.54042
2.41569
2.29111
2.16655
2.04195
1.91727
1.79253
1.66776
1.54299
1.41826
1.29362
1.1691
1.04475
0.920602
0.796679
0.673046
0.549672
0.426718
0.303811
0.18202
0.0576631
5.4401
4.55008
4.29351
4.0926
3.913
3.74797
3.59508
3.45069
3.31216
3.17794
3.04692
2.91826
2.79126
2.66537
2.54018
2.41538
2.29076
2.16618
2.04157
1.91691
1.79218
1.66743
1.54268
1.41798
1.29337
1.16888
1.04456
0.920436
0.796543
0.67293
0.549575
0.426598
0.303837
0.181667
0.0609457
5.50505
4.52907
4.28605
4.08947
3.91
3.74596
3.59373
3.44969
3.31141
3.1774
3.04658
2.91809
2.79125
2.66549
2.5404
2.41567
2.2911
2.16654
2.04194
1.91726
1.79252
1.66774
1.54296
1.41823
1.29358
1.16907
1.04472
0.920565
0.796638
0.672995
0.549597
0.426627
0.303673
0.181922
0.0573987
5.46576
4.5476
4.29392
4.09285
3.91315
3.74805
3.59512
3.45071
3.31217
3.17793
3.04691
2.91824
2.79123
2.66534
2.54015
2.41535
2.29073
2.16615
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29334
1.16885
1.04453
0.920407
0.796517
0.672907
0.549548
0.426563
0.303786
0.181609
0.0609828
5.3683
4.57382
4.29943
4.09687
3.91593
3.75012
3.59678
3.45209
3.31332
3.1789
3.04774
2.91897
2.79188
2.66592
2.54068
2.41583
2.29118
2.16657
2.04194
1.91725
1.79251
1.66774
1.54298
1.41827
1.29364
1.16914
1.04481
0.92067
0.796759
0.67313
0.549763
0.426789
0.304028
0.181885
0.06102
5.46214
4.54603
4.28754
4.09135
3.91091
3.74681
3.59456
3.45044
3.3121
3.17804
3.04718
2.91868
2.79182
2.66605
2.54094
2.41619
2.29159
2.16699
2.04235
1.91764
1.79286
1.66805
1.54324
1.41848
1.29381
1.16928
1.04491
0.920746
0.796805
0.67315
0.549731
0.426756
0.303714
0.182138
0.0561563
5.57111
4.5185
4.28132
4.0866
3.9075
3.74437
3.59274
3.44905
3.31105
3.17726
3.04663
2.91832
2.79162
2.66598
2.54097
2.41629
2.29173
2.16717
2.04253
1.91781
1.79302
1.6682
1.54337
1.41859
1.29391
1.16936
1.04498
0.920801
0.796847
0.673182
0.549751
0.426782
0.303688
0.182241
0.0553758
5.48667
4.53783
4.28525
4.08966
3.90961
3.74594
3.59396
3.45002
3.31182
3.17787
3.04711
2.91868
2.79188
2.66616
2.54108
2.41635
2.29175
2.16715
2.0425
1.91777
1.79298
1.66815
1.54333
1.41856
1.29388
1.16933
1.04496
0.920787
0.796845
0.673198
0.549802
0.426853
0.303808
0.182331
0.0554332
5.5213
4.52433
4.28262
4.0876
3.90808
3.7448
3.59307
3.44932
3.31128
3.17747
3.04683
2.9185
2.79179
2.66613
2.54111
2.41641
2.29183
2.16725
2.0426
1.91787
1.79307
1.66824
1.54341
1.41863
1.29394
1.16939
1.045
0.920828
0.796882
0.673233
0.549836
0.426887
0.303812
0.18237
0.0551056
5.31039
4.62459
4.30275
4.10164
3.91841
3.75153
3.59801
3.45329
3.31453
3.18016
3.04904
2.92031
2.79325
2.66731
2.54207
2.41721
2.29252
2.16787
2.04317
1.91841
1.79359
1.66873
1.54389
1.4191
1.2944
1.16984
1.04544
0.921254
0.797293
0.673617
0.550202
0.427201
0.30432
0.182373
0.0585126
5.46979
4.54505
4.28654
4.09055
3.91024
3.74637
3.59428
3.45028
3.31201
3.17801
3.0472
2.91873
2.7919
2.66614
2.54105
2.41629
2.29168
2.16708
2.04242
1.91769
1.7929
1.66808
1.54327
1.4185
1.29383
1.16928
1.04491
0.920745
0.796805
0.673159
0.549766
0.426816
0.303793
0.182277
0.0556733
5.4477
4.54602
4.29335
4.09269
3.91304
3.74798
3.59507
3.45068
3.31215
3.17791
3.0469
2.91824
2.79123
2.66535
2.54016
2.41536
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16886
1.04454
0.920419
0.796527
0.672916
0.549557
0.426573
0.30379
0.181628
0.0608469
5.51699
4.52838
4.28461
4.08841
3.90908
3.74534
3.59332
3.44944
3.31128
3.17737
3.04662
2.91819
2.79139
2.66567
2.54061
2.4159
2.29133
2.16677
2.04216
1.91747
1.79272
1.66793
1.54314
1.41839
1.29373
1.1692
1.04484
0.920679
0.796747
0.673108
0.549725
0.426773
0.303808
0.182132
0.0567114
5.52152
4.52438
4.28268
4.08772
3.90811
3.74482
3.59308
3.44931
3.31125
3.17743
3.04678
2.91845
2.79174
2.66609
2.54107
2.41638
2.29181
2.16723
2.04258
1.91786
1.79306
1.66823
1.5434
1.41862
1.29393
1.16938
1.045
0.920822
0.796867
0.673202
0.549768
0.426799
0.303681
0.182279
0.055098
5.50477
4.53104
4.28367
4.08857
3.9087
3.7453
3.59348
3.44965
3.31153
3.17765
3.04696
2.91859
2.79185
2.66616
2.54111
2.41639
2.2918
2.1672
2.04254
1.9178
1.793
1.66816
1.54333
1.41855
1.29387
1.16932
1.04493
0.920764
0.796821
0.673173
0.549776
0.42683
0.303749
0.182345
0.0548729
5.47557
4.5461
4.2911
4.09143
3.912
3.7473
3.59462
3.45036
3.31192
3.17776
3.0468
2.91818
2.79121
2.66535
2.54018
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04457
0.920446
0.796546
0.672931
0.549576
0.426611
0.303818
0.181755
0.0599885
5.44949
4.54983
4.289
4.0921
3.91153
3.74717
3.59477
3.45057
3.31217
3.17806
3.04717
2.91863
2.79174
2.66595
2.54083
2.41607
2.29146
2.16688
2.04224
1.91753
1.79276
1.66796
1.54316
1.41841
1.29375
1.16922
1.04486
0.920698
0.796762
0.67311
0.549698
0.426725
0.303719
0.182074
0.0566552
5.41536
4.55347
4.29541
4.09395
3.91382
3.74851
3.59547
3.45098
3.31238
3.1781
3.04705
2.91837
2.79135
2.66545
2.54025
2.41545
2.29082
2.16624
2.04163
1.91696
1.79224
1.66748
1.54274
1.41803
1.29341
1.16892
1.0446
0.920471
0.796574
0.672958
0.549597
0.426617
0.303843
0.18169
0.06087
5.14384
4.69792
4.32927
4.11189
3.92878
3.75802
3.60201
3.45625
3.31682
3.18191
3.0504
2.92137
2.79408
2.66796
2.54259
2.41766
2.29294
2.16828
2.04361
1.9189
1.79415
1.66937
1.5446
1.41988
1.29525
1.17075
1.04642
0.922279
0.798369
0.674738
0.551396
0.42843
0.305866
0.183896
0.0681346
5.3502
4.59479
4.29889
4.09768
3.91598
3.75012
3.59696
3.4524
3.31372
3.17936
3.04824
2.91948
2.79239
2.66644
2.54118
2.41632
2.29164
2.16701
2.04234
1.91762
1.79285
1.66804
1.54325
1.41851
1.29385
1.16933
1.04497
0.920816
0.796885
0.673241
0.549862
0.426891
0.304072
0.182116
0.0593099
5.60931
4.50672
4.27872
4.08493
3.90617
3.74359
3.59229
3.44882
3.31099
3.17736
3.04687
2.91868
2.79207
2.6665
2.54152
2.41684
2.29226
2.16766
2.04298
1.91822
1.79338
1.66852
1.54366
1.41885
1.29413
1.16956
1.04516
0.920973
0.797023
0.673376
0.549972
0.427013
0.303832
0.182465
0.054193
5.60052
4.50732
4.27876
4.08498
3.90618
3.74359
3.59228
3.4488
3.31096
3.17731
3.04682
2.91863
2.79202
2.66645
2.54148
2.4168
2.29222
2.16762
2.04295
1.91818
1.79335
1.66849
1.54363
1.41882
1.29411
1.16954
1.04514
0.920949
0.796982
0.673308
0.549868
0.426916
0.303743
0.182497
0.0542845
5.49244
4.53361
4.28559
4.08983
3.90984
3.74603
3.59395
3.44995
3.3117
3.17773
3.04695
2.91851
2.79171
2.66599
2.54093
2.41621
2.29163
2.16705
2.04242
1.91771
1.79293
1.66812
1.5433
1.41854
1.29387
1.16933
1.04496
0.920792
0.796846
0.673187
0.549763
0.426789
0.303726
0.182196
0.0559304
5.4367
4.55595
4.28981
4.09223
3.91173
3.74727
3.59483
3.45064
3.31224
3.17813
3.04722
2.91865
2.79174
2.66592
2.54079
2.41602
2.2914
2.16681
2.04217
1.91746
1.7927
1.6679
1.54311
1.41836
1.2937
1.16918
1.04482
0.920664
0.796734
0.673093
0.54971
0.426754
0.303817
0.182116
0.0570535
5.47454
4.53913
4.28646
4.08973
3.90993
3.74594
3.59378
3.44978
3.31154
3.17755
3.04675
2.91828
2.79144
2.66569
2.5406
2.41587
2.29128
2.16671
2.04209
1.9174
1.79264
1.66785
1.54306
1.41831
1.29366
1.16913
1.04477
0.920615
0.796685
0.673047
0.549664
0.426713
0.303755
0.182093
0.0567002
5.43418
4.55136
4.29471
4.09314
3.91346
3.74828
3.59529
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04457
0.920448
0.796557
0.672946
0.549588
0.4266
0.303847
0.181627
0.0614098
5.43686
4.55091
4.29472
4.09316
3.91348
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66743
1.54269
1.41799
1.29337
1.16889
1.04456
0.920446
0.796555
0.672944
0.549586
0.426598
0.303844
0.181621
0.0614205
5.1705
4.68549
4.32457
4.11037
3.92695
3.75685
3.60131
3.45573
3.31641
3.18159
3.05014
2.92115
2.7939
2.66781
2.54246
2.41754
2.29283
2.16818
2.04351
1.9188
1.79405
1.66926
1.54449
1.41977
1.29513
1.17063
1.04628
0.922139
0.798221
0.674581
0.551225
0.428248
0.305631
0.183525
0.0657135
5.39196
4.56414
4.2967
4.09537
3.91465
3.74916
3.59602
3.45145
3.31278
3.17845
3.04736
2.91865
2.79161
2.66569
2.54048
2.41567
2.29103
2.16644
2.04182
1.91714
1.7924
1.66764
1.54288
1.41816
1.29354
1.16904
1.0447
0.920567
0.796656
0.673028
0.549657
0.426684
0.303887
0.181824
0.0602229
5.47011
4.54506
4.29288
4.09244
3.9128
3.74781
3.59496
3.45059
3.31208
3.17786
3.04686
2.91822
2.79123
2.66535
2.54017
2.41538
2.29077
2.16619
2.04159
1.91692
1.7922
1.66744
1.5427
1.41799
1.29338
1.16888
1.04456
0.920437
0.796543
0.67293
0.549569
0.426587
0.303791
0.181658
0.0605684
5.51446
4.53055
4.28336
4.08856
3.90845
3.74534
3.59368
3.44991
3.31182
3.17797
3.0473
2.91894
2.7922
2.66652
2.54146
2.41672
2.29209
2.16747
2.04278
1.91801
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04503
0.920847
0.79689
0.67322
0.549771
0.426798
0.303587
0.182361
0.0539478
5.43758
4.55081
4.29398
4.09279
3.91317
3.74809
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79126
2.66537
2.54018
2.41538
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41798
1.29336
1.16887
1.04455
0.920433
0.796541
0.672928
0.549572
0.426591
0.303835
0.181645
0.0611435
5.234
4.65134
4.31492
4.10603
3.9228
3.75435
3.59977
3.45457
3.3155
3.18088
3.04957
2.92069
2.79351
2.66748
2.54218
2.41728
2.29257
2.16791
2.04322
1.91848
1.79368
1.66887
1.54406
1.4193
1.29464
1.1701
1.04573
0.921561
0.797618
0.673958
0.55058
0.427591
0.304905
0.182706
0.0632149
5.4378
4.5507
4.29383
4.09273
3.91311
3.74804
3.59513
3.45073
3.31219
3.17796
3.04694
2.91827
2.79126
2.66537
2.54018
2.41538
2.29076
2.16618
2.04157
1.91691
1.79218
1.66743
1.54269
1.41798
1.29337
1.16888
1.04456
0.92044
0.796547
0.672935
0.549579
0.426599
0.303841
0.18166
0.0610525
5.46512
4.54508
4.29298
4.0925
3.91288
3.74787
3.595
3.45062
3.3121
3.17787
3.04687
2.91821
2.79121
2.66533
2.54015
2.41535
2.29073
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29334
1.16885
1.04452
0.920404
0.796512
0.672902
0.549542
0.426559
0.303771
0.181622
0.0607075
5.5024
4.5323
4.28395
4.08894
3.90889
3.74542
3.59356
3.44969
3.31154
3.17765
3.04694
2.91856
2.79181
2.66613
2.54108
2.41636
2.29177
2.16718
2.04252
1.91779
1.79299
1.66815
1.54332
1.41855
1.29386
1.16931
1.04494
0.920763
0.796813
0.673151
0.549718
0.42675
0.303621
0.182239
0.0548938
5.48604
4.54005
4.29085
4.0916
3.91199
3.74726
3.59458
3.45029
3.31185
3.17768
3.04673
2.91813
2.79117
2.66532
2.54017
2.41539
2.29078
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.418
1.29338
1.16889
1.04456
0.920428
0.796526
0.672907
0.549538
0.426564
0.303729
0.181709
0.0596062
5.34777
4.60779
4.29796
4.09863
3.91606
3.7501
3.59708
3.45261
3.31404
3.17978
3.04876
2.92009
2.79308
2.66716
2.54192
2.41705
2.29234
2.16766
2.04294
1.91816
1.79333
1.66847
1.54363
1.41884
1.29415
1.16959
1.0452
0.921027
0.797078
0.673417
0.550021
0.427045
0.304148
0.182327
0.0575916
5.50569
4.53833
4.28762
4.08984
3.9105
3.74627
3.59393
3.44986
3.31156
3.17751
3.04665
2.91812
2.79122
2.66542
2.5403
2.41555
2.29096
2.1664
2.0418
1.91713
1.7924
1.66763
1.54287
1.41815
1.29352
1.16902
1.04467
0.920532
0.796616
0.672989
0.549622
0.426667
0.303797
0.181928
0.0582844
5.54584
4.51884
4.28115
4.08652
3.90758
3.74441
3.59274
3.44906
3.31105
3.17726
3.04663
2.9183
2.79158
2.66592
2.5409
2.41621
2.29165
2.16708
2.04244
1.91773
1.79294
1.66812
1.5433
1.41853
1.29385
1.1693
1.04492
0.920751
0.796809
0.673164
0.549774
0.426827
0.30379
0.182267
0.0555658
5.36267
4.57584
4.30007
4.09701
3.91607
3.75019
3.5968
3.45209
3.31331
3.17888
3.04772
2.91893
2.79183
2.66587
2.54062
2.41577
2.29112
2.16651
2.04188
1.91719
1.79245
1.66768
1.54293
1.41821
1.29359
1.16909
1.04476
0.920622
0.796714
0.673088
0.549726
0.426753
0.30401
0.181828
0.0613328
5.51153
4.52701
4.28407
4.0885
3.90891
3.74532
3.59339
3.44951
3.31136
3.17746
3.04673
2.91834
2.79157
2.66588
2.54084
2.41614
2.29157
2.16701
2.04238
1.91768
1.7929
1.66809
1.54328
1.41852
1.29385
1.16931
1.04494
0.920769
0.796822
0.673163
0.549739
0.426766
0.303709
0.182172
0.0559572
5.52127
4.52411
4.28302
4.08776
3.90833
3.74491
3.59309
3.44928
3.31118
3.17732
3.04663
2.91827
2.79152
2.66585
2.54082
2.41612
2.29156
2.16699
2.04237
1.91766
1.79288
1.66806
1.54325
1.41849
1.29381
1.16927
1.0449
0.920728
0.796781
0.673121
0.549697
0.426727
0.303658
0.182153
0.0557123
5.41722
4.56016
4.29242
4.09334
3.91291
3.74802
3.59529
3.45095
3.31244
3.17824
3.04725
2.91861
2.79164
2.66578
2.5406
2.41581
2.29119
2.16661
2.04198
1.91729
1.79255
1.66777
1.543
1.41827
1.29364
1.16912
1.04478
0.920634
0.796714
0.673081
0.549707
0.426746
0.303889
0.182012
0.0585835
5.49756
4.5364
4.28939
4.09098
3.91146
3.74691
3.59434
3.45012
3.31171
3.17758
3.04665
2.91807
2.79113
2.6653
2.54015
2.41539
2.29078
2.16622
2.04161
1.91694
1.79221
1.66745
1.5427
1.41799
1.29336
1.16887
1.04453
0.920401
0.796495
0.672872
0.549499
0.426529
0.303671
0.181717
0.0590522
5.42781
4.55776
4.29104
4.09281
3.91233
3.74766
3.59508
3.45081
3.31236
3.1782
3.04725
2.91865
2.79171
2.66587
2.54072
2.41594
2.29132
2.16673
2.0421
1.9174
1.79265
1.66786
1.54307
1.41834
1.29369
1.16917
1.04481
0.920663
0.796737
0.673099
0.549719
0.426761
0.303859
0.182076
0.0577472
5.40495
4.55761
4.29658
4.09465
3.91433
3.74887
3.59573
3.45118
3.31254
3.17823
3.04716
2.91845
2.79142
2.66551
2.5403
2.41549
2.29086
2.16628
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29344
1.16894
1.04462
0.920492
0.796594
0.672977
0.549616
0.426637
0.303872
0.181703
0.0610312
5.18997
4.67697
4.32116
4.10922
3.92566
3.75603
3.60082
3.45536
3.31612
3.18137
3.04997
2.92102
2.79379
2.66773
2.5424
2.41749
2.29278
2.16814
2.04347
1.91876
1.79401
1.66923
1.54446
1.41974
1.29511
1.17061
1.04628
0.922138
0.798223
0.674584
0.551221
0.428236
0.305576
0.18342
0.0641641
5.49912
4.5358
4.28435
4.08939
3.90912
3.74569
3.59385
3.44998
3.31183
3.17792
3.04721
2.91882
2.79206
2.66636
2.5413
2.41657
2.29196
2.16735
2.04268
1.91793
1.79312
1.66827
1.54344
1.41865
1.29396
1.1694
1.04502
0.920846
0.796892
0.673226
0.549786
0.426813
0.303657
0.182315
0.0546379
5.50134
4.53408
4.284
4.08902
3.90893
3.74556
3.59376
3.44992
3.31178
3.17789
3.04718
2.9188
2.79204
2.66634
2.54128
2.41654
2.29193
2.16731
2.04264
1.91789
1.79308
1.66823
1.5434
1.41861
1.29392
1.16937
1.04498
0.920808
0.796862
0.673212
0.549811
0.426867
0.303769
0.182411
0.0546046
5.43312
4.54807
4.29312
4.09299
3.91291
3.74789
3.59504
3.45065
3.31213
3.17791
3.04692
2.91828
2.7913
2.66544
2.54027
2.41548
2.29087
2.1663
2.04169
1.91702
1.79229
1.66753
1.54278
1.41807
1.29345
1.16895
1.04462
0.920491
0.796586
0.672963
0.549593
0.426619
0.303796
0.181763
0.0598126
5.3719
4.59885
4.29573
4.09797
3.91522
3.74965
3.59685
3.45247
3.31395
3.17974
3.04875
2.9201
2.7931
2.66719
2.54195
2.41708
2.29235
2.16766
2.04293
1.91813
1.79329
1.66843
1.54358
1.41878
1.29409
1.16953
1.04515
0.920976
0.797026
0.673363
0.549944
0.426957
0.303965
0.18224
0.0566033
5.51177
4.53059
4.28362
4.08875
3.90867
3.74542
3.59368
3.44987
3.31176
3.1779
3.04721
2.91886
2.79212
2.66645
2.5414
2.41667
2.29206
2.16745
2.04277
1.91801
1.79319
1.66834
1.5435
1.41871
1.29401
1.16945
1.04507
0.920888
0.79693
0.673261
0.549816
0.426843
0.303663
0.182376
0.0543797
5.52008
4.53298
4.28774
4.09022
3.91073
3.74643
3.59403
3.4499
3.31156
3.17749
3.04662
2.91809
2.7912
2.6654
2.54029
2.41554
2.29096
2.1664
2.0418
1.91712
1.79239
1.66762
1.54286
1.41814
1.2935
1.169
1.04466
0.920513
0.796595
0.672962
0.549575
0.426604
0.303699
0.181841
0.0582442
5.45733
4.55868
4.28687
4.09197
3.91069
3.74688
3.59496
3.45104
3.31283
3.17885
3.04803
2.91952
2.79263
2.6668
2.54163
2.4168
2.29211
2.16744
2.04272
1.91794
1.7931
1.66823
1.54338
1.41859
1.29389
1.16934
1.04496
0.920782
0.796832
0.673167
0.54973
0.426751
0.303605
0.18221
0.0545319
5.53737
4.51942
4.28155
4.08699
3.90741
3.74452
3.593
3.44936
3.31139
3.17765
3.04707
2.9188
2.79213
2.66651
2.5415
2.41679
2.29219
2.16757
2.04289
1.91812
1.79329
1.66843
1.54357
1.41877
1.29406
1.16949
1.0451
0.920914
0.796963
0.673312
0.549907
0.426962
0.303797
0.182523
0.0539906
5.53094
4.52206
4.28204
4.08748
3.90775
3.74477
3.59318
3.44947
3.31146
3.17767
3.04705
2.91876
2.79207
2.66643
2.54141
2.4167
2.2921
2.16748
2.0428
1.91804
1.79321
1.66835
1.5435
1.4187
1.29401
1.16944
1.04505
0.92087
0.796911
0.673241
0.549793
0.426826
0.30362
0.182402
0.0540094
5.34513
4.60706
4.29864
4.09921
3.91646
3.75037
3.59726
3.45273
3.31411
3.17982
3.04878
2.92009
2.79305
2.66712
2.54187
2.41699
2.29228
2.1676
2.04288
1.9181
1.79328
1.66842
1.54358
1.4188
1.29411
1.16956
1.04518
0.921002
0.797052
0.673388
0.549977
0.426988
0.304066
0.182215
0.0577605
5.48435
4.54381
4.28524
4.09036
3.90978
3.74626
3.5944
3.45047
3.31226
3.17829
3.04751
2.91906
2.79224
2.66649
2.54138
2.41661
2.29197
2.16734
2.04265
1.91789
1.79307
1.66822
1.54338
1.41859
1.29391
1.16935
1.04498
0.920801
0.796851
0.673186
0.549747
0.426773
0.303614
0.182271
0.0545128
5.49158
4.54086
4.28482
4.08983
3.90941
3.74597
3.59415
3.45027
3.3121
3.17818
3.04743
2.91902
2.79222
2.66649
2.5414
2.41664
2.292
2.16737
2.04268
1.91792
1.7931
1.66824
1.5434
1.41862
1.29392
1.16937
1.04498
0.920807
0.79686
0.673208
0.549806
0.426864
0.303764
0.182433
0.054425
5.46349
4.5418
4.29175
4.09211
3.91233
3.74749
3.59474
3.45042
3.31195
3.17778
3.04681
2.9182
2.79124
2.66539
2.54024
2.41546
2.29086
2.16629
2.04169
1.91702
1.7923
1.66754
1.54279
1.41808
1.29346
1.16897
1.04463
0.920505
0.796601
0.67298
0.549609
0.426632
0.3038
0.181766
0.0597736
5.57289
4.5198
4.28163
4.08679
3.90768
3.7445
3.59282
3.44911
3.31109
3.17729
3.04665
2.91833
2.79162
2.66597
2.54096
2.41628
2.29172
2.16716
2.04253
1.91781
1.79303
1.6682
1.54338
1.4186
1.29392
1.16937
1.04499
0.920814
0.796861
0.673196
0.549765
0.426794
0.303709
0.182236
0.0555332
5.48177
4.54985
4.28581
4.09055
3.90954
3.74626
3.59461
3.45087
3.3128
3.17893
3.0482
2.91976
2.79291
2.66709
2.5419
2.41704
2.29231
2.1676
2.04283
1.918
1.79313
1.66823
1.54336
1.41854
1.29383
1.16926
1.04487
0.920686
0.796735
0.673083
0.549685
0.426761
0.303644
0.182418
0.0536045
5.48162
4.54991
4.28582
4.09056
3.90955
3.74626
3.59461
3.45087
3.3128
3.17893
3.0482
2.91976
2.7929
2.66709
2.5419
2.41704
2.29231
2.1676
2.04283
1.918
1.79313
1.66823
1.54336
1.41854
1.29383
1.16927
1.04488
0.9207
0.796746
0.673077
0.549625
0.426645
0.303419
0.182181
0.0535409
5.35413
4.58
4.30093
4.0974
3.91644
3.75045
3.597
3.45225
3.31345
3.179
3.04781
2.91901
2.7919
2.66592
2.54066
2.4158
2.29114
2.16653
2.04189
1.91721
1.79247
1.6677
1.54294
1.41823
1.2936
1.16911
1.04477
0.920638
0.796731
0.673107
0.549749
0.426777
0.304052
0.181836
0.0616712
5.50956
4.53274
4.28772
4.09023
3.9108
3.74648
3.59406
3.44992
3.31157
3.17749
3.04661
2.91806
2.79117
2.66536
2.54024
2.41549
2.2909
2.16634
2.04174
1.91706
1.79233
1.66757
1.54281
1.41809
1.29346
1.16895
1.04461
0.920475
0.79656
0.672929
0.549547
0.426577
0.303683
0.181802
0.0584046
5.44158
4.55775
4.2892
4.09236
3.91164
3.74736
3.59505
3.45091
3.31254
3.17843
3.04753
2.91898
2.79208
2.66626
2.54112
2.41633
2.2917
2.16708
2.04242
1.91769
1.7929
1.66808
1.54327
1.41851
1.29384
1.1693
1.04493
0.920769
0.796832
0.673186
0.549794
0.426839
0.303857
0.182255
0.0563002
5.4519
4.54706
4.29168
4.09181
3.91229
3.74749
3.59475
3.45045
3.31199
3.17781
3.04684
2.91821
2.79124
2.66537
2.5402
2.41541
2.2908
2.16622
2.04162
1.91695
1.79223
1.66747
1.54272
1.41802
1.2934
1.16891
1.04458
0.920456
0.796556
0.672941
0.549585
0.426619
0.303833
0.181753
0.060157
5.55926
4.5241
4.28275
4.08731
3.90827
3.74483
3.593
3.44922
3.31114
3.17729
3.0466
2.91822
2.79146
2.66577
2.54073
2.41603
2.29146
2.1669
2.04228
1.91758
1.79282
1.66801
1.54321
1.41845
1.29378
1.16924
1.04487
0.920706
0.796769
0.673128
0.549742
0.426792
0.303794
0.182185
0.0561766
5.42095
4.55427
4.29459
4.09332
3.91345
3.74828
3.59531
3.45086
3.3123
3.17805
3.04701
2.91834
2.79133
2.66543
2.54024
2.41543
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54273
1.41802
1.29341
1.16892
1.04459
0.920471
0.796575
0.67296
0.549604
0.426629
0.303871
0.181708
0.0609221
5.45502
4.54642
4.29133
4.09167
3.91217
3.74741
3.59471
3.45043
3.31198
3.17781
3.04684
2.91822
2.79125
2.66539
2.54023
2.41544
2.29083
2.16626
2.04166
1.91699
1.79226
1.66751
1.54276
1.41805
1.29344
1.16894
1.04461
0.920488
0.796586
0.672969
0.549613
0.426647
0.303854
0.181793
0.060013
5.43528
4.55075
4.29472
4.09317
3.91348
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04456
0.920446
0.796556
0.672946
0.549588
0.426599
0.303843
0.18162
0.06142
5.46756
4.53996
4.29095
4.09172
3.91205
3.74729
3.5946
3.45031
3.31185
3.17769
3.04673
2.91813
2.79117
2.66532
2.54017
2.41539
2.29078
2.16621
2.04161
1.91694
1.79222
1.66746
1.5427
1.418
1.29338
1.16888
1.04455
0.920421
0.796518
0.672898
0.549529
0.426556
0.30372
0.181707
0.0595679
5.34626
4.58412
4.30181
4.09809
3.91697
3.75089
3.59739
3.45261
3.31378
3.1793
3.04808
2.91926
2.79212
2.66613
2.54085
2.41599
2.29131
2.16669
2.04205
1.91736
1.79261
1.66784
1.54307
1.41836
1.29373
1.16923
1.04489
0.920752
0.79684
0.673211
0.54985
0.426876
0.304148
0.181936
0.0617107
5.45562
4.54539
4.28883
4.0917
3.91135
3.74699
3.59458
3.45039
3.312
3.1779
3.04702
2.91849
2.79161
2.66582
2.54071
2.41596
2.29136
2.16678
2.04216
1.91746
1.7927
1.66791
1.54312
1.41837
1.29372
1.16919
1.04483
0.920678
0.796743
0.673094
0.549686
0.426713
0.303727
0.182045
0.0569797
5.45663
4.55958
4.28724
4.09203
3.91081
3.74701
3.59509
3.45116
3.31294
3.17894
3.04811
2.91959
2.79269
2.66686
2.54167
2.41683
2.29214
2.16746
2.04273
1.91794
1.7931
1.66823
1.54338
1.41859
1.29389
1.16933
1.04495
0.920774
0.796827
0.673175
0.549774
0.426831
0.303761
0.182375
0.0545712
5.41844
4.55496
4.2939
4.09311
3.91322
3.74813
3.59522
3.45081
3.31226
3.17802
3.047
2.91833
2.79133
2.66544
2.54025
2.41545
2.29082
2.16624
2.04163
1.91696
1.79223
1.66747
1.54272
1.41802
1.2934
1.16891
1.04458
0.920456
0.796556
0.672939
0.549584
0.426617
0.303848
0.181741
0.0604752
5.45695
4.55051
4.29452
4.09299
3.91338
3.74824
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41798
1.29336
1.16888
1.04455
0.920435
0.796546
0.672936
0.549579
0.426589
0.303832
0.181608
0.0614177
5.41505
4.56421
4.29235
4.09425
3.91318
3.74832
3.59566
3.45131
3.31279
3.17857
3.04758
2.91895
2.79199
2.66613
2.54096
2.41616
2.29152
2.16692
2.04227
1.91756
1.79278
1.66798
1.54318
1.41844
1.29378
1.16925
1.04489
0.920738
0.796804
0.673154
0.549749
0.426773
0.303819
0.18207
0.0574625
5.52145
4.53124
4.28714
4.08998
3.91054
3.7463
3.59394
3.44983
3.31151
3.17745
3.04659
2.91806
2.79117
2.66538
2.54027
2.41553
2.29094
2.16638
2.04178
1.9171
1.79237
1.6676
1.54283
1.41811
1.29348
1.16897
1.04463
0.920485
0.796566
0.672933
0.549545
0.426576
0.303663
0.181825
0.0580737
5.36261
4.58442
4.29849
4.09742
3.91584
3.75011
3.59697
3.45238
3.31369
3.17932
3.04819
2.91943
2.79234
2.66639
2.54114
2.41629
2.29161
2.16699
2.04233
1.91761
1.79284
1.66804
1.54325
1.41851
1.29386
1.16934
1.04499
0.920831
0.796899
0.673252
0.549861
0.426883
0.304038
0.182081
0.059402
5.35959
4.5773
4.30043
4.09711
3.91616
3.75022
3.5968
3.45207
3.31329
3.17886
3.04769
2.9189
2.7918
2.66583
2.54058
2.41574
2.29108
2.16647
2.04184
1.91716
1.79242
1.66765
1.5429
1.41818
1.29356
1.16907
1.04473
0.920601
0.796694
0.673071
0.549712
0.426739
0.304006
0.181807
0.0614962
5.48637
4.54943
4.28609
4.09086
3.90989
3.74657
3.59489
3.4511
3.31297
3.17904
3.04826
2.91977
2.79289
2.66706
2.54187
2.41702
2.29231
2.16761
2.04287
1.91807
1.79321
1.66833
1.54347
1.41866
1.29395
1.16939
1.04499
0.920813
0.79686
0.673206
0.549804
0.426875
0.303756
0.182526
0.0537722
5.48598
4.54969
4.28618
4.09093
3.90993
3.7466
3.59491
3.45111
3.31298
3.17905
3.04826
2.91977
2.79289
2.66706
2.54187
2.41702
2.29231
2.16761
2.04287
1.91807
1.79321
1.66833
1.54346
1.41866
1.29396
1.16939
1.04501
0.920828
0.796873
0.673202
0.549747
0.426764
0.303539
0.182298
0.0537104
5.43866
4.5485
4.29428
4.09306
3.91334
3.74818
3.59521
3.45078
3.31223
3.17797
3.04694
2.91827
2.79125
2.66535
2.54016
2.41535
2.29073
2.16615
2.04154
1.91688
1.79215
1.6674
1.54266
1.41795
1.29334
1.16885
1.04453
0.920408
0.796518
0.672908
0.54955
0.426564
0.303797
0.1816
0.0611711
5.44288
4.54741
4.29406
4.09301
3.91329
3.74815
3.5952
3.45077
3.31223
3.17798
3.04696
2.91828
2.79128
2.66538
2.54019
2.41539
2.29077
2.1662
2.04159
1.91693
1.79221
1.66745
1.54271
1.41801
1.29339
1.1689
1.04458
0.920457
0.796566
0.672955
0.549595
0.426609
0.303834
0.181649
0.0610954
5.45399
4.54729
4.29228
4.09204
3.91257
3.74768
3.59488
3.45054
3.31205
3.17785
3.04686
2.91822
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16887
1.04455
0.920425
0.79653
0.672917
0.549563
0.426591
0.303819
0.181688
0.0605786
5.47225
4.54731
4.29213
4.09192
3.91251
3.74765
3.59486
3.45053
3.31204
3.17785
3.04685
2.91821
2.79122
2.66534
2.54016
2.41537
2.29075
2.16618
2.04157
1.9169
1.79218
1.66742
1.54267
1.41797
1.29336
1.16887
1.04454
0.920423
0.796528
0.672916
0.549562
0.42659
0.303819
0.181683
0.0606115
5.5546
4.52275
4.2827
4.08743
3.90825
3.74486
3.59304
3.44924
3.31114
3.17727
3.04657
2.91819
2.79144
2.66576
2.54072
2.41602
2.29146
2.1669
2.04228
1.91758
1.79281
1.668
1.5432
1.41844
1.29377
1.16923
1.04486
0.920693
0.796748
0.673091
0.54967
0.4267
0.303654
0.1821
0.0559961
5.43732
4.55769
4.2895
4.09235
3.91168
3.74731
3.59495
3.45079
3.31241
3.1783
3.04739
2.91883
2.79193
2.66611
2.54097
2.41619
2.29157
2.16696
2.04231
1.91759
1.79281
1.668
1.5432
1.41844
1.29378
1.16925
1.04488
0.920721
0.796787
0.673143
0.549754
0.426799
0.303834
0.182195
0.0565679
5.60578
4.50736
4.27864
4.085
3.90628
3.74366
3.59233
3.44884
3.311
3.17734
3.04684
2.91863
2.79201
2.66643
2.54145
2.41677
2.29219
2.16759
2.04292
1.91816
1.79333
1.66847
1.54361
1.4188
1.2941
1.16952
1.04512
0.920939
0.796989
0.673342
0.549941
0.426988
0.303831
0.182452
0.0543429
5.59849
4.5083
4.27884
4.08513
3.90633
3.74368
3.59233
3.44883
3.31097
3.17731
3.04679
2.91858
2.79197
2.66638
2.54141
2.41673
2.29216
2.16756
2.04289
1.91814
1.79331
1.66845
1.5436
1.41879
1.29409
1.16952
1.04512
0.92093
0.796964
0.673292
0.549851
0.426896
0.303733
0.182461
0.0544242
5.39768
4.58627
4.29262
4.09561
3.91355
3.74862
3.59614
3.45194
3.31355
3.17943
3.0485
2.91991
2.79294
2.66706
2.54183
2.41696
2.29224
2.16755
2.04282
1.91803
1.79319
1.66833
1.54348
1.41869
1.294
1.16944
1.04506
0.920889
0.796943
0.673288
0.54989
0.426929
0.303952
0.182323
0.0561188
5.51894
4.5303
4.28669
4.08978
3.91036
3.7462
3.59389
3.4498
3.3115
3.17746
3.04662
2.9181
2.79124
2.66546
2.54036
2.41562
2.29104
2.16649
2.04189
1.91721
1.79248
1.66771
1.54294
1.41821
1.29357
1.16906
1.04471
0.920566
0.796642
0.673004
0.549611
0.426639
0.303711
0.181899
0.0578748
5.45065
4.54615
4.29023
4.09147
3.91171
3.74709
3.59451
3.45029
3.31188
3.17775
3.04682
2.91824
2.7913
2.66547
2.54032
2.41555
2.29095
2.16638
2.04177
1.9171
1.79237
1.6676
1.54285
1.41813
1.2935
1.169
1.04466
0.920527
0.796615
0.67299
0.549625
0.426667
0.303827
0.181899
0.0589004
5.57825
4.50981
4.27915
4.08538
3.90653
3.74379
3.59238
3.44883
3.31093
3.17724
3.0467
2.91846
2.79183
2.66623
2.54124
2.41656
2.29199
2.1674
2.04274
1.918
1.79318
1.66833
1.54348
1.41869
1.29399
1.16943
1.04504
0.920853
0.796892
0.673223
0.549786
0.426828
0.303681
0.182372
0.0545902
5.58188
4.50853
4.27883
4.0852
3.90647
3.74375
3.59236
3.44883
3.31095
3.17727
3.04673
2.91849
2.79186
2.66626
2.54127
2.41658
2.29201
2.16742
2.04275
1.918
1.79318
1.66833
1.54348
1.41869
1.29399
1.16942
1.04503
0.920848
0.796901
0.673255
0.549859
0.426911
0.303787
0.182388
0.0545441
5.26525
4.64058
4.30933
4.10376
3.92078
3.75302
3.59892
3.45394
3.31502
3.18051
3.04928
2.92046
2.79333
2.66733
2.54204
2.41715
2.29244
2.16777
2.04308
1.91833
1.79353
1.6687
1.54389
1.41912
1.29445
1.16991
1.04553
0.921356
0.797407
0.67374
0.550352
0.427358
0.304609
0.182502
0.0611629
5.52044
4.52947
4.28625
4.08955
3.91014
3.74605
3.59378
3.44972
3.31144
3.17742
3.04658
2.91808
2.79123
2.66546
2.54036
2.41563
2.29106
2.1665
2.0419
1.91722
1.79248
1.66771
1.54294
1.41821
1.29357
1.16905
1.0447
0.920556
0.79663
0.67299
0.549595
0.426624
0.303685
0.1819
0.0576448
5.30722
4.61359
4.30494
4.10109
3.91859
3.75181
3.59816
3.45336
3.31453
3.18006
3.04884
2.91999
2.79283
2.66681
2.5415
2.41659
2.29188
2.16721
2.04253
1.9178
1.79301
1.6682
1.54341
1.41866
1.29401
1.16948
1.04512
0.920963
0.797027
0.673375
0.54999
0.427009
0.304235
0.182154
0.0606729
5.50914
4.53132
4.28549
4.08887
3.90956
3.74565
3.59353
3.44958
3.31138
3.17742
3.04663
2.91817
2.79134
2.66559
2.54051
2.41579
2.29122
2.16666
2.04206
1.91738
1.79263
1.66785
1.54307
1.41834
1.29369
1.16917
1.04481
0.920656
0.796728
0.673092
0.549713
0.426759
0.303828
0.182084
0.0572756
5.45732
4.54902
4.2943
4.09299
3.91333
3.74819
3.59523
3.4508
3.31224
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54268
1.41797
1.29336
1.16887
1.04455
0.92043
0.79654
0.67293
0.549572
0.426584
0.303818
0.181612
0.0612519
5.46351
4.54758
4.29389
4.09285
3.9132
3.7481
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79126
2.66537
2.54018
2.41538
2.29076
2.16619
2.04158
1.91692
1.7922
1.66744
1.5427
1.418
1.29338
1.16889
1.04457
0.920447
0.796556
0.672945
0.549586
0.4266
0.303824
0.181639
0.0610857
5.56125
4.51257
4.28014
4.08592
3.90682
3.74396
3.59247
3.44888
3.31095
3.17723
3.04668
2.91842
2.79177
2.66617
2.54118
2.4165
2.29193
2.16734
2.04269
1.91794
1.79313
1.66829
1.54344
1.41865
1.29396
1.1694
1.04501
0.920828
0.796869
0.673201
0.549765
0.426807
0.303661
0.182348
0.054615
5.568
4.51044
4.27927
4.08543
3.90662
3.74384
3.59241
3.44886
3.31096
3.17726
3.04672
2.91847
2.79182
2.66622
2.54122
2.41654
2.29197
2.16738
2.04272
1.91797
1.79316
1.66831
1.54346
1.41867
1.29397
1.16941
1.04501
0.920836
0.796889
0.673243
0.549847
0.4269
0.303785
0.182381
0.0546263
5.42836
4.551
4.29275
4.09334
3.91294
3.74798
3.59518
3.45079
3.31226
3.17805
3.04706
2.91843
2.79147
2.66561
2.54045
2.41567
2.29105
2.16648
2.04186
1.91718
1.79245
1.66768
1.54291
1.41819
1.29356
1.16906
1.04472
0.920576
0.796659
0.673025
0.549641
0.426668
0.3038
0.181882
0.0589335
5.34701
4.58521
4.30133
4.09779
3.91672
3.75067
3.5972
3.45244
3.31363
3.17917
3.04797
2.91916
2.79204
2.66605
2.54078
2.41592
2.29125
2.16663
2.04199
1.9173
1.79255
1.66778
1.54302
1.4183
1.29367
1.16917
1.04484
0.920699
0.796788
0.673161
0.549804
0.426834
0.304108
0.18191
0.0615723
5.40042
4.5872
4.29243
4.09569
3.91347
3.74857
3.59613
3.45195
3.31357
3.17948
3.04857
2.92
2.79306
2.66719
2.54198
2.41712
2.2924
2.1677
2.04296
1.91816
1.7933
1.66843
1.54357
1.41877
1.29407
1.16951
1.04512
0.92094
0.79699
0.673331
0.549929
0.426967
0.303972
0.182375
0.0558188
5.41198
4.55816
4.29393
4.09428
3.91364
3.74853
3.59565
3.4512
3.31261
3.17834
3.04731
2.91865
2.79166
2.66578
2.5406
2.4158
2.29117
2.16658
2.04196
1.91727
1.79253
1.66775
1.54298
1.41825
1.29361
1.16911
1.04476
0.920617
0.796696
0.673059
0.549673
0.4267
0.303833
0.181921
0.0589415
5.29063
4.62442
4.30666
4.10235
3.91946
3.75229
3.59849
3.45363
3.31479
3.18034
3.04915
2.92034
2.7932
2.66719
2.54189
2.41698
2.29226
2.16759
2.04289
1.91814
1.79334
1.66852
1.54371
1.41895
1.29428
1.16974
1.04537
0.921192
0.797243
0.673577
0.55018
0.427187
0.304404
0.182315
0.0606706
5.43151
4.55253
4.29182
4.09252
3.91247
3.74763
3.59492
3.4506
3.31213
3.17795
3.04698
2.91836
2.7914
2.66555
2.54038
2.4156
2.29099
2.16641
2.0418
1.91712
1.79239
1.66763
1.54287
1.41815
1.29352
1.16902
1.04468
0.920547
0.796634
0.673008
0.549643
0.426683
0.303853
0.181907
0.0591204
5.59791
4.50922
4.27897
4.08522
3.90642
3.74374
3.59237
3.44885
3.31097
3.1773
3.04678
2.91856
2.79193
2.66634
2.54136
2.41669
2.29211
2.16752
2.04286
1.9181
1.79328
1.66842
1.54357
1.41877
1.29407
1.1695
1.04511
0.920917
0.796952
0.67328
0.54984
0.426883
0.303727
0.182437
0.0545128
5.59843
4.50729
4.27852
4.08501
3.90633
3.74369
3.59234
3.44885
3.31099
3.17732
3.04681
2.91859
2.79197
2.66637
2.54139
2.41671
2.29213
2.16754
2.04287
1.91811
1.79329
1.66843
1.54357
1.41877
1.29406
1.16949
1.04509
0.920911
0.796962
0.673315
0.549916
0.426965
0.303822
0.182435
0.0544255
5.59997
4.50884
4.27885
4.08514
3.90643
3.74372
3.59234
3.44881
3.31093
3.17725
3.04672
2.91848
2.79184
2.66624
2.54125
2.41657
2.29199
2.1674
2.04273
1.91798
1.79317
1.66831
1.54347
1.41867
1.29397
1.1694
1.04501
0.920832
0.796886
0.673241
0.549846
0.426899
0.303774
0.182376
0.0545327
5.59747
4.51033
4.27919
4.08532
3.90649
3.74376
3.59235
3.4488
3.3109
3.17721
3.04667
2.91843
2.79178
2.66618
2.54119
2.41651
2.29194
2.16735
2.04269
1.91795
1.79313
1.66828
1.54344
1.41865
1.29395
1.16939
1.045
0.920818
0.796858
0.67319
0.549755
0.426798
0.303655
0.182345
0.0545924
5.43245
4.54793
4.29356
4.09298
3.91306
3.74798
3.59509
3.45068
3.31214
3.17791
3.0469
2.91825
2.79126
2.66538
2.5402
2.4154
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.5427
1.418
1.29338
1.16889
1.04456
0.920436
0.796538
0.672921
0.549558
0.426581
0.303784
0.181683
0.0603601
5.48455
4.53597
4.28599
4.08996
3.90991
3.74602
3.59389
3.44988
3.31162
3.17764
3.04685
2.9184
2.79159
2.66587
2.5408
2.41607
2.29149
2.16692
2.04229
1.91758
1.79281
1.668
1.5432
1.41844
1.29378
1.16924
1.04487
0.920709
0.796767
0.673112
0.549693
0.426722
0.303676
0.182116
0.0560811
5.20572
4.66691
4.31898
4.10799
3.92461
3.75543
3.60044
3.45507
3.3159
3.18119
3.04982
2.92089
2.79368
2.66762
2.5423
2.4174
2.2927
2.16805
2.04338
1.91866
1.79388
1.66908
1.54427
1.41951
1.29485
1.1703
1.04593
0.921753
0.797805
0.674141
0.550761
0.427768
0.305106
0.182921
0.0640477
5.44675
4.54363
4.29181
4.0923
3.91239
3.74754
3.59479
3.45047
3.31199
3.17781
3.04685
2.91823
2.79128
2.66543
2.54027
2.4155
2.2909
2.16633
2.04172
1.91706
1.79233
1.66757
1.54282
1.41811
1.29348
1.16899
1.04465
0.920519
0.796611
0.672986
0.549612
0.426638
0.303796
0.181801
0.0594995
5.58862
4.50477
4.2784
4.08482
3.90603
3.7435
3.59222
3.44876
3.31094
3.17731
3.04683
2.91865
2.79206
2.66649
2.54152
2.41684
2.29226
2.16766
2.04298
1.91821
1.79337
1.6685
1.54364
1.41883
1.29412
1.16955
1.04515
0.920953
0.796985
0.673312
0.549872
0.426925
0.303741
0.182526
0.0541274
5.59216
4.50367
4.27816
4.08468
3.90596
3.74345
3.5922
3.44875
3.31094
3.17732
3.04684
2.91866
2.79207
2.6665
2.54153
2.41685
2.29226
2.16765
2.04297
1.9182
1.79337
1.6685
1.54363
1.41882
1.29411
1.16953
1.04513
0.92095
0.797004
0.67336
0.549955
0.426992
0.303785
0.182429
0.0539909
5.4725
4.54229
4.2866
4.09037
3.91025
3.74631
3.59417
3.45015
3.31188
3.17788
3.04707
2.91859
2.79176
2.66601
2.54092
2.41617
2.29157
2.16698
2.04234
1.91763
1.79285
1.66803
1.54323
1.41847
1.2938
1.16926
1.04489
0.920729
0.796792
0.673148
0.549757
0.426806
0.303804
0.182238
0.0560426
5.34413
4.58843
4.30133
4.09835
3.91684
3.75075
3.59732
3.45258
3.31378
3.17933
3.04814
2.91933
2.79221
2.66623
2.54096
2.41609
2.29142
2.16679
2.04214
1.91744
1.79268
1.6679
1.54312
1.4184
1.29376
1.16925
1.04491
0.920761
0.79684
0.673202
0.54983
0.426856
0.304091
0.181982
0.0608592
5.41323
4.55492
4.29604
4.09409
3.91405
3.74869
3.59559
3.45107
3.31246
3.17816
3.0471
2.9184
2.79136
2.66545
2.54025
2.41544
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54273
1.41802
1.29341
1.16892
1.04459
0.920473
0.79658
0.672966
0.549608
0.426624
0.303868
0.181659
0.0613333
5.5319
4.52267
4.28284
4.08761
3.90834
3.74492
3.59308
3.44927
3.31117
3.1773
3.0466
2.91822
2.79147
2.66579
2.54075
2.41606
2.29149
2.16693
2.04231
1.91761
1.79284
1.66803
1.54322
1.41846
1.29379
1.16925
1.04488
0.920713
0.796768
0.67311
0.549688
0.426717
0.303667
0.182121
0.0559647
5.5273
4.52379
4.28322
4.08781
3.90851
3.74502
3.59314
3.4493
3.31118
3.17729
3.04658
2.91819
2.79142
2.66573
2.54069
2.41599
2.29143
2.16687
2.04225
1.91755
1.79279
1.66798
1.54318
1.41842
1.29375
1.16922
1.04485
0.920684
0.796741
0.673085
0.549666
0.426695
0.303657
0.182087
0.0561122
5.36035
4.59891
4.29667
4.09754
3.91535
3.74968
3.59677
3.45235
3.31379
3.17954
3.04851
2.91982
2.79278
2.66685
2.5416
2.41673
2.29203
2.16736
2.04266
1.9179
1.79309
1.66826
1.54343
1.41866
1.29398
1.16944
1.04507
0.920899
0.796958
0.673305
0.549915
0.426945
0.304053
0.182244
0.0576695
5.46451
4.5386
4.28985
4.09146
3.91161
3.74702
3.59444
3.45021
3.31179
3.17766
3.04675
2.91818
2.79125
2.66544
2.5403
2.41554
2.29095
2.16638
2.04178
1.91711
1.79238
1.66761
1.54285
1.41813
1.2935
1.169
1.04466
0.920519
0.796604
0.672973
0.54959
0.426618
0.303732
0.181838
0.0586286
5.38951
4.58901
4.29306
4.0963
3.9139
3.74878
3.59622
3.45197
3.31355
3.17943
3.04852
2.91994
2.793
2.66714
2.54194
2.41709
2.29238
2.1677
2.04297
1.91818
1.79333
1.66846
1.5436
1.4188
1.29411
1.16954
1.04516
0.920977
0.797022
0.673355
0.549929
0.426941
0.30391
0.182252
0.0560972
5.28782
4.61991
4.30796
4.10217
3.91967
3.75252
3.59861
3.45369
3.31479
3.18026
3.049
2.92013
2.79295
2.6669
2.54158
2.41666
2.29194
2.16727
2.04259
1.91786
1.79308
1.66827
1.54348
1.41874
1.29409
1.16957
1.04521
0.92105
0.797117
0.67347
0.550096
0.427118
0.304399
0.182218
0.0619705
5.512
4.52835
4.28578
4.08934
3.90986
3.74588
3.59369
3.44968
3.31142
3.17743
3.04663
2.91816
2.79133
2.66559
2.54051
2.4158
2.29123
2.16667
2.04207
1.91739
1.79265
1.66786
1.54308
1.41834
1.29369
1.16917
1.04481
0.920657
0.796724
0.673076
0.549671
0.426699
0.303727
0.182007
0.0572162
5.3621
4.58293
4.29883
4.09739
3.91592
3.75015
3.59695
3.45232
3.31359
3.1792
3.04806
2.91929
2.7922
2.66624
2.541
2.41614
2.29147
2.16685
2.0422
1.91749
1.79273
1.66794
1.54316
1.41842
1.29378
1.16926
1.04491
0.920765
0.796838
0.673194
0.549809
0.426833
0.304009
0.182014
0.0597457
5.45392
4.54178
4.29108
4.09213
3.91214
3.74738
3.59469
3.45039
3.31193
3.17777
3.04682
2.91823
2.79128
2.66545
2.5403
2.41554
2.29094
2.16637
2.04176
1.91709
1.79236
1.6676
1.54284
1.41812
1.29349
1.16899
1.04465
0.920518
0.796605
0.672976
0.549596
0.426624
0.303756
0.181823
0.0589762
5.35126
4.59665
4.29907
4.09849
3.9163
3.75038
3.59724
3.45267
3.31399
3.17964
3.04852
2.91977
2.79268
2.66672
2.54145
2.41658
2.29188
2.16723
2.04254
1.9178
1.79301
1.66819
1.54338
1.41862
1.29395
1.16942
1.04505
0.920887
0.796947
0.673291
0.54989
0.426907
0.304031
0.182123
0.0587057
5.37036
4.57752
4.29779
4.09605
3.91517
3.74954
3.59636
3.45177
3.31308
3.17873
3.04761
2.91887
2.79181
2.66587
2.54063
2.4158
2.29114
2.16654
2.0419
1.91721
1.79247
1.6677
1.54293
1.41821
1.29358
1.16908
1.04474
0.920608
0.796696
0.673067
0.549705
0.42674
0.303972
0.181907
0.0603466
5.51361
4.52723
4.28517
4.08898
3.90957
3.74569
3.59355
3.44956
3.31132
3.17734
3.04655
2.91808
2.79126
2.66551
2.54044
2.41572
2.29114
2.16659
2.04198
1.91729
1.79255
1.66776
1.54298
1.41824
1.29359
1.16907
1.04472
0.920561
0.79663
0.672986
0.549582
0.426613
0.303636
0.181942
0.056992
5.53263
4.52728
4.28503
4.08888
3.90954
3.74568
3.59355
3.44957
3.31133
3.17736
3.04656
2.9181
2.79128
2.66554
2.54046
2.41575
2.29117
2.16662
2.04201
1.91733
1.79258
1.6678
1.54302
1.41828
1.29363
1.1691
1.04475
0.920595
0.796662
0.673016
0.549612
0.426641
0.303664
0.181965
0.0570257
5.45915
4.53994
4.28981
4.09157
3.91161
3.74703
3.59446
3.45022
3.31181
3.17768
3.04677
2.9182
2.79128
2.66547
2.54034
2.41558
2.29099
2.16642
2.04181
1.91714
1.7924
1.66763
1.54287
1.41815
1.29351
1.16901
1.04466
0.920522
0.796604
0.67297
0.549583
0.426612
0.303713
0.181851
0.0583523
5.49423
4.53088
4.28599
4.08953
3.90989
3.74592
3.59374
3.44972
3.31146
3.17747
3.04667
2.9182
2.79138
2.66564
2.54056
2.41584
2.29127
2.16671
2.0421
1.91742
1.79267
1.66788
1.54309
1.41835
1.29369
1.16917
1.04481
0.920653
0.796718
0.673069
0.549661
0.426688
0.303699
0.182025
0.056916
5.24453
4.6462
4.31344
4.10537
3.92217
3.75396
3.59952
3.45438
3.31535
3.18075
3.04945
2.92057
2.79339
2.66736
2.54204
2.41712
2.29239
2.16772
2.04302
1.91827
1.79348
1.66866
1.54385
1.41909
1.29443
1.16989
1.04553
0.921358
0.797416
0.673757
0.550377
0.42739
0.304691
0.182505
0.0626625
5.25767
4.64119
4.31136
4.10463
3.92141
3.75347
3.59922
3.45416
3.31519
3.18063
3.04938
2.92052
2.79336
2.66733
2.54202
2.4171
2.29236
2.16768
2.04298
1.91822
1.79342
1.6686
1.54379
1.41903
1.29436
1.16983
1.04546
0.921292
0.797347
0.673686
0.550298
0.427307
0.304574
0.182419
0.0617752
5.43085
4.54928
4.29437
4.09333
3.91337
3.74819
3.59523
3.45079
3.31223
3.17798
3.04696
2.91829
2.79128
2.6654
2.54021
2.41541
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04457
0.920451
0.796555
0.672941
0.549579
0.426598
0.303813
0.181672
0.0607003
5.21345
4.66318
4.31777
4.10752
3.92411
3.75512
3.60025
3.45493
3.31578
3.1811
3.04975
2.92083
2.79363
2.66759
2.54228
2.41738
2.29268
2.16804
2.04338
1.91866
1.79389
1.66908
1.54428
1.41952
1.29485
1.17031
1.04594
0.921763
0.797816
0.674152
0.550771
0.427779
0.305104
0.182918
0.0636482
5.42228
4.56884
4.29071
4.09366
3.91248
3.74797
3.59559
3.4514
3.31299
3.17884
3.0479
2.9193
2.79235
2.6665
2.54132
2.4165
2.29184
2.1672
2.04252
1.91777
1.79297
1.66814
1.54331
1.41855
1.29387
1.16933
1.04496
0.920796
0.796857
0.673208
0.549816
0.426859
0.303886
0.182266
0.0563645
5.21267
4.6634
4.31781
4.10736
3.92412
3.75513
3.60024
3.45492
3.31577
3.18109
3.04973
2.92081
2.7936
2.66755
2.54223
2.41733
2.29262
2.16797
2.04329
1.91857
1.79378
1.66897
1.54417
1.41942
1.29475
1.17022
1.04584
0.921675
0.797732
0.674073
0.550698
0.427709
0.305047
0.182859
0.063874
5.31727
4.62089
4.30181
4.10059
3.91776
3.75114
3.59775
3.45312
3.31443
3.1801
3.04901
2.9203
2.79326
2.66732
2.54207
2.4172
2.2925
2.16782
2.04311
1.91834
1.79351
1.66866
1.54381
1.41902
1.29432
1.16975
1.04536
0.921171
0.797213
0.673542
0.550142
0.427154
0.304302
0.182368
0.0586275
5.37427
4.59648
4.29509
4.09706
3.91472
3.74932
3.59659
3.45227
3.3138
3.17962
3.04865
2.92002
2.79303
2.66713
2.54189
2.41702
2.2923
2.16761
2.04289
1.9181
1.79326
1.6684
1.54355
1.41876
1.29407
1.16951
1.04513
0.920953
0.797006
0.673348
0.549951
0.426983
0.304043
0.182324
0.0567816
5.47383
4.5539
4.2862
4.09135
3.91023
3.7467
3.59493
3.45108
3.31292
3.17896
3.04815
2.91964
2.79275
2.66692
2.54174
2.4169
2.2922
2.16752
2.04279
1.91799
1.79315
1.66827
1.54342
1.41862
1.29392
1.16936
1.04497
0.920798
0.796846
0.673178
0.549733
0.426752
0.303564
0.182251
0.0540555
5.47357
4.55407
4.28626
4.09131
3.91022
3.7467
3.59491
3.45107
3.31291
3.17896
3.04815
2.91965
2.79276
2.66693
2.54175
2.41691
2.2922
2.16752
2.04278
1.91799
1.79314
1.66826
1.54341
1.41861
1.29391
1.16935
1.04496
0.920781
0.796831
0.673177
0.549775
0.426838
0.303741
0.182437
0.0541081
5.4677
4.54172
4.28743
4.09092
3.91068
3.74655
3.59428
3.45017
3.31184
3.17779
3.04695
2.91846
2.79161
2.66585
2.54076
2.41602
2.29143
2.16685
2.04222
1.91752
1.79275
1.66795
1.54315
1.4184
1.29374
1.16921
1.04484
0.920684
0.796746
0.673094
0.54968
0.426708
0.303689
0.182073
0.0564678
5.48368
4.55112
4.28631
4.09118
3.91012
3.74672
3.59499
3.45116
3.31301
3.17907
3.04827
2.91978
2.79289
2.66707
2.54188
2.41703
2.29233
2.16763
2.04289
1.91809
1.79323
1.66836
1.54349
1.41869
1.29399
1.16942
1.04504
0.920858
0.796902
0.673231
0.549777
0.426794
0.303577
0.182317
0.0538334
5.48408
4.55077
4.28621
4.09108
3.91007
3.74668
3.59496
3.45114
3.313
3.17906
3.04827
2.91978
2.7929
2.66707
2.54188
2.41703
2.29232
2.16763
2.04289
1.91808
1.79323
1.66835
1.54349
1.41868
1.29398
1.16941
1.04502
0.920838
0.796885
0.673229
0.549825
0.426893
0.303777
0.182529
0.0538884
5.44517
4.54638
4.29344
4.09277
3.91297
3.74791
3.59502
3.45063
3.3121
3.17788
3.04687
2.91822
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04158
1.91691
1.79219
1.66743
1.54268
1.41798
1.29336
1.16887
1.04454
0.920421
0.796526
0.672912
0.54955
0.42657
0.303776
0.181649
0.060532
5.40663
4.56231
4.29414
4.09459
3.91374
3.7486
3.59573
3.45127
3.31269
3.17842
3.04739
2.91873
2.79173
2.66585
2.54066
2.41586
2.29123
2.16664
2.04201
1.91732
1.79257
1.66778
1.54301
1.41828
1.29364
1.16913
1.04478
0.920639
0.796716
0.673077
0.549688
0.426714
0.303836
0.18195
0.058713
5.47703
4.55404
4.28636
4.09123
3.91005
3.74661
3.59489
3.45109
3.31298
3.17908
3.04832
2.91986
2.79299
2.66717
2.54198
2.41711
2.29238
2.16767
2.04291
1.91808
1.79321
1.66832
1.54345
1.41863
1.29392
1.16935
1.04496
0.920775
0.796821
0.673165
0.549761
0.42683
0.303719
0.182465
0.053806
5.47631
4.55436
4.28642
4.09133
3.9101
3.74664
3.59491
3.4511
3.31297
3.17906
3.0483
2.91984
2.79297
2.66716
2.54197
2.41711
2.29239
2.16767
2.04291
1.91809
1.79322
1.66833
1.54345
1.41864
1.29393
1.16936
1.04497
0.92079
0.796833
0.673162
0.54971
0.426727
0.303514
0.182244
0.0537444
5.34685
4.5842
4.30172
4.09811
3.91691
3.75082
3.59733
3.45256
3.31373
3.17926
3.04806
2.91924
2.79211
2.66612
2.54085
2.41598
2.29131
2.16669
2.04205
1.91735
1.79261
1.66783
1.54307
1.41835
1.29372
1.16922
1.04488
0.920742
0.796828
0.673198
0.549835
0.426861
0.304125
0.181931
0.0615415
5.4293
4.54953
4.29422
4.0933
3.9133
3.74814
3.59519
3.45076
3.3122
3.17796
3.04694
2.91827
2.79127
2.66539
2.5402
2.4154
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.5427
1.418
1.29338
1.16889
1.04456
0.920435
0.796538
0.672922
0.54956
0.426582
0.303792
0.18167
0.0605283
5.19583
4.67217
4.32036
4.10856
3.92523
3.7558
3.60066
3.45524
3.31603
3.18129
3.0499
2.92096
2.79374
2.66767
2.54235
2.41744
2.29273
2.16809
2.04343
1.91872
1.79396
1.66917
1.54438
1.41964
1.29499
1.17047
1.0461
0.921939
0.798
0.674342
0.550968
0.427977
0.305326
0.183152
0.064542
5.45303
4.54814
4.29274
4.09225
3.91272
3.74778
3.59495
3.4506
3.3121
3.17789
3.0469
2.91825
2.79126
2.66538
2.5402
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66746
1.54272
1.41801
1.2934
1.16891
1.04459
0.920464
0.796569
0.672955
0.5496
0.426625
0.303854
0.18171
0.0607083
5.44535
4.54644
4.29032
4.0923
3.91198
3.74736
3.59478
3.4505
3.31205
3.1779
3.04697
2.91839
2.79147
2.66565
2.54052
2.41575
2.29115
2.16658
2.04196
1.91727
1.79252
1.66774
1.54296
1.41823
1.29359
1.16907
1.04472
0.920575
0.796649
0.673008
0.549613
0.426642
0.303711
0.181925
0.0578025
5.35152
4.59292
4.29919
4.0982
3.91625
3.75037
3.59721
3.45263
3.31395
3.17959
3.04846
2.91971
2.79262
2.66666
2.5414
2.41653
2.29184
2.1672
2.04252
1.91779
1.793
1.66819
1.54339
1.41863
1.29397
1.16944
1.04507
0.920911
0.796972
0.673318
0.54992
0.426937
0.304078
0.18214
0.0591245
5.52734
4.52223
4.28226
4.0876
3.90795
3.74479
3.5931
3.44935
3.31131
3.1775
3.04687
2.91856
2.79187
2.66623
2.54121
2.41651
2.29193
2.16734
2.04268
1.91794
1.79313
1.66829
1.54345
1.41866
1.29397
1.16941
1.04503
0.920848
0.796891
0.673224
0.549785
0.426819
0.303665
0.182346
0.0546282
5.52778
4.52181
4.28208
4.08741
3.90786
3.74472
3.59306
3.44934
3.31131
3.17751
3.04689
2.91858
2.79189
2.66624
2.54122
2.41652
2.29194
2.16734
2.04268
1.91794
1.79313
1.66828
1.54344
1.41866
1.29396
1.1694
1.04501
0.920837
0.79689
0.673242
0.549842
0.426896
0.303783
0.182414
0.0546031
5.41739
4.55374
4.295
4.09334
3.91359
3.74838
3.59537
3.45091
3.31233
3.17806
3.04702
2.91833
2.7913
2.6654
2.54019
2.41538
2.29076
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04455
0.920427
0.796535
0.672923
0.549567
0.426584
0.303838
0.181624
0.0613717
5.50474
4.53195
4.28562
4.08891
3.90964
3.74569
3.59353
3.44955
3.31133
3.17735
3.04654
2.91806
2.79121
2.66544
2.54034
2.41561
2.29102
2.16646
2.04186
1.91718
1.79244
1.66766
1.54289
1.41816
1.29351
1.169
1.04465
0.920503
0.796582
0.672953
0.549581
0.426631
0.303718
0.181953
0.0574077
5.41998
4.55369
4.29482
4.09325
3.9135
3.74832
3.59532
3.45088
3.31231
3.17805
3.04701
2.91833
2.79131
2.66541
2.54021
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.54271
1.41801
1.29339
1.1689
1.04458
0.920462
0.796569
0.672956
0.5496
0.426618
0.303868
0.181668
0.0612725
5.45231
4.55843
4.28759
4.0924
3.91128
3.74731
3.59522
3.45117
3.31283
3.17875
3.04786
2.91931
2.79241
2.66659
2.54142
2.41661
2.29195
2.1673
2.0426
1.91784
1.79302
1.66817
1.54334
1.41855
1.29387
1.16933
1.04495
0.920783
0.796838
0.673178
0.549749
0.426772
0.303665
0.182201
0.0551077
5.36937
4.58944
4.29649
4.09727
3.91523
3.74969
3.59677
3.45232
3.31374
3.17946
3.0484
2.9197
2.79266
2.66673
2.54148
2.41662
2.29193
2.16728
2.04259
1.91784
1.79304
1.66821
1.54339
1.41862
1.29395
1.16942
1.04505
0.920884
0.796943
0.673287
0.549882
0.426899
0.303976
0.182153
0.0579129
5.25329
4.64497
4.31143
4.10496
3.92163
3.75357
3.59929
3.45423
3.31525
3.1807
3.04945
2.92061
2.79348
2.66749
2.54221
2.41733
2.29263
2.16798
2.0433
1.91856
1.79376
1.66894
1.54413
1.41937
1.29469
1.17015
1.04577
0.921589
0.797632
0.673957
0.550555
0.42755
0.304794
0.182651
0.0615652
5.47706
4.53608
4.2894
4.09107
3.91154
3.74697
3.59439
3.45016
3.31175
3.17762
3.0467
2.91811
2.79118
2.66535
2.54021
2.41544
2.29085
2.16628
2.04168
1.91701
1.79228
1.66752
1.54277
1.41806
1.29343
1.16893
1.0446
0.920465
0.796556
0.672931
0.549556
0.426584
0.303724
0.181769
0.0590862
5.40086
4.56085
4.29627
4.09439
3.91421
3.74882
3.59571
3.45118
3.31255
3.17825
3.04718
2.91847
2.79143
2.66552
2.54031
2.4155
2.29087
2.16628
2.04167
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16895
1.04462
0.920498
0.796599
0.672982
0.549626
0.426653
0.303905
0.181731
0.06108
5.34501
4.59431
4.30045
4.09853
3.91657
3.7505
3.59718
3.45251
3.31376
3.17936
3.0482
2.91941
2.79231
2.66634
2.54108
2.41621
2.29153
2.1669
2.04224
1.91752
1.79275
1.66796
1.54317
1.41843
1.29378
1.16926
1.04491
0.92076
0.796831
0.673185
0.549799
0.426824
0.304003
0.182016
0.0596527
5.49315
4.53283
4.28564
4.08899
3.9096
3.74567
3.59354
3.44958
3.31137
3.1774
3.0466
2.91813
2.79129
2.66554
2.54045
2.41573
2.29115
2.16659
2.04198
1.9173
1.79255
1.66777
1.54299
1.41826
1.29361
1.16909
1.04473
0.920581
0.796655
0.673021
0.549644
0.426693
0.303761
0.182032
0.0571641
5.57992
4.50586
4.27875
4.085
3.90616
3.74358
3.59227
3.4488
3.31096
3.17733
3.04684
2.91865
2.79204
2.66647
2.54149
2.41681
2.29223
2.16763
2.04295
1.91818
1.79335
1.66848
1.54362
1.41881
1.2941
1.16953
1.04513
0.920945
0.796998
0.673352
0.549948
0.426988
0.303797
0.182443
0.0540799
5.42581
4.55153
4.29521
4.0937
3.91365
3.74839
3.59536
3.45089
3.31231
3.17805
3.04701
2.91833
2.79132
2.66542
2.54023
2.41543
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41803
1.29341
1.16892
1.04459
0.92047
0.796576
0.672961
0.5496
0.426618
0.303842
0.181676
0.0609474
5.58866
4.50437
4.27814
4.08474
3.90606
3.74352
3.59225
3.44879
3.31097
3.17734
3.04685
2.91866
2.79206
2.66648
2.5415
2.41682
2.29224
2.16763
2.04295
1.91819
1.79335
1.66849
1.54362
1.41882
1.2941
1.16953
1.04513
0.920945
0.796997
0.673351
0.549948
0.42699
0.303806
0.182443
0.0541293
5.5779
4.50775
4.27906
4.08521
3.9063
3.74366
3.59232
3.44881
3.31096
3.17731
3.04681
2.91861
2.792
2.66642
2.54145
2.41677
2.29219
2.1676
2.04292
1.91816
1.79333
1.66847
1.54361
1.41881
1.2941
1.16953
1.04513
0.92094
0.796974
0.673301
0.549861
0.426908
0.303735
0.182489
0.0542807
5.56774
4.50823
4.2793
4.08538
3.90641
3.74374
3.59238
3.44886
3.311
3.17734
3.04683
2.91862
2.792
2.66642
2.54144
2.41675
2.29217
2.16757
2.0429
1.91813
1.7933
1.66844
1.54358
1.41878
1.29407
1.1695
1.0451
0.92092
0.796972
0.673326
0.549923
0.426968
0.303792
0.182444
0.0541425
5.49024
4.54609
4.2857
4.09042
3.90959
3.74632
3.59464
3.45084
3.31271
3.17879
3.04803
2.91957
2.79273
2.66693
2.54178
2.41695
2.29226
2.16757
2.04284
1.91804
1.79318
1.6683
1.54344
1.41863
1.29393
1.16936
1.04498
0.920801
0.796846
0.673176
0.549721
0.426739
0.30351
0.182283
0.0536695
5.49042
4.54596
4.28567
4.0904
3.90958
3.74632
3.59463
3.45083
3.31271
3.17879
3.04803
2.91957
2.79272
2.66693
2.54177
2.41695
2.29225
2.16757
2.04283
1.91803
1.79318
1.6683
1.54344
1.41863
1.29393
1.16936
1.04496
0.920785
0.796834
0.673181
0.549781
0.426855
0.303731
0.18251
0.0537261
5.55233
4.51764
4.28111
4.08664
3.90757
3.74443
3.59277
3.44907
3.31105
3.17726
3.04662
2.9183
2.79159
2.66594
2.54093
2.41624
2.29168
2.16712
2.04248
1.91777
1.79298
1.66816
1.54334
1.41856
1.29388
1.16933
1.04495
0.920777
0.796825
0.673161
0.549732
0.426762
0.303676
0.182214
0.0554525
5.45448
4.55195
4.28793
4.09154
3.911
3.74691
3.59471
3.45063
3.31231
3.17825
3.04739
2.91887
2.792
2.66621
2.54109
2.41631
2.29169
2.16708
2.04242
1.91769
1.7929
1.66807
1.54326
1.4185
1.29383
1.16929
1.04492
0.920752
0.796814
0.673168
0.549776
0.426823
0.303821
0.182264
0.0559735
5.54166
4.51798
4.28125
4.08661
3.90741
3.74433
3.59273
3.44907
3.3111
3.17735
3.04675
2.91846
2.79178
2.66615
2.54115
2.41646
2.29189
2.16731
2.04266
1.91793
1.79313
1.66829
1.54346
1.41867
1.29398
1.16942
1.04503
0.920851
0.796904
0.673255
0.549858
0.42691
0.303822
0.182386
0.0549873
5.5402
4.51883
4.28148
4.0868
3.90749
3.74439
3.59278
3.44911
3.31112
3.17735
3.04675
2.91846
2.79179
2.66616
2.54117
2.41649
2.29192
2.16735
2.0427
1.91797
1.79317
1.66833
1.5435
1.41871
1.29402
1.16946
1.04507
0.920889
0.79693
0.673261
0.549823
0.426854
0.303728
0.182346
0.0550203
5.19404
4.67381
4.32061
4.10883
3.92535
3.75586
3.60071
3.45528
3.31605
3.18131
3.04992
2.92098
2.79375
2.66769
2.54236
2.41745
2.29275
2.1681
2.04344
1.91874
1.79398
1.66921
1.54444
1.41972
1.29508
1.17058
1.04623
0.922078
0.798149
0.674498
0.551127
0.428138
0.305481
0.183313
0.0643584
5.33361
4.60779
4.30067
4.09973
3.9171
3.7508
3.59751
3.45288
3.31418
3.17982
3.04871
2.91996
2.79287
2.6669
2.54162
2.41674
2.29204
2.16737
2.04268
1.91793
1.79313
1.66831
1.54349
1.41872
1.29405
1.16951
1.04514
0.920972
0.797028
0.673369
0.549967
0.426981
0.304109
0.182191
0.0587064
5.59086
4.50369
4.27814
4.08465
3.90593
3.74344
3.59219
3.44875
3.31094
3.17733
3.04685
2.91868
2.79209
2.66652
2.54155
2.41687
2.29228
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41883
1.29412
1.16954
1.04514
0.920959
0.797013
0.673369
0.549964
0.426998
0.303786
0.182432
0.0539594
5.58968
4.50421
4.27828
4.08474
3.90597
3.74346
3.5922
3.44875
3.31093
3.17732
3.04684
2.91866
2.79207
2.66651
2.54154
2.41686
2.29227
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41884
1.29413
1.16955
1.04515
0.920955
0.796987
0.673314
0.549874
0.426927
0.303741
0.182531
0.054096
5.38327
4.56813
4.29776
4.09546
3.91499
3.7494
3.59617
3.45156
3.31287
3.17851
3.0474
2.91866
2.7916
2.66567
2.54044
2.41562
2.29098
2.16638
2.04176
1.91708
1.79235
1.66759
1.54284
1.41813
1.29351
1.16902
1.04469
0.920558
0.796655
0.673035
0.549678
0.426707
0.303965
0.181794
0.0611499
5.41797
4.555
4.29495
4.09346
3.91357
3.74836
3.59536
3.4509
3.31233
3.17807
3.04703
2.91835
2.79133
2.66543
2.54023
2.41543
2.2908
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.2934
1.16891
1.04459
0.920466
0.796571
0.672956
0.5496
0.426624
0.30387
0.181692
0.0610466
5.51272
4.53113
4.28349
4.0887
3.90857
3.74541
3.59372
3.44993
3.31183
3.17797
3.04728
2.91893
2.79219
2.6665
2.54144
2.4167
2.29208
2.16745
2.04277
1.918
1.79318
1.66832
1.54347
1.41867
1.29398
1.16942
1.04503
0.920852
0.796896
0.673226
0.549778
0.426806
0.303604
0.18236
0.0540578
5.55834
4.51509
4.28048
4.08614
3.90706
3.74409
3.59255
3.44892
3.31096
3.17721
3.04662
2.91834
2.79166
2.66604
2.54104
2.41636
2.2918
2.16722
2.04257
1.91784
1.79304
1.66821
1.54337
1.41859
1.2939
1.16935
1.04496
0.920784
0.796828
0.673163
0.54973
0.426767
0.303647
0.18227
0.0549473
5.55957
4.51389
4.28012
4.0859
3.90697
3.74406
3.59255
3.44896
3.31103
3.17731
3.04674
2.91848
2.79182
2.6662
2.54121
2.41653
2.29196
2.16738
2.04272
1.91798
1.79318
1.66833
1.54349
1.4187
1.294
1.16944
1.04505
0.920869
0.796921
0.673272
0.549875
0.426927
0.30383
0.1824
0.0548802
5.38463
4.58871
4.29408
4.09611
3.91416
3.74899
3.59635
3.45207
3.31361
3.17943
3.04845
2.9198
2.79279
2.66689
2.54165
2.41679
2.29209
2.16741
2.0427
1.91793
1.79311
1.66827
1.54343
1.41865
1.29397
1.16943
1.04505
0.920881
0.796939
0.673286
0.549893
0.426928
0.303993
0.182278
0.0569245
5.47261
4.55259
4.28643
4.09128
3.91031
3.74667
3.59477
3.45084
3.31263
3.17865
3.04784
2.91936
2.7925
2.66671
2.54157
2.41676
2.29209
2.16743
2.04272
1.91794
1.79311
1.66825
1.5434
1.41861
1.29392
1.16936
1.04498
0.920802
0.796854
0.673201
0.549799
0.426857
0.30377
0.182423
0.0544337
5.47373
4.55204
4.28636
4.09138
3.91034
3.74667
3.59476
3.45081
3.31258
3.1786
3.04779
2.91932
2.79247
2.66669
2.54156
2.41676
2.2921
2.16745
2.04274
1.91797
1.79314
1.66828
1.54343
1.41864
1.29395
1.16939
1.04501
0.920833
0.796881
0.673214
0.549772
0.426794
0.303626
0.18228
0.0543931
5.54083
4.52221
4.28233
4.08719
3.90817
3.74477
3.59296
3.44918
3.31111
3.17726
3.04657
2.9182
2.79144
2.66575
2.54071
2.416
2.29144
2.16687
2.04225
1.91755
1.79278
1.66797
1.54317
1.41841
1.29375
1.16921
1.04484
0.920672
0.796736
0.673096
0.549711
0.426763
0.303763
0.182166
0.0560818
5.3565
4.58843
4.29882
4.09721
3.91582
3.75
3.59678
3.45216
3.31345
3.17907
3.04794
2.91918
2.79209
2.66614
2.54089
2.41604
2.29137
2.16675
2.0421
1.9174
1.79264
1.66785
1.54308
1.41835
1.29371
1.1692
1.04485
0.920705
0.796784
0.673148
0.549779
0.426812
0.30402
0.182011
0.05985
5.46841
4.54734
4.28654
4.09083
3.91037
3.74657
3.59453
3.45055
3.31229
3.17828
3.04746
2.91898
2.79213
2.66636
2.54124
2.41647
2.29184
2.16722
2.04255
1.9178
1.793
1.66816
1.54334
1.41856
1.29388
1.16934
1.04496
0.920793
0.796851
0.673202
0.549805
0.426856
0.303815
0.182345
0.0553714
5.44772
4.55144
4.28906
4.09193
3.91158
3.74729
3.59492
3.45075
3.31237
3.17826
3.04736
2.9188
2.7919
2.66609
2.54095
2.41618
2.29156
2.16697
2.04232
1.91761
1.79284
1.66803
1.54323
1.41848
1.29382
1.16929
1.04492
0.920765
0.79683
0.673187
0.549799
0.426842
0.303885
0.182219
0.0568474
5.45061
4.54695
4.29143
4.09179
3.91218
3.74741
3.5947
3.45042
3.31196
3.17779
3.04683
2.91821
2.79124
2.66538
2.54021
2.41543
2.29082
2.16624
2.04164
1.91697
1.79224
1.66749
1.54273
1.41803
1.29341
1.16892
1.04458
0.920457
0.796555
0.672937
0.54958
0.426617
0.30382
0.181783
0.0598313
5.54
4.51805
4.28134
4.08669
3.90739
3.74431
3.59271
3.44904
3.31106
3.1773
3.0467
2.91841
2.79173
2.6661
2.5411
2.41641
2.29183
2.16725
2.0426
1.91786
1.79306
1.66822
1.54338
1.4186
1.29391
1.16935
1.04496
0.920787
0.796843
0.673197
0.549801
0.426855
0.303757
0.182347
0.0547796
5.53945
4.51858
4.28138
4.08676
3.90739
3.74432
3.59272
3.44905
3.31106
3.1773
3.0467
2.91841
2.79173
2.66611
2.54111
2.41642
2.29185
2.16727
2.04262
1.91789
1.79308
1.66824
1.54341
1.41862
1.29393
1.16937
1.04499
0.92081
0.796854
0.673188
0.549753
0.426789
0.303655
0.182302
0.0548116
5.49127
4.53151
4.28741
4.09014
3.91071
3.74641
3.59401
3.44987
3.31152
3.17745
3.04657
2.91803
2.79113
2.66533
2.5402
2.41545
2.29086
2.1663
2.04169
1.91702
1.79229
1.66752
1.54276
1.41804
1.29341
1.1689
1.04457
0.920428
0.796513
0.672883
0.549501
0.426533
0.303636
0.18177
0.0582791
5.36827
4.59451
4.29591
4.09747
3.91512
3.74956
3.59672
3.45232
3.31379
3.17957
3.04857
2.91991
2.7929
2.66698
2.54174
2.41687
2.29216
2.16749
2.04277
1.918
1.79318
1.66833
1.5435
1.41872
1.29404
1.16949
1.04511
0.920943
0.796997
0.673336
0.549924
0.426939
0.303984
0.182201
0.057313
5.31862
4.61372
4.30274
4.10066
3.91791
3.7513
3.59783
3.45312
3.31437
3.17997
3.04883
2.92005
2.79295
2.66696
2.54168
2.41679
2.29208
2.16742
2.04272
1.91798
1.79318
1.66835
1.54354
1.41878
1.29411
1.16957
1.0452
0.921032
0.797088
0.673428
0.550028
0.427041
0.3042
0.182226
0.059312
5.32895
4.60214
4.30234
4.09961
3.91745
3.7511
3.59765
3.45292
3.31413
3.17969
3.0485
2.91969
2.79257
2.66657
2.54129
2.41641
2.29171
2.16707
2.0424
1.91767
1.7929
1.66809
1.5433
1.41856
1.29391
1.16939
1.04503
0.920876
0.796943
0.673295
0.54991
0.426931
0.304133
0.182099
0.0601648
5.18735
4.67678
4.32174
4.1092
3.9258
3.75615
3.60088
3.4554
3.31615
3.18139
3.04999
2.92103
2.79379
2.66772
2.54238
2.41747
2.29276
2.16812
2.04345
1.91874
1.79398
1.6692
1.54443
1.4197
1.29506
1.17054
1.04618
0.922026
0.798091
0.674434
0.551061
0.428069
0.305423
0.183267
0.0648047
5.46505
4.54388
4.28715
4.09044
3.91039
3.74635
3.59415
3.45011
3.31183
3.17781
3.04698
2.91849
2.79164
2.66588
2.54078
2.41603
2.29144
2.16685
2.04222
1.91752
1.79275
1.66795
1.54315
1.4184
1.29373
1.1692
1.04484
0.92068
0.796746
0.673105
0.549718
0.426765
0.303794
0.182164
0.0565015
5.42765
4.55215
4.29374
4.09286
3.91311
3.74805
3.59514
3.45074
3.3122
3.17797
3.04695
2.91829
2.79129
2.6654
2.54021
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.54271
1.418
1.29339
1.1689
1.04457
0.92045
0.796554
0.672939
0.549585
0.426612
0.303848
0.181703
0.0607501
5.58603
4.50561
4.27861
4.08494
3.90612
3.74355
3.59225
3.44878
3.31095
3.17732
3.04683
2.91864
2.79205
2.66648
2.5415
2.41683
2.29225
2.16764
2.04297
1.9182
1.79337
1.6685
1.54364
1.41883
1.29412
1.16955
1.04515
0.920954
0.796986
0.673313
0.549873
0.426923
0.303743
0.182519
0.0541729
5.6171
4.5032
4.27784
4.08446
3.90583
3.74339
3.59216
3.44874
3.31094
3.17734
3.04687
2.9187
2.79212
2.66656
2.54158
2.4169
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41886
1.29414
1.16957
1.04516
0.920968
0.796998
0.673325
0.549885
0.426939
0.303751
0.182546
0.0540705
5.61754
4.50294
4.27776
4.08442
3.90581
3.74337
3.59215
3.44874
3.31094
3.17734
3.04688
2.91871
2.79213
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16956
1.04515
0.920973
0.797027
0.673383
0.549978
0.427009
0.303789
0.182431
0.0539251
5.5006
4.53086
4.28703
4.08998
3.91049
3.74627
3.59394
3.44984
3.31153
3.17748
3.04663
2.91812
2.79124
2.66547
2.54036
2.41563
2.29105
2.16649
2.04189
1.91722
1.79248
1.66771
1.54294
1.41821
1.29358
1.16906
1.04472
0.920572
0.796648
0.67301
0.549617
0.426645
0.303719
0.181902
0.0579249
5.49537
4.53891
4.28456
4.08971
3.90931
3.74595
3.59416
3.45029
3.31212
3.17819
3.04744
2.91902
2.79224
2.66651
2.54142
2.41666
2.29202
2.16739
2.0427
1.91794
1.79312
1.66826
1.54342
1.41863
1.29394
1.16938
1.045
0.920827
0.796873
0.673207
0.549764
0.42679
0.303611
0.182313
0.0543164
5.37241
4.5721
4.29867
4.0959
3.91532
3.74962
3.59634
3.45171
3.31299
3.17862
3.04749
2.91873
2.79166
2.66571
2.54048
2.41564
2.29099
2.16639
2.04176
1.91708
1.79235
1.66759
1.54283
1.41812
1.2935
1.16901
1.04468
0.920551
0.796648
0.673028
0.549673
0.426702
0.30397
0.181779
0.0613689
5.46356
4.5588
4.28707
4.09216
3.91082
3.74711
3.59526
3.45137
3.31317
3.17919
3.04836
2.91982
2.7929
2.66704
2.54184
2.41698
2.29226
2.16757
2.04283
1.91803
1.79318
1.6683
1.54345
1.41865
1.29395
1.16939
1.04501
0.920832
0.79688
0.673213
0.54977
0.42679
0.303621
0.182264
0.0543089
5.464
4.55847
4.28706
4.09196
3.91072
3.74703
3.59518
3.4513
3.31312
3.17914
3.04831
2.91978
2.79286
2.66701
2.5418
2.41694
2.29223
2.16753
2.0428
1.918
1.79315
1.66828
1.54342
1.41863
1.29393
1.16937
1.04498
0.920808
0.796859
0.673205
0.549802
0.426862
0.303777
0.182432
0.0543527
5.18179
4.67976
4.32246
4.10943
3.92615
3.75636
3.60099
3.45549
3.31622
3.18144
3.05003
2.92106
2.79382
2.66774
2.54241
2.41749
2.29278
2.16814
2.04348
1.91877
1.79401
1.66923
1.54445
1.41973
1.29509
1.17057
1.04622
0.922065
0.798133
0.674478
0.551107
0.428116
0.305478
0.183336
0.0651336
5.57951
4.50943
4.27917
4.08537
3.9065
3.74378
3.5924
3.44886
3.31098
3.1773
3.04678
2.91855
2.79193
2.66634
2.54136
2.41669
2.29211
2.16752
2.04286
1.91811
1.79329
1.66843
1.54358
1.41878
1.29408
1.16951
1.04511
0.920925
0.79696
0.673288
0.549847
0.426889
0.303733
0.182441
0.0545239
5.58153
4.50768
4.27877
4.08518
3.90643
3.74375
3.59239
3.44888
3.31101
3.17734
3.04682
2.9186
2.79197
2.66638
2.5414
2.41672
2.29214
2.16755
2.04288
1.91812
1.7933
1.66844
1.54359
1.41879
1.29408
1.16951
1.04511
0.920927
0.796977
0.673329
0.549929
0.426978
0.303836
0.18245
0.0544509
5.55098
4.51356
4.28068
4.08633
3.90698
3.74416
3.59269
3.44909
3.31116
3.17744
3.04689
2.91865
2.79201
2.66641
2.54141
2.41672
2.29213
2.16752
2.04284
1.91808
1.79325
1.66839
1.54354
1.41873
1.29403
1.16946
1.04506
0.920886
0.796939
0.673292
0.54989
0.42694
0.303761
0.182465
0.053971
5.49219
4.54471
4.28541
4.09024
3.90949
3.74624
3.59455
3.45075
3.31261
3.17869
3.04792
2.91946
2.79262
2.66684
2.54169
2.41687
2.29219
2.16752
2.0428
1.918
1.79316
1.66828
1.54342
1.41862
1.29392
1.16936
1.04498
0.920801
0.796847
0.673177
0.549724
0.426744
0.30352
0.18229
0.0537257
5.49276
4.54425
4.28528
4.09015
3.90944
3.7462
3.59452
3.45072
3.31259
3.17867
3.04791
2.91945
2.79261
2.66683
2.54168
2.41687
2.29219
2.16752
2.04279
1.918
1.79315
1.66828
1.54342
1.41862
1.29392
1.16936
1.04496
0.920786
0.796835
0.673183
0.549782
0.426855
0.303733
0.182506
0.0537806
5.3637
4.57742
4.29939
4.09664
3.91584
3.75003
3.59669
3.45201
3.31325
3.17884
3.04768
2.91891
2.79182
2.66586
2.54061
2.41577
2.29111
2.1665
2.04187
1.91718
1.79245
1.66768
1.54292
1.41821
1.29358
1.16909
1.04475
0.920618
0.79671
0.673086
0.549728
0.426759
0.304022
0.181856
0.0612209
5.5889
4.50438
4.2784
4.08482
3.90606
3.74351
3.59223
3.44878
3.31096
3.17733
3.04685
2.91866
2.79207
2.6665
2.54152
2.41684
2.29226
2.16765
2.04297
1.91821
1.79337
1.6685
1.54364
1.41883
1.29412
1.16954
1.04514
0.920957
0.79701
0.673364
0.54996
0.426998
0.303797
0.18244
0.0540382
5.50279
4.53533
4.28405
4.08917
3.90895
3.74566
3.5939
3.45007
3.31194
3.17805
3.04734
2.91895
2.79219
2.66648
2.5414
2.41665
2.29202
2.1674
2.04271
1.91795
1.79313
1.66827
1.54343
1.41864
1.29395
1.16939
1.045
0.920823
0.796875
0.673223
0.54982
0.42688
0.303766
0.18246
0.0542891
5.49496
4.53913
4.28435
4.08954
3.90913
3.74583
3.59409
3.45024
3.31208
3.17815
3.04741
2.91899
2.7922
2.66647
2.54137
2.41661
2.29197
2.16733
2.04264
1.91788
1.79305
1.6682
1.54335
1.41856
1.29387
1.16931
1.04493
0.92076
0.796809
0.673144
0.5497
0.426728
0.303539
0.182265
0.0540965
5.33561
4.60964
4.29974
4.09915
3.91672
3.75055
3.59737
3.45284
3.31422
3.17993
3.04886
2.92015
2.79308
2.66713
2.54185
2.41696
2.29224
2.16756
2.04285
1.91809
1.79327
1.66843
1.5436
1.41882
1.29414
1.16959
1.04521
0.921036
0.797089
0.673429
0.550037
0.427057
0.304202
0.1823
0.0585393
5.42283
4.55413
4.29281
4.09353
3.91296
3.74798
3.59518
3.45079
3.31226
3.17804
3.04706
2.91843
2.79146
2.66561
2.54045
2.41567
2.29105
2.16647
2.04185
1.91717
1.79243
1.66766
1.54289
1.41816
1.29353
1.16902
1.04468
0.920536
0.796617
0.672982
0.549596
0.426625
0.303743
0.181864
0.0585809
5.38621
4.56657
4.29778
4.09538
3.91496
3.74937
3.59614
3.45153
3.31284
3.17849
3.04738
2.91864
2.79158
2.66565
2.54042
2.4156
2.29096
2.16637
2.04174
1.91707
1.79234
1.66758
1.54283
1.41812
1.2935
1.16901
1.04468
0.920552
0.79665
0.67303
0.549674
0.4267
0.303959
0.181773
0.0612505
5.31108
4.61403
4.30404
4.10096
3.91833
3.75161
3.59804
3.45329
3.31451
3.18009
3.04892
2.92013
2.79302
2.66703
2.54174
2.41685
2.29215
2.16748
2.0428
1.91805
1.79326
1.66844
1.54363
1.41887
1.2942
1.16966
1.04529
0.921116
0.79717
0.673507
0.550109
0.427119
0.304308
0.182272
0.0601013
5.45642
4.54421
4.29277
4.09248
3.91275
3.74777
3.59493
3.45056
3.31205
3.17784
3.04685
2.91821
2.79122
2.66535
2.54017
2.41539
2.29077
2.1662
2.04159
1.91693
1.79221
1.66745
1.5427
1.418
1.29338
1.16889
1.04456
0.920437
0.79654
0.672926
0.549562
0.426582
0.30378
0.181671
0.060376
5.23661
4.65275
4.31411
4.1061
3.92268
3.75423
3.5997
3.45453
3.31547
3.18086
3.04956
2.92068
2.79351
2.66748
2.54218
2.41728
2.29258
2.16792
2.04323
1.91849
1.7937
1.66888
1.54407
1.4193
1.29463
1.17009
1.04572
0.921547
0.797599
0.673933
0.550543
0.427547
0.304828
0.182665
0.0623037
5.43727
4.56223
4.28919
4.09269
3.91172
3.74746
3.59522
3.45111
3.31276
3.17866
3.04776
2.9192
2.79228
2.66645
2.54129
2.41648
2.29183
2.16719
2.04251
1.91776
1.79295
1.66812
1.5433
1.41853
1.29385
1.16931
1.04494
0.920774
0.796835
0.673187
0.549793
0.426839
0.303841
0.18228
0.0559335
5.51965
4.52567
4.2834
4.08778
3.90849
3.74498
3.5931
3.44928
3.31118
3.17731
3.0466
2.91822
2.79145
2.66575
2.54071
2.416
2.29143
2.16686
2.04224
1.91754
1.79277
1.66796
1.54316
1.4184
1.29373
1.16919
1.04482
0.920662
0.796727
0.673086
0.549701
0.426754
0.303752
0.182167
0.0560463
5.52992
4.52191
4.28236
4.08732
3.90797
3.74467
3.59293
3.44917
3.31111
3.17728
3.04662
2.91827
2.79155
2.66589
2.54086
2.41617
2.29161
2.16704
2.04241
1.9177
1.79292
1.6681
1.54328
1.41851
1.29383
1.16928
1.04491
0.920737
0.796788
0.673127
0.5497
0.426732
0.30365
0.182176
0.0555155
5.56797
4.50771
4.27935
4.08541
3.90639
3.74374
3.59239
3.44888
3.31103
3.17737
3.04687
2.91867
2.79207
2.66649
2.54151
2.41683
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16953
1.04513
0.920952
0.797005
0.673359
0.549954
0.426994
0.303794
0.182462
0.0539782
5.56962
4.50792
4.2794
4.08542
3.90637
3.74372
3.59237
3.44886
3.311
3.17735
3.04685
2.91865
2.79205
2.66647
2.5415
2.41682
2.29223
2.16763
2.04295
1.91819
1.79335
1.66848
1.54362
1.41882
1.29411
1.16954
1.04514
0.920946
0.796979
0.673306
0.549865
0.426913
0.303721
0.182513
0.0540861
5.15642
4.69229
4.32685
4.11109
3.92791
3.75745
3.60166
3.45599
3.31661
3.18175
3.05027
2.92126
2.79398
2.66788
2.54253
2.4176
2.29288
2.16823
2.04356
1.91885
1.7941
1.66932
1.54455
1.41983
1.2952
1.17069
1.04635
0.922209
0.798293
0.674655
0.551306
0.428333
0.305743
0.183701
0.066893
5.43351
4.56293
4.28975
4.09329
3.91207
3.74763
3.59526
3.45106
3.31265
3.17853
3.04761
2.91905
2.79213
2.66632
2.54116
2.41637
2.29173
2.16711
2.04244
1.9177
1.79291
1.66808
1.54326
1.4185
1.29382
1.16928
1.04492
0.920752
0.796811
0.673156
0.549737
0.426761
0.303721
0.18213
0.0560534
5.51205
4.52868
4.2835
4.08861
3.90867
3.74531
3.5935
3.44965
3.31153
3.17766
3.04697
2.91861
2.79188
2.66621
2.54116
2.41645
2.29186
2.16726
2.0426
1.91786
1.79306
1.66822
1.54339
1.4186
1.29392
1.16937
1.04499
0.920809
0.796857
0.673192
0.549756
0.426787
0.303643
0.182296
0.0547464
5.51455
4.52711
4.28314
4.08823
3.90846
3.74515
3.59339
3.44958
3.31148
3.17763
3.04696
2.91861
2.79188
2.66621
2.54116
2.41645
2.29186
2.16726
2.0426
1.91786
1.79305
1.66821
1.54338
1.4186
1.29391
1.16935
1.04497
0.920797
0.796852
0.673205
0.549806
0.426861
0.303765
0.182383
0.0547286
5.45864
4.55357
4.28753
4.09198
3.91109
3.74705
3.59489
3.45081
3.31248
3.17842
3.04757
2.91906
2.79219
2.66641
2.54129
2.41651
2.29188
2.16725
2.04258
1.91784
1.79303
1.66819
1.54337
1.41859
1.29391
1.16937
1.04499
0.920824
0.796878
0.673218
0.549789
0.426812
0.303721
0.182228
0.055456
5.44115
4.55623
4.28935
4.09269
3.91182
3.74744
3.59506
3.45085
3.31244
3.17832
3.04741
2.91886
2.79196
2.66615
2.54102
2.41624
2.29162
2.16701
2.04236
1.91764
1.79285
1.66804
1.54323
1.41847
1.2938
1.16927
1.0449
0.920739
0.796799
0.673145
0.549729
0.426754
0.30373
0.182115
0.056358
5.18902
4.6771
4.32143
4.10924
3.92571
3.75607
3.60083
3.45537
3.31612
3.18137
3.04997
2.92101
2.79378
2.66771
2.54238
2.41747
2.29276
2.16811
2.04345
1.91874
1.79398
1.66919
1.54441
1.41969
1.29505
1.17054
1.04619
0.922032
0.798101
0.674449
0.551075
0.428083
0.305425
0.183265
0.0643515
5.37328
4.59877
4.2953
4.09736
3.91482
3.74937
3.59664
3.45231
3.31384
3.17967
3.04871
2.9201
2.79313
2.66725
2.54203
2.41717
2.29246
2.16777
2.04304
1.91824
1.79339
1.66852
1.54366
1.41886
1.29416
1.16959
1.0452
0.92102
0.797068
0.673406
0.550004
0.427034
0.304081
0.182378
0.0565724
5.37163
4.58501
4.29686
4.09704
3.91527
3.74973
3.59675
3.45224
3.3136
3.17928
3.04819
2.91946
2.79241
2.66647
2.54123
2.41638
2.2917
2.16707
2.0424
1.91767
1.79289
1.66808
1.54328
1.41852
1.29386
1.16934
1.04498
0.920817
0.796882
0.673231
0.549832
0.426852
0.303957
0.182091
0.0584186
5.51699
4.52564
4.28317
4.08768
3.90837
3.74492
3.59308
3.44929
3.31121
3.17735
3.04666
2.91829
2.79154
2.66585
2.54082
2.41612
2.29155
2.16698
2.04235
1.91764
1.79287
1.66806
1.54325
1.41848
1.29381
1.16927
1.04489
0.920728
0.796789
0.673146
0.549756
0.426808
0.303791
0.182234
0.0558764
5.50099
4.53837
4.28446
4.08951
3.90906
3.74585
3.59416
3.45034
3.31221
3.17831
3.04758
2.91916
2.79237
2.66664
2.54154
2.41676
2.29211
2.16747
2.04276
1.91799
1.79315
1.66829
1.54343
1.41864
1.29394
1.16938
1.045
0.920819
0.796864
0.673195
0.549745
0.426769
0.303555
0.18232
0.0538771
5.50343
4.53728
4.28435
4.08943
3.90904
3.74583
3.59413
3.45031
3.31219
3.1783
3.04758
2.91918
2.79239
2.66667
2.54157
2.4168
2.29215
2.1675
2.0428
1.91802
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04502
0.920837
0.796886
0.673234
0.549831
0.426897
0.303769
0.182522
0.0539453
5.39167
4.56305
4.29758
4.09506
3.91476
3.74921
3.59599
3.4514
3.31273
3.17838
3.04728
2.91855
2.7915
2.66557
2.54035
2.41552
2.29089
2.1663
2.04168
1.91701
1.79228
1.66752
1.54277
1.41807
1.29345
1.16896
1.04464
0.920513
0.796616
0.672999
0.549642
0.426663
0.303925
0.181706
0.0614793
5.52629
4.52354
4.28232
4.08758
3.90784
3.74473
3.59309
3.44938
3.31135
3.17756
3.04695
2.91865
2.79197
2.66633
2.54132
2.41662
2.29203
2.16743
2.04276
1.91801
1.79319
1.66834
1.5435
1.4187
1.29401
1.16945
1.04506
0.920875
0.796916
0.673247
0.549804
0.426837
0.303663
0.182379
0.0544062
5.52495
4.52322
4.28227
4.08763
3.90796
3.74485
3.5932
3.44946
3.31142
3.17762
3.04699
2.91867
2.79197
2.66632
2.5413
2.41659
2.29199
2.16739
2.04272
1.91796
1.79315
1.6683
1.54346
1.41866
1.29397
1.16941
1.04502
0.92084
0.796892
0.673243
0.549841
0.426897
0.30377
0.182441
0.0543639
5.56964
4.50827
4.27946
4.08545
3.90641
3.74374
3.59237
3.44885
3.31099
3.17733
3.04682
2.91862
2.79202
2.66644
2.54146
2.41678
2.2922
2.1676
2.04292
1.91816
1.79333
1.66846
1.54361
1.4188
1.2941
1.16952
1.04513
0.920936
0.79697
0.673297
0.549856
0.426904
0.303719
0.1825
0.0541551
5.5587
4.51116
4.27992
4.08576
3.90661
3.74386
3.59245
3.44889
3.311
3.17732
3.0468
2.91858
2.79195
2.66637
2.54138
2.4167
2.29212
2.16753
2.04285
1.9181
1.79327
1.66841
1.54356
1.41875
1.29405
1.16948
1.04509
0.9209
0.796936
0.673265
0.549825
0.42687
0.303691
0.182451
0.0542296
5.48343
4.55213
4.28672
4.0913
3.91014
3.74676
3.59507
3.45127
3.31315
3.17922
3.04843
2.91994
2.79304
2.6672
2.54199
2.41712
2.2924
2.16769
2.04294
1.91812
1.79326
1.66837
1.5435
1.41869
1.29398
1.16941
1.04503
0.920845
0.796889
0.673216
0.54976
0.426774
0.303543
0.182305
0.0536626
5.4838
4.55197
4.28667
4.09125
3.91011
3.74675
3.59506
3.45127
3.31315
3.17923
3.04844
2.91994
2.79305
2.6672
2.54199
2.41713
2.2924
2.16769
2.04293
1.91812
1.79325
1.66837
1.5435
1.41869
1.29398
1.16941
1.04501
0.92083
0.796876
0.67322
0.549817
0.42689
0.303769
0.182546
0.0537321
5.27008
4.62966
4.31017
4.10335
3.92062
3.75308
3.59897
3.45398
3.31505
3.18052
3.04927
2.92041
2.79324
2.6672
2.54188
2.41696
2.29223
2.16756
2.04287
1.91813
1.79334
1.66853
1.54373
1.41898
1.29433
1.1698
1.04543
0.92127
0.797332
0.673679
0.550303
0.42732
0.304613
0.182406
0.0625018
5.44355
4.54571
4.29315
4.09268
3.9129
3.74788
3.59501
3.45062
3.3121
3.17788
3.04688
2.91823
2.79124
2.66537
2.54019
2.4154
2.29078
2.16621
2.0416
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04457
0.920448
0.796552
0.672937
0.549573
0.426594
0.303796
0.181682
0.0604428
5.59597
4.50294
4.27794
4.08454
3.90587
3.7434
3.59217
3.44874
3.31093
3.17732
3.04686
2.91869
2.7921
2.66653
2.54156
2.41688
2.2923
2.16769
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16956
1.04515
0.920959
0.79699
0.673317
0.549878
0.426931
0.303741
0.182538
0.0540571
5.59606
4.50288
4.27792
4.08453
3.90586
3.7434
3.59216
3.44873
3.31093
3.17732
3.04686
2.91869
2.7921
2.66654
2.54156
2.41688
2.2923
2.16769
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29412
1.16955
1.04514
0.920964
0.797019
0.673375
0.54997
0.427002
0.303782
0.182427
0.0539154
5.25976
4.63783
4.31117
4.10429
3.92123
3.7534
3.59917
3.45414
3.31518
3.18064
3.0494
2.92056
2.79341
2.6674
2.5421
2.4172
2.29248
2.16781
2.04312
1.91838
1.79359
1.66877
1.54396
1.4192
1.29454
1.17
1.04563
0.921462
0.797515
0.673851
0.550462
0.427469
0.304742
0.182564
0.0622322
5.51146
4.52721
4.28345
4.08822
3.90854
3.74509
3.59325
3.44942
3.31131
3.17744
3.04675
2.91838
2.79163
2.66596
2.54092
2.41622
2.29164
2.16707
2.04243
1.91772
1.79293
1.66811
1.54329
1.41852
1.29384
1.1693
1.04492
0.92075
0.796801
0.673141
0.549713
0.426743
0.303654
0.182192
0.0554396
5.29978
4.62103
4.30494
4.10125
3.91874
3.75185
3.5982
3.45345
3.31468
3.18026
3.0491
2.92031
2.79318
2.66718
2.54188
2.41697
2.29225
2.16758
2.04288
1.91814
1.79334
1.66852
1.54371
1.41894
1.29428
1.16974
1.04536
0.92119
0.797244
0.673583
0.550196
0.427209
0.304432
0.182368
0.0605317
5.29926
4.62271
4.30516
4.10192
3.91897
3.75196
3.59828
3.45348
3.31468
3.18026
3.0491
2.92033
2.79323
2.66726
2.54198
2.41709
2.29238
2.16771
2.04302
1.91827
1.79346
1.66863
1.54381
1.41904
1.29436
1.16982
1.04544
0.921263
0.797311
0.673644
0.550241
0.427246
0.304428
0.182398
0.0599872
5.42156
4.55312
4.29443
4.09403
3.91361
3.74841
3.59545
3.45098
3.3124
3.17814
3.04712
2.91846
2.79146
2.66559
2.54041
2.41561
2.291
2.16642
2.04181
1.91713
1.7924
1.66764
1.54288
1.41817
1.29354
1.16904
1.04471
0.920572
0.796661
0.673033
0.549658
0.426683
0.303855
0.181839
0.0597513
5.59921
4.50267
4.27784
4.0845
3.90585
3.74339
3.59216
3.44873
3.31093
3.17733
3.04686
2.91869
2.79211
2.66654
2.54157
2.41689
2.2923
2.16769
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29414
1.16956
1.04516
0.920962
0.796993
0.67332
0.54988
0.426934
0.303745
0.182541
0.0540646
5.59949
4.50247
4.27778
4.08446
3.90583
3.74338
3.59216
3.44873
3.31094
3.17733
3.04687
2.91869
2.79211
2.66654
2.54157
2.41689
2.29231
2.1677
2.04301
1.91824
1.7934
1.66852
1.54366
1.41884
1.29413
1.16955
1.04515
0.920967
0.797021
0.673378
0.549972
0.427004
0.303784
0.182428
0.0539211
5.29277
4.61567
4.30755
4.10166
3.91941
3.75239
3.59851
3.4536
3.31469
3.18015
3.04888
2.92
2.79281
2.66676
2.54143
2.41652
2.2918
2.16714
2.04247
1.91774
1.79296
1.66817
1.54338
1.41864
1.294
1.16948
1.04513
0.920977
0.797051
0.673409
0.550044
0.42707
0.304365
0.182152
0.0622376
5.43928
4.54845
4.29156
4.09309
3.91269
3.7479
3.5952
3.45084
3.31234
3.17814
3.04718
2.91857
2.79163
2.66579
2.54064
2.41587
2.29126
2.16669
2.04207
1.91739
1.79264
1.66786
1.54308
1.41835
1.29371
1.1692
1.04485
0.9207
0.796774
0.673132
0.549736
0.426759
0.303845
0.18201
0.0582786
5.16953
4.68613
4.32444
4.11022
3.927
3.75688
3.60131
3.45573
3.31641
3.18159
3.05015
2.92116
2.7939
2.66781
2.54247
2.41755
2.29284
2.16819
2.04352
1.91882
1.79406
1.66928
1.54451
1.41979
1.29516
1.17066
1.04632
0.922174
0.798255
0.674612
0.551253
0.428269
0.305648
0.183544
0.0658377
5.48264
4.54757
4.28558
4.09061
3.90986
3.74639
3.59457
3.45069
3.31251
3.17855
3.04777
2.9193
2.79247
2.66669
2.54156
2.41676
2.29209
2.16743
2.04272
1.91795
1.79311
1.66825
1.54341
1.41861
1.29392
1.16936
1.04497
0.920799
0.796851
0.673198
0.549795
0.426857
0.303757
0.182446
0.0542504
5.48438
4.54727
4.28568
4.09072
3.90988
3.74638
3.59454
3.45064
3.31244
3.17849
3.04771
2.91926
2.79244
2.66668
2.54156
2.41678
2.29212
2.16747
2.04277
1.918
1.79316
1.6683
1.54345
1.41866
1.29396
1.16941
1.04502
0.920846
0.796892
0.673224
0.549778
0.426799
0.303613
0.182308
0.0542084
5.45304
4.55481
4.28777
4.09169
3.91096
3.74694
3.5948
3.45076
3.31245
3.17841
3.04755
2.91903
2.79216
2.66636
2.54122
2.41644
2.2918
2.16717
2.04249
1.91775
1.79294
1.66811
1.54329
1.41852
1.29384
1.1693
1.04492
0.920755
0.796815
0.673167
0.549772
0.426822
0.3038
0.182291
0.0555847
5.37403
4.57074
4.29921
4.09626
3.91566
3.7499
3.59656
3.45188
3.31313
3.17873
3.04758
2.91881
2.79172
2.66577
2.54053
2.41569
2.29104
2.16644
2.04182
1.91714
1.7924
1.66764
1.54289
1.41818
1.29356
1.16907
1.04474
0.920607
0.796704
0.673083
0.549726
0.42675
0.304016
0.181799
0.0615595
5.56598
4.50844
4.27936
4.0854
3.90639
3.74374
3.5924
3.44889
3.31103
3.17737
3.04687
2.91866
2.79205
2.66647
2.54149
2.41681
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.4188
1.29409
1.16952
1.04512
0.920939
0.796991
0.673344
0.549939
0.426982
0.303793
0.18246
0.0540388
5.55575
4.51205
4.28028
4.08604
3.90679
3.74402
3.59258
3.449
3.31109
3.17739
3.04686
2.91863
2.79201
2.66641
2.54142
2.41674
2.29215
2.16755
2.04287
1.91811
1.79328
1.66842
1.54357
1.41876
1.29406
1.16949
1.0451
0.920909
0.796945
0.673273
0.54983
0.426873
0.303681
0.182465
0.0541039
5.50331
4.52964
4.28435
4.08842
3.90897
3.74531
3.59334
3.44947
3.31132
3.17742
3.04668
2.91827
2.79149
2.66578
2.54072
2.41601
2.29144
2.16687
2.04225
1.91755
1.79279
1.66798
1.54318
1.41843
1.29376
1.16923
1.04486
0.920696
0.796761
0.673119
0.549732
0.426782
0.30379
0.182185
0.0562485
5.45521
4.54424
4.29267
4.0924
3.91275
3.74778
3.59494
3.45057
3.31206
3.17785
3.04686
2.91821
2.79123
2.66535
2.54018
2.41539
2.29078
2.1662
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04457
0.920446
0.79655
0.672937
0.549574
0.426593
0.303794
0.181671
0.0604912
5.51256
4.53006
4.28327
4.0885
3.90844
3.74525
3.59355
3.44976
3.31167
3.17781
3.04714
2.91879
2.79206
2.66639
2.54134
2.41661
2.292
2.16738
2.0427
1.91795
1.79313
1.66827
1.54343
1.41864
1.29394
1.16938
1.045
0.920822
0.796867
0.673199
0.549755
0.426785
0.303595
0.182333
0.0541732
5.51378
4.52942
4.28317
4.08842
3.90844
3.74527
3.59358
3.4498
3.31172
3.17787
3.0472
2.91885
2.79211
2.66643
2.54138
2.41665
2.29203
2.16741
2.04273
1.91797
1.79315
1.6683
1.54345
1.41866
1.29396
1.1694
1.04501
0.920834
0.796885
0.673234
0.549832
0.426891
0.303765
0.18247
0.0542087
5.25231
4.64044
4.31255
4.10467
3.92168
3.75369
3.59934
3.45424
3.31524
3.18065
3.04936
2.92047
2.79328
2.66723
2.5419
2.41697
2.29224
2.16757
2.04287
1.91813
1.79334
1.66853
1.54373
1.41898
1.29432
1.16979
1.04544
0.921272
0.797333
0.673664
0.550265
0.427259
0.304547
0.182376
0.0628049
5.33219
4.59389
4.30281
4.09906
3.91744
3.75116
3.59763
3.45284
3.314
3.17951
3.04829
2.91945
2.79231
2.6663
2.54102
2.41614
2.29145
2.16682
2.04216
1.91745
1.7927
1.66791
1.54314
1.41841
1.29378
1.16927
1.04494
0.920793
0.796874
0.673223
0.549835
0.426839
0.304067
0.181941
0.0612666
5.54502
4.51754
4.28107
4.08646
3.90737
3.74428
3.59267
3.44901
3.31104
3.17727
3.04667
2.91837
2.79168
2.66604
2.54103
2.41635
2.29178
2.1672
2.04256
1.91783
1.79303
1.6682
1.54337
1.41859
1.2939
1.16935
1.04497
0.920798
0.796844
0.673173
0.54973
0.426749
0.303623
0.182231
0.0551217
5.38628
4.56443
4.29794
4.09538
3.91494
3.74933
3.59608
3.45147
3.31278
3.17843
3.04732
2.91858
2.79152
2.66559
2.54037
2.41554
2.2909
2.16631
2.04169
1.91702
1.79229
1.66753
1.54278
1.41808
1.29346
1.16897
1.04465
0.920524
0.796628
0.673001
0.54963
0.426634
0.303852
0.181648
0.0613494
5.46852
4.54128
4.28882
4.0906
3.9111
3.74667
3.5942
3.45005
3.3117
3.17761
3.04671
2.91815
2.79123
2.66541
2.54027
2.41551
2.29091
2.16635
2.04174
1.91707
1.79234
1.66758
1.54282
1.41811
1.29348
1.16898
1.04465
0.920516
0.796601
0.672959
0.549561
0.426573
0.303678
0.181798
0.0586907
5.32082
4.59861
4.30417
4.09955
3.91797
3.75154
3.5979
3.45308
3.31422
3.17972
3.04847
2.91961
2.79244
2.66642
2.54112
2.41623
2.29153
2.16689
2.04223
1.91752
1.79276
1.66798
1.5432
1.41848
1.29385
1.16934
1.045
0.92086
0.796941
0.673291
0.549907
0.426912
0.30417
0.181982
0.0619529
5.17022
4.68691
4.324
4.11007
3.92694
3.75682
3.60127
3.4557
3.31639
3.18158
3.05014
2.92115
2.79389
2.66781
2.54246
2.41754
2.29283
2.16818
2.04352
1.91881
1.79405
1.66927
1.5445
1.41978
1.29515
1.17065
1.04632
0.922184
0.798272
0.674624
0.551251
0.428253
0.305614
0.183555
0.0655779
5.36356
4.58258
4.29829
4.09667
3.91557
3.74986
3.59666
3.45206
3.31335
3.17898
3.04785
2.91909
2.79202
2.66606
2.54082
2.41598
2.29131
2.1667
2.04206
1.91736
1.7926
1.66782
1.54305
1.41833
1.29369
1.16919
1.04485
0.920708
0.796789
0.673141
0.549744
0.426747
0.303917
0.181894
0.0600896
5.20011
4.67099
4.31938
4.10813
3.92492
3.75559
3.60052
3.45514
3.31595
3.18122
3.04985
2.92091
2.79369
2.66764
2.54231
2.4174
2.2927
2.16806
2.04339
1.91868
1.79392
1.66913
1.54434
1.4196
1.29495
1.17042
1.04606
0.921886
0.79794
0.674261
0.550855
0.427834
0.305145
0.183008
0.064115
5.54405
4.5165
4.28107
4.0866
3.90716
3.74427
3.59276
3.44913
3.31118
3.17746
3.04689
2.91864
2.792
2.66639
2.54139
2.4167
2.29211
2.16751
2.04284
1.91809
1.79326
1.6684
1.54355
1.41875
1.29405
1.16948
1.0451
0.920919
0.796974
0.673296
0.549849
0.426848
0.303614
0.182373
0.0541954
5.54441
4.51584
4.28106
4.08666
3.90724
3.74433
3.59281
3.44917
3.3112
3.17746
3.04689
2.91863
2.79197
2.66636
2.54136
2.41666
2.29207
2.16747
2.0428
1.91804
1.79322
1.66836
1.54351
1.41872
1.29402
1.16945
1.04507
0.920882
0.796922
0.67325
0.549803
0.426836
0.303641
0.182404
0.0541986
5.54072
4.5175
4.28125
4.08678
3.90736
3.74437
3.59279
3.44913
3.31115
3.1774
3.04681
2.91854
2.79188
2.66626
2.54126
2.41658
2.292
2.16741
2.04274
1.918
1.79318
1.66833
1.54349
1.4187
1.294
1.16944
1.04506
0.920882
0.796938
0.673261
0.549817
0.426815
0.303605
0.182315
0.0544723
5.53992
4.51714
4.28119
4.08675
3.90739
3.74439
3.59282
3.44916
3.31118
3.17742
3.04683
2.91856
2.79189
2.66626
2.54125
2.41656
2.29198
2.16738
2.04272
1.91797
1.79316
1.66831
1.54347
1.41868
1.29398
1.16942
1.04504
0.920856
0.796898
0.673226
0.549781
0.426808
0.303635
0.182348
0.054501
5.47523
4.54006
4.28852
4.09041
3.91108
3.74667
3.5942
3.45005
3.31169
3.1776
3.04669
2.91812
2.79119
2.66536
2.54022
2.41546
2.29086
2.16629
2.04168
1.91701
1.79229
1.66753
1.54277
1.41806
1.29344
1.16894
1.04461
0.920479
0.796568
0.672928
0.549535
0.426548
0.303667
0.181759
0.0589172
5.40625
4.57091
4.29255
4.09429
3.91328
3.74843
3.5958
3.45148
3.31297
3.17875
3.04774
2.91909
2.7921
2.66622
2.54104
2.41622
2.29158
2.16696
2.04231
1.91759
1.79281
1.66801
1.54321
1.41846
1.2938
1.16928
1.04492
0.920768
0.796837
0.673181
0.549765
0.42677
0.303796
0.18204
0.0575304
5.39401
4.57114
4.29456
4.09483
3.91401
3.74883
3.59595
3.45151
3.31292
3.17864
3.04759
2.9189
2.79188
2.66598
2.54078
2.41597
2.29132
2.16672
2.04208
1.91739
1.79263
1.66785
1.54307
1.41834
1.2937
1.16919
1.04485
0.920705
0.796782
0.673132
0.549728
0.426733
0.303836
0.181943
0.058859
5.3904
4.56746
4.2959
4.09483
3.91431
3.74893
3.59587
3.45135
3.31272
3.17841
3.04734
2.91864
2.79161
2.66569
2.54049
2.41567
2.29103
2.16644
2.04181
1.91713
1.7924
1.66763
1.54287
1.41815
1.29353
1.16903
1.0447
0.92057
0.796659
0.67302
0.549631
0.42664
0.303814
0.18178
0.0601052
5.4649
4.54284
4.28812
4.09079
3.91085
3.74659
3.59425
3.45014
3.31182
3.17777
3.04691
2.91839
2.79152
2.66574
2.54063
2.41588
2.29129
2.16672
2.0421
1.91742
1.79267
1.66788
1.5431
1.41836
1.29371
1.16919
1.04484
0.920687
0.796757
0.673101
0.549683
0.426692
0.303705
0.182005
0.0572868
5.48619
4.53359
4.28844
4.09065
3.91116
3.74671
3.59422
3.45003
3.31166
3.17755
3.04665
2.91809
2.79118
2.66536
2.54023
2.41548
2.29088
2.16632
2.04172
1.91705
1.79232
1.66756
1.5428
1.41808
1.29346
1.16896
1.04462
0.920489
0.796584
0.672947
0.54956
0.426566
0.303648
0.181734
0.0586607
5.33173
4.59229
4.30305
4.09875
3.91735
3.75106
3.59748
3.45268
3.31384
3.17935
3.04813
2.91929
2.79215
2.66614
2.54086
2.41598
2.2913
2.16667
2.04202
1.91732
1.79257
1.66779
1.54303
1.41831
1.29368
1.16918
1.04485
0.920708
0.796795
0.673151
0.549771
0.42678
0.304036
0.181849
0.0617966
5.45406
4.54529
4.29057
4.09141
3.91185
3.74718
3.59455
3.45031
3.31188
3.17774
3.04679
2.91819
2.79123
2.66538
2.54022
2.41545
2.29084
2.16627
2.04166
1.91699
1.79227
1.66751
1.54275
1.41805
1.29343
1.16894
1.04461
0.92048
0.796573
0.672938
0.549551
0.426563
0.30371
0.181735
0.059501
5.51304
4.53168
4.28359
4.08869
3.90854
3.74544
3.5938
3.45002
3.31193
3.17807
3.04738
2.91902
2.79227
2.66657
2.5415
2.41675
2.29211
2.16748
2.04278
1.91801
1.79318
1.66831
1.54346
1.41866
1.29396
1.1694
1.04502
0.920852
0.796917
0.673248
0.549804
0.426793
0.303513
0.182269
0.0538008
5.51313
4.53157
4.28357
4.08869
3.90854
3.74545
3.5938
3.45003
3.31194
3.17808
3.04739
2.91902
2.79227
2.66657
2.5415
2.41675
2.29211
2.16748
2.04278
1.91801
1.79317
1.66831
1.54346
1.41866
1.29396
1.1694
1.04502
0.920838
0.796882
0.673212
0.54976
0.426784
0.303561
0.182349
0.0538348
5.56411
4.5091
4.2798
4.0857
3.90656
3.74385
3.59247
3.44893
3.31105
3.17738
3.04687
2.91866
2.79205
2.66647
2.54149
2.4168
2.29222
2.16761
2.04293
1.91817
1.79334
1.66847
1.54361
1.4188
1.2941
1.16953
1.04513
0.920939
0.796973
0.6733
0.549856
0.4269
0.3037
0.182498
0.0540492
5.56706
4.5086
4.27964
4.08557
3.90646
3.74379
3.59242
3.44889
3.31102
3.17736
3.04686
2.91865
2.79205
2.66647
2.54149
2.41681
2.29222
2.16762
2.04294
1.91818
1.79334
1.66847
1.54361
1.41881
1.2941
1.16953
1.04514
0.920957
0.797008
0.673327
0.549881
0.426887
0.303648
0.182461
0.0540471
5.24185
4.64621
4.31384
4.10535
3.9223
3.75407
3.59959
3.45445
3.31541
3.18081
3.04952
2.92064
2.79346
2.66742
2.5421
2.41718
2.29246
2.16779
2.0431
1.91836
1.79357
1.66875
1.54395
1.41919
1.29453
1.17
1.04564
0.921471
0.797527
0.673853
0.55045
0.427438
0.30473
0.182553
0.0631609
5.58236
4.50664
4.27882
4.08506
3.90619
3.74359
3.59227
3.44879
3.31095
3.1773
3.04681
2.91862
2.79202
2.66644
2.54147
2.41679
2.29221
2.16761
2.04294
1.91817
1.79334
1.66848
1.54362
1.41881
1.2941
1.16953
1.04514
0.920957
0.797005
0.673322
0.549875
0.426882
0.303663
0.182451
0.0542062
5.41598
4.56756
4.29151
4.09372
3.91278
3.74812
3.59562
3.45137
3.3129
3.17872
3.04774
2.91912
2.79215
2.66629
2.54111
2.4163
2.29165
2.16703
2.04237
1.91764
1.79286
1.66804
1.54324
1.41848
1.29382
1.16929
1.04493
0.920775
0.796842
0.673184
0.549765
0.426772
0.303772
0.182067
0.0571122
5.56791
4.51758
4.28104
4.08641
3.90733
3.74426
3.59266
3.449
3.31101
3.17725
3.04664
2.91834
2.79165
2.66602
2.54101
2.41634
2.29177
2.16721
2.04257
1.91785
1.79305
1.66822
1.54339
1.41861
1.29393
1.16938
1.045
0.920827
0.796885
0.673209
0.54977
0.426764
0.303613
0.182189
0.0552005
5.45678
4.55049
4.29458
4.09303
3.91339
3.74824
3.59526
3.45083
3.31227
3.17801
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41798
1.29337
1.16888
1.04456
0.920441
0.796557
0.672943
0.549582
0.42658
0.303775
0.181528
0.0613361
5.52425
4.52308
4.28246
4.08742
3.90802
3.74472
3.59298
3.44923
3.31118
3.17736
3.04671
2.91838
2.79166
2.666
2.54097
2.41628
2.2917
2.16712
2.04248
1.91776
1.79297
1.66814
1.54332
1.41854
1.29386
1.16932
1.04494
0.920769
0.79682
0.673151
0.549712
0.42673
0.303613
0.182198
0.0552657
5.35127
4.58686
4.29983
4.09733
3.91613
3.75023
3.59691
3.45226
3.31352
3.17912
3.04797
2.91918
2.79208
2.66611
2.54086
2.416
2.29133
2.16671
2.04206
1.91736
1.79261
1.66783
1.54306
1.41833
1.2937
1.1692
1.04486
0.920723
0.796805
0.673159
0.549767
0.42677
0.303971
0.181891
0.0606955
5.56051
4.51044
4.28012
4.08591
3.90668
3.74394
3.59253
3.44898
3.31108
3.1774
3.04688
2.91866
2.79205
2.66646
2.54147
2.41679
2.2922
2.16759
2.04291
1.91815
1.79332
1.66845
1.54359
1.41879
1.29408
1.16951
1.04512
0.920928
0.796963
0.67329
0.549846
0.426889
0.303687
0.182487
0.0540284
5.56189
4.51011
4.28002
4.08583
3.90663
3.74391
3.59251
3.44896
3.31107
3.17739
3.04687
2.91866
2.79204
2.66646
2.54147
2.41679
2.2922
2.1676
2.04292
1.91815
1.79332
1.66845
1.5436
1.41879
1.29408
1.16952
1.04513
0.920945
0.796997
0.673319
0.549873
0.426877
0.303632
0.182442
0.0540204
5.20727
4.66941
4.31778
4.10763
3.92445
3.75527
3.60032
3.45499
3.31584
3.18115
3.04979
2.92087
2.79367
2.66762
2.5423
2.4174
2.2927
2.16806
2.04339
1.91868
1.79392
1.66913
1.54435
1.41961
1.29496
1.17044
1.04608
0.921913
0.797968
0.674288
0.550876
0.427846
0.305124
0.182987
0.0633112
5.52411
4.5226
4.28237
4.08747
3.908
3.74472
3.59298
3.44922
3.31116
3.17734
3.04668
2.91835
2.79163
2.66597
2.54095
2.41626
2.29169
2.16711
2.04248
1.91775
1.79296
1.66814
1.54331
1.41854
1.29386
1.16931
1.04494
0.920771
0.796834
0.673163
0.549728
0.426723
0.303575
0.182145
0.0552099
5.4404
4.5504
4.29045
4.09199
3.91191
3.74729
3.59472
3.45047
3.31205
3.17792
3.04698
2.9184
2.79146
2.66563
2.54049
2.41572
2.29111
2.16654
2.04193
1.91724
1.79251
1.66773
1.54296
1.41824
1.29361
1.1691
1.04476
0.920616
0.796695
0.673047
0.549642
0.426651
0.303728
0.181898
0.0583153
5.43734
4.54978
4.29308
4.0925
3.91285
3.74787
3.59502
3.45065
3.31213
3.17792
3.04692
2.91826
2.79127
2.66539
2.54021
2.41541
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54272
1.41801
1.2934
1.16891
1.04459
0.920467
0.79657
0.672945
0.549571
0.42658
0.303771
0.181648
0.0606029
5.58151
4.51442
4.28022
4.08588
3.90689
3.744
3.5925
3.4489
3.31097
3.17724
3.04667
2.91841
2.79175
2.66614
2.54114
2.41647
2.2919
2.16732
2.04267
1.91794
1.79313
1.66829
1.54345
1.41866
1.29397
1.16941
1.04503
0.920853
0.796908
0.67323
0.549788
0.426784
0.303608
0.182252
0.0548359
5.58154
4.51375
4.28009
4.08574
3.90685
3.74397
3.59249
3.44891
3.31099
3.17728
3.04672
2.91846
2.7918
2.66618
2.54119
2.41651
2.29194
2.16735
2.0427
1.91796
1.79315
1.66831
1.54347
1.41868
1.29398
1.16942
1.04504
0.920857
0.796898
0.673223
0.549776
0.426797
0.303652
0.182305
0.0548681
5.43298
4.54879
4.29277
4.09324
3.91294
3.74796
3.59514
3.45074
3.31221
3.178
3.04701
2.91838
2.79141
2.66556
2.5404
2.41562
2.29101
2.16643
2.04182
1.91715
1.79241
1.66765
1.54288
1.41817
1.29354
1.16904
1.04471
0.920569
0.796661
0.67302
0.54963
0.426632
0.303735
0.181791
0.0591018
5.31754
4.60281
4.30394
4.09967
3.91801
3.75155
3.59795
3.45316
3.31432
3.17983
3.04858
2.91972
2.79255
2.66652
2.54121
2.41632
2.29162
2.16697
2.04231
1.91759
1.79283
1.66804
1.54326
1.41853
1.29389
1.16938
1.04504
0.920896
0.796972
0.673319
0.549929
0.426932
0.304176
0.182024
0.0616712
5.34159
4.59057
4.30131
4.09808
3.9168
3.75069
3.59724
3.45251
3.31371
3.17926
3.04807
2.91925
2.79213
2.66614
2.54087
2.416
2.29132
2.1667
2.04205
1.91735
1.79259
1.66782
1.54305
1.41833
1.2937
1.1692
1.04486
0.920722
0.796806
0.673161
0.549774
0.426778
0.304004
0.181874
0.0611827
5.38628
4.56751
4.29727
4.09529
3.91483
3.74929
3.59609
3.4515
3.31282
3.17848
3.04738
2.91865
2.79159
2.66566
2.54044
2.41562
2.29098
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.0447
0.920569
0.796665
0.673031
0.549651
0.426657
0.303866
0.181731
0.060913
5.37714
4.58429
4.29533
4.096
3.91456
3.74925
3.59643
3.45203
3.31346
3.17919
3.04812
2.91942
2.79238
2.66645
2.54122
2.41637
2.2917
2.16707
2.0424
1.91767
1.79289
1.66808
1.54327
1.41852
1.29386
1.16933
1.04498
0.920821
0.796889
0.673231
0.549817
0.426818
0.303881
0.182045
0.0581529
5.53024
4.52255
4.28217
4.08755
3.90779
3.74482
3.59323
3.44953
3.3115
3.17771
3.04709
2.91879
2.79211
2.66646
2.54144
2.41672
2.29211
2.1675
2.04282
1.91805
1.79322
1.66836
1.54351
1.41871
1.29401
1.16945
1.04506
0.920889
0.79695
0.673277
0.549831
0.426826
0.30356
0.182334
0.0539249
5.53128
4.52208
4.28207
4.08743
3.90771
3.74476
3.5932
3.44951
3.3115
3.17772
3.04711
2.91881
2.79213
2.66648
2.54145
2.41674
2.29213
2.16751
2.04283
1.91806
1.79323
1.66837
1.54352
1.41872
1.29402
1.16945
1.04507
0.920882
0.796923
0.673251
0.549801
0.42683
0.303615
0.182407
0.053949
5.22729
4.65648
4.31525
4.10627
3.92315
3.75452
3.59985
3.45464
3.31556
3.18093
3.04962
2.92074
2.79356
2.66755
2.54225
2.41737
2.29268
2.16803
2.04336
1.91863
1.79384
1.66902
1.54421
1.41946
1.29479
1.17025
1.04589
0.921715
0.797767
0.674087
0.550677
0.427655
0.304935
0.182779
0.0631843
5.29311
4.6177
4.30696
4.10148
3.91926
3.75225
3.59839
3.4535
3.3146
3.18006
3.04879
2.91991
2.79272
2.66668
2.54135
2.41644
2.29173
2.16707
2.04239
1.91766
1.79289
1.66809
1.5433
1.41857
1.29392
1.16941
1.04507
0.920916
0.79699
0.673335
0.549944
0.426947
0.30421
0.182053
0.0619493
5.45702
4.55032
4.28745
4.09166
3.91101
3.74695
3.59475
3.45064
3.31229
3.17822
3.04735
2.91883
2.79197
2.66618
2.54106
2.4163
2.29168
2.16707
2.04241
1.91768
1.79289
1.66806
1.54325
1.41848
1.29381
1.16927
1.04491
0.920749
0.79682
0.673156
0.54973
0.426724
0.303615
0.182076
0.0557307
5.49857
4.53299
4.28408
4.08882
3.90892
3.74542
3.59355
3.44969
3.31155
3.17766
3.04695
2.91857
2.79181
2.66612
2.54106
2.41634
2.29175
2.16716
2.0425
1.91777
1.79298
1.66814
1.54332
1.41854
1.29386
1.16932
1.04494
0.920773
0.796826
0.67316
0.549722
0.426741
0.303611
0.182209
0.0551026
5.48846
4.53412
4.28579
4.08914
3.90963
3.7457
3.59357
3.4496
3.31139
3.17742
3.04663
2.91816
2.79133
2.66558
2.54049
2.41576
2.29118
2.16662
2.04201
1.91732
1.79257
1.66778
1.543
1.41826
1.29362
1.1691
1.04475
0.920594
0.796664
0.673008
0.549589
0.426602
0.303605
0.18194
0.0569715
5.39692
4.56471
4.2955
4.0953
3.91445
3.74913
3.59612
3.45158
3.31293
3.17862
3.04754
2.91884
2.79181
2.66591
2.54071
2.41589
2.29126
2.16666
2.04203
1.91734
1.79259
1.66781
1.54304
1.41831
1.29368
1.16917
1.04483
0.920687
0.79677
0.673121
0.549723
0.426721
0.303835
0.181893
0.0592681
5.2703
4.63449
4.30904
4.10321
3.92047
3.7529
3.59883
3.45389
3.31498
3.18048
3.04926
2.92043
2.79328
2.66725
2.54194
2.41702
2.29229
2.16761
2.04291
1.91816
1.79336
1.66854
1.54373
1.41898
1.29432
1.16979
1.04543
0.921264
0.797322
0.673649
0.55024
0.427224
0.304457
0.182336
0.0617127
5.33218
4.60697
4.30074
4.09911
3.9169
3.75067
3.59739
3.45279
3.3141
3.17974
3.04862
2.91986
2.79276
2.66679
2.54151
2.41663
2.29193
2.16728
2.04259
1.91785
1.79306
1.66824
1.54343
1.41867
1.29401
1.16948
1.04512
0.920957
0.797019
0.673355
0.549942
0.426934
0.304056
0.182104
0.059228
5.4999
4.5324
4.28414
4.08901
3.90901
3.74548
3.59358
3.44968
3.31152
3.17761
3.0469
2.91851
2.79175
2.66606
2.54101
2.4163
2.29171
2.16713
2.04248
1.91775
1.79296
1.66813
1.54331
1.41853
1.29385
1.16931
1.04494
0.92077
0.796835
0.673167
0.549733
0.426729
0.303569
0.182149
0.0550901
5.40197
4.56176
4.29545
4.09434
3.91407
3.74876
3.59572
3.45122
3.3126
3.17831
3.04725
2.91855
2.79152
2.66561
2.54041
2.4156
2.29097
2.16638
2.04176
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.04469
0.920564
0.796658
0.673022
0.549638
0.426646
0.303832
0.181752
0.0604313
5.5055
4.5296
4.28378
4.08835
3.90869
3.7452
3.59334
3.4495
3.31139
3.17752
3.04682
2.91845
2.79169
2.66601
2.54096
2.41625
2.29167
2.16709
2.04245
1.91773
1.79295
1.66812
1.5433
1.41853
1.29386
1.16931
1.04494
0.920773
0.796827
0.67316
0.549723
0.426739
0.303634
0.182184
0.0554773
5.40915
4.55694
4.29631
4.09418
3.91414
3.74875
3.59563
3.45111
3.31249
3.17819
3.04712
2.91841
2.79138
2.66546
2.54025
2.41544
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54273
1.41803
1.29341
1.16893
1.04461
0.920484
0.796593
0.672973
0.549606
0.426607
0.303818
0.181586
0.0613929
5.3428
4.61188
4.29856
4.09915
3.91637
3.75028
3.5972
3.45271
3.31412
3.17986
3.04883
2.92017
2.79316
2.66726
2.54204
2.41718
2.29249
2.16781
2.0431
1.91831
1.79347
1.66861
1.54375
1.41896
1.29426
1.1697
1.04531
0.921128
0.797175
0.6735
0.550071
0.427059
0.304089
0.182261
0.0574593
5.33954
4.58812
4.30244
4.09848
3.91716
3.75096
3.59741
3.45261
3.31376
3.17927
3.04805
2.91922
2.79209
2.66609
2.54081
2.41595
2.29127
2.16665
2.04201
1.91731
1.79256
1.66779
1.54302
1.41831
1.29368
1.16918
1.04485
0.920712
0.7968
0.673157
0.549776
0.426784
0.304029
0.181849
0.0616251
5.55792
4.52208
4.28216
4.08694
3.90791
3.74461
3.59287
3.44914
3.3111
3.17729
3.04663
2.91828
2.79155
2.66588
2.54085
2.41616
2.2916
2.16703
2.04241
1.9177
1.79292
1.66811
1.54329
1.41853
1.29385
1.16931
1.04494
0.920769
0.796821
0.673151
0.549713
0.426725
0.303647
0.182148
0.0558309
5.31662
4.60492
4.30386
4.09976
3.91799
3.75149
3.5979
3.45312
3.31428
3.1798
3.04856
2.91971
2.79255
2.66652
2.54122
2.41632
2.29162
2.16697
2.04231
1.91759
1.79282
1.66803
1.54325
1.41852
1.29388
1.16937
1.04503
0.92088
0.796956
0.673302
0.549909
0.42691
0.304144
0.182013
0.0614245
5.21735
4.6665
4.31593
4.10708
3.92382
3.75484
3.60006
3.4548
3.3157
3.18104
3.04972
2.92082
2.79363
2.6676
2.54229
2.4174
2.2927
2.16805
2.04339
1.91868
1.79392
1.66913
1.54435
1.41962
1.29498
1.17046
1.04611
0.92195
0.798007
0.674326
0.550908
0.427869
0.305108
0.182972
0.0623395
5.38253
4.56661
4.29839
4.09564
3.91518
3.74952
3.59624
3.4516
3.31289
3.17852
3.0474
2.91865
2.79158
2.66564
2.54041
2.41558
2.29094
2.16635
2.04173
1.91705
1.79232
1.66757
1.54281
1.41811
1.29349
1.169
1.04468
0.920554
0.796656
0.673028
0.549656
0.426661
0.303887
0.181671
0.0614848
5.33888
4.59523
4.30088
4.09828
3.91676
3.75068
3.59733
3.45266
3.31391
3.1795
3.04833
2.91953
2.79241
2.66642
2.54115
2.41628
2.29159
2.16695
2.04229
1.91758
1.79281
1.66802
1.54324
1.41851
1.29386
1.16935
1.04501
0.920858
0.796933
0.673278
0.549878
0.426876
0.304063
0.182005
0.0605459
5.55136
4.51671
4.2807
4.08626
3.90731
3.74424
3.59264
3.44898
3.31101
3.17724
3.04663
2.91833
2.79164
2.66599
2.54098
2.4163
2.29173
2.16716
2.04251
1.91779
1.793
1.66817
1.54334
1.41856
1.29388
1.16933
1.04495
0.920779
0.796826
0.673155
0.549713
0.42673
0.303615
0.182201
0.0552616
5.45586
4.55137
4.29436
4.09284
3.91325
3.74815
3.5952
3.45078
3.31223
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04456
0.920438
0.79655
0.672934
0.549568
0.426568
0.303769
0.181545
0.061257
5.31976
4.6023
4.30395
4.09997
3.918
3.7515
3.59791
3.45311
3.31427
3.17979
3.04856
2.91972
2.79257
2.66656
2.54126
2.41637
2.29167
2.16703
2.04236
1.91764
1.79287
1.66808
1.54329
1.41856
1.29392
1.16941
1.04506
0.920909
0.796983
0.673324
0.549928
0.426927
0.304147
0.182041
0.0611685
5.44091
4.56849
4.28838
4.09304
3.91142
3.74734
3.59531
3.45136
3.31315
3.17917
3.04836
2.91985
2.79295
2.66711
2.5419
2.41704
2.29232
2.16761
2.04286
1.91805
1.79319
1.66831
1.54345
1.41864
1.29394
1.16938
1.045
0.920823
0.796874
0.673208
0.549769
0.426781
0.303637
0.182188
0.0547148
5.27625
4.63867
4.30743
4.10321
3.92013
3.75259
3.59866
3.45377
3.3149
3.18043
3.04925
2.92045
2.79334
2.66736
2.54209
2.41721
2.29251
2.16785
2.04315
1.9184
1.7936
1.66877
1.54394
1.41917
1.29448
1.16993
1.04555
0.921364
0.797407
0.673722
0.550296
0.427268
0.30443
0.182384
0.0600894
5.40453
4.56006
4.29587
4.09424
3.91408
3.74873
3.59565
3.45114
3.31252
3.17823
3.04716
2.91847
2.79144
2.66553
2.54032
2.41551
2.29088
2.1663
2.04168
1.91701
1.79228
1.66753
1.54278
1.41807
1.29346
1.16897
1.04465
0.920521
0.796621
0.672992
0.549615
0.426622
0.303827
0.18168
0.0608873
5.42326
4.55501
4.29291
4.09306
3.91296
3.74798
3.59516
3.45079
3.31227
3.17805
3.04705
2.91841
2.79142
2.66555
2.54038
2.41559
2.29097
2.16639
2.04177
1.9171
1.79237
1.66761
1.54285
1.41813
1.29351
1.16902
1.04469
0.920552
0.796641
0.673002
0.54961
0.42662
0.303764
0.18179
0.0595414
5.27934
4.62869
4.30834
4.10303
3.9201
3.7527
3.59875
3.45382
3.31494
3.18044
3.04923
2.9204
2.79325
2.66722
2.54191
2.417
2.29227
2.16759
2.04289
1.91814
1.79335
1.66853
1.54372
1.41896
1.29429
1.16976
1.0454
0.921233
0.797291
0.673616
0.550205
0.42719
0.304407
0.182311
0.0612717
5.44355
4.54493
4.29215
4.0927
3.91261
3.7477
3.59492
3.45056
3.31206
3.17786
3.04689
2.91827
2.79131
2.66545
2.54029
2.41552
2.29091
2.16634
2.04173
1.91706
1.79233
1.66757
1.54281
1.41809
1.29347
1.16897
1.04464
0.920509
0.796605
0.672969
0.549584
0.426588
0.303699
0.18173
0.0592439
5.19253
4.67734
4.32
4.10862
3.92543
3.75586
3.60068
3.45527
3.31605
3.18132
3.04993
2.92099
2.79377
2.66771
2.54238
2.41748
2.29277
2.16813
2.04346
1.91875
1.79399
1.66921
1.54443
1.41971
1.29507
1.17057
1.04623
0.922093
0.798173
0.674515
0.551124
0.428108
0.305409
0.183291
0.0638825
5.46312
4.54243
4.28894
4.09077
3.91112
3.74669
3.59423
3.45008
3.31172
3.17764
3.04674
2.91819
2.79127
2.66546
2.54033
2.41557
2.29098
2.16641
2.0418
1.91713
1.7924
1.66763
1.54287
1.41815
1.29352
1.16902
1.04469
0.920548
0.79663
0.672985
0.549583
0.426594
0.303683
0.181834
0.0584389
5.5604
4.51248
4.28017
4.08596
3.90685
3.74401
3.59254
3.44896
3.31104
3.17734
3.04679
2.91855
2.79191
2.66631
2.54133
2.41665
2.29208
2.16749
2.04283
1.91808
1.79326
1.66841
1.54356
1.41877
1.29406
1.1695
1.04512
0.920935
0.796987
0.673306
0.549859
0.426857
0.303654
0.182366
0.0545392
5.43199
4.54836
4.29409
4.09312
3.91328
3.74813
3.59518
3.45075
3.3122
3.17795
3.04693
2.91826
2.79125
2.66536
2.54017
2.41537
2.29075
2.16617
2.04157
1.9169
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.920424
0.796536
0.672918
0.549553
0.426555
0.303731
0.181557
0.0607677
5.58015
4.50852
4.27905
4.08527
3.9064
3.74372
3.59235
3.44883
3.31096
3.17729
3.04677
2.91856
2.79194
2.66636
2.54138
2.4167
2.29213
2.16754
2.04287
1.91811
1.79329
1.66843
1.54358
1.41878
1.29407
1.16951
1.04512
0.920936
0.796986
0.673303
0.549856
0.426858
0.303652
0.182393
0.0544074
5.4796
4.54267
4.28544
4.09
3.90967
3.74601
3.59406
3.45013
3.31192
3.17797
3.0472
2.91877
2.79197
2.66624
2.54115
2.4164
2.29179
2.16718
2.04251
1.91777
1.79297
1.66814
1.54331
1.41853
1.29385
1.16931
1.04493
0.920766
0.796821
0.673158
0.549721
0.42674
0.303606
0.182197
0.0550192
5.4075
4.57462
4.29228
4.09501
3.9134
3.74858
3.59605
3.45179
3.31332
3.17913
3.04815
2.91951
2.79253
2.66664
2.54144
2.4166
2.29192
2.16727
2.04258
1.91783
1.79302
1.66818
1.54336
1.41859
1.29391
1.16937
1.04501
0.920847
0.796916
0.673251
0.549828
0.426818
0.303771
0.182096
0.0566091
5.34315
4.61048
4.29856
4.09949
3.91653
3.75038
3.59728
3.45275
3.31413
3.17985
3.04882
2.92015
2.79314
2.66724
2.54203
2.41718
2.29249
2.16782
2.04311
1.91833
1.79349
1.66863
1.54377
1.41897
1.29427
1.16971
1.04532
0.921141
0.797191
0.673509
0.550077
0.427052
0.30407
0.182241
0.0574209
5.3936
4.56178
4.29751
4.09521
3.91478
3.74921
3.596
3.4514
3.31272
3.17838
3.04728
2.91856
2.79151
2.66558
2.54036
2.41554
2.29091
2.16632
2.04171
1.91703
1.79231
1.66755
1.5428
1.41809
1.29348
1.16899
1.04466
0.920537
0.796641
0.673014
0.549643
0.426645
0.303851
0.181661
0.0611899
5.41515
4.55419
4.29522
4.09417
3.91386
3.74856
3.59552
3.45102
3.31242
3.17815
3.04711
2.91843
2.79142
2.66553
2.54034
2.41554
2.29092
2.16634
2.04173
1.91706
1.79233
1.66757
1.54282
1.41811
1.29349
1.169
1.04467
0.920547
0.796647
0.673016
0.549639
0.426642
0.303807
0.18171
0.0603521
5.40175
4.56619
4.29421
4.09495
3.91394
3.7488
3.59595
3.45149
3.3129
3.17862
3.04758
2.91891
2.7919
2.66602
2.54083
2.41602
2.29138
2.16678
2.04214
1.91744
1.79268
1.66789
1.5431
1.41836
1.29372
1.1692
1.04485
0.920706
0.796785
0.67313
0.549723
0.426719
0.303783
0.181938
0.0583608
5.41072
4.56064
4.29367
4.09375
3.91339
3.74831
3.59544
3.45103
3.31248
3.17823
3.04721
2.91855
2.79156
2.66568
2.54049
2.41569
2.29107
2.16649
2.04187
1.91718
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04474
0.920603
0.796689
0.673046
0.54965
0.426658
0.303793
0.181842
0.0593802
5.16087
4.68988
4.3261
4.11083
3.92759
3.75726
3.60155
3.4559
3.31655
3.1817
3.05023
2.92123
2.79396
2.66786
2.54251
2.41758
2.29287
2.16822
2.04355
1.91884
1.79409
1.66931
1.54454
1.41983
1.2952
1.1707
1.04637
0.922235
0.798322
0.674673
0.551299
0.4283
0.305677
0.183633
0.0665293
5.57173
4.50736
4.27922
4.0853
3.90631
3.74367
3.59233
3.44882
3.31096
3.17731
3.04681
2.91862
2.79201
2.66644
2.54146
2.41678
2.2922
2.1676
2.04292
1.91816
1.79332
1.66846
1.5436
1.41879
1.29409
1.16952
1.04513
0.920943
0.796993
0.673312
0.549866
0.426874
0.303645
0.182453
0.0541001
5.57428
4.50612
4.27894
4.08515
3.90624
3.74363
3.59232
3.44883
3.31099
3.17734
3.04685
2.91866
2.79206
2.66648
2.54151
2.41683
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16954
1.04514
0.920949
0.796982
0.673307
0.549864
0.426909
0.303717
0.182506
0.0541151
5.38659
4.57677
4.29488
4.09534
3.91426
3.74905
3.5962
3.45177
3.31319
3.17891
3.04785
2.91915
2.79212
2.66621
2.54099
2.41616
2.29151
2.16689
2.04224
1.91753
1.79276
1.66796
1.54317
1.41843
1.29378
1.16927
1.04492
0.920764
0.796836
0.673182
0.549772
0.426775
0.303858
0.181995
0.0585226
5.46026
4.54359
4.28979
4.09108
3.91152
3.74696
3.5944
3.45019
3.3118
3.17768
3.04675
2.91817
2.79123
2.66539
2.54024
2.41547
2.29087
2.1663
2.04169
1.91702
1.7923
1.66754
1.54278
1.41807
1.29345
1.16895
1.04463
0.920492
0.796581
0.672943
0.54955
0.426563
0.30369
0.181762
0.0591053
5.22564
4.6575
4.31591
4.10677
3.92336
3.75465
3.59996
3.45471
3.31561
3.18096
3.04964
2.92074
2.79356
2.66752
2.54222
2.41732
2.29263
2.16798
2.04331
1.91858
1.7938
1.66898
1.54417
1.41941
1.29474
1.17021
1.04584
0.921662
0.797713
0.67403
0.550618
0.427595
0.30487
0.182719
0.0629452
5.37636
4.57801
4.29663
4.09596
3.91497
3.74951
3.59646
3.45192
3.31326
3.17892
3.04782
2.91908
2.79202
2.66609
2.54086
2.41603
2.29137
2.16676
2.04212
1.91742
1.79266
1.66788
1.5431
1.41837
1.29373
1.16922
1.04488
0.920737
0.796814
0.673164
0.549763
0.426765
0.3039
0.181939
0.0594888
5.36803
4.57295
4.2997
4.09663
3.91587
3.75003
3.59666
3.45195
3.31319
3.17878
3.04762
2.91884
2.79175
2.66579
2.54055
2.41571
2.29105
2.16645
2.04182
1.91714
1.79241
1.66764
1.54289
1.41818
1.29356
1.16907
1.04474
0.920611
0.796708
0.673075
0.5497
0.426704
0.303934
0.181735
0.0614816
5.30149
4.62441
4.30437
4.10189
3.91881
3.75181
3.59818
3.4534
3.31462
3.18022
3.04909
2.92034
2.79326
2.66731
2.54205
2.41717
2.29246
2.16779
2.04309
1.91833
1.79352
1.66868
1.54384
1.41906
1.29438
1.16983
1.04545
0.921271
0.797319
0.673635
0.55021
0.427183
0.304306
0.182324
0.0593701
5.45949
4.54579
4.2884
4.09114
3.91101
3.74674
3.5944
3.45028
3.31194
3.17788
3.04702
2.9185
2.79162
2.66584
2.54073
2.41598
2.29139
2.16681
2.04219
1.91749
1.79273
1.66794
1.54315
1.41841
1.29375
1.16923
1.04488
0.920722
0.796789
0.673132
0.549711
0.426721
0.303716
0.182044
0.0570437
5.45126
4.54728
4.29192
4.09191
3.91239
3.74756
3.5948
3.45049
3.31201
3.17783
3.04685
2.91821
2.79123
2.66536
2.54019
2.4154
2.29078
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04458
0.920455
0.796555
0.672928
0.549551
0.426563
0.303743
0.181662
0.0602772
5.24477
4.65448
4.31173
4.10537
3.92209
3.75376
3.5994
3.45431
3.31532
3.18075
3.04949
2.92065
2.7935
2.66749
2.5422
2.41732
2.29263
2.16799
2.04332
1.9186
1.79383
1.66903
1.54424
1.41949
1.29483
1.17029
1.04591
0.921731
0.797769
0.674075
0.550642
0.4276
0.304791
0.182687
0.0609721
5.25351
4.64277
4.3116
4.10444
3.92154
3.75355
3.59925
3.4542
3.31522
3.18066
3.04939
2.92053
2.79335
2.66731
2.54198
2.41705
2.2923
2.16761
2.0429
1.91815
1.79334
1.66852
1.54372
1.41896
1.2943
1.16978
1.04542
0.921257
0.797319
0.67365
0.550248
0.427237
0.304501
0.182361
0.0622969
5.29373
4.61964
4.30637
4.10144
3.91914
3.75213
3.59832
3.45346
3.3146
3.1801
3.04887
2.92001
2.79284
2.6668
2.54149
2.41657
2.29186
2.16719
2.04251
1.91778
1.793
1.6682
1.5434
1.41866
1.29402
1.1695
1.04515
0.920993
0.797062
0.673401
0.550002
0.426997
0.304234
0.182113
0.0615241
5.41122
4.55832
4.29426
4.09359
3.91345
3.7483
3.59537
3.45093
3.31237
3.17812
3.04709
2.91842
2.79141
2.66552
2.54033
2.41553
2.29091
2.16632
2.04171
1.91703
1.7923
1.66754
1.54279
1.41808
1.29346
1.16897
1.04465
0.920516
0.79661
0.672975
0.549591
0.426601
0.303777
0.181729
0.06014
5.53495
4.52221
4.28225
4.08713
3.90807
3.74471
3.59293
3.44918
3.31113
3.17729
3.04662
2.91826
2.79152
2.66584
2.54081
2.41611
2.29154
2.16698
2.04235
1.91765
1.79287
1.66806
1.54325
1.41849
1.29382
1.16928
1.04491
0.920743
0.796797
0.673129
0.549693
0.426706
0.303634
0.182122
0.0559126
5.48814
4.53994
4.28498
4.0898
3.90952
3.74599
3.5941
3.45019
3.312
3.17806
3.04731
2.91888
2.79209
2.66636
2.54127
2.41652
2.29189
2.16728
2.0426
1.91785
1.79304
1.6682
1.54336
1.41858
1.2939
1.16935
1.04497
0.920803
0.796856
0.673191
0.549751
0.426771
0.303618
0.182246
0.0548036
5.48897
4.53567
4.28508
4.08926
3.90938
3.74569
3.59369
3.44977
3.31159
3.17765
3.04691
2.91849
2.7917
2.66598
2.54091
2.41619
2.2916
2.16702
2.04238
1.91767
1.79288
1.66807
1.54325
1.41849
1.29382
1.16928
1.04491
0.920748
0.796805
0.673141
0.549708
0.426723
0.303636
0.182142
0.0557299
5.48371
4.53696
4.28575
4.0895
3.90968
3.74584
3.59377
3.44981
3.3116
3.17764
3.04687
2.91842
2.79161
2.66588
2.54081
2.41608
2.2915
2.16692
2.0423
1.91759
1.79282
1.66801
1.54321
1.41846
1.29379
1.16926
1.0449
0.920735
0.796796
0.673133
0.549704
0.426716
0.30366
0.1821
0.0562185
5.37596
4.56921
4.29889
4.09599
3.91541
3.74968
3.59636
3.4517
3.31297
3.17859
3.04745
2.9187
2.79162
2.66567
2.54044
2.41561
2.29096
2.16636
2.04174
1.91706
1.79233
1.66757
1.54282
1.41811
1.2935
1.16901
1.04468
0.920554
0.796655
0.673025
0.549653
0.426658
0.303888
0.181678
0.0614908
5.4169
4.56817
4.29096
4.09356
3.91251
3.74794
3.59551
3.45131
3.31289
3.17873
3.04777
2.91916
2.7922
2.66635
2.54117
2.41636
2.2917
2.16707
2.0424
1.91767
1.79287
1.66805
1.54324
1.41848
1.29381
1.16928
1.04492
0.920758
0.796823
0.673165
0.549743
0.426752
0.303728
0.182068
0.0566659
5.51948
4.52737
4.28284
4.08821
3.90828
3.74522
3.59357
3.44981
3.31173
3.17789
3.04722
2.91888
2.79215
2.66648
2.54142
2.41669
2.29207
2.16745
2.04276
1.918
1.79317
1.66831
1.54346
1.41867
1.29397
1.16941
1.04503
0.920846
0.796891
0.673221
0.549771
0.426796
0.303582
0.182357
0.0539651
5.4433
4.56699
4.2885
4.09335
3.91171
3.74757
3.59548
3.45145
3.31316
3.17911
3.04823
2.91967
2.79274
2.66689
2.54169
2.41684
2.29215
2.16748
2.04276
1.91798
1.79314
1.66828
1.54343
1.41864
1.29395
1.1694
1.04502
0.920856
0.796921
0.673254
0.549818
0.426806
0.303634
0.182158
0.0548442
5.36078
4.57676
4.30037
4.09707
3.91626
3.75036
3.59694
3.45221
3.31342
3.17898
3.04779
2.919
2.79189
2.66591
2.54066
2.41581
2.29115
2.16654
2.04191
1.91722
1.79248
1.66772
1.54296
1.41825
1.29363
1.16914
1.04481
0.920675
0.796769
0.673132
0.549755
0.426761
0.303998
0.181794
0.0616172
5.45648
4.54496
4.2887
4.09093
3.91101
3.74665
3.59425
3.45012
3.31178
3.17771
3.04683
2.91829
2.7914
2.6656
2.54048
2.41572
2.29113
2.16656
2.04195
1.91726
1.79252
1.66774
1.54297
1.41824
1.2936
1.16909
1.04474
0.920597
0.796672
0.673021
0.549611
0.426622
0.303667
0.181907
0.0577097
5.57696
4.50631
4.27872
4.08507
3.90626
3.74364
3.59231
3.44882
3.31097
3.17732
3.04681
2.91861
2.79199
2.66641
2.54143
2.41675
2.29217
2.16757
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29407
1.1695
1.04511
0.92092
0.796955
0.673279
0.549833
0.426871
0.303691
0.18245
0.0542829
5.43968
4.56732
4.28888
4.09315
3.91168
3.74752
3.5954
3.45138
3.3131
3.17906
3.04819
2.91964
2.79272
2.66688
2.54168
2.41684
2.29214
2.16746
2.04274
1.91795
1.79311
1.66825
1.54341
1.41862
1.29393
1.16938
1.045
0.920833
0.796888
0.673225
0.54979
0.426802
0.30368
0.182196
0.0550975
5.29927
4.61275
4.30637
4.10103
3.91899
3.75213
3.59833
3.45346
3.31457
3.18004
3.04878
2.9199
2.79271
2.66667
2.54134
2.41644
2.29172
2.16706
2.04239
1.91767
1.79289
1.6681
1.54332
1.41858
1.29394
1.16943
1.04509
0.920937
0.797012
0.673357
0.549968
0.426971
0.304237
0.182065
0.0620633
5.46194
4.55335
4.2871
4.09143
3.91063
3.74676
3.59473
3.45074
3.31248
3.17848
3.04766
2.91917
2.79231
2.66653
2.5414
2.41661
2.29196
2.16732
2.04264
1.91788
1.79306
1.66822
1.54339
1.41861
1.29392
1.16937
1.045
0.920832
0.796887
0.673223
0.549786
0.4268
0.303672
0.182227
0.0551394
5.5454
4.51944
4.28164
4.0869
3.90777
3.74454
3.59283
3.4491
3.31105
3.17723
3.04658
2.91823
2.79151
2.66585
2.54083
2.41614
2.29157
2.16701
2.04238
1.91767
1.79289
1.66807
1.54326
1.41849
1.29381
1.16927
1.0449
0.920734
0.796798
0.673129
0.549697
0.426692
0.303573
0.182083
0.0555617
5.36374
4.57838
4.29917
4.09669
3.91585
3.75006
3.59673
3.45205
3.31329
3.17888
3.04772
2.91895
2.79185
2.6659
2.54065
2.41581
2.29115
2.16654
2.04191
1.91722
1.79248
1.66771
1.54295
1.41824
1.29361
1.16912
1.04479
0.920651
0.796741
0.6731
0.549716
0.426722
0.303936
0.181812
0.0609933
5.54443
4.51764
4.28113
4.08656
3.90738
3.74428
3.59266
3.44897
3.31097
3.17719
3.04656
2.91825
2.79156
2.66592
2.54091
2.41622
2.29165
2.16708
2.04245
1.91772
1.79293
1.6681
1.54328
1.4185
1.29382
1.16927
1.0449
0.920735
0.796797
0.673126
0.549691
0.426689
0.303541
0.182125
0.0551244
5.38114
4.58581
4.29476
4.09602
3.9144
3.74916
3.5964
3.45204
3.31349
3.17923
3.04818
2.91949
2.79246
2.66654
2.54131
2.41647
2.29179
2.16715
2.04248
1.91774
1.79294
1.66812
1.54331
1.41855
1.29388
1.16935
1.04499
0.920832
0.796897
0.673238
0.549821
0.426822
0.303857
0.182067
0.0576324
5.44937
4.54473
4.2929
4.09259
3.91275
3.74776
3.59492
3.45055
3.31204
3.17783
3.04684
2.91821
2.79123
2.66536
2.54018
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54271
1.41801
1.29339
1.1689
1.04458
0.920454
0.796562
0.672939
0.549568
0.42657
0.30372
0.181616
0.0601747
5.46252
4.54371
4.29016
4.09113
3.91176
3.74714
3.59452
3.45028
3.31186
3.17772
3.04677
2.91816
2.7912
2.66535
2.54018
2.4154
2.29079
2.16622
2.04161
1.91695
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04458
0.920447
0.796543
0.672911
0.549527
0.426542
0.303699
0.181697
0.0596883
5.44621
4.54458
4.29151
4.09258
3.91241
3.7476
3.59488
3.45055
3.31207
3.17789
3.04694
2.91833
2.79139
2.66556
2.54041
2.41564
2.29104
2.16647
2.04186
1.91719
1.79245
1.66769
1.54292
1.4182
1.29357
1.16907
1.04473
0.920595
0.796685
0.673042
0.549648
0.426649
0.30373
0.181826
0.058752
5.41415
4.5557
4.29402
4.09399
3.91351
3.74837
3.59546
3.451
3.31242
3.17817
3.04714
2.91849
2.79149
2.66561
2.54043
2.41564
2.29102
2.16644
2.04182
1.91714
1.7924
1.66764
1.54287
1.41815
1.29353
1.16903
1.0447
0.92056
0.796652
0.67301
0.549621
0.426624
0.303746
0.181782
0.0593495
5.5373
4.52804
4.28424
4.08811
3.90891
3.74522
3.59323
3.44936
3.31122
3.17731
3.04656
2.91814
2.79134
2.66562
2.54055
2.41584
2.29127
2.16672
2.0421
1.91742
1.79267
1.66788
1.54309
1.41834
1.29369
1.16917
1.04481
0.920652
0.796716
0.673055
0.54963
0.426641
0.303627
0.181997
0.0567244
5.31725
4.61309
4.30273
4.10007
3.91773
3.75119
3.59772
3.45303
3.31429
3.17989
3.04874
2.91995
2.79283
2.66684
2.54156
2.41667
2.29196
2.1673
2.04261
1.91787
1.79308
1.66827
1.54346
1.41871
1.29405
1.16952
1.04516
0.920995
0.797057
0.673392
0.54998
0.42697
0.304122
0.182122
0.0598239
5.58445
4.51312
4.27997
4.08574
3.90679
3.74395
3.59248
3.4489
3.31098
3.17727
3.04671
2.91846
2.79181
2.6662
2.54121
2.41654
2.29197
2.16739
2.04273
1.91799
1.79318
1.66834
1.54349
1.4187
1.294
1.16945
1.04506
0.920884
0.796937
0.673258
0.549813
0.42681
0.303626
0.182292
0.0547428
5.58615
4.51266
4.27992
4.08561
3.90674
3.7439
3.59244
3.44888
3.31097
3.17727
3.04671
2.91846
2.79181
2.6662
2.5412
2.41652
2.29195
2.16736
2.0427
1.91796
1.79315
1.6683
1.54346
1.41867
1.29398
1.16942
1.04503
0.920847
0.796888
0.673213
0.549767
0.426791
0.303641
0.182312
0.0547696
5.46748
4.53971
4.29077
4.09169
3.91198
3.74726
3.59459
3.45031
3.31187
3.17772
3.04677
2.91818
2.79123
2.6654
2.54025
2.41548
2.29088
2.16632
2.04171
1.91705
1.79232
1.66757
1.54281
1.4181
1.29348
1.16898
1.04466
0.920525
0.796623
0.672991
0.54961
0.426614
0.303726
0.181731
0.0593733
5.3696
4.57622
4.29841
4.09636
3.91558
3.74989
3.59663
3.45199
3.31325
3.17886
3.04772
2.91896
2.79187
2.66592
2.54068
2.41584
2.29118
2.16658
2.04194
1.91725
1.79251
1.66774
1.54298
1.41826
1.29364
1.16914
1.04481
0.920672
0.796759
0.673117
0.549728
0.426733
0.303933
0.181835
0.0607336
5.53672
4.5201
4.28172
4.08685
3.9077
3.74448
3.59279
3.44908
3.31107
3.17727
3.04663
2.91831
2.79159
2.66594
2.54092
2.41623
2.29166
2.16709
2.04245
1.91773
1.79294
1.66812
1.5433
1.41853
1.29385
1.1693
1.04493
0.920756
0.796806
0.673137
0.549697
0.426714
0.303609
0.182173
0.0554088
5.53281
4.52217
4.28228
4.08713
3.90798
3.74466
3.59291
3.44916
3.31112
3.1773
3.04664
2.91829
2.79155
2.66588
2.54085
2.41616
2.29159
2.16703
2.0424
1.91769
1.79291
1.66809
1.54328
1.41851
1.29384
1.1693
1.04493
0.920755
0.796808
0.673139
0.549702
0.426715
0.303631
0.182147
0.0557302
5.18354
4.68015
4.32178
4.10919
3.92602
3.75625
3.60092
3.45544
3.31618
3.18141
3.05
2.92104
2.7938
2.66773
2.54239
2.41748
2.29277
2.16812
2.04346
1.91875
1.794
1.66923
1.54446
1.41974
1.29512
1.17062
1.04628
0.92214
0.798217
0.674556
0.551165
0.42815
0.305476
0.183367
0.0647716
5.46232
4.53952
4.29064
4.09174
3.91195
3.74724
3.59458
3.4503
3.31185
3.1777
3.04676
2.91817
2.79123
2.66539
2.54024
2.41547
2.29087
2.16631
2.0417
1.91704
1.79231
1.66755
1.54279
1.41808
1.29346
1.16896
1.04463
0.920498
0.796595
0.672961
0.549578
0.426583
0.303687
0.181723
0.0591445
5.4096
4.58294
4.29147
4.09549
3.91322
3.74845
3.59607
3.45192
3.31358
3.17951
3.04863
2.92008
2.79315
2.66728
2.54206
2.41719
2.29245
2.16774
2.04299
1.91817
1.79331
1.66843
1.54356
1.41876
1.29405
1.16949
1.04511
0.920937
0.796996
0.673324
0.54989
0.426874
0.303758
0.182172
0.0555038
5.47125
4.5368
4.28957
4.09121
3.91152
3.74695
3.59438
3.45015
3.31174
3.17762
3.0467
2.91812
2.7912
2.66538
2.54024
2.41548
2.29088
2.16632
2.04171
1.91705
1.79232
1.66755
1.54279
1.41808
1.29345
1.16896
1.04462
0.920491
0.796586
0.67295
0.549563
0.426569
0.303657
0.181731
0.0587993
5.44387
4.54869
4.29051
4.09183
3.91188
3.74723
3.59463
3.45039
3.31197
3.17784
3.0469
2.91831
2.79138
2.66554
2.5404
2.41563
2.29102
2.16645
2.04184
1.91717
1.79243
1.66766
1.5429
1.41818
1.29355
1.16905
1.04471
0.920572
0.796654
0.673009
0.549609
0.426619
0.303715
0.181848
0.0586155
5.48774
4.53913
4.29043
4.09142
3.91182
3.74715
3.5945
3.45024
3.31181
3.17766
3.04672
2.91813
2.79118
2.66534
2.54019
2.41542
2.29082
2.16626
2.04165
1.91699
1.79226
1.6675
1.54275
1.41804
1.29342
1.16893
1.0446
0.920471
0.796572
0.672942
0.549564
0.42657
0.303685
0.181683
0.0593607
5.50129
4.53083
4.28456
4.08863
3.90901
3.74535
3.59338
3.44949
3.31134
3.17744
3.04671
2.9183
2.79152
2.66581
2.54075
2.41604
2.29146
2.16689
2.04227
1.91756
1.79279
1.66798
1.54318
1.41842
1.29375
1.16922
1.04486
0.920692
0.796752
0.673089
0.549659
0.426673
0.303607
0.182081
0.0559867
5.41193
4.55513
4.29556
4.09424
3.91394
3.7486
3.59554
3.45103
3.31243
3.17814
3.04709
2.91841
2.79139
2.66549
2.5403
2.41549
2.29087
2.16629
2.04168
1.917
1.79228
1.66752
1.54277
1.41806
1.29344
1.16895
1.04463
0.920502
0.796604
0.672976
0.549602
0.426606
0.303781
0.181661
0.0605225
5.33207
4.59678
4.30201
4.09875
3.91725
3.75105
3.5976
3.45289
3.3141
3.17966
3.04845
2.91963
2.79249
2.66648
2.54119
2.41631
2.29162
2.16698
2.04232
1.91761
1.79284
1.66806
1.54328
1.41854
1.29391
1.1694
1.04505
0.920903
0.796978
0.673323
0.549926
0.426924
0.304136
0.182027
0.0610838
5.50192
4.53829
4.28451
4.08948
3.90903
3.74585
3.59417
3.45037
3.31224
3.17834
3.04761
2.9192
2.7924
2.66667
2.54156
2.41678
2.29213
2.16748
2.04277
1.91799
1.79315
1.66829
1.54343
1.41864
1.29394
1.16938
1.045
0.920829
0.796896
0.673228
0.549784
0.426772
0.303491
0.182232
0.0537609
5.50286
4.53773
4.28442
4.08942
3.90901
3.74583
3.59415
3.45035
3.31223
3.17833
3.04761
2.9192
2.79241
2.66667
2.54157
2.41679
2.29213
2.16748
2.04278
1.918
1.79316
1.66829
1.54344
1.41864
1.29394
1.16938
1.045
0.920824
0.79687
0.6732
0.549748
0.426768
0.303544
0.18232
0.0538094
5.3928
4.5652
4.29646
4.09488
3.9145
3.74906
3.59593
3.45138
3.31273
3.17841
3.04733
2.91861
2.79157
2.66565
2.54043
2.41562
2.29098
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.0447
0.920567
0.796661
0.673026
0.549644
0.426651
0.303849
0.181741
0.0606744
5.45836
4.55665
4.28712
4.09176
3.91077
3.74695
3.59498
3.45102
3.31277
3.17876
3.04792
2.9194
2.79251
2.6667
2.54154
2.41672
2.29204
2.16738
2.04267
1.9179
1.79307
1.66821
1.54337
1.41859
1.2939
1.16935
1.04497
0.920805
0.79686
0.673197
0.549759
0.426775
0.303631
0.18221
0.0548349
5.37959
4.56836
4.29856
4.09577
3.91528
3.7496
3.5963
3.45166
3.31294
3.17856
3.04744
2.91869
2.79161
2.66567
2.54044
2.41561
2.29097
2.16637
2.04175
1.91707
1.79234
1.66758
1.54283
1.41812
1.29351
1.16902
1.04469
0.920566
0.796667
0.673037
0.549664
0.426669
0.303897
0.18169
0.0614552
5.48225
4.5384
4.28773
4.09001
3.91062
3.74635
3.59399
3.44989
3.31159
3.17753
3.04666
2.91812
2.79122
2.66542
2.5403
2.41555
2.29096
2.16639
2.04179
1.91712
1.79239
1.66762
1.54286
1.41814
1.29351
1.16901
1.04468
0.920536
0.796617
0.672971
0.549569
0.42658
0.303664
0.181827
0.0583087
5.2837
4.62865
4.30717
4.10234
3.91967
3.75239
3.5985
3.45363
3.31477
3.18029
3.04908
2.92026
2.79311
2.6671
2.54179
2.41688
2.29215
2.16748
2.04279
1.91804
1.79325
1.66843
1.54363
1.41887
1.29421
1.16968
1.04532
0.921162
0.797222
0.673552
0.550142
0.427127
0.304336
0.18225
0.0610726
5.43693
4.55361
4.29044
4.09286
3.91218
3.74759
3.59506
3.45078
3.31233
3.17817
3.04724
2.91867
2.79175
2.66593
2.54079
2.41602
2.29141
2.16682
2.04219
1.91748
1.79272
1.66792
1.54313
1.41838
1.29373
1.16921
1.04486
0.920705
0.796781
0.673123
0.549708
0.426703
0.303691
0.18198
0.0571691
5.39509
4.57218
4.29453
4.09547
3.91418
3.749
3.59616
3.45171
3.31312
3.17884
3.04779
2.91911
2.7921
2.6662
2.541
2.41618
2.29153
2.16691
2.04226
1.91755
1.79278
1.66798
1.54318
1.41844
1.29379
1.16927
1.04491
0.920763
0.796838
0.67318
0.549769
0.426762
0.303808
0.181991
0.0580624
5.21461
4.66623
4.31705
4.10771
3.9241
3.75505
3.60022
3.45491
3.31577
3.1811
3.04976
2.92085
2.79366
2.66761
2.5423
2.4174
2.2927
2.16805
2.04339
1.91867
1.79391
1.66912
1.54434
1.41961
1.29496
1.17045
1.0461
0.921937
0.797994
0.67431
0.550891
0.427852
0.305101
0.182955
0.0624827
5.61768
4.50353
4.2779
4.08446
3.90582
3.74338
3.59216
3.44873
3.31094
3.17734
3.04687
2.9187
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16957
1.04517
0.920985
0.797032
0.673347
0.549901
0.426913
0.303687
0.182515
0.0540664
5.61779
4.50345
4.27788
4.08444
3.90581
3.74337
3.59215
3.44873
3.31094
3.17734
3.04688
2.91871
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16957
1.04516
0.920967
0.796998
0.673324
0.549884
0.426937
0.303746
0.182544
0.0540603
5.47725
4.53455
4.28843
4.09071
3.91103
3.74663
3.59417
3.45001
3.31164
3.17756
3.04667
2.91813
2.79124
2.66544
2.54032
2.41557
2.29099
2.16643
2.04182
1.91715
1.79242
1.66765
1.54289
1.41817
1.29353
1.16903
1.04469
0.920552
0.79664
0.672997
0.549601
0.426604
0.30366
0.181803
0.0582438
5.61516
4.50346
4.27796
4.0845
3.90586
3.7434
3.59217
3.44874
3.31095
3.17734
3.04687
2.9187
2.79212
2.66655
2.54158
2.4169
2.29231
2.1677
2.04302
1.91824
1.7934
1.66853
1.54366
1.41885
1.29414
1.16957
1.04516
0.920968
0.796999
0.673324
0.549883
0.426934
0.303744
0.182538
0.0540856
5.61424
4.50386
4.27807
4.08457
3.90589
3.74342
3.59218
3.44874
3.31094
3.17733
3.04686
2.91869
2.79211
2.66654
2.54157
2.41689
2.29231
2.1677
2.04301
1.91824
1.7934
1.66853
1.54366
1.41885
1.29414
1.16957
1.04517
0.920985
0.797031
0.673346
0.549899
0.42691
0.303686
0.182509
0.054091
5.4153
4.55513
4.29567
4.09375
3.91385
3.74855
3.59549
3.451
3.3124
3.17812
3.04706
2.91837
2.79134
2.66543
2.54022
2.41542
2.29079
2.16621
2.0416
1.91693
1.7922
1.66745
1.54271
1.418
1.29339
1.16891
1.04459
0.920466
0.796576
0.672957
0.549591
0.426592
0.303801
0.181569
0.0613674
5.41927
4.55456
4.29499
4.09342
3.91357
3.74836
3.59535
3.45089
3.31232
3.17806
3.04702
2.91833
2.79131
2.66541
2.54021
2.41541
2.29078
2.1662
2.04159
1.91692
1.7922
1.66745
1.5427
1.418
1.29338
1.1689
1.04458
0.920457
0.796565
0.672943
0.549573
0.426577
0.303784
0.181591
0.0611136
5.38686
4.57116
4.29591
4.09522
3.91451
3.74914
3.5961
3.45158
3.31295
3.17863
3.04755
2.91884
2.7918
2.66588
2.54067
2.41585
2.2912
2.1666
2.04197
1.91728
1.79254
1.66777
1.543
1.41828
1.29365
1.16915
1.04481
0.920673
0.796756
0.673111
0.549715
0.42672
0.303871
0.181883
0.0597434
5.40319
4.55909
4.29646
4.09433
3.91424
3.74883
3.5957
3.45117
3.31253
3.17823
3.04715
2.91845
2.79141
2.66549
2.54028
2.41547
2.29084
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16894
1.04462
0.920495
0.796602
0.672978
0.549609
0.426611
0.303826
0.181612
0.0613346
5.47552
4.54379
4.29229
4.09219
3.91249
3.7476
3.59481
3.45047
3.31198
3.17779
3.04682
2.91819
2.79121
2.66535
2.54018
2.4154
2.29079
2.16622
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.2934
1.16891
1.04459
0.920465
0.796573
0.67295
0.549579
0.426582
0.303726
0.181631
0.0600757
5.53097
4.52428
4.28295
4.08751
3.90842
3.74492
3.59305
3.44924
3.31114
3.17727
3.04656
2.91816
2.79139
2.66568
2.54063
2.41593
2.29136
2.1668
2.04218
1.91748
1.79272
1.66792
1.54312
1.41837
1.29371
1.16918
1.04482
0.920656
0.796716
0.673054
0.549625
0.426638
0.303596
0.182027
0.0562798
5.40493
4.55872
4.29621
4.0942
3.91413
3.74876
3.59565
3.45113
3.31251
3.17821
3.04714
2.91844
2.7914
2.66549
2.54028
2.41547
2.29084
2.16626
2.04164
1.91697
1.79225
1.66749
1.54275
1.41804
1.29343
1.16894
1.04462
0.9205
0.796605
0.672981
0.54961
0.426614
0.303827
0.181625
0.0612561
5.26372
4.63317
4.31096
4.10371
3.92098
3.7533
3.59911
3.4541
3.31514
3.18059
3.04933
2.92046
2.79327
2.66722
2.54188
2.41695
2.29222
2.16755
2.04286
1.91812
1.79333
1.66852
1.54372
1.41897
1.29432
1.16979
1.04544
0.921277
0.797339
0.673671
0.550274
0.427268
0.304551
0.182371
0.0627469
5.50473
4.52803
4.28444
4.08863
3.90911
3.74542
3.59343
3.44951
3.31133
3.1774
3.04666
2.91824
2.79145
2.66575
2.54069
2.41599
2.29142
2.16686
2.04225
1.91755
1.79279
1.66799
1.54319
1.41844
1.29377
1.16924
1.04488
0.920721
0.796791
0.673126
0.549702
0.426697
0.303624
0.18203
0.0562866
5.34668
4.58466
4.3014
4.09799
3.91673
3.75066
3.5972
3.45245
3.31364
3.17919
3.04799
2.91918
2.79206
2.66607
2.54081
2.41594
2.29127
2.16665
2.04201
1.91731
1.79256
1.66779
1.54302
1.4183
1.29367
1.16917
1.04484
0.920704
0.796791
0.673147
0.549764
0.42677
0.303999
0.181851
0.0612969
5.44119
4.54977
4.29046
4.09265
3.91215
3.74753
3.59496
3.45068
3.31222
3.17806
3.04713
2.91855
2.79163
2.66581
2.54067
2.41591
2.2913
2.16672
2.04209
1.9174
1.79264
1.66786
1.54307
1.41833
1.29368
1.16916
1.04482
0.920668
0.796746
0.673091
0.549681
0.426677
0.303686
0.181938
0.0574975
5.46765
4.55845
4.28686
4.09181
3.91046
3.74684
3.59504
3.4512
3.31307
3.17914
3.04837
2.91989
2.79301
2.66718
2.54198
2.41711
2.29238
2.16766
2.0429
1.91808
1.79321
1.66832
1.54345
1.41864
1.29393
1.16937
1.04498
0.920806
0.796854
0.673185
0.549737
0.426752
0.303552
0.182231
0.0539978
5.46665
4.55901
4.28703
4.09204
3.91059
3.74693
3.5951
3.45124
3.31308
3.17915
3.04837
2.91989
2.79301
2.66718
2.54199
2.41712
2.2924
2.16768
2.04292
1.9181
1.79323
1.66834
1.54347
1.41866
1.29395
1.16938
1.045
0.920825
0.796888
0.673218
0.549775
0.42676
0.303512
0.182161
0.0539517
5.47895
4.5358
4.28735
4.09045
3.91052
3.74635
3.59405
3.44995
3.31164
3.1776
3.04677
2.91827
2.79143
2.66567
2.54058
2.41585
2.29127
2.1667
2.04209
1.91741
1.79265
1.66787
1.54308
1.41834
1.29369
1.16917
1.04482
0.920665
0.796742
0.673084
0.54967
0.426667
0.303645
0.181955
0.0570283
5.43472
4.57258
4.28917
4.09397
3.91203
3.74774
3.59561
3.45158
3.31331
3.1793
3.04845
2.91993
2.79302
2.66717
2.54196
2.41709
2.29237
2.16766
2.04291
1.9181
1.79324
1.66836
1.5435
1.41869
1.29399
1.16943
1.04505
0.920879
0.79694
0.673269
0.549832
0.426818
0.303648
0.182163
0.0548102
5.27585
4.63942
4.30745
4.10376
3.92033
3.75269
3.59874
3.45382
3.31493
3.18045
3.04926
2.92046
2.79336
2.66739
2.54213
2.41727
2.29259
2.16796
2.04329
1.91856
1.79378
1.66896
1.54413
1.41935
1.29466
1.1701
1.04571
0.921516
0.797549
0.673849
0.550412
0.427371
0.304511
0.182475
0.0596982
5.33876
4.59942
4.30045
4.09851
3.91673
3.75067
3.5974
3.45278
3.31407
3.17967
3.04851
2.91972
2.79261
2.66662
2.54135
2.41647
2.29177
2.16713
2.04246
1.91773
1.79295
1.66815
1.54335
1.41861
1.29395
1.16943
1.04508
0.92092
0.796988
0.673327
0.549918
0.426911
0.30406
0.182062
0.0598159
5.39801
4.57932
4.29304
4.09502
3.91351
3.74855
3.59595
3.45166
3.31318
3.17898
3.04799
2.91934
2.79235
2.66647
2.54127
2.41645
2.29178
2.16714
2.04247
1.91772
1.79293
1.6681
1.54329
1.41852
1.29386
1.16932
1.04496
0.920799
0.796864
0.673205
0.549785
0.426789
0.303789
0.182072
0.0570111
5.27452
4.63811
4.3081
4.10379
3.92044
3.7528
3.59881
3.45387
3.31497
3.18047
3.04927
2.92046
2.79334
2.66735
2.54207
2.41718
2.29248
2.16781
2.04312
1.91837
1.79357
1.66874
1.54392
1.41914
1.29446
1.16991
1.04553
0.92135
0.797394
0.673704
0.550277
0.427245
0.304411
0.182365
0.0601073
5.49028
4.54444
4.29018
4.09101
3.91159
3.74701
3.59443
3.45022
3.31182
3.1777
3.04676
2.91817
2.79123
2.66538
2.54023
2.41546
2.29086
2.16629
2.04168
1.91702
1.79229
1.66754
1.54278
1.41808
1.29346
1.16897
1.04464
0.920507
0.796599
0.672963
0.549575
0.426588
0.30373
0.181757
0.0594629
5.51295
4.52867
4.28329
4.08849
3.90854
3.74527
3.59352
3.4497
3.31159
3.17773
3.04705
2.9187
2.79197
2.6663
2.54125
2.41654
2.29194
2.16734
2.04267
1.91793
1.79312
1.66827
1.54343
1.41864
1.29395
1.1694
1.04502
0.920851
0.796913
0.673241
0.549799
0.426793
0.303577
0.182259
0.0544716
5.51335
4.52852
4.28312
4.08832
3.90844
3.74521
3.59348
3.44969
3.3116
3.17775
3.04708
2.91874
2.79201
2.66633
2.54129
2.41656
2.29196
2.16735
2.04268
1.91793
1.79312
1.66827
1.54343
1.41864
1.29395
1.16939
1.04501
0.920837
0.796884
0.673215
0.54977
0.426793
0.303615
0.182313
0.0544646
5.44797
4.54327
4.29184
4.09223
3.91238
3.74752
3.59477
3.45044
3.31196
3.17778
3.04682
2.9182
2.79124
2.66539
2.54023
2.41545
2.29084
2.16628
2.04167
1.917
1.79228
1.66752
1.54277
1.41806
1.29344
1.16894
1.04462
0.920489
0.79659
0.67296
0.549582
0.426587
0.303714
0.18169
0.0596055
5.53629
4.51923
4.2817
4.08713
3.90756
3.74453
3.59293
3.44924
3.31124
3.17747
3.04687
2.91859
2.79192
2.66629
2.54128
2.41659
2.292
2.16741
2.04274
1.91799
1.79318
1.66832
1.54348
1.41868
1.29399
1.16943
1.04505
0.920872
0.79693
0.673255
0.549811
0.426809
0.303584
0.182317
0.0543035
5.53766
4.51796
4.2814
4.08695
3.9075
3.74451
3.59293
3.44926
3.31126
3.1775
3.0469
2.91862
2.79195
2.66632
2.54131
2.41661
2.29202
2.16742
2.04275
1.918
1.79318
1.66833
1.54348
1.41869
1.294
1.16943
1.04505
0.920866
0.796909
0.673237
0.549791
0.42682
0.303634
0.182373
0.054328
5.43158
4.55044
4.29482
4.09329
3.91351
3.74831
3.5953
3.45085
3.31228
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04156
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04456
0.920439
0.796554
0.672939
0.549576
0.426575
0.303768
0.181535
0.0612463
5.49655
4.54261
4.28937
4.09066
3.91125
3.74678
3.59427
3.45011
3.31174
3.17764
3.04673
2.91815
2.79123
2.6654
2.54026
2.41549
2.29089
2.16633
2.04173
1.91706
1.79233
1.66758
1.54282
1.41811
1.29349
1.16899
1.04466
0.920529
0.796617
0.672977
0.549583
0.426595
0.303718
0.181793
0.0590786
5.5147
4.52739
4.28405
4.08817
3.90884
3.74521
3.59326
3.44941
3.31128
3.17739
3.04666
2.91826
2.79147
2.66577
2.54072
2.41601
2.29144
2.16688
2.04226
1.91756
1.7928
1.668
1.5432
1.41844
1.29378
1.16925
1.04489
0.920724
0.796783
0.673118
0.549688
0.426699
0.303654
0.182083
0.0563337
5.4121
4.55757
4.29501
4.09378
3.91371
3.74848
3.59547
3.451
3.31241
3.17814
3.0471
2.91841
2.7914
2.6655
2.5403
2.41549
2.29087
2.16628
2.04167
1.917
1.79227
1.66752
1.54277
1.41806
1.29345
1.16896
1.04463
0.920507
0.796607
0.672977
0.549599
0.426607
0.303804
0.181683
0.0606795
5.22926
4.65954
4.31425
4.1062
3.92302
3.75437
3.59976
3.45458
3.31552
3.1809
3.0496
2.92072
2.79355
2.66752
2.54222
2.41734
2.29264
2.16801
2.04334
1.91863
1.79385
1.66905
1.54425
1.4195
1.29484
1.1703
1.04593
0.921754
0.7978
0.674114
0.550692
0.427657
0.304893
0.182763
0.0621469
5.46078
4.5504
4.29363
4.09253
3.913
3.74798
3.59508
3.45069
3.31216
3.17793
3.04692
2.91825
2.79125
2.66536
2.54016
2.41536
2.29074
2.16616
2.04155
1.91689
1.79217
1.66741
1.54267
1.41797
1.29335
1.16887
1.04455
0.92043
0.796539
0.672921
0.549552
0.426557
0.303758
0.181567
0.0610419
5.45644
4.55093
4.29442
4.09291
3.91333
3.74821
3.59524
3.45081
3.31226
3.17801
3.04697
2.91829
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54268
1.41798
1.29336
1.16888
1.04456
0.920441
0.796555
0.672941
0.549577
0.426575
0.303776
0.181532
0.061365
5.29586
4.61582
4.3068
4.10165
3.91924
3.75227
3.59847
3.4536
3.31474
3.18024
3.04901
2.92016
2.79299
2.66696
2.54165
2.41674
2.29202
2.16736
2.04268
1.91794
1.79316
1.66836
1.54356
1.41882
1.29417
1.16965
1.04529
0.921134
0.7972
0.673533
0.550132
0.427125
0.30436
0.182225
0.0616624
5.4255
4.57714
4.29025
4.09438
3.91244
3.74801
3.59581
3.45175
3.31346
3.17942
3.04855
2.91999
2.79305
2.66718
2.54195
2.41707
2.29234
2.16764
2.04289
1.91808
1.79323
1.66835
1.5435
1.4187
1.294
1.16944
1.04506
0.92089
0.796943
0.673278
0.549842
0.426851
0.303736
0.182221
0.0551596
5.4654
4.5492
4.29304
4.09228
3.91279
3.74783
3.59498
3.45062
3.31211
3.17789
3.04689
2.91823
2.79123
2.66535
2.54016
2.41536
2.29074
2.16616
2.04155
1.91689
1.79216
1.66741
1.54266
1.41796
1.29335
1.16887
1.04455
0.920425
0.796533
0.672912
0.549543
0.42655
0.303748
0.181586
0.0608485
5.58623
4.50517
4.27822
4.08487
3.90618
3.74359
3.59228
3.44879
3.31095
3.1773
3.04679
2.91858
2.79197
2.66638
2.5414
2.41671
2.29213
2.16753
2.04286
1.9181
1.79327
1.66841
1.54355
1.41875
1.29405
1.16948
1.04509
0.920898
0.796933
0.673257
0.549811
0.426847
0.303673
0.18242
0.054342
5.57755
4.50808
4.27907
4.08525
3.90634
3.74368
3.59232
3.4488
3.31094
3.17727
3.04676
2.91855
2.79194
2.66635
2.54138
2.4167
2.29212
2.16753
2.04286
1.9181
1.79328
1.66842
1.54356
1.41876
1.29406
1.16949
1.0451
0.920921
0.796971
0.67329
0.549844
0.426848
0.303638
0.182397
0.0543213
5.57253
4.51678
4.28092
4.08633
3.90725
3.74422
3.59264
3.44899
3.31101
3.17725
3.04665
2.91836
2.79168
2.66606
2.54106
2.41638
2.29181
2.16724
2.0426
1.91788
1.79308
1.66825
1.54341
1.41863
1.29394
1.16939
1.04501
0.920839
0.796897
0.673221
0.54978
0.426775
0.303616
0.182212
0.0551
5.48204
4.53487
4.28879
4.09082
3.91117
3.74671
3.59422
3.45003
3.31166
3.17756
3.04666
2.91811
2.7912
2.6654
2.54027
2.41552
2.29093
2.16637
2.04176
1.9171
1.79236
1.6676
1.54284
1.41812
1.29349
1.16899
1.04465
0.920516
0.796608
0.672968
0.549577
0.426581
0.303652
0.181765
0.0584678
5.58005
4.51704
4.28098
4.08621
3.90721
3.74418
3.59261
3.44899
3.31103
3.17729
3.0467
2.91841
2.79173
2.66611
2.54111
2.41642
2.29186
2.16728
2.04264
1.91791
1.79311
1.66827
1.54344
1.41865
1.29397
1.16941
1.04503
0.920848
0.796892
0.673218
0.549772
0.426789
0.303661
0.182273
0.0551391
5.40251
4.56079
4.29549
4.09486
3.91419
3.74885
3.59582
3.45129
3.31266
3.17836
3.0473
2.91861
2.7916
2.6657
2.5405
2.4157
2.29107
2.16649
2.04187
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04474
0.920606
0.796697
0.673055
0.549666
0.426668
0.303806
0.181807
0.059682
5.46497
4.53883
4.28874
4.09112
3.91113
3.74672
3.59427
3.45009
3.31171
3.17762
3.04674
2.9182
2.79131
2.66551
2.5404
2.41565
2.29106
2.16649
2.04188
1.9172
1.79246
1.66768
1.54291
1.41818
1.29354
1.16903
1.04468
0.92054
0.796625
0.672976
0.549573
0.426576
0.303602
0.181824
0.0576589
5.43514
4.54981
4.29478
4.09332
3.91351
3.74831
3.5953
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.5402
2.4154
2.29077
2.1662
2.04159
1.91692
1.7922
1.66745
1.54271
1.41801
1.29339
1.1689
1.04458
0.920465
0.796579
0.672963
0.5496
0.426598
0.303786
0.181559
0.0611998
5.42304
4.55658
4.29223
4.093
3.91274
3.74786
3.59512
3.45078
3.31229
3.17809
3.04711
2.91848
2.79151
2.66565
2.54049
2.4157
2.29108
2.1665
2.04189
1.9172
1.79247
1.66769
1.54293
1.41821
1.29358
1.16907
1.04474
0.920598
0.79668
0.673035
0.549635
0.426644
0.303751
0.181859
0.0588415
5.36492
4.58829
4.29718
4.09684
3.91534
3.74978
3.59678
3.45228
3.31365
3.17932
3.04822
2.91948
2.79241
2.66646
2.54122
2.41637
2.29169
2.16706
2.04239
1.91767
1.79289
1.66809
1.54329
1.41854
1.29388
1.16936
1.045
0.920846
0.796913
0.673254
0.549843
0.426841
0.30394
0.182035
0.058863
5.368
4.57534
4.29906
4.09686
3.9158
3.75001
3.59671
3.45203
3.31328
3.17888
3.04773
2.91897
2.79188
2.66593
2.5407
2.41586
2.2912
2.1666
2.04196
1.91727
1.79253
1.66776
1.54299
1.41827
1.29365
1.16915
1.04481
0.920675
0.796763
0.673119
0.549733
0.426736
0.303925
0.181844
0.0605861
5.4785
4.54732
4.28587
4.09065
3.90997
3.74634
3.59443
3.4505
3.31229
3.17833
3.04755
2.91911
2.79229
2.66653
2.54142
2.41664
2.292
2.16736
2.04267
1.9179
1.79308
1.66823
1.54339
1.41861
1.29392
1.16937
1.04499
0.920817
0.79687
0.673204
0.549763
0.426781
0.303617
0.18225
0.0546165
5.51839
4.52628
4.28447
4.08859
3.90914
3.74544
3.59343
3.44951
3.31133
3.1774
3.04665
2.91823
2.79144
2.66573
2.54068
2.41597
2.29141
2.16685
2.04224
1.91755
1.79279
1.66799
1.5432
1.41844
1.29378
1.16925
1.04489
0.920731
0.796801
0.673136
0.549713
0.426708
0.303645
0.18203
0.0564541
5.54001
4.52609
4.28422
4.08831
3.90899
3.74533
3.59334
3.44943
3.31126
3.17733
3.04658
2.91816
2.79137
2.66566
2.5406
2.4159
2.29133
2.16678
2.04217
1.91748
1.79272
1.66792
1.54313
1.41838
1.29372
1.16919
1.04483
0.920677
0.796748
0.673086
0.549666
0.426662
0.303607
0.181982
0.0564803
5.48289
4.5484
4.28545
4.09056
3.90968
3.74631
3.5946
3.45079
3.31266
3.17873
3.04796
2.91949
2.79263
2.66683
2.54167
2.41685
2.29216
2.16748
2.04276
1.91796
1.79312
1.66824
1.54339
1.41859
1.29389
1.16933
1.04495
0.920781
0.796848
0.673182
0.54974
0.426727
0.303466
0.182159
0.0538523
5.48259
4.54801
4.2853
4.09043
3.90962
3.74628
3.59458
3.45078
3.31266
3.17874
3.04796
2.91949
2.79263
2.66682
2.54165
2.41682
2.29213
2.16745
2.04272
1.91792
1.79308
1.6682
1.54335
1.41855
1.29385
1.1693
1.04492
0.920742
0.796793
0.673127
0.54968
0.4267
0.303493
0.182214
0.0538885
5.22134
4.66193
4.31612
4.10718
3.92364
3.75478
3.60004
3.45478
3.31567
3.18101
3.04969
2.92079
2.7936
2.66756
2.54225
2.41736
2.29265
2.16801
2.04335
1.91864
1.79387
1.66908
1.54429
1.41955
1.2949
1.17037
1.04601
0.921841
0.797892
0.674206
0.550786
0.427751
0.305001
0.182857
0.0624904
5.51478
4.53063
4.28341
4.08855
3.90844
3.74535
3.59371
3.44994
3.31185
3.178
3.04733
2.91897
2.79223
2.66654
2.54148
2.41673
2.2921
2.16747
2.04278
1.91801
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04503
0.920857
0.796921
0.673251
0.549807
0.426797
0.303522
0.182279
0.0538442
5.51611
4.52964
4.28323
4.08846
3.90842
3.74534
3.5937
3.44993
3.31184
3.17799
3.04731
2.91896
2.79222
2.66653
2.54146
2.41672
2.29209
2.16746
2.04277
1.918
1.79317
1.66831
1.54346
1.41866
1.29397
1.16941
1.04502
0.920842
0.796887
0.673216
0.549765
0.426789
0.30357
0.182354
0.0538848
5.48914
4.53634
4.28528
4.08994
3.9098
3.74609
3.59406
3.45008
3.31184
3.17787
3.0471
2.91866
2.79186
2.66614
2.54107
2.41633
2.29174
2.16714
2.04249
1.91777
1.79298
1.66815
1.54333
1.41856
1.29388
1.16934
1.04497
0.920809
0.796875
0.673207
0.549775
0.426768
0.303627
0.182157
0.0554241
5.4809
4.53393
4.28802
4.09054
3.91085
3.74651
3.5941
3.44996
3.31161
3.17754
3.04667
2.91814
2.79125
2.66546
2.54035
2.41561
2.29102
2.16646
2.04186
1.91719
1.79245
1.66768
1.54291
1.41819
1.29355
1.16904
1.0447
0.920561
0.796647
0.673001
0.549602
0.426604
0.303645
0.181822
0.0579713
5.34238
4.58651
4.30187
4.09801
3.91688
3.75076
3.59726
3.4525
3.31368
3.17922
3.04801
2.91919
2.79206
2.66607
2.54079
2.41593
2.29125
2.16663
2.04199
1.91729
1.79255
1.66777
1.54301
1.41829
1.29367
1.16917
1.04484
0.920703
0.796792
0.673151
0.549772
0.42678
0.30403
0.181837
0.0617314
5.44331
4.56275
4.28861
4.0926
3.91144
3.7473
3.59515
3.45109
3.31279
3.17874
3.04787
2.91933
2.79243
2.66661
2.54145
2.41663
2.29197
2.16732
2.04262
1.91786
1.79304
1.66819
1.54336
1.41858
1.2939
1.16935
1.04498
0.920815
0.796872
0.67321
0.549778
0.426791
0.303684
0.182182
0.0553889
5.48555
4.53509
4.28644
4.08947
3.91004
3.74598
3.59375
3.44973
3.31147
3.17747
3.04664
2.91814
2.79127
2.6655
2.5404
2.41566
2.29107
2.16651
2.04191
1.91723
1.79249
1.66771
1.54294
1.41821
1.29357
1.16906
1.04472
0.92057
0.796644
0.672992
0.54958
0.426592
0.30363
0.181893
0.0575481
5.50394
4.54057
4.28855
4.09029
3.9109
3.74654
3.59411
3.44999
3.31165
3.17758
3.04669
2.91814
2.79122
2.66541
2.54028
2.41552
2.29093
2.16636
2.04176
1.91709
1.79236
1.6676
1.54284
1.41813
1.2935
1.16901
1.04467
0.920535
0.79662
0.672976
0.549578
0.42659
0.303693
0.181812
0.0586888
5.43603
4.54657
4.2928
4.09267
3.91276
3.74778
3.59495
3.45058
3.31208
3.17787
3.04688
2.91825
2.79127
2.6654
2.54023
2.41545
2.29084
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16895
1.04462
0.920494
0.796597
0.672969
0.549594
0.426598
0.303743
0.181677
0.059964
5.42309
4.56449
4.29117
4.09394
3.91276
3.74811
3.5956
3.45132
3.31285
3.17868
3.04771
2.91911
2.79216
2.66631
2.54114
2.41634
2.2917
2.16708
2.04241
1.91768
1.79289
1.66807
1.54326
1.4185
1.29383
1.1693
1.04494
0.920785
0.796856
0.673194
0.549773
0.426765
0.303722
0.182054
0.0566865
5.48088
4.53885
4.28568
4.09003
3.90982
3.746
3.59394
3.44995
3.31171
3.17773
3.04695
2.91851
2.79171
2.66598
2.54091
2.41618
2.29159
2.16701
2.04237
1.91765
1.79287
1.66805
1.54323
1.41847
1.2938
1.16926
1.0449
0.920733
0.796802
0.673137
0.549708
0.426704
0.303584
0.182077
0.0556026
5.41343
4.55458
4.29591
4.09413
3.914
3.74864
3.59555
3.45104
3.31243
3.17814
3.04709
2.91839
2.79136
2.66546
2.54026
2.41545
2.29082
2.16624
2.04163
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16893
1.04461
0.920491
0.7966
0.672979
0.549611
0.426612
0.303804
0.181608
0.0610791
5.50419
4.52933
4.28403
4.08856
3.9088
3.74523
3.59333
3.44945
3.31131
3.17741
3.0467
2.91831
2.79155
2.66586
2.54082
2.41612
2.29154
2.16697
2.04234
1.91763
1.79285
1.66803
1.54322
1.41845
1.29378
1.16924
1.04488
0.920715
0.796783
0.673116
0.549687
0.426683
0.303563
0.18207
0.05558
5.41598
4.55456
4.29581
4.09385
3.91389
3.74857
3.5955
3.451
3.3124
3.17812
3.04706
2.91837
2.79134
2.66543
2.54022
2.41542
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.2934
1.16891
1.04459
0.920471
0.796582
0.672964
0.549599
0.426599
0.303803
0.181568
0.0613561
5.28405
4.62439
4.30811
4.1026
3.91986
3.75258
3.59864
3.45372
3.31482
3.18031
3.04907
2.92022
2.79305
2.66702
2.5417
2.41679
2.29207
2.1674
2.04271
1.91797
1.79319
1.66838
1.54357
1.41883
1.29417
1.16965
1.04529
0.921131
0.797194
0.673525
0.550122
0.427113
0.304348
0.182231
0.0615533
5.40546
4.57969
4.29199
4.09485
3.91314
3.74836
3.5959
3.4517
3.31328
3.17914
3.04819
2.91957
2.7926
2.66673
2.54152
2.41668
2.29199
2.16733
2.04263
1.91787
1.79305
1.66821
1.54337
1.4186
1.29392
1.16938
1.04501
0.920844
0.796905
0.673244
0.549819
0.426825
0.30378
0.182138
0.0562818
5.5051
4.53466
4.2838
4.08901
3.90879
3.7456
3.5939
3.4501
3.31198
3.1781
3.04739
2.919
2.79224
2.66652
2.54144
2.41668
2.29205
2.16741
2.04272
1.91795
1.79312
1.66826
1.54341
1.41862
1.29393
1.16937
1.04499
0.920811
0.796859
0.673191
0.549743
0.426765
0.303557
0.182304
0.0540185
5.49701
4.54013
4.28475
4.08983
3.90932
3.74603
3.5943
3.45045
3.3123
3.17838
3.04763
2.91921
2.79241
2.66666
2.54155
2.41677
2.29212
2.16747
2.04277
1.91799
1.79316
1.66829
1.54344
1.41865
1.29395
1.16939
1.04502
0.920845
0.79691
0.673241
0.549797
0.426786
0.303526
0.182239
0.0539717
5.28548
4.6202
4.30824
4.10207
3.91974
3.75258
3.59863
3.45371
3.31479
3.18025
3.04898
2.9201
2.79291
2.66685
2.54152
2.4166
2.29188
2.16722
2.04254
1.91781
1.79303
1.66823
1.54344
1.41871
1.29406
1.16954
1.0452
0.921042
0.797113
0.673453
0.550061
0.427063
0.304339
0.182159
0.0623666
5.35127
4.58341
4.30075
4.09771
3.91642
3.7504
3.59699
3.45227
3.31348
3.17905
3.04787
2.91908
2.79197
2.666
2.54074
2.41589
2.29122
2.1666
2.04196
1.91727
1.79252
1.66774
1.54298
1.41826
1.29363
1.16913
1.0448
0.920659
0.796746
0.673102
0.549719
0.426726
0.303941
0.18183
0.0609681
5.52454
4.5243
4.28346
4.08796
3.90867
3.74512
3.5932
3.44933
3.31118
3.17728
3.04654
2.91813
2.79136
2.66565
2.5406
2.4159
2.29133
2.16677
2.04216
1.91746
1.7927
1.6679
1.5431
1.41835
1.29369
1.16916
1.0448
0.920643
0.796714
0.673053
0.549631
0.426629
0.30356
0.181969
0.0562267
5.45495
4.55107
4.2943
4.09283
3.91326
3.74816
3.59521
3.45079
3.31224
3.17799
3.04696
2.91828
2.79126
2.66537
2.54017
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29335
1.16887
1.04455
0.920429
0.796542
0.672927
0.549562
0.426561
0.303763
0.181531
0.0612955
5.43736
4.56492
4.28896
4.09323
3.91183
3.74755
3.59532
3.4512
3.31283
3.17874
3.04783
2.91927
2.79236
2.66654
2.54137
2.41656
2.2919
2.16726
2.04257
1.91781
1.793
1.66816
1.54333
1.41855
1.29387
1.16933
1.04496
0.920796
0.796865
0.6732
0.549771
0.426763
0.303637
0.182105
0.0554293
5.45688
4.54229
4.29181
4.09208
3.91235
3.74749
3.59473
3.4504
3.31192
3.17774
3.04676
2.91814
2.79117
2.66531
2.54014
2.41536
2.29075
2.16618
2.04157
1.9169
1.79218
1.66742
1.54267
1.41796
1.29335
1.16885
1.04453
0.920406
0.796513
0.672889
0.549517
0.426523
0.303663
0.181599
0.0598444
5.38444
4.57308
4.29627
4.09594
3.91472
3.74928
3.59625
3.45171
3.31306
3.17875
3.04767
2.91896
2.79192
2.66601
2.5408
2.41597
2.29132
2.16672
2.04208
1.91738
1.79262
1.66784
1.54306
1.41833
1.29369
1.16918
1.04484
0.920692
0.796774
0.673121
0.549721
0.426719
0.303824
0.181911
0.0590201
5.48443
4.53774
4.28745
4.08987
3.91044
3.74623
3.59391
3.44984
3.31154
3.17751
3.04665
2.91812
2.79124
2.66544
2.54033
2.41558
2.29099
2.16643
2.04183
1.91715
1.79242
1.66765
1.54289
1.41817
1.29353
1.16903
1.04469
0.92055
0.796629
0.672981
0.549575
0.426586
0.303657
0.181847
0.058089
5.41887
4.55213
4.29517
4.0936
3.9137
3.74844
3.59541
3.45093
3.31235
3.17808
3.04703
2.91834
2.79132
2.66542
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.1689
1.04458
0.920464
0.796576
0.672957
0.549593
0.426593
0.303787
0.181573
0.0611782
5.60682
4.50469
4.27833
4.08473
3.90602
3.74349
3.59223
3.44878
3.31097
3.17735
3.04687
2.91868
2.79209
2.66652
2.54154
2.41686
2.29228
2.16768
2.04299
1.91823
1.79339
1.66852
1.54366
1.41885
1.29414
1.16956
1.04516
0.920968
0.796999
0.673323
0.549878
0.426923
0.303737
0.182516
0.0541842
5.60494
4.50576
4.2785
4.08482
3.90605
3.74351
3.59223
3.44877
3.31095
3.17732
3.04684
2.91865
2.79206
2.66649
2.54152
2.41684
2.29226
2.16766
2.04298
1.91821
1.79338
1.66851
1.54364
1.41884
1.29413
1.16955
1.04516
0.920975
0.797021
0.673337
0.549889
0.426896
0.303676
0.182475
0.0541777
5.49125
4.5446
4.28525
4.0902
3.90946
3.74617
3.59447
3.45065
3.31251
3.17858
3.04782
2.91938
2.79254
2.66677
2.54163
2.41683
2.29216
2.16749
2.04277
1.91799
1.79314
1.66827
1.54342
1.41861
1.29391
1.16936
1.04498
0.920808
0.796874
0.673207
0.549763
0.42675
0.303474
0.182195
0.0537613
5.49231
4.54398
4.28511
4.09009
3.9094
3.74612
3.59442
3.45061
3.31248
3.17856
3.04781
2.91937
2.79254
2.66677
2.54164
2.41683
2.29216
2.1675
2.04278
1.91799
1.79315
1.66828
1.54342
1.41862
1.29392
1.16936
1.04498
0.920804
0.796851
0.673182
0.549731
0.426749
0.303529
0.182281
0.0538201
5.52336
4.52354
4.28235
4.08746
3.90793
3.74472
3.59303
3.4493
3.31127
3.17747
3.04683
2.91852
2.79181
2.66616
2.54114
2.41644
2.29186
2.16727
2.04262
1.91788
1.79307
1.66824
1.5434
1.41862
1.29393
1.16938
1.045
0.920822
0.796869
0.673198
0.549755
0.426776
0.303629
0.182275
0.0548729
5.47329
4.54723
4.29187
4.09178
3.91237
3.74755
3.5948
3.45049
3.31201
3.17783
3.04685
2.91821
2.79123
2.66536
2.54018
2.41539
2.29078
2.1662
2.0416
1.91693
1.79221
1.66745
1.54271
1.418
1.29339
1.1689
1.04458
0.920458
0.796561
0.672936
0.549561
0.426573
0.303757
0.181654
0.060441
5.38207
4.57132
4.29699
4.09603
3.91497
3.74944
3.59631
3.45172
3.31303
3.17869
3.04758
2.91886
2.79181
2.66589
2.54068
2.41585
2.29121
2.16661
2.04198
1.91728
1.79254
1.66776
1.54299
1.41827
1.29363
1.16913
1.04479
0.920651
0.796736
0.673089
0.549694
0.426695
0.303835
0.181854
0.0596202
5.5223
4.52443
4.28255
4.08768
3.90802
3.74478
3.59308
3.44933
3.31128
3.17747
3.04683
2.91851
2.79181
2.66616
2.54114
2.41645
2.29187
2.16728
2.04263
1.9179
1.79309
1.66825
1.54342
1.41864
1.29395
1.16939
1.04502
0.920845
0.796904
0.67323
0.54979
0.426785
0.303603
0.182234
0.0548501
5.27512
4.64117
4.30729
4.10342
3.92022
3.75261
3.59868
3.45379
3.31492
3.18045
3.04927
2.92048
2.79337
2.6674
2.54214
2.41727
2.29259
2.16795
2.04328
1.91856
1.79377
1.66894
1.54412
1.41934
1.29465
1.17009
1.0457
0.921509
0.797543
0.67385
0.550417
0.427381
0.304524
0.182485
0.0597467
5.51145
4.53556
4.28669
4.08939
3.91011
3.74601
3.59375
3.44972
3.31146
3.17744
3.0466
2.91808
2.7912
2.66542
2.5403
2.41556
2.29097
2.16641
2.04181
1.91713
1.7924
1.66763
1.54286
1.41814
1.29351
1.16901
1.04467
0.920524
0.796603
0.672954
0.549548
0.42656
0.303623
0.181833
0.0579167
5.56072
4.51109
4.27989
4.08577
3.90668
3.7439
3.59247
3.4489
3.311
3.17731
3.04677
2.91854
2.79191
2.66632
2.54133
2.41665
2.29207
2.16748
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16947
1.04509
0.920904
0.796957
0.673277
0.549832
0.426835
0.303622
0.182372
0.0543397
5.5649
4.50951
4.27956
4.08559
3.9066
3.74385
3.59245
3.4489
3.31102
3.17733
3.0468
2.91858
2.79195
2.66635
2.54137
2.41669
2.29211
2.16751
2.04284
1.91808
1.79326
1.6684
1.54355
1.41875
1.29405
1.16948
1.04509
0.920902
0.79694
0.673265
0.549818
0.426852
0.303674
0.18242
0.0543538
5.41844
4.5603
4.29239
4.09398
3.91311
3.74823
3.59553
3.45117
3.31264
3.17842
3.04743
2.9188
2.79184
2.66598
2.54082
2.41603
2.2914
2.1668
2.04217
1.91747
1.7927
1.66791
1.54312
1.41838
1.29373
1.16921
1.04486
0.920714
0.796791
0.673135
0.549724
0.426719
0.303745
0.181964
0.0577706
5.54602
4.51567
4.28108
4.08663
3.90717
3.74432
3.59283
3.4492
3.31125
3.17752
3.04696
2.9187
2.79205
2.66644
2.54144
2.41674
2.29215
2.16754
2.04286
1.91809
1.79326
1.6684
1.54355
1.41874
1.29404
1.16948
1.04508
0.920898
0.796937
0.673265
0.549817
0.426853
0.303645
0.182442
0.0539978
5.54817
4.51499
4.28091
4.08651
3.90708
3.74425
3.59277
3.44916
3.31122
3.1775
3.04694
2.9187
2.79206
2.66645
2.54146
2.41676
2.29217
2.16756
2.04288
1.91812
1.79329
1.66843
1.54357
1.41877
1.29406
1.1695
1.04511
0.92093
0.796985
0.673308
0.549862
0.426861
0.303608
0.182401
0.0539965
5.56285
4.51019
4.27985
4.0857
3.90656
3.74384
3.59244
3.44889
3.31101
3.17734
3.04682
2.91861
2.79199
2.66641
2.54143
2.41675
2.29216
2.16756
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29407
1.16951
1.04512
0.920937
0.796988
0.673307
0.549861
0.426865
0.303638
0.182424
0.0541735
5.55881
4.51082
4.2799
4.08576
3.90663
3.7439
3.5925
3.44896
3.31107
3.17739
3.04687
2.91865
2.79203
2.66644
2.54145
2.41677
2.29218
2.16758
2.0429
1.91814
1.79331
1.66845
1.54359
1.41879
1.29408
1.16951
1.04512
0.920929
0.796965
0.67329
0.549844
0.42688
0.303686
0.182461
0.0541729
5.34998
4.60005
4.29852
4.09862
3.91621
3.75028
3.5972
3.45268
3.31405
3.17975
3.04867
2.91995
2.79289
2.66694
2.54168
2.4168
2.29209
2.16743
2.04273
1.91797
1.79316
1.66832
1.5435
1.41872
1.29405
1.16951
1.04514
0.920971
0.797034
0.673363
0.549943
0.426928
0.303986
0.182128
0.058174
5.54035
4.51997
4.28206
4.08714
3.90782
3.74458
3.59288
3.44915
3.31112
3.17731
3.04667
2.91835
2.79164
2.666
2.54099
2.4163
2.29174
2.16718
2.04254
1.91783
1.79304
1.66821
1.54339
1.41861
1.29393
1.16938
1.04501
0.920834
0.796893
0.673219
0.549781
0.426774
0.303632
0.182186
0.0553598
5.37607
4.57956
4.29666
4.09653
3.91504
3.74953
3.59652
3.45199
3.31334
3.17902
3.04793
2.91921
2.79216
2.66624
2.54101
2.41618
2.29151
2.16689
2.04224
1.91752
1.79275
1.66795
1.54316
1.41842
1.29377
1.16925
1.0449
0.920749
0.796824
0.673166
0.549759
0.426754
0.30384
0.181957
0.0586889
5.42434
4.56973
4.29034
4.09404
3.9125
3.74798
3.59562
3.45143
3.31301
3.17887
3.04793
2.91933
2.79239
2.66654
2.54136
2.41655
2.29188
2.16723
2.04255
1.91779
1.79298
1.66814
1.54332
1.41854
1.29387
1.16932
1.04496
0.920799
0.796869
0.673205
0.549779
0.42677
0.303676
0.182088
0.0558432
5.17116
4.68495
4.32436
4.1102
3.92687
3.75681
3.60127
3.4557
3.31638
3.18157
3.05013
2.92114
2.79389
2.6678
2.54245
2.41753
2.29282
2.16817
2.04351
1.9188
1.79404
1.66926
1.54448
1.41976
1.29513
1.17063
1.04629
0.922147
0.798227
0.67457
0.551186
0.428179
0.305535
0.18345
0.0657085
5.44272
4.54841
4.29118
4.09191
3.91211
3.74736
3.59469
3.45042
3.31197
3.17781
3.04686
2.91825
2.79129
2.66544
2.54028
2.4155
2.29089
2.16632
2.04171
1.91704
1.79231
1.66755
1.54279
1.41808
1.29346
1.16897
1.04464
0.920506
0.796596
0.672958
0.549567
0.426579
0.303714
0.181765
0.0592999
5.43364
4.55727
4.29046
4.09308
3.9122
3.74762
3.59511
3.45084
3.31239
3.17824
3.04731
2.91874
2.79182
2.666
2.54086
2.41609
2.29147
2.16687
2.04223
1.91752
1.79275
1.66794
1.54315
1.4184
1.29374
1.16921
1.04486
0.920704
0.796779
0.67312
0.549703
0.426698
0.303666
0.181988
0.0568365
5.57783
4.50562
4.27879
4.08502
3.90614
3.74358
3.59228
3.4488
3.31097
3.17734
3.04686
2.91867
2.79208
2.66651
2.54153
2.41685
2.29227
2.16766
2.04298
1.91821
1.79338
1.66851
1.54364
1.41883
1.29412
1.16955
1.04516
0.920973
0.797022
0.67334
0.549894
0.426903
0.30367
0.182492
0.0540515
5.57769
4.50563
4.2788
4.08502
3.90614
3.74358
3.59228
3.4488
3.31097
3.17734
3.04686
2.91867
2.79208
2.66651
2.54154
2.41686
2.29227
2.16766
2.04298
1.91821
1.79337
1.6685
1.54364
1.41883
1.29412
1.16955
1.04515
0.920956
0.796988
0.673315
0.549873
0.426922
0.303728
0.182527
0.0540513
5.4844
4.54155
4.28527
4.09019
3.90974
3.74611
3.59416
3.45021
3.312
3.17804
3.04727
2.91884
2.79204
2.66631
2.54123
2.41648
2.29186
2.16725
2.04258
1.91784
1.79303
1.66819
1.54336
1.41858
1.29389
1.16935
1.04498
0.920808
0.796874
0.673206
0.54977
0.426763
0.303585
0.182176
0.0548815
5.39206
4.56271
4.29732
4.09535
3.91478
3.74922
3.59603
3.45144
3.31276
3.17842
3.04733
2.9186
2.79155
2.66563
2.54042
2.4156
2.29096
2.16637
2.04176
1.91708
1.79235
1.66759
1.54284
1.41813
1.29351
1.16902
1.04469
0.920561
0.796661
0.673028
0.549652
0.426657
0.303849
0.181714
0.0608085
5.33208
4.60108
4.30141
4.09886
3.91708
3.75089
3.59753
3.45286
3.31411
3.17969
3.04851
2.9197
2.79257
2.66658
2.54129
2.41641
2.29172
2.16707
2.0424
1.91768
1.79291
1.66811
1.54332
1.41858
1.29393
1.16941
1.04507
0.920913
0.796984
0.673327
0.549923
0.426919
0.304092
0.182061
0.0602892
5.50385
4.53101
4.28729
4.09009
3.91062
3.74635
3.59398
3.44986
3.31154
3.17748
3.04661
2.91809
2.7912
2.66542
2.5403
2.41556
2.29098
2.16642
2.04182
1.91714
1.79241
1.66764
1.54287
1.41815
1.29352
1.16901
1.04467
0.920532
0.79662
0.672976
0.54958
0.426584
0.303633
0.181792
0.0580761
5.42361
4.55594
4.29215
4.09351
3.91285
3.74799
3.59529
3.45093
3.31242
3.17822
3.04724
2.91862
2.79167
2.66582
2.54066
2.41588
2.29126
2.16668
2.04205
1.91736
1.79261
1.66782
1.54304
1.41831
1.29367
1.16916
1.04481
0.920667
0.796748
0.673096
0.54969
0.426687
0.303732
0.181918
0.0580692
5.46244
4.54258
4.28871
4.09072
3.91099
3.74661
3.59418
3.45004
3.3117
3.17763
3.04675
2.9182
2.7913
2.66549
2.54037
2.41561
2.29102
2.16645
2.04185
1.91717
1.79243
1.66766
1.5429
1.41818
1.29354
1.16904
1.0447
0.920557
0.796636
0.672989
0.549584
0.426595
0.303667
0.181854
0.0581322
5.53447
4.52906
4.28446
4.08821
3.90902
3.74529
3.59327
3.44938
3.31122
3.1773
3.04654
2.91811
2.7913
2.66556
2.54049
2.41578
2.29121
2.16665
2.04204
1.91736
1.79261
1.66782
1.54303
1.41829
1.29364
1.16912
1.04477
0.920615
0.796682
0.673023
0.549601
0.426613
0.303609
0.181959
0.0568589
5.57284
4.5194
4.28152
4.08653
3.9075
3.74436
3.59273
3.44906
3.31108
3.17731
3.0467
2.91839
2.7917
2.66606
2.54105
2.41637
2.2918
2.16723
2.0426
1.91787
1.79308
1.66825
1.54343
1.41865
1.29396
1.16941
1.04503
0.920854
0.796899
0.673224
0.54978
0.426793
0.303681
0.182252
0.0554051
5.43655
4.5512
4.29453
4.09303
3.91338
3.74823
3.59526
3.45082
3.31227
3.17801
3.04698
2.9183
2.79128
2.66538
2.54019
2.41538
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54269
1.41799
1.29337
1.16889
1.04457
0.920451
0.796564
0.672948
0.549582
0.426582
0.303784
0.181549
0.0613312
5.32403
4.59809
4.30353
4.09926
3.91776
3.75139
3.59781
3.45301
3.31416
3.17967
3.04843
2.91957
2.79241
2.66639
2.54109
2.4162
2.29151
2.16687
2.04221
1.9175
1.79274
1.66796
1.54318
1.41846
1.29383
1.16932
1.04498
0.920841
0.796922
0.673273
0.549888
0.426893
0.304144
0.181974
0.0617792
5.4567
4.54994
4.29451
4.09303
3.91336
3.74821
3.59524
3.45081
3.31225
3.178
3.04696
2.91828
2.79126
2.66537
2.54017
2.41536
2.29074
2.16616
2.04155
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.92043
0.796546
0.672932
0.549571
0.42657
0.30376
0.181523
0.061247
5.4326
4.54909
4.29448
4.09323
3.91339
3.74822
3.59524
3.45081
3.31225
3.178
3.04697
2.9183
2.79129
2.6654
2.54021
2.41541
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.29341
1.16892
1.0446
0.920477
0.796589
0.672971
0.549606
0.426606
0.303785
0.181588
0.0609883
5.49163
4.53191
4.28597
4.08962
3.90987
3.74593
3.59376
3.44974
3.31149
3.1775
3.0467
2.91824
2.79142
2.66569
2.54061
2.41589
2.29132
2.16676
2.04214
1.91746
1.7927
1.66791
1.54311
1.41837
1.29371
1.16918
1.04483
0.920675
0.796749
0.67309
0.549671
0.426668
0.303621
0.18198
0.0566481
5.43787
4.55075
4.29409
4.09282
3.91322
3.74813
3.59519
3.45077
3.31222
3.17798
3.04695
2.91828
2.79126
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04455
0.920434
0.796544
0.672927
0.549559
0.426561
0.303764
0.181553
0.0611854
5.40156
4.55926
4.29689
4.09459
3.91442
3.74895
3.59579
3.45123
3.31259
3.17827
3.04718
2.91847
2.79142
2.6655
2.54029
2.41548
2.29084
2.16626
2.04164
1.91697
1.79225
1.6675
1.54275
1.41805
1.29343
1.16894
1.04462
0.920501
0.796609
0.672986
0.549618
0.42662
0.303835
0.181607
0.0614125
5.31383
4.60882
4.30374
4.10002
3.91805
3.75151
3.59795
3.45321
3.31442
3.17998
3.04877
2.91995
2.7928
2.66678
2.54148
2.41658
2.29187
2.16721
2.04253
1.91781
1.79303
1.66823
1.54343
1.41869
1.29404
1.16952
1.04517
0.921014
0.797081
0.673418
0.550015
0.427007
0.304214
0.182121
0.0610335
5.40158
4.56332
4.29493
4.09442
3.91403
3.7488
3.59581
3.45132
3.31271
3.17842
3.04736
2.91867
2.79164
2.66574
2.54054
2.41573
2.29109
2.1665
2.04188
1.9172
1.79246
1.6677
1.54294
1.41822
1.2936
1.1691
1.04477
0.920629
0.796716
0.673074
0.549682
0.426688
0.303845
0.181837
0.059873
5.47331
4.544
4.29237
4.09223
3.91256
3.74765
3.59484
3.45049
3.312
3.1778
3.04682
2.91818
2.7912
2.66534
2.54017
2.41538
2.29077
2.1662
2.04159
1.91693
1.7922
1.66745
1.5427
1.41799
1.29338
1.16889
1.04457
0.920443
0.796552
0.672931
0.549563
0.426566
0.303715
0.181602
0.0601938
5.48375
4.53326
4.28747
4.09026
3.91056
3.74632
3.59397
3.44985
3.31153
3.17748
3.04663
2.91811
2.79124
2.66546
2.54036
2.41562
2.29104
2.16648
2.04187
1.9172
1.79246
1.66768
1.54291
1.41818
1.29354
1.16903
1.04469
0.920544
0.796628
0.67298
0.549578
0.42658
0.303605
0.181822
0.0576498
5.36031
4.57718
4.30009
4.0968
3.916
3.75013
3.59674
3.45204
3.31327
3.17885
3.04769
2.91891
2.7918
2.66584
2.54059
2.41574
2.29108
2.16647
2.04184
1.91715
1.79242
1.66765
1.54289
1.41818
1.29356
1.16907
1.04474
0.920613
0.796708
0.673073
0.549697
0.426705
0.303946
0.181748
0.0615799
5.41621
4.55425
4.2958
4.09388
3.91392
3.74859
3.59552
3.45102
3.31242
3.17813
3.04707
2.91838
2.79135
2.66544
2.54024
2.41543
2.2908
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.29341
1.16892
1.0446
0.920481
0.796592
0.672974
0.549609
0.426608
0.30381
0.181578
0.0613302
5.56455
4.52165
4.28209
4.08686
3.90781
3.74455
3.59284
3.44913
3.31111
3.1773
3.04666
2.91832
2.7916
2.66594
2.54092
2.41623
2.29167
2.1671
2.04247
1.91776
1.79298
1.66816
1.54334
1.41857
1.29389
1.16935
1.04498
0.920802
0.796851
0.67318
0.54974
0.426752
0.303663
0.182185
0.0557102
5.31641
4.61736
4.30233
4.10036
3.91775
3.75116
3.59773
3.45307
3.31436
3.18
3.04888
2.92013
2.79304
2.66706
2.54178
2.41689
2.29217
2.1675
2.0428
1.91805
1.79325
1.66842
1.5436
1.41883
1.29415
1.16961
1.04525
0.921079
0.797136
0.673467
0.55005
0.427038
0.304157
0.182198
0.0591634
5.3725
4.57517
4.29822
4.09669
3.91555
3.74986
3.59664
3.452
3.31327
3.17888
3.04775
2.919
2.79193
2.66599
2.54076
2.41593
2.29128
2.16667
2.04203
1.91734
1.79259
1.66781
1.54304
1.41832
1.29369
1.16918
1.04485
0.920706
0.79679
0.673142
0.549749
0.42675
0.303909
0.181887
0.0600441
5.46833
4.55092
4.28629
4.09124
3.91037
3.74662
3.59465
3.45067
3.31241
3.17841
3.04759
2.91911
2.79226
2.66648
2.54136
2.41658
2.29193
2.16729
2.04261
1.91785
1.79303
1.66818
1.54335
1.41856
1.29388
1.16933
1.04496
0.920793
0.79686
0.673194
0.549759
0.426751
0.303568
0.182148
0.0547649
5.4714
4.54012
4.28805
4.0904
3.91071
3.74643
3.59407
3.44997
3.31166
3.17761
3.04674
2.91822
2.79133
2.66554
2.54043
2.41568
2.29109
2.16653
2.04192
1.91724
1.79251
1.66773
1.54296
1.41824
1.2936
1.16909
1.04475
0.920601
0.796677
0.673026
0.549616
0.426627
0.30368
0.181904
0.0578614
5.37183
4.58263
4.29684
4.0963
3.91506
3.74954
3.5965
3.45197
3.31332
3.17898
3.04788
2.91915
2.79209
2.66616
2.54092
2.41609
2.29142
2.16681
2.04216
1.91745
1.79269
1.6679
1.54312
1.41838
1.29374
1.16923
1.04488
0.920736
0.796812
0.67316
0.549755
0.426757
0.303877
0.181946
0.0591548
5.26594
4.63331
4.3107
4.10379
3.92089
3.75321
3.59904
3.45402
3.31507
3.18052
3.04926
2.92039
2.79321
2.66717
2.54184
2.41691
2.29217
2.1675
2.0428
1.91805
1.79326
1.66845
1.54364
1.41889
1.29424
1.16971
1.04536
0.921195
0.797257
0.673588
0.550187
0.42718
0.304447
0.182289
0.062271
5.20735
4.66777
4.31844
4.10803
3.92451
3.75533
3.60039
3.45504
3.31587
3.18117
3.04981
2.92088
2.79368
2.66762
2.5423
2.4174
2.2927
2.16806
2.0434
1.91869
1.79393
1.66914
1.54436
1.41962
1.29498
1.17045
1.04609
0.921927
0.797981
0.674298
0.550885
0.427855
0.305137
0.182989
0.0634032
5.49084
4.5424
4.28935
4.09066
3.91132
3.74683
3.5943
3.45012
3.31174
3.17763
3.0467
2.91811
2.79117
2.66533
2.54018
2.41541
2.2908
2.16623
2.04163
1.91696
1.79223
1.66747
1.54272
1.41801
1.29339
1.1689
1.04457
0.920443
0.796536
0.6729
0.549512
0.426527
0.303664
0.181715
0.059245
5.55157
4.51728
4.28134
4.08669
3.90745
3.74436
3.59274
3.44907
3.31108
3.17731
3.0467
2.91841
2.79173
2.66611
2.54111
2.41643
2.29186
2.16729
2.04265
1.91792
1.79313
1.66829
1.54346
1.41867
1.29398
1.16943
1.04505
0.920875
0.796931
0.673254
0.549813
0.426806
0.303642
0.182248
0.055076
5.43531
4.5534
4.2907
4.09239
3.91212
3.74748
3.5949
3.45064
3.3122
3.17805
3.04711
2.91852
2.79158
2.66575
2.5406
2.41583
2.29122
2.16663
2.04201
1.91732
1.79258
1.66779
1.54302
1.41829
1.29365
1.16913
1.04479
0.920643
0.796719
0.673068
0.549659
0.426668
0.303726
0.181932
0.0580028
5.40309
4.55976
4.29626
4.09428
3.91416
3.74878
3.59567
3.45114
3.31252
3.17822
3.04715
2.91844
2.79141
2.66549
2.54028
2.41547
2.29084
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16893
1.04461
0.920489
0.796593
0.672967
0.549595
0.4266
0.303813
0.181627
0.061149
5.50274
4.53011
4.28657
4.08973
3.91023
3.7461
3.59382
3.44975
3.31145
3.17742
3.04659
2.91809
2.79123
2.66546
2.54036
2.41563
2.29105
2.1665
2.04189
1.91722
1.79248
1.66771
1.54293
1.4182
1.29356
1.16905
1.04471
0.920564
0.796647
0.672998
0.549595
0.426597
0.303619
0.181837
0.0576125
5.44857
4.546
4.29339
4.09275
3.91301
3.74795
3.59506
3.45066
3.31213
3.1779
3.04689
2.91824
2.79124
2.66536
2.54017
2.41538
2.29076
2.16619
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16888
1.04456
0.920442
0.796554
0.672936
0.54957
0.426571
0.303738
0.181573
0.0606414
5.5561
4.51262
4.28018
4.08599
3.90692
3.74404
3.59255
3.44896
3.31103
3.17732
3.04676
2.91851
2.79186
2.66625
2.54126
2.41658
2.292
2.16741
2.04275
1.918
1.79319
1.66834
1.54349
1.4187
1.294
1.16944
1.04505
0.920871
0.796911
0.673237
0.54979
0.426817
0.303653
0.182357
0.0545867
5.36772
4.5765
4.29884
4.0969
3.91576
3.74998
3.59671
3.45204
3.31329
3.17889
3.04775
2.91898
2.79191
2.66596
2.54072
2.41588
2.29123
2.16662
2.04198
1.91729
1.79255
1.66777
1.543
1.41828
1.29365
1.16915
1.04482
0.920676
0.796762
0.673116
0.549727
0.42673
0.303907
0.181855
0.0603283
5.31908
4.61817
4.30187
4.10086
3.91786
3.75122
3.59781
3.45313
3.31442
3.18007
3.04898
2.92027
2.79322
2.66728
2.54203
2.41716
2.29245
2.16777
2.04306
1.91829
1.79346
1.66861
1.54377
1.41898
1.29429
1.16973
1.04535
0.921168
0.797217
0.673533
0.550105
0.427079
0.304164
0.182237
0.0585727
5.26767
4.63211
4.31008
4.10335
3.9207
3.75311
3.59898
3.454
3.31507
3.18054
3.04929
2.92043
2.79325
2.6672
2.54188
2.41696
2.29223
2.16756
2.04287
1.91813
1.79334
1.66853
1.54373
1.41899
1.29433
1.16981
1.04545
0.921291
0.797352
0.673684
0.550282
0.427273
0.30454
0.182374
0.0624746
5.49727
4.5404
4.28852
4.09029
3.91097
3.74659
3.59414
3.45
3.31165
3.17756
3.04666
2.91809
2.79116
2.66533
2.54019
2.41542
2.29082
2.16626
2.04165
1.91698
1.79225
1.66749
1.54273
1.41802
1.2934
1.16891
1.04458
0.920445
0.796534
0.672895
0.549502
0.426517
0.303635
0.181732
0.058851
5.52804
4.52361
4.28238
4.08769
3.90788
3.7449
3.59331
3.44959
3.31156
3.17776
3.04713
2.91882
2.79213
2.66648
2.54145
2.41672
2.29211
2.16749
2.04281
1.91804
1.79321
1.66835
1.5435
1.4187
1.294
1.16944
1.04506
0.920882
0.796943
0.673272
0.549827
0.426819
0.303549
0.182322
0.053886
5.52764
4.52383
4.28241
4.0877
3.90789
3.74491
3.59332
3.44961
3.31158
3.17778
3.04715
2.91884
2.79214
2.66649
2.54145
2.41673
2.29212
2.1675
2.04281
1.91805
1.79321
1.66835
1.5435
1.4187
1.294
1.16944
1.04505
0.920868
0.79691
0.673239
0.549788
0.426817
0.303599
0.182394
0.0539113
5.49384
4.54197
4.28492
4.08998
3.90942
3.74607
3.59431
3.45046
3.31231
3.17839
3.04765
2.91922
2.79241
2.66667
2.54155
2.41677
2.29211
2.16746
2.04276
1.91798
1.79315
1.66829
1.54344
1.41864
1.29395
1.16939
1.04501
0.920833
0.796881
0.673213
0.549764
0.426783
0.303579
0.182299
0.0540858
5.30846
4.6267
4.30275
4.10129
3.91827
3.75143
3.59794
3.45325
3.31453
3.18017
3.04906
2.92034
2.79328
2.66735
2.5421
2.41724
2.29255
2.16789
2.04319
1.91843
1.79361
1.66875
1.54391
1.41911
1.29441
1.16985
1.04546
0.921277
0.797319
0.673637
0.550208
0.427185
0.304276
0.182331
0.0585748
5.24738
4.64856
4.31189
4.10491
3.92187
3.7537
3.59934
3.45426
3.31527
3.1807
3.04944
2.92059
2.79344
2.66744
2.54215
2.41727
2.29257
2.16791
2.04323
1.91848
1.79369
1.66886
1.54405
1.41928
1.29461
1.17008
1.04571
0.921534
0.797584
0.673903
0.550487
0.427461
0.304696
0.182569
0.0619529
5.50042
4.53946
4.28473
4.08963
3.90913
3.74595
3.59427
3.45047
3.31234
3.17844
3.0477
2.91928
2.79247
2.66673
2.54161
2.41682
2.29216
2.1675
2.04279
1.91801
1.79317
1.6683
1.54344
1.41864
1.29394
1.16938
1.045
0.920831
0.796898
0.673231
0.549787
0.426774
0.303487
0.182229
0.0537149
5.50066
4.5393
4.28471
4.08962
3.90912
3.74594
3.59426
3.45046
3.31233
3.17843
3.04769
2.91927
2.79247
2.66672
2.54161
2.41682
2.29216
2.1675
2.04279
1.91801
1.79316
1.66829
1.54344
1.41864
1.29394
1.16938
1.045
0.920818
0.796864
0.673194
0.549741
0.426761
0.303534
0.182314
0.0537532
5.46271
4.55001
4.2934
4.09243
3.91291
3.74791
3.59504
3.45066
3.31214
3.17791
3.0469
2.91824
2.79124
2.66535
2.54016
2.41536
2.29074
2.16616
2.04155
1.91689
1.79216
1.66741
1.54267
1.41796
1.29335
1.16887
1.04455
0.920427
0.796536
0.672916
0.549547
0.426553
0.303753
0.181576
0.0609502
5.46239
4.54572
4.29324
4.0926
3.91299
3.74795
3.59505
3.45066
3.31214
3.17791
3.04689
2.91823
2.79123
2.66534
2.54016
2.41536
2.29074
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.920426
0.796541
0.672926
0.549563
0.426563
0.303736
0.181546
0.0608198
5.1526
4.69425
4.32744
4.11126
3.92816
3.75761
3.60175
3.45606
3.31667
3.1818
3.05031
2.92129
2.79401
2.66791
2.54255
2.41762
2.2929
2.16825
2.04359
1.91888
1.79412
1.66934
1.54457
1.41985
1.29522
1.17072
1.04639
0.922254
0.798342
0.674694
0.551324
0.428329
0.305724
0.183731
0.0672094
5.47557
4.53869
4.28742
4.09015
3.91044
3.74626
3.59397
3.4499
3.31161
3.17759
3.04674
2.91824
2.79137
2.66559
2.54049
2.41575
2.29116
2.16659
2.04198
1.9173
1.79256
1.66777
1.543
1.41826
1.29362
1.16911
1.04476
0.920612
0.796684
0.673031
0.549617
0.426628
0.303656
0.181935
0.0574453
5.33114
4.60435
4.30165
4.09962
3.91724
3.75091
3.59753
3.45284
3.31409
3.17969
3.04853
2.91975
2.79264
2.66666
2.54139
2.41651
2.29181
2.16716
2.04248
1.91775
1.79296
1.66815
1.54335
1.4186
1.29394
1.16941
1.04505
0.920894
0.796961
0.673293
0.549882
0.426871
0.304004
0.182042
0.0594181
5.50709
4.52906
4.28439
4.0883
3.90896
3.74526
3.59328
3.4494
3.31126
3.17735
3.04662
2.9182
2.7914
2.66569
2.54063
2.41592
2.29135
2.16679
2.04217
1.91748
1.79272
1.66793
1.54313
1.41839
1.29373
1.1692
1.04484
0.920683
0.796745
0.673083
0.549656
0.426667
0.303638
0.182034
0.0565395
5.35284
4.59792
4.29823
4.09783
3.91587
3.75006
3.59699
3.45248
3.31385
3.17952
3.04842
2.91968
2.7926
2.66664
2.54138
2.41652
2.29183
2.16718
2.0425
1.91777
1.79298
1.66816
1.54335
1.41859
1.29393
1.1694
1.04504
0.920879
0.796943
0.673281
0.549867
0.426863
0.303953
0.18206
0.0585952
5.4785
4.5432
4.28589
4.09053
3.91006
3.74628
3.59424
3.45024
3.312
3.17802
3.04723
2.91879
2.79198
2.66625
2.54117
2.41643
2.29182
2.16722
2.04256
1.91783
1.79303
1.6682
1.54337
1.4186
1.29392
1.16937
1.045
0.920836
0.796901
0.673233
0.549798
0.42679
0.303636
0.182178
0.0552373
5.48756
4.5323
4.28705
4.09011
3.91042
3.74626
3.59395
3.44986
3.31155
3.17752
3.04668
2.91818
2.79132
2.66556
2.54046
2.41573
2.29115
2.1666
2.04199
1.91731
1.79257
1.66779
1.54301
1.41828
1.29364
1.16912
1.04477
0.920626
0.796706
0.673053
0.549645
0.426644
0.30365
0.1819
0.0574343
5.47098
4.53733
4.28818
4.0909
3.91094
3.74663
3.59423
3.45007
3.31171
3.17764
3.04678
2.91825
2.79138
2.6656
2.54049
2.41575
2.29117
2.1666
2.04199
1.91731
1.79256
1.66778
1.543
1.41827
1.29362
1.16911
1.04476
0.920612
0.796692
0.67304
0.549631
0.426631
0.303636
0.181894
0.0574158
5.51243
4.52742
4.28507
4.08892
3.90948
3.74564
3.59354
3.44956
3.31134
3.17738
3.0466
2.91815
2.79134
2.66561
2.54054
2.41583
2.29126
2.16671
2.0421
1.91741
1.79266
1.66787
1.54309
1.41834
1.29369
1.16916
1.04481
0.920657
0.796731
0.673073
0.549656
0.426654
0.30362
0.181952
0.05681
5.43093
4.55177
4.29299
4.09266
3.91282
3.74785
3.59502
3.45065
3.31215
3.17794
3.04694
2.91829
2.79131
2.66543
2.54025
2.41546
2.29084
2.16627
2.04166
1.91699
1.79226
1.66751
1.54275
1.41805
1.29343
1.16894
1.04462
0.920493
0.79659
0.672959
0.549577
0.426588
0.303763
0.181705
0.0601618
5.41282
4.55467
4.29565
4.09418
3.91394
3.7486
3.59554
3.45103
3.31242
3.17814
3.04709
2.9184
2.79138
2.66548
2.54028
2.41548
2.29085
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29344
1.16895
1.04462
0.920499
0.796604
0.672978
0.549606
0.426609
0.30379
0.181646
0.0606982
5.57366
4.51702
4.28079
4.08615
3.90722
3.74417
3.59258
3.44894
3.31097
3.17722
3.04661
2.91831
2.79162
2.66598
2.54097
2.41628
2.29171
2.16714
2.0425
1.91777
1.79298
1.66815
1.54332
1.41854
1.29386
1.16931
1.04493
0.920759
0.796808
0.673137
0.549695
0.426713
0.303597
0.18219
0.0552213
5.4574
4.5505
4.29438
4.09292
3.91335
3.74822
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54268
1.41798
1.29336
1.16888
1.04456
0.92044
0.796555
0.672941
0.549578
0.426576
0.303776
0.181528
0.0613771
5.48269
4.5461
4.29102
4.09138
3.91192
3.74724
3.59458
3.45033
3.3119
3.17775
3.04679
2.91818
2.79122
2.66537
2.54021
2.41543
2.29082
2.16625
2.04164
1.91697
1.79225
1.66749
1.54274
1.41804
1.29342
1.16893
1.04461
0.92048
0.796576
0.672944
0.549562
0.426574
0.303735
0.181715
0.0598227
5.4783
4.5424
4.29175
4.09194
3.9123
3.74747
3.59471
3.45039
3.31192
3.17773
3.04676
2.91814
2.79117
2.66531
2.54014
2.41535
2.29074
2.16617
2.04157
1.9169
1.79217
1.66742
1.54267
1.41796
1.29334
1.16885
1.04453
0.920407
0.796515
0.672893
0.549523
0.426528
0.30367
0.181593
0.059914
5.39468
4.56367
4.29633
4.09528
3.91454
3.7491
3.596
3.45144
3.31278
3.17846
3.04738
2.91867
2.79164
2.66573
2.54052
2.41571
2.29108
2.16649
2.04187
1.91718
1.79245
1.66768
1.54292
1.4182
1.29357
1.16908
1.04474
0.92061
0.796701
0.67306
0.549672
0.426675
0.303829
0.1818
0.0599597
5.40082
4.56621
4.29423
4.09435
3.91375
3.74861
3.59572
3.45129
3.31271
3.17844
3.04741
2.91873
2.79172
2.66583
2.54063
2.41583
2.29119
2.1666
2.04197
1.91728
1.79254
1.66776
1.54299
1.41827
1.29363
1.16913
1.04479
0.920649
0.79673
0.673084
0.549684
0.42669
0.30381
0.181887
0.0591331
5.48455
4.54421
4.2902
4.09103
3.91166
3.74707
3.59446
3.45024
3.31183
3.17768
3.04674
2.91813
2.79118
2.66532
2.54016
2.41538
2.29077
2.1662
2.04159
1.91692
1.7922
1.66744
1.54269
1.41798
1.29337
1.16887
1.04455
0.920423
0.796519
0.672888
0.549505
0.42652
0.303675
0.181679
0.0596218
5.33028
4.59379
4.30305
4.09886
3.91749
3.7512
3.59764
3.45284
3.314
3.17951
3.04828
2.91943
2.79228
2.66627
2.54098
2.4161
2.29141
2.16678
2.04213
1.91742
1.79267
1.66789
1.54312
1.4184
1.29377
1.16927
1.04493
0.920792
0.796875
0.673229
0.549847
0.426854
0.304107
0.181924
0.0618016
5.43182
4.55168
4.29329
4.09277
3.91294
3.74793
3.59507
3.45069
3.31217
3.17795
3.04694
2.91829
2.7913
2.66542
2.54024
2.41544
2.29082
2.16625
2.04164
1.91697
1.79224
1.66749
1.54273
1.41803
1.29341
1.16892
1.0446
0.920475
0.796574
0.672944
0.549565
0.426576
0.303757
0.181678
0.0603005
5.40778
4.57992
4.29182
4.09533
3.9133
3.7485
3.59606
3.45186
3.31345
3.1793
3.04835
2.91973
2.79276
2.66687
2.54166
2.41681
2.29211
2.16744
2.04273
1.91796
1.79313
1.66827
1.54343
1.41865
1.29396
1.16941
1.04504
0.920876
0.796942
0.673274
0.549846
0.426834
0.303745
0.182126
0.0558985
5.48698
4.53406
4.2861
4.08987
3.90995
3.74601
3.59385
3.44982
3.31156
3.17757
3.04678
2.91832
2.79151
2.66577
2.5407
2.41598
2.2914
2.16684
2.04222
1.91752
1.79276
1.66796
1.54316
1.41841
1.29374
1.16922
1.04486
0.9207
0.796772
0.67311
0.549688
0.426684
0.303617
0.182015
0.0563522
5.41483
4.55502
4.29483
4.09417
3.91375
3.74849
3.59549
3.45101
3.31241
3.17814
3.04711
2.91844
2.79143
2.66555
2.54036
2.41556
2.29094
2.16636
2.04175
1.91707
1.79234
1.66758
1.54282
1.41811
1.29349
1.16899
1.04466
0.920532
0.796629
0.672993
0.549611
0.426615
0.303762
0.181724
0.0598743
5.45915
4.55054
4.2938
4.0926
3.91307
3.74803
3.59512
3.45072
3.31219
3.17795
3.04693
2.91826
2.79125
2.66536
2.54016
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29335
1.16886
1.04455
0.920426
0.796537
0.672919
0.549552
0.426555
0.303757
0.181553
0.0611269
5.45757
4.55028
4.29438
4.09294
3.91336
3.74823
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41798
1.29337
1.16888
1.04456
0.920442
0.796557
0.672944
0.549582
0.42658
0.303778
0.181529
0.0613775
5.40084
4.58107
4.29284
4.09572
3.91374
3.74879
3.59625
3.45198
3.31351
3.17931
3.04832
2.91968
2.79268
2.66679
2.54157
2.41672
2.29202
2.16735
2.04265
1.91788
1.79306
1.66821
1.54338
1.4186
1.29392
1.16938
1.04501
0.92085
0.796918
0.673252
0.549828
0.426817
0.303761
0.182097
0.0563585
5.58252
4.50435
4.27832
4.08477
3.906
3.74349
3.59223
3.44878
3.31097
3.17735
3.04688
2.9187
2.79211
2.66655
2.54158
2.4169
2.29231
2.1677
2.04302
1.91825
1.79341
1.66854
1.54367
1.41886
1.29415
1.16957
1.04518
0.920993
0.797039
0.673355
0.549908
0.426917
0.303687
0.18251
0.054064
5.58222
4.50429
4.27831
4.08477
3.906
3.7435
3.59224
3.44879
3.31098
3.17736
3.04689
2.91871
2.79212
2.66655
2.54158
2.4169
2.29232
2.16771
2.04302
1.91825
1.79341
1.66854
1.54367
1.41886
1.29415
1.16957
1.04517
0.920977
0.797008
0.673334
0.549892
0.426941
0.303747
0.182544
0.0540626
5.42312
4.57473
4.29016
4.09441
3.91254
3.74804
3.59578
3.45168
3.31335
3.17927
3.04837
2.91979
2.79283
2.66695
2.54173
2.41687
2.29216
2.16748
2.04276
1.91797
1.79314
1.66828
1.54343
1.41864
1.29395
1.1694
1.04503
0.920864
0.79693
0.673263
0.549832
0.42682
0.303695
0.182138
0.0554068
5.27281
4.62778
4.30991
4.1031
3.92047
3.753
3.59891
3.45393
3.315
3.18046
3.0492
2.92033
2.79314
2.66709
2.54176
2.41683
2.2921
2.16743
2.04274
1.918
1.79322
1.66841
1.54362
1.41887
1.29422
1.1697
1.04534
0.921185
0.79725
0.673585
0.550189
0.427186
0.304464
0.182285
0.0625346
5.54333
4.5168
4.2813
4.08679
3.90727
3.74441
3.5929
3.44926
3.3113
3.17755
3.04698
2.91872
2.79207
2.66645
2.54144
2.41674
2.29215
2.16754
2.04286
1.91809
1.79326
1.6684
1.54354
1.41874
1.29404
1.16947
1.04508
0.920897
0.796935
0.673263
0.549815
0.42685
0.303639
0.182438
0.0539753
5.54479
4.51621
4.28118
4.0867
3.90722
3.74436
3.59286
3.44923
3.31127
3.17753
3.04696
2.91871
2.79206
2.66645
2.54144
2.41674
2.29215
2.16754
2.04286
1.9181
1.79327
1.6684
1.54355
1.41875
1.29404
1.16948
1.04509
0.920915
0.796972
0.673297
0.549851
0.426849
0.30359
0.182382
0.0539614
5.15051
4.69484
4.32802
4.11148
3.9283
3.75771
3.60182
3.45611
3.31671
3.18182
3.05033
2.92131
2.79403
2.66792
2.54256
2.41763
2.29291
2.16826
2.04359
1.91888
1.79412
1.66934
1.54458
1.41986
1.29523
1.17073
1.0464
0.922262
0.79835
0.674702
0.551332
0.428338
0.305738
0.183752
0.0674515
5.24329
4.65354
4.31241
4.10589
3.92232
3.75393
3.59953
3.4544
3.31538
3.1808
3.04953
2.92068
2.79353
2.66752
2.54223
2.41735
2.29266
2.16802
2.04336
1.91864
1.79388
1.66908
1.54429
1.41954
1.29488
1.17034
1.04596
0.92178
0.797817
0.674118
0.550683
0.427637
0.304832
0.182722
0.0610552
5.52859
4.53092
4.2851
4.08862
3.90943
3.74557
3.59346
3.44953
3.31133
3.17737
3.04659
2.91812
2.79129
2.66554
2.54046
2.41573
2.29116
2.1666
2.042
1.91732
1.79258
1.6678
1.54302
1.41828
1.29364
1.16912
1.04478
0.920624
0.796693
0.673036
0.549618
0.426628
0.303648
0.181945
0.0572759
5.43826
4.55067
4.29465
4.09312
3.91345
3.74828
3.59529
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79218
1.66743
1.54269
1.41799
1.29338
1.16889
1.04457
0.920452
0.796566
0.672952
0.549588
0.426587
0.303786
0.181539
0.0613752
5.46131
4.53994
4.28961
4.09161
3.91159
3.74705
3.59452
3.45029
3.31188
3.17776
3.04685
2.91829
2.79139
2.66558
2.54046
2.4157
2.29111
2.16655
2.04194
1.91727
1.79253
1.66775
1.54298
1.41826
1.29362
1.16911
1.04477
0.920627
0.796712
0.673063
0.549661
0.426661
0.303704
0.181877
0.0580989
5.52933
4.52244
4.28213
4.08748
3.90776
3.74472
3.59311
3.4494
3.31138
3.1776
3.04699
2.91869
2.79201
2.66638
2.54136
2.41666
2.29206
2.16746
2.04279
1.91803
1.79321
1.66835
1.5435
1.41871
1.29401
1.16945
1.04507
0.92089
0.796948
0.673273
0.549828
0.426824
0.303585
0.182324
0.0541884
5.5276
4.5226
4.28213
4.08755
3.90786
3.74483
3.59321
3.44949
3.31146
3.17766
3.04704
2.91873
2.79204
2.66639
2.54136
2.41665
2.29205
2.16744
2.04277
1.91801
1.79319
1.66833
1.54348
1.41869
1.29399
1.16943
1.04505
0.920866
0.796909
0.673238
0.54979
0.426817
0.303619
0.18237
0.0541952
5.27468
4.62919
4.30893
4.10284
3.92028
3.75286
3.59884
3.45391
3.31502
3.18052
3.04928
2.92043
2.79326
2.66722
2.54189
2.41696
2.29223
2.16755
2.04286
1.91811
1.79332
1.6685
1.5437
1.41895
1.2943
1.16977
1.04541
0.921253
0.797315
0.673647
0.550244
0.427234
0.304488
0.182333
0.0621571
5.24453
4.65141
4.3124
4.10567
3.92219
3.75387
3.59948
3.45437
3.31535
3.18077
3.04951
2.92066
2.7935
2.6675
2.54221
2.41733
2.29264
2.168
2.04333
1.9186
1.79382
1.66901
1.54421
1.41945
1.29478
1.17024
1.04587
0.921687
0.797729
0.674036
0.550607
0.427569
0.304778
0.182665
0.0613605
5.29796
4.62802
4.30451
4.10174
3.91882
3.75179
3.59814
3.45338
3.3146
3.18019
3.04905
2.92029
2.7932
2.66724
2.54198
2.4171
2.29239
2.16773
2.04303
1.91827
1.79346
1.66862
1.54379
1.41901
1.29433
1.16978
1.0454
0.921222
0.797271
0.673594
0.550171
0.427151
0.304282
0.18229
0.0594087
5.47506
4.54699
4.29151
4.0916
3.91216
3.7474
3.59469
3.45041
3.31196
3.17779
3.04682
2.91819
2.79122
2.66536
2.54019
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.2934
1.16891
1.04459
0.920463
0.796562
0.672934
0.549556
0.426568
0.303742
0.181679
0.0601369
5.39185
4.57671
4.2944
4.09576
3.91422
3.74904
3.59626
3.45184
3.31327
3.17901
3.04797
2.91929
2.79228
2.66638
2.54117
2.41634
2.29168
2.16705
2.04239
1.91766
1.79288
1.66806
1.54326
1.41851
1.29384
1.16932
1.04496
0.920806
0.796878
0.673217
0.549801
0.426792
0.303813
0.182034
0.0576418
5.36448
4.57562
4.2995
4.09641
3.91568
3.74988
3.59653
3.45186
3.31311
3.17872
3.04757
2.9188
2.79171
2.66576
2.54051
2.41567
2.29102
2.16642
2.04179
1.9171
1.79237
1.6676
1.54285
1.41814
1.29352
1.16903
1.0447
0.920571
0.796667
0.673034
0.549659
0.426668
0.303905
0.181718
0.0614486
5.30867
4.61462
4.30431
4.10058
3.91833
3.75162
3.598
3.45323
3.31441
3.17995
3.04873
2.9199
2.79274
2.66672
2.54142
2.41652
2.29181
2.16715
2.04247
1.91773
1.79295
1.66815
1.54335
1.41861
1.29396
1.16944
1.04509
0.920933
0.797001
0.67334
0.549937
0.42693
0.304127
0.182061
0.0606658
5.50869
4.52892
4.28409
4.08838
3.90879
3.74522
3.59332
3.44946
3.31134
3.17746
3.04675
2.91836
2.7916
2.66591
2.54086
2.41615
2.29157
2.167
2.04237
1.91766
1.79288
1.66807
1.54325
1.41849
1.29382
1.16928
1.04491
0.920746
0.796802
0.673136
0.549702
0.426716
0.303633
0.182141
0.0557814
5.48287
4.5415
4.29145
4.09185
3.9122
3.7474
3.59468
3.45037
3.31191
3.17773
3.04677
2.91816
2.7912
2.66534
2.54018
2.41541
2.2908
2.16623
2.04163
1.91696
1.79224
1.66748
1.54273
1.41802
1.29341
1.16891
1.04459
0.920462
0.796566
0.672941
0.549567
0.426572
0.303704
0.18165
0.0597649
5.53602
4.5268
4.28448
4.08846
3.90913
3.74542
3.59339
3.44946
3.31127
3.17733
3.04657
2.91813
2.79133
2.66561
2.54055
2.41585
2.29128
2.16673
2.04212
1.91743
1.79268
1.66788
1.54309
1.41835
1.29369
1.16916
1.04481
0.920654
0.796727
0.673067
0.549649
0.426646
0.303602
0.181955
0.0566235
5.44515
4.54907
4.29306
4.09239
3.91284
3.74786
3.595
3.45063
3.31212
3.1779
3.0469
2.91824
2.79125
2.66536
2.54018
2.41538
2.29076
2.16618
2.04158
1.91691
1.79219
1.66743
1.54269
1.41799
1.29337
1.16889
1.04457
0.920445
0.796551
0.672929
0.549558
0.426566
0.303762
0.181609
0.0607945
5.41642
4.55379
4.2948
4.09403
3.9137
3.74844
3.59544
3.45095
3.31236
3.1781
3.04706
2.91839
2.79139
2.6655
2.54031
2.41551
2.29089
2.16631
2.0417
1.91703
1.7923
1.66754
1.54279
1.41808
1.29346
1.16896
1.04464
0.920506
0.796605
0.672973
0.549595
0.426599
0.303755
0.181689
0.0600676
5.45168
4.54456
4.29278
4.09257
3.91271
3.74774
3.59491
3.45055
3.31205
3.17785
3.04687
2.91824
2.79127
2.66541
2.54024
2.41546
2.29085
2.16629
2.04168
1.91702
1.7923
1.66754
1.54279
1.41809
1.29347
1.16898
1.04465
0.920524
0.796629
0.673002
0.549628
0.426629
0.303771
0.181685
0.0600664
5.31258
4.60357
4.3052
4.10019
3.91837
3.75176
3.59805
3.4532
3.31432
3.17979
3.04854
2.91967
2.79249
2.66646
2.54115
2.41626
2.29156
2.16691
2.04225
1.91754
1.79277
1.66799
1.54321
1.41848
1.29385
1.16934
1.045
0.920857
0.796937
0.673285
0.5499
0.426906
0.304168
0.181989
0.0619766
5.30809
4.6067
4.3055
4.10041
3.91856
3.75189
3.59816
3.4533
3.31442
3.1799
3.04864
2.91976
2.79258
2.66655
2.54123
2.41633
2.29162
2.16698
2.04231
1.91759
1.79283
1.66804
1.54326
1.41853
1.29389
1.16938
1.04504
0.920897
0.796974
0.673322
0.549935
0.426941
0.304206
0.182024
0.0620498
5.48957
4.53483
4.28583
4.08941
3.90969
3.74581
3.5937
3.44973
3.31152
3.17756
3.04678
2.91833
2.79151
2.66578
2.5407
2.41598
2.2914
2.16683
2.04221
1.91751
1.79274
1.66794
1.54315
1.4184
1.29374
1.16921
1.04485
0.920691
0.796754
0.673093
0.549667
0.426679
0.303642
0.182052
0.0564572
5.61258
4.50377
4.27798
4.08451
3.90586
3.7434
3.59217
3.44874
3.31095
3.17734
3.04687
2.9187
2.79211
2.66654
2.54157
2.41689
2.2923
2.16769
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29414
1.16956
1.04516
0.920964
0.796995
0.673319
0.549877
0.426927
0.303738
0.182529
0.0541036
5.61071
4.50439
4.27815
4.08461
3.90591
3.74343
3.59218
3.44874
3.31094
3.17733
3.04686
2.91868
2.7921
2.66653
2.54156
2.41688
2.29229
2.16769
2.043
1.91823
1.7934
1.66852
1.54366
1.41885
1.29414
1.16956
1.04517
0.920981
0.797027
0.673342
0.549895
0.426905
0.303682
0.182499
0.054109
5.59531
4.5033
4.27814
4.08464
3.90592
3.74343
3.59218
3.44874
3.31094
3.17732
3.04685
2.91868
2.79209
2.66653
2.54155
2.41687
2.29229
2.16768
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16956
1.04516
0.920961
0.796992
0.673318
0.549878
0.426929
0.303739
0.182533
0.0540788
5.59523
4.50355
4.27818
4.08467
3.90594
3.74344
3.59218
3.44874
3.31093
3.17732
3.04685
2.91867
2.79208
2.66652
2.54155
2.41687
2.29229
2.16768
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16956
1.04516
0.920977
0.797024
0.67334
0.549894
0.426905
0.30368
0.182503
0.0540828
5.42517
4.57114
4.29015
4.09369
3.91226
3.74783
3.59556
3.45144
3.31309
3.17899
3.04808
2.9195
2.79256
2.6667
2.5415
2.41667
2.29198
2.16732
2.04262
1.91786
1.79304
1.66819
1.54336
1.41858
1.2939
1.16936
1.04499
0.920825
0.796885
0.673224
0.549795
0.426805
0.303726
0.182159
0.0557767
5.3778
4.59354
4.29495
4.09726
3.91481
3.74941
3.5967
3.45237
3.3139
3.17974
3.04878
2.92016
2.79317
2.66726
2.54201
2.41712
2.29239
2.16768
2.04293
1.91813
1.79328
1.66841
1.54355
1.41876
1.29406
1.16951
1.04513
0.920961
0.797022
0.673351
0.549924
0.426908
0.303876
0.182151
0.0567031
5.42147
4.55489
4.29328
4.09307
3.91306
3.74804
3.59519
3.4508
3.31227
3.17805
3.04704
2.91839
2.79139
2.66551
2.54033
2.41554
2.29092
2.16634
2.04172
1.91705
1.79232
1.66756
1.54281
1.4181
1.29348
1.16899
1.04466
0.920529
0.796622
0.672986
0.5496
0.42661
0.303773
0.181754
0.0599104
5.22251
4.65748
4.31653
4.10676
3.92351
3.75477
3.60002
3.45476
3.31565
3.18099
3.04966
2.92076
2.79356
2.66752
2.54221
2.41731
2.2926
2.16794
2.04326
1.91852
1.79373
1.66892
1.54411
1.41935
1.29469
1.17015
1.04579
0.921617
0.797671
0.673993
0.550589
0.427573
0.304876
0.182709
0.0635753
5.55884
4.52144
4.28221
4.08715
3.90801
3.7447
3.59294
3.44917
3.3111
3.17725
3.04657
2.91821
2.79147
2.66579
2.54076
2.41607
2.29151
2.16695
2.04232
1.91762
1.79285
1.66803
1.54322
1.41846
1.29379
1.16925
1.04488
0.920718
0.796784
0.673116
0.549687
0.426682
0.30358
0.182052
0.0557936
5.54456
4.52455
4.28351
4.08792
3.90868
3.74513
3.5932
3.44933
3.31118
3.17727
3.04654
2.91813
2.79134
2.66564
2.54059
2.41588
2.29132
2.16676
2.04214
1.91745
1.79269
1.66789
1.5431
1.41834
1.29368
1.16915
1.0448
0.92064
0.796712
0.67305
0.54963
0.426627
0.303563
0.181961
0.0562901
5.52489
4.5258
4.28346
4.08775
3.90861
3.74502
3.5931
3.44926
3.31113
3.17724
3.04651
2.9181
2.79131
2.66559
2.54053
2.41582
2.29125
2.16669
2.04207
1.91738
1.79262
1.66783
1.54304
1.41829
1.29363
1.16911
1.04475
0.920596
0.796661
0.673001
0.549577
0.426591
0.303566
0.181967
0.056469
5.3017
4.62357
4.30442
4.10134
3.91861
3.7517
3.59808
3.45333
3.31455
3.18015
3.049
2.92023
2.79313
2.66716
2.54188
2.41699
2.29228
2.16762
2.04292
1.91817
1.79337
1.66853
1.54371
1.41894
1.29427
1.16972
1.04535
0.921175
0.797226
0.673551
0.550131
0.427113
0.304258
0.182252
0.0597836
5.31136
4.60605
4.30522
4.10049
3.91845
3.75177
3.59806
3.45319
3.3143
3.17977
3.04852
2.91966
2.79249
2.66646
2.54116
2.41626
2.29156
2.16691
2.04224
1.91753
1.79276
1.66797
1.54319
1.41846
1.29382
1.16931
1.04497
0.920825
0.796903
0.673249
0.549861
0.426866
0.304113
0.181972
0.0615656
5.3822
4.56752
4.2983
4.09566
3.91521
3.74955
3.59627
3.45163
3.31292
3.17855
3.04742
2.91868
2.79161
2.66567
2.54044
2.41561
2.29097
2.16637
2.04175
1.91707
1.79234
1.66759
1.54283
1.41813
1.29351
1.16902
1.0447
0.920572
0.796673
0.673043
0.549669
0.426674
0.303899
0.181698
0.0614021
5.47365
4.53827
4.2874
4.09066
3.91059
3.74644
3.59415
3.45004
3.31172
3.17768
3.04684
2.91835
2.7915
2.66574
2.54065
2.41592
2.29133
2.16677
2.04215
1.91745
1.7927
1.6679
1.54311
1.41836
1.29371
1.16919
1.04483
0.920679
0.796754
0.673095
0.549678
0.426674
0.303634
0.181979
0.0567637
5.45616
4.55091
4.29433
4.09286
3.91329
3.74818
3.59522
3.4508
3.31225
3.178
3.04697
2.91829
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04456
0.920438
0.796552
0.672937
0.549573
0.426572
0.303773
0.181534
0.0613394
5.43756
4.55003
4.29202
4.09228
3.91246
3.74761
3.59486
3.45054
3.31207
3.17788
3.04691
2.91828
2.79131
2.66545
2.54028
2.4155
2.29088
2.16631
2.0417
1.91703
1.7923
1.66755
1.54279
1.41808
1.29346
1.16897
1.04465
0.920515
0.796607
0.672972
0.549584
0.426595
0.303749
0.181754
0.0596911
5.45763
4.55078
4.29403
4.09271
3.91316
3.74809
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79125
2.66536
2.54016
2.41536
2.29073
2.16615
2.04155
1.91688
1.79216
1.6674
1.54266
1.41796
1.29334
1.16886
1.04454
0.920423
0.796535
0.672918
0.549551
0.426552
0.303755
0.181539
0.0612033
5.25151
4.64965
4.3109
4.10478
3.92162
3.7535
3.59922
3.45418
3.31521
3.18066
3.04942
2.92058
2.79343
2.66743
2.54215
2.41727
2.29258
2.16794
2.04326
1.91853
1.79374
1.66893
1.54411
1.41935
1.29467
1.17013
1.04575
0.92157
0.797612
0.673923
0.550497
0.427463
0.304662
0.182564
0.0610967
5.43705
4.54818
4.29181
4.09302
3.91265
3.7478
3.59506
3.4507
3.31219
3.17799
3.04702
2.91841
2.79146
2.66562
2.54047
2.4157
2.29109
2.16652
2.0419
1.91722
1.79248
1.6677
1.54293
1.41821
1.29357
1.16906
1.04473
0.920584
0.796671
0.673024
0.549626
0.426627
0.303693
0.181831
0.0584145
5.55031
4.51419
4.28067
4.08633
3.90697
3.74416
3.5927
3.44911
3.31118
3.17747
3.04693
2.91869
2.79206
2.66646
2.54147
2.41678
2.29219
2.16758
2.0429
1.91814
1.79331
1.66845
1.54359
1.41878
1.29408
1.16951
1.04512
0.920943
0.796996
0.673318
0.549871
0.426871
0.303623
0.182413
0.0540435
5.52994
4.52248
4.28213
4.08755
3.9078
3.74479
3.59319
3.44948
3.31145
3.17767
3.04705
2.91875
2.79207
2.66643
2.54141
2.4167
2.2921
2.16749
2.04281
1.91805
1.79322
1.66836
1.54351
1.41872
1.29402
1.16945
1.04507
0.920896
0.796955
0.673281
0.549835
0.42683
0.303579
0.182335
0.0540738
5.52255
4.5254
4.28251
4.08792
3.90809
3.74504
3.59341
3.44967
3.31161
3.17779
3.04715
2.91882
2.79211
2.66645
2.54141
2.41669
2.29207
2.16746
2.04278
1.91801
1.79319
1.66833
1.54348
1.41869
1.29399
1.16943
1.04504
0.920863
0.796906
0.673235
0.549786
0.426812
0.303604
0.182369
0.0540678
5.25515
4.63885
4.312
4.10433
3.92148
3.75358
3.59927
3.45421
3.31522
3.18065
3.04937
2.92049
2.79329
2.66723
2.54189
2.41696
2.29222
2.16754
2.04284
1.9181
1.79331
1.6685
1.5437
1.41895
1.29429
1.16977
1.04541
0.921249
0.797311
0.673644
0.550246
0.427241
0.304529
0.182355
0.0628078
5.43439
4.55072
4.29477
4.0932
3.91349
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04457
0.920452
0.796566
0.672952
0.549589
0.426587
0.303784
0.18154
0.0613417
5.29317
4.61585
4.30742
4.10168
3.91937
3.75235
3.59848
3.45357
3.31467
3.18014
3.04888
2.92001
2.79282
2.66678
2.54146
2.41655
2.29183
2.16717
2.04249
1.91777
1.79299
1.66819
1.5434
1.41867
1.29402
1.16951
1.04516
0.921005
0.797076
0.673415
0.550022
0.427023
0.304285
0.18212
0.0620574
5.28424
4.63181
4.3067
4.1025
3.91963
3.75233
3.59849
3.45364
3.31481
3.18036
3.04919
2.9204
2.79329
2.6673
2.54202
2.41712
2.29241
2.16774
2.04304
1.91828
1.79348
1.66865
1.54383
1.41906
1.29438
1.16984
1.04546
0.921289
0.797337
0.673657
0.550236
0.427213
0.304385
0.182334
0.0604032
5.46013
4.54815
4.29401
4.09286
3.91323
3.74812
3.59517
3.45075
3.31221
3.17796
3.04693
2.91826
2.79125
2.66535
2.54015
2.41535
2.29073
2.16615
2.04154
1.91688
1.79216
1.6674
1.54266
1.41796
1.29334
1.16885
1.04454
0.920416
0.796532
0.672919
0.549558
0.426558
0.303743
0.18152
0.0611129
5.56725
4.51942
4.28133
4.08647
3.90751
3.74435
3.5927
3.44902
3.31102
3.17724
3.04661
2.91828
2.79157
2.66591
2.5409
2.41621
2.29164
2.16707
2.04243
1.91772
1.79293
1.66811
1.54329
1.41852
1.29384
1.16929
1.04492
0.920749
0.796799
0.67313
0.54969
0.426705
0.303608
0.182156
0.055509
5.55683
4.51356
4.28016
4.08592
3.90693
3.74402
3.59253
3.44893
3.31101
3.17729
3.04673
2.91847
2.79181
2.6662
2.5412
2.41652
2.29195
2.16736
2.0427
1.91796
1.79315
1.66831
1.54347
1.41868
1.29398
1.16942
1.04504
0.920856
0.796898
0.673223
0.549777
0.4268
0.303649
0.182319
0.0547715
5.55979
4.51447
4.28033
4.08604
3.90697
3.74404
3.59253
3.44891
3.31097
3.17724
3.04666
2.91839
2.79173
2.66612
2.54113
2.41645
2.29188
2.1673
2.04265
1.91792
1.79311
1.66827
1.54343
1.41864
1.29395
1.16939
1.04502
0.920839
0.796895
0.673219
0.549777
0.426774
0.303597
0.182246
0.0548056
5.434
4.55058
4.293
4.09249
3.91281
3.74784
3.595
3.45064
3.31214
3.17793
3.04693
2.91828
2.79129
2.66541
2.54023
2.41543
2.29082
2.16624
2.04163
1.91696
1.79224
1.66749
1.54274
1.41804
1.29342
1.16893
1.04461
0.920489
0.796589
0.672962
0.549585
0.426595
0.303783
0.181678
0.0604962
5.39138
4.56387
4.29702
4.09543
3.91476
3.74923
3.59607
3.45148
3.3128
3.17846
3.04737
2.91865
2.79161
2.66569
2.54048
2.41566
2.29103
2.16644
2.04182
1.91714
1.79241
1.66764
1.54288
1.41817
1.29355
1.16905
1.04473
0.920593
0.796688
0.673051
0.54967
0.426673
0.30385
0.181765
0.0604423
5.39859
4.56072
4.29697
4.09464
3.91445
3.74898
3.59581
3.45125
3.3126
3.17828
3.0472
2.91848
2.79144
2.66551
2.5403
2.41548
2.29085
2.16626
2.04165
1.91698
1.79225
1.6675
1.54275
1.41805
1.29343
1.16895
1.04463
0.920503
0.796609
0.672985
0.549616
0.426618
0.303836
0.181616
0.0613916
5.41428
4.56687
4.29209
4.09434
3.91311
3.74828
3.59566
3.45132
3.3128
3.17859
3.0476
2.91898
2.79201
2.66616
2.54099
2.41619
2.29155
2.16694
2.04229
1.91757
1.79279
1.66798
1.54318
1.41843
1.29377
1.16924
1.04489
0.920733
0.796808
0.673148
0.54973
0.426724
0.303707
0.181999
0.0570176
5.50677
4.53383
4.28832
4.09052
3.91106
3.74664
3.59417
3.44999
3.31161
3.17751
3.04662
2.91805
2.79114
2.66532
2.54019
2.41543
2.29083
2.16627
2.04167
1.91699
1.79227
1.6675
1.54274
1.41803
1.2934
1.1689
1.04457
0.920439
0.796535
0.672899
0.549514
0.426521
0.303604
0.181694
0.0586052
5.57713
4.50788
4.27911
4.08529
3.90644
3.74373
3.59236
3.44883
3.31096
3.17729
3.04677
2.91855
2.79192
2.66633
2.54134
2.41666
2.29208
2.16749
2.04282
1.91807
1.79324
1.66839
1.54353
1.41874
1.29403
1.16947
1.04508
0.92089
0.796928
0.673252
0.549806
0.426839
0.303668
0.182404
0.0544135
5.36979
4.57252
4.2993
4.09665
3.91579
3.74999
3.59665
3.45196
3.31321
3.1788
3.04765
2.91888
2.79179
2.66584
2.5406
2.41576
2.29111
2.1665
2.04187
1.91719
1.79245
1.66769
1.54293
1.41821
1.29359
1.16909
1.04477
0.920632
0.796725
0.673087
0.549708
0.426713
0.303924
0.181778
0.0610673
5.39142
4.56333
4.29718
4.09536
3.91474
3.7492
3.59602
3.45143
3.31276
3.17842
3.04733
2.91861
2.79156
2.66564
2.54043
2.41561
2.29097
2.16638
2.04176
1.91709
1.79235
1.66759
1.54284
1.41813
1.2935
1.16901
1.04468
0.920554
0.796651
0.673017
0.549639
0.426644
0.30383
0.18172
0.0606129
5.50568
4.53639
4.28928
4.09092
3.91136
3.74684
3.5943
3.4501
3.31171
3.17759
3.04669
2.91812
2.7912
2.66538
2.54025
2.41549
2.29089
2.16633
2.04173
1.91706
1.79234
1.66757
1.54281
1.4181
1.29348
1.16898
1.04464
0.920511
0.796606
0.672969
0.549583
0.426588
0.303676
0.181743
0.0588321
5.54694
4.51566
4.28095
4.08652
3.9071
3.74424
3.59275
3.44913
3.31119
3.17747
3.04691
2.91866
2.79202
2.66642
2.54142
2.41673
2.29214
2.16754
2.04286
1.9181
1.79328
1.66842
1.54356
1.41876
1.29406
1.16949
1.04511
0.920926
0.79698
0.673303
0.549856
0.426856
0.303615
0.182388
0.0541213
5.5435
4.51638
4.28122
4.08678
3.9073
3.74439
3.59286
3.44922
3.31125
3.17751
3.04693
2.91867
2.79201
2.66639
2.54139
2.41669
2.2921
2.16749
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16946
1.04507
0.92089
0.79693
0.673257
0.54981
0.426843
0.303642
0.182418
0.0541227
5.31348
4.60798
4.30446
4.10052
3.91828
3.75164
3.59802
3.45321
3.31437
3.17989
3.04866
2.91981
2.79265
2.66663
2.54133
2.41643
2.29172
2.16707
2.0424
1.91767
1.7929
1.6681
1.54331
1.41857
1.29392
1.16941
1.04506
0.920907
0.796979
0.673317
0.549919
0.426916
0.304127
0.182048
0.0609156
5.45627
4.54926
4.28785
4.0911
3.91073
3.7466
3.59437
3.45029
3.31198
3.17794
3.0471
2.9186
2.79174
2.66597
2.54086
2.41611
2.2915
2.16691
2.04227
1.91756
1.79278
1.66797
1.54317
1.41842
1.29375
1.16922
1.04486
0.920704
0.796768
0.67311
0.549685
0.426697
0.303649
0.182061
0.0562716
5.39591
4.56079
4.29708
4.09509
3.91461
3.74909
3.59591
3.45133
3.31266
3.17833
3.04725
2.91853
2.79148
2.66557
2.54035
2.41554
2.29091
2.16632
2.0417
1.91703
1.7923
1.66754
1.54279
1.41808
1.29346
1.16897
1.04465
0.920521
0.796623
0.672994
0.549621
0.426626
0.303822
0.181667
0.0608975
5.55012
4.52373
4.2831
4.08766
3.90845
3.74498
3.59311
3.44928
3.31116
3.17727
3.04656
2.91816
2.79139
2.6657
2.54066
2.41596
2.29139
2.16683
2.04222
1.91752
1.79276
1.66795
1.54315
1.41839
1.29373
1.1692
1.04484
0.920676
0.796745
0.673081
0.549657
0.426653
0.303575
0.181997
0.0561166
5.15554
4.69253
4.32719
4.11124
3.92794
3.75748
3.60169
3.45601
3.31663
3.18176
3.05028
2.92127
2.794
2.66789
2.54254
2.41761
2.29289
2.16824
2.04357
1.91886
1.79411
1.66933
1.54456
1.41984
1.29521
1.17071
1.04638
0.922237
0.798323
0.674673
0.551301
0.428305
0.305694
0.18368
0.0669839
5.46892
4.5419
4.28931
4.09076
3.91142
3.74691
3.59436
3.45017
3.31178
3.17766
3.04673
2.91814
2.7912
2.66536
2.5402
2.41543
2.29082
2.16626
2.04165
1.91698
1.79226
1.6675
1.54274
1.41804
1.29342
1.16893
1.0446
0.920468
0.79656
0.672924
0.549536
0.42655
0.303689
0.181733
0.059321
5.5641
4.5135
4.28027
4.08601
3.90695
3.74406
3.59257
3.44897
3.31104
3.17732
3.04676
2.91851
2.79186
2.66626
2.54127
2.4166
2.29203
2.16745
2.04279
1.91805
1.79324
1.66839
1.54355
1.41876
1.29406
1.1695
1.04511
0.920931
0.796983
0.673302
0.549856
0.426852
0.303662
0.182334
0.0547399
5.53467
4.52733
4.28486
4.08873
3.90938
3.74557
3.5935
3.44954
3.31133
3.17737
3.04659
2.91815
2.79134
2.66561
2.54055
2.41583
2.29127
2.16671
2.04211
1.91742
1.79267
1.66788
1.5431
1.41835
1.2937
1.16917
1.04482
0.920666
0.796739
0.67308
0.549664
0.426661
0.303627
0.181957
0.0568104
5.43689
4.54957
4.29207
4.09215
3.91245
3.7476
3.59484
3.45052
3.31204
3.17785
3.04687
2.91824
2.79126
2.66539
2.54021
2.41542
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54272
1.41801
1.29339
1.1689
1.04458
0.920454
0.79655
0.672919
0.549537
0.42655
0.303718
0.181687
0.0599475
5.54933
4.51434
4.28055
4.08627
3.90701
3.74413
3.59263
3.44901
3.31106
3.17734
3.04678
2.91852
2.79188
2.66627
2.54128
2.41659
2.29201
2.16742
2.04275
1.91801
1.79319
1.66833
1.54349
1.41869
1.29399
1.16943
1.04505
0.920874
0.796929
0.673252
0.549808
0.426809
0.303596
0.182329
0.0543783
5.55155
4.51316
4.28037
4.08617
3.907
3.74413
3.59263
3.44903
3.31109
3.17737
3.04681
2.91856
2.79191
2.6663
2.5413
2.41661
2.29203
2.16744
2.04277
1.91802
1.7932
1.66835
1.5435
1.41871
1.29401
1.16945
1.04506
0.920874
0.796914
0.673241
0.549795
0.426825
0.303648
0.18238
0.0544196
5.6076
4.50496
4.27831
4.08471
3.90598
3.74347
3.59221
3.44876
3.31094
3.17732
3.04685
2.91867
2.79208
2.66651
2.54154
2.41686
2.29228
2.16767
2.04299
1.91822
1.79339
1.66852
1.54365
1.41884
1.29413
1.16956
1.04517
0.920978
0.797025
0.67334
0.549892
0.426901
0.30368
0.182489
0.0541395
5.61016
4.50401
4.2781
4.0846
3.90593
3.74344
3.59219
3.44876
3.31095
3.17733
3.04686
2.91868
2.79209
2.66652
2.54155
2.41687
2.29228
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41884
1.29413
1.16955
1.04515
0.920956
0.796988
0.673312
0.54987
0.426917
0.30373
0.182516
0.0541366
5.54367
4.51676
4.281
4.08658
3.90729
3.7443
3.59274
3.44908
3.31111
3.17736
3.04677
2.9185
2.79183
2.66621
2.54121
2.41653
2.29196
2.16737
2.04272
1.91798
1.79317
1.66832
1.54348
1.41869
1.294
1.16944
1.04506
0.920881
0.796937
0.673259
0.549816
0.426812
0.303619
0.182294
0.0546783
5.54477
4.51685
4.28132
4.08672
3.90741
3.74437
3.59278
3.44912
3.31115
3.1774
3.04681
2.91853
2.79186
2.66624
2.54123
2.41655
2.29197
2.16738
2.04273
1.91799
1.79318
1.66833
1.54349
1.4187
1.29401
1.16945
1.04507
0.920883
0.796925
0.673251
0.549804
0.426828
0.303669
0.18235
0.0547254
5.32562
4.59639
4.30366
4.09943
3.91781
3.75145
3.59787
3.45306
3.31421
3.17971
3.04847
2.91962
2.79246
2.66644
2.54114
2.41626
2.29156
2.16692
2.04226
1.91755
1.79279
1.66801
1.54323
1.41851
1.29387
1.16936
1.04503
0.92088
0.79696
0.673308
0.54992
0.426924
0.304165
0.182006
0.0616369
5.45333
4.56467
4.28795
4.09292
3.91123
3.74732
3.59537
3.45144
3.31324
3.17927
3.04846
2.91996
2.79307
2.66722
2.54202
2.41715
2.29241
2.1677
2.04294
1.91812
1.79325
1.66836
1.54349
1.41868
1.29397
1.1694
1.04502
0.920848
0.79691
0.67324
0.5498
0.426785
0.303569
0.182167
0.0542985
5.45487
4.56449
4.28793
4.09272
3.91116
3.7473
3.59539
3.45149
3.31331
3.17936
3.04855
2.92003
2.79312
2.66726
2.54203
2.41714
2.2924
2.16768
2.04292
1.9181
1.79323
1.66835
1.54348
1.41868
1.29398
1.16941
1.04503
0.920855
0.796905
0.673237
0.549793
0.426807
0.303633
0.18225
0.05438
5.53834
4.52116
4.28227
4.08726
3.90806
3.74473
3.59296
3.44918
3.31111
3.17726
3.04658
2.91822
2.79148
2.66581
2.54078
2.41609
2.29153
2.16696
2.04234
1.91764
1.79286
1.66805
1.54324
1.41847
1.2938
1.16926
1.04489
0.920727
0.796793
0.673125
0.549695
0.42669
0.303583
0.182065
0.0557472
5.38757
4.56557
4.29776
4.09531
3.91494
3.74936
3.59613
3.45152
3.31283
3.17847
3.04736
2.91863
2.79157
2.66564
2.54041
2.41559
2.29095
2.16636
2.04174
1.91706
1.79233
1.66757
1.54282
1.41812
1.2935
1.16901
1.04469
0.920563
0.796664
0.673034
0.54966
0.426665
0.303885
0.181692
0.0613152
5.51174
4.52695
4.28461
4.08864
3.90921
3.74546
3.59342
3.44948
3.31128
3.17733
3.04656
2.91812
2.79132
2.6656
2.54053
2.41582
2.29125
2.1667
2.04208
1.9174
1.79264
1.66785
1.54306
1.41831
1.29366
1.16913
1.04478
0.920623
0.796698
0.673039
0.549622
0.42662
0.303575
0.181935
0.0565776
5.37079
4.57313
4.29899
4.09665
3.91569
3.74993
3.59662
3.45195
3.3132
3.1788
3.04765
2.91889
2.79181
2.66586
2.54062
2.41579
2.29113
2.16653
2.0419
1.91721
1.79247
1.6677
1.54294
1.41822
1.2936
1.1691
1.04477
0.920635
0.796726
0.673085
0.549702
0.426707
0.303904
0.1818
0.0607409
5.49581
4.53921
4.29042
4.09139
3.91175
3.7471
3.59447
3.45022
3.3118
3.17766
3.04672
2.91814
2.7912
2.66537
2.54022
2.41545
2.29085
2.16629
2.04169
1.91702
1.7923
1.66754
1.54278
1.41807
1.29345
1.16895
1.04463
0.920494
0.796593
0.672962
0.54958
0.426585
0.303692
0.181711
0.0592129
5.52261
4.5245
4.28295
4.0876
3.90821
3.74482
3.59302
3.44924
3.31118
3.17734
3.04667
2.91832
2.79158
2.6659
2.54087
2.41617
2.2916
2.16703
2.04239
1.91768
1.7929
1.66808
1.54326
1.41849
1.29382
1.16928
1.04491
0.920739
0.796792
0.673125
0.549689
0.426705
0.30361
0.18215
0.0555738
5.39699
4.56076
4.29728
4.09487
3.9146
3.74907
3.59587
3.4513
3.31264
3.17831
3.04722
2.91849
2.79144
2.66552
2.54031
2.41549
2.29086
2.16627
2.04165
1.91698
1.79226
1.6675
1.54275
1.41805
1.29344
1.16895
1.04463
0.920504
0.796611
0.672987
0.549619
0.426621
0.303837
0.181616
0.0613935
5.38239
4.56647
4.29833
4.09587
3.91524
3.74957
3.59629
3.45165
3.31293
3.17856
3.04744
2.91869
2.79162
2.66569
2.54046
2.41563
2.29099
2.16639
2.04177
1.91709
1.79236
1.6676
1.54285
1.41814
1.29352
1.16903
1.0447
0.920571
0.796671
0.673039
0.549664
0.426668
0.303877
0.181708
0.0611302
5.54927
4.51404
4.28086
4.08651
3.90713
3.74427
3.59277
3.44915
3.3112
3.17747
3.0469
2.91865
2.792
2.66639
2.54139
2.4167
2.29211
2.1675
2.04283
1.91807
1.79324
1.66838
1.54353
1.41873
1.29403
1.16947
1.04508
0.92089
0.796929
0.673257
0.549811
0.426847
0.303646
0.182434
0.0540829
5.54222
4.52609
4.2835
4.08771
3.90862
3.74503
3.5931
3.44926
3.31114
3.17724
3.04651
2.91809
2.7913
2.66558
2.54052
2.41581
2.29124
2.16668
2.04206
1.91737
1.79262
1.66782
1.54303
1.41829
1.29364
1.16911
1.04476
0.920599
0.796663
0.673004
0.549579
0.426593
0.303571
0.181964
0.0565319
5.43381
4.5505
4.29477
4.09323
3.9135
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04457
0.920451
0.796566
0.672951
0.549589
0.426587
0.303781
0.181541
0.0613051
5.29913
4.61138
4.30667
4.10112
3.91907
3.75223
3.59843
3.45357
3.31469
3.18017
3.04891
2.92004
2.79285
2.6668
2.54148
2.41657
2.29185
2.1672
2.04252
1.9178
1.79303
1.66823
1.54345
1.41871
1.29407
1.16956
1.04521
0.921059
0.797131
0.673472
0.550081
0.427081
0.304346
0.182161
0.0622275
5.35621
4.58072
4.30044
4.09735
3.91645
3.75054
3.59713
3.4524
3.3136
3.17915
3.04796
2.91915
2.79204
2.66606
2.54079
2.41594
2.29127
2.16666
2.04202
1.91733
1.79259
1.66782
1.54305
1.41834
1.29371
1.16922
1.04488
0.920748
0.796836
0.673194
0.54981
0.426814
0.304043
0.181873
0.0614196
5.22914
4.65704
4.3147
4.10616
3.92304
3.75442
3.5998
3.4546
3.31554
3.18092
3.04961
2.92074
2.79357
2.66755
2.54225
2.41737
2.29268
2.16803
2.04336
1.91863
1.79384
1.66902
1.5442
1.41944
1.29477
1.17023
1.04586
0.921691
0.797743
0.674063
0.550652
0.427628
0.304896
0.182749
0.0627958
5.34842
4.58907
4.30041
4.09824
3.91662
3.75064
3.59733
3.45264
3.31387
3.17945
3.04827
2.91947
2.79236
2.66638
2.54112
2.41625
2.29157
2.16694
2.04228
1.91757
1.79281
1.66802
1.54323
1.4185
1.29385
1.16934
1.045
0.920847
0.796923
0.673265
0.549865
0.426861
0.304027
0.182004
0.0601795
5.43142
4.55174
4.29474
4.09317
3.91345
3.74827
3.59528
3.45084
3.31228
3.17802
3.04698
2.9183
2.79128
2.66538
2.54019
2.41538
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29337
1.16888
1.04456
0.920444
0.796556
0.672939
0.549572
0.426572
0.303775
0.181549
0.0612754
5.43265
4.55194
4.29476
4.09319
3.91345
3.74827
3.59528
3.45084
3.31228
3.17803
3.04699
2.91831
2.7913
2.6654
2.54021
2.4154
2.29078
2.1662
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.2934
1.16891
1.04459
0.920475
0.796585
0.672967
0.549599
0.426599
0.3038
0.181582
0.0612447
5.38194
4.57099
4.29719
4.09567
3.91504
3.74952
3.59635
3.45175
3.31306
3.1787
3.04758
2.91884
2.79178
2.66585
2.54062
2.41579
2.29114
2.16654
2.04191
1.91723
1.79249
1.66772
1.54296
1.41825
1.29362
1.16912
1.04479
0.920657
0.796745
0.673103
0.549714
0.426718
0.303904
0.181832
0.060461
5.31655
4.60152
4.30472
4.09995
3.91816
3.7516
3.59792
3.45307
3.31419
3.17967
3.04841
2.91955
2.79239
2.66636
2.54106
2.41617
2.29148
2.16684
2.04218
1.91747
1.79271
1.66793
1.54315
1.41842
1.29379
1.16928
1.04495
0.920802
0.796883
0.673232
0.549847
0.426854
0.304111
0.181945
0.0617967
5.34105
4.59167
4.30138
4.09863
3.91697
3.75085
3.59744
3.45271
3.31391
3.17945
3.04826
2.91945
2.79232
2.66633
2.54106
2.41619
2.29151
2.16688
2.04222
1.91751
1.79275
1.66797
1.54318
1.41845
1.29381
1.1693
1.04496
0.920816
0.796894
0.673239
0.549843
0.426843
0.304032
0.181977
0.0605511
5.27585
4.62652
4.30927
4.10276
3.92026
3.75288
3.59884
3.45389
3.31497
3.18043
3.04917
2.92029
2.7931
2.66705
2.54171
2.41678
2.29205
2.16738
2.04269
1.91795
1.79317
1.66836
1.54357
1.41883
1.29417
1.16965
1.0453
0.921144
0.79721
0.673546
0.55015
0.427147
0.304422
0.182247
0.0624553
5.60694
4.50509
4.2783
4.08473
3.90603
3.7435
3.59222
3.44877
3.31095
3.17732
3.04683
2.91864
2.79204
2.66646
2.54148
2.4168
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.4188
1.29409
1.16952
1.04513
0.920933
0.796966
0.67329
0.549845
0.426888
0.303706
0.182477
0.0542215
5.60255
4.5066
4.27866
4.08491
3.90611
3.74355
3.59225
3.44878
3.31095
3.17731
3.04683
2.91864
2.79204
2.66647
2.54149
2.41682
2.29224
2.16764
2.04296
1.9182
1.79336
1.66849
1.54363
1.41883
1.29412
1.16955
1.04515
0.920968
0.797015
0.673331
0.549883
0.426889
0.303671
0.182458
0.0542194
5.50699
4.53737
4.2873
4.08967
3.91033
3.74616
3.59385
3.4498
3.31151
3.17748
3.04663
2.9181
2.79122
2.66542
2.54031
2.41556
2.29097
2.16641
2.04181
1.91713
1.7924
1.66764
1.54287
1.41815
1.29352
1.16902
1.04468
0.920538
0.796618
0.67297
0.549565
0.426577
0.303649
0.181835
0.0581068
5.35102
4.58251
4.30108
4.09757
3.91659
3.75059
3.59713
3.45239
3.31358
3.17913
3.04793
2.91912
2.792
2.66602
2.54075
2.41589
2.29123
2.16661
2.04197
1.91728
1.79254
1.66777
1.54301
1.41829
1.29367
1.16917
1.04484
0.920707
0.796796
0.673156
0.549777
0.426784
0.304025
0.181836
0.0616047
5.2432
4.64642
4.31335
4.10516
3.92217
3.75396
3.59951
3.45438
3.31536
3.18077
3.04948
2.92061
2.79344
2.66742
2.54211
2.41721
2.2925
2.16784
2.04316
1.91842
1.79364
1.66883
1.54403
1.41927
1.29461
1.17008
1.04572
0.921554
0.797611
0.673936
0.550532
0.427517
0.304797
0.182626
0.0630183
5.56172
4.51427
4.2801
4.0859
3.90702
3.74406
3.59254
3.44893
3.31099
3.17726
3.04667
2.9184
2.79172
2.6661
2.5411
2.41641
2.29184
2.16726
2.04262
1.91788
1.79308
1.66824
1.54341
1.41862
1.29393
1.16938
1.045
0.920817
0.796861
0.673188
0.549743
0.426762
0.303629
0.182255
0.0550096
5.47321
4.54421
4.29253
4.0923
3.91267
3.74772
3.5949
3.45054
3.31203
3.17783
3.04683
2.91819
2.79121
2.66533
2.54016
2.41537
2.29075
2.16618
2.04157
1.91691
1.79218
1.66743
1.54268
1.41798
1.29336
1.16887
1.04455
0.920429
0.796539
0.672921
0.549554
0.426557
0.303713
0.181578
0.060361
5.37556
4.56944
4.29895
4.09615
3.91546
3.74972
3.5964
3.45173
3.313
3.17861
3.04748
2.91872
2.79164
2.6657
2.54046
2.41563
2.29099
2.16639
2.04177
1.91709
1.79235
1.66759
1.54284
1.41813
1.29351
1.16902
1.0447
0.920568
0.796667
0.673036
0.549662
0.426667
0.303887
0.1817
0.0613174
5.529
4.52798
4.28548
4.08915
3.90978
3.74583
3.59365
3.44964
3.31139
3.1774
3.04659
2.91812
2.79129
2.66554
2.54046
2.41574
2.29117
2.16662
2.04201
1.91733
1.79259
1.66781
1.54303
1.41829
1.29364
1.16913
1.04478
0.920627
0.796705
0.67305
0.54964
0.42664
0.303633
0.181908
0.0572112
5.51066
4.5293
4.28471
4.08842
3.90913
3.74535
3.59331
3.44941
3.31124
3.17731
3.04654
2.9181
2.79129
2.66555
2.54048
2.41576
2.29118
2.16662
2.04201
1.91733
1.79258
1.66779
1.543
1.41826
1.29361
1.16909
1.04474
0.920588
0.796656
0.672998
0.549578
0.426591
0.303588
0.18194
0.0568316
5.46106
4.54167
4.28859
4.0913
3.91114
3.74679
3.59439
3.45021
3.31184
3.17776
3.04688
2.91835
2.79147
2.66569
2.54058
2.41584
2.29125
2.16668
2.04206
1.91737
1.79262
1.66784
1.54305
1.41831
1.29367
1.16915
1.0448
0.920649
0.796728
0.673072
0.54966
0.426658
0.30365
0.181933
0.0572356
5.43051
4.55791
4.29072
4.09282
3.9123
3.74771
3.59518
3.45093
3.31248
3.17832
3.04737
2.91878
2.79184
2.666
2.54085
2.41607
2.29144
2.16685
2.04221
1.91751
1.79275
1.66795
1.54316
1.41842
1.29377
1.16925
1.0449
0.920745
0.796814
0.673159
0.549742
0.42675
0.30377
0.182035
0.0574719
5.50544
4.52849
4.28441
4.08863
3.90901
3.74536
3.59339
3.44949
3.31132
3.1774
3.04667
2.91826
2.79148
2.66578
2.54073
2.41603
2.29146
2.1669
2.04228
1.91758
1.79281
1.66801
1.5432
1.41844
1.29378
1.16924
1.04488
0.920721
0.796789
0.673124
0.549698
0.426693
0.303606
0.182042
0.056067
5.49713
4.52919
4.28566
4.0893
3.9098
3.74585
3.59367
3.44965
3.31139
3.1774
3.04659
2.91812
2.79128
2.66554
2.54046
2.41573
2.29116
2.1666
2.042
1.91731
1.79257
1.66778
1.543
1.41826
1.29361
1.16909
1.04475
0.920595
0.796674
0.673019
0.549608
0.426608
0.303592
0.181894
0.0570273
5.48536
4.5382
4.28775
4.09003
3.91072
3.74642
3.59403
3.44993
3.31161
3.17754
3.04666
2.91811
2.79121
2.66539
2.54026
2.41551
2.29091
2.16635
2.04175
1.91708
1.79235
1.66759
1.54283
1.41811
1.29348
1.16898
1.04465
0.920514
0.796598
0.672954
0.549555
0.426567
0.303664
0.181801
0.0585234
5.41728
4.55411
4.29559
4.09371
3.91383
3.74854
3.59548
3.45099
3.3124
3.17811
3.04706
2.91836
2.79133
2.66543
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.920468
0.79658
0.672962
0.549597
0.426597
0.303803
0.181564
0.0613839
5.50624
4.53881
4.28785
4.08996
3.91065
3.74638
3.594
3.4499
3.31158
3.17752
3.04664
2.91809
2.79118
2.66537
2.54024
2.41548
2.29088
2.16632
2.04171
1.91704
1.79231
1.66755
1.54279
1.41808
1.29345
1.16895
1.04462
0.920482
0.796567
0.672924
0.549525
0.426539
0.303635
0.181776
0.0584814
5.42924
4.54918
4.29295
4.0931
3.91291
3.7479
3.59506
3.45066
3.31213
3.17792
3.04692
2.91828
2.79131
2.66545
2.54028
2.41549
2.29088
2.1663
2.04169
1.91702
1.79229
1.66752
1.54276
1.41805
1.29343
1.16893
1.0446
0.920473
0.79657
0.672935
0.549552
0.426558
0.303684
0.181698
0.0594133
5.42096
4.5526
4.29504
4.09338
3.91364
3.74841
3.59539
3.45093
3.31235
3.17808
3.04703
2.91834
2.79131
2.66541
2.5402
2.4154
2.29077
2.16619
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04457
0.920454
0.796567
0.67295
0.549586
0.426586
0.303791
0.18155
0.0613935
5.51328
4.52955
4.28484
4.08851
3.90926
3.74544
3.59337
3.44944
3.31126
3.17731
3.04654
2.91808
2.79125
2.66551
2.54043
2.4157
2.29113
2.16657
2.04196
1.91728
1.79253
1.66775
1.54296
1.41823
1.29358
1.16907
1.04472
0.920566
0.796636
0.672981
0.549563
0.426576
0.303585
0.181915
0.0570235
5.45648
4.5502
4.29454
4.09303
3.91338
3.74823
3.59526
3.45082
3.31226
3.17801
3.04697
2.91829
2.79127
2.66537
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54268
1.41798
1.29336
1.16888
1.04456
0.920439
0.796555
0.672941
0.54958
0.426578
0.303771
0.181528
0.0612966
5.41104
4.56441
4.29265
4.09377
3.91312
3.74822
3.59551
3.45116
3.31264
3.17842
3.04742
2.91878
2.7918
2.66593
2.54075
2.41595
2.29132
2.16673
2.04209
1.91739
1.79264
1.66785
1.54307
1.41834
1.29369
1.16918
1.04483
0.920685
0.796759
0.673108
0.5497
0.426707
0.303776
0.181951
0.0582337
5.56463
4.5108
4.2797
4.08565
3.90663
3.74387
3.59245
3.44889
3.31099
3.17731
3.04677
2.91854
2.79191
2.66632
2.54134
2.41666
2.29209
2.16749
2.04283
1.91808
1.79326
1.6684
1.54355
1.41875
1.29405
1.16949
1.0451
0.920919
0.796971
0.67329
0.549844
0.426845
0.303637
0.182372
0.0544236
5.56497
4.50945
4.27931
4.08547
3.90657
3.74383
3.59242
3.44887
3.31098
3.1773
3.04676
2.91853
2.79189
2.66629
2.5413
2.41662
2.29204
2.16745
2.04278
1.91803
1.79321
1.66836
1.54351
1.41871
1.29401
1.16945
1.04506
0.920873
0.796911
0.673237
0.54979
0.426821
0.303651
0.182375
0.0544713
5.45208
4.54742
4.29211
4.09196
3.91247
3.74761
3.59484
3.45051
3.31204
3.17785
3.04686
2.91822
2.79124
2.66537
2.54019
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66746
1.54272
1.41801
1.2934
1.16891
1.04459
0.920467
0.796569
0.672943
0.549568
0.426578
0.303763
0.181661
0.0604348
5.48981
4.53401
4.28561
4.08909
3.90951
3.74564
3.59355
3.4496
3.3114
3.17745
3.04667
2.91822
2.7914
2.66567
2.54059
2.41587
2.29129
2.16673
2.04211
1.91742
1.79266
1.66787
1.54308
1.41834
1.29369
1.16916
1.04481
0.92065
0.796716
0.673057
0.549634
0.426646
0.303629
0.182
0.0567186
5.49205
4.53602
4.28692
4.08961
3.91022
3.74609
3.59381
3.44977
3.3115
3.17748
3.04664
2.91813
2.79125
2.66547
2.54036
2.41562
2.29103
2.16647
2.04187
1.91719
1.79246
1.66769
1.54292
1.4182
1.29356
1.16905
1.04471
0.920568
0.796644
0.672994
0.549585
0.426596
0.303654
0.181873
0.0578703
5.39339
4.57936
4.29379
4.09575
3.91401
3.74889
3.59619
3.45181
3.31326
3.17901
3.04798
2.91932
2.79232
2.66642
2.54122
2.41639
2.29173
2.1671
2.04243
1.91769
1.7929
1.66808
1.54327
1.41851
1.29385
1.16932
1.04496
0.920801
0.796872
0.67321
0.549791
0.426781
0.303772
0.182039
0.0570767
5.47404
4.54717
4.29169
4.0917
3.91227
3.74748
3.59475
3.45045
3.31199
3.17781
3.04683
2.9182
2.79123
2.66536
2.54018
2.4154
2.29078
2.16621
2.0416
1.91694
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.04458
0.92046
0.796561
0.672934
0.549558
0.42657
0.30375
0.181667
0.0602868
5.5239
4.53182
4.28539
4.08877
3.90959
3.74566
3.59352
3.44955
3.31133
3.17735
3.04655
2.91806
2.79121
2.66544
2.54034
2.41561
2.29103
2.16647
2.04186
1.91718
1.79244
1.66767
1.5429
1.41817
1.29353
1.16902
1.04468
0.92053
0.796604
0.672953
0.549541
0.426554
0.303591
0.18186
0.0574555
5.53211
4.52962
4.28466
4.08837
3.9092
3.74541
3.59335
3.44944
3.31126
3.17732
3.04655
2.9181
2.79127
2.66553
2.54045
2.41573
2.29116
2.1666
2.04199
1.91731
1.79256
1.66778
1.543
1.41826
1.29362
1.1691
1.04475
0.920596
0.796665
0.673008
0.549589
0.4266
0.303609
0.181935
0.0570492
5.23376
4.65129
4.31482
4.10587
3.92278
3.75434
3.59975
3.45457
3.3155
3.18088
3.04957
2.92068
2.7935
2.66746
2.54214
2.41722
2.2925
2.16783
2.04314
1.9184
1.79361
1.66879
1.54398
1.41922
1.29456
1.17003
1.04567
0.9215
0.797557
0.673882
0.550479
0.427466
0.304762
0.18259
0.0632897
5.55136
4.51417
4.28082
4.08639
3.90704
3.74415
3.59265
3.44903
3.31108
3.17736
3.0468
2.91856
2.79192
2.66631
2.54132
2.41664
2.29206
2.16747
2.0428
1.91805
1.79323
1.66837
1.54352
1.41873
1.29403
1.16946
1.04508
0.920901
0.796956
0.673278
0.549833
0.426834
0.303612
0.182366
0.0542838
5.5533
4.51255
4.28033
4.08612
3.90691
3.74408
3.59262
3.44902
3.3111
3.17739
3.04684
2.9186
2.79195
2.66635
2.54136
2.41667
2.29209
2.16749
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16947
1.04508
0.920892
0.796931
0.673258
0.549811
0.426845
0.303659
0.182414
0.0542825
5.59368
4.51265
4.27997
4.08567
3.90671
3.74389
3.59244
3.44887
3.31096
3.17725
3.0467
2.91845
2.79181
2.66621
2.54122
2.41654
2.29197
2.16739
2.04273
1.91799
1.79318
1.66833
1.54349
1.41869
1.294
1.16944
1.04505
0.920876
0.796929
0.67325
0.549806
0.426805
0.303617
0.182301
0.0546661
5.59711
4.51161
4.27971
4.08548
3.90663
3.74383
3.5924
3.44884
3.31094
3.17725
3.0467
2.91845
2.7918
2.66619
2.5412
2.41652
2.29194
2.16736
2.0427
1.91795
1.79314
1.66829
1.54345
1.41866
1.29396
1.1694
1.04502
0.920833
0.796874
0.6732
0.549754
0.426781
0.303628
0.182314
0.0546857
5.27708
4.63412
4.30817
4.10345
3.92026
3.75273
3.59876
3.45382
3.31493
3.18043
3.04922
2.9204
2.79326
2.66726
2.54196
2.41706
2.29234
2.16767
2.04297
1.91822
1.79342
1.66859
1.54378
1.41901
1.29434
1.1698
1.04543
0.921255
0.797305
0.673622
0.550202
0.427178
0.304364
0.182306
0.0605261
5.40442
4.56944
4.29287
4.0942
3.9133
3.74837
3.59568
3.45134
3.31282
3.17859
3.04759
2.91894
2.79195
2.66607
2.54089
2.41608
2.29144
2.16683
2.04219
1.91748
1.79271
1.66792
1.54313
1.41838
1.29373
1.16921
1.04486
0.920713
0.796784
0.673131
0.549719
0.426725
0.303775
0.181982
0.0578771
5.40404
4.55791
4.29677
4.09463
3.91439
3.74893
3.59577
3.45121
3.31257
3.17826
3.04718
2.91847
2.79142
2.66551
2.5403
2.41549
2.29086
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41806
1.29345
1.16896
1.04464
0.920512
0.79662
0.672997
0.549628
0.426629
0.303833
0.181624
0.0612455
5.46972
4.54824
4.29264
4.09213
3.91267
3.74776
3.59493
3.45058
3.31208
3.17788
3.04688
2.91823
2.79123
2.66535
2.54017
2.41537
2.29075
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29337
1.16888
1.04456
0.920438
0.796544
0.672922
0.549551
0.42656
0.303754
0.181609
0.0607351
5.56439
4.52021
4.28175
4.08688
3.90778
3.74455
3.59284
3.44911
3.31106
3.17724
3.04658
2.91823
2.7915
2.66584
2.54082
2.41613
2.29157
2.167
2.04238
1.91767
1.79289
1.66807
1.54326
1.41849
1.29381
1.16927
1.0449
0.920735
0.7968
0.67313
0.549699
0.426693
0.303579
0.182077
0.055628
5.48618
4.5332
4.28714
4.0902
3.9104
3.74625
3.59395
3.44986
3.31155
3.17751
3.04668
2.91818
2.79133
2.66556
2.54047
2.41574
2.29116
2.1666
2.04199
1.9173
1.79256
1.66777
1.54299
1.41825
1.29361
1.16909
1.04474
0.920595
0.796675
0.673022
0.549612
0.426612
0.303605
0.181891
0.0571844
5.5816
4.51485
4.28028
4.08586
3.90696
3.74402
3.5925
3.4489
3.31096
3.17723
3.04665
2.91837
2.79169
2.66607
2.54107
2.41638
2.29181
2.16723
2.04258
1.91785
1.79305
1.66821
1.54338
1.41859
1.2939
1.16935
1.04497
0.920791
0.796836
0.673164
0.54972
0.426741
0.303608
0.182239
0.0549908
5.57794
4.5153
4.28044
4.08604
3.90703
3.74407
3.59254
3.44892
3.31096
3.17722
3.04663
2.91835
2.79168
2.66606
2.54106
2.41638
2.29182
2.16724
2.0426
1.91787
1.79307
1.66823
1.5434
1.41861
1.29392
1.16937
1.04499
0.920816
0.796874
0.673198
0.549758
0.426754
0.303589
0.182209
0.0549546
5.3428
4.58869
4.30135
4.09791
3.9167
3.75061
3.59714
3.4524
3.3136
3.17915
3.04796
2.91915
2.79203
2.66605
2.54078
2.41592
2.29124
2.16662
2.04198
1.91728
1.79253
1.66776
1.54299
1.41827
1.29364
1.16915
1.04481
0.920677
0.796763
0.673121
0.549738
0.426746
0.303983
0.181833
0.0613627
5.60552
4.50607
4.27842
4.08486
3.90616
3.74357
3.59227
3.44879
3.31095
3.17731
3.04681
2.9186
2.79199
2.6664
2.54142
2.41674
2.29216
2.16756
2.04289
1.91813
1.7933
1.66843
1.54358
1.41877
1.29407
1.1695
1.0451
0.920912
0.796947
0.673271
0.549824
0.426861
0.303684
0.182437
0.0543203
5.59889
4.50769
4.27877
4.08505
3.90624
3.74363
3.5923
3.44881
3.31096
3.1773
3.0468
2.9186
2.79199
2.66641
2.54143
2.41676
2.29218
2.16758
2.04291
1.91815
1.79333
1.66846
1.54361
1.4188
1.29409
1.16953
1.04514
0.920951
0.796999
0.673316
0.549868
0.426872
0.30366
0.182421
0.0543274
5.42053
4.57661
4.29056
4.09434
3.91257
3.74806
3.5958
3.45171
3.31338
3.17931
3.04841
2.91983
2.79287
2.66699
2.54176
2.4169
2.29218
2.16749
2.04276
1.91797
1.79313
1.66827
1.54343
1.41864
1.29395
1.1694
1.04503
0.920856
0.796913
0.673251
0.54982
0.426829
0.303737
0.182182
0.0555231
5.44675
4.54958
4.28919
4.09141
3.91126
3.74685
3.59444
3.45028
3.31192
3.17783
3.04694
2.9184
2.7915
2.6657
2.54057
2.41581
2.29121
2.16664
2.04202
1.91733
1.79258
1.6678
1.54302
1.41828
1.29364
1.16912
1.04478
0.920626
0.796699
0.673047
0.549634
0.426644
0.303674
0.18194
0.0574736
5.52378
4.52861
4.28578
4.0893
3.90993
3.74591
3.5937
3.44966
3.31139
3.17739
3.04657
2.91808
2.79124
2.66548
2.54039
2.41566
2.29109
2.16653
2.04193
1.91725
1.79251
1.66773
1.54296
1.41822
1.29358
1.16907
1.04472
0.920575
0.796656
0.673004
0.549599
0.4266
0.303609
0.181855
0.0573962
5.54898
4.52459
4.28292
4.08742
3.90839
3.7449
3.59303
3.44922
3.31112
3.17725
3.04653
2.91813
2.79136
2.66565
2.5406
2.41589
2.29132
2.16676
2.04214
1.91745
1.79269
1.66789
1.54309
1.41834
1.29368
1.16916
1.0448
0.920636
0.796697
0.673035
0.549608
0.426621
0.303585
0.182005
0.056341
5.56024
4.52288
4.28242
4.08712
3.90808
3.74471
3.59292
3.44916
3.31111
3.17727
3.0466
2.91823
2.79148
2.6658
2.54077
2.41607
2.2915
2.16694
2.04232
1.91761
1.79284
1.66803
1.54323
1.41846
1.2938
1.16926
1.04489
0.920724
0.796779
0.673112
0.549677
0.42669
0.303625
0.182102
0.0559948
5.39938
4.55958
4.29708
4.09478
3.91454
3.74903
3.59585
3.45128
3.31262
3.1783
3.04721
2.91849
2.79144
2.66552
2.54031
2.41549
2.29086
2.16627
2.04166
1.91699
1.79226
1.66751
1.54276
1.41806
1.29344
1.16895
1.04463
0.920509
0.796616
0.672992
0.549624
0.426626
0.303838
0.18162
0.06135
5.16967
4.68593
4.32474
4.1105
3.92702
3.75689
3.60134
3.45575
3.31643
3.18161
3.05016
2.92117
2.79391
2.66783
2.54248
2.41756
2.29285
2.1682
2.04353
1.91882
1.79406
1.66928
1.54451
1.41979
1.29516
1.17066
1.04633
0.922192
0.798279
0.674631
0.551259
0.428264
0.305631
0.183559
0.0657257
5.51856
4.53364
4.28606
4.08911
3.90988
3.74586
3.59366
3.44966
3.31142
3.17742
3.04659
2.91809
2.79123
2.66545
2.54035
2.41561
2.29103
2.16647
2.04187
1.91719
1.79245
1.66768
1.54291
1.41819
1.29355
1.16904
1.0447
0.920554
0.79663
0.672979
0.549569
0.42658
0.303629
0.181869
0.0577012
5.50252
4.5339
4.28628
4.08928
3.90995
3.74591
3.5937
3.44969
3.31145
3.17746
3.04664
2.91814
2.79129
2.66552
2.54042
2.41569
2.29111
2.16655
2.04195
1.91727
1.79253
1.66776
1.54299
1.41826
1.29362
1.16911
1.04476
0.920615
0.796688
0.673034
0.549621
0.426631
0.303672
0.181923
0.0576518
5.4401
4.55008
4.29351
4.0926
3.913
3.74797
3.59508
3.45069
3.31216
3.17793
3.04692
2.91826
2.79126
2.66537
2.54018
2.41538
2.29076
2.16618
2.04157
1.91691
1.79218
1.66743
1.54268
1.41798
1.29337
1.16888
1.04457
0.920444
0.796552
0.672931
0.54956
0.426566
0.303765
0.181595
0.0609149
5.50505
4.52907
4.28605
4.08947
3.91
3.74596
3.59373
3.44968
3.31141
3.1774
3.04658
2.91809
2.79125
2.66549
2.5404
2.41567
2.2911
2.16654
2.04194
1.91726
1.79252
1.66774
1.54296
1.41823
1.29359
1.16907
1.04473
0.920578
0.796659
0.673007
0.549601
0.426602
0.303609
0.181861
0.0573628
5.46576
4.5476
4.29392
4.09285
3.91315
3.74805
3.59512
3.45071
3.31217
3.17793
3.04691
2.91824
2.79123
2.66534
2.54015
2.41535
2.29073
2.16615
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29334
1.16885
1.04453
0.920416
0.796531
0.672916
0.549554
0.426554
0.303731
0.181529
0.0609252
5.3683
4.57382
4.29943
4.09687
3.91593
3.75012
3.59678
3.45208
3.31332
3.1789
3.04774
2.91897
2.79188
2.66592
2.54068
2.41583
2.29118
2.16657
2.04194
1.91725
1.79251
1.66774
1.54298
1.41827
1.29364
1.16915
1.04482
0.920682
0.796773
0.673133
0.54975
0.426754
0.30396
0.181829
0.0609828
5.46214
4.54603
4.28754
4.09135
3.91091
3.74681
3.59456
3.45044
3.3121
3.17804
3.04718
2.91868
2.79182
2.66605
2.54094
2.41619
2.29159
2.167
2.04235
1.91764
1.79286
1.66805
1.54324
1.41848
1.29381
1.16928
1.04492
0.92076
0.79683
0.673167
0.549742
0.426736
0.30365
0.182072
0.0561187
5.57111
4.5185
4.28132
4.0866
3.9075
3.74437
3.59274
3.44905
3.31104
3.17726
3.04663
2.91832
2.79162
2.66598
2.54097
2.41629
2.29173
2.16717
2.04253
1.91781
1.79303
1.6682
1.54337
1.4186
1.29391
1.16936
1.04499
0.920816
0.796875
0.673201
0.549763
0.426757
0.303616
0.18217
0.0553398
5.48667
4.53783
4.28525
4.08966
3.90961
3.74594
3.59396
3.45002
3.31181
3.17787
3.04711
2.91868
2.79188
2.66616
2.54108
2.41635
2.29175
2.16715
2.0425
1.91777
1.79298
1.66815
1.54333
1.41856
1.29388
1.16934
1.04497
0.920798
0.796853
0.673188
0.549752
0.426768
0.303657
0.182208
0.0554229
5.5213
4.52433
4.28262
4.0876
3.90808
3.7448
3.59307
3.44932
3.31128
3.17747
3.04683
2.9185
2.79178
2.66613
2.54111
2.41641
2.29183
2.16725
2.0426
1.91787
1.79307
1.66824
1.54341
1.41863
1.29395
1.16939
1.04501
0.920838
0.796886
0.673214
0.549771
0.426789
0.303656
0.182267
0.0551086
5.31039
4.62459
4.30274
4.10163
3.91841
3.75153
3.59801
3.45329
3.31453
3.18016
3.04904
2.92031
2.79325
2.66731
2.54207
2.41721
2.29252
2.16787
2.04317
1.91841
1.79359
1.66873
1.54389
1.4191
1.2944
1.16984
1.04545
0.921268
0.797313
0.673626
0.550194
0.427163
0.304245
0.18231
0.0584718
5.46979
4.54505
4.28654
4.09055
3.91024
3.74637
3.59428
3.45027
3.31201
3.17801
3.0472
2.91873
2.7919
2.66614
2.54104
2.41629
2.29168
2.16708
2.04242
1.9177
1.7929
1.66808
1.54326
1.4185
1.29383
1.16929
1.04492
0.920756
0.796815
0.673153
0.549722
0.426737
0.303645
0.182147
0.0556571
5.4477
4.54602
4.29335
4.09269
3.91304
3.74798
3.59507
3.45068
3.31214
3.17791
3.0469
2.91824
2.79123
2.66535
2.54016
2.41536
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04455
0.920428
0.796541
0.672925
0.549562
0.426563
0.303735
0.181551
0.0607914
5.51699
4.52838
4.28461
4.08841
3.90908
3.74534
3.59332
3.44943
3.31128
3.17737
3.04662
2.91819
2.79139
2.66567
2.54061
2.4159
2.29133
2.16677
2.04216
1.91747
1.79272
1.66793
1.54314
1.41839
1.29374
1.16921
1.04485
0.920692
0.796754
0.673092
0.549666
0.426676
0.303657
0.182033
0.0567064
5.52152
4.52438
4.28268
4.08772
3.90811
3.74481
3.59308
3.44931
3.31125
3.17743
3.04678
2.91845
2.79174
2.66609
2.54107
2.41638
2.29181
2.16723
2.04258
1.91786
1.79306
1.66823
1.5434
1.41862
1.29393
1.16938
1.04501
0.920836
0.796896
0.673223
0.549784
0.426778
0.303612
0.182209
0.0550634
5.50477
4.53104
4.28367
4.08857
3.9087
3.7453
3.59348
3.44965
3.31153
3.17765
3.04696
2.91859
2.79185
2.66616
2.54111
2.41639
2.2918
2.1672
2.04254
1.9178
1.793
1.66816
1.54333
1.41855
1.29387
1.16932
1.04495
0.920774
0.796826
0.67316
0.549721
0.426742
0.303597
0.18223
0.0548705
5.47557
4.5461
4.2911
4.09142
3.912
3.7473
3.59462
3.45036
3.31192
3.17776
3.0468
2.91818
2.79121
2.66535
2.54018
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.16891
1.04458
0.920456
0.796554
0.672924
0.549545
0.426558
0.303726
0.181685
0.0599731
5.44949
4.54983
4.289
4.0921
3.91153
3.74717
3.59477
3.45057
3.31217
3.17806
3.04717
2.91863
2.79174
2.66595
2.54083
2.41607
2.29146
2.16688
2.04224
1.91753
1.79276
1.66796
1.54316
1.41841
1.29375
1.16922
1.04487
0.920712
0.796786
0.673126
0.549707
0.426702
0.303653
0.182008
0.0566173
5.41536
4.55347
4.29541
4.09395
3.91382
3.74851
3.59547
3.45098
3.31238
3.1781
3.04705
2.91837
2.79135
2.66545
2.54025
2.41545
2.29082
2.16624
2.04163
1.91696
1.79224
1.66749
1.54274
1.41803
1.29342
1.16893
1.0446
0.920481
0.796588
0.672965
0.549596
0.426598
0.303782
0.181619
0.0608212
5.14384
4.69792
4.32927
4.11189
3.92878
3.75802
3.60201
3.45625
3.31681
3.18191
3.0504
2.92137
2.79408
2.66796
2.54259
2.41766
2.29294
2.16828
2.04361
1.9189
1.79415
1.66937
1.5446
1.41988
1.29526
1.17076
1.04643
0.922291
0.79838
0.674734
0.551366
0.428373
0.305784
0.183833
0.068099
5.3502
4.59479
4.29889
4.09768
3.91598
3.75012
3.59696
3.4524
3.31372
3.17936
3.04824
2.91948
2.79239
2.66644
2.54118
2.41632
2.29164
2.16701
2.04234
1.91762
1.79285
1.66804
1.54325
1.41851
1.29385
1.16933
1.04498
0.920829
0.796899
0.673241
0.549833
0.426831
0.303957
0.18201
0.0592822
5.60931
4.50672
4.27872
4.08493
3.90617
3.74359
3.59229
3.44882
3.31099
3.17736
3.04687
2.91867
2.79207
2.6665
2.54152
2.41684
2.29226
2.16766
2.04298
1.91822
1.79338
1.66852
1.54366
1.41885
1.29414
1.16957
1.04517
0.920974
0.797006
0.673328
0.549881
0.426919
0.303736
0.182499
0.0542869
5.60052
4.50732
4.27876
4.08498
3.90618
3.74359
3.59228
3.44879
3.31096
3.17731
3.04682
2.91863
2.79202
2.66645
2.54148
2.4168
2.29222
2.16762
2.04295
1.91819
1.79335
1.66849
1.54363
1.41882
1.29411
1.16954
1.04515
0.920967
0.797014
0.67333
0.549881
0.426886
0.303671
0.182445
0.0542711
5.49244
4.53361
4.28559
4.08983
3.90984
3.74603
3.59395
3.44995
3.3117
3.17773
3.04695
2.91851
2.79171
2.66599
2.54093
2.41621
2.29163
2.16705
2.04242
1.91771
1.79293
1.66812
1.54331
1.41854
1.29387
1.16933
1.04497
0.920806
0.796872
0.673205
0.549775
0.426768
0.303659
0.182128
0.0558931
5.4367
4.55595
4.28981
4.09223
3.91173
3.74727
3.59483
3.45064
3.31224
3.17813
3.04722
2.91865
2.79174
2.66592
2.54079
2.41602
2.2914
2.16681
2.04217
1.91746
1.7927
1.6679
1.54311
1.41836
1.29371
1.16918
1.04483
0.920676
0.796745
0.673091
0.549673
0.426683
0.303683
0.181997
0.0570327
5.47454
4.53913
4.28646
4.08973
3.90993
3.74594
3.59378
3.44978
3.31154
3.17755
3.04675
2.91828
2.79144
2.66569
2.5406
2.41587
2.29128
2.16671
2.04209
1.9174
1.79264
1.66785
1.54306
1.41831
1.29366
1.16914
1.04478
0.920627
0.796694
0.673038
0.549617
0.42663
0.303612
0.181982
0.056686
5.43418
4.55136
4.29471
4.09314
3.91346
3.74828
3.59529
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04457
0.920455
0.796568
0.672952
0.549587
0.426586
0.303788
0.181547
0.0613608
5.43686
4.55091
4.29472
4.09316
3.91348
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66743
1.54269
1.41799
1.29338
1.16889
1.04457
0.920452
0.796566
0.672951
0.549587
0.426585
0.303785
0.181541
0.0613695
5.1705
4.68549
4.32457
4.11037
3.92695
3.75685
3.60131
3.45573
3.3164
3.18159
3.05014
2.92115
2.7939
2.66781
2.54246
2.41754
2.29283
2.16818
2.04351
1.9188
1.79405
1.66926
1.54449
1.41977
1.29513
1.17063
1.04629
0.922152
0.798233
0.674577
0.551196
0.428192
0.305549
0.183466
0.0656768
5.39196
4.56414
4.2967
4.09537
3.91465
3.74916
3.59602
3.45145
3.31278
3.17845
3.04736
2.91865
2.79161
2.66569
2.54048
2.41567
2.29103
2.16644
2.04182
1.91714
1.7924
1.66764
1.54288
1.41816
1.29354
1.16904
1.04471
0.920578
0.796672
0.673033
0.549649
0.426653
0.30382
0.181764
0.0601838
5.47011
4.54506
4.29288
4.09244
3.9128
3.74781
3.59496
3.45059
3.31208
3.17786
3.04686
2.91822
2.79123
2.66535
2.54017
2.41538
2.29077
2.16619
2.04159
1.91692
1.7922
1.66745
1.5427
1.41799
1.29338
1.16889
1.04457
0.920446
0.796558
0.67294
0.549574
0.426575
0.303735
0.181582
0.060514
5.51446
4.53055
4.28336
4.08856
3.90845
3.74534
3.59368
3.44991
3.31182
3.17797
3.0473
2.91894
2.7922
2.66652
2.54146
2.41672
2.29209
2.16747
2.04278
1.91801
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04503
0.92086
0.796923
0.673253
0.549808
0.4268
0.303533
0.182282
0.0539141
5.43758
4.55081
4.29398
4.09279
3.91317
3.74809
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79126
2.66537
2.54018
2.41537
2.29075
2.16617
2.04157
1.9169
1.79218
1.66742
1.54268
1.41798
1.29336
1.16888
1.04456
0.92044
0.79655
0.672931
0.549562
0.426566
0.303768
0.181569
0.0611062
5.234
4.65134
4.31491
4.10603
3.9228
3.75435
3.59976
3.45457
3.3155
3.18088
3.04957
2.92069
2.79351
2.66748
2.54218
2.41728
2.29257
2.16791
2.04322
1.91848
1.79368
1.66887
1.54406
1.4193
1.29464
1.17011
1.04574
0.921575
0.797631
0.673954
0.550549
0.427534
0.304824
0.182658
0.063182
5.4378
4.5507
4.29383
4.09273
3.91311
3.74804
3.59513
3.45073
3.31219
3.17796
3.04694
2.91827
2.79126
2.66537
2.54018
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66743
1.54269
1.41799
1.29337
1.16889
1.04457
0.920448
0.796556
0.672936
0.549566
0.426571
0.303772
0.181587
0.0610186
5.46512
4.54508
4.29298
4.0925
3.91288
3.74787
3.595
3.45062
3.3121
3.17787
3.04687
2.91821
2.79121
2.66533
2.54015
2.41535
2.29073
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29334
1.16885
1.04453
0.920413
0.796527
0.672911
0.549547
0.426549
0.303716
0.181545
0.0606518
5.5024
4.5323
4.28395
4.08894
3.90889
3.74542
3.59356
3.44969
3.31154
3.17765
3.04694
2.91856
2.79181
2.66613
2.54108
2.41636
2.29177
2.16718
2.04252
1.91779
1.79299
1.66815
1.54332
1.41855
1.29386
1.16932
1.04494
0.920777
0.796842
0.673173
0.549737
0.426734
0.303556
0.182169
0.0548601
5.48604
4.54005
4.29085
4.0916
3.91199
3.74726
3.59458
3.45029
3.31184
3.17768
3.04673
2.91812
2.79117
2.66532
2.54017
2.41539
2.29078
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.418
1.29338
1.16889
1.04457
0.920439
0.796543
0.672916
0.549541
0.426548
0.303673
0.181644
0.0595612
5.34777
4.60779
4.29796
4.09863
3.91606
3.7501
3.59708
3.45261
3.31404
3.17978
3.04876
2.92009
2.79308
2.66716
2.54192
2.41705
2.29234
2.16766
2.04294
1.91816
1.79333
1.66847
1.54363
1.41884
1.29415
1.16959
1.04522
0.92104
0.797093
0.673422
0.549997
0.426989
0.304026
0.182197
0.0575652
5.50569
4.53833
4.28762
4.08984
3.91049
3.74627
3.59393
3.44985
3.31156
3.17751
3.04665
2.91812
2.79122
2.66542
2.5403
2.41555
2.29096
2.1664
2.0418
1.91713
1.7924
1.66763
1.54287
1.41815
1.29352
1.16902
1.04469
0.920545
0.796625
0.672979
0.549575
0.426587
0.303668
0.181835
0.0582707
5.54584
4.51884
4.28115
4.08652
3.90758
3.74441
3.59274
3.44906
3.31105
3.17726
3.04663
2.9183
2.79158
2.66592
2.5409
2.41621
2.29165
2.16708
2.04244
1.91773
1.79294
1.66812
1.5433
1.41853
1.29385
1.16931
1.04494
0.920763
0.796814
0.673143
0.549704
0.426718
0.303623
0.182162
0.0555655
5.36267
4.57584
4.30007
4.09701
3.91607
3.75019
3.5968
3.45208
3.31331
3.17888
3.04772
2.91893
2.79183
2.66587
2.54062
2.41577
2.29112
2.16651
2.04188
1.91719
1.79245
1.66769
1.54293
1.41821
1.29359
1.1691
1.04477
0.920634
0.796727
0.673089
0.549711
0.426717
0.30394
0.181772
0.0612966
5.51153
4.52701
4.28407
4.0885
3.90891
3.74532
3.59339
3.44951
3.31136
3.17746
3.04673
2.91834
2.79157
2.66588
2.54084
2.41614
2.29157
2.16701
2.04238
1.91768
1.79291
1.66809
1.54329
1.41852
1.29385
1.16931
1.04495
0.920783
0.796848
0.67318
0.54975
0.426743
0.30364
0.182103
0.0559201
5.52127
4.52411
4.28302
4.08776
3.90832
3.74491
3.59309
3.44928
3.31118
3.17732
3.04663
2.91827
2.79152
2.66585
2.54082
2.41612
2.29156
2.16699
2.04237
1.91766
1.79288
1.66807
1.54325
1.41849
1.29381
1.16927
1.04491
0.920742
0.796807
0.673139
0.549708
0.426703
0.303589
0.182084
0.055676
5.41722
4.56016
4.29242
4.09334
3.9129
3.74802
3.59529
3.45095
3.31244
3.17824
3.04725
2.91861
2.79164
2.66578
2.5406
2.41581
2.29119
2.16661
2.04198
1.91729
1.79255
1.66777
1.543
1.41827
1.29364
1.16913
1.04479
0.920646
0.796725
0.673077
0.549673
0.42668
0.303769
0.181911
0.0585619
5.49756
4.5364
4.28939
4.09098
3.91146
3.74691
3.59434
3.45011
3.3117
3.17758
3.04665
2.91807
2.79113
2.6653
2.54015
2.41539
2.29078
2.16622
2.04161
1.91694
1.79221
1.66745
1.5427
1.41799
1.29336
1.16887
1.04454
0.920413
0.796513
0.672882
0.549502
0.42651
0.303614
0.181655
0.059011
5.42781
4.55776
4.29104
4.09281
3.91233
3.74766
3.59508
3.45081
3.31236
3.1782
3.04725
2.91865
2.79171
2.66587
2.54072
2.41594
2.29132
2.16673
2.0421
1.9174
1.79265
1.66786
1.54307
1.41834
1.29369
1.16917
1.04483
0.920675
0.796748
0.673095
0.549683
0.426692
0.303732
0.181967
0.057727
5.40495
4.55761
4.29658
4.09465
3.91433
3.74887
3.59573
3.45118
3.31254
3.17823
3.04716
2.91845
2.79142
2.66551
2.5403
2.41549
2.29086
2.16628
2.04166
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16895
1.04463
0.920502
0.796608
0.672982
0.549612
0.426615
0.303809
0.181634
0.0609844
5.18997
4.67697
4.32116
4.10922
3.92566
3.75603
3.60082
3.45536
3.31612
3.18137
3.04997
2.92102
2.79379
2.66772
2.5424
2.41749
2.29278
2.16814
2.04347
1.91877
1.79401
1.66923
1.54446
1.41974
1.29511
1.17062
1.04629
0.922151
0.798236
0.674581
0.551194
0.428182
0.305494
0.183362
0.0641262
5.49912
4.5358
4.28435
4.08939
3.90912
3.74569
3.59385
3.44998
3.31183
3.17792
3.04721
2.91882
2.79206
2.66636
2.5413
2.41657
2.29196
2.16735
2.04268
1.91793
1.79312
1.66827
1.54344
1.41865
1.29396
1.16941
1.04503
0.92086
0.796922
0.673251
0.549811
0.426803
0.303596
0.182242
0.0546025
5.50134
4.53408
4.284
4.08902
3.90893
3.74556
3.59376
3.44991
3.31178
3.17789
3.04718
2.9188
2.79204
2.66634
2.54127
2.41654
2.29193
2.16731
2.04264
1.91789
1.79308
1.66823
1.5434
1.41861
1.29392
1.16937
1.04499
0.920819
0.796869
0.673202
0.549759
0.42678
0.303612
0.18228
0.0545976
5.43312
4.54807
4.29312
4.09298
3.91291
3.74789
3.59504
3.45065
3.31213
3.17791
3.04692
2.91828
2.7913
2.66544
2.54027
2.41548
2.29087
2.1663
2.04169
1.91702
1.79229
1.66754
1.54278
1.41807
1.29345
1.16896
1.04463
0.920502
0.796603
0.672972
0.549593
0.426597
0.303734
0.181698
0.0597692
5.3719
4.59885
4.29573
4.09797
3.91522
3.74965
3.59685
3.45247
3.31395
3.17974
3.04875
2.9201
2.7931
2.66719
2.54195
2.41708
2.29235
2.16766
2.04293
1.91813
1.79329
1.66843
1.54358
1.41878
1.29409
1.16954
1.04516
0.92099
0.79705
0.673378
0.54995
0.426934
0.303898
0.182174
0.0565646
5.51177
4.53059
4.28362
4.08875
3.90867
3.74542
3.59368
3.44986
3.31176
3.17789
3.04721
2.91886
2.79212
2.66645
2.5414
2.41667
2.29206
2.16745
2.04277
1.91802
1.7932
1.66834
1.5435
1.41871
1.29401
1.16945
1.04508
0.920902
0.796962
0.673289
0.549844
0.426836
0.303603
0.182301
0.0543448
5.52008
4.53298
4.28774
4.09022
3.91073
3.74643
3.59403
3.4499
3.31156
3.17749
3.04662
2.91809
2.7912
2.6654
2.54029
2.41554
2.29096
2.1664
2.0418
1.91712
1.79239
1.66762
1.54286
1.41814
1.29351
1.169
1.04466
0.920525
0.796615
0.672972
0.549578
0.426582
0.303638
0.181781
0.0582067
5.45733
4.55868
4.28687
4.09197
3.91069
3.74688
3.59496
3.45104
3.31283
3.17885
3.04802
2.91952
2.79263
2.6668
2.54163
2.4168
2.29211
2.16744
2.04272
1.91794
1.7931
1.66823
1.54338
1.41859
1.29389
1.16934
1.04496
0.920796
0.796862
0.673194
0.549757
0.426746
0.303546
0.18213
0.0544927
5.53737
4.51942
4.28155
4.08699
3.90741
3.74452
3.593
3.44936
3.31139
3.17765
3.04707
2.9188
2.79213
2.66651
2.5415
2.41679
2.29219
2.16757
2.04289
1.91812
1.79329
1.66843
1.54357
1.41877
1.29407
1.1695
1.04511
0.920921
0.79696
0.673286
0.549835
0.426865
0.303653
0.18244
0.0540188
5.53094
4.52206
4.28204
4.08747
3.90775
3.74477
3.59318
3.44947
3.31146
3.17767
3.04705
2.91876
2.79207
2.66643
2.54141
2.4167
2.2921
2.16748
2.0428
1.91804
1.79321
1.66835
1.5435
1.4187
1.294
1.16944
1.04506
0.920885
0.796945
0.673271
0.549826
0.426822
0.303563
0.182331
0.0539814
5.34513
4.60706
4.29864
4.09921
3.91645
3.75037
3.59726
3.45273
3.31411
3.17982
3.04878
2.92009
2.79305
2.66712
2.54187
2.41699
2.29228
2.1676
2.04288
1.9181
1.79328
1.66842
1.54358
1.4188
1.29411
1.16956
1.04519
0.921016
0.797074
0.673399
0.549975
0.426956
0.303994
0.182151
0.0577206
5.48435
4.54381
4.28524
4.09036
3.90978
3.74626
3.5944
3.45047
3.31226
3.17829
3.0475
2.91906
2.79224
2.66649
2.54138
2.41661
2.29197
2.16734
2.04265
1.91789
1.79307
1.66822
1.54338
1.41859
1.29391
1.16936
1.04498
0.920815
0.796881
0.673213
0.549775
0.426766
0.303555
0.182194
0.0544757
5.49158
4.54086
4.28482
4.08983
3.90941
3.74597
3.59414
3.45027
3.3121
3.17818
3.04743
2.91902
2.79222
2.66649
2.5414
2.41664
2.292
2.16737
2.04268
1.91792
1.7931
1.66824
1.5434
1.41861
1.29392
1.16937
1.04499
0.920819
0.796869
0.673203
0.549759
0.426778
0.303598
0.182276
0.0544069
5.46349
4.5418
4.29175
4.09211
3.91233
3.74749
3.59474
3.45042
3.31195
3.17778
3.04681
2.9182
2.79124
2.66539
2.54024
2.41546
2.29086
2.16629
2.04169
1.91702
1.7923
1.66755
1.54279
1.41808
1.29346
1.16897
1.04464
0.920516
0.796618
0.672989
0.549612
0.426615
0.303742
0.181699
0.0597276
5.57289
4.5198
4.28163
4.08679
3.90768
3.74449
3.59282
3.44911
3.31109
3.17729
3.04665
2.91833
2.79162
2.66597
2.54096
2.41628
2.29172
2.16716
2.04253
1.91781
1.79303
1.6682
1.54338
1.4186
1.29392
1.16937
1.045
0.920829
0.796888
0.673214
0.549777
0.426769
0.303637
0.182165
0.0554966
5.48177
4.54985
4.28581
4.09055
3.90954
3.74626
3.59461
3.45087
3.3128
3.17893
3.0482
2.91976
2.7929
2.66709
2.5419
2.41704
2.29231
2.16759
2.04283
1.918
1.79313
1.66823
1.54336
1.41854
1.29383
1.16927
1.04488
0.9207
0.796747
0.673079
0.549627
0.426646
0.303419
0.18218
0.0535434
5.48162
4.54991
4.28582
4.09056
3.90955
3.74626
3.59461
3.45087
3.3128
3.17893
3.0482
2.91976
2.7929
2.66709
2.5419
2.41704
2.29231
2.1676
2.04283
1.91801
1.79313
1.66823
1.54336
1.41854
1.29383
1.16926
1.04488
0.920712
0.79678
0.673116
0.549676
0.426662
0.303376
0.182093
0.0535046
5.35413
4.58
4.30093
4.0974
3.91644
3.75045
3.597
3.45225
3.31345
3.179
3.04781
2.91901
2.7919
2.66592
2.54066
2.4158
2.29114
2.16653
2.04189
1.91721
1.79247
1.6677
1.54294
1.41823
1.29361
1.16911
1.04478
0.92065
0.796743
0.673106
0.549729
0.426736
0.303978
0.181779
0.0616382
5.50956
4.53274
4.28771
4.09023
3.9108
3.74648
3.59406
3.44992
3.31157
3.17749
3.04661
2.91806
2.79117
2.66536
2.54024
2.41549
2.2909
2.16634
2.04174
1.91707
1.79233
1.66757
1.54281
1.41809
1.29346
1.16896
1.04462
0.920487
0.796579
0.67294
0.549549
0.426555
0.303623
0.181742
0.0583671
5.44158
4.55775
4.2892
4.09236
3.91164
3.74736
3.59505
3.45091
3.31253
3.17843
3.04753
2.91898
2.79208
2.66626
2.54112
2.41633
2.2917
2.16708
2.04242
1.91769
1.7929
1.66808
1.54327
1.41851
1.29384
1.16931
1.04494
0.920781
0.796844
0.673185
0.549759
0.426769
0.303716
0.182119
0.0562762
5.4519
4.54706
4.29168
4.09181
3.91229
3.74749
3.59475
3.45045
3.31199
3.17781
3.04684
2.91821
2.79124
2.66537
2.5402
2.41541
2.2908
2.16622
2.04162
1.91695
1.79223
1.66747
1.54272
1.41802
1.2934
1.16891
1.04459
0.920466
0.796564
0.672935
0.549557
0.426569
0.303743
0.181682
0.0601391
5.55926
4.52409
4.28275
4.08731
3.90827
3.74483
3.593
3.44922
3.31114
3.17729
3.0466
2.91822
2.79146
2.66577
2.54073
2.41603
2.29146
2.1669
2.04228
1.91758
1.79282
1.66801
1.54321
1.41845
1.29378
1.16925
1.04488
0.920719
0.796775
0.673109
0.549676
0.426688
0.303635
0.182084
0.0561753
5.42095
4.55427
4.29459
4.09332
3.91345
3.74828
3.59531
3.45086
3.3123
3.17805
3.04701
2.91834
2.79133
2.66543
2.54024
2.41543
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54273
1.41802
1.29341
1.16892
1.0446
0.92048
0.796584
0.672959
0.549586
0.426593
0.303794
0.181635
0.0608924
5.45502
4.54642
4.29133
4.09167
3.91217
3.74741
3.59471
3.45043
3.31198
3.17781
3.04684
2.91822
2.79125
2.66539
2.54023
2.41544
2.29083
2.16626
2.04166
1.91699
1.79226
1.66751
1.54276
1.41806
1.29344
1.16895
1.04463
0.920498
0.796595
0.672963
0.549582
0.426593
0.30376
0.181721
0.0599962
5.43528
4.55075
4.29472
4.09317
3.91348
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04457
0.920454
0.796568
0.672953
0.54959
0.426588
0.303787
0.18154
0.0613669
5.46756
4.53996
4.29094
4.09172
3.91205
3.74729
3.5946
3.45031
3.31185
3.17769
3.04673
2.91813
2.79117
2.66532
2.54016
2.41539
2.29078
2.16621
2.04161
1.91694
1.79222
1.66746
1.54271
1.418
1.29338
1.16888
1.04456
0.920431
0.796535
0.672908
0.549532
0.426538
0.303663
0.181642
0.0595233
5.34626
4.58411
4.30181
4.09809
3.91697
3.75089
3.59739
3.45261
3.31378
3.1793
3.04808
2.91926
2.79212
2.66613
2.54085
2.41599
2.29131
2.16669
2.04205
1.91736
1.79261
1.66784
1.54307
1.41836
1.29373
1.16923
1.0449
0.920764
0.796852
0.67321
0.549829
0.426833
0.304074
0.181881
0.0616785
5.45562
4.54539
4.28883
4.0917
3.91135
3.74699
3.59458
3.45039
3.312
3.1779
3.04702
2.91849
2.79161
2.66582
2.54071
2.41596
2.29136
2.16679
2.04216
1.91746
1.7927
1.66791
1.54312
1.41837
1.29372
1.1692
1.04484
0.920691
0.796767
0.673108
0.549692
0.426688
0.30366
0.18198
0.0569418
5.45663
4.55958
4.28724
4.09203
3.91081
3.74701
3.59509
3.45116
3.31294
3.17894
3.04811
2.91958
2.79269
2.66686
2.54167
2.41683
2.29214
2.16746
2.04273
1.91794
1.7931
1.66823
1.54338
1.41858
1.29389
1.16934
1.04496
0.920787
0.796841
0.673177
0.549737
0.426753
0.303594
0.182197
0.0545424
5.41844
4.55496
4.29389
4.09311
3.91321
3.74813
3.59522
3.45081
3.31226
3.17802
3.047
2.91833
2.79133
2.66544
2.54025
2.41545
2.29082
2.16624
2.04163
1.91696
1.79223
1.66747
1.54272
1.41802
1.2934
1.16891
1.04459
0.920466
0.796565
0.672936
0.549558
0.426569
0.30376
0.181666
0.0604515
5.45695
4.55051
4.29452
4.09299
3.91338
3.74824
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66743
1.54268
1.41798
1.29337
1.16888
1.04456
0.920442
0.796558
0.672944
0.549582
0.42658
0.303777
0.181528
0.0613632
5.41505
4.56421
4.29235
4.09425
3.91318
3.74832
3.59566
3.45131
3.31278
3.17857
3.04758
2.91895
2.79199
2.66613
2.54096
2.41616
2.29152
2.16692
2.04227
1.91756
1.79279
1.66798
1.54319
1.41844
1.29378
1.16926
1.0449
0.920752
0.796826
0.673167
0.549752
0.426746
0.30375
0.182005
0.0574233
5.52145
4.53124
4.28714
4.08997
3.91054
3.7463
3.59394
3.44983
3.31151
3.17745
3.04659
2.91806
2.79117
2.66538
2.54027
2.41553
2.29094
2.16638
2.04178
1.9171
1.79237
1.6676
1.54283
1.41811
1.29348
1.16897
1.04464
0.920497
0.796586
0.672943
0.549548
0.426553
0.303603
0.181765
0.0580363
5.3626
4.58442
4.29849
4.09742
3.91584
3.75011
3.59697
3.45238
3.31369
3.17932
3.04818
2.91943
2.79234
2.66639
2.54114
2.41629
2.29161
2.16699
2.04233
1.91761
1.79284
1.66804
1.54325
1.41851
1.29386
1.16934
1.045
0.920844
0.796918
0.673259
0.549853
0.426846
0.303966
0.182023
0.0593642
5.35959
4.5773
4.30043
4.09711
3.91616
3.75022
3.5968
3.45207
3.31329
3.17886
3.04769
2.9189
2.7918
2.66583
2.54058
2.41574
2.29108
2.16647
2.04184
1.91716
1.79242
1.66765
1.5429
1.41818
1.29356
1.16907
1.04474
0.920612
0.796707
0.673071
0.549695
0.426702
0.303935
0.181749
0.0614597
5.48637
4.54943
4.28609
4.09086
3.90989
3.74657
3.59489
3.4511
3.31297
3.17904
3.04826
2.91977
2.79289
2.66706
2.54187
2.41702
2.29231
2.16761
2.04287
1.91807
1.79321
1.66833
1.54346
1.41866
1.29396
1.16939
1.04501
0.920829
0.796875
0.673204
0.549749
0.426765
0.303536
0.182293
0.0537134
5.48598
4.54969
4.28618
4.09093
3.90992
3.7466
3.59491
3.45111
3.31298
3.17905
3.04826
2.91977
2.79289
2.66706
2.54187
2.41702
2.29231
2.16761
2.04287
1.91807
1.79321
1.66833
1.54347
1.41866
1.29395
1.16939
1.04501
0.92084
0.796906
0.673239
0.549794
0.426777
0.303491
0.182208
0.0536706
5.43866
4.5485
4.29428
4.09306
3.91333
3.74818
3.59521
3.45078
3.31223
3.17797
3.04694
2.91827
2.79125
2.66535
2.54016
2.41535
2.29073
2.16615
2.04154
1.91688
1.79216
1.6674
1.54266
1.41795
1.29334
1.16885
1.04453
0.920416
0.796531
0.672916
0.549555
0.426555
0.303742
0.181522
0.0611153
5.44288
4.54741
4.29406
4.09301
3.91329
3.74815
3.5952
3.45077
3.31222
3.17798
3.04695
2.91828
2.79127
2.66538
2.54019
2.41539
2.29077
2.1662
2.04159
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.920465
0.796579
0.672964
0.5496
0.426599
0.303779
0.181571
0.0610391
5.45399
4.54728
4.29228
4.09204
3.91257
3.74768
3.59488
3.45054
3.31205
3.17785
3.04686
2.91821
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04456
0.920434
0.796537
0.672914
0.549541
0.426551
0.303741
0.181621
0.0605564
5.47225
4.54731
4.29213
4.09192
3.91251
3.74765
3.59486
3.45053
3.31204
3.17785
3.04685
2.91821
2.79122
2.66534
2.54016
2.41537
2.29075
2.16618
2.04157
1.9169
1.79218
1.66742
1.54267
1.41797
1.29336
1.16887
1.04455
0.920431
0.796536
0.672913
0.549541
0.426551
0.303742
0.181617
0.0605895
5.5546
4.52275
4.2827
4.08743
3.90825
3.74486
3.59304
3.44924
3.31114
3.17727
3.04657
2.91819
2.79144
2.66576
2.54072
2.41602
2.29146
2.1669
2.04228
1.91758
1.79281
1.668
1.5432
1.41844
1.29377
1.16923
1.04487
0.920706
0.796774
0.673107
0.54968
0.426675
0.303584
0.182031
0.055959
5.43732
4.55769
4.2895
4.09235
3.91168
3.74731
3.59495
3.45079
3.31241
3.1783
3.04739
2.91883
2.79192
2.66611
2.54097
2.41619
2.29157
2.16696
2.04231
1.91759
1.79281
1.668
1.5432
1.41844
1.29378
1.16925
1.04489
0.920733
0.796799
0.673141
0.549718
0.426729
0.303696
0.182065
0.0565457
5.60578
4.50736
4.27864
4.085
3.90628
3.74366
3.59233
3.44884
3.311
3.17734
3.04684
2.91863
2.79201
2.66643
2.54144
2.41677
2.29219
2.16759
2.04292
1.91816
1.79333
1.66846
1.54361
1.41881
1.2941
1.16953
1.04514
0.920944
0.796978
0.6733
0.549851
0.426883
0.303708
0.182447
0.0544126
5.59849
4.5083
4.27884
4.08513
3.90632
3.74368
3.59233
3.44883
3.31097
3.17731
3.04679
2.91858
2.79197
2.66638
2.54141
2.41673
2.29216
2.16756
2.04289
1.91814
1.79331
1.66845
1.5436
1.41879
1.29409
1.16952
1.04513
0.920947
0.796996
0.673313
0.549865
0.426867
0.30366
0.182403
0.0544046
5.39768
4.58627
4.29262
4.09561
3.91355
3.74862
3.59614
3.45194
3.31355
3.17943
3.0485
2.91991
2.79294
2.66706
2.54183
2.41696
2.29224
2.16755
2.04282
1.91803
1.79319
1.66833
1.54348
1.41869
1.294
1.16945
1.04507
0.920902
0.796958
0.673293
0.549865
0.426869
0.303816
0.182174
0.0560931
5.51894
4.5303
4.28669
4.08978
3.91036
3.7462
3.59389
3.4498
3.3115
3.17746
3.04662
2.9181
2.79124
2.66546
2.54036
2.41562
2.29104
2.16649
2.04189
1.91721
1.79248
1.66771
1.54294
1.41821
1.29357
1.16906
1.04472
0.920578
0.796663
0.673015
0.549614
0.426616
0.303649
0.181839
0.0578382
5.45064
4.54615
4.29023
4.09147
3.9117
3.74709
3.59451
3.45029
3.31188
3.17775
3.04682
2.91824
2.7913
2.66547
2.54032
2.41555
2.29095
2.16638
2.04177
1.9171
1.79237
1.66761
1.54285
1.41813
1.29351
1.16901
1.04468
0.920539
0.796625
0.672983
0.549586
0.426598
0.30371
0.18181
0.0588835
5.57825
4.50981
4.27915
4.08538
3.90653
3.74379
3.59238
3.44883
3.31093
3.17724
3.0467
2.91846
2.79182
2.66623
2.54124
2.41656
2.29199
2.1674
2.04274
1.918
1.79318
1.66833
1.54349
1.41869
1.29399
1.16943
1.04505
0.920869
0.796923
0.673244
0.5498
0.4268
0.303607
0.182308
0.0545643
5.58188
4.50853
4.27883
4.0852
3.90647
3.74375
3.59236
3.44883
3.31095
3.17727
3.04673
2.91849
2.79186
2.66625
2.54127
2.41658
2.29201
2.16742
2.04275
1.918
1.79318
1.66833
1.54348
1.41869
1.29399
1.16943
1.04504
0.920856
0.796895
0.67322
0.549773
0.426801
0.303642
0.182343
0.0545871
5.26525
4.64058
4.30933
4.10376
3.92078
3.75302
3.59892
3.45394
3.31502
3.18051
3.04928
2.92046
2.79333
2.66733
2.54204
2.41715
2.29244
2.16777
2.04308
1.91833
1.79353
1.6687
1.54389
1.41912
1.29445
1.16991
1.04554
0.921371
0.79742
0.67374
0.550322
0.427297
0.304502
0.18241
0.0611317
5.52044
4.52947
4.28625
4.08955
3.91014
3.74605
3.59378
3.44972
3.31144
3.17741
3.04658
2.91808
2.79123
2.66546
2.54036
2.41563
2.29105
2.1665
2.0419
1.91722
1.79248
1.66771
1.54294
1.41821
1.29357
1.16906
1.04471
0.920568
0.796651
0.673002
0.549599
0.426601
0.303622
0.18184
0.0576088
5.30722
4.61359
4.30494
4.10109
3.91859
3.75181
3.59816
3.45336
3.31453
3.18005
3.04884
2.91999
2.79283
2.66681
2.5415
2.41659
2.29187
2.16721
2.04253
1.9178
1.79301
1.66821
1.54341
1.41866
1.29401
1.16949
1.04513
0.920976
0.797043
0.673376
0.549971
0.426964
0.304159
0.182104
0.0606376
5.50914
4.53132
4.28549
4.08887
3.90956
3.74565
3.59353
3.44958
3.31138
3.17742
3.04663
2.91817
2.79134
2.66559
2.54051
2.41579
2.29122
2.16666
2.04206
1.91738
1.79264
1.66785
1.54307
1.41834
1.29369
1.16917
1.04482
0.920669
0.796736
0.673078
0.549658
0.426667
0.303683
0.181986
0.0572668
5.45732
4.54902
4.2943
4.09299
3.91333
3.74819
3.59523
3.4508
3.31224
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54268
1.41798
1.29336
1.16888
1.04456
0.920437
0.796553
0.672939
0.549577
0.426576
0.303764
0.181533
0.0611949
5.46351
4.54758
4.29389
4.09285
3.9132
3.7481
3.59516
3.45075
3.31221
3.17796
3.04694
2.91827
2.79126
2.66537
2.54018
2.41538
2.29076
2.16619
2.04158
1.91692
1.7922
1.66744
1.5427
1.418
1.29338
1.16889
1.04457
0.920455
0.796569
0.672955
0.549592
0.426591
0.30377
0.18156
0.0610287
5.56125
4.51257
4.28014
4.08592
3.90682
3.74396
3.59247
3.44888
3.31095
3.17723
3.04667
2.91842
2.79177
2.66617
2.54118
2.4165
2.29193
2.16734
2.04269
1.91795
1.79313
1.66829
1.54345
1.41865
1.29396
1.1694
1.04502
0.920844
0.796899
0.673222
0.54978
0.426781
0.303589
0.182284
0.0545884
5.568
4.51043
4.27927
4.08543
3.90662
3.74384
3.59241
3.44886
3.31096
3.17726
3.04672
2.91847
2.79182
2.66622
2.54122
2.41654
2.29197
2.16738
2.04272
1.91797
1.79316
1.66831
1.54346
1.41867
1.29398
1.16941
1.04503
0.920844
0.796885
0.67321
0.549764
0.42679
0.303634
0.182322
0.0546603
5.42836
4.55099
4.29275
4.09334
3.91294
3.74798
3.59518
3.45079
3.31226
3.17805
3.04706
2.91843
2.79146
2.66561
2.54045
2.41567
2.29105
2.16648
2.04186
1.91718
1.79245
1.66768
1.54291
1.41819
1.29356
1.16906
1.04473
0.920588
0.796678
0.673034
0.54964
0.426641
0.303734
0.181819
0.0588939
5.34701
4.58521
4.30132
4.09779
3.91672
3.75067
3.5972
3.45244
3.31363
3.17917
3.04797
2.91916
2.79204
2.66605
2.54078
2.41592
2.29125
2.16663
2.04199
1.9173
1.79255
1.66778
1.54302
1.4183
1.29368
1.16918
1.04485
0.920711
0.796799
0.673157
0.549777
0.426784
0.304025
0.181848
0.0615451
5.40042
4.5872
4.29243
4.09569
3.91346
3.74857
3.59613
3.45195
3.31357
3.17948
3.04857
2.92
2.79306
2.66719
2.54198
2.41712
2.2924
2.1677
2.04296
1.91816
1.7933
1.66843
1.54357
1.41877
1.29407
1.16951
1.04513
0.920953
0.797004
0.673336
0.549903
0.426906
0.303833
0.182222
0.0557943
5.41198
4.55815
4.29393
4.09428
3.91364
3.74853
3.59565
3.4512
3.31261
3.17834
3.04731
2.91865
2.79166
2.66578
2.5406
2.4158
2.29117
2.16658
2.04196
1.91727
1.79253
1.66775
1.54298
1.41825
1.29362
1.16911
1.04477
0.92063
0.796715
0.673067
0.549669
0.42667
0.303765
0.181859
0.0589036
5.29063
4.62442
4.30666
4.10235
3.91946
3.75229
3.59849
3.45363
3.31479
3.18034
3.04915
2.92034
2.7932
2.66719
2.54189
2.41698
2.29226
2.16759
2.04289
1.91814
1.79335
1.66852
1.54371
1.41895
1.29428
1.16975
1.04538
0.921206
0.797259
0.673579
0.550161
0.42714
0.304327
0.182263
0.0606344
5.43151
4.55252
4.29182
4.09252
3.91247
3.74763
3.59492
3.4506
3.31213
3.17795
3.04698
2.91836
2.7914
2.66554
2.54038
2.4156
2.29099
2.16641
2.0418
1.91713
1.79239
1.66763
1.54287
1.41815
1.29353
1.16903
1.04469
0.920559
0.796645
0.673003
0.549607
0.426617
0.30374
0.181817
0.0591011
5.59791
4.50921
4.27897
4.08522
3.90641
3.74374
3.59237
3.44884
3.31097
3.1773
3.04678
2.91856
2.79193
2.66634
2.54136
2.41669
2.29211
2.16752
2.04286
1.91811
1.79328
1.66843
1.54357
1.41877
1.29407
1.1695
1.04512
0.920934
0.796984
0.673301
0.549854
0.426854
0.303652
0.182375
0.0544897
5.59843
4.50729
4.27852
4.08501
3.90633
3.74369
3.59234
3.44885
3.31099
3.17732
3.04681
2.91859
2.79197
2.66637
2.54139
2.41671
2.29213
2.16754
2.04287
1.91811
1.79328
1.66842
1.54357
1.41877
1.29407
1.1695
1.04511
0.920918
0.796953
0.673275
0.549827
0.426856
0.303687
0.182411
0.0544833
5.59997
4.50884
4.27885
4.08514
3.90643
3.74372
3.59234
3.44881
3.31093
3.17725
3.04672
2.91848
2.79184
2.66624
2.54125
2.41657
2.29199
2.1674
2.04273
1.91798
1.79317
1.66831
1.54347
1.41867
1.29397
1.16941
1.04502
0.92084
0.79688
0.673205
0.549759
0.426788
0.30363
0.182333
0.0545784
5.59747
4.51033
4.27919
4.08532
3.90649
3.74376
3.59235
3.4488
3.3109
3.17721
3.04667
2.91843
2.79178
2.66618
2.54119
2.41651
2.29194
2.16735
2.04269
1.91795
1.79314
1.66829
1.54344
1.41865
1.29395
1.16939
1.04501
0.920834
0.796889
0.673211
0.549769
0.42677
0.303581
0.18228
0.0545662
5.43245
4.54793
4.29356
4.09298
3.91306
3.74798
3.59509
3.45068
3.31214
3.17791
3.0469
2.91825
2.79126
2.66538
2.5402
2.4154
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.5427
1.418
1.29338
1.16889
1.04457
0.920446
0.796553
0.67293
0.549559
0.426563
0.303725
0.181613
0.0603117
5.48455
4.53597
4.28599
4.08996
3.90991
3.74602
3.59389
3.44988
3.31162
3.17764
3.04685
2.9184
2.79159
2.66587
2.5408
2.41607
2.29149
2.16692
2.04229
1.91758
1.79281
1.668
1.5432
1.41844
1.29378
1.16924
1.04488
0.920723
0.796793
0.673129
0.549704
0.426699
0.303609
0.182049
0.0560445
5.20572
4.66691
4.31898
4.10799
3.92461
3.75543
3.60044
3.45507
3.3159
3.18119
3.04982
2.92089
2.79368
2.66762
2.5423
2.4174
2.2927
2.16805
2.04338
1.91866
1.79388
1.66908
1.54427
1.41952
1.29485
1.17031
1.04594
0.921766
0.797817
0.674137
0.55073
0.427711
0.305023
0.182868
0.0640132
5.44675
4.54363
4.29181
4.0923
3.91239
3.74754
3.59479
3.45047
3.31199
3.17781
3.04685
2.91823
2.79128
2.66543
2.54027
2.4155
2.2909
2.16633
2.04172
1.91706
1.79233
1.66757
1.54282
1.41811
1.29348
1.16899
1.04466
0.92053
0.796628
0.672995
0.549613
0.426616
0.303735
0.181736
0.0594569
5.58861
4.50477
4.2784
4.08482
3.90603
3.7435
3.59222
3.44876
3.31094
3.17731
3.04683
2.91865
2.79206
2.66649
2.54152
2.41684
2.29226
2.16766
2.04298
1.91821
1.79337
1.6685
1.54364
1.41883
1.29412
1.16955
1.04516
0.920971
0.797018
0.673334
0.549887
0.426896
0.303674
0.182485
0.0541233
5.59216
4.50366
4.27816
4.08468
3.90596
3.74345
3.5922
3.44875
3.31094
3.17732
3.04684
2.91866
2.79207
2.6665
2.54153
2.41685
2.29226
2.16765
2.04297
1.9182
1.79337
1.66849
1.54363
1.41882
1.29411
1.16954
1.04514
0.920947
0.796979
0.673305
0.549862
0.426911
0.303723
0.182511
0.0541157
5.4725
4.54229
4.2866
4.09037
3.91025
3.74631
3.59417
3.45015
3.31188
3.17788
3.04707
2.91859
2.79176
2.66601
2.54092
2.41617
2.29157
2.16698
2.04234
1.91763
1.79285
1.66803
1.54323
1.41847
1.2938
1.16927
1.0449
0.920741
0.796801
0.67314
0.549711
0.426725
0.303656
0.182115
0.0560265
5.34413
4.58843
4.30133
4.09835
3.91684
3.75075
3.59732
3.45258
3.31378
3.17933
3.04814
2.91933
2.79221
2.66623
2.54096
2.41609
2.29142
2.16679
2.04214
1.91744
1.79268
1.6679
1.54312
1.4184
1.29376
1.16926
1.04492
0.920774
0.796855
0.673204
0.549813
0.426815
0.304019
0.181932
0.0608252
5.41323
4.55492
4.29604
4.09409
3.91405
3.74869
3.59559
3.45107
3.31246
3.17816
3.0471
2.9184
2.79136
2.66545
2.54025
2.41544
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41803
1.29341
1.16892
1.0446
0.920482
0.796592
0.672973
0.549607
0.426607
0.303808
0.181585
0.0612832
5.53189
4.52267
4.28284
4.08761
3.90834
3.74492
3.59308
3.44927
3.31117
3.1773
3.0466
2.91822
2.79147
2.66579
2.54075
2.41606
2.29149
2.16693
2.04231
1.91761
1.79284
1.66803
1.54322
1.41846
1.29379
1.16925
1.04489
0.920727
0.796793
0.673126
0.549698
0.426693
0.303598
0.182053
0.0559276
5.5273
4.52379
4.28322
4.08781
3.90851
3.74502
3.59314
3.4493
3.31118
3.17729
3.04658
2.91819
2.79142
2.66573
2.54069
2.41599
2.29143
2.16687
2.04225
1.91755
1.79279
1.66798
1.54318
1.41842
1.29375
1.16922
1.04486
0.920697
0.796766
0.673101
0.549675
0.426671
0.303588
0.182019
0.0560753
5.36034
4.59891
4.29667
4.09754
3.91535
3.74968
3.59677
3.45235
3.31379
3.17954
3.04851
2.91982
2.79278
2.66685
2.5416
2.41673
2.29203
2.16736
2.04266
1.9179
1.79309
1.66826
1.54343
1.41866
1.29398
1.16944
1.04508
0.920911
0.796973
0.67331
0.549891
0.426888
0.303929
0.182115
0.0576419
5.46451
4.5386
4.28985
4.09146
3.91161
3.74702
3.59444
3.4502
3.31179
3.17766
3.04675
2.91817
2.79125
2.66544
2.5403
2.41554
2.29095
2.16638
2.04178
1.91711
1.79238
1.66761
1.54285
1.41813
1.2935
1.169
1.04467
0.920531
0.796623
0.672983
0.549591
0.426595
0.303671
0.181776
0.0585895
5.38951
4.58901
4.29306
4.0963
3.9139
3.74878
3.59622
3.45197
3.31355
3.17943
3.04852
2.91994
2.793
2.66714
2.54194
2.41709
2.29238
2.1677
2.04297
1.91818
1.79333
1.66846
1.5436
1.41881
1.29411
1.16955
1.04517
0.92099
0.797048
0.673373
0.54994
0.426921
0.303845
0.182183
0.056058
5.28782
4.6199
4.30796
4.10217
3.91967
3.75252
3.59861
3.45369
3.31479
3.18026
3.049
2.92013
2.79295
2.6669
2.54158
2.41666
2.29194
2.16727
2.04259
1.91786
1.79308
1.66827
1.54348
1.41874
1.29409
1.16957
1.04522
0.921063
0.797131
0.673467
0.55007
0.427068
0.304322
0.182174
0.0619393
5.512
4.52835
4.28578
4.08933
3.90986
3.74588
3.59369
3.44968
3.31142
3.17743
3.04663
2.91816
2.79133
2.66559
2.54051
2.4158
2.29123
2.16667
2.04207
1.91739
1.79265
1.66786
1.54308
1.41834
1.29369
1.16917
1.04482
0.92067
0.796746
0.673089
0.549676
0.426674
0.303662
0.181945
0.0571801
5.3621
4.58293
4.29883
4.09739
3.91592
3.75015
3.59694
3.45232
3.31359
3.1792
3.04806
2.91929
2.7922
2.66624
2.541
2.41614
2.29147
2.16685
2.0422
1.91749
1.79273
1.66794
1.54316
1.41842
1.29378
1.16927
1.04493
0.920778
0.796855
0.6732
0.549799
0.426795
0.303937
0.181957
0.0597084
5.45392
4.54178
4.29108
4.09212
3.91214
3.74738
3.59469
3.45039
3.31193
3.17777
3.04682
2.91823
2.79128
2.66545
2.5403
2.41554
2.29094
2.16637
2.04176
1.91709
1.79236
1.6676
1.54284
1.41812
1.2935
1.169
1.04466
0.92053
0.796624
0.672985
0.549597
0.426601
0.303695
0.18176
0.0589357
5.35126
4.59665
4.29907
4.09849
3.9163
3.75038
3.59724
3.45267
3.31399
3.17964
3.04852
2.91977
2.79268
2.66672
2.54145
2.41658
2.29188
2.16723
2.04254
1.9178
1.79301
1.66819
1.54338
1.41862
1.29395
1.16942
1.04506
0.9209
0.796966
0.673299
0.549884
0.426872
0.303958
0.182063
0.0586667
5.37036
4.57751
4.29778
4.09605
3.91517
3.74954
3.59636
3.45177
3.31308
3.17873
3.04761
2.91887
2.79181
2.66587
2.54063
2.4158
2.29114
2.16654
2.0419
1.91721
1.79247
1.6677
1.54293
1.41821
1.29359
1.16909
1.04476
0.920621
0.796708
0.673066
0.549675
0.426682
0.303867
0.181818
0.060318
5.51361
4.52723
4.28517
4.08898
3.90957
3.74568
3.59355
3.44956
3.31132
3.17734
3.04655
2.91808
2.79126
2.66551
2.54044
2.41572
2.29114
2.16659
2.04198
1.9173
1.79255
1.66776
1.54298
1.41824
1.29359
1.16907
1.04472
0.920574
0.796653
0.672999
0.549588
0.426589
0.303571
0.18188
0.0569559
5.53263
4.52728
4.28503
4.08888
3.90954
3.74567
3.59355
3.44956
3.31133
3.17736
3.04656
2.9181
2.79128
2.66554
2.54046
2.41575
2.29117
2.16662
2.04201
1.91733
1.79259
1.6678
1.54302
1.41828
1.29363
1.16911
1.04476
0.920607
0.796685
0.673029
0.549617
0.426617
0.303599
0.181902
0.0569897
5.45915
4.53994
4.28981
4.09157
3.9116
3.74702
3.59446
3.45022
3.31181
3.17768
3.04677
2.9182
2.79128
2.66547
2.54034
2.41558
2.29099
2.16642
2.04182
1.91714
1.79241
1.66764
1.54287
1.41815
1.29351
1.16901
1.04467
0.920534
0.796624
0.67298
0.549585
0.426587
0.30365
0.18179
0.058314
5.49423
4.53088
4.28599
4.08953
3.90989
3.74592
3.59374
3.44972
3.31146
3.17747
3.04667
2.9182
2.79138
2.66564
2.54056
2.41584
2.29127
2.16671
2.0421
1.91742
1.79267
1.66788
1.54309
1.41835
1.2937
1.16917
1.04482
0.920666
0.796741
0.673083
0.549667
0.426664
0.303633
0.18196
0.056879
5.24453
4.6462
4.31344
4.10537
3.92217
3.75396
3.59952
3.45438
3.31535
3.18075
3.04945
2.92057
2.79339
2.66736
2.54204
2.41712
2.29239
2.16772
2.04302
1.91827
1.79348
1.66866
1.54385
1.41909
1.29443
1.1699
1.04554
0.921372
0.797429
0.673754
0.550349
0.427335
0.304611
0.182459
0.0626287
5.25767
4.64119
4.31136
4.10463
3.92141
3.75347
3.59922
3.45416
3.31519
3.18063
3.04938
2.92052
2.79336
2.66733
2.54201
2.4171
2.29236
2.16768
2.04298
1.91822
1.79342
1.6686
1.54379
1.41903
1.29437
1.16983
1.04547
0.921305
0.797362
0.673684
0.550274
0.427255
0.304496
0.182371
0.0617404
5.43085
4.54928
4.29437
4.09333
3.91337
3.74819
3.59523
3.45079
3.31223
3.17798
3.04696
2.91829
2.79128
2.6654
2.54021
2.41541
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.16891
1.04458
0.920461
0.79657
0.672949
0.549581
0.426583
0.303754
0.181598
0.0606491
5.21345
4.66318
4.31777
4.10752
3.92411
3.75512
3.60025
3.45493
3.31578
3.1811
3.04975
2.92083
2.79363
2.66759
2.54228
2.41738
2.29268
2.16804
2.04338
1.91866
1.79389
1.66908
1.54428
1.41952
1.29485
1.17032
1.04595
0.921776
0.797828
0.674149
0.550742
0.427723
0.305022
0.182866
0.0636132
5.42228
4.56884
4.29071
4.09366
3.91248
3.74797
3.59559
3.4514
3.31299
3.17884
3.0479
2.9193
2.79235
2.6665
2.54132
2.4165
2.29184
2.1672
2.04252
1.91777
1.79297
1.66814
1.54331
1.41855
1.29387
1.16934
1.04497
0.920808
0.79687
0.673211
0.549786
0.426794
0.303748
0.182123
0.0563373
5.21267
4.6634
4.31781
4.10736
3.92412
3.75513
3.60023
3.45492
3.31577
3.18109
3.04973
2.92081
2.7936
2.66755
2.54223
2.41733
2.29262
2.16797
2.04329
1.91857
1.79379
1.66898
1.54417
1.41942
1.29475
1.17022
1.04586
0.921689
0.797744
0.674068
0.550665
0.427649
0.30496
0.182802
0.0638419
5.31727
4.62089
4.30181
4.10059
3.91776
3.75114
3.59775
3.45312
3.31443
3.1801
3.04901
2.9203
2.79326
2.66732
2.54207
2.4172
2.2925
2.16782
2.04311
1.91834
1.79351
1.66866
1.54381
1.41902
1.29432
1.16976
1.04537
0.921184
0.797227
0.673546
0.550117
0.427097
0.304186
0.18225
0.0585994
5.37427
4.59648
4.29509
4.09706
3.91472
3.74931
3.59659
3.45227
3.3138
3.17962
3.04865
2.92002
2.79303
2.66713
2.54189
2.41702
2.2923
2.16761
2.04289
1.9181
1.79326
1.6684
1.54355
1.41876
1.29407
1.16951
1.04514
0.920966
0.797021
0.673354
0.549928
0.426926
0.303914
0.182184
0.0567556
5.47383
4.5539
4.2862
4.09135
3.91023
3.7467
3.59492
3.45108
3.31291
3.17896
3.04815
2.91964
2.79275
2.66692
2.54174
2.4169
2.2922
2.16752
2.04279
1.91799
1.79315
1.66827
1.54342
1.41862
1.29392
1.16936
1.04498
0.920811
0.796877
0.67321
0.549769
0.426755
0.30351
0.182166
0.0540166
5.47356
4.55407
4.28626
4.09131
3.91022
3.74669
3.59491
3.45107
3.31291
3.17896
3.04815
2.91964
2.79276
2.66693
2.54175
2.4169
2.2922
2.16752
2.04278
1.91799
1.79314
1.66826
1.54341
1.41861
1.29391
1.16935
1.04497
0.920795
0.796845
0.673179
0.549732
0.426749
0.303552
0.182234
0.0540688
5.4677
4.54171
4.28743
4.09092
3.91068
3.74655
3.59428
3.45017
3.31184
3.17779
3.04695
2.91846
2.79161
2.66585
2.54076
2.41602
2.29143
2.16685
2.04222
1.91752
1.79275
1.66795
1.54315
1.4184
1.29374
1.16921
1.04485
0.920697
0.796771
0.67311
0.549689
0.426685
0.303623
0.182007
0.0564303
5.48368
4.55111
4.28631
4.09118
3.91012
3.74672
3.59499
3.45116
3.31301
3.17907
3.04827
2.91978
2.79289
2.66707
2.54188
2.41704
2.29233
2.16763
2.04289
1.91809
1.79324
1.66836
1.54349
1.41869
1.29399
1.16942
1.04504
0.92087
0.796935
0.673265
0.54982
0.426803
0.303526
0.182228
0.0537934
5.48407
4.55077
4.28621
4.09108
3.91007
3.74668
3.59496
3.45114
3.313
3.17906
3.04827
2.91978
2.7929
2.66707
2.54188
2.41703
2.29232
2.16763
2.04289
1.91808
1.79323
1.66835
1.54349
1.41868
1.29398
1.16942
1.04503
0.920853
0.7969
0.673229
0.549776
0.42679
0.303568
0.182304
0.0538358
5.44517
4.54638
4.29344
4.09277
3.91296
3.74791
3.59502
3.45063
3.3121
3.17788
3.04687
2.91822
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04158
1.91691
1.79219
1.66743
1.54268
1.41798
1.29336
1.16887
1.04455
0.92043
0.796541
0.672921
0.549554
0.426556
0.303719
0.181575
0.0604797
5.40663
4.56231
4.29414
4.09458
3.91374
3.7486
3.59572
3.45127
3.31269
3.17842
3.04739
2.91873
2.79173
2.66585
2.54066
2.41586
2.29123
2.16664
2.04201
1.91732
1.79257
1.66779
1.54301
1.41828
1.29364
1.16913
1.04479
0.920652
0.796736
0.673086
0.549685
0.426683
0.303766
0.181887
0.058674
5.47703
4.55404
4.28636
4.09123
3.91005
3.7466
3.59488
3.45109
3.31298
3.17907
3.04832
2.91986
2.79299
2.66717
2.54198
2.41711
2.29238
2.16767
2.04291
1.91808
1.79321
1.66832
1.54345
1.41863
1.29392
1.16936
1.04497
0.92079
0.796836
0.673166
0.549714
0.426729
0.30351
0.182237
0.0537518
5.4763
4.55435
4.28642
4.09133
3.9101
3.74664
3.59491
3.4511
3.31297
3.17906
3.0483
2.91984
2.79297
2.66716
2.54197
2.41711
2.29239
2.16767
2.04292
1.91809
1.79322
1.66833
1.54345
1.41864
1.29393
1.16936
1.04498
0.920802
0.796866
0.673197
0.549753
0.426737
0.303463
0.182155
0.0537047
5.34685
4.5842
4.30172
4.09811
3.91691
3.75082
3.59733
3.45256
3.31373
3.17926
3.04806
2.91924
2.79211
2.66612
2.54085
2.41598
2.29131
2.16669
2.04205
1.91735
1.79261
1.66783
1.54307
1.41835
1.29372
1.16922
1.04489
0.920754
0.796841
0.673198
0.549816
0.42682
0.304054
0.181879
0.0615087
5.4293
4.54953
4.29422
4.0933
3.9133
3.74814
3.59519
3.45076
3.3122
3.17796
3.04694
2.91827
2.79127
2.66539
2.5402
2.4154
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.5427
1.418
1.29338
1.16889
1.04457
0.920445
0.796553
0.67293
0.54956
0.426564
0.303733
0.181599
0.0604793
5.19582
4.67217
4.32036
4.10856
3.92523
3.7558
3.60066
3.45524
3.31603
3.18129
3.0499
2.92096
2.79374
2.66767
2.54235
2.41744
2.29273
2.16809
2.04343
1.91872
1.79396
1.66917
1.54438
1.41965
1.295
1.17047
1.04612
0.921953
0.798012
0.674337
0.550936
0.427918
0.30524
0.183094
0.0645075
5.45303
4.54814
4.29274
4.09225
3.91272
3.74778
3.59495
3.4506
3.3121
3.17789
3.04689
2.91825
2.79126
2.66538
2.5402
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66746
1.54272
1.41802
1.2934
1.16892
1.0446
0.920472
0.796577
0.672953
0.54958
0.426589
0.303779
0.181643
0.0606846
5.44535
4.54643
4.29031
4.0923
3.91198
3.74736
3.59478
3.4505
3.31205
3.1779
3.04697
2.91839
2.79147
2.66565
2.54052
2.41575
2.29115
2.16658
2.04196
1.91727
1.79252
1.66774
1.54296
1.41823
1.29359
1.16907
1.04473
0.920587
0.79667
0.67302
0.549615
0.426615
0.303645
0.181862
0.0577646
5.35152
4.59292
4.29919
4.0982
3.91625
3.75037
3.59721
3.45263
3.31395
3.17959
3.04846
2.91971
2.79262
2.66666
2.5414
2.41653
2.29184
2.1672
2.04252
1.91779
1.793
1.66819
1.54339
1.41863
1.29397
1.16944
1.04508
0.920924
0.796991
0.673325
0.549912
0.4269
0.304005
0.182081
0.0590863
5.52734
4.52223
4.28226
4.0876
3.90795
3.74479
3.5931
3.44935
3.31131
3.1775
3.04687
2.91856
2.79187
2.66623
2.54121
2.41651
2.29193
2.16734
2.04268
1.91794
1.79313
1.66829
1.54345
1.41866
1.29397
1.16942
1.04504
0.920863
0.796922
0.673247
0.549805
0.426801
0.303599
0.182277
0.0545969
5.52778
4.52181
4.28208
4.08741
3.90786
3.74472
3.59306
3.44933
3.31131
3.17751
3.04689
2.91858
2.79189
2.66624
2.54122
2.41652
2.29194
2.16734
2.04268
1.91794
1.79313
1.66828
1.54344
1.41866
1.29396
1.16941
1.04503
0.920846
0.796892
0.673221
0.549776
0.4268
0.303633
0.182322
0.0546174
5.41739
4.55374
4.295
4.09334
3.91358
3.74838
3.59536
3.45091
3.31233
3.17806
3.04701
2.91833
2.7913
2.6654
2.54019
2.41538
2.29076
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04455
0.920435
0.796546
0.672928
0.549562
0.426563
0.303773
0.181547
0.0613272
5.50474
4.53195
4.28562
4.08891
3.90964
3.74569
3.59353
3.44955
3.31133
3.17735
3.04654
2.91806
2.79121
2.66544
2.54034
2.41561
2.29102
2.16646
2.04186
1.91718
1.79244
1.66766
1.54288
1.41816
1.29352
1.16901
1.04466
0.920516
0.796591
0.67294
0.549528
0.426542
0.303576
0.181855
0.0573971
5.41998
4.55369
4.29482
4.09325
3.9135
3.74831
3.59532
3.45088
3.31231
3.17805
3.04701
2.91833
2.79131
2.66541
2.54021
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.2934
1.16891
1.04459
0.92047
0.796579
0.672959
0.54959
0.426593
0.3038
0.181592
0.0612332
5.45231
4.55843
4.28759
4.0924
3.91128
3.74731
3.59522
3.45117
3.31283
3.17875
3.04786
2.91931
2.79241
2.66658
2.54142
2.41661
2.29195
2.1673
2.0426
1.91784
1.79302
1.66817
1.54334
1.41856
1.29387
1.16933
1.04496
0.920797
0.796866
0.673201
0.54977
0.426762
0.303605
0.182129
0.0550702
5.36937
4.58944
4.29649
4.09727
3.91523
3.74969
3.59677
3.45232
3.31374
3.17946
3.0484
2.9197
2.79266
2.66673
2.54148
2.41662
2.29193
2.16728
2.04259
1.91784
1.79304
1.66821
1.54339
1.41863
1.29396
1.16942
1.04506
0.920897
0.796965
0.673299
0.549881
0.426869
0.303906
0.18209
0.057874
5.25328
4.64497
4.31143
4.10496
3.92163
3.75357
3.59929
3.45423
3.31525
3.1807
3.04945
2.92061
2.79348
2.66749
2.54221
2.41733
2.29263
2.16798
2.0433
1.91856
1.79377
1.66894
1.54413
1.41937
1.2947
1.17016
1.04578
0.921603
0.797647
0.673957
0.550533
0.4275
0.304715
0.182599
0.0615279
5.47706
4.53608
4.2894
4.09107
3.91154
3.74697
3.59439
3.45016
3.31175
3.17762
3.0467
2.91811
2.79118
2.66535
2.54021
2.41544
2.29085
2.16628
2.04168
1.91701
1.79228
1.66752
1.54277
1.41806
1.29343
1.16894
1.04461
0.920476
0.796574
0.672941
0.549559
0.426565
0.303666
0.181707
0.0590453
5.40086
4.56085
4.29627
4.09438
3.91421
3.74882
3.59571
3.45118
3.31255
3.17825
3.04718
2.91847
2.79143
2.66552
2.54031
2.4155
2.29087
2.16628
2.04167
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16895
1.04463
0.920508
0.796609
0.672982
0.549607
0.426613
0.303825
0.181656
0.0610482
5.34501
4.59431
4.30045
4.09853
3.91657
3.7505
3.59718
3.45251
3.31376
3.17936
3.0482
2.91941
2.79231
2.66634
2.54108
2.41621
2.29153
2.1669
2.04224
1.91752
1.79275
1.66796
1.54317
1.41843
1.29378
1.16927
1.04492
0.920773
0.796849
0.67319
0.549787
0.426784
0.303929
0.181959
0.0596155
5.49315
4.53283
4.28564
4.08899
3.9096
3.74567
3.59354
3.44958
3.31137
3.1774
3.0466
2.91813
2.79129
2.66554
2.54045
2.41573
2.29115
2.16659
2.04198
1.9173
1.79255
1.66777
1.54299
1.41826
1.29361
1.16909
1.04475
0.920594
0.796664
0.673009
0.549591
0.426603
0.303617
0.181931
0.0571536
5.57992
4.50586
4.27875
4.085
3.90616
3.74358
3.59227
3.4488
3.31096
3.17733
3.04684
2.91865
2.79204
2.66647
2.54149
2.41681
2.29223
2.16763
2.04295
1.91818
1.79335
1.66848
1.54362
1.41881
1.29411
1.16953
1.04514
0.920945
0.796978
0.673303
0.549858
0.426901
0.303714
0.18249
0.0541822
5.42581
4.55153
4.29521
4.0937
3.91365
3.74839
3.59536
3.45089
3.31231
3.17805
3.04701
2.91833
2.79132
2.66542
2.54023
2.41543
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41803
1.29341
1.16892
1.0446
0.92048
0.79659
0.672969
0.549602
0.426602
0.303783
0.1816
0.0608953
5.58866
4.50436
4.27814
4.08474
3.90606
3.74352
3.59225
3.44879
3.31097
3.17734
3.04685
2.91866
2.79206
2.66648
2.5415
2.41682
2.29224
2.16763
2.04295
1.91819
1.79335
1.66848
1.54362
1.41882
1.29411
1.16954
1.04514
0.920946
0.796979
0.673302
0.549856
0.426897
0.303713
0.182483
0.0542277
5.5779
4.50775
4.27906
4.08521
3.9063
3.74366
3.59231
3.44881
3.31096
3.17731
3.04681
2.91861
2.792
2.66642
2.54145
2.41677
2.29219
2.1676
2.04292
1.91816
1.79334
1.66847
1.54361
1.41881
1.2941
1.16953
1.04514
0.920958
0.797006
0.673323
0.549875
0.42688
0.303664
0.182437
0.0542666
5.56774
4.50823
4.2793
4.08538
3.90641
3.74374
3.59238
3.44886
3.311
3.17734
3.04683
2.91862
2.792
2.66642
2.54144
2.41675
2.29217
2.16757
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29408
1.16951
1.04511
0.920922
0.796958
0.673283
0.549837
0.426876
0.303689
0.182457
0.0542239
5.49024
4.54609
4.2857
4.09042
3.90959
3.74632
3.59464
3.45084
3.31271
3.17879
3.04803
2.91957
2.79273
2.66693
2.54178
2.41695
2.29226
2.16757
2.04284
1.91804
1.79318
1.6683
1.54344
1.41863
1.29393
1.16936
1.04498
0.920813
0.796881
0.673214
0.549771
0.426755
0.303465
0.182193
0.0536312
5.49042
4.54596
4.28567
4.0904
3.90958
3.74631
3.59463
3.45083
3.31271
3.17879
3.04803
2.91957
2.79272
2.66693
2.54177
2.41695
2.29225
2.16757
2.04283
1.91803
1.79318
1.6683
1.54343
1.41863
1.29393
1.16936
1.04498
0.9208
0.796845
0.673175
0.549721
0.426738
0.303509
0.18228
0.05367
5.55233
4.51764
4.28111
4.08664
3.90757
3.74443
3.59277
3.44907
3.31105
3.17726
3.04662
2.9183
2.79159
2.66594
2.54093
2.41624
2.29168
2.16712
2.04248
1.91777
1.79298
1.66816
1.54334
1.41856
1.29388
1.16933
1.04496
0.920792
0.796853
0.67318
0.549744
0.426738
0.303604
0.182142
0.0554158
5.45448
4.55195
4.28793
4.09154
3.911
3.74691
3.59471
3.45063
3.31231
3.17825
3.04739
2.91887
2.792
2.66621
2.54109
2.41631
2.29169
2.16708
2.04242
1.91769
1.7929
1.66807
1.54326
1.4185
1.29383
1.16929
1.04493
0.920764
0.796825
0.673165
0.549737
0.42675
0.303677
0.18213
0.0559525
5.54166
4.51798
4.28125
4.08661
3.90741
3.74433
3.59273
3.44907
3.3111
3.17734
3.04675
2.91846
2.79178
2.66615
2.54115
2.41646
2.29189
2.16731
2.04266
1.91793
1.79313
1.66829
1.54345
1.41867
1.29398
1.16942
1.04504
0.920862
0.796905
0.673231
0.549786
0.426804
0.303665
0.182297
0.0549996
5.5402
4.51883
4.28147
4.0868
3.90749
3.74439
3.59278
3.4491
3.31112
3.17735
3.04675
2.91846
2.79179
2.66616
2.54117
2.41649
2.29192
2.16735
2.0427
1.91797
1.79317
1.66833
1.5435
1.41871
1.29402
1.16946
1.04508
0.920905
0.79696
0.673281
0.549838
0.426831
0.303657
0.182276
0.0549867
5.19404
4.67381
4.32061
4.10883
3.92535
3.75586
3.60071
3.45528
3.31605
3.18131
3.04992
2.92098
2.79375
2.66769
2.54236
2.41745
2.29275
2.1681
2.04344
1.91874
1.79398
1.66921
1.54444
1.41972
1.29509
1.17058
1.04624
0.922091
0.798162
0.674495
0.551099
0.428083
0.305399
0.183258
0.0643217
5.33361
4.60779
4.30067
4.09973
3.9171
3.7508
3.59751
3.45288
3.31418
3.17982
3.04871
2.91996
2.79287
2.6669
2.54162
2.41674
2.29204
2.16737
2.04268
1.91794
1.79313
1.66831
1.54349
1.41872
1.29405
1.16951
1.04515
0.920985
0.797048
0.673377
0.54996
0.426944
0.304035
0.182129
0.0586666
5.59086
4.50369
4.27814
4.08465
3.90593
3.74344
3.59219
3.44875
3.31094
3.17732
3.04685
2.91868
2.79209
2.66652
2.54154
2.41687
2.29228
2.16767
2.04299
1.91822
1.79338
1.66851
1.54364
1.41884
1.29412
1.16955
1.04515
0.920955
0.796987
0.673313
0.549871
0.426921
0.303731
0.182523
0.0540892
5.58968
4.50421
4.27827
4.08473
3.90597
3.74346
3.5922
3.44875
3.31093
3.17731
3.04684
2.91866
2.79207
2.66651
2.54154
2.41686
2.29227
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41884
1.29412
1.16955
1.04516
0.920973
0.79702
0.673336
0.54989
0.4269
0.303676
0.182493
0.0540945
5.38327
4.56813
4.29776
4.09546
3.91499
3.7494
3.59617
3.45156
3.31287
3.17851
3.0474
2.91866
2.7916
2.66567
2.54044
2.41562
2.29098
2.16638
2.04176
1.91708
1.79235
1.66759
1.54284
1.41813
1.29351
1.16902
1.0447
0.920569
0.796666
0.673034
0.549656
0.426662
0.303879
0.181719
0.061119
5.41797
4.555
4.29495
4.09346
3.91357
3.74836
3.59536
3.4509
3.31233
3.17807
3.04703
2.91835
2.79133
2.66543
2.54023
2.41543
2.2908
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.2934
1.16892
1.0446
0.920475
0.79658
0.672956
0.549585
0.42659
0.303795
0.181619
0.0610141
5.51272
4.53113
4.28349
4.0887
3.90857
3.74541
3.59372
3.44992
3.31183
3.17797
3.04728
2.91893
2.79219
2.6665
2.54144
2.4167
2.29208
2.16745
2.04277
1.918
1.79318
1.66832
1.54347
1.41867
1.29398
1.16942
1.04504
0.920866
0.796929
0.673258
0.549813
0.426805
0.303548
0.182282
0.0540237
5.55834
4.51508
4.28048
4.08614
3.90706
3.74409
3.59255
3.44892
3.31096
3.17721
3.04662
2.91834
2.79166
2.66604
2.54104
2.41636
2.2918
2.16722
2.04257
1.91784
1.79304
1.66821
1.54337
1.41859
1.2939
1.16935
1.04497
0.920799
0.796858
0.673183
0.549744
0.426741
0.303574
0.182201
0.0549148
5.55957
4.51389
4.28011
4.0859
3.90697
3.74406
3.59255
3.44896
3.31103
3.17731
3.04674
2.91848
2.79182
2.6662
2.54121
2.41653
2.29196
2.16738
2.04272
1.91798
1.79318
1.66833
1.54349
1.4187
1.29401
1.16945
1.04506
0.920879
0.79692
0.673244
0.549797
0.426816
0.303671
0.18232
0.0549001
5.38463
4.58871
4.29408
4.09611
3.91416
3.74899
3.59635
3.45207
3.31361
3.17943
3.04845
2.9198
2.79279
2.66689
2.54165
2.41679
2.29209
2.16741
2.0427
1.91793
1.79311
1.66827
1.54343
1.41865
1.29397
1.16943
1.04506
0.920894
0.796954
0.673291
0.549868
0.426869
0.303863
0.182138
0.0568968
5.47261
4.55259
4.28643
4.09128
3.91031
3.74667
3.59477
3.45084
3.31263
3.17865
3.04784
2.91936
2.7925
2.66671
2.54156
2.41676
2.29209
2.16743
2.04272
1.91794
1.79311
1.66825
1.5434
1.41861
1.29392
1.16937
1.04499
0.920815
0.796867
0.673201
0.549759
0.426776
0.303599
0.182247
0.0544065
5.47373
4.55204
4.28636
4.09138
3.91034
3.74667
3.59476
3.45081
3.31258
3.1786
3.04779
2.91932
2.79247
2.66669
2.54156
2.41676
2.2921
2.16745
2.04274
1.91797
1.79314
1.66828
1.54343
1.41864
1.29395
1.16939
1.04502
0.920847
0.796911
0.673242
0.549802
0.42679
0.303569
0.1822
0.0543551
5.54083
4.52221
4.28233
4.08719
3.90817
3.74477
3.59296
3.44918
3.31111
3.17726
3.04657
2.9182
2.79144
2.66575
2.54071
2.416
2.29144
2.16687
2.04225
1.91755
1.79278
1.66797
1.54317
1.41841
1.29375
1.16921
1.04485
0.920685
0.796742
0.673077
0.549645
0.426658
0.303602
0.182063
0.0560798
5.3565
4.58843
4.29882
4.09721
3.91582
3.75
3.59677
3.45216
3.31345
3.17907
3.04794
2.91918
2.79209
2.66614
2.54089
2.41604
2.29137
2.16675
2.0421
1.9174
1.79264
1.66785
1.54308
1.41835
1.29371
1.1692
1.04486
0.920718
0.796797
0.673148
0.549749
0.426751
0.303909
0.181913
0.0598214
5.46841
4.54734
4.28654
4.09083
3.91037
3.74657
3.59453
3.45055
3.31229
3.17828
3.04746
2.91898
2.79213
2.66636
2.54124
2.41647
2.29184
2.16722
2.04255
1.9178
1.793
1.66816
1.54334
1.41856
1.29389
1.16934
1.04497
0.920805
0.796861
0.673198
0.549763
0.426778
0.303663
0.182207
0.0553538
5.44772
4.55144
4.28906
4.09193
3.91158
3.74728
3.59492
3.45075
3.31237
3.17826
3.04736
2.9188
2.7919
2.66609
2.54095
2.41618
2.29156
2.16697
2.04232
1.91761
1.79284
1.66803
1.54323
1.41848
1.29382
1.16929
1.04494
0.920777
0.796842
0.673183
0.54976
0.426769
0.303747
0.182097
0.0568266
5.45061
4.54695
4.29143
4.09179
3.91217
3.74741
3.5947
3.45042
3.31196
3.17779
3.04683
2.91821
2.79124
2.66538
2.54021
2.41543
2.29082
2.16624
2.04164
1.91697
1.79224
1.66749
1.54273
1.41803
1.29341
1.16892
1.0446
0.920468
0.796563
0.672931
0.549548
0.42656
0.303721
0.181706
0.0598134
5.54
4.51805
4.28134
4.08669
3.90739
3.74431
3.5927
3.44904
3.31106
3.1773
3.0467
2.91841
2.79173
2.6661
2.5411
2.41641
2.29183
2.16725
2.0426
1.91786
1.79306
1.66822
1.54338
1.4186
1.29391
1.16935
1.04497
0.920797
0.796843
0.673172
0.549729
0.426753
0.303606
0.182266
0.0547975
5.53945
4.51858
4.28138
4.08676
3.90739
3.74432
3.59272
3.44905
3.31106
3.17729
3.0467
2.91841
2.79173
2.66611
2.54111
2.41642
2.29185
2.16727
2.04262
1.91789
1.79308
1.66824
1.54341
1.41862
1.29393
1.16938
1.045
0.920826
0.796884
0.673209
0.549769
0.426766
0.303584
0.182234
0.0547804
5.49127
4.53151
4.28741
4.09014
3.91071
3.74641
3.59401
3.44987
3.31152
3.17745
3.04657
2.91803
2.79113
2.66533
2.5402
2.41545
2.29086
2.1663
2.04169
1.91702
1.79229
1.66752
1.54276
1.41804
1.29341
1.16891
1.04458
0.92044
0.796533
0.672894
0.549504
0.426511
0.303576
0.18171
0.0582419
5.36827
4.59451
4.29591
4.09747
3.91512
3.74956
3.59672
3.45232
3.31379
3.17957
3.04857
2.91991
2.7929
2.66698
2.54174
2.41687
2.29216
2.16749
2.04278
1.918
1.79318
1.66833
1.5435
1.41872
1.29404
1.16949
1.04512
0.920956
0.797019
0.673349
0.549926
0.42691
0.303915
0.182136
0.0572731
5.31862
4.61372
4.30274
4.10066
3.91791
3.7513
3.59783
3.45312
3.31437
3.17997
3.04883
2.92005
2.79295
2.66696
2.54168
2.41679
2.29208
2.16742
2.04272
1.91798
1.79318
1.66836
1.54354
1.41878
1.29411
1.16957
1.04521
0.921045
0.797106
0.673434
0.550017
0.427001
0.304124
0.182167
0.0592727
5.32894
4.60214
4.30234
4.09961
3.91745
3.7511
3.59765
3.45292
3.31413
3.17969
3.0485
2.91969
2.79256
2.66657
2.54129
2.41641
2.29171
2.16707
2.0424
1.91767
1.7929
1.66809
1.5433
1.41856
1.29391
1.16939
1.04504
0.920889
0.79696
0.673298
0.549895
0.426889
0.304058
0.182045
0.0601279
5.18735
4.67678
4.32174
4.1092
3.9258
3.75615
3.60088
3.4554
3.31615
3.18139
3.04998
2.92103
2.79379
2.66772
2.54238
2.41747
2.29276
2.16812
2.04345
1.91874
1.79398
1.6692
1.54443
1.4197
1.29506
1.17055
1.0462
0.922039
0.798103
0.674431
0.551031
0.428012
0.30534
0.18321
0.0647688
5.46505
4.54387
4.28715
4.09044
3.91039
3.74635
3.59415
3.45011
3.31183
3.17781
3.04698
2.91849
2.79164
2.66588
2.54078
2.41603
2.29144
2.16685
2.04222
1.91752
1.79275
1.66795
1.54315
1.4184
1.29374
1.16921
1.04485
0.920692
0.796757
0.673098
0.549674
0.426686
0.30365
0.182044
0.0564844
5.42765
4.55215
4.29374
4.09286
3.91311
3.74805
3.59514
3.45074
3.3122
3.17797
3.04695
2.91829
2.79129
2.6654
2.54021
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.54271
1.418
1.29339
1.1689
1.04458
0.920459
0.796562
0.672938
0.549564
0.426573
0.30377
0.181632
0.060724
5.58603
4.50561
4.27861
4.08494
3.90612
3.74355
3.59225
3.44878
3.31095
3.17732
3.04683
2.91864
2.79205
2.66648
2.5415
2.41683
2.29225
2.16764
2.04297
1.9182
1.79337
1.6685
1.54364
1.41883
1.29412
1.16955
1.04516
0.920971
0.797019
0.673335
0.549887
0.426895
0.303674
0.182474
0.0541652
5.6171
4.5032
4.27784
4.08446
3.90583
3.74339
3.59216
3.44874
3.31094
3.17734
3.04687
2.9187
2.79212
2.66656
2.54158
2.4169
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41886
1.29414
1.16957
1.04517
0.920986
0.797032
0.673347
0.549901
0.426912
0.303687
0.182513
0.0540736
5.61754
4.50294
4.27776
4.08442
3.90581
3.74337
3.59215
3.44874
3.31094
3.17734
3.04688
2.91871
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16957
1.04516
0.920967
0.796998
0.673324
0.549883
0.426935
0.303745
0.182542
0.0540671
5.5006
4.53086
4.28703
4.08998
3.91049
3.74627
3.59394
3.44984
3.31152
3.17748
3.04663
2.91812
2.79124
2.66547
2.54036
2.41563
2.29105
2.16649
2.04189
1.91722
1.79248
1.66771
1.54294
1.41821
1.29358
1.16907
1.04473
0.920584
0.796669
0.673021
0.54962
0.426622
0.303657
0.181841
0.057888
5.49537
4.53891
4.28456
4.0897
3.90931
3.74595
3.59416
3.45029
3.31212
3.17819
3.04744
2.91902
2.79224
2.66651
2.54142
2.41666
2.29202
2.16739
2.0427
1.91794
1.79312
1.66827
1.54342
1.41863
1.29394
1.16939
1.04501
0.92084
0.796905
0.673235
0.549794
0.426785
0.303553
0.182234
0.0542794
5.37241
4.5721
4.29867
4.0959
3.91532
3.74962
3.59634
3.45171
3.31299
3.17862
3.04749
2.91873
2.79166
2.66571
2.54048
2.41564
2.29099
2.16639
2.04177
1.91708
1.79235
1.66759
1.54283
1.41812
1.29351
1.16902
1.04469
0.920562
0.796659
0.673027
0.549651
0.426659
0.303889
0.18171
0.0613374
5.46356
4.5588
4.28707
4.09216
3.91082
3.74711
3.59525
3.45137
3.31317
3.17919
3.04836
2.91982
2.7929
2.66704
2.54184
2.41698
2.29226
2.16757
2.04283
1.91803
1.79318
1.6683
1.54345
1.41865
1.29395
1.16939
1.04501
0.920845
0.79691
0.673242
0.549802
0.426789
0.303565
0.182183
0.0542702
5.464
4.55847
4.28706
4.09196
3.91072
3.74703
3.59518
3.4513
3.31312
3.17914
3.04831
2.91978
2.79286
2.66701
2.5418
2.41694
2.29223
2.16753
2.0428
1.918
1.79315
1.66828
1.54342
1.41863
1.29393
1.16937
1.04499
0.920821
0.796873
0.673207
0.549764
0.42678
0.3036
0.182242
0.054319
5.18179
4.67976
4.32246
4.10943
3.92615
3.75636
3.60099
3.45549
3.31622
3.18144
3.05003
2.92106
2.79382
2.66774
2.54241
2.41749
2.29278
2.16814
2.04348
1.91877
1.79401
1.66923
1.54445
1.41973
1.29509
1.17058
1.04623
0.922079
0.798144
0.674474
0.551076
0.428057
0.305392
0.183274
0.0650987
5.57951
4.50943
4.27917
4.08537
3.9065
3.74378
3.5924
3.44886
3.31098
3.1773
3.04678
2.91855
2.79193
2.66634
2.54136
2.41669
2.29211
2.16752
2.04286
1.91811
1.79329
1.66843
1.54358
1.41878
1.29408
1.16951
1.04512
0.920941
0.796991
0.673309
0.549862
0.426861
0.303659
0.18238
0.0545005
5.58153
4.50768
4.27877
4.08517
3.90643
3.74375
3.59239
3.44888
3.31101
3.17734
3.04682
2.9186
2.79197
2.66638
2.5414
2.41672
2.29214
2.16755
2.04288
1.91812
1.7933
1.66844
1.54359
1.41879
1.29408
1.16952
1.04512
0.920933
0.796969
0.673291
0.549841
0.42687
0.303701
0.182422
0.0545062
5.55098
4.51356
4.28068
4.08633
3.90698
3.74416
3.59269
3.44909
3.31116
3.17744
3.04689
2.91865
2.79201
2.66641
2.54141
2.41672
2.29213
2.16752
2.04284
1.91808
1.79325
1.66839
1.54354
1.41874
1.29403
1.16947
1.04508
0.920889
0.796928
0.673256
0.54981
0.426848
0.303645
0.182439
0.0540315
5.49219
4.54471
4.28541
4.09024
3.90949
3.74624
3.59455
3.45075
3.31261
3.17869
3.04792
2.91946
2.79262
2.66684
2.54169
2.41687
2.29219
2.16752
2.0428
1.918
1.79316
1.66828
1.54343
1.41862
1.29392
1.16936
1.04498
0.920814
0.796881
0.673214
0.54977
0.426756
0.303471
0.1822
0.0536864
5.49276
4.54425
4.28528
4.09015
3.90944
3.7462
3.59452
3.45072
3.31259
3.17867
3.04791
2.91945
2.79261
2.66683
2.54168
2.41687
2.29219
2.16751
2.04279
1.918
1.79315
1.66828
1.54342
1.41862
1.29392
1.16936
1.04498
0.9208
0.796847
0.673177
0.549725
0.426743
0.303517
0.182284
0.0537304
5.3637
4.57742
4.29939
4.09664
3.91584
3.75003
3.59669
3.45201
3.31325
3.17884
3.04768
2.91891
2.79182
2.66586
2.54061
2.41577
2.29111
2.1665
2.04187
1.91719
1.79245
1.66768
1.54292
1.41821
1.29359
1.16909
1.04476
0.92063
0.796721
0.673083
0.549702
0.426709
0.303933
0.181784
0.0611925
5.5889
4.50438
4.2784
4.08482
3.90606
3.74351
3.59223
3.44878
3.31095
3.17733
3.04685
2.91866
2.79207
2.6665
2.54152
2.41684
2.29226
2.16765
2.04297
1.91821
1.79337
1.6685
1.54364
1.41883
1.29412
1.16955
1.04515
0.920955
0.796987
0.673312
0.549868
0.426914
0.303726
0.182509
0.0541541
5.50279
4.53533
4.28405
4.08917
3.90895
3.74565
3.5939
3.45007
3.31194
3.17804
3.04734
2.91895
2.79218
2.66648
2.5414
2.41665
2.29202
2.1674
2.04271
1.91795
1.79313
1.66827
1.54343
1.41864
1.29395
1.16939
1.04501
0.920834
0.796883
0.673214
0.549768
0.426789
0.303597
0.182308
0.054275
5.49496
4.53913
4.28435
4.08954
3.90913
3.74583
3.59409
3.45024
3.31208
3.17815
3.04741
2.91899
2.7922
2.66647
2.54137
2.41661
2.29197
2.16733
2.04264
1.91788
1.79305
1.6682
1.54335
1.41856
1.29387
1.16932
1.04494
0.920774
0.796841
0.673174
0.549734
0.426727
0.303483
0.182184
0.05406
5.33561
4.60964
4.29974
4.09915
3.91672
3.75055
3.59737
3.45284
3.31422
3.17993
3.04886
2.92015
2.79308
2.66712
2.54185
2.41696
2.29224
2.16756
2.04285
1.91809
1.79327
1.66843
1.5436
1.41882
1.29414
1.1696
1.04522
0.921049
0.797103
0.673433
0.550012
0.427
0.304084
0.182179
0.0585103
5.42283
4.55413
4.29281
4.09353
3.91296
3.74798
3.59518
3.45079
3.31226
3.17804
3.04706
2.91843
2.79146
2.66561
2.54045
2.41567
2.29105
2.16647
2.04186
1.91717
1.79243
1.66766
1.54289
1.41816
1.29353
1.16902
1.04469
0.920549
0.796637
0.672991
0.549594
0.426597
0.303676
0.181802
0.058543
5.38621
4.56657
4.29778
4.09538
3.91496
3.74937
3.59614
3.45153
3.31284
3.17849
3.04738
2.91864
2.79158
2.66565
2.54042
2.4156
2.29096
2.16637
2.04175
1.91707
1.79234
1.66758
1.54283
1.41812
1.2935
1.16901
1.04469
0.920562
0.796661
0.67303
0.549654
0.426659
0.303879
0.181701
0.0612186
5.31108
4.61403
4.30404
4.10096
3.91833
3.75161
3.59804
3.45329
3.31451
3.18009
3.04892
2.92013
2.79302
2.66703
2.54174
2.41685
2.29215
2.16748
2.0428
1.91805
1.79326
1.66844
1.54363
1.41887
1.2942
1.16966
1.0453
0.92113
0.797187
0.673511
0.550094
0.427076
0.304232
0.182217
0.0600638
5.45642
4.54421
4.29277
4.09248
3.91275
3.74777
3.59492
3.45056
3.31205
3.17784
3.04685
2.9182
2.79122
2.66535
2.54017
2.41539
2.29077
2.1662
2.04159
1.91693
1.79221
1.66745
1.5427
1.418
1.29338
1.16889
1.04457
0.920446
0.796556
0.672935
0.549567
0.426569
0.303723
0.181598
0.0603239
5.23661
4.65275
4.31411
4.10609
3.92268
3.75423
3.5997
3.45453
3.31547
3.18086
3.04956
2.92068
2.79351
2.66748
2.54218
2.41728
2.29258
2.16792
2.04323
1.91849
1.7937
1.66888
1.54407
1.4193
1.29464
1.1701
1.04573
0.92156
0.797613
0.673931
0.550518
0.427494
0.304748
0.182613
0.0622664
5.43727
4.56223
4.28919
4.09269
3.91172
3.74746
3.59522
3.45111
3.31276
3.17866
3.04776
2.9192
2.79228
2.66645
2.54129
2.41648
2.29183
2.16719
2.04251
1.91776
1.79296
1.66812
1.5433
1.41853
1.29386
1.16932
1.04495
0.920786
0.796848
0.673188
0.54976
0.426771
0.303698
0.182136
0.0559087
5.51965
4.52567
4.2834
4.08778
3.90849
3.74498
3.5931
3.44928
3.31118
3.17731
3.0466
2.91822
2.79145
2.66575
2.5407
2.416
2.29143
2.16686
2.04224
1.91754
1.79277
1.66796
1.54316
1.4184
1.29373
1.1692
1.04484
0.920674
0.796733
0.673069
0.549639
0.426653
0.303594
0.182062
0.0560418
5.52992
4.52191
4.28236
4.08732
3.90797
3.74467
3.59292
3.44917
3.31111
3.17728
3.04662
2.91827
2.79155
2.66589
2.54086
2.41617
2.29161
2.16704
2.04241
1.9177
1.79292
1.6681
1.54328
1.41851
1.29383
1.16929
1.04492
0.920752
0.796816
0.673146
0.549713
0.426708
0.30358
0.182107
0.0554797
5.56797
4.50771
4.27935
4.08541
3.90639
3.74374
3.59239
3.44888
3.31103
3.17737
3.04687
2.91867
2.79207
2.66649
2.54151
2.41683
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16954
1.04514
0.920951
0.796985
0.673311
0.549867
0.426911
0.303715
0.182509
0.0540809
5.56962
4.50792
4.2794
4.08542
3.90637
3.74372
3.59237
3.44886
3.311
3.17735
3.04685
2.91865
2.79205
2.66647
2.5415
2.41682
2.29223
2.16763
2.04295
1.91819
1.79335
1.66848
1.54362
1.41882
1.29411
1.16954
1.04515
0.920963
0.797013
0.673331
0.549884
0.426891
0.303657
0.182468
0.0540777
5.15642
4.69229
4.32685
4.11109
3.92791
3.75745
3.60166
3.45599
3.31661
3.18175
3.05027
2.92126
2.79398
2.66788
2.54253
2.4176
2.29288
2.16823
2.04356
1.91885
1.7941
1.66932
1.54455
1.41983
1.2952
1.1707
1.04636
0.922222
0.798304
0.674651
0.551276
0.428275
0.305659
0.183638
0.066858
5.43351
4.56293
4.28975
4.09329
3.91207
3.74763
3.59526
3.45106
3.31265
3.17853
3.04761
2.91905
2.79213
2.66632
2.54116
2.41637
2.29173
2.16711
2.04244
1.9177
1.79291
1.66808
1.54326
1.4185
1.29382
1.16929
1.04493
0.920766
0.796836
0.673173
0.549749
0.426742
0.303657
0.182063
0.0560161
5.51205
4.52868
4.2835
4.08861
3.90867
3.74531
3.59349
3.44965
3.31153
3.17766
3.04697
2.91861
2.79188
2.66621
2.54116
2.41645
2.29186
2.16726
2.0426
1.91787
1.79306
1.66822
1.54339
1.41861
1.29392
1.16937
1.04499
0.920824
0.796887
0.673216
0.549777
0.426772
0.303579
0.182225
0.0547129
5.51455
4.52711
4.28314
4.08823
3.90845
3.74515
3.59338
3.44958
3.31148
3.17763
3.04696
2.91861
2.79188
2.6662
2.54116
2.41645
2.29185
2.16726
2.0426
1.91786
1.79305
1.66821
1.54338
1.4186
1.29391
1.16936
1.04498
0.920807
0.796856
0.673188
0.549746
0.426769
0.303612
0.182275
0.0547327
5.45864
4.55357
4.28753
4.09198
3.91109
3.74705
3.59489
3.45081
3.31248
3.17842
3.04757
2.91906
2.79219
2.66641
2.54129
2.41651
2.29188
2.16725
2.04258
1.91784
1.79303
1.6682
1.54337
1.41859
1.29391
1.16937
1.045
0.920838
0.796905
0.673238
0.549807
0.426798
0.30366
0.182159
0.0554193
5.44115
4.55623
4.28935
4.09269
3.91182
3.74744
3.59506
3.45085
3.31244
3.17832
3.04741
2.91886
2.79196
2.66615
2.54102
2.41624
2.29162
2.16701
2.04236
1.91764
1.79285
1.66804
1.54323
1.41847
1.2938
1.16927
1.04491
0.920752
0.796824
0.673162
0.54974
0.426733
0.303665
0.182048
0.0563202
5.18902
4.6771
4.32143
4.10924
3.92571
3.75607
3.60083
3.45537
3.31612
3.18137
3.04997
2.92101
2.79378
2.66771
2.54238
2.41747
2.29276
2.16811
2.04345
1.91874
1.79398
1.66919
1.54442
1.41969
1.29505
1.17054
1.0462
0.922045
0.798114
0.674446
0.551047
0.428028
0.305343
0.183209
0.0643148
5.37328
4.59877
4.2953
4.09736
3.91482
3.74937
3.59664
3.45231
3.31384
3.17967
3.04871
2.9201
2.79313
2.66725
2.54203
2.41717
2.29246
2.16777
2.04304
1.91824
1.79339
1.66852
1.54366
1.41886
1.29416
1.1696
1.04521
0.921033
0.797082
0.673411
0.549981
0.426977
0.303952
0.182237
0.0565483
5.37163
4.58501
4.29686
4.09704
3.91527
3.74973
3.59675
3.45224
3.3136
3.17928
3.04819
2.91946
2.79241
2.66647
2.54123
2.41638
2.2917
2.16707
2.0424
1.91767
1.79289
1.66808
1.54328
1.41852
1.29387
1.16934
1.04499
0.920831
0.796902
0.67324
0.549828
0.426819
0.303886
0.182029
0.0583797
5.51699
4.52564
4.28317
4.08768
3.90837
3.74492
3.59308
3.44929
3.31121
3.17735
3.04666
2.91829
2.79154
2.66585
2.54082
2.41611
2.29154
2.16698
2.04235
1.91764
1.79287
1.66806
1.54325
1.41848
1.29381
1.16928
1.04491
0.92074
0.796795
0.673129
0.549694
0.426707
0.303631
0.182126
0.0558717
5.50099
4.53837
4.28446
4.08951
3.90906
3.74585
3.59415
3.45034
3.31221
3.17831
3.04758
2.91916
2.79237
2.66664
2.54154
2.41676
2.29211
2.16747
2.04276
1.91799
1.79315
1.66829
1.54343
1.41864
1.29394
1.16938
1.045
0.920832
0.796898
0.67323
0.549786
0.426774
0.303502
0.182235
0.05384
5.50343
4.53728
4.28435
4.08943
3.90904
3.74583
3.59413
3.45031
3.31219
3.1783
3.04758
2.91918
2.79239
2.66667
2.54157
2.4168
2.29215
2.1675
2.0428
1.91802
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04503
0.92085
0.796896
0.673225
0.549774
0.426793
0.303574
0.182336
0.0539151
5.39167
4.56305
4.29758
4.09506
3.91476
3.74921
3.59599
3.4514
3.31272
3.17838
3.04728
2.91855
2.7915
2.66557
2.54035
2.41552
2.29089
2.1663
2.04168
1.91701
1.79228
1.66752
1.54278
1.41807
1.29346
1.16897
1.04465
0.920522
0.796627
0.673001
0.549631
0.426635
0.303856
0.181635
0.0614388
5.52628
4.52354
4.28232
4.08758
3.90784
3.74473
3.59309
3.44938
3.31135
3.17756
3.04695
2.91865
2.79197
2.66633
2.54132
2.41662
2.29203
2.16743
2.04276
1.91801
1.79319
1.66834
1.5435
1.4187
1.29401
1.16945
1.04507
0.92089
0.796947
0.673272
0.549827
0.426823
0.303599
0.18231
0.0543762
5.52495
4.52322
4.28227
4.08763
3.90796
3.74485
3.5932
3.44946
3.31142
3.17762
3.04699
2.91867
2.79197
2.66632
2.5413
2.41659
2.29199
2.16739
2.04272
1.91796
1.79315
1.6683
1.54345
1.41866
1.29397
1.16941
1.04503
0.920849
0.796894
0.673224
0.549778
0.426804
0.303619
0.182341
0.0543761
5.56964
4.50827
4.27946
4.08545
3.90641
3.74374
3.59237
3.44885
3.31099
3.17733
3.04682
2.91862
2.79202
2.66644
2.54146
2.41678
2.2922
2.1676
2.04292
1.91816
1.79333
1.66847
1.54361
1.4188
1.2941
1.16953
1.04514
0.920953
0.797003
0.673321
0.549874
0.42688
0.303652
0.182451
0.0541438
5.55869
4.51116
4.27992
4.08576
3.90661
3.74386
3.59245
3.44889
3.311
3.17732
3.04679
2.91857
2.79195
2.66637
2.54138
2.4167
2.29212
2.16753
2.04286
1.9181
1.79327
1.66841
1.54356
1.41875
1.29405
1.16949
1.0451
0.920917
0.796969
0.673289
0.549843
0.426847
0.303623
0.182396
0.0542124
5.48343
4.55213
4.28672
4.0913
3.91014
3.74676
3.59507
3.45127
3.31315
3.17922
3.04843
2.91994
2.79304
2.6672
2.54199
2.41713
2.2924
2.16769
2.04294
1.91812
1.79326
1.66837
1.5435
1.41869
1.29398
1.16941
1.04503
0.920857
0.796922
0.673254
0.549808
0.42679
0.303498
0.182214
0.0536224
5.4838
4.55197
4.28667
4.09125
3.91011
3.74675
3.59506
3.45127
3.31315
3.17923
3.04844
2.91994
2.79304
2.6672
2.54199
2.41713
2.2924
2.16769
2.04293
1.91812
1.79325
1.66837
1.5435
1.41869
1.29398
1.16941
1.04503
0.920846
0.79689
0.673218
0.549762
0.426775
0.303542
0.182303
0.0536672
5.27008
4.62966
4.31017
4.10335
3.92062
3.75308
3.59897
3.45398
3.31505
3.18052
3.04927
2.92041
2.79324
2.6672
2.54188
2.41696
2.29223
2.16756
2.04287
1.91813
1.79334
1.66853
1.54373
1.41898
1.29433
1.1698
1.04545
0.921284
0.797345
0.673675
0.550273
0.427266
0.304534
0.182362
0.062471
5.44355
4.54571
4.29315
4.09268
3.9129
3.74788
3.595
3.45062
3.3121
3.17788
3.04688
2.91823
2.79124
2.66537
2.54019
2.4154
2.29078
2.16621
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04458
0.920458
0.796567
0.672946
0.549577
0.426579
0.303738
0.181609
0.0603915
5.59597
4.50294
4.27794
4.08454
3.90587
3.7434
3.59217
3.44873
3.31093
3.17732
3.04686
2.91869
2.7921
2.66654
2.54156
2.41688
2.2923
2.16769
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16956
1.04516
0.920977
0.797024
0.673341
0.549895
0.426906
0.30368
0.182507
0.0540609
5.59606
4.50288
4.27792
4.08453
3.90586
3.7434
3.59216
3.44873
3.31093
3.17732
3.04686
2.91869
2.7921
2.66654
2.54156
2.41688
2.2923
2.16769
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16955
1.04515
0.920958
0.79699
0.673316
0.549876
0.426929
0.303739
0.182536
0.0540556
5.25976
4.63783
4.31117
4.10429
3.92123
3.75339
3.59917
3.45414
3.31518
3.18064
3.0494
2.92056
2.79341
2.6674
2.5421
2.4172
2.29248
2.16781
2.04312
1.91838
1.79359
1.66877
1.54396
1.4192
1.29454
1.17001
1.04565
0.921475
0.797529
0.673849
0.550436
0.427416
0.304664
0.182517
0.0621977
5.51146
4.52721
4.28345
4.08821
3.90854
3.74509
3.59325
3.44942
3.31131
3.17744
3.04675
2.91838
2.79163
2.66596
2.54092
2.41622
2.29164
2.16707
2.04243
1.91772
1.79293
1.66811
1.54329
1.41852
1.29384
1.1693
1.04493
0.920764
0.796829
0.67316
0.549727
0.426722
0.303586
0.182123
0.0554041
5.29977
4.62103
4.30494
4.10125
3.91874
3.75185
3.5982
3.45345
3.31467
3.18026
3.0491
2.92031
2.79318
2.66718
2.54188
2.41697
2.29225
2.16758
2.04289
1.91814
1.79334
1.66852
1.54371
1.41894
1.29428
1.16974
1.04537
0.921204
0.797258
0.673583
0.550167
0.427148
0.304323
0.182269
0.0605009
5.29926
4.62271
4.30516
4.10192
3.91897
3.75196
3.59828
3.45348
3.31468
3.18026
3.0491
2.92033
2.79323
2.66726
2.54198
2.41709
2.29238
2.16771
2.04302
1.91827
1.79346
1.66863
1.54381
1.41904
1.29437
1.16982
1.04545
0.921276
0.797329
0.673648
0.550227
0.427203
0.304352
0.182342
0.0599481
5.42156
4.55312
4.29443
4.09402
3.91361
3.74841
3.59545
3.45098
3.3124
3.17814
3.04712
2.91846
2.79146
2.66558
2.54041
2.41561
2.291
2.16642
2.04181
1.91714
1.7924
1.66764
1.54288
1.41817
1.29355
1.16905
1.04472
0.920584
0.796679
0.673041
0.549655
0.426657
0.30379
0.181774
0.0597093
5.59921
4.50267
4.27784
4.0845
3.90585
3.74339
3.59216
3.44873
3.31093
3.17733
3.04686
2.91869
2.79211
2.66654
2.54157
2.41689
2.2923
2.16769
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29413
1.16956
1.04517
0.92098
0.797026
0.673343
0.549896
0.426908
0.303683
0.182508
0.0540674
5.59949
4.50247
4.27778
4.08446
3.90583
3.74338
3.59216
3.44873
3.31093
3.17733
3.04687
2.91869
2.79211
2.66654
2.54157
2.41689
2.2923
2.1677
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29413
1.16956
1.04516
0.920961
0.796993
0.673319
0.549878
0.426931
0.30374
0.182537
0.0540613
5.29277
4.61567
4.30755
4.10166
3.91941
3.75239
3.59851
3.4536
3.31469
3.18015
3.04888
2.92
2.79281
2.66676
2.54143
2.41652
2.2918
2.16714
2.04247
1.91774
1.79297
1.66817
1.54338
1.41864
1.294
1.16949
1.04514
0.92099
0.797063
0.673404
0.550014
0.427017
0.304287
0.182109
0.0622097
5.43927
4.54845
4.29156
4.09309
3.91269
3.7479
3.59519
3.45084
3.31234
3.17814
3.04718
2.91857
2.79163
2.66579
2.54064
2.41587
2.29126
2.16669
2.04207
1.91739
1.79264
1.66786
1.54309
1.41836
1.29371
1.1692
1.04486
0.920713
0.796795
0.673143
0.549737
0.426733
0.303779
0.181946
0.0582385
5.16953
4.68613
4.32444
4.11022
3.927
3.75688
3.60131
3.45573
3.31641
3.18159
3.05015
2.92116
2.7939
2.66781
2.54247
2.41755
2.29284
2.16819
2.04353
1.91882
1.79406
1.66928
1.54451
1.41979
1.29517
1.17066
1.04633
0.922187
0.798266
0.674608
0.551222
0.42821
0.305562
0.18348
0.0658027
5.48264
4.54757
4.28558
4.09061
3.90986
3.74639
3.59457
3.45069
3.31251
3.17855
3.04777
2.9193
2.79247
2.66669
2.54155
2.41676
2.29209
2.16743
2.04272
1.91795
1.79311
1.66825
1.54341
1.41861
1.29392
1.16936
1.04499
0.920812
0.796863
0.673196
0.549751
0.426769
0.303578
0.182263
0.0542203
5.48438
4.54727
4.28568
4.09072
3.90988
3.74638
3.59454
3.45064
3.31244
3.17849
3.04771
2.91926
2.79244
2.66668
2.54156
2.41678
2.29212
2.16747
2.04277
1.918
1.79317
1.6683
1.54346
1.41866
1.29396
1.16941
1.04503
0.920859
0.796923
0.673254
0.549811
0.426799
0.303558
0.182227
0.0541705
5.45304
4.55481
4.28777
4.09169
3.91096
3.74694
3.5948
3.45076
3.31245
3.1784
3.04755
2.91903
2.79216
2.66636
2.54122
2.41644
2.2918
2.16717
2.04249
1.91775
1.79294
1.66811
1.54329
1.41852
1.29384
1.1693
1.04493
0.920767
0.796826
0.673166
0.549735
0.426749
0.303653
0.182148
0.0555633
5.37403
4.57074
4.29921
4.09626
3.91566
3.7499
3.59656
3.45188
3.31313
3.17873
3.04758
2.91881
2.79172
2.66577
2.54053
2.41569
2.29104
2.16644
2.04182
1.91714
1.7924
1.66764
1.54289
1.41818
1.29356
1.16907
1.04475
0.920618
0.796716
0.673084
0.549709
0.426713
0.303943
0.181734
0.0615243
5.56598
4.50844
4.27936
4.0854
3.90639
3.74374
3.5924
3.44889
3.31103
3.17737
3.04687
2.91866
2.79205
2.66647
2.54149
2.41681
2.29222
2.16761
2.04294
1.91817
1.79334
1.66847
1.54361
1.41881
1.2941
1.16953
1.04513
0.920939
0.796974
0.673299
0.549854
0.426895
0.303701
0.182485
0.0541279
5.55575
4.51205
4.28028
4.08604
3.90679
3.74402
3.59258
3.449
3.31109
3.17739
3.04686
2.91863
2.79201
2.66641
2.54142
2.41674
2.29215
2.16755
2.04287
1.91811
1.79328
1.66842
1.54357
1.41876
1.29406
1.16949
1.04511
0.920925
0.796978
0.673299
0.549853
0.426856
0.303618
0.182409
0.0540867
5.50331
4.52964
4.28435
4.08842
3.90897
3.74531
3.59334
3.44947
3.31132
3.17742
3.04668
2.91827
2.79149
2.66578
2.54072
2.41601
2.29144
2.16687
2.04225
1.91755
1.79279
1.66798
1.54318
1.41843
1.29377
1.16923
1.04487
0.920709
0.796768
0.673105
0.549675
0.426687
0.303636
0.182077
0.0562401
5.45521
4.54424
4.29267
4.0924
3.91275
3.74778
3.59494
3.45057
3.31206
3.17785
3.04686
2.91821
2.79123
2.66535
2.54018
2.41539
2.29078
2.1662
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04458
0.920455
0.796566
0.672946
0.549579
0.426581
0.303739
0.181597
0.0604384
5.51256
4.53006
4.28326
4.0885
3.90844
3.74525
3.59355
3.44976
3.31167
3.17781
3.04714
2.91879
2.79206
2.66639
2.54134
2.41661
2.292
2.16738
2.04271
1.91795
1.79313
1.66827
1.54343
1.41864
1.29394
1.16938
1.04501
0.920836
0.796899
0.673228
0.549785
0.426779
0.303537
0.182258
0.0541402
5.51378
4.52942
4.28317
4.08841
3.90844
3.74527
3.59358
3.4498
3.31171
3.17787
3.04719
2.91885
2.79211
2.66643
2.54138
2.41665
2.29203
2.16741
2.04273
1.91797
1.79315
1.6683
1.54345
1.41866
1.29396
1.16941
1.04502
0.920844
0.79689
0.673221
0.549774
0.426797
0.3036
0.182335
0.0542045
5.2523
4.64044
4.31255
4.10466
3.92168
3.75369
3.59934
3.45424
3.31524
3.18065
3.04936
2.92047
2.79328
2.66723
2.5419
2.41697
2.29224
2.16757
2.04287
1.91813
1.79334
1.66853
1.54373
1.41897
1.29431
1.16979
1.04544
0.921295
0.797391
0.673744
0.550352
0.427291
0.3045
0.182271
0.062777
5.33219
4.59389
4.30281
4.09906
3.91744
3.75116
3.59763
3.45284
3.314
3.17951
3.04829
2.91945
2.79231
2.6663
2.54102
2.41614
2.29145
2.16682
2.04216
1.91746
1.7927
1.66792
1.54314
1.41841
1.29377
1.16927
1.04494
0.920813
0.796924
0.673291
0.549913
0.426874
0.304055
0.181895
0.0612691
5.54502
4.51754
4.28107
4.08646
3.90737
3.74428
3.59267
3.44901
3.31103
3.17727
3.04667
2.91837
2.79168
2.66604
2.54103
2.41635
2.29178
2.1672
2.04256
1.91783
1.79303
1.6682
1.54337
1.41859
1.2939
1.16935
1.04498
0.920813
0.796883
0.673217
0.549783
0.426762
0.303582
0.182168
0.0550951
5.38628
4.56443
4.29794
4.09538
3.91494
3.74933
3.59608
3.45147
3.31278
3.17843
3.04732
2.91858
2.79152
2.66559
2.54037
2.41554
2.29091
2.16631
2.0417
1.91702
1.79229
1.66754
1.54278
1.41808
1.29346
1.16897
1.04466
0.920543
0.796662
0.673038
0.549673
0.42666
0.303887
0.181714
0.0614228
5.46852
4.54128
4.28882
4.0906
3.9111
3.74667
3.5942
3.45005
3.3117
3.17761
3.04671
2.91815
2.79123
2.66541
2.54027
2.41551
2.29091
2.16635
2.04174
1.91707
1.79235
1.66758
1.54282
1.41811
1.29348
1.16898
1.04466
0.920534
0.796643
0.673007
0.549617
0.426593
0.303654
0.181768
0.0586873
5.32082
4.59861
4.30417
4.09955
3.91797
3.75154
3.5979
3.45308
3.31422
3.17972
3.04847
2.91961
2.79244
2.66642
2.54112
2.41623
2.29153
2.16689
2.04223
1.91752
1.79276
1.66798
1.54321
1.41848
1.29384
1.16934
1.04501
0.920883
0.796993
0.673358
0.549975
0.426932
0.304134
0.181922
0.0619542
5.17022
4.68691
4.324
4.11007
3.92694
3.75682
3.60127
3.4557
3.31639
3.18158
3.05014
2.92115
2.79389
2.66781
2.54246
2.41754
2.29283
2.16818
2.04352
1.91881
1.79405
1.66927
1.5445
1.41978
1.29515
1.17065
1.04632
0.922204
0.798323
0.674697
0.551333
0.428295
0.305586
0.183475
0.0655461
5.36356
4.58258
4.29829
4.09667
3.91557
3.74986
3.59666
3.45206
3.31335
3.17898
3.04785
2.91909
2.79202
2.66606
2.54082
2.41598
2.29132
2.1667
2.04206
1.91736
1.79261
1.66783
1.54305
1.41833
1.29369
1.16918
1.04485
0.920726
0.796833
0.673198
0.549813
0.42678
0.303899
0.181851
0.0600835
5.20011
4.67099
4.31938
4.10813
3.92492
3.75559
3.60052
3.45514
3.31595
3.18122
3.04985
2.92091
2.79369
2.66764
2.54231
2.4174
2.2927
2.16806
2.0434
1.91868
1.79392
1.66913
1.54434
1.4196
1.29494
1.17041
1.04606
0.921906
0.797994
0.674337
0.550941
0.427873
0.305108
0.182913
0.0640839
5.54405
4.5165
4.28107
4.0866
3.90716
3.74427
3.59276
3.44913
3.31118
3.17746
3.04689
2.91864
2.792
2.66639
2.54139
2.4167
2.29211
2.16751
2.04284
1.91809
1.79326
1.6684
1.54355
1.41875
1.29404
1.16948
1.04509
0.920921
0.796994
0.673342
0.549938
0.426937
0.303713
0.182387
0.0541463
5.54441
4.51584
4.28106
4.08666
3.90724
3.74433
3.59281
3.44917
3.3112
3.17746
3.04689
2.91863
2.79197
2.66636
2.54136
2.41666
2.29207
2.16747
2.0428
1.91804
1.79322
1.66836
1.54351
1.41872
1.29402
1.16945
1.04507
0.920897
0.796958
0.673286
0.549845
0.42684
0.303596
0.182348
0.0541806
5.54072
4.5175
4.28125
4.08678
3.90736
3.74437
3.59279
3.44913
3.31115
3.1774
3.04681
2.91854
2.79188
2.66626
2.54126
2.41658
2.292
2.16741
2.04275
1.918
1.79319
1.66834
1.54349
1.4187
1.294
1.16944
1.04505
0.920885
0.796961
0.67331
0.549908
0.426904
0.303702
0.182329
0.0544295
5.53992
4.51714
4.28119
4.08675
3.90739
3.74439
3.59282
3.44916
3.31118
3.17742
3.04683
2.91856
2.79189
2.66626
2.54125
2.41656
2.29198
2.16738
2.04272
1.91798
1.79316
1.66831
1.54347
1.41868
1.29398
1.16942
1.04504
0.920871
0.796935
0.673266
0.549828
0.426817
0.303593
0.18229
0.05448
5.47523
4.54006
4.28852
4.09041
3.91108
3.74667
3.5942
3.45005
3.31169
3.1776
3.04669
2.91812
2.79119
2.66537
2.54022
2.41546
2.29086
2.16629
2.04169
1.91702
1.79229
1.66753
1.54277
1.41806
1.29343
1.16894
1.04462
0.920498
0.796609
0.672976
0.549589
0.426566
0.303644
0.181733
0.0589178
5.40625
4.57091
4.29255
4.09429
3.91328
3.74843
3.5958
3.45148
3.31297
3.17875
3.04774
2.91909
2.7921
2.66623
2.54104
2.41622
2.29158
2.16696
2.04231
1.91759
1.79281
1.66801
1.54321
1.41846
1.2938
1.16927
1.04492
0.920783
0.796877
0.673233
0.549831
0.426805
0.303781
0.181996
0.057516
5.39401
4.57113
4.29456
4.09483
3.91401
3.74883
3.59595
3.45151
3.31292
3.17864
3.04759
2.9189
2.79188
2.66598
2.54078
2.41597
2.29132
2.16672
2.04209
1.91739
1.79264
1.66785
1.54307
1.41834
1.2937
1.16919
1.04485
0.920721
0.796824
0.673185
0.549793
0.426766
0.30382
0.181905
0.0588514
5.3904
4.56745
4.2959
4.09483
3.91431
3.74893
3.59587
3.45135
3.31272
3.17841
3.04734
2.91864
2.79161
2.66569
2.54049
2.41567
2.29103
2.16644
2.04182
1.91713
1.7924
1.66763
1.54287
1.41815
1.29353
1.16903
1.04471
0.920588
0.796701
0.673071
0.549692
0.426667
0.303801
0.181759
0.0601124
5.4649
4.54284
4.28812
4.09079
3.91085
3.74659
3.59425
3.45014
3.31182
3.17777
3.04691
2.91839
2.79152
2.66574
2.54063
2.41588
2.29129
2.16672
2.04211
1.91742
1.79267
1.66788
1.5431
1.41836
1.29371
1.16919
1.04484
0.920703
0.796797
0.67315
0.549744
0.426718
0.30368
0.181958
0.0572703
5.48619
4.53359
4.28844
4.09065
3.91116
3.74671
3.59422
3.45003
3.31166
3.17755
3.04665
2.91809
2.79118
2.66537
2.54023
2.41548
2.29088
2.16632
2.04172
1.91705
1.79232
1.66756
1.5428
1.41808
1.29345
1.16895
1.04463
0.920506
0.796619
0.672989
0.549616
0.426603
0.303697
0.181795
0.0587024
5.33173
4.59229
4.30305
4.09875
3.91735
3.75106
3.59748
3.45268
3.31384
3.17935
3.04813
2.91929
2.79215
2.66614
2.54086
2.41598
2.2913
2.16667
2.04202
1.91732
1.79257
1.6678
1.54303
1.4183
1.29367
1.16918
1.04485
0.92073
0.796845
0.673214
0.549838
0.426802
0.304012
0.181806
0.0618082
5.45406
4.54529
4.29057
4.09141
3.91185
3.74718
3.59455
3.45031
3.31188
3.17774
3.04679
2.91819
2.79123
2.66538
2.54022
2.41545
2.29084
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29343
1.16894
1.04462
0.920498
0.796613
0.672982
0.549601
0.426582
0.303696
0.181729
0.0595153
5.51304
4.53168
4.28359
4.08869
3.90854
3.74544
3.5938
3.45002
3.31193
3.17807
3.04739
2.91902
2.79227
2.66657
2.5415
2.41675
2.29211
2.16748
2.04278
1.91801
1.79318
1.66831
1.54346
1.41866
1.29396
1.1694
1.04501
0.920843
0.796919
0.673273
0.549881
0.426905
0.303687
0.182408
0.0538162
5.51313
4.53157
4.28357
4.08869
3.90854
3.74545
3.5938
3.45003
3.31194
3.17808
3.04739
2.91902
2.79227
2.66657
2.5415
2.41675
2.29211
2.16748
2.04278
1.91801
1.79318
1.66831
1.54346
1.41866
1.29396
1.1694
1.04502
0.920851
0.796917
0.67325
0.549806
0.426795
0.303514
0.182268
0.0538014
5.56411
4.5091
4.2798
4.0857
3.90656
3.74385
3.59247
3.44893
3.31105
3.17738
3.04687
2.91866
2.79205
2.66647
2.54149
2.4168
2.29222
2.16761
2.04293
1.91817
1.79334
1.66847
1.54361
1.4188
1.2941
1.16953
1.04514
0.920955
0.797008
0.673329
0.549884
0.426888
0.303645
0.182453
0.054041
5.56706
4.5086
4.27964
4.08557
3.90646
3.74379
3.59242
3.44889
3.31102
3.17736
3.04686
2.91865
2.79205
2.66647
2.54149
2.41681
2.29222
2.16762
2.04294
1.91818
1.79334
1.66848
1.54362
1.41881
1.29409
1.16952
1.04513
0.920961
0.797032
0.673377
0.549967
0.42696
0.303712
0.182416
0.0539594
5.24185
4.64621
4.31384
4.10535
3.9223
3.75407
3.59959
3.45445
3.31541
3.18081
3.04952
2.92064
2.79346
2.66742
2.5421
2.41719
2.29246
2.16779
2.0431
1.91836
1.79357
1.66875
1.54395
1.41919
1.29452
1.16999
1.04564
0.921493
0.797585
0.673932
0.550536
0.42747
0.304681
0.182447
0.0631318
5.58236
4.50664
4.27882
4.08506
3.90619
3.74359
3.59227
3.44879
3.31095
3.1773
3.04681
2.91862
2.79202
2.66644
2.54147
2.41679
2.29221
2.16761
2.04294
1.91817
1.79334
1.66848
1.54362
1.41881
1.2941
1.16953
1.04514
0.920964
0.797035
0.673378
0.549966
0.426953
0.303712
0.182382
0.054109
5.41598
4.56755
4.29151
4.09372
3.91278
3.74812
3.59562
3.45137
3.3129
3.17872
3.04774
2.91912
2.79215
2.66629
2.54111
2.4163
2.29165
2.16703
2.04237
1.91764
1.79286
1.66804
1.54324
1.41848
1.29382
1.16929
1.04493
0.92079
0.796881
0.673235
0.549831
0.426806
0.303756
0.182021
0.0570967
5.56791
4.51758
4.28104
4.08641
3.90733
3.74426
3.59266
3.449
3.31101
3.17725
3.04664
2.91834
2.79165
2.66602
2.54102
2.41634
2.29178
2.16721
2.04257
1.91785
1.79306
1.66822
1.54339
1.41861
1.29392
1.16937
1.04499
0.920831
0.796912
0.673262
0.549864
0.426853
0.303706
0.182202
0.0551683
5.45678
4.55049
4.29458
4.09303
3.91339
3.74824
3.59526
3.45083
3.31227
3.17801
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04457
0.920459
0.796577
0.672953
0.549596
0.426601
0.303856
0.1817
0.061473
5.52425
4.52308
4.28245
4.08742
3.90802
3.74472
3.59298
3.44923
3.31118
3.17736
3.04671
2.91838
2.79166
2.666
2.54097
2.41628
2.2917
2.16712
2.04248
1.91776
1.79297
1.66814
1.54332
1.41854
1.29386
1.16931
1.04495
0.920784
0.796859
0.673196
0.549766
0.426747
0.303577
0.182138
0.0552405
5.35127
4.58686
4.29983
4.09733
3.91613
3.75023
3.59691
3.45226
3.31352
3.17912
3.04797
2.91918
2.79208
2.66612
2.54086
2.416
2.29133
2.16671
2.04206
1.91736
1.79261
1.66783
1.54306
1.41833
1.2937
1.1692
1.04487
0.920742
0.796852
0.673218
0.549835
0.426801
0.303949
0.181846
0.060692
5.56051
4.51044
4.28012
4.08591
3.90668
3.74394
3.59253
3.44898
3.31108
3.1774
3.04688
2.91866
2.79205
2.66646
2.54147
2.41679
2.2922
2.16759
2.04292
1.91815
1.79332
1.66845
1.54359
1.41879
1.29408
1.16951
1.04513
0.920944
0.796998
0.67332
0.549874
0.426877
0.30363
0.182438
0.0540167
5.56189
4.51011
4.28002
4.08583
3.90663
3.74391
3.59251
3.44896
3.31107
3.17739
3.04687
2.91866
2.79204
2.66646
2.54147
2.41679
2.2922
2.1676
2.04292
1.91815
1.79332
1.66846
1.5436
1.41879
1.29408
1.16951
1.04512
0.920947
0.797019
0.673365
0.549957
0.426955
0.303708
0.182418
0.0539435
5.20727
4.66941
4.31777
4.10763
3.92445
3.75526
3.60032
3.45499
3.31584
3.18115
3.04979
2.92087
2.79367
2.66762
2.5423
2.4174
2.2927
2.16806
2.0434
1.91868
1.79392
1.66913
1.54435
1.41961
1.29496
1.17043
1.04608
0.921932
0.798019
0.674361
0.550959
0.427887
0.305093
0.182901
0.0632812
5.52411
4.5226
4.28237
4.08747
3.908
3.74472
3.59298
3.44922
3.31116
3.17734
3.04668
2.91835
2.79163
2.66597
2.54095
2.41626
2.29169
2.16712
2.04248
1.91776
1.79297
1.66814
1.54331
1.41854
1.29385
1.16931
1.04493
0.920775
0.796859
0.673213
0.549819
0.426813
0.303673
0.182175
0.0551882
5.4404
4.5504
4.29045
4.09199
3.91191
3.74729
3.59472
3.45047
3.31205
3.17792
3.04698
2.9184
2.79146
2.66563
2.54049
2.41572
2.29111
2.16654
2.04193
1.91725
1.79251
1.66773
1.54296
1.41824
1.2936
1.1691
1.04476
0.920633
0.796736
0.673097
0.549703
0.426677
0.303707
0.181861
0.0583066
5.43734
4.54978
4.29308
4.0925
3.91285
3.74787
3.59502
3.45065
3.31213
3.17792
3.04692
2.91826
2.79127
2.66539
2.54021
2.41541
2.29079
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.2934
1.16891
1.0446
0.920485
0.796603
0.672978
0.549609
0.426599
0.303788
0.181704
0.0606622
5.58151
4.51442
4.28022
4.08588
3.90689
3.744
3.5925
3.4489
3.31097
3.17724
3.04667
2.91841
2.79175
2.66614
2.54114
2.41647
2.2919
2.16732
2.04267
1.91794
1.79313
1.66829
1.54345
1.41866
1.29396
1.1694
1.04502
0.920857
0.796935
0.673283
0.549883
0.426872
0.303696
0.182249
0.054789
5.58154
4.51375
4.28009
4.08574
3.90685
3.74397
3.59249
3.44891
3.31099
3.17728
3.04672
2.91846
2.7918
2.66618
2.54119
2.41651
2.29194
2.16736
2.0427
1.91796
1.79315
1.66831
1.54347
1.41868
1.29398
1.16942
1.04504
0.920873
0.796937
0.673265
0.549826
0.426806
0.303607
0.182241
0.0548418
5.43298
4.54879
4.29277
4.09324
3.91294
3.74796
3.59514
3.45074
3.31221
3.178
3.04701
2.91838
2.79141
2.66556
2.5404
2.41562
2.29101
2.16643
2.04182
1.91715
1.79242
1.66765
1.54289
1.41817
1.29353
1.16904
1.04471
0.920585
0.796696
0.673067
0.549694
0.426679
0.303786
0.181838
0.059136
5.31754
4.60281
4.30394
4.09967
3.91801
3.75155
3.59795
3.45316
3.31432
3.17983
3.04858
2.91972
2.79255
2.66652
2.54121
2.41632
2.29162
2.16697
2.04231
1.91759
1.79283
1.66804
1.54326
1.41853
1.29389
1.16938
1.04505
0.920918
0.797024
0.673386
0.549999
0.426953
0.304135
0.181954
0.0616621
5.34159
4.59057
4.30131
4.09808
3.9168
3.75069
3.59724
3.45251
3.31371
3.17926
3.04807
2.91926
2.79213
2.66614
2.54087
2.416
2.29132
2.1667
2.04205
1.91735
1.7926
1.66782
1.54305
1.41832
1.29369
1.16919
1.04486
0.920742
0.796854
0.673221
0.54984
0.426804
0.303978
0.181827
0.0611826
5.38628
4.56751
4.29727
4.09529
3.91482
3.74929
3.59609
3.4515
3.31282
3.17848
3.04738
2.91865
2.79159
2.66566
2.54044
2.41562
2.29098
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.0447
0.920588
0.796705
0.673078
0.549705
0.426683
0.303867
0.181738
0.0609431
5.37714
4.58428
4.29533
4.096
3.91456
3.74925
3.59643
3.45203
3.31346
3.17919
3.04812
2.91942
2.79238
2.66645
2.54122
2.41638
2.2917
2.16707
2.0424
1.91767
1.79289
1.66808
1.54327
1.41852
1.29386
1.16933
1.04498
0.920836
0.79693
0.673285
0.549886
0.426855
0.303866
0.181998
0.0581382
5.53024
4.52255
4.28217
4.08755
3.90779
3.74482
3.59323
3.44953
3.31151
3.17771
3.04709
2.91879
2.79211
2.66646
2.54144
2.41672
2.29212
2.1675
2.04282
1.91805
1.79322
1.66836
1.54351
1.41871
1.29401
1.16944
1.04505
0.920885
0.79696
0.67331
0.549912
0.426926
0.303699
0.182414
0.053908
5.53127
4.52208
4.28207
4.08743
3.90771
3.74476
3.5932
3.44951
3.3115
3.17772
3.04711
2.91881
2.79213
2.66648
2.54146
2.41674
2.29213
2.16751
2.04283
1.91806
1.79324
1.66837
1.54352
1.41872
1.29402
1.16945
1.04507
0.920896
0.796958
0.673287
0.549843
0.426836
0.303567
0.182338
0.0539236
5.22729
4.65648
4.31525
4.10627
3.92315
3.75452
3.59985
3.45464
3.31556
3.18093
3.04962
2.92074
2.79356
2.66755
2.54225
2.41737
2.29268
2.16803
2.04336
1.91863
1.79384
1.66903
1.54422
1.41945
1.29478
1.17025
1.04589
0.921735
0.797821
0.674163
0.550762
0.427691
0.304893
0.18268
0.0631547
5.29311
4.6177
4.30696
4.10148
3.91926
3.75225
3.59839
3.4535
3.3146
3.18006
3.04879
2.91991
2.79272
2.66668
2.54135
2.41644
2.29173
2.16707
2.04239
1.91766
1.79289
1.66809
1.5433
1.41856
1.29392
1.16941
1.04507
0.920939
0.797045
0.673406
0.550019
0.42697
0.304162
0.181965
0.0619311
5.45702
4.55032
4.28745
4.09166
3.91101
3.74695
3.59475
3.45064
3.31229
3.17822
3.04735
2.91884
2.79197
2.66618
2.54107
2.4163
2.29168
2.16707
2.04241
1.91768
1.79289
1.66806
1.54325
1.41848
1.2938
1.16927
1.0449
0.920753
0.796844
0.673203
0.549817
0.426814
0.303723
0.182139
0.0557348
5.49857
4.53299
4.28408
4.08882
3.90892
3.74542
3.59355
3.44969
3.31155
3.17766
3.04695
2.91857
2.79181
2.66612
2.54106
2.41634
2.29175
2.16716
2.04251
1.91777
1.79298
1.66815
1.54332
1.41854
1.29386
1.16932
1.04495
0.920787
0.796863
0.673204
0.549778
0.426762
0.303581
0.182153
0.0550805
5.48846
4.53412
4.28579
4.08914
3.90963
3.7457
3.59357
3.4496
3.31139
3.17742
3.04663
2.91816
2.79133
2.66558
2.54049
2.41576
2.29118
2.16662
2.04201
1.91732
1.79257
1.66779
1.543
1.41826
1.29361
1.1691
1.04475
0.920611
0.796705
0.673057
0.54965
0.426625
0.303576
0.181888
0.0569513
5.39692
4.56471
4.2955
4.09529
3.91445
3.74913
3.59612
3.45158
3.31293
3.17862
3.04754
2.91884
2.79181
2.66591
2.54071
2.4159
2.29126
2.16666
2.04203
1.91734
1.79259
1.66781
1.54304
1.41831
1.29367
1.16916
1.04483
0.9207
0.796809
0.673177
0.549801
0.426779
0.303879
0.181909
0.0592832
5.2703
4.63449
4.30904
4.10321
3.92047
3.7529
3.59883
3.45389
3.31498
3.18048
3.04926
2.92043
2.79328
2.66726
2.54194
2.41702
2.29229
2.16761
2.04291
1.91816
1.79336
1.66854
1.54374
1.41898
1.29431
1.16978
1.04543
0.921284
0.797374
0.673721
0.550321
0.427259
0.304419
0.182247
0.0616871
5.33218
4.60697
4.30074
4.09911
3.9169
3.75067
3.59739
3.45279
3.3141
3.17974
3.04862
2.91986
2.79276
2.66679
2.54151
2.41663
2.29193
2.16728
2.04259
1.91785
1.79306
1.66824
1.54343
1.41867
1.29401
1.16948
1.04512
0.920973
0.797064
0.673415
0.550016
0.426975
0.304038
0.182047
0.0592105
5.4999
4.5324
4.28414
4.08901
3.90901
3.74548
3.59358
3.44968
3.31152
3.17761
3.0469
2.91851
2.79175
2.66606
2.54101
2.4163
2.29171
2.16713
2.04248
1.91775
1.79296
1.66813
1.54331
1.41853
1.29385
1.1693
1.04493
0.920773
0.796858
0.673213
0.549821
0.426821
0.303679
0.1822
0.0550792
5.40197
4.56176
4.29545
4.09434
3.91407
3.74876
3.59572
3.45122
3.3126
3.17831
3.04725
2.91855
2.79152
2.66561
2.54041
2.4156
2.29097
2.16638
2.04176
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.0447
0.920582
0.796697
0.673069
0.549693
0.426672
0.30383
0.181754
0.0604542
5.5055
4.5296
4.28377
4.08835
3.90869
3.7452
3.59334
3.4495
3.31139
3.17752
3.04682
2.91845
2.79169
2.66601
2.54096
2.41625
2.29167
2.16709
2.04245
1.91773
1.79295
1.66812
1.5433
1.41853
1.29386
1.16931
1.04495
0.920788
0.796865
0.673205
0.549779
0.426759
0.303601
0.182127
0.0554533
5.40915
4.55694
4.29631
4.09418
3.91414
3.74875
3.59563
3.45111
3.31249
3.17819
3.04712
2.91841
2.79138
2.66546
2.54026
2.41544
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.29341
1.16893
1.04461
0.920502
0.79662
0.672997
0.549636
0.426632
0.303873
0.181699
0.0614946
5.3428
4.61188
4.29856
4.09915
3.91637
3.75028
3.5972
3.45271
3.31412
3.17986
3.04883
2.92017
2.79316
2.66726
2.54204
2.41718
2.29249
2.16781
2.0431
1.91831
1.79348
1.66861
1.54376
1.41896
1.29425
1.16969
1.04531
0.921142
0.797216
0.673555
0.550143
0.427101
0.304078
0.182212
0.0574421
5.33954
4.58812
4.30244
4.09848
3.91716
3.75096
3.59741
3.45261
3.31376
3.17927
3.04805
2.91922
2.79209
2.66609
2.54082
2.41595
2.29127
2.16665
2.04201
1.91731
1.79256
1.66779
1.54302
1.4183
1.29367
1.16918
1.04485
0.920734
0.796848
0.673218
0.549843
0.426809
0.304014
0.181818
0.0616419
5.55792
4.52208
4.28216
4.08694
3.90791
3.7446
3.59287
3.44914
3.3111
3.17729
3.04663
2.91828
2.79155
2.66588
2.54085
2.41616
2.2916
2.16703
2.04241
1.9177
1.79292
1.66811
1.54329
1.41853
1.29385
1.16931
1.04494
0.920785
0.796861
0.673198
0.54977
0.426743
0.303609
0.182085
0.0558032
5.31662
4.60491
4.30386
4.09976
3.91799
3.75149
3.5979
3.45312
3.31428
3.1798
3.04856
2.91971
2.79255
2.66652
2.54122
2.41632
2.29162
2.16698
2.04231
1.91759
1.79283
1.66803
1.54325
1.41852
1.29387
1.16937
1.04503
0.920901
0.797007
0.673369
0.549981
0.426936
0.304106
0.181941
0.0614117
5.21735
4.6665
4.31593
4.10707
3.92382
3.75484
3.60006
3.4548
3.3157
3.18104
3.04972
2.92082
2.79363
2.6676
2.54229
2.4174
2.2927
2.16806
2.04339
1.91868
1.79392
1.66913
1.54435
1.41961
1.29497
1.17046
1.04611
0.921968
0.798056
0.674397
0.550989
0.427912
0.305082
0.182894
0.0623111
5.38253
4.56661
4.29839
4.09564
3.91518
3.74952
3.59624
3.4516
3.31289
3.17852
3.0474
2.91865
2.79158
2.66564
2.54041
2.41558
2.29094
2.16635
2.04173
1.91705
1.79232
1.66757
1.54281
1.41811
1.29349
1.169
1.04469
0.920573
0.796692
0.673067
0.549701
0.426685
0.303913
0.181726
0.0615527
5.33888
4.59523
4.30088
4.09828
3.91676
3.75068
3.59733
3.45266
3.31391
3.1795
3.04833
2.91953
2.79241
2.66642
2.54115
2.41628
2.29159
2.16695
2.04229
1.91758
1.79282
1.66802
1.54324
1.4185
1.29386
1.16935
1.04501
0.920877
0.79698
0.67334
0.54995
0.426909
0.304038
0.181948
0.0605341
5.55136
4.51671
4.2807
4.08626
3.90731
3.74424
3.59264
3.44898
3.31101
3.17724
3.04663
2.91833
2.79164
2.666
2.54098
2.4163
2.29173
2.16716
2.04252
1.91779
1.793
1.66817
1.54334
1.41856
1.29388
1.16933
1.04496
0.920794
0.796866
0.6732
0.549767
0.426745
0.303575
0.182136
0.0552334
5.45586
4.55137
4.29436
4.09284
3.91325
3.74815
3.5952
3.45078
3.31223
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16888
1.04457
0.920453
0.796572
0.67295
0.549592
0.426596
0.303839
0.181688
0.0613716
5.31976
4.6023
4.30395
4.09997
3.918
3.7515
3.59791
3.45311
3.31427
3.17979
3.04856
2.91972
2.79257
2.66656
2.54126
2.41637
2.29167
2.16703
2.04236
1.91764
1.79287
1.66808
1.5433
1.41856
1.29391
1.1694
1.04506
0.920928
0.797034
0.673396
0.550013
0.426968
0.304134
0.181982
0.061161
5.44091
4.56849
4.28838
4.09304
3.91142
3.74734
3.59531
3.45136
3.31315
3.17917
3.04836
2.91985
2.79295
2.66711
2.5419
2.41704
2.29232
2.16761
2.04286
1.91805
1.79319
1.66831
1.54345
1.41864
1.29394
1.16938
1.045
0.920835
0.79691
0.673253
0.549831
0.426813
0.303617
0.182131
0.0546932
5.27625
4.63867
4.30743
4.10321
3.92013
3.75259
3.59866
3.45377
3.3149
3.18043
3.04925
2.92045
2.79334
2.66736
2.54209
2.41721
2.29251
2.16785
2.04315
1.91841
1.7936
1.66877
1.54394
1.41916
1.29448
1.16992
1.04555
0.92138
0.797453
0.673787
0.550376
0.427313
0.30441
0.182316
0.060066
5.40453
4.56006
4.29587
4.09424
3.91408
3.74873
3.59565
3.45114
3.31252
3.17823
3.04716
2.91847
2.79144
2.66553
2.54032
2.41551
2.29088
2.1663
2.04168
1.91701
1.79229
1.66753
1.54278
1.41807
1.29345
1.16897
1.04465
0.920539
0.796657
0.673032
0.549662
0.426647
0.303841
0.181716
0.060935
5.42326
4.55501
4.29291
4.09305
3.91296
3.74798
3.59516
3.45079
3.31227
3.17805
3.04705
2.91841
2.79143
2.66555
2.54038
2.41559
2.29097
2.16639
2.04178
1.9171
1.79237
1.66761
1.54285
1.41813
1.29351
1.16901
1.04469
0.92057
0.796682
0.67305
0.549667
0.426644
0.303752
0.181775
0.0595491
5.27934
4.62869
4.30834
4.10303
3.9201
3.7527
3.59875
3.45382
3.31494
3.18044
3.04923
2.9204
2.79325
2.66723
2.54191
2.417
2.29227
2.16759
2.04289
1.91814
1.79335
1.66853
1.54372
1.41896
1.29429
1.16975
1.0454
0.92125
0.797343
0.673693
0.550301
0.427244
0.304398
0.182238
0.0612513
5.44355
4.54493
4.29215
4.0927
3.91261
3.7477
3.59492
3.45056
3.31206
3.17786
3.04689
2.91827
2.79131
2.66546
2.5403
2.41552
2.29091
2.16634
2.04173
1.91706
1.79233
1.66757
1.54281
1.41809
1.29346
1.16897
1.04464
0.920525
0.796639
0.673011
0.54964
0.426628
0.30375
0.181792
0.0592906
5.19253
4.67734
4.32
4.10862
3.92543
3.75586
3.60068
3.45527
3.31605
3.18132
3.04993
2.92099
2.79377
2.66771
2.54238
2.41748
2.29277
2.16813
2.04347
1.91875
1.79399
1.66921
1.54443
1.4197
1.29507
1.17057
1.04624
0.922112
0.798223
0.674587
0.551207
0.42815
0.305381
0.183211
0.0638521
5.46312
4.54243
4.28894
4.09076
3.91112
3.74669
3.59423
3.45008
3.31172
3.17764
3.04674
2.91819
2.79128
2.66546
2.54033
2.41557
2.29098
2.16641
2.04181
1.91713
1.7924
1.66764
1.54287
1.41815
1.29352
1.16902
1.04469
0.920565
0.796672
0.673034
0.549641
0.426616
0.303659
0.181798
0.0584316
5.5604
4.51248
4.28017
4.08596
3.90685
3.74401
3.59254
3.44896
3.31104
3.17734
3.04679
2.91855
2.79191
2.66631
2.54133
2.41665
2.29208
2.16749
2.04283
1.91808
1.79327
1.66841
1.54356
1.41876
1.29406
1.1695
1.04511
0.920939
0.797013
0.673358
0.549953
0.426942
0.303735
0.18235
0.0544799
5.43199
4.54836
4.29409
4.09312
3.91328
3.74813
3.59518
3.45075
3.3122
3.17795
3.04693
2.91826
2.79125
2.66536
2.54017
2.41537
2.29075
2.16617
2.04157
1.9169
1.79218
1.66742
1.54267
1.41797
1.29335
1.16887
1.04456
0.920444
0.796562
0.672937
0.549577
0.426576
0.303799
0.181693
0.060881
5.58015
4.50852
4.27905
4.08527
3.9064
3.74372
3.59235
3.44883
3.31096
3.17729
3.04678
2.91856
2.79194
2.66636
2.54138
2.4167
2.29213
2.16754
2.04287
1.91812
1.79329
1.66843
1.54358
1.41878
1.29407
1.1695
1.04511
0.920941
0.797014
0.673359
0.54995
0.426937
0.303717
0.182349
0.0543286
5.4796
4.54267
4.28544
4.09
3.90967
3.74601
3.59406
3.45013
3.31192
3.17797
3.0472
2.91877
2.79197
2.66624
2.54115
2.41641
2.29179
2.16718
2.04252
1.91778
1.79297
1.66814
1.54331
1.41853
1.29385
1.16931
1.04494
0.920779
0.796858
0.673202
0.549779
0.426765
0.303579
0.182142
0.054998
5.4075
4.57462
4.29228
4.09501
3.9134
3.74857
3.59605
3.45179
3.31332
3.17913
3.04815
2.91951
2.79253
2.66665
2.54144
2.4166
2.29192
2.16727
2.04258
1.91783
1.79302
1.66818
1.54336
1.41859
1.29391
1.16937
1.045
0.920852
0.796944
0.673302
0.549917
0.426906
0.303867
0.182148
0.0566181
5.34315
4.61048
4.29856
4.09949
3.91653
3.75038
3.59728
3.45275
3.31413
3.17985
3.04882
2.92015
2.79314
2.66724
2.54203
2.41718
2.29249
2.16782
2.04311
1.91833
1.79349
1.66863
1.54377
1.41897
1.29427
1.1697
1.04532
0.921148
0.797225
0.673569
0.550173
0.42714
0.304146
0.182263
0.0574201
5.3936
4.56178
4.29751
4.09521
3.91478
3.74921
3.596
3.4514
3.31272
3.17838
3.04728
2.91856
2.79151
2.66558
2.54036
2.41555
2.29091
2.16632
2.04171
1.91703
1.79231
1.66755
1.5428
1.41809
1.29347
1.16899
1.04467
0.920556
0.796674
0.673049
0.549684
0.426672
0.303893
0.181739
0.0612689
5.41515
4.55419
4.29522
4.09417
3.91386
3.74856
3.59552
3.45102
3.31242
3.17815
3.04711
2.91843
2.79142
2.66553
2.54034
2.41554
2.29092
2.16634
2.04173
1.91706
1.79233
1.66757
1.54282
1.41811
1.29349
1.169
1.04468
0.920565
0.796681
0.673055
0.549688
0.426675
0.303854
0.181781
0.060416
5.40175
4.56619
4.29421
4.09495
3.91394
3.7488
3.59595
3.45149
3.3129
3.17862
3.04758
2.91891
2.79191
2.66602
2.54083
2.41602
2.29138
2.16678
2.04214
1.91744
1.79268
1.66789
1.5431
1.41836
1.29371
1.1692
1.04485
0.920717
0.79682
0.673186
0.549808
0.426789
0.303842
0.181958
0.058368
5.41072
4.56064
4.29367
4.09375
3.91339
3.74831
3.59544
3.45103
3.31248
3.17823
3.04722
2.91856
2.79156
2.66568
2.54049
2.4157
2.29107
2.16649
2.04187
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04474
0.92062
0.79673
0.673096
0.549711
0.426686
0.303779
0.181817
0.0593816
5.16087
4.68987
4.3261
4.11083
3.92759
3.75726
3.60155
3.4559
3.31655
3.1817
3.05023
2.92123
2.79396
2.66786
2.54251
2.41758
2.29287
2.16822
2.04355
1.91885
1.79409
1.66931
1.54454
1.41982
1.29519
1.1707
1.04637
0.922255
0.798374
0.674747
0.551383
0.428343
0.30565
0.183554
0.0664975
5.57173
4.50736
4.27922
4.0853
3.90631
3.74367
3.59233
3.44882
3.31096
3.17731
3.04681
2.91862
2.79201
2.66644
2.54146
2.41678
2.2922
2.1676
2.04292
1.91816
1.79333
1.66846
1.5436
1.41879
1.29408
1.16951
1.04512
0.920949
0.797021
0.673365
0.549954
0.426944
0.303697
0.18239
0.0540037
5.57428
4.50612
4.27894
4.08515
3.90624
3.74363
3.59232
3.44883
3.31099
3.17734
3.04685
2.91866
2.79206
2.66648
2.54151
2.41683
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16954
1.04515
0.920966
0.797017
0.673336
0.549892
0.426895
0.303662
0.182466
0.0541109
5.38659
4.57677
4.29488
4.09534
3.91426
3.74904
3.5962
3.45177
3.31319
3.17891
3.04785
2.91915
2.79212
2.66621
2.54099
2.41616
2.29151
2.16689
2.04224
1.91753
1.79276
1.66797
1.54318
1.41843
1.29378
1.16926
1.04492
0.92078
0.796878
0.673236
0.54984
0.42681
0.303842
0.181953
0.0585111
5.46026
4.54359
4.28979
4.09108
3.91152
3.74696
3.5944
3.45019
3.3118
3.17768
3.04675
2.91817
2.79123
2.66539
2.54024
2.41547
2.29087
2.1663
2.0417
1.91703
1.7923
1.66754
1.54278
1.41807
1.29345
1.16895
1.04463
0.92051
0.796622
0.672989
0.549604
0.426582
0.303671
0.181743
0.0591101
5.22564
4.6575
4.31591
4.10677
3.92336
3.75465
3.59996
3.45471
3.31561
3.18096
3.04964
2.92074
2.79356
2.66752
2.54222
2.41733
2.29263
2.16798
2.04331
1.91858
1.7938
1.66898
1.54417
1.41941
1.29474
1.1702
1.04583
0.921681
0.797767
0.67411
0.550712
0.427643
0.304844
0.182627
0.0629163
5.37636
4.57801
4.29663
4.09596
3.91497
3.74951
3.59646
3.45192
3.31326
3.17892
3.04782
2.91908
2.79202
2.66609
2.54086
2.41603
2.29137
2.16676
2.04212
1.91742
1.79266
1.66788
1.5431
1.41837
1.29373
1.16922
1.04488
0.920753
0.796857
0.673219
0.54983
0.426798
0.303885
0.1819
0.0594826
5.36803
4.57295
4.2997
4.09663
3.91587
3.75003
3.59666
3.45195
3.31319
3.17878
3.04762
2.91884
2.79175
2.66579
2.54055
2.41571
2.29105
2.16645
2.04182
1.91714
1.79241
1.66765
1.54289
1.41818
1.29356
1.16907
1.04475
0.920631
0.796748
0.673122
0.549752
0.42673
0.303948
0.181761
0.0615316
5.30149
4.62441
4.30437
4.10189
3.91881
3.75181
3.59818
3.4534
3.31462
3.18022
3.04909
2.92034
2.79326
2.66731
2.54205
2.41717
2.29246
2.16779
2.04309
1.91833
1.79352
1.66868
1.54385
1.41906
1.29437
1.16982
1.04544
0.921282
0.797362
0.673705
0.550308
0.427258
0.304343
0.182297
0.0593595
5.45949
4.54579
4.2884
4.09114
3.91101
3.74674
3.5944
3.45028
3.31194
3.17788
3.04702
2.9185
2.79162
2.66584
2.54073
2.41598
2.29139
2.16681
2.04219
1.91749
1.79273
1.66794
1.54315
1.41841
1.29375
1.16923
1.04488
0.920737
0.796829
0.673181
0.549773
0.426748
0.303693
0.181997
0.0570269
5.45126
4.54728
4.29192
4.09191
3.91239
3.74756
3.5948
3.45049
3.31201
3.17783
3.04685
2.91821
2.79123
2.66536
2.54019
2.4154
2.29078
2.16621
2.0416
1.91694
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04459
0.920473
0.796591
0.672964
0.549592
0.426579
0.303748
0.1817
0.0603228
5.24477
4.65448
4.31173
4.10537
3.92209
3.75376
3.5994
3.45431
3.31532
3.18075
3.04949
2.92065
2.7935
2.66749
2.5422
2.41732
2.29263
2.16799
2.04332
1.91861
1.79384
1.66904
1.54424
1.41949
1.29482
1.17028
1.04591
0.921748
0.797817
0.674142
0.550723
0.427645
0.304769
0.182615
0.0609463
5.25351
4.64277
4.3116
4.10444
3.92154
3.75355
3.59925
3.4542
3.31522
3.18066
3.0494
2.92053
2.79335
2.66731
2.54198
2.41705
2.2923
2.16761
2.0429
1.91815
1.79335
1.66853
1.54372
1.41896
1.2943
1.16977
1.04542
0.921278
0.797373
0.673724
0.550329
0.42727
0.304457
0.182265
0.0622695
5.29373
4.61964
4.30637
4.10144
3.91914
3.75213
3.59832
3.45346
3.3146
3.18011
3.04887
2.92001
2.79284
2.66681
2.54149
2.41658
2.29186
2.1672
2.04251
1.91778
1.793
1.6682
1.54341
1.41866
1.29401
1.16949
1.04515
0.921013
0.797114
0.673471
0.550079
0.427028
0.304194
0.182028
0.0615024
5.41122
4.55832
4.29426
4.09359
3.91345
3.7483
3.59537
3.45093
3.31237
3.17812
3.04709
2.91842
2.79141
2.66552
2.54033
2.41553
2.29091
2.16632
2.04171
1.91704
1.79231
1.66755
1.54279
1.41808
1.29346
1.16897
1.04465
0.920534
0.79665
0.673022
0.549645
0.426626
0.303771
0.181727
0.0601592
5.53495
4.52221
4.28225
4.08713
3.90807
3.74471
3.59293
3.44918
3.31113
3.17729
3.04662
2.91826
2.79152
2.66584
2.54081
2.41611
2.29154
2.16698
2.04236
1.91765
1.79288
1.66806
1.54325
1.41849
1.29382
1.16928
1.04492
0.920759
0.796837
0.673176
0.549751
0.426724
0.303597
0.182059
0.0558854
5.48814
4.53994
4.28498
4.0898
3.90952
3.74599
3.5941
3.45019
3.312
3.17806
3.04731
2.91888
2.79209
2.66636
2.54127
2.41652
2.29189
2.16728
2.0426
1.91785
1.79304
1.6682
1.54337
1.41858
1.2939
1.16935
1.04498
0.920817
0.796893
0.673234
0.549808
0.426794
0.30359
0.18219
0.0547816
5.48897
4.53567
4.28507
4.08926
3.90938
3.74568
3.59369
3.44977
3.31159
3.17765
3.04691
2.91849
2.7917
2.66598
2.54092
2.41619
2.2916
2.16702
2.04238
1.91767
1.79289
1.66807
1.54326
1.41849
1.29382
1.16928
1.04492
0.920762
0.796844
0.673187
0.549767
0.426746
0.303607
0.182087
0.0557075
5.48371
4.53695
4.28575
4.0895
3.90968
3.74584
3.59377
3.44981
3.3116
3.17764
3.04687
2.91842
2.79161
2.66588
2.54081
2.41608
2.2915
2.16692
2.0423
1.91759
1.79282
1.66802
1.54321
1.41846
1.29379
1.16926
1.0449
0.92075
0.796835
0.673181
0.549764
0.426741
0.303633
0.182046
0.0561967
5.37595
4.56921
4.29889
4.09599
3.91541
3.74968
3.59636
3.4517
3.31297
3.17859
3.04745
2.9187
2.79162
2.66567
2.54044
2.41561
2.29096
2.16636
2.04174
1.91706
1.79233
1.66757
1.54282
1.41811
1.29349
1.169
1.04469
0.920574
0.796693
0.673067
0.549701
0.426684
0.303909
0.181721
0.0615515
5.4169
4.56817
4.29096
4.09356
3.91251
3.74794
3.59551
3.45131
3.31289
3.17873
3.04777
2.91916
2.7922
2.66635
2.54117
2.41636
2.2917
2.16707
2.0424
1.91767
1.79287
1.66805
1.54324
1.41848
1.29381
1.16928
1.04492
0.920772
0.796862
0.673215
0.549809
0.426787
0.303712
0.18202
0.0566486
5.51948
4.52737
4.28284
4.08821
3.90828
3.74522
3.59357
3.44981
3.31173
3.17789
3.04722
2.91888
2.79215
2.66648
2.54142
2.41669
2.29207
2.16745
2.04276
1.918
1.79317
1.66831
1.54346
1.41867
1.29397
1.16941
1.04503
0.92086
0.796926
0.673259
0.549819
0.426809
0.303539
0.182286
0.0539373
5.4433
4.56699
4.2885
4.09335
3.91171
3.74757
3.59548
3.45145
3.31316
3.17911
3.04823
2.91968
2.79274
2.66689
2.54169
2.41685
2.29215
2.16748
2.04276
1.91798
1.79314
1.66828
1.54344
1.41864
1.29395
1.16939
1.04502
0.920855
0.796938
0.673293
0.549904
0.42691
0.303778
0.182268
0.0548625
5.36078
4.57676
4.30037
4.09707
3.91626
3.75036
3.59694
3.45221
3.31342
3.17898
3.04779
2.919
2.79189
2.66592
2.54066
2.41581
2.29115
2.16654
2.04191
1.91722
1.79249
1.66772
1.54296
1.41825
1.29362
1.16913
1.04481
0.920696
0.796812
0.673183
0.54981
0.426783
0.303998
0.181801
0.0616569
5.45648
4.54496
4.2887
4.09093
3.91101
3.74665
3.59425
3.45012
3.31178
3.17771
3.04683
2.91829
2.7914
2.6656
2.54048
2.41572
2.29113
2.16656
2.04195
1.91726
1.79252
1.66774
1.54297
1.41824
1.2936
1.16909
1.04475
0.920613
0.796714
0.673072
0.549672
0.426647
0.303643
0.181863
0.0576956
5.57696
4.50631
4.27872
4.08507
3.90626
3.74364
3.59231
3.44882
3.31097
3.17732
3.04681
2.91861
2.79199
2.66641
2.54143
2.41675
2.29217
2.16757
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29407
1.16951
1.04512
0.920937
0.796991
0.673313
0.549869
0.426864
0.303638
0.1824
0.0542704
5.43967
4.56732
4.28888
4.09315
3.91168
3.74752
3.5954
3.45138
3.3131
3.17906
3.04819
2.91964
2.79273
2.66688
2.54168
2.41684
2.29214
2.16746
2.04274
1.91795
1.79312
1.66826
1.54341
1.41862
1.29393
1.16938
1.04501
0.920845
0.796925
0.673271
0.549852
0.426834
0.30366
0.182143
0.0550772
5.29927
4.61275
4.30637
4.10103
3.91899
3.75213
3.59833
3.45346
3.31457
3.18004
3.04878
2.9199
2.79271
2.66667
2.54135
2.41644
2.29172
2.16707
2.04239
1.91767
1.7929
1.6681
1.54332
1.41858
1.29393
1.16943
1.04509
0.92096
0.797067
0.673428
0.550041
0.426991
0.304188
0.181981
0.0620494
5.46194
4.55335
4.2871
4.09143
3.91063
3.74676
3.59473
3.45074
3.31248
3.17848
3.04766
2.91917
2.79231
2.66653
2.5414
2.41661
2.29196
2.16732
2.04264
1.91788
1.79307
1.66822
1.54339
1.41861
1.29392
1.16937
1.045
0.920845
0.796924
0.673268
0.549846
0.426829
0.303649
0.182173
0.0551182
5.5454
4.51944
4.28164
4.0869
3.90777
3.74454
3.59283
3.4491
3.31105
3.17723
3.04658
2.91823
2.79151
2.66585
2.54083
2.41614
2.29157
2.16701
2.04238
1.91767
1.79289
1.66807
1.54326
1.41849
1.29381
1.16926
1.04489
0.920739
0.796826
0.67318
0.549788
0.426778
0.303665
0.182107
0.0555414
5.36374
4.57838
4.29917
4.09669
3.91585
3.75006
3.59673
3.45205
3.31329
3.17888
3.04772
2.91895
2.79185
2.6659
2.54065
2.41581
2.29115
2.16654
2.04191
1.91722
1.79248
1.66771
1.54295
1.41823
1.29361
1.16911
1.04479
0.92067
0.796785
0.673155
0.549777
0.426748
0.303922
0.181789
0.0610057
5.54443
4.51764
4.28113
4.08656
3.90738
3.74428
3.59266
3.44897
3.31097
3.17719
3.04656
2.91825
2.79156
2.66592
2.54091
2.41622
2.29166
2.16708
2.04245
1.91772
1.79293
1.66811
1.54328
1.4185
1.29382
1.16927
1.0449
0.920739
0.796824
0.673178
0.549784
0.426777
0.303633
0.18214
0.0550938
5.38114
4.58581
4.29476
4.09602
3.9144
3.74916
3.5964
3.45204
3.31349
3.17923
3.04818
2.91949
2.79246
2.66654
2.54131
2.41647
2.29179
2.16715
2.04248
1.91774
1.79295
1.66812
1.54331
1.41855
1.29388
1.16935
1.04499
0.920846
0.796937
0.673291
0.54989
0.426861
0.303844
0.182021
0.0576174
5.44937
4.54473
4.2929
4.09259
3.91275
3.74776
3.59492
3.45055
3.31204
3.17783
3.04684
2.91821
2.79123
2.66536
2.54018
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66747
1.54271
1.41801
1.29339
1.1689
1.04459
0.920474
0.796591
0.672964
0.5496
0.426594
0.303782
0.181733
0.0602682
5.46252
4.54371
4.29016
4.09113
3.91176
3.74714
3.59452
3.45028
3.31186
3.17772
3.04677
2.91816
2.7912
2.66535
2.54018
2.4154
2.29079
2.16622
2.04162
1.91695
1.79222
1.66747
1.54271
1.41801
1.29339
1.1689
1.04458
0.920466
0.796582
0.672953
0.549575
0.426557
0.303687
0.181701
0.0597097
5.44621
4.54458
4.29151
4.09258
3.91241
3.74759
3.59488
3.45055
3.31207
3.17789
3.04694
2.91833
2.79139
2.66556
2.54041
2.41564
2.29104
2.16647
2.04186
1.91719
1.79245
1.66769
1.54292
1.4182
1.29357
1.16907
1.04473
0.920609
0.796719
0.673088
0.549713
0.426698
0.303785
0.181876
0.0587843
5.41415
4.5557
4.29402
4.09399
3.91351
3.74837
3.59546
3.451
3.31242
3.17817
3.04714
2.91849
2.79149
2.66561
2.54043
2.41564
2.29102
2.16644
2.04182
1.91714
1.79241
1.66764
1.54287
1.41815
1.29352
1.16902
1.0447
0.920575
0.796688
0.673061
0.549689
0.426673
0.303791
0.181815
0.059378
5.5373
4.52804
4.28424
4.08811
3.90891
3.74522
3.59323
3.44936
3.31122
3.17731
3.04657
2.91814
2.79134
2.66562
2.54055
2.41584
2.29127
2.16672
2.04211
1.91742
1.79267
1.66788
1.54309
1.41834
1.29369
1.16916
1.04481
0.920668
0.796757
0.673104
0.549689
0.426661
0.303593
0.181939
0.0567009
5.31725
4.61309
4.30273
4.10007
3.91773
3.75119
3.59772
3.45303
3.31429
3.17989
3.04874
2.91995
2.79283
2.66684
2.54156
2.41667
2.29196
2.1673
2.04262
1.91788
1.79309
1.66827
1.54346
1.41871
1.29404
1.16951
1.04516
0.921012
0.797103
0.673455
0.550057
0.427011
0.304101
0.182058
0.0598048
5.58445
4.51312
4.27997
4.08574
3.90679
3.74395
3.59248
3.4489
3.31098
3.17727
3.04671
2.91846
2.79181
2.6662
2.54121
2.41654
2.29197
2.16739
2.04273
1.91799
1.79318
1.66834
1.54349
1.4187
1.294
1.16944
1.04505
0.920888
0.796964
0.673311
0.549909
0.426897
0.303711
0.182282
0.0546901
5.58615
4.51266
4.27992
4.08561
3.90674
3.7439
3.59244
3.44888
3.31097
3.17727
3.04671
2.91846
2.79181
2.6662
2.5412
2.41652
2.29195
2.16736
2.04271
1.91796
1.79315
1.6683
1.54346
1.41867
1.29397
1.16942
1.04504
0.920863
0.796927
0.673255
0.549815
0.426798
0.303595
0.182249
0.0547441
5.46748
4.53971
4.29077
4.09169
3.91198
3.74726
3.59459
3.45031
3.31187
3.17772
3.04677
2.91818
2.79123
2.6654
2.54025
2.41548
2.29088
2.16632
2.04172
1.91705
1.79233
1.66757
1.54281
1.4181
1.29348
1.16898
1.04466
0.920543
0.796657
0.673027
0.549656
0.426645
0.303778
0.181813
0.0594359
5.3696
4.57622
4.29841
4.09636
3.91558
3.74989
3.59663
3.45199
3.31325
3.17886
3.04772
2.91896
2.79187
2.66592
2.54068
2.41584
2.29118
2.16658
2.04194
1.91725
1.79251
1.66774
1.54298
1.41826
1.29363
1.16914
1.04481
0.92069
0.796803
0.673171
0.549791
0.426761
0.30392
0.18181
0.060743
5.53672
4.5201
4.28172
4.08685
3.90769
3.74448
3.59279
3.44908
3.31107
3.17727
3.04663
2.91831
2.79159
2.66594
2.54092
2.41623
2.29166
2.16709
2.04245
1.91773
1.79295
1.66812
1.5433
1.41853
1.29384
1.1693
1.04493
0.920771
0.796846
0.673182
0.549753
0.42673
0.303571
0.18211
0.0553815
5.53281
4.52217
4.28228
4.08713
3.90798
3.74466
3.59291
3.44916
3.31112
3.1773
3.04664
2.91829
2.79155
2.66588
2.54085
2.41616
2.29159
2.16703
2.0424
1.91769
1.79291
1.66809
1.54328
1.41851
1.29383
1.16929
1.04493
0.920771
0.796848
0.673185
0.549758
0.426733
0.303594
0.182085
0.055703
5.18354
4.68015
4.32178
4.10919
3.92602
3.75625
3.60092
3.45544
3.31618
3.18141
3.05
2.92104
2.7938
2.66773
2.54239
2.41748
2.29277
2.16812
2.04346
1.91876
1.794
1.66923
1.54446
1.41974
1.29511
1.17061
1.04628
0.92216
0.798269
0.67463
0.551249
0.428192
0.305446
0.183283
0.0647408
5.46232
4.53952
4.29064
4.09174
3.91195
3.74724
3.59458
3.4503
3.31185
3.1777
3.04676
2.91817
2.79123
2.66539
2.54024
2.41547
2.29087
2.16631
2.04171
1.91704
1.79231
1.66755
1.54279
1.41808
1.29345
1.16896
1.04463
0.920515
0.796629
0.673
0.549629
0.426618
0.303738
0.181795
0.0591978
5.4096
4.58294
4.29147
4.09549
3.91322
3.74845
3.59607
3.45192
3.31358
3.17951
3.04863
2.92008
2.79315
2.66728
2.54206
2.41719
2.29246
2.16774
2.04299
1.91817
1.79331
1.66843
1.54356
1.41876
1.29405
1.16949
1.0451
0.920938
0.797018
0.673369
0.549978
0.426972
0.30388
0.182255
0.0555165
5.47125
4.5368
4.28957
4.09121
3.91152
3.74695
3.59438
3.45015
3.31174
3.17762
3.0467
2.91812
2.7912
2.66538
2.54024
2.41548
2.29088
2.16632
2.04172
1.91705
1.79232
1.66756
1.54279
1.41808
1.29345
1.16895
1.04463
0.920507
0.79662
0.672991
0.549619
0.426607
0.303708
0.181794
0.0588437
5.44387
4.54869
4.29051
4.09183
3.91188
3.74723
3.59463
3.45039
3.31197
3.17784
3.0469
2.91831
2.79138
2.66554
2.5404
2.41563
2.29102
2.16645
2.04184
1.91717
1.79243
1.66766
1.5429
1.41818
1.29355
1.16905
1.04472
0.920589
0.796696
0.673059
0.549667
0.426643
0.303695
0.181816
0.0586104
5.48774
4.53913
4.29043
4.09142
3.91182
3.74715
3.5945
3.45024
3.31181
3.17766
3.04672
2.91813
2.79118
2.66535
2.54019
2.41542
2.29082
2.16626
2.04165
1.91699
1.79226
1.66751
1.54275
1.41804
1.29342
1.16893
1.04461
0.92049
0.796605
0.672977
0.549607
0.426598
0.303736
0.181769
0.0594275
5.50129
4.53083
4.28456
4.08863
3.90901
3.74535
3.59338
3.44949
3.31134
3.17744
3.04671
2.9183
2.79152
2.66581
2.54075
2.41604
2.29146
2.16689
2.04227
1.91756
1.79279
1.66798
1.54318
1.41842
1.29375
1.16922
1.04486
0.920708
0.796791
0.673136
0.549717
0.426695
0.303576
0.182025
0.0559633
5.41193
4.55513
4.29556
4.09424
3.91394
3.7486
3.59554
3.45103
3.31243
3.17814
3.04709
2.91841
2.79139
2.66549
2.5403
2.41549
2.29087
2.16629
2.04168
1.91701
1.79228
1.66752
1.54277
1.41806
1.29344
1.16895
1.04463
0.92052
0.796638
0.673013
0.549647
0.426636
0.303827
0.181736
0.0605929
5.33207
4.59678
4.30201
4.09875
3.91725
3.75105
3.5976
3.45289
3.3141
3.17966
3.04845
2.91963
2.79249
2.66648
2.54119
2.41631
2.29162
2.16698
2.04232
1.91761
1.79285
1.66806
1.54328
1.41854
1.2939
1.16939
1.04505
0.920923
0.797027
0.673386
0.549997
0.426953
0.304106
0.181968
0.0610748
5.50192
4.53829
4.28451
4.08948
3.90903
3.74585
3.59417
3.45037
3.31224
3.17834
3.04761
2.9192
2.7924
2.66667
2.54156
2.41678
2.29213
2.16748
2.04277
1.91799
1.79315
1.66829
1.54344
1.41864
1.29393
1.16937
1.04499
0.92082
0.796897
0.673252
0.549862
0.426889
0.303677
0.182391
0.0537888
5.50286
4.53773
4.28442
4.08942
3.90901
3.74583
3.59415
3.45035
3.31223
3.17833
3.04761
2.9192
2.79241
2.66667
2.54157
2.41679
2.29213
2.16748
2.04278
1.918
1.79316
1.6683
1.54344
1.41864
1.29394
1.16938
1.04501
0.920836
0.796905
0.67324
0.549799
0.426786
0.303502
0.182238
0.053776
5.3928
4.5652
4.29646
4.09488
3.91449
3.74906
3.59593
3.45138
3.31273
3.17841
3.04733
2.91861
2.79157
2.66565
2.54043
2.41562
2.29098
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.0447
0.920585
0.796701
0.673073
0.549699
0.426677
0.303848
0.181744
0.0607004
5.45836
4.55665
4.28712
4.09176
3.91077
3.74695
3.59498
3.45102
3.31277
3.17876
3.04792
2.9194
2.79251
2.6667
2.54154
2.41672
2.29204
2.16738
2.04267
1.9179
1.79307
1.66821
1.54337
1.41859
1.2939
1.16935
1.04498
0.920817
0.796897
0.673242
0.54982
0.426805
0.303609
0.182153
0.0548128
5.37959
4.56836
4.29856
4.09577
3.91528
3.7496
3.5963
3.45166
3.31294
3.17856
3.04744
2.91869
2.79161
2.66567
2.54044
2.41561
2.29097
2.16637
2.04175
1.91707
1.79234
1.66758
1.54283
1.41812
1.2935
1.16902
1.0447
0.920586
0.796704
0.673078
0.54971
0.426692
0.303913
0.181731
0.061513
5.48225
4.5384
4.28773
4.09001
3.91062
3.74635
3.59399
3.44989
3.31159
3.17753
3.04666
2.91812
2.79123
2.66542
2.5403
2.41555
2.29096
2.16639
2.04179
1.91712
1.79239
1.66762
1.54286
1.41814
1.29351
1.16901
1.04468
0.920553
0.796659
0.673021
0.549626
0.4266
0.303637
0.181788
0.0582991
5.2837
4.62865
4.30717
4.10234
3.91967
3.75239
3.5985
3.45363
3.31477
3.18029
3.04908
2.92026
2.79311
2.6671
2.54179
2.41688
2.29215
2.16748
2.04279
1.91804
1.79325
1.66843
1.54363
1.41887
1.29421
1.16968
1.04533
0.92118
0.797271
0.673621
0.550222
0.427166
0.304304
0.18217
0.0610491
5.43693
4.55361
4.29044
4.09285
3.91218
3.74759
3.59506
3.45078
3.31233
3.17817
3.04724
2.91867
2.79175
2.66593
2.54079
2.41602
2.29141
2.16682
2.04219
1.91748
1.79272
1.66792
1.54313
1.41838
1.29373
1.1692
1.04485
0.920713
0.796812
0.673175
0.549793
0.426781
0.303771
0.182018
0.0571755
5.39509
4.57218
4.29453
4.09547
3.91418
3.749
3.59616
3.45171
3.31312
3.17884
3.04779
2.91911
2.7921
2.6662
2.541
2.41618
2.29153
2.16692
2.04226
1.91755
1.79278
1.66798
1.54319
1.41844
1.29378
1.16926
1.04491
0.920772
0.796873
0.673236
0.549856
0.426837
0.303873
0.182013
0.0580683
5.21461
4.66623
4.31705
4.10771
3.9241
3.75505
3.60022
3.45491
3.31577
3.1811
3.04976
2.92085
2.79366
2.66761
2.5423
2.4174
2.2927
2.16805
2.04339
1.91867
1.79391
1.66912
1.54434
1.4196
1.29496
1.17044
1.0461
0.921953
0.798044
0.674387
0.550987
0.427911
0.305096
0.182885
0.0624548
5.61768
4.50353
4.2779
4.08446
3.90582
3.74338
3.59216
3.44873
3.31094
3.17734
3.04687
2.91871
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16956
1.04517
0.920993
0.797062
0.673404
0.549988
0.426972
0.303714
0.182413
0.0539455
5.61779
4.50345
4.27788
4.08444
3.90581
3.74337
3.59215
3.44873
3.31094
3.17734
3.04688
2.91871
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16957
1.04517
0.920985
0.797031
0.673348
0.549902
0.426913
0.303686
0.182513
0.0540653
5.47725
4.53455
4.28843
4.09071
3.91103
3.74663
3.59417
3.45001
3.31164
3.17756
3.04668
2.91813
2.79124
2.66544
2.54032
2.41557
2.29099
2.16643
2.04182
1.91715
1.79242
1.66765
1.54289
1.41816
1.29353
1.16903
1.04469
0.920566
0.796675
0.673043
0.549666
0.426652
0.303715
0.181851
0.0582713
5.61516
4.50346
4.27796
4.0845
3.90585
3.7434
3.59217
3.44874
3.31095
3.17734
3.04687
2.9187
2.79212
2.66655
2.54158
2.4169
2.29231
2.1677
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16957
1.04517
0.920986
0.797033
0.67335
0.549904
0.426913
0.303686
0.182507
0.0540896
5.61424
4.50386
4.27807
4.08457
3.90589
3.74342
3.59218
3.44874
3.31094
3.17733
3.04686
2.91869
2.79211
2.66654
2.54157
2.41689
2.29231
2.1677
2.04301
1.91824
1.7934
1.66853
1.54366
1.41885
1.29413
1.16956
1.04517
0.920993
0.797062
0.673404
0.549988
0.426972
0.303715
0.182408
0.053972
5.4153
4.55513
4.29567
4.09375
3.91385
3.74855
3.59549
3.451
3.3124
3.17812
3.04706
2.91837
2.79134
2.66543
2.54022
2.41542
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.54271
1.418
1.29339
1.16891
1.04459
0.920483
0.796602
0.672979
0.549619
0.426618
0.303861
0.181692
0.0614734
5.41927
4.55456
4.29499
4.09342
3.91357
3.74836
3.59535
3.45089
3.31232
3.17806
3.04702
2.91833
2.79131
2.66541
2.54021
2.41541
2.29078
2.1662
2.04159
1.91692
1.7922
1.66745
1.5427
1.418
1.29338
1.1689
1.04459
0.920474
0.796593
0.67297
0.549608
0.426603
0.303826
0.181683
0.0611964
5.38686
4.57116
4.29591
4.09522
3.91451
3.74914
3.5961
3.45158
3.31295
3.17863
3.04755
2.91884
2.7918
2.66588
2.54067
2.41585
2.2912
2.1666
2.04197
1.91729
1.79254
1.66777
1.543
1.41828
1.29365
1.16914
1.04481
0.92069
0.796799
0.673165
0.54978
0.426752
0.303857
0.181853
0.0597428
5.40319
4.55909
4.29646
4.09433
3.91424
3.74883
3.5957
3.45117
3.31253
3.17823
3.04715
2.91845
2.79141
2.66549
2.54028
2.41547
2.29084
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16894
1.04462
0.920513
0.796632
0.673008
0.549645
0.426638
0.303868
0.181699
0.0614182
5.47552
4.54379
4.29229
4.09219
3.91249
3.7476
3.59481
3.45047
3.31198
3.17779
3.04682
2.91819
2.79121
2.66535
2.54018
2.4154
2.29079
2.16622
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.2934
1.16892
1.0446
0.920485
0.796602
0.672975
0.549609
0.426604
0.303787
0.181751
0.0601709
5.53097
4.52428
4.28295
4.08751
3.90842
3.74492
3.59305
3.44924
3.31114
3.17727
3.04656
2.91816
2.79139
2.66568
2.54063
2.41593
2.29136
2.1668
2.04218
1.91748
1.79272
1.66792
1.54312
1.41837
1.29371
1.16918
1.04482
0.920672
0.796757
0.673102
0.549683
0.426657
0.303561
0.181967
0.0562543
5.40493
4.55872
4.29621
4.0942
3.91413
3.74876
3.59565
3.45113
3.31251
3.17821
3.04714
2.91844
2.7914
2.66549
2.54028
2.41547
2.29084
2.16626
2.04164
1.91697
1.79225
1.6675
1.54275
1.41804
1.29343
1.16894
1.04463
0.920517
0.796636
0.673012
0.549648
0.42664
0.303864
0.181705
0.0613341
5.26372
4.63317
4.31096
4.10371
3.92098
3.7533
3.59911
3.4541
3.31514
3.18059
3.04933
2.92046
2.79327
2.66722
2.54188
2.41696
2.29222
2.16755
2.04286
1.91812
1.79333
1.66852
1.54372
1.41897
1.29431
1.16979
1.04544
0.9213
0.797397
0.67375
0.550356
0.427295
0.304499
0.182267
0.0627217
5.50473
4.52803
4.28444
4.08863
3.90911
3.74542
3.59343
3.44951
3.31133
3.1774
3.04666
2.91824
2.79145
2.66575
2.54069
2.41599
2.29142
2.16687
2.04225
1.91756
1.79279
1.66799
1.54319
1.41844
1.29377
1.16924
1.04488
0.920728
0.79682
0.673177
0.549788
0.426776
0.303708
0.182063
0.0562799
5.34668
4.58466
4.3014
4.09799
3.91673
3.75066
3.5972
3.45245
3.31364
3.17919
3.04799
2.91918
2.79206
2.66607
2.54081
2.41594
2.29127
2.16665
2.04201
1.91731
1.79257
1.66779
1.54302
1.4183
1.29367
1.16917
1.04484
0.920724
0.796838
0.673208
0.549833
0.426801
0.303993
0.181827
0.0613143
5.44119
4.54977
4.29046
4.09265
3.91215
3.74753
3.59496
3.45068
3.31222
3.17806
3.04713
2.91855
2.79163
2.66581
2.54067
2.41591
2.2913
2.16672
2.04209
1.9174
1.79265
1.66786
1.54307
1.41833
1.29368
1.16916
1.04481
0.920677
0.796778
0.673143
0.549763
0.42675
0.303759
0.181974
0.0575063
5.46765
4.55845
4.28686
4.09181
3.91046
3.74684
3.59504
3.4512
3.31307
3.17914
3.04837
2.91989
2.79301
2.66718
2.54198
2.41711
2.29238
2.16766
2.0429
1.91808
1.79321
1.66832
1.54345
1.41864
1.29393
1.16937
1.04499
0.920817
0.796889
0.673228
0.549796
0.426781
0.303525
0.182162
0.0539719
5.46665
4.55901
4.28703
4.09204
3.91059
3.74693
3.5951
3.45124
3.31308
3.17915
3.04837
2.91989
2.79301
2.66718
2.54199
2.41712
2.2924
2.16768
2.04292
1.9181
1.79323
1.66834
1.54347
1.41866
1.29395
1.16938
1.04499
0.920818
0.796894
0.673247
0.549858
0.426878
0.303695
0.182323
0.0539878
5.47895
4.5358
4.28735
4.09045
3.91051
3.74635
3.59405
3.44995
3.31164
3.1776
3.04677
2.91828
2.79143
2.66567
2.54058
2.41585
2.29127
2.16671
2.04209
1.91741
1.79266
1.66787
1.54308
1.41834
1.29368
1.16916
1.04481
0.920674
0.796773
0.673134
0.549751
0.426738
0.30372
0.181993
0.0570333
5.43472
4.57258
4.28917
4.09397
3.91203
3.74774
3.59561
3.45158
3.31331
3.1793
3.04845
2.91993
2.79302
2.66717
2.54196
2.41709
2.29237
2.16766
2.04291
1.9181
1.79325
1.66836
1.5435
1.41869
1.29399
1.16943
1.04504
0.920877
0.796957
0.673309
0.549919
0.426923
0.303791
0.182272
0.0548271
5.27585
4.63942
4.30745
4.10376
3.92033
3.75269
3.59874
3.45382
3.31493
3.18045
3.04926
2.92046
2.79336
2.66739
2.54213
2.41727
2.29259
2.16796
2.04329
1.91856
1.79378
1.66896
1.54413
1.41935
1.29466
1.17009
1.0457
0.921527
0.797592
0.673921
0.550512
0.427446
0.304541
0.182438
0.0596822
5.33876
4.59942
4.30045
4.09851
3.91673
3.75067
3.5974
3.45278
3.31407
3.17967
3.04851
2.91972
2.79261
2.66662
2.54135
2.41647
2.29178
2.16713
2.04246
1.91773
1.79295
1.66815
1.54335
1.41861
1.29395
1.16943
1.04508
0.920937
0.797033
0.673387
0.549991
0.426949
0.30404
0.182006
0.0598011
5.39801
4.57932
4.29304
4.09502
3.91351
3.74855
3.59595
3.45166
3.31318
3.17898
3.04799
2.91934
2.79235
2.66647
2.54127
2.41645
2.29178
2.16714
2.04247
1.91773
1.79293
1.66811
1.54329
1.41852
1.29385
1.16932
1.04496
0.920813
0.796903
0.673257
0.549853
0.426827
0.303775
0.182026
0.0569949
5.27452
4.63811
4.3081
4.10379
3.92044
3.7528
3.59881
3.45387
3.31497
3.18047
3.04927
2.92046
2.79334
2.66735
2.54207
2.41718
2.29248
2.16782
2.04312
1.91837
1.79357
1.66874
1.54392
1.41914
1.29446
1.16991
1.04553
0.921363
0.79744
0.673778
0.550377
0.427316
0.304432
0.182318
0.0600884
5.49028
4.54444
4.29018
4.09101
3.91158
3.74701
3.59443
3.45022
3.31182
3.1777
3.04676
2.91817
2.79123
2.66538
2.54023
2.41546
2.29086
2.16629
2.04169
1.91702
1.79229
1.66754
1.54278
1.41808
1.29345
1.16896
1.04464
0.920526
0.796639
0.673007
0.549624
0.426604
0.303715
0.181752
0.0594778
5.51295
4.52867
4.28329
4.08849
3.90854
3.74527
3.59352
3.4497
3.31159
3.17773
3.04705
2.9187
2.79197
2.6663
2.54125
2.41654
2.29194
2.16734
2.04267
1.91793
1.79312
1.66827
1.54343
1.41864
1.29395
1.16939
1.04501
0.920851
0.79693
0.673283
0.549887
0.426893
0.303705
0.182326
0.0544595
5.51335
4.52852
4.28312
4.08832
3.90844
3.74521
3.59348
3.44969
3.3116
3.17775
3.04708
2.91874
2.79201
2.66633
2.54129
2.41657
2.29196
2.16735
2.04268
1.91793
1.79312
1.66827
1.54343
1.41864
1.29395
1.16939
1.04502
0.92085
0.79692
0.673256
0.549822
0.426811
0.30358
0.182254
0.0544421
5.44797
4.54327
4.29184
4.09223
3.91238
3.74752
3.59477
3.45044
3.31196
3.17778
3.04682
2.9182
2.79124
2.66539
2.54023
2.41545
2.29085
2.16628
2.04167
1.91701
1.79228
1.66752
1.54277
1.41806
1.29343
1.16894
1.04462
0.920508
0.796623
0.672996
0.549627
0.426617
0.303765
0.181773
0.0596713
5.53629
4.51923
4.2817
4.08713
3.90756
3.74453
3.59293
3.44924
3.31124
3.17747
3.04687
2.91859
2.79192
2.66629
2.54129
2.41659
2.29201
2.16741
2.04274
1.91799
1.79318
1.66832
1.54348
1.41868
1.29398
1.16942
1.04504
0.920873
0.79695
0.6733
0.5499
0.426901
0.303691
0.182345
0.0542658
5.53766
4.51796
4.2814
4.08695
3.9075
3.74451
3.59293
3.44926
3.31126
3.1775
3.0469
2.91862
2.79195
2.66632
2.54131
2.41661
2.29202
2.16742
2.04275
1.918
1.79319
1.66833
1.54349
1.41869
1.29399
1.16943
1.04505
0.920881
0.796945
0.673275
0.549836
0.426828
0.303591
0.182316
0.0543081
5.43157
4.55044
4.29482
4.09329
3.91351
3.74831
3.5953
3.45085
3.31228
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04457
0.920458
0.796576
0.672951
0.549593
0.426596
0.303845
0.181695
0.0613767
5.49655
4.54261
4.28937
4.09066
3.91125
3.74678
3.59427
3.45011
3.31174
3.17764
3.04673
2.91816
2.79123
2.6654
2.54026
2.41549
2.29089
2.16633
2.04173
1.91706
1.79234
1.66758
1.54282
1.41811
1.29348
1.16899
1.04467
0.920547
0.796658
0.673023
0.549636
0.426612
0.303697
0.181773
0.0590829
5.5147
4.52739
4.28405
4.08817
3.90884
3.74521
3.59326
3.44941
3.31128
3.17739
3.04666
2.91826
2.79148
2.66577
2.54072
2.41601
2.29144
2.16688
2.04226
1.91756
1.7928
1.668
1.5432
1.41844
1.29378
1.16925
1.04489
0.92074
0.796823
0.673166
0.549746
0.426719
0.30362
0.182025
0.0563094
5.4121
4.55757
4.29501
4.09378
3.91371
3.74848
3.59547
3.451
3.31241
3.17814
3.0471
2.91841
2.7914
2.6655
2.5403
2.41549
2.29087
2.16628
2.04167
1.917
1.79227
1.66752
1.54277
1.41806
1.29344
1.16896
1.04464
0.920525
0.796643
0.673017
0.549646
0.426631
0.303814
0.181714
0.0607226
5.22926
4.65954
4.31425
4.1062
3.92302
3.75437
3.59976
3.45458
3.31552
3.1809
3.0496
2.92072
2.79355
2.66752
2.54223
2.41734
2.29264
2.16801
2.04334
1.91863
1.79386
1.66905
1.54425
1.4195
1.29483
1.17029
1.04593
0.921772
0.79785
0.674185
0.550775
0.427699
0.304865
0.182681
0.0621187
5.46078
4.5504
4.29363
4.09253
3.913
3.74798
3.59508
3.45069
3.31216
3.17793
3.04692
2.91825
2.79125
2.66536
2.54016
2.41536
2.29074
2.16616
2.04156
1.91689
1.79217
1.66741
1.54267
1.41796
1.29335
1.16887
1.04456
0.920446
0.796565
0.672942
0.549582
0.426581
0.303808
0.181679
0.061136
5.45644
4.55093
4.29442
4.09291
3.91333
3.74821
3.59524
3.45081
3.31226
3.17801
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54268
1.41797
1.29336
1.16888
1.04457
0.920457
0.796575
0.672952
0.549596
0.426601
0.303855
0.181693
0.0614936
5.29586
4.61582
4.3068
4.10165
3.91924
3.75227
3.59847
3.4536
3.31474
3.18024
3.04901
2.92016
2.793
2.66697
2.54165
2.41674
2.29202
2.16736
2.04268
1.91794
1.79316
1.66836
1.54356
1.41882
1.29416
1.16964
1.04529
0.921154
0.797253
0.673609
0.550218
0.427164
0.304336
0.182149
0.0616478
5.4255
4.57714
4.29025
4.09438
3.91244
3.74801
3.59581
3.45175
3.31346
3.17942
3.04855
2.91999
2.79305
2.66718
2.54195
2.41707
2.29234
2.16764
2.04289
1.91809
1.79323
1.66836
1.5435
1.4187
1.294
1.16944
1.04507
0.920903
0.79698
0.673325
0.549905
0.426885
0.303718
0.182168
0.0551396
5.4654
4.5492
4.29304
4.09228
3.91279
3.74783
3.59498
3.45062
3.31211
3.17789
3.04689
2.91823
2.79123
2.66535
2.54016
2.41536
2.29074
2.16616
2.04156
1.91689
1.79217
1.66741
1.54267
1.41796
1.29335
1.16887
1.04455
0.920442
0.796562
0.672938
0.549574
0.426571
0.303784
0.181677
0.0609299
5.58623
4.50517
4.27822
4.08487
3.90618
3.74359
3.59228
3.44879
3.31095
3.1773
3.04679
2.91858
2.79197
2.66638
2.5414
2.41671
2.29213
2.16753
2.04286
1.9181
1.79327
1.66841
1.54355
1.41875
1.29405
1.16948
1.04509
0.920914
0.796971
0.673293
0.549849
0.426842
0.303619
0.182366
0.0543258
5.57755
4.50808
4.27907
4.08525
3.90634
3.74368
3.59232
3.4488
3.31094
3.17727
3.04676
2.91855
2.79194
2.66635
2.54138
2.4167
2.29212
2.16753
2.04286
1.9181
1.79328
1.66842
1.54356
1.41876
1.29405
1.16949
1.0451
0.920927
0.797001
0.673345
0.549937
0.426924
0.303698
0.182344
0.0542359
5.57253
4.51678
4.28092
4.08633
3.90725
3.74422
3.59264
3.44899
3.31101
3.17725
3.04665
2.91836
2.79168
2.66606
2.54106
2.41638
2.29181
2.16724
2.0426
1.91788
1.79308
1.66825
1.54342
1.41863
1.29394
1.16939
1.04501
0.920844
0.796923
0.673273
0.549874
0.426864
0.303708
0.182222
0.055064
5.48204
4.53487
4.28879
4.09082
3.91117
3.74671
3.59422
3.45003
3.31166
3.17756
3.04666
2.91811
2.7912
2.6654
2.54027
2.41552
2.29093
2.16637
2.04177
1.9171
1.79237
1.6676
1.54284
1.41812
1.29349
1.16899
1.04465
0.920532
0.796643
0.673012
0.549637
0.426624
0.303703
0.18182
0.0585032
5.58005
4.51704
4.28098
4.08621
3.90721
3.74418
3.59261
3.44899
3.31103
3.17729
3.0467
2.91841
2.79173
2.66611
2.54111
2.41642
2.29186
2.16728
2.04264
1.91791
1.79311
1.66827
1.54344
1.41865
1.29396
1.16941
1.04503
0.920864
0.796931
0.673261
0.549825
0.426802
0.303618
0.182209
0.0551119
5.40251
4.56079
4.29549
4.09486
3.91419
3.74885
3.59582
3.45129
3.31266
3.17836
3.0473
2.91861
2.7916
2.6657
2.54051
2.4157
2.29107
2.16649
2.04187
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04474
0.920622
0.796735
0.673107
0.549735
0.426716
0.303847
0.181835
0.0597102
5.46497
4.53882
4.28874
4.09112
3.91113
3.74672
3.59427
3.45009
3.31171
3.17762
3.04674
2.9182
2.79131
2.66551
2.5404
2.41565
2.29106
2.16649
2.04188
1.9172
1.79246
1.66768
1.54291
1.41817
1.29353
1.16902
1.04468
0.920552
0.796658
0.673026
0.549649
0.426637
0.303664
0.181861
0.0576719
5.43514
4.54981
4.29478
4.09332
3.91351
3.74831
3.5953
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.5402
2.4154
2.29078
2.1662
2.04159
1.91693
1.79221
1.66745
1.54271
1.418
1.29339
1.16891
1.0446
0.920483
0.796601
0.672975
0.549616
0.426618
0.303864
0.181721
0.0613302
5.42304
4.55658
4.29223
4.093
3.91274
3.74786
3.59512
3.45078
3.31229
3.17809
3.04711
2.91848
2.79151
2.66565
2.54049
2.4157
2.29108
2.1665
2.04189
1.91721
1.79247
1.6677
1.54293
1.41821
1.29357
1.16907
1.04474
0.920614
0.796721
0.673085
0.549696
0.426671
0.303733
0.181828
0.0588378
5.36492
4.58829
4.29718
4.09684
3.91534
3.74978
3.59678
3.45228
3.31365
3.17932
3.04822
2.91948
2.79241
2.66646
2.54122
2.41637
2.29169
2.16706
2.04239
1.91767
1.79289
1.66809
1.54329
1.41854
1.29388
1.16935
1.045
0.920862
0.796956
0.673311
0.549913
0.426878
0.303924
0.181988
0.0588499
5.368
4.57534
4.29906
4.09686
3.9158
3.75001
3.59671
3.45203
3.31328
3.17888
3.04773
2.91897
2.79188
2.66594
2.5407
2.41586
2.2912
2.1666
2.04196
1.91727
1.79253
1.66776
1.54299
1.41827
1.29364
1.16914
1.04481
0.920693
0.796807
0.673177
0.549804
0.426778
0.303942
0.181842
0.060607
5.4785
4.54732
4.28587
4.09065
3.90997
3.74634
3.59443
3.4505
3.31229
3.17833
3.04755
2.91911
2.79229
2.66653
2.54142
2.41664
2.292
2.16736
2.04267
1.91791
1.79308
1.66823
1.54339
1.41861
1.29392
1.16936
1.04499
0.92083
0.796906
0.673248
0.549821
0.426807
0.303591
0.182193
0.0545944
5.51839
4.52628
4.28447
4.08859
3.90914
3.74544
3.59343
3.44951
3.31133
3.1774
3.04665
2.91823
2.79144
2.66573
2.54068
2.41597
2.29141
2.16685
2.04224
1.91755
1.79279
1.66799
1.5432
1.41844
1.29378
1.16925
1.04489
0.920739
0.79683
0.673187
0.549798
0.426784
0.303725
0.182061
0.0564488
5.54001
4.52609
4.28422
4.08831
3.90899
3.74533
3.59334
3.44943
3.31126
3.17733
3.04658
2.91816
2.79137
2.66566
2.5406
2.4159
2.29133
2.16678
2.04217
1.91748
1.79272
1.66792
1.54313
1.41838
1.29372
1.16919
1.04483
0.920685
0.796778
0.673137
0.54975
0.426736
0.303684
0.182012
0.0564749
5.48289
4.5484
4.28545
4.09056
3.90968
3.74631
3.5946
3.45079
3.31266
3.17873
3.04796
2.91949
2.79263
2.66683
2.54167
2.41685
2.29216
2.16748
2.04276
1.91796
1.79312
1.66825
1.54339
1.41859
1.29388
1.16932
1.04494
0.920773
0.796853
0.673209
0.549822
0.426847
0.303653
0.18232
0.0538842
5.48259
4.548
4.2853
4.09043
3.90962
3.74627
3.59458
3.45078
3.31266
3.17874
3.04796
2.91949
2.79263
2.66682
2.54165
2.41682
2.29213
2.16745
2.04272
1.91793
1.79308
1.66821
1.54335
1.41855
1.29385
1.16929
1.04492
0.920754
0.796828
0.673169
0.549737
0.426725
0.30346
0.18214
0.0538601
5.22134
4.66193
4.31612
4.10718
3.92364
3.75478
3.60004
3.45478
3.31567
3.18101
3.04969
2.92079
2.7936
2.66756
2.54225
2.41736
2.29266
2.16801
2.04335
1.91864
1.79387
1.66908
1.54429
1.41955
1.29489
1.17037
1.04601
0.921858
0.797944
0.674284
0.550882
0.427808
0.304991
0.18278
0.0624624
5.51478
4.53063
4.28341
4.08855
3.90844
3.74535
3.59371
3.44994
3.31185
3.178
3.04733
2.91897
2.79223
2.66654
2.54148
2.41673
2.2921
2.16747
2.04278
1.91801
1.79318
1.66832
1.54347
1.41867
1.29396
1.1694
1.04502
0.920849
0.796925
0.673279
0.549886
0.426907
0.303689
0.182404
0.0538533
5.51611
4.52964
4.28323
4.08846
3.90841
3.74534
3.5937
3.44993
3.31184
3.17799
3.04731
2.91896
2.79222
2.66653
2.54146
2.41672
2.29209
2.16746
2.04277
1.918
1.79317
1.66831
1.54346
1.41866
1.29396
1.1694
1.04503
0.920855
0.796921
0.673254
0.549812
0.426802
0.303525
0.182277
0.053854
5.48914
4.53634
4.28528
4.08994
3.9098
3.74609
3.59406
3.45008
3.31184
3.17787
3.0471
2.91866
2.79186
2.66614
2.54107
2.41633
2.29174
2.16714
2.04249
1.91777
1.79298
1.66815
1.54333
1.41856
1.29388
1.16934
1.04497
0.920812
0.796898
0.673253
0.549863
0.426859
0.303738
0.182215
0.0554217
5.4809
4.53393
4.28802
4.09054
3.91085
3.74651
3.5941
3.44996
3.31161
3.17754
3.04667
2.91814
2.79125
2.66546
2.54035
2.41561
2.29102
2.16646
2.04186
1.91719
1.79245
1.66768
1.54291
1.41818
1.29355
1.16904
1.0447
0.920574
0.796681
0.673048
0.54967
0.426656
0.303702
0.181866
0.0579927
5.34238
4.58651
4.30187
4.09801
3.91687
3.75076
3.59726
3.4525
3.31368
3.17922
3.04801
2.91919
2.79206
2.66607
2.54079
2.41593
2.29125
2.16663
2.04199
1.91729
1.79255
1.66778
1.54301
1.41829
1.29366
1.16917
1.04484
0.920725
0.79684
0.673209
0.549833
0.426799
0.304009
0.181808
0.0617509
5.44331
4.56275
4.28861
4.0926
3.91144
3.7473
3.59515
3.45109
3.31279
3.17874
3.04787
2.91933
2.79243
2.66661
2.54145
2.41663
2.29197
2.16732
2.04262
1.91786
1.79304
1.66819
1.54336
1.41858
1.2939
1.16935
1.04498
0.920828
0.79691
0.673257
0.54984
0.426822
0.303665
0.182131
0.0553691
5.48555
4.53509
4.28644
4.08947
3.91004
3.74598
3.59375
3.44973
3.31147
3.17747
3.04664
2.91814
2.79127
2.6655
2.5404
2.41566
2.29107
2.16651
2.04191
1.91723
1.79249
1.66771
1.54294
1.41821
1.29357
1.16906
1.04472
0.920586
0.796686
0.673042
0.54964
0.426614
0.303601
0.181845
0.0575311
5.50394
4.54057
4.28855
4.09029
3.9109
3.74654
3.59411
3.44999
3.31165
3.17758
3.04669
2.91814
2.79122
2.66541
2.54028
2.41552
2.29093
2.16636
2.04176
1.91709
1.79237
1.6676
1.54284
1.41813
1.2935
1.169
1.04468
0.920553
0.796661
0.673024
0.549633
0.426608
0.303668
0.181782
0.0586851
5.43603
4.54657
4.2928
4.09267
3.91276
3.74778
3.59495
3.45058
3.31208
3.17787
3.04688
2.91825
2.79127
2.6654
2.54023
2.41545
2.29084
2.16627
2.04166
1.917
1.79227
1.66752
1.54276
1.41805
1.29343
1.16895
1.04463
0.920513
0.79663
0.673003
0.549636
0.426627
0.303794
0.181765
0.0600368
5.42309
4.56449
4.29117
4.09394
3.91276
3.74811
3.5956
3.45132
3.31285
3.17868
3.04771
2.91911
2.79216
2.66631
2.54114
2.41634
2.2917
2.16708
2.04241
1.91768
1.79289
1.66807
1.54326
1.4185
1.29383
1.1693
1.04494
0.92079
0.796884
0.673244
0.549861
0.42685
0.303815
0.182104
0.0566948
5.48088
4.53885
4.28568
4.09003
3.90982
3.746
3.59394
3.44995
3.31171
3.17773
3.04695
2.91851
2.79171
2.66598
2.54091
2.41618
2.29159
2.16701
2.04237
1.91765
1.79287
1.66805
1.54323
1.41847
1.29379
1.16925
1.04489
0.920737
0.796827
0.673185
0.549797
0.426793
0.303689
0.18213
0.0555989
5.41343
4.55458
4.29591
4.09413
3.914
3.74864
3.59555
3.45104
3.31243
3.17814
3.04709
2.91839
2.79136
2.66546
2.54026
2.41545
2.29083
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16894
1.04462
0.92051
0.796628
0.673003
0.549641
0.426636
0.303864
0.181726
0.0611825
5.50419
4.52933
4.28403
4.08856
3.9088
3.74523
3.59333
3.44945
3.31131
3.17741
3.0467
2.91831
2.79155
2.66586
2.54082
2.41612
2.29154
2.16697
2.04234
1.91763
1.79285
1.66803
1.54322
1.41845
1.29378
1.16924
1.04487
0.92072
0.796809
0.673165
0.549776
0.42677
0.303661
0.182108
0.0555687
5.41598
4.55456
4.29581
4.09385
3.91389
3.74857
3.5955
3.451
3.3124
3.17812
3.04706
2.91837
2.79134
2.66543
2.54023
2.41542
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.2934
1.16891
1.0446
0.920489
0.796607
0.672983
0.549624
0.426623
0.303868
0.181702
0.0614704
5.28405
4.62439
4.30811
4.1026
3.91986
3.75258
3.59864
3.45372
3.31482
3.18031
3.04907
2.92022
2.79305
2.66702
2.5417
2.41679
2.29207
2.1674
2.04271
1.91797
1.79319
1.66838
1.54358
1.41882
1.29416
1.16964
1.04529
0.92115
0.797248
0.673603
0.550213
0.427159
0.304328
0.182152
0.061534
5.40546
4.57969
4.29199
4.09485
3.91314
3.74836
3.5959
3.4517
3.31328
3.17914
3.04819
2.91957
2.79261
2.66673
2.54152
2.41668
2.29199
2.16733
2.04263
1.91787
1.79305
1.66821
1.54338
1.4186
1.29392
1.16937
1.04501
0.920857
0.796944
0.673294
0.549885
0.426862
0.303766
0.18209
0.056264
5.5051
4.53466
4.2838
4.08901
3.90879
3.74559
3.5939
3.4501
3.31198
3.1781
3.04739
2.919
2.79224
2.66652
2.54144
2.41668
2.29205
2.16741
2.04272
1.91795
1.79312
1.66826
1.54342
1.41862
1.29392
1.16937
1.04499
0.920824
0.796894
0.673231
0.549795
0.426784
0.30352
0.182234
0.0539914
5.49701
4.54013
4.28475
4.08983
3.90932
3.74603
3.5943
3.45045
3.3123
3.17838
3.04763
2.91921
2.79241
2.66666
2.54155
2.41677
2.29212
2.16747
2.04277
1.91799
1.79316
1.6683
1.54345
1.41865
1.29395
1.16939
1.045
0.920838
0.796916
0.673271
0.54988
0.4269
0.303699
0.182377
0.0539925
5.28548
4.6202
4.30824
4.10207
3.91974
3.75258
3.59863
3.45371
3.31479
3.18025
3.04898
2.9201
2.79291
2.66685
2.54152
2.4166
2.29188
2.16722
2.04254
1.91781
1.79304
1.66824
1.54344
1.4187
1.29405
1.16954
1.0452
0.921066
0.797169
0.673528
0.550139
0.427085
0.304287
0.182065
0.0623476
5.35127
4.58341
4.30075
4.09771
3.91642
3.7504
3.59699
3.45227
3.31348
3.17905
3.04787
2.91908
2.79197
2.666
2.54074
2.41589
2.29122
2.1666
2.04196
1.91727
1.79252
1.66775
1.54298
1.41826
1.29362
1.16912
1.0448
0.920678
0.796793
0.673165
0.549792
0.426762
0.303942
0.181807
0.0609821
5.52454
4.5243
4.28346
4.08796
3.90867
3.74512
3.5932
3.44933
3.31118
3.17728
3.04654
2.91813
2.79136
2.66565
2.5406
2.4159
2.29133
2.16677
2.04216
1.91746
1.7927
1.6679
1.5431
1.41835
1.29368
1.16915
1.0448
0.92065
0.796744
0.673103
0.549717
0.426706
0.303642
0.181999
0.0562185
5.45495
4.55107
4.2943
4.09283
3.91326
3.74816
3.59521
3.45079
3.31224
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29335
1.16887
1.04456
0.920445
0.796564
0.672941
0.549584
0.426589
0.303837
0.181681
0.0614152
5.43736
4.56492
4.28896
4.09323
3.91183
3.74755
3.59532
3.4512
3.31283
3.17874
3.04783
2.91927
2.79236
2.66654
2.54137
2.41657
2.2919
2.16726
2.04257
1.91781
1.793
1.66816
1.54333
1.41855
1.29387
1.16932
1.04495
0.920798
0.796886
0.673244
0.549858
0.426858
0.303758
0.182185
0.0554394
5.45688
4.54229
4.29181
4.09208
3.91235
3.74749
3.59473
3.4504
3.31192
3.17774
3.04676
2.91814
2.79117
2.66531
2.54014
2.41536
2.29075
2.16618
2.04157
1.9169
1.79218
1.66742
1.54267
1.41796
1.29334
1.16886
1.04454
0.920426
0.796544
0.672918
0.549553
0.426548
0.303719
0.181703
0.0599276
5.38444
4.57308
4.29627
4.09594
3.91472
3.74928
3.59625
3.45171
3.31306
3.17875
3.04767
2.91896
2.79192
2.66601
2.5408
2.41597
2.29133
2.16672
2.04208
1.91738
1.79262
1.66784
1.54306
1.41833
1.29368
1.16917
1.04483
0.920704
0.796812
0.67318
0.549804
0.426783
0.30387
0.181918
0.0590274
5.48443
4.53774
4.28745
4.08987
3.91044
3.74623
3.59391
3.44984
3.31154
3.17751
3.04665
2.91812
2.79124
2.66544
2.54033
2.41558
2.29099
2.16643
2.04183
1.91715
1.79242
1.66765
1.54289
1.41817
1.29353
1.16903
1.0447
0.920567
0.796671
0.67303
0.549633
0.426607
0.30363
0.181804
0.0580769
5.41887
4.55213
4.29517
4.0936
3.9137
3.74844
3.59541
3.45093
3.31235
3.17808
3.04703
2.91834
2.79132
2.66542
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.16891
1.04459
0.920483
0.796601
0.672976
0.549616
0.426615
0.303855
0.18171
0.0612938
5.60682
4.50469
4.27833
4.08473
3.90602
3.74349
3.59223
3.44878
3.31097
3.17735
3.04687
2.91868
2.79209
2.66652
2.54154
2.41686
2.29228
2.16768
2.04299
1.91823
1.79339
1.66852
1.54366
1.41885
1.29413
1.16956
1.04517
0.920985
0.797035
0.673352
0.549906
0.426908
0.303681
0.182477
0.0541812
5.60494
4.50576
4.2785
4.08482
3.90605
3.74351
3.59223
3.44877
3.31095
3.17732
3.04684
2.91865
2.79206
2.66649
2.54152
2.41684
2.29226
2.16766
2.04298
1.91821
1.79338
1.66851
1.54365
1.41883
1.29412
1.16955
1.04515
0.920982
0.797052
0.673394
0.549981
0.426965
0.303718
0.182393
0.0540714
5.49125
4.5446
4.28525
4.0902
3.90946
3.74617
3.59447
3.45065
3.31251
3.17858
3.04782
2.91938
2.79254
2.66677
2.54163
2.41683
2.29216
2.16749
2.04277
1.91799
1.79314
1.66827
1.54342
1.41862
1.29391
1.16935
1.04496
0.920798
0.796876
0.673232
0.549844
0.426871
0.303666
0.182362
0.0537948
5.4923
4.54398
4.28511
4.09009
3.9094
3.74612
3.59442
3.45061
3.31248
3.17856
3.04781
2.91937
2.79254
2.66677
2.54164
2.41683
2.29216
2.1675
2.04278
1.91799
1.79315
1.66828
1.54342
1.41862
1.29392
1.16936
1.04498
0.920816
0.796886
0.673224
0.549785
0.426771
0.303492
0.182202
0.0537885
5.52335
4.52354
4.28235
4.08746
3.90793
3.74472
3.59303
3.4493
3.31127
3.17747
3.04683
2.91852
2.79181
2.66616
2.54114
2.41644
2.29186
2.16727
2.04262
1.91788
1.79308
1.66824
1.5434
1.41862
1.29393
1.16938
1.045
0.920836
0.796907
0.673241
0.549808
0.426792
0.303592
0.182216
0.0548493
5.47329
4.54723
4.29187
4.09178
3.91237
3.74755
3.5948
3.45049
3.31201
3.17783
3.04685
2.91821
2.79123
2.66536
2.54018
2.41539
2.29078
2.1662
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04459
0.920477
0.796595
0.672968
0.549598
0.426588
0.30377
0.181707
0.0604976
5.38207
4.57132
4.29699
4.09603
3.91497
3.74944
3.59631
3.45172
3.31303
3.17869
3.04759
2.91886
2.79181
2.66589
2.54068
2.41585
2.29121
2.16661
2.04198
1.91729
1.79254
1.66776
1.54299
1.41826
1.29363
1.16912
1.04479
0.920666
0.796777
0.673147
0.549773
0.42675
0.303869
0.181859
0.059633
5.5223
4.52443
4.28255
4.08768
3.90802
3.74478
3.59308
3.44933
3.31128
3.17747
3.04683
2.91851
2.79181
2.66616
2.54114
2.41645
2.29187
2.16728
2.04263
1.9179
1.79309
1.66826
1.54342
1.41864
1.29394
1.16939
1.04501
0.920847
0.796927
0.673278
0.54988
0.426877
0.303709
0.18227
0.0548266
5.27512
4.64117
4.30729
4.10342
3.92022
3.75261
3.59868
3.45379
3.31492
3.18045
3.04927
2.92048
2.79338
2.6674
2.54214
2.41727
2.29259
2.16795
2.04329
1.91856
1.79377
1.66895
1.54412
1.41934
1.29465
1.17009
1.0457
0.921525
0.797588
0.673914
0.550495
0.427426
0.304507
0.182421
0.059724
5.51145
4.53556
4.28669
4.08939
3.91011
3.74601
3.59375
3.44972
3.31146
3.17744
3.0466
2.91808
2.79121
2.66542
2.54031
2.41556
2.29097
2.16641
2.04181
1.91714
1.7924
1.66763
1.54287
1.41814
1.29351
1.169
1.04467
0.920541
0.796645
0.673004
0.549606
0.42658
0.303594
0.181787
0.0579021
5.56072
4.51109
4.27989
4.08577
3.90668
3.7439
3.59247
3.4489
3.311
3.17731
3.04677
2.91854
2.79191
2.66632
2.54133
2.41665
2.29208
2.16748
2.04282
1.91806
1.79324
1.66839
1.54353
1.41873
1.29403
1.16946
1.04508
0.920909
0.796984
0.67333
0.549924
0.426916
0.303695
0.182343
0.0542687
5.5649
4.50951
4.27956
4.08559
3.9066
3.74385
3.59245
3.4489
3.31102
3.17733
3.0468
2.91858
2.79195
2.66635
2.54137
2.41669
2.29211
2.16751
2.04284
1.91808
1.79326
1.6684
1.54355
1.41875
1.29405
1.16948
1.0451
0.920919
0.796977
0.673301
0.549858
0.426851
0.303624
0.182367
0.0543376
5.41844
4.5603
4.29239
4.09398
3.91311
3.74823
3.59553
3.45117
3.31264
3.17842
3.04743
2.9188
2.79184
2.66599
2.54082
2.41603
2.2914
2.1668
2.04217
1.91747
1.79271
1.66791
1.54312
1.41838
1.29373
1.16921
1.04486
0.920723
0.796824
0.673188
0.549808
0.426793
0.303815
0.181995
0.0577786
5.54602
4.51567
4.28108
4.08663
3.90717
3.74432
3.59283
3.4492
3.31125
3.17752
3.04696
2.9187
2.79205
2.66644
2.54144
2.41674
2.29215
2.16754
2.04286
1.91809
1.79327
1.6684
1.54355
1.41874
1.29404
1.16948
1.04509
0.920913
0.796972
0.673297
0.549853
0.426851
0.303593
0.182383
0.0539788
5.54817
4.51499
4.28091
4.08651
3.90708
3.74425
3.59278
3.44916
3.31122
3.1775
3.04694
2.9187
2.79206
2.66646
2.54146
2.41676
2.29217
2.16756
2.04288
1.91812
1.79329
1.66843
1.54357
1.41877
1.29406
1.16949
1.0451
0.920929
0.797002
0.67335
0.549945
0.42695
0.303711
0.182423
0.0539463
5.56285
4.51019
4.27985
4.0857
3.90656
3.74384
3.59244
3.44889
3.31101
3.17734
3.04682
2.91861
2.79199
2.66641
2.54143
2.41675
2.29216
2.16757
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29407
1.1695
1.04511
0.920941
0.797014
0.673359
0.54995
0.426943
0.303706
0.182385
0.0540936
5.55881
4.51082
4.2799
4.08576
3.90663
3.7439
3.5925
3.44896
3.31107
3.17739
3.04687
2.91865
2.79203
2.66644
2.54145
2.41677
2.29218
2.16758
2.0429
1.91814
1.79331
1.66845
1.54359
1.41879
1.29408
1.16951
1.04513
0.920945
0.797001
0.673324
0.54988
0.426877
0.303637
0.182411
0.05416
5.34998
4.60005
4.29852
4.09862
3.91621
3.75028
3.5972
3.45268
3.31405
3.17975
3.04867
2.91995
2.79289
2.66694
2.54168
2.4168
2.2921
2.16743
2.04273
1.91797
1.79316
1.66833
1.5435
1.41872
1.29404
1.1695
1.04513
0.92098
0.79707
0.673424
0.550037
0.427008
0.304047
0.182136
0.0581737
5.54035
4.51997
4.28206
4.08714
3.90782
3.74458
3.59288
3.44915
3.31112
3.17731
3.04667
2.91835
2.79164
2.666
2.54099
2.41631
2.29174
2.16718
2.04254
1.91783
1.79304
1.66821
1.54339
1.41861
1.29392
1.16937
1.045
0.920838
0.79692
0.67327
0.549873
0.426862
0.303726
0.182208
0.0553351
5.37607
4.57956
4.29665
4.09653
3.91504
3.74953
3.59652
3.45199
3.31334
3.17902
3.04793
2.91921
2.79216
2.66624
2.54101
2.41618
2.29151
2.16689
2.04224
1.91752
1.79275
1.66796
1.54316
1.41842
1.29376
1.16924
1.0449
0.92076
0.796862
0.673227
0.549847
0.426824
0.303891
0.181961
0.0586908
5.42434
4.56973
4.29034
4.09404
3.9125
3.74798
3.59562
3.45143
3.31301
3.17887
3.04793
2.91933
2.79239
2.66654
2.54136
2.41655
2.29188
2.16724
2.04255
1.91779
1.79298
1.66815
1.54332
1.41854
1.29386
1.16932
1.04495
0.920802
0.796893
0.673251
0.549866
0.426863
0.303787
0.182157
0.055853
5.17116
4.68495
4.32436
4.1102
3.92687
3.75681
3.60127
3.4557
3.31638
3.18157
3.05013
2.92114
2.79389
2.6678
2.54245
2.41753
2.29282
2.16817
2.04351
1.9188
1.79404
1.66926
1.54448
1.41976
1.29512
1.17062
1.04629
0.922166
0.798279
0.674645
0.551273
0.428223
0.305508
0.183367
0.0656767
5.44272
4.54841
4.29118
4.09191
3.91211
3.74736
3.59469
3.45042
3.31197
3.17781
3.04686
2.91825
2.79129
2.66544
2.54028
2.4155
2.29089
2.16632
2.04171
1.91704
1.79231
1.66755
1.5428
1.41808
1.29346
1.16897
1.04464
0.920524
0.796637
0.673005
0.549621
0.4266
0.303698
0.181749
0.0593072
5.43364
4.55727
4.29046
4.09308
3.9122
3.74762
3.59511
3.45084
3.31239
3.17824
3.04731
2.91874
2.79182
2.666
2.54086
2.41609
2.29147
2.16687
2.04223
1.91752
1.79275
1.66795
1.54315
1.41839
1.29373
1.16921
1.04485
0.920711
0.796809
0.673171
0.549789
0.426779
0.303753
0.182031
0.0568417
5.57783
4.50562
4.27879
4.08502
3.90614
3.74358
3.59228
3.4488
3.31097
3.17734
3.04686
2.91867
2.79208
2.66651
2.54154
2.41686
2.29227
2.16766
2.04298
1.91821
1.79338
1.66851
1.54364
1.41883
1.29412
1.16955
1.04515
0.920979
0.797049
0.673392
0.549979
0.426969
0.303715
0.182418
0.0539465
5.57769
4.50563
4.2788
4.08502
3.90614
3.74358
3.59228
3.4488
3.31097
3.17734
3.04686
2.91867
2.79208
2.66651
2.54154
2.41686
2.29227
2.16766
2.04298
1.91821
1.79338
1.66851
1.54364
1.41883
1.29412
1.16955
1.04516
0.920973
0.797022
0.67334
0.549895
0.426903
0.303669
0.18249
0.05405
5.4844
4.54155
4.28527
4.09019
3.90974
3.74611
3.59416
3.45021
3.312
3.17804
3.04727
2.91884
2.79204
2.66631
2.54123
2.41648
2.29186
2.16725
2.04258
1.91784
1.79303
1.66819
1.54336
1.41858
1.29389
1.16934
1.04497
0.920809
0.796893
0.673248
0.549857
0.426861
0.303712
0.182255
0.0548831
5.39206
4.56271
4.29732
4.09535
3.91478
3.74922
3.59603
3.45144
3.31276
3.17842
3.04733
2.9186
2.79156
2.66563
2.54042
2.4156
2.29097
2.16638
2.04176
1.91708
1.79235
1.66759
1.54284
1.41813
1.2935
1.16901
1.04469
0.92058
0.796697
0.673072
0.549704
0.426688
0.303883
0.181764
0.0608659
5.33208
4.60108
4.30141
4.09886
3.91708
3.75089
3.59752
3.45286
3.31411
3.17969
3.04851
2.9197
2.79257
2.66658
2.54129
2.41641
2.29172
2.16707
2.0424
1.91768
1.79291
1.66811
1.54332
1.41858
1.29393
1.16941
1.04507
0.920931
0.797031
0.673389
0.549997
0.426955
0.304069
0.182001
0.0602748
5.50385
4.53101
4.28729
4.09009
3.91062
3.74635
3.59398
3.44986
3.31154
3.17748
3.04661
2.91809
2.7912
2.66542
2.5403
2.41556
2.29098
2.16642
2.04182
1.91715
1.79241
1.66764
1.54287
1.41815
1.29351
1.16901
1.04467
0.920547
0.796655
0.673022
0.549645
0.426631
0.303686
0.181838
0.0581014
5.42361
4.55594
4.29215
4.09351
3.91285
3.74799
3.59529
3.45093
3.31242
3.17822
3.04724
2.91862
2.79167
2.66582
2.54066
2.41588
2.29126
2.16668
2.04205
1.91736
1.79261
1.66783
1.54305
1.41831
1.29366
1.16915
1.04481
0.920678
0.796782
0.673149
0.549771
0.426755
0.303796
0.181949
0.05808
5.46244
4.54258
4.28871
4.09072
3.91099
3.74661
3.59418
3.45004
3.3117
3.17763
3.04675
2.9182
2.7913
2.66549
2.54037
2.41561
2.29102
2.16645
2.04185
1.91717
1.79244
1.66767
1.5429
1.41817
1.29354
1.16904
1.0447
0.920574
0.796678
0.673038
0.549643
0.426618
0.303642
0.181814
0.0581215
5.53447
4.52906
4.28446
4.08821
3.90902
3.74528
3.59327
3.44938
3.31122
3.1773
3.04654
2.91811
2.7913
2.66556
2.54049
2.41578
2.29121
2.16665
2.04204
1.91736
1.79261
1.66782
1.54303
1.41829
1.29364
1.16912
1.04477
0.920632
0.796723
0.673072
0.54966
0.426633
0.303576
0.181902
0.0568362
5.57284
4.5194
4.28152
4.08653
3.9075
3.74436
3.59273
3.44906
3.31108
3.17731
3.0467
2.91839
2.7917
2.66606
2.54105
2.41637
2.2918
2.16723
2.0426
1.91788
1.79308
1.66825
1.54343
1.41865
1.29396
1.16941
1.04504
0.920869
0.796938
0.673269
0.549835
0.426808
0.30364
0.182188
0.0553772
5.43655
4.5512
4.29453
4.09303
3.91338
3.74823
3.59526
3.45082
3.31227
3.17801
3.04698
2.9183
2.79128
2.66538
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79218
1.66743
1.54269
1.41799
1.29337
1.16889
1.04458
0.920467
0.796585
0.672963
0.549605
0.426609
0.303856
0.181697
0.0614506
5.32403
4.59809
4.30353
4.09926
3.91776
3.75139
3.59781
3.45301
3.31416
3.17967
3.04843
2.91957
2.79241
2.66639
2.54109
2.4162
2.29151
2.16687
2.04221
1.9175
1.79274
1.66796
1.54319
1.41846
1.29382
1.16932
1.04499
0.920864
0.796974
0.673338
0.549954
0.426912
0.304106
0.181913
0.0617783
5.4567
4.54994
4.29451
4.09303
3.91336
3.74821
3.59524
3.45081
3.31225
3.178
3.04696
2.91828
2.79126
2.66537
2.54017
2.41536
2.29074
2.16616
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04456
0.920449
0.796566
0.672942
0.549584
0.426589
0.303842
0.181695
0.0613845
5.4326
4.54909
4.29448
4.09323
3.91339
3.74822
3.59524
3.45081
3.31225
3.178
3.04697
2.9183
2.79129
2.6654
2.54021
2.41541
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.2934
1.16892
1.04461
0.920496
0.796613
0.672987
0.549626
0.426626
0.303859
0.181737
0.0611103
5.49163
4.53191
4.28597
4.08962
3.90987
3.74593
3.59376
3.44974
3.31149
3.1775
3.0467
2.91824
2.79142
2.66569
2.54061
2.41589
2.29132
2.16676
2.04215
1.91746
1.7927
1.66791
1.54311
1.41837
1.29371
1.16918
1.04483
0.920683
0.796779
0.673139
0.549754
0.426742
0.303701
0.182016
0.0566481
5.43787
4.55075
4.29409
4.09282
3.91322
3.74813
3.59519
3.45077
3.31222
3.17798
3.04695
2.91828
2.79126
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04456
0.920449
0.796568
0.672946
0.549587
0.426589
0.303824
0.181678
0.0612885
5.40156
4.55926
4.29689
4.09459
3.91442
3.74895
3.59579
3.45123
3.31259
3.17827
3.04719
2.91847
2.79142
2.6655
2.54029
2.41548
2.29084
2.16626
2.04165
1.91698
1.79225
1.6675
1.54275
1.41804
1.29343
1.16895
1.04463
0.92052
0.796638
0.673014
0.549652
0.426645
0.303883
0.181706
0.061506
5.31383
4.60882
4.30374
4.10002
3.91805
3.75151
3.59795
3.45321
3.31442
3.17998
3.04878
2.91995
2.7928
2.66678
2.54148
2.41658
2.29187
2.16721
2.04254
1.91781
1.79303
1.66823
1.54343
1.41869
1.29404
1.16952
1.04517
0.921033
0.797131
0.673485
0.55009
0.42704
0.304181
0.182048
0.0610158
5.40158
4.56332
4.29493
4.09442
3.91403
3.7488
3.59581
3.45132
3.31271
3.17842
3.04736
2.91867
2.79164
2.66574
2.54054
2.41573
2.2911
2.16651
2.04188
1.9172
1.79247
1.6677
1.54294
1.41822
1.29359
1.1691
1.04477
0.920647
0.796758
0.673125
0.549742
0.426716
0.303834
0.181818
0.0598797
5.4733
4.54399
4.29237
4.09223
3.91256
3.74765
3.59484
3.45049
3.312
3.1778
3.04682
2.91818
2.79121
2.66534
2.54017
2.41538
2.29077
2.1662
2.04159
1.91693
1.7922
1.66745
1.5427
1.41799
1.29338
1.16889
1.04458
0.920463
0.79658
0.672954
0.54959
0.426586
0.303779
0.18173
0.0602954
5.48375
4.53326
4.28747
4.09025
3.91056
3.74632
3.59397
3.44985
3.31153
3.17748
3.04663
2.91811
2.79124
2.66546
2.54036
2.41562
2.29104
2.16648
2.04187
1.9172
1.79246
1.66768
1.54291
1.41818
1.29354
1.16903
1.04469
0.920556
0.796662
0.673029
0.54965
0.426637
0.303665
0.18186
0.0576645
5.36031
4.57718
4.30009
4.0968
3.916
3.75013
3.59674
3.45204
3.31327
3.17885
3.04769
2.91891
2.79181
2.66584
2.54059
2.41574
2.29108
2.16647
2.04184
1.91716
1.79242
1.66765
1.54289
1.41818
1.29356
1.16907
1.04475
0.920634
0.796751
0.673123
0.549751
0.426726
0.303941
0.18175
0.0616169
5.41621
4.55425
4.2958
4.09388
3.91392
3.74859
3.59552
3.45102
3.31242
3.17813
3.04707
2.91838
2.79135
2.66544
2.54024
2.41543
2.2908
2.16622
2.04161
1.91695
1.79222
1.66747
1.54272
1.41802
1.29341
1.16893
1.04461
0.920499
0.796617
0.672993
0.549633
0.426631
0.303876
0.181713
0.0614449
5.56455
4.52165
4.28209
4.08686
3.90781
3.74455
3.59284
3.44913
3.31111
3.1773
3.04666
2.91832
2.7916
2.66594
2.54092
2.41623
2.29167
2.1671
2.04247
1.91776
1.79298
1.66816
1.54334
1.41857
1.29389
1.16935
1.04498
0.920818
0.796891
0.673226
0.549796
0.426768
0.303624
0.182121
0.0556823
5.31641
4.61736
4.30233
4.10036
3.91775
3.75116
3.59773
3.45307
3.31436
3.18
3.04888
2.92013
2.79304
2.66706
2.54178
2.41689
2.29218
2.1675
2.04281
1.91805
1.79325
1.66842
1.5436
1.41883
1.29415
1.16961
1.04525
0.921094
0.79718
0.673528
0.550126
0.42708
0.30414
0.182139
0.0591442
5.3725
4.57517
4.29822
4.09669
3.91555
3.74986
3.59664
3.452
3.31327
3.17888
3.04775
2.919
2.79193
2.666
2.54076
2.41593
2.29128
2.16667
2.04203
1.91734
1.79259
1.66782
1.54304
1.41832
1.29368
1.16918
1.04485
0.920721
0.796832
0.673202
0.549827
0.4268
0.303936
0.181885
0.0600576
5.46833
4.55092
4.28629
4.09124
3.91037
3.74662
3.59465
3.45067
3.31241
3.17841
3.04759
2.91911
2.79226
2.66648
2.54136
2.41658
2.29193
2.16729
2.04261
1.91785
1.79303
1.66818
1.54335
1.41856
1.29387
1.16932
1.04495
0.920792
0.796877
0.673234
0.549845
0.426853
0.303707
0.182245
0.054775
5.4714
4.54012
4.28805
4.0904
3.91071
3.74643
3.59407
3.44997
3.31166
3.17761
3.04675
2.91822
2.79133
2.66554
2.54043
2.41568
2.29109
2.16653
2.04192
1.91725
1.79251
1.66773
1.54296
1.41823
1.2936
1.16909
1.04475
0.920618
0.796719
0.673076
0.549676
0.42665
0.303654
0.18186
0.0578481
5.37183
4.58263
4.29684
4.0963
3.91506
3.74954
3.5965
3.45197
3.31332
3.17898
3.04788
2.91915
2.79209
2.66616
2.54092
2.41609
2.29143
2.16681
2.04216
1.91745
1.79269
1.6679
1.54312
1.41838
1.29374
1.16923
1.04489
0.920752
0.796855
0.673215
0.549824
0.426793
0.303862
0.181903
0.0591454
5.26594
4.63331
4.3107
4.10379
3.92089
3.75321
3.59904
3.45402
3.31507
3.18052
3.04926
2.92039
2.79322
2.66717
2.54184
2.41691
2.29218
2.1675
2.0428
1.91806
1.79326
1.66845
1.54365
1.41889
1.29423
1.16971
1.04536
0.921216
0.797314
0.673667
0.550276
0.427216
0.304408
0.182193
0.0622465
5.20735
4.66777
4.31844
4.10803
3.92451
3.75533
3.60039
3.45504
3.31587
3.18117
3.04981
2.92089
2.79368
2.66763
2.54231
2.4174
2.2927
2.16806
2.0434
1.91869
1.79393
1.66914
1.54436
1.41962
1.29497
1.17045
1.04609
0.921945
0.798033
0.674376
0.550978
0.427907
0.305119
0.182907
0.0633748
5.49084
4.5424
4.28935
4.09066
3.91132
3.74683
3.5943
3.45012
3.31174
3.17763
3.0467
2.91811
2.79117
2.66533
2.54018
2.41541
2.2908
2.16623
2.04163
1.91696
1.79223
1.66748
1.54272
1.41801
1.29339
1.1689
1.04458
0.920462
0.796576
0.672945
0.549563
0.426543
0.303645
0.181701
0.0592546
5.55157
4.51728
4.28134
4.08669
3.90745
3.74436
3.59274
3.44907
3.31108
3.17731
3.0467
2.91841
2.79173
2.66611
2.54111
2.41643
2.29186
2.16729
2.04265
1.91792
1.79313
1.66829
1.54346
1.41867
1.29398
1.16942
1.04504
0.920879
0.796958
0.673306
0.549906
0.426895
0.303735
0.182259
0.0550413
5.43531
4.5534
4.2907
4.09239
3.91212
3.74748
3.5949
3.45064
3.3122
3.17805
3.04711
2.91852
2.79158
2.66575
2.5406
2.41583
2.29122
2.16664
2.04201
1.91733
1.79258
1.6678
1.54302
1.41829
1.29364
1.16913
1.04479
0.920659
0.79676
0.673119
0.549721
0.426697
0.303706
0.181892
0.0579919
5.40309
4.55976
4.29626
4.09428
3.91416
3.74878
3.59567
3.45114
3.31252
3.17822
3.04715
2.91844
2.79141
2.66549
2.54029
2.41547
2.29084
2.16626
2.04164
1.91697
1.79224
1.66749
1.54274
1.41803
1.29342
1.16893
1.04462
0.920507
0.796625
0.673001
0.549636
0.426625
0.303841
0.18169
0.0612158
5.50274
4.53011
4.28657
4.08973
3.91023
3.7461
3.59382
3.44975
3.31145
3.17742
3.04659
2.91809
2.79123
2.66546
2.54036
2.41563
2.29105
2.1665
2.04189
1.91722
1.79248
1.66771
1.54293
1.4182
1.29356
1.16905
1.04471
0.920577
0.796681
0.673047
0.549667
0.426652
0.303677
0.181875
0.0576265
5.44857
4.546
4.29339
4.09275
3.91301
3.74795
3.59506
3.45066
3.31213
3.1779
3.04689
2.91824
2.79124
2.66536
2.54017
2.41538
2.29076
2.16619
2.04158
1.91692
1.79219
1.66744
1.54269
1.41799
1.29337
1.16889
1.04457
0.920462
0.796579
0.672953
0.549592
0.426591
0.303809
0.181718
0.0607587
5.5561
4.51262
4.28018
4.08599
3.90691
3.74404
3.59255
3.44896
3.31103
3.17732
3.04676
2.91851
2.79186
2.66625
2.54126
2.41658
2.292
2.16741
2.04275
1.918
1.79319
1.66834
1.54349
1.4187
1.294
1.16944
1.04506
0.920886
0.796949
0.673276
0.549836
0.426823
0.303607
0.182298
0.0545649
5.36772
4.5765
4.29884
4.0969
3.91576
3.74998
3.59671
3.45204
3.31329
3.17889
3.04775
2.91899
2.79191
2.66596
2.54072
2.41588
2.29123
2.16662
2.04199
1.91729
1.79255
1.66777
1.543
1.41828
1.29365
1.16914
1.04482
0.920693
0.796806
0.673176
0.549802
0.426776
0.303926
0.181848
0.060343
5.31908
4.61817
4.30187
4.10086
3.91786
3.75122
3.59781
3.45313
3.31442
3.18007
3.04898
2.92027
2.79322
2.66728
2.54203
2.41716
2.29245
2.16777
2.04306
1.91829
1.79347
1.66861
1.54377
1.41898
1.29428
1.16972
1.04534
0.921178
0.797256
0.673599
0.550203
0.427159
0.304215
0.182229
0.0585661
5.26767
4.63211
4.31008
4.10335
3.9207
3.75311
3.59898
3.454
3.31507
3.18054
3.04929
2.92043
2.79325
2.6672
2.54188
2.41696
2.29223
2.16756
2.04287
1.91813
1.79334
1.66854
1.54374
1.41899
1.29433
1.1698
1.04545
0.921313
0.797408
0.673759
0.550362
0.427301
0.304491
0.182275
0.0624497
5.49727
4.5404
4.28852
4.09029
3.91097
3.74659
3.59414
3.45
3.31165
3.17756
3.04666
2.91809
2.79116
2.66533
2.54019
2.41542
2.29082
2.16626
2.04165
1.91698
1.79225
1.66749
1.54273
1.41802
1.2934
1.16891
1.04458
0.920463
0.796575
0.672942
0.549556
0.426535
0.303612
0.181706
0.0588514
5.52804
4.52361
4.28238
4.08769
3.90788
3.7449
3.59331
3.44959
3.31156
3.17776
3.04713
2.91882
2.79213
2.66648
2.54145
2.41672
2.29211
2.16749
2.04281
1.91804
1.79322
1.66835
1.5435
1.4187
1.294
1.16943
1.04504
0.920876
0.79695
0.673302
0.549905
0.426923
0.303696
0.182417
0.0538758
5.52764
4.52383
4.28241
4.0877
3.90789
3.74491
3.59332
3.44961
3.31158
3.17778
3.04715
2.91884
2.79214
2.66649
2.54145
2.41673
2.29212
2.1675
2.04281
1.91805
1.79322
1.66835
1.5435
1.4187
1.294
1.16944
1.04506
0.920882
0.796945
0.673274
0.54983
0.426822
0.303549
0.182321
0.0538827
5.49384
4.54197
4.28492
4.08998
3.90942
3.74607
3.59431
3.45046
3.31231
3.17839
3.04765
2.91922
2.79241
2.66667
2.54155
2.41677
2.29211
2.16747
2.04276
1.91799
1.79315
1.66829
1.54344
1.41864
1.29395
1.16939
1.04501
0.920845
0.796916
0.673254
0.54982
0.426806
0.303546
0.182229
0.0540588
5.30846
4.6267
4.30275
4.10129
3.91827
3.75143
3.59794
3.45325
3.31453
3.18017
3.04906
2.92034
2.79328
2.66735
2.54211
2.41724
2.29255
2.16789
2.04319
1.91843
1.79361
1.66875
1.54391
1.41911
1.29441
1.16985
1.04546
0.921292
0.797362
0.673697
0.550283
0.427229
0.304262
0.182276
0.0585559
5.24738
4.64856
4.31188
4.10491
3.92187
3.7537
3.59934
3.45426
3.31527
3.1807
3.04944
2.92059
2.79345
2.66744
2.54215
2.41727
2.29257
2.16791
2.04323
1.91848
1.79369
1.66886
1.54405
1.41928
1.29461
1.17007
1.04571
0.921553
0.797635
0.673975
0.55057
0.427501
0.304662
0.182482
0.0619253
5.50042
4.53946
4.28473
4.08963
3.90913
3.74595
3.59427
3.45047
3.31234
3.17844
3.0477
2.91928
2.79247
2.66673
2.54161
2.41682
2.29216
2.1675
2.04279
1.91801
1.79317
1.6683
1.54344
1.41864
1.29394
1.16937
1.04499
0.92082
0.796896
0.673252
0.549862
0.426892
0.30368
0.182398
0.0537489
5.50066
4.5393
4.28471
4.08962
3.90912
3.74594
3.59426
3.45046
3.31233
3.17843
3.04769
2.91927
2.79247
2.66672
2.54161
2.41682
2.29216
2.1675
2.04279
1.91801
1.79317
1.6683
1.54344
1.41864
1.29394
1.16938
1.045
0.920831
0.796899
0.673233
0.54979
0.426777
0.303489
0.182229
0.0537172
5.46271
4.55001
4.2934
4.09243
3.91291
3.74791
3.59504
3.45066
3.31214
3.17791
3.0469
2.91824
2.79124
2.66535
2.54016
2.41536
2.29074
2.16616
2.04156
1.91689
1.79217
1.66741
1.54267
1.41796
1.29335
1.16887
1.04456
0.920444
0.796563
0.67294
0.549578
0.426576
0.303796
0.181677
0.0610378
5.46239
4.54572
4.29324
4.0926
3.91299
3.74795
3.59505
3.45066
3.31214
3.17791
3.04689
2.91823
2.79123
2.66535
2.54016
2.41536
2.29074
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04456
0.920446
0.796564
0.672939
0.549579
0.426581
0.303812
0.181707
0.0609482
5.1526
4.69425
4.32744
4.11126
3.92815
3.75761
3.60175
3.45606
3.31667
3.1818
3.05031
2.9213
2.79402
2.66791
2.54255
2.41762
2.2929
2.16825
2.04359
1.91888
1.79412
1.66934
1.54457
1.41985
1.29522
1.17072
1.04639
0.922275
0.798393
0.674767
0.551406
0.428371
0.305698
0.183655
0.0671771
5.47556
4.53869
4.28742
4.09015
3.91044
3.74626
3.59397
3.4499
3.31161
3.17759
3.04675
2.91824
2.79137
2.66559
2.54049
2.41575
2.29116
2.16659
2.04198
1.9173
1.79256
1.66778
1.543
1.41826
1.29362
1.16911
1.04476
0.920628
0.796726
0.673081
0.549677
0.426652
0.303629
0.181888
0.0574289
5.33114
4.60435
4.30165
4.09962
3.91724
3.75091
3.59753
3.45284
3.31409
3.17969
3.04853
2.91975
2.79264
2.66666
2.54139
2.41651
2.29181
2.16716
2.04248
1.91775
1.79297
1.66815
1.54335
1.4186
1.29393
1.1694
1.04505
0.920907
0.797004
0.673362
0.549977
0.42694
0.304035
0.182013
0.0594073
5.50709
4.52906
4.28439
4.0883
3.90896
3.74526
3.59328
3.4494
3.31126
3.17735
3.04662
2.9182
2.7914
2.66569
2.54063
2.41592
2.29135
2.16679
2.04217
1.91748
1.79273
1.66793
1.54314
1.41839
1.29373
1.1692
1.04485
0.920699
0.796786
0.673131
0.549715
0.426688
0.303606
0.181977
0.0565162
5.35284
4.59792
4.29823
4.09782
3.91587
3.75006
3.59699
3.45248
3.31385
3.17952
3.04842
2.91968
2.7926
2.66664
2.54138
2.41652
2.29183
2.16718
2.0425
1.91777
1.79298
1.66816
1.54335
1.41859
1.29393
1.1694
1.04504
0.920894
0.796985
0.673338
0.549939
0.426903
0.303938
0.182009
0.0585797
5.4785
4.5432
4.28589
4.09053
3.91006
3.74628
3.59424
3.45025
3.312
3.17802
3.04723
2.91879
2.79198
2.66625
2.54117
2.41643
2.29182
2.16722
2.04256
1.91783
1.79303
1.6682
1.54337
1.4186
1.29391
1.16937
1.045
0.920838
0.796923
0.673277
0.549885
0.426884
0.303754
0.182248
0.0552391
5.48756
4.5323
4.28705
4.09011
3.91042
3.74626
3.59395
3.44986
3.31155
3.17752
3.04668
2.91818
2.79132
2.66556
2.54046
2.41573
2.29115
2.1666
2.04199
1.91731
1.79257
1.66779
1.54301
1.41828
1.29363
1.16912
1.04477
0.920637
0.796739
0.673102
0.54972
0.426705
0.303714
0.181937
0.0574446
5.47098
4.53733
4.28818
4.0909
3.91094
3.74663
3.59423
3.45007
3.31172
3.17764
3.04678
2.91825
2.79138
2.6656
2.54049
2.41575
2.29117
2.1666
2.04199
1.91731
1.79256
1.66778
1.543
1.41826
1.29362
1.1691
1.04476
0.920622
0.796725
0.673089
0.549709
0.426696
0.303704
0.181931
0.0574257
5.51243
4.52742
4.28507
4.08892
3.90948
3.74564
3.59354
3.44956
3.31134
3.17738
3.0466
2.91815
2.79134
2.66561
2.54054
2.41583
2.29126
2.16671
2.0421
1.91741
1.79266
1.66787
1.54309
1.41834
1.29368
1.16916
1.04481
0.920666
0.796762
0.673123
0.549737
0.426723
0.303693
0.181984
0.0568101
5.43093
4.55177
4.29299
4.09266
3.91282
3.74785
3.59502
3.45065
3.31215
3.17794
3.04694
2.91829
2.79131
2.66543
2.54025
2.41546
2.29084
2.16627
2.04166
1.91699
1.79226
1.66751
1.54276
1.41805
1.29343
1.16894
1.04463
0.920511
0.796628
0.673
0.549625
0.426609
0.303763
0.181721
0.060192
5.41282
4.55467
4.29565
4.09418
3.91394
3.7486
3.59554
3.45103
3.31242
3.17814
3.04709
2.9184
2.79138
2.66548
2.54028
2.41548
2.29085
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29343
1.16895
1.04463
0.920518
0.796636
0.673011
0.549646
0.426637
0.30384
0.181734
0.0607791
5.57366
4.51702
4.28079
4.08615
3.90721
3.74417
3.59258
3.44894
3.31097
3.17722
3.04661
2.91831
2.79162
2.66598
2.54097
2.41628
2.29171
2.16714
2.0425
1.91777
1.79298
1.66815
1.54332
1.41854
1.29386
1.16931
1.04494
0.920775
0.796847
0.673181
0.549749
0.426727
0.303556
0.182125
0.0551929
5.4574
4.5505
4.29438
4.09292
3.91335
3.74822
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54268
1.41797
1.29336
1.16888
1.04457
0.920457
0.796575
0.672951
0.549595
0.4266
0.303856
0.181694
0.0615089
5.48269
4.5461
4.29102
4.09138
3.91192
3.74723
3.59458
3.45033
3.3119
3.17775
3.04679
2.91818
2.79122
2.66537
2.54021
2.41543
2.29082
2.16625
2.04164
1.91698
1.79225
1.6675
1.54274
1.41804
1.29342
1.16893
1.04461
0.920499
0.796614
0.672985
0.549607
0.42659
0.303727
0.181727
0.0598506
5.4783
4.5424
4.29175
4.09194
3.9123
3.74747
3.59471
3.45039
3.31192
3.17773
3.04676
2.91814
2.79117
2.66531
2.54014
2.41535
2.29074
2.16617
2.04157
1.9169
1.79218
1.66742
1.54267
1.41796
1.29334
1.16886
1.04454
0.920427
0.796545
0.67292
0.549555
0.426551
0.303728
0.181705
0.0600037
5.39468
4.56367
4.29633
4.09528
3.91454
3.7491
3.596
3.45144
3.31278
3.17846
3.04738
2.91867
2.79164
2.66573
2.54053
2.41571
2.29108
2.16649
2.04187
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04475
0.920626
0.79674
0.673112
0.54974
0.42672
0.303864
0.181824
0.0599893
5.40082
4.56621
4.29423
4.09435
3.91375
3.74861
3.59572
3.45128
3.31271
3.17844
3.04741
2.91873
2.79172
2.66583
2.54063
2.41583
2.29119
2.1666
2.04197
1.91728
1.79254
1.66776
1.54299
1.41827
1.29363
1.16913
1.04479
0.920665
0.796772
0.673136
0.549747
0.426721
0.303795
0.181854
0.0591291
5.48455
4.54421
4.2902
4.09103
3.91166
3.74707
3.59446
3.45024
3.31183
3.17768
3.04674
2.91813
2.79118
2.66532
2.54016
2.41538
2.29077
2.1662
2.04159
1.91692
1.7922
1.66744
1.54269
1.41798
1.29336
1.16887
1.04456
0.920442
0.796559
0.67293
0.549552
0.426535
0.303663
0.181682
0.0596433
5.33027
4.59379
4.30305
4.09886
3.91749
3.7512
3.59764
3.45284
3.314
3.17951
3.04828
2.91943
2.79228
2.66627
2.54098
2.4161
2.29141
2.16678
2.04213
1.91742
1.79267
1.66789
1.54312
1.4184
1.29376
1.16926
1.04494
0.920815
0.796926
0.673292
0.549911
0.426871
0.304073
0.181873
0.0618081
5.43182
4.55168
4.29329
4.09277
3.91294
3.74793
3.59507
3.45069
3.31217
3.17795
3.04694
2.91829
2.7913
2.66542
2.54024
2.41544
2.29082
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41803
1.29341
1.16892
1.04461
0.920494
0.796611
0.672984
0.549611
0.426596
0.30376
0.181704
0.0603383
5.40778
4.57992
4.29182
4.09533
3.9133
3.7485
3.59606
3.45186
3.31345
3.1793
3.04835
2.91973
2.79276
2.66687
2.54166
2.41681
2.29211
2.16744
2.04273
1.91796
1.79313
1.66828
1.54344
1.41865
1.29396
1.16941
1.04504
0.92088
0.796966
0.673321
0.549934
0.426928
0.303857
0.182198
0.0559109
5.48698
4.53406
4.2861
4.08987
3.90995
3.74601
3.59385
3.44982
3.31156
3.17757
3.04678
2.91832
2.79151
2.66578
2.5407
2.41598
2.29141
2.16684
2.04222
1.91752
1.79276
1.66796
1.54316
1.4184
1.29374
1.16921
1.04485
0.920707
0.796801
0.67316
0.549774
0.426764
0.303703
0.182054
0.0563499
5.41483
4.55502
4.29483
4.09417
3.91375
3.74849
3.59549
3.45101
3.31241
3.17814
3.04711
2.91844
2.79143
2.66555
2.54036
2.41556
2.29094
2.16636
2.04175
1.91708
1.79234
1.66758
1.54282
1.41811
1.29348
1.16899
1.04467
0.920549
0.796665
0.673038
0.549668
0.426654
0.303804
0.181774
0.0599214
5.45915
4.55054
4.2938
4.0926
3.91307
3.74803
3.59512
3.45072
3.31219
3.17795
3.04693
2.91826
2.79125
2.66536
2.54016
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29335
1.16887
1.04455
0.920442
0.796561
0.672939
0.54958
0.426581
0.303815
0.181677
0.0612282
5.45757
4.55028
4.29438
4.09293
3.91336
3.74823
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04156
1.9169
1.79218
1.66743
1.54268
1.41798
1.29337
1.16888
1.04457
0.920459
0.796577
0.672954
0.549597
0.426602
0.303859
0.181698
0.0615121
5.40084
4.58107
4.29284
4.09572
3.91374
3.74879
3.59625
3.45198
3.31351
3.17931
3.04832
2.91968
2.79268
2.66679
2.54157
2.41672
2.29202
2.16735
2.04265
1.91788
1.79306
1.66821
1.54338
1.4186
1.29392
1.16937
1.04501
0.920854
0.796944
0.673302
0.549918
0.426908
0.303862
0.182154
0.0563679
5.58252
4.50435
4.27832
4.08477
3.906
3.74349
3.59223
3.44878
3.31097
3.17735
3.04688
2.9187
2.79212
2.66655
2.54158
2.4169
2.29231
2.1677
2.04302
1.91825
1.79341
1.66854
1.54367
1.41886
1.29414
1.16957
1.04517
0.920999
0.797068
0.67341
0.549995
0.426982
0.303725
0.182426
0.0539533
5.58222
4.50429
4.27831
4.08477
3.906
3.7435
3.59224
3.44879
3.31098
3.17736
3.04689
2.91871
2.79212
2.66655
2.54158
2.4169
2.29232
2.16771
2.04302
1.91825
1.79341
1.66854
1.54367
1.41886
1.29415
1.16958
1.04518
0.920994
0.797042
0.673359
0.549913
0.426922
0.303689
0.182511
0.0540642
5.42312
4.57473
4.29016
4.09441
3.91254
3.74804
3.59578
3.45168
3.31335
3.17928
3.04837
2.91979
2.79283
2.66695
2.54173
2.41687
2.29216
2.16748
2.04276
1.91797
1.79314
1.66828
1.54343
1.41864
1.29395
1.1694
1.04502
0.920866
0.796951
0.673306
0.549919
0.426918
0.30382
0.182227
0.0554219
5.27281
4.62778
4.30991
4.1031
3.92047
3.753
3.59891
3.45393
3.315
3.18046
3.0492
2.92033
2.79314
2.66709
2.54176
2.41683
2.2921
2.16743
2.04274
1.91801
1.79322
1.66841
1.54362
1.41887
1.29421
1.16969
1.04534
0.921208
0.797308
0.673663
0.550271
0.427213
0.304415
0.182187
0.0625127
5.54333
4.5168
4.2813
4.08679
3.90727
3.74441
3.5929
3.44926
3.31129
3.17755
3.04698
2.91872
2.79207
2.66645
2.54144
2.41674
2.29215
2.16754
2.04286
1.91809
1.79326
1.6684
1.54354
1.41874
1.29404
1.16947
1.04509
0.920912
0.79697
0.673296
0.549851
0.426848
0.303586
0.182375
0.0539538
5.54479
4.51621
4.28118
4.0867
3.90722
3.74436
3.59286
3.44923
3.31127
3.17753
3.04696
2.91871
2.79206
2.66645
2.54144
2.41674
2.29215
2.16754
2.04286
1.9181
1.79327
1.66841
1.54355
1.41875
1.29404
1.16947
1.04508
0.920913
0.796986
0.673335
0.549932
0.42694
0.303704
0.182421
0.0539196
5.15051
4.69484
4.32802
4.11148
3.9283
3.75771
3.60182
3.45611
3.31671
3.18182
3.05033
2.92131
2.79403
2.66792
2.54256
2.41763
2.29291
2.16826
2.04359
1.91888
1.79413
1.66935
1.54458
1.41985
1.29522
1.17073
1.0464
0.922282
0.798401
0.674775
0.551416
0.428381
0.305713
0.183676
0.0674189
5.24329
4.65354
4.31241
4.10589
3.92232
3.75393
3.59953
3.4544
3.31538
3.1808
3.04953
2.92068
2.79353
2.66752
2.54223
2.41735
2.29266
2.16803
2.04336
1.91865
1.79388
1.66908
1.54429
1.41954
1.29487
1.17033
1.04596
0.921794
0.797865
0.674193
0.550781
0.427704
0.304843
0.182664
0.0610331
5.52859
4.53092
4.2851
4.08862
3.90943
3.74557
3.59346
3.44953
3.31133
3.17738
3.04659
2.91812
2.79129
2.66554
2.54046
2.41573
2.29116
2.1666
2.042
1.91732
1.79258
1.6678
1.54302
1.41828
1.29364
1.16912
1.04478
0.92064
0.796735
0.673086
0.549677
0.426649
0.303616
0.181892
0.0572556
5.43826
4.55067
4.29465
4.09312
3.91345
3.74828
3.59529
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66743
1.54269
1.41799
1.29337
1.16889
1.04458
0.920469
0.796587
0.672963
0.549606
0.42661
0.303864
0.181701
0.0615056
5.46131
4.53994
4.28961
4.09161
3.91159
3.74705
3.59452
3.45029
3.31188
3.17776
3.04685
2.91829
2.79139
2.66558
2.54046
2.41571
2.29111
2.16655
2.04194
1.91727
1.79253
1.66776
1.54298
1.41826
1.29362
1.16911
1.04477
0.920639
0.796745
0.673111
0.549733
0.426718
0.303765
0.181921
0.0581199
5.52933
4.52244
4.28213
4.08748
3.90776
3.74472
3.59311
3.4494
3.31138
3.1776
3.04699
2.91869
2.79201
2.66638
2.54136
2.41666
2.29206
2.16746
2.04279
1.91803
1.79321
1.66835
1.5435
1.41871
1.294
1.16944
1.04506
0.920889
0.796965
0.673314
0.549915
0.426921
0.303707
0.182378
0.0541625
5.5276
4.5226
4.28213
4.08755
3.90786
3.74482
3.59321
3.44949
3.31146
3.17766
3.04704
2.91873
2.79204
2.66639
2.54136
2.41665
2.29205
2.16744
2.04277
1.91801
1.79319
1.66833
1.54348
1.41869
1.29399
1.16943
1.04505
0.92088
0.796945
0.673276
0.549837
0.426829
0.303579
0.182309
0.0541728
5.27468
4.62919
4.30893
4.10284
3.92028
3.75286
3.59884
3.45391
3.31502
3.18052
3.04928
2.92043
2.79326
2.66722
2.54189
2.41696
2.29223
2.16755
2.04286
1.91811
1.79332
1.66851
1.5437
1.41895
1.29429
1.16977
1.04542
0.921275
0.797369
0.67372
0.550323
0.427262
0.304441
0.182239
0.0621331
5.24453
4.65141
4.3124
4.10567
3.92219
3.75387
3.59948
3.45437
3.31535
3.18077
3.04951
2.92066
2.7935
2.6675
2.54221
2.41733
2.29264
2.168
2.04333
1.9186
1.79382
1.66901
1.54421
1.41945
1.29477
1.17023
1.04586
0.921702
0.797778
0.674112
0.550706
0.427633
0.304781
0.1826
0.0613371
5.29796
4.62802
4.30451
4.10174
3.91882
3.75179
3.59814
3.45338
3.3146
3.18019
3.04905
2.92029
2.7932
2.66724
2.54198
2.4171
2.29239
2.16773
2.04303
1.91827
1.79346
1.66862
1.54379
1.41901
1.29432
1.16977
1.0454
0.921238
0.797316
0.673656
0.550249
0.427195
0.304265
0.182228
0.0593875
5.47506
4.54699
4.29151
4.0916
3.91216
3.7474
3.59469
3.45041
3.31196
3.17779
3.04682
2.91819
2.79122
2.66536
2.54019
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.2934
1.16891
1.04459
0.920481
0.796598
0.672971
0.549597
0.426583
0.303743
0.18171
0.0601781
5.39185
4.57671
4.2944
4.09576
3.91422
3.74904
3.59626
3.45184
3.31327
3.17901
3.04797
2.91929
2.79228
2.66638
2.54117
2.41634
2.29168
2.16705
2.04239
1.91766
1.79288
1.66807
1.54326
1.4185
1.29384
1.16931
1.04496
0.920814
0.796911
0.673272
0.54989
0.426873
0.303887
0.182062
0.0576467
5.36448
4.57562
4.2995
4.09641
3.91568
3.74988
3.59653
3.45186
3.31311
3.17872
3.04757
2.9188
2.79171
2.66576
2.54051
2.41567
2.29102
2.16642
2.04179
1.9171
1.79237
1.6676
1.54285
1.41814
1.29351
1.16902
1.04471
0.920591
0.796709
0.673083
0.549712
0.426689
0.3039
0.181721
0.0614845
5.30867
4.61462
4.30431
4.10058
3.91833
3.75162
3.598
3.45323
3.31441
3.17995
3.04873
2.9199
2.79275
2.66673
2.54142
2.41652
2.29181
2.16715
2.04247
1.91773
1.79295
1.66815
1.54335
1.41861
1.29395
1.16943
1.04509
0.920951
0.79705
0.673406
0.550013
0.426967
0.304099
0.18199
0.0606468
5.50869
4.52892
4.28409
4.08838
3.90879
3.74522
3.59332
3.44946
3.31134
3.17746
3.04675
2.91836
2.7916
2.66591
2.54086
2.41615
2.29158
2.167
2.04237
1.91766
1.79288
1.66807
1.54326
1.41849
1.29382
1.16928
1.04492
0.920761
0.796841
0.673182
0.549759
0.426737
0.3036
0.182083
0.0557571
5.48287
4.5415
4.29145
4.09185
3.9122
3.7474
3.59468
3.45037
3.31191
3.17773
3.04677
2.91816
2.7912
2.66535
2.54018
2.41541
2.2908
2.16623
2.04163
1.91696
1.79224
1.66748
1.54273
1.41802
1.2934
1.16891
1.0446
0.920481
0.796598
0.67297
0.549603
0.426596
0.303759
0.181753
0.0598471
5.53602
4.5268
4.28448
4.08846
3.90913
3.74542
3.59339
3.44946
3.31127
3.17733
3.04657
2.91813
2.79133
2.66562
2.54056
2.41585
2.29128
2.16673
2.04212
1.91743
1.79268
1.66789
1.54309
1.41835
1.29369
1.16916
1.04481
0.920662
0.796758
0.673117
0.549731
0.426718
0.303676
0.181985
0.0566202
5.44515
4.54907
4.29306
4.09239
3.91284
3.74786
3.595
3.45063
3.31212
3.1779
3.0469
2.91824
2.79125
2.66536
2.54018
2.41538
2.29076
2.16619
2.04158
1.91691
1.79219
1.66744
1.54269
1.41798
1.29337
1.16889
1.04457
0.920462
0.796581
0.672957
0.549592
0.426586
0.303793
0.18169
0.06087
5.41642
4.55379
4.2948
4.09403
3.9137
3.74844
3.59544
3.45095
3.31236
3.1781
3.04706
2.91839
2.79139
2.6655
2.54031
2.41552
2.29089
2.16632
2.0417
1.91703
1.7923
1.66754
1.54279
1.41807
1.29345
1.16896
1.04464
0.920524
0.79664
0.673014
0.549646
0.426633
0.303799
0.181751
0.0601247
5.45168
4.54456
4.29278
4.09257
3.91271
3.74774
3.59491
3.45055
3.31205
3.17785
3.04687
2.91824
2.79127
2.66541
2.54024
2.41546
2.29085
2.16629
2.04168
1.91702
1.7923
1.66754
1.54279
1.41808
1.29346
1.16898
1.04466
0.920543
0.796659
0.673031
0.549663
0.426655
0.30383
0.181794
0.0601527
5.31258
4.60357
4.3052
4.10019
3.91837
3.75176
3.59805
3.4532
3.31432
3.17979
3.04854
2.91967
2.79249
2.66646
2.54115
2.41626
2.29156
2.16691
2.04225
1.91754
1.79278
1.66799
1.54321
1.41848
1.29384
1.16934
1.045
0.92088
0.79699
0.673355
0.549973
0.42693
0.304133
0.181922
0.061973
5.30809
4.6067
4.30549
4.10041
3.91856
3.75189
3.59816
3.4533
3.31442
3.1799
3.04864
2.91977
2.79258
2.66655
2.54123
2.41633
2.29162
2.16698
2.04231
1.91759
1.79283
1.66804
1.54326
1.41853
1.29389
1.16938
1.04505
0.92092
0.797028
0.673391
0.550006
0.426959
0.30416
0.181949
0.0620418
5.48956
4.53483
4.28583
4.08941
3.90969
3.74581
3.5937
3.44973
3.31152
3.17756
3.04678
2.91833
2.79152
2.66578
2.54071
2.41598
2.2914
2.16683
2.04221
1.91751
1.79275
1.66795
1.54315
1.4184
1.29373
1.16921
1.04485
0.920706
0.796794
0.673141
0.549727
0.426703
0.303613
0.181999
0.0564359
5.61258
4.50377
4.27798
4.08451
3.90586
3.7434
3.59217
3.44874
3.31095
3.17734
3.04687
2.9187
2.79211
2.66654
2.54157
2.41689
2.2923
2.16769
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29413
1.16956
1.04517
0.920981
0.79703
0.673347
0.549901
0.426908
0.30368
0.182495
0.0541055
5.61071
4.50439
4.27815
4.08461
3.90591
3.74343
3.59218
3.44875
3.31094
3.17733
3.04686
2.91868
2.7921
2.66653
2.54156
2.41688
2.29229
2.16769
2.043
1.91824
1.7934
1.66852
1.54366
1.41885
1.29413
1.16956
1.04516
0.920989
0.797058
0.6734
0.549985
0.426969
0.303714
0.182403
0.0539928
5.59531
4.5033
4.27814
4.08464
3.90592
3.74343
3.59218
3.44874
3.31094
3.17732
3.04685
2.91868
2.79209
2.66653
2.54155
2.41687
2.29229
2.16768
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16956
1.04517
0.920978
0.797026
0.673344
0.549899
0.426909
0.303681
0.182502
0.0540824
5.59523
4.50355
4.27818
4.08467
3.90594
3.74344
3.59218
3.44874
3.31093
3.17732
3.04685
2.91867
2.79208
2.66652
2.54155
2.41687
2.29229
2.16768
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29412
1.16955
1.04516
0.920985
0.797055
0.673397
0.549982
0.426966
0.303711
0.182406
0.0539657
5.42517
4.57114
4.29015
4.09369
3.91226
3.74783
3.59556
3.45144
3.31309
3.17899
3.04808
2.9195
2.79256
2.6667
2.5415
2.41667
2.29198
2.16732
2.04262
1.91786
1.79304
1.66819
1.54336
1.41858
1.2939
1.16936
1.04499
0.920838
0.796922
0.673272
0.549859
0.426839
0.303709
0.18211
0.0557579
5.3778
4.59354
4.29495
4.09726
3.91481
3.74941
3.5967
3.45237
3.3139
3.17974
3.04878
2.92016
2.79317
2.66726
2.54201
2.41712
2.29239
2.16768
2.04293
1.91813
1.79328
1.66841
1.54355
1.41876
1.29406
1.1695
1.04513
0.920967
0.797051
0.673404
0.550015
0.426997
0.303969
0.182198
0.0567104
5.42147
4.55489
4.29328
4.09307
3.91306
3.74804
3.59519
3.4508
3.31227
3.17805
3.04704
2.91839
2.79139
2.66551
2.54033
2.41554
2.29092
2.16634
2.04173
1.91705
1.79232
1.66756
1.54281
1.4181
1.29348
1.16899
1.04466
0.920547
0.796662
0.673033
0.549654
0.426633
0.303765
0.18175
0.0599269
5.22251
4.65748
4.31653
4.10676
3.92351
3.75477
3.60002
3.45476
3.31565
3.18099
3.04966
2.92076
2.79356
2.66752
2.54221
2.41731
2.2926
2.16794
2.04326
1.91853
1.79374
1.66892
1.54411
1.41935
1.29468
1.17015
1.04579
0.921638
0.797727
0.674073
0.550677
0.42761
0.304832
0.182605
0.0635443
5.55883
4.52144
4.28221
4.08715
3.90801
3.7447
3.59294
3.44917
3.3111
3.17725
3.04657
2.91821
2.79147
2.66579
2.54076
2.41607
2.29151
2.16695
2.04233
1.91762
1.79285
1.66804
1.54322
1.41846
1.29378
1.16924
1.04488
0.920724
0.796812
0.673168
0.549777
0.426766
0.303669
0.182078
0.0557776
5.54456
4.52455
4.28351
4.08792
3.90868
3.74513
3.5932
3.44933
3.31118
3.17727
3.04654
2.91813
2.79134
2.66564
2.54059
2.41588
2.29132
2.16676
2.04214
1.91745
1.79269
1.66789
1.5431
1.41834
1.29368
1.16915
1.04479
0.920647
0.796742
0.673101
0.549715
0.426704
0.303643
0.18199
0.0562824
5.52489
4.52579
4.28346
4.08774
3.90861
3.74502
3.5931
3.44926
3.31113
3.17724
3.04651
2.9181
2.79131
2.66559
2.54053
2.41582
2.29125
2.16669
2.04207
1.91738
1.79262
1.66783
1.54304
1.41829
1.29363
1.16911
1.04476
0.920613
0.796702
0.67305
0.549635
0.426611
0.303531
0.181908
0.0564446
5.3017
4.62357
4.30442
4.10134
3.91861
3.7517
3.59808
3.45333
3.31455
3.18015
3.049
2.92023
2.79313
2.66716
2.54188
2.41699
2.29229
2.16762
2.04292
1.91817
1.79337
1.66854
1.54371
1.41894
1.29426
1.16972
1.04535
0.921191
0.797272
0.673615
0.550209
0.427155
0.304238
0.182187
0.0597625
5.31136
4.60605
4.30522
4.10049
3.91845
3.75177
3.59806
3.45319
3.3143
3.17977
3.04852
2.91966
2.79249
2.66646
2.54116
2.41626
2.29156
2.16691
2.04224
1.91753
1.79276
1.66797
1.54319
1.41846
1.29381
1.16931
1.04497
0.920845
0.796956
0.673322
0.549942
0.4269
0.304088
0.181906
0.0615579
5.3822
4.56752
4.2983
4.09566
3.91521
3.74955
3.59627
3.45163
3.31292
3.17855
3.04742
2.91868
2.79161
2.66567
2.54044
2.41561
2.29097
2.16637
2.04175
1.91708
1.79235
1.66759
1.54283
1.41813
1.29351
1.16902
1.04471
0.920592
0.796709
0.673084
0.549715
0.426698
0.303915
0.181738
0.0614587
5.47365
4.53827
4.2874
4.09066
3.91059
3.74644
3.59415
3.45004
3.31172
3.17768
3.04684
2.91835
2.7915
2.66574
2.54065
2.41592
2.29133
2.16677
2.04215
1.91745
1.7927
1.6679
1.54311
1.41836
1.29371
1.16918
1.04483
0.920686
0.796783
0.673145
0.549761
0.42675
0.303716
0.182019
0.056767
5.45616
4.55091
4.29433
4.09286
3.91329
3.74818
3.59522
3.4508
3.31225
3.178
3.04697
2.91829
2.79127
2.66537
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16888
1.04457
0.920454
0.796573
0.67295
0.549594
0.426599
0.30385
0.181691
0.0614641
5.43756
4.55003
4.29202
4.09228
3.91246
3.74761
3.59486
3.45054
3.31207
3.17788
3.04691
2.91828
2.79131
2.66545
2.54028
2.4155
2.29088
2.16631
2.0417
1.91703
1.79231
1.66755
1.54279
1.41808
1.29346
1.16897
1.04465
0.920533
0.796647
0.673017
0.549637
0.426617
0.303738
0.18175
0.059707
5.45763
4.55078
4.29403
4.09271
3.91316
3.74809
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79126
2.66536
2.54016
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29334
1.16886
1.04455
0.920438
0.796557
0.672935
0.549577
0.42658
0.30382
0.181674
0.0613118
5.25151
4.64965
4.3109
4.10478
3.92162
3.7535
3.59922
3.45418
3.31521
3.18066
3.04942
2.92058
2.79343
2.66743
2.54215
2.41727
2.29258
2.16794
2.04326
1.91853
1.79375
1.66893
1.54412
1.41935
1.29467
1.17012
1.04575
0.921587
0.79766
0.673992
0.550579
0.427506
0.304638
0.182488
0.0610706
5.43705
4.54818
4.29181
4.09302
3.91265
3.7478
3.59506
3.4507
3.31219
3.17799
3.04702
2.91841
2.79146
2.66563
2.54047
2.4157
2.29109
2.16652
2.0419
1.91722
1.79248
1.66771
1.54293
1.41821
1.29357
1.16906
1.04472
0.920597
0.796705
0.673074
0.549699
0.426685
0.303751
0.18187
0.0584354
5.55031
4.51419
4.28067
4.08633
3.90697
3.74416
3.5927
3.44911
3.31118
3.17748
3.04693
2.91869
2.79206
2.66646
2.54147
2.41678
2.29219
2.16758
2.0429
1.91814
1.79331
1.66845
1.54359
1.41878
1.29407
1.16951
1.04511
0.920943
0.797015
0.673362
0.549956
0.426957
0.303719
0.182422
0.0539875
5.52994
4.52248
4.28213
4.08755
3.9078
3.74479
3.59319
3.44948
3.31145
3.17767
3.04705
2.91875
2.79207
2.66643
2.54141
2.4167
2.2921
2.16749
2.04281
1.91805
1.79322
1.66837
1.54352
1.41872
1.29401
1.16945
1.04506
0.920894
0.796969
0.673319
0.54992
0.426929
0.303708
0.182398
0.0540512
5.52255
4.5254
4.28251
4.08792
3.90809
3.74504
3.59341
3.44967
3.31161
3.17779
3.04715
2.91882
2.79211
2.66645
2.54141
2.41669
2.29208
2.16746
2.04278
1.91802
1.79319
1.66833
1.54348
1.41869
1.29399
1.16943
1.04505
0.920876
0.796942
0.673274
0.549834
0.426824
0.303563
0.182302
0.0540425
5.25515
4.63885
4.312
4.10433
3.92148
3.75358
3.59927
3.45421
3.31522
3.18065
3.04937
2.92049
2.79329
2.66723
2.54189
2.41696
2.29222
2.16754
2.04284
1.9181
1.79331
1.6685
1.5437
1.41894
1.29428
1.16976
1.04541
0.921272
0.797369
0.673722
0.550329
0.427268
0.304476
0.182249
0.0627805
5.43439
4.55072
4.29477
4.0932
3.91349
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04458
0.92047
0.796587
0.672963
0.549606
0.426609
0.303862
0.181703
0.0614733
5.29317
4.61585
4.30742
4.10168
3.91937
3.75235
3.59848
3.45357
3.31467
3.18014
3.04888
2.92001
2.79282
2.66678
2.54146
2.41655
2.29183
2.16717
2.0425
1.91777
1.79299
1.6682
1.54341
1.41866
1.29401
1.1695
1.04516
0.921027
0.797131
0.673491
0.550104
0.427052
0.304246
0.182036
0.0620423
5.28424
4.63181
4.3067
4.1025
3.91963
3.75233
3.59849
3.45364
3.31481
3.18036
3.04919
2.9204
2.79329
2.6673
2.54202
2.41712
2.29241
2.16774
2.04304
1.91829
1.79348
1.66865
1.54383
1.41906
1.29438
1.16983
1.04547
0.921306
0.797384
0.673723
0.550315
0.427255
0.304361
0.182262
0.0603801
5.46013
4.54815
4.29401
4.09286
3.91323
3.74812
3.59517
3.45075
3.31221
3.17796
3.04693
2.91826
2.79125
2.66535
2.54016
2.41535
2.29073
2.16615
2.04154
1.91688
1.79216
1.6674
1.54266
1.41795
1.29334
1.16886
1.04455
0.920436
0.796553
0.672929
0.549571
0.426575
0.303823
0.18169
0.0612492
5.56725
4.51942
4.28133
4.08646
3.90751
3.74435
3.5927
3.44902
3.31102
3.17724
3.04661
2.91828
2.79157
2.66591
2.5409
2.41621
2.29164
2.16707
2.04244
1.91772
1.79293
1.66811
1.54329
1.41852
1.29384
1.16929
1.04493
0.920765
0.796839
0.673175
0.549746
0.426721
0.303568
0.182092
0.0554805
5.55683
4.51356
4.28016
4.08592
3.90693
3.74402
3.59253
3.44893
3.31101
3.17729
3.04673
2.91847
2.79181
2.6662
2.5412
2.41652
2.29195
2.16736
2.04271
1.91797
1.79316
1.66831
1.54347
1.41868
1.29398
1.16942
1.04504
0.920872
0.796936
0.673264
0.549825
0.426808
0.303604
0.182257
0.0547468
5.55979
4.51447
4.28033
4.08604
3.90697
3.74404
3.59253
3.44891
3.31097
3.17724
3.04666
2.91839
2.79173
2.66612
2.54113
2.41645
2.29188
2.1673
2.04265
1.91792
1.79311
1.66827
1.54343
1.41864
1.29395
1.16939
1.04501
0.920843
0.796922
0.673271
0.549871
0.426862
0.303685
0.182245
0.0547601
5.434
4.55058
4.293
4.09249
3.91281
3.74784
3.595
3.45064
3.31214
3.17793
3.04693
2.91828
2.79129
2.66541
2.54023
2.41543
2.29082
2.16624
2.04163
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16894
1.04462
0.920507
0.796625
0.672998
0.549627
0.426615
0.303793
0.181719
0.0605446
5.39138
4.56387
4.29702
4.09543
3.91476
3.74923
3.59607
3.45148
3.3128
3.17846
3.04737
2.91865
2.79161
2.66569
2.54048
2.41567
2.29103
2.16644
2.04182
1.91714
1.79241
1.66764
1.54288
1.41817
1.29354
1.16905
1.04473
0.920611
0.796727
0.6731
0.549731
0.426712
0.303883
0.181799
0.0604838
5.39859
4.56072
4.29697
4.09464
3.91445
3.74898
3.59581
3.45125
3.3126
3.17828
3.0472
2.91848
2.79144
2.66552
2.5403
2.41548
2.29085
2.16627
2.04165
1.91698
1.79226
1.6675
1.54275
1.41805
1.29343
1.16895
1.04463
0.920521
0.796639
0.673016
0.549653
0.426644
0.303877
0.181701
0.0614752
5.41428
4.56687
4.29209
4.09434
3.91311
3.74828
3.59566
3.45132
3.3128
3.17859
3.0476
2.91898
2.79201
2.66616
2.54099
2.41619
2.29155
2.16694
2.04229
1.91757
1.79279
1.66799
1.54318
1.41843
1.29376
1.16924
1.04488
0.92074
0.796838
0.673201
0.549819
0.426808
0.303792
0.182038
0.0570214
5.50677
4.53383
4.28832
4.09052
3.91106
3.74664
3.59417
3.44999
3.31161
3.17752
3.04662
2.91805
2.79114
2.66532
2.54019
2.41543
2.29083
2.16627
2.04167
1.917
1.79227
1.6675
1.54274
1.41803
1.2934
1.1689
1.04457
0.920455
0.796569
0.672941
0.549569
0.426559
0.303653
0.181754
0.0586468
5.57713
4.50788
4.27911
4.08529
3.90643
3.74373
3.59236
3.44883
3.31096
3.17729
3.04677
2.91855
2.79192
2.66633
2.54134
2.41666
2.29208
2.16749
2.04282
1.91807
1.79324
1.66839
1.54354
1.41874
1.29403
1.16947
1.04508
0.920907
0.796965
0.673289
0.549846
0.426838
0.303616
0.18235
0.054396
5.36979
4.57252
4.2993
4.09665
3.91579
3.74999
3.59665
3.45196
3.31321
3.1788
3.04765
2.91888
2.79179
2.66584
2.5406
2.41576
2.29111
2.1665
2.04187
1.91719
1.79245
1.66769
1.54293
1.41821
1.29358
1.16909
1.04477
0.920652
0.796767
0.673139
0.549767
0.426743
0.303937
0.181791
0.0611053
5.39142
4.56333
4.29718
4.09536
3.91474
3.7492
3.59602
3.45143
3.31276
3.17842
3.04733
2.91861
2.79156
2.66564
2.54043
2.41561
2.29097
2.16638
2.04177
1.91709
1.79236
1.66759
1.54284
1.41812
1.2935
1.16901
1.04469
0.920572
0.796689
0.673063
0.549695
0.426678
0.303861
0.18176
0.060662
5.50568
4.53639
4.28928
4.09092
3.91136
3.74684
3.5943
3.4501
3.31171
3.17759
3.04669
2.91812
2.7912
2.66538
2.54025
2.41549
2.29089
2.16633
2.04173
1.91706
1.79234
1.66757
1.54282
1.4181
1.29347
1.16897
1.04465
0.920528
0.79664
0.67301
0.549636
0.426624
0.303726
0.181809
0.0588794
5.54694
4.51566
4.28095
4.08652
3.9071
3.74424
3.59275
3.44913
3.31119
3.17747
3.04691
2.91866
2.79202
2.66642
2.54142
2.41673
2.29214
2.16754
2.04286
1.91811
1.79328
1.66842
1.54356
1.41876
1.29405
1.16949
1.0451
0.920927
0.797
0.673347
0.549943
0.426943
0.303713
0.182401
0.0540699
5.5435
4.51638
4.28122
4.08678
3.9073
3.74439
3.59286
3.44922
3.31125
3.17751
3.04693
2.91867
2.79201
2.66639
2.54139
2.41669
2.2921
2.1675
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16946
1.04508
0.920905
0.796965
0.673293
0.549851
0.426846
0.303596
0.18236
0.0541039
5.31348
4.60798
4.30446
4.10052
3.91828
3.75164
3.59802
3.45321
3.31437
3.17989
3.04866
2.91981
2.79266
2.66663
2.54133
2.41643
2.29172
2.16707
2.0424
1.91767
1.7929
1.6681
1.54331
1.41857
1.29392
1.1694
1.04506
0.920925
0.797029
0.673391
0.550008
0.426965
0.30412
0.181987
0.0609033
5.45627
4.54926
4.28785
4.0911
3.91073
3.7466
3.59437
3.45029
3.31198
3.17794
3.0471
2.9186
2.79174
2.66597
2.54086
2.41611
2.2915
2.16691
2.04227
1.91756
1.79279
1.66798
1.54317
1.41842
1.29375
1.16922
1.04487
0.920719
0.796807
0.673158
0.549747
0.426726
0.303626
0.182011
0.0562523
5.39591
4.56079
4.29708
4.09509
3.91461
3.74909
3.59591
3.45133
3.31266
3.17833
3.04725
2.91853
2.79149
2.66557
2.54035
2.41554
2.29091
2.16632
2.0417
1.91703
1.7923
1.66754
1.54279
1.41808
1.29346
1.16897
1.04465
0.92054
0.796658
0.673033
0.549667
0.426653
0.303859
0.181731
0.060966
5.55012
4.52373
4.2831
4.08766
3.90845
3.74498
3.59311
3.44928
3.31116
3.17727
3.04656
2.91816
2.79139
2.6657
2.54066
2.41596
2.29139
2.16684
2.04222
1.91752
1.79276
1.66795
1.54315
1.41839
1.29373
1.16919
1.04483
0.920683
0.796774
0.673132
0.549744
0.426732
0.303659
0.182026
0.0561061
5.15554
4.69253
4.32719
4.11124
3.92794
3.75748
3.60169
3.45601
3.31663
3.18176
3.05028
2.92127
2.794
2.66789
2.54254
2.41761
2.29289
2.16824
2.04357
1.91886
1.79411
1.66933
1.54456
1.41983
1.2952
1.1707
1.04638
0.922257
0.798375
0.674747
0.551386
0.42835
0.305671
0.183604
0.0669513
5.46892
4.5419
4.28931
4.09076
3.91142
3.7469
3.59436
3.45017
3.31178
3.17766
3.04673
2.91814
2.7912
2.66536
2.5402
2.41543
2.29083
2.16626
2.04165
1.91698
1.79226
1.6675
1.54275
1.41804
1.29341
1.16892
1.0446
0.920486
0.796601
0.672969
0.549587
0.426566
0.303671
0.18172
0.0593311
5.5641
4.5135
4.28027
4.08601
3.90695
3.74406
3.59257
3.44897
3.31104
3.17732
3.04676
2.91851
2.79186
2.66626
2.54127
2.4166
2.29203
2.16745
2.04279
1.91805
1.79324
1.66839
1.54355
1.41875
1.29405
1.16949
1.0451
0.920935
0.79701
0.673355
0.549951
0.426939
0.303748
0.182327
0.0546886
5.53467
4.52733
4.28486
4.08873
3.90938
3.74557
3.5935
3.44954
3.31133
3.17737
3.04659
2.91815
2.79134
2.66561
2.54055
2.41584
2.29127
2.16672
2.04211
1.91743
1.79268
1.66789
1.5431
1.41835
1.29369
1.16917
1.04482
0.920675
0.796771
0.67313
0.549744
0.42673
0.303698
0.181988
0.0568096
5.43689
4.54957
4.29207
4.09215
3.91245
3.7476
3.59484
3.45052
3.31204
3.17785
3.04687
2.91824
2.79126
2.66539
2.54021
2.41542
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54272
1.41801
1.29339
1.1689
1.04459
0.920472
0.796589
0.672961
0.549586
0.426569
0.303713
0.181696
0.0599731
5.54933
4.51434
4.28055
4.08627
3.90701
3.74413
3.59263
3.44901
3.31106
3.17734
3.04678
2.91852
2.79188
2.66627
2.54128
2.41659
2.29201
2.16742
2.04275
1.91801
1.79319
1.66834
1.54349
1.41869
1.29399
1.16943
1.04504
0.920877
0.796953
0.673302
0.549899
0.426895
0.303684
0.182325
0.0543238
5.55155
4.51316
4.28037
4.08617
3.907
3.74413
3.59263
3.44903
3.31109
3.17737
3.04681
2.91856
2.79191
2.6663
2.5413
2.41661
2.29203
2.16744
2.04277
1.91802
1.7932
1.66835
1.5435
1.41871
1.29401
1.16945
1.04506
0.920889
0.796951
0.673279
0.549838
0.426829
0.303603
0.182324
0.0544002
5.6076
4.50496
4.27831
4.08471
3.90598
3.74347
3.59221
3.44876
3.31094
3.17732
3.04685
2.91867
2.79208
2.66651
2.54154
2.41686
2.29228
2.16767
2.04299
1.91822
1.79339
1.66852
1.54365
1.41884
1.29413
1.16955
1.04516
0.920986
0.797056
0.673398
0.549983
0.426967
0.303716
0.182399
0.0540275
5.61016
4.50401
4.2781
4.0846
3.90593
3.74344
3.59219
3.44875
3.31095
3.17733
3.04686
2.91868
2.79209
2.66652
2.54155
2.41687
2.29228
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41884
1.29412
1.16955
1.04516
0.920974
0.797023
0.673341
0.549895
0.4269
0.303673
0.182479
0.0541357
5.54367
4.51676
4.281
4.08658
3.90729
3.7443
3.59274
3.44908
3.31111
3.17736
3.04677
2.9185
2.79183
2.66621
2.54122
2.41653
2.29196
2.16737
2.04272
1.91798
1.79317
1.66832
1.54348
1.41869
1.29399
1.16943
1.04505
0.920884
0.796962
0.67331
0.549909
0.426902
0.303714
0.182304
0.0546366
5.54477
4.51685
4.28132
4.08672
3.90741
3.74437
3.59278
3.44912
3.31115
3.1774
3.04681
2.91853
2.79186
2.66624
2.54124
2.41655
2.29197
2.16739
2.04273
1.91799
1.79318
1.66833
1.54349
1.4187
1.29401
1.16945
1.04507
0.920898
0.796963
0.673291
0.549853
0.426837
0.303626
0.182291
0.0547028
5.32562
4.59639
4.30366
4.09943
3.91781
3.75145
3.59787
3.45306
3.31421
3.17971
3.04847
2.91962
2.79246
2.66644
2.54114
2.41626
2.29156
2.16692
2.04226
1.91755
1.79279
1.66801
1.54323
1.4185
1.29386
1.16936
1.04503
0.920902
0.797011
0.673376
0.549995
0.426953
0.304144
0.181955
0.0616396
5.45333
4.56467
4.28795
4.09292
3.91123
3.74732
3.59537
3.45144
3.31324
3.17927
3.04846
2.91996
2.79307
2.66723
2.54202
2.41715
2.29241
2.1677
2.04294
1.91812
1.79325
1.66836
1.54349
1.41868
1.29397
1.1694
1.04501
0.920844
0.796921
0.673274
0.549884
0.426898
0.303734
0.182304
0.054325
5.45487
4.56449
4.28793
4.09272
3.91116
3.7473
3.59539
3.45149
3.31331
3.17936
3.04855
2.92003
2.79312
2.66726
2.54203
2.41714
2.2924
2.16768
2.04292
1.9181
1.79324
1.66835
1.54348
1.41868
1.29397
1.16941
1.04503
0.920866
0.79694
0.673282
0.549854
0.426838
0.303611
0.18219
0.0543579
5.53834
4.52116
4.28227
4.08726
3.90806
3.74473
3.59296
3.44918
3.31111
3.17726
3.04658
2.91822
2.79148
2.66581
2.54078
2.41609
2.29153
2.16697
2.04234
1.91764
1.79286
1.66805
1.54324
1.41847
1.29379
1.16925
1.04489
0.920733
0.796821
0.673176
0.549785
0.426774
0.303673
0.182091
0.0557308
5.38757
4.56557
4.29776
4.0953
3.91494
3.74936
3.59613
3.45152
3.31283
3.17847
3.04737
2.91863
2.79157
2.66564
2.54041
2.41559
2.29095
2.16636
2.04174
1.91706
1.79233
1.66758
1.54282
1.41812
1.2935
1.16901
1.0447
0.920582
0.7967
0.673074
0.549706
0.426689
0.303904
0.181736
0.0613722
5.51174
4.52695
4.28461
4.08864
3.90921
3.74546
3.59342
3.44948
3.31128
3.17733
3.04656
2.91813
2.79132
2.6656
2.54053
2.41582
2.29125
2.1667
2.04209
1.9174
1.79264
1.66785
1.54306
1.41831
1.29365
1.16913
1.04477
0.920631
0.796728
0.673089
0.549704
0.426693
0.303651
0.181967
0.0565748
5.37079
4.57313
4.29899
4.09665
3.91569
3.74993
3.59662
3.45195
3.3132
3.1788
3.04765
2.91889
2.79181
2.66586
2.54062
2.41579
2.29113
2.16653
2.0419
1.91721
1.79247
1.6677
1.54294
1.41822
1.29359
1.1691
1.04477
0.920654
0.796769
0.67314
0.549768
0.426743
0.303919
0.181805
0.0607696
5.49581
4.53921
4.29042
4.09139
3.91175
3.7471
3.59447
3.45022
3.3118
3.17766
3.04672
2.91814
2.7912
2.66537
2.54022
2.41545
2.29086
2.16629
2.04169
1.91702
1.7923
1.66754
1.54278
1.41807
1.29345
1.16895
1.04463
0.920513
0.796627
0.672998
0.549627
0.426616
0.303743
0.181791
0.0592737
5.52261
4.5245
4.28295
4.0876
3.90821
3.74482
3.59302
3.44924
3.31118
3.17734
3.04667
2.91832
2.79158
2.66591
2.54087
2.41617
2.2916
2.16703
2.0424
1.91768
1.7929
1.66808
1.54326
1.41849
1.29382
1.16928
1.04491
0.920754
0.796832
0.673171
0.549745
0.426723
0.303574
0.182089
0.0555479
5.39699
4.56076
4.29728
4.09487
3.9146
3.74907
3.59587
3.4513
3.31264
3.17831
3.04722
2.91849
2.79145
2.66552
2.54031
2.41549
2.29086
2.16627
2.04166
1.91698
1.79226
1.6675
1.54275
1.41805
1.29343
1.16895
1.04464
0.920523
0.796642
0.673018
0.549655
0.426646
0.303881
0.181705
0.0614815
5.38239
4.56647
4.29833
4.09587
3.91524
3.74957
3.59629
3.45165
3.31293
3.17856
3.04744
2.91869
2.79162
2.66569
2.54046
2.41563
2.29099
2.16639
2.04177
1.91709
1.79236
1.6676
1.54285
1.41814
1.29351
1.16902
1.04471
0.920591
0.796708
0.673082
0.549714
0.426697
0.303905
0.181754
0.0611898
5.54927
4.51404
4.28085
4.08651
3.90713
3.74427
3.59277
3.44915
3.3112
3.17747
3.0469
2.91865
2.792
2.66639
2.54139
2.4167
2.29211
2.1675
2.04283
1.91807
1.79324
1.66838
1.54353
1.41873
1.29403
1.16947
1.04508
0.920905
0.796964
0.673291
0.549848
0.426846
0.303597
0.182379
0.0540662
5.54222
4.52609
4.2835
4.08771
3.90862
3.74503
3.5931
3.44926
3.31114
3.17724
3.04651
2.91809
2.7913
2.66558
2.54052
2.41581
2.29124
2.16668
2.04206
1.91737
1.79262
1.66783
1.54304
1.41829
1.29363
1.16911
1.04476
0.920615
0.796704
0.673052
0.549638
0.426612
0.303537
0.181905
0.0565073
5.43381
4.5505
4.29477
4.09323
3.9135
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04458
0.920469
0.796587
0.672963
0.549605
0.426608
0.30386
0.181704
0.0614371
5.29913
4.61138
4.30667
4.10112
3.91907
3.75223
3.59843
3.45357
3.31469
3.18017
3.04891
2.92004
2.79285
2.6668
2.54148
2.41657
2.29186
2.1672
2.04252
1.9178
1.79303
1.66823
1.54345
1.41871
1.29406
1.16955
1.04521
0.921082
0.797186
0.673545
0.550156
0.427104
0.304302
0.182079
0.0622153
5.35621
4.58072
4.30044
4.09735
3.91645
3.75054
3.59713
3.4524
3.3136
3.17915
3.04796
2.91915
2.79204
2.66606
2.54079
2.41594
2.29127
2.16666
2.04202
1.91733
1.79259
1.66782
1.54305
1.41834
1.29371
1.16921
1.04489
0.920769
0.796881
0.673249
0.549869
0.426836
0.304027
0.181853
0.061438
5.22913
4.65704
4.3147
4.10616
3.92304
3.75442
3.5998
3.4546
3.31554
3.18092
3.04961
2.92074
2.79357
2.66755
2.54226
2.41737
2.29268
2.16803
2.04336
1.91863
1.79384
1.66902
1.54421
1.41944
1.29477
1.17023
1.04586
0.921711
0.797796
0.674138
0.550736
0.427667
0.304858
0.182655
0.062766
5.34842
4.58907
4.30041
4.09824
3.91662
3.75064
3.59733
3.45264
3.31387
3.17945
3.04827
2.91947
2.79236
2.66638
2.54112
2.41625
2.29157
2.16694
2.04228
1.91757
1.79281
1.66802
1.54323
1.4185
1.29385
1.16934
1.04499
0.920862
0.796967
0.673331
0.54995
0.426915
0.304044
0.181978
0.0601797
5.43142
4.55174
4.29474
4.09317
3.91345
3.74827
3.59528
3.45084
3.31228
3.17802
3.04698
2.9183
2.79128
2.66538
2.54019
2.41538
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29337
1.16889
1.04457
0.92046
0.796579
0.672956
0.549598
0.4266
0.303842
0.181686
0.061387
5.43265
4.55194
4.29476
4.09319
3.91345
3.74827
3.59528
3.45084
3.31228
3.17803
3.04699
2.91831
2.7913
2.6654
2.54021
2.4154
2.29078
2.1662
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.2934
1.16892
1.0446
0.92049
0.796609
0.672985
0.549626
0.426626
0.303863
0.181711
0.0613512
5.38194
4.57099
4.29719
4.09567
3.91504
3.74952
3.59635
3.45175
3.31306
3.1787
3.04758
2.91884
2.79178
2.66585
2.54062
2.41579
2.29114
2.16654
2.04192
1.91723
1.79249
1.66772
1.54296
1.41825
1.29362
1.16912
1.0448
0.920675
0.796787
0.673156
0.549775
0.426747
0.303894
0.181813
0.0604711
5.31655
4.60152
4.30472
4.09995
3.91816
3.7516
3.59792
3.45307
3.31419
3.17967
3.04841
2.91955
2.79239
2.66636
2.54106
2.41617
2.29148
2.16684
2.04218
1.91747
1.79271
1.66793
1.54315
1.41842
1.29378
1.16928
1.04495
0.920825
0.796936
0.673302
0.549922
0.426881
0.30408
0.181882
0.0617938
5.34105
4.59167
4.30138
4.09863
3.91697
3.75085
3.59744
3.45271
3.31391
3.17945
3.04826
2.91945
2.79232
2.66633
2.54106
2.41619
2.29151
2.16688
2.04222
1.91752
1.79276
1.66797
1.54319
1.41845
1.29381
1.1693
1.04496
0.920833
0.796941
0.673307
0.549928
0.426892
0.304038
0.18194
0.0605494
5.27585
4.62652
4.30926
4.10276
3.92026
3.75288
3.59884
3.45389
3.31497
3.18043
3.04917
2.92029
2.7931
2.66705
2.54171
2.41678
2.29205
2.16738
2.04269
1.91796
1.79317
1.66837
1.54357
1.41882
1.29417
1.16965
1.0453
0.921167
0.797267
0.673621
0.550229
0.427171
0.30437
0.182149
0.0624329
5.60694
4.50509
4.2783
4.08473
3.90603
3.7435
3.59222
3.44877
3.31095
3.17732
3.04683
2.91864
2.79204
2.66646
2.54149
2.4168
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.4188
1.29409
1.16952
1.04513
0.92095
0.797002
0.673322
0.549877
0.426876
0.30365
0.182433
0.0542139
5.60255
4.5066
4.27866
4.08491
3.90611
3.74355
3.59225
3.44878
3.31095
3.17731
3.04683
2.91864
2.79204
2.66647
2.5415
2.41682
2.29224
2.16764
2.04296
1.9182
1.79336
1.6685
1.54363
1.41882
1.29411
1.16954
1.04515
0.920975
0.797045
0.673388
0.549975
0.42696
0.303718
0.182385
0.0541192
5.50699
4.53737
4.2873
4.08967
3.91033
3.74616
3.59385
3.4498
3.31151
3.17748
3.04663
2.9181
2.79122
2.66542
2.54031
2.41556
2.29097
2.16641
2.04181
1.91714
1.7924
1.66764
1.54287
1.41815
1.29352
1.16901
1.04468
0.920556
0.79666
0.67302
0.549623
0.426596
0.303621
0.181792
0.0580941
5.35102
4.58251
4.30108
4.09757
3.91659
3.75059
3.59713
3.45238
3.31358
3.17913
3.04793
2.91912
2.792
2.66602
2.54075
2.41589
2.29123
2.16661
2.04197
1.91728
1.79254
1.66777
1.54301
1.41829
1.29366
1.16917
1.04485
0.920728
0.796843
0.673212
0.549834
0.426803
0.304007
0.181816
0.0616281
5.2432
4.64642
4.31334
4.10516
3.92217
3.75396
3.59951
3.45438
3.31536
3.18077
3.04948
2.92061
2.79344
2.66742
2.54211
2.41721
2.2925
2.16784
2.04316
1.91843
1.79364
1.66883
1.54403
1.41927
1.29461
1.17008
1.04572
0.921576
0.797667
0.674014
0.550615
0.427548
0.304749
0.182523
0.0629898
5.56172
4.51427
4.2801
4.0859
3.90702
3.74406
3.59254
3.44893
3.31099
3.17726
3.04667
2.9184
2.79172
2.6661
2.5411
2.41641
2.29184
2.16726
2.04262
1.91788
1.79308
1.66824
1.54341
1.41862
1.29393
1.16938
1.045
0.920832
0.7969
0.673231
0.549795
0.426774
0.303586
0.182191
0.0549822
5.47321
4.54421
4.29253
4.0923
3.91267
3.74772
3.5949
3.45054
3.31203
3.17783
3.04683
2.91819
2.79121
2.66533
2.54016
2.41537
2.29075
2.16618
2.04157
1.91691
1.79219
1.66743
1.54268
1.41797
1.29336
1.16888
1.04456
0.920448
0.796566
0.67294
0.549578
0.426576
0.30378
0.181715
0.0604704
5.37556
4.56944
4.29895
4.09615
3.91546
3.74972
3.5964
3.45173
3.313
3.17861
3.04748
2.91872
2.79164
2.6657
2.54047
2.41563
2.29099
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.0447
0.920588
0.796705
0.67308
0.549713
0.426694
0.303911
0.18174
0.0613749
5.529
4.52798
4.28548
4.08915
3.90978
3.74583
3.59365
3.44964
3.31139
3.1774
3.04659
2.91812
2.79129
2.66554
2.54046
2.41574
2.29117
2.16662
2.04201
1.91734
1.79259
1.66781
1.54303
1.41829
1.29364
1.16912
1.04478
0.920639
0.796738
0.6731
0.549717
0.426701
0.303696
0.18194
0.057217
5.51066
4.5293
4.28471
4.08842
3.90913
3.74535
3.59331
3.44941
3.31124
3.17731
3.04654
2.9181
2.79129
2.66555
2.54048
2.41576
2.29118
2.16662
2.04201
1.91733
1.79258
1.66779
1.543
1.41826
1.29361
1.16909
1.04475
0.920604
0.796697
0.673048
0.549637
0.426612
0.303555
0.181885
0.0568097
5.46106
4.54167
4.28859
4.0913
3.91114
3.74679
3.59439
3.45021
3.31184
3.17776
3.04688
2.91835
2.79147
2.66569
2.54058
2.41584
2.29125
2.16668
2.04206
1.91738
1.79263
1.66784
1.54305
1.41831
1.29366
1.16914
1.0448
0.920658
0.796759
0.673123
0.549741
0.426729
0.303724
0.181971
0.0572424
5.43051
4.55791
4.29072
4.09282
3.9123
3.74771
3.59518
3.45093
3.31248
3.17832
3.04737
2.91878
2.79184
2.666
2.54085
2.41607
2.29144
2.16685
2.04222
1.91751
1.79275
1.66796
1.54316
1.41842
1.29377
1.16925
1.0449
0.92076
0.796854
0.673209
0.549806
0.426781
0.303751
0.181992
0.057458
5.50544
4.52849
4.28441
4.08863
3.90901
3.74536
3.59339
3.44949
3.31132
3.1774
3.04667
2.91826
2.79148
2.66578
2.54074
2.41603
2.29146
2.1669
2.04228
1.91758
1.79281
1.66801
1.5432
1.41844
1.29377
1.16924
1.04488
0.920727
0.796817
0.673174
0.549785
0.426774
0.303694
0.182076
0.0560587
5.49713
4.52919
4.28566
4.0893
3.9098
3.74585
3.59367
3.44965
3.31139
3.1774
3.04659
2.91812
2.79129
2.66554
2.54046
2.41574
2.29116
2.1666
2.042
1.91731
1.79257
1.66778
1.543
1.41826
1.29361
1.16909
1.04474
0.920605
0.796706
0.673069
0.549687
0.426674
0.303661
0.181927
0.0570312
5.48536
4.5382
4.28775
4.09003
3.91072
3.74642
3.59403
3.44993
3.31161
3.17754
3.04666
2.91811
2.79121
2.6654
2.54027
2.41551
2.29092
2.16635
2.04175
1.91708
1.79235
1.66759
1.54283
1.41811
1.29348
1.16898
1.04466
0.920532
0.79664
0.673003
0.549611
0.426586
0.303638
0.181766
0.0585168
5.41728
4.55411
4.29559
4.09371
3.91383
3.74854
3.59548
3.45099
3.3124
3.17811
3.04706
2.91836
2.79133
2.66543
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.0446
0.920486
0.796605
0.672981
0.549622
0.426621
0.303868
0.181699
0.0614988
5.50624
4.53881
4.28785
4.08996
3.91065
3.74638
3.594
3.4499
3.31158
3.17752
3.04664
2.91809
2.79118
2.66537
2.54024
2.41548
2.29088
2.16632
2.04172
1.91705
1.79232
1.66755
1.54279
1.41807
1.29345
1.16895
1.04462
0.9205
0.796609
0.672973
0.549581
0.426558
0.303609
0.181741
0.0584744
5.42924
4.54918
4.29295
4.0931
3.91291
3.7479
3.59506
3.45066
3.31213
3.17792
3.04692
2.91829
2.79131
2.66545
2.54028
2.41549
2.29088
2.1663
2.04169
1.91702
1.79229
1.66752
1.54276
1.41805
1.29342
1.16893
1.04461
0.92049
0.796606
0.67298
0.549611
0.426599
0.30373
0.18175
0.0594565
5.42096
4.5526
4.29504
4.09338
3.91364
3.74841
3.59539
3.45093
3.31235
3.17808
3.04703
2.91834
2.79131
2.66541
2.5402
2.4154
2.29077
2.16619
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.1689
1.04458
0.920472
0.79659
0.672967
0.549609
0.42661
0.30386
0.181692
0.0615121
5.51328
4.52955
4.28484
4.08851
3.90926
3.74544
3.59337
3.44944
3.31126
3.17731
3.04654
2.91808
2.79125
2.66551
2.54043
2.4157
2.29113
2.16657
2.04196
1.91728
1.79253
1.66775
1.54297
1.41823
1.29358
1.16906
1.04472
0.920583
0.796678
0.67303
0.549622
0.426596
0.303553
0.18186
0.0570023
5.45648
4.5502
4.29454
4.09303
3.91338
3.74823
3.59526
3.45082
3.31226
3.17801
3.04697
2.91829
2.79127
2.66537
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41798
1.29336
1.16888
1.04457
0.920458
0.796575
0.672951
0.549593
0.426598
0.303853
0.1817
0.0614341
5.41104
4.56441
4.29265
4.09377
3.91312
3.74822
3.59551
3.45116
3.31264
3.17842
3.04742
2.91878
2.7918
2.66593
2.54075
2.41595
2.29132
2.16673
2.04209
1.9174
1.79264
1.66785
1.54307
1.41833
1.29369
1.16918
1.04483
0.9207
0.796801
0.67316
0.549764
0.426738
0.303759
0.181911
0.0582231
5.56463
4.5108
4.2797
4.08565
3.90663
3.74387
3.59245
3.44889
3.31099
3.17731
3.04677
2.91854
2.79191
2.66632
2.54134
2.41666
2.29209
2.16749
2.04283
1.91808
1.79326
1.6684
1.54355
1.41875
1.29405
1.16948
1.04509
0.920924
0.796998
0.673344
0.549937
0.426927
0.303712
0.182344
0.0543549
5.56496
4.50945
4.27931
4.08547
3.90657
3.74383
3.59242
3.44887
3.31098
3.1773
3.04676
2.91853
2.79189
2.66629
2.5413
2.41662
2.29204
2.16745
2.04278
1.91803
1.79321
1.66836
1.54351
1.41871
1.29401
1.16945
1.04506
0.920889
0.796949
0.673275
0.549833
0.426823
0.303603
0.182318
0.054451
5.45208
4.54742
4.29211
4.09196
3.91247
3.74761
3.59484
3.45051
3.31204
3.17785
3.04686
2.91822
2.79124
2.66537
2.54019
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.2934
1.16891
1.0446
0.920485
0.796603
0.672977
0.549606
0.426595
0.303775
0.181711
0.0604884
5.48981
4.53401
4.28561
4.08909
3.90951
3.74564
3.59355
3.4496
3.3114
3.17745
3.04667
2.91822
2.7914
2.66567
2.54059
2.41587
2.29129
2.16673
2.04211
1.91742
1.79267
1.66787
1.54308
1.41834
1.29368
1.16916
1.04481
0.920666
0.796756
0.673106
0.549694
0.426669
0.3036
0.181946
0.0566974
5.49205
4.53602
4.28692
4.08961
3.91022
3.74608
3.59381
3.44977
3.3115
3.17748
3.04664
2.91813
2.79125
2.66547
2.54036
2.41562
2.29103
2.16647
2.04187
1.9172
1.79246
1.66769
1.54292
1.41819
1.29356
1.16905
1.04472
0.920585
0.796686
0.673044
0.549644
0.426617
0.303625
0.181827
0.0578559
5.39339
4.57936
4.29379
4.09575
3.91401
3.74889
3.59619
3.45181
3.31326
3.17901
3.04798
2.91932
2.79232
2.66643
2.54122
2.41639
2.29173
2.1671
2.04243
1.91769
1.7929
1.66808
1.54327
1.41851
1.29384
1.16931
1.04495
0.920807
0.796903
0.673264
0.549882
0.426868
0.303857
0.182076
0.05708
5.47404
4.54717
4.29169
4.0917
3.91227
3.74748
3.59475
3.45045
3.31199
3.17781
3.04683
2.9182
2.79123
2.66536
2.54019
2.4154
2.29078
2.16621
2.0416
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.920479
0.796596
0.672969
0.549597
0.426585
0.303756
0.181708
0.0603352
5.5239
4.53182
4.28539
4.08877
3.90959
3.74566
3.59352
3.44955
3.31133
3.17735
3.04655
2.91806
2.79121
2.66544
2.54034
2.41561
2.29103
2.16647
2.04186
1.91719
1.79245
1.66767
1.5429
1.41817
1.29353
1.16902
1.04468
0.920547
0.796647
0.673003
0.5496
0.426574
0.30356
0.181809
0.0574369
5.53211
4.52962
4.28466
4.08837
3.9092
3.74541
3.59335
3.44944
3.31126
3.17732
3.04655
2.9181
2.79127
2.66553
2.54045
2.41573
2.29116
2.1666
2.04199
1.91731
1.79257
1.66778
1.543
1.41826
1.29361
1.1691
1.04475
0.920613
0.796706
0.673057
0.549648
0.426621
0.303577
0.181879
0.0570275
5.23376
4.65129
4.31481
4.10587
3.92278
3.75434
3.59975
3.45457
3.3155
3.18088
3.04957
2.92069
2.7935
2.66746
2.54214
2.41723
2.2925
2.16783
2.04314
1.9184
1.79361
1.66879
1.54398
1.41922
1.29456
1.17002
1.04567
0.921522
0.797613
0.67396
0.550564
0.427498
0.304713
0.182485
0.0632601
5.55136
4.51417
4.28082
4.08639
3.90704
3.74415
3.59265
3.44903
3.31108
3.17736
3.0468
2.91856
2.79192
2.66631
2.54132
2.41664
2.29206
2.16747
2.0428
1.91805
1.79323
1.66837
1.54352
1.41873
1.29402
1.16946
1.04507
0.920904
0.79698
0.673327
0.549923
0.426919
0.303697
0.182358
0.0542241
5.5533
4.51255
4.28033
4.08612
3.90691
3.74408
3.59262
3.44902
3.3111
3.17739
3.04684
2.9186
2.79195
2.66635
2.54136
2.41667
2.29209
2.16749
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16947
1.04508
0.920908
0.796967
0.673293
0.549852
0.426846
0.303612
0.18236
0.0542661
5.59368
4.51265
4.27997
4.08567
3.90671
3.74389
3.59244
3.44887
3.31096
3.17725
3.0467
2.91845
2.79181
2.66621
2.54122
2.41654
2.29197
2.16739
2.04273
1.91799
1.79318
1.66833
1.54349
1.41869
1.29399
1.16943
1.04505
0.92088
0.796957
0.673304
0.549901
0.42689
0.303697
0.182283
0.0546076
5.59711
4.51161
4.27971
4.08548
3.90663
3.74383
3.5924
3.44884
3.31094
3.17725
3.0467
2.91845
2.7918
2.66619
2.5412
2.41652
2.29195
2.16736
2.0427
1.91795
1.79314
1.66829
1.54345
1.41866
1.29396
1.1694
1.04502
0.920849
0.796913
0.673241
0.549801
0.426786
0.30358
0.182252
0.0546614
5.27708
4.63412
4.30817
4.10345
3.92026
3.75273
3.59876
3.45382
3.31493
3.18043
3.04922
2.9204
2.79326
2.66726
2.54196
2.41706
2.29234
2.16767
2.04297
1.91822
1.79342
1.6686
1.54378
1.41901
1.29434
1.16979
1.04543
0.921269
0.797353
0.673698
0.550301
0.427244
0.304374
0.182247
0.0605058
5.40442
4.56944
4.29287
4.0942
3.9133
3.74837
3.59568
3.45134
3.31282
3.17859
3.04759
2.91894
2.79195
2.66607
2.54089
2.41608
2.29144
2.16684
2.04219
1.91748
1.79272
1.66792
1.54313
1.41838
1.29373
1.16921
1.04487
0.920728
0.796825
0.673184
0.549786
0.42676
0.303758
0.181939
0.0578636
5.40404
4.55791
4.29677
4.09463
3.91439
3.74893
3.59577
3.45121
3.31257
3.17826
3.04718
2.91847
2.79143
2.66551
2.5403
2.41549
2.29086
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16896
1.04464
0.920531
0.796649
0.673024
0.549662
0.426654
0.303886
0.181728
0.0613407
5.46972
4.54824
4.29264
4.09213
3.91267
3.74776
3.59493
3.45058
3.31208
3.17788
3.04688
2.91823
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04457
0.920455
0.796574
0.67295
0.549584
0.426579
0.303783
0.181689
0.0608096
5.56439
4.52021
4.28175
4.08688
3.90778
3.74455
3.59284
3.44911
3.31106
3.17724
3.04658
2.91823
2.7915
2.66584
2.54082
2.41613
2.29157
2.167
2.04238
1.91767
1.79289
1.66807
1.54326
1.41849
1.29381
1.16926
1.0449
0.920741
0.796827
0.673182
0.549789
0.426779
0.303669
0.182101
0.0556086
5.48618
4.5332
4.28714
4.0902
3.9104
3.74625
3.59395
3.44986
3.31155
3.17751
3.04668
2.91818
2.79133
2.66556
2.54047
2.41574
2.29116
2.1666
2.04199
1.91731
1.79256
1.66777
1.54299
1.41825
1.2936
1.16909
1.04474
0.920605
0.796707
0.673071
0.54969
0.426678
0.303674
0.181927
0.0571918
5.5816
4.51485
4.28028
4.08586
3.90696
3.74402
3.5925
3.4489
3.31096
3.17723
3.04665
2.91837
2.7917
2.66607
2.54107
2.41638
2.29181
2.16723
2.04258
1.91785
1.79305
1.66821
1.54338
1.41859
1.2939
1.16935
1.04497
0.920807
0.796875
0.673207
0.549771
0.426751
0.303565
0.182174
0.0549631
5.57794
4.5153
4.28044
4.08604
3.90703
3.74407
3.59254
3.44892
3.31096
3.17722
3.04663
2.91835
2.79168
2.66606
2.54106
2.41638
2.29182
2.16724
2.0426
1.91787
1.79307
1.66823
1.5434
1.41861
1.29392
1.16936
1.04498
0.92082
0.796901
0.673251
0.549852
0.426843
0.303679
0.182212
0.0549136
5.34279
4.58869
4.30135
4.09791
3.9167
3.75061
3.59714
3.4524
3.3136
3.17915
3.04796
2.91916
2.79203
2.66605
2.54078
2.41592
2.29124
2.16662
2.04198
1.91728
1.79253
1.66776
1.54299
1.41827
1.29364
1.16914
1.04482
0.920698
0.796812
0.673181
0.549802
0.426768
0.303955
0.18179
0.0613678
5.60552
4.50606
4.27842
4.08486
3.90616
3.74357
3.59227
3.44879
3.31095
3.1773
3.04681
2.9186
2.79199
2.66641
2.54142
2.41674
2.29216
2.16756
2.04289
1.91813
1.7933
1.66843
1.54358
1.41877
1.29406
1.1695
1.04511
0.920929
0.796984
0.673306
0.549861
0.426855
0.303631
0.182386
0.0543065
5.59889
4.50769
4.27877
4.08505
3.90624
3.74363
3.5923
3.44881
3.31096
3.1773
3.0468
2.9186
2.79199
2.66641
2.54144
2.41676
2.29218
2.16759
2.04291
1.91816
1.79333
1.66846
1.54361
1.4188
1.29409
1.16952
1.04513
0.920957
0.797029
0.673372
0.549962
0.426948
0.303718
0.182363
0.0542388
5.42053
4.57661
4.29056
4.09434
3.91257
3.74806
3.5958
3.45171
3.31338
3.17931
3.04841
2.91983
2.79287
2.66699
2.54176
2.4169
2.29218
2.16749
2.04276
1.91797
1.79313
1.66827
1.54343
1.41864
1.29395
1.1694
1.04503
0.920869
0.796951
0.673298
0.549884
0.426864
0.303721
0.182132
0.055504
5.44675
4.54958
4.28919
4.09141
3.91126
3.74685
3.59444
3.45028
3.31192
3.17783
3.04695
2.9184
2.7915
2.6657
2.54057
2.41581
2.29121
2.16664
2.04202
1.91733
1.79258
1.6678
1.54302
1.41828
1.29363
1.16912
1.04478
0.920642
0.79674
0.673097
0.549696
0.426672
0.303652
0.181895
0.0574584
5.52378
4.52861
4.28578
4.0893
3.90993
3.74591
3.5937
3.44966
3.31139
3.17739
3.04657
2.91808
2.79124
2.66548
2.54039
2.41566
2.29109
2.16653
2.04193
1.91725
1.79251
1.66773
1.54296
1.41822
1.29358
1.16906
1.04472
0.920586
0.79669
0.673054
0.549673
0.426658
0.303669
0.181889
0.0574058
5.54898
4.52459
4.28292
4.08742
3.90839
3.7449
3.59303
3.44922
3.31112
3.17725
3.04653
2.91814
2.79136
2.66565
2.5406
2.41589
2.29132
2.16676
2.04215
1.91745
1.79269
1.66789
1.54309
1.41834
1.29368
1.16915
1.0448
0.920652
0.796738
0.673084
0.549666
0.42664
0.303549
0.181945
0.0563153
5.56024
4.52288
4.28242
4.08712
3.90808
3.74471
3.59292
3.44916
3.31111
3.17727
3.0466
2.91823
2.79148
2.6658
2.54077
2.41607
2.2915
2.16694
2.04232
1.91762
1.79284
1.66803
1.54323
1.41846
1.29379
1.16926
1.0449
0.92074
0.79682
0.673159
0.549735
0.426708
0.303588
0.182039
0.0559678
5.39938
4.55958
4.29708
4.09478
3.91454
3.74903
3.59585
3.45128
3.31262
3.1783
3.04721
2.91849
2.79144
2.66552
2.54031
2.41549
2.29086
2.16627
2.04166
1.91699
1.79226
1.66751
1.54276
1.41805
1.29344
1.16896
1.04464
0.920528
0.796647
0.673022
0.549659
0.426651
0.303885
0.181715
0.0614409
5.16967
4.68593
4.32474
4.1105
3.92702
3.75689
3.60134
3.45575
3.31643
3.18161
3.05016
2.92117
2.79392
2.66783
2.54248
2.41756
2.29285
2.1682
2.04353
1.91882
1.79407
1.66929
1.54451
1.41979
1.29516
1.17066
1.04633
0.922211
0.798331
0.674706
0.551347
0.428312
0.305611
0.183482
0.0656939
5.51856
4.53364
4.28606
4.08911
3.90988
3.74586
3.59366
3.44966
3.31142
3.17742
3.04659
2.91809
2.79123
2.66545
2.54035
2.41561
2.29103
2.16647
2.04187
1.91719
1.79246
1.66768
1.54291
1.41819
1.29355
1.16904
1.0447
0.920572
0.796672
0.673029
0.549627
0.4266
0.303599
0.18182
0.0576845
5.50252
4.5339
4.28628
4.08928
3.90995
3.74591
3.5937
3.44969
3.31145
3.17746
3.04664
2.91814
2.79129
2.66552
2.54042
2.41569
2.29111
2.16655
2.04195
1.91727
1.79254
1.66776
1.54299
1.41826
1.29362
1.16911
1.04477
0.920632
0.79673
0.673084
0.54968
0.426652
0.303642
0.181874
0.0576351
5.4401
4.55008
4.29351
4.0926
3.913
3.74797
3.59508
3.45069
3.31216
3.17793
3.04692
2.91826
2.79126
2.66537
2.54018
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66743
1.54268
1.41798
1.29337
1.16889
1.04457
0.920461
0.79658
0.672957
0.549593
0.426589
0.303804
0.181687
0.0609964
5.50505
4.52907
4.28605
4.08947
3.91
3.74596
3.59373
3.44968
3.31141
3.1774
3.04658
2.91809
2.79125
2.66549
2.5404
2.41567
2.2911
2.16654
2.04194
1.91726
1.79252
1.66774
1.54296
1.41823
1.29358
1.16907
1.04472
0.92059
0.796692
0.673057
0.549676
0.426661
0.30367
0.181896
0.0573722
5.46576
4.5476
4.29391
4.09285
3.91315
3.74805
3.59512
3.45071
3.31217
3.17793
3.04691
2.91824
2.79123
2.66534
2.54015
2.41535
2.29073
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41795
1.29334
1.16886
1.04455
0.920435
0.796553
0.672928
0.549569
0.426572
0.30381
0.181695
0.0610574
5.3683
4.57382
4.29943
4.09687
3.91593
3.75012
3.59678
3.45208
3.31332
3.1789
3.04774
2.91897
2.79188
2.66592
2.54068
2.41583
2.29118
2.16657
2.04194
1.91725
1.79252
1.66775
1.54298
1.41827
1.29364
1.16914
1.04482
0.920701
0.796816
0.673187
0.549815
0.426788
0.303974
0.181837
0.061015
5.46213
4.54603
4.28754
4.09135
3.91091
3.74681
3.59456
3.45044
3.3121
3.17804
3.04718
2.91868
2.79182
2.66605
2.54094
2.41619
2.29159
2.167
2.04235
1.91764
1.79286
1.66805
1.54324
1.41848
1.29381
1.16927
1.04491
0.920765
0.796856
0.673215
0.549828
0.426822
0.303749
0.182126
0.0561228
5.57111
4.5185
4.28132
4.0866
3.9075
3.74437
3.59274
3.44905
3.31105
3.17726
3.04663
2.91832
2.79162
2.66598
2.54097
2.41629
2.29173
2.16717
2.04253
1.91781
1.79303
1.6682
1.54337
1.41859
1.29391
1.16936
1.04498
0.920821
0.796902
0.673253
0.549856
0.426845
0.303708
0.182187
0.0553118
5.48667
4.53783
4.28525
4.08966
3.90961
3.74593
3.59396
3.45002
3.31181
3.17787
3.04711
2.91868
2.79188
2.66616
2.54108
2.41635
2.29175
2.16715
2.0425
1.91777
1.79298
1.66815
1.54333
1.41856
1.29388
1.16934
1.04497
0.920813
0.796891
0.673233
0.54981
0.426791
0.303628
0.182153
0.0554009
5.5213
4.52433
4.28262
4.0876
3.90808
3.7448
3.59307
3.44932
3.31128
3.17747
3.04683
2.9185
2.79179
2.66613
2.54111
2.41641
2.29183
2.16725
2.0426
1.91787
1.79308
1.66824
1.54341
1.41863
1.29394
1.16939
1.04502
0.920853
0.796924
0.673258
0.549826
0.426806
0.30362
0.182208
0.0550841
5.31039
4.62459
4.30274
4.10163
3.91841
3.75153
3.59801
3.45329
3.31453
3.18016
3.04904
2.92031
2.79325
2.66731
2.54207
2.41721
2.29252
2.16787
2.04317
1.91841
1.79359
1.66874
1.54389
1.4191
1.2944
1.16983
1.04545
0.921278
0.797352
0.673691
0.550292
0.427246
0.304299
0.182303
0.0584645
5.46979
4.54505
4.28654
4.09055
3.91024
3.74637
3.59428
3.45027
3.31201
3.17801
3.0472
2.91873
2.7919
2.66614
2.54105
2.41629
2.29168
2.16708
2.04242
1.9177
1.79291
1.66808
1.54327
1.4185
1.29382
1.16929
1.04492
0.92077
0.796853
0.6732
0.549782
0.426764
0.30362
0.182095
0.0556364
5.4477
4.54602
4.29335
4.09269
3.91304
3.74798
3.59507
3.45068
3.31214
3.17791
3.0469
2.91824
2.79124
2.66535
2.54016
2.41536
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04456
0.920447
0.796565
0.67294
0.54958
0.426581
0.303809
0.181705
0.0609158
5.51699
4.52838
4.28461
4.08841
3.90908
3.74534
3.59332
3.44943
3.31128
3.17737
3.04662
2.91819
2.79139
2.66567
2.54061
2.4159
2.29133
2.16678
2.04216
1.91748
1.79272
1.66793
1.54314
1.41839
1.29373
1.16921
1.04485
0.920708
0.796795
0.673141
0.549725
0.426696
0.303624
0.181977
0.0566836
5.52152
4.52438
4.28268
4.08772
3.90811
3.74481
3.59308
3.44931
3.31125
3.17743
3.04678
2.91845
2.79174
2.66609
2.54107
2.41638
2.29181
2.16723
2.04259
1.91786
1.79306
1.66823
1.5434
1.41862
1.29393
1.16938
1.045
0.920839
0.79692
0.673271
0.549875
0.426869
0.303716
0.182243
0.0550421
5.50477
4.53104
4.28367
4.08857
3.90869
3.7453
3.59348
3.44965
3.31153
3.17765
3.04696
2.91859
2.79185
2.66616
2.54111
2.41639
2.2918
2.1672
2.04254
1.9178
1.793
1.66816
1.54333
1.41855
1.29387
1.16932
1.04495
0.920788
0.796863
0.673203
0.549775
0.426762
0.303565
0.182173
0.0548485
5.47557
4.5461
4.2911
4.09142
3.912
3.7473
3.59462
3.45036
3.31192
3.17776
3.0468
2.91818
2.79121
2.66535
2.54018
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66747
1.54271
1.41801
1.29339
1.16891
1.04459
0.920475
0.796591
0.672963
0.549588
0.426573
0.303722
0.181706
0.0600074
5.44949
4.54983
4.289
4.0921
3.91153
3.74717
3.59477
3.45057
3.31217
3.17806
3.04717
2.91863
2.79174
2.66595
2.54083
2.41607
2.29146
2.16688
2.04224
1.91753
1.79276
1.66796
1.54316
1.41841
1.29374
1.16922
1.04486
0.920718
0.796814
0.673175
0.549792
0.426783
0.303742
0.182055
0.0566225
5.41536
4.55347
4.29541
4.09394
3.91382
3.74851
3.59547
3.45098
3.31238
3.1781
3.04705
2.91837
2.79135
2.66545
2.54025
2.41545
2.29082
2.16624
2.04163
1.91697
1.79224
1.66749
1.54274
1.41803
1.29341
1.16893
1.04461
0.9205
0.796618
0.672993
0.54963
0.426623
0.303837
0.181722
0.0609135
5.14384
4.69792
4.32927
4.11189
3.92878
3.75802
3.60201
3.45625
3.31681
3.18191
3.0504
2.92137
2.79408
2.66796
2.54259
2.41766
2.29294
2.16828
2.04362
1.91891
1.79415
1.66937
1.5446
1.41988
1.29525
1.17075
1.04643
0.922312
0.798431
0.674807
0.551448
0.428415
0.305759
0.183759
0.0680661
5.3502
4.59479
4.29889
4.09768
3.91597
3.75012
3.59696
3.4524
3.31372
3.17936
3.04824
2.91948
2.79239
2.66644
2.54118
2.41632
2.29164
2.16701
2.04234
1.91762
1.79285
1.66805
1.54325
1.41851
1.29385
1.16933
1.04498
0.920845
0.796943
0.6733
0.549905
0.426869
0.303939
0.181957
0.0592676
5.60931
4.50672
4.27872
4.08492
3.90617
3.74359
3.59229
3.44882
3.31099
3.17736
3.04687
2.91868
2.79207
2.6665
2.54152
2.41684
2.29226
2.16766
2.04298
1.91822
1.79339
1.66852
1.54366
1.41885
1.29414
1.16957
1.04518
0.920991
0.797042
0.673361
0.549914
0.42691
0.303682
0.182453
0.0542779
5.60052
4.50732
4.27876
4.08498
3.90618
3.74359
3.59228
3.4488
3.31096
3.17731
3.04682
2.91863
2.79202
2.66645
2.54148
2.4168
2.29222
2.16762
2.04295
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16954
1.04515
0.920973
0.797044
0.673387
0.549975
0.42696
0.303723
0.182379
0.0541766
5.49244
4.53361
4.28559
4.08983
3.90984
3.74603
3.59395
3.44995
3.3117
3.17773
3.04695
2.91851
2.79171
2.66599
2.54093
2.41621
2.29163
2.16705
2.04242
1.91771
1.79293
1.66812
1.54331
1.41854
1.29387
1.16933
1.04496
0.920811
0.796898
0.673253
0.549863
0.426854
0.303758
0.182174
0.0558896
5.4367
4.55595
4.28981
4.09223
3.91173
3.74727
3.59483
3.45064
3.31224
3.17813
3.04722
2.91865
2.79174
2.66592
2.54079
2.41602
2.2914
2.16681
2.04217
1.91747
1.7927
1.6679
1.54311
1.41836
1.2937
1.16918
1.04483
0.920691
0.796786
0.673141
0.549737
0.426715
0.303664
0.181951
0.0570165
5.47454
4.53913
4.28646
4.08973
3.90993
3.74594
3.59378
3.44978
3.31154
3.17755
3.04675
2.91828
2.79144
2.66569
2.5406
2.41587
2.29128
2.16671
2.04209
1.9174
1.79264
1.66785
1.54306
1.41831
1.29366
1.16913
1.04479
0.920642
0.796735
0.673087
0.549678
0.426655
0.303585
0.181931
0.0566658
5.43418
4.55136
4.29471
4.09314
3.91346
3.74828
3.59529
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.1689
1.04458
0.920471
0.796589
0.672966
0.549609
0.426612
0.303862
0.181699
0.0614835
5.43686
4.55091
4.29472
4.09316
3.91348
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04458
0.920469
0.796587
0.672964
0.549606
0.42661
0.303862
0.181699
0.0614965
5.1705
4.68549
4.32457
4.11037
3.92695
3.75685
3.60131
3.45573
3.3164
3.18159
3.05014
2.92115
2.7939
2.66781
2.54246
2.41754
2.29283
2.16818
2.04352
1.9188
1.79405
1.66927
1.54449
1.41977
1.29513
1.17063
1.04629
0.922172
0.798285
0.674653
0.551284
0.428238
0.305525
0.183386
0.065644
5.39196
4.56414
4.2967
4.09537
3.91465
3.74916
3.59602
3.45145
3.31278
3.17845
3.04736
2.91865
2.79161
2.66569
2.54048
2.41567
2.29103
2.16644
2.04182
1.91714
1.79241
1.66764
1.54288
1.41816
1.29353
1.16904
1.04471
0.920596
0.796711
0.673084
0.549714
0.426695
0.303852
0.18179
0.0602182
5.47011
4.54506
4.29288
4.09244
3.9128
3.74781
3.59496
3.45059
3.31208
3.17786
3.04686
2.91822
2.79123
2.66535
2.54017
2.41538
2.29077
2.16619
2.04159
1.91692
1.7922
1.66745
1.5427
1.41799
1.29338
1.16889
1.04458
0.920466
0.796583
0.672957
0.549595
0.426594
0.303806
0.181728
0.0606308
5.51446
4.53055
4.28336
4.08856
3.90845
3.74534
3.59368
3.44991
3.31182
3.17797
3.0473
2.91894
2.79221
2.66652
2.54146
2.41672
2.29209
2.16747
2.04278
1.91801
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04502
0.920854
0.796931
0.673284
0.54989
0.426908
0.303692
0.182397
0.0539187
5.43758
4.55081
4.29398
4.09279
3.91317
3.74809
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79126
2.66537
2.54018
2.41538
2.29075
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04457
0.920456
0.796576
0.672953
0.549592
0.426592
0.303821
0.181683
0.0612016
5.234
4.65134
4.31491
4.10603
3.9228
3.75435
3.59976
3.45457
3.3155
3.18088
3.04957
2.92069
2.79351
2.66748
2.54218
2.41728
2.29257
2.16791
2.04322
1.91848
1.79369
1.66887
1.54406
1.4193
1.29463
1.1701
1.04574
0.921596
0.797687
0.674035
0.550639
0.427573
0.304783
0.182555
0.0631529
5.4378
4.5507
4.29383
4.09273
3.91311
3.74804
3.59513
3.45073
3.31219
3.17796
3.04694
2.91827
2.79126
2.66537
2.54018
2.41538
2.29076
2.16618
2.04158
1.91691
1.79219
1.66743
1.54269
1.41798
1.29337
1.16889
1.04458
0.920464
0.796583
0.67296
0.549598
0.426596
0.303817
0.181689
0.0611066
5.46512
4.54508
4.29298
4.0925
3.91288
3.74787
3.595
3.45062
3.3121
3.17787
3.04687
2.91821
2.79121
2.66533
2.54015
2.41535
2.29073
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41795
1.29334
1.16886
1.04454
0.920433
0.796551
0.672926
0.549565
0.426567
0.30379
0.181699
0.060775
5.5024
4.5323
4.28395
4.08894
3.90889
3.74542
3.59356
3.44969
3.31154
3.17765
3.04694
2.91856
2.79181
2.66613
2.54108
2.41637
2.29177
2.16718
2.04252
1.91779
1.79299
1.66816
1.54333
1.41855
1.29386
1.16931
1.04494
0.920779
0.796863
0.673218
0.549826
0.426828
0.303672
0.182225
0.0548489
5.48603
4.54005
4.29085
4.0916
3.91199
3.74726
3.59458
3.45029
3.31184
3.17768
3.04673
2.91813
2.79117
2.66532
2.54017
2.41539
2.29078
2.16622
2.04161
1.91695
1.79222
1.66746
1.54271
1.418
1.29338
1.16889
1.04457
0.920458
0.796575
0.672948
0.54958
0.426573
0.303726
0.181739
0.0596361
5.34777
4.60779
4.29796
4.09863
3.91605
3.7501
3.59708
3.45261
3.31404
3.17978
3.04876
2.92009
2.79308
2.66716
2.54192
2.41705
2.29234
2.16766
2.04294
1.91816
1.79333
1.66847
1.54363
1.41884
1.29414
1.16959
1.04522
0.921054
0.797133
0.673478
0.550069
0.42703
0.304013
0.182148
0.0575479
5.50569
4.53833
4.28762
4.08984
3.91049
3.74627
3.59393
3.44985
3.31156
3.17751
3.04665
2.91812
2.79122
2.66542
2.5403
2.41555
2.29096
2.1664
2.0418
1.91713
1.7924
1.66763
1.54287
1.41815
1.29352
1.16902
1.04469
0.920562
0.796668
0.673028
0.549633
0.426606
0.30364
0.181795
0.0582601
5.54584
4.51884
4.28115
4.08652
3.90758
3.74441
3.59274
3.44906
3.31105
3.17726
3.04663
2.9183
2.79158
2.66592
2.5409
2.41621
2.29165
2.16708
2.04244
1.91773
1.79295
1.66812
1.5433
1.41853
1.29385
1.16931
1.04494
0.920779
0.796854
0.673189
0.54976
0.426734
0.303584
0.182097
0.0555368
5.36267
4.57584
4.30007
4.09701
3.91607
3.75018
3.5968
3.45208
3.31331
3.17888
3.04772
2.91893
2.79183
2.66587
2.54062
2.41577
2.29112
2.16651
2.04188
1.91719
1.79245
1.66769
1.54293
1.41821
1.29359
1.16909
1.04477
0.920654
0.79677
0.673142
0.549771
0.426745
0.303949
0.181781
0.0613346
5.51153
4.52701
4.28407
4.0885
3.90891
3.74532
3.59339
3.44951
3.31136
3.17746
3.04673
2.91834
2.79157
2.66588
2.54084
2.41614
2.29157
2.16701
2.04238
1.91768
1.79291
1.6681
1.54329
1.41852
1.29385
1.16931
1.04494
0.920788
0.796875
0.67323
0.549838
0.426827
0.303732
0.182138
0.0559103
5.52127
4.52411
4.28302
4.08776
3.90832
3.74491
3.59309
3.44928
3.31118
3.17732
3.04663
2.91827
2.79152
2.66585
2.54082
2.41612
2.29156
2.16699
2.04237
1.91766
1.79288
1.66807
1.54325
1.41849
1.29381
1.16927
1.0449
0.920747
0.796834
0.673189
0.549798
0.426788
0.303682
0.182114
0.0556609
5.41722
4.56016
4.29242
4.09334
3.9129
3.74802
3.59529
3.45095
3.31244
3.17824
3.04725
2.91861
2.79164
2.66578
2.54061
2.41582
2.29119
2.16661
2.04198
1.9173
1.79255
1.66777
1.543
1.41827
1.29363
1.16913
1.04479
0.920662
0.796766
0.673128
0.549735
0.42671
0.303752
0.181875
0.0585545
5.49756
4.5364
4.28939
4.09098
3.91146
3.74691
3.59434
3.45011
3.3117
3.17758
3.04665
2.91807
2.79113
2.6653
2.54015
2.41539
2.29078
2.16622
2.04161
1.91694
1.79222
1.66746
1.5427
1.41798
1.29336
1.16887
1.04455
0.92043
0.796547
0.67292
0.549551
0.426542
0.303663
0.181728
0.0590661
5.42781
4.55776
4.29103
4.09281
3.91233
3.74766
3.59508
3.45081
3.31236
3.1782
3.04725
2.91865
2.79171
2.66587
2.54072
2.41594
2.29132
2.16673
2.0421
1.9174
1.79265
1.66786
1.54307
1.41834
1.29369
1.16917
1.04483
0.920691
0.796789
0.673147
0.549747
0.426723
0.303713
0.181924
0.0577141
5.40495
4.55761
4.29658
4.09465
3.91433
3.74887
3.59573
3.45118
3.31254
3.17823
3.04716
2.91845
2.79142
2.66551
2.5403
2.41549
2.29086
2.16628
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29344
1.16895
1.04463
0.920521
0.796639
0.673014
0.54965
0.426641
0.303858
0.181725
0.0610708
5.18997
4.67697
4.32116
4.10922
3.92566
3.75603
3.60082
3.45536
3.31612
3.18137
3.04997
2.92102
2.79379
2.66773
2.5424
2.41749
2.29278
2.16814
2.04348
1.91877
1.79401
1.66923
1.54446
1.41974
1.29511
1.17061
1.04629
0.922169
0.798287
0.674658
0.551286
0.428235
0.305479
0.183286
0.0640958
5.49912
4.5358
4.28435
4.08939
3.90912
3.74569
3.59385
3.44998
3.31183
3.17792
3.04721
2.91882
2.79206
2.66637
2.5413
2.41657
2.29196
2.16735
2.04268
1.91793
1.79312
1.66828
1.54344
1.41865
1.29396
1.1694
1.04502
0.92086
0.79694
0.673292
0.549898
0.426903
0.303729
0.182323
0.0546007
5.50134
4.53407
4.284
4.08902
3.90893
3.74556
3.59376
3.44991
3.31178
3.17788
3.04718
2.9188
2.79204
2.66634
2.54128
2.41654
2.29193
2.16731
2.04264
1.91789
1.79308
1.66823
1.5434
1.41861
1.29392
1.16937
1.045
0.920832
0.796905
0.673244
0.549813
0.426801
0.30358
0.182222
0.0545751
5.43312
4.54807
4.29312
4.09298
3.91291
3.74789
3.59504
3.45065
3.31213
3.17791
3.04692
2.91828
2.7913
2.66544
2.54027
2.41548
2.29087
2.1663
2.04169
1.91702
1.7923
1.66754
1.54278
1.41807
1.29345
1.16896
1.04464
0.920521
0.796637
0.67301
0.549642
0.42663
0.303784
0.181771
0.0598301
5.3719
4.59885
4.29573
4.09797
3.91522
3.74965
3.59685
3.45247
3.31395
3.17974
3.04875
2.9201
2.7931
2.66719
2.54195
2.41708
2.29235
2.16766
2.04293
1.91814
1.79329
1.66843
1.54358
1.41878
1.29409
1.16953
1.04516
0.920995
0.797079
0.673431
0.550041
0.427024
0.303992
0.182222
0.0565722
5.51177
4.53059
4.28362
4.08875
3.90867
3.74542
3.59368
3.44987
3.31176
3.17789
3.04721
2.91886
2.79212
2.66645
2.5414
2.41667
2.29206
2.16745
2.04277
1.91802
1.7932
1.66835
1.5435
1.41871
1.29401
1.16945
1.04507
0.9209
0.796977
0.673327
0.549931
0.426939
0.303742
0.182385
0.0543402
5.52008
4.53298
4.28774
4.09022
3.91073
3.74643
3.59403
3.4499
3.31156
3.17749
3.04662
2.91809
2.7912
2.6654
2.54029
2.41554
2.29096
2.1664
2.0418
1.91713
1.79239
1.66763
1.54286
1.41814
1.2935
1.169
1.04467
0.92054
0.796649
0.673017
0.549641
0.426627
0.30369
0.18183
0.0582356
5.45733
4.55868
4.28687
4.09197
3.91069
3.74688
3.59496
3.45104
3.31283
3.17885
3.04803
2.91952
2.79263
2.6668
2.54163
2.4168
2.29211
2.16744
2.04272
1.91794
1.7931
1.66824
1.54338
1.41859
1.29389
1.16933
1.04495
0.920793
0.796875
0.673231
0.549843
0.426856
0.303703
0.182252
0.0545123
5.53737
4.51942
4.28155
4.08699
3.90741
3.74452
3.593
3.44936
3.31139
3.17765
3.04707
2.9188
2.79213
2.66651
2.5415
2.41679
2.29219
2.16757
2.04289
1.91813
1.79329
1.66843
1.54357
1.41877
1.29406
1.1695
1.04511
0.920935
0.796994
0.673321
0.549877
0.42687
0.303606
0.182377
0.0539973
5.53094
4.52206
4.28204
4.08747
3.90775
3.74477
3.59318
3.44947
3.31146
3.17767
3.04705
2.91876
2.79207
2.66643
2.54141
2.4167
2.2921
2.16748
2.0428
1.91804
1.79322
1.66836
1.5435
1.4187
1.294
1.16944
1.04505
0.920882
0.796957
0.673308
0.549909
0.426921
0.303695
0.1824
0.0539592
5.34513
4.60706
4.29864
4.09921
3.91645
3.75037
3.59726
3.45273
3.31411
3.17982
3.04878
2.92009
2.79305
2.66712
2.54187
2.41699
2.29228
2.1676
2.04288
1.91811
1.79328
1.66843
1.54359
1.4188
1.29411
1.16956
1.04518
0.921024
0.797108
0.67346
0.55007
0.427041
0.304064
0.182167
0.0577198
5.48435
4.54381
4.28524
4.09036
3.90978
3.74626
3.5944
3.45047
3.31226
3.17829
3.04751
2.91906
2.79224
2.66649
2.54138
2.41661
2.29197
2.16734
2.04265
1.91789
1.79307
1.66822
1.54338
1.4186
1.2939
1.16935
1.04497
0.920813
0.796895
0.673251
0.549861
0.426872
0.303702
0.182298
0.054485
5.49157
4.54086
4.28482
4.08983
3.90941
3.74597
3.59414
3.45027
3.3121
3.17818
3.04743
2.91902
2.79222
2.66649
2.5414
2.41664
2.292
2.16737
2.04268
1.91792
1.7931
1.66825
1.5434
1.41861
1.29392
1.16937
1.045
0.920831
0.796905
0.673245
0.549815
0.426802
0.303568
0.182215
0.0543833
5.46349
4.5418
4.29175
4.09211
3.91233
3.74749
3.59474
3.45042
3.31195
3.17778
3.04681
2.9182
2.79124
2.66539
2.54024
2.41546
2.29086
2.16629
2.04169
1.91703
1.7923
1.66755
1.54279
1.41808
1.29346
1.16897
1.04465
0.920535
0.796649
0.673021
0.549651
0.426642
0.303797
0.181797
0.0598043
5.57289
4.5198
4.28163
4.08679
3.90768
3.74449
3.59282
3.44911
3.31109
3.17729
3.04665
2.91833
2.79162
2.66597
2.54096
2.41628
2.29172
2.16716
2.04253
1.91781
1.79303
1.6682
1.54338
1.4186
1.29392
1.16937
1.04499
0.920834
0.796916
0.673266
0.549869
0.426857
0.30373
0.182186
0.0554729
5.48177
4.54985
4.28581
4.09054
3.90954
3.74626
3.59461
3.45087
3.3128
3.17893
3.0482
2.91976
2.79291
2.66709
2.5419
2.41704
2.29231
2.1676
2.04283
1.918
1.79313
1.66823
1.54336
1.41854
1.29383
1.16926
1.04488
0.920712
0.796782
0.673118
0.549679
0.426665
0.303378
0.182094
0.053508
5.48162
4.54991
4.28582
4.09056
3.90955
3.74626
3.59461
3.45087
3.3128
3.17893
3.0482
2.91976
2.7929
2.66709
2.5419
2.41704
2.29231
2.1676
2.04283
1.91801
1.79313
1.66824
1.54336
1.41854
1.29383
1.16926
1.04487
0.920699
0.796775
0.673132
0.549747
0.426782
0.303581
0.18229
0.0535572
5.35413
4.57999
4.30093
4.0974
3.91644
3.75045
3.597
3.45225
3.31345
3.179
3.04781
2.91901
2.7919
2.66592
2.54066
2.41581
2.29114
2.16653
2.0419
1.91721
1.79247
1.6677
1.54294
1.41823
1.2936
1.16911
1.04479
0.920671
0.796787
0.673159
0.549787
0.426759
0.303975
0.181776
0.0616723
5.50956
4.53274
4.28771
4.09022
3.9108
3.74648
3.59406
3.44992
3.31157
3.17749
3.04661
2.91806
2.79117
2.66536
2.54024
2.41549
2.2909
2.16634
2.04174
1.91707
1.79234
1.66757
1.54281
1.41809
1.29345
1.16896
1.04463
0.920503
0.796614
0.672984
0.549609
0.426596
0.303673
0.181794
0.0584009
5.44158
4.55775
4.2892
4.09236
3.91164
3.74736
3.59505
3.45091
3.31253
3.17843
3.04753
2.91898
2.79208
2.66626
2.54112
2.41633
2.2917
2.16708
2.04242
1.91769
1.7929
1.66808
1.54327
1.41851
1.29384
1.1693
1.04495
0.920795
0.796883
0.673233
0.549822
0.4268
0.303696
0.18207
0.056258
5.4519
4.54706
4.29168
4.09181
3.91229
3.74749
3.59475
3.45045
3.31199
3.17781
3.04684
2.91821
2.79124
2.66537
2.5402
2.41541
2.2908
2.16623
2.04162
1.91695
1.79223
1.66747
1.54272
1.41802
1.2934
1.16891
1.0446
0.920484
0.796601
0.672974
0.549599
0.426585
0.303744
0.181709
0.0601775
5.55926
4.52409
4.28275
4.08731
3.90826
3.74483
3.593
3.44922
3.31114
3.17729
3.0466
2.91822
2.79146
2.66577
2.54073
2.41603
2.29146
2.1669
2.04228
1.91759
1.79282
1.66801
1.54321
1.41845
1.29378
1.16925
1.04489
0.920735
0.796816
0.673157
0.549734
0.426706
0.303599
0.182023
0.056149
5.42095
4.55427
4.29459
4.09332
3.91345
3.74828
3.59531
3.45086
3.3123
3.17805
3.04701
2.91834
2.79133
2.66543
2.54024
2.41543
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.29341
1.16892
1.04461
0.920497
0.796616
0.672992
0.549625
0.426616
0.303821
0.181701
0.0609581
5.45502
4.54642
4.29133
4.09167
3.91217
3.74741
3.59471
3.45043
3.31198
3.17781
3.04684
2.91822
2.79125
2.66539
2.54023
2.41544
2.29083
2.16626
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29344
1.16895
1.04463
0.920517
0.796632
0.673003
0.549626
0.42661
0.303756
0.181739
0.0600279
5.43528
4.55074
4.29472
4.09317
3.91348
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.1689
1.04458
0.920471
0.796589
0.672965
0.549607
0.426611
0.303865
0.181703
0.0614979
5.46756
4.53996
4.29094
4.09172
3.91205
3.74729
3.5946
3.45031
3.31185
3.17769
3.04673
2.91813
2.79117
2.66532
2.54017
2.41539
2.29078
2.16622
2.04161
1.91694
1.79222
1.66746
1.5427
1.41799
1.29337
1.16888
1.04457
0.92045
0.796567
0.672941
0.549573
0.426566
0.303716
0.181733
0.0595949
5.34626
4.58411
4.30181
4.09809
3.91697
3.75089
3.59739
3.45261
3.31378
3.1793
3.04808
2.91926
2.79212
2.66613
2.54085
2.41599
2.29131
2.16669
2.04205
1.91736
1.79261
1.66784
1.54307
1.41836
1.29373
1.16923
1.04491
0.920786
0.796899
0.673268
0.549891
0.426857
0.304063
0.181863
0.0617028
5.45562
4.54539
4.28883
4.0917
3.91135
3.74699
3.59458
3.45039
3.312
3.1779
3.04702
2.91849
2.79161
2.66582
2.54071
2.41596
2.29136
2.16679
2.04216
1.91746
1.79271
1.66791
1.54312
1.41837
1.29371
1.16919
1.04484
0.920699
0.796797
0.673159
0.549776
0.426765
0.303742
0.182021
0.0569473
5.45663
4.55957
4.28724
4.09203
3.91081
3.74701
3.59509
3.45116
3.31294
3.17894
3.04811
2.91958
2.79269
2.66686
2.54167
2.41683
2.29214
2.16746
2.04273
1.91794
1.7931
1.66823
1.54338
1.41858
1.29389
1.16933
1.04496
0.920799
0.796877
0.673221
0.549797
0.426783
0.30357
0.182137
0.0545193
5.41844
4.55496
4.29389
4.09311
3.91321
3.74813
3.59522
3.45081
3.31226
3.17802
3.047
2.91833
2.79133
2.66544
2.54025
2.41545
2.29082
2.16624
2.04163
1.91696
1.79223
1.66748
1.54272
1.41802
1.2934
1.16891
1.0446
0.920484
0.796603
0.672977
0.549606
0.426591
0.303763
0.181688
0.0604885
5.45695
4.55051
4.29452
4.09299
3.91338
3.74824
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04156
1.9169
1.79218
1.66743
1.54268
1.41798
1.29337
1.16888
1.04457
0.92046
0.796578
0.672954
0.549597
0.426602
0.303859
0.181699
0.0614993
5.41505
4.56421
4.29235
4.09425
3.91318
3.74832
3.59566
3.45131
3.31279
3.17857
3.04758
2.91895
2.79199
2.66613
2.54096
2.41616
2.29152
2.16692
2.04227
1.91756
1.79279
1.66798
1.54319
1.41844
1.29378
1.16925
1.0449
0.92076
0.796858
0.673221
0.549839
0.426825
0.303828
0.182039
0.0574294
5.52145
4.53124
4.28714
4.08997
3.91054
3.7463
3.59394
3.44983
3.31151
3.17745
3.04659
2.91806
2.79117
2.66539
2.54027
2.41553
2.29094
2.16638
2.04178
1.91711
1.79237
1.6676
1.54283
1.41811
1.29347
1.16897
1.04464
0.920511
0.796621
0.672989
0.549614
0.426601
0.303657
0.181812
0.0580611
5.3626
4.58442
4.29849
4.09742
3.91584
3.75011
3.59697
3.45238
3.31369
3.17932
3.04819
2.91943
2.79234
2.66639
2.54114
2.41629
2.29162
2.16699
2.04233
1.91761
1.79284
1.66805
1.54325
1.41851
1.29386
1.16934
1.04499
0.920857
0.796959
0.673321
0.54994
0.426911
0.304003
0.182015
0.0593663
5.35959
4.5773
4.30043
4.09711
3.91616
3.75022
3.5968
3.45207
3.31329
3.17886
3.04769
2.9189
2.7918
2.66583
2.54058
2.41574
2.29108
2.16647
2.04184
1.91716
1.79242
1.66766
1.5429
1.41818
1.29356
1.16907
1.04475
0.920632
0.79675
0.673123
0.549753
0.426729
0.303942
0.181757
0.0614988
5.48637
4.54943
4.28609
4.09086
3.90989
3.74657
3.59489
3.4511
3.31297
3.17904
3.04826
2.91977
2.79289
2.66706
2.54187
2.41702
2.29231
2.16761
2.04287
1.91807
1.79321
1.66833
1.54347
1.41866
1.29395
1.16939
1.04501
0.92084
0.796909
0.673245
0.549804
0.426787
0.303498
0.182209
0.053679
5.48598
4.54969
4.28618
4.09093
3.90992
3.7466
3.59491
3.45111
3.31298
3.17905
3.04826
2.91977
2.79289
2.66706
2.54187
2.41702
2.29231
2.16761
2.04287
1.91807
1.79321
1.66833
1.54347
1.41866
1.29395
1.16939
1.045
0.920829
0.796904
0.673259
0.549871
0.4269
0.303695
0.182397
0.0537186
5.43866
4.5485
4.29428
4.09306
3.91333
3.74818
3.59521
3.45078
3.31223
3.17797
3.04694
2.91827
2.79125
2.66535
2.54016
2.41536
2.29073
2.16615
2.04155
1.91688
1.79216
1.6674
1.54266
1.41795
1.29334
1.16886
1.04455
0.920435
0.796553
0.672928
0.54957
0.426574
0.30382
0.181684
0.0612467
5.44288
4.54741
4.29406
4.09301
3.91329
3.74815
3.5952
3.45077
3.31223
3.17798
3.04695
2.91828
2.79128
2.66538
2.54019
2.41539
2.29078
2.1662
2.04159
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.0446
0.920485
0.796602
0.672976
0.549616
0.426618
0.303856
0.181733
0.0611693
5.45399
4.54728
4.29228
4.09204
3.91257
3.74768
3.59488
3.45054
3.31205
3.17785
3.04686
2.91822
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04456
0.920451
0.79657
0.672945
0.549577
0.426569
0.30376
0.181683
0.060619
5.47224
4.54731
4.29213
4.09192
3.91251
3.74765
3.59486
3.45053
3.31204
3.17785
3.04685
2.91821
2.79122
2.66534
2.54016
2.41537
2.29075
2.16618
2.04157
1.9169
1.79218
1.66742
1.54268
1.41797
1.29336
1.16887
1.04456
0.920449
0.796568
0.672943
0.549576
0.426569
0.303763
0.181684
0.0606554
5.5546
4.52275
4.2827
4.08743
3.90825
3.74486
3.59304
3.44924
3.31114
3.17727
3.04657
2.91819
2.79144
2.66576
2.54072
2.41602
2.29146
2.1669
2.04228
1.91758
1.79281
1.66801
1.5432
1.41844
1.29376
1.16923
1.04486
0.920713
0.796802
0.673158
0.549768
0.426757
0.303671
0.182059
0.0559459
5.43732
4.55769
4.2895
4.09235
3.91168
3.74731
3.59495
3.45079
3.31241
3.1783
3.04739
2.91883
2.79193
2.66611
2.54097
2.41619
2.29157
2.16696
2.04231
1.91759
1.79282
1.668
1.5432
1.41844
1.29378
1.16925
1.04489
0.920748
0.796838
0.673191
0.549782
0.426761
0.303677
0.182017
0.0565282
5.60578
4.50736
4.27864
4.085
3.90628
3.74366
3.59233
3.44884
3.311
3.17734
3.04684
2.91863
2.79201
2.66643
2.54145
2.41677
2.29219
2.16759
2.04292
1.91816
1.79333
1.66847
1.54361
1.4188
1.2941
1.16953
1.04514
0.92096
0.797015
0.673336
0.54989
0.42688
0.303656
0.182393
0.0543962
5.59849
4.5083
4.27884
4.08513
3.90632
3.74368
3.59233
3.44883
3.31097
3.17731
3.04679
2.91858
2.79197
2.66639
2.54141
2.41673
2.29216
2.16756
2.04289
1.91814
1.79331
1.66845
1.5436
1.41879
1.29408
1.16951
1.04512
0.920953
0.797025
0.673369
0.54996
0.426946
0.303724
0.182355
0.0543231
5.39768
4.58627
4.29262
4.09561
3.91355
3.74862
3.59614
3.45194
3.31355
3.17943
3.0485
2.91991
2.79294
2.66706
2.54183
2.41696
2.29225
2.16755
2.04282
1.91803
1.79319
1.66833
1.54348
1.41869
1.294
1.16944
1.04507
0.920915
0.796996
0.673343
0.549931
0.426906
0.303802
0.182126
0.056075
5.51894
4.5303
4.28669
4.08978
3.91036
3.7462
3.59389
3.4498
3.3115
3.17746
3.04662
2.9181
2.79124
2.66546
2.54036
2.41562
2.29104
2.16649
2.04189
1.91722
1.79248
1.66771
1.54294
1.41821
1.29357
1.16906
1.04472
0.920592
0.796697
0.673063
0.549683
0.426668
0.303705
0.18188
0.0578564
5.45064
4.54615
4.29023
4.09147
3.9117
3.74709
3.59451
3.45029
3.31188
3.17775
3.04682
2.91824
2.7913
2.66547
2.54032
2.41555
2.29095
2.16638
2.04177
1.9171
1.79237
1.66761
1.54285
1.41813
1.2935
1.16901
1.04468
0.920557
0.796666
0.673031
0.549643
0.426619
0.30369
0.181784
0.058883
5.57825
4.50981
4.27915
4.08538
3.90653
3.74379
3.59238
3.44883
3.31093
3.17724
3.0467
2.91846
2.79183
2.66623
2.54124
2.41656
2.29199
2.1674
2.04274
1.918
1.79318
1.66833
1.54349
1.41869
1.29399
1.16943
1.04504
0.920874
0.796951
0.673298
0.549895
0.426884
0.303684
0.182284
0.0545004
5.58188
4.50853
4.27883
4.0852
3.90647
3.74375
3.59236
3.44883
3.31095
3.17727
3.04673
2.91849
2.79186
2.66626
2.54127
2.41658
2.29201
2.16742
2.04275
1.918
1.79319
1.66833
1.54349
1.41869
1.29399
1.16943
1.04505
0.920872
0.796934
0.673259
0.549818
0.426805
0.303593
0.182282
0.0545643
5.26525
4.64058
4.30933
4.10376
3.92078
3.75302
3.59892
3.45394
3.31502
3.18051
3.04928
2.92046
2.79333
2.66733
2.54204
2.41715
2.29244
2.16777
2.04308
1.91833
1.79353
1.6687
1.54389
1.41912
1.29445
1.16991
1.04554
0.921388
0.797469
0.673809
0.550403
0.427338
0.304474
0.18233
0.0611062
5.52044
4.52947
4.28625
4.08955
3.91014
3.74605
3.59378
3.44972
3.31144
3.17741
3.04658
2.91808
2.79123
2.66546
2.54036
2.41563
2.29106
2.1665
2.0419
1.91722
1.79249
1.66771
1.54294
1.41821
1.29356
1.16905
1.04471
0.920581
0.796685
0.67305
0.54967
0.426655
0.30368
0.181877
0.0576223
5.30722
4.61359
4.30494
4.10109
3.91859
3.75181
3.59816
3.45336
3.31453
3.18005
3.04884
2.91999
2.79283
2.66681
2.5415
2.41659
2.29188
2.16721
2.04253
1.9178
1.79301
1.66821
1.54341
1.41866
1.294
1.16948
1.04513
0.920992
0.797092
0.673451
0.550065
0.427019
0.30416
0.182044
0.0606222
5.50914
4.53132
4.28549
4.08887
3.90956
3.74565
3.59353
3.44958
3.31138
3.17742
3.04663
2.91817
2.79134
2.66559
2.54051
2.41579
2.29122
2.16666
2.04206
1.91738
1.79264
1.66786
1.54307
1.41834
1.29369
1.16917
1.04483
0.920686
0.796778
0.673128
0.549718
0.426688
0.303651
0.181933
0.0572469
5.45732
4.54902
4.2943
4.09299
3.91333
3.74819
3.59523
3.4508
3.31224
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41797
1.29336
1.16888
1.04457
0.920456
0.796573
0.672949
0.54959
0.426595
0.303845
0.181704
0.0613319
5.46351
4.54758
4.29389
4.09285
3.9132
3.7481
3.59516
3.45075
3.31221
3.17796
3.04694
2.91827
2.79126
2.66537
2.54018
2.41538
2.29077
2.16619
2.04158
1.91692
1.7922
1.66744
1.5427
1.41799
1.29338
1.1689
1.04459
0.920474
0.796591
0.672966
0.549606
0.426608
0.303849
0.181727
0.0611624
5.56125
4.51257
4.28014
4.08592
3.90682
3.74396
3.59247
3.44888
3.31095
3.17723
3.04668
2.91842
2.79177
2.66617
2.54118
2.4165
2.29193
2.16734
2.04269
1.91795
1.79314
1.66829
1.54345
1.41865
1.29395
1.1694
1.04501
0.920848
0.796926
0.673275
0.549873
0.426865
0.30367
0.182271
0.0545323
5.568
4.51043
4.27927
4.08543
3.90662
3.74384
3.59241
3.44886
3.31096
3.17726
3.04672
2.91847
2.79182
2.66622
2.54122
2.41654
2.29197
2.16738
2.04272
1.91797
1.79316
1.66831
1.54346
1.41867
1.29397
1.16941
1.04503
0.92086
0.796924
0.673251
0.549811
0.426795
0.303587
0.182259
0.0546358
5.42836
4.55099
4.29275
4.09334
3.91294
3.74798
3.59518
3.45079
3.31226
3.17805
3.04706
2.91843
2.79147
2.66561
2.54045
2.41567
2.29105
2.16648
2.04186
1.91719
1.79245
1.66768
1.54291
1.41819
1.29356
1.16906
1.04473
0.920602
0.796713
0.673083
0.549709
0.426694
0.303787
0.181859
0.0589207
5.34701
4.58521
4.30132
4.09779
3.91672
3.75067
3.5972
3.45244
3.31363
3.17917
3.04797
2.91916
2.79204
2.66605
2.54078
2.41592
2.29125
2.16663
2.04199
1.9173
1.79255
1.66778
1.54302
1.4183
1.29367
1.16918
1.04485
0.920732
0.796846
0.673215
0.549836
0.426803
0.304001
0.181818
0.0615609
5.40042
4.5872
4.29243
4.09569
3.91346
3.74857
3.59613
3.45195
3.31357
3.17948
3.04857
2.92
2.79306
2.66719
2.54198
2.41712
2.2924
2.1677
2.04296
1.91816
1.79331
1.66843
1.54357
1.41877
1.29407
1.16951
1.04513
0.920965
0.797042
0.673385
0.549969
0.426943
0.303818
0.182172
0.0557757
5.41198
4.55815
4.29393
4.09428
3.91364
3.74853
3.59565
3.4512
3.31261
3.17834
3.04731
2.91865
2.79166
2.66578
2.5406
2.4158
2.29117
2.16658
2.04196
1.91727
1.79253
1.66775
1.54298
1.41825
1.29361
1.16911
1.04477
0.920643
0.796752
0.673121
0.549745
0.426727
0.303813
0.181882
0.0589197
5.29063
4.62442
4.30666
4.10234
3.91946
3.75229
3.59849
3.45363
3.31479
3.18034
3.04915
2.92034
2.7932
2.66719
2.54189
2.41698
2.29226
2.16759
2.04289
1.91814
1.79335
1.66853
1.54371
1.41895
1.29428
1.16974
1.04537
0.921221
0.797308
0.673654
0.550258
0.427201
0.30433
0.182202
0.0606159
5.43151
4.55252
4.29182
4.09252
3.91247
3.74763
3.59492
3.4506
3.31213
3.17795
3.04698
2.91836
2.7914
2.66555
2.54038
2.4156
2.29099
2.16641
2.0418
1.91713
1.79239
1.66763
1.54287
1.41815
1.29352
1.16903
1.0447
0.920576
0.796686
0.673052
0.549665
0.426642
0.303723
0.181793
0.0591023
5.59791
4.50921
4.27897
4.08522
3.90641
3.74374
3.59237
3.44884
3.31097
3.1773
3.04678
2.91856
2.79193
2.66634
2.54136
2.41669
2.29211
2.16752
2.04286
1.91811
1.79329
1.66843
1.54357
1.41877
1.29406
1.1695
1.04511
0.920939
0.797012
0.673357
0.549949
0.426936
0.303723
0.182339
0.0544162
5.59843
4.50729
4.27852
4.08501
3.90633
3.74368
3.59234
3.44884
3.31099
3.17732
3.04681
2.91859
2.79197
2.66637
2.54139
2.41671
2.29213
2.16754
2.04287
1.91811
1.79329
1.66843
1.54357
1.41877
1.29407
1.1695
1.04511
0.920934
0.796991
0.673313
0.549869
0.426856
0.303636
0.182352
0.0544633
5.59997
4.50884
4.27885
4.08514
3.90643
3.74372
3.59234
3.44881
3.31093
3.17725
3.04672
2.91848
2.79184
2.66624
2.54125
2.41657
2.29199
2.1674
2.04273
1.91798
1.79317
1.66831
1.54347
1.41867
1.29397
1.16941
1.04503
0.920856
0.796918
0.673245
0.549804
0.42679
0.30358
0.182271
0.0545553
5.59747
4.51033
4.27919
4.08532
3.90649
3.74376
3.59235
3.4488
3.3109
3.17721
3.04667
2.91843
2.79179
2.66618
2.54119
2.41651
2.29194
2.16735
2.04269
1.91795
1.79314
1.66829
1.54344
1.41865
1.29395
1.16939
1.045
0.920839
0.796917
0.673266
0.549864
0.426854
0.303657
0.182254
0.0545007
5.43245
4.54793
4.29356
4.09298
3.91306
3.74798
3.59509
3.45068
3.31214
3.17791
3.0469
2.91825
2.79126
2.66538
2.5402
2.4154
2.29079
2.16621
2.0416
1.91694
1.79221
1.66746
1.5427
1.418
1.29338
1.16889
1.04458
0.920466
0.796584
0.672959
0.549596
0.426589
0.303781
0.181716
0.0603971
5.48455
4.53597
4.28599
4.08996
3.90991
3.74602
3.59389
3.44988
3.31162
3.17764
3.04685
2.9184
2.7916
2.66587
2.5408
2.41608
2.29149
2.16692
2.04229
1.91759
1.79281
1.66801
1.5432
1.41844
1.29377
1.16924
1.04488
0.920728
0.79682
0.673178
0.549791
0.426783
0.303703
0.182092
0.056041
5.20572
4.66691
4.31898
4.10799
3.92461
3.75543
3.60044
3.45507
3.3159
3.18119
3.04982
2.92089
2.79368
2.66762
2.5423
2.4174
2.2927
2.16805
2.04338
1.91866
1.79389
1.66908
1.54427
1.41951
1.29484
1.1703
1.04594
0.921787
0.797873
0.674216
0.55082
0.427752
0.304986
0.182771
0.0639823
5.44675
4.54363
4.29181
4.0923
3.91239
3.74753
3.59479
3.45047
3.31199
3.17781
3.04685
2.91823
2.79128
2.66543
2.54027
2.4155
2.2909
2.16633
2.04173
1.91706
1.79233
1.66757
1.54282
1.4181
1.29348
1.16899
1.04467
0.920548
0.796662
0.673034
0.549663
0.426651
0.303786
0.181809
0.0595133
5.58861
4.50477
4.2784
4.08482
3.90603
3.7435
3.59222
3.44876
3.31094
3.17731
3.04683
2.91865
2.79206
2.66649
2.54152
2.41684
2.29226
2.16766
2.04298
1.91821
1.79337
1.6685
1.54364
1.41883
1.29412
1.16954
1.04515
0.920978
0.797049
0.673391
0.549977
0.426962
0.303711
0.182397
0.0540129
5.59216
4.50366
4.27816
4.08468
3.90596
3.74345
3.5922
3.44875
3.31094
3.17732
3.04684
2.91866
2.79207
2.6665
2.54153
2.41685
2.29226
2.16765
2.04297
1.9182
1.79337
1.6685
1.54363
1.41882
1.29411
1.16954
1.04515
0.920964
0.797014
0.673333
0.549888
0.426894
0.303666
0.182475
0.0541151
5.47249
4.54229
4.2866
4.09037
3.91025
3.74631
3.59417
3.45015
3.31188
3.17788
3.04707
2.91859
2.79176
2.66601
2.54092
2.41617
2.29157
2.16698
2.04234
1.91763
1.79285
1.66804
1.54323
1.41847
1.2938
1.16926
1.04491
0.920755
0.79684
0.673188
0.549772
0.426751
0.303631
0.182062
0.0560058
5.34413
4.58843
4.30133
4.09835
3.91684
3.75075
3.59732
3.45258
3.31378
3.17933
3.04814
2.91933
2.79221
2.66623
2.54096
2.41609
2.29142
2.16679
2.04214
1.91744
1.79268
1.6679
1.54312
1.4184
1.29376
1.16925
1.04492
0.920792
0.796903
0.67327
0.549892
0.426857
0.30402
0.181898
0.0608295
5.41323
4.55492
4.29604
4.09409
3.91405
3.74869
3.59559
3.45107
3.31246
3.17816
3.0471
2.9184
2.79136
2.66545
2.54025
2.41544
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.29341
1.16893
1.04461
0.9205
0.796618
0.672994
0.549633
0.42663
0.303871
0.181712
0.0613932
5.53189
4.52267
4.28284
4.08761
3.90834
3.74492
3.59308
3.44927
3.31117
3.1773
3.0466
2.91822
2.79147
2.66579
2.54075
2.41606
2.29149
2.16693
2.04231
1.91761
1.79284
1.66803
1.54322
1.41846
1.29379
1.16925
1.04488
0.920733
0.796822
0.673177
0.549787
0.426775
0.303686
0.182081
0.0559146
5.5273
4.52379
4.28322
4.08781
3.90851
3.74502
3.59314
3.4493
3.31118
3.17729
3.04658
2.91819
2.79142
2.66573
2.54069
2.41599
2.29143
2.16687
2.04225
1.91755
1.79279
1.66798
1.54318
1.41842
1.29375
1.16922
1.04485
0.920704
0.796795
0.673152
0.549762
0.426751
0.303673
0.182048
0.0560647
5.36034
4.59891
4.29667
4.09754
3.91535
3.74968
3.59677
3.45235
3.31379
3.17954
3.04851
2.91982
2.79278
2.66685
2.5416
2.41673
2.29203
2.16736
2.04266
1.9179
1.79309
1.66826
1.54343
1.41866
1.29398
1.16944
1.04508
0.920926
0.797013
0.673365
0.549962
0.426929
0.303917
0.182066
0.0576251
5.46451
4.5386
4.28985
4.09146
3.91161
3.74702
3.59444
3.4502
3.31179
3.17766
3.04675
2.91818
2.79125
2.66544
2.5403
2.41554
2.29095
2.16639
2.04178
1.91711
1.79238
1.66761
1.54285
1.41813
1.2935
1.169
1.04467
0.920546
0.796657
0.673027
0.549653
0.42664
0.303724
0.18183
0.0586246
5.38951
4.58901
4.29306
4.0963
3.9139
3.74878
3.59622
3.45197
3.31355
3.17943
3.04852
2.91994
2.793
2.66714
2.54194
2.41709
2.29239
2.1677
2.04297
1.91818
1.79333
1.66846
1.54361
1.4188
1.2941
1.16954
1.04516
0.920994
0.797073
0.673422
0.55003
0.427016
0.303953
0.182249
0.0560678
5.28782
4.6199
4.30796
4.10217
3.91967
3.75252
3.59861
3.45369
3.31479
3.18026
3.049
2.92013
2.79295
2.6669
2.54158
2.41666
2.29194
2.16727
2.04259
1.91786
1.79308
1.66828
1.54348
1.41874
1.29408
1.16956
1.04522
0.921084
0.797186
0.673544
0.550156
0.427103
0.304289
0.182089
0.0619206
5.512
4.52834
4.28578
4.08933
3.90986
3.74588
3.59369
3.44968
3.31142
3.17743
3.04663
2.91816
2.79133
2.66559
2.54051
2.4158
2.29123
2.16667
2.04207
1.91739
1.79265
1.66786
1.54308
1.41834
1.29369
1.16917
1.04482
0.92068
0.796778
0.673139
0.549753
0.426737
0.303727
0.181978
0.0571853
5.3621
4.58293
4.29883
4.09739
3.91592
3.75015
3.59694
3.45232
3.31359
3.1792
3.04806
2.91929
2.7922
2.66625
2.541
2.41614
2.29148
2.16685
2.0422
1.91749
1.79273
1.66794
1.54316
1.41842
1.29378
1.16926
1.04492
0.920792
0.796897
0.673263
0.549884
0.426854
0.303967
0.181945
0.0597123
5.45392
4.54178
4.29108
4.09212
3.91214
3.74738
3.59469
3.45039
3.31193
3.17777
3.04682
2.91823
2.79129
2.66545
2.5403
2.41554
2.29094
2.16637
2.04176
1.91709
1.79236
1.6676
1.54284
1.41812
1.29349
1.16899
1.04467
0.920545
0.796658
0.673028
0.549656
0.426643
0.303747
0.18182
0.0589777
5.35126
4.59665
4.29907
4.09849
3.9163
3.75038
3.59724
3.45267
3.31399
3.17964
3.04852
2.91977
2.79268
2.66672
2.54145
2.41658
2.29188
2.16723
2.04255
1.91781
1.79301
1.66819
1.54338
1.41862
1.29395
1.16942
1.04506
0.920911
0.797005
0.673362
0.549977
0.426947
0.304009
0.182061
0.0586659
5.37036
4.57751
4.29778
4.09605
3.91517
3.74954
3.59636
3.45177
3.31308
3.17873
3.04761
2.91887
2.79181
2.66587
2.54063
2.4158
2.29115
2.16654
2.0419
1.91721
1.79247
1.6677
1.54293
1.41821
1.29358
1.16909
1.04476
0.920639
0.796752
0.673121
0.549741
0.426713
0.303852
0.181784
0.0603184
5.51361
4.52723
4.28517
4.08898
3.90957
3.74568
3.59355
3.44956
3.31132
3.17734
3.04655
2.91808
2.79126
2.66551
2.54044
2.41572
2.29114
2.16659
2.04198
1.9173
1.79255
1.66776
1.54298
1.41824
1.29359
1.16907
1.04472
0.920584
0.796685
0.673048
0.549666
0.426655
0.303639
0.181912
0.0569589
5.53263
4.52728
4.28503
4.08888
3.90954
3.74567
3.59355
3.44957
3.31133
3.17736
3.04656
2.9181
2.79128
2.66554
2.54046
2.41575
2.29118
2.16662
2.04201
1.91733
1.79259
1.6678
1.54302
1.41828
1.29362
1.1691
1.04476
0.920617
0.796717
0.673079
0.549696
0.426682
0.303666
0.181934
0.0569924
5.45915
4.53994
4.28981
4.09157
3.9116
3.74702
3.59446
3.45022
3.31181
3.17768
3.04677
2.9182
2.79128
2.66547
2.54034
2.41558
2.29099
2.16642
2.04182
1.91714
1.79241
1.66764
1.54287
1.41815
1.29351
1.16901
1.04467
0.920548
0.796658
0.673027
0.549652
0.426639
0.303706
0.181835
0.0583399
5.49423
4.53088
4.28599
4.08953
3.90989
3.74592
3.59374
3.44972
3.31146
3.17747
3.04667
2.9182
2.79138
2.66564
2.54056
2.41584
2.29127
2.16671
2.0421
1.91742
1.79267
1.66788
1.54309
1.41835
1.29369
1.16917
1.04482
0.920675
0.796772
0.673133
0.549748
0.426735
0.303707
0.181995
0.056881
5.24453
4.6462
4.31344
4.10537
3.92217
3.75396
3.59952
3.45438
3.31535
3.18075
3.04945
2.92057
2.79339
2.66736
2.54204
2.41712
2.29239
2.16772
2.04302
1.91827
1.79348
1.66866
1.54385
1.41909
1.29442
1.16989
1.04554
0.921392
0.797485
0.673834
0.550441
0.427378
0.304577
0.18236
0.0626001
5.25767
4.64119
4.31136
4.10463
3.92141
3.75347
3.59922
3.45416
3.31519
3.18063
3.04938
2.92052
2.79336
2.66733
2.54202
2.4171
2.29236
2.16768
2.04298
1.91823
1.79343
1.6686
1.54379
1.41903
1.29436
1.16983
1.04547
0.921323
0.797415
0.673764
0.550369
0.427307
0.304478
0.182287
0.0617151
5.43085
4.54928
4.29437
4.09333
3.91337
3.74819
3.59523
3.45079
3.31223
3.17798
3.04696
2.91829
2.79128
2.6654
2.54021
2.41541
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.92048
0.796598
0.672972
0.54961
0.426606
0.303817
0.181721
0.0607517
5.21345
4.66318
4.31777
4.10752
3.92411
3.75512
3.60025
3.45493
3.31578
3.1811
3.04975
2.92083
2.79363
2.66759
2.54228
2.41738
2.29269
2.16804
2.04338
1.91866
1.79389
1.66908
1.54428
1.41952
1.29485
1.17031
1.04595
0.921796
0.797883
0.674228
0.550833
0.427766
0.30499
0.182771
0.0635834
5.42228
4.56884
4.29071
4.09366
3.91248
3.74797
3.59559
3.4514
3.31299
3.17884
3.0479
2.9193
2.79235
2.6665
2.54132
2.4165
2.29184
2.1672
2.04252
1.91777
1.79297
1.66814
1.54332
1.41855
1.29387
1.16933
1.04497
0.920822
0.796909
0.67326
0.549851
0.426829
0.303731
0.182075
0.0563197
5.21266
4.6634
4.31781
4.10736
3.92412
3.75513
3.60023
3.45492
3.31577
3.18109
3.04973
2.92081
2.7936
2.66755
2.54223
2.41733
2.29262
2.16797
2.04329
1.91857
1.79379
1.66898
1.54417
1.41942
1.29475
1.17022
1.04586
0.92171
0.7978
0.674146
0.550752
0.427686
0.304917
0.1827
0.0638102
5.31727
4.62089
4.3018
4.10059
3.91776
3.75114
3.59775
3.45312
3.31443
3.1801
3.04901
2.9203
2.79326
2.66732
2.54207
2.4172
2.2925
2.16782
2.04311
1.91834
1.79352
1.66866
1.54381
1.41902
1.29432
1.16975
1.04537
0.921199
0.79727
0.673606
0.550192
0.42714
0.304172
0.182194
0.0585804
5.37427
4.59648
4.29509
4.09706
3.91472
3.74931
3.59659
3.45227
3.3138
3.17962
3.04865
2.92002
2.79303
2.66713
2.54189
2.41702
2.2923
2.16761
2.04289
1.9181
1.79326
1.6684
1.54355
1.41876
1.29406
1.16951
1.04514
0.920979
0.79706
0.673406
0.549996
0.426966
0.303902
0.182136
0.0567384
5.47383
4.5539
4.2862
4.09135
3.91023
3.7467
3.59492
3.45108
3.31291
3.17896
3.04815
2.91964
2.79275
2.66692
2.54174
2.4169
2.29221
2.16752
2.04279
1.918
1.79315
1.66828
1.54342
1.41862
1.29391
1.16935
1.04497
0.920804
0.796884
0.67324
0.549852
0.426873
0.30369
0.182322
0.0540491
5.47356
4.55407
4.28626
4.09131
3.91022
3.74669
3.59491
3.45107
3.31291
3.17896
3.04815
2.91964
2.79276
2.66693
2.54175
2.41691
2.2922
2.16752
2.04278
1.91799
1.79314
1.66826
1.54341
1.41861
1.29391
1.16935
1.04497
0.920806
0.79688
0.673222
0.549791
0.426776
0.303524
0.182165
0.0540424
5.4677
4.54171
4.28743
4.09092
3.91068
3.74655
3.59428
3.45017
3.31184
3.17779
3.04695
2.91846
2.79161
2.66585
2.54076
2.41602
2.29143
2.16685
2.04222
1.91752
1.79275
1.66795
1.54315
1.4184
1.29373
1.1692
1.04485
0.920704
0.796799
0.673159
0.549775
0.426766
0.303713
0.182052
0.0564326
5.48368
4.55111
4.28631
4.09118
3.91012
3.74672
3.59499
3.45116
3.31301
3.17907
3.04827
2.91978
2.79289
2.66707
2.54188
2.41704
2.29233
2.16763
2.04289
1.91809
1.79324
1.66836
1.5435
1.41869
1.29398
1.16942
1.04503
0.92086
0.796936
0.673289
0.5499
0.426925
0.303723
0.182406
0.0538362
5.48407
4.55077
4.28621
4.09108
3.91007
3.74668
3.59496
3.45114
3.313
3.17906
3.04827
2.91978
2.7929
2.66707
2.54188
2.41703
2.29232
2.16763
2.04289
1.91808
1.79323
1.66835
1.54349
1.41868
1.29398
1.16941
1.04503
0.920865
0.796934
0.673271
0.549832
0.426816
0.303535
0.182227
0.0538048
5.44517
4.54638
4.29344
4.09277
3.91296
3.74791
3.59502
3.45063
3.3121
3.17788
3.04687
2.91822
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04158
1.91691
1.79219
1.66743
1.54268
1.41798
1.29336
1.16888
1.04456
0.92045
0.796568
0.672942
0.54958
0.426578
0.303785
0.181707
0.0605871
5.40663
4.56231
4.29414
4.09458
3.91374
3.7486
3.59572
3.45127
3.31269
3.17842
3.04739
2.91873
2.79173
2.66585
2.54066
2.41586
2.29123
2.16664
2.04201
1.91732
1.79257
1.66779
1.54301
1.41828
1.29364
1.16913
1.04479
0.920664
0.796772
0.673141
0.549765
0.426748
0.303821
0.18191
0.0586862
5.47703
4.55404
4.28636
4.09123
3.91005
3.7466
3.59488
3.45109
3.31298
3.17907
3.04832
2.91986
2.79299
2.66717
2.54198
2.41711
2.29238
2.16767
2.04291
1.91808
1.79321
1.66832
1.54345
1.41863
1.29392
1.16936
1.04497
0.920801
0.796871
0.673208
0.549771
0.426755
0.303477
0.182159
0.0537213
5.4763
4.55435
4.28642
4.09133
3.9101
3.74664
3.59491
3.4511
3.31297
3.17906
3.0483
2.91984
2.79298
2.66716
2.54197
2.41711
2.29239
2.16767
2.04292
1.91809
1.79322
1.66833
1.54346
1.41864
1.29393
1.16936
1.04496
0.920793
0.796867
0.673221
0.549832
0.426859
0.303662
0.182337
0.0537499
5.34685
4.5842
4.30172
4.09811
3.91691
3.75082
3.59733
3.45256
3.31373
3.17926
3.04806
2.91924
2.79211
2.66612
2.54085
2.41598
2.29131
2.16669
2.04205
1.91735
1.79261
1.66783
1.54307
1.41835
1.29372
1.16922
1.04489
0.920774
0.796888
0.673257
0.549881
0.426848
0.304047
0.181861
0.0615314
5.4293
4.54953
4.29422
4.0933
3.9133
3.74814
3.59519
3.45076
3.3122
3.17796
3.04694
2.91827
2.79127
2.66539
2.5402
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.5427
1.41799
1.29338
1.16889
1.04458
0.920464
0.796583
0.672958
0.549595
0.426589
0.30379
0.181707
0.0605707
5.19582
4.67217
4.32036
4.10856
3.92523
3.7558
3.60066
3.45524
3.31603
3.18129
3.0499
2.92096
2.79374
2.66767
2.54235
2.41744
2.29274
2.16809
2.04343
1.91872
1.79396
1.66917
1.54438
1.41964
1.29499
1.17047
1.04612
0.921973
0.798066
0.674415
0.551023
0.427958
0.305204
0.182999
0.0644766
5.45303
4.54814
4.29274
4.09225
3.91272
3.74778
3.59495
3.4506
3.3121
3.17789
3.0469
2.91825
2.79126
2.66538
2.5402
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.2934
1.16892
1.0446
0.92049
0.796608
0.672982
0.549615
0.426607
0.303805
0.181716
0.0607545
5.44535
4.54643
4.29031
4.0923
3.91198
3.74736
3.59478
3.4505
3.31205
3.1779
3.04697
2.91839
2.79147
2.66565
2.54052
2.41576
2.29115
2.16658
2.04196
1.91727
1.79252
1.66774
1.54296
1.41823
1.29358
1.16907
1.04473
0.920598
0.796703
0.673071
0.549694
0.426681
0.303711
0.181898
0.057777
5.35152
4.59292
4.29919
4.0982
3.91625
3.75037
3.59721
3.45263
3.31395
3.17959
3.04846
2.91971
2.79262
2.66666
2.5414
2.41653
2.29184
2.1672
2.04252
1.91779
1.79301
1.66819
1.54339
1.41863
1.29396
1.16944
1.04508
0.920936
0.797031
0.673389
0.550004
0.426971
0.304047
0.18207
0.0590838
5.52734
4.52223
4.28226
4.0876
3.90795
3.74479
3.5931
3.44935
3.31131
3.1775
3.04687
2.91856
2.79187
2.66623
2.54121
2.41651
2.29193
2.16734
2.04268
1.91794
1.79314
1.66829
1.54345
1.41866
1.29397
1.16941
1.04503
0.920865
0.796944
0.673294
0.549896
0.426894
0.303707
0.182312
0.0545683
5.52778
4.52181
4.28208
4.08741
3.90786
3.74472
3.59306
3.44933
3.31131
3.17751
3.04689
2.91858
2.79189
2.66624
2.54122
2.41652
2.29194
2.16734
2.04268
1.91794
1.79313
1.66828
1.54344
1.41866
1.29396
1.16941
1.04503
0.920861
0.796929
0.673261
0.549826
0.426813
0.303595
0.182264
0.0545953
5.41739
4.55374
4.295
4.09334
3.91358
3.74838
3.59536
3.45091
3.31233
3.17806
3.04701
2.91833
2.7913
2.6654
2.54019
2.41538
2.29076
2.16618
2.04156
1.9169
1.79217
1.66742
1.54267
1.41797
1.29336
1.16888
1.04456
0.920452
0.796571
0.672949
0.54959
0.42659
0.303832
0.181669
0.0614316
5.50474
4.53195
4.28562
4.08891
3.90964
3.74569
3.59353
3.44955
3.31133
3.17735
3.04654
2.91806
2.79121
2.66544
2.54034
2.41561
2.29103
2.16646
2.04186
1.91718
1.79244
1.66766
1.54289
1.41816
1.29351
1.169
1.04467
0.920533
0.796633
0.67299
0.549587
0.426562
0.303545
0.181805
0.0573789
5.41998
4.55369
4.29482
4.09325
3.9135
3.74831
3.59532
3.45088
3.31231
3.17805
3.04701
2.91833
2.79131
2.66541
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.0446
0.920487
0.796606
0.672983
0.549622
0.42662
0.303852
0.1817
0.0613266
5.45231
4.55843
4.28759
4.0924
3.91128
3.74731
3.59522
3.45117
3.31283
3.17875
3.04786
2.91931
2.79241
2.66659
2.54142
2.41661
2.29195
2.1673
2.0426
1.91784
1.79302
1.66817
1.54334
1.41856
1.29387
1.16932
1.04495
0.920797
0.796884
0.673242
0.549856
0.426861
0.303738
0.182223
0.0550836
5.36937
4.58944
4.29649
4.09727
3.91523
3.74969
3.59677
3.45232
3.31374
3.17946
3.0484
2.9197
2.79266
2.66673
2.54148
2.41662
2.29193
2.16728
2.04259
1.91784
1.79304
1.66821
1.54339
1.41862
1.29395
1.16941
1.04505
0.920906
0.796999
0.673357
0.549972
0.426949
0.303975
0.182109
0.0578774
5.25328
4.64497
4.31143
4.10496
3.92163
3.75357
3.59929
3.45423
3.31525
3.1807
3.04945
2.92061
2.79348
2.66749
2.54221
2.41733
2.29263
2.16798
2.0433
1.91856
1.79377
1.66895
1.54413
1.41937
1.29469
1.17015
1.04578
0.921619
0.797698
0.674035
0.55063
0.427559
0.30471
0.182527
0.0615053
5.47706
4.53608
4.2894
4.09107
3.91154
3.74697
3.59439
3.45016
3.31175
3.17762
3.0467
2.91811
2.79118
2.66535
2.54021
2.41545
2.29085
2.16628
2.04168
1.91701
1.79229
1.66753
1.54277
1.41805
1.29343
1.16894
1.04461
0.920494
0.796608
0.67298
0.549608
0.426598
0.303715
0.181779
0.0590987
5.40086
4.56085
4.29627
4.09438
3.91421
3.74882
3.59571
3.45118
3.31255
3.17825
3.04718
2.91847
2.79143
2.66552
2.54031
2.4155
2.29087
2.16628
2.04167
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16895
1.04464
0.920526
0.796644
0.67302
0.549652
0.426639
0.303844
0.181702
0.0611032
5.34501
4.59431
4.30045
4.09853
3.91657
3.7505
3.59718
3.45251
3.31376
3.17936
3.0482
2.91941
2.79231
2.66634
2.54108
2.41622
2.29154
2.1669
2.04224
1.91752
1.79276
1.66796
1.54317
1.41843
1.29378
1.16926
1.04492
0.920787
0.796892
0.673257
0.549879
0.426848
0.303956
0.181933
0.059609
5.49315
4.53283
4.28564
4.08899
3.9096
3.74567
3.59354
3.44958
3.31137
3.1774
3.0466
2.91813
2.79129
2.66554
2.54046
2.41573
2.29115
2.16659
2.04198
1.9173
1.79255
1.66777
1.54299
1.41825
1.29361
1.16909
1.04475
0.92061
0.796705
0.673058
0.549651
0.426625
0.303587
0.181879
0.0571338
5.57992
4.50586
4.27874
4.085
3.90616
3.74358
3.59227
3.4488
3.31096
3.17733
3.04684
2.91865
2.79204
2.66647
2.54149
2.41681
2.29223
2.16763
2.04295
1.91818
1.79335
1.66848
1.54362
1.41881
1.29411
1.16954
1.04515
0.920962
0.797014
0.673334
0.549889
0.42689
0.30366
0.182449
0.0541763
5.42581
4.55153
4.29521
4.0937
3.91365
3.74839
3.59536
3.45089
3.31231
3.17805
3.04701
2.91833
2.79132
2.66542
2.54023
2.41543
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41803
1.29341
1.16893
1.04461
0.920499
0.796616
0.672991
0.549629
0.426625
0.303848
0.18173
0.0610045
5.58866
4.50436
4.27814
4.08474
3.90606
3.74352
3.59224
3.44879
3.31097
3.17734
3.04685
2.91866
2.79206
2.66648
2.5415
2.41682
2.29224
2.16763
2.04295
1.91819
1.79335
1.66849
1.54362
1.41882
1.29411
1.16954
1.04515
0.920963
0.797015
0.673334
0.549889
0.426887
0.303659
0.182437
0.054219
5.5779
4.50775
4.27906
4.08521
3.9063
3.74366
3.59231
3.44881
3.31096
3.17731
3.04681
2.91861
2.792
2.66642
2.54145
2.41677
2.29219
2.1676
2.04292
1.91817
1.79334
1.66847
1.54361
1.41881
1.2941
1.16953
1.04514
0.920964
0.797035
0.673379
0.549968
0.426954
0.303719
0.182378
0.0541762
5.56773
4.50823
4.27929
4.08538
3.90641
3.74374
3.59238
3.44886
3.311
3.17734
3.04683
2.91862
2.792
2.66642
2.54144
2.41675
2.29217
2.16757
2.0429
1.91814
1.79331
1.66844
1.54358
1.41878
1.29407
1.16951
1.04512
0.920939
0.796994
0.673316
0.549872
0.42687
0.303638
0.18241
0.0542128
5.49024
4.54609
4.2857
4.09042
3.90959
3.74632
3.59464
3.45084
3.31271
3.17879
3.04803
2.91957
2.79273
2.66693
2.54178
2.41695
2.29226
2.16757
2.04284
1.91804
1.79318
1.6683
1.54344
1.41863
1.29392
1.16936
1.04497
0.920801
0.796877
0.673232
0.549844
0.426876
0.303668
0.182382
0.0536773
5.49042
4.54596
4.28567
4.0904
3.90958
3.74631
3.59463
3.45083
3.31271
3.17879
3.04803
2.91957
2.79272
2.66693
2.54177
2.41695
2.29225
2.16757
2.04283
1.91803
1.79318
1.6683
1.54344
1.41863
1.29392
1.16936
1.04498
0.920812
0.79688
0.673215
0.549772
0.426757
0.303466
0.182193
0.0536331
5.55233
4.51764
4.28111
4.08664
3.90757
3.74443
3.59277
3.44907
3.31105
3.17726
3.04662
2.9183
2.79159
2.66594
2.54093
2.41624
2.29168
2.16712
2.04249
1.91777
1.79298
1.66816
1.54334
1.41856
1.29388
1.16933
1.04496
0.920797
0.79688
0.673231
0.549836
0.426826
0.303697
0.182163
0.0553911
5.45448
4.55195
4.28793
4.09154
3.911
3.74691
3.59471
3.45063
3.31231
3.17825
3.04739
2.91887
2.792
2.66621
2.54109
2.41631
2.29169
2.16708
2.04242
1.91769
1.7929
1.66808
1.54326
1.4185
1.29382
1.16929
1.04493
0.920778
0.796864
0.673213
0.549798
0.426779
0.303655
0.182079
0.0559331
5.54166
4.51798
4.28125
4.0866
3.90741
3.74433
3.59273
3.44907
3.3111
3.17734
3.04675
2.91846
2.79178
2.66615
2.54115
2.41646
2.29189
2.16731
2.04267
1.91793
1.79313
1.66829
1.54346
1.41867
1.29398
1.16942
1.04505
0.920877
0.796944
0.673274
0.549838
0.426817
0.303624
0.182235
0.0549743
5.5402
4.51883
4.28147
4.0868
3.90749
3.74439
3.59278
3.4491
3.31112
3.17735
3.04675
2.91846
2.79179
2.66617
2.54117
2.41649
2.29192
2.16735
2.0427
1.91797
1.79317
1.66833
1.5435
1.41871
1.29401
1.16946
1.04507
0.920908
0.796985
0.673332
0.549931
0.426921
0.303753
0.182293
0.0549537
5.19404
4.67381
4.32061
4.10883
3.92535
3.75586
3.60071
3.45528
3.31605
3.18131
3.04992
2.92098
2.79375
2.66769
2.54236
2.41745
2.29275
2.1681
2.04344
1.91874
1.79399
1.66921
1.54444
1.41972
1.29508
1.17058
1.04624
0.92211
0.798215
0.674572
0.55119
0.42813
0.305374
0.183172
0.0642915
5.33361
4.60779
4.30067
4.09973
3.9171
3.7508
3.59751
3.45288
3.31418
3.17982
3.04871
2.91996
2.79287
2.6669
2.54163
2.41674
2.29204
2.16738
2.04268
1.91794
1.79314
1.66831
1.54349
1.41872
1.29405
1.16951
1.04515
0.920996
0.797087
0.673442
0.550056
0.427022
0.304085
0.182121
0.0586607
5.59086
4.50369
4.27814
4.08465
3.90593
3.74344
3.59219
3.44875
3.31094
3.17732
3.04685
2.91868
2.79209
2.66652
2.54155
2.41687
2.29228
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41883
1.29412
1.16955
1.04516
0.920973
0.797022
0.67334
0.549895
0.426902
0.303674
0.182489
0.0540906
5.58968
4.50421
4.27827
4.08474
3.90597
3.74346
3.5922
3.44875
3.31093
3.17732
3.04684
2.91866
2.79208
2.66651
2.54154
2.41686
2.29227
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41883
1.29412
1.16955
1.04515
0.92098
0.797051
0.673393
0.549978
0.426964
0.30371
0.182402
0.0539809
5.38327
4.56812
4.29776
4.09546
3.91499
3.7494
3.59617
3.45156
3.31287
3.17851
3.0474
2.91866
2.7916
2.66567
2.54044
2.41562
2.29098
2.16638
2.04176
1.91708
1.79235
1.66759
1.54284
1.41813
1.29351
1.16902
1.0447
0.920588
0.796705
0.673079
0.549708
0.426687
0.303884
0.181735
0.0611558
5.41797
4.555
4.29495
4.09346
3.91357
3.74836
3.59536
3.4509
3.31233
3.17807
3.04703
2.91835
2.79133
2.66543
2.54023
2.41543
2.2908
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.2934
1.16892
1.0446
0.920492
0.796611
0.672987
0.549622
0.426615
0.303828
0.181695
0.0610868
5.51272
4.53113
4.28349
4.0887
3.90857
3.74541
3.59372
3.44992
3.31183
3.17797
3.04728
2.91893
2.79219
2.6665
2.54144
2.4167
2.29208
2.16746
2.04277
1.918
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04503
0.920861
0.796938
0.673291
0.549896
0.426912
0.303702
0.182389
0.0540258
5.55834
4.51508
4.28048
4.08614
3.90706
3.74409
3.59255
3.44892
3.31096
3.17721
3.04662
2.91834
2.79167
2.66604
2.54104
2.41636
2.2918
2.16722
2.04257
1.91784
1.79305
1.66821
1.54337
1.41859
1.2939
1.16934
1.04496
0.920803
0.796884
0.673235
0.549837
0.426829
0.303664
0.182206
0.0548743
5.55957
4.51389
4.28011
4.0859
3.90697
3.74405
3.59255
3.44896
3.31103
3.17731
3.04674
2.91848
2.79182
2.6662
2.54121
2.41653
2.29196
2.16738
2.04272
1.91799
1.79318
1.66833
1.54349
1.4187
1.294
1.16945
1.04507
0.920895
0.796959
0.673287
0.549847
0.426826
0.303627
0.182257
0.0548739
5.38463
4.58871
4.29408
4.09611
3.91416
3.74899
3.59635
3.45207
3.31361
3.17943
3.04845
2.9198
2.79279
2.66689
2.54165
2.41679
2.29209
2.16741
2.0427
1.91793
1.79311
1.66827
1.54343
1.41865
1.29397
1.16943
1.04506
0.920907
0.796993
0.673343
0.549937
0.426908
0.30385
0.182091
0.0568799
5.47261
4.55259
4.28643
4.09128
3.91031
3.74667
3.59477
3.45084
3.31263
3.17865
3.04784
2.91936
2.7925
2.66671
2.54157
2.41676
2.29209
2.16743
2.04272
1.91794
1.79311
1.66825
1.5434
1.41861
1.29392
1.16936
1.04499
0.920827
0.796903
0.673245
0.549817
0.426804
0.303574
0.182186
0.0543831
5.47373
4.55204
4.28636
4.09138
3.91034
3.74667
3.59476
3.45081
3.31258
3.1786
3.04779
2.91932
2.79247
2.66669
2.54156
2.41676
2.2921
2.16745
2.04275
1.91797
1.79314
1.66828
1.54344
1.41864
1.29394
1.16939
1.04501
0.920843
0.796923
0.673278
0.549887
0.426901
0.303729
0.182325
0.0543737
5.54083
4.52221
4.28233
4.08719
3.90817
3.74477
3.59296
3.44918
3.31111
3.17726
3.04657
2.9182
2.79144
2.66575
2.54071
2.41601
2.29144
2.16687
2.04225
1.91755
1.79278
1.66798
1.54317
1.41841
1.29375
1.16921
1.04485
0.920701
0.796783
0.673125
0.549703
0.426677
0.303566
0.182002
0.0560531
5.3565
4.58843
4.29882
4.09721
3.91582
3.75
3.59677
3.45216
3.31345
3.17907
3.04794
2.91918
2.79209
2.66614
2.54089
2.41604
2.29137
2.16675
2.0421
1.9174
1.79264
1.66786
1.54308
1.41835
1.29371
1.1692
1.04486
0.920735
0.796842
0.673206
0.549819
0.426787
0.303891
0.181866
0.0598117
5.46841
4.54734
4.28654
4.09083
3.91037
3.74657
3.59453
3.45055
3.31229
3.17828
3.04746
2.91898
2.79213
2.66636
2.54124
2.41647
2.29184
2.16722
2.04255
1.9178
1.793
1.66817
1.54334
1.41856
1.29388
1.16934
1.04498
0.920818
0.796899
0.673243
0.549822
0.426805
0.303639
0.182153
0.0553325
5.44772
4.55144
4.28906
4.09193
3.91158
3.74728
3.59492
3.45075
3.31237
3.17826
3.04736
2.9188
2.7919
2.66609
2.54095
2.41618
2.29156
2.16697
2.04232
1.91761
1.79284
1.66803
1.54323
1.41848
1.29382
1.16929
1.04494
0.920792
0.796881
0.673232
0.549822
0.426798
0.303726
0.18205
0.0568099
5.45061
4.54695
4.29143
4.09179
3.91217
3.74741
3.5947
3.45042
3.31196
3.17779
3.04683
2.91821
2.79124
2.66538
2.54021
2.41543
2.29082
2.16625
2.04164
1.91697
1.79224
1.66749
1.54273
1.41803
1.29341
1.16892
1.0446
0.920486
0.796602
0.672973
0.549595
0.426578
0.303714
0.181714
0.0598376
5.54
4.51805
4.28134
4.08669
3.90739
3.74431
3.5927
3.44904
3.31106
3.1773
3.0467
2.91841
2.79173
2.6661
2.5411
2.41641
2.29183
2.16725
2.0426
1.91786
1.79306
1.66822
1.54338
1.4186
1.29391
1.16935
1.04498
0.920812
0.796881
0.673214
0.54978
0.426765
0.303565
0.182207
0.0547741
5.53945
4.51858
4.28138
4.08676
3.90739
3.74432
3.59272
3.44905
3.31106
3.1773
3.0467
2.91841
2.79173
2.66611
2.54111
2.41642
2.29185
2.16727
2.04262
1.91789
1.79309
1.66824
1.54341
1.41862
1.29393
1.16937
1.04499
0.920829
0.796909
0.673259
0.549861
0.426855
0.30368
0.182249
0.0547438
5.49127
4.53151
4.28741
4.09014
3.91071
3.74641
3.59401
3.44987
3.31152
3.17745
3.04657
2.91803
2.79113
2.66533
2.5402
2.41545
2.29086
2.1663
2.04169
1.91702
1.79229
1.66752
1.54276
1.41804
1.29341
1.16891
1.04458
0.920455
0.796567
0.672939
0.549566
0.426555
0.303627
0.18176
0.0582728
5.36827
4.59451
4.29591
4.09747
3.91512
3.74956
3.59672
3.45232
3.31379
3.17957
3.04857
2.91991
2.7929
2.66698
2.54174
2.41687
2.29217
2.16749
2.04278
1.918
1.79318
1.66833
1.5435
1.41872
1.29403
1.16949
1.04512
0.920963
0.797051
0.673406
0.550019
0.426997
0.303996
0.182167
0.0572768
5.31862
4.61372
4.30274
4.10066
3.91791
3.7513
3.59783
3.45312
3.31437
3.17997
3.04883
2.92005
2.79295
2.66697
2.54168
2.41679
2.29208
2.16742
2.04273
1.91798
1.79318
1.66836
1.54354
1.41878
1.2941
1.16957
1.04521
0.921057
0.797148
0.673502
0.550114
0.427075
0.304161
0.182142
0.0592629
5.32894
4.60214
4.30234
4.09961
3.91745
3.7511
3.59765
3.45292
3.31413
3.17969
3.0485
2.91969
2.79257
2.66657
2.54129
2.41641
2.29171
2.16707
2.0424
1.91767
1.7929
1.6681
1.5433
1.41856
1.2939
1.16939
1.04504
0.920904
0.797006
0.673369
0.549987
0.426949
0.304073
0.182005
0.0601188
5.18735
4.67678
4.32174
4.1092
3.9258
3.75615
3.60088
3.4554
3.31615
3.18139
3.04998
2.92103
2.79379
2.66772
2.54238
2.41747
2.29276
2.16812
2.04345
1.91874
1.79399
1.6692
1.54443
1.4197
1.29505
1.17054
1.0462
0.922059
0.798156
0.674508
0.55112
0.428057
0.305311
0.183122
0.0647383
5.46504
4.54387
4.28715
4.09044
3.91039
3.74635
3.59415
3.45011
3.31183
3.17781
3.04698
2.91849
2.79164
2.66588
2.54078
2.41603
2.29144
2.16686
2.04222
1.91752
1.79275
1.66795
1.54315
1.41839
1.29373
1.16921
1.04485
0.920707
0.796796
0.673147
0.549736
0.426713
0.303626
0.181994
0.0564648
5.42765
4.55215
4.29374
4.09286
3.91311
3.74805
3.59514
3.45074
3.3122
3.17797
3.04695
2.91829
2.79129
2.6654
2.54021
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04459
0.920477
0.796596
0.672971
0.549603
0.426594
0.30379
0.18169
0.0607849
5.58603
4.50561
4.27861
4.08494
3.90612
3.74355
3.59225
3.44878
3.31095
3.17732
3.04683
2.91864
2.79205
2.66648
2.54151
2.41683
2.29225
2.16765
2.04297
1.9182
1.79337
1.6685
1.54364
1.41883
1.29412
1.16954
1.04515
0.920978
0.797049
0.673392
0.549978
0.426964
0.303717
0.182396
0.0540612
5.6171
4.5032
4.27784
4.08446
3.90583
3.74339
3.59216
3.44874
3.31094
3.17734
3.04687
2.9187
2.79212
2.66656
2.54158
2.4169
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16956
1.04517
0.920994
0.797063
0.673404
0.549988
0.426972
0.303714
0.182411
0.0539528
5.61754
4.50294
4.27776
4.08442
3.90581
3.74337
3.59215
3.44873
3.31094
3.17734
3.04688
2.91871
2.79213
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16957
1.04517
0.920985
0.797032
0.673349
0.549903
0.426913
0.303686
0.182511
0.0540718
5.5006
4.53086
4.28703
4.08998
3.91049
3.74627
3.59394
3.44984
3.31152
3.17748
3.04663
2.91812
2.79124
2.66547
2.54036
2.41563
2.29105
2.16649
2.04189
1.91722
1.79248
1.66771
1.54294
1.41821
1.29357
1.16907
1.04473
0.920597
0.796703
0.673068
0.549689
0.426673
0.303713
0.181884
0.0579076
5.49537
4.53891
4.28456
4.0897
3.90931
3.74595
3.59416
3.45029
3.31212
3.17819
3.04744
2.91902
2.79224
2.66651
2.54142
2.41666
2.29202
2.16739
2.0427
1.91794
1.79312
1.66827
1.54342
1.41863
1.29394
1.16938
1.045
0.920837
0.796917
0.673272
0.54988
0.426893
0.303706
0.182343
0.0542879
5.37241
4.5721
4.29867
4.0959
3.91532
3.74962
3.59634
3.45171
3.31299
3.17862
3.04749
2.91873
2.79166
2.66571
2.54048
2.41564
2.29099
2.16639
2.04177
1.91708
1.79235
1.66759
1.54283
1.41812
1.2935
1.16901
1.0447
0.920582
0.7967
0.673074
0.549703
0.426682
0.30389
0.181721
0.0613758
5.46356
4.5588
4.28707
4.09216
3.91082
3.74711
3.59525
3.45137
3.31317
3.17919
3.04836
2.91982
2.7929
2.66704
2.54184
2.41698
2.29226
2.16757
2.04283
1.91803
1.79318
1.66831
1.54345
1.41865
1.29395
1.16939
1.045
0.92084
0.79692
0.673275
0.549886
0.426902
0.303733
0.182323
0.0542982
5.464
4.55847
4.28706
4.09196
3.91072
3.74703
3.59518
3.4513
3.31312
3.17914
3.04831
2.91978
2.79286
2.66701
2.5418
2.41694
2.29223
2.16753
2.0428
1.918
1.79315
1.66828
1.54342
1.41863
1.29393
1.16937
1.045
0.920833
0.796909
0.673251
0.549824
0.426809
0.303575
0.182178
0.0542947
5.18179
4.67975
4.32246
4.10943
3.92615
3.75636
3.60099
3.45549
3.31622
3.18144
3.05003
2.92106
2.79382
2.66774
2.54241
2.41749
2.29279
2.16814
2.04348
1.91877
1.79401
1.66923
1.54445
1.41973
1.29508
1.17057
1.04623
0.922099
0.798197
0.674549
0.551162
0.428099
0.30536
0.183185
0.0650674
5.57951
4.50943
4.27917
4.08537
3.9065
3.74378
3.5924
3.44886
3.31098
3.1773
3.04678
2.91855
2.79193
2.66634
2.54136
2.41669
2.29211
2.16753
2.04286
1.91811
1.79329
1.66843
1.54358
1.41878
1.29407
1.16951
1.04512
0.920946
0.79702
0.673364
0.549956
0.426943
0.303731
0.182347
0.0544299
5.58153
4.50768
4.27877
4.08517
3.90643
3.74375
3.59239
3.44888
3.31101
3.17734
3.04682
2.9186
2.79197
2.66638
2.5414
2.41672
2.29214
2.16755
2.04288
1.91812
1.7933
1.66844
1.54359
1.41879
1.29408
1.16952
1.04513
0.92095
0.797007
0.673329
0.549884
0.42687
0.30365
0.182363
0.0544861
5.55098
4.51356
4.28068
4.08633
3.90698
3.74416
3.59269
3.44909
3.31116
3.17744
3.04689
2.91865
2.79201
2.66641
2.54141
2.41672
2.29213
2.16752
2.04284
1.91808
1.79325
1.66839
1.54354
1.41874
1.29403
1.16947
1.04508
0.920904
0.796962
0.673288
0.549845
0.426845
0.303594
0.182385
0.054016
5.49219
4.54471
4.28541
4.09024
3.90949
3.74624
3.59455
3.45075
3.31261
3.17869
3.04792
2.91946
2.79262
2.66684
2.54169
2.41688
2.29219
2.16752
2.0428
1.918
1.79316
1.66829
1.54343
1.41862
1.29392
1.16936
1.04497
0.920803
0.79688
0.673236
0.549848
0.426878
0.30367
0.182379
0.0537267
5.49276
4.54425
4.28527
4.09015
3.90944
3.7462
3.59452
3.45072
3.31259
3.17867
3.04791
2.91945
2.79261
2.66683
2.54168
2.41687
2.29219
2.16752
2.04279
1.918
1.79315
1.66828
1.54342
1.41862
1.29392
1.16936
1.04498
0.920812
0.796882
0.673218
0.549778
0.426763
0.303477
0.1822
0.0536957
5.3637
4.57742
4.29939
4.09664
3.91584
3.75003
3.59669
3.45201
3.31325
3.17884
3.04768
2.91891
2.79182
2.66586
2.54061
2.41577
2.29111
2.16651
2.04187
1.91719
1.79245
1.66768
1.54292
1.41821
1.29358
1.16909
1.04477
0.92065
0.796765
0.673136
0.54976
0.426733
0.303921
0.181768
0.0612119
5.5889
4.50438
4.2784
4.08482
3.90606
3.74351
3.59223
3.44878
3.31095
3.17733
3.04685
2.91866
2.79207
2.6665
2.54152
2.41684
2.29226
2.16765
2.04297
1.91821
1.79337
1.6685
1.54364
1.41883
1.29412
1.16955
1.04516
0.920972
0.797022
0.673341
0.549896
0.426899
0.303671
0.182471
0.0541515
5.50279
4.53533
4.28405
4.08917
3.90895
3.74565
3.5939
3.45007
3.31193
3.17804
3.04734
2.91895
2.79219
2.66648
2.5414
2.41665
2.29202
2.1674
2.04271
1.91795
1.79313
1.66828
1.54343
1.41864
1.29394
1.16939
1.04501
0.920847
0.796918
0.673256
0.549822
0.42681
0.303564
0.182245
0.0542506
5.49496
4.53913
4.28435
4.08954
3.90913
3.74583
3.59409
3.45024
3.31208
3.17815
3.04741
2.91899
2.7922
2.66647
2.54137
2.41661
2.29197
2.16734
2.04264
1.91788
1.79305
1.6682
1.54335
1.41856
1.29387
1.16931
1.04493
0.920769
0.796851
0.673208
0.549819
0.426838
0.303645
0.182306
0.0540716
5.33561
4.60964
4.29974
4.09915
3.91672
3.75055
3.59737
3.45284
3.31422
3.17993
3.04886
2.92015
2.79308
2.66713
2.54185
2.41696
2.29224
2.16756
2.04286
1.91809
1.79327
1.66843
1.5436
1.41882
1.29414
1.16959
1.04522
0.921064
0.797146
0.673491
0.550085
0.427042
0.304069
0.182126
0.058493
5.42283
4.55413
4.29281
4.09353
3.91296
3.74798
3.59518
3.45079
3.31226
3.17804
3.04706
2.91843
2.79147
2.66561
2.54045
2.41567
2.29105
2.16647
2.04186
1.91717
1.79243
1.66766
1.54289
1.41816
1.29352
1.16902
1.04469
0.920561
0.796672
0.673043
0.54967
0.426656
0.30373
0.181831
0.0585592
5.38621
4.56657
4.29778
4.09537
3.91496
3.74937
3.59614
3.45153
3.31284
3.17849
3.04738
2.91864
2.79158
2.66565
2.54042
2.4156
2.29096
2.16637
2.04175
1.91707
1.79234
1.66758
1.54283
1.41812
1.2935
1.16901
1.0447
0.920581
0.796698
0.673072
0.549702
0.426684
0.30389
0.181731
0.0612661
5.31108
4.61403
4.30404
4.10096
3.91833
3.75161
3.59804
3.45329
3.31451
3.18009
3.04892
2.92013
2.79302
2.66703
2.54174
2.41685
2.29215
2.16749
2.0428
1.91805
1.79326
1.66844
1.54363
1.41887
1.29419
1.16966
1.04529
0.921144
0.797233
0.673583
0.55019
0.427141
0.304251
0.182174
0.0600512
5.45642
4.54421
4.29277
4.09248
3.91275
3.74777
3.59492
3.45056
3.31205
3.17784
3.04685
2.91821
2.79122
2.66535
2.54017
2.41539
2.29077
2.1662
2.0416
1.91693
1.79221
1.66745
1.5427
1.418
1.29338
1.16889
1.04458
0.920466
0.796583
0.672957
0.549594
0.42659
0.303789
0.181727
0.0604275
5.23661
4.65275
4.31411
4.10609
3.92268
3.75423
3.5997
3.45453
3.31547
3.18086
3.04956
2.92068
2.79351
2.66748
2.54218
2.41728
2.29258
2.16792
2.04324
1.9185
1.7937
1.66888
1.54407
1.4193
1.29463
1.17009
1.04573
0.921578
0.797665
0.674011
0.550614
0.427548
0.304732
0.18253
0.0622397
5.43727
4.56223
4.28919
4.09269
3.91171
3.74746
3.59522
3.45111
3.31276
3.17866
3.04776
2.9192
2.79228
2.66645
2.54129
2.41648
2.29183
2.16719
2.04251
1.91776
1.79296
1.66812
1.5433
1.41853
1.29385
1.16931
1.04495
0.9208
0.796886
0.673236
0.549823
0.426804
0.303679
0.182087
0.0558899
5.51965
4.52567
4.2834
4.08778
3.90849
3.74497
3.5931
3.44928
3.31118
3.17731
3.0466
2.91822
2.79145
2.66575
2.54071
2.416
2.29143
2.16686
2.04224
1.91754
1.79277
1.66796
1.54316
1.4184
1.29373
1.1692
1.04484
0.92069
0.796773
0.673117
0.549696
0.426672
0.303559
0.182002
0.0560163
5.52992
4.52191
4.28236
4.08732
3.90797
3.74467
3.59292
3.44917
3.31111
3.17728
3.04662
2.91827
2.79155
2.66589
2.54086
2.41617
2.29161
2.16704
2.04241
1.9177
1.79292
1.6681
1.54328
1.41851
1.29383
1.16928
1.04491
0.920757
0.796842
0.673196
0.549803
0.426795
0.303674
0.182133
0.0554601
5.56797
4.50771
4.27935
4.08541
3.90639
3.74374
3.59239
3.44888
3.31103
3.17737
3.04687
2.91867
2.79207
2.66649
2.54151
2.41683
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16954
1.04515
0.920968
0.79702
0.67334
0.549894
0.426898
0.30366
0.182467
0.0540752
5.56962
4.50792
4.2794
4.08542
3.90637
3.74372
3.59237
3.44886
3.311
3.17735
3.04685
2.91865
2.79205
2.66647
2.5415
2.41682
2.29223
2.16763
2.04295
1.91819
1.79335
1.66849
1.54362
1.41882
1.2941
1.16953
1.04514
0.920968
0.797039
0.673383
0.549972
0.426963
0.303714
0.182412
0.0539846
5.15642
4.69229
4.32685
4.11109
3.92791
3.75745
3.60166
3.45599
3.31661
3.18175
3.05027
2.92126
2.79398
2.66788
2.54253
2.4176
2.29288
2.16823
2.04357
1.91886
1.7941
1.66932
1.54455
1.41983
1.29519
1.17069
1.04636
0.922242
0.798356
0.674725
0.551359
0.428318
0.305632
0.18356
0.0668257
5.43351
4.56293
4.28975
4.09329
3.91207
3.74763
3.59526
3.45106
3.31265
3.17853
3.04761
2.91905
2.79213
2.66632
2.54117
2.41637
2.29173
2.16711
2.04244
1.91771
1.79291
1.66808
1.54326
1.4185
1.29382
1.16928
1.04492
0.92077
0.796862
0.673221
0.549836
0.426831
0.303761
0.182124
0.0560225
5.51205
4.52868
4.2835
4.08861
3.90867
3.74531
3.59349
3.44965
3.31153
3.17766
3.04697
2.91861
2.79188
2.66621
2.54117
2.41645
2.29186
2.16726
2.0426
1.91787
1.79306
1.66822
1.54339
1.41861
1.29391
1.16936
1.04499
0.920825
0.796907
0.67326
0.549865
0.426867
0.303696
0.18228
0.0546981
5.51455
4.52711
4.28314
4.08823
3.90845
3.74515
3.59338
3.44958
3.31148
3.17763
3.04696
2.91861
2.79188
2.66621
2.54116
2.41645
2.29186
2.16726
2.0426
1.91786
1.79305
1.66821
1.54338
1.4186
1.29391
1.16936
1.04499
0.920821
0.796893
0.67323
0.549799
0.426786
0.303577
0.182217
0.0547104
5.45864
4.55357
4.28753
4.09198
3.91109
3.74705
3.59489
3.45081
3.31248
3.17842
3.04757
2.91906
2.7922
2.66641
2.54129
2.41651
2.29188
2.16725
2.04258
1.91784
1.79303
1.6682
1.54337
1.41859
1.29391
1.16937
1.045
0.92084
0.796926
0.673282
0.549893
0.426892
0.303779
0.182235
0.0554275
5.44115
4.55623
4.28935
4.09269
3.91182
3.74744
3.59506
3.45085
3.31244
3.17832
3.04741
2.91886
2.79196
2.66615
2.54102
2.41624
2.29162
2.16701
2.04236
1.91764
1.79285
1.66804
1.54323
1.41847
1.2938
1.16926
1.0449
0.920757
0.796851
0.673211
0.549826
0.426819
0.303762
0.182103
0.0563267
5.18902
4.6771
4.32143
4.10924
3.92571
3.75607
3.60083
3.45537
3.31612
3.18137
3.04997
2.92101
2.79378
2.66771
2.54238
2.41747
2.29276
2.16811
2.04345
1.91874
1.79398
1.66919
1.54442
1.41969
1.29504
1.17054
1.0462
0.922064
0.798167
0.674523
0.551138
0.428077
0.305322
0.183126
0.0642824
5.37328
4.59877
4.2953
4.09736
3.91482
3.74937
3.59664
3.45231
3.31384
3.17967
3.04871
2.9201
2.79313
2.66725
2.54203
2.41717
2.29246
2.16777
2.04304
1.91824
1.79339
1.66852
1.54366
1.41886
1.29415
1.16959
1.04521
0.921046
0.797121
0.673463
0.550049
0.427016
0.303939
0.182189
0.056531
5.37163
4.58501
4.29685
4.09704
3.91527
3.74973
3.59675
3.45224
3.3136
3.17928
3.04819
2.91946
2.79241
2.66647
2.54123
2.41638
2.2917
2.16707
2.0424
1.91767
1.79289
1.66808
1.54328
1.41852
1.29386
1.16933
1.04498
0.920841
0.796939
0.6733
0.549918
0.426894
0.303945
0.18204
0.0583831
5.51699
4.52564
4.28317
4.08768
3.90837
3.74492
3.59308
3.44929
3.31121
3.17735
3.04666
2.91829
2.79154
2.66585
2.54082
2.41612
2.29155
2.16698
2.04235
1.91765
1.79287
1.66806
1.54325
1.41848
1.29381
1.16927
1.04491
0.920756
0.796835
0.673176
0.549751
0.426726
0.303597
0.182065
0.0558457
5.50099
4.53837
4.28446
4.08951
3.90906
3.74585
3.59416
3.45034
3.31221
3.17831
3.04758
2.91916
2.79237
2.66664
2.54154
2.41676
2.29211
2.16747
2.04276
1.91799
1.79315
1.66829
1.54344
1.41864
1.29394
1.16938
1.04499
0.920824
0.796902
0.673257
0.549866
0.42689
0.303681
0.182382
0.0538625
5.50343
4.53728
4.28435
4.08943
3.90904
3.74583
3.59413
3.45031
3.31219
3.1783
3.04758
2.91918
2.79239
2.66667
2.54157
2.4168
2.29215
2.1675
2.0428
1.91802
1.79319
1.66832
1.54347
1.41867
1.29397
1.16941
1.04503
0.920863
0.796931
0.673266
0.549826
0.426812
0.303536
0.18226
0.0538848
5.39167
4.56305
4.29758
4.09506
3.91476
3.74921
3.59599
3.4514
3.31272
3.17838
3.04728
2.91855
2.7915
2.66557
2.54035
2.41552
2.29089
2.1663
2.04168
1.91701
1.79228
1.66753
1.54278
1.41807
1.29345
1.16897
1.04465
0.920541
0.79666
0.673035
0.549671
0.42666
0.303891
0.181709
0.0615172
5.52628
4.52354
4.28232
4.08758
3.90784
3.74473
3.59309
3.44938
3.31135
3.17756
3.04695
2.91865
2.79197
2.66633
2.54132
2.41662
2.29203
2.16743
2.04276
1.91801
1.7932
1.66834
1.5435
1.4187
1.294
1.16944
1.04506
0.92089
0.796967
0.673316
0.549916
0.426918
0.303716
0.182357
0.0543504
5.52495
4.52322
4.28227
4.08763
3.90796
3.74485
3.5932
3.44946
3.31142
3.17762
3.04699
2.91867
2.79197
2.66632
2.5413
2.41659
2.29199
2.16739
2.04272
1.91797
1.79315
1.6683
1.54346
1.41866
1.29397
1.16941
1.04503
0.920863
0.79693
0.673263
0.549827
0.426817
0.303581
0.182282
0.0543545
5.56964
4.50827
4.27946
4.08545
3.90641
3.74374
3.59237
3.44885
3.31099
3.17733
3.04682
2.91862
2.79202
2.66644
2.54146
2.41678
2.2922
2.1676
2.04292
1.91816
1.79333
1.66847
1.54361
1.4188
1.29409
1.16952
1.04513
0.920958
0.79703
0.673374
0.549963
0.426954
0.30371
0.182397
0.0540533
5.55869
4.51116
4.27992
4.08576
3.90661
3.74386
3.59245
3.44889
3.311
3.17732
3.0468
2.91858
2.79196
2.66637
2.54139
2.4167
2.29212
2.16753
2.04286
1.9181
1.79327
1.66841
1.54356
1.41875
1.29405
1.16948
1.04509
0.920921
0.796995
0.673341
0.549933
0.426926
0.303695
0.182364
0.0541374
5.48343
4.55213
4.28672
4.0913
3.91014
3.74676
3.59507
3.45127
3.31315
3.17922
3.04843
2.91994
2.79304
2.6672
2.54199
2.41713
2.2924
2.16769
2.04294
1.91812
1.79326
1.66837
1.5435
1.41869
1.29398
1.16941
1.04502
0.920845
0.796919
0.673272
0.549883
0.426914
0.303707
0.182413
0.0536771
5.4838
4.55197
4.28667
4.09125
3.91011
3.74675
3.59506
3.45127
3.31315
3.17922
3.04844
2.91994
2.79305
2.6672
2.54199
2.41713
2.2924
2.16769
2.04293
1.91812
1.79325
1.66837
1.5435
1.41869
1.29398
1.16941
1.04503
0.920858
0.796925
0.673259
0.549816
0.426797
0.303503
0.182216
0.0536303
5.27008
4.62966
4.31017
4.10335
3.92062
3.75308
3.59897
3.45398
3.31505
3.18052
3.04927
2.92041
2.79324
2.6672
2.54188
2.41696
2.29223
2.16756
2.04287
1.91813
1.79334
1.66853
1.54373
1.41898
1.29432
1.1698
1.04545
0.921306
0.797402
0.673754
0.550359
0.427297
0.304491
0.182265
0.0624475
5.44355
4.54571
4.29315
4.09268
3.9129
3.74788
3.595
3.45062
3.3121
3.17788
3.04688
2.91823
2.79124
2.66537
2.54019
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.920478
0.796595
0.672969
0.549606
0.426602
0.303801
0.181731
0.0604911
5.59597
4.50294
4.27794
4.08454
3.90587
3.7434
3.59217
3.44873
3.31093
3.17732
3.04686
2.91869
2.7921
2.66654
2.54156
2.41688
2.2923
2.16769
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29412
1.16955
1.04516
0.920984
0.797054
0.673396
0.549981
0.426966
0.30371
0.182409
0.0539425
5.59606
4.50288
4.27792
4.08453
3.90586
3.7434
3.59216
3.44873
3.31093
3.17732
3.04686
2.91869
2.7921
2.66654
2.54156
2.41688
2.2923
2.16769
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16956
1.04516
0.920976
0.797023
0.67334
0.549895
0.426906
0.303679
0.182505
0.0540593
5.25976
4.63783
4.31117
4.10429
3.92123
3.75339
3.59917
3.45414
3.31518
3.18064
3.0494
2.92056
2.79341
2.6674
2.5421
2.4172
2.29248
2.16782
2.04312
1.91838
1.79359
1.66877
1.54396
1.4192
1.29453
1.17
1.04564
0.921495
0.797583
0.673928
0.550529
0.427462
0.304637
0.182428
0.0621737
5.51146
4.52721
4.28345
4.08821
3.90854
3.74509
3.59325
3.44942
3.31131
3.17744
3.04675
2.91838
2.79163
2.66596
2.54092
2.41622
2.29165
2.16707
2.04244
1.91772
1.79293
1.66811
1.54329
1.41852
1.29384
1.16929
1.04492
0.920768
0.796854
0.673208
0.549816
0.42681
0.303686
0.182161
0.0553901
5.29977
4.62103
4.30494
4.10125
3.91874
3.75185
3.5982
3.45345
3.31467
3.18026
3.0491
2.92031
2.79318
2.66718
2.54188
2.41697
2.29225
2.16758
2.04289
1.91814
1.79334
1.66852
1.54371
1.41894
1.29427
1.16974
1.04537
0.921221
0.797306
0.673649
0.550244
0.427187
0.304296
0.182197
0.0604796
5.29926
4.62271
4.30516
4.10192
3.91897
3.75196
3.59828
3.45348
3.31468
3.18026
3.0491
2.92033
2.79323
2.66726
2.54198
2.41709
2.29238
2.16771
2.04302
1.91827
1.79346
1.66863
1.54381
1.41904
1.29436
1.16982
1.04545
0.921289
0.797373
0.67372
0.550324
0.427273
0.304376
0.182303
0.0599363
5.42156
4.55312
4.29443
4.09402
3.91361
3.74841
3.59545
3.45098
3.3124
3.17814
3.04712
2.91846
2.79146
2.66559
2.54041
2.41561
2.291
2.16642
2.04181
1.91714
1.79241
1.66764
1.54288
1.41817
1.29354
1.16905
1.04472
0.920601
0.796714
0.673086
0.549715
0.426699
0.303838
0.181827
0.059754
5.59921
4.50267
4.27784
4.0845
3.90585
3.74339
3.59216
3.44873
3.31093
3.17733
3.04686
2.91869
2.79211
2.66654
2.54157
2.41689
2.2923
2.1677
2.04301
1.91824
1.7934
1.66853
1.54366
1.41885
1.29413
1.16956
1.04516
0.920988
0.797057
0.673399
0.549983
0.426968
0.303711
0.182409
0.053948
5.59949
4.50247
4.27778
4.08446
3.90583
3.74338
3.59216
3.44873
3.31093
3.17733
3.04687
2.91869
2.79211
2.66654
2.54157
2.41689
2.29231
2.1677
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29413
1.16956
1.04517
0.920979
0.797026
0.673343
0.549898
0.426908
0.303681
0.182506
0.0540654
5.29277
4.61567
4.30755
4.10166
3.91941
3.75239
3.59851
3.4536
3.31469
3.18015
3.04888
2.92
2.79281
2.66676
2.54143
2.41652
2.2918
2.16714
2.04247
1.91774
1.79297
1.66817
1.54338
1.41864
1.29399
1.16948
1.04514
0.921013
0.797118
0.673479
0.550093
0.427042
0.304244
0.182024
0.062196
5.43927
4.54845
4.29156
4.09309
3.91269
3.7479
3.59519
3.45084
3.31234
3.17814
3.04718
2.91857
2.79163
2.66579
2.54064
2.41587
2.29126
2.16669
2.04207
1.91739
1.79264
1.66786
1.54309
1.41835
1.29371
1.1692
1.04486
0.920724
0.796828
0.673192
0.549813
0.426797
0.303844
0.181987
0.0582578
5.16953
4.68613
4.32444
4.11022
3.927
3.75688
3.60131
3.45573
3.31641
3.18159
3.05015
2.92116
2.7939
2.66781
2.54247
2.41755
2.29284
2.16819
2.04353
1.91882
1.79406
1.66929
1.54452
1.41979
1.29516
1.17066
1.04633
0.922207
0.798318
0.674682
0.551306
0.428252
0.305533
0.183398
0.065771
5.48264
4.54757
4.28557
4.09061
3.90986
3.74639
3.59457
3.45069
3.31251
3.17855
3.04777
2.9193
2.79247
2.66669
2.54156
2.41676
2.29209
2.16743
2.04273
1.91795
1.79312
1.66826
1.54341
1.41861
1.29392
1.16936
1.04499
0.920824
0.796898
0.673239
0.549808
0.426795
0.303549
0.182197
0.0541947
5.48438
4.54727
4.28568
4.09072
3.90988
3.74638
3.59454
3.45064
3.31244
3.17849
3.04771
2.91926
2.79244
2.66668
2.54156
2.41678
2.29212
2.16747
2.04277
1.918
1.79317
1.66831
1.54346
1.41866
1.29396
1.1694
1.04502
0.920854
0.796933
0.673287
0.549895
0.426912
0.303725
0.182361
0.0541913
5.45303
4.55481
4.28777
4.09169
3.91095
3.74694
3.5948
3.45076
3.31245
3.1784
3.04755
2.91903
2.79216
2.66636
2.54122
2.41644
2.2918
2.16717
2.04249
1.91775
1.79295
1.66811
1.54329
1.41852
1.29384
1.1693
1.04493
0.92078
0.796864
0.673212
0.549796
0.426779
0.303632
0.182097
0.0555434
5.37402
4.57074
4.29921
4.09626
3.91566
3.7499
3.59656
3.45188
3.31313
3.17873
3.04758
2.91881
2.79172
2.66577
2.54053
2.41569
2.29104
2.16644
2.04182
1.91714
1.79241
1.66764
1.54289
1.41818
1.29356
1.16907
1.04475
0.920638
0.796754
0.673127
0.549757
0.426737
0.303956
0.181766
0.0615783
5.56598
4.50844
4.27936
4.0854
3.90639
3.74374
3.59239
3.44889
3.31103
3.17737
3.04687
2.91866
2.79205
2.66647
2.54149
2.41681
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.4188
1.2941
1.16953
1.04514
0.920956
0.797009
0.67333
0.549886
0.426887
0.303648
0.18244
0.0541193
5.55575
4.51205
4.28028
4.08604
3.90679
3.74402
3.59258
3.449
3.31109
3.17739
3.04686
2.91863
2.79201
2.66641
2.54142
2.41674
2.29215
2.16755
2.04287
1.91811
1.79329
1.66842
1.54357
1.41876
1.29405
1.16949
1.0451
0.920927
0.797
0.673347
0.54994
0.426938
0.3037
0.182395
0.0540188
5.50331
4.52964
4.28435
4.08842
3.90897
3.74531
3.59334
3.44947
3.31132
3.17742
3.04668
2.91827
2.79149
2.66578
2.54072
2.41601
2.29144
2.16687
2.04225
1.91755
1.79279
1.66798
1.54318
1.41843
1.29376
1.16923
1.04487
0.920724
0.796808
0.673153
0.549734
0.426709
0.303605
0.182019
0.0562163
5.45521
4.54424
4.29267
4.0924
3.91275
3.74778
3.59494
3.45057
3.31206
3.17785
3.04686
2.91821
2.79123
2.66535
2.54018
2.41539
2.29078
2.1662
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04459
0.920475
0.796592
0.672966
0.549603
0.4266
0.303806
0.181734
0.0605488
5.51256
4.53006
4.28326
4.0885
3.90844
3.74525
3.59355
3.44976
3.31167
3.17781
3.04714
2.91879
2.79206
2.66639
2.54134
2.41661
2.292
2.16738
2.04271
1.91795
1.79313
1.66827
1.54343
1.41864
1.29394
1.16938
1.045
0.920833
0.796911
0.673265
0.54987
0.426883
0.30368
0.182348
0.0541345
5.51378
4.52942
4.28317
4.08841
3.90844
3.74527
3.59358
3.4498
3.31171
3.17787
3.0472
2.91885
2.79211
2.66643
2.54138
2.41665
2.29203
2.16741
2.04273
1.91797
1.79315
1.6683
1.54345
1.41866
1.29396
1.1694
1.04503
0.920858
0.796926
0.673261
0.549825
0.426814
0.303563
0.182271
0.0541803
5.25231
4.64044
4.31255
4.10467
3.92168
3.75369
3.59934
3.45424
3.31524
3.18065
3.04936
2.92047
2.79328
2.66723
2.5419
2.41697
2.29224
2.16757
2.04287
1.91813
1.79334
1.66853
1.54373
1.41897
1.29431
1.16978
1.04542
0.921278
0.797376
0.673749
0.55039
0.42736
0.304597
0.182323
0.06281
5.33219
4.59389
4.30281
4.09906
3.91744
3.75116
3.59763
3.45284
3.314
3.17951
3.04829
2.91945
2.79231
2.6663
2.54102
2.41614
2.29145
2.16682
2.04216
1.91746
1.7927
1.66792
1.54314
1.41841
1.29377
1.16926
1.04492
0.920797
0.796907
0.673292
0.549938
0.426928
0.304141
0.181948
0.0613017
5.54502
4.51754
4.28107
4.08646
3.90737
3.74428
3.59267
3.44901
3.31104
3.17727
3.04667
2.91837
2.79168
2.66604
2.54104
2.41635
2.29178
2.1672
2.04256
1.91783
1.79303
1.6682
1.54337
1.41859
1.2939
1.16934
1.04496
0.920803
0.796883
0.673242
0.549858
0.426869
0.303734
0.182249
0.0550869
5.38628
4.56443
4.29794
4.09538
3.91494
3.74933
3.59608
3.45147
3.31278
3.17843
3.04732
2.91858
2.79152
2.66559
2.54037
2.41554
2.29091
2.16631
2.0417
1.91702
1.79229
1.66754
1.54278
1.41808
1.29346
1.16897
1.04465
0.920532
0.796649
0.673035
0.549684
0.426689
0.303955
0.181778
0.0614631
5.46852
4.54128
4.28882
4.0906
3.9111
3.74667
3.5942
3.45005
3.3117
3.17761
3.04671
2.91815
2.79123
2.66541
2.54027
2.41551
2.29091
2.16635
2.04174
1.91707
1.79235
1.66758
1.54282
1.41811
1.29348
1.16898
1.04464
0.920521
0.796634
0.673018
0.549664
0.426671
0.303776
0.18185
0.0587007
5.32082
4.59861
4.30417
4.09955
3.91798
3.75154
3.59791
3.45309
3.31422
3.17972
3.04847
2.91961
2.79244
2.66642
2.54112
2.41623
2.29153
2.16689
2.04223
1.91752
1.79276
1.66798
1.5432
1.41848
1.29384
1.16933
1.04499
0.920868
0.79698
0.673363
0.550009
0.426992
0.304223
0.181972
0.0619811
5.17022
4.68691
4.324
4.11007
3.92694
3.75682
3.60127
3.4557
3.31639
3.18158
3.05014
2.92115
2.7939
2.66781
2.54246
2.41754
2.29283
2.16818
2.04352
1.91881
1.79405
1.66927
1.5445
1.41978
1.29514
1.17064
1.04631
0.922188
0.798309
0.6747
0.551369
0.428365
0.305689
0.183553
0.0655845
5.36356
4.58258
4.29829
4.09667
3.91557
3.74986
3.59666
3.45206
3.31335
3.17898
3.04785
2.91909
2.79202
2.66607
2.54082
2.41598
2.29132
2.1667
2.04206
1.91736
1.79261
1.66783
1.54305
1.41833
1.29369
1.16918
1.04484
0.920711
0.79682
0.6732
0.549846
0.426845
0.304012
0.181944
0.0601126
5.20011
4.67099
4.31938
4.10813
3.92492
3.75559
3.60052
3.45514
3.31595
3.18123
3.04985
2.92091
2.7937
2.66764
2.54231
2.41741
2.2927
2.16806
2.0434
1.91868
1.79392
1.66913
1.54434
1.4196
1.29494
1.17041
1.04604
0.92189
0.797979
0.674341
0.550978
0.427945
0.305214
0.182986
0.0641213
5.54405
4.5165
4.28107
4.0866
3.90716
3.74427
3.59276
3.44913
3.31118
3.17746
3.04689
2.91864
2.792
2.66639
2.54139
2.4167
2.29211
2.16751
2.04284
1.91809
1.79326
1.6684
1.54355
1.41875
1.29404
1.16948
1.04508
0.920903
0.796958
0.673314
0.549915
0.426961
0.303795
0.182462
0.054165
5.54441
4.51584
4.28106
4.08666
3.90724
3.74433
3.59281
3.44917
3.3112
3.17746
3.04689
2.91863
2.79197
2.66636
2.54136
2.41666
2.29207
2.16747
2.0428
1.91804
1.79322
1.66837
1.54352
1.41872
1.29401
1.16945
1.04506
0.920892
0.796966
0.673317
0.549919
0.426929
0.303715
0.182395
0.054146
5.54072
4.5175
4.28125
4.08678
3.90736
3.74437
3.59279
3.44913
3.31115
3.1774
3.04681
2.91854
2.79188
2.66626
2.54126
2.41658
2.292
2.16741
2.04274
1.918
1.79318
1.66833
1.54349
1.4187
1.294
1.16943
1.04504
0.920867
0.796926
0.673284
0.54989
0.426933
0.30379
0.182409
0.054455
5.53992
4.51714
4.28119
4.08675
3.90739
3.74439
3.59282
3.44916
3.31118
3.17742
3.04683
2.91856
2.79189
2.66626
2.54126
2.41656
2.29198
2.16739
2.04272
1.91798
1.79316
1.66831
1.54347
1.41868
1.29398
1.16942
1.04503
0.920864
0.79694
0.673294
0.5499
0.426911
0.303725
0.182352
0.054457
5.47523
4.54006
4.28852
4.09041
3.91108
3.74667
3.5942
3.45005
3.31169
3.1776
3.04669
2.91812
2.79119
2.66537
2.54022
2.41546
2.29086
2.16629
2.04168
1.91702
1.79229
1.66753
1.54277
1.41806
1.29343
1.16893
1.0446
0.920485
0.7966
0.672986
0.549634
0.426641
0.303762
0.181813
0.058931
5.40625
4.57091
4.29255
4.09429
3.91328
3.74843
3.5958
3.45148
3.31297
3.17875
3.04774
2.91909
2.7921
2.66623
2.54104
2.41622
2.29158
2.16696
2.04231
1.91759
1.79281
1.66801
1.54321
1.41846
1.2938
1.16927
1.04491
0.920769
0.796864
0.673233
0.549865
0.426872
0.303909
0.182116
0.0575427
5.39401
4.57114
4.29456
4.09483
3.91401
3.74883
3.59595
3.45151
3.31292
3.17864
3.04759
2.9189
2.79189
2.66598
2.54078
2.41597
2.29132
2.16672
2.04208
1.91739
1.79263
1.66785
1.54307
1.41834
1.2937
1.16918
1.04484
0.920707
0.796811
0.673188
0.549829
0.426832
0.303939
0.182006
0.0588767
5.3904
4.56746
4.2959
4.09483
3.91431
3.74893
3.59587
3.45135
3.31272
3.17841
3.04734
2.91864
2.79161
2.66569
2.54049
2.41567
2.29103
2.16644
2.04182
1.91713
1.7924
1.66763
1.54287
1.41815
1.29352
1.16903
1.04469
0.920574
0.79669
0.673075
0.549725
0.426729
0.303907
0.181843
0.060137
5.4649
4.54284
4.28812
4.09079
3.91085
3.74659
3.59425
3.45014
3.31182
3.17777
3.04691
2.91839
2.79152
2.66574
2.54063
2.41588
2.29129
2.16672
2.04211
1.91742
1.79267
1.66788
1.5431
1.41836
1.2937
1.16918
1.04483
0.92069
0.796788
0.67316
0.549793
0.426801
0.303816
0.182057
0.0572851
5.48619
4.53359
4.28845
4.09065
3.91116
3.74671
3.59422
3.45004
3.31166
3.17755
3.04665
2.91809
2.79118
2.66537
2.54023
2.41548
2.29088
2.16632
2.04172
1.91705
1.79232
1.66756
1.5428
1.41808
1.29345
1.16895
1.04462
0.920493
0.796598
0.67298
0.549616
0.426629
0.303763
0.181854
0.0587352
5.33173
4.59229
4.30305
4.09875
3.91735
3.75106
3.59748
3.45268
3.31384
3.17935
3.04813
2.91929
2.79215
2.66614
2.54086
2.41598
2.2913
2.16667
2.04202
1.91732
1.79257
1.6678
1.54303
1.4183
1.29367
1.16917
1.04484
0.920716
0.796831
0.673218
0.549868
0.426857
0.304098
0.181858
0.0618376
5.45406
4.54529
4.29057
4.09141
3.91185
3.74718
3.59455
3.45031
3.31188
3.17774
3.04679
2.91819
2.79123
2.66538
2.54022
2.41545
2.29084
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29342
1.16893
1.0446
0.920486
0.796604
0.672991
0.549641
0.426647
0.303802
0.181803
0.0595299
5.51304
4.53168
4.28359
4.08869
3.90854
3.74544
3.5938
3.45002
3.31193
3.17807
3.04739
2.91902
2.79227
2.66657
2.5415
2.41675
2.29211
2.16748
2.04278
1.91801
1.79318
1.66831
1.54346
1.41866
1.29396
1.1694
1.04501
0.920828
0.796879
0.67323
0.54983
0.426898
0.303756
0.18252
0.0538553
5.51313
4.53157
4.28357
4.08869
3.90854
3.74545
3.5938
3.45003
3.31194
3.17808
3.04739
2.91902
2.79227
2.66657
2.5415
2.41675
2.29211
2.16748
2.04278
1.91801
1.79318
1.66831
1.54346
1.41866
1.29396
1.1694
1.04501
0.920842
0.796917
0.673271
0.54988
0.426905
0.303689
0.182411
0.0538193
5.56411
4.5091
4.2798
4.0857
3.90656
3.74385
3.59247
3.44893
3.31105
3.17738
3.04687
2.91866
2.79205
2.66647
2.54149
2.4168
2.29222
2.16761
2.04294
1.91817
1.79334
1.66847
1.54361
1.4188
1.29409
1.16952
1.04513
0.920957
0.797028
0.673374
0.549965
0.426963
0.303718
0.182424
0.0539618
5.56706
4.5086
4.27964
4.08557
3.90646
3.74379
3.59242
3.44889
3.31102
3.17736
3.04686
2.91865
2.79205
2.66647
2.54149
2.41681
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.41881
1.2941
1.16952
1.04512
0.920942
0.796997
0.673352
0.54995
0.426989
0.303787
0.182461
0.0539535
5.24185
4.64621
4.31384
4.10535
3.9223
3.75407
3.59959
3.45445
3.31541
3.18081
3.04952
2.92064
2.79346
2.66742
2.5421
2.41719
2.29246
2.16779
2.0431
1.91836
1.79357
1.66875
1.54395
1.41919
1.29452
1.16999
1.04562
0.921476
0.797569
0.673938
0.550575
0.427541
0.304781
0.182503
0.0631661
5.58236
4.50664
4.27882
4.08506
3.90619
3.74359
3.59227
3.44879
3.31095
3.1773
3.04681
2.91862
2.79202
2.66644
2.54147
2.41679
2.29221
2.16761
2.04294
1.91817
1.79334
1.66848
1.54362
1.41881
1.2941
1.16952
1.04512
0.920944
0.797001
0.673358
0.549959
0.426994
0.303799
0.182429
0.0541059
5.41598
4.56756
4.29151
4.09372
3.91278
3.74812
3.59562
3.45137
3.3129
3.17872
3.04774
2.91912
2.79215
2.66629
2.54111
2.4163
2.29165
2.16703
2.04237
1.91764
1.79286
1.66804
1.54324
1.41848
1.29382
1.16928
1.04492
0.920776
0.796869
0.673236
0.549865
0.426874
0.303887
0.182145
0.0571231
5.56792
4.51758
4.28104
4.08641
3.90733
3.74426
3.59266
3.449
3.31102
3.17725
3.04664
2.91834
2.79165
2.66602
2.54102
2.41634
2.29178
2.16721
2.04257
1.91785
1.79305
1.66822
1.54339
1.41861
1.29392
1.16937
1.04498
0.920813
0.796878
0.673239
0.549852
0.426888
0.303802
0.182293
0.0552067
5.45678
4.55049
4.29458
4.09303
3.91339
3.74824
3.59526
3.45083
3.31227
3.17801
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41798
1.29336
1.16888
1.04456
0.920453
0.796567
0.672946
0.549589
0.426602
0.303902
0.18177
0.0615245
5.52425
4.52308
4.28246
4.08742
3.90802
3.74472
3.59298
3.44923
3.31118
3.17736
3.04671
2.91838
2.79166
2.666
2.54097
2.41628
2.2917
2.16712
2.04248
1.91776
1.79297
1.66814
1.54332
1.41854
1.29386
1.16931
1.04493
0.920773
0.796856
0.673217
0.549835
0.426847
0.303726
0.182228
0.0552381
5.35127
4.58686
4.29983
4.09733
3.91613
3.75023
3.59691
3.45226
3.31352
3.17912
3.04797
2.91919
2.79208
2.66612
2.54086
2.416
2.29133
2.16671
2.04206
1.91736
1.79261
1.66783
1.54306
1.41833
1.2937
1.16919
1.04485
0.920727
0.796838
0.673221
0.549869
0.426865
0.304058
0.181932
0.060722
5.56051
4.51044
4.28012
4.08591
3.90668
3.74394
3.59253
3.44898
3.31108
3.1774
3.04688
2.91866
2.79205
2.66646
2.54147
2.41679
2.2922
2.16759
2.04292
1.91815
1.79332
1.66845
1.5436
1.41879
1.29408
1.16951
1.04512
0.920945
0.797017
0.673363
0.549956
0.426956
0.303712
0.182422
0.0539451
5.56189
4.51011
4.28002
4.08583
3.90663
3.74391
3.59251
3.44896
3.31107
3.17739
3.04687
2.91866
2.79204
2.66646
2.54147
2.41679
2.2922
2.1676
2.04292
1.91815
1.79332
1.66845
1.5436
1.41879
1.29408
1.16951
1.04511
0.920929
0.796983
0.673337
0.549935
0.426978
0.303781
0.182468
0.0539418
5.20727
4.66941
4.31778
4.10763
3.92445
3.75527
3.60032
3.45499
3.31584
3.18115
3.04979
2.92087
2.79367
2.66762
2.5423
2.4174
2.2927
2.16806
2.0434
1.91868
1.79392
1.66913
1.54435
1.41961
1.29495
1.17043
1.04607
0.921916
0.798004
0.674363
0.550995
0.427959
0.305202
0.182985
0.0633179
5.52411
4.5226
4.28237
4.08747
3.908
3.74472
3.59298
3.44922
3.31116
3.17734
3.04668
2.91835
2.79163
2.66597
2.54095
2.41626
2.29169
2.16711
2.04248
1.91775
1.79296
1.66814
1.54331
1.41854
1.29385
1.1693
1.04492
0.920758
0.796826
0.673189
0.549804
0.426843
0.303764
0.182264
0.0552264
5.4404
4.5504
4.29045
4.09199
3.91191
3.74729
3.59472
3.45047
3.31205
3.17792
3.04698
2.9184
2.79146
2.66563
2.54049
2.41572
2.29111
2.16654
2.04193
1.91725
1.79251
1.66773
1.54296
1.41824
1.2936
1.16909
1.04475
0.920619
0.796726
0.673105
0.549746
0.426753
0.303832
0.181955
0.0583244
5.43734
4.54978
4.29308
4.0925
3.91285
3.74787
3.59502
3.45065
3.31214
3.17792
3.04692
2.91826
2.79127
2.66539
2.54021
2.41541
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54272
1.41801
1.29339
1.16891
1.04459
0.920476
0.796595
0.672982
0.549633
0.426639
0.303865
0.181767
0.0606833
5.58151
4.51442
4.28022
4.08588
3.90689
3.744
3.5925
3.4489
3.31097
3.17724
3.04667
2.91841
2.79175
2.66614
2.54114
2.41647
2.2919
2.16732
2.04267
1.91794
1.79313
1.66829
1.54345
1.41866
1.29396
1.1694
1.04501
0.920839
0.796901
0.673261
0.549871
0.42691
0.303793
0.182336
0.0548211
5.58154
4.51375
4.28009
4.08574
3.90685
3.74397
3.59249
3.44891
3.31099
3.17728
3.04672
2.91846
2.7918
2.66618
2.54119
2.41651
2.29194
2.16736
2.0427
1.91796
1.79315
1.66831
1.54347
1.41868
1.29398
1.16942
1.04503
0.920864
0.79694
0.673295
0.549906
0.426914
0.303754
0.182306
0.054821
5.43298
4.54879
4.29277
4.09324
3.91294
3.74796
3.59514
3.45074
3.31221
3.178
3.04701
2.91838
2.79141
2.66556
2.5404
2.41562
2.29101
2.16643
2.04182
1.91715
1.79241
1.66765
1.54288
1.41817
1.29353
1.16903
1.0447
0.920571
0.796676
0.673058
0.549697
0.42671
0.30386
0.181905
0.0591736
5.31754
4.60281
4.30394
4.09967
3.91801
3.75155
3.59795
3.45316
3.31432
3.17983
3.04858
2.91972
2.79255
2.66652
2.54122
2.41632
2.29162
2.16697
2.04231
1.91759
1.79283
1.66804
1.54326
1.41853
1.29388
1.16937
1.04503
0.920902
0.797011
0.673391
0.550036
0.427019
0.304235
0.182018
0.061689
5.34159
4.59057
4.30131
4.09808
3.9168
3.75069
3.59724
3.45251
3.31371
3.17926
3.04807
2.91926
2.79213
2.66614
2.54087
2.416
2.29132
2.1667
2.04205
1.91735
1.7926
1.66782
1.54305
1.41832
1.29369
1.16919
1.04485
0.920728
0.796841
0.673225
0.549875
0.426868
0.304081
0.181903
0.0612123
5.38628
4.56751
4.29727
4.09529
3.91483
3.74929
3.59609
3.4515
3.31282
3.17848
3.04738
2.91865
2.79159
2.66566
2.54044
2.41562
2.29098
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.04469
0.920575
0.796693
0.67308
0.549732
0.426735
0.303959
0.181813
0.060972
5.37714
4.58429
4.29533
4.096
3.91456
3.74925
3.59643
3.45203
3.31346
3.17919
3.04812
2.91942
2.79238
2.66645
2.54122
2.41638
2.2917
2.16707
2.0424
1.91767
1.79289
1.66808
1.54327
1.41852
1.29386
1.16933
1.04497
0.920822
0.796916
0.673284
0.549918
0.42692
0.30399
0.182116
0.0581666
5.53024
4.52255
4.28217
4.08755
3.90779
3.74482
3.59323
3.44953
3.31151
3.17771
3.04709
2.91879
2.79211
2.66646
2.54144
2.41672
2.29212
2.1675
2.04282
1.91805
1.79322
1.66836
1.54351
1.41871
1.29401
1.16944
1.04505
0.920869
0.796921
0.673274
0.549874
0.426932
0.303771
0.182506
0.0539354
5.53127
4.52208
4.28207
4.08743
3.90771
3.74476
3.5932
3.44951
3.3115
3.17772
3.04711
2.91881
2.79213
2.66648
2.54146
2.41674
2.29213
2.16751
2.04283
1.91807
1.79324
1.66837
1.54352
1.41872
1.29401
1.16945
1.04506
0.92089
0.796964
0.673315
0.549917
0.426934
0.303709
0.182427
0.0539104
5.22729
4.65648
4.31525
4.10627
3.92315
3.75452
3.59985
3.45464
3.31556
3.18093
3.04962
2.92074
2.79357
2.66755
2.54225
2.41737
2.29268
2.16803
2.04336
1.91863
1.79384
1.66902
1.54422
1.41945
1.29478
1.17024
1.04587
0.921719
0.797806
0.674167
0.5508
0.427764
0.305001
0.182754
0.0631905
5.29311
4.6177
4.30696
4.10149
3.91926
3.75225
3.59839
3.4535
3.3146
3.18006
3.04879
2.91991
2.79272
2.66668
2.54136
2.41644
2.29173
2.16707
2.04239
1.91766
1.79289
1.66809
1.5433
1.41856
1.29391
1.1694
1.04505
0.920923
0.797031
0.673412
0.550059
0.42704
0.304264
0.182028
0.061959
5.45702
4.55032
4.28745
4.09166
3.91101
3.74695
3.59475
3.45064
3.31229
3.17822
3.04735
2.91884
2.79197
2.66618
2.54107
2.4163
2.29168
2.16707
2.04241
1.91768
1.79289
1.66806
1.54325
1.41848
1.2938
1.16926
1.04489
0.920737
0.796813
0.673179
0.5498
0.426836
0.303804
0.182226
0.0557752
5.49857
4.53299
4.28408
4.08882
3.90892
3.74542
3.59355
3.44969
3.31155
3.17766
3.04695
2.91857
2.79181
2.66612
2.54106
2.41634
2.29175
2.16716
2.04251
1.91777
1.79298
1.66815
1.54332
1.41854
1.29386
1.16931
1.04494
0.920777
0.796859
0.673219
0.549835
0.426851
0.303725
0.182258
0.0550858
5.48846
4.53412
4.28579
4.08914
3.90963
3.7457
3.59357
3.4496
3.31139
3.17742
3.04663
2.91816
2.79133
2.66558
2.54049
2.41576
2.29118
2.16662
2.04201
1.91732
1.79257
1.66779
1.543
1.41826
1.29361
1.16909
1.04474
0.920597
0.796697
0.673072
0.549707
0.426718
0.303718
0.181983
0.0569607
5.39692
4.56471
4.2955
4.0953
3.91445
3.74913
3.59612
3.45159
3.31293
3.17862
3.04754
2.91884
2.79181
2.66591
2.54071
2.4159
2.29126
2.16666
2.04203
1.91734
1.79259
1.66781
1.54304
1.41831
1.29367
1.16916
1.04482
0.920685
0.796787
0.673167
0.549808
0.426818
0.303963
0.18198
0.0593224
5.2703
4.63449
4.30904
4.10321
3.92047
3.7529
3.59884
3.45389
3.31499
3.18048
3.04926
2.92043
2.79328
2.66726
2.54194
2.41702
2.29229
2.16761
2.04291
1.91816
1.79336
1.66854
1.54374
1.41898
1.29431
1.16978
1.04542
0.921267
0.797359
0.673724
0.550358
0.427331
0.304532
0.182332
0.0617202
5.33218
4.60697
4.30074
4.09911
3.9169
3.75067
3.59739
3.45279
3.3141
3.17974
3.04862
2.91986
2.79276
2.66679
2.54151
2.41663
2.29193
2.16728
2.04259
1.91785
1.79306
1.66824
1.54343
1.41867
1.29401
1.16947
1.04511
0.920958
0.797048
0.673414
0.550047
0.427039
0.304159
0.182159
0.0592419
5.4999
4.5324
4.28414
4.08901
3.90901
3.74548
3.59358
3.44968
3.31152
3.17761
3.0469
2.91851
2.79175
2.66606
2.54101
2.4163
2.29171
2.16713
2.04248
1.91775
1.79296
1.66813
1.54331
1.41853
1.29385
1.1693
1.04492
0.920756
0.796825
0.673188
0.549802
0.426844
0.303763
0.182289
0.055116
5.40197
4.56176
4.29545
4.09434
3.91407
3.74876
3.59572
3.45122
3.3126
3.17831
3.04725
2.91855
2.79152
2.66561
2.54041
2.4156
2.29097
2.16638
2.04176
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16901
1.04469
0.92057
0.796686
0.673073
0.549723
0.426727
0.303927
0.181832
0.0604799
5.5055
4.5296
4.28378
4.08835
3.90869
3.7452
3.59334
3.4495
3.31139
3.17752
3.04682
2.91845
2.79169
2.66601
2.54096
2.41625
2.29167
2.16709
2.04245
1.91773
1.79295
1.66812
1.54331
1.41853
1.29385
1.16931
1.04493
0.920777
0.796861
0.673223
0.549841
0.426854
0.303749
0.182226
0.055457
5.40915
4.55694
4.29631
4.09418
3.91414
3.74875
3.59563
3.45111
3.31249
3.17819
3.04712
2.91841
2.79138
2.66546
2.54026
2.41544
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54273
1.41802
1.29341
1.16892
1.0446
0.920493
0.796609
0.672993
0.549641
0.42665
0.303933
0.181768
0.0615373
5.3428
4.61188
4.29856
4.09915
3.91637
3.75028
3.59721
3.45271
3.31412
3.17986
3.04883
2.92017
2.79316
2.66726
2.54204
2.41718
2.29249
2.16781
2.0431
1.91831
1.79348
1.66861
1.54376
1.41896
1.29425
1.16969
1.0453
0.921128
0.797201
0.673551
0.550169
0.427161
0.304201
0.18234
0.0574686
5.33954
4.58812
4.30244
4.09848
3.91717
3.75096
3.59741
3.45261
3.31376
3.17927
3.04805
2.91922
2.79209
2.66609
2.54082
2.41595
2.29127
2.16665
2.04201
1.91731
1.79256
1.66779
1.54302
1.4183
1.29367
1.16917
1.04484
0.920719
0.796834
0.673221
0.549869
0.426861
0.304097
0.181869
0.061672
5.55792
4.52208
4.28216
4.08694
3.90791
3.74461
3.59287
3.44914
3.3111
3.17729
3.04663
2.91828
2.79155
2.66588
2.54085
2.41616
2.2916
2.16703
2.04241
1.9177
1.79292
1.66811
1.54329
1.41853
1.29385
1.1693
1.04493
0.920773
0.796858
0.673221
0.549843
0.426852
0.303766
0.182174
0.0558004
5.31662
4.60492
4.30386
4.09976
3.91799
3.75149
3.5979
3.45312
3.31429
3.1798
3.04856
2.91971
2.79255
2.66652
2.54122
2.41632
2.29162
2.16698
2.04231
1.91759
1.79282
1.66803
1.54325
1.41852
1.29387
1.16936
1.04502
0.920885
0.796993
0.673373
0.550018
0.427004
0.304212
0.182015
0.0614406
5.21735
4.6665
4.31593
4.10708
3.92382
3.75484
3.60006
3.45481
3.3157
3.18104
3.04972
2.92082
2.79363
2.6676
2.54229
2.4174
2.2927
2.16806
2.04339
1.91868
1.79392
1.66913
1.54435
1.41961
1.29497
1.17045
1.0461
0.921952
0.798041
0.674398
0.551023
0.427981
0.305194
0.182987
0.062347
5.38253
4.56661
4.29839
4.09565
3.91518
3.74952
3.59624
3.4516
3.31289
3.17852
3.0474
2.91865
2.79158
2.66564
2.54041
2.41559
2.29094
2.16635
2.04173
1.91705
1.79232
1.66757
1.54281
1.41811
1.29349
1.169
1.04468
0.920563
0.79668
0.673066
0.549715
0.426718
0.303984
0.181789
0.0615897
5.33888
4.59523
4.30088
4.09828
3.91676
3.75068
3.59733
3.45266
3.31391
3.1795
3.04833
2.91953
2.79241
2.66642
2.54115
2.41628
2.29159
2.16695
2.04229
1.91758
1.79282
1.66802
1.54324
1.4185
1.29386
1.16934
1.045
0.920862
0.796965
0.673342
0.549984
0.426976
0.304152
0.18204
0.0605648
5.55136
4.51671
4.2807
4.08626
3.90731
3.74424
3.59264
3.44898
3.31101
3.17724
3.04664
2.91833
2.79164
2.666
2.54098
2.4163
2.29173
2.16716
2.04252
1.91779
1.793
1.66817
1.54334
1.41856
1.29387
1.16932
1.04494
0.920783
0.796865
0.673225
0.549843
0.426854
0.303731
0.182222
0.0552278
5.45586
4.55137
4.29436
4.09285
3.91325
3.74815
3.5952
3.45078
3.31223
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04456
0.920447
0.796563
0.672945
0.549595
0.426608
0.303895
0.181761
0.0614154
5.31976
4.6023
4.30395
4.09997
3.918
3.7515
3.59791
3.45311
3.31427
3.17979
3.04856
2.91972
2.79257
2.66656
2.54126
2.41637
2.29167
2.16703
2.04236
1.91764
1.79287
1.66808
1.54329
1.41856
1.29391
1.16939
1.04505
0.920912
0.797016
0.673396
0.550038
0.427025
0.304224
0.182037
0.061195
5.44091
4.56849
4.28838
4.09304
3.91142
3.74734
3.59531
3.45136
3.31315
3.17917
3.04836
2.91985
2.79295
2.66711
2.5419
2.41704
2.29232
2.16761
2.04286
1.91805
1.79319
1.66831
1.54345
1.41864
1.29394
1.16938
1.04499
0.920822
0.796899
0.673253
0.549869
0.426888
0.303769
0.182288
0.0547193
5.27625
4.63867
4.30743
4.10321
3.92013
3.75259
3.59866
3.45377
3.31491
3.18044
3.04925
2.92045
2.79334
2.66736
2.54209
2.41721
2.29251
2.16785
2.04315
1.91841
1.7936
1.66877
1.54394
1.41916
1.29448
1.16992
1.04553
0.921364
0.797437
0.673785
0.550406
0.427379
0.304528
0.182424
0.0600995
5.40453
4.56006
4.29587
4.09424
3.91408
3.74873
3.59565
3.45114
3.31252
3.17823
3.04717
2.91847
2.79144
2.66553
2.54032
2.41551
2.29088
2.1663
2.04168
1.91701
1.79229
1.66753
1.54278
1.41807
1.29345
1.16896
1.04464
0.920528
0.796647
0.673034
0.549686
0.426691
0.303925
0.181788
0.0609635
5.42326
4.55501
4.29291
4.09306
3.91296
3.74798
3.59516
3.45079
3.31227
3.17805
3.04705
2.91841
2.79143
2.66555
2.54038
2.41559
2.29097
2.16639
2.04178
1.9171
1.79237
1.66761
1.54285
1.41813
1.29351
1.16901
1.04468
0.920557
0.796671
0.673056
0.549704
0.426709
0.303861
0.181858
0.0595694
5.27934
4.62869
4.30834
4.10303
3.9201
3.7527
3.59875
3.45382
3.31494
3.18045
3.04923
2.9204
2.79325
2.66723
2.54191
2.417
2.29227
2.16759
2.04289
1.91814
1.79335
1.66853
1.54372
1.41896
1.29429
1.16975
1.04538
0.921233
0.797323
0.673691
0.550327
0.427305
0.304496
0.182302
0.0612916
5.44355
4.54493
4.29215
4.0927
3.91261
3.7477
3.59492
3.45056
3.31206
3.17786
3.04689
2.91827
2.79131
2.66546
2.5403
2.41552
2.29091
2.16634
2.04173
1.91706
1.79233
1.66757
1.54281
1.41809
1.29346
1.16896
1.04463
0.920512
0.796619
0.673002
0.549642
0.426655
0.303819
0.181856
0.0593276
5.19253
4.67734
4.32
4.10862
3.92543
3.75586
3.60068
3.45527
3.31605
3.18132
3.04993
2.92099
2.79377
2.66771
2.54238
2.41748
2.29277
2.16813
2.04346
1.91875
1.79399
1.66921
1.54443
1.4197
1.29507
1.17056
1.04622
0.922096
0.798209
0.674589
0.551242
0.42822
0.305489
0.183295
0.0638891
5.46312
4.54243
4.28894
4.09077
3.91112
3.74669
3.59423
3.45008
3.31172
3.17764
3.04675
2.91819
2.79128
2.66546
2.54033
2.41557
2.29098
2.16641
2.04181
1.91713
1.7924
1.66764
1.54287
1.41815
1.29352
1.16901
1.04468
0.920552
0.796662
0.673044
0.549688
0.426695
0.303784
0.181885
0.0584457
5.5604
4.51248
4.28017
4.08596
3.90685
3.74401
3.59254
3.44896
3.31104
3.17734
3.04679
2.91855
2.79191
2.66631
2.54133
2.41665
2.29208
2.16749
2.04283
1.91808
1.79326
1.66841
1.54356
1.41876
1.29406
1.16949
1.0451
0.92092
0.796978
0.673335
0.54994
0.426978
0.303828
0.182426
0.054502
5.43199
4.54836
4.29409
4.09312
3.91328
3.74813
3.59518
3.45075
3.3122
3.17796
3.04693
2.91826
2.79125
2.66536
2.54017
2.41537
2.29075
2.16617
2.04157
1.9169
1.79218
1.66742
1.54267
1.41797
1.29335
1.16886
1.04455
0.920435
0.796549
0.672931
0.549573
0.426585
0.30385
0.181759
0.0609275
5.58015
4.50852
4.27905
4.08527
3.9064
3.74372
3.59235
3.44883
3.31096
3.17729
3.04678
2.91856
2.79194
2.66636
2.54138
2.4167
2.29213
2.16754
2.04287
1.91811
1.79329
1.66843
1.54358
1.41878
1.29407
1.1695
1.0451
0.920922
0.796979
0.673338
0.549942
0.426978
0.303811
0.182414
0.0543405
5.4796
4.54267
4.28544
4.09
3.90967
3.74601
3.59406
3.45013
3.31192
3.17797
3.0472
2.91877
2.79197
2.66624
2.54115
2.41641
2.29179
2.16718
2.04252
1.91778
1.79297
1.66814
1.54331
1.41853
1.29385
1.1693
1.04493
0.920768
0.796851
0.673211
0.549828
0.426846
0.303724
0.182264
0.055011
5.4075
4.57462
4.29228
4.09501
3.9134
3.74858
3.59605
3.45179
3.31332
3.17913
3.04815
2.91951
2.79253
2.66665
2.54144
2.4166
2.29192
2.16727
2.04258
1.91783
1.79302
1.66818
1.54336
1.41859
1.29391
1.16936
1.04499
0.920836
0.796914
0.673281
0.549906
0.426932
0.30395
0.182234
0.0566614
5.34315
4.61048
4.29856
4.09949
3.91653
3.75038
3.59728
3.45275
3.31413
3.17985
3.04882
2.92015
2.79314
2.66724
2.54203
2.41718
2.29249
2.16782
2.04311
1.91833
1.79349
1.66863
1.54377
1.41897
1.29426
1.1697
1.04531
0.921132
0.797197
0.673552
0.550172
0.427176
0.304236
0.182349
0.0574657
5.3936
4.56178
4.29751
4.09521
3.91478
3.74921
3.596
3.4514
3.31272
3.17838
3.04728
2.91856
2.79151
2.66558
2.54036
2.41555
2.29091
2.16632
2.04171
1.91703
1.79231
1.66755
1.5428
1.41809
1.29347
1.16898
1.04466
0.920545
0.79666
0.673045
0.549692
0.426697
0.303959
0.181803
0.0613103
5.41515
4.55419
4.29522
4.09417
3.91386
3.74856
3.59552
3.45103
3.31243
3.17815
3.04711
2.91843
2.79142
2.66553
2.54034
2.41554
2.29092
2.16634
2.04173
1.91706
1.79233
1.66757
1.54282
1.41811
1.29349
1.16899
1.04467
0.920553
0.796664
0.673048
0.549692
0.426701
0.30392
0.181845
0.0604568
5.40175
4.56619
4.29421
4.09495
3.91394
3.7488
3.59595
3.45149
3.3129
3.17862
3.04758
2.91891
2.79191
2.66602
2.54083
2.41602
2.29138
2.16678
2.04214
1.91744
1.79268
1.66789
1.5431
1.41836
1.29371
1.16919
1.04484
0.920701
0.796796
0.673173
0.54981
0.426826
0.303928
0.182035
0.0584095
5.41072
4.56064
4.29367
4.09375
3.91339
3.74831
3.59544
3.45103
3.31248
3.17823
3.04722
2.91856
2.79156
2.66568
2.54049
2.4157
2.29107
2.16649
2.04187
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04473
0.920607
0.796719
0.673101
0.549748
0.426753
0.303892
0.181906
0.0594039
5.16087
4.68988
4.3261
4.11083
3.92759
3.75726
3.60155
3.45591
3.31655
3.1817
3.05023
2.92123
2.79396
2.66786
2.54251
2.41758
2.29287
2.16822
2.04355
1.91885
1.79409
1.66931
1.54454
1.41982
1.29519
1.17069
1.04636
0.92224
0.79836
0.674751
0.551418
0.428411
0.30575
0.183626
0.0665377
5.57173
4.50736
4.27922
4.0853
3.90631
3.74367
3.59233
3.44882
3.31096
3.17731
3.04681
2.91862
2.79201
2.66644
2.54146
2.41678
2.2922
2.1676
2.04292
1.91816
1.79332
1.66846
1.5436
1.41879
1.29408
1.16951
1.04511
0.92093
0.796986
0.673344
0.549943
0.42698
0.303778
0.182433
0.0539962
5.57428
4.50612
4.27894
4.08515
3.90624
3.74363
3.59232
3.44883
3.31099
3.17734
3.04685
2.91866
2.79206
2.66648
2.54151
2.41683
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16953
1.04514
0.920968
0.797039
0.673384
0.549975
0.426969
0.303726
0.182416
0.0540192
5.38659
4.57677
4.29488
4.09534
3.91426
3.74905
3.5962
3.45177
3.31319
3.17891
3.04785
2.91915
2.79212
2.66621
2.54099
2.41617
2.29151
2.16689
2.04224
1.91753
1.79276
1.66797
1.54318
1.41843
1.29378
1.16926
1.04491
0.920766
0.796865
0.673237
0.549873
0.426876
0.303964
0.182061
0.0585378
5.46026
4.54359
4.28979
4.09108
3.91152
3.74696
3.5944
3.4502
3.3118
3.17768
3.04675
2.91817
2.79123
2.66539
2.54024
2.41547
2.29087
2.1663
2.0417
1.91703
1.7923
1.66754
1.54278
1.41807
1.29344
1.16895
1.04462
0.920497
0.796613
0.672999
0.549647
0.426654
0.303784
0.181821
0.0591242
5.22564
4.6575
4.31591
4.10677
3.92336
3.75465
3.59996
3.45472
3.31561
3.18096
3.04964
2.92074
2.79356
2.66752
2.54222
2.41733
2.29263
2.16798
2.04331
1.91858
1.7938
1.66898
1.54417
1.41941
1.29473
1.17019
1.04582
0.921664
0.797749
0.674112
0.550745
0.42771
0.304944
0.18269
0.0629564
5.37636
4.57801
4.29663
4.09596
3.91497
3.74951
3.59646
3.45192
3.31326
3.17892
3.04782
2.91908
2.79203
2.66609
2.54086
2.41603
2.29137
2.16676
2.04212
1.91742
1.79266
1.66788
1.5431
1.41837
1.29373
1.16922
1.04487
0.920739
0.796844
0.673221
0.549864
0.426864
0.304001
0.181998
0.0595102
5.36803
4.57295
4.2997
4.09663
3.91587
3.75004
3.59666
3.45195
3.31319
3.17878
3.04762
2.91884
2.79175
2.66579
2.54055
2.41571
2.29105
2.16645
2.04182
1.91714
1.79241
1.66765
1.54289
1.41818
1.29355
1.16906
1.04473
0.920619
0.796735
0.673121
0.54977
0.426769
0.304023
0.18182
0.061567
5.30149
4.62441
4.30437
4.10189
3.91881
3.75181
3.59818
3.4534
3.31462
3.18022
3.04909
2.92034
2.79326
2.66731
2.54205
2.41717
2.29246
2.16779
2.04309
1.91833
1.79352
1.66868
1.54384
1.41906
1.29437
1.16982
1.04543
0.921265
0.797338
0.673695
0.55032
0.427308
0.304439
0.182375
0.0594044
5.45949
4.54579
4.2884
4.09114
3.91101
3.74674
3.5944
3.45028
3.31194
3.17788
3.04702
2.9185
2.79163
2.66584
2.54073
2.41598
2.29139
2.16681
2.04219
1.91749
1.79273
1.66794
1.54315
1.4184
1.29375
1.16922
1.04487
0.920724
0.79682
0.67319
0.54982
0.426829
0.303829
0.182102
0.0570438
5.45126
4.54728
4.29192
4.09191
3.91239
3.74756
3.5948
3.45049
3.31201
3.17783
3.04685
2.91821
2.79123
2.66536
2.54019
2.4154
2.29078
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29338
1.1689
1.04457
0.920463
0.796583
0.67297
0.549621
0.426628
0.303832
0.181762
0.0603391
5.24477
4.65448
4.31173
4.10537
3.92209
3.75376
3.5994
3.45431
3.31532
3.18075
3.04949
2.92065
2.7935
2.66749
2.5422
2.41732
2.29263
2.16799
2.04332
1.91861
1.79384
1.66904
1.54424
1.41949
1.29482
1.17028
1.0459
0.921732
0.797801
0.674142
0.550755
0.427712
0.304884
0.182716
0.0609805
5.25351
4.64277
4.3116
4.10444
3.92154
3.75355
3.59925
3.4542
3.31522
3.18066
3.0494
2.92053
2.79336
2.66731
2.54198
2.41705
2.2923
2.16761
2.0429
1.91815
1.79335
1.66852
1.54372
1.41896
1.2943
1.16976
1.04541
0.921261
0.797358
0.673728
0.550368
0.427343
0.304567
0.182341
0.0623027
5.29373
4.61964
4.30637
4.10144
3.91914
3.75213
3.59832
3.45346
3.3146
3.18011
3.04887
2.92001
2.79284
2.66681
2.54149
2.41658
2.29186
2.1672
2.04251
1.91778
1.793
1.6682
1.54341
1.41866
1.29401
1.16949
1.04513
0.920997
0.797099
0.673475
0.550117
0.427099
0.304304
0.182108
0.0615334
5.41122
4.55832
4.29426
4.09359
3.91345
3.7483
3.59537
3.45093
3.31237
3.17812
3.04709
2.91842
2.79141
2.66552
2.54033
2.41553
2.29091
2.16632
2.04171
1.91703
1.79231
1.66755
1.54279
1.41808
1.29346
1.16896
1.04464
0.920522
0.796639
0.673027
0.549678
0.426684
0.303871
0.181805
0.0601815
5.53495
4.52221
4.28225
4.08713
3.90807
3.74471
3.59293
3.44918
3.31113
3.1773
3.04662
2.91826
2.79152
2.66584
2.54081
2.41611
2.29154
2.16698
2.04236
1.91765
1.79288
1.66806
1.54325
1.41849
1.29381
1.16927
1.0449
0.920747
0.796834
0.673198
0.549821
0.426831
0.303753
0.18215
0.0558843
5.48814
4.53994
4.28498
4.0898
3.90952
3.74599
3.5941
3.45019
3.312
3.17806
3.04731
2.91888
2.79209
2.66636
2.54127
2.41652
2.29189
2.16728
2.0426
1.91785
1.79304
1.6682
1.54337
1.41858
1.29389
1.16934
1.04497
0.920806
0.796887
0.673245
0.549859
0.426878
0.303737
0.182312
0.0547935
5.48897
4.53567
4.28508
4.08926
3.90938
3.74569
3.59369
3.44977
3.31159
3.17765
3.04691
2.91849
2.7917
2.66598
2.54092
2.41619
2.2916
2.16702
2.04238
1.91767
1.79289
1.66807
1.54326
1.41849
1.29381
1.16927
1.0449
0.920751
0.796837
0.673201
0.549822
0.426835
0.303752
0.182194
0.0557174
5.48371
4.53696
4.28575
4.0895
3.90968
3.74584
3.59377
3.44981
3.3116
3.17764
3.04687
2.91842
2.79161
2.66588
2.54081
2.41608
2.2915
2.16692
2.0423
1.91759
1.79282
1.66802
1.54321
1.41846
1.29379
1.16925
1.04489
0.920738
0.796828
0.673193
0.549818
0.426829
0.303777
0.182153
0.0562095
5.37596
4.56921
4.29889
4.09599
3.91541
3.74968
3.59636
3.4517
3.31297
3.17859
3.04745
2.9187
2.79162
2.66567
2.54044
2.41561
2.29096
2.16636
2.04174
1.91706
1.79233
1.66757
1.54282
1.41811
1.29349
1.169
1.04468
0.920562
0.79668
0.673067
0.549716
0.426719
0.303982
0.181783
0.0615883
5.4169
4.56817
4.29096
4.09356
3.91251
3.74794
3.59551
3.45131
3.31289
3.17873
3.04777
2.91916
2.7922
2.66635
2.54117
2.41636
2.2917
2.16707
2.0424
1.91767
1.79287
1.66805
1.54324
1.41848
1.29381
1.16927
1.04491
0.920758
0.796849
0.673215
0.549843
0.426855
0.303846
0.18215
0.0566745
5.51948
4.52737
4.28284
4.08821
3.90828
3.74522
3.59357
3.44981
3.31173
3.17789
3.04722
2.91888
2.79215
2.66648
2.54142
2.41669
2.29207
2.16745
2.04276
1.918
1.79317
1.66831
1.54346
1.41867
1.29397
1.1694
1.04502
0.920851
0.796926
0.67328
0.549887
0.426909
0.303698
0.182406
0.0539422
5.4433
4.56699
4.2885
4.09335
3.91171
3.74757
3.59548
3.45145
3.31316
3.17911
3.04823
2.91968
2.79274
2.66689
2.54169
2.41685
2.29215
2.16748
2.04276
1.91798
1.79314
1.66828
1.54344
1.41864
1.29395
1.16939
1.04501
0.92084
0.796904
0.673262
0.549874
0.426918
0.303852
0.182367
0.0549046
5.36078
4.57676
4.30037
4.09707
3.91626
3.75036
3.59694
3.45221
3.31342
3.17898
3.0478
2.919
2.79189
2.66592
2.54066
2.41581
2.29115
2.16654
2.04191
1.91722
1.79249
1.66772
1.54296
1.41825
1.29362
1.16913
1.0448
0.920683
0.796799
0.673185
0.549833
0.426828
0.304077
0.181858
0.0616881
5.45648
4.54496
4.2887
4.09093
3.91101
3.74665
3.59425
3.45012
3.31178
3.17771
3.04683
2.91829
2.7914
2.6656
2.54048
2.41572
2.29113
2.16656
2.04195
1.91726
1.79252
1.66774
1.54297
1.41824
1.29359
1.16908
1.04473
0.9206
0.796704
0.673081
0.54972
0.426728
0.303774
0.181958
0.0577105
5.57696
4.50631
4.27872
4.08507
3.90626
3.74364
3.59231
3.44882
3.31097
3.17732
3.04681
2.91861
2.79199
2.66641
2.54143
2.41675
2.29217
2.16757
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29407
1.1695
1.04511
0.920935
0.797008
0.673356
0.549954
0.426953
0.303731
0.182384
0.0541991
5.43968
4.56732
4.28888
4.09315
3.91168
3.74752
3.59541
3.45138
3.3131
3.17906
3.04819
2.91965
2.79273
2.66688
2.54168
2.41684
2.29214
2.16746
2.04274
1.91795
1.79312
1.66826
1.54341
1.41862
1.29393
1.16937
1.04499
0.920833
0.796913
0.673271
0.549888
0.426906
0.303806
0.182292
0.0551019
5.29927
4.61275
4.30637
4.10103
3.91899
3.75213
3.59833
3.45346
3.31457
3.18004
3.04878
2.9199
2.79271
2.66667
2.54135
2.41644
2.29172
2.16707
2.04239
1.91767
1.7929
1.6681
1.54332
1.41858
1.29393
1.16942
1.04507
0.920945
0.797053
0.673434
0.55008
0.427059
0.304285
0.182037
0.0620764
5.46194
4.55335
4.2871
4.09143
3.91063
3.74676
3.59473
3.45074
3.31248
3.17848
3.04766
2.91917
2.79231
2.66653
2.5414
2.41661
2.29196
2.16732
2.04264
1.91788
1.79307
1.66822
1.54339
1.41861
1.29392
1.16937
1.04499
0.920833
0.796914
0.673273
0.549889
0.426905
0.303794
0.182309
0.0551383
5.5454
4.51944
4.28164
4.0869
3.90777
3.74454
3.59283
3.4491
3.31105
3.17723
3.04658
2.91823
2.79151
2.66585
2.54083
2.41614
2.29157
2.16701
2.04238
1.91767
1.79289
1.66807
1.54326
1.41849
1.29381
1.16926
1.04488
0.920722
0.796794
0.673159
0.549777
0.426812
0.303758
0.182198
0.0555822
5.36374
4.57838
4.29917
4.09669
3.91585
3.75006
3.59673
3.45205
3.31329
3.17888
3.04772
2.91895
2.79185
2.6659
2.54065
2.41581
2.29115
2.16654
2.04191
1.91722
1.79248
1.66771
1.54295
1.41823
1.2936
1.16911
1.04478
0.920657
0.796772
0.673158
0.549808
0.426806
0.304021
0.181865
0.0610347
5.54443
4.51764
4.28113
4.08656
3.90739
3.74428
3.59266
3.44897
3.31097
3.17719
3.04656
2.91825
2.79156
2.66592
2.54091
2.41622
2.29166
2.16708
2.04245
1.91772
1.79293
1.6681
1.54328
1.4185
1.29382
1.16927
1.04489
0.920721
0.79679
0.673156
0.549771
0.426811
0.303727
0.182228
0.0551304
5.38114
4.58581
4.29476
4.09602
3.9144
3.74916
3.5964
3.45204
3.31349
3.17923
3.04818
2.91949
2.79246
2.66654
2.54132
2.41647
2.29179
2.16715
2.04248
1.91774
1.79294
1.66812
1.54331
1.41855
1.29388
1.16934
1.04498
0.920832
0.796923
0.673289
0.549919
0.426924
0.303971
0.182146
0.0576465
5.44937
4.54473
4.2929
4.09259
3.91275
3.74776
3.59492
3.45055
3.31204
3.17784
3.04684
2.91821
2.79123
2.66536
2.54018
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66747
1.54271
1.41801
1.29339
1.1689
1.04458
0.920463
0.796575
0.672957
0.549597
0.426608
0.303836
0.181796
0.0603108
5.46252
4.54371
4.29016
4.09113
3.91176
3.74714
3.59452
3.45028
3.31186
3.17772
3.04677
2.91816
2.7912
2.66535
2.54018
2.4154
2.29079
2.16622
2.04161
1.91695
1.79222
1.66746
1.54271
1.418
1.29338
1.16889
1.04457
0.920454
0.796574
0.672962
0.549613
0.42662
0.303788
0.18177
0.0597232
5.44621
4.54458
4.29152
4.09258
3.91241
3.7476
3.59488
3.45055
3.31207
3.17789
3.04694
2.91833
2.79139
2.66556
2.54041
2.41564
2.29104
2.16647
2.04186
1.91719
1.79245
1.66769
1.54292
1.4182
1.29357
1.16906
1.04472
0.920595
0.796697
0.673077
0.549714
0.426728
0.303859
0.181944
0.0588218
5.41415
4.5557
4.29402
4.09399
3.91351
3.74837
3.59546
3.451
3.31243
3.17817
3.04715
2.91849
2.79149
2.66562
2.54043
2.41564
2.29102
2.16644
2.04182
1.91714
1.7924
1.66764
1.54287
1.41815
1.29352
1.16902
1.04468
0.920561
0.796668
0.673052
0.549695
0.426708
0.303868
0.181883
0.0594157
5.5373
4.52804
4.28424
4.08811
3.90891
3.74522
3.59323
3.44936
3.31122
3.17731
3.04657
2.91814
2.79134
2.66562
2.54055
2.41584
2.29127
2.16672
2.04211
1.91742
1.79267
1.66788
1.54309
1.41834
1.29368
1.16916
1.0448
0.920655
0.796751
0.673123
0.549755
0.426764
0.303742
0.182028
0.0567026
5.31725
4.61309
4.30273
4.10007
3.91773
3.75119
3.59772
3.45303
3.31429
3.17989
3.04874
2.91995
2.79284
2.66684
2.54156
2.41667
2.29196
2.1673
2.04262
1.91788
1.79309
1.66827
1.54346
1.41871
1.29404
1.16951
1.04515
0.920996
0.797088
0.673454
0.550088
0.427077
0.304221
0.182166
0.0598374
5.58445
4.51312
4.27997
4.08574
3.90679
3.74395
3.59248
3.4489
3.31098
3.17727
3.04671
2.91846
2.79181
2.6662
2.54121
2.41654
2.29197
2.16739
2.04273
1.91799
1.79318
1.66834
1.54349
1.4187
1.294
1.16944
1.04504
0.920869
0.79693
0.673289
0.549897
0.426936
0.303808
0.182366
0.0547194
5.58615
4.51266
4.27992
4.08561
3.90674
3.7439
3.59244
3.44888
3.31097
3.17727
3.04671
2.91846
2.79181
2.6662
2.5412
2.41652
2.29195
2.16736
2.04271
1.91796
1.79315
1.6683
1.54346
1.41867
1.29397
1.16941
1.04502
0.920855
0.796932
0.673287
0.549897
0.426905
0.303737
0.182304
0.0547175
5.46748
4.53971
4.29077
4.09169
3.91198
3.74726
3.59459
3.45031
3.31187
3.17772
3.04677
2.91818
2.79123
2.6654
2.54025
2.41548
2.29088
2.16632
2.04172
1.91705
1.79233
1.66757
1.54281
1.4181
1.29347
1.16898
1.04465
0.920531
0.796638
0.673019
0.549656
0.426666
0.303839
0.181873
0.0594719
5.3696
4.57622
4.29841
4.09636
3.91558
3.74989
3.59663
3.45199
3.31326
3.17886
3.04772
2.91896
2.79187
2.66592
2.54068
2.41584
2.29118
2.16658
2.04194
1.91725
1.79251
1.66774
1.54298
1.41826
1.29363
1.16913
1.0448
0.920676
0.79679
0.673174
0.549823
0.426821
0.304023
0.181892
0.0607719
5.53672
4.5201
4.28172
4.08685
3.9077
3.74448
3.59279
3.44908
3.31107
3.17727
3.04663
2.91831
2.79159
2.66594
2.54092
2.41623
2.29166
2.16709
2.04245
1.91773
1.79295
1.66812
1.5433
1.41852
1.29384
1.16929
1.04492
0.92076
0.796844
0.673206
0.549825
0.426837
0.303726
0.182199
0.0553784
5.53281
4.52217
4.28228
4.08713
3.90798
3.74466
3.59291
3.44916
3.31112
3.1773
3.04664
2.91829
2.79155
2.66588
2.54085
2.41616
2.29159
2.16703
2.0424
1.91769
1.79291
1.66809
1.54328
1.41851
1.29383
1.16929
1.04491
0.920759
0.796844
0.673208
0.54983
0.42684
0.303749
0.182176
0.0557016
5.18354
4.68015
4.32178
4.10919
3.92602
3.75625
3.60092
3.45544
3.31618
3.18141
3.05
2.92104
2.7938
2.66773
2.54239
2.41748
2.29277
2.16812
2.04346
1.91875
1.794
1.66923
1.54446
1.41974
1.29511
1.17061
1.04627
0.922144
0.798254
0.674633
0.551285
0.428262
0.30555
0.18336
0.064779
5.46232
4.53952
4.29064
4.09174
3.91195
3.74724
3.59458
3.4503
3.31186
3.1777
3.04676
2.91817
2.79123
2.66539
2.54024
2.41548
2.29087
2.16631
2.0417
1.91704
1.79231
1.66755
1.54279
1.41808
1.29345
1.16895
1.04462
0.920502
0.79661
0.672992
0.54963
0.426642
0.303803
0.181856
0.0592336
5.4096
4.58294
4.29147
4.09549
3.91322
3.74845
3.59608
3.45192
3.31358
3.17951
3.04863
2.92008
2.79315
2.66728
2.54206
2.41719
2.29246
2.16774
2.04299
1.91817
1.79331
1.66843
1.54356
1.41875
1.29405
1.16948
1.04509
0.920923
0.796987
0.673343
0.549958
0.426989
0.303958
0.182348
0.0555588
5.47125
4.5368
4.28957
4.09121
3.91152
3.74695
3.59438
3.45015
3.31174
3.17762
3.0467
2.91812
2.7912
2.66538
2.54024
2.41548
2.29088
2.16632
2.04171
1.91705
1.79232
1.66755
1.54279
1.41808
1.29345
1.16895
1.04462
0.920494
0.7966
0.672982
0.549619
0.426633
0.303775
0.181855
0.0588777
5.44387
4.54869
4.29051
4.09183
3.91188
3.74723
3.59464
3.45039
3.31197
3.17784
3.0469
2.91831
2.79138
2.66555
2.5404
2.41563
2.29102
2.16645
2.04184
1.91717
1.79243
1.66766
1.5429
1.41818
1.29354
1.16904
1.0447
0.920576
0.796686
0.673067
0.549711
0.426718
0.303816
0.181905
0.0586271
5.48774
4.53913
4.29043
4.09142
3.91182
3.74715
3.5945
3.45024
3.31181
3.17766
3.04672
2.91813
2.79118
2.66535
2.54019
2.41542
2.29082
2.16626
2.04165
1.91699
1.79226
1.66751
1.54275
1.41804
1.29342
1.16892
1.04459
0.920478
0.796587
0.67297
0.549607
0.426618
0.303794
0.181826
0.0594626
5.50129
4.53083
4.28456
4.08863
3.90901
3.74535
3.59338
3.44949
3.31134
3.17744
3.04671
2.9183
2.79152
2.66581
2.54075
2.41604
2.29146
2.16689
2.04227
1.91756
1.79279
1.66798
1.54318
1.41842
1.29375
1.16921
1.04485
0.920696
0.796786
0.673152
0.549778
0.42679
0.303724
0.182124
0.0559705
5.41193
4.55513
4.29556
4.09424
3.91394
3.7486
3.59554
3.45104
3.31243
3.17814
3.04709
2.91841
2.79139
2.66549
2.5403
2.41549
2.29087
2.16629
2.04168
1.91701
1.79228
1.66752
1.54277
1.41806
1.29344
1.16895
1.04462
0.920509
0.796622
0.673007
0.549652
0.42666
0.303892
0.181799
0.060633
5.33207
4.59678
4.30201
4.09875
3.91725
3.75105
3.5976
3.45289
3.3141
3.17966
3.04845
2.91963
2.79249
2.66648
2.54119
2.41631
2.29162
2.16698
2.04232
1.91761
1.79285
1.66806
1.54328
1.41854
1.2939
1.16939
1.04504
0.920908
0.797013
0.67339
0.550032
0.427019
0.304213
0.182049
0.0611047
5.50192
4.53829
4.28451
4.08948
3.90903
3.74585
3.59417
3.45037
3.31224
3.17834
3.04761
2.9192
2.7924
2.66667
2.54156
2.41678
2.29213
2.16748
2.04277
1.91799
1.79315
1.66829
1.54343
1.41864
1.29394
1.16937
1.04498
0.920805
0.796857
0.673208
0.549811
0.42688
0.303747
0.182511
0.053833
5.50286
4.53773
4.28442
4.08942
3.90901
3.74583
3.59415
3.45035
3.31223
3.17833
3.04761
2.9192
2.79241
2.66667
2.54157
2.41679
2.29213
2.16748
2.04278
1.918
1.79316
1.6683
1.54344
1.41864
1.29394
1.16938
1.04499
0.920825
0.796901
0.673256
0.549867
0.426896
0.303688
0.182403
0.0538064
5.3928
4.5652
4.29646
4.09488
3.9145
3.74906
3.59593
3.45138
3.31273
3.17841
3.04733
2.91861
2.79157
2.66565
2.54043
2.41562
2.29098
2.16639
2.04177
1.91709
1.79236
1.6676
1.54284
1.41813
1.29351
1.16902
1.04469
0.920573
0.79669
0.673076
0.549728
0.426731
0.303943
0.181821
0.0607278
5.45836
4.55665
4.28712
4.09176
3.91077
3.74695
3.59498
3.45102
3.31277
3.17876
3.04792
2.9194
2.79252
2.6667
2.54154
2.41672
2.29204
2.16738
2.04267
1.9179
1.79307
1.66822
1.54337
1.41859
1.29389
1.16934
1.04497
0.920805
0.796886
0.673245
0.549862
0.426882
0.30376
0.182301
0.0548362
5.37959
4.56837
4.29856
4.09577
3.91528
3.7496
3.5963
3.45166
3.31294
3.17856
3.04744
2.91869
2.79161
2.66567
2.54044
2.41561
2.29097
2.16637
2.04175
1.91707
1.79234
1.66758
1.54283
1.41812
1.2935
1.16901
1.04469
0.920575
0.796692
0.673078
0.549729
0.42673
0.303989
0.181794
0.0615461
5.48225
4.5384
4.28773
4.09001
3.91062
3.74635
3.59399
3.4499
3.31159
3.17753
3.04666
2.91812
2.79123
2.66542
2.5403
2.41555
2.29096
2.16639
2.04179
1.91712
1.79239
1.66762
1.54286
1.41814
1.29351
1.169
1.04467
0.92054
0.79665
0.673033
0.549677
0.426684
0.303766
0.181874
0.0583116
5.2837
4.62865
4.30717
4.10234
3.91967
3.75239
3.5985
3.45363
3.31477
3.18029
3.04908
2.92026
2.79311
2.6671
2.54179
2.41688
2.29215
2.16748
2.04279
1.91804
1.79325
1.66843
1.54363
1.41887
1.29421
1.16967
1.04531
0.921164
0.797256
0.673622
0.550257
0.427236
0.304421
0.182265
0.0610826
5.43693
4.55361
4.29044
4.09286
3.91218
3.74759
3.59506
3.45078
3.31233
3.17818
3.04724
2.91867
2.79175
2.66593
2.54079
2.41602
2.29141
2.16682
2.04219
1.91748
1.79272
1.66792
1.54313
1.41838
1.29373
1.1692
1.04484
0.920697
0.796784
0.673158
0.549787
0.426812
0.303855
0.1821
0.057217
5.39509
4.57218
4.29453
4.09547
3.91418
3.749
3.59616
3.45171
3.31312
3.17884
3.04779
2.91911
2.7921
2.6662
2.541
2.41618
2.29153
2.16692
2.04226
1.91755
1.79278
1.66798
1.54318
1.41844
1.29378
1.16926
1.0449
0.920756
0.796847
0.673222
0.549856
0.426873
0.30396
0.182093
0.0581111
5.21461
4.66623
4.31705
4.10771
3.9241
3.75505
3.60022
3.45491
3.31578
3.1811
3.04976
2.92085
2.79366
2.66761
2.5423
2.4174
2.2927
2.16805
2.04339
1.91867
1.79391
1.66912
1.54434
1.4196
1.29496
1.17044
1.04608
0.921936
0.798025
0.674386
0.551015
0.427975
0.305197
0.182957
0.0624982
5.61768
4.50353
4.2779
4.08446
3.90582
3.74338
3.59216
3.44873
3.31094
3.17734
3.04687
2.91871
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16956
1.04516
0.920974
0.797029
0.673385
0.54998
0.427011
0.303788
0.18243
0.053917
5.61779
4.50345
4.27788
4.08444
3.90581
3.74337
3.59215
3.44873
3.31094
3.17734
3.04688
2.91871
2.79212
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16956
1.04517
0.920992
0.797061
0.673403
0.549987
0.426973
0.303715
0.182414
0.0539455
5.47726
4.53455
4.28843
4.09071
3.91103
3.74663
3.59417
3.45001
3.31164
3.17756
3.04668
2.91813
2.79124
2.66544
2.54032
2.41557
2.29099
2.16643
2.04182
1.91715
1.79242
1.66765
1.54289
1.41816
1.29353
1.16902
1.04468
0.920552
0.796652
0.673032
0.549666
0.426681
0.303788
0.181916
0.0583057
5.61516
4.50346
4.27796
4.0845
3.90585
3.7434
3.59217
3.44874
3.31095
3.17734
3.04687
2.9187
2.79212
2.66655
2.54158
2.4169
2.29231
2.1677
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29413
1.16956
1.04517
0.920992
0.797061
0.673404
0.54999
0.426977
0.303723
0.182415
0.0539741
5.61424
4.50386
4.27807
4.08457
3.90589
3.74342
3.59218
3.44874
3.31094
3.17733
3.04686
2.91869
2.79211
2.66654
2.54157
2.41689
2.29231
2.1677
2.04301
1.91824
1.7934
1.66853
1.54366
1.41885
1.29413
1.16956
1.04515
0.920973
0.797028
0.673386
0.549982
0.427013
0.303794
0.182433
0.0539492
5.4153
4.55513
4.29567
4.09375
3.91385
3.74855
3.59549
3.451
3.3124
3.17812
3.04706
2.91837
2.79134
2.66543
2.54023
2.41542
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.54271
1.418
1.29339
1.1689
1.04459
0.920475
0.796591
0.672974
0.549623
0.426634
0.303919
0.181762
0.0615166
5.41927
4.55456
4.29499
4.09342
3.91357
3.74836
3.59535
3.45089
3.31232
3.17806
3.04702
2.91833
2.79131
2.66541
2.54021
2.41541
2.29078
2.1662
2.04159
1.91692
1.7922
1.66745
1.5427
1.418
1.29338
1.1689
1.04458
0.920466
0.796584
0.672969
0.549621
0.42663
0.303894
0.181752
0.0612307
5.38686
4.57116
4.29591
4.09522
3.91451
3.74914
3.5961
3.45158
3.31295
3.17863
3.04755
2.91884
2.7918
2.66588
2.54067
2.41585
2.2912
2.1666
2.04197
1.91728
1.79254
1.66777
1.543
1.41828
1.29364
1.16914
1.0448
0.920676
0.796786
0.673168
0.549814
0.426816
0.30397
0.181945
0.0597696
5.40319
4.55909
4.29646
4.09433
3.91424
3.74883
3.5957
3.45117
3.31253
3.17823
3.04715
2.91845
2.79141
2.66549
2.54028
2.41547
2.29084
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16893
1.04462
0.920503
0.796621
0.673006
0.549656
0.426664
0.303936
0.181769
0.0614563
5.47552
4.54379
4.29229
4.09219
3.91249
3.7476
3.59481
3.45047
3.31198
3.17779
3.04682
2.91819
2.79121
2.66535
2.54018
2.4154
2.29079
2.16622
2.04162
1.91695
1.79223
1.66748
1.54272
1.41802
1.2934
1.16891
1.04459
0.920475
0.796586
0.672968
0.549606
0.426616
0.303839
0.181812
0.0602127
5.53097
4.52428
4.28295
4.08751
3.90842
3.74492
3.59305
3.44924
3.31114
3.17727
3.04656
2.91816
2.79139
2.66568
2.54063
2.41593
2.29136
2.1668
2.04218
1.91748
1.79272
1.66792
1.54312
1.41837
1.2937
1.16917
1.04481
0.920659
0.796752
0.673122
0.549752
0.426762
0.303714
0.182057
0.0562547
5.40493
4.55872
4.29621
4.0942
3.91413
3.74876
3.59565
3.45113
3.31251
3.17821
3.04714
2.91844
2.7914
2.66549
2.54028
2.41547
2.29084
2.16626
2.04164
1.91697
1.79225
1.6675
1.54275
1.41804
1.29343
1.16894
1.04462
0.920508
0.796626
0.673011
0.549662
0.426669
0.303934
0.181774
0.0613695
5.26372
4.63317
4.31096
4.10371
3.92098
3.7533
3.59911
3.4541
3.31514
3.18059
3.04933
2.92046
2.79327
2.66722
2.54188
2.41696
2.29222
2.16755
2.04286
1.91812
1.79333
1.66852
1.54372
1.41897
1.29431
1.16978
1.04542
0.921283
0.797382
0.673756
0.550395
0.427365
0.304597
0.182319
0.0627528
5.50473
4.52803
4.28444
4.08863
3.90911
3.74543
3.59343
3.44951
3.31133
3.1774
3.04666
2.91824
2.79145
2.66575
2.54069
2.41599
2.29142
2.16686
2.04225
1.91755
1.79279
1.66799
1.54319
1.41844
1.29377
1.16923
1.04487
0.920712
0.79679
0.673158
0.549779
0.426807
0.303796
0.182148
0.0563202
5.34669
4.58466
4.3014
4.09799
3.91673
3.75066
3.5972
3.45245
3.31364
3.17919
3.04799
2.91918
2.79206
2.66607
2.54081
2.41594
2.29127
2.16665
2.04201
1.91731
1.79256
1.66779
1.54302
1.4183
1.29367
1.16916
1.04483
0.920709
0.796822
0.673209
0.549856
0.426849
0.304075
0.181879
0.0613462
5.44119
4.54977
4.29046
4.09265
3.91215
3.74753
3.59496
3.45068
3.31222
3.17806
3.04713
2.91855
2.79163
2.66581
2.54067
2.41591
2.2913
2.16672
2.04209
1.9174
1.79265
1.66786
1.54307
1.41833
1.29368
1.16916
1.0448
0.920661
0.796752
0.673127
0.549759
0.426782
0.303842
0.182053
0.0575468
5.46765
4.55845
4.28686
4.09181
3.91046
3.74684
3.59504
3.4512
3.31307
3.17914
3.04837
2.91989
2.79301
2.66718
2.54198
2.41711
2.29238
2.16766
2.0429
1.91808
1.79321
1.66832
1.54345
1.41864
1.29393
1.16936
1.04497
0.920804
0.796878
0.673232
0.549845
0.426872
0.303701
0.182342
0.0540093
5.46666
4.55902
4.28703
4.09204
3.91059
3.74693
3.59511
3.45124
3.31309
3.17915
3.04837
2.91989
2.79301
2.66718
2.54199
2.41712
2.2924
2.16768
2.04292
1.9181
1.79323
1.66834
1.54347
1.41866
1.29395
1.16938
1.04498
0.920803
0.796856
0.673207
0.549812
0.426873
0.303766
0.182442
0.0540335
5.47895
4.5358
4.28735
4.09045
3.91052
3.74635
3.59405
3.44995
3.31164
3.1776
3.04677
2.91828
2.79143
2.66567
2.54058
2.41585
2.29127
2.16671
2.04209
1.91741
1.79266
1.66787
1.54308
1.41834
1.29368
1.16916
1.0448
0.920658
0.796745
0.673118
0.549745
0.42677
0.303803
0.182072
0.0570724
5.43472
4.57258
4.28917
4.09397
3.91203
3.74774
3.59561
3.45159
3.31331
3.1793
3.04846
2.91993
2.79302
2.66717
2.54196
2.41709
2.29237
2.16766
2.04291
1.9181
1.79324
1.66836
1.5435
1.41869
1.29399
1.16943
1.04503
0.920862
0.796923
0.673279
0.54989
0.426932
0.303867
0.182372
0.0548689
5.27585
4.63942
4.30745
4.10376
3.92033
3.75269
3.59874
3.45382
3.31493
3.18045
3.04926
2.92047
2.79336
2.66739
2.54213
2.41727
2.29259
2.16796
2.04329
1.91856
1.79378
1.66896
1.54413
1.41935
1.29466
1.17009
1.04569
0.92151
0.797569
0.673912
0.550527
0.427499
0.30464
0.182517
0.0597272
5.33876
4.59942
4.30045
4.09851
3.91673
3.75067
3.5974
3.45278
3.31407
3.17967
3.04851
2.91972
2.79261
2.66662
2.54135
2.41647
2.29178
2.16713
2.04246
1.91773
1.79295
1.66815
1.54335
1.41861
1.29395
1.16942
1.04507
0.920922
0.797018
0.673387
0.550024
0.427016
0.304159
0.182111
0.0598337
5.39801
4.57932
4.29304
4.09502
3.91351
3.74855
3.59595
3.45166
3.31318
3.17898
3.04799
2.91934
2.79236
2.66647
2.54127
2.41645
2.29178
2.16714
2.04247
1.91773
1.79293
1.66811
1.54329
1.41852
1.29385
1.16931
1.04495
0.9208
0.796889
0.673254
0.549883
0.426891
0.303905
0.182157
0.0570232
5.27452
4.63812
4.3081
4.10379
3.92044
3.7528
3.59881
3.45387
3.31497
3.18047
3.04927
2.92046
2.79334
2.66735
2.54207
2.41718
2.29248
2.16782
2.04312
1.91837
1.79357
1.66874
1.54392
1.41914
1.29446
1.1699
1.04552
0.921346
0.797417
0.673771
0.550395
0.427372
0.304531
0.182394
0.0601331
5.49028
4.54444
4.29018
4.09101
3.91159
3.74701
3.59443
3.45022
3.31182
3.1777
3.04676
2.91817
2.79123
2.66539
2.54023
2.41546
2.29086
2.16629
2.04169
1.91702
1.79229
1.66754
1.54278
1.41807
1.29345
1.16896
1.04463
0.920514
0.796631
0.673017
0.549665
0.42667
0.30382
0.181823
0.0594896
5.51295
4.52868
4.28329
4.08849
3.90854
3.74527
3.59352
3.4497
3.31159
3.17773
3.04705
2.9187
2.79197
2.6663
2.54125
2.41654
2.29194
2.16734
2.04267
1.91793
1.79311
1.66827
1.54343
1.41864
1.29395
1.16939
1.045
0.920834
0.796894
0.673252
0.54986
0.426909
0.303787
0.18242
0.0544954
5.51335
4.52852
4.28312
4.08832
3.90844
3.74521
3.59348
3.44969
3.3116
3.17775
3.04708
2.91874
2.79201
2.66633
2.54129
2.41657
2.29196
2.16735
2.04268
1.91793
1.79312
1.66827
1.54343
1.41864
1.29395
1.16939
1.04501
0.920841
0.796919
0.673274
0.549883
0.4269
0.303725
0.182359
0.0544426
5.44797
4.54327
4.29184
4.09223
3.91238
3.74752
3.59477
3.45044
3.31196
3.17778
3.04682
2.9182
2.79124
2.66539
2.54023
2.41545
2.29085
2.16628
2.04167
1.91701
1.79228
1.66752
1.54277
1.41806
1.29343
1.16894
1.04461
0.920496
0.796606
0.672988
0.549628
0.426638
0.303826
0.181833
0.0597081
5.53629
4.51923
4.2817
4.08713
3.90756
3.74453
3.59294
3.44924
3.31124
3.17747
3.04687
2.91859
2.79192
2.66629
2.54129
2.41659
2.292
2.16741
2.04274
1.91799
1.79317
1.66832
1.54348
1.41868
1.29398
1.16942
1.04503
0.920856
0.796914
0.673272
0.549877
0.426924
0.303774
0.182426
0.0542906
5.53766
4.51796
4.2814
4.08695
3.9075
3.74451
3.59293
3.44926
3.31126
3.1775
3.0469
2.91862
2.79195
2.66632
2.54131
2.41661
2.29202
2.16742
2.04275
1.918
1.79319
1.66833
1.54349
1.41869
1.29399
1.16943
1.04504
0.920875
0.79695
0.673303
0.549908
0.426919
0.30372
0.182378
0.0542838
5.43158
4.55044
4.29482
4.09329
3.91351
3.74831
3.5953
3.45085
3.31228
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04456
0.920451
0.796565
0.672945
0.549588
0.4266
0.303893
0.181764
0.0614266
5.49655
4.54261
4.28937
4.09066
3.91125
3.74678
3.59427
3.45011
3.31174
3.17764
3.04673
2.91816
2.79123
2.6654
2.54026
2.41549
2.2909
2.16633
2.04173
1.91706
1.79234
1.66758
1.54282
1.41811
1.29348
1.16899
1.04465
0.920534
0.796649
0.673034
0.549681
0.426686
0.303812
0.181849
0.0590946
5.5147
4.52739
4.28405
4.08817
3.90884
3.74521
3.59327
3.44941
3.31128
3.17739
3.04666
2.91826
2.79148
2.66577
2.54072
2.41601
2.29144
2.16688
2.04226
1.91756
1.7928
1.668
1.5432
1.41844
1.29378
1.16924
1.04488
0.920727
0.796818
0.673185
0.549812
0.426821
0.303771
0.182118
0.0563126
5.4121
4.55757
4.29501
4.09378
3.91371
3.74848
3.59547
3.451
3.31241
3.17814
3.0471
2.91841
2.7914
2.6655
2.5403
2.41549
2.29087
2.16628
2.04167
1.917
1.79227
1.66752
1.54277
1.41806
1.29344
1.16895
1.04463
0.920514
0.796633
0.67302
0.549672
0.426678
0.3039
0.181785
0.0607482
5.22926
4.65954
4.31425
4.1062
3.92302
3.75437
3.59976
3.45458
3.31552
3.1809
3.0496
2.92072
2.79355
2.66752
2.54223
2.41734
2.29264
2.16801
2.04334
1.91863
1.79386
1.66905
1.54425
1.4195
1.29483
1.17029
1.04592
0.921756
0.797835
0.674186
0.550809
0.427769
0.304978
0.182773
0.0621545
5.46078
4.5504
4.29363
4.09253
3.913
3.74798
3.59508
3.45069
3.31216
3.17793
3.04692
2.91825
2.79125
2.66536
2.54016
2.41536
2.29074
2.16616
2.04156
1.91689
1.79217
1.66741
1.54267
1.41796
1.29335
1.16887
1.04455
0.920438
0.796557
0.672942
0.549593
0.426604
0.303871
0.181746
0.0611698
5.45644
4.55093
4.29442
4.09291
3.91333
3.74821
3.59524
3.45082
3.31226
3.17801
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16888
1.04456
0.920451
0.796566
0.672946
0.549593
0.426607
0.303904
0.181766
0.0615422
5.29586
4.61582
4.3068
4.10165
3.91924
3.75227
3.59847
3.4536
3.31474
3.18024
3.04901
2.92016
2.793
2.66697
2.54165
2.41674
2.29202
2.16736
2.04268
1.91794
1.79316
1.66836
1.54356
1.41881
1.29416
1.16963
1.04528
0.921138
0.797236
0.67361
0.550248
0.427225
0.304428
0.182202
0.0616822
5.4255
4.57714
4.29025
4.09438
3.91244
3.74801
3.59581
3.45175
3.31346
3.17942
3.04855
2.91999
2.79305
2.66718
2.54195
2.41707
2.29234
2.16764
2.04289
1.91809
1.79323
1.66836
1.5435
1.4187
1.294
1.16944
1.04506
0.920891
0.796968
0.673323
0.549939
0.426954
0.303861
0.182319
0.0551648
5.4654
4.5492
4.29304
4.09228
3.91279
3.74783
3.59498
3.45062
3.31211
3.17789
3.04689
2.91823
2.79123
2.66535
2.54016
2.41536
2.29074
2.16616
2.04156
1.91689
1.79217
1.66741
1.54266
1.41796
1.29335
1.16886
1.04454
0.920434
0.796554
0.67294
0.549591
0.426601
0.303851
0.181739
0.0609566
5.58623
4.50517
4.27822
4.08487
3.90618
3.74359
3.59228
3.44879
3.31095
3.1773
3.04679
2.91858
2.79197
2.66638
2.5414
2.41671
2.29213
2.16753
2.04286
1.9181
1.79327
1.66841
1.54355
1.41875
1.29404
1.16947
1.04508
0.920912
0.796985
0.673336
0.549936
0.426937
0.303724
0.18236
0.0542601
5.57755
4.50808
4.27907
4.08525
3.90634
3.74368
3.59232
3.4488
3.31094
3.17727
3.04676
2.91855
2.79194
2.66635
2.54138
2.4167
2.29212
2.16753
2.04286
1.9181
1.79328
1.66842
1.54356
1.41876
1.29405
1.16948
1.04508
0.920908
0.796966
0.673325
0.549928
0.426965
0.303789
0.182403
0.0542423
5.57253
4.51678
4.28092
4.08633
3.90725
3.74422
3.59264
3.44899
3.31101
3.17725
3.04665
2.91836
2.79168
2.66606
2.54106
2.41638
2.29181
2.16724
2.0426
1.91788
1.79308
1.66825
1.54342
1.41863
1.29394
1.16938
1.045
0.920826
0.79689
0.67325
0.549862
0.426899
0.303804
0.182313
0.0551013
5.48204
4.53487
4.28879
4.09082
3.91117
3.74671
3.59422
3.45003
3.31166
3.17756
3.04666
2.91811
2.7912
2.6654
2.54027
2.41552
2.29093
2.16637
2.04177
1.9171
1.79236
1.6676
1.54284
1.41812
1.29348
1.16898
1.04464
0.920518
0.796621
0.673002
0.549638
0.426652
0.303773
0.181882
0.0585369
5.58005
4.51704
4.28098
4.08621
3.90721
3.74418
3.59261
3.44899
3.31103
3.17729
3.0467
2.91841
2.79174
2.66611
2.54111
2.41642
2.29186
2.16728
2.04264
1.91791
1.79311
1.66827
1.54344
1.41865
1.29396
1.1694
1.04502
0.920854
0.796932
0.673289
0.549902
0.426911
0.303771
0.182286
0.0550997
5.40251
4.56079
4.29549
4.09486
3.91419
3.74885
3.59582
3.45129
3.31266
3.17836
3.0473
2.91861
2.7916
2.6657
2.54051
2.4157
2.29107
2.16649
2.04187
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04473
0.920607
0.796715
0.673099
0.549742
0.426753
0.303925
0.181903
0.059749
5.46497
4.53883
4.28874
4.09112
3.91113
3.74672
3.59427
3.45009
3.31171
3.17762
3.04674
2.9182
2.79131
2.66551
2.5404
2.41565
2.29106
2.16649
2.04188
1.9172
1.79246
1.66768
1.54291
1.41817
1.29353
1.16902
1.04467
0.920537
0.796633
0.673013
0.549647
0.426669
0.303744
0.181934
0.0577083
5.43514
4.54981
4.29479
4.09332
3.91351
3.74831
3.5953
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.6654
2.5402
2.4154
2.29078
2.1662
2.04159
1.91693
1.7922
1.66745
1.5427
1.418
1.29339
1.1689
1.04459
0.920476
0.796589
0.672969
0.549611
0.426622
0.303912
0.18179
0.0613806
5.42304
4.55658
4.29223
4.093
3.91274
3.74786
3.59512
3.45078
3.31229
3.17809
3.04711
2.91848
2.79151
2.66565
2.54049
2.4157
2.29108
2.1665
2.04189
1.9172
1.79247
1.6677
1.54293
1.41821
1.29357
1.16907
1.04473
0.920601
0.79671
0.673091
0.549735
0.426741
0.303852
0.18192
0.0588577
5.36492
4.58829
4.29719
4.09684
3.91534
3.74978
3.59678
3.45228
3.31365
3.17932
3.04822
2.91948
2.79241
2.66646
2.54122
2.41637
2.29169
2.16706
2.04239
1.91767
1.79289
1.66809
1.54329
1.41854
1.29388
1.16935
1.04499
0.920848
0.796942
0.67331
0.549945
0.426943
0.304045
0.182098
0.0588792
5.368
4.57534
4.29906
4.09686
3.9158
3.75001
3.59671
3.45203
3.31328
3.17888
3.04773
2.91897
2.79189
2.66594
2.5407
2.41586
2.2912
2.1666
2.04196
1.91727
1.79253
1.66776
1.54299
1.41827
1.29364
1.16914
1.0448
0.920678
0.796788
0.673174
0.549819
0.426821
0.304023
0.181903
0.0606435
5.4785
4.54732
4.28587
4.09065
3.90997
3.74634
3.59443
3.4505
3.31229
3.17833
3.04755
2.91911
2.79229
2.66653
2.54142
2.41664
2.292
2.16736
2.04267
1.91791
1.79308
1.66823
1.54339
1.41861
1.29391
1.16936
1.04498
0.920819
0.796898
0.673255
0.549868
0.426889
0.303742
0.182332
0.0546133
5.51839
4.52628
4.28447
4.08859
3.90914
3.74544
3.59343
3.44951
3.31133
3.1774
3.04665
2.91823
2.79144
2.66573
2.54068
2.41597
2.29141
2.16685
2.04224
1.91755
1.79279
1.66799
1.5432
1.41844
1.29378
1.16924
1.04488
0.920723
0.796801
0.673169
0.54979
0.426816
0.303813
0.182145
0.0564888
5.54001
4.52609
4.28422
4.08831
3.90899
3.74533
3.59334
3.44943
3.31126
3.17733
3.04658
2.91816
2.79137
2.66566
2.5406
2.4159
2.29133
2.16678
2.04217
1.91748
1.79272
1.66792
1.54313
1.41838
1.29372
1.16918
1.04482
0.920669
0.79675
0.67312
0.549743
0.426769
0.303771
0.182095
0.0565144
5.48289
4.5484
4.28545
4.09056
3.90968
3.74631
3.5946
3.45079
3.31266
3.17874
3.04796
2.91949
2.79263
2.66683
2.54167
2.41685
2.29216
2.16748
2.04276
1.91796
1.79312
1.66824
1.54339
1.41859
1.29389
1.16932
1.04493
0.920758
0.796814
0.673168
0.549774
0.426841
0.303726
0.182442
0.0539309
5.48259
4.548
4.2853
4.09043
3.90962
3.74627
3.59458
3.45078
3.31266
3.17874
3.04796
2.91949
2.79263
2.66682
2.54165
2.41683
2.29213
2.16745
2.04272
1.91793
1.79308
1.66821
1.54335
1.41855
1.29385
1.16929
1.04491
0.920741
0.796819
0.673177
0.549793
0.426824
0.303642
0.182316
0.053895
5.22134
4.66193
4.31612
4.10718
3.92364
3.75478
3.60005
3.45478
3.31567
3.18102
3.04969
2.92079
2.7936
2.66756
2.54225
2.41736
2.29266
2.16801
2.04335
1.91864
1.79387
1.66908
1.54429
1.41955
1.29489
1.17036
1.04599
0.921841
0.797925
0.674283
0.550911
0.427872
0.305092
0.18285
0.0625052
5.51478
4.53063
4.28341
4.08855
3.90844
3.74535
3.59371
3.44994
3.31185
3.178
3.04733
2.91897
2.79223
2.66654
2.54148
2.41673
2.2921
2.16747
2.04278
1.91801
1.79318
1.66832
1.54347
1.41867
1.29397
1.1694
1.04501
0.920834
0.796886
0.673238
0.549839
0.426904
0.303759
0.182512
0.0538907
5.51611
4.52964
4.28323
4.08846
3.90842
3.74534
3.5937
3.44993
3.31184
3.17799
3.04731
2.91896
2.79222
2.66653
2.54147
2.41672
2.29209
2.16746
2.04277
1.918
1.79317
1.66831
1.54346
1.41866
1.29396
1.1694
1.04501
0.920846
0.796921
0.673275
0.549883
0.426907
0.303693
0.18241
0.0538661
5.48915
4.53634
4.28529
4.08994
3.90981
3.74609
3.59407
3.45008
3.31185
3.17787
3.0471
2.91866
2.79186
2.66614
2.54107
2.41633
2.29174
2.16714
2.04249
1.91777
1.79298
1.66815
1.54333
1.41856
1.29388
1.16933
1.04496
0.920796
0.796866
0.673229
0.549844
0.426882
0.303821
0.182305
0.0554622
5.4809
4.53393
4.28802
4.09054
3.91085
3.74651
3.5941
3.44996
3.31161
3.17754
3.04667
2.91814
2.79125
2.66546
2.54035
2.41561
2.29102
2.16646
2.04186
1.91719
1.79245
1.66768
1.54291
1.41818
1.29354
1.16903
1.04469
0.92056
0.796658
0.673036
0.54967
0.426687
0.303778
0.181933
0.0580277
5.34238
4.58651
4.30187
4.09801
3.91688
3.75076
3.59726
3.4525
3.31368
3.17922
3.04801
2.91919
2.79206
2.66607
2.54079
2.41593
2.29125
2.16663
2.04199
1.91729
1.79255
1.66777
1.54301
1.41829
1.29366
1.16916
1.04483
0.920711
0.796827
0.673214
0.549862
0.426853
0.304094
0.181861
0.0617785
5.44331
4.56275
4.28861
4.0926
3.91144
3.7473
3.59515
3.45109
3.31279
3.17874
3.04787
2.91933
2.79243
2.66661
2.54145
2.41663
2.29197
2.16732
2.04262
1.91786
1.79304
1.6682
1.54336
1.41858
1.29389
1.16935
1.04497
0.920816
0.796899
0.673258
0.549877
0.426893
0.303807
0.182271
0.0553925
5.48555
4.53509
4.28644
4.08947
3.91005
3.74598
3.59375
3.44973
3.31147
3.17747
3.04664
2.91814
2.79127
2.6655
2.5404
2.41566
2.29107
2.16651
2.04191
1.91723
1.79249
1.66771
1.54294
1.41821
1.29356
1.16905
1.04471
0.920573
0.796677
0.673056
0.549695
0.426704
0.30374
0.181937
0.0575423
5.50394
4.54057
4.28855
4.09029
3.9109
3.74654
3.59411
3.44999
3.31165
3.17758
3.04669
2.91814
2.79122
2.66541
2.54028
2.41552
2.29093
2.16636
2.04176
1.91709
1.79237
1.6676
1.54284
1.41813
1.2935
1.169
1.04466
0.92054
0.796652
0.673036
0.549681
0.426687
0.30379
0.181864
0.0586971
5.43603
4.54657
4.2928
4.09267
3.91276
3.74778
3.59495
3.45058
3.31208
3.17787
3.04688
2.91825
2.79127
2.6654
2.54023
2.41545
2.29084
2.16627
2.04166
1.917
1.79227
1.66752
1.54276
1.41805
1.29343
1.16894
1.04462
0.920501
0.796613
0.672997
0.549637
0.426647
0.303855
0.181827
0.0600754
5.42309
4.56449
4.29117
4.09394
3.91277
3.74811
3.5956
3.45132
3.31285
3.17868
3.04772
2.91911
2.79216
2.66631
2.54114
2.41634
2.2917
2.16708
2.04241
1.91768
1.79289
1.66807
1.54326
1.4185
1.29383
1.16929
1.04493
0.920775
0.796855
0.673225
0.54985
0.426877
0.303897
0.182188
0.0567375
5.48088
4.53885
4.28568
4.09003
3.90982
3.746
3.59394
3.44995
3.31171
3.17773
3.04695
2.91851
2.79171
2.66598
2.54091
2.41618
2.29159
2.16701
2.04237
1.91765
1.79287
1.66805
1.54323
1.41847
1.29379
1.16925
1.04488
0.920721
0.796795
0.673162
0.54978
0.426818
0.303772
0.182218
0.0556387
5.41343
4.55458
4.29591
4.09413
3.914
3.74864
3.59555
3.45104
3.31243
3.17814
3.04709
2.91839
2.79136
2.66546
2.54026
2.41545
2.29083
2.16625
2.04164
1.91697
1.79224
1.66749
1.54274
1.41804
1.29342
1.16893
1.04461
0.920501
0.796615
0.672997
0.549641
0.426651
0.303921
0.181793
0.0612278
5.50419
4.52933
4.28403
4.08856
3.9088
3.74523
3.59333
3.44945
3.31131
3.17742
3.0467
2.91831
2.79155
2.66586
2.54082
2.41612
2.29154
2.16697
2.04234
1.91763
1.79285
1.66803
1.54322
1.41845
1.29378
1.16924
1.04486
0.920703
0.796777
0.673143
0.549762
0.426798
0.303748
0.182196
0.0556075
5.41598
4.55456
4.29581
4.09385
3.91389
3.74857
3.5955
3.451
3.3124
3.17812
3.04706
2.91837
2.79134
2.66543
2.54023
2.41542
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.920481
0.796596
0.672978
0.549624
0.426634
0.303923
0.18177
0.0615167
5.28405
4.62439
4.30811
4.1026
3.91986
3.75258
3.59864
3.45372
3.31482
3.18031
3.04907
2.92022
2.79305
2.66702
2.5417
2.41679
2.29207
2.1674
2.04271
1.91797
1.79319
1.66838
1.54358
1.41882
1.29416
1.16963
1.04528
0.921133
0.797229
0.673603
0.550242
0.427221
0.304424
0.182209
0.061571
5.40546
4.57969
4.29199
4.09485
3.91314
3.74836
3.5959
3.4517
3.31328
3.17914
3.04819
2.91958
2.79261
2.66673
2.54152
2.41668
2.29199
2.16733
2.04263
1.91787
1.79305
1.66821
1.54338
1.4186
1.29392
1.16937
1.045
0.920844
0.79693
0.673291
0.549915
0.426926
0.3039
0.18223
0.0562914
5.5051
4.53466
4.2838
4.08901
3.90879
3.74559
3.5939
3.4501
3.31198
3.1781
3.04739
2.919
2.79224
2.66652
2.54144
2.41668
2.29205
2.16741
2.04272
1.91795
1.79312
1.66826
1.54342
1.41862
1.29392
1.16936
1.04498
0.920813
0.79689
0.673246
0.549857
0.426882
0.303687
0.182375
0.0540083
5.49701
4.54013
4.28475
4.08983
3.90932
3.74603
3.5943
3.45045
3.3123
3.17838
3.04763
2.91921
2.79241
2.66666
2.54155
2.41677
2.29212
2.16747
2.04277
1.91799
1.79316
1.66829
1.54344
1.41865
1.29395
1.16939
1.045
0.920823
0.796878
0.673231
0.549835
0.426898
0.303772
0.182492
0.0540358
5.28548
4.6202
4.30824
4.10207
3.91974
3.75258
3.59863
3.45371
3.31479
3.18026
3.04898
2.9201
2.79291
2.66685
2.54152
2.4166
2.29188
2.16722
2.04254
1.91781
1.79303
1.66823
1.54344
1.4187
1.29405
1.16953
1.04518
0.92105
0.797155
0.673534
0.550178
0.427153
0.304383
0.182115
0.0623759
5.35127
4.58341
4.30075
4.09771
3.91642
3.7504
3.59699
3.45227
3.31348
3.17905
3.04787
2.91908
2.79197
2.666
2.54074
2.41589
2.29122
2.1666
2.04196
1.91727
1.79252
1.66774
1.54298
1.41825
1.29362
1.16912
1.04478
0.920663
0.796776
0.673164
0.549812
0.42681
0.304025
0.181863
0.0610163
5.52454
4.5243
4.28346
4.08796
3.90867
3.74512
3.5932
3.44933
3.31118
3.17728
3.04654
2.91814
2.79136
2.66565
2.5406
2.4159
2.29133
2.16677
2.04216
1.91746
1.7927
1.6679
1.5431
1.41835
1.29368
1.16915
1.04478
0.920634
0.796714
0.673085
0.549709
0.426739
0.30373
0.182084
0.0562586
5.45495
4.55108
4.2943
4.09283
3.91326
3.74816
3.59521
3.45079
3.31224
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29335
1.16887
1.04455
0.920438
0.796554
0.672936
0.549585
0.426599
0.30389
0.181754
0.061461
5.43736
4.56492
4.28896
4.09323
3.91183
3.74755
3.59532
3.4512
3.31284
3.17874
3.04783
2.91927
2.79236
2.66654
2.54137
2.41657
2.2919
2.16726
2.04257
1.91781
1.793
1.66816
1.54333
1.41855
1.29387
1.16932
1.04494
0.920782
0.796854
0.673218
0.549836
0.426874
0.303835
0.182276
0.0554801
5.45688
4.54229
4.29181
4.09208
3.91235
3.74749
3.59473
3.4504
3.31192
3.17774
3.04676
2.91814
2.79117
2.66531
2.54014
2.41536
2.29075
2.16618
2.04157
1.9169
1.79218
1.66742
1.54267
1.41796
1.29334
1.16885
1.04453
0.920415
0.796527
0.672911
0.549552
0.426564
0.303775
0.181763
0.0599669
5.38444
4.57308
4.29627
4.09594
3.91472
3.74928
3.59625
3.45171
3.31307
3.17875
3.04767
2.91896
2.79192
2.66601
2.5408
2.41597
2.29133
2.16672
2.04208
1.91738
1.79262
1.66784
1.54306
1.41833
1.29368
1.16917
1.04482
0.920688
0.796789
0.67317
0.549811
0.426824
0.303957
0.181992
0.0590682
5.48443
4.53774
4.28745
4.08987
3.91044
3.74623
3.59391
3.44984
3.31154
3.17751
3.04665
2.91812
2.79124
2.66544
2.54033
2.41558
2.29099
2.16643
2.04183
1.91715
1.79242
1.66765
1.54289
1.41816
1.29353
1.16902
1.04468
0.920553
0.796662
0.673043
0.549685
0.426693
0.303761
0.181893
0.0580891
5.41887
4.55213
4.29517
4.0936
3.9137
3.74844
3.59541
3.45094
3.31235
3.17808
3.04703
2.91834
2.79132
2.66542
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.1689
1.04459
0.920474
0.796589
0.67297
0.549614
0.426625
0.303907
0.181778
0.0613414
5.60682
4.50469
4.27833
4.08473
3.90602
3.74349
3.59223
3.44878
3.31097
3.17735
3.04687
2.91868
2.79209
2.66652
2.54154
2.41687
2.29228
2.16768
2.043
1.91823
1.79339
1.66852
1.54366
1.41884
1.29413
1.16956
1.04516
0.920988
0.797058
0.673402
0.549993
0.426984
0.303743
0.182416
0.0540829
5.60494
4.50576
4.2785
4.08482
3.90605
3.74351
3.59223
3.44877
3.31095
3.17732
3.04684
2.91865
2.79206
2.66649
2.54152
2.41684
2.29226
2.16766
2.04298
1.91821
1.79338
1.66851
1.54364
1.41883
1.29412
1.16954
1.04514
0.920962
0.797018
0.673375
0.549975
0.427008
0.303805
0.182435
0.0540628
5.49125
4.5446
4.28525
4.0902
3.90946
3.74617
3.59447
3.45065
3.31251
3.17858
3.04782
2.91938
2.79254
2.66677
2.54163
2.41683
2.29216
2.16749
2.04277
1.91799
1.79314
1.66827
1.54342
1.41862
1.29391
1.16935
1.04496
0.920783
0.796836
0.673188
0.549793
0.426862
0.303738
0.182487
0.053842
5.49231
4.54398
4.28511
4.09009
3.9094
3.74612
3.59442
3.45061
3.31248
3.17856
3.04781
2.91937
2.79254
2.66677
2.54164
2.41684
2.29216
2.1675
2.04278
1.91799
1.79315
1.66828
1.54342
1.41862
1.29392
1.16936
1.04497
0.920803
0.796879
0.673235
0.549847
0.426878
0.30368
0.18238
0.0538254
5.52336
4.52354
4.28235
4.08746
3.90793
3.74472
3.59303
3.4493
3.31127
3.17747
3.04683
2.91852
2.79181
2.66616
2.54114
2.41644
2.29186
2.16727
2.04262
1.91788
1.79308
1.66824
1.5434
1.41862
1.29393
1.16937
1.04499
0.920827
0.796906
0.673263
0.549875
0.426888
0.303736
0.182303
0.054843
5.47329
4.54723
4.29187
4.09178
3.91237
3.74755
3.5948
3.45049
3.31202
3.17783
3.04685
2.91821
2.79123
2.66536
2.54018
2.41539
2.29078
2.1662
2.0416
1.91693
1.79221
1.66745
1.54271
1.418
1.29338
1.1689
1.04458
0.920467
0.796587
0.672974
0.549625
0.426631
0.303847
0.181765
0.060514
5.38207
4.57132
4.29699
4.09603
3.91497
3.74944
3.59631
3.45172
3.31303
3.17869
3.04759
2.91886
2.79181
2.66589
2.54068
2.41585
2.29121
2.16661
2.04198
1.91728
1.79254
1.66776
1.54299
1.41826
1.29363
1.16912
1.04478
0.92065
0.796755
0.673139
0.549783
0.426792
0.303954
0.181927
0.0596715
5.5223
4.52443
4.28255
4.08768
3.90802
3.74478
3.59308
3.44933
3.31128
3.17747
3.04683
2.91851
2.79181
2.66616
2.54114
2.41645
2.29187
2.16728
2.04263
1.9179
1.79309
1.66825
1.54342
1.41864
1.29394
1.16939
1.045
0.92083
0.796893
0.673252
0.549862
0.426903
0.303797
0.182359
0.0548618
5.27512
4.64117
4.30729
4.10342
3.92022
3.75261
3.59868
3.45379
3.31492
3.18045
3.04927
2.92048
2.79338
2.6674
2.54214
2.41728
2.29259
2.16795
2.04329
1.91856
1.79377
1.66895
1.54412
1.41934
1.29465
1.17008
1.04569
0.921509
0.797572
0.673912
0.550524
0.427491
0.304624
0.18253
0.0597561
5.51145
4.53556
4.28669
4.08939
3.91011
3.74601
3.59375
3.44972
3.31146
3.17744
3.0466
2.91808
2.79121
2.66542
2.54031
2.41556
2.29097
2.16641
2.04181
1.91714
1.7924
1.66763
1.54287
1.41814
1.2935
1.169
1.04466
0.920528
0.796636
0.673018
0.549661
0.42667
0.30373
0.181877
0.057914
5.56073
4.51109
4.27989
4.08577
3.90668
3.7439
3.59247
3.4489
3.311
3.17731
3.04677
2.91854
2.79191
2.66632
2.54133
2.41665
2.29208
2.16748
2.04281
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16946
1.04507
0.92089
0.796949
0.673307
0.549912
0.426952
0.303785
0.182409
0.0542819
5.5649
4.50951
4.27956
4.08559
3.9066
3.74385
3.59245
3.4489
3.31102
3.17733
3.0468
2.91858
2.79195
2.66635
2.54137
2.41669
2.29211
2.16751
2.04284
1.91808
1.79326
1.6684
1.54355
1.41875
1.29404
1.16947
1.04508
0.920915
0.796989
0.673339
0.54994
0.426943
0.303732
0.182378
0.0542833
5.41844
4.5603
4.29239
4.09398
3.91311
3.74823
3.59553
3.45117
3.31264
3.17842
3.04743
2.9188
2.79184
2.66599
2.54082
2.41603
2.2914
2.1668
2.04217
1.91747
1.7927
1.66791
1.54312
1.41838
1.29373
1.1692
1.04485
0.920707
0.796798
0.673173
0.549806
0.426827
0.3039
0.182075
0.0578205
5.54602
4.51567
4.28108
4.08663
3.90717
3.74432
3.59283
3.4492
3.31125
3.17752
3.04696
2.9187
2.79205
2.66644
2.54144
2.41674
2.29215
2.16754
2.04286
1.9181
1.79327
1.6684
1.54355
1.41874
1.29404
1.16947
1.04508
0.920911
0.796984
0.673333
0.549931
0.42694
0.303706
0.182421
0.0539374
5.54817
4.51499
4.28091
4.08651
3.90708
3.74425
3.59278
3.44916
3.31122
3.1775
3.04694
2.9187
2.79206
2.66646
2.54146
2.41676
2.29217
2.16756
2.04288
1.91812
1.79329
1.66843
1.54357
1.41877
1.29406
1.16949
1.04509
0.920912
0.796965
0.673318
0.549917
0.426966
0.303785
0.182492
0.0539589
5.56285
4.51019
4.27985
4.0857
3.90656
3.74384
3.59244
3.44889
3.31101
3.17734
3.04682
2.91861
2.79199
2.66641
2.54143
2.41675
2.29216
2.16757
2.04289
1.91813
1.7933
1.66844
1.54358
1.41878
1.29407
1.1695
1.0451
0.920923
0.796979
0.673336
0.549937
0.426976
0.30379
0.182441
0.0540975
5.55881
4.51082
4.2799
4.08576
3.90663
3.7439
3.5925
3.44896
3.31107
3.17739
3.04687
2.91865
2.79203
2.66644
2.54145
2.41677
2.29218
2.16758
2.0429
1.91814
1.79331
1.66845
1.54359
1.41879
1.29408
1.16951
1.04511
0.920943
0.797015
0.673362
0.549959
0.426961
0.303734
0.182416
0.0541007
5.34998
4.60005
4.29852
4.09862
3.91621
3.75028
3.5972
3.45268
3.31405
3.17975
3.04867
2.91995
2.79289
2.66694
2.54168
2.4168
2.2921
2.16743
2.04273
1.91797
1.79316
1.66832
1.5435
1.41872
1.29404
1.1695
1.04512
0.920964
0.797044
0.67341
0.55004
0.427047
0.304137
0.182216
0.0582175
5.54035
4.51997
4.28206
4.08714
3.90782
3.74458
3.59288
3.44915
3.31112
3.17731
3.04667
2.91835
2.79165
2.666
2.54099
2.41631
2.29174
2.16718
2.04254
1.91783
1.79304
1.66821
1.54339
1.41861
1.29392
1.16937
1.04499
0.920821
0.796887
0.673248
0.549861
0.426895
0.303819
0.182298
0.055374
5.37607
4.57956
4.29666
4.09653
3.91504
3.74954
3.59652
3.45199
3.31334
3.17902
3.04793
2.91921
2.79216
2.66624
2.54101
2.41618
2.29151
2.16689
2.04224
1.91752
1.79275
1.66795
1.54316
1.41842
1.29376
1.16924
1.04488
0.920744
0.796838
0.673215
0.549853
0.426865
0.30398
0.182037
0.0587323
5.42434
4.56973
4.29034
4.09404
3.9125
3.74798
3.59562
3.45143
3.31301
3.17887
3.04793
2.91933
2.79239
2.66654
2.54136
2.41655
2.29188
2.16724
2.04255
1.91779
1.79298
1.66814
1.54332
1.41854
1.29386
1.16932
1.04494
0.920786
0.796862
0.673228
0.549849
0.426883
0.303866
0.182246
0.0558948
5.17116
4.68495
4.32436
4.1102
3.92687
3.75681
3.60127
3.4557
3.31638
3.18157
3.05013
2.92114
2.79389
2.6678
2.54245
2.41753
2.29282
2.16817
2.04351
1.9188
1.79404
1.66926
1.54448
1.41976
1.29512
1.17061
1.04628
0.92215
0.798264
0.674649
0.551308
0.428292
0.305609
0.183438
0.0657173
5.44272
4.54841
4.29118
4.09191
3.91211
3.74736
3.59469
3.45042
3.31197
3.17781
3.04686
2.91825
2.79129
2.66544
2.54028
2.4155
2.29089
2.16632
2.04171
1.91704
1.79231
1.66755
1.5428
1.41808
1.29346
1.16896
1.04463
0.920511
0.796627
0.673013
0.549661
0.426668
0.303809
0.181829
0.0593238
5.43364
4.55727
4.29046
4.09308
3.9122
3.74762
3.59511
3.45084
3.31239
3.17824
3.04731
2.91874
2.79182
2.666
2.54086
2.41609
2.29147
2.16687
2.04223
1.91752
1.79275
1.66795
1.54315
1.41839
1.29373
1.1692
1.04484
0.920695
0.79678
0.673153
0.549781
0.426808
0.303837
0.182114
0.0568835
5.57783
4.50562
4.27879
4.08502
3.90614
3.74358
3.59228
3.4488
3.31097
3.17734
3.04686
2.91867
2.79208
2.66651
2.54154
2.41686
2.29227
2.16766
2.04298
1.91821
1.79338
1.66851
1.54364
1.41883
1.29412
1.16954
1.04514
0.92096
0.797015
0.673371
0.549966
0.427001
0.303788
0.182447
0.0539283
5.57769
4.50563
4.2788
4.08502
3.90614
3.74358
3.59228
3.4488
3.31097
3.17734
3.04686
2.91867
2.79208
2.66651
2.54154
2.41686
2.29227
2.16766
2.04298
1.91821
1.79338
1.66851
1.54364
1.41883
1.29412
1.16954
1.04515
0.920978
0.797048
0.673392
0.549979
0.426969
0.303716
0.18242
0.0539475
5.4844
4.54155
4.28527
4.09019
3.90974
3.74611
3.59416
3.45021
3.312
3.17804
3.04727
2.91884
2.79204
2.66631
2.54123
2.41648
2.29186
2.16725
2.04258
1.91784
1.79303
1.66819
1.54336
1.41858
1.29389
1.16934
1.04496
0.920793
0.796859
0.67322
0.549832
0.426876
0.303792
0.182348
0.0549222
5.39206
4.56271
4.29732
4.09535
3.91478
3.74922
3.59603
3.45144
3.31276
3.17842
3.04733
2.9186
2.79156
2.66563
2.54042
2.4156
2.29097
2.16638
2.04176
1.91708
1.79235
1.66759
1.54283
1.41812
1.2935
1.16901
1.04468
0.920568
0.796681
0.673067
0.549714
0.426719
0.303954
0.181825
0.0609049
5.33208
4.60108
4.30141
4.09886
3.91708
3.75089
3.59753
3.45286
3.31411
3.17969
3.04851
2.9197
2.79257
2.66658
2.54129
2.41641
2.29172
2.16707
2.0424
1.91768
1.79291
1.66811
1.54332
1.41858
1.29393
1.16941
1.04505
0.920916
0.797016
0.67339
0.55003
0.427022
0.304185
0.182099
0.0603065
5.50385
4.53101
4.28729
4.0901
3.91062
3.74635
3.59398
3.44986
3.31154
3.17748
3.04661
2.91809
2.7912
2.66542
2.5403
2.41556
2.29098
2.16642
2.04182
1.91714
1.79241
1.66764
1.54287
1.41815
1.29351
1.169
1.04466
0.920532
0.796632
0.673011
0.549645
0.42666
0.303759
0.181902
0.0581348
5.42361
4.55594
4.29215
4.09351
3.91285
3.74799
3.59529
3.45093
3.31242
3.17822
3.04724
2.91862
2.79167
2.66582
2.54066
2.41588
2.29126
2.16668
2.04205
1.91736
1.79261
1.66782
1.54304
1.41831
1.29366
1.16915
1.0448
0.920662
0.796757
0.673135
0.549771
0.426789
0.30388
0.182025
0.0581205
5.46244
4.54258
4.28871
4.09072
3.91099
3.74661
3.59418
3.45004
3.3117
3.17763
3.04675
2.9182
2.7913
2.66549
2.54037
2.41561
2.29102
2.16645
2.04185
1.91717
1.79244
1.66767
1.5429
1.41817
1.29354
1.16903
1.04469
0.92056
0.796668
0.673049
0.549691
0.426699
0.30377
0.181904
0.0581356
5.53447
4.52906
4.28446
4.08821
3.90902
3.74529
3.59327
3.44938
3.31123
3.1773
3.04654
2.91811
2.7913
2.66556
2.54049
2.41578
2.29121
2.16665
2.04204
1.91736
1.79261
1.66782
1.54304
1.41829
1.29364
1.16911
1.04476
0.920618
0.796717
0.673091
0.549725
0.426734
0.303724
0.181991
0.0568394
5.57284
4.5194
4.28152
4.08653
3.9075
3.74436
3.59273
3.44906
3.31108
3.17731
3.0467
2.91839
2.7917
2.66606
2.54105
2.41637
2.2918
2.16723
2.0426
1.91788
1.79308
1.66825
1.54343
1.41865
1.29396
1.1694
1.04502
0.920858
0.796937
0.673295
0.54991
0.426918
0.303797
0.182273
0.0553709
5.43655
4.5512
4.29453
4.09303
3.91338
3.74823
3.59526
3.45082
3.31227
3.17801
3.04698
2.9183
2.79128
2.66538
2.54019
2.41538
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54269
1.41798
1.29337
1.16889
1.04457
0.92046
0.796576
0.672957
0.549605
0.426619
0.30391
0.181769
0.0614962
5.32403
4.59809
4.30353
4.09926
3.91776
3.75139
3.59781
3.45301
3.31416
3.17967
3.04843
2.91958
2.79241
2.66639
2.54109
2.4162
2.29151
2.16687
2.04221
1.9175
1.79274
1.66796
1.54319
1.41846
1.29382
1.16931
1.04497
0.920849
0.796961
0.673344
0.54999
0.426974
0.3042
0.181971
0.0618048
5.4567
4.54994
4.29451
4.09303
3.91336
3.74821
3.59524
3.45081
3.31225
3.178
3.04696
2.91828
2.79126
2.66537
2.54017
2.41536
2.29074
2.16616
2.04155
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.920442
0.796555
0.672935
0.549577
0.42659
0.303887
0.181764
0.0614364
5.4326
4.54909
4.29448
4.09323
3.9134
3.74822
3.59524
3.45081
3.31225
3.178
3.04697
2.9183
2.79129
2.6654
2.54021
2.41541
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54272
1.41802
1.2934
1.16892
1.0446
0.920488
0.7966
0.67298
0.549622
0.426633
0.303908
0.181805
0.0611591
5.49163
4.53191
4.28597
4.08962
3.90987
3.74593
3.59376
3.44974
3.31149
3.1775
3.0467
2.91824
2.79142
2.66569
2.54061
2.41589
2.29132
2.16676
2.04215
1.91746
1.7927
1.66791
1.54311
1.41837
1.29371
1.16918
1.04482
0.920668
0.796751
0.673122
0.549747
0.426774
0.303786
0.182098
0.0566879
5.43787
4.55075
4.29409
4.09282
3.91322
3.74813
3.59519
3.45077
3.31222
3.17798
3.04695
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.920442
0.796559
0.672943
0.549594
0.426607
0.303885
0.181751
0.0613285
5.40156
4.55926
4.29689
4.09459
3.91442
3.74896
3.59579
3.45123
3.31259
3.17827
3.04719
2.91847
2.79143
2.66551
2.54029
2.41548
2.29084
2.16626
2.04165
1.91698
1.79225
1.6675
1.54275
1.41804
1.29343
1.16894
1.04462
0.92051
0.796627
0.673011
0.549659
0.426666
0.303945
0.181773
0.0615477
5.31383
4.60882
4.30374
4.10002
3.91805
3.75151
3.59795
3.45321
3.31442
3.17998
3.04878
2.91995
2.7928
2.66678
2.54148
2.41658
2.29187
2.16721
2.04253
1.91781
1.79303
1.66823
1.54343
1.41869
1.29403
1.16951
1.04516
0.921018
0.797116
0.673488
0.550126
0.427109
0.304294
0.182136
0.0610471
5.40158
4.56332
4.29493
4.09442
3.91403
3.7488
3.59581
3.45132
3.31271
3.17842
3.04736
2.91867
2.79164
2.66574
2.54054
2.41573
2.2911
2.16651
2.04188
1.9172
1.79247
1.6677
1.54294
1.41822
1.29359
1.16909
1.04476
0.920634
0.796746
0.673129
0.549776
0.426779
0.303943
0.181905
0.0599048
5.47331
4.544
4.29238
4.09223
3.91256
3.74765
3.59484
3.4505
3.312
3.1778
3.04682
2.91818
2.79121
2.66534
2.54017
2.41538
2.29077
2.1662
2.04159
1.91693
1.7922
1.66745
1.5427
1.41799
1.29337
1.16889
1.04457
0.920453
0.796566
0.672947
0.549586
0.426597
0.30383
0.181791
0.0603386
5.48375
4.53326
4.28747
4.09026
3.91056
3.74632
3.59397
3.44985
3.31153
3.17748
3.04663
2.91811
2.79124
2.66546
2.54036
2.41562
2.29104
2.16648
2.04187
1.9172
1.79246
1.66768
1.54291
1.41818
1.29353
1.16902
1.04468
0.920541
0.796638
0.673016
0.549649
0.426669
0.303743
0.18193
0.0576995
5.36031
4.57718
4.30009
4.0968
3.916
3.75013
3.59674
3.45204
3.31327
3.17886
3.04769
2.91891
2.79181
2.66584
2.54059
2.41574
2.29108
2.16647
2.04184
1.91716
1.79242
1.66765
1.54289
1.41818
1.29356
1.16906
1.04474
0.920621
0.796738
0.673126
0.549776
0.426773
0.304022
0.181808
0.0616471
5.41621
4.55425
4.2958
4.09388
3.91392
3.74859
3.59552
3.45102
3.31242
3.17813
3.04707
2.91838
2.79135
2.66544
2.54024
2.41543
2.2908
2.16622
2.04161
1.91695
1.79222
1.66747
1.54272
1.41802
1.2934
1.16892
1.0446
0.920491
0.796606
0.672987
0.549632
0.426642
0.303929
0.181781
0.0614916
5.56455
4.52165
4.28209
4.08686
3.90781
3.74455
3.59284
3.44913
3.31111
3.17731
3.04666
2.91832
2.7916
2.66594
2.54092
2.41623
2.29167
2.1671
2.04247
1.91776
1.79298
1.66816
1.54334
1.41857
1.29389
1.16934
1.04496
0.920806
0.796889
0.67325
0.549869
0.426878
0.303781
0.182211
0.0556791
5.31641
4.61736
4.30233
4.10037
3.91775
3.75116
3.59773
3.45307
3.31436
3.18
3.04888
2.92013
2.79304
2.66707
2.54178
2.41689
2.29218
2.1675
2.04281
1.91805
1.79325
1.66842
1.5436
1.41883
1.29415
1.16961
1.04524
0.921079
0.797165
0.673525
0.550155
0.427144
0.304261
0.182255
0.0591759
5.3725
4.57517
4.29822
4.09669
3.91555
3.74986
3.59664
3.452
3.31327
3.17889
3.04776
2.919
2.79193
2.666
2.54076
2.41593
2.29128
2.16667
2.04203
1.91734
1.79259
1.66782
1.54304
1.41832
1.29368
1.16917
1.04483
0.920706
0.796812
0.673195
0.549839
0.426844
0.304021
0.181951
0.0600961
5.46833
4.55092
4.28629
4.09124
3.91037
3.74662
3.59465
3.45067
3.31241
3.17841
3.04759
2.91911
2.79226
2.66649
2.54136
2.41658
2.29193
2.16729
2.04261
1.91785
1.79303
1.66818
1.54335
1.41856
1.29387
1.16932
1.04494
0.920776
0.796843
0.673203
0.549816
0.426864
0.303784
0.182343
0.0548157
5.4714
4.54012
4.28805
4.09041
3.91071
3.74643
3.59407
3.44997
3.31166
3.17761
3.04675
2.91822
2.79133
2.66554
2.54043
2.41568
2.29109
2.16653
2.04192
1.91725
1.79251
1.66773
1.54296
1.41823
1.29359
1.16908
1.04474
0.920605
0.79671
0.673088
0.549727
0.426734
0.303786
0.181951
0.0578612
5.37183
4.58263
4.29684
4.0963
3.91506
3.74954
3.5965
3.45197
3.31332
3.17898
3.04788
2.91915
2.79209
2.66616
2.54092
2.41609
2.29143
2.16681
2.04216
1.91745
1.79269
1.6679
1.54312
1.41838
1.29374
1.16922
1.04487
0.920738
0.796841
0.673216
0.549857
0.426858
0.303981
0.182007
0.0591741
5.26594
4.63331
4.3107
4.10379
3.92089
3.75321
3.59904
3.45402
3.31507
3.18052
3.04926
2.9204
2.79322
2.66717
2.54184
2.41691
2.29218
2.1675
2.0428
1.91805
1.79326
1.66845
1.54365
1.41889
1.29423
1.1697
1.04534
0.921199
0.797297
0.673671
0.55031
0.427283
0.304504
0.182244
0.0622799
5.20735
4.66777
4.31844
4.10803
3.92451
3.75533
3.60039
3.45504
3.31587
3.18117
3.04981
2.92089
2.79368
2.66763
2.54231
2.4174
2.2927
2.16806
2.0434
1.91869
1.79393
1.66914
1.54436
1.41962
1.29497
1.17044
1.04608
0.921928
0.798016
0.674377
0.55101
0.427973
0.305219
0.182975
0.0634172
5.49084
4.5424
4.28935
4.09066
3.91132
3.74683
3.5943
3.45012
3.31174
3.17763
3.0467
2.91811
2.79117
2.66533
2.54018
2.41541
2.2908
2.16623
2.04163
1.91696
1.79223
1.66748
1.54272
1.41801
1.29339
1.16889
1.04457
0.920449
0.796568
0.672956
0.549606
0.426613
0.303755
0.181776
0.0592671
5.55158
4.51728
4.28134
4.08669
3.90745
3.74436
3.59274
3.44907
3.31108
3.17731
3.0467
2.91841
2.79173
2.66611
2.54111
2.41643
2.29186
2.16729
2.04265
1.91792
1.79313
1.66829
1.54346
1.41867
1.29398
1.16942
1.04503
0.920861
0.796924
0.673283
0.549893
0.426929
0.303829
0.182348
0.0550769
5.43531
4.5534
4.2907
4.09239
3.91212
3.74748
3.5949
3.45064
3.3122
3.17805
3.04711
2.91852
2.79158
2.66575
2.5406
2.41583
2.29122
2.16664
2.04201
1.91732
1.79258
1.6678
1.54302
1.41829
1.29364
1.16913
1.04478
0.920646
0.796749
0.673126
0.549764
0.426771
0.303832
0.18199
0.0580103
5.40309
4.55976
4.29626
4.09428
3.91416
3.74878
3.59567
3.45114
3.31252
3.17822
3.04715
2.91844
2.79141
2.6655
2.54029
2.41547
2.29084
2.16626
2.04164
1.91697
1.79224
1.66749
1.54274
1.41803
1.29342
1.16893
1.04461
0.920497
0.796615
0.673002
0.549653
0.42666
0.303916
0.18176
0.0612484
5.50274
4.53011
4.28657
4.08973
3.91023
3.7461
3.59382
3.44975
3.31145
3.17742
3.04659
2.91809
2.79123
2.66546
2.54036
2.41563
2.29105
2.1665
2.04189
1.91722
1.79248
1.66771
1.54293
1.4182
1.29356
1.16904
1.0447
0.920562
0.796657
0.673034
0.549666
0.426684
0.303755
0.181944
0.0576607
5.44857
4.546
4.29339
4.09275
3.91301
3.74796
3.59506
3.45066
3.31213
3.1779
3.04689
2.91824
2.79124
2.66536
2.54017
2.41538
2.29076
2.16619
2.04158
1.91692
1.79219
1.66744
1.54269
1.41799
1.29337
1.16888
1.04456
0.920453
0.796566
0.672946
0.549587
0.426598
0.303858
0.181783
0.0608059
5.5561
4.51262
4.28018
4.08599
3.90692
3.74404
3.59255
3.44896
3.31103
3.17732
3.04676
2.91851
2.79186
2.66625
2.54126
2.41658
2.292
2.16741
2.04275
1.918
1.79319
1.66834
1.54349
1.4187
1.294
1.16943
1.04505
0.92088
0.796955
0.673309
0.549915
0.426923
0.303738
0.182344
0.0545326
5.36772
4.5765
4.29884
4.0969
3.91576
3.74998
3.59671
3.45204
3.31329
3.17889
3.04775
2.91899
2.79191
2.66596
2.54072
2.41588
2.29123
2.16662
2.04198
1.91729
1.79255
1.66777
1.543
1.41828
1.29364
1.16914
1.0448
0.920678
0.796786
0.673172
0.549817
0.42682
0.30401
0.181911
0.0603797
5.31908
4.61817
4.30187
4.10086
3.91786
3.75122
3.59781
3.45313
3.31442
3.18007
3.04898
2.92027
2.79322
2.66728
2.54203
2.41716
2.29245
2.16777
2.04306
1.91829
1.79347
1.66861
1.54377
1.41898
1.29428
1.16972
1.04533
0.921161
0.79723
0.673586
0.55021
0.427204
0.304308
0.182309
0.0586105
5.26767
4.63211
4.31008
4.10335
3.9207
3.75311
3.59898
3.454
3.31507
3.18054
3.04929
2.92043
2.79325
2.66721
2.54188
2.41696
2.29223
2.16756
2.04287
1.91813
1.79334
1.66853
1.54374
1.41898
1.29432
1.1698
1.04544
0.921296
0.797394
0.673764
0.550402
0.427373
0.304595
0.18234
0.0624812
5.49727
4.5404
4.28852
4.09029
3.91097
3.74659
3.59414
3.45
3.31165
3.17756
3.04666
2.91809
2.79116
2.66533
2.54019
2.41542
2.29082
2.16626
2.04165
1.91698
1.79225
1.66749
1.54273
1.41802
1.29339
1.1689
1.04457
0.92045
0.796566
0.672953
0.549602
0.426611
0.30373
0.181786
0.0588642
5.52804
4.52362
4.28238
4.08769
3.90788
3.7449
3.59331
3.44959
3.31156
3.17776
3.04713
2.91882
2.79213
2.66648
2.54145
2.41672
2.29211
2.16749
2.04281
1.91804
1.79321
1.66835
1.5435
1.4187
1.294
1.16943
1.04504
0.92086
0.796912
0.673263
0.549863
0.426923
0.303766
0.182512
0.0539051
5.52764
4.52383
4.28241
4.0877
3.90789
3.74491
3.59332
3.44961
3.31158
3.17778
3.04715
2.91884
2.79214
2.66649
2.54145
2.41673
2.29212
2.1675
2.04281
1.91805
1.79322
1.66835
1.5435
1.4187
1.294
1.16943
1.04504
0.920876
0.79695
0.673302
0.549906
0.426924
0.303699
0.182421
0.0538759
5.49384
4.54197
4.28492
4.08998
3.90942
3.74607
3.59431
3.45046
3.31231
3.17839
3.04765
2.91922
2.79241
2.66667
2.54155
2.41677
2.29212
2.16747
2.04276
1.91799
1.79315
1.66829
1.54344
1.41864
1.29394
1.16938
1.045
0.920833
0.796909
0.673264
0.549876
0.426901
0.303717
0.182387
0.0540845
5.30846
4.6267
4.30275
4.10129
3.91827
3.75143
3.59794
3.45325
3.31453
3.18017
3.04906
2.92034
2.79328
2.66735
2.54211
2.41725
2.29255
2.16789
2.04319
1.91843
1.79361
1.66875
1.54391
1.41911
1.29441
1.16984
1.04545
0.921277
0.797346
0.673693
0.55031
0.42729
0.304382
0.182394
0.0585852
5.24738
4.64856
4.31189
4.10491
3.92187
3.7537
3.59934
3.45426
3.31527
3.18071
3.04944
2.92059
2.79345
2.66744
2.54215
2.41727
2.29257
2.16791
2.04323
1.91848
1.79369
1.66886
1.54405
1.41928
1.29461
1.17006
1.04569
0.921536
0.79762
0.673977
0.550606
0.427572
0.304776
0.182571
0.0619601
5.50042
4.53946
4.28473
4.08963
3.90913
3.74595
3.59427
3.45047
3.31234
3.17844
3.0477
2.91928
2.79247
2.66673
2.54161
2.41682
2.29216
2.1675
2.04279
1.91801
1.79316
1.6683
1.54344
1.41864
1.29394
1.16938
1.04498
0.920805
0.796856
0.673205
0.549807
0.426878
0.303747
0.182521
0.053794
5.50066
4.5393
4.28471
4.08962
3.90912
3.74594
3.59426
3.45046
3.31233
3.17843
3.0477
2.91927
2.79247
2.66672
2.54161
2.41682
2.29216
2.1675
2.04279
1.91801
1.79317
1.6683
1.54344
1.41864
1.29394
1.16937
1.04499
0.920819
0.796895
0.673251
0.549862
0.426892
0.303681
0.182401
0.0537527
5.46271
4.55001
4.29341
4.09243
3.91291
3.74791
3.59504
3.45066
3.31214
3.17791
3.0469
2.91824
2.79124
2.66535
2.54016
2.41536
2.29074
2.16616
2.04155
1.91689
1.79217
1.66741
1.54266
1.41796
1.29335
1.16886
1.04455
0.920436
0.796555
0.67294
0.549592
0.426602
0.303861
0.181742
0.061068
5.46239
4.54572
4.29324
4.0926
3.91299
3.74795
3.59506
3.45066
3.31214
3.17791
3.04689
2.91823
2.79123
2.66535
2.54016
2.41536
2.29074
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.920438
0.796552
0.672931
0.549572
0.426584
0.303858
0.181773
0.0609978
5.1526
4.69425
4.32744
4.11126
3.92816
3.75761
3.60175
3.45606
3.31667
3.1818
3.05031
2.9213
2.79402
2.66791
2.54255
2.41762
2.2929
2.16825
2.04359
1.91888
1.79412
1.66934
1.54457
1.41985
1.29521
1.17071
1.04638
0.922259
0.798379
0.67477
0.551441
0.42844
0.305797
0.183729
0.0672166
5.47557
4.53869
4.28742
4.09015
3.91044
3.74626
3.59397
3.4499
3.31161
3.17759
3.04675
2.91824
2.79137
2.66559
2.54049
2.41575
2.29116
2.16659
2.04198
1.9173
1.79256
1.66778
1.543
1.41826
1.29362
1.1691
1.04475
0.920615
0.796717
0.673093
0.54973
0.426739
0.303766
0.181982
0.0574414
5.33114
4.60435
4.30165
4.09962
3.91724
3.75091
3.59753
3.45284
3.31409
3.17969
3.04853
2.91975
2.79264
2.66666
2.54139
2.41651
2.29181
2.16716
2.04248
1.91775
1.79296
1.66815
1.54335
1.4186
1.29393
1.1694
1.04504
0.92089
0.79698
0.673353
0.54999
0.42699
0.30413
0.182088
0.0594498
5.50709
4.52906
4.28439
4.0883
3.90896
3.74526
3.59328
3.44941
3.31126
3.17735
3.04662
2.9182
2.7914
2.66569
2.54063
2.41592
2.29135
2.16679
2.04217
1.91748
1.79273
1.66793
1.54314
1.41839
1.29372
1.16919
1.04483
0.920686
0.79678
0.673149
0.549778
0.426787
0.303754
0.182069
0.0565207
5.35284
4.59792
4.29823
4.09783
3.91587
3.75006
3.59699
3.45248
3.31385
3.17952
3.04842
2.91968
2.7926
2.66664
2.54138
2.41652
2.29183
2.16718
2.0425
1.91777
1.79298
1.66816
1.54335
1.41859
1.29393
1.16939
1.04503
0.92088
0.796971
0.673336
0.549969
0.426966
0.304059
0.182126
0.0586098
5.4785
4.5432
4.28589
4.09053
3.91006
3.74628
3.59424
3.45025
3.312
3.17802
3.04723
2.91879
2.79198
2.66625
2.54117
2.41643
2.29182
2.16722
2.04256
1.91783
1.79303
1.6682
1.54337
1.4186
1.29391
1.16937
1.04499
0.920822
0.79689
0.673251
0.549863
0.426902
0.303834
0.182339
0.0552787
5.48756
4.5323
4.28705
4.09011
3.91043
3.74626
3.59395
3.44986
3.31155
3.17752
3.04668
2.91818
2.79132
2.66556
2.54046
2.41573
2.29115
2.1666
2.04199
1.91731
1.79257
1.66779
1.54301
1.41828
1.29363
1.16911
1.04476
0.920622
0.796714
0.673089
0.549718
0.426737
0.303795
0.18201
0.0574808
5.47098
4.53733
4.28818
4.0909
3.91094
3.74663
3.59423
3.45007
3.31172
3.17764
3.04678
2.91825
2.79138
2.6656
2.54049
2.41575
2.29117
2.1666
2.04199
1.91731
1.79256
1.66778
1.543
1.41826
1.29362
1.1691
1.04475
0.920607
0.796699
0.673075
0.549706
0.426728
0.303786
0.182007
0.0574635
5.51244
4.52742
4.28507
4.08892
3.90948
3.74564
3.59354
3.44956
3.31134
3.17738
3.0466
2.91815
2.79134
2.66561
2.54054
2.41583
2.29126
2.16671
2.0421
1.91741
1.79266
1.66787
1.54309
1.41834
1.29368
1.16916
1.0448
0.92065
0.796735
0.673106
0.549732
0.426756
0.303777
0.182063
0.0568483
5.43093
4.55177
4.29299
4.09266
3.91282
3.74785
3.59502
3.45065
3.31215
3.17794
3.04694
2.91829
2.79131
2.66543
2.54025
2.41546
2.29084
2.16627
2.04166
1.91699
1.79226
1.66751
1.54275
1.41805
1.29343
1.16894
1.04461
0.9205
0.796619
0.673006
0.549657
0.426663
0.303856
0.181793
0.0602117
5.41282
4.55467
4.29565
4.09418
3.91394
3.7486
3.59554
3.45103
3.31243
3.17814
3.04709
2.9184
2.79138
2.66548
2.54028
2.41548
2.29086
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29343
1.16894
1.04462
0.920507
0.796621
0.673005
0.54965
0.426658
0.303902
0.181798
0.0608207
5.57366
4.51702
4.28079
4.08615
3.90722
3.74417
3.59258
3.44894
3.31098
3.17722
3.04661
2.91831
2.79162
2.66598
2.54097
2.41628
2.29171
2.16714
2.0425
1.91777
1.79298
1.66815
1.54332
1.41854
1.29385
1.1693
1.04492
0.920764
0.796846
0.673208
0.549826
0.426838
0.303712
0.182209
0.0551855
5.4574
4.5505
4.29438
4.09292
3.91335
3.74823
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16888
1.04456
0.920451
0.796565
0.672945
0.549591
0.426604
0.303904
0.181766
0.0615587
5.48269
4.5461
4.29102
4.09138
3.91192
3.74724
3.59458
3.45033
3.3119
3.17775
3.0468
2.91818
2.79122
2.66537
2.54021
2.41543
2.29082
2.16625
2.04164
1.91697
1.79225
1.6675
1.54274
1.41804
1.29342
1.16893
1.0446
0.920488
0.796606
0.672994
0.549643
0.426649
0.303822
0.181793
0.0598628
5.4783
4.5424
4.29175
4.09194
3.9123
3.74747
3.59471
3.45039
3.31192
3.17773
3.04676
2.91814
2.79117
2.66531
2.54014
2.41535
2.29074
2.16617
2.04157
1.9169
1.79217
1.66742
1.54267
1.41796
1.29334
1.16885
1.04453
0.920417
0.79653
0.672913
0.549553
0.426565
0.303781
0.181765
0.0600439
5.39468
4.56367
4.29633
4.09528
3.91454
3.7491
3.596
3.45144
3.31278
3.17846
3.04738
2.91867
2.79164
2.66573
2.54053
2.41571
2.29108
2.16649
2.04187
1.91719
1.79245
1.66768
1.54292
1.4182
1.29357
1.16907
1.04473
0.920612
0.79672
0.673105
0.54975
0.426758
0.303942
0.181889
0.0600274
5.40082
4.56621
4.29423
4.09435
3.91375
3.74861
3.59572
3.45129
3.31271
3.17844
3.04741
2.91873
2.79172
2.66583
2.54063
2.41583
2.29119
2.1666
2.04197
1.91728
1.79254
1.66776
1.54299
1.41827
1.29363
1.16912
1.04478
0.920652
0.79676
0.67314
0.549783
0.426787
0.303911
0.181949
0.0591527
5.48455
4.54421
4.29021
4.09103
3.91166
3.74707
3.59446
3.45024
3.31183
3.17768
3.04674
2.91813
2.79118
2.66533
2.54016
2.41538
2.29077
2.1662
2.04159
1.91692
1.7922
1.66744
1.54269
1.41798
1.29336
1.16887
1.04454
0.92043
0.79655
0.672939
0.549591
0.426598
0.303764
0.181751
0.059656
5.33028
4.59379
4.30305
4.09886
3.91749
3.7512
3.59764
3.45284
3.314
3.17951
3.04828
2.91943
2.79228
2.66627
2.54098
2.4161
2.29141
2.16678
2.04213
1.91742
1.79267
1.66789
1.54312
1.4184
1.29376
1.16926
1.04492
0.9208
0.796914
0.673298
0.549945
0.426931
0.304162
0.181926
0.0618335
5.43182
4.55168
4.29329
4.09277
3.91294
3.74793
3.59507
3.45069
3.31217
3.17795
3.04695
2.91829
2.7913
2.66542
2.54024
2.41544
2.29082
2.16625
2.04164
1.91697
1.79224
1.66749
1.54273
1.41803
1.29341
1.16892
1.0446
0.920483
0.796602
0.672989
0.54964
0.426646
0.30385
0.181773
0.0603582
5.40778
4.57992
4.29182
4.09533
3.9133
3.7485
3.59607
3.45186
3.31345
3.1793
3.04835
2.91973
2.79276
2.66687
2.54166
2.41681
2.29211
2.16744
2.04273
1.91796
1.79313
1.66827
1.54343
1.41865
1.29396
1.16941
1.04503
0.920864
0.796935
0.673298
0.549917
0.426947
0.303936
0.182287
0.0559534
5.48698
4.53406
4.2861
4.08987
3.90995
3.74601
3.59385
3.44982
3.31156
3.17757
3.04678
2.91832
2.79151
2.66578
2.5407
2.41598
2.29141
2.16684
2.04222
1.91752
1.79276
1.66796
1.54316
1.4184
1.29374
1.16921
1.04484
0.920691
0.796772
0.673141
0.549764
0.426794
0.303789
0.182138
0.0563899
5.41483
4.55502
4.29483
4.09417
3.91375
3.74849
3.5955
3.45101
3.31241
3.17814
3.04711
2.91844
2.79143
2.66555
2.54036
2.41556
2.29094
2.16636
2.04175
1.91707
1.79234
1.66758
1.54282
1.41811
1.29348
1.16899
1.04466
0.920536
0.796646
0.673031
0.549674
0.426684
0.303876
0.181838
0.0599591
5.45915
4.55054
4.2938
4.09261
3.91307
3.74803
3.59512
3.45072
3.31219
3.17795
3.04693
2.91826
2.79125
2.66536
2.54016
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41796
1.29335
1.16886
1.04455
0.920435
0.796553
0.672937
0.549588
0.4266
0.303875
0.181746
0.0612659
5.45757
4.55028
4.29438
4.09294
3.91336
3.74823
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41798
1.29336
1.16888
1.04456
0.920453
0.796568
0.672947
0.549592
0.426605
0.303906
0.181769
0.0615625
5.40084
4.58107
4.29284
4.09572
3.91374
3.74879
3.59625
3.45198
3.31351
3.17932
3.04832
2.91968
2.79269
2.66679
2.54157
2.41672
2.29202
2.16735
2.04265
1.91788
1.79306
1.66821
1.54338
1.4186
1.29392
1.16937
1.045
0.920838
0.796915
0.673281
0.549905
0.426932
0.303944
0.182241
0.0564114
5.58253
4.50435
4.27832
4.08477
3.906
3.74349
3.59223
3.44878
3.31097
3.17735
3.04688
2.9187
2.79212
2.66655
2.54158
2.4169
2.29231
2.1677
2.04302
1.91825
1.79341
1.66854
1.54367
1.41886
1.29414
1.16956
1.04516
0.92098
0.797034
0.67339
0.549985
0.427018
0.303801
0.182453
0.0539335
5.58222
4.50429
4.27831
4.08477
3.906
3.7435
3.59224
3.44879
3.31098
3.17736
3.04689
2.91871
2.79212
2.66655
2.54158
2.4169
2.29232
2.16771
2.04302
1.91825
1.79341
1.66854
1.54367
1.41886
1.29414
1.16957
1.04517
0.921
0.797069
0.673411
0.549997
0.426986
0.303731
0.182432
0.0539568
5.42312
4.57473
4.29016
4.09442
3.91254
3.74804
3.59578
3.45168
3.31335
3.17928
3.04837
2.91979
2.79283
2.66695
2.54173
2.41687
2.29216
2.16748
2.04276
1.91797
1.79314
1.66828
1.54343
1.41864
1.29395
1.1694
1.04501
0.92085
0.796919
0.67328
0.549896
0.426932
0.303896
0.182318
0.0554636
5.27281
4.62778
4.30991
4.1031
3.92047
3.753
3.59891
3.45393
3.315
3.18046
3.0492
2.92033
2.79314
2.66709
2.54176
2.41683
2.2921
2.16743
2.04274
1.91801
1.79322
1.66841
1.54362
1.41887
1.29421
1.16968
1.04533
0.921191
0.797293
0.673668
0.550309
0.427281
0.30451
0.182236
0.0625435
5.54333
4.5168
4.2813
4.08679
3.90727
3.74441
3.5929
3.44926
3.3113
3.17755
3.04698
2.91872
2.79207
2.66645
2.54145
2.41674
2.29215
2.16754
2.04286
1.91809
1.79326
1.6684
1.54355
1.41874
1.29403
1.16947
1.04508
0.920908
0.796981
0.673331
0.549929
0.426939
0.303706
0.182424
0.0539179
5.54479
4.51621
4.28118
4.0867
3.90722
3.74436
3.59286
3.44923
3.31127
3.17753
3.04696
2.91871
2.79206
2.66645
2.54144
2.41674
2.29215
2.16754
2.04286
1.9181
1.79327
1.6684
1.54355
1.41875
1.29404
1.16947
1.04507
0.920896
0.796948
0.673301
0.549899
0.426952
0.303776
0.182495
0.0539351
5.15051
4.69484
4.32802
4.11148
3.9283
3.75771
3.60182
3.45611
3.31671
3.18182
3.05033
2.92131
2.79403
2.66792
2.54256
2.41763
2.29291
2.16826
2.04359
1.91888
1.79413
1.66935
1.54458
1.41985
1.29522
1.17072
1.04639
0.922267
0.798387
0.674779
0.551451
0.428449
0.305811
0.183749
0.0674594
5.24329
4.65354
4.31241
4.10589
3.92232
3.75393
3.59953
3.4544
3.31538
3.1808
3.04953
2.92068
2.79353
2.66752
2.54223
2.41736
2.29266
2.16803
2.04336
1.91864
1.79388
1.66908
1.54429
1.41954
1.29487
1.17033
1.04595
0.921777
0.797844
0.674188
0.550804
0.427764
0.304943
0.182739
0.0610773
5.52859
4.53092
4.2851
4.08862
3.90943
3.74557
3.59346
3.44953
3.31133
3.17738
3.04659
2.91812
2.79129
2.66554
2.54046
2.41573
2.29116
2.1666
2.042
1.91732
1.79258
1.6678
1.54302
1.41828
1.29363
1.16912
1.04476
0.920627
0.796727
0.673103
0.549738
0.426746
0.303761
0.181982
0.0572621
5.43826
4.55067
4.29465
4.09312
3.91346
3.74828
3.59529
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66743
1.54269
1.41799
1.29337
1.16889
1.04457
0.920463
0.796577
0.672957
0.549602
0.426615
0.303913
0.181773
0.0615547
5.46131
4.53994
4.28961
4.09161
3.91159
3.74705
3.59452
3.45029
3.31188
3.17776
3.04685
2.91829
2.79139
2.66558
2.54046
2.41571
2.29111
2.16655
2.04194
1.91727
1.79253
1.66775
1.54298
1.41826
1.29361
1.1691
1.04476
0.920625
0.796721
0.673099
0.549732
0.426748
0.303842
0.181991
0.0581573
5.52933
4.52244
4.28213
4.08749
3.90776
3.74472
3.59311
3.4494
3.31138
3.1776
3.04699
2.91869
2.79201
2.66638
2.54136
2.41666
2.29206
2.16746
2.04278
1.91803
1.79321
1.66835
1.5435
1.41871
1.29401
1.16944
1.04505
0.920872
0.796928
0.673283
0.549886
0.426936
0.303786
0.182465
0.0541903
5.5276
4.5226
4.28213
4.08755
3.90786
3.74483
3.59321
3.44949
3.31146
3.17766
3.04704
2.91873
2.79204
2.66639
2.54136
2.41665
2.29205
2.16744
2.04277
1.91801
1.79319
1.66833
1.54349
1.41869
1.29399
1.16943
1.04504
0.920872
0.796947
0.6733
0.549905
0.426921
0.303718
0.182396
0.054161
5.27468
4.62919
4.30893
4.10284
3.92028
3.75286
3.59884
3.45392
3.31502
3.18052
3.04928
2.92043
2.79326
2.66722
2.54189
2.41696
2.29223
2.16755
2.04286
1.91811
1.79332
1.66851
1.5437
1.41895
1.29429
1.16976
1.0454
0.921258
0.797355
0.673725
0.550362
0.427334
0.304547
0.18231
0.0621647
5.24453
4.65141
4.3124
4.10567
3.92219
3.75387
3.59948
3.45437
3.31535
3.18078
3.04951
2.92066
2.79351
2.6675
2.54221
2.41733
2.29264
2.168
2.04333
1.9186
1.79382
1.66901
1.54421
1.41945
1.29477
1.17023
1.04585
0.921685
0.797758
0.674109
0.55073
0.427694
0.304882
0.182672
0.0613807
5.29796
4.62802
4.30451
4.10174
3.91882
3.75179
3.59814
3.45338
3.3146
3.18019
3.04905
2.92029
2.7932
2.66724
2.54198
2.4171
2.29239
2.16773
2.04303
1.91827
1.79346
1.66862
1.54379
1.41901
1.29432
1.16977
1.04539
0.921223
0.7973
0.673653
0.550278
0.42726
0.304385
0.182342
0.0594197
5.47506
4.54699
4.29151
4.0916
3.91216
3.7474
3.59469
3.45041
3.31196
3.17779
3.04682
2.91819
2.79122
2.66536
2.54019
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.29339
1.1689
1.04458
0.920471
0.796591
0.672978
0.549629
0.426634
0.30383
0.181771
0.0601915
5.39186
4.57671
4.2944
4.09576
3.91422
3.74904
3.59626
3.45185
3.31327
3.17901
3.04797
2.91929
2.79228
2.66638
2.54117
2.41634
2.29168
2.16705
2.04239
1.91766
1.79288
1.66807
1.54326
1.4185
1.29384
1.16931
1.04495
0.920798
0.796884
0.673256
0.549888
0.426907
0.303974
0.182144
0.0576902
5.36448
4.57562
4.2995
4.09641
3.91568
3.74988
3.59653
3.45186
3.31311
3.17872
3.04757
2.9188
2.79171
2.66576
2.54051
2.41567
2.29102
2.16642
2.04179
1.9171
1.79237
1.6676
1.54285
1.41813
1.29351
1.16902
1.04469
0.920579
0.796698
0.673086
0.549738
0.426736
0.303983
0.181782
0.0615134
5.30867
4.61462
4.30431
4.10058
3.91833
3.75162
3.598
3.45323
3.31441
3.17995
3.04873
2.9199
2.79275
2.66673
2.54142
2.41652
2.29181
2.16715
2.04247
1.91773
1.79295
1.66815
1.54335
1.41861
1.29395
1.16943
1.04508
0.920936
0.797035
0.673407
0.550048
0.427036
0.304215
0.182086
0.0606801
5.50869
4.52892
4.28409
4.08838
3.90879
3.74522
3.59332
3.44946
3.31134
3.17746
3.04675
2.91836
2.7916
2.66591
2.54086
2.41615
2.29158
2.167
2.04237
1.91766
1.79288
1.66807
1.54326
1.41849
1.29381
1.16927
1.0449
0.920749
0.796836
0.6732
0.549822
0.426834
0.30375
0.182182
0.055762
5.48287
4.5415
4.29145
4.09185
3.9122
3.7474
3.59468
3.45037
3.31191
3.17773
3.04677
2.91816
2.7912
2.66535
2.54018
2.41541
2.2908
2.16623
2.04163
1.91696
1.79224
1.66748
1.54273
1.41802
1.2934
1.16891
1.04459
0.92047
0.796581
0.672963
0.549602
0.426612
0.303814
0.181812
0.0598855
5.53602
4.5268
4.28448
4.08846
3.90913
3.74542
3.59339
3.44946
3.31127
3.17733
3.04657
2.91814
2.79133
2.66562
2.54056
2.41585
2.29128
2.16673
2.04212
1.91743
1.79268
1.66788
1.54309
1.41835
1.29369
1.16916
1.04479
0.920646
0.79673
0.673101
0.549725
0.426751
0.303762
0.182066
0.0566588
5.44515
4.54907
4.29306
4.09239
3.91284
3.74786
3.595
3.45063
3.31212
3.17791
3.0469
2.91824
2.79125
2.66536
2.54018
2.41538
2.29076
2.16619
2.04158
1.91691
1.79219
1.66744
1.54269
1.41798
1.29337
1.16888
1.04456
0.920454
0.796573
0.672959
0.54961
0.426619
0.303862
0.181753
0.0608953
5.41642
4.55379
4.2948
4.09403
3.9137
3.74844
3.59544
3.45096
3.31236
3.1781
3.04706
2.91839
2.79139
2.6655
2.54031
2.41552
2.29089
2.16632
2.0417
1.91703
1.7923
1.66754
1.54279
1.41807
1.29345
1.16896
1.04463
0.920511
0.796623
0.673008
0.549651
0.426661
0.303867
0.181814
0.0601629
5.45168
4.54456
4.29278
4.09257
3.91271
3.74774
3.59491
3.45055
3.31205
3.17785
3.04687
2.91824
2.79127
2.66541
2.54024
2.41546
2.29085
2.16629
2.04168
1.91702
1.7923
1.66754
1.54279
1.41808
1.29346
1.16897
1.04465
0.920533
0.796643
0.673023
0.549662
0.426671
0.303886
0.181857
0.060194
5.31258
4.60357
4.3052
4.10019
3.91837
3.75176
3.59805
3.4532
3.31432
3.17979
3.04854
2.91967
2.79249
2.66646
2.54115
2.41626
2.29156
2.16691
2.04225
1.91754
1.79278
1.66799
1.54321
1.41848
1.29384
1.16933
1.04499
0.920864
0.796975
0.67336
0.550006
0.42699
0.304222
0.181971
0.0620021
5.30809
4.6067
4.3055
4.10041
3.91856
3.75189
3.59816
3.4533
3.31442
3.1799
3.04864
2.91977
2.79258
2.66655
2.54123
2.41633
2.29162
2.16698
2.04231
1.91759
1.79283
1.66804
1.54326
1.41853
1.29388
1.16937
1.04503
0.920904
0.797015
0.673398
0.550043
0.427024
0.304253
0.181999
0.0620679
5.48956
4.53483
4.28583
4.08941
3.90969
3.74581
3.5937
3.44973
3.31152
3.17756
3.04678
2.91833
2.79152
2.66578
2.54071
2.41598
2.2914
2.16683
2.04221
1.91751
1.79275
1.66795
1.54315
1.4184
1.29373
1.1692
1.04484
0.920693
0.796786
0.673155
0.549783
0.426794
0.303758
0.1821
0.056447
5.61258
4.50377
4.27798
4.08451
3.90586
3.7434
3.59217
3.44874
3.31095
3.17734
3.04687
2.9187
2.79211
2.66654
2.54157
2.41689
2.2923
2.16769
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29413
1.16956
1.04516
0.920986
0.797056
0.673399
0.549987
0.426975
0.303725
0.182412
0.0539945
5.61071
4.50439
4.27815
4.08461
3.90591
3.74343
3.59218
3.44875
3.31094
3.17733
3.04686
2.91868
2.7921
2.66653
2.54156
2.41688
2.29229
2.16769
2.043
1.91823
1.7934
1.66852
1.54366
1.41885
1.29413
1.16955
1.04515
0.920969
0.797024
0.673382
0.549979
0.427011
0.303796
0.182432
0.0539742
5.59531
4.5033
4.27814
4.08464
3.90592
3.74343
3.59218
3.44874
3.31094
3.17732
3.04685
2.91868
2.79209
2.66653
2.54155
2.41687
2.29229
2.16768
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29412
1.16955
1.04516
0.920984
0.797054
0.673397
0.549983
0.426971
0.303718
0.182413
0.0539689
5.59523
4.50356
4.27818
4.08468
3.90594
3.74344
3.59218
3.44874
3.31093
3.17732
3.04685
2.91867
2.79208
2.66652
2.54155
2.41687
2.29229
2.16768
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16955
1.04515
0.920965
0.797021
0.673378
0.549975
0.427006
0.303788
0.18243
0.0539435
5.42517
4.57114
4.29015
4.09369
3.91226
3.74783
3.59556
3.45144
3.31309
3.17899
3.04808
2.9195
2.79256
2.6667
2.5415
2.41667
2.29199
2.16732
2.04262
1.91786
1.79304
1.66819
1.54336
1.41858
1.2939
1.16935
1.04498
0.920825
0.79691
0.673271
0.549892
0.426906
0.303848
0.182251
0.0557835
5.3778
4.59354
4.29495
4.09726
3.91481
3.74941
3.5967
3.45237
3.3139
3.17974
3.04878
2.92016
2.79317
2.66726
2.54201
2.41712
2.29239
2.16768
2.04293
1.91813
1.79328
1.66841
1.54355
1.41876
1.29406
1.1695
1.04512
0.920951
0.797022
0.673384
0.550006
0.427025
0.304053
0.182284
0.0567538
5.42148
4.55489
4.29328
4.09307
3.91306
3.74804
3.59519
3.4508
3.31227
3.17805
3.04704
2.91839
2.79139
2.66551
2.54033
2.41554
2.29092
2.16634
2.04172
1.91705
1.79232
1.66756
1.54281
1.4181
1.29347
1.16898
1.04465
0.920535
0.796652
0.673038
0.549688
0.426694
0.303868
0.181828
0.0599478
5.22251
4.65748
4.31653
4.10676
3.92351
3.75477
3.60002
3.45476
3.31565
3.18099
3.04966
2.92076
2.79356
2.66752
2.54221
2.41731
2.2926
2.16794
2.04326
1.91852
1.79374
1.66892
1.54411
1.41935
1.29468
1.17014
1.04577
0.921621
0.797712
0.674078
0.550715
0.427681
0.304933
0.182665
0.0635808
5.55884
4.52144
4.28221
4.08715
3.90801
3.7447
3.59294
3.44917
3.3111
3.17725
3.04657
2.91821
2.79147
2.66579
2.54076
2.41607
2.29151
2.16695
2.04232
1.91762
1.79285
1.66803
1.54322
1.41846
1.29378
1.16924
1.04487
0.920707
0.796781
0.673147
0.549767
0.426799
0.303761
0.182168
0.0558189
5.54456
4.52455
4.28351
4.08792
3.90868
3.74513
3.5932
3.44933
3.31118
3.17727
3.04654
2.91813
2.79134
2.66564
2.54059
2.41588
2.29132
2.16676
2.04214
1.91745
1.79269
1.66789
1.5431
1.41834
1.29368
1.16915
1.04478
0.920631
0.796712
0.673083
0.549707
0.426737
0.303731
0.182075
0.0563225
5.52489
4.5258
4.28346
4.08775
3.90861
3.74502
3.5931
3.44926
3.31114
3.17724
3.04651
2.9181
2.79131
2.66559
2.54053
2.41582
2.29125
2.16669
2.04207
1.91738
1.79262
1.66783
1.54304
1.41829
1.29363
1.1691
1.04474
0.9206
0.796697
0.67307
0.549702
0.426714
0.303682
0.181997
0.0564462
5.3017
4.62357
4.30442
4.10134
3.91861
3.7517
3.59808
3.45333
3.31456
3.18015
3.049
2.92023
2.79314
2.66716
2.54188
2.417
2.29229
2.16762
2.04292
1.91817
1.79337
1.66854
1.54371
1.41894
1.29426
1.16971
1.04534
0.921175
0.797256
0.673613
0.550239
0.427221
0.304358
0.182297
0.0597954
5.31136
4.60605
4.30522
4.10049
3.91845
3.75177
3.59806
3.45319
3.3143
3.17978
3.04852
2.91966
2.79249
2.66646
2.54116
2.41626
2.29156
2.16691
2.04224
1.91753
1.79276
1.66797
1.54319
1.41846
1.29381
1.1693
1.04496
0.920829
0.796939
0.673324
0.549971
0.426958
0.304178
0.181956
0.0615899
5.3822
4.56752
4.2983
4.09566
3.91521
3.74955
3.59627
3.45163
3.31292
3.17855
3.04742
2.91868
2.79161
2.66567
2.54044
2.41561
2.29097
2.16637
2.04175
1.91708
1.79235
1.66759
1.54283
1.41813
1.29351
1.16902
1.04469
0.92058
0.796698
0.673084
0.549734
0.426736
0.303992
0.181804
0.0614916
5.47365
4.53827
4.28741
4.09066
3.91059
3.74644
3.59415
3.45004
3.31172
3.17768
3.04684
2.91835
2.7915
2.66574
2.54065
2.41592
2.29133
2.16677
2.04215
1.91745
1.7927
1.6679
1.54311
1.41836
1.2937
1.16918
1.04482
0.920671
0.796755
0.673127
0.549753
0.42678
0.3038
0.1821
0.0568073
5.45616
4.55091
4.29433
4.09286
3.91329
3.74818
3.59522
3.4508
3.31225
3.178
3.04697
2.91829
2.79127
2.66537
2.54018
2.41537
2.29075
2.16617
2.04156
1.91689
1.79217
1.66742
1.54267
1.41797
1.29336
1.16887
1.04456
0.920448
0.796563
0.672944
0.549592
0.426606
0.303901
0.181764
0.0615114
5.43756
4.55003
4.29202
4.09228
3.91246
3.74761
3.59486
3.45054
3.31207
3.17788
3.04691
2.91828
2.79131
2.66545
2.54028
2.4155
2.29088
2.16631
2.0417
1.91703
1.79231
1.66755
1.54279
1.41808
1.29346
1.16897
1.04464
0.920521
0.796638
0.673024
0.549673
0.426679
0.303843
0.181827
0.0597249
5.45763
4.55078
4.29403
4.09271
3.91316
3.74809
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79126
2.66536
2.54016
2.41536
2.29074
2.16616
2.04155
1.91688
1.79216
1.6674
1.54266
1.41795
1.29334
1.16886
1.04454
0.920431
0.796548
0.672932
0.549582
0.426596
0.303878
0.181746
0.0613535
5.25151
4.64965
4.3109
4.10478
3.92162
3.7535
3.59922
3.45418
3.31521
3.18066
3.04942
2.92058
2.79344
2.66744
2.54215
2.41727
2.29258
2.16794
2.04326
1.91853
1.79375
1.66893
1.54412
1.41935
1.29467
1.17012
1.04574
0.921571
0.797644
0.673991
0.550611
0.427575
0.304754
0.182588
0.0611054
5.43705
4.54818
4.29181
4.09302
3.91265
3.7478
3.59506
3.4507
3.31219
3.17799
3.04702
2.91841
2.79146
2.66563
2.54047
2.4157
2.29109
2.16652
2.0419
1.91722
1.79248
1.66771
1.54293
1.41821
1.29357
1.16906
1.04471
0.920582
0.796682
0.673062
0.5497
0.426717
0.303829
0.181941
0.0584738
5.55031
4.51419
4.28067
4.08633
3.90697
3.74416
3.5927
3.44911
3.31118
3.17748
3.04693
2.9187
2.79206
2.66646
2.54147
2.41678
2.29219
2.16758
2.0429
1.91814
1.79331
1.66844
1.54359
1.41878
1.29408
1.1695
1.04511
0.920926
0.796979
0.673333
0.549931
0.426977
0.303795
0.182489
0.0539987
5.52994
4.52248
4.28213
4.08755
3.9078
3.74479
3.59319
3.44948
3.31146
3.17767
3.04705
2.91875
2.79207
2.66643
2.54141
2.4167
2.2921
2.16749
2.04281
1.91805
1.79322
1.66836
1.54351
1.41872
1.29401
1.16945
1.04505
0.920877
0.796932
0.673286
0.549887
0.426941
0.303785
0.182487
0.0540788
5.52255
4.5254
4.28251
4.08792
3.90809
3.74504
3.59341
3.44967
3.31161
3.17779
3.04715
2.91882
2.79211
2.66645
2.54141
2.41669
2.29208
2.16746
2.04278
1.91802
1.79319
1.66833
1.54348
1.41869
1.29398
1.16942
1.04504
0.920868
0.796943
0.673296
0.549902
0.426921
0.303713
0.182408
0.0540394
5.25515
4.63885
4.312
4.10433
3.92148
3.75358
3.59928
3.45421
3.31522
3.18065
3.04937
2.92049
2.79329
2.66723
2.54189
2.41696
2.29222
2.16754
2.04284
1.9181
1.79331
1.6685
1.5437
1.41894
1.29428
1.16975
1.0454
0.921255
0.797354
0.673728
0.550369
0.42734
0.304577
0.182306
0.0628116
5.43439
4.55072
4.29477
4.0932
3.91349
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16889
1.04457
0.920463
0.796577
0.672957
0.549601
0.426613
0.30391
0.181773
0.0615234
5.29317
4.61585
4.30742
4.10168
3.91937
3.75235
3.59848
3.45357
3.31467
3.18014
3.04888
2.92001
2.79282
2.66678
2.54146
2.41655
2.29183
2.16717
2.0425
1.91777
1.79299
1.6682
1.54341
1.41866
1.29401
1.16949
1.04514
0.921011
0.797115
0.673495
0.550138
0.427115
0.304338
0.182085
0.0620732
5.28424
4.63181
4.3067
4.1025
3.91963
3.75233
3.59849
3.45364
3.31481
3.18036
3.04919
2.9204
2.79329
2.6673
2.54202
2.41712
2.29241
2.16774
2.04304
1.91828
1.79348
1.66865
1.54383
1.41906
1.29438
1.16983
1.04545
0.92129
0.797368
0.673722
0.550348
0.427323
0.30448
0.182367
0.0604138
5.46013
4.54815
4.29401
4.09286
3.91323
3.74812
3.59517
3.45075
3.31221
3.17796
3.04693
2.91826
2.79125
2.66535
2.54016
2.41535
2.29073
2.16615
2.04154
1.91688
1.79216
1.6674
1.54266
1.41795
1.29334
1.16886
1.04454
0.920429
0.796542
0.672922
0.549564
0.426576
0.303867
0.181758
0.0613006
5.56725
4.51942
4.28133
4.08647
3.90751
3.74435
3.5927
3.44902
3.31102
3.17724
3.04661
2.91828
2.79157
2.66592
2.5409
2.41621
2.29164
2.16707
2.04244
1.91772
1.79293
1.66811
1.54329
1.41852
1.29383
1.16929
1.04491
0.920753
0.796837
0.6732
0.54982
0.426832
0.303727
0.182181
0.0554769
5.55683
4.51356
4.28016
4.08592
3.90693
3.74402
3.59253
3.44894
3.31101
3.17729
3.04673
2.91847
2.79181
2.6662
2.5412
2.41652
2.29195
2.16736
2.04271
1.91797
1.79316
1.66831
1.54347
1.41868
1.29398
1.16942
1.04503
0.920864
0.79694
0.673295
0.549905
0.426913
0.303745
0.182316
0.0547229
5.55979
4.51447
4.28033
4.08604
3.90697
3.74404
3.59253
3.44891
3.31097
3.17724
3.04666
2.91839
2.79173
2.66612
2.54113
2.41645
2.29188
2.1673
2.04265
1.91792
1.79311
1.66827
1.54343
1.41864
1.29395
1.16939
1.045
0.920825
0.796888
0.673249
0.549859
0.426898
0.30378
0.182331
0.0547912
5.434
4.55058
4.293
4.09249
3.91281
3.74784
3.595
3.45064
3.31214
3.17793
3.04693
2.91828
2.79129
2.66541
2.54023
2.41543
2.29082
2.16624
2.04163
1.91697
1.79224
1.66749
1.54274
1.41803
1.29342
1.16893
1.04461
0.920496
0.796616
0.673003
0.549654
0.42666
0.303876
0.181785
0.0605649
5.39138
4.56387
4.29702
4.09543
3.91476
3.74923
3.59607
3.45148
3.3128
3.17847
3.04737
2.91865
2.79161
2.66569
2.54048
2.41567
2.29103
2.16644
2.04182
1.91714
1.79241
1.66764
1.54288
1.41817
1.29354
1.16905
1.04472
0.920597
0.796709
0.673095
0.54974
0.426746
0.303957
0.181862
0.0605223
5.39859
4.56072
4.29697
4.09464
3.91445
3.74898
3.59581
3.45125
3.3126
3.17828
3.0472
2.91848
2.79144
2.66552
2.5403
2.41548
2.29085
2.16626
2.04165
1.91698
1.79225
1.6675
1.54275
1.41805
1.29343
1.16894
1.04462
0.920511
0.796628
0.673013
0.549663
0.42667
0.303944
0.181769
0.0615139
5.41428
4.56687
4.29209
4.09434
3.91311
3.74828
3.59566
3.45132
3.3128
3.17859
3.0476
2.91898
2.79201
2.66616
2.54099
2.41619
2.29155
2.16694
2.04229
1.91757
1.79279
1.66798
1.54318
1.41843
1.29376
1.16923
1.04487
0.920724
0.79681
0.673182
0.549813
0.426838
0.303878
0.182122
0.0570647
5.50677
4.53383
4.28832
4.09052
3.91106
3.74664
3.59417
3.44999
3.31161
3.17752
3.04662
2.91805
2.79114
2.66532
2.54019
2.41543
2.29083
2.16627
2.04167
1.917
1.79227
1.6675
1.54274
1.41802
1.2934
1.1689
1.04456
0.920442
0.796549
0.672932
0.54957
0.426585
0.30372
0.181813
0.0586798
5.57713
4.50788
4.27911
4.08529
3.90644
3.74373
3.59236
3.44883
3.31096
3.17729
3.04677
2.91855
2.79192
2.66633
2.54134
2.41666
2.29208
2.16749
2.04282
1.91807
1.79325
1.66839
1.54354
1.41873
1.29403
1.16946
1.04507
0.920903
0.796977
0.673329
0.549931
0.426934
0.303728
0.182358
0.05434
5.36979
4.57252
4.2993
4.09665
3.91579
3.74999
3.59665
3.45197
3.31321
3.1788
3.04765
2.91888
2.79179
2.66584
2.5406
2.41576
2.29111
2.1665
2.04187
1.91719
1.79245
1.66769
1.54293
1.41821
1.29358
1.16909
1.04476
0.920638
0.796751
0.673137
0.549784
0.426783
0.304013
0.181847
0.0611395
5.39142
4.56333
4.29718
4.09536
3.91474
3.7492
3.59602
3.45143
3.31276
3.17842
3.04733
2.91861
2.79156
2.66564
2.54043
2.41561
2.29097
2.16638
2.04176
1.91709
1.79236
1.66759
1.54284
1.41812
1.2935
1.169
1.04468
0.920559
0.796672
0.673059
0.549705
0.426711
0.303933
0.181821
0.0606998
5.50568
4.53639
4.28928
4.09092
3.91136
3.74684
3.5943
3.4501
3.31171
3.1776
3.04669
2.91812
2.7912
2.66538
2.54025
2.41549
2.29089
2.16633
2.04173
1.91706
1.79234
1.66757
1.54281
1.4181
1.29347
1.16897
1.04464
0.920515
0.79662
0.673001
0.549637
0.426649
0.303791
0.181868
0.058913
5.54694
4.51566
4.28095
4.08652
3.9071
3.74424
3.59275
3.44913
3.31119
3.17747
3.04691
2.91866
2.79202
2.66642
2.54142
2.41673
2.29214
2.16754
2.04286
1.9181
1.79328
1.66842
1.54356
1.41876
1.29405
1.16948
1.04509
0.920909
0.796964
0.673319
0.549919
0.426965
0.303793
0.182473
0.0540857
5.5435
4.51638
4.28122
4.08678
3.9073
3.74439
3.59286
3.44922
3.31125
3.17751
3.04693
2.91867
2.79201
2.66639
2.54139
2.41669
2.2921
2.1675
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29402
1.16946
1.04507
0.9209
0.796974
0.673325
0.549925
0.426936
0.303715
0.182409
0.0540692
5.31348
4.60798
4.30446
4.10052
3.91828
3.75164
3.59802
3.45321
3.31437
3.17989
3.04866
2.91981
2.79266
2.66663
2.54133
2.41643
2.29172
2.16707
2.0424
1.91767
1.7929
1.6681
1.54331
1.41857
1.29391
1.16939
1.04504
0.920908
0.79701
0.673389
0.550033
0.427022
0.304214
0.182046
0.06094
5.45627
4.54926
4.28785
4.0911
3.91073
3.7466
3.59437
3.45029
3.31198
3.17794
3.0471
2.9186
2.79174
2.66597
2.54086
2.41611
2.2915
2.16691
2.04227
1.91756
1.79279
1.66798
1.54317
1.41842
1.29375
1.16922
1.04485
0.920706
0.796798
0.673165
0.549791
0.426804
0.303765
0.182128
0.0562711
5.39591
4.56079
4.29708
4.09509
3.91462
3.74909
3.59591
3.45133
3.31266
3.17833
3.04725
2.91853
2.79149
2.66557
2.54035
2.41554
2.29091
2.16632
2.0417
1.91703
1.7923
1.66754
1.54279
1.41808
1.29346
1.16897
1.04464
0.920529
0.796643
0.673029
0.549675
0.426681
0.303926
0.181793
0.061005
5.55012
4.52373
4.2831
4.08766
3.90845
3.74498
3.59311
3.44928
3.31116
3.17727
3.04656
2.91816
2.79139
2.6657
2.54066
2.41596
2.29139
2.16683
2.04222
1.91752
1.79276
1.66795
1.54315
1.41839
1.29373
1.16919
1.04482
0.920666
0.796744
0.673113
0.549735
0.426765
0.303748
0.182113
0.0561468
5.15554
4.69253
4.32719
4.11124
3.92794
3.75748
3.60169
3.45601
3.31663
3.18176
3.05029
2.92127
2.794
2.66789
2.54254
2.41761
2.29289
2.16824
2.04357
1.91886
1.79411
1.66933
1.54456
1.41983
1.2952
1.1707
1.04636
0.922241
0.79836
0.674751
0.55142
0.428417
0.305769
0.183676
0.0669922
5.46892
4.5419
4.28931
4.09076
3.91142
3.74691
3.59436
3.45017
3.31178
3.17766
3.04673
2.91814
2.7912
2.66536
2.5402
2.41543
2.29083
2.16626
2.04165
1.91698
1.79226
1.6675
1.54275
1.41803
1.29341
1.16892
1.04459
0.920474
0.796592
0.672979
0.549629
0.426635
0.30378
0.181795
0.0593441
5.56411
4.5135
4.28027
4.08602
3.90695
3.74406
3.59257
3.44897
3.31104
3.17732
3.04676
2.91851
2.79186
2.66626
2.54127
2.4166
2.29203
2.16745
2.04279
1.91805
1.79324
1.66839
1.54355
1.41875
1.29405
1.16949
1.04509
0.920917
0.796975
0.673332
0.549939
0.426976
0.303844
0.18241
0.054717
5.53467
4.52733
4.28486
4.08873
3.90938
3.74557
3.5935
3.44954
3.31133
3.17737
3.04659
2.91815
2.79134
2.66561
2.54055
2.41584
2.29127
2.16672
2.04211
1.91742
1.79267
1.66788
1.5431
1.41835
1.29369
1.16917
1.04481
0.920659
0.796743
0.673115
0.549739
0.426762
0.303783
0.182066
0.0568474
5.43689
4.54957
4.29207
4.09215
3.91245
3.7476
3.59484
3.45052
3.31204
3.17785
3.04687
2.91824
2.79126
2.66539
2.54021
2.41542
2.29081
2.16623
2.04162
1.91695
1.79223
1.66747
1.54272
1.41801
1.29339
1.1689
1.04457
0.92046
0.79658
0.672968
0.54962
0.426627
0.30381
0.181767
0.0599907
5.54933
4.51434
4.28055
4.08627
3.90701
3.74413
3.59263
3.44901
3.31106
3.17734
3.04678
2.91852
2.79188
2.66627
2.54128
2.41659
2.29201
2.16742
2.04275
1.918
1.79319
1.66833
1.54349
1.41869
1.29399
1.16943
1.04503
0.920859
0.796918
0.673277
0.549883
0.426926
0.303772
0.1824
0.0543441
5.55155
4.51316
4.28037
4.08617
3.907
3.74413
3.59263
3.44903
3.31109
3.17737
3.04681
2.91856
2.79191
2.6663
2.5413
2.41661
2.29203
2.16744
2.04277
1.91802
1.7932
1.66835
1.5435
1.4187
1.294
1.16944
1.04505
0.920884
0.796959
0.673311
0.549916
0.426923
0.303725
0.182364
0.054364
5.6076
4.50496
4.27831
4.08471
3.90598
3.74347
3.59221
3.44876
3.31094
3.17732
3.04685
2.91867
2.79208
2.66651
2.54154
2.41686
2.29228
2.16767
2.04299
1.91822
1.79339
1.66852
1.54365
1.41884
1.29413
1.16955
1.04515
0.920966
0.797022
0.673379
0.549978
0.42701
0.303801
0.182434
0.0540136
5.61016
4.50401
4.2781
4.0846
3.90593
3.74344
3.59219
3.44876
3.31095
3.17733
3.04686
2.91868
2.79209
2.66652
2.54155
2.41687
2.29228
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41883
1.29412
1.16955
1.04515
0.920978
0.797048
0.673393
0.549982
0.426973
0.303727
0.182407
0.0540302
5.54367
4.51676
4.281
4.08658
3.90729
3.7443
3.59274
3.44908
3.31111
3.17736
3.04677
2.9185
2.79183
2.66621
2.54122
2.41653
2.29196
2.16737
2.04272
1.91798
1.79317
1.66832
1.54348
1.41869
1.29399
1.16943
1.04504
0.920866
0.796927
0.673285
0.549893
0.426934
0.303805
0.182388
0.0546667
5.54477
4.51685
4.28132
4.08672
3.90741
3.74437
3.59278
3.44912
3.31115
3.1774
3.04681
2.91853
2.79186
2.66624
2.54124
2.41655
2.29197
2.16739
2.04273
1.91799
1.79318
1.66833
1.54349
1.4187
1.294
1.16944
1.04506
0.92089
0.796966
0.67332
0.549928
0.426936
0.303763
0.182353
0.0546807
5.32562
4.59639
4.30366
4.09943
3.91781
3.75145
3.59787
3.45306
3.31421
3.17971
3.04848
2.91962
2.79246
2.66644
2.54114
2.41626
2.29156
2.16692
2.04226
1.91755
1.79279
1.66801
1.54323
1.4185
1.29386
1.16935
1.04501
0.920886
0.796995
0.673378
0.550023
0.427009
0.30423
0.182005
0.0616707
5.45333
4.56467
4.28796
4.09292
3.91123
3.74732
3.59537
3.45144
3.31324
3.17927
3.04846
2.91996
2.79307
2.66723
2.54202
2.41715
2.29241
2.1677
2.04294
1.91811
1.79325
1.66836
1.54349
1.41868
1.29397
1.1694
1.045
0.920829
0.796885
0.673239
0.549846
0.426899
0.303808
0.182414
0.0543689
5.45487
4.56449
4.28793
4.09272
3.91116
3.7473
3.59539
3.45149
3.31331
3.17936
3.04855
2.92003
2.79312
2.66726
2.54203
2.41714
2.2924
2.16768
2.04292
1.9181
1.79324
1.66835
1.54349
1.41868
1.29397
1.16941
1.04502
0.920854
0.796929
0.673283
0.549896
0.426918
0.303771
0.182355
0.0543871
5.53834
4.52116
4.28227
4.08726
3.90806
3.74473
3.59296
3.44918
3.31111
3.17726
3.04658
2.91822
2.79148
2.66581
2.54078
2.41609
2.29153
2.16696
2.04234
1.91764
1.79286
1.66805
1.54324
1.41847
1.29379
1.16925
1.04488
0.920716
0.796789
0.673155
0.549774
0.426807
0.303765
0.182181
0.0557718
5.38757
4.56557
4.29776
4.09531
3.91494
3.74936
3.59613
3.45152
3.31283
3.17847
3.04737
2.91863
2.79157
2.66564
2.54041
2.41559
2.29095
2.16636
2.04174
1.91706
1.79233
1.66758
1.54282
1.41812
1.2935
1.16901
1.04468
0.920571
0.796688
0.673074
0.549725
0.426728
0.303981
0.181804
0.061405
5.51174
4.52695
4.28461
4.08864
3.90922
3.74546
3.59342
3.44948
3.31128
3.17733
3.04656
2.91813
2.79132
2.6656
2.54053
2.41582
2.29125
2.1667
2.04208
1.9174
1.79264
1.66785
1.54306
1.41831
1.29365
1.16912
1.04476
0.920615
0.7967
0.673072
0.549698
0.426725
0.303737
0.182048
0.0566137
5.37079
4.57313
4.29899
4.09665
3.91569
3.74993
3.59662
3.45195
3.3132
3.1788
3.04765
2.91889
2.79181
2.66586
2.54062
2.41579
2.29113
2.16653
2.0419
1.91721
1.79247
1.6677
1.54294
1.41822
1.29359
1.16909
1.04476
0.920639
0.796751
0.673137
0.549784
0.426784
0.303998
0.181863
0.0608046
5.49581
4.53921
4.29042
4.09139
3.91175
3.7471
3.59447
3.45022
3.3118
3.17766
3.04672
2.91814
2.7912
2.66537
2.54022
2.41545
2.29086
2.16629
2.04169
1.91702
1.7923
1.66754
1.54278
1.41807
1.29344
1.16895
1.04462
0.9205
0.796608
0.67299
0.549627
0.426637
0.303804
0.18185
0.0593086
5.52261
4.5245
4.28295
4.0876
3.90821
3.74482
3.59302
3.44924
3.31118
3.17734
3.04667
2.91832
2.79158
2.66591
2.54087
2.41617
2.2916
2.16703
2.04239
1.91768
1.7929
1.66808
1.54326
1.41849
1.29381
1.16927
1.0449
0.920743
0.796829
0.673192
0.549813
0.426825
0.303727
0.182183
0.0555481
5.39699
4.56077
4.29728
4.09487
3.9146
3.74907
3.59588
3.4513
3.31264
3.17831
3.04722
2.91849
2.79145
2.66552
2.54031
2.41549
2.29086
2.16627
2.04165
1.91698
1.79226
1.6675
1.54275
1.41805
1.29343
1.16894
1.04463
0.920513
0.79663
0.673014
0.549663
0.426669
0.303945
0.18177
0.0615227
5.38239
4.56647
4.29833
4.09587
3.91524
3.74957
3.5963
3.45165
3.31294
3.17856
3.04744
2.91869
2.79162
2.66569
2.54046
2.41563
2.29099
2.16639
2.04177
1.91709
1.79236
1.6676
1.54285
1.41813
1.29351
1.16902
1.04469
0.920579
0.796693
0.673079
0.549726
0.426729
0.303976
0.181815
0.0612279
5.54927
4.51404
4.28086
4.08651
3.90713
3.74427
3.59277
3.44915
3.3112
3.17747
3.0469
2.91865
2.792
2.66639
2.54139
2.4167
2.29211
2.16751
2.04283
1.91807
1.79325
1.66838
1.54353
1.41873
1.29403
1.16946
1.04507
0.920902
0.796976
0.673326
0.549926
0.426933
0.303705
0.182406
0.0540191
5.54222
4.52609
4.2835
4.08772
3.90862
3.74503
3.5931
3.44926
3.31114
3.17724
3.04651
2.91809
2.7913
2.66558
2.54052
2.41581
2.29124
2.16668
2.04206
1.91737
1.79262
1.66783
1.54304
1.41829
1.29363
1.1691
1.04474
0.920602
0.796699
0.673072
0.549705
0.426717
0.303688
0.181994
0.0565084
5.43381
4.5505
4.29477
4.09323
3.9135
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16889
1.04457
0.920463
0.796576
0.672956
0.549599
0.426611
0.303907
0.181774
0.0614876
5.29913
4.61138
4.30667
4.10112
3.91907
3.75223
3.59843
3.45357
3.31469
3.18017
3.04891
2.92004
2.79285
2.6668
2.54148
2.41657
2.29186
2.1672
2.04252
1.9178
1.79303
1.66823
1.54345
1.41871
1.29406
1.16954
1.0452
0.921066
0.797172
0.673551
0.550193
0.427168
0.304394
0.182128
0.062244
5.35621
4.58072
4.30044
4.09735
3.91645
3.75054
3.59713
3.4524
3.3136
3.17915
3.04796
2.91915
2.79204
2.66606
2.54079
2.41594
2.29127
2.16666
2.04202
1.91733
1.79259
1.66782
1.54305
1.41834
1.29371
1.16921
1.04488
0.920755
0.796869
0.673253
0.5499
0.426891
0.304118
0.181918
0.0614658
5.22914
4.65704
4.3147
4.10616
3.92304
3.75442
3.5998
3.4546
3.31554
3.18092
3.04961
2.92074
2.79357
2.66755
2.54226
2.41737
2.29268
2.16803
2.04336
1.91863
1.79384
1.66902
1.54421
1.41944
1.29476
1.17022
1.04585
0.921694
0.797781
0.674141
0.550773
0.427739
0.304968
0.182736
0.0628009
5.34842
4.58907
4.30041
4.09824
3.91662
3.75064
3.59733
3.45264
3.31388
3.17945
3.04827
2.91947
2.79236
2.66638
2.54112
2.41625
2.29157
2.16694
2.04228
1.91757
1.79281
1.66802
1.54323
1.4185
1.29385
1.16933
1.04498
0.920846
0.796946
0.673326
0.549967
0.426965
0.304134
0.182044
0.0602185
5.43142
4.55174
4.29474
4.09317
3.91345
3.74827
3.59528
3.45084
3.31228
3.17802
3.04698
2.9183
2.79128
2.66538
2.54019
2.41538
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04456
0.920453
0.79657
0.672952
0.549601
0.426614
0.303899
0.181758
0.0614302
5.43265
4.55194
4.29476
4.09319
3.91345
3.74827
3.59528
3.45084
3.31228
3.17803
3.04699
2.91831
2.7913
2.6654
2.54021
2.4154
2.29078
2.1662
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.920483
0.796599
0.672982
0.549631
0.426643
0.303922
0.181784
0.0613921
5.38194
4.57099
4.29719
4.09567
3.91504
3.74952
3.59635
3.45175
3.31306
3.1787
3.04758
2.91884
2.79178
2.66585
2.54062
2.41579
2.29114
2.16654
2.04191
1.91723
1.79249
1.66772
1.54296
1.41824
1.29362
1.16912
1.04478
0.920662
0.796775
0.673158
0.549807
0.426807
0.303998
0.181897
0.0604994
5.31655
4.60152
4.30472
4.09995
3.91816
3.7516
3.59792
3.45307
3.31419
3.17967
3.04842
2.91956
2.79239
2.66636
2.54106
2.41617
2.29148
2.16684
2.04218
1.91747
1.79271
1.66793
1.54315
1.41842
1.29378
1.16927
1.04493
0.920809
0.796921
0.673306
0.549954
0.426939
0.304169
0.18193
0.0618234
5.34106
4.59167
4.30138
4.09863
3.91697
3.75085
3.59744
3.45271
3.31391
3.17946
3.04826
2.91945
2.79232
2.66633
2.54106
2.41619
2.29151
2.16688
2.04222
1.91751
1.79275
1.66797
1.54319
1.41845
1.29381
1.16929
1.04495
0.920817
0.796921
0.673303
0.549947
0.426943
0.304128
0.182001
0.0605861
5.27585
4.62652
4.30927
4.10276
3.92026
3.75288
3.59884
3.45389
3.31497
3.18043
3.04917
2.92029
2.7931
2.66705
2.54171
2.41678
2.29205
2.16738
2.04269
1.91796
1.79317
1.66837
1.54357
1.41882
1.29417
1.16964
1.04529
0.921151
0.797253
0.673628
0.550269
0.427241
0.304469
0.182205
0.0624626
5.60694
4.50509
4.2783
4.08473
3.90603
3.7435
3.59222
3.44877
3.31095
3.17732
3.04683
2.91864
2.79204
2.66646
2.54149
2.41681
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.4188
1.29409
1.16952
1.04512
0.920951
0.797023
0.67337
0.549964
0.426959
0.303726
0.182388
0.0541249
5.60255
4.5066
4.27866
4.08491
3.90611
3.74355
3.59225
3.44878
3.31095
3.17731
3.04683
2.91864
2.79204
2.66647
2.54149
2.41682
2.29224
2.16764
2.04296
1.9182
1.79336
1.66849
1.54363
1.41882
1.29411
1.16954
1.04513
0.920955
0.797011
0.673369
0.549969
0.427003
0.303808
0.182432
0.0541156
5.50699
4.53737
4.2873
4.08967
3.91033
3.74616
3.59385
3.4498
3.31152
3.17748
3.04663
2.9181
2.79122
2.66542
2.54031
2.41556
2.29097
2.16641
2.04181
1.91714
1.7924
1.66764
1.54287
1.41815
1.29351
1.16901
1.04467
0.920542
0.796651
0.673033
0.549676
0.426684
0.303754
0.181881
0.0581062
5.35102
4.58251
4.30108
4.09757
3.91659
3.75059
3.59713
3.45239
3.31358
3.17913
3.04793
2.91912
2.792
2.66602
2.54075
2.41589
2.29123
2.16661
2.04197
1.91728
1.79254
1.66777
1.54301
1.41829
1.29366
1.16916
1.04483
0.920715
0.79683
0.673216
0.549864
0.426855
0.304092
0.181872
0.0616542
5.2432
4.64642
4.31335
4.10516
3.92217
3.75396
3.59951
3.45438
3.31536
3.18077
3.04949
2.92062
2.79345
2.66742
2.54211
2.41721
2.2925
2.16784
2.04316
1.91843
1.79364
1.66883
1.54403
1.41927
1.2946
1.17007
1.04571
0.921559
0.797652
0.674019
0.550655
0.427621
0.304854
0.182588
0.0630236
5.56172
4.51427
4.2801
4.0859
3.90702
3.74406
3.59254
3.44893
3.31099
3.17726
3.04668
2.9184
2.79172
2.6661
2.5411
2.41641
2.29184
2.16727
2.04262
1.91788
1.79308
1.66824
1.54341
1.41862
1.29393
1.16937
1.04499
0.920822
0.796901
0.673259
0.549873
0.426883
0.303738
0.182266
0.0549692
5.47321
4.54421
4.29253
4.0923
3.91267
3.74772
3.5949
3.45054
3.31203
3.17783
3.04683
2.91819
2.79121
2.66533
2.54016
2.41537
2.29075
2.16618
2.04157
1.91691
1.79218
1.66743
1.54268
1.41797
1.29336
1.16887
1.04455
0.920439
0.796552
0.672933
0.549573
0.426585
0.303829
0.181778
0.0605156
5.37556
4.56944
4.29895
4.09615
3.91547
3.74972
3.5964
3.45173
3.313
3.17861
3.04748
2.91872
2.79164
2.6657
2.54047
2.41563
2.29099
2.16639
2.04177
1.91709
1.79236
1.66759
1.54284
1.41813
1.29351
1.16901
1.04469
0.920575
0.796691
0.673078
0.549727
0.426729
0.303983
0.181801
0.0614128
5.529
4.52798
4.28548
4.08915
3.90978
3.74583
3.59365
3.44964
3.31139
3.1774
3.04659
2.91812
2.79129
2.66554
2.54046
2.41574
2.29117
2.16662
2.04201
1.91734
1.79259
1.66781
1.54303
1.41829
1.29364
1.16912
1.04476
0.920623
0.796713
0.673086
0.549714
0.426734
0.303778
0.182013
0.0572524
5.51066
4.5293
4.28471
4.08842
3.90913
3.74535
3.59331
3.44941
3.31124
3.17731
3.04654
2.9181
2.79129
2.66555
2.54048
2.41576
2.29118
2.16662
2.04201
1.91733
1.79258
1.66779
1.543
1.41826
1.29361
1.16908
1.04473
0.920591
0.796691
0.673065
0.5497
0.426711
0.303701
0.181974
0.0568143
5.46106
4.54167
4.28859
4.0913
3.91114
3.74679
3.59439
3.45021
3.31184
3.17776
3.04688
2.91835
2.79147
2.66569
2.54058
2.41584
2.29125
2.16668
2.04206
1.91738
1.79262
1.66784
1.54305
1.41831
1.29366
1.16914
1.04478
0.920643
0.796732
0.673107
0.549737
0.42676
0.303807
0.182049
0.0572816
5.43051
4.55791
4.29072
4.09282
3.9123
3.74771
3.59518
3.45093
3.31248
3.17832
3.04737
2.91878
2.79184
2.666
2.54085
2.41607
2.29145
2.16685
2.04222
1.91751
1.79275
1.66796
1.54317
1.41842
1.29377
1.16924
1.04489
0.920746
0.796843
0.673213
0.549846
0.426853
0.303882
0.182103
0.0574805
5.50544
4.52849
4.28441
4.08863
3.90901
3.74536
3.59339
3.44949
3.31132
3.1774
3.04667
2.91826
2.79148
2.66578
2.54074
2.41603
2.29146
2.1669
2.04228
1.91758
1.79281
1.66801
1.5432
1.41844
1.29377
1.16924
1.04487
0.92071
0.796787
0.673154
0.549775
0.426806
0.303782
0.182162
0.056099
5.49713
4.52919
4.28566
4.0893
3.9098
3.74585
3.59367
3.44965
3.31139
3.1774
3.04659
2.91812
2.79129
2.66554
2.54046
2.41574
2.29116
2.1666
2.042
1.91731
1.79257
1.66778
1.543
1.41826
1.29361
1.16909
1.04473
0.92059
0.796679
0.673054
0.549683
0.426706
0.303744
0.182003
0.0570681
5.48536
4.5382
4.28775
4.09003
3.91072
3.74642
3.59403
3.44993
3.31161
3.17754
3.04666
2.91811
2.79121
2.6654
2.54027
2.41551
2.29092
2.16635
2.04175
1.91708
1.79235
1.66759
1.54283
1.41811
1.29348
1.16898
1.04464
0.920518
0.796631
0.673015
0.54966
0.426667
0.303763
0.18185
0.0585294
5.41729
4.55411
4.29559
4.09371
3.91383
3.74854
3.59548
3.45099
3.3124
3.17811
3.04706
2.91836
2.79134
2.66543
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.920479
0.796594
0.672976
0.549622
0.426632
0.303923
0.181768
0.061545
5.50624
4.53881
4.28785
4.08996
3.91065
3.74638
3.594
3.4499
3.31158
3.17752
3.04664
2.91809
2.79118
2.66537
2.54024
2.41548
2.29088
2.16632
2.04172
1.91704
1.79232
1.66755
1.54279
1.41807
1.29344
1.16894
1.04461
0.920486
0.7966
0.672985
0.549631
0.42664
0.303736
0.181826
0.0584873
5.42924
4.54918
4.29295
4.0931
3.91291
3.7479
3.59506
3.45066
3.31214
3.17792
3.04692
2.91829
2.79131
2.66545
2.54028
2.41549
2.29088
2.1663
2.04169
1.91702
1.79229
1.66752
1.54276
1.41805
1.29342
1.16893
1.0446
0.920476
0.796586
0.672972
0.549614
0.426628
0.303801
0.181814
0.059493
5.42096
4.5526
4.29504
4.09338
3.91364
3.74842
3.59539
3.45093
3.31235
3.17808
3.04703
2.91834
2.79131
2.66541
2.54021
2.4154
2.29077
2.16619
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29338
1.16889
1.04457
0.920464
0.79658
0.672962
0.549608
0.42662
0.303913
0.181762
0.0615588
5.51328
4.52955
4.28484
4.08851
3.90926
3.74544
3.59337
3.44944
3.31126
3.17731
3.04654
2.91808
2.79125
2.66551
2.54043
2.4157
2.29113
2.16657
2.04196
1.91728
1.79253
1.66775
1.54297
1.41823
1.29358
1.16906
1.04471
0.920569
0.796671
0.673047
0.549684
0.426695
0.303699
0.18195
0.0570079
5.45648
4.5502
4.29454
4.09303
3.91338
3.74823
3.59526
3.45082
3.31226
3.17801
3.04697
2.91829
2.79127
2.66537
2.54018
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41797
1.29336
1.16888
1.04456
0.920451
0.796565
0.672944
0.549587
0.426599
0.303898
0.18177
0.0614858
5.41104
4.56441
4.29265
4.09377
3.91312
3.74822
3.59551
3.45116
3.31264
3.17842
3.04742
2.91878
2.7918
2.66593
2.54075
2.41595
2.29132
2.16673
2.04209
1.91739
1.79264
1.66785
1.54307
1.41833
1.29369
1.16917
1.04482
0.920687
0.796789
0.673164
0.549802
0.426808
0.303882
0.182015
0.0582458
5.56463
4.5108
4.2797
4.08565
3.90663
3.74387
3.59245
3.44889
3.311
3.17731
3.04677
2.91854
2.79191
2.66632
2.54134
2.41666
2.29209
2.16749
2.04283
1.91808
1.79326
1.6684
1.54355
1.41875
1.29405
1.16948
1.04508
0.920905
0.796963
0.673321
0.549926
0.426965
0.303804
0.182414
0.0543712
5.56497
4.50945
4.27931
4.08547
3.90657
3.74383
3.59242
3.44887
3.31098
3.1773
3.04676
2.91853
2.79189
2.66629
2.5413
2.41662
2.29204
2.16745
2.04278
1.91803
1.79321
1.66836
1.54351
1.41871
1.294
1.16944
1.04505
0.920883
0.796958
0.673311
0.549916
0.426922
0.303725
0.182346
0.0544077
5.45208
4.54742
4.29211
4.09196
3.91247
3.74761
3.59484
3.45052
3.31204
3.17785
3.04686
2.91822
2.79124
2.66537
2.54019
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.29339
1.16891
1.04459
0.920476
0.796596
0.672982
0.549633
0.426639
0.303854
0.181772
0.0605059
5.48981
4.53401
4.28561
4.08909
3.90951
3.74564
3.59355
3.4496
3.3114
3.17745
3.04667
2.91822
2.7914
2.66567
2.54059
2.41587
2.29129
2.16673
2.04211
1.91742
1.79267
1.66787
1.54308
1.41834
1.29368
1.16915
1.0448
0.920653
0.796749
0.67312
0.549752
0.426762
0.303744
0.182043
0.0567068
5.49205
4.53602
4.28692
4.08961
3.91022
3.74609
3.59381
3.44977
3.3115
3.17748
3.04664
2.91813
2.79125
2.66547
2.54036
2.41562
2.29103
2.16647
2.04187
1.9172
1.79246
1.66769
1.54292
1.41819
1.29355
1.16904
1.0447
0.920571
0.796678
0.673057
0.549698
0.426706
0.30376
0.181917
0.0578672
5.39339
4.57936
4.29379
4.09575
3.91401
3.74889
3.59619
3.45181
3.31326
3.17901
3.04798
2.91932
2.79232
2.66643
2.54122
2.41639
2.29173
2.1671
2.04243
1.91769
1.7929
1.66808
1.54327
1.41851
1.29384
1.16931
1.04494
0.920791
0.796875
0.673246
0.549876
0.426899
0.303944
0.182161
0.0571243
5.47404
4.54717
4.29169
4.0917
3.91227
3.74748
3.59475
3.45045
3.31199
3.17781
3.04683
2.9182
2.79123
2.66536
2.54019
2.4154
2.29078
2.16621
2.0416
1.91694
1.79221
1.66746
1.54271
1.41801
1.29339
1.1689
1.04458
0.920469
0.796589
0.672976
0.549627
0.426632
0.303838
0.181767
0.0603497
5.5239
4.53182
4.28539
4.08877
3.90959
3.74567
3.59352
3.44955
3.31133
3.17735
3.04655
2.91806
2.79121
2.66544
2.54034
2.41561
2.29103
2.16647
2.04186
1.91719
1.79245
1.66767
1.5429
1.41817
1.29352
1.16901
1.04467
0.920533
0.796639
0.673018
0.549659
0.426669
0.303702
0.1819
0.0574456
5.53211
4.52962
4.28466
4.08837
3.9092
3.74541
3.59335
3.44944
3.31126
3.17732
3.04655
2.9181
2.79127
2.66553
2.54045
2.41573
2.29116
2.1666
2.04199
1.91731
1.79256
1.66778
1.543
1.41826
1.29361
1.16909
1.04474
0.920599
0.7967
0.673075
0.549711
0.42672
0.303723
0.181969
0.0570324
5.23376
4.65129
4.31482
4.10587
3.92278
3.75434
3.59975
3.45457
3.3155
3.18088
3.04957
2.92069
2.7935
2.66746
2.54214
2.41723
2.2925
2.16783
2.04314
1.9184
1.79361
1.66879
1.54398
1.41922
1.29455
1.17002
1.04565
0.921505
0.797598
0.673966
0.550604
0.427571
0.304816
0.182546
0.0632945
5.55136
4.51417
4.28082
4.08639
3.90704
3.74416
3.59265
3.44903
3.31109
3.17736
3.04681
2.91856
2.79192
2.66631
2.54132
2.41664
2.29206
2.16747
2.0428
1.91805
1.79323
1.66837
1.54352
1.41873
1.29402
1.16946
1.04506
0.920886
0.796944
0.673302
0.549906
0.426949
0.303783
0.182428
0.0542397
5.5533
4.51255
4.28033
4.08612
3.90691
3.74408
3.59262
3.44902
3.3111
3.17739
3.04684
2.9186
2.79195
2.66635
2.54136
2.41667
2.29209
2.16749
2.04282
1.91806
1.79324
1.66838
1.54353
1.41873
1.29403
1.16946
1.04507
0.920904
0.796978
0.673328
0.549929
0.426936
0.303723
0.182386
0.0542205
5.59368
4.51265
4.27997
4.08567
3.90671
3.74389
3.59244
3.44887
3.31096
3.17725
3.0467
2.91845
2.79181
2.66621
2.54122
2.41654
2.29197
2.16739
2.04273
1.91799
1.79318
1.66833
1.54349
1.41869
1.29399
1.16943
1.04504
0.920861
0.796922
0.673282
0.54989
0.426929
0.303793
0.182363
0.0546332
5.59711
4.51161
4.27971
4.08548
3.90663
3.74383
3.5924
3.44884
3.31094
3.17725
3.0467
2.91845
2.7918
2.6662
2.5412
2.41652
2.29195
2.16736
2.0427
1.91795
1.79314
1.66829
1.54345
1.41866
1.29396
1.16939
1.04501
0.920842
0.796919
0.673275
0.549885
0.426893
0.303717
0.182298
0.0546285
5.27708
4.63412
4.30817
4.10345
3.92026
3.75273
3.59876
3.45382
3.31493
3.18043
3.04922
2.9204
2.79327
2.66726
2.54196
2.41706
2.29234
2.16767
2.04297
1.91822
1.79342
1.6686
1.54378
1.41901
1.29433
1.16979
1.04541
0.921252
0.797331
0.673692
0.550323
0.427302
0.304473
0.18232
0.0605494
5.40442
4.56944
4.29287
4.0942
3.9133
3.74837
3.59568
3.45134
3.31282
3.17859
3.04759
2.91894
2.79195
2.66607
2.54089
2.41608
2.29144
2.16684
2.04219
1.91748
1.79271
1.66792
1.54313
1.41838
1.29373
1.16921
1.04485
0.920714
0.796813
0.673185
0.549821
0.426828
0.303884
0.182051
0.0578882
5.40404
4.55791
4.29677
4.09463
3.9144
3.74893
3.59577
3.45121
3.31257
3.17826
3.04718
2.91847
2.79143
2.66551
2.5403
2.41549
2.29086
2.16627
2.04166
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16895
1.04463
0.920522
0.796636
0.67302
0.549665
0.426673
0.303946
0.181794
0.0613844
5.46972
4.54824
4.29264
4.09213
3.91267
3.74776
3.59493
3.45058
3.31208
3.17788
3.04688
2.91823
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04456
0.920447
0.796567
0.672953
0.549604
0.426612
0.303852
0.181749
0.0608325
5.56439
4.52021
4.28175
4.08688
3.90778
3.74455
3.59284
3.44911
3.31106
3.17724
3.04658
2.91823
2.7915
2.66584
2.54082
2.41613
2.29157
2.167
2.04238
1.91767
1.79289
1.66807
1.54326
1.41849
1.29381
1.16926
1.04488
0.920724
0.796795
0.673161
0.549779
0.426813
0.303762
0.182192
0.0556497
5.48618
4.5332
4.28714
4.0902
3.9104
3.74625
3.59395
3.44986
3.31155
3.17751
3.04668
2.91818
2.79133
2.66556
2.54047
2.41574
2.29116
2.1666
2.04199
1.91731
1.79256
1.66777
1.54299
1.41825
1.2936
1.16908
1.04473
0.92059
0.796681
0.673056
0.549686
0.42671
0.303756
0.182003
0.0572293
5.5816
4.51485
4.28028
4.08586
3.90696
3.74402
3.5925
3.4489
3.31096
3.17723
3.04665
2.91837
2.7917
2.66607
2.54107
2.41638
2.29181
2.16723
2.04258
1.91785
1.79305
1.66821
1.54338
1.41859
1.2939
1.16934
1.04496
0.920797
0.796877
0.673236
0.549851
0.426862
0.303716
0.182247
0.0549478
5.57794
4.5153
4.28044
4.08604
3.90703
3.74408
3.59254
3.44892
3.31096
3.17722
3.04663
2.91835
2.79168
2.66606
2.54106
2.41638
2.29182
2.16724
2.0426
1.91787
1.79307
1.66823
1.5434
1.41861
1.29392
1.16936
1.04497
0.920802
0.796866
0.673228
0.54984
0.426879
0.303775
0.182302
0.0549486
5.3428
4.58869
4.30135
4.09791
3.91671
3.75061
3.59714
3.4524
3.3136
3.17915
3.04796
2.91916
2.79203
2.66605
2.54078
2.41592
2.29124
2.16662
2.04198
1.91728
1.79253
1.66776
1.54299
1.41827
1.29364
1.16914
1.0448
0.920683
0.796799
0.673185
0.549836
0.426829
0.304052
0.181857
0.0613946
5.60552
4.50607
4.27842
4.08486
3.90616
3.74357
3.59227
3.44879
3.31095
3.17731
3.04681
2.9186
2.79199
2.66641
2.54142
2.41674
2.29216
2.16756
2.04289
1.91813
1.7933
1.66843
1.54358
1.41877
1.29406
1.16949
1.0451
0.920927
0.797
0.673349
0.549948
0.426947
0.303729
0.182373
0.0542366
5.59889
4.50769
4.27877
4.08505
3.90624
3.74363
3.5923
3.44881
3.31096
3.1773
3.0468
2.9186
2.79199
2.66641
2.54144
2.41676
2.29218
2.16758
2.04291
1.91815
1.79333
1.66846
1.54361
1.4188
1.29409
1.16952
1.04512
0.920937
0.796994
0.673352
0.549955
0.426991
0.303811
0.182422
0.0542446
5.42053
4.57661
4.29056
4.09434
3.91257
3.74806
3.5958
3.45171
3.31338
3.17931
3.04841
2.91983
2.79287
2.66699
2.54176
2.4169
2.29218
2.16749
2.04276
1.91797
1.79313
1.66827
1.54343
1.41864
1.29395
1.16939
1.04502
0.920856
0.796938
0.673296
0.549916
0.42693
0.30386
0.182278
0.0555292
5.44675
4.54958
4.28919
4.09141
3.91126
3.74685
3.59444
3.45028
3.31192
3.17783
3.04695
2.9184
2.7915
2.6657
2.54057
2.41581
2.29121
2.16664
2.04202
1.91733
1.79258
1.6678
1.54302
1.41828
1.29363
1.16911
1.04477
0.920629
0.79673
0.673105
0.549741
0.42675
0.303783
0.181996
0.0574755
5.52378
4.52861
4.28578
4.0893
3.90993
3.74592
3.5937
3.44966
3.3114
3.17739
3.04657
2.91808
2.79124
2.66548
2.54039
2.41566
2.29109
2.16653
2.04193
1.91725
1.79251
1.66773
1.54296
1.41822
1.29358
1.16906
1.04471
0.920571
0.796664
0.673041
0.549671
0.42669
0.303749
0.18196
0.0574402
5.54898
4.52459
4.28292
4.08742
3.90839
3.7449
3.59303
3.44922
3.31112
3.17725
3.04653
2.91814
2.79136
2.66565
2.5406
2.41589
2.29132
2.16676
2.04215
1.91745
1.79269
1.66789
1.5431
1.41834
1.29368
1.16915
1.04479
0.920639
0.796733
0.673104
0.549735
0.426746
0.303703
0.182034
0.0563155
5.56024
4.52288
4.28242
4.08712
3.90808
3.74471
3.59292
3.44917
3.31111
3.17727
3.0466
2.91823
2.79148
2.6658
2.54077
2.41607
2.2915
2.16694
2.04232
1.91762
1.79284
1.66803
1.54323
1.41846
1.29379
1.16925
1.04488
0.920728
0.796816
0.673182
0.549806
0.426816
0.303744
0.182128
0.0559653
5.39938
4.55958
4.29708
4.09478
3.91454
3.74904
3.59585
3.45128
3.31262
3.1783
3.04721
2.91849
2.79144
2.66552
2.54031
2.41549
2.29086
2.16627
2.04166
1.91699
1.79226
1.66751
1.54276
1.41805
1.29344
1.16895
1.04463
0.920518
0.796634
0.673018
0.549666
0.426673
0.303948
0.18178
0.061483
5.16967
4.68593
4.32474
4.1105
3.92702
3.75689
3.60134
3.45575
3.31643
3.18161
3.05016
2.92117
2.79392
2.66783
2.54248
2.41756
2.29285
2.1682
2.04353
1.91882
1.79407
1.66928
1.54451
1.41979
1.29515
1.17065
1.04632
0.922195
0.798315
0.674709
0.55138
0.428379
0.30571
0.183554
0.0657359
5.51856
4.53364
4.28606
4.08912
3.90988
3.74586
3.59366
3.44966
3.31142
3.17742
3.04659
2.91809
2.79123
2.66546
2.54035
2.41561
2.29103
2.16647
2.04187
1.91719
1.79246
1.66768
1.54291
1.41819
1.29354
1.16903
1.04469
0.920558
0.796664
0.673043
0.549684
0.426693
0.303738
0.181911
0.0576948
5.50252
4.5339
4.28628
4.08928
3.90995
3.74591
3.5937
3.44969
3.31145
3.17746
3.04664
2.91815
2.79129
2.66552
2.54042
2.41569
2.29111
2.16655
2.04195
1.91727
1.79254
1.66776
1.54299
1.41826
1.29361
1.1691
1.04475
0.920618
0.796722
0.673099
0.549737
0.426743
0.303781
0.181964
0.0576444
5.4401
4.55008
4.29351
4.0926
3.913
3.74797
3.59508
3.45069
3.31216
3.17794
3.04692
2.91826
2.79126
2.66537
2.54018
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66743
1.54268
1.41798
1.29337
1.16888
1.04456
0.920453
0.796572
0.672958
0.549609
0.426618
0.303871
0.181752
0.0610256
5.50505
4.52907
4.28605
4.08947
3.91
3.74596
3.59373
3.44969
3.31141
3.1774
3.04658
2.91809
2.79125
2.66549
2.5404
2.41567
2.2911
2.16654
2.04194
1.91726
1.79252
1.66774
1.54296
1.41823
1.29358
1.16906
1.04471
0.920574
0.796667
0.673043
0.549673
0.426694
0.30375
0.181967
0.0574071
5.46576
4.5476
4.29392
4.09285
3.91315
3.74805
3.59512
3.45071
3.31217
3.17793
3.04691
2.91824
2.79124
2.66534
2.54015
2.41535
2.29073
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41795
1.29334
1.16885
1.04454
0.920428
0.796541
0.67292
0.549562
0.426574
0.303856
0.181763
0.0611085
5.3683
4.57382
4.29943
4.09687
3.91593
3.75012
3.59678
3.45209
3.31332
3.1789
3.04775
2.91897
2.79188
2.66592
2.54068
2.41583
2.29118
2.16657
2.04194
1.91725
1.79251
1.66775
1.54298
1.41827
1.29364
1.16914
1.04481
0.920687
0.796799
0.673185
0.549831
0.42683
0.304052
0.181895
0.0610509
5.46214
4.54603
4.28754
4.09135
3.91091
3.74681
3.59456
3.45044
3.3121
3.17804
3.04718
2.91868
2.79182
2.66605
2.54094
2.41619
2.29159
2.167
2.04235
1.91764
1.79286
1.66805
1.54324
1.41848
1.29381
1.16927
1.0449
0.920749
0.796826
0.673193
0.549815
0.426847
0.303831
0.182211
0.056164
5.57111
4.5185
4.28132
4.0866
3.9075
3.74437
3.59274
3.44905
3.31105
3.17726
3.04663
2.91832
2.79162
2.66598
2.54097
2.41629
2.29173
2.16717
2.04253
1.91781
1.79303
1.6682
1.54337
1.41859
1.29391
1.16935
1.04497
0.920803
0.796869
0.673231
0.549845
0.42688
0.303803
0.182278
0.0553513
5.48667
4.53783
4.28525
4.08966
3.90961
3.74594
3.59396
3.45002
3.31182
3.17787
3.04711
2.91868
2.79188
2.66616
2.54108
2.41635
2.29175
2.16715
2.0425
1.91777
1.79298
1.66815
1.54333
1.41856
1.29388
1.16933
1.04496
0.920801
0.796885
0.673246
0.549864
0.426878
0.303773
0.182263
0.0554105
5.5213
4.52433
4.28262
4.0876
3.90808
3.7448
3.59307
3.44932
3.31128
3.17747
3.04683
2.9185
2.79179
2.66613
2.54111
2.41641
2.29183
2.16725
2.0426
1.91787
1.79308
1.66824
1.54341
1.41863
1.29394
1.16939
1.04501
0.920843
0.796922
0.673279
0.549893
0.426904
0.303767
0.182298
0.0550813
5.31039
4.62459
4.30275
4.10163
3.91841
3.75153
3.59801
3.45329
3.31453
3.18016
3.04904
2.92031
2.79325
2.66731
2.54207
2.41721
2.29252
2.16787
2.04317
1.91841
1.79359
1.66874
1.54389
1.4191
1.29439
1.16983
1.04544
0.921261
0.797326
0.673679
0.550299
0.42729
0.304393
0.182386
0.0585102
5.46979
4.54505
4.28654
4.09055
3.91024
3.74637
3.59428
3.45027
3.31201
3.17801
3.0472
2.91873
2.7919
2.66614
2.54105
2.41629
2.29168
2.16708
2.04242
1.9177
1.79291
1.66808
1.54327
1.4185
1.29382
1.16928
1.04491
0.920759
0.796845
0.673208
0.54983
0.426844
0.303762
0.182214
0.0556521
5.4477
4.54602
4.29335
4.09269
3.91304
3.74798
3.59507
3.45068
3.31215
3.17791
3.0469
2.91824
2.79124
2.66535
2.54016
2.41536
2.29075
2.16617
2.04156
1.9169
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.920439
0.796552
0.672933
0.549574
0.426586
0.303856
0.181771
0.0609642
5.51699
4.52838
4.28461
4.08841
3.90908
3.74534
3.59332
3.44943
3.31128
3.17737
3.04662
2.91819
2.7914
2.66567
2.54061
2.4159
2.29133
2.16678
2.04216
1.91748
1.79272
1.66793
1.54314
1.41839
1.29373
1.1692
1.04484
0.920695
0.796789
0.673159
0.549789
0.426797
0.303771
0.182065
0.0566862
5.52152
4.52438
4.28268
4.08772
3.90811
3.74482
3.59308
3.44931
3.31125
3.17743
3.04678
2.91845
2.79174
2.66609
2.54107
2.41638
2.29181
2.16723
2.04258
1.91786
1.79306
1.66823
1.5434
1.41862
1.29393
1.16937
1.04499
0.920822
0.796887
0.673247
0.549858
0.426897
0.303804
0.182333
0.0550792
5.50477
4.53104
4.28367
4.08857
3.9087
3.7453
3.59348
3.44965
3.31153
3.17765
3.04696
2.91859
2.79185
2.66616
2.54111
2.41639
2.2918
2.1672
2.04254
1.9178
1.793
1.66816
1.54333
1.41855
1.29387
1.16932
1.04494
0.920778
0.79686
0.673219
0.549834
0.42685
0.303708
0.182276
0.0548518
5.47557
4.5461
4.2911
4.09142
3.912
3.7473
3.59462
3.45036
3.31192
3.17776
3.0468
2.91818
2.79121
2.66535
2.54019
2.4154
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04458
0.920464
0.796584
0.672972
0.549622
0.426628
0.303813
0.181769
0.0600201
5.44949
4.54983
4.289
4.0921
3.91153
3.74717
3.59477
3.45057
3.31217
3.17806
3.04717
2.91863
2.79174
2.66595
2.54083
2.41607
2.29146
2.16688
2.04224
1.91753
1.79276
1.66796
1.54316
1.41841
1.29374
1.16921
1.04485
0.920702
0.796785
0.673156
0.549782
0.426811
0.303825
0.182138
0.0566637
5.41536
4.55347
4.29541
4.09395
3.91382
3.74851
3.59547
3.45098
3.31238
3.1781
3.04705
2.91837
2.79135
2.66545
2.54025
2.41545
2.29082
2.16624
2.04163
1.91697
1.79224
1.66749
1.54273
1.41803
1.29341
1.16892
1.0446
0.92049
0.796604
0.672988
0.549632
0.426641
0.303896
0.181787
0.060957
5.14384
4.69792
4.32927
4.11189
3.92878
3.75802
3.60201
3.45625
3.31682
3.18191
3.0504
2.92137
2.79408
2.66796
2.54259
2.41766
2.29294
2.16828
2.04362
1.9189
1.79415
1.66937
1.5446
1.41988
1.29525
1.17075
1.04642
0.922296
0.798418
0.67481
0.551483
0.428483
0.305857
0.183832
0.0681063
5.3502
4.59479
4.29889
4.09768
3.91598
3.75012
3.59696
3.4524
3.31372
3.17936
3.04824
2.91948
2.7924
2.66644
2.54118
2.41632
2.29164
2.16701
2.04234
1.91762
1.79285
1.66805
1.54325
1.4185
1.29385
1.16933
1.04497
0.92083
0.796928
0.6733
0.549938
0.426935
0.304059
0.182064
0.0592968
5.60931
4.50672
4.27872
4.08492
3.90617
3.74359
3.59229
3.44882
3.31099
3.17736
3.04687
2.91868
2.79207
2.6665
2.54152
2.41684
2.29226
2.16766
2.04298
1.91822
1.79339
1.66852
1.54366
1.41885
1.29413
1.16956
1.04516
0.920991
0.797061
0.673406
0.55
0.426996
0.303767
0.182422
0.0541981
5.60052
4.50732
4.27876
4.08498
3.90618
3.74359
3.59228
3.4488
3.31096
3.17732
3.04682
2.91863
2.79202
2.66645
2.54148
2.4168
2.29222
2.16762
2.04295
1.91819
1.79335
1.66849
1.54363
1.41882
1.29411
1.16953
1.04513
0.920953
0.797009
0.673367
0.549968
0.427003
0.303814
0.182433
0.0541776
5.49244
4.53361
4.28559
4.08983
3.90984
3.74603
3.59395
3.44995
3.3117
3.17773
3.04695
2.91851
2.79171
2.66599
2.54093
2.41621
2.29163
2.16705
2.04242
1.91771
1.79293
1.66812
1.54331
1.41854
1.29387
1.16933
1.04495
0.920794
0.796867
0.673232
0.549849
0.426881
0.303844
0.182261
0.0559304
5.4367
4.55595
4.28981
4.09223
3.91173
3.74727
3.59483
3.45064
3.31224
3.17813
3.04722
2.91865
2.79174
2.66593
2.54079
2.41602
2.2914
2.16681
2.04217
1.91747
1.7927
1.6679
1.54311
1.41836
1.2937
1.16918
1.04482
0.920678
0.796774
0.673145
0.549777
0.426788
0.303796
0.182064
0.0570377
5.47454
4.53913
4.28646
4.08973
3.90993
3.74594
3.59378
3.44978
3.31154
3.17755
3.04675
2.91828
2.79144
2.66569
2.5406
2.41587
2.29128
2.16671
2.04209
1.9174
1.79264
1.66785
1.54306
1.41831
1.29365
1.16913
1.04477
0.92063
0.796726
0.673098
0.54973
0.426742
0.303726
0.182033
0.0566791
5.43418
4.55136
4.29471
4.09314
3.91346
3.74828
3.59529
3.45085
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16889
1.04458
0.920464
0.79658
0.672961
0.549608
0.426621
0.303915
0.181772
0.0615305
5.43686
4.55091
4.29472
4.09316
3.91348
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04157
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16889
1.04457
0.920463
0.796577
0.672958
0.549604
0.426617
0.303913
0.181771
0.061545
5.1705
4.68549
4.32457
4.11037
3.92695
3.75685
3.60131
3.45573
3.31641
3.18159
3.05014
2.92116
2.7939
2.66781
2.54246
2.41754
2.29283
2.16818
2.04351
1.9188
1.79405
1.66926
1.54449
1.41976
1.29513
1.17062
1.04628
0.922155
0.79827
0.674656
0.551318
0.428306
0.305625
0.183457
0.0656852
5.39196
4.56414
4.2967
4.09537
3.91465
3.74916
3.59602
3.45145
3.31278
3.17845
3.04736
2.91865
2.79161
2.66569
2.54048
2.41567
2.29103
2.16644
2.04182
1.91714
1.7924
1.66764
1.54288
1.41816
1.29353
1.16903
1.0447
0.920582
0.796693
0.673079
0.549724
0.426731
0.303929
0.181853
0.0602556
5.47011
4.54506
4.29288
4.09244
3.9128
3.74781
3.59496
3.45059
3.31208
3.17786
3.04686
2.91822
2.79123
2.66535
2.54017
2.41538
2.29077
2.16619
2.04159
1.91692
1.7922
1.66745
1.5427
1.41799
1.29337
1.16889
1.04457
0.920458
0.79657
0.67295
0.54959
0.4266
0.303854
0.181791
0.0606773
5.51446
4.53055
4.28336
4.08856
3.90845
3.74534
3.59368
3.44991
3.31182
3.17797
3.0473
2.91894
2.79221
2.66652
2.54146
2.41672
2.29209
2.16747
2.04278
1.91801
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04502
0.920839
0.796892
0.673245
0.549847
0.426909
0.303765
0.182502
0.0539553
5.43758
4.55081
4.29398
4.09279
3.91317
3.74809
3.59516
3.45075
3.31221
3.17797
3.04695
2.91827
2.79127
2.66537
2.54018
2.41538
2.29075
2.16617
2.04157
1.9169
1.79218
1.66742
1.54268
1.41797
1.29336
1.16888
1.04456
0.920449
0.796567
0.672951
0.549602
0.426614
0.303884
0.181753
0.0612377
5.234
4.65134
4.31491
4.10603
3.9228
3.75435
3.59977
3.45457
3.3155
3.18088
3.04957
2.92069
2.79351
2.66748
2.54218
2.41728
2.29257
2.16791
2.04322
1.91848
1.79369
1.66887
1.54406
1.4193
1.29463
1.17009
1.04573
0.921579
0.797671
0.674039
0.550676
0.427642
0.304883
0.182613
0.0631896
5.4378
4.5507
4.29383
4.09273
3.91311
3.74804
3.59513
3.45073
3.31219
3.17796
3.04694
2.91827
2.79127
2.66537
2.54018
2.41538
2.29076
2.16618
2.04157
1.91691
1.79219
1.66743
1.54269
1.41798
1.29337
1.16888
1.04457
0.920456
0.796575
0.67296
0.549611
0.426621
0.303883
0.181757
0.0611392
5.46512
4.54508
4.29298
4.0925
3.91288
3.74787
3.595
3.45062
3.3121
3.17787
3.04687
2.91821
2.79121
2.66533
2.54015
2.41535
2.29073
2.16616
2.04155
1.91688
1.79216
1.66741
1.54266
1.41795
1.29334
1.16885
1.04454
0.920425
0.796538
0.672919
0.549559
0.426571
0.303836
0.181764
0.0608232
5.5024
4.5323
4.28395
4.08894
3.90889
3.74542
3.59356
3.44969
3.31154
3.17765
3.04694
2.91856
2.79181
2.66613
2.54108
2.41637
2.29177
2.16718
2.04252
1.91779
1.79299
1.66815
1.54333
1.41855
1.29386
1.16931
1.04493
0.920762
0.796829
0.673192
0.549804
0.426848
0.303754
0.182315
0.0548848
5.48604
4.54005
4.29085
4.0916
3.91199
3.74726
3.59458
3.45029
3.31185
3.17768
3.04673
2.91813
2.79117
2.66532
2.54017
2.41539
2.29079
2.16622
2.04161
1.91695
1.79222
1.66746
1.54271
1.418
1.29338
1.16889
1.04456
0.920447
0.796558
0.672941
0.54958
0.426591
0.303782
0.181796
0.0596728
5.34777
4.60779
4.29796
4.09863
3.91606
3.7501
3.59708
3.45261
3.31404
3.17978
3.04876
2.92009
2.79308
2.66716
2.54192
2.41705
2.29234
2.16766
2.04294
1.91816
1.79333
1.66847
1.54363
1.41884
1.29414
1.16959
1.04521
0.92104
0.797118
0.673473
0.550095
0.427091
0.304138
0.182276
0.0575757
5.50569
4.53833
4.28762
4.08984
3.91049
3.74627
3.59393
3.44986
3.31156
3.17751
3.04665
2.91812
2.79122
2.66542
2.5403
2.41555
2.29096
2.1664
2.0418
1.91713
1.7924
1.66763
1.54287
1.41815
1.29352
1.16901
1.04467
0.920549
0.796659
0.673041
0.549684
0.426691
0.30377
0.181881
0.058272
5.54584
4.51884
4.28115
4.08652
3.90758
3.74441
3.59274
3.44906
3.31105
3.17726
3.04663
2.9183
2.79158
2.66592
2.5409
2.41621
2.29165
2.16708
2.04244
1.91773
1.79295
1.66812
1.5433
1.41853
1.29385
1.1693
1.04493
0.920767
0.796851
0.673213
0.549834
0.426844
0.303743
0.182189
0.0555348
5.36267
4.57584
4.30007
4.09701
3.91607
3.75019
3.5968
3.45209
3.31331
3.17888
3.04772
2.91893
2.79183
2.66587
2.54062
2.41577
2.29112
2.16651
2.04188
1.91719
1.79245
1.66769
1.54293
1.41821
1.29358
1.16909
1.04476
0.92064
0.796755
0.673141
0.549789
0.426787
0.304026
0.181837
0.0613689
5.51153
4.52701
4.28407
4.0885
3.90891
3.74532
3.59339
3.44951
3.31136
3.17746
3.04674
2.91834
2.79157
2.66588
2.54084
2.41614
2.29157
2.16701
2.04238
1.91768
1.79291
1.66809
1.54329
1.41852
1.29385
1.1693
1.04493
0.920772
0.796844
0.673209
0.549826
0.426857
0.303821
0.182226
0.0559511
5.52127
4.52411
4.28302
4.08776
3.90833
3.74491
3.59309
3.44928
3.31118
3.17732
3.04663
2.91827
2.79152
2.66585
2.54082
2.41612
2.29156
2.16699
2.04237
1.91766
1.79288
1.66807
1.54325
1.41849
1.29381
1.16927
1.04489
0.92073
0.796803
0.673168
0.549786
0.42682
0.303772
0.182203
0.0557009
5.41722
4.56016
4.29242
4.09334
3.9129
3.74802
3.59529
3.45095
3.31244
3.17824
3.04725
2.91861
2.79164
2.66578
2.54061
2.41582
2.29119
2.16661
2.04198
1.9173
1.79255
1.66777
1.543
1.41827
1.29363
1.16912
1.04478
0.920649
0.796755
0.673133
0.549774
0.42678
0.303873
0.181972
0.0585758
5.49756
4.5364
4.28939
4.09098
3.91146
3.74691
3.59434
3.45012
3.31171
3.17758
3.04665
2.91807
2.79113
2.6653
2.54016
2.41539
2.29078
2.16622
2.04161
1.91694
1.79222
1.66745
1.5427
1.41798
1.29336
1.16886
1.04454
0.920418
0.796528
0.672912
0.549551
0.426565
0.303725
0.181786
0.0591003
5.42781
4.55776
4.29104
4.09281
3.91233
3.74766
3.59508
3.45081
3.31236
3.1782
3.04725
2.91865
2.79171
2.66587
2.54072
2.41594
2.29132
2.16673
2.0421
1.9174
1.79265
1.66786
1.54307
1.41834
1.29368
1.16917
1.04482
0.920677
0.796778
0.673151
0.549787
0.426795
0.303841
0.182029
0.0577345
5.40495
4.55761
4.29658
4.09465
3.91433
3.74887
3.59573
3.45118
3.31254
3.17823
3.04716
2.91845
2.79142
2.66551
2.5403
2.41549
2.29086
2.16628
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29343
1.16895
1.04462
0.920511
0.796625
0.673009
0.549655
0.426662
0.30392
0.181789
0.0611131
5.18997
4.67697
4.32116
4.10922
3.92566
3.75603
3.60082
3.45536
3.31612
3.18137
3.04997
2.92102
2.79379
2.66773
2.5424
2.41749
2.29278
2.16814
2.04347
1.91877
1.79401
1.66923
1.54446
1.41974
1.29511
1.17061
1.04627
0.922153
0.79827
0.674659
0.551318
0.428301
0.305579
0.183358
0.0641384
5.49912
4.5358
4.28435
4.08939
3.90912
3.74569
3.59385
3.44998
3.31183
3.17792
3.04721
2.91882
2.79206
2.66637
2.5413
2.41657
2.29196
2.16735
2.04268
1.91793
1.79312
1.66827
1.54344
1.41865
1.29396
1.1694
1.04501
0.920843
0.796904
0.673262
0.549869
0.426917
0.303809
0.182419
0.0546392
5.50134
4.53407
4.284
4.08902
3.90893
3.74556
3.59376
3.44991
3.31178
3.17789
3.04718
2.9188
2.79204
2.66634
2.54128
2.41654
2.29193
2.16731
2.04264
1.91789
1.79308
1.66824
1.5434
1.41861
1.29392
1.16937
1.04499
0.920822
0.796901
0.673258
0.54987
0.426888
0.303728
0.182338
0.0545823
5.43312
4.54807
4.29312
4.09299
3.91291
3.74789
3.59504
3.45065
3.31213
3.17791
3.04692
2.91828
2.7913
2.66544
2.54027
2.41548
2.29087
2.1663
2.04169
1.91702
1.79229
1.66754
1.54278
1.41807
1.29345
1.16895
1.04463
0.920508
0.796619
0.673003
0.549644
0.426655
0.303849
0.181833
0.0598681
5.3719
4.59885
4.29573
4.09797
3.91522
3.74965
3.59685
3.45247
3.31395
3.17974
3.04875
2.9201
2.7931
2.66719
2.54195
2.41708
2.29235
2.16766
2.04293
1.91813
1.79329
1.66843
1.54358
1.41878
1.29409
1.16953
1.04514
0.920979
0.79705
0.67341
0.550032
0.42705
0.304074
0.182307
0.0566147
5.51177
4.53059
4.28362
4.08875
3.90867
3.74542
3.59368
3.44987
3.31176
3.1779
3.04721
2.91886
2.79212
2.66645
2.5414
2.41667
2.29206
2.16745
2.04277
1.91802
1.7932
1.66834
1.5435
1.41871
1.29401
1.16945
1.04506
0.920883
0.79694
0.673295
0.549899
0.42695
0.303821
0.182483
0.0543778
5.52008
4.53298
4.28774
4.09022
3.91073
3.74643
3.59403
3.4499
3.31156
3.17749
3.04662
2.91809
2.7912
2.6654
2.54029
2.41554
2.29096
2.1664
2.0418
1.91713
1.79239
1.66763
1.54286
1.41814
1.2935
1.16899
1.04465
0.920526
0.796627
0.673007
0.549641
0.426656
0.303762
0.181892
0.0582687
5.45733
4.55868
4.28687
4.09197
3.91069
3.74688
3.59496
3.45104
3.31283
3.17885
3.04803
2.91952
2.79263
2.6668
2.54163
2.4168
2.29211
2.16744
2.04272
1.91794
1.7931
1.66823
1.54338
1.41859
1.29389
1.16933
1.04495
0.920777
0.796839
0.673197
0.549809
0.426861
0.303779
0.18236
0.054557
5.53737
4.51942
4.28155
4.08699
3.90741
3.74452
3.593
3.44936
3.31139
3.17765
3.04707
2.9188
2.79213
2.66651
2.5415
2.41679
2.29219
2.16757
2.04289
1.91813
1.79329
1.66843
1.54357
1.41877
1.29406
1.16949
1.0451
0.92093
0.797002
0.67335
0.54995
0.426962
0.303735
0.182446
0.0539734
5.53094
4.52206
4.28204
4.08748
3.90775
3.74477
3.59318
3.44947
3.31146
3.17767
3.04705
2.91876
2.79207
2.66643
2.54141
2.4167
2.2921
2.16748
2.0428
1.91804
1.79321
1.66835
1.5435
1.4187
1.294
1.16944
1.04504
0.920865
0.796919
0.673273
0.549874
0.42693
0.30377
0.182489
0.0539857
5.34513
4.60706
4.29864
4.09921
3.91646
3.75037
3.59726
3.45273
3.31411
3.17982
3.04878
2.92009
2.79305
2.66712
2.54187
2.41699
2.29228
2.1676
2.04288
1.9181
1.79328
1.66842
1.54358
1.4188
1.29411
1.16955
1.04517
0.921007
0.797082
0.673444
0.55007
0.427078
0.304154
0.18225
0.0577644
5.48435
4.54381
4.28524
4.09036
3.90978
3.74626
3.5944
3.45047
3.31226
3.17829
3.04751
2.91906
2.79224
2.66649
2.54138
2.41661
2.29197
2.16734
2.04265
1.91789
1.79307
1.66822
1.54338
1.41859
1.2939
1.16935
1.04496
0.920797
0.796859
0.673218
0.549828
0.426881
0.30378
0.182401
0.0545262
5.49158
4.54086
4.28482
4.08983
3.90941
3.74597
3.59415
3.45027
3.3121
3.17818
3.04743
2.91902
2.79222
2.66649
2.5414
2.41664
2.292
2.16737
2.04268
1.91792
1.7931
1.66825
1.5434
1.41862
1.29392
1.16937
1.04498
0.92082
0.796899
0.673255
0.549867
0.426889
0.303724
0.182352
0.0544002
5.46349
4.5418
4.29175
4.09211
3.91233
3.74749
3.59474
3.45042
3.31195
3.17778
3.04681
2.9182
2.79124
2.66539
2.54024
2.41546
2.29086
2.16629
2.04169
1.91703
1.7923
1.66755
1.54279
1.41808
1.29346
1.16897
1.04464
0.920523
0.796632
0.673013
0.54965
0.426659
0.303855
0.181857
0.0598425
5.57289
4.5198
4.28163
4.08679
3.90768
3.7445
3.59282
3.44911
3.31109
3.17729
3.04666
2.91833
2.79162
2.66597
2.54096
2.41628
2.29172
2.16716
2.04253
1.91781
1.79303
1.6682
1.54338
1.4186
1.29392
1.16937
1.04498
0.920816
0.796883
0.673244
0.549858
0.426891
0.303824
0.182278
0.0555135
5.48177
4.54985
4.28581
4.09055
3.90954
3.74626
3.59461
3.45087
3.3128
3.17893
3.0482
2.91976
2.79291
2.66709
2.5419
2.41704
2.29231
2.1676
2.04283
1.918
1.79313
1.66823
1.54336
1.41854
1.29383
1.16926
1.04487
0.920699
0.796775
0.673132
0.549747
0.426782
0.303582
0.182293
0.0535601
5.48162
4.54991
4.28582
4.09056
3.90955
3.74626
3.59461
3.45087
3.3128
3.17893
3.0482
2.91976
2.7929
2.66709
2.5419
2.41704
2.29231
2.1676
2.04283
1.918
1.79313
1.66823
1.54336
1.41854
1.29383
1.16926
1.04487
0.920686
0.796735
0.673084
0.549687
0.426762
0.303644
0.182416
0.0536027
5.35413
4.58
4.30093
4.0974
3.91644
3.75045
3.597
3.45225
3.31345
3.179
3.04781
2.91901
2.7919
2.66592
2.54066
2.41581
2.29114
2.16653
2.04189
1.91721
1.79247
1.6677
1.54294
1.41822
1.2936
1.1691
1.04477
0.920658
0.796774
0.673161
0.549811
0.426806
0.304055
0.181831
0.0617036
5.50956
4.53274
4.28771
4.09023
3.9108
3.74648
3.59406
3.44992
3.31157
3.17749
3.04661
2.91807
2.79117
2.66536
2.54024
2.41549
2.2909
2.16634
2.04174
1.91707
1.79234
1.66757
1.54281
1.41809
1.29345
1.16895
1.04461
0.920489
0.796593
0.672974
0.54961
0.426624
0.303742
0.181855
0.0584331
5.44158
4.55775
4.2892
4.09236
3.91164
3.74736
3.59505
3.45091
3.31254
3.17843
3.04753
2.91898
2.79208
2.66626
2.54112
2.41633
2.2917
2.16708
2.04242
1.91769
1.7929
1.66808
1.54327
1.41851
1.29383
1.1693
1.04493
0.920783
0.796872
0.673236
0.549861
0.426873
0.303834
0.182198
0.0562818
5.4519
4.54706
4.29168
4.09181
3.91229
3.74749
3.59475
3.45045
3.31199
3.17781
3.04684
2.91821
2.79124
2.66537
2.5402
2.41541
2.2908
2.16623
2.04162
1.91695
1.79223
1.66747
1.54272
1.41802
1.2934
1.16891
1.04459
0.920473
0.796593
0.672981
0.549631
0.426637
0.303832
0.181774
0.0601931
5.55926
4.52409
4.28275
4.08731
3.90827
3.74483
3.593
3.44922
3.31114
3.17729
3.0466
2.91822
2.79146
2.66577
2.54073
2.41603
2.29146
2.1669
2.04228
1.91758
1.79282
1.66801
1.54321
1.41845
1.29378
1.16924
1.04487
0.920722
0.796812
0.673179
0.549804
0.426813
0.303753
0.182112
0.0561475
5.42095
4.55427
4.29459
4.09332
3.91345
3.74828
3.59531
3.45086
3.3123
3.17805
3.04702
2.91834
2.79133
2.66543
2.54024
2.41543
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.29341
1.16892
1.0446
0.920488
0.796607
0.672993
0.549645
0.426652
0.303896
0.181769
0.0609864
5.45502
4.54642
4.29133
4.09167
3.91217
3.74741
3.59471
3.45043
3.31198
3.17781
3.04684
2.91822
2.79125
2.66539
2.54023
2.41544
2.29083
2.16626
2.04166
1.91699
1.79227
1.66751
1.54276
1.41805
1.29343
1.16894
1.04462
0.920506
0.796624
0.673011
0.549661
0.426666
0.303849
0.181805
0.0600423
5.43528
4.55075
4.29472
4.09317
3.91348
3.7483
3.5953
3.45086
3.31229
3.17803
3.04699
2.91831
2.79129
2.66539
2.54019
2.41539
2.29076
2.16618
2.04158
1.91691
1.79219
1.66744
1.54269
1.41799
1.29337
1.16889
1.04458
0.920464
0.796579
0.672959
0.549603
0.426615
0.303913
0.181774
0.0615477
5.46756
4.53996
4.29095
4.09172
3.91205
3.74729
3.5946
3.45031
3.31185
3.17769
3.04673
2.91813
2.79117
2.66532
2.54017
2.41539
2.29078
2.16622
2.04161
1.91694
1.79222
1.66746
1.5427
1.41799
1.29337
1.16888
1.04455
0.920439
0.79655
0.672933
0.549573
0.426585
0.303774
0.181792
0.0596318
5.34626
4.58411
4.30181
4.09809
3.91697
3.75089
3.59739
3.45261
3.31378
3.1793
3.04809
2.91926
2.79212
2.66613
2.54085
2.41599
2.29131
2.16669
2.04205
1.91736
1.79261
1.66784
1.54307
1.41836
1.29372
1.16922
1.04489
0.920772
0.796885
0.67327
0.549916
0.426906
0.304145
0.181916
0.0617333
5.45562
4.54539
4.28883
4.0917
3.91135
3.74699
3.59458
3.45039
3.312
3.1779
3.04702
2.91849
2.79161
2.66582
2.54071
2.41596
2.29136
2.16679
2.04216
1.91746
1.7927
1.66791
1.54312
1.41837
1.29371
1.16919
1.04483
0.920683
0.796769
0.673141
0.549769
0.426795
0.303825
0.182102
0.0569879
5.45663
4.55957
4.28724
4.09203
3.91081
3.74701
3.59509
3.45116
3.31294
3.17894
3.04811
2.91959
2.79269
2.66686
2.54167
2.41684
2.29214
2.16746
2.04273
1.91794
1.7931
1.66823
1.54338
1.41859
1.29389
1.16933
1.04495
0.920787
0.796866
0.673224
0.54984
0.426863
0.303728
0.182295
0.0545457
5.41844
4.55496
4.29389
4.09311
3.91322
3.74813
3.59522
3.45081
3.31226
3.17802
3.047
2.91833
2.79133
2.66544
2.54025
2.41545
2.29082
2.16624
2.04163
1.91696
1.79223
1.66748
1.54272
1.41802
1.2934
1.16891
1.04459
0.920473
0.796593
0.672982
0.549634
0.426641
0.303852
0.181759
0.0605107
5.45695
4.55051
4.29452
4.09299
3.91338
3.74824
3.59526
3.45083
3.31227
3.17802
3.04698
2.9183
2.79128
2.66538
2.54018
2.41538
2.29075
2.16617
2.04156
1.9169
1.79218
1.66743
1.54268
1.41798
1.29336
1.16888
1.04456
0.920454
0.796568
0.672947
0.549591
0.426604
0.303905
0.181769
0.0615504
5.41505
4.56421
4.29235
4.09425
3.91318
3.74832
3.59566
3.45131
3.31279
3.17857
3.04758
2.91895
2.79199
2.66613
2.54096
2.41616
2.29152
2.16692
2.04227
1.91756
1.79279
1.66798
1.54319
1.41844
1.29378
1.16925
1.04489
0.920744
0.796831
0.673204
0.549835
0.426857
0.303913
0.182121
0.0574722
5.52145
4.53124
4.28714
4.08997
3.91054
3.7463
3.59394
3.44983
3.31151
3.17745
3.04659
2.91806
2.79117
2.66539
2.54027
2.41553
2.29094
2.16638
2.04178
1.9171
1.79237
1.6676
1.54283
1.41811
1.29347
1.16897
1.04463
0.920497
0.796598
0.672978
0.549613
0.42663
0.30373
0.181876
0.0580951
5.36261
4.58442
4.29849
4.09742
3.91584
3.75011
3.59697
3.45238
3.31369
3.17932
3.04819
2.91943
2.79235
2.66639
2.54114
2.41629
2.29162
2.16699
2.04233
1.91761
1.79284
1.66805
1.54325
1.41851
1.29386
1.16933
1.04498
0.920841
0.796936
0.673312
0.54995
0.426955
0.304092
0.182088
0.0594073
5.35959
4.5773
4.30043
4.09711
3.91616
3.75022
3.5968
3.45207
3.31329
3.17886
3.04769
2.9189
2.7918
2.66583
2.54058
2.41574
2.29108
2.16647
2.04184
1.91716
1.79242
1.66766
1.5429
1.41818
1.29356
1.16906
1.04474
0.920619
0.796735
0.673123
0.549773
0.426771
0.30402
0.181814
0.0615335
5.48637
4.54943
4.28609
4.09086
3.90989
3.74657
3.59489
3.4511
3.31297
3.17904
3.04826
2.91977
2.79289
2.66706
2.54187
2.41702
2.29231
2.16761
2.04287
1.91807
1.79321
1.66833
1.54347
1.41866
1.29395
1.16939
1.045
0.920827
0.796901
0.673256
0.549868
0.4269
0.303699
0.182405
0.0537289
5.48598
4.54969
4.28618
4.09093
3.90993
3.7466
3.59491
3.45111
3.31298
3.17905
3.04826
2.91977
2.79289
2.66706
2.54187
2.41702
2.29231
2.16761
2.04287
1.91807
1.79321
1.66833
1.54347
1.41866
1.29395
1.16939
1.04499
0.920815
0.796864
0.673213
0.549814
0.426886
0.303763
0.182526
0.0537682
5.43866
4.5485
4.29428
4.09306
3.91333
3.74818
3.59521
3.45078
3.31223
3.17798
3.04694
2.91827
2.79125
2.66535
2.54016
2.41536
2.29073
2.16615
2.04154
1.91688
1.79216
1.6674
1.54266
1.41795
1.29334
1.16885
1.04454
0.920428
0.796541
0.672922
0.549564
0.426577
0.303866
0.181752
0.061297
5.44288
4.54741
4.29406
4.09301
3.91329
3.74815
3.5952
3.45077
3.31223
3.17798
3.04696
2.91828
2.79128
2.66538
2.54019
2.41539
2.29078
2.1662
2.04159
1.91693
1.79221
1.66746
1.54271
1.418
1.29339
1.16891
1.04459
0.920477
0.79659
0.672969
0.54961
0.426621
0.303903
0.181801
0.0612194
5.45399
4.54728
4.29228
4.09204
3.91257
3.74768
3.59488
3.45054
3.31205
3.17785
3.04686
2.91822
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04157
1.9169
1.79218
1.66743
1.54268
1.41797
1.29336
1.16887
1.04455
0.920442
0.796563
0.67295
0.549601
0.426609
0.303835
0.181744
0.0606389
5.47225
4.54731
4.29213
4.09192
3.91251
3.74765
3.59486
3.45053
3.31204
3.17785
3.04685
2.91821
2.79122
2.66535
2.54016
2.41537
2.29075
2.16618
2.04157
1.9169
1.79218
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.92044
0.796561
0.672948
0.549599
0.426607
0.303836
0.181743
0.060675
5.5546
4.52275
4.2827
4.08743
3.90825
3.74486
3.59304
3.44924
3.31114
3.17727
3.04657
2.91819
2.79144
2.66576
2.54072
2.41602
2.29146
2.1669
2.04228
1.91758
1.79281
1.668
1.5432
1.41844
1.29376
1.16922
1.04485
0.920696
0.796771
0.673139
0.549759
0.42679
0.303762
0.182148
0.0559871
5.43732
4.55769
4.2895
4.09235
3.91168
3.74731
3.59495
3.45079
3.31241
3.1783
3.04739
2.91883
2.79193
2.66611
2.54097
2.41619
2.29157
2.16696
2.04231
1.91759
1.79281
1.668
1.5432
1.41844
1.29378
1.16924
1.04488
0.920735
0.796827
0.673194
0.549822
0.426834
0.303813
0.18214
0.0565508
5.60578
4.50736
4.27864
4.085
3.90628
3.74366
3.59233
3.44884
3.311
3.17734
3.04684
2.91863
2.79201
2.66643
2.54145
2.41677
2.29219
2.16759
2.04292
1.91816
1.79333
1.66847
1.54361
1.4188
1.29409
1.16952
1.04513
0.920957
0.797028
0.673377
0.549977
0.426977
0.303765
0.182394
0.0543359
5.59849
4.5083
4.27884
4.08513
3.90633
3.74368
3.59233
3.44883
3.31097
3.17731
3.04679
2.91858
2.79197
2.66639
2.54141
2.41673
2.29216
2.16756
2.04289
1.91814
1.79331
1.66845
1.5436
1.41879
1.29408
1.16951
1.04511
0.920933
0.79699
0.673348
0.549952
0.426988
0.303818
0.18242
0.0543345
5.39768
4.58627
4.29262
4.09561
3.91355
3.74862
3.59614
3.45194
3.31355
3.17943
3.0485
2.91991
2.79294
2.66706
2.54183
2.41696
2.29225
2.16755
2.04282
1.91803
1.79319
1.66833
1.54348
1.41869
1.294
1.16944
1.04506
0.920902
0.796982
0.67334
0.549961
0.426969
0.303936
0.182268
0.056101
5.51894
4.5303
4.28669
4.08978
3.91036
3.7462
3.59389
3.4498
3.3115
3.17746
3.04662
2.91811
2.79124
2.66546
2.54036
2.41562
2.29104
2.16649
2.04189
1.91722
1.79248
1.66771
1.54294
1.41821
1.29357
1.16906
1.04471
0.920577
0.796674
0.673051
0.549682
0.426698
0.303781
0.181946
0.0578904
5.45064
4.54615
4.29023
4.09147
3.91171
3.74709
3.59451
3.45029
3.31188
3.17775
3.04682
2.91824
2.7913
2.66547
2.54032
2.41555
2.29095
2.16638
2.04177
1.9171
1.79237
1.66761
1.54285
1.41813
1.2935
1.169
1.04467
0.920544
0.796657
0.67304
0.549686
0.426693
0.303808
0.181867
0.0588984
5.57825
4.50981
4.27915
4.08538
3.90653
3.74379
3.59238
3.44883
3.31093
3.17724
3.0467
2.91846
2.79183
2.66623
2.54124
2.41656
2.29199
2.1674
2.04274
1.918
1.79318
1.66833
1.54349
1.41869
1.29399
1.16942
1.04503
0.920855
0.796916
0.673276
0.549884
0.426924
0.30378
0.18236
0.0545228
5.58188
4.50853
4.27883
4.0852
3.90647
3.74375
3.59236
3.44883
3.31095
3.17727
3.04673
2.91849
2.79186
2.66626
2.54127
2.41658
2.29201
2.16742
2.04275
1.918
1.79319
1.66833
1.54349
1.41869
1.29398
1.16942
1.04503
0.920865
0.796941
0.673295
0.549903
0.426909
0.303724
0.182319
0.054526
5.26525
4.64058
4.30933
4.10376
3.92078
3.75302
3.59892
3.45394
3.31502
3.18051
3.04928
2.92046
2.79333
2.66733
2.54204
2.41715
2.29244
2.16777
2.04308
1.91833
1.79353
1.6687
1.54389
1.41912
1.29445
1.1699
1.04553
0.921372
0.797454
0.673809
0.550437
0.427408
0.30459
0.182428
0.0611407
5.52044
4.52947
4.28625
4.08955
3.91014
3.74605
3.59378
3.44972
3.31144
3.17742
3.04658
2.91808
2.79123
2.66546
2.54036
2.41563
2.29106
2.1665
2.0419
1.91722
1.79249
1.66771
1.54294
1.41821
1.29356
1.16905
1.0447
0.920566
0.796661
0.673038
0.549669
0.426687
0.303757
0.181945
0.0576563
5.30722
4.61359
4.30494
4.10109
3.91859
3.75181
3.59816
3.45336
3.31453
3.18006
3.04884
2.91999
2.79283
2.66681
2.5415
2.41659
2.29188
2.16721
2.04253
1.9178
1.79301
1.66821
1.54341
1.41866
1.294
1.16947
1.04512
0.920975
0.797072
0.673447
0.550088
0.427077
0.304256
0.182109
0.0606615
5.50914
4.53132
4.28549
4.08887
3.90956
3.74565
3.59353
3.44958
3.31138
3.17742
3.04663
2.91817
2.79134
2.66559
2.54051
2.41579
2.29122
2.16666
2.04206
1.91738
1.79264
1.66786
1.54308
1.41834
1.29369
1.16916
1.04481
0.920672
0.796771
0.673144
0.549778
0.426784
0.303795
0.182023
0.0572535
5.45732
4.54902
4.2943
4.09299
3.91333
3.74819
3.59523
3.4508
3.31224
3.17799
3.04696
2.91828
2.79127
2.66537
2.54017
2.41537
2.29075
2.16617
2.04156
1.9169
1.79218
1.66742
1.54268
1.41797
1.29336
1.16888
1.04456
0.920449
0.796562
0.672941
0.549583
0.426595
0.303889
0.181773
0.0613836
5.46351
4.54758
4.29389
4.09285
3.9132
3.7481
3.59516
3.45075
3.31221
3.17797
3.04694
2.91827
2.79127
2.66537
2.54018
2.41538
2.29077
2.16619
2.04158
1.91692
1.7922
1.66744
1.5427
1.41799
1.29338
1.16889
1.04458
0.920467
0.79658
0.672958
0.549599
0.42661
0.303894
0.181794
0.0612131
5.56125
4.51257
4.28014
4.08592
3.90682
3.74396
3.59247
3.44888
3.31095
3.17723
3.04668
2.91842
2.79177
2.66617
2.54118
2.4165
2.29193
2.16734
2.04269
1.91795
1.79313
1.66829
1.54345
1.41865
1.29395
1.16939
1.045
0.92083
0.796892
0.673253
0.549861
0.426902
0.303764
0.182348
0.054556
5.568
4.51043
4.27927
4.08543
3.90662
3.74384
3.59241
3.44886
3.31096
3.17726
3.04672
2.91847
2.79182
2.66622
2.54122
2.41654
2.29197
2.16738
2.04272
1.91797
1.79316
1.66831
1.54346
1.41867
1.29397
1.16941
1.04502
0.920853
0.796929
0.673284
0.549893
0.426901
0.303725
0.182309
0.0546052
5.42836
4.55099
4.29275
4.09334
3.91294
3.74798
3.59518
3.45079
3.31226
3.17805
3.04706
2.91843
2.79147
2.66561
2.54045
2.41567
2.29105
2.16648
2.04186
1.91718
1.79245
1.66768
1.54291
1.41819
1.29356
1.16905
1.04471
0.920587
0.796691
0.673073
0.549712
0.426727
0.303865
0.181929
0.0589593
5.34701
4.58521
4.30133
4.09779
3.91672
3.75067
3.5972
3.45244
3.31363
3.17917
3.04797
2.91916
2.79204
2.66605
2.54078
2.41592
2.29125
2.16663
2.04199
1.9173
1.79255
1.66778
1.54302
1.4183
1.29367
1.16917
1.04484
0.920718
0.796834
0.67322
0.549868
0.426859
0.30409
0.181877
0.0615869
5.40042
4.5872
4.29243
4.09569
3.91346
3.74857
3.59613
3.45195
3.31357
3.17948
3.04857
2.92
2.79306
2.66719
2.54198
2.41712
2.2924
2.1677
2.04296
1.91816
1.7933
1.66843
1.54357
1.41877
1.29407
1.1695
1.04512
0.920953
0.797028
0.673382
0.549999
0.427006
0.303954
0.182316
0.0557999
5.41198
4.55816
4.29393
4.09428
3.91364
3.74853
3.59565
3.4512
3.31261
3.17834
3.04731
2.91865
2.79166
2.66578
2.5406
2.4158
2.29117
2.16658
2.04196
1.91727
1.79253
1.66775
1.54298
1.41825
1.29361
1.1691
1.04476
0.920628
0.796729
0.673111
0.54975
0.426764
0.303896
0.181953
0.0589579
5.29063
4.62442
4.30666
4.10235
3.91946
3.75229
3.59849
3.45363
3.31479
3.18034
3.04915
2.92034
2.7932
2.66719
2.54189
2.41698
2.29226
2.16759
2.04289
1.91814
1.79335
1.66852
1.54371
1.41895
1.29427
1.16973
1.04536
0.921204
0.797287
0.67365
0.55028
0.427259
0.304428
0.182269
0.0606567
5.43151
4.55252
4.29182
4.09252
3.91247
3.74763
3.59492
3.4506
3.31213
3.17795
3.04698
2.91836
2.7914
2.66555
2.54038
2.4156
2.29099
2.16641
2.0418
1.91713
1.79239
1.66763
1.54287
1.41815
1.29352
1.16902
1.04469
0.920563
0.796675
0.673059
0.549705
0.426711
0.303838
0.181879
0.0591207
5.59791
4.50922
4.27897
4.08522
3.90642
3.74374
3.59237
3.44885
3.31097
3.1773
3.04678
2.91856
2.79193
2.66634
2.54136
2.41669
2.29211
2.16752
2.04286
1.91811
1.79328
1.66843
1.54357
1.41877
1.29407
1.16949
1.0451
0.92092
0.796977
0.673335
0.54994
0.426977
0.303819
0.18241
0.0544334
5.59843
4.50729
4.27852
4.08501
3.90633
3.74369
3.59234
3.44885
3.31099
3.17732
3.04681
2.91859
2.79197
2.66638
2.54139
2.41671
2.29213
2.16754
2.04287
1.91811
1.79329
1.66843
1.54357
1.41877
1.29406
1.16949
1.0451
0.920929
0.797002
0.673352
0.549955
0.426957
0.303757
0.18237
0.0544125
5.59997
4.50884
4.27885
4.08514
3.90643
3.74372
3.59234
3.44881
3.31093
3.17725
3.04672
2.91848
2.79184
2.66624
2.54125
2.41657
2.29199
2.1674
2.04273
1.91799
1.79317
1.66831
1.54347
1.41867
1.29397
1.1694
1.04502
0.92085
0.796927
0.673281
0.549889
0.426896
0.303711
0.182306
0.0545144
5.59747
4.51033
4.27919
4.08532
3.90649
3.74376
3.59235
3.4488
3.31091
3.17721
3.04667
2.91843
2.79179
2.66618
2.54119
2.41651
2.29194
2.16735
2.04269
1.91795
1.79314
1.66829
1.54344
1.41865
1.29395
1.16938
1.04499
0.92082
0.796882
0.673244
0.549854
0.426895
0.303754
0.182332
0.0545234
5.43245
4.54793
4.29356
4.09298
3.91306
3.74798
3.59509
3.45068
3.31214
3.17791
3.04691
2.91825
2.79126
2.66538
2.5402
2.4154
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.5427
1.418
1.29338
1.16889
1.04457
0.920455
0.796568
0.672953
0.549596
0.426607
0.303839
0.181779
0.0604393
5.48455
4.53597
4.28599
4.08996
3.90991
3.74602
3.59389
3.44988
3.31162
3.17764
3.04685
2.9184
2.7916
2.66587
2.5408
2.41608
2.29149
2.16692
2.04229
1.91758
1.79281
1.668
1.5432
1.41844
1.29377
1.16923
1.04487
0.920712
0.79679
0.673158
0.549779
0.426811
0.303788
0.182177
0.0560809
5.20572
4.66691
4.31898
4.10799
3.92461
3.75543
3.60044
3.45507
3.3159
3.18119
3.04982
2.92089
2.79368
2.66762
2.5423
2.4174
2.2927
2.16805
2.04338
1.91866
1.79389
1.66908
1.54427
1.41951
1.29484
1.1703
1.04593
0.92177
0.797857
0.674219
0.550856
0.427822
0.305088
0.182834
0.0640209
5.44675
4.54363
4.29181
4.0923
3.91239
3.74754
3.59479
3.45047
3.31199
3.17781
3.04685
2.91823
2.79128
2.66543
2.54027
2.4155
2.2909
2.16633
2.04172
1.91706
1.79233
1.66757
1.54282
1.4181
1.29348
1.16898
1.04465
0.920535
0.796643
0.673026
0.549665
0.426675
0.303851
0.181871
0.0595502
5.58862
4.50477
4.2784
4.08482
3.90603
3.7435
3.59222
3.44876
3.31094
3.17731
3.04683
2.91865
2.79206
2.66649
2.54152
2.41684
2.29226
2.16766
2.04298
1.91821
1.79337
1.6685
1.54364
1.41883
1.29412
1.16954
1.04514
0.920958
0.797014
0.673372
0.54997
0.427003
0.303794
0.182432
0.0539986
5.59216
4.50366
4.27816
4.08468
3.90596
3.74345
3.5922
3.44875
3.31094
3.17732
3.04684
2.91866
2.79207
2.6665
2.54153
2.41685
2.29226
2.16765
2.04297
1.9182
1.79337
1.6685
1.54363
1.41882
1.29411
1.16954
1.04514
0.920968
0.797039
0.673384
0.549973
0.426964
0.303718
0.182403
0.0540103
5.4725
4.54229
4.2866
4.09037
3.91025
3.74631
3.59417
3.45015
3.31188
3.17788
3.04707
2.91859
2.79176
2.66601
2.54092
2.41617
2.29157
2.16698
2.04234
1.91763
1.79285
1.66804
1.54323
1.41847
1.2938
1.16926
1.04489
0.920743
0.796832
0.673197
0.549821
0.426834
0.303773
0.182176
0.0560213
5.34413
4.58843
4.30133
4.09835
3.91684
3.75075
3.59732
3.45258
3.31378
3.17933
3.04814
2.91933
2.79221
2.66623
2.54096
2.41609
2.29142
2.16679
2.04214
1.91744
1.79268
1.6679
1.54312
1.41839
1.29375
1.16925
1.0449
0.920777
0.796884
0.673268
0.549913
0.426908
0.304107
0.181956
0.0608646
5.41323
4.55492
4.29604
4.09409
3.91405
3.74869
3.59559
3.45107
3.31246
3.17816
3.0471
2.9184
2.79137
2.66546
2.54025
2.41544
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.29341
1.16892
1.0446
0.920492
0.796607
0.672989
0.549634
0.426643
0.303926
0.181779
0.0614391
5.5319
4.52267
4.28284
4.08761
3.90834
3.74492
3.59308
3.44927
3.31117
3.1773
3.0466
2.91822
2.79147
2.66579
2.54075
2.41606
2.29149
2.16693
2.04231
1.91761
1.79284
1.66803
1.54322
1.41846
1.29379
1.16925
1.04487
0.920716
0.796791
0.673157
0.549777
0.426808
0.303776
0.18217
0.0559557
5.5273
4.52379
4.28322
4.08781
3.90851
3.74502
3.59314
3.4493
3.31118
3.17729
3.04658
2.91819
2.79142
2.66573
2.54069
2.41599
2.29143
2.16687
2.04225
1.91755
1.79279
1.66798
1.54318
1.41842
1.29375
1.16921
1.04484
0.920687
0.796764
0.673132
0.549753
0.426784
0.303763
0.182135
0.0561053
5.36034
4.59891
4.29667
4.09754
3.91535
3.74968
3.59677
3.45235
3.31379
3.17954
3.04851
2.91982
2.79278
2.66685
2.5416
2.41673
2.29203
2.16736
2.04266
1.9179
1.79309
1.66826
1.54343
1.41866
1.29398
1.16944
1.04507
0.920912
0.796998
0.673361
0.549989
0.42699
0.304042
0.182194
0.0576542
5.46451
4.5386
4.28985
4.09146
3.91161
3.74702
3.59444
3.45021
3.31179
3.17766
3.04675
2.91818
2.79126
2.66544
2.5403
2.41554
2.29095
2.16639
2.04178
1.91711
1.79238
1.66761
1.54285
1.41813
1.2935
1.16899
1.04466
0.920532
0.796636
0.673017
0.549654
0.426668
0.303795
0.181894
0.0586598
5.38951
4.58901
4.29306
4.0963
3.9139
3.74878
3.59622
3.45197
3.31355
3.17943
3.04852
2.91994
2.793
2.66714
2.54194
2.41709
2.29239
2.1677
2.04297
1.91818
1.79333
1.66846
1.54361
1.4188
1.2941
1.16954
1.04515
0.920978
0.797043
0.673399
0.550015
0.427038
0.304034
0.182338
0.0561112
5.28782
4.61991
4.30796
4.10217
3.91967
3.75252
3.59861
3.45369
3.31479
3.18026
3.049
2.92013
2.79295
2.6669
2.54158
2.41666
2.29194
2.16727
2.04259
1.91786
1.79308
1.66827
1.54348
1.41874
1.29408
1.16956
1.0452
0.921067
0.797169
0.673547
0.550188
0.427166
0.304383
0.182141
0.0619541
5.512
4.52835
4.28578
4.08934
3.90986
3.74588
3.59369
3.44968
3.31142
3.17743
3.04663
2.91816
2.79133
2.66559
2.54051
2.4158
2.29123
2.16667
2.04207
1.91739
1.79265
1.66786
1.54308
1.41834
1.29369
1.16916
1.04481
0.920665
0.796752
0.673124
0.54975
0.42677
0.303809
0.182052
0.0572212
5.3621
4.58293
4.29883
4.09739
3.91592
3.75015
3.59695
3.45232
3.31359
3.1792
3.04806
2.91929
2.7922
2.66625
2.541
2.41614
2.29148
2.16685
2.0422
1.91749
1.79273
1.66794
1.54316
1.41842
1.29377
1.16926
1.04491
0.920776
0.796875
0.673255
0.549896
0.4269
0.304057
0.182015
0.0597523
5.45392
4.54178
4.29108
4.09213
3.91214
3.74738
3.59469
3.45039
3.31193
3.17777
3.04682
2.91823
2.79129
2.66545
2.5403
2.41554
2.29094
2.16637
2.04176
1.91709
1.79236
1.6676
1.54284
1.41812
1.29349
1.16899
1.04466
0.920532
0.796637
0.673019
0.549657
0.42667
0.303816
0.181884
0.0590138
5.35126
4.59665
4.29907
4.09849
3.9163
3.75038
3.59724
3.45267
3.31399
3.17964
3.04852
2.91977
2.79268
2.66672
2.54145
2.41658
2.29188
2.16723
2.04254
1.9178
1.79301
1.66819
1.54338
1.41862
1.29395
1.16941
1.04505
0.920894
0.79698
0.67335
0.549983
0.426989
0.3041
0.182139
0.0587096
5.37036
4.57751
4.29779
4.09605
3.91517
3.74954
3.59636
3.45177
3.31308
3.17873
3.04761
2.91887
2.79181
2.66587
2.54063
2.4158
2.29115
2.16654
2.0419
1.91721
1.79247
1.6677
1.54293
1.41821
1.29358
1.16908
1.04475
0.920624
0.796738
0.673124
0.549774
0.426776
0.303961
0.181873
0.0603479
5.51361
4.52723
4.28517
4.08898
3.90957
3.74569
3.59355
3.44956
3.31132
3.17734
3.04655
2.91808
2.79126
2.66551
2.54044
2.41572
2.29114
2.16659
2.04198
1.9173
1.79255
1.66776
1.54298
1.41824
1.29359
1.16907
1.04471
0.920569
0.796658
0.673033
0.549662
0.426687
0.303722
0.181989
0.0569958
5.53263
4.52728
4.28503
4.08888
3.90954
3.74568
3.59355
3.44957
3.31133
3.17736
3.04657
2.9181
2.79128
2.66554
2.54046
2.41575
2.29118
2.16662
2.04201
1.91733
1.79259
1.6678
1.54302
1.41828
1.29362
1.1691
1.04474
0.920602
0.79669
0.673064
0.549692
0.426715
0.303749
0.18201
0.0570289
5.45915
4.53994
4.28981
4.09157
3.91161
3.74703
3.59446
3.45022
3.31181
3.17768
3.04677
2.9182
2.79128
2.66547
2.54034
2.41558
2.29099
2.16642
2.04182
1.91714
1.79241
1.66764
1.54287
1.41815
1.29351
1.169
1.04466
0.920534
0.796635
0.673016
0.549652
0.426669
0.303781
0.181903
0.0583758
5.49423
4.53088
4.28599
4.08953
3.90989
3.74592
3.59374
3.44972
3.31146
3.17747
3.04667
2.9182
2.79138
2.66564
2.54056
2.41584
2.29127
2.16671
2.0421
1.91742
1.79267
1.66788
1.54309
1.41835
1.29369
1.16916
1.04481
0.92066
0.796745
0.673117
0.549742
0.426767
0.303791
0.182075
0.0569198
5.24453
4.6462
4.31344
4.10537
3.92217
3.75396
3.59952
3.45438
3.31535
3.18075
3.04945
2.92057
2.79339
2.66736
2.54204
2.41712
2.29239
2.16772
2.04302
1.91827
1.79348
1.66866
1.54385
1.41909
1.29442
1.16989
1.04552
0.921375
0.797468
0.673837
0.550475
0.427446
0.304676
0.182418
0.0626377
5.25767
4.64119
4.31136
4.10463
3.92141
3.75347
3.59922
3.45416
3.31519
3.18063
3.04938
2.92052
2.79336
2.66733
2.54202
2.4171
2.29236
2.16768
2.04298
1.91822
1.79342
1.6686
1.54379
1.41903
1.29436
1.16982
1.04546
0.921306
0.797396
0.673763
0.550398
0.427371
0.304577
0.182349
0.0617541
5.43085
4.54928
4.29437
4.09333
3.91337
3.74819
3.59523
3.45079
3.31223
3.17798
3.04696
2.91829
2.79129
2.6654
2.54021
2.41541
2.29079
2.16622
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04458
0.920471
0.796584
0.672966
0.549608
0.426619
0.303872
0.181786
0.0607966
5.21345
4.66318
4.31777
4.10752
3.92411
3.75512
3.60025
3.45493
3.31578
3.1811
3.04975
2.92083
2.79363
2.66759
2.54228
2.41738
2.29269
2.16804
2.04338
1.91866
1.79389
1.66908
1.54428
1.41952
1.29485
1.1703
1.04593
0.921779
0.797867
0.674231
0.550868
0.427835
0.30509
0.182834
0.0636226
5.42228
4.56884
4.29071
4.09366
3.91248
3.74797
3.59559
3.4514
3.31299
3.17884
3.0479
2.9193
2.79235
2.6665
2.54132
2.4165
2.29184
2.1672
2.04252
1.91777
1.79297
1.66814
1.54332
1.41855
1.29387
1.16933
1.04496
0.920809
0.796896
0.67326
0.549884
0.426896
0.303868
0.182211
0.0563471
5.21267
4.6634
4.31781
4.10736
3.92412
3.75513
3.60024
3.45492
3.31577
3.18109
3.04973
2.92081
2.7936
2.66755
2.54223
2.41733
2.29262
2.16797
2.04329
1.91857
1.79379
1.66898
1.54417
1.41941
1.29475
1.17021
1.04584
0.921693
0.797785
0.674151
0.550791
0.427758
0.30502
0.182765
0.0638461
5.31727
4.62089
4.30181
4.10059
3.91776
3.75114
3.59775
3.45312
3.31443
3.1801
3.04901
2.9203
2.79326
2.66732
2.54207
2.4172
2.2925
2.16782
2.04311
1.91834
1.79352
1.66866
1.54381
1.41902
1.29431
1.16975
1.04536
0.921185
0.797254
0.673602
0.55022
0.427202
0.304292
0.182314
0.0586103
5.37427
4.59648
4.29509
4.09706
3.91472
3.74931
3.59659
3.45227
3.3138
3.17962
3.04865
2.92002
2.79303
2.66713
2.54189
2.41702
2.2923
2.16761
2.04289
1.9181
1.79326
1.6684
1.54355
1.41876
1.29406
1.16951
1.04513
0.920966
0.797045
0.673402
0.550024
0.427026
0.304031
0.182272
0.0567653
5.47383
4.5539
4.2862
4.09135
3.91023
3.7467
3.59493
3.45108
3.31292
3.17896
3.04815
2.91964
2.79275
2.66692
2.54174
2.4169
2.2922
2.16752
2.04279
1.91799
1.79315
1.66827
1.54342
1.41862
1.29392
1.16935
1.04496
0.92079
0.796846
0.6732
0.549807
0.426868
0.303762
0.182439
0.0540949
5.47356
4.55407
4.28626
4.09131
3.91022
3.74669
3.59491
3.45107
3.31291
3.17896
3.04815
2.91965
2.79276
2.66693
2.54175
2.41691
2.2922
2.16752
2.04278
1.91799
1.79314
1.66827
1.54341
1.41861
1.29391
1.16934
1.04496
0.920794
0.79687
0.673226
0.549841
0.426868
0.303699
0.182341
0.0540773
5.4677
4.54172
4.28743
4.09092
3.91068
3.74655
3.59428
3.45017
3.31184
3.17779
3.04696
2.91846
2.79161
2.66585
2.54076
2.41602
2.29143
2.16685
2.04222
1.91752
1.79275
1.66795
1.54315
1.4184
1.29373
1.1692
1.04484
0.920688
0.79677
0.67314
0.549764
0.426794
0.303797
0.182136
0.0564734
5.48368
4.55112
4.28631
4.09118
3.91012
3.74672
3.59499
3.45116
3.31301
3.17907
3.04827
2.91978
2.79289
2.66707
2.54188
2.41704
2.29233
2.16763
2.04289
1.91809
1.79324
1.66836
1.54349
1.41869
1.29399
1.16942
1.04502
0.920846
0.796896
0.673246
0.549848
0.426915
0.303794
0.182533
0.0538851
5.48407
4.55077
4.28621
4.09108
3.91007
3.74668
3.59496
3.45114
3.313
3.17906
3.04827
2.91978
2.7929
2.66707
2.54188
2.41703
2.29232
2.16763
2.04289
1.91808
1.79323
1.66835
1.54349
1.41868
1.29398
1.16941
1.04502
0.920851
0.796925
0.673279
0.54989
0.42692
0.303726
0.182417
0.0538503
5.44517
4.54638
4.29344
4.09277
3.91297
3.74791
3.59502
3.45063
3.3121
3.17788
3.04687
2.91822
2.79123
2.66535
2.54017
2.41537
2.29076
2.16618
2.04158
1.91691
1.79219
1.66743
1.54268
1.41798
1.29336
1.16887
1.04455
0.920441
0.796554
0.672935
0.549577
0.426588
0.303837
0.181771
0.0606322
5.40663
4.56231
4.29414
4.09459
3.91374
3.7486
3.59573
3.45127
3.31269
3.17842
3.04739
2.91873
2.79173
2.66585
2.54066
2.41586
2.29123
2.16664
2.04201
1.91732
1.79257
1.66779
1.54301
1.41828
1.29364
1.16913
1.04478
0.920648
0.796748
0.673129
0.549769
0.426785
0.303906
0.181985
0.0587273
5.47703
4.55404
4.28636
4.09123
3.91005
3.7466
3.59488
3.45109
3.31298
3.17907
3.04832
2.91986
2.79299
2.66717
2.54198
2.41711
2.29238
2.16767
2.04291
1.91808
1.79321
1.66832
1.54345
1.41863
1.29392
1.16935
1.04496
0.920788
0.796861
0.673215
0.549827
0.426859
0.303669
0.182353
0.0537683
5.47631
4.55436
4.28642
4.09133
3.9101
3.74664
3.59491
3.4511
3.31297
3.17906
3.0483
2.91984
2.79298
2.66716
2.54197
2.41711
2.29239
2.16767
2.04292
1.91809
1.79322
1.66833
1.54345
1.41864
1.29393
1.16936
1.04496
0.920778
0.796828
0.673177
0.54978
0.426848
0.303732
0.182464
0.0537985
5.34685
4.5842
4.30172
4.09811
3.91691
3.75082
3.59733
3.45256
3.31373
3.17926
3.04806
2.91924
2.79211
2.66612
2.54085
2.41598
2.29131
2.16669
2.04205
1.91735
1.79261
1.66783
1.54307
1.41835
1.29372
1.16921
1.04488
0.92076
0.796873
0.673258
0.549904
0.426896
0.304129
0.181913
0.061563
5.4293
4.54953
4.29422
4.0933
3.9133
3.74814
3.59519
3.45076
3.3122
3.17796
3.04694
2.91828
2.79127
2.66539
2.5402
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66745
1.5427
1.41799
1.29338
1.16889
1.04457
0.920454
0.796568
0.672951
0.549595
0.426605
0.303847
0.18177
0.0606134
5.19583
4.67217
4.32036
4.10856
3.92523
3.7558
3.60066
3.45524
3.31603
3.18129
3.0499
2.92096
2.79374
2.66767
2.54235
2.41744
2.29274
2.16809
2.04343
1.91872
1.79396
1.66917
1.54438
1.41964
1.29499
1.17046
1.0461
0.921956
0.798051
0.674419
0.551061
0.428029
0.305307
0.183067
0.0645154
5.45303
4.54814
4.29274
4.09225
3.91272
3.74778
3.59495
3.4506
3.3121
3.17789
3.0469
2.91825
2.79126
2.66538
2.5402
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.2934
1.16891
1.04459
0.920481
0.7966
0.672986
0.549636
0.426643
0.303876
0.181776
0.060776
5.44535
4.54643
4.29032
4.0923
3.91198
3.74736
3.59478
3.4505
3.31205
3.1779
3.04697
2.91839
2.79147
2.66565
2.54052
2.41576
2.29115
2.16658
2.04196
1.91727
1.79252
1.66774
1.54296
1.41823
1.29358
1.16907
1.04472
0.920583
0.796678
0.673057
0.549692
0.426714
0.303793
0.181973
0.0578159
5.35152
4.59292
4.29919
4.0982
3.91625
3.75037
3.59721
3.45263
3.31395
3.17959
3.04846
2.91971
2.79262
2.66666
2.5414
2.41653
2.29184
2.1672
2.04252
1.91779
1.793
1.66819
1.54339
1.41863
1.29396
1.16943
1.04507
0.920919
0.797007
0.673379
0.550012
0.427016
0.304138
0.182146
0.0591263
5.52734
4.52223
4.28226
4.0876
3.90795
3.74479
3.5931
3.44935
3.31131
3.1775
3.04687
2.91856
2.79187
2.66623
2.54121
2.41651
2.29193
2.16734
2.04268
1.91794
1.79313
1.66829
1.54345
1.41866
1.29397
1.16941
1.04502
0.920848
0.796909
0.673267
0.549875
0.426919
0.303793
0.182398
0.0545998
5.52778
4.52181
4.28208
4.08741
3.90786
3.74472
3.59306
3.44933
3.31131
3.17751
3.04689
2.91858
2.79189
2.66624
2.54122
2.41652
2.29194
2.16734
2.04268
1.91794
1.79313
1.66828
1.54344
1.41865
1.29396
1.1694
1.04502
0.920853
0.79693
0.673285
0.549894
0.426906
0.303734
0.182344
0.0545833
5.41739
4.55374
4.295
4.09334
3.91359
3.74838
3.59537
3.45091
3.31233
3.17806
3.04702
2.91833
2.7913
2.6654
2.54019
2.41538
2.29076
2.16618
2.04156
1.9169
1.79217
1.66742
1.54267
1.41797
1.29335
1.16887
1.04455
0.920444
0.796561
0.672945
0.549595
0.426607
0.303892
0.181741
0.0614744
5.50474
4.53195
4.28562
4.08891
3.90964
3.74569
3.59353
3.44955
3.31133
3.17735
3.04654
2.91806
2.79121
2.66544
2.54034
2.41561
2.29103
2.16646
2.04186
1.91718
1.79244
1.66766
1.54289
1.41815
1.29351
1.169
1.04465
0.92052
0.796625
0.673005
0.549646
0.426657
0.303687
0.181895
0.0573874
5.41998
4.55369
4.29482
4.09325
3.9135
3.74832
3.59532
3.45088
3.31231
3.17805
3.04701
2.91833
2.79131
2.66541
2.54022
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.41801
1.29339
1.16891
1.04459
0.920479
0.796596
0.672981
0.549631
0.426642
0.303916
0.181771
0.0613647
5.45231
4.55843
4.28759
4.0924
3.91128
3.74731
3.59522
3.45117
3.31283
3.17875
3.04786
2.91931
2.79241
2.66659
2.54142
2.41661
2.29195
2.1673
2.0426
1.91784
1.79302
1.66817
1.54334
1.41856
1.29387
1.16932
1.04494
0.920781
0.796851
0.673213
0.549829
0.426873
0.303814
0.182318
0.0551251
5.36937
4.58944
4.29649
4.09727
3.91523
3.74969
3.59677
3.45232
3.31374
3.17946
3.0484
2.9197
2.79266
2.66673
2.54148
2.41662
2.29193
2.16728
2.04259
1.91784
1.79304
1.66821
1.54339
1.41862
1.29395
1.16941
1.04504
0.92089
0.796972
0.673341
0.549972
0.426985
0.304062
0.18219
0.0579207
5.25329
4.64497
4.31143
4.10496
3.92163
3.75357
3.59929
3.45423
3.31525
3.1807
3.04945
2.92062
2.79348
2.66749
2.54221
2.41733
2.29263
2.16798
2.0433
1.91856
1.79377
1.66895
1.54413
1.41937
1.29469
1.17014
1.04577
0.921602
0.797678
0.674032
0.550656
0.427621
0.30481
0.182595
0.0615473
5.47706
4.53608
4.2894
4.09107
3.91154
3.74697
3.59439
3.45016
3.31175
3.17762
3.0467
2.91811
2.79118
2.66535
2.54021
2.41545
2.29085
2.16628
2.04168
1.91701
1.79228
1.66752
1.54277
1.41805
1.29343
1.16893
1.0446
0.920481
0.796589
0.672972
0.549609
0.426621
0.303778
0.181838
0.0591327
5.40086
4.56085
4.29627
4.09438
3.91421
3.74882
3.59571
3.45118
3.31255
3.17825
3.04718
2.91847
2.79143
2.66552
2.54031
2.4155
2.29087
2.16628
2.04167
1.91699
1.79227
1.66751
1.54276
1.41806
1.29344
1.16895
1.04463
0.920515
0.796634
0.673021
0.549673
0.426679
0.303924
0.181773
0.0611338
5.34501
4.59431
4.30045
4.09853
3.91657
3.7505
3.59718
3.45251
3.31376
3.17936
3.0482
2.91941
2.79231
2.66634
2.54108
2.41622
2.29154
2.1669
2.04224
1.91752
1.79276
1.66796
1.54317
1.41843
1.29378
1.16926
1.04491
0.92077
0.796869
0.67325
0.549893
0.426897
0.304049
0.182005
0.05965
5.49315
4.53283
4.28564
4.08899
3.9096
3.74567
3.59354
3.44958
3.31137
3.1774
3.0466
2.91813
2.79129
2.66554
2.54046
2.41573
2.29115
2.16659
2.04198
1.9173
1.79255
1.66777
1.54299
1.41825
1.2936
1.16909
1.04473
0.920597
0.796698
0.673073
0.549709
0.426719
0.303729
0.181971
0.0571424
5.57992
4.50586
4.27875
4.085
3.90616
3.74358
3.59227
3.4488
3.31096
3.17733
3.04684
2.91865
2.79204
2.66647
2.54149
2.41681
2.29223
2.16763
2.04295
1.91818
1.79335
1.66848
1.54362
1.41881
1.2941
1.16953
1.04514
0.920963
0.797034
0.67338
0.549973
0.426968
0.303732
0.182407
0.05409
5.42581
4.55153
4.29521
4.0937
3.91365
3.74839
3.59536
3.45089
3.31231
3.17805
3.04701
2.91833
2.79132
2.66542
2.54023
2.41543
2.29081
2.16623
2.04162
1.91695
1.79223
1.66748
1.54273
1.41802
1.29341
1.16892
1.0446
0.92049
0.796603
0.672984
0.549627
0.426637
0.303903
0.181797
0.0610509
5.58866
4.50436
4.27814
4.08474
3.90606
3.74352
3.59225
3.44879
3.31097
3.17734
3.04685
2.91866
2.79206
2.66648
2.5415
2.41682
2.29224
2.16763
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.2941
1.16953
1.04514
0.920963
0.797034
0.673381
0.549975
0.426971
0.30374
0.182401
0.0541352
5.5779
4.50775
4.27906
4.08521
3.9063
3.74366
3.59232
3.44881
3.31096
3.17731
3.04681
2.91861
2.792
2.66642
2.54145
2.41677
2.29219
2.1676
2.04292
1.91816
1.79334
1.66847
1.54361
1.41881
1.2941
1.16952
1.04512
0.920944
0.797001
0.673358
0.549959
0.426995
0.303809
0.182431
0.0541784
5.56774
4.50823
4.27929
4.08538
3.90641
3.74374
3.59238
3.44886
3.311
3.17734
3.04683
2.91862
2.792
2.66642
2.54144
2.41675
2.29217
2.16757
2.0429
1.91814
1.79331
1.66844
1.54359
1.41878
1.29407
1.1695
1.04511
0.920937
0.79701
0.673358
0.549954
0.426954
0.303728
0.182396
0.0541437
5.49024
4.54609
4.2857
4.09042
3.90959
3.74632
3.59464
3.45084
3.31271
3.17879
3.04803
2.91957
2.79273
2.66693
2.54178
2.41695
2.29226
2.16757
2.04284
1.91804
1.79318
1.6683
1.54344
1.41863
1.29393
1.16936
1.04497
0.920787
0.796836
0.673184
0.549785
0.426859
0.303734
0.182511
0.0537251
5.49042
4.54596
4.28567
4.0904
3.90958
3.74631
3.59463
3.45083
3.31271
3.17879
3.04803
2.91957
2.79272
2.66693
2.54177
2.41695
2.29225
2.16757
2.04283
1.91803
1.79318
1.6683
1.54344
1.41863
1.29392
1.16936
1.04497
0.920799
0.796874
0.67323
0.549842
0.426874
0.303668
0.182384
0.0536799
5.55233
4.51764
4.28111
4.08664
3.90757
3.74443
3.59277
3.44907
3.31105
3.17726
3.04662
2.9183
2.79159
2.66594
2.54093
2.41624
2.29168
2.16712
2.04248
1.91777
1.79298
1.66816
1.54334
1.41856
1.29388
1.16933
1.04494
0.920779
0.796847
0.67321
0.549824
0.42686
0.303792
0.182255
0.0554318
5.45448
4.55195
4.28793
4.09154
3.911
3.74691
3.59471
3.45063
3.31231
3.17825
3.04739
2.91887
2.792
2.66621
2.54109
2.41631
2.29169
2.16708
2.04242
1.91769
1.7929
1.66808
1.54326
1.4185
1.29382
1.16928
1.04492
0.920766
0.796854
0.673218
0.549841
0.426855
0.303795
0.182204
0.0559536
5.54166
4.51798
4.28125
4.08661
3.90741
3.74433
3.59273
3.44907
3.3111
3.17735
3.04675
2.91846
2.79178
2.66615
2.54115
2.41646
2.29189
2.16731
2.04267
1.91793
1.79313
1.66829
1.54346
1.41867
1.29397
1.16942
1.04503
0.920867
0.796944
0.6733
0.549912
0.426921
0.303771
0.182312
0.0549629
5.5402
4.51883
4.28147
4.0868
3.90749
3.74439
3.59278
3.44911
3.31112
3.17735
3.04675
2.91846
2.79179
2.66617
2.54117
2.41649
2.29192
2.16735
2.0427
1.91797
1.79317
1.66833
1.5435
1.41871
1.29401
1.16945
1.04506
0.92089
0.796951
0.673308
0.549917
0.426953
0.303846
0.182382
0.0549892
5.19404
4.67381
4.32061
4.10883
3.92535
3.75586
3.60071
3.45528
3.31605
3.18131
3.04992
2.92098
2.79375
2.66769
2.54236
2.41745
2.29275
2.1681
2.04344
1.91874
1.79399
1.66921
1.54444
1.41972
1.29508
1.17057
1.04623
0.922094
0.798199
0.674575
0.551223
0.428198
0.305475
0.18324
0.0643327
5.33361
4.60779
4.30067
4.09973
3.9171
3.7508
3.59751
3.45288
3.31418
3.17982
3.04871
2.91996
2.79287
2.6669
2.54163
2.41674
2.29204
2.16738
2.04268
1.91794
1.79313
1.66831
1.54349
1.41872
1.29405
1.1695
1.04513
0.920979
0.797062
0.67343
0.550063
0.427067
0.304178
0.182201
0.0587055
5.59086
4.50369
4.27814
4.08465
3.90593
3.74344
3.59219
3.44875
3.31094
3.17732
3.04685
2.91868
2.79209
2.66652
2.54155
2.41687
2.29228
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41883
1.29412
1.16955
1.04515
0.920978
0.797048
0.673392
0.549979
0.426969
0.303719
0.18241
0.053982
5.58968
4.50421
4.27828
4.08474
3.90597
3.74346
3.5922
3.44875
3.31093
3.17732
3.04684
2.91866
2.79207
2.66651
2.54154
2.41686
2.29227
2.16767
2.04299
1.91822
1.79338
1.66851
1.54365
1.41883
1.29412
1.16954
1.04514
0.920961
0.797017
0.673374
0.549971
0.427004
0.30379
0.182431
0.0539625
5.38327
4.56813
4.29776
4.09546
3.91499
3.7494
3.59617
3.45156
3.31287
3.17851
3.0474
2.91866
2.7916
2.66567
2.54044
2.41562
2.29098
2.16638
2.04176
1.91708
1.79235
1.66759
1.54284
1.41813
1.29351
1.16902
1.04469
0.920576
0.796694
0.673081
0.549733
0.426735
0.303971
0.181807
0.0611858
5.41797
4.555
4.29495
4.09346
3.91357
3.74836
3.59536
3.4509
3.31233
3.17807
3.04703
2.91835
2.79133
2.66543
2.54023
2.41543
2.2908
2.16622
2.04161
1.91694
1.79222
1.66747
1.54272
1.41801
1.2934
1.16891
1.04459
0.920483
0.796601
0.672987
0.549639
0.426647
0.3039
0.181764
0.0611179
5.51272
4.53113
4.28349
4.0887
3.90857
3.74541
3.59372
3.44993
3.31183
3.17797
3.04728
2.91893
2.79219
2.6665
2.54144
2.4167
2.29208
2.16745
2.04277
1.918
1.79318
1.66832
1.54347
1.41867
1.29397
1.16941
1.04502
0.920845
0.7969
0.673254
0.549857
0.426916
0.303776
0.182492
0.0540628
5.55834
4.51509
4.28048
4.08614
3.90706
3.74409
3.59255
3.44892
3.31096
3.17721
3.04662
2.91834
2.79167
2.66604
2.54104
2.41636
2.2918
2.16722
2.04257
1.91784
1.79304
1.66821
1.54337
1.41859
1.2939
1.16934
1.04495
0.920785
0.79685
0.673213
0.549825
0.426865
0.303759
0.182293
0.0549081
5.55957
4.51389
4.28011
4.0859
3.90697
3.74406
3.59255
3.44896
3.31103
3.17731
3.04674
2.91848
2.79182
2.6662
2.54121
2.41653
2.29196
2.16738
2.04272
1.91799
1.79318
1.66833
1.54349
1.4187
1.294
1.16944
1.04505
0.920886
0.796962
0.673316
0.549926
0.426934
0.303774
0.182325
0.0548555
5.38463
4.58871
4.29408
4.09611
3.91416
3.74899
3.59635
3.45207
3.31361
3.17943
3.04845
2.9198
2.79279
2.66689
2.54165
2.41679
2.29209
2.16741
2.0427
1.91793
1.79311
1.66827
1.54343
1.41865
1.29397
1.16942
1.04505
0.920894
0.796978
0.673339
0.549965
0.42697
0.30398
0.182227
0.0569085
5.47261
4.55259
4.28643
4.09128
3.91031
3.74667
3.59477
3.45084
3.31263
3.17865
3.04784
2.91936
2.7925
2.66671
2.54157
2.41676
2.29209
2.16743
2.04272
1.91794
1.79311
1.66825
1.5434
1.41861
1.29392
1.16936
1.04498
0.920815
0.796893
0.67325
0.549864
0.426887
0.303733
0.182341
0.0544083
5.47373
4.55204
4.28636
4.09138
3.91034
3.74667
3.59476
3.45081
3.31258
3.1786
3.04779
2.91932
2.79247
2.66669
2.54156
2.41676
2.2921
2.16745
2.04274
1.91797
1.79314
1.66828
1.54343
1.41864
1.29395
1.16939
1.045
0.920828
0.796887
0.673242
0.54985
0.426904
0.303804
0.182433
0.0544168
5.54083
4.52221
4.28233
4.08719
3.90817
3.74477
3.59296
3.44918
3.31111
3.17726
3.04657
2.9182
2.79144
2.66575
2.54071
2.41601
2.29144
2.16687
2.04225
1.91755
1.79278
1.66798
1.54317
1.41841
1.29374
1.1692
1.04484
0.920688
0.796779
0.673147
0.549774
0.426784
0.303721
0.182092
0.0560521
5.3565
4.58843
4.29882
4.09721
3.91582
3.75
3.59678
3.45216
3.31345
3.17907
3.04794
2.91918
2.7921
2.66614
2.54089
2.41604
2.29137
2.16675
2.0421
1.9174
1.79264
1.66786
1.54308
1.41835
1.2937
1.16919
1.04485
0.920721
0.796828
0.673207
0.549853
0.426853
0.304007
0.181964
0.0598416
5.46841
4.54734
4.28654
4.09083
3.91037
3.74657
3.59453
3.45055
3.31229
3.17828
3.04746
2.91898
2.79213
2.66636
2.54124
2.41647
2.29184
2.16722
2.04255
1.9178
1.793
1.66817
1.54334
1.41856
1.29388
1.16934
1.04496
0.920807
0.79689
0.673251
0.549869
0.426885
0.303783
0.182279
0.0553491
5.44772
4.55144
4.28906
4.09193
3.91158
3.74728
3.59492
3.45075
3.31237
3.17826
3.04736
2.9188
2.7919
2.66609
2.54095
2.41618
2.29156
2.16697
2.04232
1.91761
1.79284
1.66803
1.54323
1.41848
1.29382
1.16929
1.04493
0.920779
0.796871
0.673238
0.549865
0.426874
0.303862
0.182165
0.0568305
5.45061
4.54695
4.29143
4.09179
3.91218
3.74741
3.5947
3.45042
3.31196
3.17779
3.04683
2.91821
2.79124
2.66538
2.54021
2.41543
2.29082
2.16625
2.04164
1.91697
1.79224
1.66749
1.54273
1.41803
1.29341
1.16891
1.04459
0.920475
0.796593
0.672981
0.549632
0.426638
0.303812
0.181785
0.0598535
5.54
4.51805
4.28134
4.08669
3.90739
3.74431
3.5927
3.44904
3.31106
3.1773
3.0467
2.91841
2.79173
2.6661
2.5411
2.41641
2.29183
2.16725
2.0426
1.91786
1.79306
1.66822
1.54338
1.4186
1.2939
1.16935
1.04497
0.920803
0.796883
0.67324
0.549853
0.426865
0.303706
0.182277
0.0547586
5.53945
4.51858
4.28138
4.08676
3.90739
3.74432
3.59272
3.44905
3.31106
3.1773
3.0467
2.91841
2.79173
2.66611
2.54111
2.41642
2.29185
2.16727
2.04262
1.91789
1.79308
1.66824
1.54341
1.41862
1.29393
1.16937
1.04498
0.920811
0.796875
0.673235
0.549845
0.426886
0.303771
0.182334
0.0547754
5.49127
4.53151
4.28741
4.09014
3.91071
3.74641
3.59401
3.44987
3.31152
3.17745
3.04657
2.91803
2.79113
2.66533
2.5402
2.41545
2.29086
2.1663
2.04169
1.91702
1.79229
1.66752
1.54276
1.41804
1.2934
1.1689
1.04457
0.920441
0.796546
0.672929
0.549566
0.426583
0.303698
0.181822
0.0583054
5.36827
4.59451
4.29591
4.09747
3.91512
3.74956
3.59672
3.45232
3.31379
3.17957
3.04857
2.91991
2.7929
2.66699
2.54174
2.41687
2.29217
2.16749
2.04278
1.918
1.79318
1.66833
1.5435
1.41872
1.29403
1.16948
1.04511
0.920947
0.797023
0.673388
0.550014
0.42703
0.304083
0.182252
0.0573213
5.31862
4.61372
4.30274
4.10066
3.91791
3.7513
3.59783
3.45312
3.31437
3.17997
3.04883
2.92005
2.79295
2.66697
2.54168
2.41679
2.29208
2.16742
2.04273
1.91798
1.79318
1.66836
1.54354
1.41878
1.2941
1.16956
1.04519
0.92104
0.797124
0.673493
0.550126
0.427124
0.304256
0.182219
0.0593073
5.32895
4.60214
4.30234
4.09961
3.91745
3.7511
3.59765
3.45292
3.31413
3.17969
3.0485
2.91969
2.79257
2.66657
2.54129
2.41641
2.29171
2.16707
2.0424
1.91767
1.7929
1.6681
1.5433
1.41856
1.2939
1.16938
1.04503
0.920887
0.796985
0.673363
0.550005
0.427002
0.304168
0.182074
0.0601597
5.18735
4.67678
4.32174
4.1092
3.9258
3.75615
3.60088
3.4554
3.31615
3.18139
3.04999
2.92103
2.79379
2.66772
2.54239
2.41747
2.29276
2.16812
2.04345
1.91874
1.79399
1.6692
1.54443
1.4197
1.29505
1.17053
1.04618
0.922043
0.798141
0.674511
0.551155
0.428126
0.305411
0.18319
0.0647788
5.46505
4.54387
4.28715
4.09044
3.91039
3.74635
3.59415
3.45011
3.31183
3.17781
3.04698
2.91849
2.79164
2.66588
2.54078
2.41603
2.29144
2.16686
2.04222
1.91752
1.79275
1.66795
1.54315
1.41839
1.29373
1.1692
1.04484
0.920694
0.796787
0.673156
0.549784
0.426796
0.303766
0.182105
0.0564813
5.42765
4.55215
4.29374
4.09286
3.91311
3.74805
3.59514
3.45074
3.3122
3.17797
3.04696
2.91829
2.79129
2.6654
2.54021
2.41541
2.29079
2.16621
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29338
1.1689
1.04458
0.920467
0.796587
0.672974
0.549626
0.426633
0.303866
0.181755
0.0608092
5.58603
4.50561
4.27861
4.08494
3.90612
3.74355
3.59225
3.44878
3.31095
3.17732
3.04683
2.91864
2.79205
2.66648
2.54151
2.41683
2.29225
2.16764
2.04297
1.9182
1.79337
1.6685
1.54364
1.41883
1.29412
1.16954
1.04514
0.920959
0.797015
0.673372
0.549971
0.427005
0.303802
0.182437
0.0540526
5.6171
4.5032
4.27784
4.08446
3.90583
3.74339
3.59216
3.44874
3.31094
3.17734
3.04687
2.9187
2.79212
2.66656
2.54158
2.4169
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16956
1.04516
0.920974
0.797029
0.673386
0.549982
0.427013
0.303791
0.182432
0.0539268
5.61754
4.50294
4.27776
4.08442
3.90581
3.74337
3.59215
3.44874
3.31094
3.17734
3.04688
2.91871
2.79213
2.66656
2.54159
2.41691
2.29232
2.16771
2.04302
1.91825
1.79341
1.66853
1.54367
1.41885
1.29414
1.16956
1.04517
0.920992
0.797061
0.673403
0.549988
0.426975
0.303719
0.182414
0.0539535
5.5006
4.53086
4.28703
4.08998
3.91049
3.74627
3.59394
3.44984
3.31153
3.17748
3.04663
2.91812
2.79124
2.66547
2.54036
2.41563
2.29105
2.16649
2.04189
1.91722
1.79248
1.66771
1.54294
1.41821
1.29357
1.16906
1.04472
0.920583
0.796679
0.673057
0.549688
0.426704
0.303788
0.18195
0.0579417
5.49537
4.53891
4.28456
4.08971
3.90931
3.74595
3.59416
3.45029
3.31212
3.17819
3.04744
2.91902
2.79224
2.66651
2.54142
2.41666
2.29202
2.16739
2.0427
1.91794
1.79312
1.66827
1.54342
1.41863
1.29394
1.16938
1.04499
0.920821
0.79688
0.673237
0.549844
0.4269
0.303783
0.182449
0.0543292
5.37241
4.5721
4.29867
4.0959
3.91532
3.74962
3.59634
3.45171
3.31299
3.17862
3.04749
2.91874
2.79166
2.66571
2.54048
2.41564
2.29099
2.16639
2.04177
1.91708
1.79235
1.66759
1.54283
1.41812
1.2935
1.16901
1.04468
0.920569
0.796688
0.673076
0.549728
0.426729
0.303974
0.181787
0.0614061
5.46356
4.5588
4.28707
4.09216
3.91082
3.74711
3.59526
3.45137
3.31317
3.17919
3.04836
2.91982
2.7929
2.66704
2.54184
2.41698
2.29226
2.16757
2.04283
1.91803
1.79318
1.6683
1.54345
1.41865
1.29395
1.16939
1.045
0.920825
0.796884
0.673238
0.549846
0.426902
0.303806
0.182435
0.0543429
5.464
4.55847
4.28706
4.09196
3.91072
3.74703
3.59518
3.4513
3.31312
3.17914
3.04831
2.91978
2.79286
2.66701
2.5418
2.41694
2.29223
2.16753
2.0428
1.918
1.79315
1.66828
1.54343
1.41863
1.29393
1.16937
1.04499
0.920821
0.796898
0.673255
0.549869
0.426894
0.30374
0.182345
0.0543253
5.18179
4.67976
4.32246
4.10943
3.92615
3.75636
3.60099
3.45549
3.31622
3.18144
3.05003
2.92106
2.79382
2.66774
2.54241
2.41749
2.29279
2.16814
2.04348
1.91877
1.79401
1.66923
1.54445
1.41972
1.29508
1.17057
1.04622
0.922082
0.798183
0.674553
0.551198
0.428169
0.305462
0.183257
0.0651066
5.57951
4.50943
4.27917
4.08537
3.9065
3.74378
3.5924
3.44886
3.31098
3.1773
3.04678
2.91856
2.79193
2.66634
2.54136
2.41669
2.29211
2.16752
2.04286
1.91811
1.79329
1.66843
1.54358
1.41878
1.29407
1.1695
1.0451
0.920927
0.796984
0.673342
0.549947
0.426984
0.303826
0.182419
0.0544476
5.58153
4.50768
4.27877
4.08517
3.90643
3.74375
3.59239
3.44888
3.31101
3.17734
3.04682
2.9186
2.79197
2.66638
2.5414
2.41672
2.29214
2.16755
2.04288
1.91813
1.7933
1.66844
1.54359
1.41879
1.29408
1.16951
1.04512
0.920945
0.797017
0.673367
0.549969
0.426972
0.303772
0.182385
0.0544374
5.55098
4.51356
4.28068
4.08633
3.90698
3.74416
3.59269
3.44909
3.31116
3.17744
3.04689
2.91865
2.79201
2.66641
2.54141
2.41672
2.29213
2.16752
2.04284
1.91808
1.79325
1.66839
1.54354
1.41873
1.29403
1.16946
1.04507
0.920902
0.796976
0.673325
0.549923
0.42693
0.303696
0.182405
0.0539646
5.49219
4.54471
4.28541
4.09024
3.90949
3.74624
3.59455
3.45075
3.31261
3.17869
3.04792
2.91946
2.79262
2.66684
2.54169
2.41688
2.29219
2.16752
2.0428
1.918
1.79316
1.66828
1.54343
1.41862
1.29392
1.16936
1.04497
0.920788
0.796839
0.67319
0.549793
0.426865
0.303739
0.182507
0.053775
5.49276
4.54425
4.28528
4.09015
3.90944
3.7462
3.59452
3.45072
3.31259
3.17867
3.04791
2.91945
2.79261
2.66683
2.54168
2.41687
2.29219
2.16752
2.04279
1.918
1.79315
1.66828
1.54342
1.41862
1.29392
1.16935
1.04497
0.920799
0.796875
0.673231
0.549844
0.426876
0.303673
0.182385
0.0537377
5.3637
4.57742
4.29939
4.09664
3.91584
3.75003
3.59669
3.45201
3.31325
3.17884
3.04768
2.91891
2.79182
2.66586
2.54061
2.41577
2.29111
2.1665
2.04187
1.91719
1.79245
1.66768
1.54292
1.41821
1.29358
1.16908
1.04475
0.920637
0.796753
0.67314
0.54979
0.426788
0.304014
0.181838
0.0612396
5.5889
4.50438
4.2784
4.08482
3.90606
3.74351
3.59223
3.44878
3.31096
3.17733
3.04685
2.91866
2.79207
2.6665
2.54152
2.41684
2.29226
2.16765
2.04297
1.91821
1.79337
1.6685
1.54364
1.41883
1.29411
1.16954
1.04515
0.920975
0.797045
0.67339
0.549981
0.426973
0.303731
0.18241
0.054054
5.50279
4.53533
4.28405
4.08917
3.90895
3.74565
3.5939
3.45007
3.31194
3.17805
3.04734
2.91895
2.79219
2.66648
2.5414
2.41665
2.29202
2.1674
2.04271
1.91795
1.79313
1.66828
1.54343
1.41864
1.29394
1.16939
1.045
0.920837
0.796914
0.673269
0.549879
0.426901
0.303721
0.182376
0.0542636
5.49496
4.53913
4.28435
4.08954
3.90913
3.74583
3.59409
3.45024
3.31208
3.17815
3.04741
2.91899
2.7922
2.66647
2.54137
2.41661
2.29197
2.16734
2.04264
1.91788
1.79305
1.6682
1.54335
1.41856
1.29387
1.16931
1.04492
0.920753
0.796813
0.67317
0.549779
0.42684
0.30372
0.182415
0.0541124
5.33561
4.60964
4.29974
4.09915
3.91672
3.75055
3.59737
3.45284
3.31422
3.17993
3.04886
2.92015
2.79308
2.66713
2.54185
2.41696
2.29224
2.16756
2.04286
1.91809
1.79327
1.66843
1.5436
1.41882
1.29414
1.16959
1.04521
0.92105
0.79713
0.673488
0.550113
0.427104
0.304191
0.182247
0.0585235
5.42283
4.55413
4.29281
4.09353
3.91296
3.74798
3.59518
3.45079
3.31226
3.17804
3.04706
2.91843
2.79147
2.66561
2.54045
2.41567
2.29105
2.16647
2.04186
1.91717
1.79243
1.66766
1.54289
1.41816
1.29352
1.16902
1.04468
0.920546
0.796649
0.673032
0.549673
0.426691
0.303811
0.181902
0.0585973
5.38621
4.56657
4.29778
4.09538
3.91496
3.74937
3.59614
3.45153
3.31284
3.17849
3.04738
2.91864
2.79158
2.66565
2.54043
2.4156
2.29096
2.16637
2.04175
1.91707
1.79234
1.66758
1.54283
1.41812
1.2935
1.16901
1.04468
0.92057
0.796687
0.673074
0.549725
0.426727
0.303971
0.1818
0.0612967
5.31108
4.61403
4.30404
4.10096
3.91833
3.75161
3.59804
3.45329
3.31451
3.18009
3.04892
2.92013
2.79302
2.66703
2.54174
2.41685
2.29215
2.16749
2.0428
1.91805
1.79326
1.66844
1.54363
1.41886
1.29419
1.16965
1.04528
0.921127
0.79721
0.673576
0.550207
0.427195
0.304347
0.182245
0.0600933
5.45642
4.54421
4.29277
4.09248
3.91275
3.74777
3.59493
3.45056
3.31205
3.17784
3.04685
2.91821
2.79122
2.66535
2.54017
2.41539
2.29077
2.1662
2.0416
1.91693
1.79221
1.66745
1.5427
1.41799
1.29338
1.16889
1.04457
0.920456
0.796569
0.67295
0.54959
0.426601
0.303841
0.181791
0.0604721
5.23661
4.65275
4.31411
4.1061
3.92268
3.75423
3.5997
3.45453
3.31547
3.18086
3.04956
2.92068
2.79351
2.66748
2.54218
2.41728
2.29258
2.16792
2.04323
1.91849
1.7937
1.66888
1.54407
1.4193
1.29463
1.17009
1.04572
0.921561
0.797647
0.67401
0.550644
0.427613
0.304833
0.182596
0.0622818
5.43727
4.56223
4.28919
4.09269
3.91172
3.74746
3.59522
3.45111
3.31276
3.17866
3.04776
2.9192
2.79228
2.66645
2.54129
2.41648
2.29183
2.16719
2.04251
1.91776
1.79296
1.66812
1.5433
1.41853
1.29385
1.16931
1.04494
0.920787
0.796874
0.673237
0.54986
0.426874
0.303818
0.182222
0.0559146
5.51965
4.52567
4.2834
4.08778
3.90849
3.74498
3.5931
3.44928
3.31118
3.17731
3.04661
2.91822
2.79145
2.66575
2.54071
2.416
2.29143
2.16686
2.04224
1.91754
1.79277
1.66796
1.54316
1.4184
1.29373
1.16919
1.04483
0.920677
0.796769
0.673137
0.549764
0.426775
0.303712
0.182095
0.0560185
5.52992
4.52191
4.28236
4.08732
3.90797
3.74467
3.59293
3.44917
3.31111
3.17728
3.04662
2.91827
2.79155
2.66589
2.54086
2.41617
2.29161
2.16704
2.04241
1.9177
1.79292
1.6681
1.54328
1.41851
1.29383
1.16928
1.0449
0.92074
0.79681
0.673174
0.549791
0.426827
0.303766
0.182223
0.0554996
5.56797
4.50771
4.27935
4.08541
3.90639
3.74374
3.59239
3.44888
3.31103
3.17737
3.04687
2.91867
2.79207
2.66649
2.54151
2.41683
2.29224
2.16764
2.04296
1.91819
1.79336
1.66849
1.54363
1.41882
1.29411
1.16954
1.04514
0.92097
0.797041
0.673386
0.549977
0.426972
0.303727
0.182425
0.0539886
5.56962
4.50792
4.2794
4.08542
3.90637
3.74372
3.59237
3.44886
3.311
3.17735
3.04685
2.91865
2.79205
2.66647
2.5415
2.41682
2.29223
2.16763
2.04295
1.91819
1.79335
1.66848
1.54362
1.41882
1.2941
1.16953
1.04513
0.920949
0.797004
0.67336
0.549958
0.426996
0.303792
0.182455
0.0539775
5.15642
4.69229
4.32685
4.11109
3.92791
3.75745
3.60166
3.45599
3.31661
3.18175
3.05027
2.92126
2.79398
2.66788
2.54253
2.4176
2.29288
2.16823
2.04356
1.91886
1.7941
1.66932
1.54455
1.41983
1.29519
1.17069
1.04635
0.922226
0.798342
0.674729
0.551394
0.428386
0.305732
0.183633
0.0668652
5.43351
4.56293
4.28975
4.09329
3.91207
3.74763
3.59526
3.45106
3.31265
3.17853
3.04761
2.91905
2.79213
2.66632
2.54117
2.41637
2.29173
2.16711
2.04244
1.9177
1.79291
1.66808
1.54326
1.4185
1.29382
1.16928
1.04491
0.920754
0.796831
0.673199
0.549821
0.426854
0.303842
0.18221
0.0560634
5.51205
4.52868
4.2835
4.08861
3.90867
3.74531
3.5935
3.44965
3.31153
3.17766
3.04697
2.91861
2.79188
2.66621
2.54117
2.41645
2.29186
2.16726
2.0426
1.91787
1.79306
1.66822
1.54339
1.4186
1.29392
1.16936
1.04498
0.920808
0.796872
0.673232
0.549842
0.426888
0.303779
0.18237
0.0547333
5.51455
4.52711
4.28314
4.08823
3.90845
3.74515
3.59338
3.44958
3.31148
3.17763
3.04696
2.91861
2.79188
2.66621
2.54117
2.41645
2.29186
2.16726
2.0426
1.91786
1.79305
1.66821
1.54338
1.4186
1.29391
1.16935
1.04497
0.920812
0.796892
0.673249
0.549862
0.426877
0.30372
0.182312
0.0547074
5.45864
4.55357
4.28753
4.09198
3.91109
3.74705
3.59489
3.45081
3.31248
3.17842
3.04757
2.91906
2.7922
2.66641
2.54129
2.41651
2.29188
2.16725
2.04258
1.91784
1.79303
1.6682
1.54337
1.41859
1.29391
1.16936
1.04499
0.920824
0.796894
0.673256
0.549871
0.426908
0.303857
0.182325
0.0554677
5.44115
4.55623
4.28935
4.09269
3.91182
3.74744
3.59506
3.45085
3.31244
3.17832
3.04742
2.91886
2.79196
2.66615
2.54102
2.41624
2.29162
2.16701
2.04236
1.91764
1.79285
1.66804
1.54323
1.41847
1.2938
1.16926
1.04489
0.920742
0.796821
0.67319
0.549813
0.426844
0.303844
0.182187
0.0563681
5.18902
4.6771
4.32143
4.10924
3.92571
3.75607
3.60083
3.45537
3.31612
3.18137
3.04997
2.92101
2.79378
2.66771
2.54238
2.41747
2.29276
2.16811
2.04345
1.91874
1.79398
1.66919
1.54442
1.41969
1.29504
1.17053
1.04618
0.922047
0.79815
0.674524
0.551171
0.428144
0.305422
0.183196
0.0643236
5.37328
4.59877
4.2953
4.09736
3.91482
3.74937
3.59664
3.45231
3.31384
3.17967
3.04871
2.9201
2.79313
2.66725
2.54203
2.41717
2.29246
2.16777
2.04304
1.91824
1.79339
1.66852
1.54366
1.41886
1.29415
1.16959
1.0452
0.921033
0.797107
0.673459
0.550076
0.427077
0.304068
0.182325
0.0565558
5.37163
4.58501
4.29686
4.09704
3.91527
3.74973
3.59675
3.45224
3.3136
3.17928
3.04819
2.91946
2.79241
2.66647
2.54123
2.41638
2.2917
2.16707
2.0424
1.91767
1.79289
1.66808
1.54328
1.41852
1.29386
1.16933
1.04497
0.920824
0.796913
0.673287
0.549921
0.426933
0.304033
0.182118
0.0584262
5.51699
4.52564
4.28317
4.08768
3.90837
3.74492
3.59308
3.44929
3.31121
3.17735
3.04666
2.91829
2.79154
2.66586
2.54082
2.41612
2.29155
2.16698
2.04235
1.91765
1.79287
1.66806
1.54325
1.41848
1.29381
1.16927
1.0449
0.920744
0.796831
0.673195
0.549818
0.426829
0.30375
0.182161
0.0558482
5.50099
4.53837
4.28446
4.08951
3.90906
3.74585
3.59416
3.45034
3.31221
3.17831
3.04758
2.91916
2.79237
2.66664
2.54154
2.41676
2.29211
2.16747
2.04276
1.91799
1.79315
1.66829
1.54343
1.41864
1.29394
1.16938
1.04498
0.920809
0.796863
0.673215
0.549818
0.426885
0.303753
0.182499
0.0539055
5.50343
4.53728
4.28435
4.08943
3.90904
3.74583
3.59413
3.45031
3.31219
3.1783
3.04758
2.91918
2.79239
2.66667
2.54157
2.4168
2.29215
2.1675
2.0428
1.91802
1.79319
1.66832
1.54347
1.41867
1.29397
1.16941
1.04502
0.920851
0.796926
0.67328
0.54989
0.426916
0.303713
0.182417
0.0539104
5.39167
4.56305
4.29758
4.09506
3.91476
3.74921
3.59599
3.4514
3.31273
3.17838
3.04728
2.91855
2.7915
2.66557
2.54035
2.41552
2.29089
2.1663
2.04168
1.91701
1.79228
1.66753
1.54277
1.41807
1.29345
1.16896
1.04464
0.920531
0.796648
0.673033
0.549683
0.426688
0.303959
0.181775
0.0615554
5.52628
4.52354
4.28232
4.08758
3.90784
3.74473
3.5931
3.44938
3.31135
3.17756
3.04695
2.91865
2.79197
2.66633
2.54132
2.41662
2.29203
2.16743
2.04276
1.91801
1.79319
1.66834
1.5435
1.4187
1.294
1.16944
1.04505
0.920873
0.796931
0.673287
0.549891
0.426938
0.303798
0.182443
0.0543799
5.52495
4.52322
4.28227
4.08763
3.90796
3.74485
3.5932
3.44946
3.31142
3.17762
3.04699
2.91867
2.79197
2.66632
2.5413
2.41659
2.29199
2.16739
2.04272
1.91797
1.79315
1.6683
1.54346
1.41866
1.29396
1.16941
1.04502
0.920855
0.796931
0.673285
0.549893
0.426908
0.30372
0.182369
0.0543448
5.56964
4.50827
4.27946
4.08545
3.90641
3.74374
3.59237
3.44885
3.31099
3.17733
3.04683
2.91862
2.79202
2.66644
2.54146
2.41678
2.2922
2.1676
2.04292
1.91816
1.79333
1.66847
1.54361
1.4188
1.29409
1.16952
1.04512
0.920939
0.796995
0.673352
0.549952
0.426989
0.303793
0.182445
0.0540509
5.5587
4.51116
4.27992
4.08576
3.90661
3.74386
3.59245
3.44889
3.311
3.17732
3.0468
2.91858
2.79196
2.66637
2.54139
2.4167
2.29212
2.16753
2.04285
1.9181
1.79327
1.66841
1.54356
1.41875
1.29405
1.16948
1.04508
0.920902
0.796959
0.673317
0.549919
0.42696
0.30378
0.182425
0.0541449
5.48343
4.55213
4.28672
4.0913
3.91014
3.74676
3.59507
3.45127
3.31315
3.17922
3.04843
2.91994
2.79304
2.6672
2.54199
2.41713
2.2924
2.16769
2.04294
1.91812
1.79326
1.66837
1.5435
1.41869
1.29398
1.16941
1.04501
0.920831
0.796878
0.673225
0.549824
0.426896
0.303773
0.182544
0.0537283
5.4838
4.55197
4.28667
4.09125
3.91011
3.74675
3.59506
3.45127
3.31315
3.17923
3.04844
2.91994
2.79305
2.6672
2.54199
2.41713
2.2924
2.16769
2.04293
1.91812
1.79325
1.66837
1.5435
1.41869
1.29398
1.16941
1.04502
0.920844
0.796917
0.67327
0.549882
0.426914
0.30371
0.18242
0.0536847
5.27008
4.62966
4.31017
4.10335
3.92062
3.75308
3.59897
3.45398
3.31505
3.18052
3.04927
2.92041
2.79324
2.6672
2.54188
2.41696
2.29223
2.16756
2.04287
1.91813
1.79334
1.66853
1.54373
1.41898
1.29432
1.16979
1.04543
0.921289
0.797386
0.673758
0.550395
0.427364
0.304586
0.182316
0.0624807
5.44355
4.54571
4.29315
4.09268
3.9129
3.74788
3.59501
3.45062
3.3121
3.17788
3.04688
2.91823
2.79124
2.66537
2.54019
2.4154
2.29079
2.16621
2.04161
1.91694
1.79222
1.66746
1.54271
1.41801
1.29339
1.1689
1.04458
0.920468
0.79658
0.672962
0.549603
0.426614
0.303855
0.181795
0.0605354
5.59597
4.50294
4.27794
4.08454
3.90587
3.7434
3.59217
3.44874
3.31093
3.17732
3.04686
2.91869
2.7921
2.66654
2.54156
2.41688
2.2923
2.16769
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29413
1.16955
1.04515
0.920965
0.79702
0.673377
0.549972
0.427004
0.303783
0.182427
0.0539157
5.59606
4.50288
4.27792
4.08453
3.90586
3.7434
3.59216
3.44873
3.31093
3.17732
3.04686
2.91869
2.7921
2.66654
2.54156
2.41688
2.2923
2.16769
2.043
1.91823
1.79339
1.66852
1.54365
1.41884
1.29412
1.16955
1.04516
0.920983
0.797053
0.673395
0.54998
0.426967
0.303711
0.18241
0.0539423
5.25976
4.63783
4.31117
4.10429
3.92123
3.7534
3.59917
3.45414
3.31518
3.18064
3.0494
2.92056
2.79341
2.6674
2.5421
2.4172
2.29248
2.16782
2.04312
1.91838
1.79359
1.66877
1.54396
1.4192
1.29453
1.17
1.04563
0.921477
0.797565
0.673929
0.55056
0.427527
0.304735
0.182486
0.0622122
5.51146
4.52721
4.28345
4.08822
3.90854
3.74509
3.59325
3.44942
3.31131
3.17744
3.04675
2.91838
2.79163
2.66596
2.54092
2.41622
2.29165
2.16707
2.04243
1.91772
1.79293
1.66811
1.54329
1.41852
1.29384
1.16929
1.04491
0.920751
0.796822
0.673186
0.549801
0.426838
0.303774
0.18225
0.055429
5.29977
4.62103
4.30494
4.10125
3.91874
3.75185
3.5982
3.45345
3.31468
3.18026
3.0491
2.92031
2.79318
2.66718
2.54188
2.41697
2.29225
2.16758
2.04289
1.91814
1.79334
1.66852
1.54371
1.41894
1.29427
1.16973
1.04536
0.921205
0.79729
0.673649
0.550278
0.427256
0.304414
0.182299
0.0605128
5.29926
4.62271
4.30516
4.10192
3.91897
3.75196
3.59828
3.45348
3.31468
3.18026
3.0491
2.92033
2.79323
2.66726
2.54198
2.41709
2.29238
2.16771
2.04302
1.91827
1.79346
1.66863
1.54381
1.41904
1.29436
1.16981
1.04543
0.921272
0.797351
0.673712
0.55034
0.427326
0.304473
0.182377
0.0599806
5.42156
4.55312
4.29443
4.09402
3.91361
3.74841
3.59545
3.45098
3.3124
3.17814
3.04712
2.91846
2.79146
2.66559
2.54041
2.41561
2.291
2.16642
2.04181
1.91714
1.79241
1.66764
1.54288
1.41817
1.29354
1.16904
1.04471
0.920587
0.796695
0.673078
0.549719
0.426729
0.30391
0.181893
0.0597931
5.59921
4.50267
4.27784
4.0845
3.90585
3.74339
3.59216
3.44873
3.31093
3.17733
3.04686
2.91869
2.79211
2.66654
2.54157
2.41689
2.2923
2.16769
2.04301
1.91824
1.7934
1.66852
1.54366
1.41885
1.29413
1.16955
1.04515
0.920968
0.797024
0.673381
0.549976
0.427007
0.303787
0.182429
0.0539225
5.59949
4.50247
4.27778
4.08446
3.90583
3.74338
3.59216
3.44873
3.31094
3.17733
3.04687
2.91869
2.79211
2.66654
2.54157
2.41689
2.29231
2.1677
2.04301
1.91824
1.7934
1.66852
1.54366
1.41884
1.29413
1.16955
1.04516
0.920986
0.797055
0.673398
0.549983
0.42697
0.303714
0.182411
0.0539485
5.29277
4.61567
4.30755
4.10166
3.91941
3.75239
3.59851
3.4536
3.31469
3.18015
3.04888
2.92
2.79281
2.66676
2.54143
2.41652
2.2918
2.16714
2.04247
1.91774
1.79297
1.66817
1.54338
1.41864
1.29399
1.16948
1.04513
0.920997
0.797104
0.673484
0.550128
0.427106
0.304336
0.182071
0.0622249
5.43928
4.54845
4.29156
4.09309
3.91269
3.7479
3.5952
3.45084
3.31234
3.17814
3.04718
2.91857
2.79163
2.66579
2.54064
2.41587
2.29126
2.16669
2.04207
1.91739
1.79264
1.66786
1.54309
1.41835
1.29371
1.16919
1.04485
0.920709
0.796804
0.673179
0.549812
0.426828
0.303924
0.182062
0.0582989
5.16953
4.68613
4.32444
4.11022
3.927
3.75688
3.60131
3.45573
3.31641
3.18159
3.05015
2.92116
2.7939
2.66781
2.54247
2.41755
2.29284
2.16819
2.04353
1.91882
1.79406
1.66928
1.54451
1.41979
1.29516
1.17065
1.04632
0.922191
0.798304
0.674686
0.551341
0.428321
0.305634
0.183472
0.0658104
5.48264
4.54757
4.28557
4.09061
3.90986
3.74639
3.59457
3.45069
3.31251
3.17855
3.04777
2.9193
2.79247
2.66669
2.54156
2.41676
2.29209
2.16743
2.04273
1.91795
1.79312
1.66826
1.54341
1.41861
1.29392
1.16936
1.04498
0.920812
0.79689
0.673246
0.549859
0.426885
0.303716
0.182356
0.0542217
5.48438
4.54727
4.28568
4.09072
3.90988
3.74638
3.59454
3.45064
3.31244
3.17849
3.04771
2.91926
2.79244
2.66668
2.54156
2.41678
2.29212
2.16747
2.04277
1.918
1.79316
1.6683
1.54346
1.41866
1.29396
1.1694
1.04501
0.920839
0.796895
0.673249
0.549854
0.426912
0.303799
0.182472
0.0542348
5.45304
4.55481
4.28777
4.09169
3.91096
3.74694
3.5948
3.45076
3.31245
3.17841
3.04755
2.91903
2.79216
2.66636
2.54123
2.41644
2.2918
2.16717
2.04249
1.91775
1.79295
1.66811
1.54329
1.41852
1.29384
1.16929
1.04492
0.920768
0.796854
0.673216
0.549838
0.426854
0.303774
0.182228
0.0555644
5.37403
4.57074
4.29921
4.09626
3.91566
3.7499
3.59656
3.45188
3.31313
3.17873
3.04758
2.91881
2.79172
2.66577
2.54053
2.41569
2.29104
2.16644
2.04182
1.91714
1.79241
1.66764
1.54289
1.41818
1.29356
1.16907
1.04474
0.920626
0.796742
0.673128
0.549777
0.426776
0.304032
0.181828
0.0616114
5.56598
4.50844
4.27936
4.0854
3.90639
3.74374
3.5924
3.44889
3.31103
3.17737
3.04687
2.91866
2.79205
2.66647
2.54149
2.41681
2.29222
2.16762
2.04294
1.91817
1.79334
1.66847
1.54361
1.4188
1.29409
1.16952
1.04513
0.920956
0.797027
0.673374
0.549967
0.426965
0.303729
0.182417
0.0540442
5.55575
4.51205
4.28028
4.08604
3.90679
3.74402
3.59258
3.449
3.31109
3.17739
3.04686
2.91863
2.79201
2.66641
2.54142
2.41674
2.29215
2.16755
2.04287
1.91811
1.79328
1.66842
1.54357
1.41876
1.29406
1.16948
1.04509
0.920909
0.796964
0.67332
0.54992
0.426965
0.30378
0.182457
0.0540263
5.50331
4.52964
4.28435
4.08842
3.90897
3.74531
3.59334
3.44947
3.31132
3.17742
3.04668
2.91827
2.79149
2.66578
2.54072
2.41601
2.29144
2.16687
2.04225
1.91755
1.79279
1.66798
1.54318
1.41843
1.29376
1.16923
1.04486
0.920712
0.796802
0.673169
0.549796
0.426806
0.303753
0.182117
0.0562229
5.45521
4.54424
4.29267
4.0924
3.91275
3.74778
3.59494
3.45057
3.31206
3.17785
3.04686
2.91821
2.79123
2.66536
2.54018
2.41539
2.29078
2.1662
2.0416
1.91693
1.79221
1.66746
1.54271
1.418
1.29338
1.1689
1.04458
0.920466
0.796578
0.672959
0.549599
0.426609
0.303856
0.181797
0.0605938
5.51256
4.53006
4.28327
4.0885
3.90844
3.74525
3.59355
3.44976
3.31167
3.17781
3.04714
2.91879
2.79206
2.66639
2.54134
2.41661
2.292
2.16738
2.04271
1.91795
1.79313
1.66827
1.54343
1.41864
1.29394
1.16938
1.04499
0.920817
0.796874
0.67323
0.549835
0.426892
0.303757
0.182446
0.0541693
5.51378
4.52942
4.28317
4.08841
3.90844
3.74527
3.59358
3.4498
3.31171
3.17787
3.0472
2.91885
2.79211
2.66643
2.54138
2.41665
2.29203
2.16741
2.04273
1.91797
1.79315
1.6683
1.54345
1.41866
1.29396
1.1694
1.04501
0.920848
0.796924
0.673279
0.549887
0.426907
0.303715
0.182387
0.0541845
)
;
boundaryField
{
inlet
{
type zeroGradient;
}
parede
{
type symmetry;
}
outlet
{
type fixedValue;
value uniform 0;
}
coolant_to_cladding
{
type zeroGradient;
}
}
// ************************************************************************* //
| [
"vitors.vasconcelos@gmail.com"
] | vitors.vasconcelos@gmail.com | |
4b34e91c25dace84227fdebccf27b8f3f40ca970 | 8567438779e6af0754620a25d379c348e4cd5a5d | /content/public/common/content_switches.h | b5cd42b4986e5e2efbbadbab861e811bd5eb1bc2 | [
"BSD-3-Clause"
] | permissive | thngkaiyuan/chromium | c389ac4b50ccba28ee077cbf6115c41b547955ae | dab56a4a71f87f64ecc0044e97b4a8f247787a68 | refs/heads/master | 2022-11-10T02:50:29.326119 | 2017-04-08T12:28:57 | 2017-04-08T12:28:57 | 84,073,924 | 0 | 1 | BSD-3-Clause | 2022-10-25T19:47:15 | 2017-03-06T13:04:15 | null | UTF-8 | C++ | false | false | 17,937 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Defines all the "content" command-line switches.
#ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
#define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
#include "build/build_config.h"
#include "content/common/content_export.h"
#include "media/media_features.h"
namespace switches {
// All switches in alphabetical order. The switches should be documented
// alongside the definition of their values in the .cc file.
CONTENT_EXPORT extern const char kAcceleratedCanvas2dMSAASampleCount[];
CONTENT_EXPORT extern const char kAecRefinedAdaptiveFilter[];
CONTENT_EXPORT extern const char kAgcStartupMinVolume[];
CONTENT_EXPORT extern const char kAllowFileAccessFromFiles[];
CONTENT_EXPORT extern const char kAllowInsecureLocalhost[];
CONTENT_EXPORT extern const char kAllowLoopbackInPeerConnection[];
CONTENT_EXPORT extern const char kAllowNoSandboxJob[];
CONTENT_EXPORT extern const char kAllowSandboxDebugging[];
CONTENT_EXPORT extern const char kAndroidFontsPath[];
CONTENT_EXPORT extern const char kBlinkSettings[];
CONTENT_EXPORT extern const char kBrowserCrashTest[];
CONTENT_EXPORT extern const char kBrowserSubprocessPath[];
CONTENT_EXPORT extern const char kDefaultTileWidth[];
CONTENT_EXPORT extern const char kDefaultTileHeight[];
CONTENT_EXPORT extern const char kDisable2dCanvasAntialiasing[];
CONTENT_EXPORT extern const char kDisable2dCanvasImageChromium[];
CONTENT_EXPORT extern const char kDisable3DAPIs[];
CONTENT_EXPORT extern const char kDisableAccelerated2dCanvas[];
CONTENT_EXPORT extern const char kDisableAcceleratedJpegDecoding[];
CONTENT_EXPORT extern const char kDisableAcceleratedMjpegDecode[];
CONTENT_EXPORT extern const char kDisableAcceleratedVideoDecode[];
CONTENT_EXPORT extern const char kDisableAudioSupportForDesktopShare[];
extern const char kDisableBackingStoreLimit[];
CONTENT_EXPORT extern const char
kDisableBackgroundingOccludedWindowsForTesting[];
CONTENT_EXPORT extern const char kDisableBackgroundTimerThrottling[];
CONTENT_EXPORT extern const char kDisableBlinkFeatures[];
CONTENT_EXPORT extern const char kDisableDatabases[];
CONTENT_EXPORT extern const char kDisableDistanceFieldText[];
CONTENT_EXPORT extern const char kDisableDisplayList2dCanvas[];
extern const char kDisableDomainBlockingFor3DAPIs[];
CONTENT_EXPORT extern const char kDisableExperimentalWebGL[];
CONTENT_EXPORT extern const char kDisableFeatures[];
CONTENT_EXPORT extern const char kDisableFileSystem[];
CONTENT_EXPORT extern const char kDisableFlash3d[];
CONTENT_EXPORT extern const char kDisableFlashStage3d[];
CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[];
CONTENT_EXPORT extern const char kDisableGestureRequirementForPresentation[];
CONTENT_EXPORT extern const char kDisableGpu[];
CONTENT_EXPORT extern const char kDisableGpuAsyncWorkerContext[];
CONTENT_EXPORT extern const char kDisableGpuCompositing[];
CONTENT_EXPORT extern const char kDisableGpuEarlyInit[];
CONTENT_EXPORT extern const char kDisableGpuMemoryBufferCompositorResources[];
CONTENT_EXPORT extern const char kDisableGpuMemoryBufferVideoFrames[];
extern const char kDisableGpuProcessCrashLimit[];
CONTENT_EXPORT extern const char kDisableGpuSandbox[];
CONTENT_EXPORT extern const char kDisableInProcessStackTraces[];
CONTENT_EXPORT extern const char kDisableJavaScriptHarmonyShipping[];
CONTENT_EXPORT extern const char kDisableLowLatencyDxva[];
CONTENT_EXPORT extern const char kDisableLowResTiling[];
CONTENT_EXPORT extern const char kDisableHangMonitor[];
CONTENT_EXPORT extern const char kDisableHideInactiveStackedTabCloseButtons[];
extern const char kDisableHistogramCustomizer[];
CONTENT_EXPORT extern const char kDisableLCDText[];
CONTENT_EXPORT extern const char kDisablePreferCompositingToLCDText[];
CONTENT_EXPORT extern const char kDisableKillAfterBadIPC[];
CONTENT_EXPORT extern const char kDisableLocalStorage[];
CONTENT_EXPORT extern const char kDisableLogging[];
CONTENT_EXPORT extern const char kDisableNamespaceSandbox[];
CONTENT_EXPORT extern const char kDisableNotifications[];
CONTENT_EXPORT extern const char kDisablePartialRaster[];
CONTENT_EXPORT extern const char kEnablePartialRaster[];
extern const char kDisablePepper3d[];
CONTENT_EXPORT extern const char kDisablePepper3DImageChromium[];
CONTENT_EXPORT extern const char kDisablePermissionsAPI[];
CONTENT_EXPORT extern const char kDisablePinch[];
CONTENT_EXPORT extern const char kDisablePresentationAPI[];
CONTENT_EXPORT extern const char kDisableRGBA4444Textures[];
CONTENT_EXPORT extern const char kDisableReadingFromCanvas[];
extern const char kDisableRemoteFonts[];
CONTENT_EXPORT extern const char kDisableRemotePlaybackAPI[];
extern const char kDisableRendererAccessibility[];
CONTENT_EXPORT extern const char kDisableRendererPriorityManagement[];
CONTENT_EXPORT extern const char kDisableRendererBackgrounding[];
CONTENT_EXPORT extern const char kDisableResizeLock[];
CONTENT_EXPORT extern const char kDisableSeccompFilterSandbox[];
CONTENT_EXPORT extern const char kDisableSetuidSandbox[];
CONTENT_EXPORT extern const char kDisableSharedWorkers[];
CONTENT_EXPORT extern const char kDisableSlimmingPaintInvalidation[];
CONTENT_EXPORT extern const char kDisableSmoothScrolling[];
CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[];
CONTENT_EXPORT extern const char kDisableSpeechAPI[];
CONTENT_EXPORT extern const char kDisableThreadedCompositing[];
CONTENT_EXPORT extern const char kDisableThreadedScrolling[];
extern const char kDisableV8IdleTasks[];
CONTENT_EXPORT extern const char kDisableWebGLImageChromium[];
CONTENT_EXPORT extern const char kDisableWebSecurity[];
extern const char kDisableXSSAuditor[];
CONTENT_EXPORT extern const char kDisableZeroCopy[];
CONTENT_EXPORT extern const char kDisableZeroCopyDxgiVideo[];
CONTENT_EXPORT extern const char kDomAutomationController[];
extern const char kDisable2dCanvasClipAntialiasing[];
CONTENT_EXPORT extern const char kEnableAggressiveDOMStorageFlushing[];
CONTENT_EXPORT extern const char kEnablePreferCompositingToLCDText[];
CONTENT_EXPORT extern const char kEnableBlinkFeatures[];
CONTENT_EXPORT extern const char kEnableBrowserSideNavigation[];
CONTENT_EXPORT extern const char kEnableColorCorrectRenderingDefaultMode[];
CONTENT_EXPORT extern const char kEnableDisplayList2dCanvas[];
CONTENT_EXPORT extern const char kEnableCanvas2dDynamicRenderingModeSwitching[];
CONTENT_EXPORT extern const char kEnableDistanceFieldText[];
CONTENT_EXPORT extern const char kEnableExperimentalCanvasFeatures[];
CONTENT_EXPORT extern const char kEnableExperimentalWebPlatformFeatures[];
CONTENT_EXPORT extern const char kEnableFeatures[];
CONTENT_EXPORT extern const char kEnableWebFontsInterventionV2[];
CONTENT_EXPORT extern const char
kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[];
CONTENT_EXPORT extern const char
kEnableWebFontsInterventionV2SwitchValueEnabledWith3G[];
CONTENT_EXPORT extern const char
kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[];
CONTENT_EXPORT extern const char
kEnableWebFontsInterventionV2SwitchValueDisabled[];
CONTENT_EXPORT extern const char kEnableGpuAsyncWorkerContext[];
CONTENT_EXPORT extern const char kEnableGpuMemoryBufferCompositorResources[];
CONTENT_EXPORT extern const char kEnableGpuMemoryBufferVideoFrames[];
CONTENT_EXPORT extern const char kGpuRasterizationMSAASampleCount[];
CONTENT_EXPORT extern const char kEnableLowResTiling[];
CONTENT_EXPORT extern const char kEnableLCDText[];
CONTENT_EXPORT extern const char kEnableLogging[];
CONTENT_EXPORT extern const char kEnableNetworkInformation[];
CONTENT_EXPORT extern const char kDisableNv12DxgiVideo[];
CONTENT_EXPORT extern const char kEnablePinch[];
CONTENT_EXPORT extern const char kEnablePluginPlaceholderTesting[];
CONTENT_EXPORT extern const char kEnablePreciseMemoryInfo[];
CONTENT_EXPORT extern const char kEnablePrintBrowser[];
CONTENT_EXPORT extern const char kEnableRGBA4444Textures[];
CONTENT_EXPORT extern const char kEnableSandboxLogging[];
extern const char kEnableSkiaBenchmarking[];
CONTENT_EXPORT extern const char kEnableSlimmingPaintV2[];
CONTENT_EXPORT extern const char kEnableSlimmingPaintInvalidation[];
CONTENT_EXPORT extern const char kEnableSmoothScrolling[];
CONTENT_EXPORT extern const char kEnableSpatialNavigation[];
CONTENT_EXPORT extern const char kEnableStatsTable[];
CONTENT_EXPORT extern const char kEnableStrictMixedContentChecking[];
CONTENT_EXPORT extern const char kEnableStrictPowerfulFeatureRestrictions[];
CONTENT_EXPORT extern const char kEnableTcpFastOpen[];
CONTENT_EXPORT extern const char kEnableThreadedCompositing[];
CONTENT_EXPORT extern const char kEnableTracing[];
CONTENT_EXPORT extern const char kEnableTracingOutput[];
CONTENT_EXPORT extern const char kEnableUserMediaScreenCapturing[];
CONTENT_EXPORT extern const char kEnableUseZoomForDSF[];
CONTENT_EXPORT extern const char kEnableViewport[];
CONTENT_EXPORT extern const char kEnableVtune[];
CONTENT_EXPORT extern const char kEnableVulkan[];
CONTENT_EXPORT extern const char kEnableWebFontsInterventionTrigger[];
CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[];
CONTENT_EXPORT extern const char kEnableWebGLImageChromium[];
CONTENT_EXPORT extern const char kEnableWebVR[];
CONTENT_EXPORT extern const char kEnableZeroCopy[];
CONTENT_EXPORT extern const char kExplicitlyAllowedPorts[];
CONTENT_EXPORT extern const char kFieldTrialHandle[];
CONTENT_EXPORT extern const char kForceDisplayList2dCanvas[];
CONTENT_EXPORT extern const char kForceGpuRasterization[];
CONTENT_EXPORT extern const char kForceOverlayFullscreenVideo[];
CONTENT_EXPORT extern const char kForceRendererAccessibility[];
CONTENT_EXPORT extern const char kGenerateAccessibilityTestExpectations[];
extern const char kGpuLauncher[];
CONTENT_EXPORT extern const char kGpuProcess[];
CONTENT_EXPORT extern const char kGpuSandboxAllowSysVShm[];
CONTENT_EXPORT extern const char kGpuSandboxFailuresFatal[];
CONTENT_EXPORT extern const char kGpuStartupDialog[];
CONTENT_EXPORT extern const char kHistoryEntryRequiresUserGesture[];
CONTENT_EXPORT extern const char kHostResolverRules[];
CONTENT_EXPORT extern const char kIgnoreCertificateErrors[];
CONTENT_EXPORT extern const char kInertVisualViewport[];
CONTENT_EXPORT extern const char kInProcessGPU[];
CONTENT_EXPORT extern const char kIPCConnectionTimeout[];
CONTENT_EXPORT extern const char kIsRunningInMash[];
CONTENT_EXPORT extern const char kJavaScriptFlags[];
CONTENT_EXPORT extern const char kJavaScriptHarmony[];
CONTENT_EXPORT extern const char kLogGpuControlListDecisions[];
CONTENT_EXPORT extern const char kLoggingLevel[];
CONTENT_EXPORT extern const char kLogNetLog[];
CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[];
extern const char kMaxUntiledLayerHeight[];
extern const char kMaxUntiledLayerWidth[];
extern const char kMemoryMetrics[];
CONTENT_EXPORT extern const char kMHTMLGeneratorOption[];
CONTENT_EXPORT extern const char kMHTMLSkipNostoreMain[];
CONTENT_EXPORT extern const char kMHTMLSkipNostoreAll[];
CONTENT_EXPORT extern const char kMojoLocalStorage[];
CONTENT_EXPORT extern const char kMuteAudio[];
CONTENT_EXPORT extern const char kNoReferrers[];
CONTENT_EXPORT extern const char kNoSandbox[];
CONTENT_EXPORT extern const char kNoUseMusInRenderer[];
CONTENT_EXPORT extern const char kNoZygote[];
CONTENT_EXPORT extern const char kEnableAppContainer[];
CONTENT_EXPORT extern const char kDisableAppContainer[];
CONTENT_EXPORT extern const char kNumRasterThreads[];
CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[];
CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[];
CONTENT_EXPORT extern const char kPassiveListenersDefault[];
CONTENT_EXPORT extern const char kPpapiBrokerProcess[];
CONTENT_EXPORT extern const char kPpapiFlashArgs[];
CONTENT_EXPORT extern const char kPpapiInProcess[];
extern const char kPpapiPluginLauncher[];
CONTENT_EXPORT extern const char kPpapiPluginProcess[];
extern const char kPpapiStartupDialog[];
CONTENT_EXPORT extern const char kProcessPerSite[];
CONTENT_EXPORT extern const char kProcessPerTab[];
CONTENT_EXPORT extern const char kProcessType[];
CONTENT_EXPORT extern const char kReduceSecurityForTesting[];
CONTENT_EXPORT extern const char kReducedReferrerGranularity[];
CONTENT_EXPORT extern const char kRegisterPepperPlugins[];
CONTENT_EXPORT extern const char kRemoteDebuggingPort[];
CONTENT_EXPORT extern const char kRendererClientId[];
extern const char kRendererCmdPrefix[];
CONTENT_EXPORT extern const char kRendererProcess[];
CONTENT_EXPORT extern const char kRendererProcessLimit[];
CONTENT_EXPORT extern const char kRendererStartupDialog[];
CONTENT_EXPORT extern const char kRootLayerScrolls[];
extern const char kSandboxIPCProcess[];
CONTENT_EXPORT extern const char kScrollEndEffect[];
CONTENT_EXPORT extern const char kSharedFiles[];
extern const char kShowPaintRects[];
CONTENT_EXPORT extern const char kSingleProcess[];
CONTENT_EXPORT extern const char kSitePerProcess[];
CONTENT_EXPORT extern const char kSkipGpuDataLoading[];
extern const char kSkipReencodingOnSKPCapture[];
CONTENT_EXPORT extern const char kStartFullscreen[];
CONTENT_EXPORT extern const char kStatsCollectionController[];
CONTENT_EXPORT extern const char kTestingFixedHttpPort[];
CONTENT_EXPORT extern const char kTestingFixedHttpsPort[];
CONTENT_EXPORT extern const char kTestType[];
CONTENT_EXPORT extern const char kTopDocumentIsolation[];
CONTENT_EXPORT extern const char kTouchEventFeatureDetection[];
CONTENT_EXPORT extern const char kTouchEventFeatureDetectionAuto[];
CONTENT_EXPORT extern const char kTouchEventFeatureDetectionEnabled[];
CONTENT_EXPORT extern const char kTouchEventFeatureDetectionDisabled[];
CONTENT_EXPORT extern const char kTouchTextSelectionStrategy[];
CONTENT_EXPORT extern const char kUIPrioritizeInGpuProcess[];
CONTENT_EXPORT extern const char kUseFakeUIForMediaStream[];
CONTENT_EXPORT extern const char kContentImageTextureTarget[];
CONTENT_EXPORT extern const char kVideoImageTextureTarget[];
CONTENT_EXPORT extern const char kUseMobileUserAgent[];
extern const char kUtilityCmdPrefix[];
CONTENT_EXPORT extern const char kUtilityProcess[];
extern const char kUtilityProcessAllowedDir[];
CONTENT_EXPORT extern const char kUtilityProcessRunningElevated[];
CONTENT_EXPORT extern const char kV8CacheOptions[];
CONTENT_EXPORT extern const char kV8CacheStrategiesForCacheStorage[];
CONTENT_EXPORT extern const char kValidateInputEventStream[];
CONTENT_EXPORT extern const char kWaitForDebuggerChildren[];
CONTENT_EXPORT extern const char kZygoteCmdPrefix[];
CONTENT_EXPORT extern const char kZygoteProcess[];
#if BUILDFLAG(ENABLE_WEBRTC)
CONTENT_EXPORT extern const char kDisableWebRtcEncryption[];
CONTENT_EXPORT extern const char kDisableWebRtcHWDecoding[];
CONTENT_EXPORT extern const char kDisableWebRtcHWEncoding[];
CONTENT_EXPORT extern const char kDisableWebRtcHWVP8Encoding[];
CONTENT_EXPORT extern const char kEnableWebRtcStunOrigin[];
CONTENT_EXPORT extern const char kEnforceWebRtcIPPermissionCheck[];
CONTENT_EXPORT extern const char kForceWebRtcIPHandlingPolicy[];
CONTENT_EXPORT extern const char kWebRtcStunProbeTrialParameter[];
extern const char kWebRtcMaxCaptureFramerate[];
#endif
#if defined(OS_ANDROID)
CONTENT_EXPORT extern const char kDisableMediaSessionAPI[];
CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[];
CONTENT_EXPORT extern const char kDisablePullToRefreshEffect[];
CONTENT_EXPORT extern const char kDisableScreenOrientationLock[];
CONTENT_EXPORT extern const char kEnableAdaptiveSelectionHandleOrientation[];
CONTENT_EXPORT extern const char kEnableContentIntentDetection[];
CONTENT_EXPORT extern const char kEnableLongpressDragSelection[];
CONTENT_EXPORT extern const char kHideScrollbars[];
extern const char kNetworkCountryIso[];
CONTENT_EXPORT extern const char kProgressBarCompletion[];
CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[];
CONTENT_EXPORT extern const char kRendererWaitForJavaDebugger[];
CONTENT_EXPORT extern const char kEnableOSKOverscroll[];
#endif
#if defined(OS_CHROMEOS)
CONTENT_EXPORT extern const char kDisablePanelFitting[];
CONTENT_EXPORT extern const char kDisableVaapiAcceleratedVideoEncode[];
#endif
#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
CONTENT_EXPORT extern const char kEnableSpeechDispatcher[];
#endif
#if defined(OS_WIN)
CONTENT_EXPORT extern const char kPrefetchArgumentRenderer[];
CONTENT_EXPORT extern const char kPrefetchArgumentGpu[];
CONTENT_EXPORT extern const char kPrefetchArgumentPpapi[];
CONTENT_EXPORT extern const char kPrefetchArgumentPpapiBroker[];
CONTENT_EXPORT extern const char kPrefetchArgumentOther[];
// This switch contains the device scale factor passed to certain processes
// like renderers, etc.
CONTENT_EXPORT extern const char kDeviceScaleFactor[];
CONTENT_EXPORT extern const char kDisableLegacyIntermediateWindow[];
CONTENT_EXPORT extern const char kDisableWin32kLockDown[];
CONTENT_EXPORT extern const char kEnableAcceleratedVpxDecode[];
CONTENT_EXPORT extern const char kEnableWin7WebRtcHWH264Decoding[];
// Switch to pass the font cache shared memory handle to the renderer.
CONTENT_EXPORT extern const char kFontCacheSharedHandle[];
CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[];
CONTENT_EXPORT extern const char kPpapiAntialiasedTextEnabled[];
CONTENT_EXPORT extern const char kPpapiSubpixelRenderingSetting[];
CONTENT_EXPORT extern const char kTraceExportEventsToETW[];
#endif
#if defined(ENABLE_IPC_FUZZER)
extern const char kIpcDumpDirectory[];
extern const char kIpcFuzzerTestcase[];
#endif
// DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
// alphabetical order, or in one of the ifdefs (also in order in each section).
} // namespace switches
#endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
| [
"hedonist.ky@gmail.com"
] | hedonist.ky@gmail.com |
d5f33c73105af0cab93db84e97e8f4e565b5387e | a1809f8abdb7d0d5bbf847b076df207400e7b08a | /Simpsons Hit&Run/game/libs/pure3d/tools/commandline/p3dprimgroup/main.cpp | 98cbf61b6356d3cd2e9685bda19fbb4462e5426e | [] | no_license | RolphWoggom/shr.tar | 556cca3ff89fff3ff46a77b32a16bebca85acabf | 147796d55e69f490fb001f8cbdb9bf7de9e556ad | refs/heads/master | 2023-07-03T19:15:13.649803 | 2021-08-27T22:24:13 | 2021-08-27T22:24:13 | 400,380,551 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,418 | cpp | /*===========================================================================
File: main.cpp
This tool manipulates primitive groups in meshes and skins
Copyright (c) Radical Entertainment, Inc. All rights reserved.
===========================================================================*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <toollib.hpp>
#include <tlSkinVertex.hpp>
#include <tlOffsetSkinVertex.hpp>
#include <tlMeshChunk.hpp>
#include <tlSkinChunk.hpp>
#include "Param.hpp"
Parameters* Param;
static const int GEOMETRY_NONOPTIMIZE_VERSION = 1; //stream-rendered
int main(int argc, char* argv[])
{
// the constructor of this class processes command-line
// parameters
Param = new Parameters(argc,argv);
tlDataChunk::RegisterDefaultChunks();
// for each file on the command-line, do the following:
for(int i = 0; i < Param->Files.Count(); i++)
{
if ( Param->Verbosity > 0 )
{
printf("Processing file '%s'\n", Param->Files[ i ]);
}
// open next file into a tlFile object
tlFile input(new tlFileByteStream(Param->Files[ i ],omREAD), tlFile::FROMFILE);
if(!input.IsOpen())
{
printf("Could not open %s\n", Param->Files[ i ]);
exit(-1);
}
// make a tlDataChunk from the file
// this is the wrapper chunk for the input
tlDataChunk* inchunk = new tlDataChunk(&input);
// we don't need the tlFile anymore
// this cleans up the tlFile object including the
// tlFileByteStream
input.Close();
if(Param->Verbosity>6)
{
inchunk->Print();
}
// build an output chunk
tlDataChunk* outchunk = new tlDataChunk;
if(Param->WriteHistory)
{
// put a history chunk in the output
// a history chunk shows what version of the tool
// was run on the file with what command-line
// parameters
outchunk->AppendSubChunk(Param->HistoryChunk());
}
int ch;
// go through all the sub-chunks of the input and
// process the ones you care about
for(ch=0; ch < inchunk->SubChunkCount(); ch++)
{
// create the next sub-chunk
tlDataChunk* sub = inchunk->GetSubChunk(ch);
// look at the id of the subchunk to decide if we
// want to do something with it or not
switch(sub->ID())
{
case Pure3D::Mesh::SKIN:
{
tlSkin* skin = new tlSkin(sub);
//don't optimize skin deformed
if( skin->GetExprOffsets( ) != NULL ){ //the skin is deformed
outchunk->AppendSubChunk( sub, FALSE );
delete skin;
break;
}
if(!Param->Rebuild)
{
for(int i = 0; i < skin->NumPrimGroups(); i++)
{
if((skin->GetPrimGroup(i)->GetType() == PDDI_PRIM_TRISTRIP) || (skin->GetPrimGroup(i)->GetIndexCount() == 0))
{
printf("WARNING : Skin '%s' is tristripped and/or de-indexed\n"
" which processing may not preserve, Re-run tristrip\n"
" or p3ddeindex on processed art\n", skin->GetName());
break;
}
}
}
if(Param->Rebuild)
{
if ( Param->Verbosity > 0 )
{
printf("Rebuilding primgroups for skin: %s\n", skin->GetName());
}
tlSkin* newSkin = skin->Rebuild( );
delete skin;
skin = newSkin;
}
if(Param->Merge)
{
if ( Param->Verbosity > 0 )
{
printf("Merging primgroups for skin: %s\n", skin->GetName());
}
tlSkin* newSkin = skin->Rebuild( true );
delete skin;
skin = newSkin;
}
if(Param->OneBone)
{
if ( Param->Verbosity > 0 )
{
printf("Seperating single bone vertices for skin: %s\n", skin->GetName());
}
tlSkin *tmpSkin = skin->SeparateBones( 1, Param->Threshold );
delete skin;
skin = tmpSkin;
}
if (Param->TwoBone)
{
if ( Param->Verbosity > 0 )
{
printf("Seperating dual bone vertices for skin: %s\n", skin->GetName());
}
tlSkin *tmpSkin = skin->SeparateBones( 2, Param->Threshold );
delete skin;
skin = tmpSkin;
}
if ( Param->OffsetSplit)
{
if ( Param->Verbosity > 0 )
{
printf("Splitting primgroups with offsets for skin: %s\n", skin->GetName());
}
tlSkin * newSkin = skin->SeparateOffsets( Param->Threshold );
delete skin;
skin = newSkin;
}
if(Param->MaxMatrices > 0)
{
if ( Param->Verbosity > 0 )
{
printf("Capping matrices per primgroup for skin : %s\n", skin->GetName());
}
tlSkin* newSkin = skin->RebuildForMatrices( Param->MaxMatrices );
delete skin;
skin = newSkin;
}
if(Param->MaxVertices > 0)
{
if ( Param->Verbosity > 0 ){
printf("Capping vertices per primgroup for skin : %s\n", skin->GetName());
}
tlSkin* newSkin = skin->Rebuild( false, Param->MaxVertices );
delete skin;
skin = newSkin;
}
outchunk->AppendSubChunk(skin->Chunk());
break;
}
case Pure3D::Mesh::MESH:
{
tlMeshChunk *mch = dynamic_cast<tlMeshChunk *>( sub );
//if a mesh is stream rendered; we don't
//do any optimization on it.
if( mch->GetVersion( ) == GEOMETRY_NONOPTIMIZE_VERSION ){
tlPrimGroupMesh mesh( sub );
outchunk->AppendSubChunk( mesh.Chunk( ) );
break;
}
tlPrimGroupMesh* pgMesh = new tlPrimGroupMesh(sub);
if(!Param->Rebuild)
{
for(int i = 0; i < pgMesh->NumPrimGroups(); i++)
{
if((pgMesh->GetPrimGroup(i)->GetType() == PDDI_PRIM_TRISTRIP) || (pgMesh->GetPrimGroup(i)->GetIndexCount() == 0))
{
printf("WARNING : Mesh '%s' is tristripped and/or de-indexed\n"
" which processing may not preserve, Re-run tristrip\n"
" or p3ddeindex on processed art\n", pgMesh->GetName());
break;
}
}
}
if(Param->Rebuild)
{
if ( Param->Verbosity > 0 ){
printf("Rebuilding primgroups for mesh: %s\n", pgMesh->GetName());
}
tlPrimGroupMesh* newMesh = pgMesh->Rebuild( );
delete pgMesh;
pgMesh = newMesh;
}
if(Param->Merge)
{
if ( Param->Verbosity > 0 ){
printf("Merging primgroups for mesh: %s\n", pgMesh->GetName());
}
tlPrimGroupMesh* newMesh = pgMesh->Rebuild( true );
delete pgMesh;
pgMesh = newMesh;
}
if(Param->MaxVertices > 0)
{
if ( Param->Verbosity > 0 ){
printf("Capping vertices per primgroup for mesh : %s\n", pgMesh->GetName());
}
tlPrimGroupMesh* newMesh = pgMesh->Rebuild( false, Param->MaxVertices );
delete pgMesh;
pgMesh = newMesh;
}
outchunk->AppendSubChunk(pgMesh->Chunk());
break;
}
default:
// this is not a chunk that we care about
// so simply copy it to the output wrapper chunk
// the optional parameter to AppendSubChunk
// indicates that we have merely copied a pointer
// so the destructor of outchunk should not
// destroy this sub-chunk as that duty will be
// taken care of by the destructor of inchunk
outchunk->AppendSubChunk(sub,FALSE);
break;
}
}
if(Param->Verbosity>5)
{
outchunk->Print();
}
char buf[P3DMAXNAME];
if(Param->OutputFile)
{
strcpy(buf,Param->OutputFile);
} else {
strcpy(buf,Param->Files[i]);
}
// create the new output file
tlFile output(new tlFileByteStream(buf, omWRITE), tlFile::CHUNK32);
if(!output.IsOpen())
{
printf("Could not open %s for writing\n", buf);
exit(-1);
}
// get the output wrapper chunk to write its data out
// to the file
outchunk->Write(&output);
// cleanup the no-longer-needed wrapper chunks
delete inchunk;
delete outchunk;
} // end of main for loop
// Cleanup
delete Param;
return 0;
}
| [
"81568815+RolphWoggom@users.noreply.github.com"
] | 81568815+RolphWoggom@users.noreply.github.com |
a61204bb677cc89e0159f03fd51a392d3c122b38 | f6b11b111740e705a97edfe81af71c8153a9b9cb | /scripts/rimls.cpp | e8ffc179c93f334f1bb17f4270ce2ac09cdedc97 | [] | no_license | adrien-le-franc/Cloud2Surface | c79a2802e2bb20f1c1563399fb9a71ff57b73416 | 1dd8b6cb4284041ad132ecf6a37a370a5b30aabb | refs/heads/master | 2020-03-22T05:12:57.812165 | 2018-07-03T08:53:26 | 2018-07-03T08:53:26 | 139,550,152 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,851 | cpp | #include "rimls.h"
float phi(float t, float h){
return pow(1.0 - t / pow(h, 2), 4);
};
float dphi(float t, float h){
return -4.0 * pow(1.0 - t / pow(h, 2), 3) / pow(h, 2);
};
float rimls_step(const glm::vec3& point, const std::vector<Data>& neighbors, float h, float sigma_r, float sigma_n, int max_iter, int& n){
float f;
glm::vec3 grad_f;
bool print = false;
for(int k=0; k<max_iter; k++){
float sum_w = 0.0;
float sum_f = 0.0;
float alpha;
glm::vec3 sum_n(0.0, 0.0, 0.0);
glm::vec3 sum_gw(0.0, 0.0, 0.0);
glm::vec3 sum_gf(0.0, 0.0, 0.0);
for(std::vector<Data>::const_iterator it=neighbors.begin(); it!=neighbors.end(); it++){
glm::vec3 dx = point - (*it).p();
float fx = scalar_product(dx, (*it).n());
alpha = 1.0;
if(k>0)
alpha = std::exp(-pow((fx-f)/sigma_r, 2)) * std::exp(-pow(euclidean_norm((*it).n()-grad_f)/sigma_n, 2));
float w = alpha * phi(pow(euclidean_norm(point-(*it).p()), 2), h);
glm::vec3 grad_w = alpha * 2 * dx * dphi(pow(euclidean_norm(point-(*it).p()), 2), h);
sum_w += w;
sum_gw += grad_w;
sum_f += w * fx;
sum_gf += grad_w * fx;
sum_n += w * (*it).n();
//std::cout<< k << " " << alpha << std::endl;
}
if(print){
// for(std::vector<Data>::const_iterator it=neighbors.begin(); it!=neighbors.end(); it++){
// std::cout << (*it).p().x << " " << (*it).p().y << " " << (*it).p().z << std::endl;
// }
//std::cout << "neighbors " << neighbors.size() << " alpha " << alpha << std::endl;
}
f = sum_f / sum_w;
grad_f = (sum_gf - f*sum_gw + sum_n) / sum_w;
if(std::isnan(f)){
if(print==false){
n++;
std::cout << "n " << n << " k " << k << " sum_w " << sum_w << std::endl;
if(k==0){
std::cout << point.x << " " << point.y << " " << point.z << std::endl;
for(std::vector<Data>::const_iterator it=neighbors.begin(); it!=neighbors.end(); it++){
float what = phi(pow(euclidean_norm(point-(*it).p()), 2), h);
std::cout << (*it).p().x << " " << (*it).p().y << " " << (*it).p().z << " " << "phi: " << what << std::endl;
}
printf("\n");
}
}
print = true;
// printf("NAN\n");
// //std::cout << "NAN alpha: " << alpha << " k " << k << std::endl; //" dist " << euclidean_distance(neighbors[0].p(), point) << std::endl;
}
// printf("NAN !!");
// std::cout<< euclidean_distance(neighbors[0].p(), point) << std::endl;
// printf("\n");
// }
}
// for(std::vector<Data>::const_iterator it=neighbors.begin(); it!=neighbors.end(); it++){
// std::cout << (*it).p().x << " " << (*it).p().y << " " << (*it).p().z << std::endl;
// }
//printf("\n");
//printf("\n");
return f;
}
Cube rimls_regular(const Data& D, OctTree<Data>* OT, Cube init_cube, float radius, float grid_step, float sigma_r, float sigma_n, int max_neighbors,
int max_iter, int& n){
glm::vec3 origin = D.p() - grid_step*float(0.5)*glm::vec3(1.0, 1.0, 1.0); // init cube centered on data point
Cube cube(origin, grid_step);
for(int k=0; k<8; k++){ // visiting cube's vertices and compute scalar field
Data point(cube.origin + grid_step*cube_vertices[k], glm::vec3(0.0, 0.0, 0.0));
int counter = 0;
std::vector<Data> neighbors;
find_neighbors(OT, point, radius, neighbors, init_cube, true, counter);
if(neighbors.size() < 2){
printf("radius too small\n");
float max_radius = sqrt(3.0)*init_cube.scale;
find_neighbors(OT, point, max_radius, neighbors, init_cube, true, counter);; // must be at least 2 neighbors to avoid underflow,
// could also skip point ?
}
else{ printf("radius ok\n");}
float h = 0.0;
counter = 0;
std::vector<Data> nearest_neighbors;
// for(std::vector<Data>::const_iterator it=neighbors.end(); it!=neighbors.begin(); it--){
// h += point.dist(*it);
// counter++;
// nearest_neighbors.push_back(*it);
// if(counter >= max_neighbors)
// break;
// }
float hx = 0.0;
float counterx = 0;
int l = neighbors.size();
std::vector<Data> testx;
for(int i=0; i<l; i++){
Data pt(neighbors[l-1-i]);
hx += point.dist(pt);
testx.push_back(pt);
counterx ++;
if(counterx >= max_neighbors)
break;
}
//////////////////////////////////////
// float maxi = 0.0;
// float mini = 1.0;
// for(std::vector<Data>::const_iterator it=neighbors.begin(); it !=neighbors.end(); it++){
// glm::vec3 pp = (*it).p();
// if(pp.x > maxi)
// maxi = pp.x;
// if(pp.y > maxi)
// maxi = pp.y;
// if(pp.z > maxi)
// maxi = pp.z;
// if(pp.x < mini)
// mini = pp.x;
// if(pp.y < mini)
// mini = pp.y;
// if(pp.z < mini)
// mini = pp.z;
// }
//std::cout << "n " << "max " << maxi << " min " << mini << " h " << h << " hx " << hx << " counter " << counter << " counterx " << counterx << std::endl;
////////////////////////////////////////////////////
h = h / float(counter) * 2.0;
// std::cout << counter << std::endl;
// printf("\n");
cube.add_field(k, rimls_step(point.p(), testx, hx, sigma_r, sigma_n, max_iter, n));
}
return cube;
}
void rimls(const std::vector<Data>& V, std::vector<Cube>& grid, float radius, float grid_step, float sigma_r, float sigma_n, int max_neighbors,
int max_iter){
Cube init_cube(V);
OctTree<Data>* OT = makeTree(V, init_cube);
int n = 0;
for(std::vector<Data>::const_iterator it=V.begin(); it!=V.end(); it++){
grid.push_back(rimls_regular(*it, OT, init_cube, radius, grid_step, sigma_r, sigma_n, max_neighbors, max_iter, n));
}
std::cout << "nb nan :" << n << " / " << V.size()*8 << std::endl;
delete OT;
}; | [
"adrien.le-franc@eleves.enpc.fr"
] | adrien.le-franc@eleves.enpc.fr |
9cbf439a9f8c952f80cde76922adbb53382b07ca | 4b2a1c790afbd6561e8c3a78bed5b71aec574320 | /modules/task_2/rachin_i_mult_mat_by_vec/mult_mat_by_vec.h | d4d3f4c0728146427b8a2853a0c350e87f583d74 | [
"BSD-3-Clause"
] | permissive | BoytsovVA/pp_2020_autumn_engineer | 3deed88861a8e43950e3280e1f1c51e7c5edfd83 | 15d4048d49a5a72036ee488920670535a67a513a | refs/heads/master | 2023-01-25T04:08:16.855429 | 2020-11-22T13:53:06 | 2020-11-22T13:53:06 | 305,137,409 | 1 | 0 | BSD-3-Clause | 2020-11-22T13:53:07 | 2020-10-18T15:47:41 | null | UTF-8 | C++ | false | false | 593 | h | // Copyright 2020 Rachin Igor
#ifndef MODULES_TASK_2_RACHIN_I_MULT_MAT_BY_VEC_MULT_MAT_BY_VEC_H_
#define MODULES_TASK_2_RACHIN_I_MULT_MAT_BY_VEC_MULT_MAT_BY_VEC_H_
#include <vector>
#include <string>
std::vector<int> getRandomMatrix(int rows, int clmns);
std::vector<int> getRandomVector(int vsize);
std::vector<int> getParallelMult(std::vector<int> mx, int rows, int clmns, std::vector<int> vec, int vsize);
std::vector<int> getSequentialMult(std::vector<int> mx, int rows, int clmns, std::vector<int> vec, int vsize);
#endif // MODULES_TASK_2_RACHIN_I_MULT_MAT_BY_VEC_MULT_MAT_BY_VEC_H_
| [
"kdikasz@mail.ru"
] | kdikasz@mail.ru |
a3752421026a3075fcbd83c159eed48243bf94c5 | 102beccb4a386876dfeaea493209537c9a0db742 | /LoginScreenModule/LoginWidget.h | e67bb96f0ae197bc15f47884469752f187401333 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | Chiru/naali | cc4150241d37849dde1b9a1df983e41a53bfdab1 | b0fb756f6802ac09a7cd9733e24e4db37d5c1b7e | refs/heads/master | 2020-12-25T05:03:47.606650 | 2010-09-16T14:08:42 | 2010-09-17T08:34:19 | 1,290,932 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,237 | h | /**
* For conditions of distribution and use, see copyright notice in license.txt
*
* @file LoginWidget.h
* @brief Simple full screen login widget for OpenSim and realXend authentication methods.
*/
#ifndef incl_LoginModule_LoginWidget_h
#define incl_LoginModule_LoginWidget_h
#include "ui_LoginWidget.h"
#include <QTimer>
/// Simple full screen login widget for OpenSim and realXend authentication methods.
class LoginWidget : public QWidget, private Ui::LoginWidget
{
Q_OBJECT
public:
/** Constructor.
* @param loginInfo
*/
explicit LoginWidget(const QMap<QString,QString> &login_data);
public slots:
QMap<QString, QString> GetLoginInfo() const;
// void StatusUpdate(bool connecting, const QString &message);
void SetStatus(const QString &message);
///
void Connected();
signals:
///
void Connect(const QMap<QString, QString> &login_data);
///
void ExitClicked();
private slots:
///
void ParseInputAndConnect();
///
void StartProgressBar();
///
void UpdateProgressBar();
///
void StopProgressBar();
///
void Exit();
private:
///
QTimer *progress_timer_;
///
int progress_direction_;
};
#endif
| [
"ali.kamarainen@ludocraft.com"
] | ali.kamarainen@ludocraft.com |
f1c88fabe70dc2f3c50bcbc8f2809f05eb2626cb | 93a959567493f71eeded8c8eca14458f91500502 | /WinApp/spline.h | ab12e979529423bfa97a24bc51cbace298a8bd92 | [] | no_license | mdepoint/driveline-sim | 2b5a6340c23957f06f2fc5bd1b35b328d1442a0e | a49b5e2277142893a6bf2889f7181452062605ab | refs/heads/master | 2023-03-27T18:10:44.487174 | 2021-03-21T04:03:49 | 2021-03-21T04:03:49 | 308,629,740 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,476 | h | #pragma once
#include <vector>
const int NUM_OF_SPLINE_POINTS = 100;
class Spline {
private:
std::vector<double> splinePointsX;
std::vector<double> splinePointsY;
double getBezierPoint(double n1, double n2, double perc)
{
double diff = n2 - n1;
return n1 + (diff * perc);
}
public:
Spline(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4) {
double xa;
double ya;
double xb;
double yb;
double xc;
double yc;
double xm;
double ym;
double xn;
double yn;
double t;
for (int i = 0; i < NUM_OF_SPLINE_POINTS; ++i)
{
t = i * 1.0 / NUM_OF_SPLINE_POINTS;
xa = getBezierPoint(x1, x2, t);
ya = getBezierPoint(y1, y2, t);
xb = getBezierPoint(x2, x3, t);
yb = getBezierPoint(y2, y3, t);
xc = getBezierPoint(x3, x4, t);
yc = getBezierPoint(y3, y4, t);
// The Blue Line
xm = getBezierPoint(xa, xb, t);
ym = getBezierPoint(ya, yb, t);
xn = getBezierPoint(xb, xc, t);
yn = getBezierPoint(yb, yc, t);
// The Black Dot
this->splinePointsX.push_back(getBezierPoint(xm, xn, t));
this->splinePointsY.push_back(getBezierPoint(ym, yn, t));
}
}
double getX(double t) {
int index = (int)fmin(t * NUM_OF_SPLINE_POINTS, splinePointsX.size()-1);
return this->splinePointsX[index];
}
double getY(double t) {
int index = (int)fmin(t * NUM_OF_SPLINE_POINTS, splinePointsY.size() - 1);
return this->splinePointsY[index];
}
double getH(double t) {
int index = (int)(t * NUM_OF_SPLINE_POINTS);
if (index >= (NUM_OF_SPLINE_POINTS - 1)) {
index = NUM_OF_SPLINE_POINTS - 2;
}
double theta = atan2(splinePointsY[index + 1] - splinePointsY[index], splinePointsX[index + 1] - splinePointsX[index]);
return theta;
}
double getDistance() {
double d = 0.0;
for (int i = 1; i < splinePointsX.size(); ++i) {
d += sqrt((splinePointsX[i] - splinePointsX[i - 1]) * (splinePointsX[i] - splinePointsX[i - 1]) + (splinePointsY[i] - splinePointsY[i - 1])* (splinePointsY[i] - splinePointsY[i - 1]));
}
return d;
}
//
//return this->splinePointsY[index];
}; | [
"mike.depoint@gmail.com"
] | mike.depoint@gmail.com |
61a1cc5ffe2a33ad1403ce8789a87139d00334f2 | ac594222de9ecbe941b96bed3c045d84d93adfed | /src/include/ELFInfo.hpp | 697c568e01a31c89c2d7f3404c21822bb3478437 | [
"MIT"
] | permissive | s3team/Abacus | 1c7017c917c8321e1b845a1c634e916cbb9fe159 | f35c039796ef77a3eaba2b49ce3df7a27e17cca5 | refs/heads/main | 2023-04-18T06:19:45.291343 | 2022-05-17T04:38:34 | 2022-05-17T04:38:34 | 328,747,019 | 13 | 5 | MIT | 2021-05-09T07:07:27 | 2021-01-11T17:52:32 | C | UTF-8 | C++ | false | false | 1,092 | hpp |
#pragma once
#include <elfio/elfio.hpp>
#include <iostream>
#include <memory>
namespace tana {
namespace ELF {
class Symbol {
public:
std::string name;
ELFIO::Elf64_Addr value;
ELFIO::Elf_Xword size;
unsigned char bind;
unsigned char type;
ELFIO::Elf_Half section_index;
unsigned char other;
Symbol(const std::string &s_name, ELFIO::Elf64_Addr s_value,
ELFIO::Elf_Xword s_size, unsigned char s_bind, unsigned char s_type,
ELFIO::Elf_Half s_section_index, unsigned char s_other)
: name(s_name), value(s_value), size(s_size), bind(s_bind), type(s_type),
section_index(s_section_index), other(s_other) {}
};
class ELF_Symbols {
private:
std::vector<std::shared_ptr<Symbol>> elf_s; // ELF symbols
public:
explicit ELF_Symbols(const std::string &filePWD);
std::string findSymName(uint32_t addr);
uint32_t findSymAddr(const std::string &name);
std::shared_ptr<Symbol> findSymbol(uint32_t addr);
std::shared_ptr<Symbol> findSymbol(const std::string &name);
~ELF_Symbols() = default;
};
} // namespace ELF
} // namespace tana
| [
"qinkunbao@gmail.com"
] | qinkunbao@gmail.com |
e5b2bb8732afc33ae582483c7121c2bad12060c3 | fef7dfe2d318c247be3c30419f6f9f84d55e6712 | /Engine/Math/Transform.cpp | b6fc7a4e93d20cac4377a5d09e364dfcbef5c7b4 | [] | no_license | Alexgreano/GAT150-2021 | ea9fbd07d7bff057736c1194812f90949c1b805f | e86bb840334895a2df66500d6f02ff9186832c57 | refs/heads/master | 2023-07-22T14:19:05.342437 | 2021-08-17T21:31:53 | 2021-08-17T21:31:53 | 392,109,378 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 545 | cpp | #include "Transform.h"
namespace nc
{
void Transform::Update()
{
Matrix33 mxs;
mxs.Scale(scale);
Matrix33 mxr;
mxr.Rotate(rotation);
Matrix33 mxt;
mxt.Translate(position);
matrix = mxs * mxr * mxt;
}
void Transform::Update(const Matrix33& mx)
{
Matrix33 mxs;
mxs.Scale(localscale);
Matrix33 mxr;
mxr.Rotate(localrotation);
Matrix33 mxt;
mxt.Translate(localposition);
matrix = mxs * mxr * mxt * mx;
position = matrix.GetTranslate();
rotation = matrix.GetRotation();
scale = matrix.GetScale();
}
} | [
"78039927+Alexgreano@users.noreply.github.com"
] | 78039927+Alexgreano@users.noreply.github.com |
e198f92ff7a7762d81b040cf2543d71cccb53cf6 | e981242e06f0eb7e2f7cc73df8d82d259a0bb04d | /Hash/Hash/소스.cpp | 484c1b2103bffad58c7071846c58c150d34b6d74 | [] | no_license | hewlett-hwi/Algorithm | a651a8fc71d92c1dc1f100575dd74dc062cd77ea | 784fce906c734b14f89b6766f17cd39fc3ea02cd | refs/heads/master | 2021-07-17T06:36:28.697947 | 2017-10-19T14:24:15 | 2017-10-19T14:24:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,552 | cpp | #include <stdio.h>
#include <string.h>
#include <memory.h>
#define MAX_KEY 64
#define MAX_DATA 128
#define MAX_TABLE 4096
typedef struct
{
char key[MAX_KEY + 1];
char data[MAX_DATA + 1];
}Hash;
Hash tb[MAX_TABLE];
unsigned long hash(const char *str)
{
unsigned long hash = 5381;
int c;
while (c = *str++)
{
hash = (((hash << 5) + hash) + c) % MAX_TABLE;
}
return hash % MAX_TABLE;
}
int find(const char *key, char *data)
{
unsigned long h = hash(key);
int cnt = MAX_TABLE;
int step = 1;
while (tb[h].key[0] != 0 && cnt--)
{
if (strcmp(tb[h].key, key) == 0)
{
strcpy(data, tb[h].data);
return 1;
}
h = (h + 1) % MAX_TABLE;
}
return 0;
}
int add(const char *key, char *data)
{
unsigned long h = hash(key);
int step = 1;
int i = 0;
while (tb[h].key[0] != 0)
{
if (strcmp(tb[h].key, key) == 0)
{
return 0;
}
h = (h + 1) % MAX_TABLE;
}
strcpy(tb[h].key, key);
strcpy(tb[h].data, data);
return 1;
}
int main(int argc, char* argv[])
{
int T, N, Q;
freopen("Text.txt", "r", stdin);
scanf("%d", &T);
for (int test_case = 1; test_case <= T; test_case++)
{
memset(tb, 0, sizeof(tb));
scanf("%d", &N);
char k[MAX_KEY + 1];
char d[MAX_DATA + 1];
for (int i = 0; i < N; i++)
{
scanf("%s %s\n", &k, &d);
add(k, d);
}
printf("#%d\n", test_case);
scanf("%d", &Q);
for (int i = 0; i < Q; i++)
{
char k[MAX_KEY + 1];
char d[MAX_DATA + 1];
scanf("%s\n", &k);
if (find(k, d))
{
printf("%s\n", d);
}
else
{
printf("not find\n");
}
}
}
return 0;
}
| [
"itbrainpost@gmail.com"
] | itbrainpost@gmail.com |
5620d18ab4b347ee345c560d41a6038b860d86de | 972ae15c2dcc180f61522484b05d7dfb5b5f7691 | /sketches/playersketch2/.localhistory/src/1488723644$stretchMesh.cpp | e50bd5b2b642bf077b8125329f2dac21489ad306 | [] | no_license | k-may/molino-player | e5edf53d2f153dfb9b989362e7090acaf1567819 | 64dcc5353b8b0ef6d35162c29581d44446135d8a | refs/heads/master | 2021-01-23T22:24:07.876586 | 2017-09-27T14:03:07 | 2017-09-27T14:03:07 | 83,127,799 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,114 | cpp | #include "stretchMesh.h"
stretchMesh::stretchMesh()
{
headPos.x = ofRandom(ofGetWidth(), ofGetHeight());
body.push_back(headPos);
for (int i = 0; i < 50; i++) {
body.push_back(headPos);
vertices.push_back(ofVec2f(0, 0));
vertices.push_back(ofVec2f(0, 0));
}
}
stretchMesh::~stretchMesh()
{
}
void stretchMesh::update()
{
updateHead();
updateBody();
updateVerts();
}
void stretchMesh::draw()
{
//draw verts
drawVerts();
}
ofVec2f stretchMesh::checkCollisions()
{
ofVec2f desired(0, 0);
if (headPos.x <= 25) {
desired.x = 20;
}
else if (headPos.x >= ofGetWidth() - 25) {
desired.x = -20;
}
if (headPos.y <= 0) {
desired.y = 20;
}
else if (headPos.y >= ofGetHeight() - 25) {
desired.y = -20;
}
return desired;
}
void stretchMesh::drawVerts()
{
ofSetLineWidth(2);
ofSetColor(0);
int width = 40;
ofVec2f a1, a2, b1, b2;
int vertCount = 0;
while (vertCount < vertices.size()) {
if (vertCount < 2) {
a1 = vertices[vertCount++];
a2 = vertices[vertCount++];
}
else {
a1 = b1;
a2 = b2;
}
b1 = vertices[vertCount++];
b2 = vertices[vertCount++];
ofVec2f triangle1[3] = { a1, a2, b2 };
drawTriangle(triangle1);
ofVec2f triangle2[3] = { a1, b2, b1 };
drawTriangle(triangle2);
}
}
void stretchMesh::drawTriangle(ofVec2f triangle[])
{
ofPath path;
bool first = true;
ofVec2f v;
for (int j = 0; j < 3; j++) {
v = triangle[j];
if (first) {
first = false;
path.moveTo((v.x + 1) * 0.5 * ofGetWidth(), (-v.y + 1) * 0.5 * ofGetHeight());
}
else {
path.lineTo((v.x + 1) * 0.5 * ofGetWidth(), (-v.y + 1) * 0.5 * ofGetHeight());
}
}
v = triangle[0];
path.lineTo((v.x + 1) * 0.5 * ofGetWidth(), (-v.y + 1) * 0.5 * ofGetHeight());
path.draw();
}
void stretchMesh::updateHead()
{
float time = ofGetElapsedTimef();
ofVec2f desiredVelocity = checkCollisions().normalize() * 5.0;
ofVec2f noise = ofVec2f(sin(time * 0.0001), cos(time * 0.0001)) * 0.001;
acceleration = noise + desiredVelocity;
//limit force
limit(acceleration, 0.1);
speed += acceleration;
//limit speed
limit(speed, 14.0);
headPos += speed;
}
void stretchMesh::updateBody()
{
ofVec2f previous(headPos);
for (int i = 1; i < body.size(); i++) {
auto& node = body[i];
node = node.getInterpolated(previous, 0.1);
previous = node;
}
}
void stretchMesh::updateVerts()
{
int width = 40;
ofVec2f perp;
ofVec2f a1;
int vertCount = 0;
for (int i = 0; i < body.size() - 1; i++) {
ofVec2f &node = body[i];
ofVec2f &next = body[i + 1];
perp = ofVec2f(node.y - next.y, -(node.x - next.x));
perp.normalize();
//update verts
a1 = ofVec2f(node.x + perp.x * width, node.y + perp.y * width);
ofVec2f &v1 = vertices[vertCount++];
v1.x = (a1.x / ofGetWidth()) * 2 - 1;
v1.y = (1 - a1.y / ofGetHeight()) * 2 - 1;
a1 = ofVec2f(node.x + perp.x * -width, node.y + perp.y * -width);
ofVec2f &v2 = vertices[vertCount++];
v2.x = (a1.x / ofGetWidth()) * 2 - 1;
v2.y = (1 - a1.y / ofGetHeight()) * 2 - 1;
}
}
void stretchMesh::limit(ofVec2f & vec, float max)
{
if (vec.length() > max)
vec = vec.normalize() * max;
}
| [
"kevmayo@gmail.com"
] | kevmayo@gmail.com |
ca05a9d711650b6f7506282beb6b4678ad3f818e | a4e12f7b14bf563b8c6b473268c8087c51c0cc12 | /src/labs/vector_add_lab_xilinx/Emulation-HW/binary_container_1.build/link/vivado/vpl/prj/prj.srcs/sources_1/bd/pfm_dynamic/ip/pfm_dynamic_xbar_5/sim/pfm_dynamic_xbar_5_sc.cpp | e7efe4ff5769ebdaf57beee2d980f9d2eebe8c53 | [] | no_license | BabarZKhan/xilinx_ETH_training_winterschool_2021 | 49054f85dfab1b4b75e3f4f85244bb8428cdf983 | bd2f2f1fc9cf524bee432970d9b10d21c013dda1 | refs/heads/main | 2023-09-02T07:24:15.182179 | 2021-11-22T09:09:28 | 2021-11-22T09:09:28 | 329,877,240 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,226 | cpp | // (c) Copyright 1995-2021 Xilinx, Inc. All rights reserved.
//
// This file contains confidential and proprietary information
// of Xilinx, Inc. and is protected under U.S. and
// international copyright and other intellectual property
// laws.
//
// DISCLAIMER
// This disclaimer is not a license and does not grant any
// rights to the materials distributed herewith. Except as
// otherwise provided in a valid license issued to you by
// Xilinx, and to the maximum extent permitted by applicable
// law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
// WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
// AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
// BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
// INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
// (2) Xilinx shall not be liable (whether in contract or tort,
// including negligence, or under any other theory of
// liability) for any loss or damage of any kind or nature
// related to, arising under or in connection with these
// materials, including for any direct, or any indirect,
// special, incidental, or consequential loss or damage
// (including loss of data, profits, goodwill, or any type of
// loss or damage suffered as a result of any action brought
// by a third party) even if such damage or loss was
// reasonably foreseeable or Xilinx had been advised of the
// possibility of the same.
//
// CRITICAL APPLICATIONS
// Xilinx products are not designed or intended to be fail-
// safe, or for use in any application requiring fail-safe
// performance, such as life-support or safety devices or
// systems, Class III medical devices, nuclear facilities,
// applications related to the deployment of airbags, or any
// other applications that could lead to death, personal
// injury, or severe property or environmental damage
// (individually and collectively, "Critical
// Applications"). Customer assumes the sole risk and
// liability of any use of Xilinx products in Critical
// Applications, subject only to applicable laws and
// regulations governing limitations on product liability.
//
// THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
// PART OF THIS FILE AT ALL TIMES.
//
// DO NOT MODIFY THIS FILE.
#include "pfm_dynamic_xbar_5_sc.h"
#include "axi_crossbar.h"
#include <map>
#include <string>
pfm_dynamic_xbar_5_sc::pfm_dynamic_xbar_5_sc(const sc_core::sc_module_name& nm) : sc_core::sc_module(nm), mp_impl(NULL)
{
// configure connectivity manager
xsc::utils::xsc_sim_manager::addInstance("pfm_dynamic_xbar_5", this);
// initialize module
xsc::common_cpp::properties model_param_props;
model_param_props.addLong("C_NUM_SLAVE_SLOTS", "1");
model_param_props.addLong("C_NUM_MASTER_SLOTS", "3");
model_param_props.addLong("C_AXI_ID_WIDTH", "1");
model_param_props.addLong("C_AXI_ADDR_WIDTH", "29");
model_param_props.addLong("C_AXI_DATA_WIDTH", "32");
model_param_props.addLong("C_AXI_PROTOCOL", "2");
model_param_props.addLong("C_NUM_ADDR_RANGES", "5");
model_param_props.addLong("C_AXI_SUPPORTS_USER_SIGNALS", "0");
model_param_props.addLong("C_AXI_AWUSER_WIDTH", "1");
model_param_props.addLong("C_AXI_ARUSER_WIDTH", "1");
model_param_props.addLong("C_AXI_WUSER_WIDTH", "1");
model_param_props.addLong("C_AXI_RUSER_WIDTH", "1");
model_param_props.addLong("C_AXI_BUSER_WIDTH", "1");
model_param_props.addLong("C_R_REGISTER", "1");
model_param_props.addLong("C_CONNECTIVITY_MODE", "0");
model_param_props.addString("C_FAMILY", "virtexuplus");
model_param_props.addBitString("C_M_AXI_BASE_ADDR", "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100000000000000000000000000000000000111100000000000000000000000000000000000000000000000000000000000011101000001000000000000000000000000000000000000000000000000000001110100000011000000000000000000000000000000000000000000000000000111010000001000000000000000000000000000000000000000000000000000011101000000010000000000000000000000000000000000000000000000000001110100000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110000000000000000000000000000000000011100000000000000000000000000", 960);
model_param_props.addBitString("C_M_AXI_ADDR_WIDTH", "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000", 480);
model_param_props.addBitString("C_S_AXI_BASE_ID", "00000000000000000000000000000000", 32);
model_param_props.addBitString("C_S_AXI_THREAD_ID_WIDTH", "00000000000000000000000000000000", 32);
model_param_props.addBitString("C_M_AXI_WRITE_CONNECTIVITY", "000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001", 96);
model_param_props.addBitString("C_M_AXI_READ_CONNECTIVITY", "000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001", 96);
model_param_props.addBitString("C_S_AXI_SINGLE_THREAD", "00000000000000000000000000000001", 32);
model_param_props.addBitString("C_S_AXI_WRITE_ACCEPTANCE", "00000000000000000000000000000001", 32);
model_param_props.addBitString("C_S_AXI_READ_ACCEPTANCE", "00000000000000000000000000000001", 32);
model_param_props.addBitString("C_M_AXI_WRITE_ISSUING", "000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001", 96);
model_param_props.addBitString("C_M_AXI_READ_ISSUING", "000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001", 96);
model_param_props.addBitString("C_S_AXI_ARB_PRIORITY", "00000000000000000000000000000000", 32);
model_param_props.addBitString("C_M_AXI_SECURE", "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 96);
mp_impl = new axi_crossbar("inst", model_param_props);
// initialize sockets
target_0_rd_socket = mp_impl->target_0_rd_socket;
target_0_wr_socket = mp_impl->target_0_wr_socket;
initiator_0_rd_socket = mp_impl->initiator_0_rd_socket;
initiator_0_wr_socket = mp_impl->initiator_0_wr_socket;
initiator_1_rd_socket = mp_impl->initiator_1_rd_socket;
initiator_1_wr_socket = mp_impl->initiator_1_wr_socket;
initiator_2_rd_socket = mp_impl->initiator_2_rd_socket;
initiator_2_wr_socket = mp_impl->initiator_2_wr_socket;
}
pfm_dynamic_xbar_5_sc::~pfm_dynamic_xbar_5_sc()
{
xsc::utils::xsc_sim_manager::clean();
delete mp_impl;
}
| [
"centos@ip-172-31-58-45.ec2.internal"
] | centos@ip-172-31-58-45.ec2.internal |
96cf60f0279069f6f46c8be940224f596c64f27f | 776da94a15acdea622b9529c59ef66377db8ab38 | /CocosWidget/ExpandableListView.cpp | d206d0d5c2275d2c2e8bcdf11209fafbfa66c4b6 | [] | no_license | cl0uddajka/cocoswidget | 568b3e33c82930574a785d4063fb3126d692ebfd | 4741ca118ce6259c8d04ef294489b11caeb3ca1b | refs/heads/master | 2021-01-19T14:58:52.591715 | 2014-01-24T15:37:54 | 2014-01-24T15:37:54 | 35,931,775 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,313 | cpp | /****************************************************************************
Copyright (c) 2014 Lijunlin - Jason lee
Created by Lijunlin - Jason lee on 2014
jason.lee.c@foxmail.com
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include "ExpandableListView.h"
#include <algorithm>
using namespace std;
NS_CC_WIDGET_BEGIN
CExpandableNode::CExpandableNode()
: m_bExpanded(false)
, m_pExpandableListViewParent(NULL)
, m_nIdx(CC_INVALID_INDEX)
{
}
CExpandableNode::~CExpandableNode()
{
removeAllItemNodes();
}
CExpandableNode* CExpandableNode::create()
{
CExpandableNode* pRet = new CExpandableNode();
pRet->init();
pRet->setContentSize(CCSize(100, 100));
pRet->setAnchorPoint(CCPoint(0.5f, 0.5f));
pRet->autorelease();
return pRet;
}
void CExpandableNode::insertItemNodeAtLast(CCNode* pNode)
{
CCAssert(pNode, "should not null");
m_vExpandableNodeItemList.push_back(pNode);
pNode->retain();
}
void CExpandableNode::insertItemNodeAtFront(CCNode* pNode)
{
CCAssert(pNode, "should not null");
m_vExpandableNodeItemList.insert(m_vExpandableNodeItemList.begin(), pNode);
pNode->retain();
}
void CExpandableNode::removeItemNode(CCNode* pNode)
{
CCAssert(pNode, "should not null");
if( m_vExpandableNodeItemList.size() == 0 )
return;
vector<CCNode*>::iterator itr = std::find(
m_vExpandableNodeItemList.begin(),
m_vExpandableNodeItemList.end(),
pNode);
if( itr != m_vExpandableNodeItemList.end() )
{
pNode->release();
m_vExpandableNodeItemList.erase(itr);
}
}
void CExpandableNode::removeItemNodeAtIndex(unsigned int idx)
{
if( m_vExpandableNodeItemList.size() == 0 )
return;
m_vExpandableNodeItemList[idx]->release();
m_vExpandableNodeItemList.erase(m_vExpandableNodeItemList.begin() + idx);
}
void CExpandableNode::removeAllItemNodes()
{
if( m_vExpandableNodeItemList.size() == 0 )
return;
vector<CCNode*>::iterator itr = m_vExpandableNodeItemList.begin();
vector<CCNode*>::iterator end = m_vExpandableNodeItemList.end();
for(; itr != end ; ++itr )
{
(*itr)->release();
}
m_vExpandableNodeItemList.clear();
}
void CExpandableNode::setExpanded(bool bExpanded)
{
m_bExpanded = bExpanded;
}
bool CExpandableNode::isExpanded() const
{
return m_bExpanded;
}
void CExpandableNode::setExpandableListViewParent(CExpandableListView* pListView)
{
m_pExpandableListViewParent = pListView;
}
std::vector<CCNode*>& CExpandableNode::getExpandableNodeItemList()
{
return m_vExpandableNodeItemList;
}
CWidgetTouchModel CExpandableNode::onTouchBegan(CCTouch* pTouch)
{
m_pSelectedWidget = NULL;
m_eSelectedWidgetTouchModel = eWidgetTouchNone;
CCPoint tNodePoint = convertToNodeSpace(pTouch->getLocation());
if( m_pChildren && m_pChildren->count() > 0 )
{
CCObject* pObject = NULL;
CCARRAY_FOREACH_REVERSE( m_pChildren, pObject )
{
CCNode* pNode = dynamic_cast<CCNode*>(pObject);
CWidget* pWidget = dynamic_cast<CWidget*>(pObject);
if( pWidget && pNode->isVisible() && pWidget->isEnabled() && pWidget->isTouchEnabled() )
{
if( pNode->boundingBox().containsPoint(tNodePoint) )
{
m_eSelectedWidgetTouchModel = pWidget->executeTouchBeganHandler(pTouch);
if( m_eSelectedWidgetTouchModel == eWidgetTouchNone )
{
m_pSelectedWidget = NULL;
m_eSelectedWidgetTouchModel = eWidgetTouchNone;
}
else
{
m_pSelectedWidget = pWidget;
return m_eSelectedWidgetTouchModel;
}
}
}
}
}
return eWidgetTouchTransient;
}
void CExpandableNode::onTouchMoved(CCTouch* pTouch, float fDuration)
{
if( m_pSelectedWidget && !m_pSelectedWidget->isTouchInterrupted() )
{
m_pSelectedWidget->executeTouchMovedHandler(pTouch, fDuration);
}
}
void CExpandableNode::onTouchEnded(CCTouch* pTouch, float fDuration)
{
if( m_pSelectedWidget && !m_pSelectedWidget->isTouchInterrupted() )
{
m_pSelectedWidget->executeTouchEndedHandler(pTouch, fDuration);
}
else
{
CCAssert(m_pExpandableListViewParent, "parent should not null");
CCPoint tPoint = m_pParent->convertToNodeSpace(pTouch->getLocation());
if( boundingBox().containsPoint(tPoint) )
{
if( m_bExpanded )
{
m_bExpanded = false;
m_pExpandableListViewParent->reloadData();
}
else
{
m_bExpanded = true;
m_pExpandableListViewParent->reloadData();
}
}
}
m_pSelectedWidget = NULL;
m_eSelectedWidgetTouchModel = eWidgetTouchNone;
}
void CExpandableNode::onTouchCancelled(CCTouch* pTouch, float fDuration)
{
if( m_pSelectedWidget && !m_pSelectedWidget->isTouchInterrupted() )
{
m_pSelectedWidget->executeTouchCancelledHandler(pTouch, fDuration);
}
m_pSelectedWidget = NULL;
m_eSelectedWidgetTouchModel = eWidgetTouchNone;
}
CExpandableListView::CExpandableListView()
{
m_eDirection = eScrollViewDirectionVertical;
}
CExpandableListView::~CExpandableListView()
{
removeAllExpandableNodes();
}
CExpandableListView* CExpandableListView::create(const CCSize& contentSize)
{
CExpandableListView* pRet = new CExpandableListView();
pRet->initWithSize(contentSize);
pRet->autorelease();
return pRet;
}
void CExpandableListView::expand(unsigned int idx)
{
m_vExpandableNodeList[idx]->setExpanded(true);
}
void CExpandableListView::collapse(unsigned int idx)
{
m_vExpandableNodeList[idx]->setExpanded(false);
}
void CExpandableListView::insertExpandableNodeAtLast(CExpandableNode* pNode)
{
CCAssert(pNode, "should not null");
m_vExpandableNodeList.push_back(pNode);
pNode->retain();
pNode->setExpandableListViewParent(this);
}
void CExpandableListView::insertExpandableNodeAtFront(CExpandableNode* pNode)
{
CCAssert(pNode, "should not null");
m_vExpandableNodeList.insert(m_vExpandableNodeList.begin(), pNode);
pNode->retain();
pNode->setExpandableListViewParent(this);
}
void CExpandableListView::removeExpandableNode(CExpandableNode* pNode)
{
if( m_vExpandableNodeList.size() == 0 )
return;
vector<CExpandableNode*>::iterator itr = std::find(
m_vExpandableNodeList.begin(),
m_vExpandableNodeList.end(),
pNode);
if( itr != m_vExpandableNodeList.end() )
{
pNode->release();
m_vExpandableNodeList.erase(itr);
}
}
void CExpandableListView::removeExpandableNodeAtIndex(unsigned int idx)
{
if( m_vExpandableNodeList.size() == 0 )
return;
m_vExpandableNodeList[idx]->release();
m_vExpandableNodeList.erase(m_vExpandableNodeList.begin() + idx);
}
void CExpandableListView::removeLastExpandableNode()
{
if( m_vExpandableNodeList.size() == 0 )
return;
m_vExpandableNodeList[m_vExpandableNodeList.size() - 1]->release();
m_vExpandableNodeList.pop_back();
}
void CExpandableListView::removeFrontExpandableNode()
{
if( m_vExpandableNodeList.size() == 0 )
return;
m_vExpandableNodeList[0]->release();
m_vExpandableNodeList.erase(m_vExpandableNodeList.begin());
}
void CExpandableListView::removeAllExpandableNodes()
{
if( m_vExpandableNodeList.size() == 0 )
return;
unsigned int i = 0;
unsigned int end = m_vExpandableNodeList.size();
for(; i < end; ++i )
{
m_vExpandableNodeList[i]->release();
}
m_vExpandableNodeList.clear();
}
CCArray* CExpandableListView::getExpandableNodes()
{
CCArray* pArray = new CCArray();
pArray->initWithCapacity(10);
if( !m_vExpandableNodeList.empty() )
{
vector<CExpandableNode*>::iterator iter = m_vExpandableNodeList.begin();
vector<CExpandableNode*>::iterator iend = m_vExpandableNodeList.end();
for(; iter != iend; ++iter )
{
pArray->addObject(*iter);
}
}
pArray->autorelease();
return pArray;
}
unsigned int CExpandableListView::getExpandableNodeCount()
{
return m_vExpandableNodeList.size();
}
CExpandableNode* CExpandableListView::getExpandableNodeAtIndex(unsigned int idx)
{
return m_vExpandableNodeList[idx];
}
void CExpandableListView::updateNodesPosition()
{
m_pContainer->removeAllChildrenWithCleanup(true);
if( m_vExpandableNodeList.size() == 0 )
return;
float fAllNodesHeight = 0.0f;
unsigned int uBegin = 0;
unsigned int uEnd = m_vExpandableNodeList.size();
for(; uBegin < uEnd; ++uBegin )
{
CExpandableNode* pExpandableNode = m_vExpandableNodeList[uBegin];
fAllNodesHeight += pExpandableNode->getContentSize().height;
if( pExpandableNode->isExpanded() )
{
vector<CCNode*>& vNodeItemList = pExpandableNode->getExpandableNodeItemList();
if( vNodeItemList.size() != 0 )
{
for( unsigned int i = 0; i < vNodeItemList.size(); ++i )
{
fAllNodesHeight += (vNodeItemList[i])->getContentSize().height;
}
}
}
}
fAllNodesHeight = MAX(m_obContentSize.height, fAllNodesHeight);
setContainerSize(CCSize(m_obContentSize.width, fAllNodesHeight));
uBegin = 0;
uEnd = m_vExpandableNodeList.size();
for(; uBegin < uEnd; ++uBegin )
{
CExpandableNode* pExpandableNode = m_vExpandableNodeList[uBegin];
fAllNodesHeight = fAllNodesHeight - pExpandableNode->getContentSize().height;
pExpandableNode->setAnchorPoint(CCPointZero);
pExpandableNode->setPosition(CCPoint(0, fAllNodesHeight));
m_pContainer->addChild(pExpandableNode);
if( pExpandableNode->isExpanded() )
{
vector<CCNode*>& vNodeItemList = pExpandableNode->getExpandableNodeItemList();
if( vNodeItemList.size() != 0 )
{
for( unsigned int i = 0; i < vNodeItemList.size(); ++i )
{
CCNode* pNode = vNodeItemList[i];
fAllNodesHeight = fAllNodesHeight - pNode->getContentSize().height;
pNode->setAnchorPoint(CCPointZero);
pNode->setPosition(CCPoint(0, fAllNodesHeight));
m_pContainer->addChild(pNode);
}
}
}
}
}
void CExpandableListView::reloadData()
{
CCAssert(m_eDirection == eScrollViewDirectionVertical, "should be Vertical");
float fOldHeight = getContainerSize().height;
updateNodesPosition();
float tNewHeight = getContainerSize().height - fOldHeight;
setContentOffset(getContentOffset() - CCPoint(0, tNewHeight));
relocateContainer();
}
NS_CC_WIDGET_END | [
"csdn.viva@gmail.com@9160077f-0524-6f16-ce86-95fce02da9f0"
] | csdn.viva@gmail.com@9160077f-0524-6f16-ce86-95fce02da9f0 |
43418021e1e4e1ab1557cbb614db97d13228b697 | 15d64c874329eac5ac609983205ccaf53ffc1f62 | /src/common/thread/signal.h | 9281faf5a473f2fc673c150061b303460e62b665 | [] | no_license | Gancc123/flame | 75fb0f1b91a8f3117a4faf02df16a367d6b2d8b2 | b680dee8bf6a263dd65024e37fb3d8f1017e3b09 | refs/heads/master | 2022-11-30T03:36:54.335864 | 2020-05-09T13:03:37 | 2020-05-09T13:03:37 | 285,832,839 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,048 | h | #ifndef FLAME_COMMON_THREAD_SIGNAL_H
#define FLAME_COMMON_THREAD_SIGNAL_H
#include <signal.h>
#include <string>
// Returns a string showing the set of blocked signals for the calling thread.
// Other threads may have a different set (this is per-thread thing).
extern std::string signal_mask_to_str();
// Block a list of signals. If siglist == NULL, blocks all signals.
// If not, the list is terminated with a 0 element.
//
// On success, stores the old set of blocked signals in
// old_sigset. On failure, stores an invalid set of blocked signals in
// old_sigset.
extern void block_signals(const int *siglist, sigset_t *old_sigset);
// Restore the set of blocked signals. Will not restore an invalid set of
// blocked signals.
extern void restore_sigset(const sigset_t *old_sigset);
// Unblock all signals. On success, stores the old set of blocked signals in
// old_sigset. On failure, stores an invalid set of blocked signals in
// old_sigset.
extern void unblock_all_signals(sigset_t *old_sigset);
#endif // FLAME_COMMON_THREAD_SIGNAL_H | [
"zhzane@outlook.com"
] | zhzane@outlook.com |
0d2e5f92e70b2d332365ae43f84f0a5bd7a0fa82 | 06d45ede8193bdfaa746b0251b9b8cf772202c6e | /root/opt/qt-4.7.1/examples/tutorials/addressbook/part4/addressbook.cpp | 896a427d3e9dd552371872481b30bfaf36d4e2a7 | [] | no_license | TOPEET-Develop/linux_rootfs | e3a33dbdf5eeda3e7afc79eb3341a6f7f8547c4c | 4264859a4515364dbecce0806e35520920e8fb9f | HEAD | 2016-09-06T10:30:31.965431 | 2015-09-25T08:14:24 | 2015-09-25T08:14:24 | 38,908,398 | 2 | 10 | null | null | null | null | UTF-8 | C++ | false | false | 9,572 | cpp | /****************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "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 Nokia Corporation and its Subsidiary(-ies) nor
** the names of its contributors may be used to endorse or promote
** products derived from this software without specific prior written
** permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtGui>
#include "addressbook.h"
AddressBook::AddressBook(QWidget *parent)
: QWidget(parent)
{
QLabel *nameLabel = new QLabel(tr("Name:"));
nameLine = new QLineEdit;
nameLine->setReadOnly(true);
QLabel *addressLabel = new QLabel(tr("Address:"));
addressText = new QTextEdit;
addressText->setReadOnly(true);
addButton = new QPushButton(tr("&Add"));
//! [edit and remove buttons]
editButton = new QPushButton(tr("&Edit"));
editButton->setEnabled(false);
removeButton = new QPushButton(tr("&Remove"));
removeButton->setEnabled(false);
//! [edit and remove buttons]
submitButton = new QPushButton(tr("&Submit"));
submitButton->hide();
cancelButton = new QPushButton(tr("&Cancel"));
cancelButton->hide();
nextButton = new QPushButton(tr("&Next"));
nextButton->setEnabled(false);
previousButton = new QPushButton(tr("&Previous"));
previousButton->setEnabled(false);
connect(addButton, SIGNAL(clicked()), this, SLOT(addContact()));
connect(submitButton, SIGNAL(clicked()), this, SLOT(submitContact()));
//! [connecting edit and remove]
connect(editButton, SIGNAL(clicked()), this, SLOT(editContact()));
connect(removeButton, SIGNAL(clicked()), this, SLOT(removeContact()));
//! [connecting edit and remove]
connect(cancelButton, SIGNAL(clicked()), this, SLOT(cancel()));
connect(nextButton, SIGNAL(clicked()), this, SLOT(next()));
connect(previousButton, SIGNAL(clicked()), this, SLOT(previous()));
QVBoxLayout *buttonLayout1 = new QVBoxLayout;
buttonLayout1->addWidget(addButton);
//! [adding edit and remove to the layout]
buttonLayout1->addWidget(editButton);
buttonLayout1->addWidget(removeButton);
//! [adding edit and remove to the layout]
buttonLayout1->addWidget(submitButton);
buttonLayout1->addWidget(cancelButton);
buttonLayout1->addStretch();
QHBoxLayout *buttonLayout2 = new QHBoxLayout;
buttonLayout2->addWidget(previousButton);
buttonLayout2->addWidget(nextButton);
QGridLayout *mainLayout = new QGridLayout;
mainLayout->addWidget(nameLabel, 0, 0);
mainLayout->addWidget(nameLine, 0, 1);
mainLayout->addWidget(addressLabel, 1, 0, Qt::AlignTop);
mainLayout->addWidget(addressText, 1, 1);
mainLayout->addLayout(buttonLayout1, 1, 2);
mainLayout->addLayout(buttonLayout2, 2, 1);
setLayout(mainLayout);
setWindowTitle(tr("Simple Address Book"));
}
void AddressBook::addContact()
{
oldName = nameLine->text();
oldAddress = addressText->toPlainText();
nameLine->clear();
addressText->clear();
updateInterface(AddingMode);
}
//! [editContact() function]
void AddressBook::editContact()
{
oldName = nameLine->text();
oldAddress = addressText->toPlainText();
updateInterface(EditingMode);
}
//! [editContact() function]
//! [submitContact() function beginning]
void AddressBook::submitContact()
{
//! [submitContact() function beginning]
QString name = nameLine->text();
QString address = addressText->toPlainText();
if (name.isEmpty() || address.isEmpty()) {
QMessageBox::information(this, tr("Empty Field"),
tr("Please enter a name and address."));
return;
}
//! [submitContact() function part1]
if (currentMode == AddingMode) {
if (!contacts.contains(name)) {
contacts.insert(name, address);
QMessageBox::information(this, tr("Add Successful"),
tr("\"%1\" has been added to your address book.").arg(name));
} else {
QMessageBox::information(this, tr("Add Unsuccessful"),
tr("Sorry, \"%1\" is already in your address book.").arg(name));
}
//! [submitContact() function part1]
//! [submitContact() function part2]
} else if (currentMode == EditingMode) {
if (oldName != name) {
if (!contacts.contains(name)) {
QMessageBox::information(this, tr("Edit Successful"),
tr("\"%1\" has been edited in your address book.").arg(oldName));
contacts.remove(oldName);
contacts.insert(name, address);
} else {
QMessageBox::information(this, tr("Edit Unsuccessful"),
tr("Sorry, \"%1\" is already in your address book.").arg(name));
}
} else if (oldAddress != address) {
QMessageBox::information(this, tr("Edit Successful"),
tr("\"%1\" has been edited in your address book.").arg(name));
contacts[name] = address;
}
}
updateInterface(NavigationMode);
}
//! [submitContact() function part2]
void AddressBook::cancel()
{
nameLine->setText(oldName);
addressText->setText(oldAddress);
updateInterface(NavigationMode);
}
//! [removeContact() function]
void AddressBook::removeContact()
{
QString name = nameLine->text();
QString address = addressText->toPlainText();
if (contacts.contains(name)) {
int button = QMessageBox::question(this,
tr("Confirm Remove"),
tr("Are you sure you want to remove \"%1\"?").arg(name),
QMessageBox::Yes | QMessageBox::No);
if (button == QMessageBox::Yes) {
previous();
contacts.remove(name);
QMessageBox::information(this, tr("Remove Successful"),
tr("\"%1\" has been removed from your address book.").arg(name));
}
}
updateInterface(NavigationMode);
}
//! [removeContact() function]
void AddressBook::next()
{
QString name = nameLine->text();
QMap<QString, QString>::iterator i = contacts.find(name);
if (i != contacts.end())
i++;
if (i == contacts.end())
i = contacts.begin();
nameLine->setText(i.key());
addressText->setText(i.value());
}
void AddressBook::previous()
{
QString name = nameLine->text();
QMap<QString, QString>::iterator i = contacts.find(name);
if (i == contacts.end()) {
nameLine->clear();
addressText->clear();
return;
}
if (i == contacts.begin())
i = contacts.end();
i--;
nameLine->setText(i.key());
addressText->setText(i.value());
}
//! [update interface() part 1]
void AddressBook::updateInterface(Mode mode)
{
currentMode = mode;
switch (currentMode) {
case AddingMode:
case EditingMode:
nameLine->setReadOnly(false);
nameLine->setFocus(Qt::OtherFocusReason);
addressText->setReadOnly(false);
addButton->setEnabled(false);
editButton->setEnabled(false);
removeButton->setEnabled(false);
nextButton->setEnabled(false);
previousButton->setEnabled(false);
submitButton->show();
cancelButton->show();
break;
//! [update interface() part 1]
//! [update interface() part 2]
case NavigationMode:
if (contacts.isEmpty()) {
nameLine->clear();
addressText->clear();
}
nameLine->setReadOnly(true);
addressText->setReadOnly(true);
addButton->setEnabled(true);
int number = contacts.size();
editButton->setEnabled(number >= 1);
removeButton->setEnabled(number >= 1);
nextButton->setEnabled(number > 1);
previousButton->setEnabled(number >1 );
submitButton->hide();
cancelButton->hide();
break;
}
}
//! [update interface() part 2]
| [
"root@ubuntu.(none)"
] | root@ubuntu.(none) |
96c80616ed1dce56d9b8893312b07abd5043f5b2 | 3c2f93dac664be520c8536159d05382cdd0903cc | /BullCowGame/FBullCowGame.hpp | 3049eeb4f421a400da327a576f48cc939afade6f | [] | no_license | noahsch19/BullAndCow | e9bf5144ebb95c6df632e99e0cc3c8e6a2e0fa22 | 49f1a891f368655a8dfab0a8709a040f8e524953 | refs/heads/master | 2020-03-28T19:11:02.962032 | 2018-10-26T02:58:39 | 2018-10-26T02:58:39 | 148,952,432 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 785 | hpp | #pragma once
#include "FBullCowGame.hpp"
#include <string>
using FString = std::string;
using int32 = int;
struct BullCowCount{
int32 Bulls = 0;
int32 Cows = 0;
};
class FBullCowGame {
public:
FBullCowGame(); //constructor
int32 GetMaxTries() const ;
int32 GetCurrentTry() const ;
bool isGameWon() const ;
void Reset(); //TODO make a more rich return value.
bool CheckGuessValidity(FString); //TODO make a more rich return value.
// count bulls and cows, and increases try # assuming valid guess
BullCowCount SubmitGuess(FString);
//Please try and ignore this and focus on the interface above ^^
private:
//see constructor for initialization
int32 MyCurrentTry;
int32 MyMaxTries;
FString MyHiddenWord;
};
| [
"nscheuerman19@gmail.com"
] | nscheuerman19@gmail.com |
67a4c887d00cf1a4fa44684f1be5b2785bc4bf4a | 9f2312092f3cef2eb84f9568e3c645cfa582af00 | /api/smp | 15007750cd519344d692849faad5e09826216edb | [
"Apache-2.0"
] | permissive | justinc1/IncludeOS | eca3635d36aae87696f20380f4f21a54deb35b21 | 2ce07b04e7a35c8d96e773f041db32a4593ca3d0 | refs/heads/master | 2021-04-27T06:16:35.135135 | 2018-02-13T12:12:40 | 2018-02-13T12:12:40 | 122,609,740 | 0 | 0 | Apache-2.0 | 2018-02-23T10:54:19 | 2018-02-23T10:54:19 | null | UTF-8 | C++ | false | false | 3,125 | // -*-C++-*-
// This file is a part of the IncludeOS unikernel - www.includeos.org
//
// Copyright 2015 Oslo and Akershus University College of Applied Sciences
// and Alfred Bratterud
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#ifndef API_SMP_HEADER
#define API_SMP_HEADER
#include <delegate>
#include <smp_utils>
#ifdef INCLUDEOS_SINGLE_THREADED
#define SMP_MAX_CORES 1
#else
#define SMP_MAX_CORES 32
#endif
#define SMP_ALIGN 64
template <typename T>
using SMP_ARRAY = std::array<T, SMP_MAX_CORES>;
// access a std::array of T by current CPU id
#define PER_CPU(x) (per_cpu_help<decltype(x)::value_type, SMP_MAX_CORES>(x))
class SMP {
public:
using task_func = delegate<void()>;
using done_func = delegate<void()>;
// return the current CPU id
static int cpu_id() noexcept;
// return the number of active CPUs
static int cpu_count() noexcept;
// implement this function to execute something on all APs at init
static void init_task();
// execute @func on another CPU core
// call @done back on main CPU when task returns
// use signal() to broadcast work should begin
static void add_task(task_func func, done_func done, int cpu = 0);
static void add_task(task_func func, int cpu = 0);
// execute a function on the main cpu
static void add_bsp_task(done_func func);
// call this to signal that tasks are queued up
// if cpu == 0, broadcast signal to all
static void signal(int cpu = 0);
static void signal_bsp();
// trigger interrupt on specified CPU
static void unicast(int cpu, uint8_t intr);
// broadcast-trigger interrupt on all waiting APs
static void broadcast(uint8_t intr);
// a global spinlock to synchronize text output (and other things)
static void global_lock() noexcept;
static void global_unlock() noexcept;
};
#define SMP_DEBUG 1
// SMP serialized print helpers
#define SMP_ALWAYS_PRINT(fmt, ...) \
SMP::global_lock(); \
printf(fmt, ##__VA_ARGS__); \
SMP::global_unlock();
#ifdef SMP_DEBUG
#define SMP_PRINT(fmt, ...) SMP_ALWAYS_PRINT(fmt, ##__VA_ARGS__)
#else
#define SMP_PRINT(fmt, ...) /** fmt **/
#endif
#include <array>
#ifdef INCLUDEOS_SINGLE_THREADED
template <typename T, size_t N>
inline T& per_cpu_help(std::array<T, N>& array)
{
return array[0];
}
#else
template <typename T, size_t N>
inline T& per_cpu_help(std::array<T, N>& array)
{
unsigned cpuid;
#ifdef ARCH_x86_64
asm("movl %%gs:(0x0), %0" : "=r" (cpuid));
#elif defined(ARCH_i686)
asm("movl %%fs:(0x0), %0" : "=r" (cpuid));
#else
#error "Implement me?"
#endif
return array.at(cpuid);
}
#endif
#endif
| [
"fwsgonzo@hotmail.com"
] | fwsgonzo@hotmail.com | |
b7708297ae87e5c7bccd5f6c08ecd676435fb23c | 5848f2680f835da100f40bacffe967e2ec20f077 | /lab7/c.cpp | 61b235d72cebcaa3aab3af1e31b7674b867caa7f | [] | no_license | sashapff/algorithms-and-data-structures | 3881aef4843811e96c66cc6c8ca60b27f04acbdf | a4bb6d8599a5231c782bdb3d44263aa92c9e0ae8 | refs/heads/main | 2023-01-04T06:33:02.546186 | 2020-10-21T11:09:13 | 2020-10-21T11:09:13 | 305,996,743 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,863 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct rectangle {
long long x1, y1, x2, y2;
};
rectangle min(rectangle r1, rectangle r2) {
rectangle r;
r.x1 = max(r1.x1, r2.x1);
r.x2 = min(r1.x2, r2.x2);
if (r.x2 < r.x1) {
r.x2 = r.x1;
}
r.y1 = max(r1.y1, r2.y1);
r.y2 = min(r1.y2, r2.y2);
if (r.y2 < r.y1) {
r.y2 = r.y1;
}
return r;
}
long long square(rectangle r) {
return (r.x2 - r.x1) * (r.y2 - r.y1);
}
int n, m, log_n, log_m;
vector<long long> lg;
vector<vector<vector<vector<rectangle>>>> s;
vector<vector<rectangle>> rs;
rectangle INF = {INT32_MIN, INT32_MIN, INT32_MAX, INT32_MAX};
void build() {
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
s[i][j][0][0] = rs[i][j];
}
}
for (int k = 1; k < log_m; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (j + (1 << (k - 1)) < m) {
s[i][j][0][k] = min(s[i][j][0][k - 1], s[i][j + (1 << (k - 1))][0][k - 1]);
} else {
s[i][j][0][k] = s[i][j][0][k - 1];
}
}
}
}
for (int k = 1; k < log_n; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (i + (1 << (k - 1)) < n) {
s[i][j][k][0] = min(s[i][j][k - 1][0], s[i + (1 << (k - 1))][j][k - 1][0]);
} else {
s[i][j][k][0] = s[i][j][k - 1][0];
}
}
}
}
for (int k = 1; k < log_n; k++) {
for (int i = 0; i < n; i++) {
for (int l = 1; l < log_m; l++) {
for (int j = 0; j < m; j++) {
if (i + (1 << (k - 1)) < n) {
s[i][j][k][l] = min(s[i][j][k - 1][l], s[i + (1 << (k - 1))][j][k - 1][l]);
} else {
s[i][j][k][l] = s[i][j][k - 1][l];
}
}
}
}
}
}
rectangle get(int x1, int y1, int x2, int y2) {
int k1 = (int) lg[(x2 - x1) + 1];
int k2 = (int) lg[(y2 - y1) + 1];
rectangle ans1 = s[x1][y1][k1][k2];
rectangle ans2 = s[x2 - (1 << k1) + 1][y1][k1][k2];
rectangle ans3 = s[x1][y2 - (1 << k2) + 1][k1][k2];
rectangle ans4 = s[x2 - (1 << k1) + 1][y2 - (1 << k2) + 1][k1][k2];
return min(min(ans1, ans2), min(ans3, ans4));
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
lg.resize(max(n, m) + 1);
lg[1] = 0;
for (int i = 2; i < max(n, m) + 1; i++) {
lg[i] = lg[i / 2] + 1;
}
log_n = (int) lg[(n)] + 1;
log_m = (int) lg[(m)] + 1;
rs.resize(n, vector<rectangle>(m));
s.resize(n, vector<vector<vector<rectangle>>>(m,
vector<vector<rectangle>>(log_n, vector<rectangle>(log_m, INF))));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
int x1, y1, x2, y2;
cin >> x1 >> y1 >> x2 >> y2;
rs[i][j].x1 = min(x1, x2);
rs[i][j].y1 = min(y1, y2);
rs[i][j].x2 = max(x1, x2);
rs[i][j].y2 = max(y1, y2);
}
}
build();
long long q, a, b, v;
cin >> q >> a >> b >> v;
long long ans = 0;
int mod = (int) 1e9 + 7;
for (int i = 0; i < q; i++) {
long long x1, y1, x2, y2;
x1 = v = (a * v + b) % mod;
y1 = v = (a * v + b) % mod;
x2 = v = (a * v + b) % mod;
y2 = v = (a * v + b) % mod;
x1 %= n;
x2 %= n;
y1 %= m;
y2 %= m;
ans += square(get((int) min(x1, x2), (int) min(y1, y2),
(int) max(x1, x2), (int) max(y1, y2)));
ans %= mod;
}
cout << ans;
return 0;
}
| [
"a.ivanova@niuitmo.ru"
] | a.ivanova@niuitmo.ru |
7af2f092e31cf46eab28614d95e927a9605688b0 | 7901e09d4f0827e0590fa6a7f038e7d9363e903b | /cpp_primer/ch03/vector_add.cc | 86a127215106284b8426359bc84cda87f0d1fc06 | [] | no_license | jiesoul/c_cpp_learn | 32298fa21d159d3fc9a6c0c2711700548db9e4a2 | cd4e411f73222dd26d22c1110ce0af4ecc60f051 | refs/heads/main | 2023-03-16T15:54:54.553175 | 2022-06-14T05:30:51 | 2022-06-14T05:30:51 | 204,853,153 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 267 | cc | #include <iostream>
#include <vector>
using std::cin;
using std::vector;
int main()
{
vector<int> v2;
for (int i = 0; i != 100; ++i) {
v2.push_back(i);
}
string word;
vector<string> text;
while (cin >> word)
text.push_back(word);
return 0;
}
| [
"jiesoul@gmail.com"
] | jiesoul@gmail.com |
19b3d21430d6a14a696a81c2c6a9dc4d8eaa1e8f | 3ea17d03bd4cce4955659c7e5edae0eaf9024cea | /02- Structures/Itemssss.cpp | c365d3336a51df7adf8358ce70e9d7c0a8a6a48c | [] | no_license | kcjavier21/data-structures | aadf845203ca0aefe47bbcc51cc15edf343c4473 | a265e8a40773d8f964694d8cc5d161645e22bbab | refs/heads/master | 2023-03-06T06:12:57.805011 | 2021-02-21T13:43:25 | 2021-02-21T13:43:25 | 326,631,707 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,278 | cpp | #include<stdio.h>
#include<conio.h>
#include<windows.h>
struct items{
char ItmName[20];
char SrlNo[10];
float Price;
float Qty;
float Total;
};
int main()
{
struct items Purchase[5];
int ctr;
float tempQTY, tempPRI, AllTotal=0;
char temp;
for(ctr=0; ctr<5; ctr++)
{
printf("Item Name : ");
gets(Purchase[ctr].ItmName);
printf("Serial Number : ");
gets(Purchase[ctr].SrlNo);
printf("Price : PHP ");
scanf("%f",&tempPRI);
Purchase[ctr].Price = tempPRI;
printf("Quantity : ");
scanf("%f", &tempQTY);
Purchase[ctr].Qty = tempQTY;
Purchase[ctr].Total = Purchase[ctr].Price * Purchase[ctr].Qty;
printf("Press any key to continue...");
getch();
scanf("%c", &temp);
system("CLS");
}
for(ctr=0; ctr<5; ctr++)
{
AllTotal += Purchase[ctr].Total;
}
for(ctr=0; ctr<5; ctr++)
{
printf("\nITEM NAME: %s", Purchase[ctr].ItmName);
printf("\nSERIAL NUMBER: %s", Purchase[ctr].SrlNo);
printf("\nPRICE: PHP %0.2f", Purchase[ctr].Price);
printf("\nQUANTITY: %0.0f",Purchase[ctr].Qty);
printf("\nTOTAL: PHP %0.2f", Purchase[ctr].Total);
}
printf("\n\n\nTOTAL PURCHASED: PHP %0.2f", AllTotal);
}
| [
"kencarlo21@gmail.com"
] | kencarlo21@gmail.com |
c38c66ecebe8117686cfd1351ff1f91531c16daa | d6b4bdf418ae6ab89b721a79f198de812311c783 | /tdid/include/tencentcloud/tdid/v20210519/model/CreateLabelRequest.h | c8544b6b0faba827055d41191ad8f71bd3ad69f8 | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp-intl-en | d0781d461e84eb81775c2145bacae13084561c15 | d403a6b1cf3456322bbdfb462b63e77b1e71f3dc | refs/heads/master | 2023-08-21T12:29:54.125071 | 2023-08-21T01:12:39 | 2023-08-21T01:12:39 | 277,769,407 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,160 | h | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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 TENCENTCLOUD_TDID_V20210519_MODEL_CREATELABELREQUEST_H_
#define TENCENTCLOUD_TDID_V20210519_MODEL_CREATELABELREQUEST_H_
#include <string>
#include <vector>
#include <map>
#include <tencentcloud/core/AbstractModel.h>
namespace TencentCloud
{
namespace Tdid
{
namespace V20210519
{
namespace Model
{
/**
* CreateLabel request structure.
*/
class CreateLabelRequest : public AbstractModel
{
public:
CreateLabelRequest();
~CreateLabelRequest() = default;
std::string ToJsonString() const;
/**
* 获取The label name.
* @return LabelName The label name.
*
*/
std::string GetLabelName() const;
/**
* 设置The label name.
* @param _labelName The label name.
*
*/
void SetLabelName(const std::string& _labelName);
/**
* 判断参数 LabelName 是否已赋值
* @return LabelName 是否已赋值
*
*/
bool LabelNameHasBeenSet() const;
/**
* 获取The network ID.
* @return ClusterId The network ID.
*
*/
std::string GetClusterId() const;
/**
* 设置The network ID.
* @param _clusterId The network ID.
*
*/
void SetClusterId(const std::string& _clusterId);
/**
* 判断参数 ClusterId 是否已赋值
* @return ClusterId 是否已赋值
*
*/
bool ClusterIdHasBeenSet() const;
/**
* 获取The group ID.
* @return GroupId The group ID.
*
*/
uint64_t GetGroupId() const;
/**
* 设置The group ID.
* @param _groupId The group ID.
*
*/
void SetGroupId(const uint64_t& _groupId);
/**
* 判断参数 GroupId 是否已赋值
* @return GroupId 是否已赋值
*
*/
bool GroupIdHasBeenSet() const;
private:
/**
* The label name.
*/
std::string m_labelName;
bool m_labelNameHasBeenSet;
/**
* The network ID.
*/
std::string m_clusterId;
bool m_clusterIdHasBeenSet;
/**
* The group ID.
*/
uint64_t m_groupId;
bool m_groupIdHasBeenSet;
};
}
}
}
}
#endif // !TENCENTCLOUD_TDID_V20210519_MODEL_CREATELABELREQUEST_H_
| [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
aa3762d63cf48135325f9396d7b5078eccb3b3ac | fddc9b94cf28978f687c845d8ef13199b1c3abb9 | /unpacked/src-mgen-5.02c/include/mgen.h | 30832896d3a0de909d2bb058e1478a72c0e8def0 | [] | no_license | fortian/protean-packages | f38efcb3d0c105d922a614b1ffed822cb5d749e1 | 44a881f9832853191b7eec7657b3e762b0848c4b | refs/heads/master | 2020-04-13T22:23:35.837207 | 2019-05-30T03:09:39 | 2019-05-30T03:09:39 | 163,477,763 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,561 | h | #ifndef _MGEN
#define _MGEN
#include "protokit.h"
#include "mgenFlow.h"
#include "mgenGlobals.h"
#include "mgenMsg.h"
class MgenController
{
public:
virtual ~MgenController() {};
virtual void OnMsgReceive(MgenMsg& msg) = 0;
virtual void OnOffEvent(char * buffer,int len) = 0;
virtual void OnStopEvent(char * buffer, int len) = 0;
protected:
MgenController() {};
}; // end MgenController class
/**
* @class DrecGroupList
*
* @brief Maintains list of scripted MGEN reception events.
* The "drec_event_timer" is used to schedule event execution.
*/
class DrecGroupList
{
public:
DrecGroupList();
~DrecGroupList();
void Destroy(Mgen& mgen);
bool JoinGroup(Mgen& mgen,
const ProtoAddress& groupAddress,
const ProtoAddress& sourceAddress,
const char* interfaceName = NULL,
UINT16 thePort = 0,
bool deferred = false);
bool LeaveGroup(Mgen& mgen,
const ProtoAddress& groupAddress,
const ProtoAddress& sourceAddress,
const char* interfaceName = NULL,
UINT16 thePort = 0);
bool JoinDeferredGroups(Mgen& mgen);
private:
class DrecMgenTransport
{
friend class DrecGroupList;
public:
DrecMgenTransport(const ProtoAddress& groupAddr,
const ProtoAddress& sourceAddr,
const char* interfaceName,
UINT16 thePort);
~DrecMgenTransport();
void SetInterface(const char* interfaceName)
{
if (interfaceName)
strncpy(interface_name, interfaceName, 16);
else
interface_name[0] = '\0';
}
const char* GetInterface()
{return (('\0' != interface_name[0]) ? interface_name : NULL);}
bool Activate(Mgen& mgen);
bool IsActive() {return (NULL != flow_transport);}
UINT16 GetPort() {return port;}
private:
MgenTransport* flow_transport;
ProtoAddress group_addr;
ProtoAddress source_addr; // Source address used for SSM (src specific mcast)
char interface_name[16];
UINT16 port;
DrecMgenTransport* prev;
DrecMgenTransport* next;
}; // end class DrecGroupList::DrecMgenTransport
DrecMgenTransport* FindMgenTransportByGroup(const ProtoAddress& groupAddr,
const ProtoAddress& sourceAddr,
const char* interfaceName = NULL,
UINT16 thePort = 0);
void Append(DrecMgenTransport* item);
void Remove(DrecMgenTransport* item);
DrecMgenTransport* head;
DrecMgenTransport* tail;
}; // end class DrecGroupList
/**
* @class Mgen
*
* @brief Mgen is the top level state and controller of an MGEN instance. Intended to be embedded into applications or network simulation agents. Contains primary elemenets: MgenFlowList, MgenEventList, MgenTransportList, DrecGroupList, ProtocolTimerMgr and various default parameters.
*/
class Mgen
{
public:
enum {SCRIPT_LINE_MAX = 8192}; // maximum script line length
Mgen(ProtoTimerMgr& timerMgr,
ProtoSocket::Notifier& socketNotifier);
~Mgen();
/**
* MGEN "global command" set
*/
enum Command
{
INVALID_COMMAND,
EVENT,
START, // specify absolute start time
INPUT, // input and parse an MGEN script
OUTPUT, // open output (log) file
LOG, // open log file for appending
NOLOG, // no output
TXLOG, // turn transmit logging on
LOCALTIME, // print log messages in localtime rather than gmtime (the default)
DLOG, // set debug log file
SAVE, // save pending flow state/offset info on exit.
DEBUG, // specify debug level
OFFSET, // time offset into script
TXBUFFER, // Tx socket buffer size
RXBUFFER, // Rx socket buffer size
LABEL, // IPv6 flow label
BROADCAST, // send/receive broadcasts from socket
TOS, // IPV4 Type-Of-Service
TTL, // Multicast Time-To-Live
UNICAST_TTL, // Unicast Time-To-Live
DF, // DF/Fragmentation status
INTERFACE, //Multicast Interface
BINARY, // turn binary logfile mode on
FLUSH, // flush log after _each_ event
CHECKSUM, // turn on _both_ tx and rx checksum options
TXCHECKSUM,// include checksums in transmitted MGEN messages
RXCHECKSUM,// force checksum validation at receiver _always_
QUEUE, // Turn off tx_timer when pending queue exceeds this limit
REUSE // Toggle socket reuse on and off
};
static Command GetCommandFromString(const char* string);
enum CmdType {CMD_INVALID, CMD_ARG, CMD_NOARG};
static const char* GetCmdName(Command cmd);
static CmdType GetCmdType(const char* cmd);
void SetController(MgenController* theController)
{controller = theController;}
MgenController* GetController() {return controller;}
ProtoSocket::Notifier& GetSocketNotifier() {return socket_notifier;}
MgenTransportList& GetTransportList() {return transport_list;} // for ns2
bool OnCommand(Mgen::Command cmd, const char* arg, bool override = false);
bool GetChecksumEnable() {return checksum_enable;}
bool GetChecksumForce() {return checksum_force;}
bool GetLogData() {return log_data;}
bool GetLogGpsData() {return log_gps_data;}
bool OpenLog(const char* path, bool append, bool binary);
void CloseLog();
void SetLogFile(FILE* filePtr);
FILE* GetLogFile() {return log_file;}
bool GetLogBinary() {return log_binary;}
bool GetLocalTime() {return local_time;}
bool GetLogFlush() {return log_flush;}
bool GetLogTx() {return log_tx;}
bool GetReuse() {return reuse;}
typedef int (*LogFunction)(FILE*, const char*, ...);
#ifndef _WIN32_WCE
static LogFunction Log;
#else
static LogFunction Log;
// Alternative logging function for WinCE debug window when logging to stdout/stderr
static int Mgen::LogToDebug(FILE* filePtr, const char* format, ...);
#endif // if/else _WIN32_WCE
bool ParseScript(const char* path);
#if OPNET // JPH 11/16/2005
bool ParseScript(List*);
#endif // OPNET
bool ParseEvent(const char* lineBuffer, unsigned int lineCount);
double GetCurrentOffset() const;
bool GetOffsetPending() {return offset_pending;}
void InsertDrecEvent(DrecEvent* event);
void SetDefaultSocketType(ProtoAddress::Type addrType)
{addr_type = addrType;}
ProtoAddress::Type GetDefaultSocketType() {return addr_type;}
void SetDefaultReuse(bool reuseTemp) { reuse = reuseTemp;}
void SetPositionCallback(MgenPositionFunc* callback,
const void* clientData)
{
get_position = callback;
get_position_data = clientData;
}
void SetSinkPath(const char* theSinkPath)
{
strncpy(sink_path, theSinkPath, PATH_MAX);
}
void SetSourcePath(const char* theSourcePath)
{
strncpy(source_path, theSourcePath, PATH_MAX);
}
void SetSinkBlocking(bool sinkNonBlocking) {sink_non_blocking = sinkNonBlocking;}
void SetHostAddress(const ProtoAddress hostAddr)
{
host_addr = hostAddr;
}
void SetLogData(bool logData)
{
log_data = logData;
}
void SetLogGpsData(bool logGpsData)
{
log_gps_data = logGpsData;
}
void ClearHostAddress()
{
host_addr.Invalidate();
}
#ifdef HAVE_GPS
void SetPayloadHandle(GPSHandle payloadHandle)
{
payload_handle = payloadHandle;
}
#endif // HAVE_GPS
bool Start();
void Stop();
bool DelayedStart() {return start_timer.IsActive();}
void GetStartTime(char* buffer)
{
sprintf(buffer, "%02d:%02d:%02.0f%s",
start_hour, start_min, start_sec,
(start_gmt ? "GMT" : ""));
}
bool ConvertBinaryLog(const char* path);
bool IsStarted () {return started;};
MgenTransport* GetMgenTransport(Protocol theProtocol,
UINT16 srcPort,
const ProtoAddress& dstAddress,
const char* theInterface,
bool closedOnly = false,
bool connect = false);
MgenTransport* FindMgenTransport(Protocol theProtocol,
UINT16 srcPort,
const ProtoAddress& dstAddress,
bool closedOnly,
MgenTransport* mgenTransport,
const char* theInterface);
MgenTransport* FindMgenTransportBySocket(const ProtoSocket& socket);
MgenTransport* FindTransportByInterface(const char* interfaceName,
UINT16 thePort = 0,
ProtoAddress::Type addrType = ProtoAddress::INVALID);
bool LeaveGroup(MgenTransport* transport,
const ProtoAddress& groupAddress,
const ProtoAddress& sourceAddress,
const char* interfaceName = NULL);
MgenTransport* JoinGroup(const ProtoAddress& groupAddress,
const ProtoAddress& sourceAddress,
const char* interfaceName,
UINT16 thePort);
/**
* @class FastReader
*
* @brief A little utility class for reading script files line by line.
*/
class FastReader
{
public:
enum Result {OK, ERROR_, DONE}; // trailing '_' for WIN32
FastReader();
FastReader::Result Read(FILE* filePtr, char* buffer, unsigned int* len);
FastReader::Result Readline(FILE* filePtr, char* buffer,
unsigned int* len);
FastReader::Result ReadlineContinue(FILE* filePtr, char* buffer,
unsigned int* len,
unsigned int* lineCount = NULL);
private:
enum {BUFSIZE = 1024};
char savebuf[BUFSIZE];
char* saveptr;
unsigned int savecount;
}; // end class FastReader
ProtoAddress& GetHostAddr() {return host_addr;}
MgenFlowList& GetFlowList() {return flow_list;}
bool GetDefaultBroadcast() {return default_broadcast;}
unsigned int GetDefaultMulticastTtl() {return default_multicast_ttl;}
unsigned int GetDefaultUnicastTtl() {return default_unicast_ttl;}
FragmentationStatus GetDefaultDF() {return default_df;}
unsigned int GetDefaultTos() {return default_tos;}
unsigned int GetDefaultTxBuffer() {return default_tx_buffer;}
unsigned int GetDefaultRxBuffer() {return default_rx_buffer;}
const char* GetDefaultMulticastInterface()
{return (('\0' != default_interface[0]) ? default_interface : NULL);}
int GetDefaultQueuLimit() {return default_queue_limit;}
private:
// MGEN script command types ("global" commands)
void SetDefaultBroadcast(bool broadcastValue, bool override)
{
default_broadcast = default_broadcast_lock ?
(override ? broadcastValue : default_broadcast) :
broadcastValue;
default_broadcast_lock = override ? true : default_broadcast_lock;
}
void SetDefaultMulticastTtl(unsigned int ttlValue, bool override)
{
default_multicast_ttl = default_multicast_ttl_lock ?
(override ? ttlValue : default_multicast_ttl) :
ttlValue;
default_multicast_ttl_lock = override ? true : default_multicast_ttl_lock;
}
void SetDefaultUnicastTtl(unsigned int ttlValue, bool override)
{
default_unicast_ttl = default_unicast_ttl_lock ?
(override ? ttlValue : default_unicast_ttl) :
ttlValue;
default_unicast_ttl_lock = override ? true : default_unicast_ttl_lock;
}
void SetDefaultDF(FragmentationStatus dfValue, bool override)
{
default_df = default_df_lock ?
(override ? dfValue : default_df) :
dfValue;
default_df_lock = override ? true : default_df_lock;
}
void SetDefaultTos(unsigned int tosValue, bool override)
{
default_tos = default_tos_lock ?
(override ? tosValue : default_tos) :
tosValue;
default_tos_lock = override ? true : default_tos_lock;
}
void SetDefaultTxBufferSize(unsigned int bufferSize, bool override)
{
default_tx_buffer = default_tx_buffer_lock ?
(override ? bufferSize : default_tx_buffer) :
bufferSize;
default_tx_buffer_lock = override ? true : default_tx_buffer_lock;
}
void SetDefaultRxBufferSize(unsigned int bufferSize, bool override)
{
default_rx_buffer = default_rx_buffer_lock ?
(override ? bufferSize : default_rx_buffer) :
bufferSize;
default_rx_buffer_lock = override ? true : default_rx_buffer_lock;
}
void SetDefaultMulticastInterface(const char* interfaceName, bool override)
{
if (override || !default_interface_lock)
{
if (interfaceName)
strncpy(default_interface, interfaceName, 16);
else
default_interface[0] = '\0';
}
default_interface_lock = override ? true : default_interface_lock;
}
void SetDefaultQueueLimit(unsigned int queueLimitValue, bool override)
{
default_queue_limit = default_queue_limit_lock ?
(override ? queueLimitValue : default_queue_limit) :
queueLimitValue;
default_queue_limit_lock = override ? true : default_queue_limit_lock;
}
// for mapping protocol types from script line fields
static const StringMapper COMMAND_LIST[];
bool OnStartTimeout(ProtoTimer& theTimer);
bool OnDrecEventTimeout(ProtoTimer& theTimer);
void ProcessDrecEvent(const DrecEvent& event);
// Common state
MgenController* controller; // optional mgen controller
ProtoSocket::Notifier& socket_notifier;
ProtoTimerMgr& timer_mgr;
char* save_path;
bool save_path_lock;
bool started;
ProtoTimer start_timer;
unsigned int start_hour; // absolute start time
unsigned int start_min;
double start_sec;
bool start_gmt;
bool start_time_lock;
double offset;
bool offset_lock;
bool offset_pending;
bool checksum_force; // force checksum validation at rcvr
UINT32 default_flow_label;
bool default_label_lock;
unsigned int default_tx_buffer;
unsigned int default_rx_buffer;
bool default_broadcast;
unsigned char default_tos;
unsigned char default_multicast_ttl; // multicast ttl
unsigned char default_unicast_ttl; // unicast ttl
FragmentationStatus default_df; // socket df/fragmentation
char default_interface[16]; // multicast interface name
int default_queue_limit;
// Socket state
bool default_broadcast_lock;
bool default_tos_lock;
bool default_multicast_ttl_lock;
bool default_unicast_ttl_lock;
bool default_df_lock;
bool default_tx_buffer_lock;
bool default_rx_buffer_lock;
bool default_interface_lock;
bool default_queue_limit_lock;
char sink_path[PATH_MAX];
char source_path[PATH_MAX];
bool sink_non_blocking;
bool log_data;
bool log_gps_data;
ProtoAddress host_addr;
bool checksum_enable;
MgenFlowList flow_list;
MgenTransportList transport_list;
// Drec state
ProtoTimer drec_event_timer;
MgenEventList drec_event_list;
DrecEvent* next_drec_event; // for iterating drec_event_list
DrecGroupList drec_group_list;
ProtoAddress::Type addr_type;
MgenPositionFunc* get_position;
const void* get_position_data;
#ifdef HAVE_GPS
GPSHandle payload_handle;
#endif // HAVE_GPS
protected:
FILE* log_file;
bool log_binary;
bool local_time;
bool log_flush;
bool log_file_lock;
bool log_tx;
bool log_open;
bool log_empty;
bool reuse;
}; // end class Mgen
#endif // _MGEN
| [
"bstern@fortian.com"
] | bstern@fortian.com |
f8c04aed789c01c76a933b7e1c34b62cc1287564 | 6d0fedb550641ff86c88ef78ee2ea4ae06e88854 | /Game Dev 1/Base to copy to/Copy To - It is not supposed to compile, only info/Motor2D/j1Render.cpp | 00f537b92ad7a5e6e05c05feab513a9f9383d629 | [] | no_license | MarcFly/-Programming-UPC-Year-2-up- | 1e44e2545405bb59362c20e98e9e2f07753170b3 | 96b1da411271dec0827aecff478d25f7223693e1 | refs/heads/master | 2021-08-28T07:03:08.676531 | 2017-12-11T13:43:38 | 2017-12-11T13:43:38 | 72,614,680 | 0 | 0 | null | 2017-10-25T11:48:30 | 2016-11-02T07:25:49 | C | UTF-8 | C++ | false | false | 5,483 | cpp | #include "p2Defs.h"
#include "p2Log.h"
#include "j1App.h"
#include "j1Window.h"
#include "j1Render.h"
#define VSYNC true
j1Render::j1Render() : j1Module()
{
name.create("renderer");
background.r = 0;
background.g = 0;
background.b = 0;
background.a = 0;
}
// Destructor
j1Render::~j1Render()
{}
// Called before render is available
bool j1Render::Awake(pugi::xml_node& config)
{
LOG("Create SDL rendering context");
bool ret = true;
// load flags
Uint32 flags = SDL_RENDERER_ACCELERATED;
if(config.child("vsync").attribute("value").as_bool(true) == true)
{
flags |= SDL_RENDERER_PRESENTVSYNC;
LOG("Using vsync");
}
renderer = SDL_CreateRenderer(App->win->window, -1, flags);
if(renderer == NULL)
{
LOG("Could not create the renderer! SDL_Error: %s\n", SDL_GetError());
ret = false;
}
else
{
camera.w = App->win->screen_surface->w;
camera.h = App->win->screen_surface->h;
camera.x = 0;
camera.y = 0;
}
return ret;
}
// Called before the first frame
bool j1Render::Start()
{
LOG("render start");
// back background
SDL_RenderGetViewport(renderer, &viewport);
return true;
}
// Called each loop iteration
bool j1Render::PreUpdate()
{
SDL_RenderClear(renderer);
return true;
}
bool j1Render::PostUpdate()
{
SDL_SetRenderDrawColor(renderer, background.r, background.g, background.g, background.a);
SDL_RenderPresent(renderer);
return true;
}
// Called before quitting
bool j1Render::CleanUp()
{
LOG("Destroying SDL render");
SDL_DestroyRenderer(renderer);
return true;
}
// Load Game State
//H3 TODO 6: Create a method to load the state
// for now it will be camera's x and y
bool j1Render::Load(pugi::xml_node& data)
{
camera.x = data.child("camera").attribute("x").as_int();
camera.y = data.child("camera").attribute("y").as_int();
return true;
}
//
// Save Game State
//H3 TODO 8: Create a method to save the state
// using append_child and append_attribute
bool j1Render::Save(pugi::xml_node& data) const
{
pugi::xml_node cam = data.append_child("camera");
cam.append_attribute("x") = camera.x;
cam.append_attribute("y") = camera.y;
return true;
}
//
void j1Render::SetBackgroundColor(SDL_Color color)
{
background = color;
}
void j1Render::SetViewPort(const SDL_Rect& rect)
{
SDL_RenderSetViewport(renderer, &rect);
}
void j1Render::ResetViewPort()
{
SDL_RenderSetViewport(renderer, &viewport);
}
iPoint j1Render::ScreenToWorld(int x, int y) const
{
iPoint ret;
int scale = App->win->GetScale();
ret.x = (x - camera.x / scale);
ret.y = (y - camera.y / scale);
return ret;
}
// Blit to screen
bool j1Render::Blit(SDL_Texture* texture, int x, int y, const SDL_Rect* section, float speed, double angle, int pivot_x, int pivot_y) const
{
bool ret = true;
uint scale = App->win->GetScale();
SDL_Rect rect;
rect.x = (int)(camera.x * speed) + x * scale;
rect.y = (int)(camera.y * speed) + y * scale;
if(section != NULL)
{
rect.w = section->w;
rect.h = section->h;
}
else
{
SDL_QueryTexture(texture, NULL, NULL, &rect.w, &rect.h);
}
rect.w *= scale;
rect.h *= scale;
SDL_Point* p = NULL;
SDL_Point pivot;
if(pivot_x != INT_MAX && pivot_y != INT_MAX)
{
pivot.x = pivot_x;
pivot.y = pivot_y;
p = &pivot;
}
if(SDL_RenderCopyEx(renderer, texture, section, &rect, angle, p, SDL_FLIP_NONE) != 0)
{
LOG("Cannot blit to screen. SDL_RenderCopy error: %s", SDL_GetError());
ret = false;
}
return ret;
}
bool j1Render::DrawQuad(const SDL_Rect& rect, Uint8 r, Uint8 g, Uint8 b, Uint8 a, bool filled, bool use_camera) const
{
bool ret = true;
uint scale = App->win->GetScale();
SDL_SetRenderDrawBlendMode(renderer, SDL_BLENDMODE_BLEND);
SDL_SetRenderDrawColor(renderer, r, g, b, a);
SDL_Rect rec(rect);
if(use_camera)
{
rec.x = (int)(camera.x + rect.x * scale);
rec.y = (int)(camera.y + rect.y * scale);
rec.w *= scale;
rec.h *= scale;
}
int result = (filled) ? SDL_RenderFillRect(renderer, &rec) : SDL_RenderDrawRect(renderer, &rec);
if(result != 0)
{
LOG("Cannot draw quad to screen. SDL_RenderFillRect error: %s", SDL_GetError());
ret = false;
}
return ret;
}
bool j1Render::DrawLine(int x1, int y1, int x2, int y2, Uint8 r, Uint8 g, Uint8 b, Uint8 a, bool use_camera) const
{
bool ret = true;
uint scale = App->win->GetScale();
SDL_SetRenderDrawBlendMode(renderer, SDL_BLENDMODE_BLEND);
SDL_SetRenderDrawColor(renderer, r, g, b, a);
int result = -1;
if(use_camera)
result = SDL_RenderDrawLine(renderer, camera.x + x1 * scale, camera.y + y1 * scale, camera.x + x2 * scale, camera.y + y2 * scale);
else
result = SDL_RenderDrawLine(renderer, x1 * scale, y1 * scale, x2 * scale, y2 * scale);
if(result != 0)
{
LOG("Cannot draw quad to screen. SDL_RenderFillRect error: %s", SDL_GetError());
ret = false;
}
return ret;
}
bool j1Render::DrawCircle(int x, int y, int radius, Uint8 r, Uint8 g, Uint8 b, Uint8 a, bool use_camera) const
{
bool ret = true;
uint scale = App->win->GetScale();
SDL_SetRenderDrawBlendMode(renderer, SDL_BLENDMODE_BLEND);
SDL_SetRenderDrawColor(renderer, r, g, b, a);
int result = -1;
SDL_Point points[360];
float factor = (float)M_PI / 180.0f;
for(uint i = 0; i < 360; ++i)
{
points[i].x = (int)(x + radius * cos(i * factor));
points[i].y = (int)(y + radius * sin(i * factor));
}
result = SDL_RenderDrawPoints(renderer, points, 360);
if(result != 0)
{
LOG("Cannot draw quad to screen. SDL_RenderFillRect error: %s", SDL_GetError());
ret = false;
}
return ret;
} | [
"mtorres.form@gmail.com"
] | mtorres.form@gmail.com |
bb56170fe75183663a4326351a0130de452ad3f2 | 26142d3dd05db1bfba6063fb316ec7f59d6ce268 | /Compopt/Nouna_PCVRP/qt-project/ver04/nouna_project/hrd/test.h | 09727694bbcabea2c31759ade0c7c8587331d648 | [] | no_license | tikhoncheva/work | f9130e638d44d4418ea0ecec6d29b762b5a7ab86 | 9b1cc41a0e851df1506ffe0c4061087f33c7ba77 | refs/heads/master | 2021-01-21T12:36:04.777282 | 2016-01-13T10:09:35 | 2016-01-13T10:09:35 | 19,025,157 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 786 | h | #ifndef TEST_H
#define TEST_H
#include <sstream>
#include <iostream>
#include <vector>
#include <algorithm>
#include <math.h>
#include <hrd/const.h>
#include <hrd/interviewer.h>
#include <hrd/household.h>
class clTest
{
private:
const std::vector<stInterviewer> interviewer;
const std::vector<stHousehold> household;
const std::vector<std::vector<std::pair<unsigned int, double> > > ITimePlan_weekly;
int test1(std::stringstream& ss);
int test2(std::stringstream& ss);
int test3(std::stringstream& ss);
int test4(std::stringstream& ss);
public:
clTest(const std::vector<stInterviewer>&, const std::vector<stHousehold>& ,
const std::vector<std::vector<std::pair<unsigned int, double> > >& );
std::string run();
};
#endif // TEST_H
| [
"kasiatikhoncheva@gmail.com"
] | kasiatikhoncheva@gmail.com |
d451f52bbeb76f5c371a63cee662027906cd0363 | e821ffa3ad5a12900ca07028ef4d121b312a5cbb | /LeetCode/icecream.cpp | 815055ee61d25d75c66039baad4fce07fd7ce8d0 | [] | no_license | mave89/CPlusPlus_Random | 82feb8b9afca3e52a1c1397d5e19f4ddd41a2800 | 4069bb685762cdf5f739f660b1d7c9ed0738f50d | refs/heads/master | 2023-03-06T04:23:16.904139 | 2020-04-07T08:27:40 | 2020-04-07T08:27:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 768 | cpp | #include <iostream>
#include <vector>
std::string calculate(std::vector<int> array, int money){
std::string ans;
for(int i = 0; i < array.size(); i++){
std::string ans = std::to_string(i);
std::vector<int>::iterator it;
it = std::find(array.begin() + i + 1, array.end(), money - array[i]);
if(it != array.end()){
ans += " " + std::to_string(it - array.begin());
return ans;
}
else
ans.clear();
}
return ans;
}
int main(){
int trips;
std::cin >> trips;
for(int i = 0; i < trips; i++){
int money, num_flavours;
std::cin >> money >> num_flavours;
std::vector<int> flavours(num_flavours);
for(int j = 0; j < num_flavours; j++)
std::cin >> flavours[j];
std::cout << calculate(flavours, money) << std::endl;
}
return 0;
} | [
"fabidi89@vt.edu"
] | fabidi89@vt.edu |
9100aceacc44ce3fa95cb22f9be6c43fe7dd8579 | 927077b0100ccdd4f6962256330d1d049f74427a | /devel/include/dji_sdk/LocalPositionNavigationActionFeedback.h | deae773023a4fbb7fd4b6734e4a59b48aa9a6399 | [] | no_license | Aswath93/ros | d883474125702d79ca3f21cea4c4b65352c2d718 | 61952bc47542fff33564c367bb83f4e69cbfb18c | refs/heads/master | 2021-01-16T19:57:07.349378 | 2017-08-13T15:51:54 | 2017-08-13T15:51:54 | 100,187,737 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,312 | h | // Generated by gencpp from file dji_sdk/LocalPositionNavigationActionFeedback.msg
// DO NOT EDIT!
#ifndef DJI_SDK_MESSAGE_LOCALPOSITIONNAVIGATIONACTIONFEEDBACK_H
#define DJI_SDK_MESSAGE_LOCALPOSITIONNAVIGATIONACTIONFEEDBACK_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
#include <std_msgs/Header.h>
#include <actionlib_msgs/GoalStatus.h>
#include <dji_sdk/LocalPositionNavigationFeedback.h>
namespace dji_sdk
{
template <class ContainerAllocator>
struct LocalPositionNavigationActionFeedback_
{
typedef LocalPositionNavigationActionFeedback_<ContainerAllocator> Type;
LocalPositionNavigationActionFeedback_()
: header()
, status()
, feedback() {
}
LocalPositionNavigationActionFeedback_(const ContainerAllocator& _alloc)
: header(_alloc)
, status(_alloc)
, feedback(_alloc) {
(void)_alloc;
}
typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
_header_type header;
typedef ::actionlib_msgs::GoalStatus_<ContainerAllocator> _status_type;
_status_type status;
typedef ::dji_sdk::LocalPositionNavigationFeedback_<ContainerAllocator> _feedback_type;
_feedback_type feedback;
typedef boost::shared_ptr< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> const> ConstPtr;
}; // struct LocalPositionNavigationActionFeedback_
typedef ::dji_sdk::LocalPositionNavigationActionFeedback_<std::allocator<void> > LocalPositionNavigationActionFeedback;
typedef boost::shared_ptr< ::dji_sdk::LocalPositionNavigationActionFeedback > LocalPositionNavigationActionFeedbackPtr;
typedef boost::shared_ptr< ::dji_sdk::LocalPositionNavigationActionFeedback const> LocalPositionNavigationActionFeedbackConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace dji_sdk
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': True}
// {'nav_msgs': ['/opt/ros/indigo/share/nav_msgs/cmake/../msg'], 'dji_sdk': ['/home/aswath/ros/src/Onboard-SDK-ROS/dji_sdk/msg', '/home/aswath/ros/devel/share/dji_sdk/msg'], 'actionlib_msgs': ['/opt/ros/indigo/share/actionlib_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/indigo/share/geometry_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/indigo/share/std_msgs/cmake/../msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsFixedSize< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> const>
: FalseType
{ };
template <class ContainerAllocator>
struct IsMessage< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> const>
: TrueType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >
{
static const char* value()
{
return "5179dd71c43db276e621ee47946d9620";
}
static const char* value(const ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0x5179dd71c43db276ULL;
static const uint64_t static_value2 = 0xe621ee47946d9620ULL;
};
template<class ContainerAllocator>
struct DataType< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >
{
static const char* value()
{
return "dji_sdk/LocalPositionNavigationActionFeedback";
}
static const char* value(const ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >
{
static const char* value()
{
return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
\n\
Header header\n\
actionlib_msgs/GoalStatus status\n\
LocalPositionNavigationFeedback feedback\n\
\n\
================================================================================\n\
MSG: std_msgs/Header\n\
# Standard metadata for higher-level stamped data types.\n\
# This is generally used to communicate timestamped data \n\
# in a particular coordinate frame.\n\
# \n\
# sequence ID: consecutively increasing ID \n\
uint32 seq\n\
#Two-integer timestamp that is expressed as:\n\
# * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\
# * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\
# time-handling sugar is provided by the client library\n\
time stamp\n\
#Frame this data is associated with\n\
# 0: no frame\n\
# 1: global frame\n\
string frame_id\n\
\n\
================================================================================\n\
MSG: actionlib_msgs/GoalStatus\n\
GoalID goal_id\n\
uint8 status\n\
uint8 PENDING = 0 # The goal has yet to be processed by the action server\n\
uint8 ACTIVE = 1 # The goal is currently being processed by the action server\n\
uint8 PREEMPTED = 2 # The goal received a cancel request after it started executing\n\
# and has since completed its execution (Terminal State)\n\
uint8 SUCCEEDED = 3 # The goal was achieved successfully by the action server (Terminal State)\n\
uint8 ABORTED = 4 # The goal was aborted during execution by the action server due\n\
# to some failure (Terminal State)\n\
uint8 REJECTED = 5 # The goal was rejected by the action server without being processed,\n\
# because the goal was unattainable or invalid (Terminal State)\n\
uint8 PREEMPTING = 6 # The goal received a cancel request after it started executing\n\
# and has not yet completed execution\n\
uint8 RECALLING = 7 # The goal received a cancel request before it started executing,\n\
# but the action server has not yet confirmed that the goal is canceled\n\
uint8 RECALLED = 8 # The goal received a cancel request before it started executing\n\
# and was successfully cancelled (Terminal State)\n\
uint8 LOST = 9 # An action client can determine that a goal is LOST. This should not be\n\
# sent over the wire by an action server\n\
\n\
#Allow for the user to associate a string with GoalStatus for debugging\n\
string text\n\
\n\
\n\
================================================================================\n\
MSG: actionlib_msgs/GoalID\n\
# The stamp should store the time at which this goal was requested.\n\
# It is used by an action server when it tries to preempt all\n\
# goals that were requested before a certain time\n\
time stamp\n\
\n\
# The id provides a way to associate feedback and\n\
# result message with specific goal requests. The id\n\
# specified must be unique.\n\
string id\n\
\n\
\n\
================================================================================\n\
MSG: dji_sdk/LocalPositionNavigationFeedback\n\
# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\
#progress is in percent\n\
uint8 x_progress \n\
uint8 y_progress \n\
uint8 z_progress \n\
\n\
";
}
static const char* value(const ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.header);
stream.next(m.status);
stream.next(m.feedback);
}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct LocalPositionNavigationActionFeedback_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::dji_sdk::LocalPositionNavigationActionFeedback_<ContainerAllocator>& v)
{
s << indent << "header: ";
s << std::endl;
Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
s << indent << "status: ";
s << std::endl;
Printer< ::actionlib_msgs::GoalStatus_<ContainerAllocator> >::stream(s, indent + " ", v.status);
s << indent << "feedback: ";
s << std::endl;
Printer< ::dji_sdk::LocalPositionNavigationFeedback_<ContainerAllocator> >::stream(s, indent + " ", v.feedback);
}
};
} // namespace message_operations
} // namespace ros
#endif // DJI_SDK_MESSAGE_LOCALPOSITIONNAVIGATIONACTIONFEEDBACK_H
| [
"aswath93@gmail.com"
] | aswath93@gmail.com |
f104871cee3bf29421e5e6578b2cc33e41b8cd54 | 195393a8034505c7501eff4eacba10a972894ec5 | /dp/util/Reflection.h | 75e77ddf4947e5ec5dba490b0c8a4896e1dfce85 | [
"BSD-3-Clause"
] | permissive | hsdk/pipeline | 08f8cc923b20a0e915eb6a261037520490f710e0 | b8fe2f13524e275f236feb9d3c82ee4f491c30c6 | refs/heads/master | 2021-01-17T22:12:55.209289 | 2015-03-05T09:14:10 | 2015-03-06T14:47:02 | 29,969,414 | 0 | 0 | null | 2015-01-28T13:48:48 | 2015-01-28T13:48:47 | null | UTF-8 | C++ | false | false | 67,148 | h | // Copyright NVIDIA Corporation 2009-2011
// 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 NVIDIA CORPORATION nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#pragma once
#include <map>
#include <set>
#include <vector>
#include <string>
#include <dp/math/Boxnt.h>
#include <dp/math/Quatt.h>
#include <dp/math/Trafo.h>
#include <dp/math/Vecnt.h>
#include <dp/util/Observer.h>
#include <dp/util/Semantic.h>
namespace dp
{
namespace util
{
// forward declarations
class Reflection;
class ReflectionInfo;
class Property;
/*! \brief Type definition of a PropertyId. */
typedef Property *PropertyId;
/** \brief This is the base class for all Properties. It's being used as Handle to a Property. All property implementations need to derive from
\sa TypedProperty which also adds the get/set methods to the interface.
**/
class Property
{
public:
/** Supported property types **/
enum Type
{
TYPE_FLOAT
, TYPE_FLOAT2
, TYPE_FLOAT3
, TYPE_FLOAT4
, TYPE_INT
, TYPE_INT2
, TYPE_INT3
, TYPE_INT4
, TYPE_UINT
, TYPE_UINT2
, TYPE_UINT3
, TYPE_UINT4
, TYPE_QUATERNION_FLOAT
, TYPE_BOX2_FLOAT
, TYPE_BOX3_FLOAT
, TYPE_BOX4_FLOAT
, TYPE_MATRIX33_FLOAT
, TYPE_MATRIX44_FLOAT
, TYPE_BOOLEAN
, TYPE_CHAR
, TYPE_TRANSFORMATION
, TYPE_VERTEX_ATTRIBUTE
, TYPE_OBJECT //!< class dp::sg::core::Object
, TYPE_STRING //!< class std::string
, TYPE_SET_UINT //!< class std::set<unsigned int>
, TYPE_NODE
, TYPE_SCENE
, TYPE_VIEWSTATE
, TYPE_RENDERTARGET
, TYPE_TEXTURE
, TYPE_UNKNOWN
};
DP_UTIL_API virtual ~Property();
DP_UTIL_API virtual Type getType() const = 0; //!< Returns the type of the Property
DP_UTIL_API virtual dp::util::Semantic getSemantic() const = 0; //!< Returns the semantic of the Property
DP_UTIL_API virtual std::string const & getAnnotation() const = 0; //!< Returns the annotation of a property
DP_UTIL_API virtual bool isEnum() const = 0; //!< Returns \c true if the Property is an enum
DP_UTIL_API virtual std::string const & getEnumTypeName() const = 0; //!< Returns the name of the enum type as a string
DP_UTIL_API virtual unsigned int getEnumsCount() const = 0; //!< Returns the number of enum values, if this an enum; otherwise returns 0
DP_UTIL_API virtual std::string const & getEnumName( unsigned int idx ) const = 0; //!< Returns the name of the enum value as a string
DP_UTIL_API virtual void addRef() = 0; //!< Increase the refcount of the property
DP_UTIL_API virtual void destroy() = 0; //!< Decrease the refcount and destroy the property if necessary
DP_UTIL_API virtual Property *clone() const; //!< Clone a property. Most properties do not contain any data and can just be reused.
};
/*! \brief Helper cast operator for reflection types.
* \param object pointer to cast form \a InputType to \a ReturnType. */
#ifndef NDEBUG
template <typename ReturnType, typename InputType> ReturnType* reflection_cast(InputType *object)
{
ReturnType *castedObject = dynamic_cast<ReturnType*>(object);
DP_ASSERT(castedObject != 0);
return castedObject;
}
#else
template <typename ReturnType, typename InputType> ReturnType* reflection_cast(InputType *object)
{
return static_cast<ReturnType*>(object);
}
#endif
/* \brief Template trait to get the property value for a C++ datatype
\remarks Usage: TypedPropertyEnum<DataType>::Type
*/
template <typename T> struct TypedPropertyEnum;
/*! \brief Specialization of the TypedPropertyEnum template for type float. */
template <> struct TypedPropertyEnum<float> {
enum { type = Property::TYPE_FLOAT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec2f. */
template <> struct TypedPropertyEnum<dp::math::Vec2f> {
enum { type = Property::TYPE_FLOAT2 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec3f. */
template <> struct TypedPropertyEnum<dp::math::Vec3f> {
enum { type = Property::TYPE_FLOAT3 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec4f. */
template <> struct TypedPropertyEnum<dp::math::Vec4f> {
enum { type = Property::TYPE_FLOAT4 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Box2f. */
template <> struct TypedPropertyEnum<dp::math::Box2f> {
enum { type = Property::TYPE_BOX2_FLOAT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Box3f. */
template <> struct TypedPropertyEnum<dp::math::Box3f> {
enum { type = Property::TYPE_BOX3_FLOAT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Box4f. */
template <> struct TypedPropertyEnum<dp::math::Box4f> {
enum { type = Property::TYPE_BOX4_FLOAT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Mat33f. */
template <> struct TypedPropertyEnum<dp::math::Mat33f> {
enum { type = Property::TYPE_MATRIX33_FLOAT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Mat44f. */
template <> struct TypedPropertyEnum<dp::math::Mat44f> {
enum { type = Property::TYPE_MATRIX44_FLOAT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Quatf. */
template <> struct TypedPropertyEnum<dp::math::Quatf> {
enum { type = Property::TYPE_QUATERNION_FLOAT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type bool. */
template <> struct TypedPropertyEnum<bool> {
enum { type = Property::TYPE_BOOLEAN };
};
/*! \brief Specialization of the TypedPropertyEnum template for type char. */
template <> struct TypedPropertyEnum<char> {
enum { type = Property::TYPE_CHAR };
};
/*! \brief Specialization of the TypedPropertyEnum template for type unsigned int. */
template <> struct TypedPropertyEnum<unsigned int> {
enum { type = Property::TYPE_UINT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec2ui. */
template <> struct TypedPropertyEnum<dp::math::Vec2ui> {
enum { type = Property::TYPE_UINT2 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec3ui. */
template <> struct TypedPropertyEnum<dp::math::Vec3ui> {
enum { type = Property::TYPE_UINT3 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec4ui. */
template <> struct TypedPropertyEnum<dp::math::Vec4ui> {
enum { type = Property::TYPE_UINT4 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type int. */
template <> struct TypedPropertyEnum<int> {
enum { type = Property::TYPE_INT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec2i. */
template <> struct TypedPropertyEnum<dp::math::Vec2i> {
enum { type = Property::TYPE_INT2 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec3i. */
template <> struct TypedPropertyEnum<dp::math::Vec3i> {
enum { type = Property::TYPE_INT3 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Vec4i. */
template <> struct TypedPropertyEnum<dp::math::Vec4i> {
enum { type = Property::TYPE_INT4 };
};
/*! \brief Specialization of the TypedPropertyEnum template for type dp::math::Trafo. */
template <> struct TypedPropertyEnum<dp::math::Trafo> {
enum { type = Property::TYPE_TRANSFORMATION };
};
/*! \brief Specialization of the TypedPropertyEnum template for type Reflection. */
template <> struct TypedPropertyEnum<Reflection> {
enum { type = Property::TYPE_OBJECT };
};
/*! \brief Specialization of the TypedPropertyEnum template for type std::string. */
template <> struct TypedPropertyEnum<std::string> {
enum { type = Property::TYPE_STRING };
};
/*! \brief Specialization of the TypedPropertyEnum template for type std::set<unsigned int>. */
template <> struct TypedPropertyEnum<std::set<unsigned int> > {
enum { type = Property::TYPE_SET_UINT };
};
// TODO must be moved to new dp::(ui?) module
#if 0
/*! \brief Specialization of the TypedPropertyEnum template for type dp::ui::RenderTargetSharedPtr. */
template <> struct TypedPropertyEnum< dp::ui::RenderTargetSharedPtr > {
enum { type = Property::TYPE_RENDERTARGET };
};
#endif
/*! \brief This is the templated baseclass for all properties of a given type<T>. All properties must
* derive from this class
*/
template <typename T> class TypedProperty : public Property
{
public:
virtual ~TypedProperty() {}
/*! \brief Retrieve the value of a property
* \param owner Object to retrieve the property value from
* \param value The property value will the stored in this variable
*/
virtual void getValue(const Reflection *owner, T &value) const = 0;
/*! \brief Set the value of a property
* \param owner Object which will receive the new property value
* \param value The new property value which should be set
*/
virtual void setValue(Reflection *owner, const T&value) = 0;
/* \brief returns the type of a property. This function uses the \sa TypedPropertyEnum<T> trait. When adding
new types it's necessary to specialize TypedPropertyEnum<MyNewType>
*/
virtual Type getType() const { return static_cast<Type>(TypedPropertyEnum<T>::type); }
};
/** \brief Type for the TypeTraits template **/
struct const_reference;
/** \brief Type for the TypeTraits template **/
struct value;
/** \brief This template convertes a pair ValueType/(const_reference/value) to the corresponding parameter signature.
TypeTraits<ValueType, value>::value_type is of type ValueType
TypeTraits<ValueType, value>::parameter_type is of type ValueType
TypeTraits<ValueType, const_reference>::value_type is of type ValueType
TypeTraits<ValueType, const_reference>::parameter_type is of type const ValueType &
**/
template <typename ValueType, typename ParameterType>
struct TypeTraits;
/*! \brief Partial specialization of the TypeTraits template for value types. */
template <typename ValueType>
struct TypeTraits<ValueType, value>
{
typedef ValueType value_type; //!< Value type definition of the template parameter \a ValueType
typedef ValueType parameter_type; //!< Parameter type definition of the template parameter \a ValueType
};
/*! \brief Partial specialization of the TypeTraits template for const reference types. */
template <typename ValueType>
struct TypeTraits<ValueType, const_reference>
{
typedef ValueType value_type; //!< Value type definition of the template parameter \a ValueType
typedef const ValueType& parameter_type; //!< Parameter type definition of the template parameter \a ValueType
};
/** \brief Functor to set a property value in an object
\param ValueType The value type of the property
\param SetType The value type accepted by set function used to set the property
\param ObjectType The class the set function belongs to
\param set Function pointer which is being called to set the property
**/
// FIXME ObjectType not necessary. It should be possible to use Reflection::*set for all function pointers.
template <typename ValueType, typename SetType, typename ObjectType, void(ObjectType::*set)(SetType)>
class FunctorSet
{
public:
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object owning the function to call.
* \param value The value to set. */
void operator()(Reflection *owner, const ValueType &value)
{
(reflection_cast<ObjectType>(owner)->*set)(value);
}
};
/*! \brief Functor to set the value of a member of an object.
* \param ValueType The value type of the member.
* \param ObjectType The class the member belongs to.
* \param Member A pointer to the member to set the value to.
* \param readonly bool specifying if the member is to be handled as readonly. */
template <typename ValueType, typename ObjectType, ValueType ObjectType::*Member, bool readonly>
class FunctorSetMember
{
public:
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object owning the member to set.
* \param value The value to set. */
void operator()(Reflection *owner, const ValueType &value)
{
if (readonly)
{
DP_ASSERT( 0 && "set invalid on this property" );
}
else
{
static_cast<ObjectType*>(owner)->*Member = value;
}
}
};
/** \brief Functor to set an enum property value in an object. This is special because enums can be either set as ints or by their enum type.
\param ValueType The value type of the property
\param SetType The value type accepted by set function used to set the property
\param ObjectType The class the set function belongs to
\param set Function pointer which is being called to set the property
**/
template <typename ValueType, typename SetType, typename ObjectType, void(ObjectType::*set)(SetType)>
class FunctorSetEnum
{
public:
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object owning the function to call.
* \param value The value to set. */
void operator()(Reflection *owner, const ValueType &value)
{
(reflection_cast<ObjectType>(owner)->*set)(value);
}
/*! \brief Function call operator of this Functor, specialized for values of type int.
* \param owner A pointer to the object owning the function to call.
* \param value The value to set. */
void operator()(Reflection *owner, const int &value)
{
(reflection_cast<ObjectType>(owner)->*set)( static_cast<ValueType>(value) );
}
};
/** \brief Functor to set a value which always asserts. This is being used for RO properties.
\param ValueType The value type of the property
\param ObjectType The class the set function belongs to
**/
// FIXME ObjectType unused
template <typename ValueType, typename ObjectType>
class FunctorSetInvalid
{
public:
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object to use.
* \param value The value to set. */
void operator()(const Reflection *owner, const ValueType &value)
{
DP_ASSERT( 0 && "set invalid on this property" );
}
};
/** \brief Functor to get a property value from an object
\param ValueType The value type of the property
\param ResultType The value type accepted by set function used to set the property
\param ObjectType The class the get function belongs to
\param set Function pointer which is being called to get the property
**/
template <typename ValueType, typename ResultType, typename ObjectType, ResultType(ObjectType::*get)() const>
class FunctorGet
{
public:
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object owning the function to call.
* \param returnValue Reference to the memory to get the result. */
void operator()(const Reflection *owner, ValueType &returnValue)
{
returnValue = (reflection_cast<const ObjectType>(owner)->*get)();
}
};
/*! \brief Functor to get a member value from an object.
* \param ValueType The value type of the member.
* \param ObjectType The class the member belongs to.
* \param member A pointer to the member to get. */
template <typename ValueType, typename ObjectType, ValueType ObjectType::*member>
class FunctorGetMember
{
public:
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object owning the member to get.
* \param returnValue Reference to the memory to get the member value. */
void operator()(const Reflection *owner, ValueType &returnValue)
{
returnValue = static_cast<const ObjectType*>(owner)->*member;
}
};
/** \brief Functor to get an enum property value from an object. It's possible to use an int or enum as return value.
\param ValueType The value type of the property
\param ResultType The value type accepted by set function used to set the property
\param ObjectType The class the get function belongs to
\param set Function pointer which is being called to get the property
**/
template <typename ValueType, typename ResultType, typename ObjectType, ResultType(ObjectType::*get)() const>
class FunctorGetEnum
{
public:
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object owning the function to call.
* \param returnValue Reference to the memory to get the function return value. */
void operator()(const Reflection *owner, ValueType &returnValue)
{
returnValue = (reflection_cast<const ObjectType>(owner)->*get)();
}
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object owning the function to call.
* \param returnValue Reference to the memory to get the function return value. */
void operator()(const Reflection *owner, int &returnValue)
{
returnValue = static_cast<int>( (reflection_cast<const ObjectType>(owner)->*get)() );
}
};
/** \brief Functor to set a value which always asserts. This is being used for RO properties.
\param ValueType The value type of the property
**/
// FIXME ObjectType unused
// FIXME get unused
template <typename ValueType, typename ObjectType, const ValueType&(ObjectType::*get)() const>
class FunctorGetInvalid
{
public:
/*! \brief Function call operator of this Functor
* \param owner A pointer to the object owning the function to call.
* \param returnValue Reference to the memory to get the function return value. */
void operator()( const Reflection *owner, ValueType &returnValue )
{
DP_ASSERT( 0 && "get invalid on this property" );
}
};
/** \brief A delegating property implementation. This class is used for most of the properties.
\param ValueType The value type of the Property
\param ObjectType The Object class this property belongs to
\param FunctorGet A functor class which must support the following interface <code>void operator()(Reflection *owner, const ValueType &value)</code>
\param FunctorGet A functor class which must support the following interface <code>void operator()(const Reflection *owner, ValueType &returnValue)</code>
\param semantic The semantic of this property.
* corresponding get/set functions of the given class.
*/
template <typename ValueType, typename ObjectType, typename FunctorGet, typename FunctorSet, typename dp::util::Semantic semantic, bool deleteOnDestroy>
class TypedPropertyImpl : public TypedProperty<ValueType>
{
public:
TypedPropertyImpl()
: m_refCount(1)
{}
virtual ~TypedPropertyImpl() {}
virtual void getValue(const Reflection *owner, ValueType &value) const
{
FunctorGet g;
return g(owner, value);
}
virtual void setValue(Reflection *owner, const ValueType &value)
{
FunctorSet s;
s(owner, value);
}
//!\brief Annotations are not supported for this object
virtual std::string const & getAnnotation() const
{
static std::string emptyString;
return( emptyString );
}
virtual dp::util::Semantic getSemantic() const
{
return semantic;
}
virtual bool isEnum() const
{
return( false );
}
virtual std::string const & getEnumTypeName() const
{
static std::string emptyString;
return( emptyString );
}
virtual unsigned int getEnumsCount() const
{
return( 0 );
}
virtual std::string const & getEnumName( unsigned int idx ) const
{
static std::string emptyString;
return( emptyString );
}
virtual void addRef()
{
++m_refCount;
}
virtual void destroy()
{
if ( deleteOnDestroy )
{
--m_refCount;
if ( !m_refCount )
{
delete this;
}
}
}
protected:
unsigned int m_refCount;
};
/** \brief A property object holding a value directly.
\param ValueType The value type the Property should hold.
* \remarks This property object should be hold only by a single owner unless different
* holders should hold the same property value.
*/
template <typename ValueType>
class TypedPropertyValue : public TypedProperty<ValueType>
{
public:
/*! \brief Constructor of a TypedPropertyValue.
* \param semantic The semantic of the property.
* \param annotation The annotation of the property.
* \param destroy If \c true, this property is deleted on calling destroy.
* \param value The initial value of this property. */
TypedPropertyValue( dp::util::Semantic semantic, const std::string &annotation, bool destroy, const ValueType &value );
/*! \brief Copy construtor of a TypedPropertyValue.
* \param rhs The TypedPropertyValue to copy from. */
TypedPropertyValue( const TypedPropertyValue &rhs );
/*! \brief Get the value of this TypedPropertyValue.
* \param value A reference to a ValueType to get the value to. */
virtual void getValue(const Reflection *, ValueType &value) const;
/*! \brief Set the value of this TypedPropertyValue.
* \param value A reference to the value to set. */
virtual void setValue( Reflection *, const ValueType &value );
virtual Property::Type getType() const; //!< Returns the type of the property
virtual dp::util::Semantic getSemantic() const; //!< Returns the semantic of the property
virtual void addRef(); //!< Not supported on this class
virtual void destroy(); //!< Destroy the property if necessary
virtual std::string getAnnotation() const; //!< Returns the annotation of the property
virtual Property *clone() const; //!< Return a new Property with the same values.
private:
dp::util::Semantic m_semantic;
const std::string m_annotation;
ValueType m_value;
bool m_destroy;
};
template <typename ValueType>
TypedPropertyValue<ValueType>::TypedPropertyValue( dp::util::Semantic semantic, const std::string &annotation, bool destroy, const ValueType &value )
: m_semantic(semantic)
, m_annotation(annotation)
, m_destroy(destroy)
, m_value(value)
{
}
template <typename ValueType>
TypedPropertyValue<ValueType>::TypedPropertyValue( const TypedPropertyValue<ValueType> &rhs )
: m_semantic( rhs.m_semantic )
, m_annotation( rhs.m_annotation )
, m_destroy( rhs.m_destroy )
, m_value( rhs.m_value )
{
}
template <typename ValueType>
Property::Type TypedPropertyValue<ValueType>::getType() const
{
return static_cast<Property::Type>(TypedPropertyEnum<ValueType>::type);
}
template <typename ValueType>
dp::util::Semantic TypedPropertyValue<ValueType>::getSemantic() const
{
return m_semantic;
}
template <typename ValueType>
void TypedPropertyValue<ValueType>::addRef()
{
DP_ASSERT( 0 && "addRef not supported on TypedPropertyValue");
}
template <typename ValueType>
void TypedPropertyValue<ValueType>::destroy()
{
if ( m_destroy )
{
delete this;
}
}
template <typename ValueType>
void TypedPropertyValue<ValueType>::getValue(const Reflection *, ValueType &value ) const
{
value = m_value;
}
template <typename ValueType>
void TypedPropertyValue<ValueType>::setValue( Reflection *, const ValueType &value )
{
m_value = value;
}
template <typename ValueType>
std::string TypedPropertyValue<ValueType>::getAnnotation( ) const
{
return m_annotation;
}
template <typename ValueType>
PropertyId TypedPropertyValue<ValueType>::clone() const
{
return new TypedPropertyValue<ValueType>( *this );
}
template<typename T>
struct EnumReflection
{
static const std::string name;
static const std::map<unsigned int,std::string> values;
};
/** \brief A delegating property implementation with enum as int support. This class is used for all enum properties.
\param ValueType The value type of the Property
\param ObjectType The Object class this property belongs to
\param FunctorGet A functor class which must support the following interface <code>void operator()(Reflection *owner, const ValueType &value)</code>
\param FunctorGet A functor class which must support the following interface <code>void operator()(const Reflection *owner, ValueType &returnValue)</code>
\param semantic The semantic of this property.
* corresponding get/set functions of the given class.
*/
//TODO implement getEnumTypeName
template <typename ValueType, typename ObjectType, typename FunctorGet, typename FunctorSet, typename dp::util::Semantic semantic, bool deleteOnDestroy>
class TypedPropertyImplEnum : public TypedPropertyImpl<int, ObjectType, FunctorGet, FunctorSet, semantic, deleteOnDestroy>
{
public:
TypedPropertyImplEnum() {}
virtual ~TypedPropertyImplEnum() {}
/*! \brief Get the value of this TypedPropertyImplEnum.
* \param owner The object to get the value from.
* \param value Reference of the ValueType to get the value. */
virtual void getValue(const Reflection *owner, ValueType &value) const
{
FunctorGet g;
g(owner, value);
}
/*! \brief Set the value of this TypedPropertyImplEnum.
* \param owner The object to set the value in.
* \param value The value to set. */
virtual void setValue(Reflection *owner, const ValueType &value)
{
FunctorSet s;
s(owner, value);
}
virtual bool isEnum() const
{
DP_ASSERT( std::is_enum<ValueType>::value );
return( true );
}
virtual std::string const & getEnumTypeName() const
{
return( EnumReflection<ValueType>::name );
}
virtual unsigned int getEnumsCount() const
{
return( dp::checked_cast<unsigned int>(EnumReflection<ValueType>::values.size()) );
}
virtual std::string const & getEnumName( unsigned int idx ) const
{
static std::string emptyString;
std::map<unsigned int,std::string>::const_iterator it = EnumReflection<ValueType>::values.find( idx );
return( ( it != EnumReflection<ValueType>::values.end() ) ? it->second : emptyString );
}
};
/** \brief This is the base class for a list of Properties. It's possible to implement this interace for custom property lists, i.e. mapping
properties of an CgFx or an RTFx.
**/
class PropertyList {
public:
/*! \brief Default constructor of a PropertyList. */
PropertyList() : m_id(0) {}
/*! \brief Copy constructor of a PropertyList.
* \param rhs The PropertyList to copy from. */
PropertyList( const PropertyList &rhs ) { m_id = rhs.m_id; }
/*! \brief Destructor of a PropertyList. */
DP_UTIL_API virtual ~PropertyList();
/*! \brief Retrieve the numer of properties in this list.
* \return Number of properties within this list
**/
DP_UTIL_API virtual unsigned int getPropertyCount() const = 0;
/*! \brief Get a PropertyId by index. Note that indices may change during runtime if an object has dynamic properties. Never keep indices to properties!
* \param index index of Property to get
* \return PropertyId of Property at position index */
DP_UTIL_API virtual PropertyId getProperty(unsigned int index) const = 0;
/*! \brief Get a PropertyId by name.
* \param name name of Property to get
* \return PropertyId of Property with given name */
DP_UTIL_API virtual PropertyId getProperty(const std::string &name) const = 0;
/*! \brief Get the name of a property at the given index
* \param index index of a property
* \return std::string with the name of the property at the given index */
DP_UTIL_API virtual std::string getPropertyName(unsigned int index) const = 0;
/*! \brief Get the name of a property for the given propertyid
* \param propertyId PropertyId of the property which name is requested
* \return std::string with the name of the property for the given PropertyId */
DP_UTIL_API virtual std::string getPropertyName(const PropertyId propertyId) const = 0;
/*! \brief Check if a given Property is still available
* \param propertyId The PropertyId to check for
* \return true if the object contains the given Property, false otherwise */
DP_UTIL_API virtual bool hasProperty(const PropertyId propertyId) const = 0;
/*! \brief Check if a given Property is still available
* \param name name of Property to check for
* \return true if the object contains the given Property, false otherwise */
DP_UTIL_API virtual bool hasProperty(const std::string &name) const = 0;
/*! \brief Create a deep copy of this PropertyList. */
DP_UTIL_API virtual PropertyList *clone() const = 0;
/*! \brief Check if list is marked as static
* \return true If list can be threated as static list. Static lists contain only static (program global)
* properties and the content of the list is also static after first initialization. */
DP_UTIL_API virtual bool isStatic() const = 0;
/** \brief Destroy the given list **/
DP_UTIL_API virtual void destroy();
/** \brief Returns id of the list **/
size_t getId() const { return m_id; }
/** \brief Sets id for the list
\param Id new Id for the list
**/
void setId( size_t Id) { m_id = Id; }
private:
size_t m_id;
};
/** \brief Default implementation of a PropertyList. Add the new function addProperty to add Properties
*/
class PropertyListImpl : public PropertyList
{
public:
/** \brief Constructor for a list of PropertyLists.
\param isStatic Marks the list as global static or object centric local list.
**/
DP_UTIL_API PropertyListImpl( bool isStatic = true );
/*! \brief Copy constructor of a PropertyListImpl.
* \param rhs The PropertyListImpl to copy from. */
DP_UTIL_API PropertyListImpl( const PropertyListImpl &rhs );
/*! \brief Destructor of a PropertyListImpl. */
DP_UTIL_API ~PropertyListImpl( );
/*! \brief Get the number of properties in this PropertyListImpl.
* \returns The number of properties in this PropertyListImpl. */
DP_UTIL_API unsigned int getPropertyCount() const;
/*! \brief Get the PropertyId by its index.
* \param index The index of the property to handle.
* \returns The PropertyId of the property at position \a index. */
DP_UTIL_API PropertyId getProperty(unsigned int index) const;
/*! \brief Get the PropertyId by its name.
* \param name The name of the property to handle.
* \returns The Propertyid of the property named \a name. */
DP_UTIL_API PropertyId getProperty(const std::string &name) const;
/** \brief Add a new Property to the PropertyList.
\param name The name of the property
\param property The PropertyId of the property (which is a pointer to the property)
**/
DP_UTIL_API void addProperty(const std::string &name, PropertyId property);
/*! \brief Get the property name by its index.
* \param index The index of the property to handle.
* \returns The name of the property at position \a index. */
DP_UTIL_API std::string getPropertyName(unsigned int index) const;
/*! \brief Get the property name by its PropertyId.
* \param propertyId The PropertyId of the property to handle.
* \returns The name of the property with PropertyId \a propertyId. */
DP_UTIL_API std::string getPropertyName(const PropertyId propertyId) const;
/*! \brief Check if this PropertyListImpl has a property specified by a PropertyId.
* \param propertyId The PropertyId of the property to check.
* \returns \c true if the property with the PropertyId \a propertyId is part of this PropertyListImpl,
* otherwise \c false. */
DP_UTIL_API virtual bool hasProperty(const PropertyId propertyId) const;
/*! \brief Check if this PropertyListImpl has a property specified by a name.
* \param name The name of the property to check.
* \returns \c true if a property named \a name is part of this PropertyListImpl, otherwise \c false. */
DP_UTIL_API virtual bool hasProperty(const std::string &name) const;
/*! \brief Create a clone of this PropertyListImpl.
* \returns A pointer to the newly created PropertyList. */
DP_UTIL_API virtual PropertyList *clone() const;
/*! \brief Check if this PropertyListImpl is static.
* \returns \c true if this PropertyListImple is static, otherwise \c false. */
DP_UTIL_API virtual bool isStatic() const;
protected:
typedef std::vector<PropertyId> PropertyVector; //!< Type definition for container holding properties
typedef std::map<std::string, PropertyId> PropertyMap; //!< Type definition for container mapping property names to property
bool m_isStatic; //!< Flag specifying if this PropertyList is static
PropertyMap m_propertyMap; //!< The map from property name to property
PropertyVector m_propertyVector; //!< The container of properties
};
/** \brief This PropertyList implementation will provide a view on multiple PropertyList with a single List only.
Changes to the added PropertyLists are immideatly visible in this view.
**/
class PropertyListChain : public PropertyList
{
public:
/*! \brief The container type of the Camera's head lights */
typedef std::vector<PropertyList*> PropertyListContainer;
/*! \brief The iterator over the HeadLightContainer */
typedef PropertyListContainer::iterator PropertyListIterator;
/*! \brief The const iterator over the HeadLightContainer */
typedef PropertyListContainer::const_iterator PropertyListConstIterator;
/** \brief Constructor for a list of PropertyLists.
\param isStatic Marks the list as global static or object centric local list.
**/
DP_UTIL_API PropertyListChain( bool isStatic = true );
/*! \brief Copy constructor of a PropertyListChain
* \param rhs The PropertyListChain to copy from. */
DP_UTIL_API PropertyListChain( const PropertyListChain &rhs );
/*! \brief Desctructor of a PropertyListChain */
DP_UTIL_API virtual ~PropertyListChain();
/** \brief Add a new PropertyList to the chain. All properties of the given propertyList will be visible at the end of the current list,
but not duplicated.
\param propertyList The PropertyList to add. */
DP_UTIL_API void addPropertyList(PropertyList *propertyList);
/*! \brief Get the beginning iterator of PropertyLists.
* \return A const beginning iterator of PropertyLists. */
DP_UTIL_API PropertyListConstIterator beginPropertyLists() const;
/*! \brief Get the ending iterator of PropertyLists.
* \return A const ending iterator of PropertyLists. */
DP_UTIL_API PropertyListConstIterator endPropertyLists() const;
/** \brief Remove a PropertyList from the chain
\param propertyList The PropertyList to remove.
**/
DP_UTIL_API void removePropertyList(PropertyList *propertyList);
/*! \brief Get the number of properties.
* \return The total number of properties in this PropertyListChain. */
DP_UTIL_API unsigned int getPropertyCount() const;
/*! \brief Get a property by index.
* \param index The index of the property to get.
* \returns The PropertyId of the property specified by \a index.
* \remark If \a index is larger than the number of properties in this PropertyListChain, the returned
* PropertyId is zero, that is, invalid. */
DP_UTIL_API PropertyId getProperty(unsigned int index) const;
DP_UTIL_API PropertyId getProperty(const std::string &name) const;
//FIXME delete this line DP_UTIL_API void addProperty(const std::string &name, PropertyId property);
DP_UTIL_API std::string getPropertyName(unsigned int index) const;
DP_UTIL_API std::string getPropertyName(const PropertyId propertyId) const;
DP_UTIL_API virtual bool hasProperty(const PropertyId propertyId) const;
DP_UTIL_API virtual bool hasProperty(const std::string &name) const;
DP_UTIL_API virtual PropertyList *clone() const;
DP_UTIL_API virtual bool isStatic() const;
protected:
bool m_isStatic; //!< Flag specifying if this PropertyListChain is static
std::vector<PropertyList*> m_propertyLists; //!< The container of PropertyLists
};
/** \brief This class stores reflection information for one object type. There will be exactly one instance of this object per object type.
**/
class ReflectionInfo : public PropertyListImpl
{
public:
// TODO decide if required, ensures that app does not crash if not initialized by classes. might get initialized by initStaticProperties.
ReflectionInfo() : m_className("Unknown") {}
virtual ~ReflectionInfo() {}
/*! \brief Get the class name of this ReflectionInfo
* \returns The class name of this ReflectionInfo. */
const char *getClassName() const { return m_className; }
protected:
const char *m_className; //!< The class name of this ReflectionInfo
private:
template <typename ObjectType>
friend class ReflectionStorage;
friend class Reflection;
};
/** \brief This is the base class for all objects which support the Reflection/Property mechanism. It's basically a PropertyListChain which will get
Base class for all objects with properties. Use this as base class for all objects which provide properties **/
class Reflection : public dp::util::Subject
{
public:
class PropertyEvent;
/*! \brief Default constructor of a Reflection. */
Reflection()
: m_propertyLists( nullptr )
{
}
/*! \brief Copy constructor of a Reflection.
* \param rhs The Reflection to copy from. */
DP_UTIL_API Reflection( const Reflection &rhs );
/*! \brief Destructor of a Reflection. */
DP_UTIL_API virtual ~Reflection();
/*! \brief Get the class name of this Reflection.
* \returns The class name of this Reflection. */
DP_UTIL_API const char *getClassName() const;
/*! \brief Set the value of a property.
* \param propertyId The id of the property to set.
* \param value The value to set. */
template <typename T>
void setValue(PropertyId propertyId, const T &value)
{
TypedProperty<T> *property = (TypedProperty<T>*)(propertyId);
property->setValue(this, value);
}
/*! \brief Get the type of a property.
* \param propertyId The id of the property.
* \returns The Property::Type of the property specified by \a propertyId. */
Property::Type getPropertyType(PropertyId propertyId) const
{
return propertyId->getType(); //(this->*propertyId).getType();
}
/*! \brief Get the value of a property.
* \param propertyId The id of the property to get.
* \returns the value of the property specified by \a propertyId. */
template <typename T>
T getValue(PropertyId propertyId) const
{
DP_ASSERT( getPropertyType(propertyId) == static_cast<Property::Type>(TypedPropertyEnum<T>::type) );
const TypedProperty<T> *property = (TypedProperty<T>*)(propertyId);
T returnValue;
property->getValue(this, returnValue);
return returnValue;
}
/*! \brief Get the number of properties in this Reflection.
* \returns The number of properties in this Reflection. */
DP_UTIL_API unsigned int getPropertyCount() const;
/*! \brief Get a property by index.
* \param index The index of the property to get.
* \returns The PropertyId of the property specified by \a index.
* \remark If this Reflection holds less properties than \a index, a zero PropertyId is returned. */
DP_UTIL_API PropertyId getProperty(unsigned int index) const;
/*! \brief Get a property by name.
* \param name The name of the property to get.
* \returns The PropertyId of the property specified by \a name.
* \remark If this Reflection does not hold a property name \a name, a zero PropertyId is returned. */
DP_UTIL_API PropertyId getProperty(const std::string &name) const;
/** \brief Add a new Property to the PropertyList.
\param name The name of the property
\param property The PropertyId of the property (which is a pointer to the property)
**/
DP_UTIL_API void addProperty(const std::string &name, PropertyId property);
/*! \brief Get the name of a property by index
* \param index The index of the property.
* \returns The name of the property specified by \a index.
* \remark If this Reflection holds less than \a index properties , an empty string is returned. */
DP_UTIL_API std::string getPropertyName(unsigned int index) const;
/*! \brief Get the name of a property by PropertyId.
* \param propertyId The id of the property.
* \returns The name of the property specifed by \a propertyId. */
DP_UTIL_API std::string getPropertyName(const PropertyId propertyId) const;
/*! \brief Check if a property is part of this Reflection.
* \param propertyId The id of the property to check.
* \return \c true if the property specified by \a propertyId is part of this Reflection, otherwise \c false. */
DP_UTIL_API virtual bool hasProperty(const PropertyId propertyId) const;
/*! \brief Check if a property is part of this Reflection.
* \param name The name of the property to check.
* \returns \c true if the property named \a name is part of this Reflection, otherwise \c false. */
DP_UTIL_API virtual bool hasProperty(const std::string &name) const;
inline Reflection& operator=( const Reflection &rhs )
{
dp::util::Subject::operator=( rhs );
return( *this );
}
static void initStaticProperties(dp::util::ReflectionInfo &properties) {};
static void initReflectionInfo() {}
protected:
PropertyListChain* m_propertyLists; //!< List of PropertyLists for this Object
/** Create read/write property **/
template <typename ValueType, typename GetType, typename SetType, typename ObjectType,
typename TypeTraits<ValueType, GetType>::parameter_type(ObjectType::*get)() const,
void(ObjectType::*set)(typename TypeTraits<ValueType, SetType>::parameter_type),
typename dp::util::Semantic semantic>
static Property *makeProperty()
{
return new TypedPropertyImpl<ValueType, ObjectType,
FunctorGet<ValueType, typename TypeTraits<ValueType, GetType>::parameter_type, ObjectType, get>,
FunctorSet<ValueType, typename TypeTraits<ValueType, SetType>::parameter_type, ObjectType, set>,
semantic, true>;
}
/** Create read/write member property **/
template <typename ValueType, typename ObjectType, ValueType ObjectType::*Member, bool readonly, typename dp::util::Semantic semantic>
static Property *makePropertyMember()
{
return new TypedPropertyImpl<ValueType, ObjectType,
FunctorGetMember<ValueType, ObjectType, Member>,
FunctorSetMember<ValueType, ObjectType, Member, readonly>,
semantic, true>;
}
/** Create read/write enum property **/
template <typename ValueType, typename GetType, typename SetType, typename ObjectType,
typename TypeTraits<ValueType, GetType>::parameter_type(ObjectType::*get)() const,
void(ObjectType::*set)(typename TypeTraits<ValueType, SetType>::parameter_type),
typename dp::util::Semantic semantic>
static Property *makeEnumProperty()
{
return new TypedPropertyImplEnum<ValueType, ObjectType,
FunctorGetEnum<ValueType, typename TypeTraits<ValueType, GetType>::parameter_type, ObjectType, get>,
FunctorSetEnum<ValueType, typename TypeTraits<ValueType, SetType>::parameter_type, ObjectType, set>,
semantic, true>;
}
/** Create readonly property **/
template <typename ValueType, typename GetType, typename ObjectType,
typename TypeTraits<ValueType, GetType>::parameter_type(ObjectType::*get)() const,
typename dp::util::Semantic semantic>
static Property *makeProperty()
{
return new TypedPropertyImpl<ValueType, ObjectType,
FunctorGet<ValueType, typename TypeTraits<ValueType, GetType>::parameter_type, ObjectType, get>,
FunctorSetInvalid<ValueType, ObjectType>,
semantic, true>;
}
/*! \brief Initialize reflection of a class.
* \param classname The name of the class to initialize. */
public:
template <typename ObjectType>
static dp::util::ReflectionInfo* initReflection(const char *classname)
{
dp::util::ReflectionInfo *info = ObjectType::getInternalReflectionInfo();
info->m_className = classname;
return info;
}
DP_UTIL_API static ReflectionInfo* getInternalReflectionInfo();
protected:
DP_UTIL_API virtual ReflectionInfo* getReflectionInfo() const;
private:
template <typename ObjectType>
friend class InitReflection;
};
class Reflection::PropertyEvent : public dp::util::Event
{
public:
PropertyEvent( Reflection const* source , dp::util::PropertyId propertyId )
: Event( dp::util::Event::PROPERTY )
, m_source( source )
, m_propertyId( propertyId )
{
}
Reflection const* getSource() const { return m_source; }
dp::util::PropertyId getPropertyId() const { return m_propertyId; }
private:
Reflection const* m_source;
dp::util::PropertyId m_propertyId;
};
/*! \brief Initialize Reflection framework. */
DP_UTIL_API void initReflection();
/*! \brief Shut down Reflection framework. */
DP_UTIL_API void shutdownReflection();
/** Create a static property for the given PropertType and register it in the ReflectionInfo storage **/
template <typename ObjectType, typename PropertyType>
dp::util::Property *createStaticProperty( const char *name )
{
Property *property = new PropertyType();
ObjectType::getInternalReflectionInfo()->addProperty( name, property );
return property;
}
template <typename ObjectType, typename ObjectTypeBase>
bool deriveStaticProperties()
{
ReflectionInfo *info = ObjectType::getInternalReflectionInfo();
ReflectionInfo *infoBase = ObjectTypeBase::getInternalReflectionInfo();
unsigned int count = infoBase->getPropertyCount();
for ( unsigned int index = 0; index < count; ++index )
{
PropertyId propertyId = infoBase->getProperty( index );
propertyId->addRef();
info->addProperty( infoBase->getPropertyName(propertyId), propertyId );
}
return true;
}
} // namespace util
} // namespace dp
/** Macros to make life a little bit easier **/
//when adding properties the variable properties must be a reference to a PropertyList and Klass a typedef of the class of the function members
#define REFLECTION_INFO( MyKlass ) \
static dp::util::ReflectionInfo* m_reflectionInfo;\
static void initReflectionInfo(); \
static dp::util::ReflectionInfo* getInternalReflectionInfo(); \
virtual dp::util::ReflectionInfo* getReflectionInfo() const { return MyKlass::getInternalReflectionInfo(); }
#define REFLECTION_INFO_API( REFLECTION_API, MyKlass ) \
static REFLECTION_API dp::util::ReflectionInfo* m_reflectionInfo;\
static REFLECTION_API void initReflectionInfo(); \
static REFLECTION_API dp::util::ReflectionInfo* getInternalReflectionInfo(); \
virtual dp::util::ReflectionInfo* getReflectionInfo() const { return getInternalReflectionInfo(); }
#define REFLECTION_INFO_TEMPLATE_API( REFLECTION_API, MyKlass ) \
static REFLECTION_API dp::util::ReflectionInfo* m_reflectionInfo;\
static REFLECTION_API void initReflectionInfo(); \
static REFLECTION_API dp::util::ReflectionInfo* getInternalReflectionInfo(); \
virtual dp::util::ReflectionInfo* getReflectionInfo() const { return MyKlass::getInternalReflectionInfo(); }
#define INIT_REFLECTION_INFO( Klass ) \
dp::util::ReflectionInfo * Klass::m_reflectionInfo = dp::util::Reflection::initReflection< Klass >(#Klass); \
dp::util::ReflectionInfo* Klass::getInternalReflectionInfo() { \
static dp::util::ReflectionInfo *reflectionInfo = 0; \
if (!m_reflectionInfo) { \
m_reflectionInfo = new dp::util::ReflectionInfo(); \
initReflectionInfo( ); \
}; \
return reflectionInfo; \
} \
void Klass::initReflectionInfo() { \
}
#define BEGIN_REFLECTION_INFO( Klass ) \
dp::util::ReflectionInfo * Klass::m_reflectionInfo = dp::util::Reflection::initReflection< Klass >(#Klass); \
dp::util::ReflectionInfo* Klass::getInternalReflectionInfo() { \
if (!m_reflectionInfo) { \
m_reflectionInfo = new dp::util::ReflectionInfo(); \
initReflectionInfo( ); \
}; \
return m_reflectionInfo; \
} \
void Klass::initReflectionInfo() {
#define END_REFLECTION_INFO }
#define BEGIN_REFLECTION_INFO_TEMPLATE( Klass ) \
template<> void Klass::initReflectionInfo() {
#define END_REFLECTION_INFO_TEMPLATE( Klass ) \
} \
template<> dp::util::ReflectionInfo* Klass::m_reflectionInfo = dp::util::Reflection::initReflection< Klass >(#Klass); \
template<> dp::util::ReflectionInfo* Klass::getInternalReflectionInfo() { \
static dp::util::ReflectionInfo *reflectionInfo = 0; \
if (!m_reflectionInfo) { \
m_reflectionInfo = new dp::util::ReflectionInfo(); \
initReflectionInfo( ); \
}; \
return m_reflectionInfo; \
}
/*
* Use ADD_PROPERTY_RW for get/set properties
* Use ADD_PROPERTY_RW_BOOL for is/set properties
* Use ADD_PROPERTY_RO for get properties
*/
#define BEGIN_REFLECT_STATIC_PROPERTIES( Klass ) \
template<> dp::util::ReflectionInfo* Klass::m_reflectionInfo = dp::util::Reflection::initReflection< Klass >(#Klass); \
template<> dp::util::ReflectionInfo* Klass::getInternalReflectionInfo() { \
static dp::util::ReflectionInfo *reflectionInfo = 0; \
if (!reflectionInfo) { \
reflectionInfo = new dp::util::ReflectionInfo(); \
initStaticProperties( *reflectionInfo ); \
}; \
return reflectionInfo; \
} \
static void Klass::initStaticProperties(dp::util::ReflectionInfo &properties) { \
typedef MyKlass Klass;
#define ADD_PROPERTY_RW(Name, Type, Semantic, GetType, SetType) properties.addProperty(#Name, makeProperty<Type, dp::util::GetType, dp::util::SetType, Klass, &Klass::get##Name, &Klass::set##Name, dp::util::Semantic>())
#define ADD_PROPERTY_RW_BOOL(Name, Type, Semantic, GetType, SetType) properties.addProperty(#Name, makeProperty<Type, dp::util::GetType, dp::util::SetType, Klass, &Klass::is##Name, &Klass::set##Name, dp::util::Semantic>())
#define ADD_PROPERTY_RO(Name, Type, Semantic, GetType) properties.addProperty(#Name, makeProperty<Type, dp::util::GetType, Klass, &Klass::get##Name, dp::util::Semantic>())
#define ADD_PROPERTY_RO_BOOL(Name, Type, Semantic, GetType) properties.addProperty(#Name, makeProperty<Type, dp::util::GetType, Klass, &Klass::is##Name, dp::util::Semantic>())
#define ADD_PROPERTY_RW_ENUM(Name, Type, Semantic, GetType, SetType) properties.addProperty(#Name, makeEnumProperty<Type, dp::util::GetType, dp::util::SetType, Klass, &Klass::get##Name, &Klass::set##Name, dp::util::Semantic>())
#define ADD_PROPERTY_RW_MEMBER(Name, Type, Semantic) properties.addProperty(#Name, makePropertyMember<Type, Klass, &Klass::m_prop##Name, true, dp::util::Semantic>())
#define ADD_PROPERTY_RO_MEMBER(Name, Type, Semantic) properties.addProperty(#Name, makePropertyMember<Type, Klass, &Klass::m_prop##Name, false, dp::util::Semantic>())
#define ADD_STATIC_PROPERTY_RW(Name, Type, Semantic, GetType, SetType) Property *property = makeProperty<Type, dp::util::GetType, dp::util::SetType, Klass, &Klass::get##Name, &Klass::set##Name, dp::util::Semantic>(); properties.addProperty(#Name, property); PID_##Name = property;
#define ADD_STATIC_PROPERTY_RW_BOOL(Name, Type, Semantic, GetType, SetType) properties.addProperty(#Name, makeProperty<Type, dp::util::GetType, dp::util::SetType, Klass, &Klass::is##Name, &Klass::set##Name, dp::util::Semantic>())
#define ADD_STATIC_PROPERTY_RO(Name, Type, Semantic, GetType) properties.addProperty(#Name, makeProperty<Type, dp::util::GetType, Klass, &Klass::get##Name, dp::util::Semantic>())
#define ADD_STATIC_PROPERTY_RO_BOOL(Name, Type, Semantic, GetType) properties.addProperty(#Name, makeProperty<Type, dp::util::GetType, Klass, &Klass::is##Name, dp::util::Semantic>())
#define ADD_STATIC_PROPERTY_RW_ENUM(Name, Type, Semantic, GetType, SetType) properties.addProperty(#Name, makeEnumProperty<Type, dp::util::GetType, dp::util::SetType, Klass, &Klass::get##Name, &Klass::set##Name, dp::util::Semantic>())
#define ADD_STATIC_PROPERTY_RW_MEMBER(Name, Type, Semantic) properties.addProperty(#Name, makePropertyMember<Type, Klass, &Klass::m_prop##Name, true, dp::util::Semantic>())
#define ADD_STATIC_PROPERTY_RO_MEMBER(Name, Type, Semantic) properties.addProperty(#Name, makePropertyMember<Type, Klass, &Klass::m_prop##Name, false, dp::util::Semantic>())
#define END_REFLECT_STATIC_PROPERTIES() }
#define BEGIN_DECLARE_STATIC_PROPERTIES static void initStaticProperties(dp::util::ReflectionInfo &properties) {}
#define END_DECLARE_STATIC_PROPERTIES
#define DECLARE_STATIC_PROPERTY(Name) static dp::util::PropertyId PID_##Name
#define DEFINE_STATIC_PROPERTY( Klass, Name ) dp::util::PropertyId Klass::PID_##Name = nullptr;
/** RW **/
#define INIT_STATIC_PROPERTY_RW(Klass, Name, Type, Semantic, GetType, SetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImpl<Type, Klass, \
dp::util::FunctorGet<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::get##Name>, \
dp::util::FunctorSet<Type, dp::util::TypeTraits<Type, dp::util::SetType>::parameter_type, Klass, &Klass::set##Name>, \
dp::util::Semantic, true> \
>(#Name)
#define INIT_STATIC_PROPERTY_RW_TEMPLATE(Klass, Name, Type, Semantic, GetType, SetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImpl<Type, Klass, \
dp::util::FunctorGet<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::get##Name>, \
dp::util::FunctorSet<Type, dp::util::TypeTraits<Type, dp::util::SetType>::parameter_type, Klass, &Klass::set##Name>, \
dp::util::Semantic, true> \
>(#Name)
/** RW BOOL **/
#define INIT_STATIC_PROPERTY_RW_BOOL(Klass, Name, Type, Semantic, GetType, SetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImpl<Type, Klass, \
dp::util::FunctorGet<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::is##Name>, \
dp::util::FunctorSet<Type, dp::util::TypeTraits<Type, dp::util::SetType>::parameter_type, Klass, &Klass::set##Name>, \
dp::util::Semantic, true> \
>(#Name)
#define INIT_STATIC_PROPERTY_RW_BOOL_TEMPLATE(Klass, Name, Type, Semantic, GetType, SetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImpl<Type, Klass, \
dp::util::FunctorGet<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::is##Name>, \
dp::util::FunctorSet<Type, dp::util::TypeTraits<Type, dp::util::SetType>::parameter_type, Klass, &Klass::set##Name>, \
dp::util::Semantic, true> \
>(#Name)
/** RW ENUM **/
#define INIT_STATIC_PROPERTY_RW_ENUM(Klass, Name, Type, Semantic, GetType, SetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImplEnum<Type, Klass, \
dp::util::FunctorGetEnum<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::get##Name>, \
dp::util::FunctorSetEnum<Type, dp::util::TypeTraits<Type, dp::util::SetType>::parameter_type, Klass, &Klass::set##Name>, \
dp::util::Semantic, true> \
>(#Name)
#define INIT_STATIC_PROPERTY_RW_ENUM_TEMPLATE(Klass, Name, Type, Semantic, GetType, SetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImplEnum<Type, Klass, \
dp::util::FunctorGetEnum<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::get##Name>, \
dp::util::FunctorSetEnum<Type, dp::util::TypeTraits<Type, dp::util::SetType>::parameter_type, Klass, &Klass::set##Name>, \
dp::util::Semantic, true> \
>(#Name)
/** RO **/
#define INIT_STATIC_PROPERTY_RO(Klass, Name, Type, Semantic, GetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImpl<Type, Klass, \
dp::util::FunctorGet<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::get##Name>, \
dp::util::FunctorSetInvalid<Type, Klass>, \
dp::util::Semantic, true> \
>(#Name)
#define INIT_STATIC_PROPERTY_RO_TEMPLATE(Klass, Name, Type, Semantic, GetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImpl<Type, Klass, \
dp::util::FunctorGet<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::get##Name>, \
dp::util::FunctorSetInvalid<Type, Klass>, \
dp::util::Semantic, true> \
>(#Name)
/** RO BOOL **/
#define INIT_STATIC_PROPERTY_RO_BOOL(Klass, Name, Type, Semantic, GetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImpl<Type, Klass, \
dp::util::FunctorGet<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::is##Name>, \
dp::util::FunctorSetInvalid<Type, Klass>, \
dp::util::Semantic, true> \
>(#Name)
#define INIT_STATIC_PROPERTY_RO_BOOL_TEMPLATE(Klass, Name, Type, Semantic, GetType) \
Klass::PID_##Name = \
dp::util::createStaticProperty<Klass, \
dp::util::TypedPropertyImpl<Type, Klass, \
dp::util::FunctorGet<Type, dp::util::TypeTraits<Type, dp::util::GetType>::parameter_type, Klass, &Klass::is##Name>, \
dp::util::FunctorSetInvalid<Type, Klass>, \
dp::util::Semantic, true> \
>(#Name)
#define INIT_STATIC_PROPERTY_RW_MEMBER(Klass, Name, Type, Semantic) \
Klass::PID_##Name = makePropertyMember<Type, Klass, &Klass::m_prop##Name, true, dp::util::Semantic>(); \
Klass::getInternalReflectionInfo()->addProperty( #Name, Klass::PID_##Name )
#define INIT_STATIC_PROPERTY_RO_MEMBER(Klass, Name, Type, Semantic) \
Klass::PID_##Name = makePropertyMember<Type, Klass, &Klass::m_prop##Name, false, dp::util::Semantic>(); \
Klass::getInternalReflectionInfo()->addProperty( #Name, Klass::PID_##Name )
#define DUMMY(X)
// HELPERS
#define DERIVE_TOKENPASTE( x, y ) x ## y
#define DERIVE_TOKENPASTE2( x, y ) DERIVE_TOKENPASTE( x, y)
// NOTE, edit and continue must not be enabled since it converts __LINE__ to a function. __COUNTER__ can be used instead once we support gcc 4.3.
#define DERIVE_STATIC_PROPERTIES(Klass, Base ) static bool DERIVE_TOKENPASTE2(deriveStaticProperties, __LINE__ ) = dp::util::deriveStaticProperties<Klass, Base>();
#define DERIVE_STATIC_PROPERTIES_TEMPLATE(Klass, Base ) static bool DERIVE_TOKENPASTE2(deriveStaticProperties, __LINE__ ) = dp::util::deriveStaticProperties<Klass, Base>();
/* Example of a reflected class. Note that dp::sg::core::Object is already derived from Reflection.
Objects derived from dp::sg::core::Object or subclasses of dp::sg::core::Object must not derive from
Reflection
class MyReflectedClass : public Reflection
{
public:
MyReflectedClass()
{
// this must be called in each constructor of the class
// note that this is a noop upon the second call
INIT_REFLECTION( MyReflectedClass );
}
// usual class stuff
void setValue( int value );
int getValue() const;
void setBoolValue( bool value );
bool isBoolValue() const;
void setVec3fValue( const Vec3f &value );
const Vec3f &getVec3fValue() const; // return by reference
void setVec3fValue2( const Vec3f &value );
Vec3f getVec3fValue2() const; // return by value!
Vec2f getMaxSize() const;
bool isSupported() const;
// here are some examples how to initialize those static properties
BEGIN_REFLECT_STATIC_PROPERTIES( Material )
// property name, datatype, semantic information, set parameter type, get return type
ADD_PROPERTY_RW (Value, int, SEMANTIC_VALUE, value, value );
ADD_PROPERTY_RW_BOOL(BoolValue, bool, SEMANTIC_VALUE, value, value );
ADD_PROPERTY_RW (Vec3fValue, Vec3f, SEMANTIC_VALUE, const_reference, const_reference);
ADD_PROPERTY_RW (Vec3fValue2, Vec3f, SEMANTIC_VALUE, const_reference, value);
ADD_PROPERTY_RO (MaxSize, Vec2f, SEMANTIC_VALUE, value);
ADD_PROPERTY_RO_BOOL(Supported, bool, SEMANTIC_VALUE, value);
END_REFLECT_STATIC_PROPERTIES()
};
*/
| [
"matavenrath@nvidia.com"
] | matavenrath@nvidia.com |
0dc59403f41b8f5c8ca27658877f4e30c08689f5 | 71ff9ea448889fd3279ba7c9ae400912f3bcb268 | /Detection.h | 8f61a5db562ec860b6eaa97112c850f2ec6d10d8 | [] | no_license | kalzium/nodeServer | 6c331ba5675b14a696d009263e5391fa51224c8e | fb3f0f8aa4a8231e6798221c8518970e4096ffa8 | refs/heads/master | 2020-05-15T17:30:58.809208 | 2012-06-18T02:17:24 | 2012-06-18T02:17:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 152 | h | #pragma once
#include "CThread.h"
class Detection :public CThread
{
public:
Detection(void);
~Detection(void);
void operator() ();
void loop();
};
| [
"dextor@qq.com"
] | dextor@qq.com |
b6d1bf898eb1c17679409fd7f05ae7df65a04fe8 | 3b4e9264514b8f393f11fb13a48b3efb0869eb42 | /chapter5/threshold.cc | d0edd7269eac4666409ce629d05bc447032b7ffc | [] | no_license | Nunocky/Study_OpenCV4Programming | ba59c344dea53480cf81c19706dbd44363761799 | 9a8cc49b698c3f96ed854ed627e6b9fb98a72126 | refs/heads/master | 2020-04-28T09:00:14.148361 | 2019-03-12T06:42:43 | 2019-03-12T06:42:43 | 175,150,551 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,104 | cc | #include <cstdio>
#include <opencv2/opencv.hpp>
int main(int argc, char* argv[])
{
cv::Mat img = cv::imread("../images/Lenna.bmp", cv::IMREAD_GRAYSCALE);
if (img.empty()) {
fprintf(stderr, "read failed\n");
return 0;
}
cv::Mat dst;
int ret;
ret = cv::threshold(img, dst, 100, 200, cv::THRESH_BINARY);
cv::imwrite("threshold_THRESH_BINARY.jpg", dst);
cv::imshow("dst1", dst);
ret = cv::threshold(img, dst, 100, 200, cv::THRESH_BINARY_INV);
cv::imwrite("threshold_THRESH_BINARY_INT.jpg", dst);
cv::imshow("dst2", dst);
ret = cv::threshold(img, dst, 100, 200, cv::THRESH_TRUNC);
cv::imwrite("threshold_THRESH_BINARY_INT.jpg", dst);
cv::imshow("dst3", dst);
ret = cv::threshold(img, dst, 100, 200, cv::THRESH_TOZERO);
cv::imwrite("threshold_THRESH_TOZERO.jpg", dst);
cv::imshow("dst4", dst);
ret = cv::threshold(img, dst, 100, 200, cv::THRESH_TOZERO_INV);
cv::imwrite("threshold_THRESH_TOZERO_INV.jpg", dst);
cv::imshow("dst5", dst);
cv::waitKey(0);
cv::destroyAllWindows();
return 0;
}
| [
"masato.nunokawa@gmail.com"
] | masato.nunokawa@gmail.com |
6665b7e96641efffe6ff08c11b2877296a8b5b44 | c917108fc6d5baf26a652d4ae3f2301d4bf5d21e | /test_pid_with_class.cpp | 030f791f391a34ca291233c5dcee947e6b851e57 | [] | no_license | jimenezl/MASLAB-Team-UP | 28d2599da3f1f51cc7c14e4b87dbe0faadff2204 | 8f2ae18a729190c23f421ddd4f4a2f47a41935fc | refs/heads/master | 2021-01-01T20:05:17.229378 | 2015-01-30T23:52:56 | 2015-01-30T23:52:56 | 28,311,657 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,160 | cpp | // Build with:
// g++ test_pid.cpp -o test_pid -lmraa
// SPI pins are:
// - IO10: SS
// - IO11: MOSI
// - IO12: MISO
// - IO13: SCLK
#include <unistd.h>
#include <stdint.h>
#include <signal.h>
#include <sys/time.h>
#include <cassert>
#include <cmath>
#include <csignal>
#include <iostream>
#include <math.h>
#include "mraa.hpp"
#include "WheelController.cpp"
#define MS 1000
#define GYRO_DATA_OKAY_MASK 0x0C000000
#define GYRO_DATA_OKAY 0x04000000
int running = 1;
void sig_handler(int signo) {
if (signo == SIGINT) {
printf("closing spi nicely\n");
mraa::Pwm pwm = mraa::Pwm(9);
mraa::Pwm pwm2 = mraa::Pwm(6);
pwm.write(0);
pwm2.write(0);
running = 0;
}
}
int main() {
// Handle Ctrl-C quit
signal(SIGINT, sig_handler);
mraa::Gpio *chipSelect = new mraa::Gpio(10);
chipSelect->dir(mraa::DIR_OUT);
chipSelect->write(1);
mraa::Spi *spi = new mraa::Spi(0);
spi->bitPerWord(32);
char rxBuf[2];
char writeBuf[4];
unsigned int sensorRead = 0x20000000;
writeBuf[0] = sensorRead & 0xff;
writeBuf[1] = (sensorRead >> 8) & 0xff;
writeBuf[2] = (sensorRead >> 16) & 0xff;
writeBuf[3] = (sensorRead >> 24) & 0xff;
float total = 0;
struct timeval tv;
int init = 0;
float rf;
signal(SIGINT, sig_handler);
WheelController wheelController;
wheelController.init();
float speed = .1;
float desiredAngle = 0.0;
float diffAngle = 0.0;
float integral = 0;
float power = 0;
float derivative = 0;
float timeBetweenReadings = 0;
float gyroBias = 1.0;
float forwardBias = .1;
float P_CONSTANT = 25;
float I_CONSTANT = 0;
float D_CONSTANT = -1;
while (running) {
chipSelect->write(0);
char *recv = spi->write(writeBuf, 4);
chipSelect->write(1);
// printf("%x %x %x %x\r\n", recv[0], recv[1], recv[2], recv[3]);
if (recv != NULL) {
unsigned int recvVal = ((uint8_t) recv[3] & 0xFF);
recvVal = (recvVal << 8) | ((uint8_t)recv[2] & 0xFF);
recvVal = (recvVal << 8) | ((uint8_t)recv[1] & 0xFF);
recvVal = (recvVal << 8) | ((uint8_t)recv[0] & 0xFF);
printf("Received: 0x%.8x, ", recvVal);
// Sensor reading
short reading = (recvVal >> 10) & 0xffff;
if (init) {
unsigned long long ms = (unsigned long long)(tv.tv_sec) * 1000 +
(unsigned long long)(tv.tv_usec) / 1000;
gettimeofday(&tv, NULL);
ms -= (unsigned long long)(tv.tv_sec) * 1000 +
(unsigned long long)(tv.tv_usec) / 1000;
int msi = (int)ms;
float msf = (float)msi;
timeBetweenReadings = -msf;
rf = (float)reading;
total += -0.001 * msf * ((rf / 80.0) + gyroBias); // -(rf/80.0) is angular rate (deg/sec)
printf("Total: %f, Reading: %f, Time: %f\n", total, rf, -msf);
} else {
init = 1;
gettimeofday(&tv, NULL);
}
} else {
printf("No recv\n");
}
usleep(10 * MS);
//Fix angle readings over 360
if (total > 360) {
int error = total/360;
total = total - error*360;
}
else if (total < -360) {
int error = fabs(total)/360;
total = total + 360*error;
}
diffAngle = desiredAngle - total;
integral += diffAngle * 0.001 * timeBetweenReadings;
derivative = (rf / 80.0);
power = speed * ((P_CONSTANT * diffAngle / 360.0) + (I_CONSTANT * integral) + (D_CONSTANT * derivative / 180.0)); //make sure to convert angles > 360 to proper angles
if (power > .5) {
power = .5;
} else if (power < -.5) {
power = -.5;
}
wheelController.setMotorOneSpeed(-1 * power + forwardBias);
wheelController.setMotorTwoSpeed(-1 * power - forwardBias);
printf("Set power to: %f\n", power);
}
delete spi;
return 0;
}
| [
"jimenezl@mit.edu"
] | jimenezl@mit.edu |
5e3e576325f3276a35b11fc5711362406396741c | 87587cc326aa2640516c6987e7d7b93c992a4bb4 | /src/qt/notificator.cpp | 909d7e541e86242ed4b7ade31ca31a46da98ce48 | [
"MIT"
] | permissive | SMRT2/smrt-test | f26164f6b71546d5be3ce29846de02c3b82e3e22 | 017d06ee44e00d627a14626c7fc674a2a2e7041a | refs/heads/master | 2020-03-20T21:29:56.083870 | 2018-06-18T12:09:00 | 2018-06-18T12:09:00 | 137,744,088 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,364 | cpp | // Copyright (c) 2011-2013 The Bitcoin developers
// Copyright (c) 2017 The SMRT developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "notificator.h"
#include <QApplication>
#include <QByteArray>
#include <QIcon>
#include <QImageWriter>
#include <QMessageBox>
#include <QMetaType>
#include <QStyle>
#include <QSystemTrayIcon>
#include <QTemporaryFile>
#include <QVariant>
#ifdef USE_DBUS
#include <QtDBus>
#include <stdint.h>
#endif
// Include ApplicationServices.h after QtDbus to avoid redefinition of check().
// This affects at least OSX 10.6. See /usr/include/AssertMacros.h for details.
// Note: This could also be worked around using:
// #define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0
#ifdef Q_OS_MAC
#include "macnotificationhandler.h"
#include <ApplicationServices/ApplicationServices.h>
#endif
#ifdef USE_DBUS
// https://wiki.ubuntu.com/NotificationDevelopmentGuidelines recommends at least 128
const int FREEDESKTOP_NOTIFICATION_ICON_SIZE = 128;
#endif
Notificator::Notificator(const QString& programName, QSystemTrayIcon* trayicon, QWidget* parent) : QObject(parent),
parent(parent),
programName(programName),
mode(None),
trayIcon(trayicon)
#ifdef USE_DBUS
,
interface(0)
#endif
{
if (trayicon && trayicon->supportsMessages()) {
mode = QSystemTray;
}
#ifdef USE_DBUS
interface = new QDBusInterface("org.freedesktop.Notifications",
"/org/freedesktop/Notifications", "org.freedesktop.Notifications");
if (interface->isValid()) {
mode = Freedesktop;
}
#endif
#ifdef Q_OS_MAC
// check if users OS has support for NSUserNotification
if (MacNotificationHandler::instance()->hasUserNotificationCenterSupport()) {
mode = UserNotificationCenter;
}
#endif
}
Notificator::~Notificator()
{
#ifdef USE_DBUS
delete interface;
#endif
}
#ifdef USE_DBUS
// Loosely based on http://www.qtcentre.org/archive/index.php/t-25879.html
class FreedesktopImage
{
public:
FreedesktopImage() {}
FreedesktopImage(const QImage& img);
static int metaType();
// Image to variant that can be marshalled over DBus
static QVariant toVariant(const QImage& img);
private:
int width, height, stride;
bool hasAlpha;
int channels;
int bitsPerSample;
QByteArray image;
friend QDBusArgument& operator<<(QDBusArgument& a, const FreedesktopImage& i);
friend const QDBusArgument& operator>>(const QDBusArgument& a, FreedesktopImage& i);
};
Q_DECLARE_METATYPE(FreedesktopImage);
// Image configuration settings
const int CHANNELS = 4;
const int BYTES_PER_PIXEL = 4;
const int BITS_PER_SAMPLE = 8;
FreedesktopImage::FreedesktopImage(const QImage& img) : width(img.width()),
height(img.height()),
stride(img.width() * BYTES_PER_PIXEL),
hasAlpha(true),
channels(CHANNELS),
bitsPerSample(BITS_PER_SAMPLE)
{
// Convert 00xAARRGGBB to RGBA bytewise (endian-independent) format
QImage tmp = img.convertToFormat(QImage::Format_ARGB32);
const uint32_t* data = reinterpret_cast<const uint32_t*>(tmp.bits());
unsigned int num_pixels = width * height;
image.resize(num_pixels * BYTES_PER_PIXEL);
for (unsigned int ptr = 0; ptr < num_pixels; ++ptr) {
image[ptr * BYTES_PER_PIXEL + 0] = data[ptr] >> 16; // R
image[ptr * BYTES_PER_PIXEL + 1] = data[ptr] >> 8; // G
image[ptr * BYTES_PER_PIXEL + 2] = data[ptr]; // B
image[ptr * BYTES_PER_PIXEL + 3] = data[ptr] >> 24; // A
}
}
QDBusArgument& operator<<(QDBusArgument& a, const FreedesktopImage& i)
{
a.beginStructure();
a << i.width << i.height << i.stride << i.hasAlpha << i.bitsPerSample << i.channels << i.image;
a.endStructure();
return a;
}
const QDBusArgument& operator>>(const QDBusArgument& a, FreedesktopImage& i)
{
a.beginStructure();
a >> i.width >> i.height >> i.stride >> i.hasAlpha >> i.bitsPerSample >> i.channels >> i.image;
a.endStructure();
return a;
}
int FreedesktopImage::metaType()
{
return qDBusRegisterMetaType<FreedesktopImage>();
}
QVariant FreedesktopImage::toVariant(const QImage& img)
{
FreedesktopImage fimg(img);
return QVariant(FreedesktopImage::metaType(), &fimg);
}
void Notificator::notifyDBus(Class cls, const QString& title, const QString& text, const QIcon& icon, int millisTimeout)
{
Q_UNUSED(cls);
// Arguments for DBus call:
QList<QVariant> args;
// Program Name:
args.append(programName);
// Unique ID of this notification type:
args.append(0U);
// Application Icon, empty string
args.append(QString());
// Summary
args.append(title);
// Body
args.append(text);
// Actions (none, actions are deprecated)
QStringList actions;
args.append(actions);
// Hints
QVariantMap hints;
// If no icon specified, set icon based on class
QIcon tmpicon;
if (icon.isNull()) {
QStyle::StandardPixmap sicon = QStyle::SP_MessageBoxQuestion;
switch (cls) {
case Information:
sicon = QStyle::SP_MessageBoxInformation;
break;
case Warning:
sicon = QStyle::SP_MessageBoxWarning;
break;
case Critical:
sicon = QStyle::SP_MessageBoxCritical;
break;
default:
break;
}
tmpicon = QApplication::style()->standardIcon(sicon);
} else {
tmpicon = icon;
}
hints["icon_data"] = FreedesktopImage::toVariant(tmpicon.pixmap(FREEDESKTOP_NOTIFICATION_ICON_SIZE).toImage());
args.append(hints);
// Timeout (in msec)
args.append(millisTimeout);
// "Fire and forget"
interface->callWithArgumentList(QDBus::NoBlock, "Notify", args);
}
#endif
void Notificator::notifySystray(Class cls, const QString& title, const QString& text, const QIcon& icon, int millisTimeout)
{
Q_UNUSED(icon);
QSystemTrayIcon::MessageIcon sicon = QSystemTrayIcon::NoIcon;
switch (cls) // Set icon based on class
{
case Information:
sicon = QSystemTrayIcon::Information;
break;
case Warning:
sicon = QSystemTrayIcon::Warning;
break;
case Critical:
sicon = QSystemTrayIcon::Critical;
break;
}
trayIcon->showMessage(title, text, sicon, millisTimeout);
}
// Based on Qt's tray icon implementation
#ifdef Q_OS_MAC
void Notificator::notifyMacUserNotificationCenter(Class cls, const QString& title, const QString& text, const QIcon& icon)
{
// icon is not supported by the user notification center yet. OSX will use the app icon.
MacNotificationHandler::instance()->showNotification(title, text);
}
#endif
void Notificator::notify(Class cls, const QString& title, const QString& text, const QIcon& icon, int millisTimeout)
{
switch (mode) {
#ifdef USE_DBUS
case Freedesktop:
notifyDBus(cls, title, text, icon, millisTimeout);
break;
#endif
case QSystemTray:
notifySystray(cls, title, text, icon, millisTimeout);
break;
#ifdef Q_OS_MAC
case UserNotificationCenter:
notifyMacUserNotificationCenter(cls, title, text, icon);
break;
#endif
default:
if (cls == Critical) {
// Fall back to old fashioned pop-up dialog if critical and no other notification available
QMessageBox::critical(parent, title, text, QMessageBox::Ok, QMessageBox::Ok);
}
break;
}
}
| [
"james_nirvana@gmx.com"
] | james_nirvana@gmx.com |
740b2de730bd9b20386580e0c7042d3ce522b9c6 | 72a4e4a12d7935fc17b362420a5d479a593d59a8 | /src/ppl/nn/engines/cuda/optimizer/ops/onnx/add_op.h | 4c1e9f366f7849563338a86d87ba7ebc3b4268f0 | [
"Apache-2.0"
] | permissive | rayechen/ppl.nn | 8a387b02c2a7ff31ee23873badd3b3fbd93767c7 | 581b032adc66e899261159ff3a68890b6f0c63aa | refs/heads/master | 2023-08-04T20:17:09.172207 | 2021-09-24T10:11:39 | 2021-09-24T10:11:39 | 383,383,194 | 0 | 0 | Apache-2.0 | 2021-08-17T07:53:42 | 2021-07-06T07:43:07 | C++ | UTF-8 | C++ | false | false | 1,414 | h | // Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#ifndef _ST_HPC_PPL_NN_ENGINES_CUDA_OPTIMIZER_OPS_ONNX_ADD_OP_H_
#define _ST_HPC_PPL_NN_ENGINES_CUDA_OPTIMIZER_OPS_ONNX_ADD_OP_H_
#include "ppl/nn/engines/cuda/optimizer/opt_kernel.h"
namespace ppl { namespace nn { namespace cuda {
class AddOp final : public CudaOptKernel {
public:
AddOp(const ir::Node* node) : CudaOptKernel(node) {}
KernelImpl* CreateKernelImpl() const override;
ppl::common::RetCode Init(const OptKernelOptions&) override;
ppl::common::RetCode Finalize(const OptKernelOptions& options) override;
private:
uint64_t mask = 0;
};
}}} // namespace ppl::nn::cuda
#endif
| [
"openppl.ai@hotmail.com"
] | openppl.ai@hotmail.com |
62aca02a2bbce1db859de5e2715faab7c0fca567 | 1017a818e439fdd6591264d4f30e43fbe0fc3bbc | /src/VertexBuffer.h | ded5ce1a89f7e0b3a53c0504b25540618d6668a3 | [] | no_license | thebluespecs/openGL-calculator | e3a365d36076159bcae911312266097571a35beb | d80d114f7c7d43df2484341bbfaff9f76dca6f5d | refs/heads/master | 2021-07-07T19:02:05.570144 | 2020-08-10T10:14:14 | 2020-08-10T10:14:14 | 167,968,703 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 253 | h | #pragma once
#include <GL/glew.h>
class VertexBuffer
{
private:
/* data */
unsigned int m_RendererID;
public:
VertexBuffer(const void* data, unsigned int size );
~VertexBuffer();
void Bind() const ;
void UnBind() const ;
};
| [
"ayushsara12@gmail.com"
] | ayushsara12@gmail.com |
eb6993bf1902ee3020202889d5c83689e841d4cd | 00d712168ab09a7be4d77b0c2e0639df13fa2854 | /CapsEngine/CAPS/Header/SoundManager/SoundBuffer.hpp | f96324467520091380447630ba146d2746fd0c17 | [] | no_license | Aladin-Saleh/Moteur-Graphique-Physique | 4db381ce18b50aa65de4b05a7c1b72a7c1de513b | dcbc3e69b056c4d5deeff80575dc6cc811627416 | refs/heads/main | 2023-03-16T06:17:54.235711 | 2021-03-16T11:30:37 | 2021-03-16T11:30:37 | 348,312,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 504 | hpp | #ifndef __SOUND_BUFFER__
#define __SOUND_BUFFER__
#include "Debug.hpp"
#include "AL/al.h"
namespace Ge
{
class SoundBuffer
{
private:
ALuint m_bufferID;
//unsigned char* buf;
ALenum m_format;
ALsizei m_frequency;
ALsizei m_sizei;
public:
SoundBuffer();
~SoundBuffer();
void Initialize(ALuint bufferID, ALenum format, ALsizei frequency, ALsizei msizei);
unsigned int GetID() const;
ALenum GetFormat() const;
ALenum GetFrequency() const;
ALsizei GetSize() const;
};
}
#endif | [
"Aladin@MSI.localdomain"
] | Aladin@MSI.localdomain |
eb91d7cda11cb00d8804022f618aada28d59cc72 | 011cb2831ff99daafa4b5ffc48aa72ebed652463 | /TileDevelopment/Test/3Test.cpp | 3c9ba78a41de4f04ebbcb2032cc63d416821fa89 | [] | no_license | striderssoftware/T2SplatCode | 83171f5927d04f34b0bc20316155f448a188b6f3 | f8499e0946cfcf87d183bfa36d6edb6a30033511 | refs/heads/master | 2021-06-23T15:26:54.328080 | 2021-06-03T16:47:07 | 2021-06-03T16:47:07 | 219,257,577 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,991 | cpp | #include <iostream>
#include <unistd.h>
#include <iostream>
#include <sstream>
#include <list>
#include <unistd.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_ttf.h>
using namespace std;
int main()
{
cout << "running splay" << endl;
static char envvars[][50] =
{
//"SDL_NOMOUSE=1",
//"TSLIB_CONSOLEDEVICE=none",
//"TSLIB_TSDEVICE=/dev/input/event1",
//"SDL_VIDEODRIVER=directfb",
//"SDL_MOUSEDRV=TSLIB",
//"SDL_MOUSEDEV=/dev/input/event1",
//"SDL_NO_RAWKBD=1",
"XDG_RUNTIME_DIR=/run/user/1000",
0
};
for (unsigned int i = 0; i < sizeof(envvars)/sizeof(envvars[0]); ++i)
if (putenv(envvars[i])) abort();
cout << "Set envvars" <<endl;
if ( SDL_Init(SDL_INIT_TIMER | SDL_INIT_VIDEO) < 0 )
{
cout << "SDL_Init Error" << endl;
cout << SDL_GetError() << endl;
}
// Create stuff
SDL_Window * window = SDL_CreateWindow("woo woo",
0,0, //SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED,
720, 480,
SDL_WINDOW_RESIZABLE);
// Set every pixel.
SDL_Surface * window_surface = SDL_GetWindowSurface(window);
SDL_Surface* image = SDL_LoadBMP("./MagicTheature720x480.bmp");
//int width = image->w;
//int height = image->h; //6700 opt
int width = window_surface->w;
int height = window_surface->h;
cout << "Width:" << width << endl;
cout << "Height:" << height << endl;
unsigned int * surfacePixels= (unsigned int*)window_surface->pixels;
unsigned int * imagePixels = (unsigned int*)image->pixels;
for (int y = 0; y < height; ++y)
{
for (int x = 0; x < width; ++x)
{
// surfacePixels[x + y * width] =
//SDL_MapRGBA(window_surface->format, 200, 100, 250, 255);
surfacePixels[x + y * width] = imagePixels[x + y * width];
}
}
SDL_UpdateWindowSurface(window);
SDL_Delay(9000);
SDL_DestroyWindow(window);
TTF_Quit();
SDL_Quit();
}
| [
"strider@shadowsoftware.biz"
] | strider@shadowsoftware.biz |
74b5316269e9bd8f957472b82c975843cb2941a0 | bf39a457f635e02b688048d4d67a7de1cc1569a0 | /include/server/Scheduler.h | 10cbd5d517d98f9518e06f80190505c250dd6c96 | [
"MIT"
] | permissive | taroyuyu/KakaKV | a8bdb636dbce356ac53bd243c5ae76ac7a44bf84 | 47d0c36f6a77959d02c30b955ca5fbc8999d24d6 | refs/heads/main | 2023-08-05T21:46:36.878136 | 2021-10-01T11:52:25 | 2021-10-01T11:52:25 | 410,698,738 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 213 | h | //
// Created by 凌宇 on 2021/9/21.
//
#ifndef KAKAKV_SCHEDULER_H
#define KAKAKV_SCHEDULER_H
namespace kakakv{
namespace server{
class Scheduler {
};
}
}
#endif //KAKAKV_SCHEDULER_H
| [
"891214416@qq.com"
] | 891214416@qq.com |
3c5a75ff275da4516359b2dfcec1d0b283a9e81c | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /media/midi/midi_manager_winrt.h | aee6353f21d2117b47b1e56807411f4dfdf09ed4 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 2,224 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_MIDI_MIDI_MANAGER_WINRT_H_
#define MEDIA_MIDI_MIDI_MANAGER_WINRT_H_
#include <memory>
#include "base/strings/string16.h"
#include "media/midi/midi_manager.h"
namespace midi {
class MidiService;
class MIDI_EXPORT MidiManagerWinrt final : public MidiManager {
public:
class MidiInPortManager;
class MidiOutPortManager;
explicit MidiManagerWinrt(MidiService* service);
~MidiManagerWinrt() override;
// MidiManager overrides:
void StartInitialization() final;
void Finalize() final;
void DispatchSendMidiData(MidiManagerClient* client,
uint32_t port_index,
const std::vector<uint8_t>& data,
base::TimeTicks timestamp) final;
private:
// Subclasses that access private/protected members of MidiManager.
template <typename InterfaceType,
typename RuntimeType,
typename StaticsInterfaceType,
base::char16 const* runtime_class_id>
class MidiPortManager;
// Callbacks on kComTaskRunner.
void InitializeOnComRunner();
void SendOnComRunner(uint32_t port_index, const std::vector<uint8_t>& data);
// Callback from MidiPortManager::OnEnumerationComplete on kComTaskRunner.
// Calls CompleteInitialization() when both MidiPortManagers are ready.
void OnPortManagerReady();
// Lock to ensure all smart pointers initialized in InitializeOnComRunner()
// and destroyed in FinalizeOnComRunner() will not be accidentally destructed
// twice in the destructor.
base::Lock lazy_init_member_lock_;
// All operations to Midi{In|Out}PortManager should be done on kComTaskRunner.
std::unique_ptr<MidiInPortManager>
port_manager_in_; // GUARDED_BY(lazy_init_member_lock_)
std::unique_ptr<MidiOutPortManager>
port_manager_out_; // GUARDED_BY(lazy_init_member_lock_)
// Incremented when a MidiPortManager is ready.
uint8_t port_manager_ready_count_ = 0;
DISALLOW_COPY_AND_ASSIGN(MidiManagerWinrt);
};
} // namespace midi
#endif // MEDIA_MIDI_MIDI_MANAGER_WINRT_H_
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
2d01781048bc820542e810ac6d494dfef743e961 | 11193bb804b3ca7954b902096baa80a70b2bd154 | /src/declarative/items/qsgloader_p.h | 832d3a6138edef791c8104fc19e7f421df0b03b6 | [] | no_license | richardeigenmann/qtdeclarative | e36347b973cc72619e373a6742ebc9ca38a81480 | c5b56564667194b179ebfcc87608d38e9969fade | refs/heads/master | 2020-07-23T17:02:02.169233 | 2011-08-11T11:58:53 | 2011-08-15T07:35:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,429 | h | // Commit: 6f78a6080b84cc3ef96b73a4ff58d1b5a72f08f4
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtDeclarative module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QSGLOADER_P_H
#define QSGLOADER_P_H
#include "qsgimplicitsizeitem_p.h"
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
QT_MODULE(Declarative)
class QSGLoaderPrivate;
class Q_AUTOTEST_EXPORT QSGLoader : public QSGImplicitSizeItem
{
Q_OBJECT
Q_ENUMS(Status)
Q_PROPERTY(QUrl source READ source WRITE setSource NOTIFY sourceChanged)
Q_PROPERTY(QDeclarativeComponent *sourceComponent READ sourceComponent WRITE setSourceComponent RESET resetSourceComponent NOTIFY sourceComponentChanged)
Q_PROPERTY(QSGItem *item READ item NOTIFY itemChanged)
Q_PROPERTY(Status status READ status NOTIFY statusChanged)
Q_PROPERTY(qreal progress READ progress NOTIFY progressChanged)
public:
QSGLoader(QSGItem *parent = 0);
virtual ~QSGLoader();
QUrl source() const;
void setSource(const QUrl &);
QDeclarativeComponent *sourceComponent() const;
void setSourceComponent(QDeclarativeComponent *);
void resetSourceComponent();
enum Status { Null, Ready, Loading, Error };
Status status() const;
qreal progress() const;
QSGItem *item() const;
Q_SIGNALS:
void itemChanged();
void sourceChanged();
void sourceComponentChanged();
void statusChanged();
void progressChanged();
void loaded();
protected:
void geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry);
void componentComplete();
private:
Q_DISABLE_COPY(QSGLoader)
Q_DECLARE_PRIVATE(QSGLoader)
Q_PRIVATE_SLOT(d_func(), void _q_sourceLoaded())
Q_PRIVATE_SLOT(d_func(), void _q_updateSize())
};
QT_END_NAMESPACE
QML_DECLARE_TYPE(QSGLoader)
QT_END_HEADER
#endif // QSGLOADER_P_H
| [
"qt-info@nokia.com"
] | qt-info@nokia.com |
a2a87e593f12c4e16664911411924192f47d7cd6 | e38d93f032b4d1cc191797ec2a2b2824b799d9aa | /src/frontEnd/symbolPhase/symbolStmt.cpp | 993dd9ccf2722b3803534e747b243f10cd889a94 | [] | no_license | anjiann/GoLite | be45db50209061f0ba3b1a5475e7bab25e94832a | b0774d839375e6abb25d57a257bb111c8c15b860 | refs/heads/master | 2022-07-05T08:24:15.100942 | 2020-05-16T01:01:32 | 2020-05-16T01:01:32 | 264,287,482 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,123 | cpp | #include "symbolPhase/symbolHelper.hpp"
using std::cerr;
using std::cout;
using std::endl;
void SymbolHelper::dispatch(const NStatement &stmt) {
stmt.accept(*symbolDispatcher);
}
void SymbolHelper::dispatch(const NStmtAssign &assignStmt) {
for(const auto &exp : assignStmt.lhs) {
exp->accept(*symbolDispatcher);
}
for(const auto &exp : assignStmt.rhs) {
exp->accept(*symbolDispatcher);
}
}
void SymbolHelper::dispatch(const NStmtBlock &blockStmt) {
for(const auto &stmt : blockStmt.stmts) {
stmt->accept(*symbolDispatcher);
}
}
void SymbolHelper::dispatch(const NStmtBreakContinue &breakContinueStmt) {}
void SymbolHelper::dispatch(const NStmtDec &decStmt) {
decStmt.dec->accept(*symbolDispatcher);
}
void SymbolHelper::dispatch(const NStmtEmpty &emptyStmt) {}
void SymbolHelper::dispatch(const NStmtExp &expStmt) {
expStmt.exp->accept(*symbolDispatcher);
}
void SymbolHelper::dispatch(const NStmtFor &forStmt) {
forStmt.initStmt.accept(*symbolDispatcher);
forStmt.exp.accept(*symbolDispatcher);
forStmt.updateStmt.accept(*symbolDispatcher);
for(const auto &stmt : forStmt.stmts) {
stmt->accept(*symbolDispatcher);
}
}
void SymbolHelper::dispatch(const NStmtIfElse &ifElseStmt) {
ifElseStmt.condition.accept(*symbolDispatcher);
for(const auto &stmt : ifElseStmt.body) {
stmt->accept(*symbolDispatcher);
}
for(const auto &stmt : ifElseStmt.elseBody) {
stmt->accept(*symbolDispatcher);
}
}
void SymbolHelper::dispatch(const NStmtIncDec &incDecStmt) {
incDecStmt.exp.accept(*symbolDispatcher);
}
void SymbolHelper::dispatch(const NStmtPrint &printStmt) {
for(const auto &exp : printStmt.exps) {
exp->accept(*symbolDispatcher);
}
}
void SymbolHelper::dispatch(const NStmtReturn &returnStmt) {
returnStmt.exp.accept(*symbolDispatcher);
}
void SymbolHelper::dispatch(const NStmtSwitch &switchStmt) {
switchStmt.condition.accept(*symbolDispatcher);
for(const auto &caseClause : switchStmt.caseClauses) {
caseClause->accept(*symbolDispatcher);
}
} | [
"jia.jian@mail.mcgill.ca"
] | jia.jian@mail.mcgill.ca |
8913f2317c97bd252b5a8d0a4cf16ac4bcf56e10 | b49236ac61f402697196001eb61d74d485d12684 | /LevelLoader-console-2013/main.cpp | fcb113696e9e0aa47e07bf8ca53f60ff375d08c6 | [] | no_license | Jaymzeh/LevelLoader-console | 5a5dcf5dfaf00f5b9a043eb17d873181290cf033 | e5c36bbbbd51b4d0cbf8da99c0fc7e318de5bb9a | refs/heads/master | 2018-01-08T04:20:24.596867 | 2015-10-28T17:57:59 | 2015-10-28T17:57:59 | 45,131,488 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196 | cpp | #include "map.h"
int main() {
Map map;
map.createMap();
cout << endl;
map.saveMap("sampleMap.txt");
map.loadMap("sampleMap.txt");
cout << endl;
map.drawMap();
cin.get();
return 0;
} | [
"james_smith.games@live.co.uk"
] | james_smith.games@live.co.uk |
8b5ec95050cf8b1ec27005bf3c5c818b4b2c8bad | 2bfa2e8d2e744e28141a5c5c79119f2f97e853c9 | /zen_rtsp/alg-mutilthread/cascade_xml.h | 7be899eebdec9f8e53f25bf12be0ff91957f10e8 | [] | no_license | maxenergy/CPP_2020520 | bed4c2fba0dc96c60b6bb20157d11003b00c6067 | 8453b4426dcb044251eaed38d01ba07557348113 | refs/heads/master | 2023-05-17T05:18:32.703231 | 2021-01-24T15:14:01 | 2021-01-24T15:14:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,171 | h | #ifndef _CASCADE_XML_H
#define _CASCADE_XML_H
#include "cascadedetect.h"
#include "opencv2/opencv.hpp"
using namespace cv;
namespace cascade_xml{
const bool isStumpBased = true;
const int stageType =0;
const int featureType =1;
const Size origWinSize =Size(30,40);
const int ncategories =256;
const int NUM_STAGES = 17;
const CascadeClassifier::Data::Stage stages[NUM_STAGES] = {
{0,5,-1069533},
{5,3,-1048944},
{8,5,-1182631},
{13,5,-1098992},
{18,6,-1601090},
{24,5,-1134820},
{29,6,-1425795},
{35,6,-1400070},
{41,7,-2132845},
{48,7,-1282337},
{55,7,-1806305},
{62,7,-2033645},
{69,8,-1451531},
{77,7,-2062240},
{84,7,-1311160},
{91,8,-1757745},
{99,9,-1290194}};
const int NUM_CLASSIFIERS = 108;
const CascadeClassifier::Data::DTree classifiers[NUM_CLASSIFIERS] = {
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1},
{1}};
const int NUM_NODES = 108;
const CascadeClassifier::Data::DTreeNode nodes[NUM_NODES] = {
{53,0,0,-1},
{16,0,0,-1},
{99,0,0,-1},
{74,0,0,-1},
{56,0,0,-1},
{51,0,0,-1},
{64,0,0,-1},
{39,0,0,-1},
{4,0,0,-1},
{18,0,0,-1},
{98,0,0,-1},
{82,0,0,-1},
{33,0,0,-1},
{6,0,0,-1},
{62,0,0,-1},
{92,0,0,-1},
{55,0,0,-1},
{77,0,0,-1},
{15,0,0,-1},
{23,0,0,-1},
{21,0,0,-1},
{31,0,0,-1},
{96,0,0,-1},
{76,0,0,-1},
{45,0,0,-1},
{72,0,0,-1},
{71,0,0,-1},
{11,0,0,-1},
{1,0,0,-1},
{78,0,0,-1},
{97,0,0,-1},
{90,0,0,-1},
{50,0,0,-1},
{7,0,0,-1},
{40,0,0,-1},
{26,0,0,-1},
{19,0,0,-1},
{83,0,0,-1},
{66,0,0,-1},
{105,0,0,-1},
{58,0,0,-1},
{73,0,0,-1},
{30,0,0,-1},
{87,0,0,-1},
{16,0,0,-1},
{0,0,0,-1},
{101,0,0,-1},
{69,0,0,-1},
{60,0,0,-1},
{37,0,0,-1},
{59,0,0,-1},
{36,0,0,-1},
{3,0,0,-1},
{54,0,0,-1},
{34,0,0,-1},
{44,0,0,-1},
{84,0,0,-1},
{8,0,0,-1},
{61,0,0,-1},
{75,0,0,-1},
{12,0,0,-1},
{63,0,0,-1},
{49,0,0,-1},
{95,0,0,-1},
{27,0,0,-1},
{103,0,0,-1},
{46,0,0,-1},
{100,0,0,-1},
{57,0,0,-1},
{32,0,0,-1},
{22,0,0,-1},
{85,0,0,-1},
{42,0,0,-1},
{86,0,0,-1},
{25,0,0,-1},
{38,0,0,-1},
{102,0,0,-1},
{67,0,0,-1},
{14,0,0,-1},
{47,0,0,-1},
{80,0,0,-1},
{89,0,0,-1},
{93,0,0,-1},
{10,0,0,-1},
{79,0,0,-1},
{2,0,0,-1},
{20,0,0,-1},
{81,0,0,-1},
{24,0,0,-1},
{52,0,0,-1},
{5,0,0,-1},
{48,0,0,-1},
{104,0,0,-1},
{29,0,0,-1},
{91,0,0,-1},
{70,0,0,-1},
{13,0,0,-1},
{35,0,0,-1},
{88,0,0,-1},
{28,0,0,-1},
{94,0,0,-1},
{106,0,0,-1},
{68,0,0,-1},
{43,0,0,-1},
{9,0,0,-1},
{41,0,0,-1},
{17,0,0,-1},
{65,0,0,-1}};
const int NUM_LEAVES = 216;
const int leaves[NUM_LEAVES] = {-846247,449477,-758940,563229,-676183,594624,-600066,662559,-705415,549288,-773731,702884,-757077,602790,-845075,481874,-807709,396750,-714023,512626,-620313,583074,-664690,484152,-667071,475272,-686020,575650,-593549,537022,-728513,455513,-594992,561391,-782862,426030,-823482,293590,-584458,576184,-529682,581292,-629691,469090,-477744,603031,-741960,345195,-793839,350377,-653784,506210,-505555,580330,-719337,388424,-632929,451821,-723714,355333,-617466,457876,-546152,461353,-542339,463791,-497925,528423,-511823,502510,-660920,480962,-602581,406221,-561423,442684,-549975,446602,-486058,526428,-539787,465480,-690775,359335,-538156,447958,-611258,381429,-623960,378097,-600519,381661,-478273,504209,-584636,397051,-684064,331902,-531657,447407,-584791,383455,-608959,360567,-566724,408175,-691989,316137,-470229,448085,-672423,380216,-544512,413399,-481020,435706,-426930,507708,-551109,390243,-438772,484787,-580480,384912,-680022,315789,-505483,423251,-620806,339057,-518961,401562,-664806,331678,-457898,466115,-531416,417859,-677883,234405,-560440,379754,-393814,510602,-460525,446170,-510488,412665,-423137,489583,-612637,332712,-550207,359835,-647312,306090,-578058,367180,-686205,278955,-455451,432737,-470291,441086,-572578,334888,-562731,340451,-659527,264056,-548935,335700,-370968,507962,-570549,349270,-557926,346348,-673276,275948,-597809,314362,-668513,238932,-521086,353759,-584580,309991,-376685,504182,-738112,298838,-610036,301290,-645800,253591,-442067,417734,-694899,184610,-532664,380232,-538836,355916,-477570,391468,-502691,387576,-526380,357996,-420232,459542,-559456,340270,-560911,344472};
const int NUM_SUBSETS = 864;
const int subsets[NUM_SUBSETS] = {-606281732,-2566192,-107946497,-8646188,-73877256,-73885032,-1698365442,-74938216,-1025,-136588321,-640886785,-36512293,-82576569,-77358797,-10223753,-13370761,-34608641,-1930833689,-2886659,-287321602,-1700025601,-1999983881,-1114898949,-1996490561,-71308288,-101589507,-33554995,-4097,-1074790913,-537001985,-1434599505,-1,-369309700,-2743921,-107941379,-511780,-1702823684,-1727233800,-1148663042,-1079500512,-6489091,-2567171,-6430753,-2239011,-1615265793,-480264,-71499777,-1147666184,-214368772,-2319940,-2490371,-42126116,-73859144,-16992104,-1685537800,-1081573240,-2293764,-2296068,-73532418,-67305732,-67109890,-37421364,-4980756,-288043320,-65538,-852098,-8193,-1376402,1307758071,1877471219,-33563137,-513,-1,-2099241,-67175457,-589857,-109576413,-143403406,-8913037,-9177229,-33558529,-452984833,-259,-994051585,-4212753,-855703553,-33690116,-855638529,-4195265,339205437,-1212154949,808975367,-1506020555,892817425,-1438679201,813694335,-1510232065,-20609,-18874369,-335564801,804222971,2004875255,-1,649266434,-957419521,-15361,-8388609,-5,1474232319,-2097153,-1,-1025,-71696387,-266610952,-172756483,-570427907,-102253889,-1459963655,-88475395,-1996624644,-176168414,-219678198,1084227650,1344461550,-683539967,1346773251,1917313346,2003828731,-1481097220,-253956,-614147075,-8577795,-285541123,-1078150600,-1349190657,-1081292580,-817891328,1772930828,990889935,1970130335,-299340852,1552743804,185454476,150986639,-1,-589825,-1,-26017794,-8913033,-143133833,-8913033,-143132809,-65537,-73762,-537135169,-596242,-262657,-513,-9,-559369,-536944649,-599297,-40181761,-852234,-222897161,-563722,-729089,-9275658,-2098664716,988806143,-1141396482,-1140856086,-257,-1140850739,-13313,-1140874245,-1,-989855747,-318776100,-857866817,-839430659,-2130707009,-587205176,-1056964609,-33554577,2133835263,2122034750,-1056964609,-1266,2137775887,-1539889120,542372910,2113732607,-198657,2145255423,-2097153,-1,-393473,-69206017,-3342388,-33767427,-222732,-139267,-142339,-196609,-1025,-151556,-1346893140,-524291,-167780355,-272630275,-33554947,-1409286145,-1459634178,-33686019,-1728315972,-285299026,-16851014,-805376898,-353178202,2086043122,-3932289,-2169090,-210567373,-65538,-33555457,533573614,-1073762322,-2113793,1147513062,-138428497,1059204003,-4194511,-1245708353,-2621441,-1,-1178601027,-1145176129,-1732272705,-1073741889,-1,-855640067,-186647811,-989855745,-33556003,-1057227784,-35653412,-1056964609,-4214,-219158645,1926193216,-1058478134,-19414526,5136722,-135285726,-207618069,-545742851,-237571,-4718595,-4210691,-21194755,-16846863,-1075052547,-1617425328,-285216817,-324079669,-33656962,-354095377,1207435111,1614859879,-151567089,-790110369,-3152918,-892342614,176376322,-338692062,-548669718,1141172740,1465382128,-686034173,-285282561,-38913,-2097153,-53761,-537659393,-8193,-1,-1025,-65537,-328193,-466945,-460841,-11010249,-9281673,-13172873,-9209997,-12586221,-720243659,775679675,285605183,-2107065,1431787283,-9965057,1434451839,-16777284,-33572865,-8260,-16909633,-4107,-33571330,-50337348,-1459619125,-352327441,-1594953989,-498122522,-1459628293,-1040188529,6899847,-706809377,-855638529,-1080164359,-1112418051,-42738179,-41943555,-73744675,-1161953281,-37945860,-1996624644,-1078394883,-1,-1073741825,-2097153,-1073742849,-3073,-1073758209,-1073758209,-268456209,-1562202113,1876928511,-286588929,1736576879,183144415,-538040321,-336068617,-3073,-2067800641,-10493953,-570437123,-1677737987,-1996505089,-131587,150994175,-4194305,-65537,-10813974,-67829889,-9183369,-9179785,-143295629,-210501769,-4097,-3473409,-73662686,-270086974,2079850495,-270287873,2080077655,1340278131,-16781529,584298283,-1493719838,-755238921,-153622749,4716383,-151521305,-134219777,-7668056,-1077887043,-10625033,-1073741873,-3940886,-1409815331,-340721784,-1347359816,-1077938767,-1308626433,-26083331,-8705,-1145045057,-1107310339,-1125393220,-1996488769,-134220118,-423439421,-420748670,-524620598,-403701809,1167557419,-201870685,-136331345,1065107192,-494852,-4325377,-8195,-2507778,-4325383,-1345519617,-1081335560,-70453250,-570625540,-212606978,-8210,-4587522,-284889108,-71303170,-11679034,-276481,1322962783,-472395905,-806129841,-218676281,16403031,-296352681,1131922263,1058856700,-2826244,-115548161,-571204868,-12799812,-4395332,-282788100,-1618476808,-285233969,-1058421810,-463253802,-218956338,-341312669,25289481,-210078729,-201855766,1414561789,-164387,2146926591,-10534915,-1398096897,-87105,-1376257,-1078445126,-33555657,823525239,-808069153,-169869313,432004133,1358428086,-708840247,-318767105,1289743614,-21521,-304353313,-3479634,1478261975,-33662209,-22024257,-9175049,-552823560,-35974920,-1222508545,-576905735,-1080230150,-71433048,-4669701,-1089732468,-1025,2113921023,2080373820,486514687,-9471092,-849351881,2097001512,821821375,-16789761,-84411461,-495259022,-218169374,-176194218,-159908075,-143458817,-210239625,-688915708,731940,-135266802,251640749,-2114594,-257950213,-336593154,-1495271941,488136701,-753665,1071382525,-50433,-197635,-17923,-1141522433,-1074265352,-95,-1314128081,-3671248,-134217731,-135530575,-2135963833,-134744799,-704643073,-286593374,-1732613,-66049,-540873225,938999263,1710609407,2147482623,2012964859,-1409290513,147319528,-1434259898,-2064712449,1609031161,82637283,-1055276,-1059063041,-4935708,-67328792,-1299444006,-134551448,-77013510,-2322328,-215679494,2139668608,-8403034,-1033111089,-522981810,-520686642,-205269425,1194570243,-251660625,-201326609,-1359675907,-1679009067,-11420161,-1074085891,-1146291203,-68,-1618281473,-1414004552,-268435457,-3148817,-839389193,-269553918,-1048577,-268701697,-262153,-805310649,-286275841,-859575369,1325236491,-744267937,-1056969489,1076974819,1151848075,1078446927,-1131358731,-67350767,-17465857,-163859,-1111490819,-16842762,-1356923153,-1074205188,1896217599,1426915262,874380287,-5375570,-105513985,-16401492,-6554625,520987278,-134218780,-64180264,-45359812,-36712676,-88093459,-1465963013,-587349772,-721420817,-353711361,-74313729,-269254789,-50131149,-705493005,-143323145,-148441217,-10258625,-462429438,-1065138006,1392673312,38237856,-107755677,1074187271,1364705492,1467213555,-67111634,-261757970,-831813952,1624407946,-710940092,1143859373,-169884988,-452985873,-138428481,-1075855937,-67108865,-33,-1140867141,-1025,-1094730049,-1297,-75533781,-72089873,-2008026846,-213451777,2001957378,1880176464,1582780928,-143392937,-229379,-1089,-17921,-2162691,1152839679,-1275666451,-2098179,800063840,-12592129,-704644611,-82717699,-704775691,-276193283,-923147077,-575161345,150994623,-8396982,-689703575,-259131904,1350092678,-242005240,84310884,-201351230,-201328641,-80225261,-13409006,-247997869,1361308706,1649660127,1896038720,2071431855,256239,-285283586,-1636378818,-422664358,-1036867054,-134778050,-25697998,-339815013,-228066765,-171966541,-1279804161,-1612841473,-33554433,-1107313219,-1111754053,-1931764579,-1912603185,-671089682,-18433,-216801298,-4261889,-87303169,-4472869,-1064961,-173146177,-73729,-2305,-327681,-983041,-151588865,-8947723,-851969,-9177101,-525313,2138533199,-136960414,846389119,-897907474,1717453415,1182736430,1613232687,-1370559258,-245250,-271085585,-2152629,39216675,-23245973,2137095999,2143224691,79973236,-1493368855,-2228739,-268582913,-1048587,-267297,-1074814981,-1360744736,-134224242,-33687570,-1076695872,-134223701,-240200384,-1059279279,-148782960,1344797303,500981759,-35897347,-295937,-2148353,-1158873089,-65793,-1143291905,-1078318408,-1478512913,-2133335445,1275040498,-923816465,-537416705,208323247,-186653447,-855638529,1659302652,-1085505,-134545410,-1089593476,-420485131,-1901073441,-202394886,-1347470610,-25169174,-789580821,-324537852,-756286741,-1319664509,-2143816138,-27270421,-143655185,-1711737896,-13779204,436072924,-604144132,-72373554,-38222696,-484404,2072547464,-25428385,-161285013,-141634217,-227344530,1799868023,1983106371,-78128537,-143198345,1086600094,1776082908,1941044031,1935538879,-86118401,1474082440,-67191809,352962,-568348886,-532683025,-1462291956,-797975621,1684529676,5220640,-154489334,-227541041,-16881922,-1022083,-19087361,-15594126,-137662465,-67142663,-68288513,-8950917,-235,-195698891,-1493434507,-1517224047,-1113079825,1360019797,-1156850785,-780804201,-389355866,42713263,1625057002,-353899089,-369625125,-2134002053,-34817541,-805306881,-1077947344,-1193807461,2078242805,-1243654275,-1111884356,-1377847395,-1930642292,-1996492569,1328063136,-143665174,1566037520,-2628633,-2025000320,-854869566,1397199552,-741893246,-587822004,1574899071,-550265889,-39147794,1552923991,-588294097,-1414791217,-33607946,-135797566,-490230194,787361792,1441265889,-35657822,1075184132,929166514,-210505733,-77660162,-539305249,-553510434,-69927529,-1614360586,-15235869,-194728331,-8961165,177533949,-1078437552,-1860584961,-4410467,-89622081,-337003767,-1512451,-1095235384};
const int NUM_FEATURES=107;
struct Feature
{
int x;
int y;
int width;
int height;
};
const Feature features[NUM_FEATURES] = {
{0,0,5,2},
{0,0,9,8},
{0,0,10,1},
{0,5,3,5},
{0,7,4,11},
{0,9,2,2},
{0,14,4,3},
{0,16,2,4},
{0,19,4,7},
{0,19,5,6},
{0,21,2,5},
{0,21,3,6},
{0,25,2,3},
{0,28,2,4},
{0,31,1,3},
{0,31,2,3},
{0,34,2,2},
{0,34,3,2},
{0,37,2,1},
{0,37,3,1},
{0,37,5,1},
{0,37,6,1},
{1,1,2,10},
{1,1,5,1},
{1,3,5,1},
{1,14,3,1},
{1,14,3,2},
{1,14,4,4},
{1,15,4,1},
{2,1,8,12},
{2,7,2,6},
{2,12,8,6},
{3,0,3,3},
{3,1,6,2},
{3,16,1,1},
{3,24,8,3},
{3,28,8,4},
{4,5,1,1},
{4,6,1,2},
{4,28,8,4},
{5,6,1,2},
{5,7,1,1},
{5,26,7,3},
{6,3,1,2},
{6,15,3,1},
{6,16,6,8},
{6,37,1,1},
{7,0,4,2},
{7,14,3,1},
{7,14,4,1},
{8,1,3,1},
{8,1,4,1},
{8,15,4,4},
{9,37,3,1},
{10,37,3,1},
{11,0,3,1},
{11,1,1,1},
{11,1,3,1},
{11,37,6,1},
{12,1,2,1},
{12,14,6,1},
{12,24,2,1},
{12,37,6,1},
{13,3,5,2},
{13,37,3,1},
{15,1,2,1},
{15,1,5,1},
{15,10,5,4},
{15,14,5,1},
{15,20,5,5},
{15,37,1,1},
{15,37,5,1},
{16,1,2,1},
{16,12,3,3},
{17,13,4,4},
{18,0,4,2},
{18,0,4,3},
{18,5,4,11},
{18,13,4,2},
{18,14,4,1},
{18,37,4,1},
{20,0,3,4},
{21,2,3,7},
{21,4,3,8},
{21,13,3,3},
{21,15,1,1},
{21,25,3,5},
{21,37,3,1},
{22,6,1,2},
{23,4,1,1},
{23,5,1,1},
{23,6,1,1},
{23,6,1,2},
{24,0,2,9},
{24,3,2,11},
{24,26,2,2},
{24,28,2,4},
{24,31,2,3},
{24,34,2,2},
{24,37,2,1},
{25,5,1,1},
{25,16,1,1},
{26,21,1,1},
{27,30,1,3},
{27,31,1,3},
{27,34,1,2},
{27,37,1,1}};
}
#endif
| [
"yuanyupeng-1989@163.com"
] | yuanyupeng-1989@163.com |
4c51229b3d5099d4bef512cc9aa7c1c553a84bac | c53a170dc32d052aa20f02909c8e44f16d41311a | /model/GameBuilder.h | e2c335fda7ad075f361c661a2f166058df1286e1 | [] | no_license | gabgaudreau/Risk | 16ad0da5e1b8c92690164a5c36388c56130611c8 | c56130e0d37b7b48d6d0125ba2113cdfa9389bf0 | refs/heads/master | 2021-01-19T18:54:22.579594 | 2017-04-24T20:15:41 | 2017-04-24T20:15:41 | 88,387,701 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 256 | h | #pragma once
#include "Builder.h"
#include "RiskGame.h"
class GameBuilder : public Builder {
public:
World* GetWorld(std::string fileName);
std::vector<Player*> GetPlayersFromFile(std::string fileName);
void SaveInProgress(RiskGame* game);
}; | [
"Gabriel Gaudreau"
] | Gabriel Gaudreau |
1565d4550033a5f6d3949193a4c16331da18f9ee | f0280623b3b6cd80fa3a1102bf911e5cc736cc2b | /accounting.cpp | 92659abbe7bc7673b15a9a093a29a76cdc286987 | [] | no_license | xman199775/jeanscar | 1aea4dd5b35bab07462e2af3dfc98ee7813720fa | 1170c165ad0d6e50829d3d5db618406326a83c51 | refs/heads/master | 2021-05-05T06:09:14.336541 | 2018-06-25T12:49:52 | 2018-06-25T12:49:52 | 113,491,136 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,294 | cpp | #include "accounting.h"
#include "ui_accounting.h"
#include <QDate>
#include <QtSql>
#include <QDebug>
Accounting::Accounting(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::Accounting)
{
ui->setupUi(this);
ui->Acc_date->setDate(QDate::currentDate());
english = english = QLocale(QLocale::English, QLocale::UnitedStates);
calculate_ware();
calculate_orders();
calculate_employee();
calculate_daily();
calculate_total();
}
Accounting::~Accounting()
{
delete ui;
}
void Accounting::set_data(QLineEdit *l, QString s){
if(s != "")
l->setText(s);
}
void Accounting::calculate_employee(){
QString month, year;
month = english.toString(ui->Acc_date->date(), ("M"));
year = english.toString(ui->Acc_date->date(), "yyyy");
QSqlQuery qry;
qry.exec("select sum(`Amount`) from `Modify-salary` where month(`Date`) = "+month+" and year(`Date`) = "+year+" and `Type` = 'd';");
qry.first();
set_data(ui->E_Diss_amount, qry.value(0).toString());
qry.exec("select sum(`Amount`) from `Modify-salary` where month(`Date`) = "+month+" and year(`Date`) = "+year+" and `Type` = 's';");
qry.first();
set_data(ui->E_bro_amount, qry.value(0).toString());
qry.exec("select sum(`Amount`) from `Modify-salary` where month(`Date`) = "+month+" and year(`Date`) = "+year+" and `Type` = 'z';");
qry.first();
set_data(ui->E_bouns_amount, qry.value(0).toString());
qry.exec("select sum(`Amount`) from `Modify-salary` where month(`Date`) = "+month+" and year(`Date`) = "+year+" and `Type` = 'a';");
qry.first();
set_data(ui->E_diss_attend_amount, qry.value(0).toString());
qry.exec("select sum(`Clear-salary`) from `employee`;");
qry.first();
set_data(ui->E_salaries, qry.value(0).toString());
qry.exec("select sum(`Amount`) from `Salary` where month(`Date`) = "+month+" and year(`Date`) = "+year+";");
qry.first();
set_data(ui->E_clear_salary, qry.value(0).toString());
}
void Accounting::calculate_orders(){
QString month, year;
month = english.toString(ui->Acc_date->date(), ("M"));
year = english.toString(ui->Acc_date->date(), "yyyy");
QSqlQuery qry;
qry.exec("select count(`Order-num`) from `Order` where month(`Order-time`) = "+month+" and year(`Order-time`) = "+year+";");
qry.first();
set_data(ui->opnums, qry.value(0).toString());
qry.exec("select count(`Order-num`) from `Order` where month(`Delvtime`) = "+month+" and year(`Delvtime`) = "+year+" and `Done` = '1';");
qry.first();
set_data(ui->opnums_done, qry.value(0).toString());
qry.exec("select count(`Order-num`) from `Order` where month(`Delvtime`) = "+month+" and year(`Delvtime`) = "+year+" and `Done` = '0';");
qry.first();
set_data(ui->opnums_undone, qry.value(0).toString());
qry.exec("select count(`Order-num`) from `Order` where month(`Order-time`) = "+month+" and year(`Order-time`) = "+year+" and `Bouns` = '1';");
qry.first();
set_data(ui->opnums_bouns, qry.value(0).toString());
qry.exec("select sum(`M-Pay`), sum(`M-Remain`) from `Order` where month(`Order-time`) = "+month+" and year(`Order-time`) = "+year+" ;");
qry.first();
set_data(ui->op_payed, qry.value(0).toString());
set_data(ui->op_remain, qry.value(1).toString());
qry.exec("select sum(`M-Pay`) from `Order` where month(`Order-time`) = "+month+" and year(`Order-time`) = "+year+" and `Done` = '0' ;");
qry.first();
qlonglong payed_and_undone = qry.value(0).toLongLong();
qry.exec("select sum(`Total-price`) from `Order` where month(`Delvtime`) = "+month+" and year(`Delvtime`) = "+year+" and `Done` = '1' ;");
qry.first();
qlonglong total_done = qry.value(0).toLongLong();
set_data(ui->op_income, QString::number(total_done + payed_and_undone));
qry.exec("select sum(`M-pay`) from `Order` where month(`Order-time`) = "+month+" and year(`Order-time`) = "+year+" and `Bouns` = '1' ;");
qry.first();
set_data(ui->op_undone_cost, qry.value(0).toString());
qlonglong undone_codt = qry.value(0).toLongLong();
set_data(ui->op_profit, QString::number(total_done + payed_and_undone - undone_codt));
}
void Accounting::calculate_stock(){
QSqlQuery qry;
qry.exec("select sum(`Quantity`), sum(`Price`) from `Stock`;");
qry.first();
set_data(ui->Ware_quant, qry.value(0).toString());
set_data(ui->Ware_cost, qry.value(1).toString());
}
void Accounting::calculate_ware(){
QSqlQuery qry;
qry.exec("select sum(`Quantity`), sum(`Price`) from `Ware`;");
qry.first();
set_data(ui->Ware_quant, qry.value(0).toString());
set_data(ui->Ware_cost, qry.value(1).toString());
}
void Accounting::calculate_daily(){
QString month, year;
month = english.toString(ui->Acc_date->date(), ("M"));
year = english.toString(ui->Acc_date->date(), "yyyy");
qlonglong profit = 0, outcome = 0, income = 0;
QSqlQuery qry;
qry.exec("select sum(`Amount`) from `Daily` where `Done` = 'y' and `Income` = 'y' and month(`Date`) = "+month+" and year(`Date`) = "+year+";");
qry.first();
income = qry.value(0).toLongLong();
qry.exec("select sum(`Amount`) from `Daily` where `Done` = 'y' and `Income` = 'n' and month(`Date`) = "+month+" and year(`Date`) = "+year+";");
qry.first();
outcome = qry.value(0).toLongLong();
profit = income - outcome;
set_data(ui->Daily_income, QString::number(income));
set_data(ui->Daily_outcome, QString::number(outcome));
set_data(ui->Daily_profit, QString::number(profit));
if(ui->Daily_profit->text()[0] == '-')
ui->Daily_profit->setStyleSheet("color: rgb(255, 0, 0);");
else
ui->Daily_profit->setStyleSheet("color: rgb(0, 255, 0);");
}
void Accounting::calculate_total(){
qlonglong op_profit, op_outcome, E_salaries = 0, E_income = 0;
op_profit = ui->op_profit->text().toLongLong();
op_outcome = ui->op_undone_cost->text().toLongLong();
E_salaries += ui->E_clear_salary->text().toDouble();
qDebug() << E_salaries << endl;
E_salaries += ui->E_bro_amount->text().toLongLong();
E_salaries += ui->E_hours_bouns->text().toLongLong();
E_salaries += ui->E_bouns_amount->text().toLongLong();
E_salaries += ui->Daily_outcome->text().toLongLong();
E_income += ui->E_diss_attend_amount->text().toLongLong();
E_income += ui->E_Diss_amount->text().toLongLong();
E_income += ui->Daily_income->text().toLongLong();
set_data(ui->Total_income, QString::number(op_profit + E_income));
set_data(ui->Total_outcome, QString::number(op_outcome + E_salaries));
set_data(ui->Profit, QString::number((op_profit + E_income) - (op_outcome + E_salaries)));
if(ui->Profit->text()[0] == '-')
ui->Profit->setStyleSheet("color: rgb(255, 0, 0);");
else
ui->Profit->setStyleSheet("color: rgb(0, 255, 0);");
}
void Accounting::on_Acc_date_editingFinished()
{
if(ui->comboBox->currentText() == "مخزن")
calculate_ware();
else
calculate_stock();
calculate_orders();
calculate_employee();
calculate_daily();
calculate_total();
}
void Accounting::on_comboBox_currentTextChanged(const QString &arg1)
{
if (arg1 == "مخزن")
calculate_ware();
else
calculate_stock();
}
| [
"xman199775@gmail.com"
] | xman199775@gmail.com |
754f9adbcbfb248372b91957166743da5566216d | ecbd1ada3ca686b846e818c74f7d2c5a8deb6109 | /class1/graph.h | dda2fd4641821cfee12bcf319103f2657cffcc84 | [] | no_license | gmadsen/stanford_mooc | c0739d231fdd4e2668c32f48c3d5a4f733ea6931 | d75f13db1ade2beb92d13597b4d7514c151452be | refs/heads/master | 2020-03-12T01:38:46.364133 | 2018-05-18T01:30:24 | 2018-05-18T01:30:24 | 130,380,812 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,601 | h | #pragma once
// graph structure and algorithms
#include <fstream>
#include <list>
#include <memory>
#include <utility>
#include <vector>
namespace GraphNS {
typedef std::vector<std::list<int>> adj_t;
class Graph {
private:
adj_t::size_type vertex_count;
adj_t adjlist;
public:
// ctor with size
Graph(adj_t::size_type size);
// ctor with ifstream
Graph(adj_t::size_type size, std::ifstream &input);
// EFFECTS: the total number of vertices
adj_t::size_type size() const;
// EFFECTS: print adjacencies for each vertex
void print() const;
// EFFECTS: get adjacency list
const adj_t &get_adjacency_list() const;
// EFFECTS: add edge to graph
void add_edge(int u, int v);
void get_vertex(int idx);
}; // class Graph
class WeightedGraph {
private:
struct Vertex {
int label;
std::vector<std::pair<int, int>> adj_edges;
bool explored;
}; // class Vertex
public:
std::vector<std::unique_ptr<Vertex>> vertices;
WeightedGraph(std::ifstream &input);
size_t size() const;
const std::vector<std::unique_ptr<Vertex>> &get_vertices() const;
void print() const;
}; // class WeightedGraph
class VertexHeap {
private:
typedef std::vector<std::pair<int, int>> heaplist;
heaplist heap;
public:
typedef heaplist::iterator iterator;
typedef heaplist::const_iterator const_iterator;
iterator begin() { return heap.begin(); }
iterator end() { return heap.end(); }
std::pair<int,int> top() const;
void print() const;
void push(std::pair<int,int> v);
void pop();
void remove(int vertex);
int value_at(int vertex) const;
size_t size() const;
}; // class VertexHeap
//////////////////////////////////////////////////////////////////////////////////
// Graph Algorithms
////////////////////////////////////////////////////////////////////////////////
// EFFECTS: explore all vertices in graph with Depth first search
void dfs(const Graph &g, int s, std::vector<bool> &explored);
// EFFECTS: create a directed graph with reversed order
Graph reverse_graph(const Graph &g);
// EFFECTS: create a directed graph with new indices
Graph update_labels(const Graph &g, const std::vector<int> &order);
// EFFECTS: calculate finishing times using kosarjus
std::vector<int> topological_sort(const Graph &g);
// EFFECTS: return a vector of SCC sizes
std::vector<int> kosaraju(const Graph &g);
// EFFECTS: return a vector of shortest paths from s to all Dijkstra's
std::vector<int> dijkstra(WeightedGraph &wg, int s);
// == overload for class Graph
bool operator==(const Graph &left, const Graph &right);
} // namespace GraphNS | [
"gmadsen@umich.edu"
] | gmadsen@umich.edu |
823c9f811c3e6e2fe8c7a6fdc391a4078f59a44c | 26548ee2bea9cf274647865aaef0cd5bdc6f63e0 | /base/Condition.hpp | c8d45278cfa4146cfad06ae4bdf445d2d30bb5d1 | [] | no_license | Congrool/chatRoom | 05383c2439bb04674937a49993d9dd1d24af2291 | 51fad967b800e6ae4c1724be6e125570cc0720e6 | refs/heads/master | 2022-12-19T12:05:14.136478 | 2020-09-27T03:59:10 | 2020-09-27T03:59:10 | 255,889,549 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 872 | hpp | #ifndef CHATROOM_BASE_CONDITION_HPP
#define CHATROOM_BASE_CONDITION_HPP 0
#include "base/noncopyable.hpp"
#include "base/Mutex.hpp"
#include<pthread.h>
#include<assert.h>
namespace chatRoom
{
class Condition : noncopyable
{
public:
Condition(Mutex& mutex) : mutex_(mutex){
int ret = pthread_cond_init(&cond_, NULL);
assert(ret == 0);
}
~Condition(){
int ret = pthread_cond_destroy(&cond_);
assert(ret == 0);
}
void wait(){
int ret = pthread_cond_wait(&cond_, mutex_.getMutexPtr());
assert(ret == 0);
}
void notifyOne(){
int ret = pthread_cond_signal(&cond_);
assert(ret == 0);
}
void notifyAll(){
int ret = pthread_cond_broadcast(&cond_);
assert(ret == 0);
}
private:
Mutex& mutex_;
pthread_cond_t cond_;
};
} // namespace chatRoom
#endif // CHATROOM_BASE_CONDITION_HPP | [
"783928876@qq.com"
] | 783928876@qq.com |
85b09ceb7f3f1d991bdd013d125748702956b9d3 | 11cefa76e3cd8b7dc64b0d797d653e68ad9157fd | /include/zg/private/PZGConstants.h | 83a97bf82ced1097e0b5110f630ea37d66d0c510 | [
"BSD-3-Clause"
] | permissive | jfriesne/zg_choir | 984d38d3a0952c5926818c1587cfc10732534ff9 | 99ffe96c7289fe44244d0062e72b4a62be7d4d38 | refs/heads/master | 2023-08-22T19:30:38.449263 | 2023-08-13T05:23:09 | 2023-08-13T05:23:09 | 95,175,919 | 8 | 4 | BSD-3-Clause | 2021-12-18T21:27:14 | 2017-06-23T02:34:21 | C++ | UTF-8 | C++ | false | false | 1,859 | h | #ifndef PZGConstants_h
#define PZGConstants_h
#include "zg/private/PZGNameSpace.h"
#include "message/Message.h"
#include "util/String.h"
namespace zg_private
{
// Command codes we use internally when sending database-update-requests to the senior peer
enum {
PZG_PEER_COMMAND_RESET_SENIOR_DATABASE = 2053336420, // 'zcmd'
PZG_PEER_COMMAND_REPLACE_SENIOR_DATABASE,
PZG_PEER_COMMAND_UPDATE_SENIOR_DATABASE,
PZG_PEER_COMMAND_UPDATE_JUNIOR_DATABASE, // contains a PZGDatabaseUpdate object which will handle all cases
PZG_PEER_COMMAND_USER_MESSAGE, // contains an arbitrary user-specified Message
PZG_PEER_COMMAND_USER_TEXT_MESSAGE, // eg for "all peers echo hi"
};
extern const String PZG_PEER_NAME_USER_MESSAGE;
extern const String PZG_PEER_NAME_DATABASE_ID;
extern const String PZG_PEER_NAME_DATABASE_UPDATE;
extern const String PZG_PEER_NAME_DATABASE_UPDATE_ID;
extern const String PZG_PEER_NAME_TEXT;
extern const String PZG_PEER_NAME_CHECKSUM_MISMATCH;
extern const String PZG_PEER_NAME_BACK_ORDER;
// This is a special/magic database-update-ID value that represents a request for a resend of the entire database
#define DATABASE_UPDATE_ID_FULL_UPDATE ((uint64)-1)
/** Given a PeerInfo Message, tries to return a single-line text description of what's in it (for debugging purposes) */
MUSCLE_NODISCARD String PeerInfoToString(const ConstMessageRef & peerInfo);
/** Convenience method: Given a compatibility-version code, returns the equivalent human-readable string.
* @param versionCode a 32-bit compatibility-version code, as returned by CalculateCompatibilityVersionCode() or ZGPeerSettings::GetCompatibilityVersionCode()
* @returns an equivalent human-reable string, eg "cv0.3"
*/
MUSCLE_NODISCARD String CompatibilityVersionCodeToString(uint32 versionCode);
}; // end namespace zg_private
#endif
| [
"jaf@meyersound.com"
] | jaf@meyersound.com |
843104b24eff650b82f652f8567d140d1a9c49e0 | d61f5cbd7f7ef7d71dad8bd790b4942baef9e315 | /C++/ExtractCsvFromHtml/main.cpp | ca737741551d00bde7a69164c9072bbddf24bf89 | [] | no_license | robert-impey/CodingExperiments | 44b8bf657c46c28c21df9b7640e21a69fe89103f | 8ff27fa008ebee6497c98277d3eb7b23c3acb482 | refs/heads/master | 2023-08-17T18:54:05.125366 | 2023-08-16T00:32:49 | 2023-08-16T00:32:49 | 10,871,414 | 0 | 0 | null | 2023-07-19T08:01:15 | 2013-06-22T19:48:16 | C# | UTF-8 | C++ | false | false | 3,345 | cpp | /*
Extract comma separated values from with a td tag in HTML.
(c) Robert Impey 2016-04-30
*/
#include <iostream>
#include <string>
#include <vector>
#include "TdExtractor.hpp"
using namespace std;
enum TagState
{
OutsideTag,
InTag
};
enum TdTagState
{
OutsideTdTag,
InTOfTag,
InDOfTag,
InSlashOfTag
};
enum TdState
{
OutsideTd,
InTd
};
enum CsvState
{
InValue,
InComma
};
vector<string> extract(string html)
{
vector<string> extractedStrings;
TagState currentTagState = OutsideTag;
TdTagState currentTdTagState = OutsideTdTag;
TdState currentTdState = OutsideTd;
for (string::iterator it = html.begin(); it != html.end(); it++)
{
char currentChar = *it;
switch (currentTagState)
{
case OutsideTag:
if (currentChar == '<')
{
currentTagState = InTag;
break;
}
switch (currentTdTagState)
{
case InDOfTag:
switch (currentTdState)
{
case OutsideTd:
currentTdState = InTd;
break;
}
}
break;
case InTag:
if (currentChar == '>')
{
currentTagState = OutsideTag;
break;
}
switch (currentTdTagState)
{
case OutsideTdTag:
if (currentChar == 't')
{
currentTdTagState = InTOfTag;
}
break;
case InTOfTag:
if (currentChar == 'd')
{
currentTdTagState = InDOfTag;
}
break;
}
break;
}
}
return extractedStrings;
}
void extractAndPrintStrings(string html)
{
cout << "Extracting the comma separated values from: " << endl;
cout << html << endl;
vector<string> extractedStrings = extract(html);
for (vector<string>::iterator it = extractedStrings.begin(); it != extractedStrings.end(); it++)
{
cout << "'" << *it << "'" << endl;
}
cout << "----" << endl;
}
void runTests()
{
vector<string> examplesOfHtml;
examplesOfHtml.push_back("<html><body><table><tr></tr></table></body></html>");
examplesOfHtml.push_back("<html><body><table><tr><td></td></tr></table></body></html>");
examplesOfHtml.push_back("<html><body><table><tr><td>value1,value2, Something Else, and another thing</td></tr></table></body></html>");
examplesOfHtml.push_back("<html><body><table><tr><th>value1,value2, Something Else, and another thing</th></tr></table></body></html>");
examplesOfHtml.push_back("<html><body><table><tr><td>value1,value2, Something Else, and another thing</th></tr></table></body></html>");
for (vector<string>::iterator it = examplesOfHtml.begin(); it != examplesOfHtml.end(); it++)
{
extractAndPrintStrings(*it);
}
}
int main()
{
runTests();
return 0;
}
| [
"robert@impey.info"
] | robert@impey.info |
422e55f33ff228a0ecc5f66f15bae33573061aea | 4faa337fb95bdad55fba1445f9b1c7b38525e31e | /src/FSM/CalibrationLoop.cpp | dcca5a78b8b268d7dd76ee51564b29702eaf3007 | [] | no_license | nlurkin/Drone | 61aa54b5c88075fae6855ca46ba71269542257bf | 30cccea57c100855fa496c92b93340c34175ef36 | refs/heads/master | 2021-01-22T02:34:42.881230 | 2018-12-12T10:42:46 | 2018-12-12T10:42:46 | 14,590,043 | 0 | 0 | null | 2013-12-07T21:49:29 | 2013-11-21T14:40:07 | C++ | UTF-8 | C++ | false | false | 9,126 | cpp | /*
* CalibrationLoop.cpp
*
* Created on: 2 Mar 2014
* Author: Nicoas
*/
#include "FSM/CalibrationLoop.h"
#include "Generic/GenericMotor.h"
#include "Generic/GenericSensor.h"
#include <avr/eeprom.h>
#include "Constants.h"
CalibrationLoop::CalibrationLoop() {
fState = kIDLE;
fCurrentPower = 0;
calibHeight = 50;
fCurrentMotor = 0;
fNextState = kIDLE;
fIPInterval = 1;
fITInterval = 100;
fStopTime = 0;
fMTInterval = 100;
fMPInterval = 3;
fMaxLoop = 1;
fLoopIndex = 1;
fPath = kPROCEDURE;
}
CalibrationLoop::~CalibrationLoop() {
}
/**
* Setting calibration path (execute the procedure or load from memory)
* @param p
*/
void CalibrationLoop::setCalibPath(Path p) {
PRINTOUT("setCalibPath");
cout << "Setting calibration path to " << p << endl;
fPath = p;
}
/**
* Entry point for the FSM. Determine which method should be applied as function of the state.
* @return true if in IDLE state. Else false.
*/
bool CalibrationLoop::processLoop() {
PRINTOUT("processLoop");
bool ret = false;
switch(fState){
case kIDLE:
ret = true;
break;
case kWAITING:
wait();
break;
case kSCANNING:
scanP();
break;
case kTAKEOFF:
takeOff();
break;
case kSTABILIZING:
stabilize();
break;
case kIDISTURBED:
iDisturbed();
break;
case kIMEASUREP:
measureP();
break;
case kIMEASUREM:
measureM();
break;
case kMDISTURBED:
mDisturbed();
break;
case kMMEASURES:
measureS();
break;
case kMMEASURED:
measureD();
break;
case kMBALANCES:
mBalancedS();
break;
case kMBALANCED:
mBalancedD();
break;
case kLOAD:
load();
break;
case kAPPLY:
apply();
break;
default:
//Should not happen
break;
}
return ret;
}
/**
* Scanning value of power until vertical linear acceleration is positive.
*/
void CalibrationLoop::scanP(){
PRINTOUT("scanP");
if(!sSensor->checkDataAvailable()) return;
double az = sSensor->getAcceleration()[2];
//cout << "Acceleration z" << az << endl;
if(az<=0){
fCurrentPower++;
sMotor->setMotorPowerAll(fCurrentPower);
}
else{
sAltitude->setMotorLim(fCurrentPower);
sAltitude->setZRef(calibHeight);
fCurrentPower++;
sMotor->setMotorPowerAll(fCurrentPower);
fState = kTAKEOFF;
cout << F("Starting take-off") << endl;
}
}
/**
* Keeping the value of power until height calibHeight is reached.
*/
void CalibrationLoop::takeOff() {
PRINTOUT("takeOff");
if(!sSensor->checkDataAvailable()) return;
double height = sSensor->getPosition()[2];
double vz = sSensor->getVelocity()[2];
fCurrentPower = sAltitude->loop(height, vz);
if(sAltitude->isStable()){
//fState = kSTABILIZING;
sMotor->setMotorPower(getSqrtMotorPower(1), sMotor->getFirstMotor());
fStopTime = sSensor->getTime()+fITInterval;
fNextState = kIDISTURBED;
fState = kWAITING;
cout << F("Starting waiting") << endl;
}
else{
sMotor->setMotorPowerAll(fCurrentPower);
}
}
/**
* Decrease the value of power until the vertical acceleration is small.
*/
void CalibrationLoop::stabilize() {
PRINTOUT("stabilize");
if(!sSensor->checkDataAvailable()) return;
double az = sSensor->getAcceleration()[2];
if(az>0){
fCurrentPower--;
sMotor->setMotorPowerAll(fCurrentPower);
}
else{
sMotor->setMotorPower(getSqrtMotorPower(1), sMotor->getFirstMotor());
fStopTime = sSensor->getTime()+fITInterval;
fNextState = kIDISTURBED;
fState = kWAITING;
}
}
/**
* Wait until the time fStopTime is reached.
*/
void CalibrationLoop::wait() {
PRINTOUT("wait");
if(sSensor->getTime()>=fStopTime){
fState = fNextState;
cout << F("Starting ") << fNextState << endl;
}
}
/**
* The model is in the disturbed state (to avoid measuring at 0 rad). Ready to start the measurement.
*/
void CalibrationLoop::iDisturbed(){
PRINTOUT("iDisturbed");
sMotor->setMotorPower(getSqrtMotorPower(1), sMotor->getFirstMotor());
fStopTime = sSensor->getTime()+fITInterval;
fNextState = kIMEASUREP;
fState = kWAITING;
cout << F("Starting waiting") << endl;
}
/**
* First matrix measurement.
*/
void CalibrationLoop::measureP() {
PRINTOUT("measureP");
if(!sSensor->checkDataAvailable()) return;
fCalibrator.newPoint(sMotor->getFirstMotor(),
getSqrtMotorPower(1),
sSensor->getOmega(),
sSensor->getAlpha(),
sSensor->getAcceleration(),
sSensor->getQuaternion());
sMotor->setMotorPower(getSqrtMotorPower(-1), sMotor->getFirstMotor());
fStopTime = sSensor->getTime()+fITInterval;
fNextState = kIMEASUREM;
fState = kWAITING;
}
/**
* Second matrix measurement
*/
void CalibrationLoop::measureM() {
PRINTOUT("measureM");
if(!sSensor->checkDataAvailable()) return;
fCalibrator.newPoint(sMotor->getFirstMotor(),
getSqrtMotorPower(-1),
sSensor->getOmega(),
sSensor->getAlpha(),
sSensor->getAcceleration(),
sSensor->getQuaternion());
//Do we restart the loop for the average?
if(fLoopIndex<fMaxLoop){
sMotor->setMotorPower(getSqrtMotorPower(1), sMotor->getFirstMotor());
fStopTime = sSensor->getTime()+fITInterval;
fNextState = kIMEASUREP;
fState = kWAITING;
++fLoopIndex;
}
else{
fCalibrator.calibrateI(sMotor->getFirstMotor());
fCalibrator.clearPoints();
fCalibrator.finalizeI();
fCalibrator.getIAxis().print();
//sMotor->setMotorPowerAll(fCurrentPower);
sMotor->setMotorPower(getSqrtMotorPower(-1), sMotor->getFirstMotor());
fStopTime = sSensor->getTime()+fITInterval;
fCurrentMotor = sMotor->getFirstMotor();
fNextState = kMDISTURBED;
fState = kWAITING;
}
}
void CalibrationLoop::mDisturbed() {
PRINTOUT("mDisturbed");
sMotor->setMotorPower(getSqrtMotorPower(1), fCurrentMotor);
fStopTime = sSensor->getTime()+fMTInterval;
fNextState = kMMEASURES;
fState = kWAITING;
}
void CalibrationLoop::measureS() {
PRINTOUT("measureS");
if(!sSensor->checkDataAvailable()) return;
fCalibrator.newPoint(fCurrentMotor,
getSqrtMotorPower(1),
sSensor->getOmega(),
sSensor->getAlpha(),
sSensor->getAcceleration(),
sSensor->getQuaternion());
sMotor->setMotorPower(getSqrtMotorPower(2), fCurrentMotor);
fStopTime = sSensor->getTime()+fMTInterval;
fNextState = kMMEASURED;
fState = kWAITING;
}
void CalibrationLoop::measureD() {
PRINTOUT("measureD");
if(!sSensor->checkDataAvailable()) return;
fCalibrator.newPoint(fCurrentMotor,
getSqrtMotorPower(2),
sSensor->getOmega(),
sSensor->getAlpha(),
sSensor->getAcceleration(),
sSensor->getQuaternion());
sMotor->setMotorPower(getSqrtMotorPower(-2), fCurrentMotor);
fStopTime = sSensor->getTime()+fMTInterval;
fNextState = kMBALANCED;
fState = kWAITING;
}
void CalibrationLoop::mBalancedD(){
PRINTOUT("mBalancedD");
sMotor->setMotorPower(getSqrtMotorPower(-1), fCurrentMotor);
fStopTime = sSensor->getTime()+fMTInterval;
fNextState = kMBALANCES;
fState = kWAITING;
}
void CalibrationLoop::mBalancedS(){
PRINTOUT("mBalancedS");
sMotor->setMotorPower(fCurrentPower, fCurrentMotor);
fCalibrator.calibrateR(fCurrentMotor);
cout << F("R ") << endl;
if(fCurrentMotor==sMotor->getLastMotor()){
for(int i=0; i<4; i++){
cout << fCalibrator.getR(i)[0] << endl;
cout << fCalibrator.getR(i)[1] << endl;
cout << fCalibrator.getR(i)[2] << endl;
cout << fCalibrator.getR(i)[3] << endl;
//EEPROM_writeAnything<float>(eepromAddress[0+i*4], fCalibrator.getR(i)[0]);
//EEPROM_writeAnything<float>(eepromAddress[1+i*4], fCalibrator.getR(i)[1]);
//EEPROM_writeAnything<float>(eepromAddress[2+i*4], fCalibrator.getR(i)[2]);
//EEPROM_writeAnything<float>(eepromAddress[3+i*4], fCalibrator.getR(i)[3]);
}
cout << F("I ");
fCalibrator.getIAxis().print();
//EEPROM_writeAnything<float>(eepromAddress[16], fCalibrator.getIAxis().x);
//EEPROM_writeAnything<float>(eepromAddress[17], fCalibrator.getIAxis().y);
//EEPROM_writeAnything<float>(eepromAddress[18], fCalibrator.getIAxis().z);
fState = kAPPLY;
}
else{
fCurrentMotor++;
fState = kMDISTURBED;
}
}
void CalibrationLoop::load() {
PRINTOUT("load");
for(int i=0; i<4; i++){
//EEPROM_readAnything<float>(eepromAddress[0+i*4], fCalibrator.getR(i)[0]);
//EEPROM_readAnything<float>(eepromAddress[1+i*4], fCalibrator.getR(i)[1]);
//EEPROM_readAnything<float>(eepromAddress[2+i*4], fCalibrator.getR(i)[2]);
//EEPROM_readAnything<float>(eepromAddress[3+i*4], fCalibrator.getR(i)[3]);
}
//EEPROM_readAnything<float>(eepromAddress[16], fCalibrator.getIAxis()[0]);
//EEPROM_readAnything<float>(eepromAddress[17], fCalibrator.getIAxis()[1]);
//EEPROM_readAnything<float>(eepromAddress[18], fCalibrator.getIAxis()[2]);
}
void CalibrationLoop::start() {
PRINTOUT("start");
if(fPath==kPROCEDURE){
cout << "Starting calibration procedure" << endl;
//fCurrentPower = 1;
fCurrentPower = 29.766;
//fState = kSCANNING;
sMotor->setMotorPowerAll(fCurrentPower);
sMotor->setMotorPower(getSqrtMotorPower(1), sMotor->getFirstMotor());
fStopTime = sSensor->getTime()+fITInterval;
fNextState = kIDISTURBED;
fState = kWAITING;
}
else fState = kLOAD;
}
void CalibrationLoop::compute() {
PRINTOUT("compute");
}
void CalibrationLoop::apply() {
PRINTOUT("apply");
}
double CalibrationLoop::getSqrtMotorPower(int factor) {
return sqrt(pow(fCurrentPower,2)+factor*fIPInterval);
}
| [
"nicolas.lurkin@gmail.com"
] | nicolas.lurkin@gmail.com |
100c2644130a13aa3e32b8aa7d37d9d7a75555ef | d04ce57fbdc987061ab193cb44e8919699b49cec | /180902/merge-two-sorted-lists.cpp | 2acac73ba546846dc20854d72cf7de5e24a426ad | [] | no_license | fuujiro/DailyCoding | be016f010b3270058b1d23f13d6fddef1b55758f | 8a672edd447815481a3865a23531b0a113c370ca | refs/heads/master | 2020-03-27T20:31:39.626784 | 2018-12-29T08:21:38 | 2018-12-29T08:21:38 | 147,075,485 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 638 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
ListNode dummy{0};
auto curr = &dummy;
while (l1 && l2) {
if (l1->val <= l2->val) {
curr->next = l1;
l1 = l1->next;
} else {
curr->next = l2;
l2 = l2->next;
}
curr = curr->next;
}
curr->next = l1 ? l1 : l2;
return dummy.next;
}
}; | [
"fuujiro1997@gmail.com"
] | fuujiro1997@gmail.com |
a32a5eec436b361e205a68f35256c8507f9acb05 | d928140089ce41dab28a512e5e7618ea77f9cf53 | /2.选择/if最简单的用法_1.cpp | 712e70c07ba7e00c300497ad3753d4efbf2c662b | [] | no_license | fafuduck/C_stu | f912b45795b48db98216b5baa88a5c450edd410c | fb367e03b3c26c6746ebb2d673b016068db47c42 | refs/heads/master | 2020-03-27T23:52:38.778737 | 2018-09-04T13:53:16 | 2018-09-04T13:53:16 | 147,354,826 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 84 | cpp | # include <stdio.h>
int main(void)
{
if (5 > 3)
printf("SSSS\n");
return 0;
} | [
"q34556789@qq.com"
] | q34556789@qq.com |
59ca4f6e56a056370f5a8366a44ba7fb3cb58111 | 5664ab66deeecea95313faeea037fa832cca34ce | /modules/perception/proto/dst_type_fusion_config.pb.cc | 36532381a9f627fda31d8dbcbb375d41a16e3497 | [
"LicenseRef-scancode-generic-cla",
"BSD-2-Clause"
] | permissive | Forrest-Z/t1 | 5d1f8c17dc475394ab4d071a577953289238c9f4 | bdacd5398e7f0613e2463b0c2197ba9354f1d3e3 | refs/heads/master | 2023-08-02T03:58:50.032599 | 2021-10-08T05:38:10 | 2021-10-08T05:38:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 43,070 | cc | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: modules/perception/proto/dst_type_fusion_config.proto
#include "modules/perception/proto/dst_type_fusion_config.pb.h"
#include <algorithm>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/extension_set.h>
#include <google/protobuf/wire_format_lite.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
PROTOBUF_PRAGMA_INIT_SEG
namespace apollo {
namespace perception {
namespace fusion {
constexpr CameraDstTypeFusionParam::CameraDstTypeFusionParam(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, valid_dist_(0)
, reliability_(0)
, reliability_for_unknown_(0){}
struct CameraDstTypeFusionParamDefaultTypeInternal {
constexpr CameraDstTypeFusionParamDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CameraDstTypeFusionParamDefaultTypeInternal() {}
union {
CameraDstTypeFusionParam _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CameraDstTypeFusionParamDefaultTypeInternal _CameraDstTypeFusionParam_default_instance_;
constexpr LidarDstTypeFusionParam::LidarDstTypeFusionParam(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, reliability_(0)
, reliability_for_unknown_(0){}
struct LidarDstTypeFusionParamDefaultTypeInternal {
constexpr LidarDstTypeFusionParamDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~LidarDstTypeFusionParamDefaultTypeInternal() {}
union {
LidarDstTypeFusionParam _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT LidarDstTypeFusionParamDefaultTypeInternal _LidarDstTypeFusionParam_default_instance_;
constexpr DstTypeFusionConfig::DstTypeFusionConfig(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: camera_params_()
, lidar_params_(){}
struct DstTypeFusionConfigDefaultTypeInternal {
constexpr DstTypeFusionConfigDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~DstTypeFusionConfigDefaultTypeInternal() {}
union {
DstTypeFusionConfig _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT DstTypeFusionConfigDefaultTypeInternal _DstTypeFusionConfig_default_instance_;
} // namespace fusion
} // namespace perception
} // namespace apollo
static ::PROTOBUF_NAMESPACE_ID::Metadata file_level_metadata_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto[3];
static constexpr ::PROTOBUF_NAMESPACE_ID::EnumDescriptor const** file_level_enum_descriptors_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto = nullptr;
static constexpr ::PROTOBUF_NAMESPACE_ID::ServiceDescriptor const** file_level_service_descriptors_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto = nullptr;
const ::PROTOBUF_NAMESPACE_ID::uint32 TableStruct_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = {
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::CameraDstTypeFusionParam, _has_bits_),
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::CameraDstTypeFusionParam, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::CameraDstTypeFusionParam, name_),
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::CameraDstTypeFusionParam, valid_dist_),
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::CameraDstTypeFusionParam, reliability_),
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::CameraDstTypeFusionParam, reliability_for_unknown_),
0,
1,
2,
3,
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::LidarDstTypeFusionParam, _has_bits_),
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::LidarDstTypeFusionParam, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::LidarDstTypeFusionParam, name_),
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::LidarDstTypeFusionParam, reliability_),
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::LidarDstTypeFusionParam, reliability_for_unknown_),
0,
1,
2,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::DstTypeFusionConfig, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::DstTypeFusionConfig, camera_params_),
PROTOBUF_FIELD_OFFSET(::apollo::perception::fusion::DstTypeFusionConfig, lidar_params_),
};
static const ::PROTOBUF_NAMESPACE_ID::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = {
{ 0, 10, -1, sizeof(::apollo::perception::fusion::CameraDstTypeFusionParam)},
{ 14, 23, -1, sizeof(::apollo::perception::fusion::LidarDstTypeFusionParam)},
{ 26, -1, -1, sizeof(::apollo::perception::fusion::DstTypeFusionConfig)},
};
static ::PROTOBUF_NAMESPACE_ID::Message const * const file_default_instances[] = {
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::apollo::perception::fusion::_CameraDstTypeFusionParam_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::apollo::perception::fusion::_LidarDstTypeFusionParam_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::apollo::perception::fusion::_DstTypeFusionConfig_default_instance_),
};
const char descriptor_table_protodef_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) =
"\n5modules/perception/proto/dst_type_fusi"
"on_config.proto\022\030apollo.perception.fusio"
"n\"}\n\030CameraDstTypeFusionParam\022\016\n\004name\030\001 "
"\001(\t:\000\022\025\n\nvalid_dist\030\002 \001(\001:\0010\022\026\n\013reliabil"
"ity\030\003 \001(\001:\0010\022\"\n\027reliability_for_unknown\030"
"\004 \001(\001:\0010\"e\n\027LidarDstTypeFusionParam\022\016\n\004n"
"ame\030\001 \001(\t:\000\022\026\n\013reliability\030\002 \001(\001:\0010\022\"\n\027r"
"eliability_for_unknown\030\003 \001(\001:\0010\"\251\001\n\023DstT"
"ypeFusionConfig\022I\n\rcamera_params\030\001 \003(\01322"
".apollo.perception.fusion.CameraDstTypeF"
"usionParam\022G\n\014lidar_params\030\002 \003(\01321.apoll"
"o.perception.fusion.LidarDstTypeFusionPa"
"ram"
;
static ::PROTOBUF_NAMESPACE_ID::internal::once_flag descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_once;
const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto = {
false, false, 483, descriptor_table_protodef_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto, "modules/perception/proto/dst_type_fusion_config.proto",
&descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_once, nullptr, 0, 3,
schemas, file_default_instances, TableStruct_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto::offsets,
file_level_metadata_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto, file_level_enum_descriptors_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto, file_level_service_descriptors_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto,
};
PROTOBUF_ATTRIBUTE_WEAK const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable* descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_getter() {
return &descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto;
}
// Force running AddDescriptors() at dynamic initialization time.
PROTOBUF_ATTRIBUTE_INIT_PRIORITY static ::PROTOBUF_NAMESPACE_ID::internal::AddDescriptorsRunner dynamic_init_dummy_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto(&descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto);
namespace apollo {
namespace perception {
namespace fusion {
// ===================================================================
class CameraDstTypeFusionParam::_Internal {
public:
using HasBits = decltype(std::declval<CameraDstTypeFusionParam>()._has_bits_);
static void set_has_name(HasBits* has_bits) {
(*has_bits)[0] |= 1u;
}
static void set_has_valid_dist(HasBits* has_bits) {
(*has_bits)[0] |= 2u;
}
static void set_has_reliability(HasBits* has_bits) {
(*has_bits)[0] |= 4u;
}
static void set_has_reliability_for_unknown(HasBits* has_bits) {
(*has_bits)[0] |= 8u;
}
};
CameraDstTypeFusionParam::CameraDstTypeFusionParam(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned)
: ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) {
SharedCtor();
if (!is_message_owned) {
RegisterArenaDtor(arena);
}
// @@protoc_insertion_point(arena_constructor:apollo.perception.fusion.CameraDstTypeFusionParam)
}
CameraDstTypeFusionParam::CameraDstTypeFusionParam(const CameraDstTypeFusionParam& from)
: ::PROTOBUF_NAMESPACE_ID::Message(),
_has_bits_(from._has_bits_) {
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
name_.UnsafeSetDefault(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited());
if (from._internal_has_name()) {
name_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, from._internal_name(),
GetArenaForAllocation());
}
::memcpy(&valid_dist_, &from.valid_dist_,
static_cast<size_t>(reinterpret_cast<char*>(&reliability_for_unknown_) -
reinterpret_cast<char*>(&valid_dist_)) + sizeof(reliability_for_unknown_));
// @@protoc_insertion_point(copy_constructor:apollo.perception.fusion.CameraDstTypeFusionParam)
}
void CameraDstTypeFusionParam::SharedCtor() {
name_.UnsafeSetDefault(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited());
::memset(reinterpret_cast<char*>(this) + static_cast<size_t>(
reinterpret_cast<char*>(&valid_dist_) - reinterpret_cast<char*>(this)),
0, static_cast<size_t>(reinterpret_cast<char*>(&reliability_for_unknown_) -
reinterpret_cast<char*>(&valid_dist_)) + sizeof(reliability_for_unknown_));
}
CameraDstTypeFusionParam::~CameraDstTypeFusionParam() {
// @@protoc_insertion_point(destructor:apollo.perception.fusion.CameraDstTypeFusionParam)
if (GetArenaForAllocation() != nullptr) return;
SharedDtor();
_internal_metadata_.Delete<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
}
inline void CameraDstTypeFusionParam::SharedDtor() {
GOOGLE_DCHECK(GetArenaForAllocation() == nullptr);
name_.DestroyNoArena(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited());
}
void CameraDstTypeFusionParam::ArenaDtor(void* object) {
CameraDstTypeFusionParam* _this = reinterpret_cast< CameraDstTypeFusionParam* >(object);
(void)_this;
}
void CameraDstTypeFusionParam::RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena*) {
}
void CameraDstTypeFusionParam::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
void CameraDstTypeFusionParam::Clear() {
// @@protoc_insertion_point(message_clear_start:apollo.perception.fusion.CameraDstTypeFusionParam)
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
cached_has_bits = _has_bits_[0];
if (cached_has_bits & 0x00000001u) {
name_.ClearNonDefaultToEmpty();
}
if (cached_has_bits & 0x0000000eu) {
::memset(&valid_dist_, 0, static_cast<size_t>(
reinterpret_cast<char*>(&reliability_for_unknown_) -
reinterpret_cast<char*>(&valid_dist_)) + sizeof(reliability_for_unknown_));
}
_has_bits_.Clear();
_internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
}
const char* CameraDstTypeFusionParam::_InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) {
#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure
_Internal::HasBits has_bits{};
while (!ctx->Done(&ptr)) {
::PROTOBUF_NAMESPACE_ID::uint32 tag;
ptr = ::PROTOBUF_NAMESPACE_ID::internal::ReadTag(ptr, &tag);
switch (tag >> 3) {
// optional string name = 1 [default = ""];
case 1:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 10)) {
auto str = _internal_mutable_name();
ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx);
#ifndef NDEBUG
::PROTOBUF_NAMESPACE_ID::internal::VerifyUTF8(str, "apollo.perception.fusion.CameraDstTypeFusionParam.name");
#endif // !NDEBUG
CHK_(ptr);
} else
goto handle_unusual;
continue;
// optional double valid_dist = 2 [default = 0];
case 2:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 17)) {
_Internal::set_has_valid_dist(&has_bits);
valid_dist_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr);
ptr += sizeof(double);
} else
goto handle_unusual;
continue;
// optional double reliability = 3 [default = 0];
case 3:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 25)) {
_Internal::set_has_reliability(&has_bits);
reliability_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr);
ptr += sizeof(double);
} else
goto handle_unusual;
continue;
// optional double reliability_for_unknown = 4 [default = 0];
case 4:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 33)) {
_Internal::set_has_reliability_for_unknown(&has_bits);
reliability_for_unknown_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr);
ptr += sizeof(double);
} else
goto handle_unusual;
continue;
default:
goto handle_unusual;
} // switch
handle_unusual:
if ((tag == 0) || ((tag & 7) == 4)) {
CHK_(ptr);
ctx->SetLastTag(tag);
goto message_done;
}
ptr = UnknownFieldParse(
tag,
_internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(),
ptr, ctx);
CHK_(ptr != nullptr);
} // while
message_done:
_has_bits_.Or(has_bits);
return ptr;
failure:
ptr = nullptr;
goto message_done;
#undef CHK_
}
::PROTOBUF_NAMESPACE_ID::uint8* CameraDstTypeFusionParam::_InternalSerialize(
::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const {
// @@protoc_insertion_point(serialize_to_array_start:apollo.perception.fusion.CameraDstTypeFusionParam)
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
(void) cached_has_bits;
cached_has_bits = _has_bits_[0];
// optional string name = 1 [default = ""];
if (cached_has_bits & 0x00000001u) {
::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField(
this->_internal_name().data(), static_cast<int>(this->_internal_name().length()),
::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE,
"apollo.perception.fusion.CameraDstTypeFusionParam.name");
target = stream->WriteStringMaybeAliased(
1, this->_internal_name(), target);
}
// optional double valid_dist = 2 [default = 0];
if (cached_has_bits & 0x00000002u) {
target = stream->EnsureSpace(target);
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::WriteDoubleToArray(2, this->_internal_valid_dist(), target);
}
// optional double reliability = 3 [default = 0];
if (cached_has_bits & 0x00000004u) {
target = stream->EnsureSpace(target);
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::WriteDoubleToArray(3, this->_internal_reliability(), target);
}
// optional double reliability_for_unknown = 4 [default = 0];
if (cached_has_bits & 0x00000008u) {
target = stream->EnsureSpace(target);
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::WriteDoubleToArray(4, this->_internal_reliability_for_unknown(), target);
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::InternalSerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream);
}
// @@protoc_insertion_point(serialize_to_array_end:apollo.perception.fusion.CameraDstTypeFusionParam)
return target;
}
size_t CameraDstTypeFusionParam::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:apollo.perception.fusion.CameraDstTypeFusionParam)
size_t total_size = 0;
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
cached_has_bits = _has_bits_[0];
if (cached_has_bits & 0x0000000fu) {
// optional string name = 1 [default = ""];
if (cached_has_bits & 0x00000001u) {
total_size += 1 +
::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize(
this->_internal_name());
}
// optional double valid_dist = 2 [default = 0];
if (cached_has_bits & 0x00000002u) {
total_size += 1 + 8;
}
// optional double reliability = 3 [default = 0];
if (cached_has_bits & 0x00000004u) {
total_size += 1 + 8;
}
// optional double reliability_for_unknown = 4 [default = 0];
if (cached_has_bits & 0x00000008u) {
total_size += 1 + 8;
}
}
return MaybeComputeUnknownFieldsSize(total_size, &_cached_size_);
}
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CameraDstTypeFusionParam::_class_data_ = {
::PROTOBUF_NAMESPACE_ID::Message::CopyWithSizeCheck,
CameraDstTypeFusionParam::MergeImpl
};
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CameraDstTypeFusionParam::GetClassData() const { return &_class_data_; }
void CameraDstTypeFusionParam::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message* to,
const ::PROTOBUF_NAMESPACE_ID::Message& from) {
static_cast<CameraDstTypeFusionParam *>(to)->MergeFrom(
static_cast<const CameraDstTypeFusionParam &>(from));
}
void CameraDstTypeFusionParam::MergeFrom(const CameraDstTypeFusionParam& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:apollo.perception.fusion.CameraDstTypeFusionParam)
GOOGLE_DCHECK_NE(&from, this);
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
(void) cached_has_bits;
cached_has_bits = from._has_bits_[0];
if (cached_has_bits & 0x0000000fu) {
if (cached_has_bits & 0x00000001u) {
_internal_set_name(from._internal_name());
}
if (cached_has_bits & 0x00000002u) {
valid_dist_ = from.valid_dist_;
}
if (cached_has_bits & 0x00000004u) {
reliability_ = from.reliability_;
}
if (cached_has_bits & 0x00000008u) {
reliability_for_unknown_ = from.reliability_for_unknown_;
}
_has_bits_[0] |= cached_has_bits;
}
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
}
void CameraDstTypeFusionParam::CopyFrom(const CameraDstTypeFusionParam& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:apollo.perception.fusion.CameraDstTypeFusionParam)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool CameraDstTypeFusionParam::IsInitialized() const {
return true;
}
void CameraDstTypeFusionParam::InternalSwap(CameraDstTypeFusionParam* other) {
using std::swap;
auto* lhs_arena = GetArenaForAllocation();
auto* rhs_arena = other->GetArenaForAllocation();
_internal_metadata_.InternalSwap(&other->_internal_metadata_);
swap(_has_bits_[0], other->_has_bits_[0]);
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap(
&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(),
&name_, lhs_arena,
&other->name_, rhs_arena
);
::PROTOBUF_NAMESPACE_ID::internal::memswap<
PROTOBUF_FIELD_OFFSET(CameraDstTypeFusionParam, reliability_for_unknown_)
+ sizeof(CameraDstTypeFusionParam::reliability_for_unknown_)
- PROTOBUF_FIELD_OFFSET(CameraDstTypeFusionParam, valid_dist_)>(
reinterpret_cast<char*>(&valid_dist_),
reinterpret_cast<char*>(&other->valid_dist_));
}
::PROTOBUF_NAMESPACE_ID::Metadata CameraDstTypeFusionParam::GetMetadata() const {
return ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(
&descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_getter, &descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_once,
file_level_metadata_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto[0]);
}
// ===================================================================
class LidarDstTypeFusionParam::_Internal {
public:
using HasBits = decltype(std::declval<LidarDstTypeFusionParam>()._has_bits_);
static void set_has_name(HasBits* has_bits) {
(*has_bits)[0] |= 1u;
}
static void set_has_reliability(HasBits* has_bits) {
(*has_bits)[0] |= 2u;
}
static void set_has_reliability_for_unknown(HasBits* has_bits) {
(*has_bits)[0] |= 4u;
}
};
LidarDstTypeFusionParam::LidarDstTypeFusionParam(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned)
: ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) {
SharedCtor();
if (!is_message_owned) {
RegisterArenaDtor(arena);
}
// @@protoc_insertion_point(arena_constructor:apollo.perception.fusion.LidarDstTypeFusionParam)
}
LidarDstTypeFusionParam::LidarDstTypeFusionParam(const LidarDstTypeFusionParam& from)
: ::PROTOBUF_NAMESPACE_ID::Message(),
_has_bits_(from._has_bits_) {
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
name_.UnsafeSetDefault(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited());
if (from._internal_has_name()) {
name_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, from._internal_name(),
GetArenaForAllocation());
}
::memcpy(&reliability_, &from.reliability_,
static_cast<size_t>(reinterpret_cast<char*>(&reliability_for_unknown_) -
reinterpret_cast<char*>(&reliability_)) + sizeof(reliability_for_unknown_));
// @@protoc_insertion_point(copy_constructor:apollo.perception.fusion.LidarDstTypeFusionParam)
}
void LidarDstTypeFusionParam::SharedCtor() {
name_.UnsafeSetDefault(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited());
::memset(reinterpret_cast<char*>(this) + static_cast<size_t>(
reinterpret_cast<char*>(&reliability_) - reinterpret_cast<char*>(this)),
0, static_cast<size_t>(reinterpret_cast<char*>(&reliability_for_unknown_) -
reinterpret_cast<char*>(&reliability_)) + sizeof(reliability_for_unknown_));
}
LidarDstTypeFusionParam::~LidarDstTypeFusionParam() {
// @@protoc_insertion_point(destructor:apollo.perception.fusion.LidarDstTypeFusionParam)
if (GetArenaForAllocation() != nullptr) return;
SharedDtor();
_internal_metadata_.Delete<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
}
inline void LidarDstTypeFusionParam::SharedDtor() {
GOOGLE_DCHECK(GetArenaForAllocation() == nullptr);
name_.DestroyNoArena(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited());
}
void LidarDstTypeFusionParam::ArenaDtor(void* object) {
LidarDstTypeFusionParam* _this = reinterpret_cast< LidarDstTypeFusionParam* >(object);
(void)_this;
}
void LidarDstTypeFusionParam::RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena*) {
}
void LidarDstTypeFusionParam::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
void LidarDstTypeFusionParam::Clear() {
// @@protoc_insertion_point(message_clear_start:apollo.perception.fusion.LidarDstTypeFusionParam)
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
cached_has_bits = _has_bits_[0];
if (cached_has_bits & 0x00000001u) {
name_.ClearNonDefaultToEmpty();
}
if (cached_has_bits & 0x00000006u) {
::memset(&reliability_, 0, static_cast<size_t>(
reinterpret_cast<char*>(&reliability_for_unknown_) -
reinterpret_cast<char*>(&reliability_)) + sizeof(reliability_for_unknown_));
}
_has_bits_.Clear();
_internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
}
const char* LidarDstTypeFusionParam::_InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) {
#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure
_Internal::HasBits has_bits{};
while (!ctx->Done(&ptr)) {
::PROTOBUF_NAMESPACE_ID::uint32 tag;
ptr = ::PROTOBUF_NAMESPACE_ID::internal::ReadTag(ptr, &tag);
switch (tag >> 3) {
// optional string name = 1 [default = ""];
case 1:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 10)) {
auto str = _internal_mutable_name();
ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx);
#ifndef NDEBUG
::PROTOBUF_NAMESPACE_ID::internal::VerifyUTF8(str, "apollo.perception.fusion.LidarDstTypeFusionParam.name");
#endif // !NDEBUG
CHK_(ptr);
} else
goto handle_unusual;
continue;
// optional double reliability = 2 [default = 0];
case 2:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 17)) {
_Internal::set_has_reliability(&has_bits);
reliability_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr);
ptr += sizeof(double);
} else
goto handle_unusual;
continue;
// optional double reliability_for_unknown = 3 [default = 0];
case 3:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 25)) {
_Internal::set_has_reliability_for_unknown(&has_bits);
reliability_for_unknown_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad<double>(ptr);
ptr += sizeof(double);
} else
goto handle_unusual;
continue;
default:
goto handle_unusual;
} // switch
handle_unusual:
if ((tag == 0) || ((tag & 7) == 4)) {
CHK_(ptr);
ctx->SetLastTag(tag);
goto message_done;
}
ptr = UnknownFieldParse(
tag,
_internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(),
ptr, ctx);
CHK_(ptr != nullptr);
} // while
message_done:
_has_bits_.Or(has_bits);
return ptr;
failure:
ptr = nullptr;
goto message_done;
#undef CHK_
}
::PROTOBUF_NAMESPACE_ID::uint8* LidarDstTypeFusionParam::_InternalSerialize(
::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const {
// @@protoc_insertion_point(serialize_to_array_start:apollo.perception.fusion.LidarDstTypeFusionParam)
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
(void) cached_has_bits;
cached_has_bits = _has_bits_[0];
// optional string name = 1 [default = ""];
if (cached_has_bits & 0x00000001u) {
::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField(
this->_internal_name().data(), static_cast<int>(this->_internal_name().length()),
::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE,
"apollo.perception.fusion.LidarDstTypeFusionParam.name");
target = stream->WriteStringMaybeAliased(
1, this->_internal_name(), target);
}
// optional double reliability = 2 [default = 0];
if (cached_has_bits & 0x00000002u) {
target = stream->EnsureSpace(target);
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::WriteDoubleToArray(2, this->_internal_reliability(), target);
}
// optional double reliability_for_unknown = 3 [default = 0];
if (cached_has_bits & 0x00000004u) {
target = stream->EnsureSpace(target);
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::WriteDoubleToArray(3, this->_internal_reliability_for_unknown(), target);
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::InternalSerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream);
}
// @@protoc_insertion_point(serialize_to_array_end:apollo.perception.fusion.LidarDstTypeFusionParam)
return target;
}
size_t LidarDstTypeFusionParam::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:apollo.perception.fusion.LidarDstTypeFusionParam)
size_t total_size = 0;
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
cached_has_bits = _has_bits_[0];
if (cached_has_bits & 0x00000007u) {
// optional string name = 1 [default = ""];
if (cached_has_bits & 0x00000001u) {
total_size += 1 +
::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize(
this->_internal_name());
}
// optional double reliability = 2 [default = 0];
if (cached_has_bits & 0x00000002u) {
total_size += 1 + 8;
}
// optional double reliability_for_unknown = 3 [default = 0];
if (cached_has_bits & 0x00000004u) {
total_size += 1 + 8;
}
}
return MaybeComputeUnknownFieldsSize(total_size, &_cached_size_);
}
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData LidarDstTypeFusionParam::_class_data_ = {
::PROTOBUF_NAMESPACE_ID::Message::CopyWithSizeCheck,
LidarDstTypeFusionParam::MergeImpl
};
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*LidarDstTypeFusionParam::GetClassData() const { return &_class_data_; }
void LidarDstTypeFusionParam::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message* to,
const ::PROTOBUF_NAMESPACE_ID::Message& from) {
static_cast<LidarDstTypeFusionParam *>(to)->MergeFrom(
static_cast<const LidarDstTypeFusionParam &>(from));
}
void LidarDstTypeFusionParam::MergeFrom(const LidarDstTypeFusionParam& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:apollo.perception.fusion.LidarDstTypeFusionParam)
GOOGLE_DCHECK_NE(&from, this);
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
(void) cached_has_bits;
cached_has_bits = from._has_bits_[0];
if (cached_has_bits & 0x00000007u) {
if (cached_has_bits & 0x00000001u) {
_internal_set_name(from._internal_name());
}
if (cached_has_bits & 0x00000002u) {
reliability_ = from.reliability_;
}
if (cached_has_bits & 0x00000004u) {
reliability_for_unknown_ = from.reliability_for_unknown_;
}
_has_bits_[0] |= cached_has_bits;
}
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
}
void LidarDstTypeFusionParam::CopyFrom(const LidarDstTypeFusionParam& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:apollo.perception.fusion.LidarDstTypeFusionParam)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool LidarDstTypeFusionParam::IsInitialized() const {
return true;
}
void LidarDstTypeFusionParam::InternalSwap(LidarDstTypeFusionParam* other) {
using std::swap;
auto* lhs_arena = GetArenaForAllocation();
auto* rhs_arena = other->GetArenaForAllocation();
_internal_metadata_.InternalSwap(&other->_internal_metadata_);
swap(_has_bits_[0], other->_has_bits_[0]);
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap(
&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(),
&name_, lhs_arena,
&other->name_, rhs_arena
);
::PROTOBUF_NAMESPACE_ID::internal::memswap<
PROTOBUF_FIELD_OFFSET(LidarDstTypeFusionParam, reliability_for_unknown_)
+ sizeof(LidarDstTypeFusionParam::reliability_for_unknown_)
- PROTOBUF_FIELD_OFFSET(LidarDstTypeFusionParam, reliability_)>(
reinterpret_cast<char*>(&reliability_),
reinterpret_cast<char*>(&other->reliability_));
}
::PROTOBUF_NAMESPACE_ID::Metadata LidarDstTypeFusionParam::GetMetadata() const {
return ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(
&descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_getter, &descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_once,
file_level_metadata_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto[1]);
}
// ===================================================================
class DstTypeFusionConfig::_Internal {
public:
};
DstTypeFusionConfig::DstTypeFusionConfig(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned)
: ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned),
camera_params_(arena),
lidar_params_(arena) {
SharedCtor();
if (!is_message_owned) {
RegisterArenaDtor(arena);
}
// @@protoc_insertion_point(arena_constructor:apollo.perception.fusion.DstTypeFusionConfig)
}
DstTypeFusionConfig::DstTypeFusionConfig(const DstTypeFusionConfig& from)
: ::PROTOBUF_NAMESPACE_ID::Message(),
camera_params_(from.camera_params_),
lidar_params_(from.lidar_params_) {
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
// @@protoc_insertion_point(copy_constructor:apollo.perception.fusion.DstTypeFusionConfig)
}
void DstTypeFusionConfig::SharedCtor() {
}
DstTypeFusionConfig::~DstTypeFusionConfig() {
// @@protoc_insertion_point(destructor:apollo.perception.fusion.DstTypeFusionConfig)
if (GetArenaForAllocation() != nullptr) return;
SharedDtor();
_internal_metadata_.Delete<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
}
inline void DstTypeFusionConfig::SharedDtor() {
GOOGLE_DCHECK(GetArenaForAllocation() == nullptr);
}
void DstTypeFusionConfig::ArenaDtor(void* object) {
DstTypeFusionConfig* _this = reinterpret_cast< DstTypeFusionConfig* >(object);
(void)_this;
}
void DstTypeFusionConfig::RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena*) {
}
void DstTypeFusionConfig::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
void DstTypeFusionConfig::Clear() {
// @@protoc_insertion_point(message_clear_start:apollo.perception.fusion.DstTypeFusionConfig)
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
camera_params_.Clear();
lidar_params_.Clear();
_internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
}
const char* DstTypeFusionConfig::_InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) {
#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure
while (!ctx->Done(&ptr)) {
::PROTOBUF_NAMESPACE_ID::uint32 tag;
ptr = ::PROTOBUF_NAMESPACE_ID::internal::ReadTag(ptr, &tag);
switch (tag >> 3) {
// repeated .apollo.perception.fusion.CameraDstTypeFusionParam camera_params = 1;
case 1:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 10)) {
ptr -= 1;
do {
ptr += 1;
ptr = ctx->ParseMessage(_internal_add_camera_params(), ptr);
CHK_(ptr);
if (!ctx->DataAvailable(ptr)) break;
} while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr));
} else
goto handle_unusual;
continue;
// repeated .apollo.perception.fusion.LidarDstTypeFusionParam lidar_params = 2;
case 2:
if (PROTOBUF_PREDICT_TRUE(static_cast<::PROTOBUF_NAMESPACE_ID::uint8>(tag) == 18)) {
ptr -= 1;
do {
ptr += 1;
ptr = ctx->ParseMessage(_internal_add_lidar_params(), ptr);
CHK_(ptr);
if (!ctx->DataAvailable(ptr)) break;
} while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<18>(ptr));
} else
goto handle_unusual;
continue;
default:
goto handle_unusual;
} // switch
handle_unusual:
if ((tag == 0) || ((tag & 7) == 4)) {
CHK_(ptr);
ctx->SetLastTag(tag);
goto message_done;
}
ptr = UnknownFieldParse(
tag,
_internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(),
ptr, ctx);
CHK_(ptr != nullptr);
} // while
message_done:
return ptr;
failure:
ptr = nullptr;
goto message_done;
#undef CHK_
}
::PROTOBUF_NAMESPACE_ID::uint8* DstTypeFusionConfig::_InternalSerialize(
::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const {
// @@protoc_insertion_point(serialize_to_array_start:apollo.perception.fusion.DstTypeFusionConfig)
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// repeated .apollo.perception.fusion.CameraDstTypeFusionParam camera_params = 1;
for (unsigned int i = 0,
n = static_cast<unsigned int>(this->_internal_camera_params_size()); i < n; i++) {
target = stream->EnsureSpace(target);
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::
InternalWriteMessage(1, this->_internal_camera_params(i), target, stream);
}
// repeated .apollo.perception.fusion.LidarDstTypeFusionParam lidar_params = 2;
for (unsigned int i = 0,
n = static_cast<unsigned int>(this->_internal_lidar_params_size()); i < n; i++) {
target = stream->EnsureSpace(target);
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::
InternalWriteMessage(2, this->_internal_lidar_params(i), target, stream);
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::InternalSerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream);
}
// @@protoc_insertion_point(serialize_to_array_end:apollo.perception.fusion.DstTypeFusionConfig)
return target;
}
size_t DstTypeFusionConfig::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:apollo.perception.fusion.DstTypeFusionConfig)
size_t total_size = 0;
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// repeated .apollo.perception.fusion.CameraDstTypeFusionParam camera_params = 1;
total_size += 1UL * this->_internal_camera_params_size();
for (const auto& msg : this->camera_params_) {
total_size +=
::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg);
}
// repeated .apollo.perception.fusion.LidarDstTypeFusionParam lidar_params = 2;
total_size += 1UL * this->_internal_lidar_params_size();
for (const auto& msg : this->lidar_params_) {
total_size +=
::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg);
}
return MaybeComputeUnknownFieldsSize(total_size, &_cached_size_);
}
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData DstTypeFusionConfig::_class_data_ = {
::PROTOBUF_NAMESPACE_ID::Message::CopyWithSizeCheck,
DstTypeFusionConfig::MergeImpl
};
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*DstTypeFusionConfig::GetClassData() const { return &_class_data_; }
void DstTypeFusionConfig::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message* to,
const ::PROTOBUF_NAMESPACE_ID::Message& from) {
static_cast<DstTypeFusionConfig *>(to)->MergeFrom(
static_cast<const DstTypeFusionConfig &>(from));
}
void DstTypeFusionConfig::MergeFrom(const DstTypeFusionConfig& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:apollo.perception.fusion.DstTypeFusionConfig)
GOOGLE_DCHECK_NE(&from, this);
::PROTOBUF_NAMESPACE_ID::uint32 cached_has_bits = 0;
(void) cached_has_bits;
camera_params_.MergeFrom(from.camera_params_);
lidar_params_.MergeFrom(from.lidar_params_);
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
}
void DstTypeFusionConfig::CopyFrom(const DstTypeFusionConfig& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:apollo.perception.fusion.DstTypeFusionConfig)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool DstTypeFusionConfig::IsInitialized() const {
return true;
}
void DstTypeFusionConfig::InternalSwap(DstTypeFusionConfig* other) {
using std::swap;
_internal_metadata_.InternalSwap(&other->_internal_metadata_);
camera_params_.InternalSwap(&other->camera_params_);
lidar_params_.InternalSwap(&other->lidar_params_);
}
::PROTOBUF_NAMESPACE_ID::Metadata DstTypeFusionConfig::GetMetadata() const {
return ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(
&descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_getter, &descriptor_table_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto_once,
file_level_metadata_modules_2fperception_2fproto_2fdst_5ftype_5ffusion_5fconfig_2eproto[2]);
}
// @@protoc_insertion_point(namespace_scope)
} // namespace fusion
} // namespace perception
} // namespace apollo
PROTOBUF_NAMESPACE_OPEN
template<> PROTOBUF_NOINLINE ::apollo::perception::fusion::CameraDstTypeFusionParam* Arena::CreateMaybeMessage< ::apollo::perception::fusion::CameraDstTypeFusionParam >(Arena* arena) {
return Arena::CreateMessageInternal< ::apollo::perception::fusion::CameraDstTypeFusionParam >(arena);
}
template<> PROTOBUF_NOINLINE ::apollo::perception::fusion::LidarDstTypeFusionParam* Arena::CreateMaybeMessage< ::apollo::perception::fusion::LidarDstTypeFusionParam >(Arena* arena) {
return Arena::CreateMessageInternal< ::apollo::perception::fusion::LidarDstTypeFusionParam >(arena);
}
template<> PROTOBUF_NOINLINE ::apollo::perception::fusion::DstTypeFusionConfig* Arena::CreateMaybeMessage< ::apollo::perception::fusion::DstTypeFusionConfig >(Arena* arena) {
return Arena::CreateMessageInternal< ::apollo::perception::fusion::DstTypeFusionConfig >(arena);
}
PROTOBUF_NAMESPACE_CLOSE
// @@protoc_insertion_point(global_scope)
#include <google/protobuf/port_undef.inc>
| [
"530872883@qq.com"
] | 530872883@qq.com |
70a1919686d87c918d0ce211ad2d41a851d9f741 | 25d591b091bcf205456b31a08cfd3157a10c8341 | /ChainOfResponsibility/net.h | b7021dfbdbe8cbbc521710e59bb102c37e01f713 | [] | no_license | IvanAram/TC2004 | 7a0aeab8409915358c87c7fddb58d6867345088e | 84a50b83d9b4f99d33a70e43519721ab0a299882 | refs/heads/master | 2020-05-21T21:00:39.791029 | 2016-11-22T19:46:40 | 2016-11-22T19:46:40 | 65,293,179 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 625 | h | #pragma once
#include "DNS.h"
#include <iostream>
class net : public DNS{
public:
net(std::string _server = ".net") : DNS(_server){ fillTable(); }
std::string searchName(std::string name);
void fillTable();
};
std::string net::searchName(std::string name){
if(IPtable.count(name) > 0) return IPtable[name];
else{
std::cout << name << " was not found in \".net\" server." << std::endl;
return "";
}
}
void net::fillTable(){
IPtable["www.a.net"] = "130.2.0.1";
IPtable["www.b.net"] = "56.88.7.89";
IPtable["www.c.net"] = "19.100.5.9";
IPtable["www.d.net"] = "200.5.50.33";
IPtable["www.e.net"] = "15.1.1.0";
} | [
"a01022584@itesm.mx"
] | a01022584@itesm.mx |
a0f68bc3955a6a828be0bde83edaab4a0d225229 | 99cf7ed46654fabf55b4bd0a4e16eb512177e5c3 | /Public_Library/Tools/Auto_Diff/DIFF_LAYOUT.h | f3cd28600f56aae9b0d44c8cf5f75272d0bcade9 | [] | no_license | byrantwithyou/PhysBAM | 095d0483673f8ca7cee04390e98b7f5fa8d230ca | 31d8fdc35dbc5ed90d6bd4fd266eb76e7611c4a5 | refs/heads/master | 2022-03-29T06:20:32.128928 | 2020-01-21T15:15:26 | 2020-01-21T15:15:26 | 187,265,883 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 571 | h | //#####################################################################
// Copyright 2015.
// This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt.
//#####################################################################
// Class DIFF_LAYOUT
//#####################################################################
#ifndef __DIFF_LAYOUT__
#define __DIFF_LAYOUT__
#include <type_traits>
using std::enable_if;
namespace PhysBAM{
template<class T,int... dims>
struct DIFF_LAYOUT
{
};
}
#endif
| [
"snubdodecahedron@gmail.com"
] | snubdodecahedron@gmail.com |
f8b370d0d63cab1d05109ac37e243cee3918d635 | 3c7591ca4ddfb0fa5163beb7570e45ff438b53c7 | /share/test/src/common/AMTest.cc | c489d898120301ec6054df5d9aa09f31047611aa | [
"Apache-2.0"
] | permissive | fairchild/one-mirror | 9d5ad0515455cb73ccfa8f18b9c64fd9fb8c5ef5 | 844f4dc7782177c58312e48974e4176eb87363a4 | refs/heads/master | 2016-09-05T08:55:19.388345 | 2010-05-20T23:43:50 | 2010-08-22T20:39:43 | 533,394 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,033 | cc | #include "ActionManager.h"
#include <iostream>
#include <cerrno>
class AMTest : public ActionListener
{
public:
AMTest():am()
{
am.addListener(this);
};
~AMTest(){};
ActionManager am;
private:
void do_action(const string &action, void * arg);
};
void AMTest::do_action(const string &action, void * arg)
{
int * i = static_cast<int *>(arg);
cout<<"Event received: "<<action<<" Argument : "<<*i<<"\n";
}
extern "C" void * startThread(void *arg)
{
AMTest * MT;
int i = 8;
string event("ACTION_TEST");
MT = static_cast<AMTest *> (arg);
MT->am.trigger(event,&i);
sleep(4);
i = 10;
MT->am.trigger(event,&i);
i = 23;
MT->am.trigger(ActionListener::ACTION_FINALIZE,&i);
return 0;
}
/*
int main()
{
pthread_t id;
int i = 3;
AMTest * MT = new AMTest();
pthread_create(&id, 0, startThread, MT);
MT->am.loop(1,&i);
delete MT;
pthread_join(id,0);
return 0;
}
*/
| [
"jfontan@fdi.ucm.es"
] | jfontan@fdi.ucm.es |
9df272e9927433fad1985670e79ab88b274f02e6 | 1a2244c5b9879492227fec5ac86bf0b8ed8d19b1 | /CS470.skel/IP/header/IPdefs.h | c218be6b0448c090574897053fc630dcaa8e1ce6 | [] | no_license | mhasan004/Image-Processing-Program | 77b58cdb0a0abd5eac327a4759eb3b68a460ca87 | e5b7ee6fc26447306de03fef21024b04e007a621 | refs/heads/master | 2022-03-17T23:53:19.718885 | 2019-12-12T06:00:36 | 2019-12-12T06:00:36 | 211,395,282 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,089 | h | // ======================================================================
// IMPROC: Image Processing Software Package
// Copyright (C) 2016 by George Wolberg
//
// IPdefs.h - Header for IP symbolic constants (#defines) and globals.
//
// Written by: George Wolberg, 2016
// ======================================================================
//! \file IPdefs.h
//! \brief Header for IP symbolic constants (#defines) and globals.
//! \author George Wolberg, 2016
#ifndef IPDEFS_H
#define IPDEFS_H
// ----------------------------------------------------------------------
// standard include files
//
#include <cstdio>
#include <iostream>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <cstdarg>
#include <vector>
#include <map>
#include <QtGlobal>
namespace IP {
// ----------------------------------------------------------------------
// datatype typedefs
//
// comment out uchar typedef because it is already defined in Qt library
// typedef unsigned char uchar;
// ----------------------------------------------------------------------
// math definitions
//
#define PI 3.1415926535897931160E0
#define PI2 6.2831853071795862320E0
#define PI_2 1.5707963267948965580E0
#define DEGtoRAD 0.0174532927777777777E0
#define RADtoDEG 57.295778666661658617E0
#define NEG_INF -9999999
// ----------------------------------------------------------------------
// miscellaneous definitions
//
#define LSB 0x0001
#define MXCH 8192
#define MXCHANNEL 16
#define MXGRAY 256
#define MXHALFTONE 10
#define MXRES 8192
#define MXSTRLEN 1024
#define MXWINDOWS 16
// ----------------------------------------------------------------------
// channel sizes
//
#define UCHAR_SZ sizeof(uchar)
#define SHORT_SZ sizeof(short)
#define INT_SZ sizeof(int)
#define LONG_SZ sizeof(long)
#define FLOAT_SZ sizeof(float)
#define DOUBLE_SZ sizeof(double)
// ----------------------------------------------------------------------
// pixel sizes
//
#define BW_PXLSZ UCHAR_SZ
#define BWA_PXLSZ (2*UCHAR_SZ)
#define RGB_PXLSZ (3*UCHAR_SZ)
#define RGBA_PXLSZ (4*UCHAR_SZ)
#define HSV_PXLSZ (3*SHORT_SZ)
#define YIQ_PXLSZ (3*SHORT_SZ)
// ----------------------------------------------------------------------
// useful macros
// Note: ROUND rounds arg to nearest integer
// Note: FLOOR rounds arg to nearest integer towards -infinity
// Note: CEILING rounds arg to nearest integer towards +infinity
//
#define ABS(A) ((A) >= 0 ? (A) : -(A))
#define SGN(A) ((A) > 0 ? 1 : ((A) < 0 ? -1 : 0 ))
#define ROUND(A) ((A) >= 0 ? (int)((A)+.5) : -(int)(.5-(A)))
#define FLOOR(A) ((A)==(int)(A) ? (int)(A) : (A)>0 ? (int)(A):(int)(A)-1)
#define CEILING(A) ((A)==(int)(A) ? (int)(A) : (A)>0 ? (int)(A)+1:(int)(A))
#define CLIP(A,L,H) ((A)<=(L) ? (L) : (A)<=(H) ? (A) : (H))
#define MAX(A,B) ((A) > (B) ? (A) : (B))
#define MIN(A,B) ((A) < (B) ? (A) : (B))
#define SWAP(A,B) { double temp=(A); (A) = (B); (B) = temp; }
#define SWAP_INT(A,B) { (A) ^= (B); (B) ^= (A); (A) ^= (B); }
#define NEWIMAGE IP_allocImage(0, 0, NULL_TYPE)
#define IP_copyImageHeader(I1, I2) IP_copyHeader(I1, 1, I2)
#define IP_copyImageHeaderOnly(I1, I2) IP_copyHeader(I1, 0, I2)
#define IP_copyImageHeader2(I1, I2, I3) IP_copyHeader2(I1, I2, 1, I3)
#define IP_copyImageHeaderOnly2(I1, I2, I3) IP_copyHeader2(I1, I2, 0, I3)
// ----------------------------------------------------------------------
// type casting macro:
// cast total objects in p1 (of type t1) into p2 (with type t2)
// with strides s1 and s2, respectively
//
#define MEM_CAST(p1, t1, s1, p2, t2, s2, total)\
{\
t1 *src;\
t2 *dst;\
int i;\
src = (t1 *) p1;\
dst = (t2 *) p2;\
for(i=0; i<total; i++,src+=s1,dst+=s2) *dst = (t2) *src;\
}
// ----------------------------------------------------------------------
// image and channel types
// IMPORTANT: CHTYPE_IMAGE[] and CHTYPE_CH[] are dependent on numbering
// used in image and channel types, respectively.
//
enum image_types {
NULL_IMAGE,
BW_IMAGE,
BWA_IMAGE,
RGB_IMAGE,
RGBA_IMAGE,
HSV_IMAGE,
YIQ_IMAGE,
LUT_IMAGE,
MAT_IMAGE,
FFT_IMAGE,
GL_IMAGE
};
enum channel_types {
UCHAR_TYPE,
SHORT_TYPE,
INT_TYPE,
LONG_TYPE,
FLOAT_TYPE,
DOUBLE_TYPE
};
// ----------------------------------------------------------------------
// filter kernels for image resizing
//
enum filter_kernels {
BOX,
TRIANGLE,
CSPLINE,
CUBIC_CONV,
LANCZOS,
HANN
};
// ----------------------------------------------------------------------
// dither options for error diffusion
//
enum dither_options {
FLOYD_STEINBERG,
OSTROMOUKHOV,
JARVIS_JUDICE_NINKE,
FAN,
STUCKI,
BURKES,
SIERRA,
STEVENSON_ARCE,
USER_SPECIFIED
};
// ----------------------------------------------------------------------
// correlation options
//
enum correlation_options {
CROSS_CORR,
SSD,
CORR_COEFF,
PHASE_CORR
};
// ----------------------------------------------------------------------
// pad options
//
enum pad_options {
CONSTANT,
REPLICATE,
REFLECT,
EXTRAPOLATE,
WRAPAROUND
};
} // namespace IP
#endif // IPDEFS_H
| [
"mhasan0047@gmail.com"
] | mhasan0047@gmail.com |
874783aebfc751d38268527530f21d5cf4561aff | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/new_hunk_159.cpp | d3c18664c3c1d6daa30899c41ed0efd1c8cb1788 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,750 | cpp | return (struct oid_array *) item->util;
}
struct collect_changed_submodules_cb_data {
struct string_list *changed;
const struct object_id *commit_oid;
};
/*
* this would normally be two functions: default_name_from_path() and
* path_from_default_name(). Since the default name is the same as
* the submodule path we can get away with just one function which only
* checks whether there is a submodule in the working directory at that
* location.
*/
static const char *default_name_or_path(const char *path_or_name)
{
int error_code;
if (!is_submodule_populated_gently(path_or_name, &error_code))
return NULL;
return path_or_name;
}
static void collect_changed_submodules_cb(struct diff_queue_struct *q,
struct diff_options *options,
void *data)
{
struct collect_changed_submodules_cb_data *me = data;
struct string_list *changed = me->changed;
const struct object_id *commit_oid = me->commit_oid;
int i;
for (i = 0; i < q->nr; i++) {
struct diff_filepair *p = q->queue[i];
struct oid_array *commits;
const struct submodule *submodule;
const char *name;
if (!S_ISGITLINK(p->two->mode))
continue;
submodule = submodule_from_path(commit_oid, p->two->path);
if (submodule)
name = submodule->name;
else {
name = default_name_or_path(p->two->path);
/* make sure name does not collide with existing one */
submodule = submodule_from_name(commit_oid, name);
if (submodule) {
warning("Submodule in commit %s at path: "
"'%s' collides with a submodule named "
"the same. Skipping it.",
oid_to_hex(commit_oid), name);
name = NULL;
}
}
if (!name)
continue;
commits = submodule_commits(changed, name);
oid_array_append(commits, &p->two->oid);
}
}
| [
"993273596@qq.com"
] | 993273596@qq.com |
ae9e2a22750a4ae08a6e3f288cb377b6b45db76b | a39aadfe28c6b857c214d2e40a89c0d264154238 | /src/plugins/azoth/azoth.h | b52ec730dfc457dd71066b2d002c53f4dd1f1b3f | [
"BSL-1.0"
] | permissive | yzhui/leechcraft | 5b88a16ef8a0d30311590cba01b303d631b75b2e | 67bcf06415958e453d8f332208506555f5d4c590 | refs/heads/master | 2020-04-07T13:20:04.612404 | 2018-11-18T23:42:12 | 2018-11-18T23:42:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,020 | h | /**********************************************************************
* LeechCraft - modular cross-platform feature rich internet client.
* Copyright (C) 2006-2014 Georg Rudoy
*
* Boost Software License - Version 1.0 - August 17th, 2003
*
* Permission is hereby granted, free of charge, to any person or organization
* obtaining a copy of the software and accompanying documentation covered by
* this license (the "Software") to use, reproduce, display, distribute,
* execute, and transmit the Software, and to prepare derivative works of the
* Software, and to permit third-parties to whom the Software is furnished to
* do so, all subject to the following:
*
* The copyright notices in the Software and this entire statement, including
* the above license grant, this restriction and the following disclaimer,
* must be included in all copies of the Software, in whole or in part, and
* all derivative works of the Software, unless such copies or derivative
* works are solely in the form of machine-executable object code generated by
* a source language processor.
*
* 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
* SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
* FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
**********************************************************************/
#pragma once
#include <QObject>
#include <QModelIndex>
#include <interfaces/iinfo.h>
#include <interfaces/ipluginready.h>
#include <interfaces/ihavetabs.h>
#include <interfaces/ihaverecoverabletabs.h>
#include <interfaces/ihavesettings.h>
#include <interfaces/ijobholder.h>
#include <interfaces/iactionsexporter.h>
#include <interfaces/ientityhandler.h>
#include <interfaces/ihaveshortcuts.h>
#include <interfaces/an/ianemitter.h>
namespace LeechCraft
{
namespace Azoth
{
class ServiceDiscoveryWidget;
class MainWidget;
class ConsoleWidget;
class MicroblogsTab;
class ServerHistoryWidget;
class Plugin : public QObject
, public IInfo
, public IPluginReady
, public IHaveTabs
, public IHaveRecoverableTabs
, public IHaveSettings
, public IJobHolder
, public IActionsExporter
, public IEntityHandler
, public IHaveShortcuts
, public IANEmitter
{
Q_OBJECT
Q_INTERFACES (IInfo
IPluginReady
IHaveTabs
IHaveRecoverableTabs
IHaveSettings
IJobHolder
IActionsExporter
IEntityHandler
IHaveShortcuts
IANEmitter)
LC_PLUGIN_METADATA ("org.LeechCraft.Azoth")
MainWidget *MW_;
Util::XmlSettingsDialog_ptr XmlSettingsDialog_;
TabClasses_t TabClasses_;
TabClassInfo ServerHistoryTC_;
public:
void Init (ICoreProxy_ptr);
void SecondInit ();
void Release ();
QByteArray GetUniqueID () const;
QString GetName () const;
QString GetInfo () const;
QIcon GetIcon () const;
QStringList Provides () const;
QSet<QByteArray> GetExpectedPluginClasses () const;
void AddPlugin (QObject*);
Util::XmlSettingsDialog_ptr GetSettingsDialog () const;
QAbstractItemModel* GetRepresentation () const;
QList<QAction*> GetActions (ActionsEmbedPlace) const;
QMap<QString, QList<QAction*>> GetMenuActions () const;
EntityTestHandleResult CouldHandle (const Entity&) const;
void Handle (Entity);
TabClasses_t GetTabClasses () const;
void TabOpenRequested (const QByteArray&);
void RecoverTabs (const QList<TabRecoverInfo>&);
bool HasSimilarTab (const QByteArray&, const QList<QByteArray>&) const;
void SetShortcut (const QString&, const QKeySequences_t&);
QMap<QString, ActionInfo> GetActionInfo() const;
QList<ANFieldData> GetANFields () const;
private :
void InitShortcuts ();
void InitAccActsMgr ();
void InitSettings ();
void InitMW ();
void InitSignals ();
void InitTabClasses ();
public slots:
void handleSDWidget (ServiceDiscoveryWidget*);
void handleMicroblogsTab (MicroblogsTab*);
void handleServerHistoryTab (ServerHistoryWidget*);
void handleTasksTreeSelectionCurrentRowChanged (const QModelIndex&, const QModelIndex&);
private slots:
void handleMWLocation (Qt::DockWidgetArea);
void handleMWFloating (bool);
void handleMoreThisStuff (const QString&);
void handleConsoleWidget (ConsoleWidget*);
signals:
void gotEntity (const LeechCraft::Entity&);
void delegateEntity (const LeechCraft::Entity&, int*, QObject**);
void addNewTab (const QString&, QWidget*);
void removeTab (QWidget*);
void changeTabName (QWidget*, const QString&);
void changeTabIcon (QWidget*, const QIcon&);
void changeTooltip (QWidget*, QWidget*);
void statusBarChanged (QWidget*, const QString&);
void raiseTab (QWidget*);
void gotActions (QList<QAction*>, LeechCraft::ActionsEmbedPlace);
};
}
}
| [
"0xd34df00d@gmail.com"
] | 0xd34df00d@gmail.com |
9b98f4233cd8142966b86166f531aa2e5787e56c | 1872f57c9d68db7e2b38c47580f98a3783e623f3 | /PriceSource120527/AlignmentUngapped.h | 4cb53060a9a7fea9f226ad2a95c326864e98de31 | [
"MIT"
] | permissive | Lijiakuan/sequencing | 60e6d1ba7eb93cd97df36935555c0930dacad425 | 3ff23f6478c99ddc21da7a1fba3cb7642ae9842c | refs/heads/master | 2021-06-12T21:37:26.270625 | 2017-02-28T18:31:43 | 2017-02-28T18:31:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,662 | h | /*
PRICE was written by Graham Ruby.
This file is part of PRICE.
PRICE is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PRICE 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 PRICE. If not, see <http://www.gnu.org/licenses/>.
*/
/* an alignment between two ScoredSeqs
Conceptually, this is an immutable class. However, realizing that
its construction is going to generally be a little bit complicated,
I moved the establishment of linkages between nucleotide positions
to a post-constructor method that adds linkages one at a time in a
manner that should be easy to understand for the user and therefore
difficult to make a careless mistake.
In order to prevent clients from inappropriately mutating alignments,
I included a "lock" function that disables all methods that mutate the
abstract state. Those methods will raise an exception if they are
called after the alignment has been locked, and an "isLocked" method
is provided to determine if this is the case before calling the mutator
function.
I am also going to specify that linkages cannot be over-written, i.e.
once a position is linked in either sequence it cannot be re-linked.
This will prevent errors during creation, before "lock" is called.
Calling "lock" will prevent any future addition of linkages. In no
situation can a linkage be removed.
*/
#ifndef ALIGNMENTUNGAPPED_H
#define ALIGNMENTUNGAPPED_H
#include <map>
#include "Alignment.h"
#include "ScoredSeq.h"
#include "ScoredSeqShallow.h"
#include "AlignmentScoreMatrix.h"
using namespace std;
class AlignmentUngapped : public Alignment {
public:
~AlignmentUngapped();
/* The orientation of the two input ScoredSeqs also indicates how
the position integers should be interpreted. It will be assumed
that position integers refer to seqA in the (+) orientation and
to seqB in the orientation specified in the constructor (also
returned by the "orientation" method).
REQUIRES: seqA != seqB
REQUIRES: sense is '+' or '-'
*/
AlignmentUngapped(ScoredSeq * seqA, ScoredSeq* seqB, char orientation, long offset);
AlignmentUngapped* copySeqReplace(ScoredSeq* seqA, ScoredSeq* seqB);
void seqReplace(ScoredSeq* seqA, ScoredSeq* seqB);
AlignmentUngapped* copyRcSeqA(ScoredSeq* newSeqA);
ScoredSeq * seqA();
ScoredSeq* seqB();
char orientation();
bool isNull();
bool isLinked(long pos, ScoredSeq * seq);
bool isGapped(long pos, ScoredSeq * seq);
long getLinkage(long pos, ScoredSeq * seq);
long gapPairedAfter(long pos, ScoredSeq * seq);
long score(AlignmentScoreMatrix* scoreMatrix, bool penalizeTerminalGaps);
long scoreOverhangA(AlignmentScoreMatrix* scoreMatrix);
bool isLocked();
ScoredSeq* combine();
ScoredSeq* combine(int denominator);
bool hasConstantOffset();
long getConstantOffset();
void OK(); // checkRep
// class-specific
// REQUIRES: for all input alignments, hasConstantOffset==true
// REQUIRES: all alignments have the same seqA as this
ScoredSeq* multiCombine(long numAls, Alignment** alArray);
private:
ScoredSeq* combine(ScoreCalculator* calc);
ScoredSeq* _seqA;
ScoredSeq* _seqB;
char _orientation;
long _offset;
long _startA;
long _startB;
long _endA;
long _endB;
};
#endif
| [
"github@jakewendt.com"
] | github@jakewendt.com |
8e43f8f3b4958d7ec671cb94ada71f52528d58a8 | 9af705b9e0e51a1f4a53e8a3b6a45ccd08b12341 | /esp8266webservertest/esp8266webservertest.ino | afea27da0976c610b82a5ee93cee4589e1d7dc14 | [] | no_license | biteker/harezmi | 381f528328931ab754fef8be259d466b3c95d819 | 8be6086a91478475c793c4ad45139773c59e4184 | refs/heads/master | 2020-03-16T23:21:46.067654 | 2018-06-05T04:47:37 | 2018-06-05T04:47:37 | 133,074,406 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,018 | ino | /*
Arduino Webserver using ESP8266
Displays temperature in a webpage
Arduino Mega has three Serial communication ports,this code works well with
Arduino Mega.For UNO users,use Softserial library to connect ESP8266 with
Arduino UNO
If you're unsure about your Arduino model or its pin cofigurations,please check
the documentation at http://www.arduino.cc
modified August 2016
By Joyson Chinta and Gladson Kujur
*/
#define DEBUG true
void setup()
{
Serial.begin(115200); ///////For Serial monitor
Serial3.begin(115200); ///////ESP Baud rate
sendData("AT+RST\r\n",2000,DEBUG); // reset module
sendData("AT+CWMODE=2\r\n",1000,DEBUG); // configure as access point
sendData("AT+CIFSR\r\n",1000,DEBUG); // get ip address
sendData("AT+CIPMUX=1\r\n",1000,DEBUG); // configure for multiple connections
sendData("AT+CIPSERVER=1,80\r\n",1000,DEBUG); // turn on server on port 80
}
int connectionId;
void loop()
{
if(Serial3.available())
{
/////////////////////Recieving from web browser to toggle led
if(Serial3.find("+IPD,"))
{
delay(300);
connectionId = Serial3.read()-48;
if(Serial3.find("pin="))
{
Serial.println("recieving data from web browser");
int pinNumber = (Serial3.read()-48)*10;
pinNumber += (Serial3.read()-48);
digitalWrite(pinNumber, !digitalRead(pinNumber));
}
/////////////////////Sending data to browser
else
{
String webpage = "<h1>Hello World</h1>";
espsend(webpage);
}
String closeCommand = "AT+CIPCLOSE="; ////////////////close the socket connection////esp command
closeCommand+=connectionId; // append connection id
closeCommand+="\r\n";
sendData(closeCommand,3000,DEBUG);
}
}
}
//////////////////////////////sends data from ESP to webpage///////////////////////////
void espsend(String d)
{
String cipSend = " AT+CIPSEND=";
cipSend += connectionId;
cipSend += ",";
cipSend +=d.length();
cipSend +="\r\n";
sendData(cipSend,1000,DEBUG);
sendData(d,1000,DEBUG);
}
//////////////gets the data from esp and displays in serial monitor///////////////////////
String sendData(String command, const int timeout, boolean debug)
{
String response = "";
Serial3.print(command);
long int time = millis();
while( (time+timeout) > millis())
{
while(Serial3.available())
{
char c = Serial3.read(); // read the next character.
response+=c;
}
}
if(debug)
{
Serial.print(response); //displays the esp response messages in arduino Serial monitor
}
return response;
}
| [
"biteker@gmail.com"
] | biteker@gmail.com |
040264716fae8943679dde84465ece08173b2a1a | a7b6d524dd1a2836233e2ed3db433de7497bc95d | /day1/split/split.cpp | eadff79a3d90585fcb87714a6932e0e92d740b75 | [] | no_license | horenmar/prusa-workshop-samples | c13daf97fc31c3f183bae5261c4e6327b27b5fe1 | 0b44197424529695ba6146a85c5b44c0d6a7d3d7 | refs/heads/master | 2022-11-20T20:20:09.834742 | 2020-07-21T17:12:14 | 2020-07-21T21:12:28 | 281,414,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22 | cpp | #include "split.hpp"
| [
"martin.horenovsky@gmail.com"
] | martin.horenovsky@gmail.com |
cffa08134ac08da0c8639c5271db2ff03a93c0ea | 34534e192639527d4dd45f5c9ad9273def8e674f | /3DKeypointsGeneration/main.cpp | 3916055919b3cd48d1d0a79d5ac949b60d4f068f | [
"MIT"
] | permissive | linbaowei/3DkeypointsGeneration | 8a4e6e1fab91ab1e96616e53eaaf9e38815aba8f | 894330e2516866423dbe042246a080097142144b | refs/heads/master | 2021-01-01T05:50:29.851365 | 2013-09-20T02:01:09 | 2013-09-20T02:01:09 | 12,241,420 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,925 | cpp | /*
* Copyright (c) 2012 <Baowei Lin> <lin-bao-wei@hotmail.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.
*/
#include <iostream>
#include "boost/program_options.hpp"
#include "options.h"
#include "featureoperation.h"
int main(int argc, char **argv)
{
options Option = parseOptions(argc, argv);
featureOperation featureoperation(60.0,
Option.plyFileof3DpointCloudFile,
Option.output_folder,
Option.trainingImagesFolder,
Option.traingImagesPoseFolder);
featureoperation.generate3DpointswithFeatures();
return 1;
}
/**
* Parse command line options.
* return options struct
*/
options parseOptions(int argc, char** argv)
{
namespace po = boost::program_options;
po::options_description desc("Options");
desc.add_options()
("help", "This help message.")
("trainingImagesFolder", po::value<string>(), "trainingImagesFolder")
("traingImagesPoseFolder", po::value<string>(), "traingImagesPoseFolder")
("plyFileof3DpointCloudFile", po::value<string>(), "plyFileof3DpointCloudFile")
("output_folder", po::value<string>(), "output_folder")
("flag", po::value<int>(), "method to assert value to repeated 3D points, defult is 0")
("repeatImagesThreshold", po::value<int>(), "repeatImagesThreshold, defult is 4")
("viewPointNum", po::value<int>(), "viewPointNum, defult is 2000")
("distanceThreshold", po::value<double>(), "distanceThreshold, projection points' distance, defult is 0.7");
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
options Opt;
if (vm.count("help"))
{
cout << desc << endl;
exit(0);
}
Opt.flag = 0;
Opt.repeatImagesThreshold = 4;
Opt.viewPointNum = 2000;
Opt.distanceThreshold = 0.7;
cout << endl;
int flag = 0;
if(vm.count("trainingImagesFolder"))
Opt.trainingImagesFolder = vm["trainingImagesFolder"].as<string>();
else
{
cout << "trainingImagesFolder was not set yet." << endl;
flag++;
}
if(vm.count("traingImagesPoseFolder"))
Opt.traingImagesPoseFolder = vm["traingImagesPoseFolder"].as<string>();
else
{
cout << "traingImagesPoseFolder was not set yet." << endl;
flag++;
}
if (vm.count("plyFileof3DpointCloudFile"))
Opt.plyFileof3DpointCloudFile = vm["plyFileof3DpointCloudFile"].as<string>();
else
{
cout << "plyFileof3DpointCloudFile was not set yet." << endl;
flag++;
}
if (vm.count("output_folder"))
Opt.output_folder = vm["output_folder"].as<string>();
else
{
cout << "output_folder was not set yet." << endl;
flag++;
}
if(flag >0)
{
cout << "\nuseage:\n" << argv[0] << "\n\t--trainingImagesFolder" << "\t\t[YOURINPUT]\n"
<< "\t--traingImagesPoseFolder" << "\t[YOURINPUT]\n"
<< "\t--plyFileof3DpointCloudFile" << "\t[YOURINPUT]\n"
<< "\t--output_folder" << "\t\t\t[YOURINPUT]\n" << endl;
exit(1);
}
if (vm.count("flag"))
Opt.flag = vm["flag"].as<int>();
if (vm.count("repeatImagesThreshold"))
Opt.repeatImagesThreshold = vm["repeatImagesThreshold"].as<int>();
if (vm.count("viewPointNum"))
Opt.viewPointNum = vm["viewPointNum"].as<int>();
if (vm.count("distanceThreshold"))
Opt.distanceThreshold = vm["distanceThreshold"].as<double>();
cout << "trainingImagesFolder " << Opt.trainingImagesFolder << endl;
cout << "traingImagesPoseFolder " << Opt.traingImagesPoseFolder << endl;
cout << "plyFileof3DpointCloudFile " << Opt.plyFileof3DpointCloudFile << endl;
cout << "output_folder " << Opt.output_folder << endl;
cout << "flag " << Opt.flag << endl;
cout << "repeatImagesThreshold " << Opt.repeatImagesThreshold << endl;
cout << "viewPointNum " << Opt.viewPointNum << endl;
cout << "distanceThreshold " << Opt.distanceThreshold << endl;
return Opt;
} | [
"lin-bao-wei@hotmail.com"
] | lin-bao-wei@hotmail.com |
7377b62facfaffdca0d6433a0566a065b281c329 | e6b668c5afc2a333a836bd8dc1dce6e04a5ef328 | /codeforces/B. The Queue.cpp | 0b66f5d9c4059f9fc1c2577fbc21bb3525853ced | [] | no_license | mahim007/Online-Judge | 13b48cfe8fe1e8a723ea8e9e2ad40efec266e7ee | f703fe624035a86d7c6433c9111a3e3ee3e43a77 | refs/heads/master | 2020-03-11T21:02:04.724870 | 2018-04-20T11:28:42 | 2018-04-20T11:28:42 | 130,253,727 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,751 | cpp | ///Bismillahir Rahmanir Rahim
#include<cstdio>
#include<iomanip>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<cctype>
#include<algorithm>
#include<string>
#include<vector>
#include<queue>
#include<map>
#include<set>
#include<sstream>
#include<stack>
#include<list>
#include<iostream>
#include<assert.h>
/**Define file I/O **/
#define f_input freopen("input.txt","r",stdin)
#define f_output freopen("output.txt","w",stdout)
/**Define memory set function**/
#define mem(x,y) memset(x,y,sizeof(x))
#define CLEAR(x) memset(x,0,sizeof(x))
/**Define function and object**/
#define pb push_back
#define Sort(v) sort(v.begin(),v.end())
#define RSort(v) sort(v.rbegin(),v.rend())
#define CSort(v,C) sort(v.begin(),v.end(),C)
#define all(v) (v).begin(),(v).end()
#define sqr(x) ((x)*(x))
#define find_dist(a,b) sqrt(sqr(a.x-b.x)+sqr(a.y-b.y))
/**Define constant value**/
#define ERR 1e-9
#define pi (2*acos(0))
#define PI 3.141592653589793
/**Define input**/
#define scanint(a) scanf("%d",&a)
#define scanLLD(a) scanf("%lld",&a)
#define scanstr(s) scanf("%s",s)
#define scanline(l) scanf(" %[^\n]",l);
/**Define Bitwise operation**/
#define check(n, pos) (n & (1ll<<(pos)))
#define biton(n, pos) (n | (1ll<<(pos)))
#define bitoff(n, pos) (n & ~(1ll<<(pos)))
/**Define color**/
enum {WHITE,GREY,BLACK};
/**Sync off with stdio**/
#define __ cin.sync_with_stdio(false);\
cin.tie();
/**Debug tools**/
#define what_is(x) cerr<<(#x)<<" is "<<x<<endl
using namespace std;
/**Typedef**/
typedef vector<int> vint;
typedef vector< vint > vint2D;
typedef vector<string> vstr;
typedef vector<char>vchar;
typedef vector< vchar >vchar2D;
typedef queue<int> Qi;
typedef queue< Qi > Qii;
typedef map<int,int> Mii;
typedef map<string,int> Msi;
typedef map<int,string> Mis;
typedef stack<int> stk;
typedef pair<int,int> pp;
typedef pair<int, pp > ppp;
typedef long long int ll;
ll inf=1e18;
/**Template & structure**/
template<class T>T gcd(T a,T b){return b == 0 ? a : gcd(b, a % b);}
template<typename T>T lcm(T a, T b) {return a / gcd(a,b) * b;}
template<typename T>T last_bit(T n) { return n & 1; }
template<class T>T big_mod(T n,T p,T m){if(p==0)return (T)1;T x=big_mod(n,p/2,m);x=(x*x)%m;if(p&1)x=(x*n)%m;return x;}
template<class T>T modInv(T a, T m){T x, y; extgcd(a, m, x, y); x %= m; while (x < 0){x += m;} return x;}
template<class T> T extgcd(T a,T b,T& x,T& y){if(b==0){x=1;y=0;return a;}else{int g=extgcd(b,a%b,y,x);y-=a/b*x;return g;}}
template<class T>T multiplication(T n,T p,T m){if(p==0)return (T)0;T x=multiplication(n,p/2,m);x=(x+x)%m;if(p&1)x=(x+n)%m;return x;}
template<class T>T my_pow(T n,T p){if(p==0)return 1;T x=my_pow(n,p/2);x=(x*x);if(p&1)x=(x*n);return x;} ///n to the power p
template <class T> double getdist(T a, T b){return sqrt((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y));}/// distance between a & b
template <class T> T extract(string s, T ret) {stringstream ss(s); ss >> ret; return ret;}/// extract words or numbers from a line
template <class T> string tostring(T n) {stringstream ss; ss << n; return ss.str();}/// convert a number to string
template<class T> T Mod(T n,T m) {return (n%m+m)%m;} ///For Positive Negative No.
template<class T> T MIN3(T a,T b,T c) {return min(a,min(b,c));} /// minimum of 3 number
template<class T> T MAX3(T a,T b,T c) {return max(a,max(b,c));} ///maximum of 3 number
template <class T> void print_vector(T &v){int sz=v.size();if(sz)cout<<v[0];for(int i = 1; i < sz; i++)cout << ' '<<v[i];cout<<"\n";}/// prints all elements in a vector
bool isVowel(char ch){ ch=toupper(ch); if(ch=='A'||ch=='U'||ch=='I'||ch=='O'||ch=='E') return true; return false;}
bool isConsonant(char ch){if (isalpha(ch) && !isVowel(ch)) return true; return false;}
template <class R> R Josephus(R n,R k){R ans=1;for(R i=2;i<=n;i++)ans=(ans+k-1)%i+1;return ans;}
template <class R> R toitent_Phi2(R a){R result = a;for(R i=2;i*i<=a;i++){if(a%i==0) result=result-result/i;while(a%i==0) a=a/i;}if(a>1) result=result-result/a;return result;}
template <typename T> T Angle(T x1,T y1,T x2, T y2){ return atan( double(y1-y2) / double(x1-x2));}
//namespace debug{
// int sum(){return 0;}
// template<typename T,typename... Args> T sum(T a,Args... args) {return a+sum(args...);}
// void print(){cout<<"\n";return;}template<typename T, typename... Args>void print(T a,Args... args){cout<<a<<" ";print(args...);}
//}
/**Direction**/
///int dx[8] = {0, 1, 1, 1, 0, -1, -1, -1};int dy[8] = {1, 1, 0, -1, -1, -1, 0, 1}; ///8 Direction
///int dx[4] = {1, 0, -1, 0};int dy[4] = {0, 1, 0, -1}; ///4 Direction
///int dx[]={2,1,-1,-2,-2,-1,1,2};int dy[]={1,2,2,1,-1,-2,-2,-1};///Knight Direction
///int dx[]={-1,-1,+0,+1,+1,+0};int dy[]={-1,+1,+2,+1,-1,-2}; ///Hexagonal Direction
/******************************End******************************/
#define mxn 100009
struct data{
ll arrive;
ll start,endd;
} arr[mxn];
ll vis[mxn];
int main()
{
__;
ll n,i,j,k;
ll ts,tf;
ll t;
cin>>ts>>tf>>t;
cin>>n;
for(i=1;i<=n;i++){
cin>>arr[i].arrive;
}
if(n==0){
cout<<ts<<"\n";
return 0;
}
if(arr[1].arrive<=ts){
arr[1].start=ts;
arr[1].endd=arr[1].start+t;
}
else{
arr[1].start=arr[1].arrive;
arr[1].endd=arr[1].start+t;
}
arr[n+1].arrive=tf-t;
for(i=2;i<=n;i++){
if(arr[i].arrive<=arr[i-1].endd){
arr[i].start=arr[i-1].endd;
arr[i].endd=arr[i].start+t;
}
else{
arr[i].start=arr[i].arrive;
arr[i].endd=arr[i].start+t;
}
}
ll waiting=inf;
ll ans=-1;
if(arr[n].endd+t<=tf){
cout<<arr[n].endd<<"\n";
return 0;
}
for(i=n;i>1;i--){ //cout<<arr[i].arrive<<" "<<arr[i].start<<" "<<arr[i].endd<<"\n";
if(arr[i].arrive==0) continue;
if(arr[i].endd>tf) continue;
//cout<<"now ans="<<ans<<" waiting:"<<waiting<<"\n";
if(arr[i].endd<=tf){
ll p=arr[i].arrive-1; //cout<<"p:"<<p<<"\n";
if(arr[i-1].endd<=p){ //cout<<"perfect\n";
p=arr[i-1].endd;
waiting=0;
ans=p;
break;
}
ll x=arr[i].start-p; //cout<<"delay:"<<x<<"\n";
if(x<waiting){ //cout<<"updated\n";
waiting=x;
ans=p;
}
}
}
if(arr[1].arrive!=0 && arr[1].endd<=tf){
ll p=arr[1].arrive-1;
ll x=arr[1].start-p; //cout<<"x="<<x<<" start="<<arr[1].start<<"\n";
if(x<waiting){ //cout<<"at i=1\n";
ans=p; //cout<<"ans:"<<ans<<"\n";
}
}
if(ans==-1){
ans=ts;
}
cout<<ans<<"\n";
return 0;
}
| [
"ashrafulmahim@gmail.com"
] | ashrafulmahim@gmail.com |
69b9c269504ee00d1cc45fd69bcb1b44f024fe52 | d7cec1dcc278704683f98d89175e3248149c52d0 | /sockets/v0/SocketAddr.h | 5bf5138f9dee33a30416076c30eb3405ba69c7c0 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | dadalang0207/sockets | bc8dfce81826d9318bdaff6fc75662dde2551bfc | 893de0a8a4376bfef7502f20d81c22c7e001c0a8 | refs/heads/master | 2021-01-23T06:55:45.142832 | 2016-12-19T09:18:44 | 2016-12-19T09:18:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,625 | h | /*
* PackageLicenseDeclared: Apache-2.0
* Copyright (c) 2015 ARM 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 __SOCKETS_V0_SOCKETADDR_H__
#define __SOCKETS_V0_SOCKETADDR_H__
#include "sal/socket_types.h"
namespace mbed {
namespace Sockets {
namespace v0 {
/**
* SocketAddr is a container class for storing IP addresses.
*
* SocketAddr provides a common interface for setting and getting IP addresses
*
* When an IPv4 address is set, SocketAddr stores it in IPv4-mapped IPv6. It is assumed that any address in the
* ::ffff:0000:0000 address range should be treated as an IPv4 address.
*/
class SocketAddr {
public:
/**
* Get a pointer to the internal struct socket_addr storage
*
* @return The address of the internal struct
*/
struct socket_addr * getAddr() {return &_addr;}
/**
* Get a const pointer to the internal struct socket_addr storage
*
* @return The address of the internal struct
*/
const struct socket_addr * getAddr() const {return &_addr;}
/**
* Copy the contents of an existing struct socket_addr into the internal storage
*
* @param[in] addr the original address to copy
*/
void setAddr(const struct socket_addr *addr);
/**
* Copy the contents of an existing SocketAddr into the internal storage
*
* @param[in] addr the original address to copy
*/
void setAddr(const SocketAddr *addr);
/**
* Parse a string representation of the address into the SocketAddr
*
* This function uses inet_pton and has the restrictions expected with that API.
*
* @param[in] addr the original address to copy
* @retval SOCKET_ERROR_NONE Format completed
* @retval SOCKET_ERROR_BAD_ADDRESS Unrecognized address format
* @retval SOCKET_ERROR_BAD_ARGUMENT An unexpected argument was provided
* @retval SOCKET_ERROR_UNKNOWN An unexpected error occurred
*/
socket_error_t setAddr(socket_address_family_t af, const char *addr);
/**
* Return the size of the internal storage.
*
* @return the space consumed by a SocketAddr
*/
size_t getAddrSize() const {return sizeof(_addr.ipv6be);}
/**
* Check if the internal address is an IPv4 address
* This checks if the address falls in the `::ffff:0000:0000` range.
*
* @retval true the IP address is IPv4
* @retval false otherwise
*/
bool is_v4() const;
/**
* Format the IP address in IPv4 dotted-quad Format
*
* @param[out] buf the buffer to fill
* @param[in] size the size of the buffer to fill. Must be at least 16 chars long (incl. terminator).
*
* @retval -1 error formatting
* @retval 0 format successful
*/
int fmtIPv4(char *buf, size_t size) const;
/// Convenience function for using statically allocated buffers.
template< size_t N >
int fmtIPv4(char (&buf)[N]) {
return fmtIPv4(buf, N);
}
/**
* Format the IP address in IPv6 colon separated format
*
* If the IP address is IPv6, colon-separated format is used.
* If the IP address is IPv4, then the address is formatted as a 96-bit prefix in colon-separated format, followed
* by a 32-bit dotted-quad.
*
*
* @param[out] buf the buffer to fill
* @param[in] size the size of the buffer to fill.
* Must be at least 23 chars long (incl. terminator) for an IPv4 address in IPv6 format.
* Must be at least 46 chars long for a complete IPv6 address. Smaller buffers may be used
* for abbreviated addresses, such as ::1
*
* @retval 0 formatting was successful
* @retval -1 formatting failed
*/
int fmtIPv6(char *buf, size_t size) const;
/// Convenience function for using statically allocated buffers.
template< size_t N >
int fmtIPv6(char (&buf)[N]) {
return fmtIPv6(buf, N);
}
protected:
struct socket_addr _addr;
};
} // namespace v0
} // namespace Sockets
} // namespace mbed
#endif // __SOCKETS_V0_SOCKETADDR_H__
| [
"brendan.moran@arm.com"
] | brendan.moran@arm.com |
8941b110a72b62fd98cdbdb9748c1681b91b981d | f24a0c747d31e3553fdd22c7e8f8ae319cd7a0d5 | /ESP8266 Weather reading program.ino | e4038f6d69116a537030f390562e6ed02aee5ecb | [
"MIT"
] | permissive | heya10/SmartHouse | bc69a697f4a42fbbeba1132acc6367a9e8ee911f | 60bf2224fd9d44442ffe08c28e55a6c9f5916798 | refs/heads/master | 2021-04-30T09:15:12.216352 | 2018-03-13T09:22:26 | 2018-03-13T09:22:26 | 121,301,483 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,706 | ino | #include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include <Adafruit_Sensor.h>
#include "DHT.h"
#define DHTTYPE DHT11 // DHT 11
// Your network data
const char* ssid = "SSID";
const char* password = "PASSWORD";
const int DHTPin = 2;
DHT dht(DHTPin, DHTTYPE);
static char celsiusTemp[7];
static char humidityTemp[7];
void setup() {
Serial.begin(9600);
delay(10);
dht.begin();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
delay(3000);
Serial.println(WiFi.localIP());
}
// runs over and over again
void loop() {
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
float h = dht.readHumidity();
// Read temperature as Celsius (the default)
float t = dht.readTemperature();
float hic = dht.computeHeatIndex(t, h, false);
dtostrf(hic, 6, 2, celsiusTemp);
dtostrf(h, 6, 2, humidityTemp);
//for check/debug purpose
/*Serial.print(t);
Serial.print(", ");
Serial.println(h);*/
if (WiFi.status() == WL_CONNECTED) { //Check WiFi connection status
HTTPClient http; //Declare an object of class HTTPClient
String tempStr = String(t);
String humStr = String(h);
String addRoomWeatherApi = String("http://192.168.1.107:8080/api/add/room-weather?temp=" + tempStr + "&humidity=" + humStr);
http.begin(addRoomWeatherApi);
int httpCode = http.GET();
if (httpCode > 0) {
Serial.println("ok");
}
http.end(); //Close connection
}
delay(3600000); //every 1 hour
} | [
"igor.gielzak@gmail.com"
] | igor.gielzak@gmail.com |
645fba046d20e37ca4a5e2a70f53bf789993eef8 | 9aa6e2b9737e7069c2f6efd8556625f3b2a87343 | /code/arrays/sets.cpp | 628a97fc338490dc7249e81c5f5aa2ae6a559bf7 | [] | no_license | Tawishi/100DaysOfCode | e04331ca59b5736e2cef4ee64057c86a21d5f0bb | c09e480cc63c77447f81d933d36827a4d6eb9219 | refs/heads/main | 2023-07-18T06:43:14.242501 | 2021-09-01T11:31:52 | 2021-09-01T11:31:52 | 311,371,587 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 377 | cpp | #include<bits/stdc++.h>
using namespace std;
vector<int> subset;
int n=3;
void search(int k) {
if(k == n+1) {
for(int i=0; i < subset.size(); i++)
cout << subset.at(i) << ' ';
cout<<endl;
return;
}
subset.push_back(k);
search(k+1);
subset.pop_back();
search(k+1);
}
int main() {
search(1);
return 0;
} | [
"tawishisharma1@gmail.com"
] | tawishisharma1@gmail.com |
152354b85b893b9bb8f8bc92c853736886dd60c8 | 98b6c7cedf3ab2b09f16b854b70741475e07ab64 | /www.cplusplus.com-20180131/reference/bitset/bitset/to_ullong/to_ullong.cpp | 9aa6ebb64f0fbfcb20556c7c04f254ea11caaa59 | [] | no_license | yull2310/book-code | 71ef42766acb81dde89ce4ae4eb13d1d61b20c65 | 86a3e5bddbc845f33c5f163c44e74966b8bfdde6 | refs/heads/master | 2023-03-17T16:35:40.741611 | 2019-03-05T08:38:51 | 2019-03-05T08:38:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 283 | cpp | // bitset::to_ullong
#include <iostream> // std::cout
#include <bitset> // std::bitset
int main ()
{
std::bitset<4> foo; // foo: 0000
foo.set(); // foo: 1111
std::cout << foo << " as an integer is: " << foo.to_ullong() << '\n';
return 0;
}
| [
"zhongtao.chen@yourun.com"
] | zhongtao.chen@yourun.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.