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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
297cf28ccb560e6c9cb3997a0892c574006a54ff | 791b7235230283d1a48f64026eaef08395c8081a | /Códigos em C e C++/matriz8Numeros.cpp | 0f926d639945a358bd6401f85293b3b8dd9e23f2 | [] | no_license | GabrielAzevedoScholze/AprendendoGithub | 56a9b1f0f4a9bc1a1baa6775033b230896e7d2ef | a55651e714cf265f03a82423ee1871705122c4ce | refs/heads/master | 2022-12-27T20:53:40.072022 | 2020-10-07T19:08:15 | 2020-10-07T19:08:15 | 293,882,130 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 371 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main(void){
int i = 0;
int vet[8];
while(i < 8){
printf("digite um numero: ");
scanf("%d",&vet[i]);
i++;
}
printf("\n os valores digitados sao: ");
for( i = 0; i < 8; i++){
printf("\n posicao: %d ", i);
printf("valor: %d",vet[i]);
}
printf("\n\n");
system("pause");
}
| [
"scholzegabriel@gmail.com"
] | scholzegabriel@gmail.com |
dc02b38b248749ac1cc8fb1cd5209d633798437d | 9b5b512ab66b8b75a91dad8350b5fdfa6ee5e1dd | /Backends/Direct3D11/Sources/Kore/ShaderImpl.cpp | 86ea56b7231dbbc34c2711907a9747b49978b343 | [
"Zlib"
] | permissive | J-d-H/Kore | 0817fb5a18099f54f5b99fe1ae0ec98a0e152906 | fcf83a16639ad707c7ce8f221d5dc0f876d83709 | refs/heads/master | 2020-05-30T08:42:47.903636 | 2014-11-23T15:09:57 | 2014-11-23T15:09:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,476 | cpp | #include "pch.h"
#include <Kore/Graphics/Shader.h>
#include <Kore/Math/Core.h>
#include <Kore/WinError.h>
#include "Direct3D11.h"
using namespace Kore;
ShaderImpl::ShaderImpl() {
}
Shader::Shader(void* _data, int length, ShaderType type) {
unsigned index = 0;
u8* data = (u8*)_data;
int attributesCount = data[index++];
for (int i = 0; i < attributesCount; ++i) {
char name[256];
for (unsigned i2 = 0; i2 < 255; ++i2) {
name[i2] = data[index++];
if (name[i2] == 0) break;
}
attributes[name] = data[index++];
}
u8 texCount = data[index++];
for (unsigned i = 0; i < texCount; ++i) {
char name[256];
for (unsigned i2 = 0; i2 < 255; ++i2) {
name[i2] = data[index++];
if (name[i2] == 0) break;
}
textures[name] = data[index++];
}
u8 constantCount = data[index++];
constantsSize = 0;
for (unsigned i = 0; i < constantCount; ++i) {
char name[256];
for (unsigned i2 = 0; i2 < 255; ++i2) {
name[i2] = data[index++];
if (name[i2] == 0) break;
}
ShaderConstant constant;
constant.offset = data[index++];
constant.size = data[index++];
constants[name] = constant;
constantsSize = constant.offset + constant.size;
}
this->data = &data[index];
this->length = length - index;
if (type == VertexShader)
affirm(device->CreateVertexShader(this->data, this->length, nullptr, (ID3D11VertexShader**)&shader));
else
affirm(device->CreatePixelShader(this->data, this->length, nullptr, (ID3D11PixelShader**)&shader));
}
| [
"robert@ktx-software.com"
] | robert@ktx-software.com |
e8043d36e9a3d6421616edb6e1d6e8bcbcd5ea4e | 3ac91cca3999f279a59fb97eea430a60540cf100 | /build-CS1C_Project_One-Desktop_Qt_5_12_5_clang_64bit-Debug/moc_supportedsoftware.cpp | 3e28e577757a7915c44b6fcf3e14b6af15b4e96e | [] | no_license | Lamson555/iCyberSecurity | 90af804ff28626c10c9957a1fa0a435cbedc42ad | 4c2b38ccfbad480e5070fe5160944826fe958f97 | refs/heads/master | 2020-07-31T02:54:04.326347 | 2019-10-21T18:38:51 | 2019-10-21T18:38:51 | 210,459,194 | 1 | 2 | null | 2019-10-08T22:31:53 | 2019-09-23T21:52:25 | C++ | UTF-8 | C++ | false | false | 2,776 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'supportedsoftware.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.5)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../Launcher/supportedsoftware.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'supportedsoftware.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.12.5. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_supportedSoftware_t {
QByteArrayData data[1];
char stringdata0[18];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_supportedSoftware_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_supportedSoftware_t qt_meta_stringdata_supportedSoftware = {
{
QT_MOC_LITERAL(0, 0, 17) // "supportedSoftware"
},
"supportedSoftware"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_supportedSoftware[] = {
// content:
8, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
void supportedSoftware::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
QT_INIT_METAOBJECT const QMetaObject supportedSoftware::staticMetaObject = { {
&QDialog::staticMetaObject,
qt_meta_stringdata_supportedSoftware.data,
qt_meta_data_supportedSoftware,
qt_static_metacall,
nullptr,
nullptr
} };
const QMetaObject *supportedSoftware::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *supportedSoftware::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_supportedSoftware.stringdata0))
return static_cast<void*>(this);
return QDialog::qt_metacast(_clname);
}
int supportedSoftware::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QDialog::qt_metacall(_c, _id, _a);
return _id;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE
| [
"54380548+Lamson555@users.noreply.github.com"
] | 54380548+Lamson555@users.noreply.github.com |
680dd4439598c688700c2ffa70a0f40c6bf8bd61 | 42e9de4dd119deca18f9b8bedfc06a50af1c42d1 | /BooErEngine/src/BooErEngine/Utils/Log.cpp | 36cf43ac495c179e83fbd9cdd6ff06f77e5136ea | [
"Apache-2.0"
] | permissive | Concarster/BooErEngine | 388c79a9156e309fe9a54698463f4a842bd741a0 | b2f390cbd5f7ec498307383d540f1381a7e634a6 | refs/heads/master | 2020-05-01T19:02:29.104797 | 2019-03-29T01:07:54 | 2019-03-29T01:07:54 | 177,637,823 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 527 | cpp | #include "booPCH.h"
#include "Log.h"
#include <spdlog\sinks\stdout_color_sinks.h>
namespace boo
{
std::shared_ptr<spdlog::logger> Log::s_EngineLogger;
std::shared_ptr<spdlog::logger> Log::s_ClientLogger;
void Log::Init()
{
spdlog::set_pattern("%^[%T] %n: %v%$");
s_EngineLogger = spdlog::stdout_color_mt("BooEr");
s_EngineLogger->set_level(spdlog::level::trace);
s_ClientLogger = spdlog::stdout_color_mt("Boo");
s_ClientLogger->set_level(spdlog::level::trace);
}
} | [
"concarster01@gmail.com"
] | concarster01@gmail.com |
9fa39ccba6cc2fb1401a71878a6833b07992a488 | bd0c14d0b39968e677c7eaef658594afc9f46ae9 | /src/content/content_main_delegate.cc | 1a3b8e3725dac4c86ea098c9d5ae17abc440998b | [] | no_license | alexfordc/p528 | ca701193d4e8e6d0cf0b330d06e1c1ac23d9e481 | 42536561e8e2920c92305ed88aa0b50e7b81c0d0 | refs/heads/master | 2021-05-29T20:13:04.123698 | 2015-06-28T11:25:47 | 2015-06-28T11:25:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 533 | cc | // Copyright by wangtianping. All rights reserved.
#include "content/content_main_delegate.h"
#include "content/content_browser_client.h"
namespace content {
bool ContentMainDelegate::BasicStartupComplete(int* exit_code) {
return false;
}
ContentBrowserClient* ContentMainDelegate::CreateContentBrowserClient() {
return new ContentBrowserClient();
}
int ContentMainDelegate::RunProcess(
const std::string& process_type,
const content::MainFunctionParams& main_function_params) {
return -1;
}
} // namespace content
| [
"sunwangme@gmail.com"
] | sunwangme@gmail.com |
bf884766700663e2fa62eab217fd750d585edb20 | b8b69b9721088fc60a523ada7650c7fb8864ff2a | /src/Animation/Armature.WrenScriptApi.cpp | d528892489ffee93b116fcd14438f064030832e7 | [] | no_license | jvidziunas/Eldritch2 | 7a99ab852c93768b4caf1cefe7ba415b71987281 | 3491f2f380f5ae4dd155594b94fea28f791f3069 | refs/heads/master | 2021-01-10T09:37:08.120746 | 2018-04-11T00:22:20 | 2018-04-11T00:22:20 | 43,710,529 | 2 | 1 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 2,091 | cpp | /*==================================================================*\
Armature.WrenScriptApi.cpp
------------------------------------------------------------------
Purpose:
------------------------------------------------------------------
©2010-2016 Eldritch Entertainment, LLC.
\*==================================================================*/
//==================================================================//
// INCLUDES
//==================================================================//
#include <Scripting/Wren/ApiBuilder.hpp>
#include <Scripting/Wren/Context.hpp>
#include <Animation/Armature.hpp>
//------------------------------------------------------------------//
void wrenSetSlotHandle( WrenVM* vm, int slot, WrenHandle* handle );
namespace Eldritch2 {
namespace Animation {
using namespace ::Eldritch2::Scripting::Wren;
using namespace ::Eldritch2::Scripting;
ET_IMPLEMENT_WREN_CLASS( Armature ) {
api.CreateClass<Armature>( ET_BUILTIN_WREN_MODULE_NAME( Animation ), "Armature",
{/* Constructors */
DefineConstructor<void ( Transformation )>( "new", [] ( WrenVM* vm ) {
SetReturn<Armature>( vm, GetSlotAs<Transformation>( vm, 1 ) );
} )
},
{/* Properties */
DefineProperty<Transformation>( "localToWorld",
// Getter
[] ( WrenVM* vm ) {
Armature& self( GetSlotAs<Armature>( vm, 0 ) );
wrenSetSlotHandle( vm, 0, AsContext( vm ).FindForeignClass<Transformation>() );
SetReturn<Transformation>( vm, self.GetLocalToWorld() );
},
// Setter
[] ( WrenVM* vm ) {
GetSlotAs<Armature>( vm, 0 ).SetLocalToWorld( GetSlotAs<Transformation>( vm, 1 ) );
}
),
DefineGetter<Transformation>( "worldToLocal", [] ( WrenVM* vm ) {
Armature& self( GetSlotAs<Armature>( vm, 0 ) );
wrenSetSlotHandle( vm, 0, AsContext( vm ).FindForeignClass<Transformation>() );
SetReturn<Transformation>( vm, self.GetWorldToLocal() );
} )
},
{/* Methods */},
{/* Static methods */},
{/* Operators */}
);
}
} // namespace Animation
} // namespace Eldritch2 | [
"jvidziunas@sbcglobal.net"
] | jvidziunas@sbcglobal.net |
50eabf8c8103766e906e536c872e37ce24dbb757 | d01df87af3025ae05e3835805cf574e3ad55d5ac | /test/greedy/budgeted_maximum_coverage_long_test.cpp | 5d399cc4566f557938a5504b2a6cbb774da40c52 | [
"BSL-1.0"
] | permissive | MichelleZhangRan/AA | 4a049857c1c1382dfb8d720ca2ac77145c2d0a6c | e537b58d50e93d4a72709821b9ea413008970c6b | refs/heads/master | 2021-09-23T22:25:55.539687 | 2017-01-30T20:21:28 | 2017-01-30T20:22:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,808 | cpp | /**
* @file budgeted_maximum_coverage_long_test.cpp
* @brief
* @author Piotr Smulewicz
* @version 1.0
* @date 2014-02-17
*/
#include "paal/greedy/set_cover/budgeted_maximum_coverage.hpp"
#include "paal/utils/functors.hpp"
#include "test_utils/logger.hpp"
#include "test_utils/test_result_check.hpp"
#include "test_utils/budgeted_maximum_coverage_check.hpp"
#include <boost/test/unit_test.hpp>
#include <boost/range/irange.hpp>
#include <boost/range/algorithm_ext/iota.hpp>
#include <vector>
#include <cstdlib>
#include <algorithm>
#include <iterator>
#include <cmath>
BOOST_AUTO_TEST_CASE(budgeted_maximum_coverage_long) {
LOGLN("budgeted_maximum_coverage_long");
const double APPROXIMATION_RATIO = 1 - 1 / std::exp(1.0);
const int ELEMENTS = 100;
const int SETSIZE = 5;
std::vector<int> weight(ELEMENTS);
std::vector<int> solution(ELEMENTS);
int optimal = 0;
srand(42);
for (int i = 0; i < ELEMENTS; ++i) {
weight[i] = rand() % 1000;
optimal += weight[i];
}
boost::iota(solution, 0);
std::random_shuffle(solution.begin(), solution.end());
std::vector<std::vector<int>> sets_element;
std::vector<int> cost_of_set;
for (int i = 0; i < ELEMENTS; i += SETSIZE) {
for (int j = 0; j < 4; ++j) {
std::vector<int> set;
int set_cost = 0;
for (int k = 0; k < SETSIZE; ++k) {
if (j == 3) {
set.push_back(solution[i + k]);
set_cost += weight[solution[i + k]];
} else {
int el;
bool copy;
do {
copy = false;
el = rand() % ELEMENTS;
for (auto i : set)
if (i == el) copy = true;
} while (copy);
set.push_back(el);
set_cost += weight[el];
}
}
sets_element.push_back(set);
cost_of_set.push_back(set_cost);
}
}
auto sets = boost::irange(0, int(sets_element.size()));
std::vector<int> result;
auto element_index = paal::utils::identity_functor{};
auto set_to_cost= paal::utils::make_array_to_functor(cost_of_set);
auto set_to_weight = paal::utils::make_array_to_functor(weight);
auto budget=optimal;
auto weight_solution = paal::greedy::budgeted_maximum_coverage(
sets, set_to_cost,
paal::utils::make_array_to_functor(sets_element),
std::back_inserter(result), element_index, budget, set_to_weight
);
budgeted_maximum_coverage_result_check(
result, sets_element, set_to_weight, set_to_cost, ELEMENTS, optimal,
weight_solution, APPROXIMATION_RATIO, budget);
}
| [
"wygos@mimuw.edu.pl"
] | wygos@mimuw.edu.pl |
835e96514b8ba614ad697cd1daf752c35de35361 | 829b3f2d0ae685d01fe097c03bf5c1976cbc4723 | /deps/boost/include/boost/asio/detail/null_tss_ptr.hpp | 23363e2eed5f56645b396aff82e42789f21e932e | [
"Apache-2.0"
] | permissive | liyoung1992/mediasoup-sfu-cpp | f0f0321f8974beb1f4263c9e658402620d82385f | b76564e068626b0d675f5486e56da3d69151e287 | refs/heads/main | 2023-08-21T21:40:51.710022 | 2021-10-14T06:29:18 | 2021-10-14T06:29:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,342 | hpp | //
// detail/null_tss_ptr.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_ASIO_DETAIL_NULL_TSS_PTR_HPP
#define BOOST_ASIO_DETAIL_NULL_TSS_PTR_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include <boost/asio/detail/config.hpp>
#if !defined(BOOST_ASIO_HAS_THREADS)
#include <boost/asio/detail/noncopyable.hpp>
#include <boost/asio/detail/push_options.hpp>
namespace boost {
namespace asio {
namespace detail {
template <typename T>
class null_tss_ptr
: private noncopyable
{
public:
// Constructor.
null_tss_ptr()
: value_(0)
{
}
// Destructor.
~null_tss_ptr()
{
}
// Get the value.
operator T*() const
{
return value_;
}
// Set the value.
void operator=(T* value)
{
value_ = value;
}
private:
T* value_;
};
} // namespace detail
} // namespace asio
} // namespace boost
#include <boost/asio/detail/pop_options.hpp>
#endif // !defined(BOOST_ASIO_HAS_THREADS)
#endif // BOOST_ASIO_DETAIL_NULL_TSS_PTR_HPP
| [
"yanhua133@126.com"
] | yanhua133@126.com |
5ba41f51bc82c7cf8024c72a66ebfd419c8daa86 | 5406d184bfeb2c080081f0bbd318d28185d1edb3 | /core-experimental/include/iDynTree/Core/SpatialForceVectorRaw.h | 900faa56b63c64da78561b2979ba0adfdbdcd203 | [] | no_license | arocchi/idyntree | 85f50a9c6ad4ec38ba5f937808a05093bd715a09 | f5aeb8ece3b51bb3ceb0a8211b00b73b232b3197 | refs/heads/master | 2021-01-16T20:36:07.551714 | 2015-08-04T09:44:11 | 2015-08-04T09:44:11 | 40,492,566 | 0 | 0 | null | 2015-08-10T16:16:09 | 2015-08-10T16:16:08 | null | UTF-8 | C++ | false | false | 1,968 | h | /*
* Copyright (C) 2015 Fondazione Istituto Italiano di Tecnologia
* Authors: Silvio Traversaro
* CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
*
*/
#ifndef IDYNTREE_SPATIAL_FORCE_RAW_H
#define IDYNTREE_SPATIAL_FORCE_RAW_H
#include <iDynTree/Core/VectorFixSize.h>
namespace iDynTree
{
class PositionRaw;
class RotationRaw;
class SpatialMotionVectorRaw;
/**
* Class providing the raw coordinates for any spatial force vector.
*
* \ingroup iDynTreeCore
*
* A force spatial vector can be used to to described spatial momentum, wrench,
* or their derivatives.
*
* This is just a basic vector, used to implement the adjoint transformations in
* a general way. The relative adjoint transformation is contained in
* TransformRaw::apply(SpatialForceRaw),
* for consistency with the iDynTree::PositionRaw class.
*
* \note in iDynTree, the spatial vector follows this serialization: the first three elements are
* the linear part and the second three elements are the angular part.
*/
class SpatialForceVectorRaw: public Vector6
{
public:
SpatialForceVectorRaw();
SpatialForceVectorRaw(const double* in_data, const unsigned int in_size);
SpatialForceVectorRaw(const SpatialForceVectorRaw & other);
virtual ~SpatialForceVectorRaw();
const SpatialForceVectorRaw & changePoint(const PositionRaw & newPoint);
const SpatialForceVectorRaw & changeCoordFrame(const RotationRaw & newCoordFrame);
static SpatialForceVectorRaw compose(const SpatialForceVectorRaw & op1, const SpatialForceVectorRaw & op2);
static SpatialForceVectorRaw inverse(const SpatialForceVectorRaw & op);
double dot(const SpatialMotionVectorRaw & other) const;
/** constructor helpers */
static SpatialForceVectorRaw Zero();
};
}
#endif /* IDYNTREE_SPATIAL_FORCE_RAW_H */ | [
"silvio.traversaro@iit.it"
] | silvio.traversaro@iit.it |
faa75dc5cd99bb0c6d4dbe23b3c3f0d2c2fde68b | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /net/third_party/quiche/src/quic/core/crypto/quic_hkdf.h | 09006eef4db6d56cd1e0e018faa9dc8a4580d403 | [
"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 | 3,052 | h | // Copyright 2018 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 QUICHE_QUIC_CORE_CRYPTO_QUIC_HKDF_H_
#define QUICHE_QUIC_CORE_CRYPTO_QUIC_HKDF_H_
#include <vector>
#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
#include "net/third_party/quiche/src/quic/platform/api/quic_string_piece.h"
namespace quic {
// QuicHKDF implements the key derivation function specified in RFC 5869
// (using SHA-256) and outputs key material, as needed by QUIC.
// See https://tools.ietf.org/html/rfc5869 for details.
class QUIC_EXPORT QuicHKDF {
public:
// |secret|: the input shared secret (or, from RFC 5869, the IKM).
// |salt|: an (optional) public salt / non-secret random value. While
// optional, callers are strongly recommended to provide a salt. There is no
// added security value in making this larger than the SHA-256 block size of
// 64 bytes.
// |info|: an (optional) label to distinguish different uses of HKDF. It is
// optional context and application specific information (can be a zero-length
// string).
// |key_bytes_to_generate|: the number of bytes of key material to generate
// for both client and server.
// |iv_bytes_to_generate|: the number of bytes of IV to generate for both
// client and server.
// |subkey_secret_bytes_to_generate|: the number of bytes of subkey secret to
// generate, shared between client and server.
QuicHKDF(QuicStringPiece secret,
QuicStringPiece salt,
QuicStringPiece info,
size_t key_bytes_to_generate,
size_t iv_bytes_to_generate,
size_t subkey_secret_bytes_to_generate);
// An alternative constructor that allows the client and server key/IV
// lengths to be different.
QuicHKDF(QuicStringPiece secret,
QuicStringPiece salt,
QuicStringPiece info,
size_t client_key_bytes_to_generate,
size_t server_key_bytes_to_generate,
size_t client_iv_bytes_to_generate,
size_t server_iv_bytes_to_generate,
size_t subkey_secret_bytes_to_generate);
~QuicHKDF();
QuicStringPiece client_write_key() const { return client_write_key_; }
QuicStringPiece client_write_iv() const { return client_write_iv_; }
QuicStringPiece server_write_key() const { return server_write_key_; }
QuicStringPiece server_write_iv() const { return server_write_iv_; }
QuicStringPiece subkey_secret() const { return subkey_secret_; }
QuicStringPiece client_hp_key() const { return client_hp_key_; }
QuicStringPiece server_hp_key() const { return server_hp_key_; }
private:
std::vector<uint8_t> output_;
QuicStringPiece client_write_key_;
QuicStringPiece server_write_key_;
QuicStringPiece client_write_iv_;
QuicStringPiece server_write_iv_;
QuicStringPiece subkey_secret_;
QuicStringPiece client_hp_key_;
QuicStringPiece server_hp_key_;
};
} // namespace quic
#endif // QUICHE_QUIC_CORE_CRYPTO_QUIC_HKDF_H_
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
e75ca128bbea4cc0b8082850079f6d8460c517cb | 5f113855cb82baabd1055c9707fe60edae9155ef | /Courses/Sams_Teach_Yourself_C++_in_One_Hour_a_Day/Chap_9/Lesson 9.13 Using the friend Keyword to Allow an External Function DisplayAge() Access to Private Data Members.cpp | bdb836f79c24e925b7ecd05d5be4fe56709969b2 | [
"Unlicense"
] | permissive | mccrudd3n/OpenSource-Practise | 7d695168e8f2974bca2572cf9e3afaf09e04663a | 5eaffc46a01f4ece842009f10393b6510cb19d6d | refs/heads/master | 2023-07-23T15:23:24.549397 | 2023-07-15T10:13:56 | 2023-07-15T10:13:56 | 180,395,509 | 0 | 1 | Unlicense | 2019-04-29T16:05:55 | 2019-04-09T15:19:32 | C++ | UTF-8 | C++ | false | false | 467 | cpp | #include <iostream>
#include <string>
using namespace std;
class Human
{
private:
string Name;
int Age;
friend void DisplayAge(const Human& Person);
public:
Human(string InputName, int InputAge)
{
Name = InputName;
Age = InputAge;
}
};
void DisplayAge(const Human& Person)
{
cout << Person.Age << endl;
}
int main()
{
Human FirstMan("Adam", 25);
cout << "Accessing private member Age via friend: ";
DisplayAge(FirstMan);
return 0;
}
| [
"49352991+mccrudd3n@users.noreply.github.com"
] | 49352991+mccrudd3n@users.noreply.github.com |
d4ee18ebd11b98ad55ac9c2d02db433a822dd255 | 868e8628acaa0bf276134f9cc3ced379679eab10 | /firstCrude2D/we123/h10_refined2/0.161/p_rgh | 82df7cf9930735806806f5228f5f392586a5b3e1 | [] | no_license | stigmn/droplet | 921af6851f88c0acf8b1cd84f5e2903f1d0cb87a | 1649ceb0a9ce5abb243fb77569211558c2f0dc96 | refs/heads/master | 2020-04-04T20:08:37.912624 | 2015-11-25T11:20:32 | 2015-11-25T11:20:32 | 45,102,907 | 0 | 0 | null | 2015-10-28T09:46:30 | 2015-10-28T09:46:29 | null | UTF-8 | C++ | false | false | 528,309 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.161";
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
57600
(
93.9475
90.9495
88.6234
87.9021
86.2476
84.3984
83.3416
83.89
86.8239
91.0531
94.5652
96.5867
97.3154
97.2011
96.6408
95.9019
95.1382
94.4279
93.8044
93.2775
92.844
92.495
92.2194
92.0063
91.8456
91.7282
91.6464
91.593
91.562
91.5483
93.9383
89.8229
88.4837
87.5917
85.7647
84.0401
83.2685
84.3478
87.8072
92.0524
95.2335
96.9003
97.3727
97.1092
96.478
95.7155
94.9535
94.2571
93.6526
93.1457
92.7314
92.3996
92.139
91.9388
91.7888
91.6805
91.6059
91.5584
91.5321
91.522
93.9354
89.7499
88.4754
87.6035
85.7635
84.025
83.2222
84.2536
87.7434
92.0656
95.2931
96.9682
97.4289
97.1487
96.5019
95.7248
94.9493
94.2408
93.6263
93.1117
92.6916
92.3557
92.0923
91.89
91.7387
91.6296
91.5546
91.507
91.4807
91.4707
93.9473
89.6397
88.4638
87.6219
85.761
84.0004
83.1502
84.1054
87.6378
92.0753
95.3741
97.0674
97.5157
97.2145
96.546
95.7473
94.9506
94.2226
93.5918
93.0644
92.6349
92.2921
92.0238
91.8183
91.6649
91.5546
91.4791
91.4314
91.4052
91.3953
93.9893
89.489
88.4492
87.6473
85.7568
83.9666
83.0532
83.9013
87.4916
92.0871
95.4797
97.1972
97.6313
97.3039
96.6072
95.7802
94.9553
94.2013
93.5487
93.0043
92.5619
92.2098
91.9348
91.7247
91.5683
91.4561
91.3796
91.3314
91.3051
91.2953
94.0612
89.2933
88.4321
87.6802
85.7508
83.9237
82.9322
83.6369
87.3008
92.1016
95.6121
97.359
97.774
97.413
96.6813
95.8195
94.9605
94.1749
93.4956
92.9304
92.4723
92.1085
91.825
91.6087
91.448
91.3328
91.2544
91.2051
91.1784
91.1686
94.1597
89.0468
88.413
87.7211
85.7428
83.8724
82.7886
83.3063
87.0603
92.1196
95.7729
97.5541
97.9439
97.5404
96.7661
95.8637
94.9651
94.1426
93.4319
92.842
92.3653
91.9876
91.6937
91.4698
91.3033
91.1838
91.1022
91.0508
91.023
91.0131
94.284
88.7427
88.3927
87.7709
85.7325
83.8129
82.6245
82.9023
86.7632
92.1417
95.9642
97.7843
98.1416
97.6855
96.8609
95.9121
94.9687
94.1034
93.3562
92.7379
92.2397
91.846
91.54
91.3068
91.1332
91.008
90.922
90.8675
90.8381
90.8278
94.4348
88.3728
88.3723
87.8306
85.7197
83.7458
82.4426
82.4154
86.4012
92.1696
96.1883
98.0516
98.3676
97.8479
96.9652
95.9644
94.9705
94.0563
93.267
92.6163
92.0941
91.6822
91.3625
91.1187
90.9368
90.8049
90.7134
90.6547
90.6226
90.6116
94.613
87.9272
88.3527
87.9014
85.704
83.6715
82.2469
81.8332
85.963
92.205
96.4478
98.3587
98.6231
98.0273
97.0779
96.0196
94.9699
93.9997
93.1622
92.4754
91.9265
91.4946
91.1596
90.9041
90.7131
90.5739
90.4764
90.4123
90.376
90.3627
94.8196
87.3942
88.3352
87.9843
85.6848
83.59
82.0425
81.1405
85.4347
92.2506
96.7458
98.7088
98.9091
98.2229
97.198
96.0769
94.966
93.9318
93.0391
92.3125
91.7349
91.281
90.9292
90.6609
90.4605
90.3142
90.2107
90.1409
90.0982
90.0784
95.0565
86.7607
88.3214
88.0809
85.6616
83.5012
81.8365
80.3183
84.7986
92.3096
97.0855
99.1059
99.2271
98.4338
97.3238
96.1349
94.9579
93.8505
92.8947
92.1249
91.5165
91.039
90.6687
90.3868
90.1767
90.0239
89.9153
89.8404
89.791
89.7613
95.3268
86.0119
88.3137
88.1926
85.6337
83.4044
81.6379
79.343
84.0321
92.3861
97.4706
99.5537
99.5789
98.6586
97.4533
96.1919
94.9447
93.7529
92.7247
91.9093
91.2687
90.7658
90.3752
90.0782
89.8581
89.6995
89.5876
89.5097
89.4555
89.4207
95.634
85.1306
88.3151
88.3213
85.6001
83.2981
81.4585
78.1852
83.1084
92.4846
97.9046
100.057
99.9665
98.8956
97.5837
96.2455
94.9248
93.6355
92.5238
91.662
90.9885
90.4584
90.0449
89.7305
89.4993
89.3352
89.222
89.1449
89.0915
89.1326
95.9819
84.0954
88.3292
88.4689
85.5598
83.1798
81.3141
76.8135
81.9976
92.611
98.3914
100.623
100.393
99.1424
97.7117
96.2928
94.8957
93.4933
92.2858
91.3786
90.6727
90.1136
89.6734
89.3379
89.0932
88.9225
88.8082
88.7338
88.6865
88.6592
96.3742
82.8836
88.3606
88.638
85.5117
83.0453
81.2253
75.2248
80.6642
92.7707
98.934
101.257
100.861
99.3959
97.8325
96.3301
94.8508
93.3185
92.004
91.0545
90.318
89.7282
89.2558
88.8936
88.6315
88.4519
88.335
88.2632
88.2223
88.2027
96.8145
81.4706
88.4141
88.8316
85.4545
82.8882
81.2079
73.3763
79.0638
92.9644
99.535
101.967
101.377
99.6514
97.9393
96.3553
94.7722
93.0917
91.6724
90.6826
89.9209
89.2999
88.7872
88.3895
88.1049
87.9145
87.7954
87.7279
87.6962
87.6888
97.3061
79.8302
88.4946
89.0537
85.3866
82.6995
81.2753
71.0979
77.124
93.1794
100.196
102.76
101.945
99.9021
98.02
96.3718
94.6161
92.7498
91.282
90.2517
89.4783
88.8285
88.2625
87.8154
87.5021
87.3007
87.1829
87.1262
87.1118
87.1244
97.851
77.934
88.6061
89.3098
85.3057
82.4669
81.4257
68.2644
74.6912
93.3603
100.912
103.645
102.573
100.137
98.0518
96.3954
94.3027
92.2577
90.8231
89.7479
88.9883
88.3184
87.6781
87.1573
86.807
86.5992
86.4932
86.4618
86.4803
86.5268
98.4478
75.7522
88.751
89.6081
85.2085
82.1725
81.6196
64.7419
71.5058
93.4331
101.688
104.627
103.271
100.339
98.0213
96.4463
93.7873
91.7805
90.2769
89.1491
88.4518
87.785
87.0362
86.3974
85.9974
85.7962
85.7223
85.7385
85.8114
85.91
99.09
73.2548
88.9289
89.9604
85.0937
81.7915
81.783
60.3973
67.7479
93.4142
102.527
105.709
104.05
100.475
98.0321
96.5014
93.175
91.4021
89.6285
88.4134
87.8798
87.2635
86.3493
85.5237
85.047
84.8652
84.8486
84.9407
85.0974
85.2757
99.7611
70.4149
89.1346
90.3833
84.9809
81.2889
81.8455
56.236
64.4171
93.44
103.427
106.888
104.92
100.479
98.2151
96.4846
92.6702
91.0903
88.8815
87.4849
87.298
86.7932
85.6123
84.5249
83.9331
83.761
83.8268
84.0354
84.322
84.6258
100.428
67.2133
89.3544
90.9005
84.8904
80.6138
81.8357
-4.60781
74.0653
93.4791
104.388
108.154
105.894
100.215
98.5146
96.4493
92.4299
90.858
88.0313
86.1523
86.6337
86.349
84.7593
83.3226
82.5815
82.4217
82.6031
82.9799
83.4614
83.9593
101.033
63.6466
89.5678
91.5523
84.5834
79.7319
80.2878
1.38855
-17.1975
93.4055
105.392
109.487
106.975
99.3464
98.9108
96.5523
92.5024
90.7469
87.0091
83.3236
85.2039
85.8851
83.7743
81.812
80.8883
80.785
81.1295
81.7174
82.482
83.2747
101.477
59.7606
89.7514
92.3742
84.9929
78.9722
-0.0124885
0.426279
4.93726
93.3566
106.486
110.857
108.16
96.9271
99.2081
96.8332
92.8533
90.7916
85.8059
78.6658
82.9513
85.3256
82.536
79.857
78.6634
78.7697
79.3523
80.1094
81.3338
82.5953
101.596
55.7618
89.8825
93.3697
85.6949
2.58399
0.0111821
0.329832
0.903189
92.2305
107.754
112.22
109.401
93.5865
99.2664
97.2377
93.3466
91.0358
85.5318
74.6425
81.8553
85.1803
80.4596
77.4643
69.4071
62.0436
60.0853
63.9341
72.5063
79.4006
101.138
52.2699
89.9326
94.4899
80.024
0.0523051
0.0242804
0.320358
0.939828
91.0954
109.268
113.515
110.515
93.0995
100.007
97.64
93.6091
91.5162
87.1304
76.505
84.2792
12.8525
0.173004
0.183783
0.159251
0.159315
0.156592
0.150714
0.141466
0.133999
99.7563
51.16
89.7517
95.7202
0.00912134
0.0338978
0.0320104
0.284135
1.0063
93.2048
110.735
114.69
111.443
95.783
101.91
97.7767
93.5715
92.0264
89.4635
0.0700204
0.14459
0.157597
0.169416
0.172488
0.164176
0.159379
0.155191
0.155357
0.140238
0.139778
97.027
56.5157
88.5968
90.5511
0.0337997
0.0230421
0.0371025
0.234497
0.954346
95.3941
111.789
115.749
111.809
100.32
103.277
97.4943
93.3666
92.4799
0.0265023
0.0805386
0.1345
0.154867
0.167121
0.170049
0.162568
0.163245
0.16041
0.142982
0.136444
0.159631
93.0542
68.2351
85.504
-0.0340739
0.0200421
0.0178012
0.0407487
0.199776
0.573779
109.683
112.718
116.409
111.054
104.857
102.947
95.4872
93.6993
0.185168
0.0377173
0.0597554
0.100236
0.139391
0.162453
0.168635
0.159494
0.156924
0.166468
0.134214
0.12947
0.125513
91.5476
91.5584
91.5838
91.6281
91.6965
91.7954
91.9323
92.1159
92.3569
92.6668
93.0574
93.5374
94.1076
94.7546
95.4416
96.1003
96.6181
96.8134
96.4028
95.0191
92.3289
88.4022
84.4388
82.3861
82.7922
85.2706
89.8654
96.0284
102.459
107.917
91.5243
91.5385
91.5684
91.6185
91.6942
91.8023
91.9506
92.1485
92.4071
92.7384
93.1539
93.6611
94.2579
94.9255
95.6195
96.2614
96.7242
96.8025
96.1857
94.4952
91.4401
87.3027
83.6403
82.2486
83.2184
86.2342
91.3497
97.7119
104.052
109.033
91.473
91.4874
91.5175
91.5677
91.6437
91.7521
91.9011
92.1005
92.3617
92.6973
93.1191
93.635
94.2434
94.925
95.6342
96.2906
96.7669
96.8569
96.2474
94.5498
91.455
87.2448
83.54
82.1815
83.1782
86.2015
91.3348
97.7108
104.06
109.067
91.3978
91.4123
91.4424
91.4926
91.5687
91.6774
91.8276
92.0294
92.295
92.6375
93.0694
93.5995
94.2268
94.9319
95.6664
96.3462
96.8405
96.9426
96.3376
94.6233
91.4656
87.1458
83.3822
82.0783
83.1152
86.1499
91.3121
97.7106
104.073
109.122
91.298
91.3127
91.343
91.3933
91.4695
91.5789
91.7307
91.9359
92.2076
92.5597
93.0056
93.555
94.2081
94.945
95.714
96.4248
96.9419
97.0572
96.4554
94.7179
91.4767
87.0079
83.1659
81.9395
83.0297
86.0791
91.2815
97.7112
104.094
109.197
91.1715
91.1866
91.2174
91.2682
91.345
91.4555
91.6096
91.8195
92.0992
92.4636
92.927
93.5006
94.186
94.9629
95.7739
96.5216
97.066
97.1982
96.6013
94.8359
91.4896
86.8276
82.8859
81.7651
82.9221
85.9888
91.2431
97.7125
104.121
109.289
91.0164
91.0323
91.064
91.1158
91.1937
91.3059
91.4633
91.6792
91.9688
92.3481
92.8327
93.4353
94.1595
94.9847
95.8452
96.6349
97.211
97.3648
96.7763
94.9791
91.505
86.6003
82.5356
81.5557
82.7928
85.8787
91.1969
97.7146
104.153
109.4
90.8317
90.8487
90.8816
90.9348
91.0143
91.1288
91.2904
91.5137
91.8152
92.2121
92.7213
93.3575
94.1275
95.0102
95.9281
96.7643
97.3763
97.557
96.9814
95.1498
91.5242
86.32
82.1062
81.3122
82.6423
85.7486
91.143
97.7175
104.191
109.53
90.6164
90.6348
90.6688
90.7234
90.8049
90.9224
91.0892
91.3213
91.6368
92.0541
92.5914
93.2656
94.0882
95.0392
96.0231
96.9098
97.5617
97.7749
97.218
95.3507
91.5487
85.9796
81.5863
81.0362
82.4715
85.598
91.0816
97.7212
104.234
109.682
90.3687
90.3894
90.4222
90.4785
90.5633
90.6846
90.8575
91.1001
91.4319
91.8725
92.4411
93.1573
94.0395
95.0717
96.1304
97.0707
97.7669
98.0185
97.4876
95.585
91.5808
85.5698
80.9609
80.7302
82.2807
85.4266
91.0127
97.7256
104.28
109.854
90.083
90.1169
90.1331
90.1964
90.2872
90.4134
90.5935
90.8481
91.1986
91.6655
92.2687
93.03
93.978
95.1076
96.2502
97.2459
97.991
98.288
97.7922
95.857
91.6231
85.0796
80.21
80.3981
82.0703
85.234
90.9364
97.7307
104.329
110.047
89.7408
89.971
89.8147
89.878
89.9756
90.1075
90.2952
90.5633
90.9352
91.4317
92.0726
92.8811
93.8991
95.1475
96.3818
97.4332
98.2333
98.5833
98.134
96.1714
91.6794
84.4964
79.3071
80.046
81.8404
85.0196
90.8523
97.7364
104.379
110.263
89.4143
89.4347
89.4662
89.5265
89.627
89.7642
89.9599
90.2437
90.64
91.1694
91.8511
92.7079
93.7954
95.1924
96.5227
97.6289
98.4925
98.9046
98.5157
96.5339
91.7542
83.8059
78.2171
79.6823
81.5905
84.7831
90.7601
97.7423
104.429
110.501
89.1357
89.0487
89.0754
89.1362
89.2358
89.3771
89.584
89.8872
90.3115
90.8772
91.6029
92.5084
93.6544
95.2435
96.6652
97.8276
98.7677
99.2516
98.9402
96.952
91.8526
82.9942
76.8935
79.318
81.3189
84.5242
90.659
97.7481
104.476
110.761
88.6422
88.6456
88.6701
88.7188
88.7989
88.9397
89.1647
89.493
89.9485
90.5537
91.3268
92.2823
93.4533
95.2959
96.7907
98.0219
99.0581
99.6243
99.4107
97.4341
91.9805
82.0508
75.2757
78.9664
81.0227
84.243
90.5478
97.7531
104.519
111.045
88.1985
88.2103
88.2415
88.2824
88.2969
88.4488
88.7043
89.0614
89.5497
90.1969
91.0204
92.0307
93.1485
95.3059
96.8568
98.2033
99.364
100.022
99.9308
97.9901
92.1432
80.974
73.2932
78.6515
80.696
83.9399
90.4244
97.756
104.555
111.352
87.6985
87.725
87.7759
87.9166
87.5151
87.92
88.2122
88.5922
89.1125
89.8039
90.6803
91.7512
92.7379
95.0886
96.7809
98.3654
99.6869
100.445
100.504
98.633
92.3437
79.7738
70.8975
78.455
80.3293
83.6162
90.2863
97.7552
104.581
111.683
87.1541
87.1999
87.27
89.8318
87.334
87.4186
87.6938
88.0802
88.6312
89.3708
90.3007
91.4345
92.4421
94.4063
96.452
98.5095
100.031
100.89
101.135
99.3752
92.5837
78.4617
68.1111
78.4476
79.914
83.2744
90.1308
97.748
104.592
112.038
86.5873
86.6597
86.7472
86.8474
86.8213
86.9144
87.1356
87.5121
88.0973
88.8928
89.8742
91.0652
92.2882
93.475
95.861
98.6532
100.401
101.354
101.827
100.235
92.8607
77.0252
65.0263
78.5267
79.4314
82.9185
89.9571
97.7314
104.584
112.416
86.0155
86.1234
86.225
86.2978
86.3167
86.3639
86.5128
86.8673
87.4999
88.3657
89.3922
90.6165
92.12
92.6318
95.2633
98.8342
100.807
101.83
102.583
101.232
93.171
75.4154
61.6432
78.6354
78.8436
82.5545
89.7676
97.7015
104.551
112.818
85.4501
85.6138
85.7443
85.8022
85.7762
85.7594
85.7895
86.1192
86.8237
87.7851
88.8457
90.0706
91.8667
92.1787
95.0728
99.1006
101.258
102.307
103.405
102.389
93.538
73.3939
57.8691
78.8924
78.1032
82.1884
89.569
97.654
104.489
113.243
84.9121
85.1708
85.361
85.4072
85.2716
85.0157
85.0954
85.22
86.0249
87.1319
88.205
89.3931
91.5708
92.3616
95.5174
99.4804
101.763
102.764
104.291
103.72
94.0346
70.3741
54.8399
79.3221
77.1376
81.8168
89.3798
97.5836
104.392
113.688
84.4231
84.8416
85.1484
85.1954
84.8767
84.3096
83.9641
84.069
85.024
86.3546
87.3152
88.4978
91.2924
93.044
96.4461
99.9616
102.336
103.163
105.236
105.228
94.7303
68.1266
1.87922
79.7736
75.8771
81.397
89.281
97.4822
104.252
114.147
84.008
84.6837
85.2089
85.2839
84.6105
83.4545
82.5729
82.5458
83.7954
85.4606
85.8485
87.217
91.056
93.8931
97.4787
100.531
103.002
103.436
106.221
106.903
95.6222
66.3356
1.88899
76.4196
74.5581
80.7145
89.3163
97.3367
104.062
114.611
83.6949
84.7503
85.7374
86.0213
84.6097
82.3015
80.7668
80.4738
82.3858
84.5548
83.4288
85.2694
90.8815
94.7395
98.3495
101.274
103.806
103.455
107.228
108.734
96.7958
36.5609
1.56935
0.160692
0.365024
80.1031
89.7575
97.125
103.808
115.058
82.5609
84.759
87.1076
88.558
85.0942
80.1092
78.3789
78.1615
80.7483
83.5669
81.3271
83.2381
90.8764
95.5766
99.2112
102.448
104.834
102.982
108.249
110.723
98.5238
25.8161
1.35671
0.261839
0.375138
41.8793
90.8434
96.8107
103.482
115.451
0.133813
0.127049
0.126519
0.121983
0.118319
0.115453
0.109388
0.151829
6.62069
80.4369
80.5267
81.7278
91.4545
96.4644
100.141
104.166
106.19
101.613
109.31
112.805
100.861
12.3418
1.14794
0.347314
0.325674
0.0326967
92.5634
96.344
103.092
115.722
0.138659
0.141429
0.141205
0.128557
0.127683
0.127109
0.118894
0.161795
0.129815
0.102487
0.0665748
79.319
93.3207
97.383
100.846
106.194
107.866
100.035
110.495
114.15
103.796
12.0773
0.951818
0.388886
0.303678
0.103685
94.1141
95.7019
102.62
115.754
0.138316
0.131617
0.127618
0.127242
0.122363
0.129377
0.113957
0.128253
0.125835
0.0882767
0.0508946
0.111759
98.4505
98.0354
101.259
107.852
108.952
100.494
112.058
115.464
107.224
5.36456
0.795586
0.403186
0.292762
0.12769
3.32331
95.0065
102.056
115.332
0.130337
0.126461
0.125116
0.123517
0.124629
0.601951
0.104812
0.112161
0.111741
0.0545954
0.00737851
0.100373
52.089
97.3306
101.703
108.858
108.634
101.455
113.955
114.869
105.427
2.69946
0.700106
0.403742
0.28531
0.139294
0.0399368
94.628
101.408
113.963
93.3841
84.1853
-2.55133
-0.0537534
0.01302
0.0158219
0.0422885
0.162611
-0.675496
95.1709
113.118
116.357
110.082
107.847
101.427
88.2168
11.3045
0.243722
0.0273083
0.0351041
0.0621834
0.115938
0.153226
0.165641
0.152444
0.16323
0.13796
0.125507
0.120864
0.118452
96.3297
93.551
0.532157
-0.0606778
0.00954277
0.0153559
0.0433428
0.147872
0.0392881
-11.6814
118.684
117.075
109.855
109.736
99.373
83.1098
0.104531
0.351544
0.0161862
0.023092
0.0425154
0.0986552
0.14288
0.158909
0.145302
0.130501
0.12503
0.116381
0.112686
0.117256
96.5091
104.819
-0.129521
-0.0636402
0.00646687
0.0151338
0.0458058
0.134325
-0.707993
37.6738
121.856
120.075
110.583
110.682
93.9854
-2.22596
0.124763
0.380065
0.0160775
0.0183573
0.0326627
0.0817354
0.127812
0.148728
0.136171
0.122582
0.112531
0.103624
0.0984762
0.108519
102.695
96.1477
-0.117075
-0.0634596
0.00377281
0.0150156
0.0470929
0.124774
-0.434198
-2.1065
120.653
122.588
112.154
113.605
86.1521
0.0237906
0.515945
0.0899863
0.0192857
0.0257477
0.0379583
0.0681838
0.115358
0.132274
0.125768
0.11074
0.0987237
0.088506
0.0776022
0.0862443
107.076
0.0651846
-0.112348
-0.0613428
0.00144844
0.0149568
0.0449784
0.0637531
-1.20684
0.951863
120.138
123.851
114.1
116.934
-13.0582
0.0382464
0.338103
0.0788616
0.0230848
0.0222865
0.0269038
0.067152
0.0993785
0.118643
0.10983
0.0959446
0.0838262
0.0739848
0.0648331
5.37505
1.53043
0.0514032
-0.106966
-0.0582803
-0.000517093
0.0149727
0.0449808
0.0553358
-0.980578
0.552527
123.686
124.275
115.776
122.137
-0.102714
-0.05219
0.0723135
0.0732971
0.0248223
0.0554709
0.028335
0.0575194
0.0877172
0.0984611
0.0920002
0.0793226
0.0690635
0.0610942
0.0558048
0.0411607
-0.00889682
0.0391959
-0.0989149
-0.0547142
-0.00215623
0.0150526
0.0390596
0.0240421
-0.844469
0.345749
130.195
125.819
117.667
66.3513
0.139453
-0.0351397
0.0462859
0.0672381
0.0240807
0.106521
0.0254069
0.0493575
0.240971
0.0828154
0.0742384
0.0623107
0.0581823
0.0535117
0.0525246
0.0566746
0.00205088
0.0347744
-0.0891741
-0.051311
-0.00347752
0.0151738
0.0365178
0.036544
-0.603201
1.65171
134.541
130.733
118.014
-0.176771
0.224261
-0.0189207
0.0426915
0.0592445
0.020816
0.0926983
0.0145701
0.190439
0.214664
0.0673567
0.0587741
0.047071
0.0408029
0.042129
0.0442846
0.0479364
-0.012818
0.0303852
-0.0791441
-0.0483494
-0.00446912
0.0153196
0.0368446
0.0503808
-0.300314
2.77412
15.7037
131.468
-0.169982
-0.117135
0.198831
-0.0185787
0.0362577
0.135371
0.35994
0.0265736
0.0200527
0.0457373
0.0988246
0.0569268
0.04677
0.0359003
0.030538
0.0315857
0.0344964
0.0391185
-0.0076226
0.034399
-0.0695049
-0.04557
-0.00516762
0.0154622
0.0366534
0.047653
0.00254107
2.98361
-1.17434
5.88411
-0.191898
-0.131789
0.0342373
-0.030832
0.0368958
0.0928751
0.0643646
0.0494834
0.0359018
0.0447538
0.0578202
0.0502572
0.0381501
0.0286202
0.0236887
0.0238193
0.0259821
0.0322894
-0.00480426
0.0138666
-0.0606853
-0.0427026
-0.00560722
0.0155593
0.0367555
0.0527477
0.101041
4.55991
-0.607983
-0.35741
-0.170564
-0.118192
-0.0639144
-0.0595632
0.0421487
0.0544523
0.0577571
0.0491476
0.0506446
0.0546113
0.0701449
0.0470302
0.0351349
0.0249601
0.020256
0.0214847
0.0370532
0.0287869
-0.0038793
0.00928524
-0.0530332
-0.0396294
-0.0057901
0.0155683
0.0363855
0.0620591
0.0550179
5.30845
-0.539848
-0.387078
-0.12595
-0.0886041
-0.107288
-0.124262
0.0683575
0.0608758
0.0631847
0.0608649
0.0600722
0.0595404
0.0563284
0.0467566
0.0355765
0.0276009
0.0208925
0.019305
0.0210296
0.0266499
-0.00405603
0.00558871
-0.0467287
-0.036319
-0.00575081
0.0154825
0.0365848
0.0651325
0.043137
0.230617
-0.439011
-0.366343
-0.119847
-0.0621575
-0.140319
1.77377
0.0868177
0.063429
0.0656443
0.294617
0.0673762
0.0622289
0.0551588
0.0480224
0.0382345
0.0298429
0.0250252
0.0241459
0.0259307
0.0295598
-0.00484267
0.00285389
-0.0416948
-0.0329052
-0.00550094
0.0153081
0.0355712
0.0692444
0.0642392
0.203861
-0.3381
0.0391035
0.00193284
-0.00151861
-0.131549
2.14296
0.0513581
0.0647443
0.0710102
0.0841478
0.0711547
0.0720045
0.0550187
0.0497445
0.0406262
0.0346309
0.030877
0.0298549
0.0318419
0.034777
-0.00526069
0.000611554
-0.037723
-0.0295366
-0.00504111
0.015046
0.034666
0.0726154
0.0735841
0.108222
-0.236875
-0.313859
-0.0767245
-0.0510815
-0.0867072
0.0888959
0.0407815
0.0638384
0.0706031
0.0747812
0.0718022
0.064684
0.0563645
0.0609938
0.0407029
0.0387431
0.0375248
0.0368545
0.0369438
0.0364666
-0.00667237
-0.00372901
-0.0345205
-0.02628
-0.00442863
0.0147077
0.0337683
0.063346
0.0696393
-0.019444
-0.153494
-0.200731
-0.0792289
-0.0590677
-0.0246704
0.0931066
0.0367336
0.0541624
0.071974
0.0667153
0.0663498
0.0624453
0.0552319
0.0447934
0.0411831
0.0418419
0.0447755
0.0524227
0.0543619
-0.00365229
-0.00789187
-0.00573126
-0.0317546
-0.023204
-0.00373007
0.0142805
0.032479
0.0646069
0.0546647
-0.051968
-0.060073
-0.116262
-0.0896884
-0.0668372
-0.0531539
0.0745569
0.0331525
0.0454107
0.0634368
0.0559746
0.0563673
0.0550864
0.0512645
0.0442557
0.0412685
0.0408187
0.039447
0.0455003
0.414304
0.141294
-0.0088192
-0.00767599
-0.0292456
-0.0203347
-0.00299506
0.013733
0.0306939
0.0521754
0.0396912
-0.0375716
0.0302405
0.0681621
-0.0901821
-0.0771537
-0.0563099
0.0521368
0.0184159
0.0326687
0.0402207
0.0447973
0.0459464
0.048067
0.0452128
0.0411485
0.0395938
0.0391465
0.0361526
0.0335506
0.0423322
0.0581884
-0.012065
-0.010554
-0.0269674
-0.0176651
-0.00225789
0.0130487
0.028423
0.0443627
0.0273443
-0.0194128
0.0291124
-0.0320311
-0.0973566
-0.106367
-0.0735399
-0.0389263
-0.000741081
0.0185165
0.0287041
0.0339616
0.0983956
0.0543711
0.0379813
0.0375266
0.0408181
0.0483113
0.0414082
0.0448105
0.0495765
0.0544272
-0.0171033
-0.017498
-0.0248544
-0.0151952
-0.00154771
0.0122132
0.0256465
0.0367066
0.0232585
-0.00354139
0.0247254
-0.0224509
-0.116947
-0.14292
-0.110877
-0.0570124
-0.0158105
0.00515285
0.0176837
0.0251816
0.0324933
0.0399654
0.0297925
0.0319781
0.0340744
0.036184
0.0391873
0.0424613
0.0456528
0.0486828
-0.0301147
-0.0307132
-0.0227904
-0.0129092
-0.000901431
0.0112079
0.023057
0.0295734
0.0204991
0.00781575
0.0199784
-0.00945824
-0.138457
-0.17418
-0.149194
-0.0839735
-0.0323748
-0.00115642
0.00773577
0.0149143
0.0188029
0.0215591
0.0242653
0.0266032
0.0290059
0.0315987
0.034316
0.0370402
0.0396383
0.0420735
-0.0594811
-0.0597542
-0.0205209
-0.0107985
-0.000349136
0.0100323
0.018943
0.0233638
0.0185288
0.0163445
-0.0074081
0.457586
-0.137261
-0.182294
-0.166121
-0.100566
-0.0408068
-0.0102202
0.000991204
0.00663722
0.0105471
0.0138682
0.0168832
0.019613
0.0222377
0.0248806
0.0274393
0.0298318
0.0320734
0.0341307
-0.0514632
-0.0737881
-0.0176911
-0.00886616
8.56662e-05
0.00868916
0.0152301
0.0173328
0.0138896
0.00315713
-0.0226436
0.675124
-0.113084
-0.158514
-0.145941
-0.0903264
-0.0356113
-0.0104911
0.00225867
-0.000392871
0.00133357
0.00328818
0.00571055
0.00841282
0.0111091
0.0136787
0.0160178
0.0180852
0.0199003
0.0213931
-0.0194244
-0.0310674
-0.0143046
-0.00710904
0.000387109
0.00718503
0.0135004
0.010646
0.0078581
-0.0087185
-0.0306056
-0.0574343
-0.0930896
-0.114617
-0.0993341
-0.0597327
-0.0206568
-0.00864911
-0.00315344
-0.00743601
-0.0108048
-0.0123325
-0.0113816
-0.0109402
-0.00859736
-0.00608198
-0.00396772
-0.00232109
-0.00111236
-0.000398035
-0.00434924
-0.00995325
-0.0108753
-0.00552346
0.000552502
0.00554883
0.00686873
0.00273449
0.024133
-0.0329387
-0.0473177
-0.0590856
-0.0741985
-0.0365904
-0.0635061
-0.0429353
-0.0178927
-0.0116025
-0.00918162
-0.00714384
-0.026469
-0.0323769
-0.0366324
-0.0381073
-0.0346596
-0.0363503
-0.0345296
-0.0328373
-0.0316702
-0.0310868
0.00127734
-0.00157129
-0.00792873
-0.00411083
0.000597829
0.00382597
0.00255631
-0.00512578
-0.00226958
-0.0858683
-0.069548
-0.0580512
-0.0561765
-0.0515396
-0.0482337
-0.0301521
-0.0226536
-0.0226225
-0.0300605
-0.0356529
-0.0457067
-0.0560829
-0.0580396
-0.0665231
-0.0656017
-0.0691516
-0.0670368
-0.0636064
-0.0615677
-0.0606796
0.00248467
0.00107259
-0.00551133
-0.00288305
0.000558535
0.00220956
-0.0010887
-0.0100985
-0.0218772
-0.162977
-0.101769
-0.0556539
-0.0443252
-0.0403639
-0.0398235
-0.0325394
-0.0289848
-0.0302002
-0.0176488
-0.0408099
-0.057827
-0.0690227
-0.0741385
-0.0759214
-0.0773305
-0.0746392
-0.0503893
-0.0732915
-0.0757611
-0.0764448
0.00205712
0.00139913
-0.00357073
-0.00184543
0.00047955
0.000954741
-0.00352274
-0.0189378
-0.00186391
-0.163418
-0.0993361
-0.0509397
-0.0359061
-0.0299494
0.158179
-0.0242209
-0.0253079
-0.0303767
0.0355752
-0.0378911
0.0217679
0.0871919
-0.0100179
-0.0656246
-0.0704899
-0.0766171
-0.0783
-0.0778811
-0.0775056
-0.0779072
0.00120299
0.000796829
-0.00202287
-0.000993157
0.000387529
0.000255585
-0.0039293
-0.0131979
-0.0285543
-0.0336972
-0.0735756
-0.0440614
-0.0318152
-0.0250763
-0.0216159
-0.0197605
-0.0158105
-0.0271491
-0.0317113
-0.0219538
-0.0356296
-0.0368434
-0.0394877
-0.0418285
-0.0787933
-0.0658385
-0.0553979
-0.055382
-0.0528261
-0.0531661
0.000326279
0.000251036
-0.000730141
-0.000318075
0.000232294
0.000103571
-0.00190833
-0.00766857
0.00672841
-0.0253723
-0.0422665
-0.0412675
-0.0326065
-0.024086
-0.0179443
-0.0143099
-0.0134852
-0.0153075
-0.0214823
-0.025189
-0.0212051
-0.0184888
-0.0183748
-0.0181062
-0.0168513
-0.0153686
-0.0160318
-0.0174721
-0.0181491
-0.013523
0.376586
0.120077
0.118311
0.118021
0.115165
0.10644
0.0984497
0.0995245
0.094878
0.0348272
-0.0174824
0.0493757
-0.0485909
90.9489
101.323
110.426
108.583
100.667
115.288
114.677
109.093
3.23193
0.680054
0.398467
0.279245
0.145608
0.0513136
2.01556
100.939
111.592
0.125759
0.116354
0.112288
0.113858
0.110253
0.100955
0.0940269
0.0922297
0.0821962
0.0283304
-0.0257083
0.0314897
0.0141166
-0.684837
100.742
111.478
107.986
100.511
115.555
115.611
120.118
3.51806
0.68578
0.393781
0.275084
0.14879
0.0548915
0.118703
100.652
109.555
0.123135
0.112212
0.116399
0.109396
0.103114
0.0945328
0.0888359
0.0851573
0.074144
0.0264869
-0.027651
0.0206374
0.135567
0.183688
87.5958
112.289
107.923
102.679
115.662
117.285
127.402
3.95098
0.684593
0.387657
0.270423
0.151476
0.0562411
0.0869274
32.2554
107.468
0.129482
0.109103
0.105595
0.176018
0.087475
0.087973
0.0835219
0.0785815
0.0680135
0.0288183
-0.0177542
0.0129256
0.0386618
0.143537
0.23085
115.188
108.393
99.8695
116.387
118.831
130.168
10.9187
0.662303
0.37971
0.265169
0.153519
0.0574514
0.0680931
0.0111903
105.783
6.41706
0.102391
0.0951476
0.0934556
0.076071
0.0827027
0.0788045
0.0725459
0.063916
0.0328505
-0.00293779
0.0158561
0.0456162
0.0946961
0.240321
35.0347
109.528
102.902
119.846
120.207
119.418
-1.41721
0.622679
0.36961
0.259148
0.154729
0.0592579
0.0563029
-0.000809667
87.2279
0.0384098
0.0684157
0.0820133
0.0807435
0.0732074
0.0945982
0.0753079
0.0666767
0.0614014
0.0407506
0.0165634
0.0211996
0.0350743
0.0873322
0.197315
-0.421368
71.8058
106.372
123.74
124.313
40.2448
-1.09836
0.570141
0.357358
0.25227
0.154937
0.0615916
0.0493086
0.00807524
0.130052
0.0576548
0.0617472
0.0694307
0.0712084
0.0705092
0.082271
0.0801788
0.0596707
0.0598133
0.0458106
0.0310056
0.0259962
0.0227962
0.0486157
0.094299
-0.24449
-0.248956
58.0417
124.833
123.357
-0.968356
-0.915476
0.512279
0.342365
0.24453
0.15412
0.0642694
0.0452426
0.00943124
0.109338
0.051264
0.0560954
0.0608796
0.0637245
0.0443217
0.0899778
0.0625578
0.0596497
0.0586065
0.0467436
0.0405687
0.0435839
0.0136568
0.00415038
0.00878165
-0.300943
-0.247028
-0.31105
115.515
115.921
-1.00006
-0.890525
0.446843
0.324563
0.235911
0.152362
0.0669652
0.0430355
0.0146213
0.0957401
0.043483
0.0483836
0.0540309
0.0605939
0.632341
1.9411
0.0539218
0.0579018
0.0580278
0.0446404
0.0433801
0.032195
0.00165274
-0.042036
2.94049
-0.504523
-0.245034
-0.316915
-0.391729
-0.482689
-1.0288
-0.764672
0.383768
0.30428
0.226377
0.14971
0.0694939
0.0421158
0.0197444
0.0734548
0.03665
0.0416312
0.0472227
0.0482957
0.0325267
0.0528914
0.0517289
0.0506289
0.0444741
0.0397105
0.044125
0.0263288
-0.00234857
-0.0479726
0.942695
-0.4017
0.0327175
-0.256168
-0.390347
-0.51453
-0.820239
-0.72966
0.316019
0.281559
0.215906
0.146165
0.0716745
0.0423346
0.0245597
0.0554778
0.0328177
0.0378051
0.0428132
0.0520401
0.0500461
0.0508198
0.0501206
0.0468072
0.0417333
0.0383984
0.0941234
0.0244242
-0.00404289
-0.0361132
0.33597
-0.0981608
0.100187
-0.310625
-0.389106
-0.502058
-0.662319
-0.686408
0.249956
0.256758
0.204473
0.141774
0.0733332
0.0433449
0.0287184
0.041519
0.0315931
0.0370145
0.0430608
0.0486323
0.0614902
0.0507335
0.0490239
0.0444739
0.0398398
0.035145
0.046067
0.0229782
-0.00472238
-0.00685735
0.026688
-0.18219
-0.228013
-0.307729
-0.41101
-0.485766
-0.598743
-0.584762
0.187214
0.230392
0.19212
0.136605
0.0743459
0.0446303
0.0323879
0.0290469
0.0341822
0.0395388
0.0452969
0.0507744
0.0768349
0.0548184
0.0510765
0.0497981
0.0401036
0.0352228
0.0267993
0.0184741
-0.00468509
-0.0266355
-0.0620406
-0.148401
-0.201271
-0.291311
-0.415786
-0.497235
-0.394867
-0.513973
0.123463
0.203138
0.178937
0.130704
0.074641
0.0457985
0.0352164
0.0226627
0.0381653
0.0432814
0.0504415
0.0569416
0.0599292
0.059775
0.0578749
0.0639304
0.042786
0.0357754
0.0271472
0.0149932
-0.00445853
-0.0295424
-0.0741222
-0.162208
-0.23755
-0.260995
-0.279636
-0.477738
-0.0637277
-0.452209
0.0751906
0.175736
0.165008
0.124133
0.0741545
0.0466245
0.0370567
0.0197938
0.0411952
0.0499349
0.0624103
0.0643533
0.0678594
0.0607238
0.0541832
0.0653443
0.0436351
0.0366437
0.0252456
0.0399464
0.0124217
-0.0334897
-0.0810784
-0.164533
-0.232049
-0.211284
-0.233774
-0.442167
-0.00532357
-0.337992
0.0343005
0.149003
0.150487
0.116967
0.072888
0.0469308
0.0378558
0.0188983
0.0397163
0.0602591
0.0678662
0.0697033
0.0675462
0.0595278
0.0514749
0.0367545
0.0495296
0.0408549
0.027045
0.0130808
0.0180467
-0.0379034
-0.0866176
-0.168701
-0.235389
0.124345
-0.257784
-0.395229
0.11522
-0.300407
0.0035952
0.12374
0.135587
0.109287
0.0709099
0.0465907
0.0376437
0.0186812
0.0821345
0.0749311
0.0766159
0.09323
0.101757
0.061992
0.0659644
2.86816
0.0646411
0.0494292
0.0313841
0.0107643
-0.000649585
-0.0345993
-0.0479641
-0.178757
-0.237826
0.0333242
-0.256922
-0.392232
-0.21854
-0.0981901
-0.0149891
0.100662
0.120561
0.101183
0.0682926
0.0455903
0.0365368
0.0183875
0.0661753
0.0688231
0.0688758
0.067885
0.0700297
0.074159
0.15518
0.0763701
0.0704338
0.0546288
0.0366733
0.0126962
-0.0138376
0.0127296
-0.0707346
-0.174828
-0.226325
-0.181065
-0.267062
-0.333751
-0.214263
-0.123341
-0.0214853
0.0802746
0.105696
0.0927355
0.065124
0.0440251
0.0347277
0.0177108
0.0582297
0.0613858
0.0648239
0.0711886
0.0722945
0.0765789
0.0845
0.0760036
0.0765
0.0592704
0.0404817
0.0124936
-0.0232955
-0.0418667
-0.0993624
-0.169334
-0.21638
-0.246519
0.771086
-0.292928
-0.301261
-0.117489
-0.0229572
0.0627856
0.0912777
0.084029
0.0614784
0.0420374
0.0324358
0.0166145
0.0516599
0.0548928
0.0588165
0.0664035
0.0691144
0.0748775
0.0856799
0.0741997
0.068209
0.05676
0.0363806
0.00483676
-0.034715
-0.0722968
-0.114867
-0.164256
-0.206876
-0.21068
0.457304
0.0845727
0.514299
-0.103704
-0.0226168
0.0481197
0.0775663
0.0751835
0.057377
0.0398115
0.0299149
0.0152179
0.0444745
0.0470347
0.0499117
0.0531584
0.0568062
0.0606495
0.0627271
0.0609305
0.0548069
0.0422623
0.0333314
-0.0218545
-0.0643117
-0.105435
-0.142373
-0.174584
-0.190034
-0.198026
-0.166599
0.217461
0.0305292
-0.082003
-0.0217057
0.0359593
0.0647874
0.0663266
0.0528529
0.0374752
0.0274158
0.013685
0.0360752
0.0380435
0.0399283
0.0413632
0.0410475
0.0728332
0.0649846
0.034134
0.0238415
0.00402178
-0.0245269
-0.0762845
-0.124046
-0.165128
-0.182823
-0.191715
-0.179255
-0.163018
-0.146965
0.27105
-0.0358225
-0.0658556
-0.0212391
0.0259192
0.0530987
0.0575931
0.0479657
0.0349532
0.0250467
0.0121438
0.0225705
0.0234544
0.0236442
0.0222099
0.0186718
0.0105175
0.00635198
-0.00820232
-0.0285882
-0.0596388
-0.104456
-0.173928
-0.193525
-0.260572
-0.260454
-0.222783
-0.175577
-0.138572
-0.112061
0.193058
-0.051905
-0.0604656
-0.0217975
0.0176252
0.0425919
0.0491233
0.0427685
0.0320981
0.0227083
0.0106587
-0.000184963
-0.000489477
-0.00175947
-0.00475822
-0.010359
-0.018496
-0.0303601
-0.0518866
-0.0855068
-0.138145
-0.208212
-0.249197
-0.278876
-0.410311
-0.368043
-0.250123
-0.176969
-0.113287
-0.06999
0.248995
-0.0876839
-0.0661073
-0.0234908
0.0108118
0.0333229
0.0410351
0.0373422
0.0288572
0.0202737
0.00924395
-0.0310543
-0.0317131
-0.0334737
-0.0368919
-0.0428442
-0.0527312
-0.0684221
-0.0880726
-0.128424
-0.183885
-0.261194
-0.352915
-0.438075
-0.498715
-0.462907
-0.322114
-0.151213
-0.0864114
-0.0299728
0.0368809
-0.160188
-0.0771956
-0.0253889
0.00541265
0.0253124
0.0334336
0.0317782
0.0252502
0.0176867
0.0078842
-0.0607161
-0.0613695
-0.0630381
-0.0662384
-0.071653
-0.0803442
-0.0941027
-0.115796
-0.148326
-0.195431
-0.260285
-0.342077
-0.426009
-0.485699
-0.453101
-0.317016
-0.155978
-0.0573395
0.00034068
0.0675426
-0.298674
-0.0587923
-0.00139559
0.00153966
0.0185578
0.026397
0.0261504
0.0213212
0.0149341
0.00655225
-0.0773607
-0.0785896
-0.080386
-0.0827603
-0.0873886
-0.0939639
-0.104009
-0.118951
-0.141211
-0.172032
-0.210334
-0.25933
-0.307802
-0.332981
-0.28897
-0.216987
-0.0998448
-0.0309333
0.00733171
0.349203
-0.0126407
-0.0375781
-0.0104676
-0.0009524
0.0130402
0.0199437
0.0205152
0.0171152
0.0120128
0.00521921
-0.0787272
-0.0811
-0.0883603
-0.0880677
-0.0878796
-0.0905217
-0.0968939
-0.101601
-0.116565
-0.122792
-0.0598027
-0.14566
-0.0319747
-0.158311
-0.136458
-0.0861209
-0.0365034
-0.00998289
0.00372524
-0.000590414
-0.0167474
-0.0213946
-0.0176877
-0.00146501
0.0086787
0.014039
0.0148977
0.0126651
0.00891767
0.00385861
-0.0532371
-0.00905759
0.000232198
-0.053165
-0.0698232
-0.0691527
-0.0711614
-0.0734884
-0.0771547
0.0935844
-0.0656524
-0.063827
-0.0498342
-0.0584821
-0.0388967
-0.0157703
0.0211873
0.00518172
0.00386187
-0.00222155
-0.00833426
0.0126518
-0.00944652
-0.000425232
0.00518456
0.00855157
0.00926213
0.00797491
0.00563338
0.00244369
-0.0157203
-0.0242779
-0.0289767
-0.0293631
-0.0269625
-0.0350833
-0.0438385
-0.0530437
-0.0401909
-0.0431549
-0.0273222
-0.0172331
-0.0168837
0.0665853
0.0125209
0.00735313
0.00751387
0.00768757
0.00338086
-0.000794797
-0.00363448
-0.00472856
-0.00245807
0.000344058
0.00205091
0.00323522
0.00350186
0.00300732
0.00212785
0.000945514
91.6041
88.8786
88.1519
86.7324
84.8143
83.4965
83.5378
85.882
89.9973
93.8214
96.2195
97.2311
97.2857
96.8063
96.0937
95.3264
94.5983
93.9514
93.4003
92.9441
92.575
92.2821
92.0543
91.8813
91.7539
91.6639
91.604
91.5679
91.5504
91.5468
93.4858
89.3076
88.3291
87.2006
85.2804
83.7327
83.3271
85.0309
88.8912
92.9795
95.774
97.1011
97.3511
96.9692
96.2906
95.5214
94.7739
94.1008
93.5221
93.0402
92.6483
92.3359
92.0918
91.9053
91.7667
91.6676
91.6005
91.5589
91.537
91.5303
93.5619
89.2792
88.3292
87.2095
85.2765
83.7159
83.2759
84.9502
88.8564
93.0083
95.8324
97.1588
97.3957
96.999
96.3067
95.525
94.766
94.0831
93.4965
93.0086
92.6122
92.2967
92.0504
91.8624
91.7227
91.623
91.5556
91.5138
91.492
91.4853
93.6869
89.2371
88.3305
87.2241
85.269
83.6869
83.191
84.8127
88.7871
93.0396
95.9159
97.249
97.4703
97.0532
96.3408
95.5393
94.7613
94.0614
93.4608
92.9621
92.5578
92.2366
91.9864
91.7956
91.6543
91.5537
91.4859
91.4441
91.4224
91.4159
93.8589
89.1814
88.3332
87.2444
85.2578
83.6462
83.0731
84.6188
88.6883
93.0797
96.026
97.3699
97.5731
97.1305
96.3916
95.5634
94.7591
94.0355
93.4155
92.9019
92.4865
92.1572
91.9012
91.7067
91.5629
91.4609
91.3924
91.3504
91.3288
91.3223
94.0687
89.1118
88.3381
87.2708
85.2426
83.5944
82.9225
84.3636
88.5582
93.1308
96.165
97.5218
97.7017
97.2267
96.4544
95.5931
94.7565
94.0036
93.3596
92.8273
92.398
92.0585
91.795
91.5952
91.4479
91.3435
91.2735
91.2307
91.2088
91.2025
94.3284
89.0282
88.3459
87.3035
85.2233
83.5323
82.7394
84.0406
88.3938
93.1937
96.3349
97.7058
97.8553
97.3392
96.5267
95.6264
94.7521
93.9648
93.2921
92.7377
92.2917
91.9398
91.6672
91.4606
91.3082
91.2001
91.1276
91.0833
91.0607
91.0544
94.65
88.9303
88.3578
87.3432
85.1998
83.4611
82.5249
83.6413
88.1914
93.2695
96.5376
97.9234
98.034
97.4674
96.6077
95.6629
94.7453
93.9179
93.212
92.6319
92.1666
91.8002
91.5168
91.3019
91.1431
91.03
90.9536
90.9068
90.883
90.8767
95.0533
88.8179
88.3748
87.3905
85.1719
83.3821
82.2805
83.1547
87.9465
93.3599
96.7755
98.1765
98.238
97.6108
96.6966
95.702
94.7355
93.8619
93.1176
92.5084
92.0213
91.6385
91.3425
91.118
90.9516
90.8323
90.7511
90.7007
90.675
90.6684
95.5086
88.6914
88.3985
87.446
85.1391
83.2967
82.0086
82.5661
87.654
93.467
97.0511
98.4671
98.468
97.7689
96.7928
95.743
94.7217
93.7951
93.0071
92.3652
91.854
91.4529
91.143
90.9077
90.7329
90.6068
90.5198
90.4645
90.4355
90.428
96.0114
88.5509
88.4303
87.5107
85.1011
83.2068
81.713
81.8564
87.3078
93.5932
97.3678
98.7979
98.7245
97.9406
96.8951
95.7851
94.7032
93.7157
92.8779
92.2002
91.6627
91.2415
90.9162
90.6693
90.4858
90.3528
90.2598
90.1988
90.164
90.152
96.5832
88.3971
88.4722
87.5856
85.0573
83.1141
81.3995
80.9995
86.9018
93.7409
97.729
99.172
99.0081
98.1249
97.002
95.8274
94.679
93.6209
92.727
92.0107
91.4448
91.0019
90.6597
90.4005
90.2082
90.069
89.9708
89.9042
89.8618
89.8381
97.2427
88.2302
88.5261
87.6718
85.0071
83.0208
81.0756
79.9597
86.4297
93.9131
98.1389
99.593
99.3198
98.3202
97.1116
95.8682
94.6478
93.5077
92.5507
91.7935
91.1979
90.7313
90.3707
90.098
89.8969
89.7524
89.6507
89.58
89.5318
89.5045
98.0091
88.0508
88.5946
87.7708
84.9495
82.9286
80.7519
78.6841
85.8869
94.1123
98.6019
100.065
99.6604
98.5244
97.2214
95.9057
94.6085
93.3715
92.3444
91.5455
90.919
90.4268
90.0452
89.7573
89.547
89.3982
89.2953
89.2245
89.1744
89.2412
98.9056
87.8594
88.6801
87.8844
84.8836
82.8392
80.442
77.0917
85.2739
94.3409
99.123
100.595
100.031
98.7347
97.3281
95.9371
94.5592
93.2061
92.103
91.2627
90.605
90.0849
89.6788
89.3727
89.1513
88.9978
88.895
88.8275
88.7838
88.7604
99.9602
87.6579
88.7851
88.0148
84.808
82.7534
80.1678
75.103
84.6014
94.6003
99.7069
101.187
100.434
98.9474
97.4275
95.9585
94.4953
93.0016
91.821
90.9407
90.2529
89.7021
89.2662
88.9371
88.7016
88.5414
88.4377
88.3738
88.3371
88.3193
101.207
87.4489
88.9114
88.1646
84.7214
82.6708
79.9489
72.6823
83.8781
94.8928
100.359
101.849
100.871
99.1572
97.5141
95.9648
94.403
92.7386
91.4936
90.5741
89.8598
89.2754
88.8017
88.4424
88.1887
88.0203
87.9157
87.8566
87.8288
87.8225
102.686
87.2362
89.0607
88.3367
84.6224
82.5893
79.8105
69.6857
83.1029
95.2258
101.084
102.59
101.345
99.3564
97.5788
95.9513
94.2413
92.3665
91.1114
90.1551
89.4238
88.8033
88.2788
87.8784
87.6021
87.4257
87.3234
87.2746
87.2625
87.2739
104.449
87.0261
89.2338
88.5344
84.5095
82.5045
79.8173
65.9039
82.3179
95.6011
101.887
103.418
101.86
99.5331
97.6038
95.9145
93.9159
91.8748
90.6561
89.6726
88.9452
88.2879
87.6909
87.231
86.9279
86.7479
86.6573
86.6318
86.6489
86.6898
106.556
86.8287
89.4314
88.7609
84.3813
82.4052
80.0835
61.1673
81.6257
95.9849
102.777
104.34
102.42
99.6687
97.5786
95.8509
93.361
91.4133
90.1051
89.1096
88.4284
87.7402
87.0332
86.4806
86.1469
85.9768
85.9169
85.9355
86.0017
86.0882
109.087
86.6612
89.6529
89.0186
84.2391
82.2675
80.7319
55.9745
81.2178
96.3121
103.757
105.365
103.03
99.7337
97.6258
95.7612
92.6961
91.0149
89.4373
88.4366
87.8875
87.1869
86.3091
85.6077
85.2326
85.092
85.0881
85.1776
85.3189
85.4744
112.137
86.5517
89.8973
89.3062
84.0971
82.0569
81.8543
51.8405
81.8638
96.5388
104.829
106.494
103.691
99.6758
97.8378
95.6366
92.1445
90.6183
88.6346
87.6137
87.363
86.6587
85.5184
84.6057
84.1588
84.0516
84.1325
84.3315
84.5896
84.854
115.825
86.5456
90.163
89.6168
84.3314
81.7067
83.301
1.77055
84.2421
96.6151
105.996
107.724
104.4
99.3827
98.1262
95.5276
91.858
90.2497
87.6476
86.5045
86.8614
86.146
84.6025
83.4124
82.8646
82.7966
82.9993
83.361
83.7979
84.2328
120.299
86.7139
90.4482
89.9388
84.3626
81.0815
79.1903
0.96878
91.4673
96.2773
107.265
109.041
105.128
98.601
98.6363
95.5553
91.8714
89.9776
86.2969
84.2092
86.0702
85.6159
83.5001
81.9229
81.2597
81.2722
81.6382
82.2181
82.9198
83.6145
125.732
87.1658
90.7502
90.4205
84.282
80.143
-0.0759943
0.597737
35.4821
95.2508
108.673
110.42
105.778
96.7759
99.3158
95.7645
92.1462
89.8819
84.2916
79.7605
84.669
85.0695
82.1396
80.0371
79.205
79.4236
79.9798
80.8027
81.9302
83.0168
132.323
88.0628
91.0599
91.1916
84.4808
0.992875
0.00497693
0.416662
3.73414
94.3087
110.293
111.822
106.087
93.5237
100.086
96.0672
92.5831
90.0882
82.8648
74.7996
83.9501
84.5161
79.8601
77.9068
76.4746
77.1294
78.012
78.729
80.9698
82.5477
140.284
89.6326
91.3544
92.3533
56.5159
0.0114266
0.0488653
0.381743
2.15442
94.6173
112.134
113.18
106.107
92.0849
101.068
96.2888
92.9866
90.8173
84.1801
73.8777
84.9619
48.9006
0.207897
0.206165
0.154411
0.159175
0.155617
0.148887
0.138891
0.131763
149.803
92.1565
91.5795
94.2218
0.0266205
0.0224103
0.0613392
0.370215
0.503184
95.5927
114.19
114.43
106.729
94.0983
102.404
96.3061
93.2254
91.8184
87.7141
4.28189
0.140201
0.165068
0.173233
0.174095
0.16199
0.158532
0.15525
0.147689
0.14174
0.13864
160.921
95.8695
91.5247
66.2035
0.0278175
0.0240011
0.0633231
0.327571
0.989885
97.3054
115.959
115.521
107.456
98.8416
102.978
96.0448
93.3064
92.6848
0.0350498
0.104142
0.143442
0.160078
0.169396
0.169417
0.1617
0.166573
0.149854
0.14252
0.136449
0.156104
173.424
100.774
90.3991
0.0143141
0.0208183
0.0231235
0.0642627
0.268391
1.08091
97.1632
119.078
116.546
106.946
103.803
102.14
94.9043
94.2917
0.126003
0.037526
0.0809155
0.120401
0.151083
0.166679
0.16785
0.157254
0.161124
0.172369
0.134839
0.130478
0.12834
91.5545
91.5759
91.615
91.6768
91.7675
91.8941
92.065
92.2906
92.5821
92.9516
93.4087
93.9568
94.587
95.2689
95.9431
96.5098
96.8078
96.5806
95.4763
93.1327
89.4598
85.323
82.6611
82.4899
84.4597
88.5278
94.4258
100.907
106.804
110.046
91.5353
91.553
91.5874
91.6433
91.7265
91.8437
92.0032
92.215
92.4901
92.8408
93.2777
93.8065
94.4217
95.099
95.7866
96.3956
96.783
96.7181
95.8675
93.8542
90.4695
86.2662
83.0592
82.3041
83.7818
87.3273
92.8718
99.3179
105.45
109.66
91.4905
91.5084
91.543
91.599
91.6824
91.8
91.9604
92.1735
92.4512
92.8059
93.2486
93.7854
94.4109
95.1003
95.8006
96.4221
96.8213
96.7672
95.9223
93.8992
90.4725
86.2047
82.9762
82.2552
83.7492
87.3016
92.8627
99.3178
105.459
109.686
91.4212
91.4392
91.4738
91.53
91.6134
91.7315
91.8932
92.1089
92.391
92.7526
93.2053
93.756
94.3997
95.111
95.834
96.4757
96.8907
96.8474
96.0046
93.9583
90.4611
86.0918
82.8379
82.1755
83.6946
87.2587
92.8487
99.3196
105.477
109.737
91.3278
91.346
91.3807
91.4368
91.5205
91.6393
91.8027
92.0222
92.3107
92.6822
93.1491
93.7192
94.3886
95.1308
95.8859
96.5553
96.9897
96.957
96.1135
94.0342
90.4411
85.9313
82.6449
82.0658
83.6181
87.1984
92.8297
99.3232
105.503
109.811
91.2082
91.2268
91.2619
91.3184
91.4026
91.5226
91.6886
91.9131
92.2101
92.5943
93.0793
93.6743
94.3764
95.1577
95.9525
96.6554
97.1133
97.0939
96.25
94.1297
90.4137
85.7191
82.3939
81.927
83.5198
87.1201
92.8059
99.3286
105.538
109.909
91.0606
91.0798
91.1158
91.1732
91.2585
91.3803
91.5499
91.7809
92.0884
92.4882
92.9952
93.6201
94.3619
95.1907
96.032
96.7733
97.2591
97.2576
96.4152
94.2466
90.3789
85.4492
82.0801
81.7603
83.3996
87.0235
92.7776
99.3356
105.581
110.03
90.8836
90.9039
90.9411
90.9998
91.0866
91.211
91.3852
91.6242
91.9444
92.3628
92.8954
93.5555
94.3444
95.2297
96.1244
96.9083
97.4266
97.4482
96.6106
94.3869
90.3368
85.1141
81.698
81.5674
83.2576
86.9081
92.7453
99.3442
105.633
110.175
90.6764
90.698
90.7364
90.7967
90.8855
91.013
91.1929
91.4415
91.7766
92.2164
92.7785
93.4785
94.3225
95.2748
96.23
97.0603
97.6155
97.6659
96.8379
94.5533
90.2879
84.7038
81.2403
81.351
83.0938
86.7733
92.7095
99.3542
105.691
110.345
90.4375
90.4606
90.4989
90.5613
90.653
90.7845
90.9711
91.231
91.5835
92.0477
92.6426
93.387
94.2943
95.3263
96.3489
97.2288
97.8256
97.911
97.0989
94.749
90.2332
84.2054
80.6976
81.114
82.9081
86.6184
92.6712
99.3655
105.757
110.539
90.1647
90.1905
90.2219
90.2901
90.3868
90.5232
90.7178
90.9908
91.3631
91.8549
92.4858
93.2783
94.2575
95.3847
96.4809
97.4129
98.0563
98.1841
97.3964
94.9779
90.1743
83.6027
80.0579
80.8608
82.6998
86.4423
92.6315
99.3778
105.827
110.758
89.8945
90.0637
89.8918
89.9826
90.0854
90.2276
90.4309
90.7189
91.1138
91.6363
92.3064
93.1493
94.2081
95.4513
96.6248
97.6107
98.3071
98.4854
97.733
95.2447
90.1132
82.8744
79.3053
80.5969
82.4682
86.2441
92.592
99.3909
105.902
111.003
89.5036
89.5439
89.5673
89.6398
89.7479
89.8957
90.1082
90.4132
90.8339
91.3905
92.1025
92.9963
94.14
95.5277
96.7776
97.8198
98.5772
98.8153
98.1124
95.555
90.0535
81.9939
78.4176
80.3304
82.2118
86.0225
92.5547
99.4044
105.979
111.274
89.1484
89.1506
89.1863
89.2586
89.3688
89.5221
89.7465
90.0721
90.522
91.1161
91.8729
92.8159
94.0409
95.6159
96.9322
98.0362
98.866
99.1742
98.5389
95.9159
89.9996
80.9272
77.3628
80.0728
81.9283
85.7762
92.5227
99.4177
106.057
111.571
88.7424
88.7523
88.7833
88.8435
88.9419
89.1006
89.3434
89.6943
90.1766
90.8116
91.6163
92.6066
93.8842
95.7134
97.074
98.2556
99.1728
99.5624
99.0166
96.3356
89.9576
79.6328
76.0946
79.8432
81.6139
85.5033
92.4997
99.4302
106.129
111.894
88.3153
88.3287
88.3611
88.4014
88.4559
88.6298
88.8997
89.2794
89.7964
90.475
91.3311
92.3693
93.6008
95.7924
97.175
98.4731
99.4979
99.9799
99.5509
96.8242
89.936
78.0643
74.5693
79.6709
81.2633
85.2019
92.4911
99.441
106.206
112.243
87.8323
87.86
87.9152
87.9949
87.8566
88.1189
88.4208
88.8269
89.379
90.1038
91.014
92.106
93.0951
95.7191
97.19
98.6862
99.842
100.426
100.148
97.3942
89.9472
76.176
72.8074
79.585
80.8682
84.8695
92.5041
99.4492
106.285
112.618
87.3015
87.3462
87.3972
94.3686
87.1791
87.6079
87.9107
88.3324
88.9201
89.6942
90.6589
91.8174
92.6348
95.1876
97.0651
98.897
100.207
100.899
100.815
98.0613
90.009
73.9429
70.8353
79.6129
80.418
84.5026
92.5476
99.4534
106.361
113.016
86.7447
86.8141
86.907
86.9999
86.9344
87.0924
87.3589
87.785
88.4126
89.2416
90.2567
91.4963
92.5128
94.0641
96.7901
99.1173
100.597
101.396
101.559
98.8383
90.1462
71.4315
68.5937
79.8335
79.8968
84.0966
92.6297
99.4523
106.429
113.434
86.1821
86.2809
86.3755
86.4412
86.4543
86.5384
86.7426
87.1677
87.8484
88.7418
89.7962
91.101
92.4847
92.7556
96.4846
99.3699
101.014
101.911
102.388
99.7386
90.3923
68.9732
66.2598
80.3276
79.28
83.6448
92.755
99.4447
106.483
113.869
85.6273
85.7707
85.8801
85.923
85.9051
85.9345
86.019
86.4587
87.2171
88.1916
89.2619
90.6074
92.3956
91.9325
96.3912
99.685
101.465
102.432
103.311
100.797
90.7951
67.5344
64.038
81.2135
78.539
83.144
92.924
99.4287
106.518
114.313
85.1026
85.3234
85.4698
85.4794
85.3468
85.3309
85.2508
85.6154
86.492
87.5786
88.622
90.0156
92.2425
92.041
96.7036
100.086
101.954
102.937
104.333
102.038
91.4063
68.8856
62.0981
82.5723
77.6366
82.6183
93.1329
99.402
106.525
114.755
84.6361
84.9917
85.2181
85.19
84.8587
84.3878
84.2242
84.5466
85.609
86.8518
87.7862
89.2826
92.1095
92.9352
97.3858
100.579
102.486
103.393
105.456
103.459
92.2731
79.4687
38.4182
84.3253
76.541
82.148
93.371
99.3606
106.494
115.177
84.2577
84.8381
85.2234
85.1415
84.4334
83.4596
82.8653
83.1518
84.5372
85.9681
86.4459
88.3278
92.062
94.0708
98.2
101.172
103.074
103.736
106.678
105.052
93.1847
44.7202
1.08626
85.861
75.42
81.8183
93.6204
99.2986
106.411
115.556
84.0035
84.9414
85.689
85.5857
84.1007
82.2166
81.0647
81.2947
83.3917
84.9317
83.9566
87.0082
92.1275
95.1683
98.9392
101.917
103.749
103.866
107.98
106.822
94.0388
-4.41586
1.05549
27.9349
49.0117
82.2061
93.8611
99.2074
106.258
115.857
83.9177
85.1651
87.0229
87.3193
83.804
80.2903
78.4904
78.4045
82.2464
83.7601
81.3253
85.5071
92.3682
96.1579
99.7812
102.947
104.582
103.615
109.32
108.853
94.8296
1.74599
1.02455
0.184688
0.403052
82.7126
94.1132
99.077
106.013
116.026
0.137837
0.125851
0.126209
0.12195
0.115991
0.115989
0.106058
11.9705
78.6356
83.0234
79.3028
84.3376
93.0098
97.0921
100.995
104.373
105.708
102.641
110.651
110.949
95.9004
1.46861
0.956359
0.28183
0.345241
19.267
94.3593
98.9018
105.652
115.988
0.136217
0.133196
0.128837
0.124935
0.129863
0.117577
0.123134
0.154233
0.143946
0.0949221
59.5048
83.7135
94.623
97.9747
102.36
106.138
107.357
101.026
111.931
113.4
96.6168
1.48903
0.873613
0.344254
0.309456
0.157736
94.5066
98.7155
105.107
115.624
0.139971
0.133538
0.128845
0.124521
0.120772
0.113202
0.119638
0.134924
0.124882
0.0823559
0.0739448
72.1786
98.1422
98.471
103.121
108.038
109.14
101.26
113.367
113.939
97.0157
1.58053
0.800987
0.369706
0.287851
0.150318
92.5873
98.659
104.412
114.735
0.130174
0.128113
0.126042
0.124327
0.133189
0.217724
0.109176
0.117611
0.106544
0.0403549
0.0323857
0.185572
105.135
98.7431
103.125
109.629
109.754
102.967
115.282
114.636
93.4215
1.78676
0.740067
0.374583
0.27268
0.15091
2.74782
98.9679
103.766
112.931
205.298
106.477
-0.234927
0.00835071
0.0164884
0.0222931
0.0666309
0.202604
0.786842
103.092
117.723
117.664
105.287
107.496
100.497
91.3711
0.644783
0.188857
0.0263805
0.0461036
0.0793528
0.131489
0.159372
0.163709
0.150851
0.164711
0.135688
0.125556
0.121759
0.151863
232.229
109.836
0.146669
0.00138253
0.0144547
0.0220103
0.0713513
0.181844
1.36583
92.0512
116.809
118.638
104.445
109.502
98.4412
86.9202
0.179991
0.345817
0.0161757
0.0341483
0.0579002
0.11696
0.152172
0.154751
0.143863
0.131571
0.125713
0.117455
0.115359
0.119932
78.8807
113.69
0.120972
-0.00658011
0.0124157
0.0218328
0.0986499
0.141151
3.44802
120.333
116.249
119.969
104.674
111.795
94.2503
-0.485429
0.130002
0.0403221
0.0127929
0.0320432
0.0396124
0.10079
0.161852
0.153609
0.135365
0.122542
0.11357
0.10546
0.103299
0.116933
89.5477
119.801
0.0912516
-0.01439
0.0103995
0.0217456
0.0384032
0.10547
-3.4773
86.6358
115.334
121.222
106.113
115.28
85.2238
0.000139338
0.29001
0.034545
0.0146138
0.0352841
0.0281607
0.0864336
0.125954
0.135809
0.125437
0.110856
0.0998079
0.0900605
0.0812695
0.114032
3.07256
1.06773
0.0639676
-0.0210943
0.00845209
0.0216975
0.0453485
0.0710357
-3.34275
47.5594
136.923
122.141
107.851
120.662
3.09825
-0.0333569
0.20571
0.0547735
0.0173975
0.0259654
0.0293149
0.0757311
0.108198
0.12326
0.110687
0.0965703
0.08502
0.0750361
0.0598297
6.59842
-0.170007
-0.0195235
0.0406671
-0.0260985
0.00663739
0.0216431
0.0476844
0.0362457
-2.6091
4.43604
135.76
122.153
108.626
125.863
0.0736399
-0.00445857
0.0741799
0.0623782
0.0183991
0.0253838
0.0319641
0.0749765
0.0997976
0.102996
0.0936431
0.0805098
0.0705146
0.0626253
0.0547939
2.95959
-0.0321392
-0.057806
0.0217994
-0.0292505
0.00501299
0.0215568
0.048201
0.0219054
-1.84248
4.87102
126.633
123.405
107.883
6.98715
0.222804
-0.0128299
0.0543932
0.0656276
0.0154996
0.110612
0.031802
0.0778569
0.0735731
0.083256
0.0758523
0.0637574
0.0618036
0.0524408
0.0548022
0.0612177
-0.0802834
-0.0584076
0.00549848
-0.0308022
0.00362662
0.021419
0.0325361
0.0247138
-1.96258
2.66514
134.103
126.525
94.9723
-0.308003
0.208187
-0.00898048
0.0534312
0.0767822
0.0128773
0.105786
0.0124613
0.0869145
0.2026
0.0689715
0.0596122
0.0481241
0.0455851
0.0449226
0.0475628
0.0510714
-0.0486411
-0.0575502
-0.00784172
-0.0311453
0.00251249
0.021246
0.0336964
0.0337756
-1.28216
2.32788
146.479
136.1
-0.0771884
-0.108471
0.0375305
-0.00615184
0.0445612
0.228941
0.0116271
0.0210051
0.0164499
0.0488046
0.0760259
0.0570513
0.0471595
0.0359144
0.0327334
0.0364208
0.0382603
0.0422786
-0.0439467
-0.0565181
-0.0184558
-0.0306425
0.00166736
0.0210486
0.0387037
0.0583339
-0.648194
0.824752
-0.558886
12.817
-0.0816681
-0.122503
-0.0306313
-0.00737351
0.0423269
0.196975
0.0395308
0.029366
0.033954
0.0479234
0.0586952
0.0489549
0.0440956
0.0282091
0.0247771
0.025025
0.0292721
0.0345753
-0.0311034
-0.0552862
-0.0263798
-0.0295694
0.00105482
0.0208319
0.0404524
0.0611508
-0.277725
0.213176
-0.3627
-0.240759
-0.0870713
-0.109903
-0.0727215
-0.0144432
0.0463413
0.0612005
0.0515558
0.0447975
0.0516761
0.0531365
0.053959
0.0447501
0.0326479
0.0236744
0.0207804
0.0310412
0.0339571
0.030402
0.0412866
-0.0536807
-0.0316614
-0.0281285
0.000649336
0.0206136
0.0441363
0.0668348
-0.100628
-0.0398906
-0.285754
-0.333533
-0.092194
-0.0972176
-0.132793
0.00538019
0.0560299
0.061457
0.0608382
0.0613632
0.06109
0.0579817
0.0543024
0.0438932
0.0323741
0.023993
0.0192304
0.0191843
0.0231746
0.0279287
-0.0550973
-0.0513941
-0.0344804
-0.0264328
0.000439526
0.0203965
0.0438507
0.0782158
0.0170027
-0.625052
-0.243012
-0.0314138
-0.0763224
-0.0698163
-0.21108
0.0608482
0.0844491
0.0636898
0.0643291
0.323248
0.0663451
0.0599423
0.0535789
0.0451803
0.0350109
0.035135
0.0230797
0.0228819
0.0254854
0.0295791
-0.0362816
-0.0483961
-0.0351871
-0.0245356
0.000398995
0.0201471
0.0527515
0.0932125
0.0614569
-0.457101
-0.281908
0.141006
-0.104613
-0.0521708
-0.243401
2.35701
0.0735437
0.0649872
0.0699399
0.34045
0.0724697
0.062078
0.0541255
0.0468915
0.0383464
0.0321953
0.0288254
0.0286458
0.0301264
0.0339545
-0.0264945
-0.0451561
-0.034259
-0.022511
0.000501006
0.0198257
0.0432674
0.0884728
0.0772321
-0.231704
-0.261248
0.153028
-0.0605726
0.00310954
-0.11091
2.2492
0.0542579
0.066509
0.0734123
0.0753814
0.074237
0.0628667
0.0697649
0.0611558
0.0399263
0.0370036
0.0351812
0.0381484
0.037054
0.0403945
-0.0133704
-0.0416182
-0.0322402
-0.0204097
0.000713892
0.0193907
0.0396046
0.0785565
0.0574027
-0.137645
-0.189642
-0.175239
-0.0655472
-0.0545027
-0.0127485
0.0327659
0.0441918
0.0607239
0.0678497
0.0687512
0.0680118
0.0622698
0.0516975
0.0436349
0.0409112
0.04173
0.044279
0.0482986
0.0430755
0.0226112
0.0388988
-0.0377647
-0.0295996
-0.0182719
0.000991885
0.0188038
0.0383013
0.070417
0.112171
-0.0990708
-0.0867694
-0.124621
-0.0805984
-0.0593891
-0.0474035
0.0988749
0.0388111
0.0510509
0.0651537
0.0590221
0.0585726
0.0567152
0.0493248
0.0432239
0.0414232
0.0415805
0.0418394
0.172764
0.427072
0.478702
0.00230933
-0.0321936
-0.0266855
-0.0161604
0.00129979
0.0180399
0.0362231
0.057445
0.0618921
-0.0592418
0.0332477
-0.0470428
-0.087294
-0.0681162
-0.0474355
0.0923447
0.0269853
0.0384539
0.0479187
0.0481881
0.0489995
0.0494434
0.0458081
0.041367
0.0398384
0.0383969
0.0330926
0.0262598
0.0470863
0.0657638
-0.0419108
-0.0261827
-0.0237597
-0.0141116
0.00161904
0.0170765
0.0336304
0.0479932
0.0299548
-0.0250024
0.063914
-0.0530188
-0.0992995
-0.0935459
-0.0586875
-0.0200488
0.00992608
0.0250581
0.0332383
0.0374919
0.105744
0.0431004
0.0394681
0.0386748
0.0467944
0.0413457
0.0412295
0.044865
0.050901
0.0568132
-0.016697
-0.0204216
-0.020978
-0.0121544
0.00191641
0.0158955
0.0299431
0.0393703
0.0144762
-0.00205036
0.0225577
-0.0436147
-0.122123
-0.129729
-0.0875608
-0.0412552
-0.00723149
0.0120668
0.0225246
0.0291559
0.0847911
0.0358324
0.0319812
0.0338708
0.0356795
0.0376287
0.0409787
0.0444641
0.0478554
0.051032
-0.00466278
-0.0155602
-0.0184397
-0.0103165
0.00215597
0.0144889
0.026924
0.0310629
0.016972
0.00683705
0.011901
-0.0360594
-0.146665
-0.167332
-0.125546
-0.0641728
-0.0166715
0.00137087
0.0123005
0.0186124
0.0212804
0.0238016
0.0263373
0.0286022
0.0309916
0.0336087
0.0364141
0.0392362
0.0419162
0.0444546
0.0117843
-0.0120374
-0.0161706
-0.00860985
0.00231299
0.0128686
0.0219884
0.0245435
0.0166261
0.0164219
-0.0112571
0.476298
-0.155512
-0.185247
-0.150658
-0.0811698
-0.0302339
-0.00157889
0.00407769
0.00973038
0.013577
0.0168564
0.0197243
0.02232
0.0249078
0.0275497
0.0301125
0.0325417
0.0348209
0.0369167
0.0234381
-0.0114028
-0.0140844
-0.00704002
0.00236023
0.0110555
0.0174823
0.018736
0.0132462
0.00110297
-0.0355185
0.650849
-0.138227
-0.170527
-0.142843
-0.0795722
-0.0293207
-0.00706816
0.00395624
0.00199895
0.00444666
0.0070055
0.00976459
0.0125433
0.0152244
0.0177908
0.0201424
0.0222556
0.0241501
0.0257658
-0.0234192
-0.0120946
-0.0120361
-0.00560799
0.00228004
0.00904502
0.0156838
0.0125034
0.00548602
-0.00879239
-0.0360707
-0.0695019
-0.10958
-0.126326
-0.0998832
-0.0525633
-0.0192617
-0.00437763
-0.00338523
-0.00598112
-0.00749691
-0.00770351
-0.00654578
-0.0044275
-0.00185797
0.000576717
0.0026245
0.00425761
0.00549223
0.00625478
-0.0141059
-0.0117585
-0.00990862
-0.00432208
0.00206636
0.00692104
0.00925242
0.00369288
-0.00806733
-0.0302459
-0.0473051
-0.0641407
-0.0836622
-0.080342
-0.0613126
0.169056
-0.00380294
-0.00832402
0.0141911
0.00956354
-0.0233563
-0.0278449
-0.0306675
-0.0299567
-0.0286525
-0.0273463
-0.0254823
-0.0239995
-0.0230533
-0.0226655
-0.00804888
-0.00960354
-0.00771419
-0.00318882
0.00173833
0.00466029
0.00385935
-0.00598458
-0.0337888
-0.0715872
-0.0603267
-0.0588011
-0.0597339
-0.0138025
-0.0472654
-0.0265925
-0.0167724
-0.0205997
-0.0267944
-0.0342224
-0.0435826
-0.0472775
-0.0537065
-0.0599164
-0.0569136
-0.0607239
-0.0587281
-0.0562677
-0.0548307
-0.0541373
-0.00438197
-0.00700904
-0.00562659
-0.00221496
0.00134504
0.00249492
-0.00210231
-0.0175028
-0.0788864
-0.142763
-0.0781978
-0.0529075
-0.0460528
-0.0432985
-0.0397274
-0.0306742
-0.0280548
-0.00819093
-0.0119034
-0.0438252
-0.0588405
-0.0695462
-0.0736193
-0.0769567
-0.0776925
-0.0745579
-0.0493133
-0.072734
-0.0734251
-0.0739778
-0.00225644
-0.00471899
-0.00380438
-0.00140375
0.000959423
0.000780888
-0.00545737
-0.0248367
-0.0459391
-0.170791
-0.08881
-0.0470602
-0.0358687
-0.0312834
0.156655
-0.0255983
-0.0253299
-0.0309246
0.0280113
-0.0436192
0.0996125
-0.0207015
-0.0644381
-0.0684264
-0.0728903
-0.0686328
-0.0686788
-0.0775701
-0.0784743
-0.0793617
-0.00105423
-0.00285547
-0.00227631
-0.000750663
0.000645163
-0.00018117
-0.00631301
0.0359425
-0.00307313
-0.111478
-0.0703978
-0.0412885
-0.0303385
-0.024936
-0.0222995
-0.0110527
-0.0237564
-0.0300663
-0.0369644
-0.03991
-0.0397473
-0.0330819
-0.0370588
0.0407532
-0.0598222
-0.0576237
-0.0638937
-0.0632777
-0.0600593
-0.0572353
-0.000380459
-0.00120341
-0.000992398
-0.000260717
0.000378423
-0.000255128
-0.00400228
-0.0138049
-0.00865795
-0.0426555
-0.046736
-0.0389191
-0.0297161
-0.0224385
-0.0177249
-0.0155721
-0.00719723
-0.0209261
-0.024218
0.0101356
-0.0221272
-0.0238919
-0.0255204
-0.025905
-0.00627344
0.00547981
-0.0239364
-0.0264134
-0.0284067
-0.0299203
0.381334
0.120554
0.119678
0.118619
0.114712
0.101147
0.0998885
0.101378
0.0899424
0.0137442
-0.00343965
0.0518499
-1.64408
100.069
103.408
111.11
109.686
103.23
117.247
116.789
87.8731
1.95627
0.688711
0.369893
0.261265
0.148758
-0.119023
98.1442
103.143
109.843
0.124498
0.116384
0.114383
0.114866
0.109854
0.0988341
0.0948382
0.0933355
0.0771427
0.00729281
-0.0164239
0.0335702
0.0307055
99.0217
103.322
111.609
109.9
103.623
118.79
117.914
83.1604
1.92919
0.661407
0.365231
0.255565
0.147754
-0.0863686
4.03688
102.711
108.277
0.121391
0.126292
0.109854
0.111653
0.10282
0.0942184
0.0893304
0.0856949
0.0688988
0.00692894
-0.020681
0.0195925
0.120236
0.137155
102.847
112.067
109.086
103.263
121.017
118.632
81.6252
2.41147
0.631302
0.3591
0.24982
0.146674
-0.0584141
-0.0879485
102.063
108.038
0.119416
0.109266
0.106946
0.17438
0.0918061
0.0882815
0.0836949
0.0787118
0.0631467
0.0125952
-0.0189458
0.0171192
0.143615
0.134349
14.8487
113.81
109.719
105.589
123.311
120.611
-6.74503
1.73751
0.598925
0.351492
0.243955
0.145424
-0.0360431
-0.0575213
2.41974
109.039
0.0592007
0.101384
0.0982228
0.169943
0.0792568
0.0833753
0.078409
0.072585
0.0596856
0.0225144
-0.00764876
0.0231395
0.136857
0.115221
0.361426
116.653
108.369
107.377
124.786
120.47
-0.921578
2.43335
0.563206
0.342358
0.237864
0.143913
-0.0166221
-0.0282711
-0.0404735
110.233
-0.0560643
0.0795432
0.0861594
0.0813047
0.0824473
0.0823082
0.073503
0.0671822
0.0583
0.0315876
0.00987385
0.0233121
0.0443074
0.0874664
0.248277
-0.195399
107.626
109.547
125.217
120.85
-0.705457
0.879025
0.533653
0.33163
0.231456
0.142084
0.000732223
-0.00921193
-0.00107007
55.1688
0.0562056
0.0659708
0.0730808
0.0729959
0.0744891
0.0876961
0.0686769
0.0623538
0.0581333
0.0397757
0.0257325
0.0234911
0.0308727
0.0390762
0.091452
-0.279127
-0.279453
111.989
124.541
123.523
-1.39149
0.362744
0.480501
0.319228
0.224639
0.139912
0.0159339
0.00303694
0.0168867
-0.489468
0.0538607
0.0593877
0.0638667
0.0649895
0.068313
0.0743027
0.0539191
0.0737984
0.0574242
0.0445334
0.0360237
0.0545981
0.0128317
-0.0169401
-0.0182292
-0.323351
-0.297945
-0.284951
123.758
69.9693
-1.23644
-0.102491
0.431188
0.304997
0.217327
0.137366
0.0288997
0.0113242
0.0277409
-0.424937
0.0465534
0.0515917
0.0568939
0.0649213
2.07964
0.0491507
0.0525506
0.0579154
0.0782623
0.0451033
0.0397904
0.0232303
-0.00316213
-0.0633965
2.41606
-0.379388
-0.315881
-0.313222
-0.449647
-0.576394
-0.996163
-0.230767
0.372317
0.288973
0.209441
0.134421
0.0393289
0.0173131
0.0352969
-0.332139
0.0393322
0.04443
0.049733
0.0502048
0.049633
0.048961
0.0518641
0.0507936
0.0547512
0.0423845
0.0430754
0.0205684
-0.0106425
-0.0481223
3.08377
0.149957
-0.306708
-0.291007
-0.448579
-0.566454
-1.02044
-0.265376
0.325228
0.271112
0.20091
0.131055
0.0472047
0.0218108
0.0449001
-0.243592
0.0346762
0.0396852
0.0440926
0.0644446
0.048852
0.0508273
0.0500709
0.0465395
0.0409463
0.0386314
0.086796
0.0181705
-0.0110864
-0.03108
2.42517
-0.236925
-0.264243
-0.320599
-0.433691
-0.544253
-0.907221
-0.232327
0.273957
0.251499
0.191668
0.127256
0.0527952
0.0249524
0.035823
-0.167766
0.0328399
0.038438
0.0443272
0.0503861
0.0516782
0.0504839
0.0482767
0.0436959
0.0390769
0.0334498
0.0372538
0.0171367
-0.0111352
-0.0274821
1.59189
-0.198759
-0.246368
-0.296974
-0.444952
-0.516454
-0.815389
-0.221692
0.229296
0.230328
0.181668
0.123023
0.0565394
0.027148
0.036585
-0.108942
0.0345462
0.0398574
0.0459683
0.0510049
0.0530686
0.0509259
0.0481804
0.0429816
0.038859
0.0360934
0.0292161
0.0138964
-0.0108522
-0.0092167
0.175784
-0.185148
-0.226866
-0.323943
-0.452418
-0.435923
-0.680088
-0.252823
0.178823
0.207948
0.170899
0.118354
0.0588949
0.0287509
0.0361455
-0.065931
0.0386051
0.0438294
0.0505714
0.056395
0.057933
0.0609942
0.0554711
0.0620329
0.0453508
0.033436
0.0243056
0.0108387
-0.00978603
-0.0336245
-0.076982
-0.167224
-0.252925
-0.323779
-0.150642
-0.485809
-0.502664
-0.296762
0.133658
0.184822
0.159388
0.113244
0.0602005
0.0300269
0.0349791
-0.0365555
0.0426239
0.0506426
0.0613304
0.0637788
0.0683272
0.0593527
0.0572525
0.0677198
0.0418075
0.0336972
0.0228564
0.0328461
0.0142462
-0.0401561
-0.093492
-0.183913
-0.2468
0.0686948
-0.301372
-0.46718
-0.334384
-0.282911
0.0939647
0.161526
0.147218
0.107682
0.0606887
0.0311566
0.033467
-0.0176599
0.045943
0.0589524
0.0718561
0.0682136
0.0794745
0.05688
0.0478502
0.0436485
0.0464769
0.038624
0.0223608
0.0154966
-0.00401011
-0.0440908
-0.104272
-0.178051
-0.245588
0.20798
-0.355806
-0.443011
0.695969
-0.229675
0.059645
0.138709
0.134521
0.10166
0.0604992
0.0322283
0.031883
-0.00618036
0.0599892
0.0709829
0.0733986
0.0623346
0.060775
0.0618411
0.0640867
2.78812
0.0604472
0.0422336
0.025894
0.0222531
-7.97639e-05
-0.0444796
-0.10322
-0.192811
-0.24946
0.168411
-0.276957
-0.426402
-0.19163
-0.203331
0.0340294
0.116996
0.121465
0.0951914
0.0596723
0.0332376
0.0303894
0.000414711
0.0693643
0.071088
0.0694434
0.14793
0.0732306
0.0739391
0.0725268
0.0713112
0.0665466
0.0489196
0.0301074
0.00591394
-0.0165525
0.000210161
-0.0808814
-0.193816
-0.245649
-0.130571
-0.305401
-0.367892
-0.288622
-0.144983
0.0164465
0.0969205
0.108275
0.0883099
0.0581796
0.0340694
0.0290304
0.00399381
0.0608498
0.0637034
0.0665264
0.0697065
0.0726082
0.0753927
0.0771719
0.0748149
0.0718712
0.0547183
0.0339998
0.00469958
-0.0279887
-0.039811
-0.113475
-0.188274
-0.232472
0.102548
-0.230372
-0.3446
-0.309072
-0.104027
0.00555683
0.0788572
0.0951928
0.0810658
0.0559987
0.0345494
0.0277417
0.00580453
0.0541414
0.0575932
0.0618195
0.0691088
0.072326
0.0784105
0.077676
0.0742642
0.0672711
0.054329
0.0321073
-0.00100863
-0.0407162
-0.0753743
-0.123941
-0.178847
-0.218059
0.152852
-0.0926175
-0.235602
-0.322433
-0.0870304
-0.00105798
0.0629882
0.0824521
0.073541
0.0531485
0.0345079
0.026387
0.00659324
0.0470262
0.0498417
0.053055
0.0570198
0.0616675
0.0659513
0.0674978
0.0646549
0.0573043
0.0428439
0.0149895
-0.0226914
-0.0649381
-0.104558
-0.144051
-0.17747
-0.19682
-0.221005
-0.108398
-0.128997
-0.139736
-0.0723068
-0.00525223
0.0493026
0.0702798
0.0658405
0.0496966
0.0338437
0.0248074
0.00676961
0.0389676
0.0410833
0.0431428
0.0446336
0.0448849
0.0428317
0.0442873
0.0405089
0.0303314
0.0114418
-0.0259544
-0.0707341
-0.116673
-0.155258
-0.176587
-0.186449
-0.173075
-0.170066
-0.144407
-0.0595673
-0.0795855
-0.0603977
-0.00821868
0.0376579
0.0588657
0.0580727
0.045743
0.0324143
0.0229274
0.00655601
0.0271683
0.0283462
0.028866
0.0278463
0.0248195
0.0698131
0.0263974
0.00091569
-0.0201083
-0.0353059
-0.0984904
-0.160771
-0.201538
-0.23812
-0.232236
-0.203666
-0.166604
-0.134261
-0.117136
-0.0721895
-0.0616833
-0.0516125
-0.010765
0.0278331
0.0483548
0.0503597
0.0413728
0.0301986
0.0208142
0.00609135
0.0065635
0.00631966
0.00496338
0.00160479
-0.00454326
-0.0128677
-0.0219187
-0.0470724
-0.0821242
-0.133427
-0.20493
-0.196494
-0.266026
-0.374504
-0.322223
-0.214995
-0.160209
-0.10991
-0.0737483
0.558577
-0.0559549
-0.0502769
-0.0133532
0.0196114
0.0388486
0.0428225
0.0366621
0.0274396
0.0185609
0.00547724
-0.0228211
-0.0237029
-0.0257809
-0.0297147
-0.0365037
-0.0475328
-0.0643653
-0.0898248
-0.131336
-0.192433
-0.274805
-0.367496
-0.443379
-0.483668
-0.418202
-0.276171
-0.152921
-0.0779452
-0.0246403
0.159339
-0.109084
-0.0567346
-0.0155194
0.0128855
0.0304135
0.0355619
0.0316967
0.0242719
0.0162078
0.00478475
-0.0542234
-0.0550414
-0.0570509
-0.0608104
-0.0671551
-0.0774265
-0.0938287
-0.119358
-0.156794
-0.211406
-0.285284
-0.374712
-0.460249
-0.504009
-0.44227
-0.278932
-0.110816
-0.0476539
0.00511161
-0.0236665
-0.186837
-0.0284428
-0.0139389
0.00762317
0.0230808
0.028669
0.0265508
0.0207659
0.0137563
0.00405435
-0.0748182
-0.0760016
-0.0779371
-0.0807893
-0.0863843
-0.0943759
-0.10657
-0.125175
-0.152971
-0.191388
-0.239516
-0.30036
-0.355817
-0.356616
-0.337688
-0.214335
-0.0677386
-0.0233389
0.014865
0.58557
-0.0388262
-0.0382483
0.00965892
0.00381018
0.0168428
0.0221915
0.0212822
0.0169669
0.0111942
0.00329916
-0.0810271
-0.0837097
-0.0869474
-0.0878286
-0.0901895
-0.0952248
-0.103724
-0.115532
-0.129918
-0.145311
-0.15921
-0.18892
-0.200172
-0.201076
-0.164986
-0.0980652
-0.0221269
-0.00816803
0.0063245
0.0569577
-0.0198893
-0.0252203
-0.014386
0.00175104
0.0116441
0.016125
0.0159316
0.0129095
0.00850722
0.00251614
-0.0513925
0.0118381
0.00496161
-0.068554
-0.0726339
-0.0762097
-0.0781444
-0.0863601
-0.0937618
-0.0817243
-0.0807411
-0.07767
0.0475712
-0.073189
-0.0476029
-0.0205447
0.0208429
0.00345108
0.00270953
-0.00262227
-0.0115073
0.0266008
-0.00809505
0.00120334
0.00728599
0.0103935
0.0104926
0.00860349
0.00567515
0.00169349
-0.0284913
-0.0310606
-0.039657
-0.0394417
-0.0383933
-0.0434917
-0.0345645
-0.0479716
-0.0453842
0.0302188
-0.0346004
-0.0335636
-0.0144419
0.0539436
0.000806003
0.00657668
0.00884596
0.00757224
0.00266072
-0.00226807
-0.00318386
-0.0064861
-0.00256784
0.000939687
0.00339048
0.00481907
0.00489908
0.00402805
0.00266703
0.000814562
93.9497
89.8459
88.4865
87.5883
85.7649
84.0439
83.2813
84.3727
87.82
92.0419
95.2116
96.8791
97.3565
97.0981
96.4722
95.7142
94.9563
94.2633
93.6615
93.1567
92.7439
92.4132
92.1534
91.9537
91.8041
91.6961
91.6217
91.5743
91.548
91.5378
94.6677
89.7909
88.48
87.5967
85.7643
84.0337
83.2486
84.3076
87.781
92.06
95.2607
96.9302
97.3969
97.1257
96.4876
95.7186
94.9508
94.2493
93.6406
93.1305
92.7138
92.3803
92.1185
91.9174
91.7669
91.6582
91.5834
91.5359
91.5095
91.4995
94.7318
89.6996
88.47
87.6119
85.7624
84.0139
83.1894
84.1862
87.6955
92.0704
95.3307
97.014
97.4686
97.1784
96.5215
95.7344
94.9493
94.2319
93.61
93.0896
92.6653
92.3263
92.0607
91.8569
91.7047
91.595
91.5198
91.4721
91.4459
91.4359
94.8369
89.5697
88.4569
87.6337
85.7591
83.9847
83.1048
84.0106
87.57
92.0809
95.4237
97.1284
97.57
97.2565
96.5748
95.7628
94.9528
94.2125
93.5714
93.036
92.6004
92.2533
91.9819
91.7742
91.6195
91.5083
91.4324
91.3846
91.3583
91.3485
94.9804
89.3971
88.4409
87.6628
85.754
83.9462
82.9957
83.777
87.4021
92.094
95.5425
97.274
97.6993
97.3561
96.6428
95.7992
94.9579
94.1888
93.5234
92.9691
92.5192
92.1615
91.8825
91.6695
91.5111
91.3976
91.3203
91.2717
91.2452
91.2354
95.1671
89.1768
88.4227
87.6995
85.7471
83.8991
82.8631
83.4803
87.1871
92.1101
95.6889
97.4523
97.8556
97.4745
96.7224
95.841
94.9629
94.1596
93.4652
92.8881
92.421
92.0505
91.7621
91.5422
91.3787
91.2616
91.1817
91.1315
91.1043
91.0945
95.4008
88.9025
88.4029
87.7448
85.738
83.8436
82.709
83.1141
86.9193
92.13
95.8646
97.6647
98.0392
97.6107
96.8123
95.8874
94.9671
94.1239
93.3957
92.792
92.3049
91.9194
91.6198
91.3914
91.2214
91.0992
91.0156
90.9628
90.9343
90.9242
95.6857
88.5666
88.3825
87.7995
85.7265
83.7803
82.5356
82.6699
86.591
92.1548
96.072
97.9131
98.251
97.7645
96.9119
95.9378
94.9698
94.0809
93.3134
92.6794
92.1696
91.767
91.4544
91.216
91.0383
90.9099
90.8213
90.7648
90.7342
90.7236
96.0259
88.1602
88.3623
87.8645
85.7123
83.7095
82.3462
82.1371
86.1924
92.1861
96.3135
98.2
98.4916
97.9355
97.0205
95.9917
94.9705
94.0292
93.2167
92.5485
92.0132
91.5915
91.2644
91.0148
90.8284
90.6929
90.5985
90.5372
90.5032
90.4914
96.426
87.6724
88.3436
87.9412
85.6949
83.6316
82.1454
81.5018
85.7112
92.2264
96.5918
98.5281
98.7622
98.1232
97.1371
96.0481
94.9684
93.9673
93.1031
92.3968
91.8339
91.3912
91.048
90.7862
90.5905
90.4477
90.3471
90.2802
90.2409
90.2252
96.8916
87.0909
88.3277
88.0308
85.6738
83.5465
81.9392
80.747
85.1314
92.2781
96.9102
98.9013
99.064
98.3265
97.2603
96.1059
94.9625
93.893
92.9698
92.222
91.6292
91.1637
90.8029
90.528
90.3227
90.173
90.0668
89.9943
89.9481
89.9229
97.4287
86.4017
88.3166
88.1347
85.6483
83.4538
81.7356
79.8515
84.4332
92.3454
97.2721
99.3232
99.3986
98.5446
97.3882
96.1637
94.952
93.8039
92.8132
92.0209
91.3964
90.9065
90.5263
90.2371
90.0221
89.8662
89.7557
89.6789
89.6269
89.5953
98.0444
85.5891
88.313
88.2547
85.6176
83.3526
81.545
78.7891
83.5917
92.4322
97.6812
99.7982
99.768
98.7757
97.5186
96.2193
94.9357
93.6969
92.6285
91.7899
91.1328
90.6166
90.2149
89.9096
89.6842
89.5228
89.4101
89.3321
89.2772
89.2463
98.7459
84.6336
88.3203
88.3926
85.5808
83.2407
81.3807
77.5274
82.5784
92.544
98.1412
100.332
100.175
99.018
97.6483
96.2702
94.9117
93.5678
92.4099
91.5251
90.8352
90.2909
89.8646
89.5402
89.3027
89.1355
89.0219
88.9461
88.8957
88.8685
99.5406
83.513
88.3425
88.5506
85.5368
83.1149
81.2616
76.0453
81.3613
92.6865
98.6555
100.931
100.622
99.2686
97.7733
96.3129
94.8759
93.4107
92.1507
91.2221
90.5004
89.9261
89.4707
89.1227
88.8698
88.695
88.5795
88.5064
88.4622
88.4381
100.436
82.2038
88.3843
88.7315
85.4843
82.9701
81.2069
74.3429
79.9007
92.8636
99.2272
101.602
101.113
99.5237
97.8882
96.3443
94.8176
93.2141
91.8448
90.8751
90.1249
89.5195
89.0282
88.6496
88.3769
88.1921
88.0739
88.0038
87.9669
87.9528
101.438
80.6806
88.4507
88.9387
85.422
82.7985
81.2305
72.2997
78.1433
93.0711
99.8577
102.353
101.654
99.7779
97.984
96.364
94.7081
92.941
91.4853
90.4753
89.7054
89.0694
88.5321
88.112
87.8139
87.6179
87.4986
87.4353
87.4108
87.412
102.552
78.9159
88.5463
89.177
85.3479
82.5897
81.3414
69.7567
75.9837
93.2798
100.547
103.191
102.251
100.023
98.0439
96.3812
94.4845
92.5161
91.0618
90.0099
89.2393
88.5777
87.9779
87.4979
87.1673
86.9617
86.8478
86.8014
86.801
86.8285
103.78
76.8807
88.6743
89.4531
85.2594
82.3288
81.5216
66.6049
73.2044
93.4119
101.291
104.123
102.913
100.244
98.0419
96.417
94.0676
92.006
90.5625
89.4624
88.7256
88.053
87.3638
86.7912
86.4182
86.2116
86.1186
86.1079
86.1506
86.2206
105.12
74.5447
88.836
89.7766
85.1529
81.9948
81.71
62.6555
69.6528
93.4258
102.1
105.155
103.65
100.419
98.0096
96.478
93.481
91.5813
89.9652
88.8017
88.1687
87.5197
86.6975
85.9749
85.5411
85.349
85.3006
85.3507
85.461
85.595
106.562
71.8791
89.029
90.1618
85.0344
81.5581
81.8318
58.1616
65.9667
93.4179
102.969
106.287
104.473
100.5
98.1035
96.5045
92.8968
91.2384
89.2674
87.9776
87.5894
87.0214
85.9898
85.0425
84.5135
84.3384
84.3596
84.504
84.7186
84.9526
108.089
68.8601
89.2439
90.628
84.8859
80.9769
81.858
16.4292
63.3012
93.4631
103.9
107.511
105.394
100.393
98.3514
96.4582
92.5116
90.9617
88.47
86.9062
86.9961
86.5709
85.2042
83.9567
83.2932
83.125
83.2432
83.5293
83.9042
84.2949
109.667
65.4745
89.4633
91.2074
85.1505
80.1945
81.6856
12.822
34.4419
93.4554
104.885
108.814
106.421
99.8967
98.7059
96.4772
92.4278
90.7848
87.5541
85.0296
86.0781
86.1251
84.2803
82.6112
81.7844
81.6445
81.9008
82.3797
82.9892
83.6189
111.243
61.7365
89.6649
91.9418
84.7628
79.2691
28.5181
0.578758
0.044988
93.4686
105.928
110.17
107.556
98.5019
99.0889
96.6735
92.6471
90.7478
86.3944
81.0866
84.0713
85.6183
83.2221
80.9054
79.8682
79.8312
80.2812
80.9733
81.9325
82.93
112.736
57.7518
89.8248
92.8509
85.2862
62.0365
-0.00133782
0.354887
0.420538
93.066
107.092
111.543
108.78
95.1191
99.2252
97.0257
93.1014
90.8855
85.4522
76.3564
82.0426
85.1303
81.5617
78.6875
77.1597
77.6376
78.3733
79.0474
80.6864
82.2979
114.025
53.8773
89.9209
93.9184
85.946
0.0660711
0.0185495
0.326035
0.924947
91.181
108.471
112.878
109.974
92.8882
99.4822
97.4496
93.5255
91.2391
86.0966
74.7214
82.6996
85.5192
51.1159
2.81344
0.156339
0.159337
0.159011
0.153128
0.139405
0.128112
114.935
51.2247
89.899
95.0825
4.8097
0.0426013
0.0286197
0.305617
0.971601
91.8988
110.053
114.121
111.001
94.1141
100.879
97.7678
93.6114
91.8121
88.391
79.6263
0.192065
0.146538
0.171517
0.175181
0.163294
0.159458
0.156151
0.150123
0.140971
0.134381
115.218
52.7801
89.377
96.5524
0.0401184
0.0275555
0.0347724
0.259312
0.923928
93.9482
111.101
115.242
111.742
97.9342
102.797
97.6749
93.4495
92.2025
74.9885
0.0746246
0.141023
0.157813
0.168326
0.171019
0.163833
0.159558
0.162641
0.159485
0.138796
0.13937
114.528
61.839
87.2226
-0.0154631
0.0261428
0.019927
0.0391278
0.211293
0.907304
99.6699
111.724
116.158
111.589
102.686
103.29
96.9874
93.5786
78.3113
0.0344051
0.0742617
0.121149
0.149062
0.165432
0.169215
0.159934
0.174372
0.157535
0.140788
0.133367
0.129708
112.403
76.7773
78.6489
-0.0478938
0.0153927
0.0164123
0.0417731
0.175907
-0.10203
91.8871
111.491
116.4
110.305
106.769
102.196
91.7808
91.5432
0.227371
0.0329278
0.0431983
0.0765689
0.125851
0.157529
0.168818
0.155813
0.151338
0.14306
0.129632
0.124508
0.121969
91.54
91.5542
91.584
91.634
91.7096
91.8175
91.9656
92.1631
92.421
92.7511
93.1649
93.6697
94.2633
94.9272
95.617
96.2547
96.7132
96.7869
96.1664
94.4754
91.4293
87.3127
83.6661
82.2675
83.2298
86.2435
91.3543
97.7129
104.051
109.025
91.5018
91.5161
91.5461
91.5962
91.6722
91.7803
91.929
92.1275
92.3872
92.7203
93.1385
93.6494
94.251
94.9245
95.6248
96.2729
96.7418
96.8257
96.2129
94.5202
91.4486
87.2795
83.5977
82.2197
83.2011
86.2202
91.3432
97.7112
104.055
109.047
91.4384
91.4528
91.4829
91.5331
91.6091
91.7177
91.8673
92.0677
92.3309
92.6696
93.096
93.6184
94.2353
94.9275
95.6481
96.3152
96.7999
96.896
96.2891
94.5841
91.4604
87.2001
83.4682
82.1343
83.1495
86.1781
91.3245
97.7106
104.066
109.092
91.3511
91.3657
91.3958
91.4461
91.5222
91.6312
91.7821
91.9855
92.2539
92.6009
93.0393
93.5785
94.2178
94.9378
95.6885
96.383
96.8881
96.9965
96.393
94.6678
91.4709
87.0818
83.2817
82.0133
83.0753
86.1169
91.2978
97.7108
104.083
109.158
91.2382
91.2531
91.2836
91.3341
91.4105
91.5204
91.6732
91.8806
92.1561
92.514
92.9682
93.5291
94.1975
94.9534
95.7425
96.4711
97.0013
97.1245
96.5248
94.7738
91.4828
86.9233
83.0343
81.8567
82.9786
86.0364
91.2633
97.7117
104.106
109.24
91.0976
91.113
91.1442
91.1955
91.2728
91.384
91.5397
91.7524
92.0368
92.4083
92.8818
93.4694
94.1734
94.9733
95.8081
96.5762
97.136
97.2783
96.6851
94.9042
91.4969
86.7202
82.72
81.6647
82.8601
85.9362
91.2209
97.7134
104.136
109.342
90.9278
90.9442
90.9765
91.0289
91.1076
91.2209
91.3803
91.5997
91.895
92.2828
92.7792
93.398
94.1443
94.997
95.8852
96.6976
97.2911
97.4577
96.875
95.0608
91.514
86.4672
82.3314
81.4381
82.7201
85.8162
91.1709
97.7159
104.172
109.463
90.7279
90.7456
90.7792
90.833
90.9135
91.0294
91.1935
91.421
91.7292
92.136
92.6588
93.3134
94.1089
95.0243
95.9741
96.8351
97.4665
97.6627
97.0957
95.2463
91.5357
86.1578
81.8584
81.1781
82.5594
85.6759
91.1132
97.7192
104.212
109.603
90.4967
90.516
90.5501
90.6054
90.6883
90.8076
90.9772
91.2144
91.5378
91.9664
92.5189
93.2136
94.0652
95.055
96.0752
96.9884
97.6619
97.8935
97.3486
95.4634
91.5636
85.784
81.288
80.8868
82.3785
85.515
91.0481
97.7233
104.257
109.765
90.2314
90.2554
90.2841
90.3423
90.4297
90.5533
90.7297
90.978
91.3189
91.7723
92.3578
93.0962
94.0106
95.0892
96.1887
97.1567
97.8766
98.15
97.6354
95.716
91.6004
85.3355
80.6027
80.5671
82.1779
85.333
90.9755
97.7281
104.305
109.948
89.9211
90.1093
89.9801
90.0411
90.1358
90.2649
90.4488
90.71
91.0707
91.5521
92.1737
92.9585
93.9411
95.127
96.3146
97.3382
98.1099
98.4324
97.9583
96.0086
91.6493
84.8006
79.7795
80.2241
81.9578
85.1295
90.8953
97.7335
104.354
110.152
89.592
89.6263
89.6452
89.7071
89.8062
89.9408
90.1324
90.408
90.7917
91.3042
91.9651
92.7977
93.851
95.1692
96.4514
97.5303
98.3608
98.7407
98.3197
96.3463
91.7142
84.1655
78.7881
79.865
81.7181
84.9041
90.8073
97.7394
104.404
110.379
89.2435
89.2511
89.273
89.3354
89.437
89.5767
89.7773
90.0702
90.48
91.0271
91.7304
92.6115
93.7306
95.2172
96.5945
97.7283
98.6282
99.0749
98.7224
96.7355
91.8001
83.416
77.5879
79.4995
81.4576
84.6564
90.7108
97.7453
104.453
110.628
88.8417
88.8492
88.8748
88.9304
89.0233
89.165
89.3797
89.6949
90.1344
90.7195
91.4685
92.3986
93.5634
95.2706
96.732
97.9258
98.911
99.4348
99.1695
97.1846
91.9125
82.5393
76.1257
79.1395
81.1742
84.3864
90.6048
97.7508
104.499
110.9
88.4277
88.4337
88.4595
88.5017
88.5596
88.7017
88.9392
89.2818
89.7537
90.3796
91.1775
92.1597
93.3174
95.3128
96.8352
98.1147
99.2091
99.8202
99.6643
97.702
92.0572
81.5288
74.3342
78.8017
80.8637
84.0941
90.4878
97.7549
104.538
111.196
87.9551
87.974
88.0152
88.0752
87.9864
88.186
88.4615
88.8316
89.3362
90.0052
90.8549
91.8949
92.9476
95.2455
96.8437
98.287
99.5232
100.231
100.211
98.2999
92.2385
80.3884
72.1476
78.5296
80.5183
83.7805
90.3574
97.7562
104.57
111.515
87.4306
87.4655
87.5181
91.0556
87.6537
87.6644
87.9568
88.3422
88.8778
89.5927
90.4959
91.5982
92.5626
94.8032
96.6535
98.4391
99.8559
100.665
100.812
98.9905
92.4587
79.1316
69.5483
78.4323
80.1283
83.4474
90.2109
97.7526
104.589
111.857
86.8721
86.9306
87.0128
87.1603
86.9857
87.1696
87.421
87.8044
88.3715
89.1377
90.0938
91.258
92.3584
93.9462
96.1801
98.5795
100.212
101.12
101.473
99.7892
92.7181
77.7614
66.6006
78.4829
79.6833
83.0979
90.0462
97.7411
104.59
112.224
86.3014
86.3899
86.4833
86.566
86.5801
86.6462
86.8343
87.2008
87.8073
88.6356
89.6406
90.8522
92.2134
93.0251
95.5371
98.736
100.599
101.591
102.197
100.715
93.0113
76.2462
63.3844
78.5726
79.1532
82.7371
89.8641
97.7183
104.571
112.614
85.7309
85.8631
85.9766
86.042
86.0466
86.0683
86.1661
86.5082
87.1732
88.0826
89.1278
90.3567
92.003
92.3358
95.0942
98.9541
101.026
102.07
102.986
101.79
93.3446
74.4956
59.776
78.7373
78.4963
82.3715
89.6688
97.6802
104.524
113.028
85.1763
85.3811
85.5361
85.5875
85.5139
85.4295
85.823
85.6931
86.4444
87.4701
88.5417
89.7525
91.7195
92.1882
95.216
99.2763
101.503
102.54
103.84
103.032
93.7623
72.0026
56.1819
79.0942
77.6542
82.0044
89.471
97.6221
104.446
113.463
84.6601
84.9889
85.2282
85.2734
85.0616
84.6628
84.5521
84.684
85.5539
86.7623
87.8102
88.9799
91.4272
92.6635
95.9431
99.7099
102.04
102.974
104.757
104.452
94.3529
69.5364
17.5386
79.5649
76.543
81.6191
89.3035
97.5374
104.328
113.916
84.2042
84.7369
85.1348
85.1889
84.7223
83.9085
83.309
83.3607
84.4354
85.9145
86.6799
87.924
91.1683
93.4625
96.9745
100.234
102.655
103.321
105.724
106.044
95.1454
66.5804
2.05811
80.0086
75.1898
81.1203
89.2468
97.4161
104.164
114.38
83.8381
84.689
85.3988
85.5324
84.5642
82.9333
81.7387
81.5994
83.117
85.0163
84.7268
86.3269
90.9583
94.3204
97.9451
100.868
103.382
103.489
106.723
107.801
96.1008
58.5595
1.70782
2.59788
65.0726
80.1648
89.6008
97.241
103.943
114.838
83.5481
84.8342
86.2617
86.9056
84.7738
81.442
79.6095
79.0743
81.5522
84.0479
82.2418
84.1863
90.8421
95.1549
98.7704
101.801
104.286
103.3
107.737
109.713
97.6633
7.70149
1.46081
0.205917
0.405385
78.9988
90.2154
96.9837
103.654
115.265
0.142973
2.4846
8.60532
15.2026
16.501
17.8287
28.7371
60.704
80.5424
83.1906
80.675
82.4385
91.0507
96.0126
99.6689
103.25
105.464
102.44
108.772
111.761
99.4363
18.0373
1.25216
0.310488
0.345147
2.08943
91.6311
96.5995
103.295
115.608
0.133419
0.128084
0.129366
0.124359
0.119761
0.114566
0.117161
0.155697
0.105487
0.125903
78.4741
80.9189
92.1773
96.9287
100.559
105.163
107.013
100.666
109.874
113.608
102.439
13.1842
1.04671
0.372689
0.312624
0.0876491
93.8667
96.0426
102.867
115.778
0.14942
0.140279
0.146685
0.139704
0.123979
0.120688
0.117857
0.135687
0.130917
0.099877
0.0622027
56.2157
95.2428
97.778
101.026
107.143
108.583
100.019
111.209
114.864
105.084
9.33222
0.867078
0.398392
0.297422
0.118581
76.2972
95.3452
102.355
115.62
0.131903
0.130162
0.127503
0.125842
0.126032
0.614182
0.109105
0.120249
0.1188
0.0713536
0.0275281
0.160713
101.921
98.0454
101.537
108.332
108.933
101.149
112.991
115.415
107.42
2.81566
0.739377
0.404659
0.288903
0.134207
-0.259314
94.7386
101.728
114.819
0.376068
0.122221
0.121465
0.120542
0.118347
0.108932
0.101021
0.10427
0.100832
0.0409702
-0.0101774
0.0656594
0.239083
94.487
101.615
109.718
107.964
101.189
114.853
114.471
104.377
2.96699
0.681466
0.401007
0.28167
0.143417
0.0474115
91.5653
101.111
112.67
108.882
89.0692
4.61722
-0.0577318
0.0112485
0.0155515
0.042827
0.158391
-0.597733
84.623
116.068
116.503
109.886
108.643
100.609
85.8238
0.0801622
0.250117
0.0350266
0.0282198
0.0519186
0.107522
0.148784
0.161074
0.149287
0.134288
0.131317
0.121448
0.117356
0.1184
107.519
99.6222
-0.164972
-0.0625696
0.00797504
0.015228
0.0437417
0.149291
0.0769971
25.0797
120.296
118.487
110.101
110.108
96.9183
78.1685
0.107118
0.331725
0.0156093
0.0184881
0.0345808
0.089941
0.135296
0.160217
0.14078
0.127163
0.118957
0.110492
0.106598
0.114171
106.775
106.932
-0.118578
-0.0638719
0.00508849
0.0150667
0.0471269
0.131515
0.131817
-2.6062
123.309
121.531
111.29
111.924
90.2901
-0.134997
0.173182
0.0711195
0.017374
0.0412888
0.0437926
0.0741422
0.122208
0.140089
0.132077
0.117132
0.105879
0.0962674
0.0886211
0.0987662
108.2
71.0246
-0.114687
-0.0625661
0.00257987
0.0149771
0.0490642
0.0826055
-1.52214
1.98524
117.091
123.348
113.498
114.965
64.0586
-0.00709871
0.310076
0.080487
0.021309
0.0235054
0.0311934
0.0624217
0.107457
0.12654
0.11816
0.103737
0.09142
0.081083
0.068419
0.0893008
109.091
0.0362158
-0.11005
-0.0598997
0.000434145
0.0149538
0.0438236
0.0575406
-0.891392
0.0959432
121.066
123.83
114.845
119.461
-0.99457
-0.0550802
0.183581
0.0764519
0.0242868
0.0211677
0.0272339
0.0586094
0.0944814
0.107514
0.101097
0.0878625
0.0764052
0.0674496
0.0632089
2.67466
108.177
0.0460967
-0.103264
-0.0565474
-0.00136585
0.0150045
0.0351647
0.0659913
-0.938467
0.429439
126.29
124.778
116.963
123.377
0.0588673
-0.053928
0.0604986
0.0701908
0.0248081
0.113673
0.0279269
0.0565701
0.0818121
0.0875348
0.0830928
0.0708512
0.0623989
0.0553308
0.0548724
0.0593894
0.178047
0.0364144
-0.0942115
-0.0529685
-0.00284969
0.0151072
0.0438201
0.0222247
-0.672752
1.23319
131.367
128.353
117.873
0.261604
0.203015
-0.0248479
0.0434765
0.064022
0.0225748
0.102667
0.0250442
0.187834
0.213731
0.0737909
0.0661886
0.0543999
0.0609068
0.047066
0.0488044
0.0525011
0.12732
0.0322794
-0.0842024
-0.0497978
-0.0040065
0.0152434
0.0366672
0.0596757
-0.497398
2.24846
103.947
131.862
40.8829
-0.214557
0.210323
-0.0172948
0.0377389
0.0513435
0.0688244
0.0262942
0.0105458
0.213302
0.262248
0.0611276
0.0524083
0.0415405
0.0354487
0.0377059
0.0395403
0.0436044
0.0927403
0.0284106
-0.0742985
-0.0469696
-0.00484605
0.0153924
0.0376731
0.0516922
-0.134866
4.15223
-1.63417
112.172
-0.172918
-0.0850472
0.172441
-0.0229816
0.0363281
0.0803612
0.0924096
0.0356124
0.0274213
0.0386211
0.0596953
0.0532154
0.0432372
0.0319432
0.0266482
0.0267436
0.029862
0.0351494
0.0659948
0.0184865
-0.0650192
-0.0441695
-0.00541622
0.0155189
0.0367717
0.050181
0.0720115
3.70231
-0.759538
-0.349354
-0.179918
-0.128659
0.0366525
-0.0422603
0.0383593
0.0498707
0.0563447
0.0441603
0.0423256
0.0493642
0.0580812
0.0482626
0.0361825
0.026206
0.02168
0.0235138
0.0373087
0.0302149
0.0456814
0.0115899
-0.0567357
-0.0412119
-0.00572721
0.0155761
0.0374168
0.0548617
0.0704172
8.2426
-0.498759
-0.371289
-0.163112
-0.108508
-0.0873419
-0.0840918
0.0478417
0.0579686
0.0601633
0.0557076
0.0586244
0.0562854
0.0563208
0.0465787
0.0349669
0.0248548
0.0196344
0.0199078
0.0409139
0.0274179
0.03005
0.00730323
-0.0497455
-0.0380159
-0.00579562
0.0155372
0.0365853
0.0625605
0.040284
1.46867
-0.497705
-0.405786
-0.134069
-0.0705641
-0.125741
-0.18442
0.0771927
0.0628627
0.0641649
0.122207
0.0641239
0.0610454
0.0627466
0.0472285
0.036744
0.0373535
0.0246171
0.0213099
0.0233871
0.0276368
0.018536
0.00402321
-0.0440904
-0.0346321
-0.00565416
0.0154078
0.0376955
0.0708373
0.0534941
0.22699
-0.389361
-0.237913
0.0699073
-0.0475201
-0.14185
2.2933
0.0916385
0.0656503
0.0685998
0.273117
0.0699652
0.064237
0.0554592
0.0488741
0.0396351
0.0323288
0.0279737
0.027029
0.0285109
0.0317344
0.010303
0.00140971
-0.0396117
-0.0312278
-0.00529669
0.0151888
0.0352246
0.0720711
0.0695971
0.173321
-0.28643
0.0371815
-0.0745213
0.00509886
-0.1093
0.916085
0.0220487
0.0658996
0.0716571
0.0793965
0.0740993
0.065901
0.076236
0.0610342
0.0407085
0.0366445
0.0338082
0.0361502
0.0361098
0.03839
0.00482986
-0.0023722
-0.0360627
-0.0279078
-0.00475191
0.0148882
0.0342459
0.0728686
0.0737044
0.0276903
-0.198548
-0.260943
-0.0838014
-0.0552096
-0.0721983
0.0302328
0.0356077
0.059109
0.0681911
0.0711956
0.0702344
0.0650161
0.0551247
0.0453242
0.0409816
0.0406612
0.0416665
0.0433641
0.0410673
0.0322999
0.00152852
-0.00459212
-0.0331154
-0.0247324
-0.00409013
0.0145097
0.0331908
0.0619227
0.0621637
0.0103902
-0.109041
-0.12039
-0.0880841
-0.0625941
-0.0512651
0.0967416
0.0372876
0.0502854
0.0685401
0.0615808
0.0611443
0.0594109
0.0530216
0.044549
0.0415571
0.0419507
0.0446843
0.062295
0.410358
0.530787
-0.000383994
-0.0065009
-0.0304818
-0.0217594
-0.00336832
0.0140261
0.0316612
0.0559801
0.0470954
-0.0440117
0.000945476
-0.085054
-0.0899628
-0.0712906
-0.0547962
0.0677573
0.0273715
0.0394474
0.0601225
0.0504241
0.051415
0.0515766
0.0483849
0.0451084
0.0404942
0.0392198
0.0340038
0.0198394
0.0337277
0.0702572
-0.00131151
-0.0089426
-0.0280936
-0.0189893
-0.0026288
0.0134122
0.0299365
0.04837
0.032031
-0.0277562
0.182385
-0.0403046
-0.087614
-0.0916078
-0.0615128
-0.0155998
0.00868893
0.0257124
0.0345167
0.0393908
0.0450118
0.0451553
0.0419251
0.0395509
0.0481465
0.0405164
0.0395599
0.0415051
0.0479586
0.0563182
-0.000215869
-0.0136947
-0.0259068
-0.0164193
-0.00190085
0.0126554
0.0271007
0.0413278
0.0250609
-0.0126469
0.0289076
-0.0261532
-0.105575
-0.123746
-0.0917558
-0.0461496
-0.00990899
0.0116482
0.0231572
0.0295298
0.0876737
0.0956594
0.0333893
0.0348015
0.0366296
0.0377972
0.040829
0.0444689
0.0482225
0.0517618
0.00263694
-0.022799
-0.0238388
-0.0140426
-0.00121768
0.011738
0.0241474
0.0329445
0.021812
0.00423671
0.0190688
-0.0185794
-0.129071
-0.160373
-0.131015
-0.0715065
-0.0207833
-0.000177478
0.0125414
0.019935
0.0230786
0.0240827
0.0271091
0.0293687
0.0316494
0.0341379
0.0369697
0.039933
0.0427879
0.0454984
0.00707957
-0.0420277
-0.0217156
-0.0118428
-0.000614674
0.0106466
0.0215393
0.0264416
0.0192773
0.0094131
0.00351718
0.0107268
-0.141305
-0.181715
-0.161562
-0.0944153
-0.0381581
-0.0049653
0.00365077
0.0105582
0.0147635
0.0180769
0.0209598
0.0234907
0.0260084
0.0286374
0.0312656
0.033806
0.0362061
0.0384273
0.0126014
-0.0799361
-0.0192057
-0.00982039
-0.000118071
0.00938953
0.0171307
0.0203891
0.0162321
0.0137583
-0.0180777
0.665346
-0.125611
-0.174844
-0.160986
-0.0993514
-0.0406345
-0.0115587
0.0024784
0.00308021
0.00617946
0.00907395
0.0119783
0.0147949
0.01749
0.020117
0.0225907
0.0248431
0.0269088
0.0287521
0.015841
-0.0498631
-0.0160586
-0.00797513
0.000252139
0.00796205
0.0149488
0.0141931
0.0113438
-0.00156117
-0.0250935
-0.0516113
-0.103824
-0.137798
-0.118292
-0.0721008
-0.0278151
-0.00637943
0.000363854
-0.00359737
-0.00408825
-0.00364929
-0.00219864
0.000118745
0.00271922
0.00523418
0.00743658
0.00927835
0.0107791
0.0118578
0.0128093
-0.0183723
-0.0125742
-0.00630334
0.000485432
0.00639185
0.00995793
0.00676089
0.05087
-0.0184801
-0.0394716
-0.0585892
-0.0833943
-0.0943547
-0.0764587
0.0936538
0.189111
-0.00793985
-0.00537388
0.0113105
-0.0177411
-0.0220062
-0.0216997
-0.0243127
-0.0215018
-0.0198863
-0.017937
-0.016373
-0.0152966
-0.0147662
0.00721134
-0.00476679
-0.00934231
-0.00480212
0.000588112
0.00469875
0.00468398
-0.00109066
0.0102222
-0.0544265
-0.0568549
-0.0588718
-0.0642724
-0.024164
-0.0545865
-0.0341698
-0.0188687
-0.0155027
-0.021801
-0.0283258
-0.0361112
-0.0384824
-0.0440596
-0.0523106
-0.0499367
-0.0529886
-0.051333
-0.0493811
-0.0479088
-0.0471004
0.00281072
0.000173533
-0.0066709
-0.00347953
0.000586381
0.00299658
0.000604514
-0.00932767
-0.0116061
-0.126744
-0.0856204
-0.057038
-0.050075
-0.0477438
-0.043167
-0.0335698
-0.0268475
-0.0265087
0.0155299
-0.0398346
-0.0526034
-0.0648417
-0.0719849
-0.0746155
-0.0770598
-0.0752658
-0.0364354
-0.0702558
-0.0700066
-0.0700807
0.000585136
0.00140228
-0.0044952
-0.00234616
0.000521703
0.00152932
-0.00249718
-0.0170699
-0.00482295
-0.17931
-0.0898281
-0.0537506
-0.0396951
-0.0347764
0.150145
-0.0284304
-0.0271415
-0.0298648
-0.0118122
-0.04258
-0.0654011
-0.0632379
-0.0676261
-0.071392
-0.0724915
-0.0708742
-0.0464432
-0.0771968
-0.0785276
-0.0794688
-0.000276006
0.00118642
-0.00276367
-0.00140092
0.000436428
0.000532414
-0.00401039
-0.0199602
-0.0398755
-0.126399
-0.0922296
-0.0475057
-0.0332848
-0.0269045
-0.0252926
-0.0178812
-0.0236856
-0.0306671
-0.0380651
-0.0406917
-0.0428401
-0.048746
-0.00619016
0.0628926
-0.0540233
-0.071601
-0.0701975
-0.0657621
-0.0682811
-0.0672407
-0.000409078
0.000496212
-0.00136109
-0.000637921
0.000326157
0.000129371
-0.00322138
-0.0123169
-0.0202476
-0.0502832
-0.0553175
-0.0417287
-0.0315778
-0.0241526
-0.0195174
-0.0171455
-0.0100323
-0.0227316
-0.0255562
0.00186839
-0.0225564
-0.0282063
-0.0312207
-0.0388004
-0.0248037
-0.00339709
-0.0312572
-0.0294783
-0.0337062
-0.0327993
-0.00023399
0.000145996
-0.000427001
-0.000173991
0.000166225
0.000101154
-0.00111356
-0.00463035
0.00202357
-0.0164314
-0.0387441
-0.0421128
-0.0336884
-0.0243996
-0.0173557
-0.012812
-0.0108075
-0.012235
-0.0165185
-0.0200535
-0.0194158
-0.0167591
-0.0124378
-0.0124973
-0.0115121
-0.0102364
-0.0076933
-0.00935532
-0.0108439
-0.005938
0.204827
0.118569
0.115582
0.115994
0.112914
0.103717
0.0963522
0.0958888
0.0868154
0.031105
-0.0229142
0.0391097
-0.0359684
68.669
100.985
110.963
108.046
100.83
115.449
115.069
113.161
3.35382
0.682324
0.396288
0.277239
0.147238
0.053535
0.118398
100.804
110.611
0.123888
0.113375
0.107589
0.111706
0.10708
0.0978992
0.091527
0.0886782
0.0779922
0.0268298
-0.0283746
0.0215886
0.119291
0.236549
100.697
111.314
108.824
99.9601
115.578
116.384
128.546
3.68403
0.687467
0.390949
0.272845
0.150187
0.0556736
0.0997984
100.387
108.524
0.123786
0.110472
0.100896
0.181877
0.0976318
0.091159
0.0861663
0.0818356
0.0708648
0.0271755
-0.0228329
0.024054
0.0868122
0.165111
-1.38532
113.538
107.98
101.889
115.866
118.038
128.104
4.3218
0.676178
0.383991
0.267907
0.152577
0.0567844
0.0765738
1.53084
106.517
0.161885
0.105487
0.100533
0.167953
0.0759261
0.0849963
0.0810665
0.0755365
0.0658468
0.0311428
-0.0118349
0.0174716
0.0489631
0.114582
0.25259
116.904
108.965
101.164
117.415
119.346
134.006
-1.9805
0.644535
0.375009
0.262291
0.154235
0.0582665
0.0615149
-8.40612e-05
105.597
5.84911
0.0867789
0.0888767
0.0864904
0.0753384
0.08201
0.0768937
0.0696702
0.0624705
0.0389278
0.005172
0.0187405
0.0412779
0.102335
0.332068
-0.319601
110.151
104.833
121.964
121.941
69.3868
-1.25049
0.596004
0.363847
0.255851
0.15496
0.0603625
0.0523796
0.000425946
4.21894
0.0571169
0.0642352
0.0749324
0.0758196
0.0726047
0.0909873
0.0746332
0.0635199
0.0606115
0.0435343
0.0270583
0.0238344
0.0292481
0.0727651
0.0831182
-0.275057
-0.250052
107.532
124.722
125.187
22.5088
-0.997017
0.542931
0.350232
0.248548
0.154654
0.0628499
0.0470096
0.00688997
0.123893
0.0549157
0.0597911
0.064904
0.0671123
0.0642866
0.0832467
0.0933944
0.0659796
0.0592571
0.0468959
0.0363338
0.0323781
0.0268451
0.0214434
0.0482921
-0.251928
-0.25115
-0.30926
124.935
124.881
-0.953409
-0.798225
0.479657
0.334014
0.240377
0.153361
0.065613
0.0439639
0.0119834
0.10079
0.0474127
0.0521103
0.0573374
0.0624303
0.216372
1.16369
0.0566473
0.0573729
0.0698216
0.0459968
0.0420248
0.0381792
0.00725729
-0.0296673
0.0869234
-0.385267
-0.242615
-0.314534
-0.381013
-0.474242
-1.02346
-0.858381
0.421788
0.314834
0.231309
0.151161
0.0682462
0.0424278
0.017188
0.0835782
0.0398344
0.0448265
0.0505653
0.0541925
0.120902
0.489022
0.0523277
0.0525912
0.0562504
0.0427376
0.0440549
0.0274578
-0.00187254
-0.0487109
2.7437
-0.54474
0.0312576
-0.31729
-0.394468
-0.50956
-0.954556
-0.776657
0.349002
0.293314
0.221314
0.148065
0.0706252
0.0420942
0.0222405
0.0644566
0.0343965
0.0392736
0.0438382
0.0477999
0.0451079
0.0515498
0.0510474
0.0485432
0.0431644
0.0410105
0.0898783
0.0242101
-0.00358416
-0.0400324
0.608008
-0.177414
0.0574611
-0.315598
-0.354662
-0.50987
-0.683088
-0.708067
0.30794
0.269517
0.210367
0.144092
0.0725673
0.0427639
0.026639
0.0474247
0.031852
0.0370629
0.0427422
0.0490848
0.0553341
0.0506772
0.0493688
0.0454327
0.040595
0.0365592
0.0979048
0.0243603
-0.00363501
-0.0311493
0.0700569
-0.152204
-0.206853
-0.305112
-0.39956
-0.492589
-0.70907
-0.628908
0.219215
0.243861
0.198467
0.13931
0.0739176
0.0439767
0.0306247
0.0346123
0.032367
0.0377301
0.0438254
0.049407
0.0708989
0.0509404
0.0493554
0.0439803
0.0396829
0.0370928
0.0281148
0.0213867
-0.00472624
-0.00597818
-0.0104453
-0.173363
-0.170866
-0.302648
-0.413917
-0.456381
-0.565679
-0.552084
0.155734
0.216968
0.185694
0.133773
0.0745844
0.0452371
0.033904
0.0253607
0.036367
0.0412742
0.0474946
0.0534388
0.0558344
0.0587959
0.060073
0.0654734
0.0417805
0.0372979
0.0265175
0.0164655
-0.00465585
-0.0274147
-0.0726269
-0.128967
-0.23355
-0.275056
-0.416077
-0.48976
-0.133537
-0.493401
0.0981039
0.189546
0.172129
0.127531
0.0744988
0.0462607
0.0362547
0.0209031
0.0402483
0.0466437
0.0596488
0.0609173
0.0640528
0.0598868
0.0608311
0.0656864
0.0430744
0.0356719
0.0268292
0.0240503
0.0148593
-0.0318341
-0.0773117
-0.162522
-0.23527
-0.241091
-0.222987
-0.446997
0.00839013
-0.406918
0.0532519
0.162366
0.15788
0.120655
0.0736201
0.04685
0.0375819
0.0191963
0.0411978
0.0536758
0.0631803
0.0672615
0.0654083
0.0591426
0.0559755
0.0440723
0.0461004
0.0387553
0.0254913
0.04485
0.00914541
-0.0351459
-0.0843535
-0.166239
-0.234603
-0.150686
-0.27828
-0.407734
0.0301679
-0.3268
0.0184577
0.136269
0.143144
0.113224
0.0719925
0.0468462
0.0378712
0.0187672
0.0663373
0.0697983
0.0719809
0.0689261
0.062471
0.0812224
0.0562792
2.06763
0.0567916
0.0505833
0.0290655
0.0127895
0.0190055
-0.0368711
-0.0875829
-0.171869
-0.237859
0.082345
-0.262954
-0.399428
-0.223767
-0.268435
-0.00734759
0.112008
0.128149
0.105322
0.0696888
0.0461726
0.037196
0.0185724
0.0714899
0.0728242
0.0757046
0.420374
0.426606
0.0712562
0.0696186
0.0773532
0.0635002
0.0511468
0.0339428
0.012105
-0.00973027
-0.0331333
-0.0386392
-0.178083
-0.234869
-0.0418451
-0.275313
-0.396364
-0.0594558
-0.0199289
-0.0192789
0.0902179
0.113166
0.0970403
0.0667869
0.0448776
0.0357157
0.0181081
0.0619156
0.0648298
0.0665488
0.069744
0.0709228
0.0723155
0.0893731
0.0761754
0.075485
0.0576991
0.0390159
0.0129009
-0.0194701
0.014395
-0.0952971
-0.171838
-0.222602
-0.226985
0.0447889
-0.359451
-0.261031
-0.117044
-0.0225505
0.071257
0.0984874
0.0884515
0.0633767
0.0430827
0.0336383
0.0172156
0.0549938
0.0583184
0.0623598
0.0689496
0.0720382
0.0775953
0.0896403
0.0759855
0.0700192
0.0591245
0.0400676
0.0103884
-0.0271951
-0.0623537
-0.105617
-0.16644
-0.217291
-0.201405
0.703669
-0.239674
-0.271948
-0.113486
-0.022937
0.0551926
0.0843898
0.0796608
0.0595042
0.0409537
0.0311998
0.0159509
0.0481932
0.0510855
0.0543694
0.059445
0.0638009
0.0688762
0.0713601
0.0694473
0.0634472
0.0512913
0.029037
-0.00499019
-0.0463804
-0.0860992
-0.126745
-0.16768
-0.198981
-0.184774
-0.109125
0.141899
0.0359782
-0.0926699
-0.0221636
0.0418169
0.0711146
0.0707937
0.0551864
0.0386685
0.0286634
0.0144671
0.0405815
0.0428247
0.045163
0.0473929
0.0489648
0.0496694
0.0511016
0.0489264
0.0419769
0.0271599
0.024157
-0.0446986
-0.0894912
-0.130937
-0.161973
-0.181465
-0.180048
-0.180879
-0.154572
0.262559
-0.00552357
-0.0728943
-0.0213744
0.0307522
0.0588604
0.0619799
0.050476
0.0362605
0.02623
0.0129182
0.030417
0.031996
0.0332825
0.0338625
0.0331347
0.0969765
0.0943151
0.0164097
0.000360741
-0.0271441
-0.0628166
-0.118617
-0.164989
-0.207033
-0.21537
-0.201391
-0.17647
-0.145921
-0.13176
0.468508
-0.0450902
-0.0616919
-0.0213669
0.021617
0.0477478
0.0533607
0.0454278
0.0335873
0.0238951
0.0114002
0.0125037
0.0127166
0.0120416
0.00956789
0.00442805
-0.00304853
-0.0131289
-0.0299454
-0.0575657
-0.100459
-0.151451
-0.204915
-0.210151
-0.29811
-0.311301
-0.220584
-0.17591
-0.126423
-0.0900673
0.635167
-0.07254
-0.062138
-0.0225123
0.0140787
0.0378487
0.0450664
0.0401053
0.0305416
0.0215203
0.00995038
-0.0147743
-0.0153708
-0.0169928
-0.0203026
-0.0261976
-0.0357952
-0.0496486
-0.0719636
-0.109005
-0.165027
-0.24062
-0.330825
-0.361477
-0.45999
-0.42075
-0.299282
-0.17581
-0.10042
-0.0482022
0.10264
-0.112467
-0.071593
-0.0245381
0.00795926
0.0292022
0.0372066
0.0346009
0.0271152
0.0190138
0.00856588
-0.0469209
-0.0474763
-0.0491636
-0.0524962
-0.058266
-0.0677637
-0.0830316
-0.106768
-0.141976
-0.194136
-0.266565
-0.356389
-0.445056
-0.508549
-0.475085
-0.327376
-0.153933
-0.0721007
-0.0142367
0.0816795
-0.431844
-0.0764266
-0.0075014
0.00329378
0.0218141
0.0298786
0.0289971
0.0233427
0.0163452
0.00722345
-0.0706568
-0.0716082
-0.0733259
-0.0760724
-0.0812939
-0.0889814
-0.100874
-0.119339
-0.147612
-0.187588
-0.240661
-0.307104
-0.375057
-0.389874
-0.38748
-0.278566
-0.131619
-0.0431278
0.00670893
0.477058
-0.016987
-0.0496945
-0.000447242
0.000227546
0.0156755
0.0231313
0.0233596
0.0192715
0.0135095
0.00589439
-0.0805944
-0.0820799
-0.083873
-0.0865729
-0.0898708
-0.0949771
-0.103225
-0.115389
-0.131942
-0.153642
-0.179492
-0.20721
-0.242562
-0.24876
-0.225169
-0.147838
-0.0665938
-0.020045
0.00560963
0.00735304
-0.0261113
-0.0290759
-0.0210924
-0.0016045
0.0107494
0.0169589
0.0177338
0.0149425
0.0105034
0.00455097
-0.0629868
-0.0401763
0.0104935
-0.0714559
-0.0773426
-0.0809625
-0.0864739
-0.0896763
-0.0977503
-0.0959158
-0.0201866
-0.0968993
0.0251266
-0.0914084
-0.0758775
-0.0429154
-0.00910128
-0.000949754
0.00335171
-0.00120574
-0.0119095
0.0197042
-0.0138399
-0.00100071
0.00687002
0.0112844
0.012116
0.0103754
0.00731747
0.00316694
-0.0327733
-0.0287749
0.0714618
-0.0150361
-0.0529211
-0.0520151
-0.0539185
-0.0368882
-0.0490708
0.105409
-0.0471117
-0.0330125
-0.0255607
-0.0225918
0.0307822
0.00402012
0.0301329
0.0083328
0.00415631
-0.00150686
-0.00389338
-0.00844866
-0.00544396
7.89749e-05
0.00362254
0.00591902
0.00643687
0.00555496
0.00392895
0.00171459
-0.0136736
-0.015065
-0.0169035
-0.0143595
-0.0189795
-0.0263894
-0.0352855
0.0226818
0.0288681
-0.028354
-0.0123103
-0.0290166
-0.0125656
0.0862124
0.00734856
0.0058927
0.00571664
0.00568272
0.00232102
-0.000564032
-0.00227217
-0.00297746
-0.00132188
0.000325818
0.00124341
0.00189355
0.00202206
0.00171406
0.00121142
0.000554189
91.5967
88.8752
88.152
86.7328
84.8142
83.4958
83.5354
85.8813
90.0018
93.8282
96.2251
97.2349
97.2879
96.8075
96.0939
95.3258
94.5969
93.9493
93.3975
92.941
92.5715
92.2784
92.0505
91.8775
91.75
91.66
91.6001
91.5641
91.5465
91.5429
91.5391
88.8504
88.1565
86.7368
84.8103
83.4818
83.4952
85.8368
90.0011
93.8639
96.2699
97.2727
97.3147
96.8238
96.101
95.3242
94.5878
93.9341
93.3775
92.9173
92.5452
92.2502
92.021
91.8471
91.719
91.6285
91.5684
91.5323
91.5148
91.5113
91.4396
88.8069
88.1661
86.7445
84.8005
83.4519
83.4107
85.7315
89.9709
93.9081
96.3446
97.3441
97.3697
96.861
96.1214
95.3287
94.5775
93.911
93.3441
92.8761
92.4983
92.1993
91.9673
91.7915
91.6623
91.5711
91.5108
91.4746
91.4572
91.4538
91.2982
88.744
88.1809
86.7557
84.7849
83.4073
83.2852
85.5724
89.9209
93.9653
96.4474
97.4469
97.4531
96.9214
96.1585
95.3425
94.5689
93.8827
93.3
92.82
92.4334
92.1281
91.8917
91.713
91.582
91.49
91.4292
91.3931
91.3758
91.3725
91.1096
88.6606
88.2013
86.7704
84.7635
83.3485
83.1177
85.3565
89.8528
94.0391
96.5799
97.5798
97.562
97.0009
96.2081
95.3621
94.5596
93.8479
93.2448
92.7491
92.3509
92.0372
91.7948
91.612
91.4783
91.3847
91.3231
91.2866
91.2693
91.2662
90.8654
88.5556
88.2278
86.7887
84.7359
83.277
82.9072
85.0779
89.7656
94.1312
96.7439
97.743
97.694
97.0959
96.2665
95.3846
94.5475
93.8054
93.1774
92.6628
92.2503
91.9261
91.6761
91.4878
91.3502
91.2539
91.1905
91.1531
91.1354
91.1325
90.5548
88.4276
88.2612
86.8108
84.7022
83.1942
82.6524
84.7291
89.6578
94.2428
96.9414
97.9375
97.8485
97.2049
96.3324
95.4091
94.532
93.754
93.097
92.5601
92.131
91.7943
91.5349
91.3396
91.1967
91.0963
91.03
90.9909
90.9726
90.9698
90.1616
88.2749
88.3023
86.8371
84.6623
83.1023
82.352
84.3002
89.528
94.3758
97.1744
98.1647
98.0255
97.3272
96.4051
95.435
94.5123
93.6928
93.0022
92.4398
91.9916
91.6406
91.3703
91.1665
91.0169
90.9112
90.8409
90.7991
90.7797
90.7771
89.6729
88.0961
88.3521
86.8678
84.6157
83.0038
82.0049
83.7788
89.3748
94.5321
97.4456
98.426
98.2252
97.4622
96.484
95.4619
94.4875
93.6201
92.8912
92.3002
91.8306
91.4634
91.1807
90.9674
90.8101
90.6982
90.6228
90.5772
90.5557
90.5532
89.124
87.8899
88.4117
86.9032
84.5622
82.9018
81.6089
83.1482
89.1969
94.7142
97.7578
98.7234
98.4476
97.6092
96.5682
95.489
94.4565
93.534
92.7618
92.1392
91.6461
91.261
90.9646
90.7408
90.5755
90.4569
90.3757
90.3249
90.2994
90.2957
88.4877
87.655
88.4823
86.9436
84.5011
82.8
81.1658
82.3868
88.9941
94.9244
98.1146
99.0593
98.6927
97.7669
96.6565
95.5155
94.4181
93.432
92.6114
91.9545
91.436
91.0313
90.7199
90.4851
90.3116
90.1867
90.0999
90.043
90.0101
89.9982
87.7363
87.3902
88.5653
86.9891
84.4319
82.7028
80.6745
81.4647
88.7669
95.1651
98.52
99.4365
98.9606
97.9337
96.7471
95.5404
94.3711
93.3109
92.4366
91.7434
91.1976
90.7715
90.4439
90.1973
90.016
89.8858
89.7945
89.7321
89.6919
89.6687
86.8382
87.094
88.6621
87.0399
84.3534
82.615
80.1364
80.3405
88.5183
95.4382
98.9787
99.8586
99.2513
98.1077
96.838
95.5622
94.3138
93.1663
92.2337
91.5027
90.9283
90.4789
90.1329
89.8736
89.6846
89.5505
89.457
89.3919
89.3462
89.3184
85.8285
86.765
88.7742
87.0958
84.2648
82.5424
79.554
78.9571
88.2554
95.7451
99.4959
100.33
99.5646
98.2862
96.9262
95.5788
94.2446
92.9921
91.9982
91.2291
90.625
90.1498
89.7827
89.5085
89.3112
89.174
89.0811
89.0183
88.9755
88.9771
84.6725
86.4025
88.9029
87.156
84.1648
82.4909
78.9437
77.2416
87.9927
96.0849
100.077
100.855
99.9004
98.4655
97.0084
95.5866
94.1609
92.7797
91.7256
90.919
90.2848
89.7806
89.388
89.0954
88.8875
88.7464
88.6542
88.596
88.561
88.5422
83.3206
86.007
89.0495
87.2192
84.0521
82.467
78.3654
75.1125
87.7574
96.4531
100.729
101.441
100.258
98.6408
97.0807
95.5794
94.0565
92.516
91.4108
90.568
89.9049
89.3674
88.9425
88.6263
88.4047
88.2578
88.1658
88.1125
88.0856
88.0772
81.7257
85.5816
89.2151
87.2827
83.9256
82.476
77.8603
72.416
87.5683
96.837
101.458
102.095
100.638
98.805
97.1393
95.546
93.9101
92.1771
91.0461
90.1708
89.4832
88.907
88.4393
88.0918
87.8534
87.7004
87.6105
87.5655
87.5511
87.5569
79.8376
85.1325
89.4002
87.3424
83.7846
82.523
77.4922
68.864
87.4373
97.214
102.27
102.825
101.039
98.947
97.1823
95.469
93.6539
91.7353
90.6152
89.7203
89.0199
88.3979
87.8701
87.4797
87.2219
87.0658
86.9847
86.9573
86.9651
86.9936
77.602
84.6709
89.6051
87.391
83.629
82.6115
77.4109
63.971
87.4249
97.5749
103.171
103.642
101.459
99.0496
97.2143
95.3262
93.1923
91.2653
90.0972
89.2064
88.5199
87.8437
87.2248
86.7721
86.4954
86.3465
86.2892
86.2969
86.3436
86.4079
74.9603
84.2143
89.8293
87.4161
83.4592
82.7456
77.8375
57.0529
87.6228
97.9396
104.164
104.556
101.893
99.0911
97.2893
95.1062
92.5803
90.8169
89.469
88.6144
87.9978
87.2598
86.496
85.9455
85.6532
85.5317
85.5216
85.5879
85.6948
85.8126
71.8525
83.7887
90.0712
87.3966
83.2755
82.9511
79.0219
48.3176
88.1081
98.3385
105.251
105.577
102.327
99.0552
97.4759
94.8296
92.0195
90.3264
88.7
87.9223
87.4855
86.6744
85.6844
84.983
84.6656
84.591
84.6566
84.8139
85.0136
85.2143
68.223
83.4307
90.3267
87.3085
83.0763
83.2398
81.0369
9.9032
89.016
98.7597
106.428
106.712
102.73
98.9098
97.5665
94.5724
91.6722
89.8086
87.7207
87.0615
87.0342
86.0834
84.7654
83.8614
83.4907
83.4727
83.6511
83.9477
84.2922
84.6252
64.0318
83.189
90.5871
86.6186
82.9325
83.3995
70.0531
0.280994
91.0472
99.0367
107.685
107.963
103.032
98.5513
97.7164
94.4532
91.5755
89.3265
86.3159
85.6986
86.6017
85.4432
83.6533
82.4871
82.0552
82.1197
82.4555
82.9529
83.5165
84.0546
59.2756
83.1267
90.8373
86.5245
82.51
83.0934
-0.366715
0.401875
95.5352
99.1956
109.005
109.329
103.04
97.9312
98.2188
94.55
91.706
88.9468
83.9701
82.838
85.8289
84.7911
82.2791
80.7571
80.2661
80.4868
81.0084
81.7726
82.6709
83.5172
54.0137
83.3214
91.0521
86.3853
82.3374
24.6661
-0.158252
0.345425
93.8712
99.2875
110.366
110.788
102.179
95.7587
98.9368
94.8272
91.9872
88.7863
81.0235
78.4459
84.9784
83.9997
80.3833
78.5604
77.9
78.5587
79.179
80.2581
81.7796
83.041
48.3924
83.8605
91.1946
86.5448
64.1413
-0.042242
-0.034724
0.398007
78.8676
99.1572
111.756
112.283
100.687
93.4935
99.8642
95.0973
92.3033
89.0756
80.1716
75.3236
85.2701
83.8372
70.8156
32.9237
11.453
7.21986
7.48264
12.1301
21.2204
33.7926
42.6623
84.8273
91.2246
87.0327
0.0566893
-0.0131484
0.0244577
0.484815
33.4735
99.0968
113.14
113.694
100.506
93.8719
100.983
95.0873
92.6168
90.1802
83.2786
73.7493
2.10061
0.175281
0.17364
0.174489
0.160112
0.158117
0.154096
0.145692
0.137731
0.132206
37.1215
86.3297
91.0682
49.2501
0.0299577
0.00541373
0.0425592
0.495402
20.4453
100.606
114.438
114.849
101.781
97.4385
101.494
94.6864
92.9013
91.5076
20.2061
0.127294
0.150819
0.166675
0.171468
0.168989
0.161116
0.15612
0.162565
0.151403
0.138652
0.14191
32.1698
88.7146
90.7897
-0.0970695
0.0144929
0.0136474
0.0438724
0.428747
8.80092
102.795
114.769
115.551
102.887
102.279
101.131
93.5415
93.0143
11.0538
0.0448295
0.110965
0.141499
0.160807
0.169633
0.166336
0.157793
0.155438
0.146479
0.13737
0.132131
0.132686
33.3099
92.2934
0.166996
-0.056357
0.00895713
0.0176452
0.0825674
0.320856
4.17081
104.254
113.916
116.042
102.367
105.147
101.173
91.0438
23.7544
0.0784169
0.0358816
0.0702693
0.111339
0.149824
0.164964
0.163109
0.153723
0.158613
0.136046
0.129176
0.124807
0.152417
91.5507
91.572
91.6111
91.673
91.7637
91.8902
92.0613
92.287
92.5787
92.9484
93.406
93.9547
94.5856
95.2683
95.9434
96.511
96.81
96.5841
95.4812
93.1389
89.4646
85.3233
82.6583
82.4875
84.4577
88.5262
94.4248
100.906
106.804
110.05
91.5192
91.5406
91.5799
91.642
91.7329
91.8598
92.0315
92.2583
92.5518
92.9245
93.3861
93.9405
94.5784
95.2692
95.9527
96.5288
96.8367
96.6192
95.5214
93.1727
89.4685
85.2824
82.6101
82.4595
84.437
88.5111
94.4205
100.905
106.811
110.076
91.4619
91.4835
91.5228
91.585
91.6762
91.8036
91.9765
92.2056
92.5031
92.8817
93.352
93.9181
94.571
95.279
95.98
96.5719
96.8932
96.686
95.5889
93.2147
89.4438
85.1792
82.5087
82.4035
84.3954
88.4817
94.4143
100.908
106.831
110.125
91.3807
91.4024
91.4418
91.504
91.5953
91.7236
91.8983
92.131
92.4346
92.8224
93.3058
93.8899
94.5661
95.3014
96.0295
96.6442
96.9811
96.7826
95.6812
93.2673
89.399
85.0222
82.3594
82.3208
84.3327
88.4375
94.4059
100.914
106.865
110.197
91.2746
91.2965
91.3362
91.3985
91.4902
91.6196
91.7969
92.0347
92.3466
92.7468
93.2477
93.8557
94.5627
95.3339
96.0973
96.7408
97.0965
96.9073
95.7994
93.3339
89.3367
84.809
82.1607
82.2122
84.2486
88.3782
94.3955
100.923
106.912
110.292
91.1413
91.1638
91.204
91.267
91.3596
91.4908
91.6718
91.9161
92.2385
92.6543
93.1768
93.8142
94.5595
95.3747
96.18
96.8571
97.2361
97.0597
95.9452
93.4165
89.2563
84.5337
81.9104
82.0787
84.1433
88.3037
94.3833
100.935
106.973
110.413
90.9793
91.0027
91.044
91.1082
91.2023
91.3359
91.5217
91.7742
92.1094
92.5438
93.0921
93.7645
94.5558
95.4234
96.2768
96.9918
97.3987
97.2399
96.12
93.5168
89.1563
84.1882
81.6057
81.922
84.0167
88.2133
94.3697
100.949
107.049
110.557
90.7876
90.8123
90.8549
90.9205
91.0166
91.1536
91.3452
91.6076
91.958
92.414
92.9921
93.705
94.5507
95.4803
96.3877
97.1446
97.5841
97.4484
96.3258
93.6369
89.0357
83.7625
81.2432
81.7442
83.8686
88.1069
94.3553
100.966
107.14
110.727
90.5651
90.5911
90.6346
90.7022
90.8008
90.9418
91.1405
91.4146
91.7827
92.2635
92.875
93.6337
94.5431
95.5458
96.5128
97.3152
97.7921
97.6857
96.5649
93.7797
88.8935
83.2429
80.8189
81.5482
83.6988
87.9836
94.3406
100.985
107.247
110.923
90.3109
90.3367
90.379
90.4503
90.5526
90.6986
90.9056
91.1934
91.5817
92.0904
92.7388
93.5481
94.5315
95.6204
96.6519
97.5028
98.0225
97.9526
96.8395
93.9485
88.7287
82.6118
80.3273
81.3376
83.5072
87.8427
94.3263
101.005
107.36
111.144
90.0244
90.0807
90.0803
90.1624
90.2701
90.422
90.6386
90.942
91.3535
91.8933
92.5816
93.4448
94.5137
95.7051
96.8038
97.7064
98.2749
98.2499
97.153
94.1474
88.5409
81.8459
79.7621
81.1173
83.2932
87.6831
94.3135
101.027
107.482
111.392
89.7396
89.7731
89.7535
89.8388
89.9524
90.1103
90.3372
90.6586
91.0962
91.6704
92.4014
93.3197
94.4861
95.8012
96.966
97.9242
98.5489
98.5785
97.5088
94.3814
88.3304
80.914
79.1152
80.8931
83.0564
87.5035
94.303
101.05
107.616
111.666
89.3361
89.3539
89.395
89.4778
89.5962
89.7602
89.9991
90.3413
90.8085
91.4204
92.1964
93.1678
94.4426
95.9094
97.1335
98.1537
98.8439
98.9393
97.9151
94.6563
88.0985
79.7736
78.3763
80.6723
82.7961
87.302
94.2962
101.072
107.76
111.968
88.9415
88.9588
88.9998
89.077
89.1942
89.366
89.6218
89.9887
90.4888
91.1419
91.9653
92.9841
94.3681
96.027
97.2966
98.3923
99.1596
99.3332
98.3746
94.9789
87.8488
78.3656
77.5307
80.4629
82.5112
87.0761
94.2948
101.095
107.918
112.297
88.5362
88.5505
88.5855
88.641
88.7405
88.9242
89.2043
89.5998
90.1357
90.8332
91.7072
92.7652
94.2167
96.1369
97.4392
98.6372
99.4957
99.7611
98.8937
95.3576
87.5856
76.6052
76.5528
80.2741
82.2008
86.8223
94.3007
101.117
108.087
112.653
88.0838
88.1087
88.1537
88.1718
88.2153
88.4388
88.7489
89.1741
89.7473
90.492
91.42
92.5122
93.8531
96.1698
97.5367
98.887
99.8522
100.223
99.4803
95.8015
87.3145
74.3712
75.4282
80.1216
81.8633
86.536
94.3166
101.137
108.255
113.033
87.5785
87.6189
87.6992
91.8774
87.616
87.9306
88.259
88.7087
89.3205
90.115
91.0988
92.2362
93.2151
95.9161
97.5606
99.1432
100.23
100.72
100.143
96.3213
87.0414
71.5149
74.2301
80.0353
81.4975
86.2102
94.3459
101.154
108.426
113.438
87.0369
87.0993
87.21
90.4517
87.174
87.4143
87.7298
88.1963
88.8502
89.6973
90.7341
91.9613
92.8211
95.094
97.4972
99.4124
100.629
101.25
100.892
96.9298
86.7703
67.877
73.0984
80.0288
81.1022
85.835
94.3935
101.166
108.602
113.862
86.4825
86.5679
86.6614
86.7187
86.7247
86.8676
87.1445
87.6242
88.3299
89.2343
90.3145
91.6555
92.7651
93.7774
97.3857
99.7081
101.051
101.811
101.738
97.646
86.5025
63.1112
72.1716
80.1265
80.6766
85.3948
94.4683
101.171
108.783
114.3
85.9319
86.0479
86.1398
86.1803
86.1893
86.2683
86.4745
86.9758
87.7531
88.722
89.8241
91.256
92.7542
92.5818
97.3441
100.049
101.495
102.394
102.692
98.4606
86.2654
56.383
71.6882
80.37
80.2206
84.8662
94.5852
101.165
108.969
114.743
85.4047
85.5729
85.677
85.6776
85.6073
85.6197
85.6812
86.2247
87.1091
88.155
89.2334
90.7724
92.6936
92.2135
97.5193
100.457
101.961
102.99
103.766
99.379
86.1716
47.2361
72.0121
80.8165
79.7313
84.2223
94.7659
101.148
109.161
115.179
84.933
85.1959
85.3371
85.2746
85.0109
84.8688
84.7789
85.3046
86.3601
87.5004
88.4789
90.2171
92.6713
92.876
97.9648
100.944
102.446
103.575
104.968
100.471
86.3474
28.129
73.7823
81.5083
79.1872
83.4618
95.0394
101.117
109.361
115.587
84.5511
84.98
85.2054
85.0456
84.472
83.8362
83.58
84.1191
85.4436
86.6598
87.4009
89.553
92.7737
94.0989
98.5702
101.522
102.946
104.11
106.303
101.58
87.0155
16.4389
71.7746
82.3989
78.5146
82.6352
95.4422
101.073
109.572
115.936
84.3008
85.0133
85.4302
85.1029
83.912
82.6096
81.964
82.5993
84.4225
85.5266
85.554
88.7341
92.9985
95.3609
99.1635
102.22
103.459
104.522
107.769
102.655
87.9977
0.103238
0.747279
83.4996
77.5974
81.6421
96.0222
101.019
109.795
116.179
84.2181
85.3771
86.3751
85.836
83.2549
80.9551
79.4773
80.5149
83.4166
83.9005
82.72
87.7734
93.3467
96.4477
99.8252
103.097
103.995
104.69
109.346
103.682
90.2201
0.903165
0.814451
0.22262
15.3526
81.0288
96.8398
100.96
110.033
116.248
46.9843
61.8642
74.5359
79.5781
74.393
74.2524
76.195
76.3472
82.4798
82.6864
80.3028
86.895
93.9209
97.4313
101
104.21
104.596
104.454
110.979
104.481
93.9893
1.00512
0.771983
0.264894
0.448208
80.9317
97.933
100.902
110.286
116.036
0.131184
0.127817
0.125292
0.12139
0.114817
0.115438
0.130908
0.193843
0.262405
77.0569
78.234
86.5604
94.9679
98.3532
102.635
105.535
105.374
103.653
112.551
105.525
96.5848
1.23034
0.701525
0.316535
0.364643
38.7688
99.2953
100.862
110.561
115.383
0.140215
0.140492
0.141321
0.130668
0.123916
0.129349
0.130541
0.14593
0.124194
0.0847302
3.77859
87.4168
96.8681
99.0645
104.105
106.972
106.761
103.288
114
105.573
99.8559
1.31094
0.63464
0.3417
0.313421
0.15687
100.749
100.879
110.874
114.04
0.133633
0.130194
0.127486
0.124738
0.118584
0.106575
0.117948
0.12688
0.108285
0.0437047
0.0766719
27.7103
99.617
99.6035
104.586
108.384
108.104
104.982
114.876
106.315
97.3014
1.38453
0.583113
0.347677
0.279849
0.209934
102.062
101.02
111.335
111.628
0.122919
0.123963
0.122663
0.121362
0.136882
0.102185
0.105554
0.108511
0.0845781
0.00427238
0.0338263
-0.057158
103.099
99.9937
104.525
110.377
108.48
106.876
115.773
105.094
78.7867
1.44829
0.546978
0.343692
0.257444
0.193861
8.44424
101.168
112.378
107.721
30.6115
95.0042
-0.147168
-0.0441911
0.00729297
0.0193651
0.0765695
0.226979
183.398
105.529
116.946
116.702
101.708
106.137
103.824
85.2131
0.0641762
0.0810073
0.0227932
0.0450895
0.0826673
0.135533
0.161512
0.160138
0.143513
0.160731
0.128113
0.120608
0.118877
0.232033
112.863
95.9756
-0.126376
-0.0392981
0.00659674
0.0203633
0.0775428
0.155107
32.6454
106.215
118.38
117.532
101.851
107.77
110.637
-0.896245
0.0761402
0.011423
0.0128887
0.0344449
0.0629589
0.122182
0.16487
0.155667
0.136118
0.12483
0.117532
0.110695
0.111478
0.122816
129.263
0.365571
-0.110644
-0.0369439
0.0062018
0.0212091
0.0643222
0.0802759
0.811804
114.43
116.412
118.812
103.474
108.658
117.157
0.0184634
0.186427
0.0263969
0.0106038
0.0455898
0.0469602
0.106498
0.170219
0.13946
0.126901
0.114088
0.10439
0.0961112
0.0946483
0.120438
120.742
1.19222
-0.0981031
-0.0358665
0.0060448
0.0221014
0.0959035
0.00901154
0.451467
114.866
112.422
120.729
105.848
113.203
0.662328
-0.00821099
0.190208
0.0369019
0.0146765
0.0331669
0.0394907
0.0928027
0.125077
0.127935
0.114427
0.100708
0.0897416
0.0793014
0.0599928
0.149539
46.6927
-0.15842
-0.0875574
-0.0350839
0.00602853
0.0226104
0.088084
-0.0481899
-1.13286
119.259
114.855
123.446
108.44
116.548
0.0785284
-0.0363708
0.150299
0.0455261
0.0168664
0.023895
0.0389876
0.0860616
0.137583
0.111655
0.0987952
0.0854631
0.0751026
0.0665432
0.062435
6.92149
0.171008
-0.0938673
-0.0809452
-0.0341152
0.00606325
0.0230689
0.0727493
-0.0835271
-1.06787
82.9616
121.389
123.765
109.73
-1.75784
0.00759016
-0.0176688
0.0613846
0.0502507
0.0134835
0.0524557
0.042694
0.0806462
0.109867
0.0917153
0.0813907
0.0693846
0.0617636
0.0564733
0.0533591
0.0691065
-0.0623448
-0.0851768
-0.0747151
-0.0327635
0.00607159
0.0234816
0.0633392
-0.0891798
-0.799416
14.6315
121.145
122.701
106.53
-0.0953501
0.00161234
-0.00427164
0.0607481
0.0541169
0.0042629
0.0992127
0.0410464
0.0918568
0.0856478
0.0742501
0.0642266
0.0529464
0.0566346
0.0491265
0.0527741
0.0563297
-0.0339347
-0.075202
-0.0690443
-0.0309946
0.00605878
0.0239039
0.0545771
-0.0724259
-0.985398
-0.399344
118.666
123.448
-0.241145
-0.0583616
-0.00261617
0.0104989
0.0516609
0.258178
0.0134822
0.110557
0.139377
0.0987399
0.062258
0.0603751
0.0495562
0.0397967
0.0382478
0.040664
0.0441007
0.0475383
-0.00283465
-0.0650011
-0.0637646
-0.0289634
0.00606478
0.0243393
0.0521099
-0.0582646
-0.580252
-0.353539
123.775
48.5475
-0.119122
-0.0819768
-0.0252196
0.00857316
0.0486457
0.283698
0.0194778
0.0201626
0.0401452
0.0554379
0.0590989
0.0497869
0.0440893
0.0300691
0.0281767
0.0299277
0.0348709
0.0392165
0.004008
-0.0554426
-0.0586705
-0.0268173
0.00605576
0.0246653
0.0522608
-0.00838806
-0.136917
-0.651162
-0.412036
-0.234443
-0.0957535
-0.0860019
-0.0572243
0.00977293
0.0452329
0.0804831
0.0421287
0.035571
0.0440504
0.0525446
0.0540974
0.0432505
0.031522
0.0240083
0.0226213
0.0448252
0.0289539
0.0331053
0.025319
-0.046951
-0.0537036
-0.0246665
0.00598395
0.0249038
0.0563681
0.0345013
-0.0632041
-0.574324
-0.384618
-0.289839
-0.0835836
-0.0988921
-0.110127
0.0157757
0.0533258
0.0628536
0.0547888
0.0528381
0.0550294
0.0564639
0.0511019
0.0409259
0.029293
0.021478
0.0196372
0.0337604
0.0270129
0.0300769
0.0390302
-0.0397806
-0.04888
-0.0225875
0.00588798
0.0250455
0.0571665
0.0487167
-0.0116564
-0.934516
-0.334239
-0.367325
-0.0927939
-0.0843543
-0.226423
0.0503799
0.0641651
0.0636346
0.0626324
0.066415
0.0630019
0.0647688
0.0513721
0.0415736
0.030918
0.0367391
0.0203015
0.0207526
0.0245872
0.0293973
0.0226481
-0.0341215
-0.0442868
-0.0205737
0.00582377
0.025032
0.0664994
0.0607447
0.0447153
-0.673119
-0.194871
0.227232
-0.0801595
-0.0740338
-0.415353
0.356566
0.0921347
0.0656078
0.0632944
0.316191
0.0684552
0.0587017
0.0523095
0.0436407
0.0346724
0.0282855
0.0256644
0.0261885
0.0287565
0.0330173
0.0435227
-0.0300454
-0.040012
-0.0186008
0.00577186
0.0248115
0.057698
0.0796723
0.0934958
-0.414272
-0.295056
0.35235
-0.0454488
-0.0550731
-0.188931
3.45553
0.0648547
0.0681497
0.0754883
0.0675193
0.0708815
0.0596034
0.0577358
0.0440585
0.0380651
0.0336775
0.031312
0.0339815
0.0359859
0.0379449
0.0251029
-0.0274929
-0.0360545
-0.0166972
0.00572311
0.024394
0.0480001
0.0795312
0.0718416
-0.26047
-0.254641
-0.16979
-0.0593757
-0.0203931
-0.0770581
0.0506841
0.0554472
0.0658634
0.07233
0.0728079
0.0676131
0.0600024
0.0535532
0.0429566
0.0401266
0.0396214
0.0398314
0.0395603
0.0362687
0.0368854
0.0364966
-0.0262345
-0.0323898
-0.014859
0.00569597
0.0237528
0.0454099
0.0709874
0.0611719
-0.184016
-0.163638
-0.121963
-0.0704128
-0.056211
-0.0452378
0.0384358
0.0458579
0.0662434
0.0635746
0.0639386
0.063464
0.0587066
0.048275
0.0422733
0.041614
0.0432436
0.0503893
0.0690322
0.0819931
0.0663033
0.0495023
-0.0259107
-0.02899
-0.0130655
0.00567017
0.0228658
0.0457874
0.0609125
0.0646209
-0.100867
-0.0463077
-0.0859227
-0.0786568
-0.0608742
-0.0333139
0.0637438
0.0368923
0.0474478
0.052885
0.0537955
0.0538747
0.051709
0.0476237
0.0418117
0.040522
0.0382569
0.0287892
0.232875
0.109931
0.0827829
0.0642061
-0.0261093
-0.0258151
-0.0113365
0.00564183
0.0217126
0.0402461
0.051425
0.0459082
-0.0298732
0.137622
-0.0779325
-0.0867998
-0.0722864
-0.0437946
0.0729232
0.0228655
0.0339458
0.0400549
0.0430428
0.0444921
0.0453921
0.0417249
0.0424519
0.0416369
0.0387854
0.0375835
0.0407086
0.0517447
0.0611122
0.0807048
-0.0264316
-0.022849
-0.0096784
0.00559526
0.0202666
0.035739
0.0413547
0.0315366
0.000751264
0.00953393
-0.0679864
-0.114901
-0.103161
-0.0608635
-0.0211572
0.00661256
0.0213069
0.0293256
0.0320227
0.0957812
0.0359862
0.0357282
0.0372164
0.0442879
0.0399482
0.0430713
0.0470311
0.0512317
0.0549188
0.097164
-0.027249
-0.0200653
-0.00810127
0.00548059
0.0185066
0.0317241
0.0327244
0.0125213
0.0101721
0.00617954
-0.0728703
-0.144685
-0.143624
-0.0915727
-0.0332606
-0.00494504
0.00966926
0.0192831
0.0250535
0.0245675
0.0270079
0.0295718
0.0317605
0.0339959
0.0366357
0.0396884
0.0427658
0.0456906
0.0484945
0.106583
-0.0287269
-0.0174167
-0.00664147
0.00526925
0.0164448
0.0269842
0.0259977
0.015038
0.0153364
-0.0135861
-0.111291
-0.166046
-0.176261
-0.124174
-0.0594726
-0.0163406
0.00212814
0.00965052
0.0149937
0.0183409
0.0213695
0.0239159
0.0263241
0.0288669
0.0315259
0.0341824
0.0367515
0.039151
0.0414002
0.868728
-0.0296394
-0.0148511
-0.00532005
0.00494425
0.0141754
0.0208657
0.0206727
0.0138824
0.0014161
0.0681764
0.186424
-0.16529
-0.18068
-0.135349
-0.0670995
-0.0229322
0.00026143
0.00269915
0.0067151
0.00999879
0.0130792
0.0159745
0.0186846
0.0213351
0.0239356
0.0263564
0.0285943
0.0306594
0.0325162
0.550429
-0.0259546
-0.0123509
-0.00414473
0.00448825
0.0116486
0.0157071
0.0157982
0.01165
-0.00758581
-0.0456305
-0.0793651
-0.136765
-0.142459
-0.110974
-0.050171
-0.0186611
-0.000581588
0.000722308
-0.00166603
-0.000748643
0.000897599
0.00323049
0.00586968
0.00848917
0.0109027
0.0130067
0.0148176
0.0163047
0.0173728
0.0548053
-0.0187305
-0.00996256
-0.00311968
0.00389355
0.00897979
0.0129889
0.0123072
-0.00316851
-0.024893
-0.0451563
-0.0731874
-0.100763
-0.0994453
-0.0712231
0.032444
-0.0139207
-0.00453404
-0.00728329
-0.0127008
-0.0159244
-0.015379
-0.0181503
-0.0149463
-0.0139127
-0.0116655
-0.00983481
-0.00847839
-0.0076065
-0.00729167
0.0429856
-0.0118384
-0.00776143
-0.00224781
0.00317397
0.00618128
0.00390886
0.0101557
-0.0278344
-0.0496537
-0.0550795
-0.0643888
-0.0590146
-0.0302964
-0.0493718
-0.0216259
-0.0155616
-0.0153217
-0.0217758
-0.0277881
-0.0346916
-0.0355851
-0.0442235
-0.0426197
-0.0426944
-0.0440836
-0.0421879
-0.0405633
-0.03957
-0.0391811
0.0265024
-0.00714154
-0.00579507
-0.00152632
0.00237786
0.00330545
0.00195089
-0.0152674
-0.0795818
-0.100029
-0.0634574
-0.05462
-0.0518241
-0.0495692
-0.0361894
-0.0286527
-0.0247757
-0.0276395
-0.035243
-0.0434782
-0.0558676
-0.063923
-0.0697783
-0.0733465
-0.0756766
-0.0792625
-0.0690029
-0.0666104
-0.0658621
-0.0658623
0.0143574
-0.0042049
-0.00407635
-0.000942179
0.00160581
0.000863108
-0.0070289
-0.0284273
-0.130269
-0.132027
-0.07089
-0.0464144
-0.0390579
-0.0371258
-0.0342952
-0.0292524
-0.0282104
-0.0320419
-0.0373735
-0.0501817
-0.0690389
-0.0700333
-0.0740763
-0.0754107
-0.0741558
-0.0518736
-0.0493686
-0.0766766
-0.0778582
-0.0789122
0.00717219
-0.00238205
-0.00261199
-0.000484583
0.000979361
-0.000730173
-0.00952184
-0.0120633
-0.106757
-0.111781
-0.066549
-0.0399322
-0.0306797
-0.0270831
-0.019536
-0.0200164
-0.0253599
-0.0356991
-0.0400755
-0.0411296
0.0603735
0.025628
0.0881882
-0.0566921
-0.0717897
-0.0754034
-0.0743794
-0.0729105
-0.0722844
-0.0711564
0.0031838
-0.00119193
-0.00138642
-0.000154822
0.000555225
-0.00110942
-0.00814592
0.0366535
0.0268132
-0.0741378
-0.0510127
-0.0364115
-0.0275336
-0.0221788
-0.0190987
-0.0179328
-0.0224994
-0.025701
-0.00618515
-0.0272465
-0.0212741
-0.0343449
-0.0390745
0.0308242
-0.0575458
-0.0503726
-0.0444106
-0.0442333
-0.0439718
-0.0420121
-5.06859e-05
-0.000159954
-0.000124247
-9.27877e-06
0.000103388
5.63335e-05
-0.000410251
-0.0020431
-0.00024657
-0.015169
-0.0415975
-0.0423449
-0.0325305
-0.0226978
-0.0153042
-0.0102617
-0.00748507
-0.00781918
-0.0116195
-0.0151213
-0.0158501
-0.0142535
-0.0114733
-0.0084798
-0.00626045
-0.00423042
-0.00158438
0.00186686
0.00233016
0.0038807
0.125465
0.117932
0.117152
0.116123
0.110715
0.0999052
0.0974896
0.0960688
0.0695004
-0.00766716
0.00758904
0.0321407
-0.670032
100.231
104.773
111.398
108.224
109.311
116.544
113.384
13.6627
1.35905
0.529771
0.337674
0.245915
0.181554
-0.0540114
101.239
113.237
106.03
0.120407
0.113405
0.112373
0.112473
0.104468
0.0951787
0.0915711
0.0877056
0.0617706
-0.0107342
0.000534779
-0.0143136
0.0324783
81.8263
104.97
111.507
107.838
108.755
117.254
119.429
72.8305
1.25793
0.518192
0.332016
0.238157
0.172944
-0.0220459
3.76591
113.947
105.695
0.117421
0.123298
0.110447
0.111174
0.0960986
0.0899331
0.0855316
0.0800923
0.0563463
-0.00683363
-0.0055622
0.000750545
0.0430957
0.142038
106.488
111.875
108.313
110.827
117.804
120.885
-9.49187
1.11475
0.50476
0.325374
0.230842
0.164625
-0.0017902
0.0428685
114.784
105.927
0.111032
0.104933
0.136459
0.186708
0.0855556
0.0845709
0.0797019
0.0735824
0.0534433
0.00358681
0.000746487
0.0182771
0.11653
0.153667
2.33317
112.354
107.421
111.614
117.597
121.138
-1.94752
0.940228
0.49057
0.317706
0.223782
0.156668
0.0106048
0.0493743
37.2841
107.212
0.115124
0.0921112
0.0927315
0.0823249
0.079768
0.0804501
0.074225
0.0682377
0.0530276
0.0201901
0.00827418
0.0255041
0.091147
0.122086
-0.0378372
111.879
106.131
111.461
115.894
119.971
-1.91141
0.772237
0.47089
0.308919
0.216974
0.149156
0.0190443
0.0472022
0.111402
110.32
0.04862
0.0738275
0.0791587
0.0755895
0.0970342
0.0870319
0.0686721
0.0639564
0.0541738
0.0300458
0.0182838
0.0247967
0.0389886
0.0659932
-0.0149922
-0.295309
96.8011
110.825
118.485
115.97
-1.80781
0.597894
0.453422
0.298965
0.210255
0.142146
0.0255039
0.0430186
0.105239
20.7161
0.0572853
0.0640136
0.0687316
0.0684254
0.0785869
0.0851992
0.0614768
0.0608408
0.0538819
0.03971
0.0296783
0.0189591
0.0258891
-0.00608764
-0.0255577
-0.282035
-0.302524
100.597
121.838
58.3565
-1.62242
0.434203
0.412316
0.28774
0.203411
0.135692
0.0309342
0.0404542
0.0995406
0.235794
0.0513669
0.056818
0.061186
0.0618715
1.49691
0.0644421
0.0635817
0.068488
0.0505062
0.0443557
0.0344872
0.0167359
0.00524342
-0.0753931
-0.0562591
-0.288538
-0.302663
-0.3297
87.7031
-0.608736
-1.4555
0.43054
0.376164
0.275124
0.1963
0.129738
0.0356301
0.0395197
0.0931003
0.212524
0.0440438
0.0492317
0.0544639
0.0633513
2.09599
0.0523356
0.0532088
0.0581675
0.0539342
0.0447082
0.0346434
0.0184455
-0.016153
-0.219368
0.657596
-0.0696207
-0.309794
-0.334867
-0.477787
-0.554738
-1.30222
0.232343
0.339283
0.26106
0.188844
0.124228
0.0400653
0.0392255
0.0858249
0.183804
0.0377881
0.0427734
0.0465965
0.0448913
0.049656
0.0516152
0.0506618
0.0472964
0.0437155
0.0414936
0.090457
0.0122356
-0.0184499
-0.0581235
1.35622
-0.0402149
-0.298622
-0.325833
-0.469881
-0.657423
-1.18245
0.154318
0.300036
0.245564
0.18097
0.119106
0.0442354
0.0394998
0.0757754
0.15165
0.0346376
0.0400048
0.0453349
0.05739
0.0505749
0.0504537
0.0481976
0.0436887
0.0392863
0.0329876
0.0449358
0.0110886
-0.0186783
-0.0540694
0.427165
-0.203606
-0.27843
-0.323178
-0.46217
-0.592833
-1.0122
0.0749915
0.258709
0.228696
0.17261
0.114254
0.0480475
0.0401715
0.0686754
0.119801
0.0343899
0.0403241
0.0463374
0.0516894
0.050848
0.0503289
0.0467581
0.0419973
0.0375362
0.0309867
0.0311953
0.00911069
-0.019106
-0.00925136
-0.00136857
-0.215739
-0.281924
-0.343181
-0.454987
-0.524235
-0.879004
-0.0167679
0.21709
0.210616
0.163699
0.109538
0.0512584
0.0410045
0.0621279
0.0909743
0.0376278
0.0430922
0.0492884
0.0534028
0.0560511
0.0570399
0.0604521
0.0436748
0.0395412
0.0360134
0.0244411
0.00690921
-0.0164524
-0.0354663
-0.108751
-0.207106
-0.256818
-0.369081
-0.381118
-0.598363
-0.726181
-0.0685078
0.176722
0.191565
0.154182
0.104837
0.0535925
0.0417573
0.0560928
0.0667687
0.041819
0.0542593
0.056061
0.0610669
0.061088
0.0607775
0.0627793
0.0499012
0.0397245
0.030916
0.020479
0.0204651
-0.0161262
-0.0464384
-0.12039
-0.203451
-0.258934
-0.365829
-0.399492
-0.511194
-0.526681
-0.113309
0.13948
0.171864
0.144085
0.10003
0.0549548
0.042205
0.0505107
0.0476501
0.0464888
0.0566662
0.0659369
0.0665587
0.0637832
0.0590587
0.0492544
0.0453908
0.0419761
0.0339172
0.0170967
0.0215926
-0.015084
-0.0527626
-0.122565
-0.190997
-0.251089
0.0809556
-0.420864
-0.424074
-0.407998
-0.127839
0.105476
0.151942
0.133476
0.0950297
0.0553758
0.0421577
0.045332
0.0332878
0.0654307
0.0688726
0.0726288
0.0672032
0.0785116
0.0554483
0.0315569
0.0498715
0.0486907
0.0355973
0.0202272
0.0202474
0.0145023
-0.0556152
-0.128667
-0.195908
-0.263158
0.12074
-0.416556
-0.368589
-0.300841
-0.134784
0.0770174
0.132241
0.1224
0.0897704
0.0549315
0.0414493
0.0405086
0.0228948
0.0732899
0.0758644
0.080315
0.443446
0.0707725
0.0674623
0.0775149
0.0503587
0.060886
0.0414676
0.0228397
0.000527554
-0.0183749
-0.0392852
-0.0289852
-0.206865
-0.258442
-0.21786
-0.33577
-0.312219
-0.265672
-0.128433
0.0542084
0.113228
0.110987
0.084216
0.0537397
0.0401689
0.0360244
0.0155814
0.0656632
0.0673617
0.0675624
0.0689474
0.0715552
0.1515
0.0793159
0.0728692
0.0661339
0.0480529
0.0264536
-0.00165162
-0.00765109
-0.0185899
-0.130342
-0.204054
-0.248688
-0.2393
-0.272829
0.478471
-0.229044
-0.0982697
0.0368519
0.0953309
0.099405
0.0783505
0.0519512
0.0385175
0.031893
0.0105372
0.0581592
0.0616231
0.0660637
0.0705451
0.0749186
0.0791019
0.0778709
0.0735374
0.0656595
0.051226
0.0276626
-0.005699
-0.0457821
-0.0754985
-0.133794
-0.198285
-0.235322
0.33464
-0.196098
-0.116505
-0.172108
-0.077632
0.0241144
0.0788869
0.0878372
0.0721732
0.0497111
0.0365429
0.0281548
0.00711922
0.0514006
0.0547103
0.0593367
0.0640857
0.0695094
0.0737045
0.07376
0.0697894
0.0613229
0.0457926
0.0185247
-0.0190822
-0.0598077
-0.0978398
-0.144688
-0.185509
-0.204811
-0.11189
-0.0392071
-0.156845
-0.125307
-0.06249
0.0147597
0.0641004
0.076487
0.0657144
0.0470688
0.0342723
0.0248536
0.00485404
0.0437037
0.0462077
0.0488849
0.0515965
0.0548224
0.0565559
0.0567641
0.0528157
0.0433387
0.0255614
-0.0127307
-0.0536292
-0.0971783
-0.135324
-0.165943
-0.185024
-0.187366
-0.181873
-0.0293845
-0.096139
-0.0716325
-0.0517302
0.0077418
0.0510564
0.0655479
0.0590349
0.0439879
0.0317457
0.0219919
0.00340003
0.0343238
0.0361124
0.0376202
0.0387996
0.0388098
0.1063
0.0297608
0.0206095
0.00265567
-0.00668243
-0.0707194
-0.121702
-0.167085
-0.194897
-0.199229
-0.189471
-0.164374
-0.149456
-0.0417895
-0.0733447
-0.063769
-0.0449109
0.00221274
0.0397244
0.0551936
0.0522122
0.0404635
0.0292452
0.0194828
0.00249698
0.0181009
0.0183248
0.0173073
0.0139264
0.00809349
-0.000585836
-0.0116115
-0.0294717
-0.0605137
-0.0824429
-0.167481
-0.133798
-0.175917
-0.29787
-0.263794
-0.202822
-0.151684
-0.113507
-0.10824
-0.047642
-0.0701251
-0.0424901
-0.00241286
0.030004
0.045566
0.0453519
0.0365347
0.0266747
0.017191
0.00194194
-0.00747273
-0.00836007
-0.0105735
-0.0149184
-0.0223266
-0.032762
-0.0480862
-0.0776635
-0.122319
-0.186584
-0.269266
-0.265238
-0.410144
-0.427291
-0.346317
-0.207789
-0.138699
-0.0826159
-0.0262264
0.176174
-0.0945823
-0.0445113
-0.00630187
0.0218077
0.0367677
0.0385585
0.0322515
0.0238755
0.0150007
0.00158315
-0.0393893
-0.0405057
-0.0429889
-0.0474839
-0.0550757
-0.0674671
-0.0869676
-0.11607
-0.160145
-0.224533
-0.309822
-0.40098
-0.481366
-0.505954
-0.411188
-0.24785
-0.12098
-0.0476302
0.00130617
3.37108
-0.157917
-0.0221943
-0.0090016
0.015078
0.028877
0.0319206
0.0276769
0.020795
0.0128334
0.00131899
-0.0664831
-0.0676979
-0.0700399
-0.0741
-0.0806082
-0.0908261
-0.106849
-0.131869
-0.16856
-0.21978
-0.287208
-0.365108
-0.433369
-0.447166
-0.377642
-0.213243
-0.0674781
-0.0202993
0.0207062
0.58803
-0.0770421
-0.0150385
-0.00973205
0.00979998
0.0219256
0.0255188
0.0228766
0.0174382
0.0106379
0.00108874
-0.0801216
-0.0816843
-0.0832453
-0.0864787
-0.0912224
-0.0986208
-0.109795
-0.125906
-0.148295
-0.177759
-0.210869
-0.254532
-0.284785
-0.2899
-0.233765
-0.129969
-0.0218174
-0.00650613
0.013958
0.594729
-0.033528
-0.0294501
0.00861524
0.00599189
0.0158943
0.0193891
0.0178987
0.013825
0.00837875
0.000859563
-0.0572227
-0.0569738
-0.0952277
-0.0859129
-0.085129
-0.0886854
-0.0956626
-0.101624
-0.107258
-0.0455302
-0.0905736
-0.00438353
-0.00733172
-0.117858
-0.0829062
-0.0421504
0.00989073
0.000703866
0.00261762
-0.00749732
-0.00187302
-0.0201679
-0.00529751
0.00367988
0.0106845
0.0135107
0.012768
0.00997002
0.00602703
0.00061465
-0.0384043
-0.0133281
-0.0351014
-0.0307671
-0.0604101
-0.0603625
-0.0616363
-0.0615117
0.0815043
0.0703802
-0.0524181
-0.0463445
-0.0413226
-0.0395749
-0.0148627
-3.76637e-05
0.00717948
0.00617318
0.00139679
-0.00408345
-0.00879691
-0.0111145
-0.00324458
0.00224478
0.00605164
0.00778746
0.00746416
0.0058663
0.00355243
0.00034363
0.0037339
-0.00047304
-0.00562225
-0.0068366
-0.0147116
-0.00694347
-0.0200379
0.0261613
0.0268789
-0.0193173
-0.0163865
0.361763
-0.00928114
0.00171038
0.00220158
0.00362797
0.00409761
0.00288451
0.00079421
-0.000643889
-0.0022613
-0.00136192
0.000168111
0.000587292
0.000487981
0.000567542
0.000517896
0.000383446
0.000264811
0.000106802
94.6523
89.8602
88.4888
87.5868
85.7646
84.0451
83.2864
84.3815
87.8194
92.0297
95.1967
96.8671
97.3484
97.0933
96.4699
95.7143
94.9585
94.2674
93.6671
93.1636
92.7516
92.4215
92.1621
91.9627
91.8133
91.7053
91.631
91.5836
91.5573
91.5471
94.6944
90.9458
88.6123
87.9063
86.2493
84.3947
83.328
83.8582
86.8033
91.0693
94.6005
96.6216
97.342
97.2187
96.6506
95.9047
95.1346
94.4188
93.7908
93.2603
92.8243
92.4734
92.1966
91.9825
91.8212
91.7035
91.6213
91.5679
91.5369
91.5232
94.7798
90.9483
88.5919
87.9172
86.2524
84.383
83.2926
83.7724
86.724
91.065
94.6529
96.6902
97.4018
97.2624
96.6783
95.9175
95.1335
94.4052
93.7667
93.228
92.7858
92.4304
92.1504
91.9342
91.7714
91.6527
91.5701
91.5164
91.4854
91.4718
94.9035
90.9549
88.5622
87.9343
86.2566
84.3636
83.2372
83.6382
86.5956
91.0491
94.7222
96.7887
97.4931
97.3335
96.7276
95.9453
95.14
94.3916
93.7358
93.1835
92.7311
92.3683
92.083
91.8632
91.698
91.578
91.4947
91.4408
91.4099
91.3964
95.0681
90.9661
88.5236
87.958
86.2619
84.3365
83.1627
83.4547
86.418
91.0254
94.8123
96.9174
97.6139
97.4295
96.7957
95.9851
95.1514
94.3762
93.6976
93.1271
92.6609
92.2879
91.9954
91.7705
91.6019
91.4798
91.3953
91.3409
91.3098
91.2965
95.2778
90.9834
88.4766
87.9889
86.2681
84.3017
83.0702
83.2191
86.1861
90.9951
94.9255
97.0781
97.7636
97.5472
96.8783
96.0328
95.1648
94.3572
93.6505
93.0578
92.5747
92.1892
91.8874
91.6559
91.4826
91.3572
91.2706
91.2148
91.1831
91.1697
95.5366
91.008
88.4224
88.0275
86.2752
84.2595
82.9615
82.9283
85.8935
90.9571
95.0633
97.2723
97.9424
97.6852
96.9732
96.0868
95.1789
94.3335
93.5938
92.9748
92.4717
92.0713
91.7584
91.5186
91.3391
91.2091
91.119
91.0609
91.0279
91.0141
95.8486
91.0412
88.3626
88.0747
86.283
84.2098
82.8388
82.5784
85.5316
90.9121
95.2273
97.502
98.1513
97.8432
97.0799
96.1463
95.1933
94.3043
93.5263
92.8769
92.3508
91.9332
91.6073
91.3577
91.1706
91.0345
90.9398
90.8783
90.8433
90.8288
96.2182
91.0837
88.2987
88.1314
86.2913
84.1528
82.7053
82.165
85.0895
90.8603
95.4199
97.7696
98.3913
98.021
97.1975
96.2109
95.2074
94.2686
93.4464
92.7624
92.2104
91.7734
91.4329
91.1719
90.9761
90.833
90.7324
90.6664
90.6283
90.6126
96.6503
91.1366
88.2323
88.1989
86.2999
84.0884
82.5647
81.6827
84.5526
90.8028
95.6436
98.0779
98.6639
98.2185
97.3254
96.2797
95.2205
94.2253
93.3522
92.6292
92.0487
91.5902
91.2333
90.9598
90.7544
90.6036
90.4968
90.4252
90.3825
90.364
97.1508
91.2011
88.1651
88.2783
86.3082
84.0162
82.4223
81.1261
83.9019
90.7416
95.9008
98.4302
98.9709
98.4353
97.4623
96.3517
95.2319
94.1728
93.2412
92.4748
91.8632
91.3814
91.0066
90.7195
90.5038
90.3455
90.2325
90.1552
90.1064
90.0812
97.7263
91.2779
88.0995
88.3714
86.3155
83.9358
82.2845
80.4889
83.1117
90.6801
96.1944
98.8298
99.3142
98.6708
97.6067
96.4255
95.2406
94.1094
93.1101
92.2963
91.6516
91.1446
90.7501
90.4483
90.2221
90.0566
89.9383
89.856
89.8011
89.7671
98.384
91.3701
88.0384
88.4796
86.3204
83.8459
82.1595
79.7653
82.1469
90.6236
96.5272
99.2819
99.6966
98.9243
97.7565
96.499
95.2456
94.033
92.9547
92.0902
91.4109
90.8771
90.4611
90.1428
89.9055
89.7333
89.6113
89.5261
89.4669
89.4271
99.1311
91.4231
87.9858
88.6048
86.3214
83.7447
82.0573
78.9509
80.9581
90.5805
96.9017
99.7915
100.121
99.1947
97.9092
96.5698
95.2451
93.9412
92.7695
91.8524
91.138
90.576
90.1359
89.7988
89.5488
89.3699
89.2458
89.1611
89.1029
89.0633
99.9752
91.3929
87.9471
88.7491
86.3161
83.6295
81.9904
78.0331
79.4667
90.563
97.3198
100.364
100.592
99.4805
98.0613
96.6347
95.2362
93.831
92.5471
91.5788
90.8296
90.2381
89.7705
89.4106
89.1453
88.9583
88.8318
88.749
88.696
88.6643
100.923
91.2792
87.9297
88.9145
86.3013
83.4959
81.9756
76.9684
77.5593
90.5912
97.7828
101.007
101.113
99.78
98.2082
96.6905
95.2125
93.6972
92.2783
91.2642
90.4821
89.8605
89.3606
88.972
88.687
88.4891
88.3587
88.2774
88.23
88.2059
101.981
91.0565
87.9431
89.1032
86.2722
83.3373
82.0341
75.7421
75.161
90.6897
98.2912
101.727
101.692
100.09
98.3429
96.7353
95.1596
93.5261
91.9524
90.9014
90.0913
89.441
88.9019
88.4755
88.1647
87.9535
87.819
87.7405
87.7013
87.6889
103.152
90.6797
87.9996
89.3174
86.2224
83.1445
82.1952
74.381
72.1674
90.8636
98.8467
102.53
102.337
100.408
98.4546
96.774
95.0474
93.264
91.5536
90.4769
89.6522
88.9795
88.391
87.9117
87.5669
87.3411
87.2052
87.1355
87.1123
87.1195
104.436
90.0782
88.1146
89.5592
86.1423
82.904
82.5011
72.943
68.2595
91.0958
99.4548
103.424
103.055
100.725
98.5244
96.8271
94.8268
92.8187
91.1003
89.9737
89.1595
88.4806
87.827
87.2687
86.8774
86.6392
86.5112
86.4639
86.4724
86.5139
105.829
89.1453
88.3063
89.8301
86.0181
82.5985
83.002
71.5277
63.2482
91.418
100.107
104.413
103.859
101.032
98.5328
96.944
94.4639
92.2714
90.6033
89.3709
88.6074
87.9596
87.2171
86.5326
86.0732
85.8315
85.7308
85.7281
85.7902
85.8851
107.317
87.7234
88.5954
90.1311
85.8322
82.207
83.7344
70.1545
59.0386
91.9253
100.783
105.5
104.762
101.308
98.5051
97.1212
94.0092
91.8227
90.0268
88.6292
87.9931
87.4523
86.5809
85.6964
85.1301
84.8908
84.8411
84.9106
85.0558
85.2323
108.874
85.579
89.0056
90.463
85.5617
81.7082
84.6419
68.9285
59.9552
92.76
101.436
106.681
105.775
101.508
98.4972
97.1479
93.5999
91.5219
89.3867
87.675
87.297
86.999
85.9214
84.7488
84.0309
83.7754
83.7952
83.9749
84.2485
84.553
110.46
82.366
89.5633
90.8272
85.2297
81.0853
85.4777
9.90298
-3.37318
93.8209
102.081
107.942
106.912
101.515
98.4978
97.1032
93.3837
91.3648
88.7186
86.2866
86.3889
86.5928
85.1788
83.6118
82.6999
82.4209
82.5372
82.8751
83.3395
83.8408
112.006
77.5695
90.2914
91.2266
85.1144
80.3328
85.6429
0.713591
-0.396165
94.8639
102.643
109.266
108.181
101.044
98.3386
97.2894
93.4381
91.354
88.0498
83.7716
84.5301
86.0849
84.3641
82.1906
81.0293
80.7538
81.0209
81.5542
82.2869
83.0869
113.415
70.419
91.2022
91.6697
85.1718
79.6262
11.047
0.223865
0.277189
92.329
103.124
110.626
109.571
99.2732
97.724
97.7119
93.7368
91.4664
87.477
79.8863
81.3187
85.406
83.4049
80.3261
78.8536
78.6514
79.2078
79.8823
81.0084
82.3077
114.541
59.7638
92.2977
92.1676
85.456
36.6304
-0.0104501
0.209055
0.517429
95.1045
103.685
111.985
111.038
96.4199
96.5738
98.301
94.1397
91.6785
87.5753
77.2443
78.8151
85.4641
82.1008
78.0046
70.7906
63.1218
60.0717
62.5208
69.884
77.9502
115.174
43.9016
93.5703
92.7359
86.4768
0.0527841
-0.00669674
0.170839
0.693877
92.92
104.182
113.29
112.491
95.7748
96.7286
99.0072
94.3165
91.9983
88.7426
79.4447
79.8887
30.1547
0.148623
0.171509
0.162332
0.159745
0.157406
0.152675
0.14375
0.135586
115.021
20.5846
94.97
93.4326
3.71392
0.0398595
-0.000661744
0.138326
0.791984
87.507
104.733
114.515
113.699
97.8031
99.321
99.4434
94.1117
92.3162
90.0273
28.5965
0.139557
0.15836
0.168919
0.172223
0.166788
0.160229
0.156202
0.156853
0.141308
0.139135
113.678
-13.2901
96.4625
94.6561
-0.0394636
0.0285833
0.00676874
0.119182
0.718437
42.4357
105.819
115.679
114.315
100.853
102.684
99.6178
93.8661
92.5382
9.77271
0.0622189
0.126868
0.150567
0.165066
0.170491
0.164694
0.159194
0.150814
0.143678
0.137856
0.134098
110.67
-64.3045
98.3318
-0.222826
-0.0301851
0.0231053
0.0134679
0.114141
0.588939
-90.4848
105.042
117.148
114.272
102.928
104.443
100.127
96.6038
16.7161
0.0409887
0.0489125
0.0909891
0.130709
0.158649
0.168394
0.166157
0.156612
0.162415
0.135602
0.130496
0.126375
91.5492
91.5634
91.5931
91.6431
91.7187
91.8266
91.9745
92.1718
92.4293
92.7588
93.1717
93.6752
94.2672
94.9291
95.6168
96.2522
96.7082
96.7792
96.1557
94.4621
91.4172
87.31
83.6742
82.2756
83.2355
86.2481
91.3571
97.7144
104.052
109.022
91.5226
91.5335
91.559
91.6034
91.672
91.7711
91.9082
92.0924
92.3343
92.6458
93.0388
93.5222
94.0969
94.7496
95.4427
96.1078
96.6324
96.8347
96.4311
95.0521
92.3565
88.4038
84.4085
82.3554
82.7736
85.2557
89.8555
96.0251
102.459
107.922
91.4714
91.4824
91.508
91.5526
91.6214
91.7208
91.8585
92.0439
92.2881
92.6034
93.0022
93.4936
94.0792
94.7453
95.4535
96.1334
96.6717
96.8864
96.4918
95.111
92.3854
88.3657
84.3104
82.2771
82.7297
85.221
89.8342
96.0217
102.463
107.941
91.3961
91.4073
91.433
91.4775
91.5464
91.646
91.7846
91.972
92.2201
92.5416
92.9496
93.4541
94.0574
94.7458
95.4792
96.1834
96.7414
96.9696
96.582
95.1921
92.4176
88.2962
84.1542
82.1567
82.6614
85.1659
89.8013
96.0176
102.472
107.971
91.2963
91.3076
91.3335
91.3782
91.4471
91.5472
91.6871
91.8774
92.1308
92.461
92.8817
93.404
94.0314
94.7503
95.5181
96.2547
96.8378
97.0815
96.7005
95.297
92.4575
88.1986
83.9392
81.9943
82.5691
85.0904
89.7563
96.0129
102.485
108.018
91.1697
91.1814
91.2078
91.2529
91.3224
91.4234
91.5653
91.7596
92.02
92.3612
92.798
93.3427
94.0002
94.7574
95.5674
96.3429
96.956
97.2192
96.8469
95.4277
92.507
88.0712
83.6595
81.7894
82.4535
84.9943
89.6991
96.0077
102.503
108.081
91.0145
91.0268
91.0541
91.1003
91.1708
91.2733
91.418
91.6174
91.8866
92.2414
92.6976
93.269
93.9627
94.7662
95.6265
96.4464
97.0938
97.3812
97.0219
95.5858
92.5674
87.9111
83.3076
81.5418
82.3156
84.8773
89.6293
96.0024
102.525
108.159
90.8295
90.8429
90.8715
90.9189
90.9909
91.0955
91.2437
91.4497
91.7295
92.1003
92.5791
93.1816
93.9176
94.7764
95.6956
96.565
97.2508
97.5674
97.2261
95.7735
92.6405
87.7154
82.8737
81.2514
82.1564
84.7391
89.5468
95.9971
102.55
108.252
90.6139
90.6287
90.6584
90.7071
90.781
90.8882
91.0408
91.2545
91.5469
91.9364
92.4412
93.0788
93.8632
94.7871
95.7751
96.6988
97.4267
97.7777
97.4605
95.9932
92.7286
87.4803
82.3449
80.9187
81.9774
84.5794
89.4511
95.9926
102.579
108.356
90.3655
90.3831
90.4121
90.4615
90.5386
90.6492
90.8073
91.0301
91.3372
91.748
92.282
92.9584
93.7968
94.7977
95.8655
96.8473
97.6211
98.012
97.7262
96.248
92.8343
87.2018
81.704
80.5446
81.7803
84.3977
89.3417
95.9892
102.611
108.479
90.0788
90.111
90.1292
90.177
90.2612
90.3767
90.5411
90.7745
91.0984
91.5336
92.0999
92.8183
93.7154
94.8072
95.9675
97.0094
97.833
98.2702
98.0244
96.5417
92.9614
86.8754
80.9284
80.13
81.5672
84.1935
89.218
95.9877
102.646
108.62
89.746
89.9876
89.991
89.8556
89.9481
90.0693
90.2403
90.4855
90.8287
91.2914
91.8933
92.6561
93.6145
94.8145
96.0815
97.1828
98.0612
98.552
98.3568
96.8793
93.114
86.4968
79.9871
79.6752
81.3405
83.9661
89.0792
95.9892
102.684
108.775
89.4124
89.424
89.4591
89.5063
89.598
89.7246
89.9025
90.161
90.5265
91.0199
91.6607
92.4697
93.4876
94.8178
96.2067
97.3634
98.3042
98.8573
98.7248
97.2641
93.2971
86.0621
78.8379
79.178
81.1032
83.7148
88.9242
95.9946
102.723
108.943
89.1397
89.047
89.0658
89.1168
89.2067
89.3359
89.5228
89.7988
90.19
90.7176
91.4006
92.2576
93.3265
94.813
96.3382
97.5441
98.5602
99.1856
99.1303
97.7029
93.5166
85.5685
77.4211
78.6291
80.8583
83.4388
88.7514
96.0056
102.764
109.123
88.6454
88.6426
88.6617
88.7037
88.7742
88.8962
89.098
89.3976
89.8183
90.3832
91.1117
92.0194
93.1204
94.7842
96.459
97.7141
98.8277
99.5367
99.5753
98.2052
93.7791
85.015
75.6526
78.0078
80.6084
83.137
88.5588
96.0238
102.808
109.312
88.1983
88.2054
88.2317
88.273
88.2925
88.3976
88.6299
88.9585
89.4103
90.0147
90.7917
91.7547
92.8577
94.6566
96.5191
97.8589
99.1063
99.9104
100.062
98.7799
94.0922
84.4031
73.418
77.3155
80.3534
82.8084
88.3431
96.0514
102.854
109.507
87.6946
87.7163
87.7596
87.8604
87.7491
87.8462
88.1318
88.483
88.9636
89.6094
90.4374
91.4594
92.5477
94.2216
96.3907
97.9637
99.3976
100.306
100.591
99.4368
94.4659
83.7371
70.5756
76.6927
80.0967
82.4513
88.0997
96.091
102.903
109.705
87.1452
87.1863
87.2484
87.4214
93.596
87.3563
87.6155
87.967
88.4724
89.163
90.0438
91.1215
92.2744
93.5774
95.8647
98.0229
99.7064
100.723
101.164
100.188
94.915
83.0179
66.9991
76.2092
79.849
82.0635
87.8213
96.1454
102.957
109.902
86.571
86.6398
86.723
86.8226
86.8413
86.8765
87.0669
87.3968
87.9264
88.6703
89.6051
90.7284
92.0395
93.1432
94.8991
98.0575
100.042
101.16
101.783
101.048
95.4647
82.2356
62.6298
75.7666
79.5931
81.6406
87.4965
96.2171
103.02
110.09
85.9887
86.0956
86.2006
86.2837
86.3151
86.3427
86.4635
86.7491
87.3125
88.1263
89.1157
90.2655
91.7437
92.8614
93.8868
98.1282
100.416
101.612
102.446
102.028
96.1512
81.3928
57.3292
75.4972
79.2968
81.1744
87.1071
96.3077
103.093
110.264
85.4071
85.5735
85.7163
85.7963
85.7883
85.753
85.7943
85.9948
86.6117
87.5249
88.5703
89.7078
91.3641
92.6823
93.4365
98.319
100.844
102.073
103.15
103.141
96.9891
80.5683
50.8697
75.6108
78.9416
80.6472
86.6291
96.4162
103.177
110.413
84.8424
85.1082
85.3236
85.4129
85.3217
85.0889
85.2192
85.0999
85.775
86.8423
87.9443
89.0018
90.9383
92.7298
93.869
98.6785
101.34
102.528
103.892
104.391
97.8871
80.1767
42.8795
76.224
78.4884
80.017
86.0479
96.5398
103.273
110.525
84.3103
84.7402
85.0877
85.2164
84.992
84.4595
84.0271
83.9612
84.7128
86.0242
87.0996
88.0289
90.48
93.046
94.9385
99.1674
101.916
102.954
104.663
105.771
98.8572
80.1005
-1.59403
77.3287
77.9155
79.1869
85.3718
96.6744
103.38
110.587
83.8295
84.5172
85.1022
85.3296
84.8542
83.7536
82.7388
82.431
83.3744
85.0905
85.8525
86.5253
89.9772
93.5275
96.1497
99.6998
102.595
103.312
105.45
107.251
99.7945
80.4667
1.61295
26.3956
77.4038
77.9427
84.6426
96.8148
103.497
110.579
83.4248
84.484
85.5075
86.0829
85.135
82.8576
81.0782
80.2073
81.73
84.1973
83.8858
84.0996
89.451
94.0866
97.2071
100.337
103.414
103.542
106.208
108.794
100.779
79.3969
1.3252
0.720829
0.325322
75.9449
83.8657
96.9511
103.625
110.481
82.0192
84.6911
86.3987
88.3915
86.4173
81.1728
78.8161
76.3905
79.1724
83.1826
82.1437
81.6114
89.0501
94.7375
98.0879
101.475
104.399
103.564
106.853
110.355
101.827
84.8084
1.1564
0.639681
0.322807
0.813405
83.0929
97.085
103.761
110.274
0.132787
0.128859
0.126767
0.123156
0.119906
0.114428
0.112367
0.200387
0.328302
61.8891
81.8928
79.684
89.2058
95.6069
98.9025
103.251
105.531
103.147
107.279
111.861
102.981
79.6056
1.10697
0.586163
0.3241
0.199183
81.2963
97.2667
103.911
109.932
0.140242
0.142539
0.131887
0.138142
0.126718
0.126099
0.117692
0.1577
0.14798
0.0965958
0.0741203
77.1414
90.3554
96.8407
99.4949
105.053
106.694
102.803
107.64
113.263
103.21
88.714
1.05602
0.547975
0.326112
0.194704
37.7887
97.6025
104.096
109.456
0.143473
0.132847
0.129893
0.12822
0.123552
0.122057
0.111267
0.125009
0.130143
0.101578
0.0474983
0.170869
93.0096
98.171
99.8667
106.169
107.611
103.975
108.765
114.186
106.151
64.8831
1.013
0.519567
0.322938
0.192819
0.0822409
98.2446
104.306
109.069
0.129418
0.126606
0.125574
0.12396
0.123227
0.605006
0.102758
0.110467
0.112639
0.0753968
0.00266008
0.0810706
-0.018402
98.75
100.284
106.482
108.909
104.87
110.55
114.711
106.352
7.79691
0.98107
0.496561
0.316531
0.190937
0.196705
99.1831
104.463
109.265
108.058
140.899
99.678
-0.18616
-0.0239248
0.0206515
0.0178552
0.103416
0.367199
227.059
110.107
118.174
114.106
103.621
104.853
96.3222
89.9434
0.253666
0.0346942
0.0294443
0.0545324
0.102444
0.146801
0.169239
0.156068
0.140961
0.141195
0.127578
0.121527
0.119494
106.999
113.489
20.2072
-0.177616
-0.0213761
0.0195309
0.0202514
0.0911872
0.207374
163.157
118.389
117.69
114.143
104.19
104.543
95.1307
0.217238
0.219328
0.0197625
0.0180736
0.0383793
0.083473
0.13508
0.159873
0.14829
0.134324
0.126221
0.118264
0.112889
0.115388
106.5
15.8754
2.3055
-0.166956
-0.0195272
0.0185717
0.0221506
0.061388
-0.0434528
25.5573
124.564
116.179
114.536
105.756
103.255
99.5899
0.0902462
0.316832
0.0214525
0.01084
0.0466822
0.0660855
0.120627
0.174887
0.139025
0.12583
0.114719
0.105645
0.0990296
0.103422
107.969
-2.10203
-0.134907
-0.153712
-0.0182782
0.0176911
0.0251912
0.0459092
-0.197809
7.58912
133.061
114.107
115.099
108.342
103.62
-0.606291
0.095552
0.264459
0.0263921
0.0133025
0.048662
0.0540685
0.107769
0.131402
0.128698
0.11417
0.101379
0.0909421
0.0805572
0.0698704
110.629
1.08558
-0.115221
-0.138699
-0.0174525
0.0168551
0.0234237
0.044034
-0.31055
0.0494103
116.958
116.348
115.508
111.64
103.714
-0.0924538
0.0470408
0.106768
0.0322763
0.0176245
0.0256486
0.0480881
0.0959592
0.115473
0.113083
0.0993711
0.086479
0.0762665
0.0670999
0.180529
56.2365
0.029484
-0.0993122
-0.123085
-0.0168685
0.0160295
0.0247854
0.0797619
-0.362143
0.737448
117.294
122.158
116.467
115
0.150694
-0.0616318
0.0554466
0.0774166
0.0362891
0.017832
0.0237116
0.0484528
0.0853183
0.114026
0.0943747
0.082487
0.0710578
0.0628865
0.0573104
0.042034
0.148689
0.010231
-0.0883083
-0.10778
-0.0164183
0.0151465
0.0278103
0.0674552
-0.297892
1.11876
109.154
120.413
118.34
115.26
0.220426
-0.0491277
0.0264347
0.0694642
0.0390661
0.0776264
0.0295746
0.18286
0.0944003
0.0762039
0.0765325
0.0652578
0.0551156
0.060806
0.0516585
0.0555213
0.109063
-0.0008195
-0.0784186
-0.0931539
-0.0160475
0.0142328
0.0280744
0.0596276
-0.231633
0.99895
19.1482
113.906
118.762
-0.125652
0.0704719
-0.0220453
0.0266142
0.061633
0.0605122
0.0304886
0.00946067
0.194832
0.112685
0.0693792
0.0612884
0.0498854
0.0412008
0.041416
0.0433385
0.0470639
0.0782965
-0.0118531
-0.0706843
-0.0796731
-0.0156529
0.0133984
0.0286251
0.0636222
-0.121334
0.640926
-1.37042
105.978
28.8203
-0.209912
0.276611
-0.0231566
0.0254001
0.0577771
0.29562
0.0265032
0.0146483
0.126422
0.0724312
0.059025
0.0493573
0.0438626
0.031105
0.0305813
0.0335826
0.0379631
0.0550818
-0.0110912
-0.064586
-0.0677807
-0.0151321
0.0126881
0.0290318
0.0547715
-0.0034001
0.249259
-0.905628
-0.30543
-0.22272
-0.167481
-0.00199968
-0.0425881
0.0266041
0.0318792
0.0948051
0.0475505
0.0323432
0.0423638
0.0550803
0.0527033
0.0411721
0.0308482
0.0242421
0.0236778
0.0271554
0.0310066
0.0372634
-0.0382456
-0.0594375
-0.0577137
-0.0144394
0.01207
0.0297348
0.0556618
0.0789322
0.342019
-0.460843
-0.341421
-0.175566
-0.117618
-0.0137796
-0.0817618
0.0335489
0.0515211
0.0596172
0.0501955
0.0490579
0.0524448
0.0699606
0.0494675
0.038107
0.0270391
0.0207991
0.0207445
0.0361345
0.0279772
0.0237733
-0.0207688
-0.0547016
-0.0494546
-0.0136145
0.0115406
0.0299644
0.0584456
0.103276
-0.113435
-0.554556
-0.351776
-0.151654
-0.0642845
-0.0814204
-0.168019
0.0599966
0.0610601
0.0627714
0.0613133
0.0599929
0.0603142
0.0611802
0.0491732
0.0383384
0.0280559
0.0309693
0.0192818
0.0201875
0.0253647
0.0140194
-0.0135931
-0.0501184
-0.0427549
-0.0127125
0.0111376
0.0301602
0.0668358
0.1097
0.070763
-0.516069
-0.378645
-0.130272
-0.0679697
-0.0912288
-0.000562375
0.0744122
0.0697348
0.0655946
0.0593959
0.0778914
0.0637227
0.0593175
0.0501075
0.0406104
0.0316519
0.0257948
0.0240555
0.0252793
0.0285297
0.00722415
0.0156746
-0.0455391
-0.0373276
-0.0117133
0.0108366
0.0299773
0.0647106
0.105913
0.16615
-0.393524
-0.340461
0.50364
-0.0116277
-0.0884147
-0.0222641
0.110738
0.0675971
0.0696298
0.0755477
0.0657044
0.0718525
0.0564263
0.0520129
0.0423433
0.0359352
0.0314907
0.0297603
0.0311918
0.0337836
0.0029394
0.0070673
-0.04092
-0.0328371
-0.0106175
0.0105848
0.0295528
0.0685768
0.0968056
0.0775651
-0.264651
-0.297392
-0.119962
-0.0555347
-0.0703351
-0.039322
-0.0205958
0.0621248
0.0689695
0.0747315
0.0718132
0.0683139
0.0579793
0.0620977
0.0414035
0.0391539
0.037739
0.0370551
0.0371412
0.0359025
0.000442886
-0.0331642
-0.0362967
-0.028973
-0.00947277
0.0103626
0.0288392
0.0565068
0.0864635
0.00871065
-0.175613
-0.209843
-0.097215
-0.0633341
-0.0409384
-0.0196748
0.0314108
0.0514519
0.0731492
0.0666269
0.0658682
0.0630976
0.0583296
0.0465071
0.0415768
0.0414561
0.0437534
0.0502456
0.0545023
0.00992077
-0.000989692
-0.0220804
-0.0318153
-0.0255579
-0.00829962
0.0101157
0.0277821
0.0590044
0.0599366
-0.0616618
-0.0882891
-0.0995164
-0.0967998
-0.0717315
-0.0573731
-0.00899379
0.0295186
0.0426372
0.0596926
0.0554775
0.0564257
0.0556184
0.0526074
0.0457072
0.0416196
0.040945
0.0398276
0.0400701
0.482325
0.311129
-0.00100852
-0.0191071
-0.02774
-0.0224734
-0.00713284
0.00980325
0.0263531
0.0473675
0.045565
-0.0318501
0.00981327
0.0438471
-0.0885385
-0.0806441
-0.0619147
-0.0287195
0.0206844
0.0299652
0.0386689
0.0440042
0.0459579
0.047828
0.0461847
0.0423702
0.0417081
0.0396627
0.0369437
0.0338629
0.0382182
0.0550561
0.000968925
-0.00749312
-0.0241629
-0.0196647
-0.00599859
0.00942141
0.0245442
0.0410481
0.0374458
-0.0192386
0.00926592
-0.0167266
-0.0856799
-0.108562
-0.0857842
-0.0481365
-0.00795224
0.0149563
0.0267407
0.0330888
0.0870005
0.0933639
0.038492
0.0373879
0.0394484
0.0481065
0.0408104
0.0438356
0.048338
0.0533282
0.00458304
-0.0049862
-0.0210086
-0.0171127
-0.00490222
0.00894405
0.0223397
0.0358855
0.0300023
0.000363094
0.018893
-0.00728486
-0.0994061
-0.142004
-0.123143
-0.0686449
-0.0250879
0.000749575
0.0152647
0.0236031
0.0298599
0.0808682
0.0291611
0.0314675
0.0335728
0.0355863
0.0384096
0.0416609
0.0448906
0.0479576
0.00994653
0.00194457
-0.0183842
-0.0147798
-0.00387436
0.00834392
0.0197503
0.0288538
0.0243413
0.0127291
0.0195579
-0.0108662
-0.133042
-0.17004
-0.161291
-0.0995976
-0.0431172
-0.00618876
0.00530863
0.0135132
0.0180925
0.0208093
0.0236629
0.0260388
0.0284023
0.0309504
0.0336486
0.0363825
0.0390209
0.0414921
0.0150119
0.00549192
-0.0164144
-0.0126311
-0.00294492
0.00761013
0.016906
0.0230359
0.0201401
0.0125667
0.000450603
0.0717287
-0.139586
-0.176272
-0.17637
-0.117927
-0.052752
-0.0162502
0.00013259
0.00548369
0.00967925
0.0130855
0.0161783
0.0189664
0.0215972
0.0242365
0.0268304
0.0292638
0.0315419
0.0336468
0.0149143
-0.015523
-0.014879
-0.0106233
-0.00213277
0.0067338
0.0137891
0.0172685
0.0163048
0.013151
-0.0126242
0.202932
-0.0988822
-0.153981
-0.153752
-0.105611
-0.0469987
-0.0147477
0.000610131
-0.000620676
0.000922124
0.00276771
0.00508215
0.0077466
0.0104613
0.0130689
0.0154732
0.0176045
0.0194827
0.0210621
0.0100443
-0.0346049
-0.0131318
-0.00871043
-0.00145255
0.00571028
0.01061
0.0108037
0.0127144
-0.00327363
-0.0245684
-0.0520742
-0.084066
-0.112996
-0.106378
-0.0697603
-0.027155
-0.0116433
-0.00313208
-0.00596692
-0.0101763
-0.0120674
-0.00915722
-0.0113123
-0.00926558
-0.00666249
-0.00443999
-0.00268082
-0.0013668
-0.000524877
0.00471823
-0.0181168
-0.0109649
-0.00688832
-0.000911334
0.00455566
0.00708814
0.00382474
0.0505323
-0.0270517
-0.0447231
-0.0560051
-0.0706087
-0.0330876
-0.0669939
-0.0481458
0.0127555
-0.0125603
-0.0102558
0.00326543
-0.0245746
-0.0310392
-0.0360897
-0.0379732
-0.0348142
-0.036725
-0.0349886
-0.0332085
-0.0318997
-0.0311782
0.00146899
-0.0101944
-0.00840808
-0.00520409
-0.000505407
0.00331543
0.00348174
-0.000751046
0.0284632
-0.0773831
-0.0768216
-0.059346
-0.0565222
-0.0549793
-0.0512644
-0.0332614
-0.0242699
-0.0219456
-0.0279276
-0.0339191
-0.0429205
-0.0540005
-0.0597482
-0.0658842
-0.0680706
-0.0693079
-0.0678086
-0.0643234
-0.0619354
-0.0608481
2.57387e-05
-0.00595006
-0.0059975
-0.00370813
-0.000213352
0.00212005
0.000380734
-0.0055988
-0.0135505
-0.15129
-0.11157
-0.0612098
-0.0460197
-0.0410457
-0.0401235
-0.0345371
-0.0292634
-0.0292472
0.0104508
-0.0379103
-0.0533758
-0.0674821
-0.0731055
-0.0743387
-0.0776265
-0.0754973
-0.0508933
-0.055019
-0.0756023
-0.0760983
-0.000404554
-0.00349927
-0.00395997
-0.00242294
-9.69198e-06
0.0011525
-0.00175522
-0.0136091
-0.0330958
-0.149397
-0.104186
-0.0582443
-0.0382802
-0.0310141
0.048717
-0.00442467
-0.025591
-0.029045
0.0121322
-0.0359977
-0.0457709
0.0972844
0.0349153
-0.0502012
-0.0686145
-0.0755798
-0.0773616
-0.0780238
-0.0775427
-0.0777594
-0.00034218
-0.00191813
-0.00227121
-0.00134884
0.000116053
0.000543381
-0.00234972
-0.0129801
0.0252532
0.01025
-0.0844803
-0.0487301
-0.0341342
-0.0263505
-0.0223183
-0.019887
-0.0109347
-0.0257154
-0.031203
0.00272819
-0.0352874
-0.036937
-0.0383516
-0.0415414
-0.082439
-0.0695504
-0.0603012
-0.0560666
-0.0532126
-0.0535537
-9.87908e-05
-0.000617484
-0.000827856
-0.000461207
0.000126684
0.000251233
-0.00115829
-0.00580831
-0.0123006
-0.0173065
-0.0394036
-0.0426556
-0.0348813
-0.025967
-0.0192079
-0.0149632
-0.0133705
-0.0110526
-0.0201309
-0.0241176
-0.0211197
-0.0125729
-0.0173331
-0.0183779
-0.01696
-0.0154107
-0.0152546
-0.0171372
-0.0179459
-0.0132656
0.380288
0.120338
0.118595
0.118304
0.116325
0.112331
0.0995358
0.099299
0.0959082
0.0560419
-0.0192
0.0335878
-0.0137305
83.9678
99.7549
106.799
110.424
103.729
111.788
115.855
109.958
33.738
0.952548
0.479098
0.309816
0.189341
0.177362
0.218273
104.552
109.297
0.126092
0.118549
0.113232
0.113936
0.112157
0.104362
0.0948517
0.0927089
0.0869287
0.0483983
-0.0234278
0.0201769
0.0118607
0.0865104
98.3564
106.842
109.894
103.628
112.092
116.85
111.914
15.4133
0.924902
0.467337
0.304818
0.188118
0.165996
0.134733
102.157
108.855
0.123653
0.114591
0.123695
0.110177
0.107898
0.096804
0.0899532
0.0861706
0.0788907
0.0441134
-0.0216315
0.0218118
-0.0132405
0.116139
0.0478296
106.651
109.999
104.117
112.917
117.566
112.87
9.84818
0.878659
0.454177
0.29888
0.186719
0.154074
0.123521
0.366399
108.176
0.136995
0.111458
0.106716
0.181831
0.10066
0.0885054
0.0847157
0.0799095
0.0722654
0.0434561
-0.0132926
0.00742598
0.011859
0.128768
0.283421
104.919
110.396
103.002
113.179
118.614
116.429
-2.80173
0.801408
0.440967
0.292083
0.185056
0.142639
0.112786
0.0142606
107.661
6.58691
0.111556
0.095497
0.096603
0.0725569
0.0823117
0.0802169
0.0740475
0.0671749
0.0445347
0.00755739
0.0109453
0.0263541
0.0856902
0.179394
-1.5124
110.754
105.447
115.537
118.871
119.786
-1.94565
0.70308
0.423148
0.284507
0.182891
0.132397
0.102449
0.00432653
4.57392
0.169185
0.057172
0.0807579
0.0817626
0.0746721
0.0989611
0.0771773
0.0682696
0.0635229
0.0478343
0.020659
0.0173177
0.028127
0.0697341
0.101989
-0.577125
16.5915
106.687
115.711
121.415
124.7
-1.64241
0.60338
0.403377
0.276183
0.180164
0.123651
0.0925263
0.000949759
0.237232
0.059105
0.059491
0.0679558
0.071316
0.0701204
0.0808619
0.0864654
0.0632718
0.0612047
0.0500077
0.0343711
0.0269215
0.0205882
0.0637758
0.0240791
-0.426426
-0.285277
9.86555
116.482
124.415
9.71805
-1.4656
0.490485
0.380808
0.266982
0.176869
0.116295
0.0833614
0.0020079
0.199754
0.0504445
0.0542801
0.0596608
0.0634265
0.0558865
0.115032
0.0646011
0.0589762
0.0635368
0.0489254
0.0422136
0.0310388
0.0147084
0.0394971
-0.126949
-0.502568
-0.279459
-0.317559
37.3751
115.608
-0.808932
-1.33267
0.389612
0.356839
0.25675
0.172933
0.110147
0.0753958
0.00509943
0.160714
0.0423354
0.0470063
0.05265
0.0582561
0.0765422
2.05669
0.0543579
0.056615
0.0609324
0.0454524
0.0448384
0.0589442
0.00713501
-0.01298
-0.313283
-0.625456
-0.131612
-0.318008
-0.364991
-0.501418
-0.744798
-1.07963
0.308224
0.328928
0.245424
0.168331
0.10503
0.068489
0.00874261
0.133794
0.0354586
0.040317
0.0452776
0.0485033
0.0411546
0.0537838
0.0517842
0.0508954
0.0472429
0.0523938
0.0447218
0.0383141
0.00299418
-0.0240126
-0.00689932
-0.416095
-0.0201513
-0.307329
-0.347876
-0.504674
-0.549714
-1.13565
0.22824
0.299358
0.23297
0.163095
0.100663
0.0626248
0.0122501
0.108285
0.0317173
0.0364887
0.0416062
0.0458949
0.0552071
0.0507563
0.0505169
0.0478687
0.0431692
0.0392597
0.0627772
0.0323738
0.00351171
-0.0235021
-0.0909803
-0.250806
-0.136702
-0.294673
-0.353469
-0.488207
-0.685576
-0.960253
0.167311
0.267706
0.219364
0.157215
0.0968345
0.0577073
0.0154941
0.0899921
0.0303482
0.0355351
0.0415305
0.0473645
0.0619178
0.0509385
0.0497373
0.0457346
0.0410198
0.0365883
0.0416724
0.0291433
0.00251128
0.017274
-0.0450164
-0.239828
-0.241782
-0.289509
-0.379758
-0.479687
-0.564376
-0.711749
0.105398
0.234693
0.204649
0.150662
0.0933975
0.0538057
0.018252
0.0721938
0.0329247
0.0380786
0.0437108
0.0496118
0.0548109
0.0541368
0.0517044
0.0526296
0.0415985
0.0370907
0.0349686
0.023081
0.00149566
-0.0195113
-0.0552255
-0.161391
-0.22173
-0.276293
-0.394147
-0.47771
-0.510938
-0.580751
0.0586938
0.201131
0.188931
0.143414
0.0901994
0.0509717
0.0205842
0.058813
0.0370822
0.0419645
0.048567
0.0555399
0.059614
0.0589223
0.057855
0.0656379
0.0459248
0.0407156
0.028079
0.0181831
0.000518979
-0.0227203
-0.058109
-0.138755
-0.221346
-0.267211
-0.415545
-0.458961
-0.472865
-0.480395
-0.00340825
0.16806
0.172383
0.135484
0.0870675
0.0490862
0.0225892
0.0479703
0.039256
0.047611
0.0570956
0.0629813
0.0662859
0.0622966
0.0658246
0.0503811
0.044051
0.0390123
0.0305008
0.0285055
0.017778
0.0265329
-0.0654828
-0.143358
-0.218634
-0.247807
-0.406444
-0.44365
-0.0401495
-0.352638
-0.0368946
0.136709
0.155293
0.12692
0.0838563
0.047896
0.0243661
0.0394151
0.0316652
0.0568934
0.0658339
0.0701548
0.0675715
0.0674033
0.0527981
0.0415711
0.048829
0.044028
0.0308035
0.0148964
0.0118762
0.0175886
-0.0691708
-0.149701
-0.216676
-0.246146
-0.118542
-0.441794
-0.292623
-0.307952
-0.05267
0.108283
0.137991
0.11778
0.0804264
0.047144
0.0260161
0.032916
0.0868885
0.0752411
0.0760338
0.0774922
0.218303
0.0626742
0.0642065
2.79373
0.0689872
0.0583248
0.0358281
0.016786
0.0191534
-0.0256863
-0.0616281
-0.156776
-0.216679
-0.257377
-0.254403
-0.367806
-0.078821
-0.261848
-0.0614637
0.0836133
0.120832
0.108173
0.0766346
0.0465766
0.0274872
0.0281089
0.0649245
0.0684079
0.0691867
0.0672552
0.0681996
0.0724039
0.156255
0.0786766
0.0698307
0.0589249
0.0418501
0.019456
-0.00737804
0.00305919
-0.0315546
-0.155225
-0.212198
-0.278813
-0.227195
-0.301243
0.702394
-0.180906
-0.0595201
0.0630839
0.104191
0.0982245
0.0724008
0.0459083
0.0285475
0.0245593
0.0573712
0.0605849
0.0638719
0.0694649
0.0713354
0.0754499
0.0790125
0.0768165
0.0743741
0.0627764
0.0461019
0.0206157
-0.0135567
-0.00107586
-0.084411
-0.15062
-0.211225
-0.236954
0.889221
-0.275861
0.764156
-0.1507
-0.0516203
0.0465432
0.0884089
0.0880789
0.0677018
0.0448521
0.0291079
0.0218718
0.0509042
0.0540148
0.057717
0.0649393
0.0676551
0.0735923
0.0846777
0.0751626
0.0701453
0.0603919
0.0433174
0.0140035
-0.0242127
-0.0633088
-0.102262
-0.149739
-0.199656
-0.20266
0.838354
0.513242
-0.0631404
-0.132658
-0.0448161
0.0334711
0.0737521
0.0779172
0.0625502
0.0432105
0.0290945
0.0197063
0.0438647
0.0463517
0.0491431
0.0522749
0.0558643
0.0598891
0.0624094
0.0617873
0.0568885
0.0460148
0.0263632
-0.0118825
-0.0531522
-0.0953565
-0.13318
-0.167327
-0.18597
-0.192855
-0.171565
0.621063
-0.0926281
-0.102458
-0.0391667
0.0232355
0.0604176
0.0679101
0.0570162
0.0409395
0.028397
0.0178057
0.035589
0.0375365
0.039473
0.0411321
0.0415157
0.0458478
0.0832099
0.0355184
0.0273321
0.0100377
0.00223989
-0.0638984
-0.112349
-0.155962
-0.178201
-0.191575
-0.183683
-0.161653
-0.151552
0.713995
-0.0798326
-0.0739931
-0.0349778
0.0150744
0.0485033
0.0582199
0.0511893
0.038117
0.0269667
0.0160146
0.0223003
0.023269
0.0237075
0.0227825
0.0194496
0.0130006
0.00719057
-0.00508551
-0.0220408
-0.0530022
-0.0769643
-0.157096
-0.175907
-0.228033
-0.265121
-0.234203
-0.187764
-0.146338
-0.114098
0.0262974
-0.0774396
-0.0585884
-0.0328741
0.0084157
0.0380232
0.0490031
0.0451597
0.0348337
0.024918
0.0142602
-0.000193889
-0.000342954
-0.00130266
-0.00377211
-0.00858901
-0.0162972
-0.0268617
-0.0451014
-0.0752315
-0.122656
-0.187307
-0.272583
-0.259265
-0.400776
-0.385356
-0.274573
-0.198619
-0.126777
-0.0812496
-0.0309704
-0.0632919
-0.0592114
-0.033691
0.00293159
0.0289672
0.0403774
0.0390286
0.031149
0.0224537
0.0125148
-0.0310086
-0.0314567
-0.0328887
-0.0358152
-0.0410069
-0.0497202
-0.0637246
-0.0841644
-0.117502
-0.167854
-0.239056
-0.329028
-0.418384
-0.488777
-0.483605
-0.360186
-0.187167
-0.105253
-0.0430044
0.0194092
0.505673
-0.0811526
-0.0327726
-0.00135533
0.0213105
0.0324424
0.032886
0.0271132
0.0196901
0.010763
-0.0606586
-0.0611223
-0.0624864
-0.0652351
-0.0700042
-0.0777181
-0.0899492
-0.109281
-0.138841
-0.181764
-0.241878
-0.320215
-0.405306
-0.476633
-0.470881
-0.359707
-0.191462
-0.0775035
-0.0122915
0.0330538
1.14244
-0.077314
-0.0103211
-0.00445996
0.0150322
0.0252626
0.0268126
0.0227852
0.0166784
0.00899095
-0.0771129
-0.0782287
-0.0798555
-0.08195
-0.0860821
-0.0919955
-0.101014
-0.114643
-0.134739
-0.163276
-0.200081
-0.245931
-0.296774
-0.331949
-0.298429
-0.24837
-0.126055
-0.0431242
-7.70691e-05
0.0200307
0.425157
-0.0389407
-0.0280614
-0.00649886
0.0101238
0.018841
0.0208634
0.0182133
0.0134407
0.00718157
-0.0784584
-0.0806457
-0.086008
-0.088169
-0.0877272
-0.0895179
-0.094736
-0.104284
-0.114026
-0.122057
-0.0587539
-0.142286
-0.0283118
-0.156877
-0.146573
-0.0998311
-0.0480078
-0.0125303
0.0018111
0.00300766
-0.0116675
-0.0224443
-0.0207032
-0.00407643
0.00653746
0.0131248
0.0150477
0.01343
0.00998561
0.00531333
-0.0535738
-0.0296142
0.0202639
-0.0512645
-0.0653517
-0.0690204
-0.0705868
-0.0733818
-0.0771553
0.0678717
-0.0635364
-0.0652246
-0.0611246
-0.0565085
-0.0469029
-0.021262
-0.00124552
0.00419263
0.00472593
-0.000311512
-0.00515986
0.000352902
-0.0120816
-0.00225394
0.00392555
0.00794551
0.0093119
0.00843606
0.00630706
0.00335944
-0.0151669
-0.0235031
-0.028242
-0.0292568
-0.0269596
-0.031344
-0.0428396
-0.050714
-0.0533032
-0.0432094
-0.0325698
-0.0181881
-0.0178153
0.00814847
0.040096
0.0041305
0.0164377
0.00835616
0.00457526
0.000181051
-0.00306733
-0.00344682
-0.00344919
-0.00017108
0.00160888
0.00301107
0.00352128
0.00318395
0.00237779
0.00128768
93.4632
89.3201
88.3299
87.1979
85.2809
83.7368
83.3408
85.0487
88.8888
92.9583
95.7493
97.0813
97.3374
96.9609
96.287
95.5221
94.7783
94.1084
93.5323
93.0524
92.6619
92.3506
92.1071
91.921
91.7827
91.6838
91.6168
91.5752
91.5534
91.5466
91.5734
88.8651
88.1536
86.7343
84.813
83.4909
83.5213
85.8674
90.0056
93.8449
96.2434
97.2494
97.2978
96.8133
96.0962
95.3248
94.593
93.943
93.3894
92.9315
92.561
92.2673
92.0389
91.8655
91.7378
91.6476
91.5876
91.5516
91.534
91.5305
91.4944
88.831
88.1607
86.7402
84.8061
83.4688
83.4581
85.791
89.9889
93.8848
96.3037
97.3043
97.3386
96.8395
96.1091
95.3253
94.5824
93.9232
93.3622
92.8986
92.5241
92.2274
91.997
91.8223
91.6937
91.6029
91.5427
91.5065
91.489
91.4856
91.3744
88.7779
88.1729
86.7497
84.7935
83.4314
83.3531
85.6588
89.9481
93.9348
96.3925
97.3917
97.408
96.8885
96.138
95.3346
94.5731
93.8975
93.3234
92.8499
92.468
92.1662
91.9322
91.7551
91.625
91.5335
91.473
91.4369
91.4195
91.4162
91.2103
88.7049
88.1904
86.7626
84.7749
83.3796
83.2068
85.4719
89.8891
94
96.5098
97.5096
97.5046
96.959
96.182
95.3518
94.5645
93.8663
93.2738
92.7864
92.3943
92.0851
91.8459
91.6653
91.5331
91.4404
91.3794
91.3431
91.3258
91.3227
90.9951
88.6109
88.2137
86.7791
84.7504
83.3143
83.0179
85.2255
89.8117
94.0828
96.6578
97.6575
97.6252
97.0466
96.2363
95.3731
94.5539
93.8277
93.2127
92.7079
92.3029
91.9842
91.7382
91.5528
91.4174
91.3226
91.2602
91.2234
91.2059
91.2029
90.7192
88.4946
88.2436
86.7993
84.7199
83.2369
82.7854
84.9129
89.7144
94.1845
96.8383
97.8363
97.7684
97.1487
96.2986
95.3966
94.5403
93.7809
93.1389
92.6135
92.1931
91.8629
91.6084
91.4168
91.2767
91.1784
91.1138
91.0756
91.0577
91.0548
90.3699
88.3544
88.2807
86.8234
84.6831
83.1493
82.5079
84.5254
89.5957
94.3065
97.0533
98.0469
97.9342
97.2644
96.3679
95.4219
94.5227
93.7247
93.0515
92.5023
92.0639
91.7203
91.4556
91.2562
91.1101
91.0072
90.9391
90.8987
90.88
90.8773
89.9243
88.1888
88.326
86.8519
84.6398
83.0537
82.1843
84.052
89.4545
94.4509
97.3051
98.2909
98.1225
97.3932
96.4438
95.4484
94.5006
93.658
92.9488
92.3725
91.9139
91.555
91.2787
91.0703
90.9169
90.8082
90.7355
90.6919
90.6717
90.6692
89.4076
87.9965
88.3806
86.8849
84.5898
82.9531
81.8124
83.4783
89.2889
94.6198
97.5964
98.57
98.3335
97.5343
96.5255
95.4755
94.4728
93.5789
92.8289
92.2225
91.7414
91.3655
91.0761
90.8576
90.6964
90.5811
90.5028
90.4548
90.4317
90.4289
88.8184
87.7761
88.4455
86.9228
84.5326
82.8507
81.3934
82.7855
89.0987
94.8156
97.9304
98.8863
98.5673
97.6868
96.6119
95.5024
94.4383
93.4852
92.6894
92.05
91.5445
91.1497
90.846
90.6168
90.4473
90.3255
90.2414
90.1876
90.1588
90.1526
88.1282
87.5265
88.5222
86.9657
84.4676
82.7505
80.9261
81.948
88.8833
95.0408
98.311
99.2425
98.8238
97.8493
96.7016
95.5283
94.3958
93.3741
92.5273
91.8524
91.3205
90.9053
90.586
90.3454
90.1679
90.0403
89.951
89.8912
89.8542
89.8341
87.3075
87.2461
88.6119
87.0139
84.3939
82.6574
80.4112
80.931
88.645
95.2975
98.7424
99.6417
99.1031
98.02
96.7927
95.5518
94.3438
93.2419
92.339
91.6269
91.067
90.6295
90.293
90.0402
89.8551
89.7228
89.63
89.5657
89.5227
89.5012
86.3481
86.9337
88.7162
87.0673
84.3105
82.5764
79.8504
79.6855
88.388
95.5874
99.2296
100.088
99.4051
98.1966
96.8826
95.5713
94.2808
93.0834
92.1203
91.3702
90.7811
90.3192
89.9631
89.6966
89.5036
89.368
89.2746
89.21
89.1641
89.2308
85.272
86.5879
88.8364
87.1254
84.2163
82.5136
79.2497
78.1458
88.1225
95.911
99.7781
100.585
99.7297
98.376
96.9683
95.5841
94.2048
92.8914
91.8669
91.0789
90.4598
89.9705
89.5913
89.3085
89.1062
88.9673
88.8749
88.8143
88.776
88.7545
84.024
86.2088
88.9739
87.1873
84.1101
82.4751
78.6464
76.235
87.8699
96.2659
100.394
101.14
100.077
98.5541
97.046
95.5854
94.1121
92.6553
91.5738
90.7489
90.1
89.5797
89.172
88.8684
88.6541
88.5102
88.4181
88.3622
88.3309
88.317
82.5567
85.7978
89.1299
87.2511
83.9906
82.467
78.1022
73.8507
87.6568
96.6443
101.084
101.759
100.446
98.7249
97.1119
95.5669
93.9911
92.3584
91.2355
90.3756
89.6993
89.1432
88.6986
88.3679
88.1383
87.9882
87.8968
87.8469
87.8255
87.8235
80.8216
85.3595
89.3052
87.3134
83.8569
82.4945
77.6513
70.7694
87.4933
97.0276
101.853
102.45
100.836
98.8797
97.1627
95.5144
93.803
91.9678
90.8402
89.9528
89.2566
88.6585
88.1636
87.7964
87.5485
87.3933
87.3065
87.2686
87.2636
87.2794
78.7668
84.9024
89.5002
87.3687
83.7086
82.5619
77.4038
66.632
87.4103
97.3959
102.709
103.222
101.247
99.0046
97.1985
95.4071
93.4502
91.4958
90.3685
89.4721
88.7739
88.1259
87.5576
87.1392
86.8716
86.7172
86.6455
86.6329
86.6578
86.7024
76.3357
84.4406
89.7148
87.4076
83.5459
82.672
77.544
60.7794
87.4929
97.7548
103.656
104.086
101.675
99.0792
97.2389
95.2255
92.8942
91.0431
89.7985
88.9213
88.26
87.5538
86.8711
86.3752
86.0904
85.9523
85.9154
85.9491
86.0228
86.1112
73.4683
83.9956
89.9482
87.4137
83.3691
82.8369
78.3214
52.8747
87.8236
98.132
104.696
105.053
102.111
99.0838
97.3759
94.9717
92.2801
90.5781
89.1048
88.283
87.7377
86.9659
86.1005
85.4814
85.1796
85.0799
85.1037
85.2106
85.3587
85.5131
70.106
83.5985
90.1977
87.3614
83.1781
83.0895
79.9477
42.2848
88.4995
98.5588
105.829
106.13
102.536
99.0003
97.5416
94.6914
91.8146
90.0673
88.245
87.5224
87.2488
86.3825
85.243
84.4474
84.1058
84.058
84.1745
84.3943
84.6586
84.918
66.1992
83.2917
90.457
87.196
83.0009
83.3685
82.1771
4.14498
89.8293
98.9163
107.047
107.323
102.901
98.7678
97.6071
94.4885
91.5932
89.559
87.0939
86.4863
86.8315
85.7704
84.2385
83.2132
82.8112
82.8284
83.0802
83.4691
83.9122
84.337
61.7223
83.1309
90.7147
86.5448
82.7637
83.2867
3.97466
0.728563
91.8776
99.125
108.338
108.632
103.097
98.223
97.938
94.4737
91.6155
89.1191
85.3017
84.5336
86.2839
85.1152
83.0045
81.6723
81.2123
81.3412
81.769
82.3915
83.1031
83.7803
56.7013
83.1866
90.9511
86.3978
82.3587
83.056
-0.20129
0.370735
97.0921
99.2496
109.682
110.049
102.767
96.959
98.564
94.6738
91.8352
88.8273
82.4335
80.7211
85.3177
84.4336
81.4393
79.7236
79.1846
79.5526
80.154
81.075
82.2231
83.2695
51.2335
83.5424
91.135
86.4227
81.5872
-0.0558711
-0.0906332
0.358928
89.7667
99.2778
111.062
111.537
101.386
94.4394
99.3821
94.9812
92.1473
88.8548
80.1404
76.3319
84.9742
83.6181
78.9166
77.4277
76.0889
77.6041
77.9851
79.2311
81.4105
82.8497
45.5259
84.2857
91.2256
86.7652
1.94855
-0.0278072
0.00266577
0.446754
59.4311
98.9312
112.445
113.011
100.367
93.2457
100.415
95.1376
92.4699
89.5153
81.3094
75.7235
84.9532
27.5441
0.147776
0.157067
0.15843
0.15823
0.154591
0.146278
0.136989
0.131077
39.8494
85.4986
91.184
86.0955
0.0418219
-0.00209772
0.036475
0.501798
34.729
99.5686
113.832
114.318
101.048
95.2723
101.399
94.9458
92.7809
90.9153
85.4159
0.117608
0.156335
0.171939
0.172642
0.171145
0.16089
0.15751
0.154715
0.143836
0.13887
0.149508
34.4366
87.3752
90.971
2.0549
0.0204716
0.0103555
0.0444237
0.467963
12.9999
102.125
114.796
115.257
102.479
99.9808
101.294
94.2631
93.0191
92.0016
0.0452072
0.121016
0.147741
0.163684
0.170484
0.167575
0.16052
0.171554
0.146803
0.14086
0.135139
0.152055
31.7614
90.3795
54.5104
-0.0722099
0.0109959
0.0159417
0.0708099
0.379129
8.54629
103.602
114.236
115.775
102.853
104.024
101.009
92.5237
92.8891
0.0566239
0.0430221
0.0927285
0.129258
0.156563
0.168273
0.165357
0.153997
0.174838
0.138314
0.133639
0.129456
0.129185
91.5515
91.5692
91.6035
91.6594
91.7424
91.8595
92.0188
92.23
92.5044
92.8538
93.2889
93.8152
94.4272
95.1008
95.7843
96.3892
96.7721
96.7024
95.8471
93.8318
90.4554
86.2728
83.0792
82.3183
83.792
87.3355
92.8758
99.3198
105.45
109.654
91.5383
91.5597
91.5989
91.6608
91.7516
91.8783
92.0496
92.2757
92.5681
92.9389
93.398
93.9488
94.5824
95.2681
95.9464
96.5173
96.8198
96.5976
95.4975
93.1545
89.4704
85.3114
82.6415
82.4772
84.45
88.5204
94.4229
100.905
106.806
110.06
91.4935
91.5151
91.5545
91.6166
91.7076
91.8348
92.007
92.2348
92.53
92.9053
93.3706
93.9301
94.5744
95.2725
95.9635
96.5467
96.861
96.6487
95.552
93.1927
89.4591
85.2377
82.5655
82.4349
84.4189
88.4982
94.4177
100.906
106.82
110.098
91.4243
91.4459
91.4853
91.5475
91.6387
91.7665
91.9402
92.171
92.4713
92.8541
93.3304
93.9047
94.5682
95.2888
96.0021
96.6046
96.9335
96.7306
95.6319
93.2394
89.4236
85.1074
82.4401
82.3654
84.3667
88.4614
94.4104
100.911
106.846
110.158
91.3309
91.3527
91.3922
91.4544
91.5459
91.6746
91.8505
92.0856
92.3931
92.7867
93.2783
93.8736
94.5643
95.3165
96.0614
96.6898
97.0357
96.8415
95.737
93.2987
89.3701
84.9229
82.2664
82.2697
84.2933
88.4098
94.401
100.918
106.886
110.242
91.2114
91.2336
91.2735
91.3361
91.4282
91.5584
91.7374
91.9782
92.2951
92.7027
93.2139
93.8359
94.5611
95.3533
96.1369
96.7966
97.1634
96.9801
95.8688
93.3731
89.2989
84.6795
82.0422
82.1484
84.1987
88.3429
94.3896
100.928
106.941
110.35
91.0639
91.0869
91.1276
91.1911
91.2844
91.4167
91.5999
91.8481
92.1767
92.6013
93.1363
93.7905
94.5578
95.398
96.2266
96.9222
97.3145
97.1463
96.0288
93.4643
89.2087
84.3703
81.765
82.0031
84.0827
88.2605
94.3767
100.942
107.009
110.482
90.8872
90.9113
90.9532
91.018
91.113
91.2483
91.4369
91.6941
92.0366
92.4814
93.0441
93.7361
94.5535
95.4509
96.3305
97.066
97.4885
97.3406
96.2189
93.5742
89.0987
83.9861
81.4319
81.8356
83.9453
88.1622
94.3626
100.957
107.093
110.639
90.6802
90.7057
90.7489
90.8154
90.9126
91.0515
91.2465
91.5145
91.8734
92.3414
92.9358
93.671
94.5473
95.5119
96.4485
97.2277
97.6852
97.5634
96.4411
93.7053
88.9674
83.5154
81.0391
81.6482
83.7864
88.0474
94.3479
100.975
107.192
110.822
90.442
90.4682
90.5116
90.5806
90.6809
90.8242
91.0269
91.3076
91.6855
92.1799
92.8094
93.5929
94.538
95.5819
96.5807
97.4069
97.9045
97.8154
96.6976
93.8606
88.814
82.9426
80.5819
81.4444
83.6057
87.9154
94.3334
100.995
107.302
111.03
90.1719
90.1965
90.2357
90.3109
90.4157
90.5645
90.7762
91.0716
91.4711
91.995
92.663
93.4989
94.5235
95.6614
96.7263
97.6027
98.1459
98.0974
96.9912
94.0439
88.6377
82.2474
80.0544
81.2283
83.403
87.7653
94.3197
101.016
107.42
111.265
90.0801
90.0804
89.9153
90.0051
90.1157
90.2706
90.4923
90.8045
91.2286
91.7851
92.4945
93.3853
94.5014
95.7516
96.8838
97.8137
98.4092
98.4103
97.3254
94.2597
88.4384
81.4031
79.4494
81.0053
83.1777
87.5959
94.3079
101.038
107.548
111.526
89.5121
89.5515
89.5809
89.6632
89.7795
89.9403
90.173
90.5043
90.9563
91.5489
92.3021
93.2474
94.467
95.8538
97.0495
98.0376
98.6938
98.7548
97.7053
94.5133
88.2169
80.373
78.7579
80.7818
82.9292
87.4057
94.2991
101.061
107.686
111.814
89.1452
89.1569
89.2002
89.2821
89.4013
89.5689
89.8155
90.1695
90.6527
91.2848
92.0841
93.0802
94.4108
95.9675
97.2164
98.272
98.9992
99.132
98.1379
94.8111
87.9757
79.1076
77.9681
80.5656
82.6568
87.1923
94.2947
101.084
107.837
112.129
88.743
88.7576
88.795
88.8634
88.974
89.1511
89.418
89.7988
90.3165
90.9914
91.8397
92.8791
94.3075
96.0852
97.3719
98.5141
99.3251
99.5428
98.6262
95.1607
87.7185
77.5361
77.0602
80.3653
82.3593
86.953
94.2966
101.106
108.003
112.472
88.3168
88.3349
88.3711
88.4094
88.4881
88.6861
88.9811
89.3916
89.9461
90.6668
91.5675
92.6427
94.0738
96.1715
97.4954
98.7615
99.6714
99.988
99.1781
95.5707
87.4507
75.5563
76.0071
80.1915
82.0355
86.6836
94.3072
101.127
108.171
112.84
87.8371
87.8703
87.9353
87.9394
87.9209
88.1857
88.5083
88.9466
89.539
90.3083
91.2642
92.3755
93.5495
96.099
97.5594
99.014
100.038
100.468
99.8016
96.0511
87.1779
73.0303
74.8293
80.0687
81.684
86.3785
94.3293
101.146
108.34
113.233
87.3107
87.3599
87.3807
95.5158
87.3957
87.6747
88.0001
88.459
89.0912
89.9115
90.9225
92.0984
92.9564
95.5847
97.5391
99.2755
100.427
100.981
100.506
96.6135
86.9056
69.8061
73.6518
80.0215
81.3036
86.0296
94.367
101.16
108.514
113.647
86.76
86.8339
86.9354
86.9839
86.9629
87.1462
87.4456
87.9187
88.5967
89.4718
90.5319
91.8174
92.7718
94.4695
97.4418
99.5558
100.837
101.527
101.302
97.273
86.6357
65.6754
72.5955
80.062
80.8932
85.6242
94.4267
101.169
108.692
114.079
86.2058
86.3049
86.3958
86.4467
86.4647
86.5754
86.8224
87.3107
88.049
88.9845
90.0795
91.4683
92.766
93.1148
97.3464
99.8717
101.27
102.1
102.201
98.0423
86.3752
60.0613
71.8532
80.2272
80.4524
85.1433
94.5203
101.169
108.875
114.522
85.6635
85.8018
85.8976
85.9219
85.9024
85.9479
86.096
86.6159
87.4408
88.4461
89.544
91.0228
92.7268
92.2643
97.3975
100.244
101.726
102.692
103.214
98.9024
86.1906
52.035
71.7248
80.5634
79.9806
84.5599
94.666
101.158
109.064
114.963
85.1598
85.3685
85.4864
85.4581
85.3051
85.5261
85.243
85.7921
86.752
87.8435
88.8831
90.5051
92.6699
92.4322
97.7118
100.69
102.201
103.286
104.351
99.9217
86.2031
42.3228
72.6358
81.133
79.4692
83.8546
94.889
101.134
109.26
115.388
84.7285
85.0633
85.239
85.1349
84.7423
84.3405
84.2269
84.7502
85.9232
87.1093
87.9977
89.9019
92.7056
93.4594
98.2588
101.22
102.694
103.853
105.619
101.027
86.6367
28.3158
74.349
81.9307
78.8735
83.0531
95.2219
101.096
109.465
115.771
84.4066
84.9585
85.2578
85.0233
84.1946
83.2619
82.8309
83.4049
84.9338
86.1447
86.6198
89.1651
92.8724
94.7438
98.8758
101.853
103.201
104.338
107.02
102.125
87.4742
-2.82858
2.72487
82.9307
78.0974
82.3665
95.7065
101.047
109.682
116.074
84.2368
85.1558
85.7764
85.3426
83.6143
81.8586
80.9106
81.6721
83.9254
84.7558
84.1845
88.263
93.1536
95.9273
99.4592
102.632
103.723
104.645
108.547
103.166
88.9296
0.650787
0.817614
41.7586
76.9347
81.2921
96.3968
100.99
109.912
116.241
84.3382
85.5884
87.3398
86.7677
82.72
79.8716
77.6615
78.7739
82.8929
83.143
81.4189
87.3043
93.5941
96.9437
100.332
103.623
104.283
104.636
110.159
104.203
92.1607
0.950106
0.799137
0.237819
0.476023
80.8505
97.3522
100.93
110.157
116.186
0.13731
0.127087
0.124762
0.120813
0.114264
0.11796
0.120522
21.081
81.6651
82.6072
79.2668
86.5987
94.3626
97.9099
101.792
104.851
104.951
104.111
111.776
104.896
95.4718
1.10305
0.737831
0.293458
0.398812
78.6267
98.5837
100.878
110.42
115.778
0.139426
0.131199
0.125944
0.124509
0.128827
0.116928
0.144908
0.163358
0.137688
0.105901
76.6963
86.9152
95.7924
98.7601
103.439
106.248
105.92
103.241
113.313
105.44
98.4291
1.28277
0.666486
0.332286
0.336275
-1.19375
100.024
100.859
110.711
114.817
0.139945
0.133282
0.13148
0.124094
0.119902
0.112281
0.124221
0.135783
0.117225
0.0705323
0.0506584
87.9003
98.1577
99.2985
104.504
107.681
107.411
103.918
114.505
106.143
99.2077
1.34483
0.606813
0.346384
0.294884
0.200549
101.424
100.931
111.035
112.998
0.129505
0.127677
0.125691
0.124084
0.279799
0.0935033
0.111624
0.11783
0.0968224
0.0211928
0.058694
-0.991847
101.413
99.8903
104.543
109.309
108.478
106.062
115.254
105.293
93.251
1.42769
0.563153
0.346546
0.267576
0.204305
106.042
101.123
111.769
109.867
28.5065
94.0941
-0.167396
-0.0478113
0.00778437
0.0188028
0.0789211
0.262779
6.71879
104.974
115.6
116.396
101.881
105.832
102.401
88.0814
-0.0343391
0.0785653
0.0262507
0.0532085
0.093166
0.141383
0.164785
0.163767
0.147877
0.160246
0.131925
0.124192
0.121121
0.387017
32.2491
94.6224
-0.136467
-0.041367
0.00691183
0.0198804
0.0740064
0.191653
20.0957
104.1
118.041
117.065
101.547
106.455
105.55
22.4335
0.0687582
0.312491
0.016006
0.0389051
0.0725801
0.128962
0.159139
0.159229
0.139949
0.128906
0.123229
0.116238
0.115952
0.125156
107.178
66.5201
-0.117987
-0.0378879
0.00636793
0.0208059
0.0736457
0.119035
-3.50058
108.545
117.816
118.094
102.62
107.239
115.162
0.0929393
0.109556
0.0237167
0.0108432
0.0392558
0.0542185
0.114127
0.18068
0.14585
0.13168
0.119881
0.111292
0.104048
0.10484
0.121222
133.994
2.90564
-0.104081
-0.0363197
0.00610373
0.0216729
0.0944138
0.0391263
0.652049
114.448
113.759
119.647
104.548
110.932
26.3808
0.0097232
0.180296
0.0309852
0.0125315
0.0454529
0.0420584
0.0998447
0.132932
0.133529
0.1211
0.107754
0.097239
0.0876594
0.0800328
0.119552
105.703
-0.163024
-0.0929343
-0.0354787
0.00602702
0.0237776
0.0947621
-0.0167495
-0.0261925
116.694
112.762
122.213
107.31
115.718
0.0887711
-0.0281252
0.207542
0.0417378
0.0163275
0.0249922
0.0387237
0.0877262
0.118285
0.120293
0.107003
0.0933267
0.0823975
0.0723819
0.0484914
6.78132
0.901485
-0.0801702
-0.0845147
-0.034645
0.00604817
0.0228621
0.0663823
-0.0724181
-1.38564
114.457
118.223
123.926
109.364
101.042
0.0580264
-0.0241906
0.059965
0.0482096
0.0160334
0.022224
0.0403052
0.083822
0.130123
0.100774
0.0902798
0.0775493
0.0682626
0.0610621
0.0474545
4.24419
0.0965791
-0.0897588
-0.0778213
-0.0334999
0.00607509
0.0232755
0.0674425
-0.0861922
-0.843201
26.1121
120.678
123.243
109.793
-1.22517
0.255747
-0.0107479
0.0617033
0.0520183
0.0111468
0.105673
0.0456107
0.0835179
0.0783153
0.0826003
0.0727145
0.0612486
0.06407
0.0527818
0.0556767
0.0615159
-0.0563689
-0.0803374
-0.0718362
-0.0319276
0.00606632
0.0236855
0.0569091
-0.085972
-0.562306
-1.93817
120.511
122.578
37.427
-0.082144
0.00255319
0.000849074
0.0626669
0.0566505
0.00784368
0.0994465
0.153185
0.0862862
0.0790764
0.0670856
0.0565402
0.0457704
0.0443563
0.0456212
0.0485225
0.0518463
-0.0164366
-0.0701183
-0.0663942
-0.030008
0.00606148
0.0241205
0.0539385
-0.0714763
-0.790505
-0.146933
120.276
123.771
-0.118117
-0.0785241
-0.0112287
0.00702453
0.0498868
0.289838
0.012542
0.0110406
0.0491788
0.0683255
0.062006
0.0546669
0.0485998
0.0344311
0.0328344
0.0349695
0.0393666
0.0433031
0.00572676
-0.0601497
-0.0612211
-0.0279046
0.0060684
0.0245017
0.0525954
-0.0387901
-0.371155
-0.662448
43.9514
-0.246759
-0.113507
-0.0720586
-0.0398764
0.00945805
0.0444415
0.264488
0.0345035
0.0276249
0.039499
0.0530246
0.0561542
0.0459305
0.0410426
0.0266615
0.0247526
0.0250316
0.0307654
0.0357563
0.0101542
-0.0510912
-0.0561926
-0.0257438
0.00602898
0.024807
0.054989
0.00867194
-0.121702
-0.0884959
-0.410966
-0.242769
-0.0938447
-0.089381
-0.0791583
0.0113915
0.0486967
0.0644909
0.0486537
0.0443629
0.0515291
0.056925
0.0523162
0.0416663
0.0298961
0.0222856
0.021035
0.0358477
0.0281826
0.0314295
0.0364471
-0.0432185
-0.0512905
-0.0236244
0.00593513
0.0249836
0.0552959
0.0375791
-0.0741697
-0.859817
-0.34823
-0.325728
-0.098735
-0.0942326
-0.153975
0.0469276
0.0584545
0.0628613
0.0598286
0.0601394
0.0626981
0.0579076
0.0514126
0.040954
0.0296852
0.0242497
0.0190152
0.0192563
0.0236375
0.0291484
0.0212969
-0.036782
-0.0465651
-0.0215831
0.00585282
0.0250659
0.057623
0.0574369
0.0119967
-0.845917
-0.307911
0.02336
-0.0873312
-0.0778749
-0.330936
0.0959474
0.0836358
0.0645963
0.0631292
0.311279
0.0654428
0.0634774
0.0516941
0.0425573
0.0326486
0.0365208
0.0227143
0.0233138
0.0264537
0.0307301
0.0225152
-0.031902
-0.0421268
-0.0195886
0.00579948
0.0249462
0.0610434
0.0685172
0.0865886
-0.532276
-0.276187
0.223394
-0.0311867
-0.0756121
-0.321192
0.899025
0.0749775
0.0669976
0.0705181
0.176882
0.0711698
0.0589929
0.0529404
0.0443952
0.0365584
0.0310342
0.0285084
0.028995
0.0308677
0.0349423
0.0445015
-0.0286058
-0.0380124
-0.0176466
0.00574567
0.0246308
0.0542206
0.0765169
0.0931973
-0.328136
-0.281239
0.133057
-0.052556
-0.058344
-0.108052
1.09947
0.0615873
0.0680757
0.0747324
0.0718976
0.0714604
0.059799
0.0648131
0.0606592
0.0391247
0.0363899
0.034915
0.0382144
0.0371298
0.0407885
0.0256119
-0.0267281
-0.0342023
-0.0157798
0.00570835
0.0241073
0.0460296
0.0725665
0.0599613
-0.209427
-0.219026
-0.148382
-0.0655684
-0.0266804
-0.0564187
0.0320218
0.0499307
0.0751094
0.068625
0.0682325
0.0663802
0.0606918
0.0492005
0.0424024
0.0409227
0.0421861
0.0453327
0.0485644
0.0363675
0.0292355
0.0520502
-0.025981
-0.0306752
-0.0139635
0.00568444
0.0233454
0.0445815
0.0646743
0.0468038
-0.150732
-0.0955231
-0.0979818
-0.0744689
-0.0566635
-0.0358362
0.0411881
0.042007
0.0553888
0.0584121
0.0590537
0.0582169
0.0550987
0.0475301
0.0422992
0.0414114
0.0416618
0.0418041
0.457445
0.439961
0.107234
0.0605038
-0.0259753
-0.0273887
-0.0121991
0.00565646
0.0223306
0.0418546
0.0564356
0.0421389
-0.0342439
0.00353487
-0.0791906
-0.0830239
-0.063604
-0.0356176
0.086036
0.030503
0.0403669
0.0461667
0.0485431
0.0494487
0.0487272
0.0455882
0.0406265
0.0396873
0.0370835
0.031292
0.0265463
0.0535926
0.0666331
0.0698043
-0.0262571
-0.0243196
-0.010506
0.00562464
0.0210347
0.0380847
0.0463071
0.0336198
-0.012457
0.0183305
-0.069806
-0.102096
-0.0866592
-0.0526193
-0.0107563
0.0148454
0.0276372
0.0346516
0.0384747
0.0921823
0.0417655
0.0390029
0.0389376
0.047305
0.0397929
0.0419193
0.0462288
0.052558
0.0579987
0.0897824
-0.0267466
-0.0214497
-0.0088843
0.00554991
0.0194355
0.0337135
0.0368144
0.00963167
0.00908352
0.0105079
-0.068305
-0.129603
-0.122506
-0.0727824
-0.0312654
-0.00102093
0.0153442
0.0244262
0.0310576
0.0921316
0.030227
0.0324568
0.0343819
0.0360136
0.0384625
0.0418658
0.0453487
0.048691
0.0518042
0.103668
-0.0279279
-0.0187394
-0.00736125
0.00538937
0.0175184
0.0297305
0.0291814
0.0141354
0.0104681
-0.000955559
-0.0842152
-0.157386
-0.162246
-0.108909
-0.0510277
-0.00946409
0.00469925
0.0142778
0.0196446
0.0215727
0.0245245
0.0269199
0.0291955
0.0316372
0.0343146
0.0371426
0.039938
0.0425774
0.0450874
0.0948721
-0.029434
-0.0161381
-0.00596878
0.00512406
0.015347
0.0234481
0.0232241
0.0145083
0.0134545
-0.0263123
0.480784
-0.168696
-0.182883
-0.133591
-0.0652649
-0.0217738
0.00201617
0.00581067
0.0108223
0.01445
0.0176306
0.020404
0.0229762
0.0255823
0.0282172
0.0307479
0.0331411
0.0353744
0.037428
1.31793
-0.0286351
-0.0136028
-0.00471903
0.00473596
0.0129568
0.0183304
0.0183069
0.0197894
-0.00432948
0.0221629
-0.0215586
-0.154128
-0.168918
-0.128082
-0.0638766
-0.021462
-0.00310129
0.00112068
0.0026461
0.00507979
0.00769821
0.010482
0.0132399
0.0158951
0.0184166
0.0207049
0.0227628
0.0245917
0.0261334
0.0531943
-0.0225036
-0.0111487
-0.0036178
0.00421107
0.0103154
0.0136277
0.012898
0.00384412
-0.0140397
-0.0461696
-0.0776338
-0.118362
-0.123799
-0.086591
-0.0408325
-0.0111345
-0.00450628
-0.00392907
-0.00648022
-0.00766232
-0.00757826
-0.00606541
-0.00379617
-0.00120569
0.00114202
0.00308113
0.00461278
0.00573341
0.00637364
0.0506656
-0.0150707
-0.0088444
-0.00266836
0.00355099
0.00762499
0.00836288
0.0259191
-0.0136446
-0.0352686
-0.0499333
-0.0691395
-0.0722317
-0.0791697
-0.0577744
0.189776
-0.0138451
-0.00292373
0.0117962
0.0030156
-0.0247007
-0.0286884
-0.0310768
-0.0269455
-0.0286738
-0.0268554
-0.0250549
-0.0237039
-0.0229026
-0.022652
0.0345497
-0.0092572
-0.00675698
-0.00187219
0.0027844
0.0047362
0.00449689
-0.00457228
-0.0491828
-0.0702905
-0.0591375
-0.0593156
-0.0588096
-0.0118631
-0.042188
-0.0229683
-0.0152334
-0.0219316
-0.02821
-0.0364134
-0.0435779
-0.0503934
-0.0579576
-0.0601597
-0.0574404
-0.0604067
-0.0579766
-0.0558121
-0.0546049
-0.0541285
0.0197958
-0.00550815
-0.0049119
-0.00122046
0.00198456
0.00201614
-0.00295607
-0.0213781
-0.110753
-0.123387
-0.067524
-0.0503646
-0.0451981
-0.0427136
-0.0374863
-0.028036
-0.0277047
0.0132238
-0.0359505
-0.0475397
-0.0623805
-0.0712651
-0.0745087
-0.0781692
-0.077179
-0.0676019
-0.0529805
-0.0729366
-0.0735417
-0.0741906
0.0102729
-0.00319674
-0.00331923
-0.000699931
0.00127124
-5.96729e-05
-0.00873216
-0.0313823
-0.129794
-0.136144
-0.0711391
-0.0429676
-0.0343761
-0.0286222
0.153363
-0.026082
-0.0260784
-0.0315559
0.0237563
-0.0484949
0.0981795
-0.0271519
-0.0671749
-0.0692431
-0.0741067
-0.0265928
-0.0734656
-0.0778705
-0.0786682
-0.0796783
0.00492732
-0.0017406
-0.00197759
-0.000304109
0.000745477
-0.00108423
-0.00935545
0.02796
-0.00197083
-0.0989265
-0.0591699
-0.0376602
-0.0285398
-0.024223
-0.0214281
-0.0117072
-0.0254394
-0.0323787
-0.0336173
-0.0392846
-0.0404169
-0.0323092
-0.0388728
0.0319381
-0.0684921
-0.0654015
-0.0628328
-0.0625646
-0.058098
-0.0558535
0.00181302
-0.000725804
-0.00085179
-4.68268e-05
0.000396114
-0.000823303
-0.00578266
-0.00970171
-0.0192395
-0.0442632
-0.0451108
-0.0365046
-0.027602
-0.0209966
-0.0169121
-0.0155093
-0.0147843
-0.0222128
-0.0248035
0.00501848
-0.0166169
-0.0227674
-0.0257909
-0.0261283
-0.00596364
-0.00488842
-0.0238938
-0.0269316
-0.0289518
-0.0304782
0.136964
0.120209
0.119527
0.118013
0.112521
0.103658
0.100393
0.100483
0.0744213
-0.00434259
0.0158472
0.0126761
58.859
100.017
104.63
111.164
108.358
107.424
116.266
109.248
71.9571
1.40508
0.535703
0.340124
0.249976
0.185952
-0.075588
101.126
112.925
106.454
0.121986
0.115611
0.11474
0.114248
0.10773
0.0973736
0.0945888
0.0918619
0.065508
-0.0104611
0.00238144
-0.0196586
0.00111681
99.811
104.864
111.414
108.295
108.243
116.891
117.081
116.385
1.31493
0.524296
0.334995
0.242003
0.177252
-0.0366883
89.4603
113.576
105.826
0.118683
0.132769
0.110685
0.111051
0.100621
0.0926843
0.0885771
0.0838294
0.0587177
-0.0101197
-0.00423795
-0.0109499
0.0611928
-1.62831
105.389
111.674
107.995
109.378
117.628
120.277
-5.22312
1.19357
0.511837
0.328848
0.234482
0.16878
-0.0107133
0.0207223
114.359
105.713
0.115983
0.10951
0.201847
0.132401
0.0909544
0.0872024
0.0826037
0.0767211
0.0546351
-0.00062247
0.00224724
0.0102128
0.164454
0.152732
103.041
112.118
108.758
111.402
117.885
121.257
-2.49759
1.02923
0.500284
0.321714
0.227305
0.160636
0.00502636
0.0466683
110.617
106.396
0.107338
0.0997525
0.102186
0.131809
0.0819721
0.0822844
0.0769598
0.0708004
0.0528507
0.0105254
0.00498707
0.0231041
0.128198
0.137222
-0.00239783
112.318
105.834
110.744
116.96
120.56
-2.06899
0.850859
0.483546
0.313497
0.220385
0.152882
0.0151249
0.0490209
1.11234
108.563
0.0353365
0.0822539
0.0860555
0.0787761
0.104541
0.0789613
0.0717011
0.0660644
0.053314
0.0267175
0.0153519
0.0260182
0.0380979
0.0941106
0.0151197
17.5861
106.139
111.45
115.975
118.941
-1.86753
0.692597
0.460357
0.30414
0.213648
0.145611
0.0224126
0.0450089
0.107645
104.01
0.0572549
0.0684237
0.0736215
0.0723867
0.0790762
0.08709
0.0655354
0.0622057
0.0542148
0.0354168
0.0255159
0.0223579
0.0317288
0.0331477
-0.0193532
-0.289621
7.98546
110.944
120.609
129.46
-1.71983
0.498509
0.426347
0.29357
0.20689
0.138881
0.0282943
0.0414998
0.101978
0.241825
0.0547301
0.0603275
0.0646324
0.0638908
0.0807482
0.071587
0.0604489
0.0646653
0.0526717
0.042619
0.0328764
0.0166695
0.0146215
-0.0502717
-0.0321503
-0.283543
-0.302189
31.1864
122.645
1.81557
-1.56092
0.344207
0.398634
0.281669
0.199926
0.132684
0.0333257
0.0398445
0.096118
0.224483
0.0476711
0.0531184
0.0582803
0.0689224
2.08602
0.0527156
0.0568063
0.056415
0.0591573
0.0449794
0.0356044
0.0151048
-0.011388
-0.178995
-0.176095
-0.223759
-0.30614
-0.334148
-0.477623
-0.590732
-1.375
0.273733
0.358186
0.268341
0.192654
0.126954
0.0378592
0.039304
0.0898265
0.198667
0.0405571
0.0456491
0.0501825
0.0482261
0.361938
0.0505812
0.0519569
0.049495
0.0555928
0.0435935
0.0916572
0.017035
-0.0179873
-0.14431
2.52348
-0.0453283
-0.307577
-0.320166
-0.474377
-0.691629
-1.25305
0.196565
0.321148
0.253561
0.184999
0.121646
0.0421647
0.0392937
0.0814848
0.167742
0.0358652
0.0409073
0.0448442
0.061389
0.0500888
0.0510131
0.0494225
0.0453431
0.041006
0.0375089
0.0859554
0.0112801
-0.0189287
-0.0452744
0.394812
-0.0430001
-0.288637
-0.322264
-0.463745
-0.634502
-1.10997
0.11512
0.279644
0.237373
0.176892
0.116676
0.0461792
0.0397951
0.0721877
0.135312
0.0341132
0.0398795
0.045756
0.0563633
0.0510474
0.0502008
0.0472828
0.0425416
0.038164
0.0300278
0.0368149
0.0100927
-0.0185874
-0.0382337
2.54695
-0.212637
-0.278504
-0.320806
-0.458845
-0.55315
-0.91917
0.0339999
0.238085
0.219881
0.16827
0.111907
0.0497304
0.0405769
0.0653598
0.104727
0.0359188
0.0413765
0.0473623
0.0519527
0.0524996
0.0509226
0.0465016
0.0421801
0.0378661
0.0311163
0.0273195
0.00797475
-0.0172213
-0.02875
-0.102613
-0.207829
-0.266836
-0.360009
-0.448946
-0.457999
-0.821106
-0.0456982
0.196764
0.201284
0.159061
0.107213
0.0525347
0.0414005
0.0590768
0.0781103
0.03978
0.0453837
0.0521576
0.0570573
0.0578621
0.0596121
0.0679204
0.0460717
0.0426738
0.0306179
0.0219363
0.00578036
-0.0162701
-0.0411423
-0.0657556
-0.206497
-0.263299
-0.366217
-0.30824
-0.542797
-0.629407
-0.0964429
0.157687
0.181865
0.149249
0.102474
0.0543852
0.0420285
0.0532736
0.0564761
0.0444016
0.0529989
0.0602495
0.0645225
0.0630108
0.0657727
0.0537135
0.0514579
0.0402298
0.0312648
0.0192571
0.0260392
-0.00178838
-0.0494671
-0.119971
-0.201968
-0.253002
0.0238017
-0.401748
-0.463914
-0.448037
-0.111827
0.121862
0.161999
0.138893
0.0975813
0.0552758
0.0422536
0.0478982
0.0398415
0.0498315
0.0610912
0.0713453
0.067518
0.0731372
0.0551879
0.0453581
0.0453983
0.0447356
0.0354446
0.0179965
0.014709
-0.0122766
-0.0545733
-0.125489
-0.193958
-0.257548
0.0860487
-0.417274
-0.419083
-0.352322
-0.13334
0.0906847
0.142128
0.128044
0.0924592
0.0552562
0.0418972
0.0428996
0.0275945
0.0636451
0.0722501
0.0727288
0.0517807
0.060421
0.0600608
1.03355
1.33502
0.0545456
0.0383989
0.021253
0.041573
-0.0178392
-0.0552174
-0.131276
-0.199005
-0.257671
-0.213156
-0.38169
-0.344815
-0.298272
-0.123471
0.0650096
0.122711
0.11678
0.0870571
0.0544248
0.0408682
0.0382446
0.0188674
0.0699042
0.0712761
0.0673736
0.254984
0.0692573
0.0793617
0.0732166
0.0682808
0.0643596
0.0448509
0.0248408
-7.92084e-05
-0.0207262
-0.0134065
-0.129779
-0.206481
-0.254126
-0.21516
-0.306126
0.525849
-0.261389
-0.113732
0.0449644
0.104199
0.10526
0.0813496
0.0529174
0.0393927
0.0339311
0.0127925
0.0616051
0.0643525
0.0678143
0.0700733
0.0731776
0.0761011
0.0765313
0.0733819
0.0656184
0.0503756
0.0276959
-0.00354637
0.0467325
-0.0678845
-0.131237
-0.201753
-0.241327
0.65717
-0.241811
-0.0137841
-0.18964
-0.0875468
0.0300367
0.0869875
0.0936608
0.0753286
0.0508912
0.0375778
0.0299886
0.00863952
0.0549309
0.0585398
0.0629747
0.0695308
0.0740372
0.0798277
0.0768622
0.0729545
0.0647925
0.0499485
0.0250182
-0.0102969
-0.0500845
-0.0850152
-0.136275
-0.192839
-0.21703
0.88806
-0.106237
-0.21264
-0.155958
-0.0694576
0.0191326
0.0713475
0.0821758
0.0690059
0.0484542
0.0354543
0.0264627
0.00585361
0.0476809
0.0505867
0.0539109
0.0581449
0.0627842
0.0667113
0.067184
0.0633543
0.0545217
0.0372066
0.00847091
-0.0328086
-0.0749539
-0.113978
-0.153702
-0.182793
-0.196596
-0.208495
0.0136759
-0.119929
-0.0923787
-0.0566853
0.0110439
0.0574214
0.071007
0.0624299
0.0455999
0.033039
0.0233843
0.00403532
0.0394775
0.0415992
0.0435815
0.0448068
0.0448346
0.0435704
0.0436857
0.038761
0.026506
0.0195078
-0.0366372
-0.0821535
-0.127108
-0.162371
-0.181489
-0.185905
-0.169863
-0.164788
-0.0207562
-0.0741585
-0.0649619
-0.0478437
0.00486239
0.0452351
0.0603366
0.0556678
0.0422958
0.030502
0.0207131
0.00288846
0.0274847
0.0285612
0.0288005
0.0271935
0.0236272
0.0835691
0.0100622
-0.00307143
-0.0272491
-0.0441864
-0.1131
-0.173864
-0.213609
-0.240343
-0.226937
-0.195666
-0.158442
-0.129048
-0.0680457
-0.0373256
-0.0614447
-0.0431024
-0.000171808
0.034714
0.050327
0.0488119
0.0385654
0.0279933
0.0183284
0.00218356
0.00656989
0.00612199
0.00436823
0.000392378
-0.00620682
-0.0156388
-0.0276782
-0.0541394
-0.0933038
-0.128802
-0.225257
-0.213355
-0.309587
-0.36632
-0.281356
-0.210719
-0.145299
-0.100825
-0.0750254
-0.03582
-0.0805633
-0.0430553
-0.00444732
0.0257578
0.0410985
0.0419732
0.034454
0.0253222
0.016099
0.00174346
-0.0229532
-0.0240769
-0.0265371
-0.0310574
-0.038743
-0.0510237
-0.0692771
-0.0984454
-0.144437
-0.210729
-0.297238
-0.389682
-0.458928
-0.477795
-0.386141
-0.225727
-0.131734
-0.0646222
-0.00634307
2.8996
-0.117635
-0.0462458
-0.00784532
0.0182921
0.032742
0.0352455
0.0300178
0.0223854
0.0139279
0.00144242
-0.054338
-0.0554019
-0.0577791
-0.0620776
-0.0692274
-0.080751
-0.0990915
-0.127206
-0.168472
-0.227799
-0.307053
-0.396454
-0.477906
-0.499358
-0.409862
-0.240823
-0.108844
-0.0328543
0.0155579
2.27935
-0.167654
-0.0194097
-0.00976976
0.0122815
0.0253167
0.0287169
0.0253245
0.0191659
0.011752
0.00120098
-0.0750559
-0.0763879
-0.0785711
-0.0818806
-0.0880277
-0.0968881
-0.110408
-0.130996
-0.16097
-0.201255
-0.254397
-0.315239
-0.365291
-0.35614
-0.317295
-0.178231
-0.0438585
-0.0118976
0.0169294
0.564523
-0.044423
-0.0336408
-0.00381325
0.00772311
0.0188259
0.0224485
0.020431
0.0156795
0.00952878
0.000974119
-0.081562
-0.0846368
-0.0871339
-0.0882425
-0.091136
-0.0969693
-0.106412
-0.118767
-0.133684
-0.148804
-0.168598
-0.193593
-0.201755
-0.196959
-0.149596
-0.0815675
-0.00369314
-0.00287327
0.00667274
0.028
-0.0251967
-0.024719
-0.00823439
0.00467889
0.0132227
0.01645
0.0153767
0.0119459
0.00722737
0.000738546
-0.0490851
0.011185
-0.0517078
-0.070771
-0.0735001
-0.0771431
-0.0784112
-0.0878342
-0.0945112
-0.0819415
-0.0840645
-0.0686663
0.0481156
-0.0693742
-0.0405765
-0.0151234
0.0106595
0.00393549
0.0014514
-0.0047431
-0.00278198
-0.0101369
-0.00504186
0.00291619
0.00833826
0.0106662
0.0101664
0.00797017
0.00481897
0.000481512
-0.0295891
-0.0331792
-0.0386303
-0.0392994
-0.0369948
-0.044611
-0.0384198
-0.0489597
-0.0441517
-0.0284239
-0.0313972
-0.0309547
-0.0127135
0.0641944
0.00241
0.0275195
0.00927113
0.00647623
0.00140888
-0.00327169
-0.00354774
-0.00609937
-0.00148725
0.00157639
0.00385895
0.00495506
0.0047519
0.00373292
0.00227005
0.000194471
94.6491
90.9466
88.619
87.9033
86.2483
84.3976
83.3377
83.8814
86.8214
91.0635
94.5802
96.5995
97.3244
97.2066
96.6437
95.9024
95.1365
94.4242
93.7991
93.2709
92.8365
92.4868
92.2108
91.9974
91.8364
91.719
91.6371
91.5837
91.5527
91.5391
93.9427
90.9465
88.6033
87.911
86.2507
84.3898
83.3129
83.8215
86.7702
91.0693
94.6248
96.652
97.3679
97.2371
96.6619
95.9094
95.1333
94.4122
93.7797
93.2458
92.8072
92.4545
92.1763
91.9614
91.7994
91.6812
91.5989
91.5453
91.5143
91.5007
93.9356
90.9511
88.5782
87.9249
86.2544
84.3742
83.2673
83.7113
86.6658
91.0581
94.6851
96.7357
97.4437
97.2946
96.7002
95.9295
95.1359
94.3984
93.7521
93.2072
92.7603
92.4016
92.1192
91.9014
91.7375
91.6182
91.5353
91.4815
91.4506
91.4371
93.9395
90.9598
88.544
87.9453
86.2591
84.351
83.2023
83.5528
86.5132
91.0381
94.7645
96.8492
97.5499
97.3786
96.7596
95.964
95.1453
94.3843
93.7177
93.1568
92.6979
92.3304
92.0417
91.8195
91.6528
91.5319
91.4481
91.394
91.363
91.3497
93.9641
90.9739
88.501
87.9725
86.2649
84.32
83.1186
83.3436
86.3092
91.0111
94.8659
96.9937
97.6851
97.4858
96.8354
96.0081
95.158
94.3672
93.6752
93.0942
92.6198
92.2409
91.944
91.716
91.5452
91.4216
91.3362
91.2812
91.2499
91.2365
94.0218
90.9947
88.4503
88.0072
86.2715
84.2815
83.0178
83.0809
86.0479
90.977
94.9912
97.1709
97.8493
97.6137
96.9243
96.0591
95.1718
94.346
93.6235
93.0181
92.5253
92.1327
91.8256
91.5901
91.4139
91.2864
91.1982
91.1414
91.1092
91.0956
94.1073
91.0235
88.3931
88.0499
86.279
84.2356
82.9018
82.761
85.7218
90.9355
95.1419
97.3826
98.043
97.7617
97.0251
96.1159
95.1861
94.3196
93.5615
92.9278
92.4136
92.0048
91.6857
91.4411
91.2581
91.1251
91.0329
90.9732
90.9393
90.9253
94.2186
91.0613
88.3311
88.1018
86.2871
84.1822
82.7732
82.38
85.3214
90.887
95.3199
97.6309
98.2673
97.9296
97.1374
96.178
95.2004
94.2873
93.488
92.8218
92.2832
91.8561
91.5231
91.268
91.0767
90.9372
90.8396
90.776
90.7396
90.7247
94.356
91.1088
88.2657
88.1637
86.2956
84.1215
82.6356
81.9328
84.834
90.8321
95.5277
97.9185
98.5234
98.1174
97.2603
96.2448
95.2141
94.248
93.4012
92.6983
92.1324
91.6849
91.3363
91.0693
90.8687
90.7218
90.6182
90.5494
90.5093
90.4925
94.5204
91.1673
88.1987
88.237
86.3042
84.0533
82.4934
81.4141
84.2429
90.7725
95.7678
98.2484
98.813
98.3246
97.3928
96.3154
95.2265
94.2003
93.299
92.5548
91.9591
91.4891
91.1234
90.8433
90.6328
90.4783
90.3682
90.2938
90.2482
90.227
94.7126
91.2379
88.1319
88.3231
86.3121
83.9771
82.3524
80.818
83.5261
90.7106
96.0429
98.6237
99.1378
98.5508
97.5337
96.3885
95.2366
94.1426
93.1784
92.3888
91.7609
91.2667
90.8822
90.5879
90.3671
90.2051
90.0893
90.0094
89.9573
89.9273
94.9341
91.3215
88.0681
88.4235
86.3183
83.8921
82.2199
80.1382
82.6538
90.6508
96.3558
99.049
99.5003
98.7954
97.6811
96.4624
95.2436
94.073
93.0358
92.197
91.535
91.0149
90.6099
90.3001
90.0685
89.8995
89.7791
89.695
89.6376
89.601
95.1873
91.4091
88.0107
88.5399
86.3215
83.7968
82.1048
79.3698
81.5845
90.5997
96.7091
99.5291
99.9033
99.0574
97.8327
96.5349
95.2461
93.9892
92.8663
91.9755
91.2786
90.731
90.3033
89.9759
89.7326
89.5571
89.4339
89.3486
89.289
89.2466
95.4756
91.4175
87.9643
88.6745
86.3197
83.6891
82.0185
78.507
80.2568
90.5675
97.1052
100.07
100.35
99.3358
97.9856
96.6032
95.242
93.8887
92.6635
91.7204
90.9884
90.4118
89.9585
89.6106
89.3534
89.1707
89.0455
88.9619
88.9061
88.8716
95.8027
91.3477
87.9352
88.829
86.3101
83.5653
81.9753
77.5219
78.5718
90.5698
97.5456
100.677
100.846
99.6287
98.1358
96.6639
95.2269
93.7675
92.4191
91.4269
90.6609
90.0544
89.5714
89.1981
88.9235
88.7314
88.6032
88.5211
88.4709
88.4425
96.1723
91.1838
87.9318
89.0058
86.2889
83.4202
81.9941
76.3738
76.4238
90.6306
98.0313
101.357
101.395
99.9341
98.2776
96.7142
95.1911
93.6181
92.1234
91.0895
90.2924
89.6561
89.1376
88.7315
88.4345
88.2302
88.0977
88.0173
87.9735
87.9546
96.5881
90.8911
87.9651
89.207
86.2504
83.2459
82.0995
75.0766
73.7538
90.7681
98.5628
102.118
102.006
100.248
98.4026
96.7546
95.1137
93.4128
91.7625
90.6979
89.8781
89.2154
88.6531
88.2027
87.8761
87.6577
87.5218
87.4466
87.414
87.4099
97.0538
90.4128
88.0488
89.4348
86.1868
83.0312
82.327
73.6638
70.3549
90.9724
99.1437
102.965
102.686
100.567
98.4963
96.7965
94.954
93.066
91.3309
90.2361
89.413
88.7342
88.1155
87.601
87.2349
87.0023
86.8685
86.8077
86.7979
86.8201
97.5719
89.6615
88.1996
89.691
86.0868
82.7606
82.724
72.2309
65.8521
91.24
99.778
103.906
103.446
100.881
98.5364
96.8735
94.6625
92.5429
90.8603
89.6866
88.8911
88.2212
87.5269
86.913
86.4914
86.25
86.1327
86.1045
86.1368
86.2022
98.1432
88.5079
88.4372
89.9768
85.934
82.4148
83.3394
70.8352
60.8018
91.6414
100.444
104.944
104.297
101.176
98.5193
97.036
94.2408
92.0285
90.3251
89.0209
88.3081
87.7011
86.9009
86.127
85.62
85.38
85.302
85.3315
85.4307
85.5618
98.764
86.76
88.7838
90.2931
85.7117
81.9723
84.1762
69.4979
58.5172
92.2917
101.118
106.079
105.253
101.422
98.4972
97.1618
93.7887
91.6542
89.7124
88.1861
87.6592
87.2179
86.2564
85.2391
84.6037
84.3584
84.3412
84.4603
84.6628
84.8962
99.4235
84.1334
89.2644
90.6409
85.3791
81.4122
85.0942
67.1651
18.4208
93.3651
101.766
107.303
106.327
101.549
98.502
97.1113
93.4605
91.4252
89.0539
87.0617
86.8886
86.7941
85.5633
84.2108
83.4014
83.1327
83.1958
83.4486
83.8089
84.2017
100.098
80.2065
89.905
91.0221
85.1898
80.7348
85.6934
7.86871
17.3613
94.1383
102.375
108.598
107.53
101.367
98.4673
97.1567
93.3764
91.3415
88.3838
85.2416
85.6666
86.3668
84.7743
82.9416
81.9132
81.6314
81.8142
82.2473
82.8347
83.4692
100.744
74.3498
90.7236
91.442
85.1364
79.947
83.7965
0.278309
0.133503
93.5625
102.895
109.944
108.862
100.404
98.1295
97.4953
93.5621
91.3978
87.7293
81.8829
82.9857
85.7421
83.9335
81.3364
80.0272
79.7704
80.1514
80.7771
81.6845
82.696
101.284
65.6207
91.7271
91.9109
85.1779
80.2813
0.00650443
0.214255
0.440845
94.1589
103.391
111.309
110.299
97.7809
97.1366
97.9782
93.9413
91.5577
87.3942
78.1691
79.7434
85.2549
82.7068
79.1149
77.3283
77.3835
78.2406
78.8067
80.2149
81.9522
101.59
52.6143
92.9128
92.4414
85.8786
0.195602
-0.00848582
0.193651
0.598814
94.6527
103.938
112.647
111.778
95.7044
96.3596
98.6499
94.2794
91.8382
88.0214
77.5788
79.1353
86.296
68.9632
8.56589
0.148275
0.162537
0.158442
0.155453
0.14501
0.131579
101.459
33.3266
94.2595
93.0465
81.927
0.0478107
-0.00406875
0.151475
0.761752
90.3379
104.341
113.916
113.141
96.5355
97.8029
99.2957
94.2506
92.1979
89.5611
82.0976
4.93536
0.15681
0.169363
0.17285
0.166808
0.160085
0.157009
0.15258
0.143087
0.136449
100.587
5.26447
95.693
93.9592
-0.0880561
0.0332052
0.00306208
0.128026
0.762895
65.8527
105.807
115.079
114.092
99.3264
101.094
99.4798
93.9152
92.4033
89.797
0.0687103
0.133064
0.154851
0.166995
0.171267
0.165937
0.160213
0.164756
0.172905
0.139802
0.137092
98.5928
-36.0732
97.3236
54.6711
-0.0356646
0.0253735
0.0102716
0.118945
0.669243
2.51349
104.909
116.363
114.359
102.121
103.812
100.074
94.5033
92.5802
0.0229654
0.0583204
0.11277
0.143125
0.162616
0.169663
0.162884
0.154325
0.16485
0.140525
0.134489
0.130075
95.0172
-98.5977
99.4214
-0.191788
-0.0259741
0.0214244
0.0163265
0.107818
0.469035
-88.417
106.413
117.936
114.17
103.438
104.762
98.372
100.512
0.305259
0.0407298
0.0357162
0.0674401
0.114152
0.152316
0.173214
0.161122
0.151093
0.154366
0.13168
0.125419
0.122385
91.5384
91.5492
91.5746
91.6189
91.6874
91.7864
91.9233
92.1071
92.3484
92.6589
93.0503
93.5315
94.1032
94.7522
95.4413
96.1022
96.6225
96.8203
96.4126
95.0319
92.3419
88.4079
84.4326
82.3772
82.7861
85.2656
89.8618
96.0267
102.458
107.918
91.5001
91.5111
91.5366
91.5811
91.6499
91.7491
91.8865
92.0712
92.3141
92.6272
93.0226
93.5094
94.0887
94.747
95.4464
96.1178
96.6485
96.8566
96.4577
95.0787
92.3709
88.3893
84.3671
82.3217
82.7547
85.2408
89.8463
96.0234
102.46
107.93
91.4367
91.4478
91.4734
91.518
91.5868
91.6863
91.8245
92.0108
92.2567
92.5749
92.9778
93.4751
94.0687
94.7449
95.4645
96.1554
96.7028
96.9241
96.5334
95.1487
92.4007
88.3344
84.2394
82.2221
82.6985
85.196
89.8193
96.0197
102.467
107.955
91.3494
91.3606
91.3864
91.431
91.4998
91.5997
91.7389
91.9276
92.1782
92.5037
92.9176
93.4304
94.0449
94.7477
95.4972
96.2167
96.7866
97.0222
96.6378
95.2415
92.4364
88.251
84.0544
82.0808
82.6182
85.1308
89.7803
96.0153
102.478
107.992
91.2365
91.248
91.274
91.3189
91.3881
91.4885
91.6293
91.8215
92.0782
92.4136
92.8419
93.3748
94.0165
94.7536
95.5415
96.2968
96.8944
97.1473
96.7702
95.359
92.481
88.1388
83.8079
81.8972
82.5142
85.045
89.7292
96.0104
102.494
108.047
91.0957
91.1077
91.1345
91.1801
91.2501
91.3517
91.4949
91.6916
91.9562
92.3039
92.7499
93.3075
93.9823
94.7616
95.5958
96.3927
97.0225
97.2972
96.9308
95.5032
92.5358
87.9954
83.4931
81.671
82.3873
84.9384
89.6658
96.005
102.513
108.118
90.9258
90.9386
90.9665
91.0133
91.0845
91.1879
91.3343
91.5369
91.8111
92.1736
92.6407
93.2271
93.9412
94.7712
95.6598
96.5038
97.1699
97.4713
97.1203
95.6758
92.6023
87.8179
83.1016
81.4019
82.2385
84.8109
89.5897
95.9997
102.537
108.204
90.7256
90.7397
90.7688
90.817
90.8899
90.9956
91.146
91.3556
91.6415
92.0213
92.5127
93.1323
93.8917
94.7817
95.734
96.63
97.3364
97.6695
97.3394
95.8792
92.6825
87.603
82.6221
81.0903
82.0692
84.662
89.5006
95.9947
102.564
108.302
90.494
90.5099
90.5396
90.5888
90.6641
90.7728
90.928
91.1461
91.4456
91.8454
92.3643
93.0209
93.8317
94.7925
95.8189
96.7712
97.5216
97.8918
97.5893
96.116
92.779
87.3468
82.0397
80.7368
81.881
84.4914
89.3981
95.9907
102.595
108.415
90.2277
90.2492
90.2754
90.3244
90.4043
90.5173
90.6784
90.9063
91.2215
91.6442
92.194
92.891
93.7583
94.8027
95.915
96.9267
97.7249
98.1381
97.8712
96.3897
92.895
87.0448
81.3348
80.3423
81.6756
84.2985
89.2817
95.9882
102.629
108.548
89.9156
90.0705
90.0924
90.0196
90.1091
90.2274
90.3951
90.6344
90.9675
91.416
91.9998
92.7401
93.6678
94.8113
96.023
97.0949
97.9452
98.4082
98.1862
96.7047
93.0342
86.6929
80.4808
79.9077
81.4554
84.0828
89.1506
95.988
102.665
108.696
89.5849
89.613
89.6509
89.6868
89.7779
89.9019
90.0763
90.3279
90.6818
91.1594
91.7803
92.566
93.5547
94.8168
96.1429
97.2726
98.181
98.7018
98.5362
97.0663
93.2014
86.2867
79.4418
79.4323
81.223
83.8435
89.0038
95.9913
102.703
108.858
89.2649
89.2426
89.2633
89.3153
89.4077
89.5364
89.7182
89.9847
90.3626
90.8727
91.5341
92.3669
93.4119
94.8169
96.2723
97.4543
98.4307
99.0186
98.9228
97.4761
93.4019
85.8228
78.1676
78.911
80.9815
83.58
88.8401
95.9993
102.744
109.032
88.8465
88.8459
88.8658
88.9128
88.9956
89.1228
89.3161
89.603
90.0086
90.5545
91.2599
92.1418
93.2298
94.8038
96.4019
97.6313
98.6925
99.3583
99.3478
97.9455
93.642
85.2992
76.5872
78.3291
80.7339
83.2912
88.6577
96.0137
102.786
109.216
88.4291
88.4302
88.451
88.4898
88.541
88.6557
88.8688
89.1827
89.6189
90.2033
90.9557
91.8904
92.9967
94.7428
96.5021
97.7906
98.9655
99.7207
99.8132
98.483
93.9288
84.7162
74.6019
77.6658
80.4816
82.9761
88.4541
96.0363
102.83
109.409
87.9532
87.9673
88.0022
88.0616
88.0256
88.1258
88.3835
88.7253
89.192
89.8169
90.6191
91.6115
92.705
94.4914
96.4909
97.917
99.2501
100.106
100.321
99.0974
94.2707
84.0766
72.0821
76.9829
80.2244
82.6335
88.2253
96.0696
102.878
109.606
87.4245
87.4548
87.5035
87.5807
94.4909
87.5884
87.8763
88.2307
88.7241
89.3916
90.2458
91.2967
92.4014
93.8861
96.1891
97.9985
99.5494
100.512
100.872
99.7999
94.6798
83.3846
68.8835
76.4412
79.972
82.2614
87.9655
96.1162
102.929
109.804
86.8599
86.9138
86.9882
87.113
87.1466
87.1182
87.3465
87.6899
88.207
88.9227
89.8305
90.9325
92.1587
93.3335
95.4228
98.0405
99.87
100.939
101.468
100.604
95.175
82.6352
64.9183
75.9965
79.7243
81.8568
87.6657
96.179
102.988
109.998
86.2804
86.3664
86.4594
86.5481
86.5814
86.6174
86.7736
87.0844
87.6289
88.405
89.3671
90.5069
91.9032
92.9907
94.3598
98.0831
100.223
101.385
102.109
101.522
95.7888
81.8206
60.1235
75.5989
79.4513
81.4137
87.3113
96.2601
103.055
110.18
85.697
85.8299
85.9509
86.0314
86.049
86.0541
86.1353
86.3872
86.9748
87.8335
88.8505
90.0007
91.5622
92.7533
93.5585
98.2039
100.623
101.842
102.793
102.568
96.5536
80.9642
54.2397
75.4922
79.1281
80.9201
86.8806
96.3599
103.133
110.342
85.1216
85.3312
85.5043
85.5867
85.5419
85.4356
85.6873
85.5678
86.2156
87.1968
88.2715
89.3787
91.1551
92.6701
93.5455
98.478
101.083
102.302
103.517
103.749
97.4284
80.2653
47.3613
75.8607
78.7305
80.3494
86.3512
96.4764
103.223
110.475
84.5715
84.9094
85.1811
85.2859
85.1409
84.7745
84.5815
84.5719
85.2772
86.4531
87.5652
88.56
90.7139
92.8594
94.3579
98.9121
101.617
102.747
104.275
105.066
98.3702
80.2426
-2.11404
76.6785
78.2128
79.636
85.7222
96.606
103.325
110.563
84.0619
84.607
85.0558
85.2212
84.8909
84.1216
83.4197
83.2521
84.078
85.562
86.5346
87.371
90.2344
93.2733
95.5502
99.4321
102.241
103.145
105.056
106.5
99.3262
80.4242
2.39592
74.7879
77.6323
78.6387
84.9721
96.7443
103.437
110.593
83.6168
84.4762
85.2471
85.5905
84.918
83.3457
81.9699
81.4575
82.6029
84.639
84.9541
85.4235
89.7123
93.7993
96.7063
99.9849
102.985
103.447
105.837
108.016
100.278
79.5089
1.41109
0.959569
70.0317
77.0145
84.1999
96.8841
103.56
110.542
83.227
84.5383
85.8834
86.936
85.5867
82.1859
80.0143
78.4603
80.5935
83.7142
82.8887
82.7668
89.2165
94.3948
97.6622
100.82
103.886
103.588
106.55
109.575
101.197
79.7279
1.17906
0.675094
0.326425
37.0657
83.5305
97.0182
103.692
110.392
0.130645
1.28478
6.82949
13.6027
16.5327
17.3326
24.4322
45.6385
77.8871
82.5376
81.7005
80.6214
89.0184
95.1341
98.4917
102.306
104.951
103.426
107.1
111.122
102.505
83.7756
1.13157
0.610572
0.322063
0.173207
82.4781
97.1645
103.834
110.121
0.133353
0.128597
0.1283
0.124847
0.121332
0.114174
0.116417
0.167963
0.170636
0.0210013
53.2897
78.6529
89.6589
96.176
99.2618
104.194
106.124
102.822
107.418
112.597
102.813
79.5394
1.08272
0.565531
0.325823
0.195799
77.2098
97.4064
103.998
109.706
0.148131
0.141139
0.133672
0.139966
0.125502
0.122936
0.114618
0.132384
0.137577
0.10649
0.0692621
2.68661
91.4647
97.5511
99.6302
105.748
107.202
103.226
108.068
113.812
104.462
79.7364
1.03214
0.532848
0.325044
0.193799
0.103112
97.8713
104.201
109.22
0.131305
0.130783
0.128356
0.126421
0.124793
0.60913
0.10641
0.117677
0.123138
0.0894504
0.0222648
0.141416
70.4234
98.5665
100.127
106.358
108.115
104.681
109.657
114.402
106.565
37.7917
0.996927
0.507621
0.320044
0.191853
0.1987
98.895
104.396
109.094
0.378934
0.122128
0.121527
0.120979
0.118818
0.161946
0.100651
0.103504
0.102023
0.0625368
-0.012184
0.0481753
-0.244042
98.6116
100.153
106.63
109.543
104.41
111.353
115.369
106.94
21.1234
0.964549
0.485869
0.312534
0.190008
0.184328
40.3546
104.516
109.331
92.7817
131.014
93.1201
-0.181935
-0.0225685
0.0200696
0.0190453
0.0947344
0.297086
72.9241
113.911
118.066
114.08
103.742
104.805
94.847
0.876786
0.23382
0.0829062
0.0225279
0.0458404
0.0932031
0.141521
0.166547
0.152885
0.137465
0.132267
0.123423
0.117763
0.117996
95.2152
103.857
0.0283251
-0.172704
-0.0203762
0.019047
0.0211896
0.101333
0.087532
45.119
122.149
117.035
114.292
104.857
103.741
98.0693
0.0880976
0.305263
0.0205863
0.0145196
0.0328282
0.0744609
0.127996
0.180612
0.142906
0.130554
0.120734
0.112382
0.106787
0.110945
96.9115
-0.245198
-0.156579
-0.160704
-0.0188415
0.0181326
0.0289449
0.0535231
-0.121111
15.2561
126.243
115.024
114.794
106.962
102.916
-0.488871
0.0983443
0.275225
0.0234398
0.0144788
0.0482662
0.0591203
0.114003
0.143765
0.134197
0.120465
0.108351
0.0985053
0.090103
0.0909206
99.5177
-0.834186
-0.122837
-0.146438
-0.017833
0.0172753
0.0253351
0.0396767
-0.270637
3.50083
114.009
114.456
115.532
109.895
105.816
-0.112843
0.0466236
0.16934
0.0294568
0.0159718
0.032793
0.0503555
0.10091
0.123558
0.121218
0.107192
0.0941394
0.0835476
0.0724626
0.0358014
105.574
0.0760743
-0.108264
-0.130986
-0.0171423
0.0164531
0.0242921
0.0818848
-0.320167
3.01764
118.411
119.448
115.846
113.356
27.8246
-0.0749384
0.053363
0.0824274
0.0345242
0.0181344
0.0247544
0.0477866
0.0925746
0.107325
0.103481
0.0911692
0.0788404
0.0694658
0.062801
0.130481
0.190293
0.0564057
-0.0944085
-0.115446
-0.0166299
0.0156038
0.0281346
0.0718039
-0.357697
1.04425
113.519
122.129
117.843
115.779
0.0844138
-0.0287044
0.0308117
0.0731975
0.0376732
0.051339
0.0244497
0.0491585
0.0863797
0.0839832
0.0854604
0.0738854
0.0635126
0.0637464
0.0546786
0.0561592
-0.00291943
0.00164347
-0.0830759
-0.100436
-0.016229
0.0146932
0.0280206
0.0618938
-0.276031
1.09591
87.9654
117.679
118.644
27.8646
0.128699
-0.0317016
0.0259986
0.0758456
0.0407085
0.0846419
0.0284187
0.195059
0.181241
0.0739696
0.0686012
0.0572804
0.0489881
0.0479679
0.0478869
0.0516765
-0.00848859
-0.00708017
-0.0743512
-0.0863115
-0.0158612
0.0138067
0.028348
0.0610765
-0.179237
0.828428
2.32105
109.919
113.85
-0.204603
0.0358929
-0.0197096
0.0270484
0.058905
0.285819
0.0268258
0.00390398
0.217441
0.0921354
0.0616878
0.0549428
0.0445671
0.0359779
0.0359021
0.0387717
0.0424778
-0.016126
-0.0149382
-0.0675015
-0.0735739
-0.0154143
0.013035
0.0291857
0.0547429
-0.055264
0.496914
-0.982266
57.3429
-0.209167
-0.0815807
0.0107071
-0.0306562
0.0257454
0.0647484
0.300892
0.0390235
0.0243017
0.037181
0.0548121
0.0555455
0.0447322
0.0355565
0.0272559
0.0264774
0.0286146
0.0339643
-0.00996221
-0.0307384
-0.061958
-0.0625658
-0.0148087
0.0123742
0.0294095
0.0553791
0.0425095
0.439243
-0.610899
-0.320754
-0.195853
-0.140058
0.0496075
-0.0585605
0.0294182
0.044024
0.0576662
0.0430463
0.0405568
0.0477069
0.069199
0.0507693
0.0392162
0.0282778
0.0221497
0.0225051
0.0389275
0.0294303
-0.0059154
-0.0281222
-0.0570631
-0.053413
-0.0140416
0.0117954
0.0297619
0.060213
0.0983601
0.213649
-0.415118
-0.351195
-0.157878
-0.0872847
0.00244489
-0.115236
0.0503705
0.056721
0.0611507
0.0565864
0.0556116
0.0614564
0.0590249
0.0489739
0.0378599
0.0269705
0.0203172
0.0194135
0.0394091
0.0263965
-0.00431718
-0.0179428
-0.0524262
-0.0459608
-0.0131768
0.0113255
0.0301036
0.0624507
0.102755
-0.0424434
-0.546189
-0.362231
-0.140044
-0.0776374
-0.0875525
-0.24729
0.0566407
0.06468
0.0642401
0.0622874
0.0610623
0.0623729
0.0636649
0.0494469
0.0393362
0.0294312
0.0360526
0.0212721
0.0225987
0.0265421
-0.00380168
-0.00977599
-0.0478582
-0.0399283
-0.0122313
0.0109808
0.0300973
0.0621813
0.108018
0.161709
-0.460328
-0.352887
0.397315
-0.0291512
-0.093005
2.77993
0.109626
0.10249
0.0680386
0.064179
0.0774193
0.0683781
0.0571028
0.0508797
0.0417624
0.03388
0.0287107
0.0269762
0.0280086
0.0307895
-0.00450952
0.000884237
-0.0432581
-0.0350097
-0.0111787
0.0107075
0.0298116
0.0727961
0.10205
0.120939
-0.330553
-0.334973
0.0277178
-0.0528897
-0.0758008
-0.00776178
0.099562
0.0654589
0.0698766
0.0773342
0.0710448
0.0692923
0.0637057
0.0617625
0.0416667
0.0375865
0.034447
0.0331533
0.0359964
0.03744
-0.00497628
0.00423882
-0.038627
-0.0308581
-0.0100545
0.010474
0.0292391
0.0663166
0.0894329
0.014293
-0.213159
-0.258704
-0.11507
-0.0590957
-0.0391906
-0.0315427
0.0233202
0.0564942
0.0676238
0.071191
0.0707217
0.0654589
0.0579872
0.0471683
0.0415705
0.0405686
0.0413227
0.0430224
0.0423916
0.0338704
-0.00584396
-0.0268878
-0.0340471
-0.0272335
-0.00889336
0.010248
0.0283614
0.0540627
0.0688475
-0.0362539
-0.133886
-0.14245
-0.0998572
-0.0673144
-0.0558399
-0.0116381
0.0352848
0.0473183
0.0661191
0.0613007
0.0613974
0.0605242
0.054998
0.0461077
0.041683
0.0417659
0.0435673
0.0544473
0.220934
0.471438
-0.0073889
0.00273952
-0.0297282
-0.0239946
-0.00771812
0.00996967
0.0271234
0.0505054
0.0500433
-0.0584388
-0.0146931
-0.0483232
-0.0934255
-0.0769286
-0.0602862
-0.0143178
0.026902
0.0368036
0.0484965
0.0497329
0.0513468
0.0517763
0.0492275
0.0460003
0.0408494
0.0396847
0.0357803
0.0244858
0.0104104
0.0657877
-0.00858569
-0.0168308
-0.0259189
-0.0210485
-0.00656682
0.00962427
0.0255086
0.0447406
0.0416962
-0.0331079
0.228054
0.000646386
-0.0798631
-0.0943159
-0.0701133
-0.0419149
0.00145443
0.0226415
0.0327935
0.0385035
0.040211
0.044927
0.0427617
0.0399026
0.0487407
0.0440625
0.0395114
0.0406887
0.0459586
0.0544548
-0.0103018
0.00222603
-0.0225445
-0.0183712
-0.00544955
0.00919955
0.0235056
0.0385237
0.0335618
0.00218516
0.0162737
-0.00802761
-0.0900199
-0.124594
-0.102799
-0.0550036
-0.0174855
0.00760808
0.0209357
0.028338
0.0604253
0.0948726
0.0330382
0.0344066
0.0362535
0.0378004
0.0399708
0.0435603
0.0473142
0.0509341
-0.0134081
-0.000569507
-0.0196344
-0.0159325
-0.00438234
0.00866352
0.0210932
0.0319338
0.0269819
0.00778134
0.0163885
-0.00916545
-0.113828
-0.157786
-0.143518
-0.0849953
-0.0286531
-0.00153499
0.0100583
0.0184771
0.022877
0.0230645
0.026506
0.0288286
0.031078
0.0334982
0.0362562
0.0392133
0.0421072
0.0448477
-0.0219542
0.00303299
-0.0173266
-0.0136947
-0.00340066
0.00799805
0.0183971
0.0259216
0.0221261
0.0126931
0.0144273
-0.00627933
-0.12668
-0.176381
-0.172848
-0.111831
-0.0494871
-0.0113933
0.00210032
0.00921096
0.0138786
0.0172972
0.0203029
0.0228868
0.0253834
0.02799
0.0306316
0.0331975
0.035637
0.0379005
-0.0423246
0.00446419
-0.0156429
-0.0116228
-0.00252713
0.0071952
0.015422
0.0202047
0.0182897
0.0191351
-0.0079021
0.762786
-0.122556
-0.169053
-0.17011
-0.116101
-0.0523845
-0.0162649
0.00101263
0.00219221
0.00546606
0.00836701
0.0112736
0.0141216
0.0168406
0.0194845
0.0220081
0.0243126
0.026423
0.028325
-0.0710098
-0.0487233
-0.014062
-0.00966619
-0.00177901
0.006245
0.0125262
0.0142461
0.0144192
0.00333353
-0.0175325
-0.0516726
-0.0908141
-0.134075
-0.125934
-0.0849998
-0.0331093
-0.0127275
0.00103761
-0.00338153
-0.00403296
-0.00384849
-0.00265469
-0.000483877
0.00208045
0.00464456
0.00693405
0.0088603
0.0104466
0.0116371
-0.0327243
-0.024814
-0.012114
-0.00779496
-0.00116713
0.00515391
0.0088734
0.00819135
0.0575782
-0.0130784
-0.0346379
-0.0503718
-0.0773782
-0.0939635
-0.082957
-0.054878
0.198649
-0.0106152
-0.00514144
0.0115124
-0.0169871
-0.0211249
-0.0214204
-0.0244555
-0.0189167
-0.0203776
-0.0183865
-0.0167101
-0.0155123
-0.0148449
-0.0103822
-0.013547
-0.00973098
-0.00603382
-0.000694517
0.00394688
0.00530379
0.000467571
0.0412405
-0.0476611
-0.0578701
-0.0577893
-0.0632388
-0.0389202
-0.0392021
-0.0401454
-0.0204791
-0.0139564
-0.0201602
-0.026363
-0.0340584
-0.0368212
-0.0430844
-0.0518236
-0.0499189
-0.0514397
-0.0518067
-0.0498293
-0.0482078
-0.0472353
-0.000702902
-0.00778382
-0.0071719
-0.00443832
-0.000348302
0.00270698
0.00185136
-0.0026999
0.0180659
-0.115661
-0.10121
-0.0605738
-0.0510834
-0.0481227
-0.0448323
-0.035696
-0.0277141
-0.0262597
0.0160288
-0.0376657
-0.0492692
-0.0623764
-0.0705938
-0.0732415
-0.0769613
-0.0761333
-0.0446485
-0.0703705
-0.0700372
-0.0700141
0.00220511
-0.00459195
-0.00494164
-0.00304537
-0.000102808
0.00160261
-0.000833867
-0.0122568
-0.00631387
-0.164378
-0.112358
-0.0607691
-0.0418244
-0.0355969
0.00999172
-0.0269915
-0.0278842
-0.0287193
-0.0293689
-0.0410747
-0.0591845
-0.0485214
-0.0674208
-0.0706268
-0.0723835
-0.072178
-0.0452167
-0.0683063
-0.0782995
-0.07923
0.00237682
-0.00259256
-0.0030865
-0.00186592
6.30583e-05
0.000803048
-0.00226784
-0.0135716
-0.0256957
-0.112339
-0.0802446
-0.0539415
-0.0356941
-0.0280289
-0.0254417
-0.022367
-0.0217859
-0.0285892
-0.0365194
-0.0403129
-0.0422928
-0.0526696
-0.0394738
0.0857847
-0.0440921
-0.0727097
-0.0704142
-0.0660566
-0.0685464
-0.0676614
0.0016499
-0.00120401
-0.00153465
-0.000889235
0.000140897
0.000374314
-0.00196784
-0.00998234
-0.0101346
-0.0181712
-0.0575421
-0.0445732
-0.0338198
-0.0256852
-0.020434
-0.0175136
-0.0165033
-0.0216732
-0.0240668
-0.000321429
-0.024142
-0.0266962
-0.0305602
-0.0358722
0.00460531
-0.000661732
-0.0306262
-0.0316239
-0.0337433
-0.0332341
0.000764471
-0.000360301
-0.000487044
-0.000261385
9.99214e-05
0.000187197
-0.000658472
-0.00348657
-0.00809528
-0.0131307
-0.0343901
-0.0430201
-0.036062
-0.0264955
-0.018836
-0.0136966
-0.0110378
-0.00834576
-0.0152782
-0.0194286
-0.0200302
-0.0146484
-0.0130312
-0.0128887
-0.0116822
-0.010513
-0.00861444
-0.00778801
-0.0105052
-0.0105198
0.193573
0.120393
0.116073
0.116148
0.114327
0.108084
0.0968626
0.0960393
0.0913861
0.0518527
-0.0225717
0.0243233
-0.00106072
-1.98715
99.232
106.908
109.757
102.709
112.099
116.365
111.331
7.70589
0.940104
0.473435
0.307461
0.188755
0.171858
0.131722
104.641
109.103
0.123993
0.116652
0.112797
0.11198
0.110081
0.100563
0.0925373
0.0894583
0.0827948
0.0458248
-0.0229377
0.0134269
0.0324745
0.102844
91.5316
106.75
109.97
103.145
112.255
117.236
112.05
13.9723
0.905641
0.46103
0.301989
0.187451
0.160099
0.129485
58.3398
108.549
0.125371
0.113574
0.109861
0.177868
0.106093
0.0927012
0.087335
0.0830242
0.0754583
0.0433734
-0.0178993
0.00773381
0.00323639
0.12194
0.349247
106.057
110.131
104.25
112.675
117.968
114.228
4.48853
0.84418
0.447142
0.295615
0.18594
0.148299
0.118134
0.0133248
107.801
2.45545
0.107064
0.101586
0.158313
0.168612
0.0848767
0.0823396
0.0769653
0.0695626
0.044878
-0.00374045
0.0103604
0.0208621
0.295535
0.232051
39.4424
110.584
104.857
115.555
118.885
119.216
-2.15958
0.754867
0.432653
0.288421
0.184052
0.137392
0.10763
0.00962934
91.2221
6.83491
0.0883031
0.0880332
0.0883304
0.0757744
0.0858221
0.0784865
0.0712227
0.0652205
0.0463775
0.015146
0.0174104
0.0287448
0.0827809
0.156382
-0.728834
110.239
105.748
116.22
119.418
118.682
-1.77097
0.654218
0.413334
0.280484
0.181608
0.127877
0.0974717
0.00166603
0.237034
0.0669403
0.0597009
0.0732386
0.0762921
0.0730555
0.0913214
0.0801422
0.065673
0.0623832
0.0491268
0.0279519
0.0225565
0.0252121
0.0825032
0.0573903
-0.462296
-0.286103
98.3354
115.083
123.602
60.59
-1.55206
0.546909
0.39261
0.271751
0.178606
0.119898
0.0878735
0.000996097
0.22226
0.0546279
0.0577435
0.0635968
0.0670337
0.0651384
0.08
0.0846604
0.0626613
0.0607227
0.0501047
0.039017
0.030195
0.0378173
0.0485522
-0.0274121
-0.449445
-0.283822
-0.316747
120.782
124.851
-1.00578
-1.3909
0.43922
0.369121
0.262052
0.175003
0.113105
0.0792349
0.00343307
0.178364
0.0464771
0.050789
0.0562734
0.0610102
0.0694773
1.97637
0.0587411
0.0597553
0.0673727
0.0470411
0.0439281
0.0357476
0.0104871
-0.00134076
-0.256053
-0.523818
-0.272677
-0.318401
-0.359543
20.7203
-0.79932
-1.25478
0.345142
0.343026
0.251284
0.170735
0.107506
0.0718351
0.00689034
0.147776
0.0386156
0.0434496
0.0490476
0.0533339
0.0528947
1.90767
0.0519747
0.0526602
0.0519734
0.0435041
0.045007
0.0608449
0.0139369
-0.0228271
-0.125055
-0.655674
-0.0334753
-0.314558
-0.360979
-0.503614
-0.729336
-1.24
0.268382
0.314637
0.239404
0.165817
0.10279
0.0654655
0.0105038
0.121491
0.0332672
0.0379796
0.0428496
0.0454969
0.045221
0.0510978
0.0513215
0.0493762
0.044969
0.0413407
0.0467514
0.0346074
0.00318665
-0.0224859
-0.0354537
-0.289143
-0.00971793
-0.296908
-0.34936
-0.494926
-0.443194
-1.04858
0.197213
0.283889
0.226378
0.160265
0.0987095
0.0600712
0.0138976
0.0976267
0.0306857
0.0356284
0.0412882
0.0470679
0.0579157
0.0507836
0.0499318
0.0466215
0.0418423
0.0377223
0.0722016
0.0318795
0.00331368
-0.0239707
-0.0876399
-0.2538
-0.196095
-0.291339
-0.353553
-0.481888
-0.629533
-0.876429
0.135368
0.251484
0.212213
0.154056
0.0950913
0.0556411
0.0169159
0.0800333
0.0311535
0.0364046
0.0423622
0.0481276
0.0548618
0.0514034
0.0501357
0.0452569
0.0408916
0.0370297
0.0267322
0.0264322
0.00201098
-0.0181005
-0.046115
-0.191034
-0.222301
-0.284585
-0.387997
-0.476216
-0.530513
-0.637253
0.0773423
0.2181
0.196987
0.147161
0.0917937
0.0522713
0.0194512
0.0652376
0.0351673
0.0399726
0.0458196
0.0520023
0.0554847
0.0560292
0.0548448
0.0672661
0.0436343
0.0397617
0.0280767
0.020337
0.000976206
-0.0210527
-0.055561
-0.133343
-0.178367
-0.261753
-0.404065
-0.451587
-0.505436
-0.533574
0.0259661
0.18463
0.180829
0.139571
0.088649
0.0499338
0.0216095
0.0531502
0.0406733
0.0448611
0.0589431
0.0595765
0.0634763
0.0612181
0.0597804
0.0656749
0.0445834
0.0377446
0.0283745
0.0163448
0.0207232
-0.024791
-0.0613176
-0.142252
-0.218527
-0.256029
-0.452318
-0.446072
-0.305444
-0.433385
-0.017545
0.152233
0.16397
0.13132
0.0854938
0.0484253
0.0234891
0.043464
0.0379488
0.0507658
0.0605902
0.0670382
0.0663229
0.060837
0.0563511
0.0456066
0.0458278
0.0409024
0.0310046
0.0271335
0.0158722
-0.0223203
-0.0677118
-0.145493
-0.209882
-0.232373
-0.0854228
-0.453591
-0.152251
-0.332372
-0.0482911
0.12222
0.146735
0.122462
0.082194
0.0474831
0.0251909
0.0359609
0.101341
0.0685735
0.0715602
0.0705056
0.0615997
0.0775605
0.0568775
0.773722
0.0566232
0.0508361
0.0331285
0.016471
0.0275238
-0.0286696
-0.0695267
-0.15494
-0.214133
-0.247795
-0.278902
-0.392735
-0.29142
-0.287611
-0.0584119
0.0955694
0.129458
0.113075
0.0786004
0.0468557
0.0267815
0.0303537
0.0715657
0.0722458
0.0749755
0.0939949
0.428103
0.0719682
0.0698601
0.0840978
0.0659953
0.058773
0.0387729
0.018283
-0.00476701
-0.0253809
-0.0245542
-0.157153
-0.215356
-0.274946
-0.242573
-0.331611
0.674816
-0.020402
-0.0623964
0.0729367
0.11251
0.103284
0.0745954
0.0462763
0.0280701
0.0262208
0.0608066
0.0642348
0.0661906
0.0737943
0.0702688
0.0722604
0.0982432
0.0769016
0.074003
0.0614219
0.0444709
0.0203915
-0.0107757
0.0343553
-0.0796889
-0.151426
-0.208235
-0.257982
0.612158
-0.306538
0.526653
-0.151324
-0.0556485
0.0544282
0.0962553
0.0932167
0.0701329
0.0454482
0.0288897
0.023144
0.0541968
0.0574215
0.0612224
0.0667897
0.0702942
0.0762156
0.0832872
0.0769349
0.071905
0.0625837
0.0458568
0.0189951
-0.0170673
-0.054714
-0.0917107
-0.150566
-0.206832
-0.208471
0.874546
-0.209861
0.150826
-0.142655
-0.048092
0.0396814
0.0810022
0.0830411
0.0652053
0.0441185
0.029179
0.0207531
0.047508
0.0503105
0.0534922
0.0607513
0.0624445
0.0676903
0.0711877
0.0703308
0.0654459
0.0551396
0.035982
0.00492681
-0.0355911
-0.076318
-0.115662
-0.159474
-0.191146
-0.191639
-0.120206
0.551756
-0.132315
-0.119292
-0.0418512
0.0280982
0.0669801
0.0729358
0.0598531
0.0421611
0.0288399
0.0187442
0.0400378
0.0422366
0.0445644
0.0468563
0.0486739
0.049464
0.0509307
0.0498201
0.0443915
0.0318899
0.0327768
-0.0338119
-0.0779638
-0.121077
-0.155204
-0.177772
-0.185154
-0.180821
-0.162507
0.647046
-0.0756641
-0.0873784
-0.0369015
0.0189786
0.0543428
0.0630645
0.0541635
0.0396046
0.0277775
0.0169113
0.0300087
0.0316042
0.0330078
0.0338712
0.0334741
0.0473821
0.0976453
0.0192943
0.00541691
-0.0188866
-0.0359602
-0.103928
-0.155493
-0.198818
-0.217035
-0.207719
-0.184488
-0.153273
-0.136838
0.366778
-0.0912994
-0.0635564
-0.0336001
0.0116198
0.0431389
0.0535916
0.0482241
0.0365448
0.0260158
0.0151439
0.0123784
0.0127206
0.0123453
0.0104367
0.00597377
-0.000622067
-0.010202
-0.0249547
-0.0490932
-0.0881046
-0.111538
-0.216483
-0.195151
-0.236491
-0.322241
-0.24137
-0.191887
-0.136839
-0.0981921
0.00344137
-0.0732921
-0.055975
-0.0329342
0.00556209
0.0333655
0.0446543
0.042132
0.033057
0.0237405
0.0133961
-0.0147235
-0.0151413
-0.0164444
-0.0192473
-0.0243756
-0.0329245
-0.0454706
-0.0632925
-0.0979515
-0.148806
-0.219507
-0.307975
-0.320583
-0.451374
-0.440625
-0.333283
-0.183178
-0.116844
-0.0615164
0.0267493
-0.0622233
-0.0680842
-0.0348266
0.000649583
0.0250058
0.0363592
0.035985
0.0291918
0.021119
0.0116494
-0.0469066
-0.0472429
-0.0485961
-0.0514469
-0.0564919
-0.0648724
-0.078419
-0.0997341
-0.131305
-0.178803
-0.245977
-0.332981
-0.423218
-0.498405
-0.495327
-0.374147
-0.208347
-0.0923541
-0.0263893
0.0177452
2.98337
-0.0892475
-0.0119001
-0.003008
0.0180323
0.0287941
0.0298674
0.0250041
0.0182286
0.00988941
-0.0704467
-0.071306
-0.072788
-0.0753656
-0.0798194
-0.0866757
-0.0973115
-0.113798
-0.139252
-0.176128
-0.224127
-0.28924
-0.358966
-0.379402
-0.38794
-0.317088
-0.164315
-0.0592605
-0.00407703
0.0398175
0.357523
-0.0531893
-0.0101434
-0.00552783
0.0124335
0.0219915
0.0238511
0.0205504
0.0151034
0.00810131
-0.0802871
-0.0816501
-0.083482
-0.0858281
-0.0889187
-0.0933343
-0.10076
-0.111727
-0.127234
-0.1475
-0.173187
-0.198769
-0.236765
-0.248247
-0.236945
-0.170087
-0.0851703
-0.0262416
0.00111021
0.00739929
0.0522772
-0.0298023
-0.0248019
-0.00476149
0.0081948
0.0159319
0.0179706
0.0158715
0.0117579
0.00626591
-0.0643046
-0.0560778
0.0105066
-0.0694234
-0.0762208
-0.0798453
-0.0849604
-0.0882517
-0.0966768
-0.0981073
-0.0218678
-0.0969389
0.0208981
-0.00221105
-0.084009
-0.0516175
-0.0211679
-0.00265337
0.00317192
7.34268e-05
-0.00941072
0.0230015
-0.0167574
-0.003178
0.00516202
0.0105104
0.0122056
0.0109867
0.00819417
0.00435891
-0.0334673
-0.0302896
0.019421
-0.0252589
-0.0542176
-0.0484862
-0.0534113
-0.038445
-0.0507964
0.0956296
-0.0442811
-0.0372386
-0.0261843
-0.0238152
0.0713792
0.00418889
0.0303245
0.00874893
0.00544711
-9.52433e-06
-0.00389129
-0.00777928
-0.00716651
-0.00102777
0.0027868
0.00549583
0.00646526
0.0058741
0.0043965
0.00235118
-0.00938234
-0.0145867
-0.0164609
-0.0163393
-0.0181104
-0.0242286
-0.0301512
-0.00399278
0.00350867
-0.0244445
-0.0152299
-0.0125178
0.0170386
-0.000126319
0.00539157
0.00387524
0.00486065
0.00623784
0.00325462
9.05143e-05
-0.00198255
-0.00265841
-0.00195479
6.00383e-05
0.000873171
0.00177071
0.00204021
0.0018202
0.00135082
0.000746754
93.4747
89.3126
88.3292
87.1993
85.2808
83.7349
83.3342
85.0411
88.8931
92.9721
95.7637
97.0922
97.3446
96.9651
96.2887
95.5214
94.7756
94.1039
93.5264
93.0453
92.654
92.3421
92.0983
91.912
91.7736
91.6746
91.6076
91.5659
91.5441
91.5373
93.5383
89.2876
88.3291
87.2067
85.2778
83.7212
83.292
84.976
88.8688
93.0012
95.8154
97.1413
97.3817
96.9894
96.3011
95.5232
94.7678
94.0881
93.504
93.018
92.6231
92.3086
92.063
91.8754
91.7361
91.6366
91.5692
91.5275
91.5057
91.499
93.651
89.2489
88.3301
87.2199
85.2712
83.6952
83.2153
84.8523
88.8072
93.0311
95.8926
97.2235
97.4489
97.0373
96.3305
95.5347
94.7622
94.0671
93.4706
92.975
92.573
92.2535
92.0044
91.8144
91.6736
91.5732
91.5056
91.4638
91.442
91.4355
93.8128
89.1966
88.3324
87.2388
85.2609
83.6574
83.1057
84.6728
88.7158
93.0687
95.9958
97.3368
97.5449
97.1093
96.3776
95.5567
94.7596
94.0425
93.4278
92.9183
92.5059
92.1789
91.9245
91.731
91.588
91.4864
91.4181
91.3762
91.3545
91.3481
94.012
89.1305
88.3366
87.2636
85.2468
83.6083
82.9632
84.4335
88.5938
93.1169
96.1275
97.4809
97.6672
97.201
96.4378
95.5853
94.7573
94.0122
93.3746
92.8474
92.4217
92.085
91.8236
91.6252
91.4789
91.3752
91.3057
91.2632
91.2414
91.2351
94.2582
89.0505
88.3436
87.2947
85.2285
83.5487
82.7882
84.1281
88.4383
93.1768
96.2895
97.6567
97.8146
97.3096
96.5078
95.6178
94.7534
93.9752
93.3101
92.7616
92.32
91.9714
91.7012
91.4965
91.3455
91.2385
91.1667
91.1228
91.1004
91.0942
94.563
88.9561
88.3544
87.3326
85.2061
83.4797
82.5814
83.7488
88.2458
93.2492
96.4837
97.8657
97.9869
97.4339
96.5867
95.6535
94.7472
93.9304
93.2333
92.6599
92.1997
91.8371
91.5565
91.3439
91.1868
91.0751
90.9998
90.9537
90.9303
90.924
94.9429
88.8474
88.37
87.3779
85.1793
83.4025
82.3443
83.2853
88.012
93.3358
96.7126
98.1098
98.1846
97.5736
96.6737
95.692
94.7382
93.8768
93.1426
92.541
92.0596
91.6811
91.3884
91.1664
91.002
90.8844
90.8044
90.755
90.7299
90.7235
95.3914
88.7243
88.3919
87.4313
85.1478
83.3186
82.0789
82.7238
87.7319
93.4386
96.9785
98.3908
98.408
97.728
96.7681
95.7326
94.7256
93.8129
93.0363
92.403
91.898
91.5017
91.1953
90.9629
90.7902
90.6658
90.5803
90.5264
90.4984
90.4913
95.88
88.5873
88.4215
87.4936
85.1111
83.2296
81.7889
82.0464
87.3997
93.5597
97.2846
98.7113
98.6578
97.8965
96.869
95.7746
94.7084
93.7368
92.9121
92.2437
91.7129
91.2969
90.9755
90.7317
90.5503
90.419
90.3275
90.268
90.2348
90.2246
96.4328
88.4368
88.4607
87.5658
85.0689
83.1374
81.4792
81.2293
87.0093
93.7018
97.6343
99.0742
98.9346
98.0778
96.975
95.8169
94.6856
93.6462
92.767
92.0605
91.5019
91.0646
90.7268
90.4707
90.2806
90.1428
90.0459
89.9806
89.94
89.9194
97.0686
88.2731
88.5114
87.6491
85.0203
83.0441
81.157
80.2393
86.5543
93.8676
98.0316
99.4831
99.2392
98.2705
97.0841
95.8582
94.6563
93.5379
92.5974
91.8506
91.2625
90.802
90.4462
90.177
89.9782
89.8349
89.7338
89.6638
89.6171
89.5906
97.8063
88.0968
88.576
87.7448
84.9647
82.9514
80.8321
79.029
86.0293
94.0598
98.4809
99.9423
99.5724
98.4727
97.1941
95.8968
94.6192
93.408
92.3991
91.6106
90.9919
90.5063
90.1302
89.8464
89.6384
89.4907
89.3879
89.3166
89.2659
89.257
98.6679
87.9083
88.657
87.8546
84.9009
82.8612
80.5172
77.5248
85.4333
94.2809
98.987
100.457
99.9356
98.6818
97.3019
95.9301
94.5726
93.2506
92.167
91.3368
90.6869
90.1741
89.7745
89.4733
89.255
89.1028
89
88.9315
88.8863
88.8658
99.68
87.7091
88.7569
87.9805
84.8278
82.7745
80.2316
75.6389
84.7743
94.5325
99.5548
101.033
100.33
98.8943
97.4036
95.9544
94.5131
93.0572
91.8956
91.0251
90.3447
89.8018
89.374
89.0512
88.8195
88.6613
88.5579
88.4931
88.4545
88.4344
100.875
87.5017
88.8777
88.1252
84.7441
82.6913
79.9977
73.3331
84.0639
94.8163
100.189
101.677
100.758
99.1054
97.4941
95.9649
94.4302
92.8119
91.58
90.6703
89.962
89.3863
88.923
88.5721
88.3234
88.1571
88.0526
87.9919
87.9615
87.952
102.292
87.2894
89.0212
88.2914
84.6484
82.6097
79.8347
70.501
83.3005
95.1383
100.896
102.397
101.223
99.3082
97.5655
95.9568
94.2924
92.4733
91.2129
90.2653
89.5369
88.9256
88.4154
88.0265
87.7564
87.5818
87.4783
87.4261
87.4091
87.4152
103.978
87.0779
89.1883
88.4824
84.5391
82.5264
79.7964
66.9306
82.5098
95.5046
101.679
103.202
101.727
99.4919
97.6027
95.9261
94.0188
92.002
90.778
89.8
89.0688
88.4205
87.8444
87.4016
87.1057
86.9257
86.8307
86.7977
86.8059
86.838
105.993
86.8761
89.3797
88.7014
84.4148
82.4325
79.9857
62.4961
81.7821
95.8907
102.546
104.1
102.275
99.6401
97.5865
95.8693
93.5179
91.5196
90.2532
89.2593
88.5607
87.879
87.2042
86.6791
86.3535
86.1791
86.1093
86.1146
86.1664
86.2398
108.41
86.699
89.5953
88.9512
84.2756
82.3072
80.5277
57.2521
81.257
96.2366
103.503
105.099
102.872
99.7263
97.5958
95.7866
92.8603
91.1134
89.616
88.6173
88.0234
87.3237
86.4958
85.838
85.4752
85.3258
85.3053
85.3742
85.4935
85.6288
111.32
86.5715
89.8341
89.2317
84.1308
82.119
81.5275
52.6528
81.5749
96.4857
104.553
106.202
103.521
99.7063
97.7774
95.6704
92.2612
90.7171
88.8496
87.836
87.4893
86.7878
85.7243
84.8683
84.4436
84.3294
84.386
84.5531
84.777
85.0093
114.836
86.534
90.0947
89.537
83.9853
81.8147
82.941
1.89177
83.4431
96.6113
105.696
107.408
104.219
99.4882
98.0402
95.5464
91.9014
90.3356
87.9172
86.8364
86.9947
86.2758
84.8479
83.7342
83.2131
83.1337
83.302
83.6176
84.0029
84.388
119.098
86.6503
90.3752
89.8429
84.3715
81.2683
83.0043
0.959132
90.0419
96.4226
106.938
108.705
104.948
98.8682
98.4819
95.531
91.8409
90.0324
86.6907
84.9823
86.3237
85.7471
83.7935
82.328
81.6957
81.6812
82.0029
82.5237
83.1489
83.7683
124.274
87.0185
90.6734
90.2747
84.1773
80.4603
1.70649
0.65963
87.9314
95.5935
108.308
110.071
105.635
97.5615
99.2752
95.6977
92.0574
89.884
84.8292
81.0123
85.0409
85.2125
82.5226
80.5536
79.7759
79.9196
80.4277
81.1931
82.1885
83.162
130.555
87.7856
90.9827
90.9452
84.4497
19.9962
-0.0136288
0.44696
-11.8388
94.5163
109.864
111.473
106.057
94.3202
99.8618
95.9915
92.4669
89.996
83.0291
75.9373
84.0149
84.62
80.5731
78.3729
77.1914
77.8084
78.5195
79.3741
81.1563
82.6278
138.154
89.1621
91.284
91.9908
78.4588
0.00574956
0.0418242
0.382595
4.62364
94.3869
111.636
112.849
106.061
92.1242
100.775
96.2516
92.9032
90.5874
83.5503
73.5733
84.6596
84.0401
31.8235
0.311218
0.152263
0.162088
0.156675
0.150906
0.136246
0.125087
147.27
91.4205
91.5329
93.683
-0.00102083
0.0209254
0.0598362
0.376205
3.393
95.3779
113.737
114.131
106.521
93.2842
102.071
96.3211
93.1928
91.6163
86.8284
55.6615
0.129224
0.168195
0.17552
0.177344
0.161356
0.158734
0.155272
0.147749
0.139709
0.132634
158.002
94.8258
91.5869
90.1978
0.0291495
0.0240202
0.0631166
0.340356
0.985371
96.9062
115.317
115.261
107.335
97.5399
103
96.1572
93.2843
92.4102
16.0301
0.105302
0.145232
0.161155
0.169957
0.170072
0.162166
0.157882
0.173068
0.145433
0.137958
0.146132
170.199
99.4338
90.8772
-0.00721724
0.0222108
0.0234039
0.0638401
0.284304
1.05555
97.4042
118.613
116.319
107.247
102.685
102.42
95.3194
93.8557
13.3807
0.0365444
0.0897337
0.128912
0.154301
0.167651
0.168112
0.15814
0.167097
0.147339
0.13896
0.132265
0.129982
189.145
105.263
2.49701
0.0105887
0.0172707
0.0224104
0.0661068
0.216673
0.677584
100.485
118.126
117.381
105.452
106.78
101.066
92.1307
36.7285
0.177224
0.0300762
0.0516102
0.087985
0.136367
0.161026
0.166748
0.153038
0.160918
0.137794
0.127915
0.123715
0.136757
91.5423
91.56
91.5944
91.6502
91.7333
91.8504
92.0099
92.2214
92.4962
92.8463
93.2824
93.81
94.4238
95.0994
95.7851
96.3923
96.7778
96.7108
95.8586
93.8454
90.4657
86.2722
83.0701
82.3111
83.7865
87.3311
92.8734
99.3183
105.45
109.656
91.5041
91.5219
91.5565
91.6126
91.6959
91.8133
91.9735
92.1862
92.463
92.8164
93.2573
93.7915
94.4138
95.0993
95.7955
96.4131
96.809
96.752
95.9059
93.8867
90.4735
86.2253
83.0024
82.2705
83.7594
87.3096
92.8654
99.3176
105.456
109.677
91.4407
91.4587
91.4933
91.5494
91.6329
91.7509
91.9121
92.1271
92.4079
92.7675
93.2174
93.764
94.4024
95.1073
95.8237
96.4596
96.8704
96.8245
95.9816
93.942
90.4649
86.1244
82.8775
82.1982
83.7103
87.2711
92.8527
99.319
105.472
109.722
91.3535
91.3716
91.4063
91.4624
91.546
91.6646
91.8275
92.0459
92.3328
92.7014
93.1644
93.7292
94.3915
95.1251
95.8714
96.5333
96.9625
96.927
96.0838
94.0135
90.4468
85.976
82.6985
82.096
83.6393
87.2151
92.8349
99.3222
105.496
109.79
91.2407
91.2591
91.2941
91.3505
91.4345
91.5541
91.7194
91.9425
92.2372
92.618
93.0981
93.6863
94.3796
95.1504
95.9346
96.6287
97.0802
97.0572
96.2132
94.1039
90.4213
85.7773
82.4623
81.9644
83.5464
87.1413
92.8123
99.3271
105.528
109.882
91.1002
91.1192
91.1549
91.2121
91.297
91.4183
91.587
91.8162
92.1208
92.5165
93.0176
93.6346
94.3658
95.1818
96.0109
96.7422
97.2206
97.2142
96.3711
94.2153
90.3883
85.5225
82.1647
81.8045
83.4316
87.0494
92.7851
99.3337
105.57
109.997
90.9306
90.9506
90.9875
91.0458
91.1323
91.2559
91.4289
91.6658
91.9826
92.396
92.9219
93.5727
94.3492
95.2193
96.1001
96.8729
97.3827
97.398
96.5589
94.3495
90.3479
85.2045
81.8003
81.618
83.2951
86.9388
92.7537
99.3419
105.619
110.137
90.731
90.7524
90.7905
90.8503
90.9387
91.0653
91.2437
91.4897
91.8209
92.255
92.8094
93.499
94.3284
95.2629
96.2023
97.0207
97.5663
97.6089
96.778
94.5091
90.3007
84.8141
81.3623
81.4071
83.1368
86.8089
92.7187
99.3516
105.676
110.3
90.5003
90.523
90.5616
90.6233
90.7142
90.8446
91.0295
91.2864
91.6342
92.0921
92.6784
93.4114
94.3021
95.3128
96.3179
97.1852
97.7711
97.8471
97.0303
94.6971
90.2474
84.3391
80.8418
81.1749
82.9566
86.659
92.681
99.3626
105.74
110.488
90.2364
90.261
90.2954
90.3614
90.4566
90.5917
90.7842
91.0537
91.4208
91.9054
92.5271
93.3073
94.2677
95.3694
96.4467
97.3655
97.9967
98.1132
97.3185
94.9173
90.1893
83.7642
80.2277
80.9253
82.754
86.4884
92.6415
99.3747
105.809
110.701
89.9272
90.1358
89.9749
90.0627
90.1641
90.3048
90.5059
90.79
91.1789
91.6934
92.3535
93.1837
94.222
95.4338
96.5878
97.5601
98.2426
98.4074
97.645
95.1741
90.1285
83.0696
79.5051
80.6635
82.5284
86.2958
92.6017
99.3876
105.883
110.939
89.5833
89.641
89.6541
89.729
89.8359
89.9823
90.1924
90.4929
90.9069
91.4546
92.1559
93.037
94.1593
95.5075
96.7389
97.7666
98.5079
98.7301
98.0132
95.473
90.0681
82.23
78.6537
80.3967
82.2784
86.0802
92.5637
99.401
105.96
111.204
89.2349
89.2497
89.2846
89.3575
89.4679
89.6198
89.8407
90.1608
90.6031
91.1875
91.9328
92.8637
94.0696
95.5927
96.894
97.9816
98.7921
99.0818
98.4276
95.8205
90.0122
81.2134
77.6445
80.1355
82.0019
85.8402
92.53
99.4144
106.037
111.494
88.8407
88.8534
88.8855
88.9499
89.0533
89.2107
89.4481
89.7922
90.2662
90.8906
91.6831
92.6617
93.9314
95.6888
97.041
98.2007
99.0944
99.4626
98.8921
96.2247
89.9666
79.9802
76.4346
79.8965
81.6957
85.5741
92.5044
99.4272
106.112
111.811
88.4273
88.4382
88.4688
88.5138
88.5848
88.7519
89.0142
89.3866
89.8948
90.5623
91.4053
92.4311
93.6901
95.7785
97.1557
98.4191
99.4149
99.8728
99.4117
96.695
89.9389
78.4847
74.9752
79.7067
81.3547
85.28
92.4916
99.4385
106.186
112.154
87.9581
87.982
88.0296
88.0769
88.0223
88.2482
88.5435
88.9437
89.4871
90.2
91.0966
92.1743
93.2392
95.7671
97.1974
98.6333
99.7541
100.312
99.9925
97.2433
89.9405
76.6801
73.2665
79.5975
80.9717
84.9556
92.4984
99.4475
106.266
112.522
87.4376
87.4772
87.5332
93.9319
87.3559
87.7343
88.0414
88.4604
89.039
89.8005
90.7517
91.8918
92.7139
95.3787
97.1117
98.844
100.114
100.779
100.641
97.8846
89.9877
74.5326
71.3525
79.5915
80.5364
84.5978
92.5334
99.4528
106.343
112.914
86.885
86.9482
87.0409
87.1332
87.0312
87.2237
87.5018
87.9276
88.5445
89.3591
90.3623
91.5815
92.5253
94.3873
96.8692
99.0602
100.497
101.27
101.365
98.6334
90.1031
72.0746
69.1707
79.7562
80.035
84.2021
92.6052
99.4532
106.413
113.328
86.3226
86.4131
86.5061
86.5777
86.5847
86.6818
86.9046
87.3297
87.9953
88.8714
89.9175
91.2091
92.494
93.0628
96.5515
99.3021
100.907
101.781
102.173
99.4995
90.3185
69.5434
66.8348
80.1723
79.4446
83.7624
92.7195
99.4473
106.472
113.76
85.7642
85.8943
85.9985
86.0479
86.0452
86.0891
86.2134
86.6461
87.3821
88.3342
89.4036
90.7396
92.4262
92.0599
96.381
99.5988
101.349
102.302
103.071
100.517
90.6778
67.7078
64.5771
80.9502
78.7378
83.2733
92.8778
99.4336
106.512
114.202
85.2293
85.4266
85.5607
85.5791
85.4842
85.4878
85.4478
85.843
86.6851
87.7397
88.7951
90.1742
92.2825
91.923
96.5848
99.9772
101.828
102.814
104.068
101.71
91.2299
68.1339
62.5506
82.1855
77.8796
82.7486
93.0774
99.4099
106.526
114.645
84.7458
85.0607
85.2617
85.2439
84.9724
84.5711
84.5033
84.8407
85.8483
87.0477
88.023
89.4829
92.1364
92.6696
97.1919
100.447
102.349
103.286
105.166
103.087
92.0151
76.5628
55.2173
83.8746
76.8319
82.2539
93.3097
99.3726
106.506
115.075
84.342
84.8553
85.1899
85.1226
84.5337
83.7187
83.2395
83.536
84.8183
86.2042
86.8642
88.5939
92.0642
93.7848
97.9996
101.012
102.921
103.665
106.364
104.64
92.9568
46.212
0.975469
85.591
75.6708
81.8912
93.5582
99.3164
106.437
115.467
84.0541
84.8888
85.5115
85.4009
84.1727
82.5657
81.5728
81.8198
83.6781
85.2158
84.6814
87.3774
92.0985
94.9038
98.7635
101.71
103.569
103.861
107.649
106.368
93.9553
26.9596
1.06503
75.7744
74.7499
81.9161
93.8006
99.2335
106.304
115.792
83.9073
85.1487
86.5736
86.6683
83.8924
80.8772
79.1639
79.2156
82.4987
84.014
81.8942
85.8591
92.284
95.9188
99.5401
102.654
104.353
103.727
108.985
108.305
94.6571
1.55595
1.03504
0.164485
0.41287
82.6856
94.0494
99.1139
106.084
116
0.162818
3.80188
10.236
15.9205
16.5785
19.4999
33.8103
68.8865
83.0627
83.1298
79.8027
84.6067
92.787
96.8606
100.659
103.98
105.387
102.981
110.325
110.372
95.5702
1.45814
0.976354
0.259319
0.358149
72.0535
94.3034
98.9493
105.755
116.023
0.132843
0.128836
0.127672
0.12353
0.116295
0.115381
0.120299
0.161399
0.151901
3.4591
76.8727
83.8031
94.0871
97.7688
102.04
105.671
106.891
101.346
111.608
112.915
96.4053
1.49485
0.893761
0.332767
0.31659
0.0833762
94.4883
98.7577
105.269
115.755
0.150002
0.137108
0.142554
0.134953
0.122373
0.118318
0.122129
0.139285
0.128484
0.0898629
0.0834007
84.0294
96.9949
98.4051
103.048
107.587
108.763
100.961
112.945
113.851
97.2802
1.54642
0.817923
0.365837
0.292458
0.150745
94.8052
98.6491
104.578
115.024
0.132025
0.129653
0.127038
0.125137
0.129451
0.189893
0.111911
0.121997
0.111794
0.0503394
0.0427458
0.471248
103.07
98.6155
103.112
109.237
109.744
102.595
114.807
114.338
94.8273
1.72864
0.754381
0.374609
0.276089
0.151535
46.2394
98.8483
103.912
113.508
0.345461
0.122094
0.121461
0.119959
0.116545
0.103323
0.101751
0.104531
0.0915603
0.0174296
0.00295594
0.0618853
17.1155
99.5815
103.233
110.834
109.627
103.34
116.783
116.1
88.2649
1.94893
0.698501
0.371282
0.263463
0.149195
-0.127237
99.3812
103.29
110.566
200.378
108.966
0.157043
0.00326386
0.014965
0.0220758
0.0737705
0.229434
10.0779
94.4979
117.013
118.352
104.555
109.045
99.0468
89.821
0.184463
0.232271
0.0179955
0.0365363
0.0630945
0.120851
0.154802
0.158214
0.145709
0.14179
0.128467
0.119813
0.117299
0.118882
95.7442
112.723
0.129458
-0.00454979
0.0129257
0.0218687
0.0754425
0.151162
0.0521674
111.832
116.359
119.624
104.543
111.879
95.0219
-4.18051
0.141929
-0.0106212
0.0131448
0.0294386
0.043745
0.104933
0.140535
0.166337
0.137642
0.125035
0.116761
0.108848
0.107112
0.118166
86.7213
99.4141
0.0988132
-0.0125065
0.0109008
0.0217623
0.0376788
0.110568
1.14802
104.213
115.7
120.941
105.622
114.276
88.691
0.050519
0.304161
0.0227234
0.0134653
0.0400597
0.0299227
0.0897719
0.130008
0.139648
0.128942
0.114035
0.103383
0.0940741
0.0877327
0.113376
23.0065
0.312755
0.0703221
-0.0195565
0.00893013
0.0217099
0.0437665
0.0797158
-3.54302
55.3649
137.103
122.015
107.405
119.824
2.09116
-0.0269679
0.187971
0.0509939
0.0166251
0.0268128
0.0289008
0.0779161
0.113235
0.123637
0.114604
0.10035
0.0887486
0.0785082
0.0622364
2.01601
-0.274948
-0.0199396
0.0465873
-0.0250197
0.00707637
0.0216595
0.0497548
0.0415897
-2.81595
19.945
135.534
122.102
108.793
124.494
0.0109533
-0.00287669
0.186566
0.061332
0.0185732
0.0249455
0.0314111
0.0757992
0.108698
0.109283
0.0980706
0.0846339
0.0740359
0.065606
0.064744
6.7905
-0.0596228
-0.0568711
0.026208
-0.0286255
0.00539961
0.0215836
0.0486238
0.0245664
-2.08393
4.25499
126.341
122.996
108.442
73.6665
0.117306
-0.0131305
0.0578289
0.0646246
0.0164856
0.113487
0.0324893
0.0740432
0.0828542
0.0884051
0.0802639
0.0679604
0.0610486
0.0545412
0.0552121
0.0659744
-0.0811382
-0.0585151
0.00928502
-0.0305399
0.00394943
0.0214599
0.0335049
0.0244786
-2.10264
2.77578
131.266
125.397
104.75
-0.470074
0.210786
-0.00995537
0.0535511
0.0722116
0.0129124
0.105801
0.0191197
0.0944193
0.220658
0.0723283
0.0634072
0.0516993
0.0571073
0.0468045
0.0497882
0.0533453
-0.0446475
-0.0578276
-0.00475133
-0.0311497
0.00276573
0.0212927
0.0338886
0.0301768
-1.38994
2.47367
144.832
133.59
-0.161381
-0.196954
0.0477399
-0.00648393
0.0452965
0.105821
0.0148444
0.0827123
0.0121056
0.0595707
0.0645199
0.0596148
0.0497479
0.0385269
0.0353326
0.0387901
0.0406759
0.0444344
-0.0467561
-0.0567458
-0.0160463
-0.0308283
0.00185575
0.0211011
0.0370457
0.055798
-0.790624
1.06988
57.407
107.397
-0.0566419
-0.122169
-0.0208879
-0.00645434
0.0426038
0.268679
0.0320826
0.0266049
0.0300905
0.0469835
0.0607677
0.0506489
0.0451556
0.0298521
0.0263619
0.0270964
0.0311286
0.0363143
-0.0345353
-0.0556428
-0.0246407
-0.0298768
0.00118826
0.0208877
0.040326
0.0589501
-0.343022
0.421937
-0.394045
-0.227605
-0.0933624
-0.113261
-0.0614633
-0.0122439
0.0446046
0.0638031
0.0488602
0.0404007
0.0506231
0.0519288
0.0551169
0.0454536
0.0332974
0.0244332
0.0215887
0.0289561
0.0305306
0.0313582
-0.00787067
-0.0540978
-0.0305749
-0.0285136
0.00073203
0.0206678
0.0430287
0.0658924
-0.133584
0.00410534
-0.32951
-0.3079
-0.0954869
-0.102122
-0.116956
-0.0237669
0.0533312
0.0609428
0.0586785
0.0572076
0.0577938
0.0570392
0.0536224
0.0438432
0.0321144
0.0229641
0.0192595
0.0208371
0.0304576
0.0284717
-0.0592625
-0.0520789
-0.0339846
-0.0268762
0.000475074
0.0204523
0.0437291
0.0793421
-0.00968132
-0.596587
-0.216524
-0.403799
-0.0791049
-0.0813954
-0.187815
-0.0589142
0.0812313
0.0632785
0.0640353
0.3205
0.0659359
0.0594852
0.0533773
0.0447344
0.034178
0.0391376
0.0219372
0.0215473
0.0243527
0.0287722
-0.0433098
-0.049291
-0.0351812
-0.0250234
0.000394705
0.0202147
0.0505179
0.0950081
0.0696154
-0.507618
-0.233362
0.127931
0.0841935
-0.056923
-0.285705
2.30884
0.0767702
0.0642512
0.0676904
0.330129
0.0709438
0.0612642
0.0540284
0.046548
0.0375955
0.0309182
0.0274314
0.0272246
0.0291222
0.0327075
-0.0300779
-0.0459538
-0.0346119
-0.0230249
0.000463823
0.0199149
0.0418512
0.0836658
0.0712056
-0.275234
-0.28202
0.297074
-0.060411
-0.012533
-0.128469
2.96737
0.0537779
0.0669711
0.0742772
0.0767938
0.0724082
0.0626658
0.0699366
0.0596685
0.0396768
0.0357479
0.0333973
0.0362417
0.0359767
0.0394939
-0.0164277
-0.0423753
-0.0328184
-0.0209395
0.000652709
0.0195124
0.039814
0.0951813
0.0631185
-0.127927
-0.210487
-0.205758
-0.0683588
-0.0526778
-0.0765333
0.0524677
0.0458809
0.0610915
0.0696136
0.0706384
0.0690609
0.0630944
0.0526608
0.0439687
0.040677
0.0408219
0.0420891
0.043477
0.039118
0.0327153
0.00636182
-0.0388866
-0.0302965
-0.0188057
0.000918653
0.0189661
0.0387079
0.0696226
0.0991131
-0.104468
-0.117072
-0.143955
-0.0788229
-0.0575074
-0.0498394
0.0888711
0.0405581
0.053502
0.0652975
0.0616536
0.060797
0.0580594
0.0502529
0.043267
0.041497
0.0423127
0.0465416
0.0774824
0.380895
0.532302
-0.0302299
-0.0335384
-0.0274231
-0.0166834
0.00122103
0.0182488
0.0368028
0.0597034
0.053338
-0.0682972
-0.00415977
-0.0740388
-0.0855759
-0.0653935
-0.046299
0.0932317
0.0306711
0.0418248
0.0560074
0.0509166
0.0515323
0.0510633
0.0479647
0.0432002
0.04024
0.0384673
0.0316267
0.0142411
0.0560688
0.0703591
-0.0454946
-0.0278514
-0.0244827
-0.0146161
0.00153977
0.0173373
0.0344721
0.0503799
0.0354765
-0.0328875
0.1532
-0.0582285
-0.092849
-0.0866357
-0.0556048
0.0240016
0.0143203
0.0284212
0.0360275
0.0401297
0.0541536
0.0445443
0.0411415
0.0393259
0.0474204
0.0398744
0.0397426
0.0426447
0.050138
0.0580153
0.0143754
-0.021719
-0.0216537
-0.0126334
0.0018462
0.0162119
0.0308521
0.0417139
0.0129424
-0.00658271
0.0211004
-0.0453087
-0.115703
-0.119569
-0.0790927
-0.035962
-0.00315304
0.0151963
0.0251379
0.0305655
0.0905565
0.0454999
0.0337181
0.0352581
0.0367546
0.0381643
0.0417168
0.0454076
0.0491395
0.0525819
-0.00321151
-0.0166685
-0.0190487
-0.010764
0.00210277
0.0148621
0.027469
0.0328725
0.0167597
0.00567973
0.0148078
-0.0386027
-0.141228
-0.158992
-0.1162
-0.0590171
-0.0131558
0.00354025
0.0147684
0.0211997
0.0229066
0.0250336
0.0276944
0.0299259
0.0322416
0.0348175
0.0377084
0.0406614
0.0434767
0.0461595
0.00491134
-0.0126974
-0.0167161
-0.00902401
0.0022829
0.013291
0.0241317
0.0260821
0.0167375
0.0120432
-0.00461459
-0.000228304
-0.156174
-0.183445
-0.146857
-0.0779971
-0.0285145
-0.000404246
0.00578673
0.0117807
0.0156237
0.0188465
0.021611
0.0241109
0.0266568
0.0292994
0.03191
0.0344209
0.0367775
0.0389596
0.0229706
-0.0111258
-0.0145965
-0.00741991
0.00235964
0.0115285
0.0185887
0.0201626
0.0140905
0.00309283
-0.0357276
0.617551
-0.14542
-0.177621
-0.148397
-0.0825996
-0.0306826
-0.00749567
0.00090528
0.00391565
0.00690307
0.00980046
0.0126944
0.0154774
0.0181531
0.0207546
0.0231728
0.0253763
0.0273924
0.0291755
-0.026593
-0.0119766
-0.0125529
-0.00595303
0.00231256
0.00956101
0.0156646
0.0142261
0.00738942
-0.00363978
-0.0361217
-0.0739892
-0.116976
-0.137549
-0.108719
-0.05797
-0.0225048
-0.00136443
-0.00179907
-0.00377151
-0.00407808
-0.00338329
-0.00166433
0.000757067
0.00336763
0.0058184
0.00792913
0.00968627
0.011092
0.0120552
-0.0161255
-0.0120473
-0.0104507
-0.00463008
0.0021316
0.0074677
0.0119657
0.00618179
-0.00403637
-0.0239869
-0.0431977
-0.0650663
-0.0888666
-0.0921823
-0.071427
0.188965
0.00184608
-0.00679662
-0.00468894
0.000380154
-0.0187802
-0.0223897
-0.0228566
-0.0225848
-0.0213406
-0.0193806
-0.0175021
-0.016057
-0.0151111
-0.0147195
-0.00929986
-0.0102274
-0.00826151
-0.00345776
0.0018289
0.0052312
0.00362838
-0.00325274
-0.0245238
-0.0582043
-0.0566429
-0.0603128
-0.0648934
-0.0209432
-0.0504694
-0.0280833
-0.0163347
-0.0174091
-0.0233739
-0.0300919
-0.0382422
-0.0403852
-0.0452122
-0.0526902
-0.0498987
-0.0526782
-0.0508324
-0.0489545
-0.047644
-0.0469982
-0.00512805
-0.00765525
-0.006128
-0.00244362
0.00144578
0.0030076
-0.000668382
-0.0148966
-0.068257
-0.126842
-0.0735031
-0.0543691
-0.0492606
-0.0470318
-0.0410761
-0.0311575
-0.0267955
-0.0237675
-0.020548
-0.0425745
-0.0560208
-0.0670981
-0.0715812
-0.0763518
-0.0769952
-0.0738605
-0.0511073
-0.0701662
-0.0700009
-0.0701725
-0.00268124
-0.00524301
-0.00423287
-0.00159195
0.00105084
0.00115028
-0.0048129
-0.0238587
-0.091918
-0.163529
-0.0886293
-0.0485583
-0.0379974
-0.0340649
0.155277
-0.0279162
-0.025675
-0.0309872
0.0377362
-0.0461456
-0.0433194
-0.0676176
-0.0685493
-0.0717968
-0.0725438
-0.0541398
-0.0471799
-0.0777703
-0.0787561
-0.0797238
-0.00129679
-0.00333365
-0.00263302
-0.000899312
0.000716299
-2.26799e-05
-0.00637028
-0.010397
-0.0563838
-0.131581
-0.0765717
-0.042601
-0.0312251
-0.0260731
-0.0244352
-0.0117258
-0.0249672
-0.0327527
-0.039016
-0.0410626
-0.0440145
-0.0407765
0.0848784
-0.023172
-0.0642219
-0.071031
-0.0698345
-0.0672127
-0.0683334
-0.0666659
-0.0005129
-0.00157732
-0.00129596
-0.000367512
0.000447395
-0.000310537
-0.00489615
-0.00337572
-0.0245015
-0.0582208
-0.051374
-0.0389645
-0.0294454
-0.0227595
-0.0187042
-0.0168987
-0.00973256
-0.0240276
-0.0263469
0.00267824
-0.0234687
-0.0283122
-0.0322495
-0.0248455
-0.0174435
-0.0249632
-0.0316607
-0.0336253
-0.0336188
-0.031478
0.000711062
-0.000294014
-0.000340613
1.5972e-05
0.000221278
-0.000306891
-0.00250866
-0.00680969
0.00622369
-0.0284571
-0.0430376
-0.0383938
-0.0287835
-0.020512
-0.0147513
-0.0114489
-0.0109106
-0.014245
-0.0186334
-0.0205746
-0.0186319
-0.0155575
-0.0134016
-0.0120382
-0.0109148
-0.00889847
-0.00734721
-0.0100546
-0.0115022
-0.00654854
0.124315
0.1175
0.115754
0.115791
0.111104
0.099541
0.0961434
0.0953217
0.0810997
0.00850986
-0.0138444
0.041412
0.0353611
102.228
103.428
111.536
109.356
103.689
118.328
117.759
85.8412
1.90176
0.668423
0.366536
0.256988
0.148002
-0.0945541
4.61686
102.832
108.598
0.122084
0.112737
0.110258
0.112319
0.104894
0.0955806
0.0907412
0.0875583
0.0707311
0.00683391
-0.0204658
0.021671
0.0495963
-0.102852
102.757
111.855
108.901
103.293
120.411
118.316
89.4247
2.49109
0.639198
0.360777
0.251269
0.146956
-0.0647759
-0.09237
102.249
107.956
0.119948
0.110102
0.117376
0.150147
0.0951948
0.089787
0.0850862
0.0803788
0.064359
0.0101084
-0.021487
0.0170779
0.147755
0.131395
88.8627
113.205
109.655
105.295
122.809
120.374
13.015
1.97411
0.60677
0.353533
0.245436
0.145755
-0.0412903
-0.0661095
41.0614
108.734
0.107366
0.103728
0.0990588
0.1746
0.0809454
0.0842034
0.079682
0.0740437
0.0604745
0.0194238
-0.0115413
0.0205477
0.137746
0.122488
0.329319
116.691
108.533
106.689
124.742
120.662
-15.7727
1.07256
0.571888
0.344788
0.239412
0.14432
-0.0212799
-0.0345967
-0.0509297
109.927
0.357203
0.0868865
0.0891043
0.0836386
0.0738042
0.0808013
0.0748262
0.0684787
0.0584496
0.0376879
0.00606923
0.0227811
0.0475827
0.0935241
0.298405
4.47092
107.725
108.911
125.159
120.319
1.00789
0.961427
0.535163
0.334468
0.233093
0.142569
-0.00342308
-0.0131969
-0.00923093
111.426
0.0519808
0.0680674
0.0758666
0.075001
0.0737808
0.0888344
0.0700047
0.0635276
0.0586497
0.0377473
0.0234619
0.0236046
0.0341417
0.0522534
0.123309
-0.257563
7.27945
111.263
124.858
122.643
-1.16472
0.481051
0.491589
0.322493
0.226387
0.140488
0.0123421
0.000415285
0.0132561
-0.530387
0.0553551
0.0606713
0.0659139
0.0668613
0.07165
0.0762756
0.100749
0.0649729
0.0573962
0.0438736
0.0339211
0.0266127
0.0188516
-0.00717926
0.00890205
-0.324501
-0.296691
16.9701
123.951
128.676
-1.26706
0.0709881
0.446064
0.308822
0.219206
0.138037
0.0258823
0.0095238
0.0253547
-0.446174
0.0484616
0.0536466
0.0585574
0.0640725
2.12738
0.0560939
0.0564298
0.0581741
0.0711042
0.045314
0.038882
0.0218051
-0.000372533
-0.0554776
2.48255
-0.371685
-0.307144
-0.31204
1.90068
-0.59408
-1.15583
-0.203958
0.383362
0.293157
0.211471
0.135195
0.0369623
0.0159427
0.0339039
-0.355554
0.0411412
0.0461302
0.051526
0.0546493
1.30415
0.0455078
0.0522897
0.0518691
0.0508476
0.0433718
0.0429691
0.0201899
-0.00889517
-0.0499078
3.2616
-0.0585564
-0.321305
-0.308463
-0.449346
-0.573616
-1.03728
-0.271028
0.337276
0.275751
0.203107
0.131936
0.0454608
0.0208249
0.0403021
-0.264774
0.035554
0.0405292
0.045307
0.0570054
0.0470496
0.0509861
0.0506003
0.0474796
0.0411995
0.0415489
0.0870368
0.0184321
-0.0108918
-0.0279027
2.71174
-0.0844176
-0.248215
-0.323638
-0.437786
-0.551339
-0.904841
-0.230116
0.286643
0.256565
0.19405
0.128246
0.0515871
0.0242692
0.0353779
-0.185526
0.033056
0.0384864
0.0441108
0.0521722
0.0505238
0.0505016
0.0486123
0.0442304
0.0394847
0.0347932
0.0684016
0.0176479
-0.0112542
-0.0302135
3.00029
-0.204626
-0.245051
-0.300448
-0.443114
-0.522648
-0.853387
-0.224992
0.248789
0.235754
0.184241
0.124121
0.0557477
0.0266645
0.0365247
-0.122176
0.0336205
0.0392679
0.0453444
0.0505692
0.05183
0.0507644
0.0480304
0.0429763
0.0386292
0.0345693
0.0293012
0.0155005
-0.0111348
-0.00676955
0.0916036
-0.186733
-0.095078
-0.313942
-0.453659
-0.440332
-0.721515
-0.239398
0.191958
0.213638
0.173665
0.119561
0.0584137
0.0283888
0.0363389
-0.0753224
0.0373945
0.0427116
0.0490999
0.0544366
0.0554831
0.0620778
0.0523868
0.0594135
0.0445988
0.0349268
0.0250761
0.011544
-0.0101073
-0.0315736
-0.0704061
-0.173254
-0.256237
-0.323787
-0.442139
-0.488459
-0.544261
-0.29588
0.144676
0.19065
0.162335
0.114564
0.059956
0.0297259
0.0353149
-0.0428123
0.0416658
0.0484655
0.0571696
0.0620141
0.0630309
0.0609735
0.0594791
0.0640706
0.0412948
0.033428
0.0223673
0.0325838
-0.00165705
-0.0386659
-0.0894194
-0.184194
-0.247689
-0.303984
-0.28054
-0.471751
-0.36536
-0.290338
0.103547
0.167334
0.150316
0.109115
0.0606324
0.0308813
0.0338599
-0.021589
0.0444951
0.0562205
0.0684718
0.0674079
0.064557
0.0576164
0.0494074
0.0441595
0.0448239
0.0375252
0.02196
0.0336944
0.00870863
-0.0425201
-0.102328
-0.173525
-0.240653
0.201578
-0.331913
-0.453694
-0.184785
-0.23045
0.0674132
0.14434
0.137739
0.103209
0.0606052
0.031964
0.0322746
-0.00851417
0.0665122
0.0705906
0.0739056
0.0661542
0.0636118
0.0662844
0.0552445
1.02003
0.0551661
0.0402523
0.0250514
0.0153669
0.0104313
-0.0449299
-0.107618
-0.17889
-0.249699
0.225242
-0.313447
-0.422456
-0.218742
-0.194716
0.039652
0.122295
0.124753
0.0968495
0.0599389
0.0329951
0.0307498
-0.000895632
0.0715744
0.0735091
0.0765466
0.437843
0.183371
0.0709948
0.070099
0.0842422
0.0639162
0.0471261
0.0289184
0.00566364
-0.0145094
-0.0176328
-0.0528359
-0.194084
-0.247236
-0.10892
-0.311914
-0.41728
-0.214603
-0.16113
0.0201355
0.101769
0.111575
0.0900682
0.0586163
0.033887
0.0293597
0.00330008
0.062801
0.06534
0.0668302
0.0688159
0.0714326
0.0714348
0.0764098
0.0748693
0.0718562
0.0536781
0.0332495
0.00517075
-0.0267232
-0.00542464
-0.111985
-0.189944
-0.236986
0.353299
-0.251334
-0.378974
-0.310703
-0.107339
0.00779717
0.083177
0.0984438
0.0829084
0.0566079
0.0344718
0.0280637
0.00546736
0.0557864
0.0592372
0.0635581
0.0703534
0.0732828
0.0788922
0.07932
0.0748398
0.0678833
0.0552263
0.0337282
0.00148172
-0.0376181
-0.0703253
-0.12046
-0.182675
-0.225395
-0.113438
-0.193423
-0.266606
-0.299214
-0.090896
0.000310771
0.0667538
0.0855965
0.075445
0.0539212
0.034574
0.0267408
0.00646386
0.0488824
0.0518664
0.055226
0.0598193
0.0651444
0.0698886
0.0712711
0.0683535
0.0611147
0.0471774
0.0215075
-0.0151965
-0.056809
-0.0956931
-0.137929
-0.176251
-0.201029
-0.237255
-0.0723105
-0.146785
-0.184556
-0.0757792
-0.00435252
0.0525304
0.0732617
0.0677781
0.0506108
0.0340684
0.02523
0.00676771
0.0411256
0.0434047
0.0457458
0.0478798
0.0492009
0.0499928
0.0509155
0.0477557
0.03913
0.0215935
-0.00819042
-0.0557187
-0.100541
-0.139919
-0.168026
-0.183865
-0.176556
-0.179509
-0.138968
-0.0806028
-0.0859746
-0.0632028
-0.00754417
0.0403929
0.0616427
0.0600162
0.0467741
0.0328563
0.0234235
0.00663707
0.0308179
0.0323612
0.0335001
0.0338533
0.0329655
0.0979928
0.0735781
0.0132356
-0.0053033
-0.026368
-0.0777284
-0.133054
-0.178367
-0.213676
-0.214219
-0.198974
-0.168846
-0.14164
-0.130718
-0.0889943
-0.0667661
-0.0532805
-0.0101324
0.030136
0.050895
0.052278
0.0425012
0.0308108
0.0213587
0.00622462
0.012605
0.01266
0.0116344
0.00854025
0.00301292
-0.00522983
-0.0135768
-0.0355563
-0.0668278
-0.103072
-0.17776
-0.16744
-0.221106
-0.339792
-0.298665
-0.219511
-0.161509
-0.117551
-0.0894884
0.0821147
-0.0553123
-0.0497226
-0.0127051
0.0215277
0.04113
0.0446867
0.0378678
0.0281718
0.0191347
0.00564023
-0.0148571
-0.0156574
-0.0176316
-0.0214909
-0.0282085
-0.0388436
-0.054024
-0.0802212
-0.121087
-0.181228
-0.262449
-0.349785
-0.424088
-0.460106
-0.395702
-0.250288
-0.155154
-0.085971
-0.0332839
0.323828
-0.0809367
-0.0548318
-0.0150857
0.0144321
0.0324227
0.0373479
0.0329589
0.0250983
0.0168056
0.00496249
-0.0469787
-0.0477741
-0.0498177
-0.0536692
-0.060225
-0.0709409
-0.0880643
-0.114323
-0.153237
-0.210474
-0.288477
-0.379135
-0.465191
-0.511468
-0.447803
-0.284554
-0.138402
-0.0550418
-0.00291611
0.0484886
-0.215052
-0.031155
-0.0158272
0.00880784
0.0248131
0.0303562
0.0278519
0.021672
0.0143794
0.00423949
-0.0708433
-0.0719494
-0.0739258
-0.0763551
-0.082907
-0.0914876
-0.104753
-0.125357
-0.156288
-0.199621
-0.256457
-0.324794
-0.389507
-0.395715
-0.380303
-0.23609
-0.077814
-0.0283246
0.0149726
0.544381
-0.0360976
-0.0402806
0.00828252
0.00462141
0.0183036
0.0237732
0.0226093
0.0179426
0.0118464
0.00349034
-0.0809175
-0.0825237
-0.0840621
-0.0873348
-0.0909183
-0.0967171
-0.105857
-0.119095
-0.136862
-0.160136
-0.185338
-0.215556
-0.244658
-0.247405
-0.209468
-0.126256
-0.0383642
-0.0114558
0.00879733
0.474937
-0.0267879
-0.0283145
-0.0155385
0.00208411
0.012856
0.0176075
0.0172777
0.0139479
0.00919217
0.0027152
-0.0619929
-0.0186431
0.00498003
-0.0732333
-0.0782639
-0.0822794
-0.0876122
-0.0910397
-0.0986612
-0.0915438
-0.0488863
-0.0962253
0.0264695
-0.0941737
-0.0676129
-0.034608
0.0138174
0.00103863
0.00290164
-0.00340728
-0.0137188
0.0132352
-0.00934692
0.00127165
0.00831616
0.0118046
0.0118645
0.00970486
0.00639881
0.00190397
-0.0321203
-0.0274443
-0.0356082
-0.00521409
-0.0520018
-0.0525985
-0.051712
-0.040681
-0.0328731
0.104686
-0.0446944
-0.0315194
-0.025467
-0.020343
-0.00876161
0.00424828
0.01369
0.00757633
0.00281537
-0.00290708
-0.00470447
-0.00877106
-0.00376439
0.00104014
0.00434819
0.00621304
0.00631922
0.0052004
0.00343852
0.00104068
-0.0141398
-0.0160028
-0.0176523
-0.016435
-0.0225751
-0.0316593
-0.0302027
0.00250437
0.0108539
-0.0189683
-0.00910147
0.0593449
-0.00884461
0.0188404
0.00353036
0.0122384
0.00645675
0.0041123
0.000807528
-0.00157812
-0.00241708
-0.00252561
-0.000291948
0.000715273
0.00161809
0.00202492
0.00190847
0.00148014
0.000915881
0.000117182
93.9451
90.9522
88.6252
87.9025
86.2476
84.3981
83.3412
83.8888
86.8191
91.0461
94.5595
96.5838
97.3141
97.2008
96.641
95.9025
95.1393
94.4295
93.8065
93.28
92.8469
92.4981
92.2226
92.0095
91.8488
91.7315
91.6496
91.5961
91.5652
91.5514
93.9367
89.8355
88.4852
87.5898
85.7649
84.0423
83.2758
84.3623
87.8154
92.0475
95.2218
96.8886
97.3636
97.1031
96.4747
95.7147
94.955
94.2605
93.6575
93.1518
92.7383
92.4071
92.147
91.947
91.7973
91.6891
91.6146
91.5672
91.5409
91.5308
93.9369
89.7716
88.4778
87.5999
85.7639
84.0297
83.2362
84.2823
87.7635
92.063
95.2762
96.9482
97.4119
97.1364
96.4941
95.7213
94.9498
94.2451
93.6337
93.1215
92.7032
92.3686
92.1061
91.9045
91.7536
91.6446
91.5698
91.5222
91.4959
91.4858
93.9545
89.6709
88.467
87.6167
85.7618
84.0075
83.1706
84.1475
87.6679
92.0728
95.3517
97.0397
97.4913
97.1957
96.5331
95.7405
94.9498
94.2274
93.6012
93.0774
92.6506
92.3098
92.0429
91.8383
91.6855
91.5755
91.5002
91.4525
91.4263
91.4164
94.0047
89.5307
88.4531
87.6403
85.758
83.9759
83.0798
83.9578
87.5321
92.0839
95.4509
97.1618
97.5998
97.2795
96.5906
95.7713
94.954
94.207
93.5603
93.0206
92.5817
92.2321
91.959
91.7501
91.5946
91.483
91.4068
91.3588
91.3326
91.3228
94.0835
89.3467
88.4366
87.6712
85.7525
83.9353
82.9647
83.7089
87.3529
92.0977
95.5764
97.3155
97.7358
97.384
96.6617
95.8092
94.9592
94.182
93.5099
92.9502
92.4963
92.1356
91.8544
91.6398
91.4803
91.366
91.2882
91.2393
91.2127
91.2029
94.1884
89.1135
88.4179
87.71
85.745
83.886
82.8265
83.3955
87.1254
92.1147
95.73
97.5021
97.8989
97.5069
96.7439
95.8522
94.9641
94.1513
93.4489
92.8655
92.3937
92.0197
91.7286
91.5067
91.3418
91.2235
91.1428
91.0921
91.0646
91.0547
94.3191
88.8246
88.3979
87.7576
85.7353
83.8285
82.6673
83.0107
86.8432
92.1357
95.9134
97.7234
98.0895
97.6475
96.8363
95.8997
94.9679
94.1139
93.3763
92.7655
92.2729
91.8834
91.5806
91.3499
91.1781
91.0545
90.9697
90.9161
90.8871
90.877
94.4768
88.472
88.3774
87.8147
85.7232
83.7633
82.4896
82.5455
86.4983
92.162
96.1291
97.9811
98.3084
97.8057
96.9383
95.951
94.9702
94.0689
93.2907
92.6485
92.1325
91.7253
91.4092
91.1682
90.9884
90.8583
90.7682
90.7107
90.6794
90.6686
94.6619
88.0463
88.3575
87.8826
85.7082
83.6907
82.2969
81.9885
86.0804
92.1953
96.3795
98.278
98.5564
97.9809
97.049
96.0056
94.9703
94.0148
93.19
92.5126
91.9706
91.5439
91.2128
90.9603
90.7716
90.6343
90.5383
90.4757
90.4406
90.4281
94.8758
87.5363
88.3393
87.9623
85.69
83.611
82.0941
81.3251
85.5762
92.2381
96.6676
98.6169
98.8346
98.1726
97.1674
96.0625
94.9673
93.9499
93.0718
92.3554
91.7852
91.337
90.9895
90.7245
90.5264
90.3819
90.2798
90.2114
90.1705
90.1529
95.1209
86.9293
88.3244
88.0554
85.6678
83.5241
81.8877
80.5372
84.9689
92.2933
96.9965
99.0021
99.1445
98.3797
97.2919
96.1204
94.9604
93.8722
92.933
92.1743
91.5737
91.1023
90.7368
90.4584
90.2508
90.0995
89.992
89.9183
89.8704
89.8427
95.4
86.2108
88.3149
88.1632
85.6411
83.4294
81.6862
79.6027
84.2373
92.3651
97.3699
99.4367
99.4877
98.6012
97.4207
96.1779
94.9485
93.779
92.7698
91.9661
91.3336
90.8372
90.4519
90.1588
89.9413
89.784
89.6728
89.5953
89.5421
89.5091
95.7171
85.3645
88.3137
88.2874
85.609
83.3257
81.5008
78.4937
83.3557
92.4575
97.7913
99.926
99.8661
98.8353
97.5512
96.2326
94.9305
93.6669
92.5773
91.727
91.0618
90.5387
90.1312
89.8214
89.5932
89.4305
89.3175
89.2398
89.1854
89.2189
96.0757
84.3698
88.3242
88.4301
85.5705
83.2107
81.3459
77.1774
82.2946
92.5765
98.2646
100.475
100.282
99.08
97.6801
96.2818
94.9041
93.5315
92.3492
91.4531
90.7552
90.2035
89.7704
89.4406
89.1996
89.0308
88.9168
88.8418
88.7929
88.7652
96.4796
83.2044
88.3509
88.5936
85.5245
83.0808
81.2413
75.6418
81.0207
92.7275
98.793
101.092
100.74
99.3321
97.8033
96.3219
94.8642
93.3659
92.0788
91.1397
90.4105
89.8285
89.3648
89.0099
88.7526
88.5755
88.4593
88.3868
88.3442
88.3223
96.9325
81.8441
88.3984
88.7807
85.4697
82.93
81.2048
73.8719
79.4919
92.9131
99.3793
101.782
101.243
99.5876
97.9144
96.3502
94.7968
93.1557
91.7604
90.7806
90.0243
89.4111
88.9094
88.5216
88.2432
88.0556
87.9369
87.8679
87.8334
87.8225
97.4374
80.2632
88.4717
88.9952
85.4046
82.7503
81.2501
71.7153
77.6474
93.1256
100.025
102.554
101.797
99.8403
98.0033
96.3679
94.6663
92.851
91.3858
90.3657
89.5933
88.9502
88.3992
87.9662
87.6607
87.462
87.3432
87.2828
87.2629
87.2694
97.9955
78.4336
88.5751
89.2422
85.3273
82.53
81.3815
69.03
75.3588
93.323
100.728
103.415
102.41
100.081
98.0501
96.3875
94.4003
92.3881
90.9449
89.8816
89.1153
88.449
87.8299
87.3306
86.9905
86.7835
86.673
86.6333
86.6418
86.6782
98.6046
76.3261
88.7116
89.529
85.2346
82.2531
81.571
65.7009
72.3767
93.426
101.488
104.372
103.09
100.293
98.032
96.4309
93.9321
91.8896
90.4229
89.3096
88.5901
87.919
87.2015
86.5979
86.2121
86.0076
85.9234
85.9253
85.9823
86.0659
99.256
73.9102
88.8815
89.8664
85.1236
81.8966
81.7493
61.5401
68.7262
93.4235
102.312
105.429
103.847
100.45
98.0152
96.4915
93.3262
91.4896
89.7999
88.6131
88.0247
87.39
86.5246
85.7529
85.2989
85.1121
85.0788
85.1488
85.281
85.4358
99.93
71.1582
89.0812
90.2699
85.0068
81.4284
81.8395
57.151
65.0305
93.4332
103.196
106.585
104.694
100.496
98.1555
96.4967
92.7759
91.1623
89.0776
87.7393
87.4441
86.9059
85.804
84.789
84.2299
84.0568
84.0991
84.274
84.5227
84.7897
100.589
68.0482
89.2992
90.7604
84.8845
80.8022
81.8549
-3.31423
72.1788
93.4838
104.141
107.83
105.64
100.318
98.4293
96.4501
92.4608
90.9063
88.2543
86.5607
86.8289
86.4602
84.9865
83.6487
82.9472
82.782
82.9306
83.2605
83.6862
84.1277
101.164
64.5715
89.5163
91.3754
84.5144
79.9667
81.356
2.63103
-7.43751
93.4157
105.136
109.149
106.695
99.658
98.7917
96.5086
92.4559
90.7612
87.2918
84.256
85.6828
86.0076
84.0308
82.2234
81.3499
81.2257
81.5243
82.0573
82.7404
83.4471
101.545
60.7551
89.7096
92.1518
84.8742
79.0388
1.74572
0.488899
-0.769207
93.3847
106.202
110.513
107.855
97.8222
99.1558
96.749
92.7434
90.764
86.0867
79.8768
83.4912
85.4687
82.9046
80.401
79.2951
79.3141
79.8263
80.5598
81.6396
82.7602
101.548
56.7502
89.8558
93.1204
85.5193
19.3509
0.0061983
0.337977
1.04197
92.7031
107.423
111.884
109.093
94.2849
99.239
97.1307
93.2293
90.9534
85.4255
75.3694
81.8423
85.1187
80.9793
78.1077
76.208
77.0781
77.8292
78.3556
80.3513
82.1822
100.894
53.0237
89.9309
94.2014
85.4254
0.057481
0.021615
0.324264
0.930271
90.9871
108.844
113.199
110.252
92.8835
99.7071
97.5494
93.5797
91.446
86.5626
75.4303
83.5689
73.047
2.5379
0.186274
0.152754
0.158856
0.156792
0.151176
0.141348
0.133366
99.2213
51.0342
89.8465
95.3948
0.711518
0.0379418
0.0304101
0.295512
1.00043
92.5028
110.446
114.408
111.241
94.877
101.387
97.7896
93.6215
91.9138
88.9773
45.2907
0.14602
0.154863
0.170129
0.173564
0.163947
0.159422
0.15585
0.150105
0.1492
0.136603
96.0764
54.3903
89.0489
96.4964
0.038737
0.0250969
0.0359821
0.246746
0.933824
94.2439
111.579
115.506
111.81
99.1129
103.097
97.6008
93.3835
92.3269
11.8256
0.0793852
0.138355
0.156652
0.167749
0.170499
0.163334
0.160115
0.154724
0.142877
0.137721
0.160271
92.6654
64.8379
86.3653
-0.00622818
0.0228811
0.0187489
0.0400034
0.19991
0.784469
103.522
112.338
116.318
111.357
103.803
103.164
96.4249
93.7127
14.0755
0.0368005
0.0677193
0.111441
0.144749
0.164161
0.169518
0.161183
0.175885
0.17334
0.136236
0.13159
0.128161
91.5507
91.5615
91.5869
91.6312
91.6997
91.7987
91.9355
92.1191
92.3599
92.6697
93.0601
93.5398
94.1096
94.7562
95.4427
96.1008
96.6182
96.8128
96.401
95.0153
92.3228
88.3955
84.4349
82.3856
82.7928
85.2714
89.8663
96.0295
102.461
107.918
91.533
91.5472
91.577
91.6271
91.7028
91.8107
91.9589
92.1566
92.4148
92.7455
93.16
93.6658
94.2608
94.9263
95.618
96.2575
96.7179
96.7937
96.175
94.4846
91.435
87.3094
83.6555
82.2593
83.2248
86.2394
91.3522
97.7124
104.052
109.028
91.4881
91.5025
91.5325
91.5827
91.6587
91.767
91.9158
92.1147
92.3751
92.7094
93.1293
93.6425
94.2472
94.9245
95.6289
96.281
96.7533
96.8403
96.2292
94.5344
91.452
87.2635
83.5706
82.2017
83.1904
86.2114
91.3392
97.711
104.057
109.056
91.4188
91.4333
91.4634
91.5136
91.5896
91.6983
91.8482
92.0492
92.3136
92.6541
93.0832
93.6092
94.2311
94.9295
95.6567
96.3299
96.8193
96.9184
96.3125
94.603
91.463
87.1741
83.427
82.1074
83.1331
86.1646
91.3185
97.7106
104.069
109.106
91.3254
91.34
91.3702
91.4205
91.4966
91.6058
91.7571
91.9614
92.2314
92.5809
93.0229
93.5671
94.2131
94.9413
95.7009
96.4033
96.9143
97.026
96.4233
94.6921
91.4737
87.0461
83.2258
81.9775
83.0532
86.0986
91.2899
97.7109
104.088
109.177
91.2057
91.2207
91.2513
91.302
91.3786
91.4887
91.6422
91.8508
92.1283
92.4894
92.9481
93.5152
94.1919
94.958
95.7578
96.4959
97.033
97.1605
96.5621
94.8041
91.4861
86.8769
82.9622
81.812
82.951
86.0132
91.2534
97.7121
104.113
109.264
91.0579
91.0736
91.105
91.1565
91.2341
91.3458
91.5023
91.7166
92.0035
92.3788
92.8578
93.4527
94.1666
94.9788
95.8263
96.6051
97.1728
97.3208
96.7298
94.9408
91.5009
86.6618
82.6302
81.6112
82.8271
85.9081
91.2091
97.714
104.145
109.37
90.8807
90.8974
90.93
90.9828
91.0618
91.1758
91.3363
91.5576
91.8559
92.2481
92.7508
93.3782
94.1361
95.0035
95.9063
96.7305
97.3331
97.5066
96.9272
95.1044
91.5189
86.3954
82.2215
81.3762
82.6819
85.783
91.1572
97.7167
104.181
109.496
90.6731
90.6912
90.725
90.7792
90.8602
90.9769
91.1422
91.372
91.6838
92.0958
92.6257
93.29
94.0988
95.0317
95.9982
96.872
97.5135
97.718
97.1558
95.2974
91.542
86.0708
81.7255
81.1082
82.5161
85.6376
91.0976
97.7202
104.223
109.642
90.4338
90.4537
90.4873
90.5431
90.6269
90.7471
90.9184
91.1582
91.4857
91.9202
92.4807
93.186
94.0527
95.0633
96.1024
97.0291
97.7138
97.9552
97.417
95.5231
91.5719
85.6793
81.1282
80.8094
82.3302
85.4715
91.0307
97.7244
104.268
109.809
90.1588
90.1863
90.2105
90.2705
90.3596
90.4844
90.6626
90.9141
91.2596
91.7198
92.314
93.0638
93.9948
95.0983
96.2191
97.2009
97.9332
98.2182
97.7127
95.7852
91.6114
85.2104
80.4108
80.4833
82.1247
85.2842
90.9562
97.7294
104.317
109.997
89.8296
90.0564
89.9316
89.9605
90.0568
90.1873
90.3731
90.6377
91.0039
91.4927
92.1239
92.9205
93.9208
95.1371
96.3479
97.3854
98.1711
98.5071
98.0449
96.0885
91.6638
84.6517
79.5489
80.1355
81.8998
85.0752
90.8741
97.7349
104.367
110.207
89.5004
89.5336
89.5589
89.6181
89.7179
89.8538
90.0474
90.327
90.7169
91.2377
91.9089
92.7536
93.8242
95.1806
96.4869
97.5794
98.4262
98.8218
98.4164
96.4384
91.7335
83.9894
78.5095
79.7738
81.6549
84.8443
90.784
97.7409
104.417
110.439
89.2253
89.1469
89.1746
89.2368
89.3378
89.4784
89.682
89.9799
90.3968
90.9532
91.6675
92.5608
93.6941
95.2302
96.6302
97.778
98.6975
99.1624
98.8299
96.8418
91.8255
83.2092
77.2493
79.4085
81.389
84.591
90.6852
97.7467
104.465
110.694
88.7439
88.7482
88.7731
88.8253
88.9127
89.054
89.2735
89.5951
90.0426
90.6376
91.3985
92.3413
93.5111
95.2837
96.7627
97.9742
98.9841
99.5288
99.2886
97.3072
91.9455
82.2993
75.7116
79.0521
81.0994
84.3154
90.5766
97.752
104.509
110.972
88.315
88.3235
88.3514
88.3919
88.4322
88.5773
88.8228
89.1728
89.6529
90.2894
91.1
92.096
93.2374
95.3138
96.8495
98.1596
99.286
99.9205
99.7959
97.8434
92.099
81.2554
73.8266
78.7242
80.781
84.0177
90.4565
97.7556
104.547
111.273
87.8284
87.851
87.8977
87.9878
87.7894
88.0528
88.3376
88.7132
89.2256
89.9058
90.7688
91.8241
92.8413
95.1818
96.8194
98.3268
99.6044
100.337
100.356
98.4634
92.2899
80.0846
71.5355
78.4855
80.4252
83.699
90.3224
97.7559
104.576
111.598
87.2932
87.3333
87.3887
95.7924
87.4456
87.5411
87.8264
88.2128
88.7561
89.4831
90.3997
91.5178
92.4962
94.6151
96.5622
98.4746
99.9425
100.776
100.972
99.1793
92.5199
78.8002
68.8398
78.4366
80.0229
83.3614
90.1714
97.7506
104.591
111.947
86.7299
86.7951
86.8803
86.9957
86.9198
87.0434
87.28
87.6604
88.2363
89.0167
89.9857
91.1639
92.3228
93.7098
96.0242
98.6156
100.306
101.236
101.648
100.008
92.7887
77.3986
65.8211
78.5026
79.5603
83.0085
90.0022
97.7366
104.588
112.319
86.1584
86.2561
86.3532
86.4304
86.4496
86.5068
86.6764
87.037
87.6559
88.5023
89.5183
90.7372
92.1696
92.819
95.3904
98.7828
100.702
101.71
102.388
100.968
93.0894
75.838
62.5275
78.6006
79.0026
82.6459
89.8162
97.7104
104.562
112.716
85.5899
85.7368
85.858
85.9197
85.911
85.9156
85.9816
86.3178
87.0016
87.9358
88.9891
90.2172
91.9368
92.2377
95.0643
99.0238
101.14
102.189
103.193
102.084
93.4375
73.9687
58.7989
78.808
78.3061
82.28
89.6188
97.6678
104.508
113.135
85.0428
85.2728
85.4443
85.4922
85.389
85.2263
85.6177
85.4632
86.2405
87.3044
88.3785
89.5787
91.6449
92.256
95.3483
99.3749
101.631
102.653
104.064
103.371
93.8891
71.291
55.5583
79.2059
77.4051
81.9113
89.4242
97.6037
104.42
113.575
84.5395
84.9105
85.1806
85.2266
84.9669
84.4908
84.266
84.3873
85.2966
86.5632
87.579
88.7486
91.3586
92.8468
96.1883
99.8331
102.186
103.071
104.995
104.834
94.535
71.5842
12.9958
79.6748
76.2171
81.5129
89.2738
97.5111
104.292
114.031
84.103
84.7033
85.1591
85.2211
84.6598
83.6884
82.9524
82.9677
84.1206
85.6847
86.2925
87.5906
91.1105
93.6774
97.2323
100.379
102.825
103.385
105.972
106.468
95.3767
66.4584
1.98918
79.5666
74.8664
80.9508
89.2708
97.3782
104.115
114.496
83.7635
84.7136
85.5474
85.7396
84.5739
82.6366
81.2738
81.0633
82.7614
84.7909
84.0829
85.813
90.9166
94.5309
98.1429
101.059
103.588
103.485
106.975
108.262
96.4054
46.0919
1.63073
0.0696755
14.8309
79.7194
89.5813
97.1858
103.878
114.95
83.399
84.8462
86.6202
87.5916
84.9128
80.862
79
78.2938
81.1199
83.8006
81.7472
83.6901
90.8467
95.3643
98.9883
102.101
104.551
103.165
107.992
110.214
98.101
17.2174
1.40877
0.234055
0.391401
76.5841
90.5077
96.9019
103.57
115.361
0.134489
0.123226
0.126278
0.121342
0.118164
0.118568
0.115331
3.70598
60.3377
83.1351
80.5092
82.0832
91.2179
96.2365
99.9004
103.696
105.814
102.066
109.039
112.288
100.092
14.5944
1.19986
0.330425
0.334361
-0.16186
92.0791
96.4775
103.196
115.671
0.139863
0.141889
0.132918
0.125691
0.125884
0.127765
0.118619
0.168645
0.123313
0.101492
25.6834
80.2723
92.6853
97.1596
100.723
105.679
107.444
100.283
110.174
113.878
103.163
12.3339
0.998228
0.381771
0.307735
0.0940577
94.0341
95.8762
102.746
115.778
0.146369
0.134112
0.124375
0.128249
0.121393
0.119958
0.115928
0.1321
0.128774
0.0951144
0.0605173
5.94755
96.6837
97.9336
101.13
107.535
108.823
100.207
111.625
115.213
106.101
7.52062
0.829522
0.401278
0.294949
0.123534
51.6366
95.1724
102.211
115.499
0.130364
0.128493
0.1265
0.124826
0.126364
0.653167
0.106519
0.116195
0.115984
0.0627101
0.0169272
0.11707
101.423
97.8415
101.643
108.568
108.822
101.369
113.475
115.185
106.718
2.63077
0.717487
0.404455
0.287097
0.136894
0.0264176
94.6646
101.566
114.444
94.1536
81.1801
23.5557
-0.0514176
0.0139539
0.0160214
0.0419918
0.167973
-0.491763
91.4479
112.104
116.363
110.435
107.487
101.755
89.6801
59.7503
0.245628
0.0296843
0.0378075
0.0677211
0.119948
0.15507
0.167198
0.15385
0.151144
0.141231
0.127262
0.122395
0.119471
102.838
93.6975
1.0808
-0.0593456
0.0103898
0.0154474
0.0429981
0.153143
-0.166347
13.6418
117.476
116.715
109.845
109.028
100.081
84.5915
0.0992931
0.280828
0.017114
0.025602
0.0471182
0.103156
0.146067
0.162696
0.147407
0.131511
0.128198
0.119059
0.115212
0.118071
98.6316
102.019
-0.135114
-0.0632126
0.00721505
0.015179
0.0454479
0.144299
-0.180251
27.3138
120.982
119.242
110.292
110.088
95.6325
4.28904
0.112483
0.660312
0.01576
0.0162444
0.0317126
0.0855723
0.131232
0.158505
0.138515
0.125033
0.115815
0.107189
0.102833
0.11177
103.964
113.221
-0.118056
-0.0637435
0.00442485
0.0150411
0.0472519
0.127121
-0.595336
-1.34499
120.422
122.109
111.706
112.719
87.6749
0.0403987
0.476137
0.0838058
0.0184089
0.0277187
0.0495769
0.0718321
0.119058
0.136207
0.129059
0.11407
0.10238
0.0924286
0.0831836
0.091806
74.0679
3.48546
-0.113424
-0.0619966
0.00200709
0.0149659
0.0450214
0.0805162
-1.3871
2.12482
120.077
123.662
113.707
115.703
60.536
-0.0332937
0.322912
0.0800691
0.0222478
0.0228587
0.0272516
0.0597895
0.103502
0.123294
0.113923
0.0999483
0.0876666
0.0775016
0.0657733
2.02579
0.00519176
0.102208
-0.108724
-0.0591003
-4.80816e-05
0.0149622
0.0439831
0.0555201
-0.889697
0.439686
119.793
123.779
115.273
120.896
-0.383177
-0.0325555
0.115633
0.0749381
0.0246867
0.0206081
0.0279088
0.0581717
0.0908372
0.10469
0.0965697
0.0836582
0.0727227
0.0642653
0.0575619
0.0370043
-0.00946796
0.0368047
-0.101182
-0.0556392
-0.00176787
0.0150281
0.0413022
0.0263619
-0.920431
0.382879
129.176
124.901
117.311
124.816
0.105953
-0.0422505
0.0567323
0.0686904
0.0245556
0.108755
0.0269284
0.0555347
0.115132
0.095045
0.0786449
0.0665884
0.059411
0.0634229
0.053955
0.0584824
-0.0179087
0.0368247
-0.0917211
-0.0521328
-0.00317161
0.0151404
0.0364395
0.0218169
-0.645636
2.35759
132.419
129.667
118.138
-0.228043
0.235877
-0.0212836
0.0423613
0.0617357
0.0211843
0.0989326
0.0223298
0.184237
0.21292
0.0706344
0.0624048
0.0506862
0.0446527
0.044336
0.0466063
0.0502559
-0.0113472
0.0313886
-0.0816853
-0.0490729
-0.00424546
0.0152821
0.0367413
0.0481783
-0.351767
2.7466
90.7884
132.276
2.74683
-0.153439
0.195539
-0.017709
0.036317
0.0426749
0.0918112
0.0309004
0.0157104
0.226332
0.253587
0.0589592
0.0495364
0.0385855
0.0329113
0.0348909
0.0370444
0.0413056
-0.00671311
0.0306034
-0.0718969
-0.0462784
-0.00501343
0.0154291
0.0448404
0.0504412
-0.0584011
4.48425
-1.31708
69.3549
-0.18781
-0.0979618
0.0935334
-0.0263306
0.0365357
0.0916636
0.0862349
0.0377138
0.0320558
0.0419188
0.0584635
0.0516289
0.040964
0.0302935
0.025053
0.0249689
0.0276882
0.0334884
-0.004497
0.0149786
-0.062834
-0.0434485
-0.00551901
0.0155424
0.0371715
0.0514854
0.0842737
3.32657
-0.655872
-0.352192
-0.175137
-0.123552
-0.0530295
-0.0499214
0.0410116
0.0522881
0.0568313
0.0456075
0.0461172
0.0516556
0.0590324
0.0475576
0.0355499
0.0254434
0.0208919
0.0224298
0.0369674
0.0295173
-0.00378872
0.010203
-0.0548566
-0.0404357
-0.00576549
0.015576
0.0364705
0.0572589
0.0548183
4.2372
-0.463275
-0.378077
-0.160691
-0.105441
-0.0974655
-0.101295
0.0619073
0.0595004
0.0619194
0.0586093
0.0618524
0.0581471
0.059098
0.0466174
0.0351784
0.0252773
0.0196829
0.0191174
0.026209
0.0266808
-0.00426449
0.00640018
-0.0482075
-0.0371789
-0.00577979
0.0155134
0.0366111
0.0645669
0.0403955
0.182801
-0.466988
-0.370038
-0.121174
-0.0754766
-0.133779
-0.0678943
0.0760928
0.0634713
0.0648728
0.219891
0.0665866
0.0616426
0.0578046
0.0476028
0.0374667
0.0294124
0.0237722
0.0226333
0.0246256
0.0284827
-0.00490817
0.00357623
-0.0428669
-0.0337746
-0.0055851
0.0153617
0.0362692
0.0715205
0.0587162
0.215737
-0.362917
-0.256362
0.116137
-0.0265524
-0.137515
2.27871
0.0797555
0.069389
0.0699543
0.114706
0.0704246
0.0693932
0.0553349
0.0492993
0.0402049
0.0335125
0.0293854
0.028425
0.0298105
0.0330101
-0.00551049
0.00102892
-0.0386484
-0.0303858
-0.00517525
0.0151209
0.0348984
0.0842305
0.0720028
0.14502
-0.259282
-0.279183
-0.0720852
-0.0210431
-0.0970318
0.286596
0.03867
0.0653043
0.0712459
0.0769804
0.0715823
0.0663013
0.069492
0.0615426
0.0407415
0.0376696
0.0354939
0.035417
0.0361501
0.039295
-0.00706271
-0.00297515
-0.0352821
-0.027095
-0.00459458
0.0148017
0.0340231
0.0702691
0.0723298
0.0177323
-0.178838
-0.24362
-0.075948
-0.0572269
0.0145174
0.00536052
0.0365507
0.05648
0.0687237
0.0690892
0.0685996
0.0634802
0.0556489
0.0450403
0.0411008
0.0413686
0.0434151
0.0475022
0.0464242
0.0207117
-0.00832029
-0.00517001
-0.0324333
-0.0239676
-0.00391287
0.0144002
0.0328547
0.061874
0.0586848
-0.0670171
-0.0859207
-0.131118
-0.089009
-0.0645238
-0.0510463
0.0814068
0.0358146
0.0480521
0.0657055
0.0588314
0.0588208
0.0578762
0.0510944
0.0444346
0.0415047
0.0415618
0.0417858
0.0373828
0.43786
0.488875
-0.00934699
-0.00707358
-0.0298607
-0.0210462
-0.00318333
0.0138856
0.0311999
0.0541275
0.0449164
-0.0444631
0.00979749
-0.0656371
-0.0900442
-0.07297
-0.0560256
0.055593
0.0232386
0.036148
0.0465298
0.0476122
0.0487929
0.0498189
0.0468235
0.0443321
0.039902
0.0388994
0.0346408
0.0275945
0.0384291
0.0614029
-0.0125885
-0.00967629
-0.0275292
-0.018326
-0.00244423
0.0132371
0.0292034
0.0463615
0.0294245
-0.0231746
0.0968303
-0.0361684
-0.0943908
-0.0984512
-0.0661137
-0.0362764
0.0040037
0.0221445
0.0316291
0.0366932
0.093674
0.0446038
0.0400735
0.0386103
0.0462627
0.0481025
0.0406756
0.0437068
0.0492668
0.0555099
-0.0194047
-0.015568
-0.0253819
-0.0158061
-0.00172379
0.0124419
0.0263926
0.0398172
0.0241113
-0.0080259
0.0284968
-0.0241628
-0.110918
-0.133284
-0.10084
-0.0498662
-0.0143607
0.00834114
0.0204226
0.0275839
0.0670844
0.0884199
0.0314867
0.0333813
0.0353008
0.0369075
0.0401224
0.0435934
0.0470262
0.0502615
-0.035634
-0.0264071
-0.0233229
-0.0134751
-0.00105799
0.0114814
0.0234253
0.031253
0.0211472
0.00665923
0.0160447
-0.0151164
-0.134467
-0.167892
-0.140533
-0.0781082
-0.025126
0.000554129
0.0100895
0.0173754
0.02091
0.0230223
0.0257558
0.0280327
0.0303752
0.032932
0.0357046
0.0385407
0.0412619
0.0438309
-0.0674821
-0.049932
-0.0211397
-0.0113194
-0.000479428
0.0103478
0.0199
0.0249089
0.0188444
0.0108479
-0.00196428
0.0545695
-0.141105
-0.182979
-0.164994
-0.0982493
-0.0400753
-0.00664174
0.00209134
0.00855706
0.0126971
0.0160729
0.0190436
0.0216812
0.0242539
0.0268911
0.0294845
0.0319484
0.034268
0.0364087
-0.0414105
-0.0836395
-0.0184775
-0.00934168
-1.27767e-05
0.00904849
0.0161957
0.0188861
0.01512
0.00641342
-0.0210922
0.667297
-0.11909
-0.167939
-0.154714
-0.0958168
-0.0390094
-0.0109965
0.00246969
0.0013206
0.00384038
0.00634403
0.00906498
0.0118566
0.0145642
0.0171653
0.0195785
0.0217482
0.0237001
0.0253895
-0.0145159
-0.0397235
-0.0151963
-0.00754021
0.000323616
0.00758124
0.0157733
0.0124921
0.00970369
-0.00472463
-0.0277385
-0.0555712
-0.0985336
-0.126183
-0.111594
-0.0643907
-0.0238216
-0.00476884
-0.00326973
-0.00546598
-0.00723838
-0.00775537
-0.00699646
-0.00501686
-0.00250921
-1.99584e-07
0.00215346
0.0038869
0.00522433
0.00610924
-0.00230842
-0.0137193
-0.011719
-0.00591131
0.000522822
0.00597833
0.00829872
0.00470993
0.045423
-0.024877
-0.0431493
-0.0571368
-0.078915
-0.0651888
-0.0667782
-0.0104381
0.192675
-0.00960968
0.0178771
0.00946902
-0.0219421
-0.0269147
-0.0299142
-0.0309447
-0.0264387
-0.0278177
-0.0259258
-0.0243208
-0.0232366
-0.0227122
0.00183595
-0.00296316
-0.00862459
-0.00445363
0.000596063
0.00426534
0.00360859
-0.00308438
0.00475078
-0.0679353
-0.0626824
-0.0584855
-0.0598803
-0.0208869
-0.0513241
-0.0305435
-0.0183662
-0.0188209
-0.0253643
-0.0323562
-0.0411128
-0.0446713
-0.0491334
-0.0595172
-0.0569069
-0.0609383
-0.0594428
-0.0567702
-0.0551047
-0.0541275
0.00246537
0.000710683
-0.00608042
-0.00317773
0.0005743
0.00259691
-0.000257041
-0.00959701
-0.020235
-0.146998
-0.0942775
-0.0564008
-0.0471277
-0.0439543
-0.0412521
-0.0331528
-0.0277803
-0.027701
0.00874805
-0.0406769
-0.0553545
-0.0675842
-0.0729498
-0.075729
-0.0780149
-0.0756289
-0.049581
-0.072506
-0.0732721
-0.0738154
0.00186231
0.00143546
-0.0040234
-0.00209197
0.000501107
0.00122759
-0.00306643
-0.0184287
-0.0042818
-0.17546
-0.0832576
-0.0524702
-0.0377012
-0.0322221
0.156143
-0.0252869
-0.0252351
-0.0296809
0.0277219
-0.0397838
-0.025588
0.044704
-0.0605526
-0.0679048
-0.0713274
-0.0745915
-0.0635466
-0.0771714
-0.078288
-0.0790967
0.000985088
0.000954736
-0.00238711
-0.00119295
0.000413244
0.000375202
-0.00404828
-0.0173422
-0.0329673
-0.0959931
-0.0832854
-0.0457206
-0.0324039
-0.025886
-0.0231645
-0.0182984
-0.0225566
-0.0288298
-0.0355327
-0.0402424
-0.0391097
-0.036063
-0.0364927
0.0329525
-0.0643743
-0.0436349
-0.0659596
-0.0625074
-0.0615983
-0.0561005
0.000111951
0.000367848
-0.00104422
-0.000474244
0.000285034
0.000107274
-0.0026398
-0.010675
-0.00842435
-0.038405
-0.0477674
-0.0411909
-0.031911
-0.0240087
-0.0186773
-0.0158462
-0.0157379
-0.0195693
-0.0223971
-0.0189256
-0.0203838
-0.023606
-0.0253738
-0.0254839
-0.00805663
-0.00433472
-0.0229971
-0.0258808
-0.0279053
-0.029561
0.378176
0.120878
0.119904
0.119046
0.116446
0.108204
0.0994807
0.101409
0.0973218
0.0371043
-0.0157587
0.0553905
-0.0625238
92.6191
101.461
110.144
107.524
100.932
115.128
114.547
105.678
3.08377
0.680004
0.399512
0.280231
0.144745
0.049781
42.8443
101.007
112.027
0.12762
0.117564
0.114039
0.114945
0.111661
0.102384
0.0952353
0.0940731
0.0845054
0.0295836
-0.0250133
0.0339818
-0.0124811
4.73065
100.785
111.221
108.209
100.717
115.521
115.313
115.963
3.43712
0.684087
0.395096
0.276187
0.148022
0.0542994
0.132805
100.728
110.123
0.12337
0.112971
0.110201
0.110585
0.105272
0.0962666
0.0902061
0.0869205
0.076025
0.0265329
-0.0272448
0.0213827
0.136535
0.194815
100.188
111.777
108.311
99.73
115.58
116.831
127.19
3.82699
0.686763
0.389374
0.271664
0.150845
0.0559651
0.0930138
92.5579
107.996
0.125743
0.110297
0.110918
0.177495
0.0937606
0.0896642
0.0848367
0.0802058
0.069391
0.0278795
-0.0232874
0.0267923
0.0878492
0.155925
0.00306456
114.3
108.135
99.4633
116.07
118.337
129.014
7.80099
0.669848
0.381957
0.266575
0.153067
0.0570926
0.0721325
-0.0117504
106.107
3.48847
0.104061
0.0981385
0.149248
0.0755345
0.0835288
0.0799099
0.0740447
0.0648435
0.0322219
-0.00742353
0.0175911
0.0483982
0.113817
0.266876
113.347
109.255
101.928
119.037
119.722
133.274
-1.63567
0.634457
0.372419
0.260761
0.154511
0.0587363
0.0587583
-0.00103067
104.967
0.915492
0.0749344
0.0855738
0.0835254
0.0738713
0.0937445
0.0760908
0.0682057
0.0618216
0.0390652
0.012658
0.0200524
0.038278
0.13087
0.27188
-0.253898
108.842
105.656
122.923
123.132
50.8439
-1.16612
0.584223
0.360687
0.254104
0.154982
0.0609593
0.0507531
0.00142423
1.1689
0.0583304
0.0630655
0.0720587
0.0734888
0.0719805
0.0891836
0.0736761
0.0617544
0.0601955
0.0447129
0.0274588
0.0248864
0.0260637
0.0646841
0.105416
-0.253864
-0.249161
101.103
124.917
124.423
3.11593
-0.951704
0.527948
0.346366
0.246585
0.154419
0.0635652
0.0460668
0.00813627
0.11562
0.0531684
0.0581817
0.0628516
0.0652885
0.0577365
0.0859048
0.0682572
0.0631815
0.0590131
0.0467916
0.0387609
0.0439393
0.0207964
0.0184484
0.0365303
-0.269868
-0.249446
-0.309916
125.772
124.788
-0.979465
-0.909404
0.464233
0.329655
0.238193
0.152894
0.0662863
0.0434576
0.0132877
0.0983497
0.0454675
0.0502461
0.0556768
0.0620382
0.491914
2.01812
0.0549404
0.059083
0.0625146
0.0453516
0.0428039
0.0309027
0.00440288
-0.0237244
1.363
-0.483273
-0.241842
-0.315965
-0.390086
-0.461313
-1.03598
-0.828713
0.404538
0.309679
0.228896
0.150471
0.0688735
0.0422333
0.0184654
0.0779737
0.0381317
0.0431396
0.049024
0.0507691
0.0159251
0.054881
0.0519526
0.0517071
0.0452897
0.0413143
0.0441096
0.0274483
-0.00253675
-0.0514497
1.65922
-0.508281
0.0334777
-0.314421
-0.393773
-0.514161
-0.825344
-0.788151
0.332684
0.287562
0.218666
0.147151
0.0711601
0.0421823
0.0235253
0.0599475
0.0335343
0.0384159
0.043193
0.0514821
0.0479334
0.0510674
0.0505896
0.047647
0.0424083
0.0394099
0.0911432
0.0241941
-0.00382637
-0.0375397
0.468399
-0.125223
0.0866468
-0.312976
-0.383949
-0.506043
-0.672816
-0.718578
0.262641
0.263255
0.207476
0.142969
0.072966
0.0430375
0.0276808
0.0446779
0.0315917
0.0369237
0.0428669
0.0488983
0.058936
0.0506977
0.0491287
0.0448968
0.040157
0.0357377
0.0848783
0.0238572
-0.00455553
-0.0223144
0.0373105
-0.17732
-0.161759
-0.272327
-0.389016
-0.489683
-0.605583
-0.604989
0.206353
0.237224
0.195351
0.137994
0.074151
0.0443015
0.031523
0.0313938
0.0331963
0.0385694
0.0444547
0.0499311
0.0768242
0.0512069
0.049903
0.0438144
0.0398466
0.0369444
0.0282965
0.0201096
-0.00470147
-0.0202246
-0.0464209
-0.169339
-0.156829
-0.300597
-0.409917
-0.381726
-0.463726
-0.524553
0.140628
0.210128
0.182372
0.132275
0.0746359
0.0455234
0.0345848
0.0238948
0.037217
0.042297
0.0488481
0.0550649
0.0578835
0.0599338
0.0627883
0.0644891
0.0427165
0.0372389
0.0261945
0.0156462
-0.00459969
-0.0285074
-0.0728915
-0.157989
-0.240351
-0.268856
-0.351842
-0.484032
-0.0798455
-0.473316
0.090038
0.18269
0.168622
0.125867
0.0743526
0.0464554
0.036685
0.020276
0.0409205
0.0484612
0.0606294
0.0627325
0.0671512
0.0602392
0.058258
0.0685031
0.0431715
0.0361044
0.0257066
0.0385783
0.0156706
-0.0331908
-0.0791919
-0.163166
-0.23373
-0.227692
-0.207137
-0.450592
-0.0555432
-0.371766
0.0430116
0.155706
0.154232
0.118845
0.0732798
0.0469097
0.0377504
0.0190182
0.0413438
0.0564674
0.0649471
0.0685891
0.0641218
0.0586929
0.0521594
0.0418363
0.0472911
0.0398046
0.0261708
0.0451052
0.00336112
-0.0363645
-0.0856146
-0.166491
-0.234243
-0.0468377
-0.258786
-0.397475
0.0975601
-0.318543
0.0111846
0.129997
0.139407
0.111288
0.0714766
0.0467411
0.0377884
0.0187233
0.0549624
0.0692324
0.0735066
0.0691915
0.0588793
0.0596776
0.0614784
2.86781
0.0630152
0.0507156
0.0301977
0.0109881
0.0176613
-0.0356079
-0.0863813
-0.177917
-0.238159
0.0410112
-0.263583
-0.398378
-0.222548
-0.22392
-0.0115222
0.106303
0.124387
0.103283
0.0690151
0.0459031
0.0368936
0.0184917
0.0686918
0.0707896
0.0706233
0.101453
0.139561
0.0727523
0.123441
0.0705838
0.0658223
0.0527357
0.0352988
0.0124243
-0.0115563
-0.00180857
-0.0442577
-0.176367
-0.228877
-0.0851929
-0.279596
-0.389017
1.04803
-0.0575605
-0.0205565
0.0851972
0.109452
0.0949166
0.0659781
0.0444701
0.0352436
0.0179251
0.0600077
0.0630362
0.0657563
0.0730013
0.0717483
0.0746825
0.0806501
0.0759206
0.0776877
0.0587183
0.0399195
0.0128151
-0.0216614
0.0129303
-0.0971236
-0.170494
-0.220082
-0.285103
0.549264
-0.325701
-0.286505
-0.114307
-0.0228207
0.0669661
0.0948946
0.086266
0.0624507
0.0425738
0.033052
0.0169285
0.0533581
0.0566727
0.0606776
0.068055
0.0709187
0.0769413
0.089713
0.0753852
0.0694545
0.0583062
0.0387583
0.00815755
-0.0304363
-0.0668589
-0.109842
-0.163717
-0.212012
-0.222471
0.897296
-0.228898
0.191469
-0.108817
-0.0228084
0.0516031
0.0809806
0.0774439
0.0584643
0.040391
0.0305639
0.0155931
0.0463747
0.0491044
0.0522141
0.0558936
0.0604989
0.0651211
0.0675272
0.0657337
0.0596945
0.0475328
0.0235904
-0.0126147
-0.0543689
-0.0949198
-0.133989
-0.171961
-0.194949
-0.204101
-0.151951
0.107415
0.0397307
-0.0872226
-0.0219286
0.0388445
0.0679458
0.068578
0.0540426
0.0380815
0.0280404
0.0140803
0.0384551
0.0405517
0.0426389
0.0443588
0.0447984
0.0432196
0.0448449
0.0419025
0.033663
0.0165552
0.000651485
-0.0590582
-0.105438
-0.146744
-0.171814
-0.186062
-0.18045
-0.172538
-0.151429
0.23183
-0.023543
-0.0690504
-0.0212774
0.028299
0.0559682
0.0597992
0.049243
0.0356227
0.0256413
0.0125327
0.0268364
0.0280886
0.0288396
0.0283729
0.0263025
0.0442689
0.0700416
0.00438326
-0.0136406
-0.043114
-0.082773
-0.144684
-0.185523
-0.231922
-0.237948
-0.210329
-0.175798
-0.140838
-0.121638
0.172044
-0.0464257
-0.0607026
-0.021541
0.0195898
0.0451534
0.0512498
0.0441186
0.0328621
0.0233095
0.0110304
0.00652849
0.006456
0.00545087
0.00268603
-0.0027186
-0.0104241
-0.0220536
-0.0406511
-0.0717851
-0.120022
-0.183946
-0.205281
-0.248016
-0.381216
-0.33936
-0.234625
-0.176384
-0.120105
-0.0814505
0.574759
-0.0803216
-0.0638602
-0.0229662
0.0124149
0.0355656
0.0430541
0.0387415
0.0297192
0.0209075
0.00959823
-0.0227283
-0.023392
-0.0251178
-0.0285109
-0.0344672
-0.0442974
-0.059429
-0.080171
-0.119208
-0.174946
-0.252737
-0.344704
-0.427848
-0.482408
-0.444545
-0.311936
-0.165071
-0.0935433
-0.0388327
0.0765703
-0.160109
-0.0745914
-0.0250235
0.00664926
0.0272341
0.0353192
0.033205
0.026202
0.0183616
0.00822687
-0.0541505
-0.0547447
-0.0564103
-0.0596683
-0.0652659
-0.0743872
-0.0889964
-0.111966
-0.145959
-0.195938
-0.264719
-0.352225
-0.440192
-0.501997
-0.468689
-0.32512
-0.164008
-0.0648675
-0.00636215
0.0868827
-0.365898
-0.0675409
-0.00173022
0.00236908
0.0201604
0.0281347
0.0275874
0.0223506
0.0156515
0.00689065
-0.0745989
-0.0756498
-0.0773601
-0.0798599
-0.084868
-0.0920485
-0.103019
-0.119774
-0.145051
-0.180725
-0.225896
-0.285016
-0.343699
-0.352452
-0.331781
-0.250211
-0.117213
-0.037031
0.00763289
0.606951
0.00138235
-0.0429774
0.000754592
-0.000387493
0.0143307
0.0215335
0.0219496
0.0182112
0.0127735
0.00556048
-0.0803583
-0.0828801
-0.0863508
-0.0875003
-0.0893941
-0.0936671
-0.100927
-0.112382
-0.126095
-0.141528
-0.0945539
-0.180114
-0.162043
-0.203139
-0.178789
-0.115388
-0.0508967
-0.0150119
0.0045087
0.000606816
-0.0202617
-0.0253589
-0.0194074
-0.00161823
0.00969134
0.0154971
0.0163287
0.0138219
0.00972367
0.00420947
-0.0525128
0.0112222
0.00858441
-0.0655118
-0.0720453
-0.0750917
-0.0791556
-0.0849563
-0.0911474
-0.0899768
-0.0543032
-0.0801886
0.036454
-0.0749339
-0.0556003
-0.0271396
0.00564687
0.00242434
0.00356051
-0.00207617
-0.010068
0.0241502
-0.0117534
-0.000722962
0.00601852
0.00992229
0.0107049
0.00919467
0.00648989
0.0028111
-0.0312822
-0.03321
-0.0268463
-0.0388981
-0.0380983
-0.0401707
-0.0395323
-0.0471426
-0.0473084
0.0436295
-0.0384067
-0.0320348
-0.0178796
0.0049561
0.0346802
0.00472343
0.0164347
0.0085043
0.00394795
-0.00112127
-0.00317526
-0.00645517
-0.00381564
0.000248202
0.00284454
0.00459197
0.00499104
0.00430349
0.0030451
0.0013371
91.6089
88.8813
88.1525
86.7325
84.814
83.4962
83.5371
85.8782
89.9905
93.8151
96.2157
97.2294
97.2852
96.8065
96.0942
95.3274
94.5998
93.9534
93.4027
92.9469
92.578
92.2853
92.0575
91.8846
91.7572
91.6671
91.6072
91.5711
91.5535
91.5499
93.5001
89.3018
88.329
87.2023
85.2797
83.7297
83.3177
85.0166
88.8865
92.9868
95.7861
97.1124
97.3594
96.9746
96.2933
95.5216
94.7719
94.097
93.5169
93.0339
92.6412
92.3283
92.0837
91.8969
91.7581
91.6589
91.5918
91.5501
91.5283
91.5215
93.5886
89.27
88.3294
87.2126
85.2749
83.7097
83.2577
84.921
88.8419
93.0156
95.8509
97.1784
97.4115
97.0102
96.3134
95.5274
94.7645
94.078
93.4885
92.9983
92.6002
92.2836
92.0364
91.8478
91.7078
91.6079
91.5404
91.4986
91.4768
91.4702
93.7262
89.2244
88.331
87.2286
85.2665
83.6778
83.1646
84.7697
88.7652
93.0486
95.9408
97.2763
97.4935
97.0705
96.3521
95.5446
94.7607
94.0554
93.4504
92.9484
92.5416
92.2186
91.967
91.7755
91.6337
91.5328
91.4648
91.423
91.4013
91.3949
93.9073
89.1653
88.3342
87.2504
85.2543
83.6342
83.0385
84.561
88.6588
93.0914
96.0579
97.4049
97.6029
97.1529
96.4063
95.5704
94.7586
94.0281
93.4026
92.8846
92.466
92.1344
91.8767
91.6809
91.5364
91.4339
91.3652
91.323
91.3013
91.2949
94.1286
89.0923
88.3397
87.2784
85.2382
83.5798
82.8797
84.2895
88.5204
93.1454
96.2045
97.5648
97.7378
97.2533
96.4717
95.6011
94.7556
93.9946
93.3438
92.8064
92.3731
92.0307
91.7651
91.5638
91.4153
91.3101
91.2396
91.1965
91.1745
91.1682
94.4025
89.0051
88.3485
87.3128
85.2179
83.5153
82.6887
83.9483
88.3469
93.2114
96.3824
97.757
97.8976
97.3698
96.5462
95.6353
94.7506
93.9538
93.2733
92.7128
92.2622
91.9069
91.6317
91.4232
91.2694
91.1601
91.0868
91.0419
91.0191
91.0128
94.7419
88.9035
88.3615
87.3543
85.1933
83.442
82.4665
83.5283
88.1343
93.2906
96.5937
97.9833
98.0826
97.5019
96.6292
95.6725
94.7431
93.9048
93.1898
92.6027
92.1322
91.7619
91.4755
91.2583
91.0977
90.9831
90.9057
90.8581
90.8339
90.8276
95.1644
88.7876
88.3801
87.4036
85.1641
83.3613
82.215
83.0178
87.8781
93.385
96.8407
98.2456
98.2931
97.649
96.72
95.7121
94.7324
93.8463
93.0916
92.4745
91.9816
91.5944
91.2951
91.068
90.8995
90.7786
90.696
90.6444
90.6181
90.6114
95.6289
88.6575
88.4056
87.4613
85.1301
83.2746
81.9367
82.4009
87.5727
93.4967
97.1263
98.546
98.5296
97.8106
96.8179
95.7535
94.7176
93.7765
92.9766
92.3261
91.8085
91.4026
91.0889
90.8508
90.6739
90.546
90.4575
90.4009
90.3706
90.3626
96.1472
88.5137
88.4398
87.5284
85.0907
83.1838
81.6361
81.6571
87.2122
93.628
97.4538
98.8872
98.7928
97.9856
96.9215
95.7957
94.6978
93.6935
92.8423
92.1552
91.6108
91.1844
90.8549
90.6051
90.4193
90.2847
90.1904
90.1279
90.0911
90.0769
96.7391
88.3566
88.4845
87.606
85.0454
83.0908
81.3191
80.7584
86.7902
93.7816
97.8268
99.2727
99.0834
98.1728
97.0293
95.8378
94.6719
93.5945
92.6855
91.9591
91.3859
90.9373
90.5907
90.3282
90.1337
89.993
89.8938
89.8259
89.782
89.7562
97.4235
88.1865
88.5418
87.6953
84.9934
82.9975
80.9942
79.6655
86.3008
93.9603
98.2495
99.7061
99.4022
98.3705
97.1392
95.878
94.6388
93.476
92.5022
91.7346
91.1313
90.6585
90.2929
90.0166
89.8133
89.6677
89.5654
89.4942
89.4448
89.4155
98.2201
88.004
88.6143
87.7978
84.9339
82.9059
80.6725
78.3195
85.74
94.1666
98.7266
100.192
99.7502
98.5765
97.2485
95.9143
94.5972
93.3332
92.2876
91.4782
90.8439
90.345
89.9576
89.6655
89.4527
89.3028
89.1999
89.1298
89.0806
89.1366
99.1532
87.8099
88.7044
87.9154
84.8656
82.8174
80.369
76.6333
85.1108
94.4028
99.2629
100.737
100.129
98.7879
97.3538
95.9436
94.5449
93.1591
92.0364
91.186
90.5207
89.9932
89.5802
89.2688
89.0443
88.8894
88.7864
88.7198
88.6779
88.6544
100.252
87.6063
88.8146
88.0504
84.7874
82.7325
80.1075
74.5409
84.4253
94.6702
99.8633
101.346
100.54
99.0004
97.4506
95.9617
94.4758
92.9426
91.7436
90.8535
90.1586
89.5997
89.1552
88.8193
88.5796
88.4176
88.3135
88.2505
88.2157
88.2004
101.553
87.3959
88.9466
88.2054
84.6978
82.6505
79.9048
71.9958
83.6888
94.9719
100.533
102.027
100.986
99.2084
97.5328
95.9635
94.3717
92.6586
91.4037
90.4746
89.7549
89.1617
88.6767
88.3083
88.0494
87.8789
87.7744
87.7171
87.6924
87.6898
103.098
87.1831
89.1017
88.3836
84.5955
82.5686
79.795
68.8204
82.904
95.3162
101.277
102.789
101.47
99.4033
97.5898
95.9444
94.18
92.251
91.0052
90.0409
89.3081
88.6783
88.1382
87.725
87.4425
87.2644
87.1638
87.1193
87.1129
87.1304
104.94
86.975
89.2809
88.5882
84.4789
82.4818
79.8545
64.8227
82.1313
95.6992
102.101
103.639
101.996
99.5718
97.601
95.9011
93.7975
91.7505
90.5283
89.5403
88.8193
88.1533
87.5331
87.0539
86.7436
86.5644
86.4793
86.4626
86.49
86.5407
107.146
86.7832
89.4845
88.8224
84.3468
82.3755
80.2052
59.875
81.477
96.0743
103.014
104.586
102.568
99.6931
97.5749
95.8311
93.1966
91.3113
89.9497
88.9531
88.2945
87.601
86.858
86.2744
85.9319
85.7676
85.7191
85.7527
85.8347
85.9358
109.796
86.627
89.7119
89.0878
84.2025
82.2234
80.9661
54.759
81.2225
96.3764
104.017
105.637
103.19
99.7337
97.6682
95.7334
92.5394
90.9159
89.2503
88.2467
87.7524
87.0518
86.1186
85.3696
84.9802
84.8485
84.863
84.9756
85.1414
85.3196
112.994
86.5382
89.9618
89.3821
84.0659
81.9866
82.205
44.8488
82.4517
96.5717
105.112
106.792
103.865
99.6311
97.9001
95.6032
92.0451
90.5211
88.4084
87.3773
87.2402
86.5308
85.3049
84.3278
83.8601
83.7604
83.8679
84.1021
84.3984
84.6987
116.864
86.5678
90.2326
89.6984
84.0726
81.581
83.6183
1.08405
86.0143
96.586
106.303
108.046
104.582
99.2484
98.2273
95.5178
91.8336
90.1697
87.3575
86.1032
86.7109
86.0144
84.3448
83.0716
82.4965
82.4426
82.6825
83.0939
83.5875
84.0776
121.56
86.795
90.5223
90.0416
84.3902
80.8797
38.6195
0.90341
90.8021
96.1038
107.603
109.381
105.305
98.261
98.8599
95.5915
91.9186
89.9336
85.8524
83.2768
85.768
85.485
83.1935
81.4936
80.797
80.8429
81.2552
81.8964
82.6836
83.4618
127.263
87.3407
90.8275
90.5775
84.3784
80.048
-0.0566405
0.539291
12.4409
94.9361
109.053
110.771
105.895
96.0285
99.5424
95.8375
92.2454
89.8978
83.7832
78.4822
84.3477
84.914
81.7028
79.4885
78.583
78.9053
79.5083
80.3775
81.667
82.877
134.177
88.3818
91.1362
91.3897
84.498
-0.00498346
0.0203024
0.397136
4.89395
94.1871
110.727
112.169
106.072
92.8677
100.298
96.1379
92.6973
90.2161
82.8852
73.9628
84.0538
84.4533
79.0836
77.4953
67.8732
60.2053
60.9568
65.7757
74.8656
80.6794
142.511
90.1627
91.4212
92.7585
8.55428
0.0156724
0.0539509
0.381437
2.59122
94.9158
112.671
113.504
106.199
92.2689
101.388
96.312
93.0701
91.0951
84.9703
74.2356
76.2039
1.74622
0.183792
0.192229
0.158242
0.159066
0.15547
0.14849
0.139305
0.132794
152.438
92.9684
91.6237
94.6782
0.0322125
0.0233368
0.0622571
0.362039
0.734436
95.9394
114.555
114.717
106.949
95.092
102.689
96.2769
93.2645
92.0452
88.5382
0.133497
0.144756
0.163143
0.171691
0.17217
0.162296
0.158275
0.15502
0.172382
0.139803
0.142114
163.928
96.9859
91.3938
3.53232
0.0256542
0.0238554
0.0634825
0.313894
0.993342
97.5584
116.816
115.775
107.491
100.187
102.844
95.8626
93.3952
93.0782
0.0317766
0.101386
0.140318
0.158662
0.168892
0.168869
0.160858
0.167618
0.156291
0.141528
0.134995
0.156789
176.714
102.199
78.7189
0.0145792
0.0195495
0.0228654
0.0646442
0.251764
1.07204
97.0464
118.986
116.8
106.533
104.841
101.898
94.3314
94.9107
0.147246
0.0368144
0.0709591
0.110298
0.147031
0.165265
0.167599
0.156609
0.160009
0.156436
0.132842
0.128441
0.125372
91.5576
91.579
91.6181
91.68
91.7707
91.8973
92.0682
92.2937
92.5851
92.9543
93.4111
93.959
94.5887
95.2701
95.9438
96.51
96.8074
96.5792
95.4731
93.1271
89.453
85.3181
82.6599
82.4903
84.4606
88.5286
94.4269
100.908
106.805
110.047
91.5266
91.5443
91.5788
91.6347
91.7179
91.8352
91.9949
92.2069
92.4825
92.8339
93.272
93.8022
94.4193
95.0988
95.7887
96.4001
96.7899
96.7274
95.8785
93.8642
90.4721
86.2563
83.0442
82.2949
83.7757
87.3225
92.87
99.3177
105.452
109.664
91.4754
91.4933
91.5279
91.584
91.6674
91.7851
91.9458
92.1595
92.4381
92.7942
93.239
93.7787
94.408
95.102
95.807
96.4328
96.8357
96.7844
95.9404
93.9126
90.4707
86.1809
82.9467
82.2381
83.7376
87.2925
92.8597
99.3181
105.463
109.697
91.4002
91.4182
91.4528
91.509
91.5925
91.7107
91.8727
92.0893
92.3728
92.7366
93.1925
93.7475
94.397
95.1152
95.8454
96.4934
96.9129
96.8722
96.0293
93.9755
90.4568
86.0562
82.7949
82.1509
83.6776
87.2453
92.8444
99.3203
105.483
109.753
91.3005
91.3187
91.3535
91.4097
91.4934
91.6125
91.7764
91.997
92.2875
92.6619
93.1329
93.7088
94.3857
95.1369
95.9013
96.5786
97.0184
96.9887
96.145
94.0562
90.435
85.8833
82.5878
82.0338
83.5956
87.1805
92.8242
99.3244
105.511
109.833
91.174
91.1927
91.228
91.2847
91.3691
91.4895
91.6563
91.8823
92.1817
92.5695
93.0597
93.6617
94.373
95.1654
95.9711
96.6833
97.1477
97.1323
96.2885
94.1569
90.4057
85.6573
82.3215
81.8879
83.4917
87.0977
92.7992
99.3302
105.548
109.937
91.0191
91.0386
91.0748
91.1325
91.2181
91.3405
91.5112
91.7441
92.0545
92.4587
92.9718
93.605
94.3579
95.1998
96.0538
96.8054
97.299
97.3027
96.4612
94.2794
90.369
85.3719
81.9912
81.7144
83.3661
86.9964
92.7699
99.3376
105.593
110.064
90.8347
90.8553
90.8928
90.9519
91.0392
91.1643
91.3398
91.5811
91.9047
92.3282
92.8679
93.5374
94.3394
95.2403
96.1495
96.9447
97.4718
97.5
96.6644
94.426
90.3251
85.019
81.591
81.5154
83.2187
86.8763
92.7366
99.3466
105.647
110.215
90.6196
90.6417
90.6803
90.741
90.8305
90.9589
91.1403
91.3916
91.7308
92.1764
92.7464
93.4571
94.3161
95.287
96.2585
97.1009
97.6661
97.7246
96.8999
94.5994
90.2747
84.588
81.113
81.2935
83.0495
86.7365
92.7002
99.3569
105.707
110.391
90.3727
90.3961
90.4337
90.4969
90.5897
90.7223
90.9108
91.1738
91.531
92.0018
92.6054
93.3616
94.286
95.3402
96.3807
97.2734
97.8813
97.9767
97.1698
94.8029
90.2188
84.0652
80.5473
81.052
82.8582
86.5764
92.6614
99.3685
105.774
110.591
90.0899
90.1172
90.1448
90.2166
90.3147
90.4526
90.6493
90.9259
91.3035
91.8027
92.4432
93.2481
94.2465
95.4005
96.5158
97.4611
98.1172
98.2567
97.4767
95.0408
90.1591
83.4333
79.8811
80.7955
82.6442
86.3949
92.6215
99.3811
105.846
110.817
89.908
89.9652
89.8088
89.9003
90.0046
90.1482
90.3537
90.6457
91.0468
91.5775
92.2578
93.1134
94.1932
95.4694
96.6624
97.6621
98.3729
98.5652
97.8236
95.3179
90.098
82.6698
79.0971
80.5302
82.4065
86.191
92.5824
99.3943
105.921
111.068
89.4158
89.4438
89.476
89.5482
89.6574
89.8065
90.0216
90.3313
90.759
91.3247
92.0476
92.9539
94.1188
95.5486
96.8165
97.8733
98.6477
98.9023
98.2145
95.6402
90.0392
81.7461
78.1711
80.2646
82.1436
85.9633
92.5461
99.4077
105.999
111.346
89.0535
89.0526
89.087
89.1576
89.2667
89.4214
89.6496
89.9811
90.4388
91.0429
91.8114
92.7664
94.0088
95.6397
96.9697
98.091
98.941
99.2685
98.6533
96.015
89.9878
80.6267
77.0679
80.0118
81.8528
85.7105
92.5159
99.4209
106.075
111.649
88.6408
88.6497
88.6799
88.7352
88.8269
88.9874
89.2361
89.594
90.0849
90.7305
91.5478
92.5498
93.8295
95.7372
97.1045
98.3103
99.2524
99.6641
99.1447
96.4509
89.9499
79.2682
75.7382
79.7934
81.5299
85.4307
92.496
99.4331
106.148
111.979
88.1998
88.2162
88.2519
88.2891
88.3202
88.5039
88.783
89.1699
89.6957
90.3856
91.255
92.3059
93.4959
95.7981
97.189
98.5269
99.5821
100.089
99.6941
96.9586
89.9352
77.6238
74.1484
79.6406
81.169
85.1218
92.492
99.4434
106.226
112.335
87.7034
87.7349
87.7961
87.9533
87.6731
87.9896
88.2963
88.7075
89.2684
90.0052
90.9291
92.0361
92.9517
95.6415
97.1737
98.7388
99.9312
100.542
100.308
97.5511
89.9571
75.6499
72.3363
79.5791
80.7613
84.7811
92.5117
99.4507
106.305
112.715
87.1638
87.2146
87.296
93.8482
87.2264
87.4812
87.7774
88.2011
88.7981
89.5853
90.5632
91.7412
92.581
94.9563
97.0086
98.9505
100.302
101.021
100.993
98.2449
90.0351
73.3347
70.2982
79.6467
80.2952
84.405
92.5642
99.4537
106.379
113.119
86.604
86.68
86.772
86.8581
86.8269
86.9586
87.2121
87.638
88.2773
89.1212
90.1475
91.4064
92.5055
93.7284
96.7084
99.1763
100.698
101.524
101.758
99.0497
90.1957
70.7883
68.0061
79.9272
79.7526
83.9882
92.6569
99.4511
106.444
113.542
86.0421
86.15
86.247
86.3074
86.3205
86.3915
86.5741
87.0001
87.6974
88.6092
89.6703
90.9866
92.4708
92.4796
96.4312
99.4417
101.124
102.041
102.61
99.9876
90.4772
68.4575
65.6875
80.508
79.1077
83.524
92.7932
99.4416
106.494
113.98
85.4923
85.6511
85.7669
85.8023
85.7643
85.7789
85.8121
86.2631
87.0465
88.0454
89.1138
90.4693
92.3606
91.8659
96.4279
99.7767
101.584
102.56
103.557
101.09
90.9255
67.53
63.5232
81.5064
78.3302
83.0128
92.9728
99.4232
106.523
114.424
84.9794
85.2275
85.3888
85.3896
85.215
85.5306
84.9814
85.3735
86.2888
87.4105
88.4374
89.8482
92.2039
92.2119
96.8467
100.201
102.083
103.058
104.604
102.377
91.6166
70.5278
61.6775
82.9876
77.381
82.4911
93.1903
99.3932
106.521
114.863
84.5319
84.9336
85.1906
85.1504
84.7464
84.1844
83.9194
84.232
85.3567
86.6449
87.5198
89.0687
92.0883
93.2135
97.5882
100.717
102.627
103.492
105.753
103.842
92.5494
54.7561
4.32776
84.7669
76.2444
82.0534
93.4331
99.3473
106.479
115.277
84.1814
84.8372
85.2848
85.1891
84.3391
83.1824
82.4646
82.7406
84.2517
85.7302
85.9488
88.0381
92.0666
94.3538
98.3925
101.34
103.233
103.794
106.997
105.477
93.5188
41.7819
1.05337
86.1324
75.2047
81.9218
93.6809
99.2789
106.38
115.641
83.9618
85.0088
85.9191
85.8423
84.0334
81.8277
80.4971
80.7059
83.0958
84.6263
83.2241
86.623
92.1667
95.4252
99.1242
102.141
103.938
103.848
108.315
107.287
94.2037
-3.8069
1.04922
0.0996906
10.384
82.3368
93.9232
99.1789
106.206
115.914
83.9888
85.0376
87.5688
88.238
83.6889
79.6143
77.9255
77.307
82.1321
83.5058
80.805
85.1844
92.4755
96.3939
100.048
103.266
104.828
103.46
109.656
109.402
95.0355
1.49934
1.01109
0.209183
0.386633
82.8672
94.1782
99.0372
105.935
116.04
0.13427
0.126981
0.125847
0.121358
0.116409
0.114732
0.108579
0.152721
19.9765
82.7513
78.7767
84.1034
93.2926
97.322
101.342
104.787
106.063
102.233
110.971
111.63
96.1611
1.48037
0.935536
0.301679
0.334284
-0.869728
94.4083
98.8531
105.538
115.934
0.138748
0.140319
0.131617
0.125429
0.124165
0.127924
0.124294
0.148124
0.136953
0.0945606
7.82573
83.6026
95.2698
98.1557
102.655
106.62
107.843
100.835
112.253
113.69
96.9492
1.49636
0.85422
0.353392
0.303153
0.150524
94.5821
98.6815
104.893
115.462
0.138801
0.131841
0.127632
0.125475
0.120871
0.113416
0.117255
0.130671
0.120997
0.0722034
0.0627666
13.8166
99.5223
98.5142
103.127
108.455
109.434
101.672
113.841
114.052
96.4331
1.62254
0.784791
0.372328
0.283627
0.151613
90.1224
98.6933
104.245
114.395
0.128491
0.126269
0.124714
0.123137
0.128872
0.243018
0.106704
0.113214
0.101174
0.0314692
0.0220386
0.102312
107.582
98.9385
103.152
110.031
109.695
103.223
115.752
115.056
91.82
1.84205
0.726234
0.373949
0.269464
0.150238
-0.484746
99.1023
103.624
112.259
206.989
107.299
-0.00390775
0.00673808
0.0159728
0.0222168
0.0686059
0.193075
4.45917
103.125
117.466
117.87
105.042
108.094
100.058
90.9416
-0.000896357
0.199252
0.0240525
0.0424646
0.0736998
0.128066
0.158122
0.163155
0.14916
0.167727
0.133563
0.123812
0.120393
0.130559
99.1859
110.769
0.143591
-0.000593664
0.0139348
0.0219537
0.0740924
0.170455
-1.28097
96.9452
116.634
118.936
104.387
110.379
98.5506
83.8749
0.164648
0.641737
0.0147817
0.032142
0.0529385
0.112956
0.149488
0.155391
0.14186
0.129406
0.122749
0.114793
0.113013
0.119844
81.0464
114.228
0.113045
-0.00863074
0.0118994
0.0218026
0.0331362
0.130785
0.0145182
114.193
116.146
120.334
104.935
112.576
92.8753
0.061513
0.10887
0.0533208
0.0127567
0.0414791
0.0357694
0.0970587
0.135729
0.145875
0.133051
0.119824
0.110208
0.101767
0.0987248
0.115535
92.5311
76.5958
0.0838436
-0.0162332
0.00989353
0.021732
0.0395039
0.0979087
-1.89705
72.8327
158.087
121.508
106.476
117.069
75.3689
-0.0106972
0.43481
0.0416074
0.0148982
0.0291211
0.0284989
0.083114
0.12179
0.131898
0.121739
0.107446
0.0960921
0.0859926
0.0742808
0.121159
3.78316
0.0948966
0.0581453
-0.0225471
0.0079737
0.0216933
0.0482313
0.0576475
-3.15824
37.999
136.715
122.183
108.241
122.216
-1.93977
0.0269439
0.214791
0.0577747
0.0180127
0.0253903
0.0306196
0.0760995
0.106219
0.11901
0.106552
0.0926034
0.0812397
0.071708
0.0613836
6.8297
-0.0630659
-0.0474947
0.0355016
-0.0270755
0.00620245
0.0216247
0.0473356
0.0315053
-2.3527
0.403231
135.32
122.433
108.62
125.999
0.0701822
-0.00907425
0.0647302
0.063176
0.017898
0.0635921
0.0324849
0.0713925
0.0937232
0.0979177
0.0891019
0.0762653
0.0670624
0.0597677
0.0536257
0.119297
-0.0879668
-0.0566154
0.0173468
-0.0297825
0.00463456
0.0215272
0.0641774
0.0234617
-2.42748
2.79675
127.689
124.02
106.716
2.92087
0.229379
-0.0118584
0.0559201
0.0676416
0.0142069
0.108176
0.0303176
0.0834208
0.181813
0.0788257
0.0714684
0.0595172
0.0605337
0.0505074
0.0535152
0.0581521
-0.0699365
-0.0582703
0.00183718
-0.0309899
0.00331539
0.0213771
0.0336281
0.0215843
-1.82818
1.67897
136.824
128.336
74.1588
-0.237863
0.104339
-0.00792453
0.0521041
0.0834327
0.0138288
0.106917
0.00792977
0.0861796
0.198519
0.0656081
0.0559832
0.0447049
0.0409468
0.0438746
0.0451466
0.0487626
-0.0519747
-0.0572707
-0.0108056
-0.0310851
0.00227173
0.0211976
0.0349568
0.0367122
-1.11608
1.92384
142.037
138.597
-0.0731079
-0.135295
0.0224325
-0.00610314
0.0439033
0.261142
0.0109016
0.0223981
0.021756
0.0452896
0.069285
0.0546797
0.0456446
0.0336095
0.030306
0.0329985
0.0358061
0.0401538
-0.0411005
-0.056282
-0.0207286
-0.0304146
0.0014897
0.0209943
0.0395222
0.0567355
-0.522545
0.767304
-0.471508
-0.223037
-0.0595311
-0.119061
-0.0394718
-0.00861732
0.0425985
0.0705992
0.0432943
0.0320904
0.0403508
0.0490332
0.0572178
0.0475073
0.0361864
0.0266952
0.0234616
0.0234809
0.0279977
0.0331121
-0.0274685
-0.0549072
-0.0279717
-0.0292318
0.000931706
0.0207752
0.0425345
0.0631726
-0.207632
0.145414
-0.336137
-0.255303
-0.0883409
-0.107668
-0.084768
-0.0174393
0.0485201
0.0606211
0.0541589
0.049119
0.0529925
0.0536711
0.05407
0.0442473
0.0322293
0.0231751
0.0200763
0.0296504
0.0368458
0.0296912
-0.0678975
-0.0532069
-0.0326023
-0.0277185
0.000577376
0.0205586
0.0445002
0.0671859
-0.0698008
0.111907
-0.239765
-0.361614
-0.0896546
-0.0918844
-0.149702
-0.0373617
0.0638142
0.06209
0.0625892
0.0678593
0.0650219
0.0584483
0.0537722
0.0441039
0.0328533
0.0350933
0.0196916
0.0194073
0.0222973
0.0278888
-0.0509208
-0.0506437
-0.0348442
-0.0259662
0.000413545
0.0203371
0.0456629
0.0858302
0.032935
-0.579483
-0.249753
0.241268
-0.074529
-0.0649797
-0.239035
2.34454
0.0875675
0.0638552
0.0650085
0.320356
0.0670859
0.0601382
0.0538596
0.0456623
0.0359038
0.0284474
0.0244933
0.0243752
0.0267011
0.0307056
0.0212872
-0.047444
-0.035084
-0.0240299
0.000412023
0.0200732
0.0411757
0.0950039
0.0668907
-0.396135
-0.299614
0.178847
-0.0721941
-0.0315397
-0.184759
2.6561
0.0649739
0.0661293
0.0717944
0.185374
0.0723889
0.0637076
0.0541843
0.0471198
0.0389867
0.0334263
0.0303854
0.0301296
0.034896
0.0352921
-0.0229356
-0.0442363
-0.0338278
-0.0219817
0.000545854
0.0197269
0.0403352
0.0872279
0.0692267
-0.198217
-0.250526
-0.238146
-0.0631349
-0.00102224
-0.0955211
0.901899
0.0530132
0.065296
0.0722063
0.0760655
0.0701222
0.0624482
0.0595837
0.0592209
0.0401716
0.0383624
0.0373563
0.0372783
0.0368921
0.0374967
-0.0102772
-0.0408234
-0.0316105
-0.0198663
0.000779887
0.0192563
0.0393508
0.0759855
0.052818
-0.132785
-0.167777
-0.174813
-0.0745431
-0.0551904
-0.0438806
0.100509
0.0427711
0.0626202
0.0664015
0.0665292
0.0661549
0.0602608
0.0509447
0.0434134
0.0410886
0.0423327
0.046177
0.0541465
0.0520823
0.00800414
-0.0145266
-0.0364699
-0.0288709
-0.0177297
0.00106809
0.0186264
0.0378363
0.0667717
0.0983259
-0.0808806
-0.0514262
-0.106566
-0.0823303
-0.0618046
-0.0464278
0.106186
0.0363833
0.0481675
0.0646454
0.0562799
0.0562514
0.0544257
0.0496491
0.0430433
0.0411536
0.0405433
0.0391103
0.368131
0.374993
0.119717
-0.0497096
-0.030828
-0.0259337
-0.0156313
0.00138083
0.0178138
0.0355846
0.0550826
0.0634039
-0.0494828
0.0415887
-0.045275
-0.0879273
-0.0724392
-0.0495498
0.0941708
0.0228258
0.0350419
0.0415057
0.0454151
0.0462119
0.0477633
0.0441197
0.040416
0.0398028
0.038472
0.0353219
0.0338952
0.046964
0.0608547
-0.0287523
-0.0244673
-0.0230322
-0.0136031
0.00169818
0.0167964
0.0325888
0.0455852
0.0216874
-0.0178245
0.0141776
-0.049456
-0.104288
-0.101626
-0.0629974
-0.0259278
0.00541998
0.0216503
0.030427
0.0344987
0.0991685
0.0406848
0.0376214
0.037861
0.0456412
0.0437987
0.0421109
0.0459
0.0508512
0.0554714
-0.00658175
-0.0190481
-0.0203055
-0.011674
0.00198382
0.0155584
0.0290309
0.036698
0.0155845
0.00257014
0.0190252
-0.0421313
-0.12882
-0.140067
-0.0970431
-0.046998
-0.0102363
0.00901583
0.0198668
0.0267343
0.0446601
0.0275656
0.0303783
0.0325036
0.0345658
0.0368735
0.0399976
0.0432738
0.0464243
0.0494157
-0.000678187
-0.0144549
-0.0178375
-0.0098689
0.00220459
0.0140937
0.0262024
0.0292987
0.0169967
0.00780058
0.0119506
-0.0329218
-0.151181
-0.174463
-0.134159
-0.0694371
-0.0207079
0.00164366
0.00992122
0.0161535
0.0194487
0.0223009
0.024862
0.0271879
0.0296363
0.0322703
0.0350004
0.0377049
0.0402607
0.0426631
0.0148125
-0.0115089
-0.0156267
-0.00819692
0.00233606
0.0124256
0.020753
0.0230176
0.0159184
0.0145427
-0.0194037
0.70356
-0.153738
-0.18494
-0.152285
-0.0830567
-0.0311525
-0.00240514
0.00267354
0.00771984
0.0114064
0.0146517
0.0175869
0.0202706
0.0228968
0.0255334
0.0280523
0.030406
0.0326062
0.034616
0.0119793
-0.0116617
-0.013565
-0.00666189
0.00235216
0.0105593
0.0163493
0.0172664
0.0144099
-0.00135827
-0.0340499
0.450574
-0.131164
-0.158832
-0.13481
-0.0749348
-0.027302
-0.0068206
0.00367726
7.13054e-05
0.0017776
0.00385214
0.00637244
0.00909405
0.0117659
0.0142883
0.0165587
0.0185631
0.0203068
0.0217105
-0.0207008
-0.0121287
-0.0115041
-0.00526621
0.00223777
0.0085165
0.0144519
0.0105499
0.00289329
-0.0143203
-0.0377572
-0.0670971
-0.102077
-0.11397
-0.0908729
-0.0465024
-0.0193195
-0.00573106
-0.00411418
-0.00857791
-0.0113069
-0.0125084
-0.0120437
-0.0104748
-0.00793221
-0.0055117
-0.00351289
-0.00197855
-0.000884651
-0.00030024
-0.0122723
-0.0113345
-0.0093509
-0.00401857
0.00199205
0.00635358
0.00627787
0.00152588
-0.0116961
-0.0379297
-0.0502183
-0.0629859
-0.0775264
-0.0426854
-0.055239
-0.0191409
-0.0181314
-0.00963484
0.00626188
-0.0194417
-0.02805
-0.0337783
-0.0371603
-0.0378109
-0.0345741
-0.0359234
-0.034071
-0.0324904
-0.0314709
-0.0310269
-0.0069269
-0.00894686
-0.00716342
-0.00292546
0.00164142
0.00408414
0.00556162
-0.00888957
-0.0447977
-0.0878301
-0.0644397
-0.0572766
-0.0557203
-0.0277248
-0.0446746
-0.0273927
-0.021625
-0.0238124
-0.0315217
-0.0377996
-0.0485859
-0.0575817
-0.0640995
-0.0670967
-0.065184
-0.0688989
-0.0661536
-0.0629584
-0.0612635
-0.0605842
-0.00372179
-0.00637925
-0.00513428
-0.00199303
0.0012427
0.00200235
-0.00313395
-0.019474
-0.0882192
-0.136522
-0.0824905
-0.0514359
-0.042977
-0.0398151
-0.0386131
-0.0304643
-0.0287162
-0.0223634
-0.0307303
-0.0443942
-0.0619814
-0.0704445
-0.0749704
-0.0774396
-0.0768745
-0.0736547
-0.0500631
-0.0752771
-0.0759302
-0.0766643
-0.00188348
-0.00421673
-0.00338787
-0.00122237
0.000871304
0.00045436
-0.00594927
-0.0248955
-0.0276976
-0.164359
-0.0861142
-0.0455154
-0.0339512
-0.0290238
0.162787
-0.0242274
-0.0247208
-0.0319897
0.0339411
-0.0400235
0.104309
0.0830541
-0.0131634
-0.0657286
-0.0723389
-0.0705476
-0.0781929
-0.077741
-0.0775482
-0.0780747
-0.000838624
-0.00238957
-0.00192943
-0.000609921
0.000576546
-0.000281447
-0.00605695
0.0430554
0.016007
-0.0929534
-0.0635012
-0.040186
-0.0297395
-0.0239918
-0.0208625
-0.0182243
-0.0225086
-0.0262486
-0.0328127
-0.03463
-0.0345236
-0.0369751
-0.0408923
-0.0278384
-0.0755654
-0.0637717
-0.0546223
-0.0550345
-0.052626
-0.0540777
-0.000260484
-0.000840187
-0.000692066
-0.000163657
0.000300267
-0.000161277
-0.0029029
-0.00991033
0.00123685
-0.0301253
-0.0434267
-0.0393977
-0.0303091
-0.0223124
-0.0168006
-0.0138035
-0.0137334
-0.0175594
-0.0225063
-0.0257144
-0.0200133
-0.0179221
-0.0189532
-0.0176384
-0.0171386
0.0179997
-0.0155784
-0.0176016
-0.0183812
-0.0140188
0.345665
0.119545
0.118333
0.117663
0.113639
0.102498
0.0986404
0.0993066
0.0875003
0.011675
-0.00748557
0.0451364
0.266558
100.444
103.368
111.28
109.679
103.094
117.544
117.239
87.743
2.01581
0.682077
0.368858
0.25981
0.14849
-0.111496
91.9666
103.045
109.374
0.123816
0.115175
0.112929
0.113943
0.108327
0.0978915
0.0934726
0.0913364
0.0747782
0.00624303
-0.0170296
0.0259885
0.0623165
38.9816
103.342
112.261
110.171
103.486
119.308
118.055
87.4911
3.05523
0.654044
0.363808
0.254112
0.147491
-0.0785536
-0.134832
102.573
108.093
0.120817
0.151358
0.108858
0.111055
0.100521
0.0927614
0.0878826
0.0838408
0.0671965
0.00757873
-0.021879
0.0182594
0.151298
0.128199
102.945
112.358
109.32
105.936
121.744
119.225
69.8932
2.29785
0.623178
0.3573
0.248336
0.146375
-0.0523057
-0.082339
100.961
108.211
0.118018
0.10773
0.0932877
0.171681
0.0876592
0.0868159
0.0823012
0.0770661
0.062052
0.0140914
-0.0165335
0.0182319
0.137574
0.132837
-1.51263
114.56
110.3
106.009
123.75
120.673
-11.3816
1.53946
0.59091
0.349311
0.242428
0.145068
-0.0308747
-0.0491177
2.59591
109.351
0.220818
0.0983071
0.0953867
0.0928613
0.0779267
0.0821655
0.0771444
0.0711418
0.059174
0.0260083
-0.00337762
0.0209485
0.0460295
0.106813
0.306622
116.266
107.587
107.537
124.873
120.207
0.385004
0.804271
0.556072
0.33978
0.236265
0.143473
-0.0120078
-0.0225416
-0.0302972
110.826
0.0166561
0.0741183
0.0828685
0.0790857
0.0811551
0.0907068
0.072311
0.065911
0.0588959
0.0327676
0.0163531
0.0236225
0.0394915
0.0769506
0.189049
-0.175355
103.644
110.21
125.295
121.405
0.00395618
0.727954
0.511831
0.328632
0.229761
0.141566
0.00482577
-0.00558858
0.00740541
7.09899
0.0570243
0.0640298
0.0704568
0.0709115
0.0742259
0.0860321
0.066804
0.0611711
0.0582647
0.0418119
0.0291098
0.0233511
0.0277765
0.0531602
0.0633531
-0.297386
-0.296159
111.924
124.267
127.166
-1.35385
0.243096
0.468526
0.315786
0.222826
0.1393
0.019466
0.0054525
0.0202657
-0.478705
0.0521341
0.0573966
0.0619423
0.063448
0.0656793
0.0725969
0.0593853
0.0718354
0.0575885
0.0450629
0.0369378
0.0190899
0.0255195
-0.0288463
0.0296344
-0.342047
-0.300426
-0.31095
123.309
0.595262
-1.214
-0.1423
0.422254
0.301089
0.215375
0.136654
0.031808
0.0129966
0.0298866
-0.401849
0.0446502
0.0496477
0.0551351
0.0637507
2.04306
0.0450089
0.0529755
0.0581466
0.0515785
0.0447039
0.0405858
0.0203441
-0.00462591
-0.0678186
2.94122
-0.111966
-0.32363
-0.31394
-0.450225
-0.564053
-1.03605
-0.184649
0.360557
0.284591
0.20733
0.133604
0.0415746
0.0186094
0.0368764
-0.308659
0.0378482
0.0429026
0.0482586
0.047669
0.0373992
0.0502069
0.0514856
0.0498373
0.0401373
0.0412343
0.0634791
0.0194381
-0.010661
-0.0368825
2.86585
0.0936392
-0.274947
-0.284501
-0.446931
-0.561452
-0.934351
-0.2604
0.313439
0.266276
0.198625
0.130129
0.0488332
0.0227259
0.0345648
-0.222915
0.0339631
0.0390694
0.0438629
0.0600988
0.0499663
0.0506769
0.0495229
0.0456496
0.0404535
0.0374344
0.0859502
0.0180446
-0.0110967
-0.0323249
2.63737
-0.225737
-0.250859
-0.317863
-0.441527
-0.536404
-0.791393
-0.24121
0.261525
0.246241
0.189193
0.126219
0.053907
0.025587
0.0361627
-0.151266
0.0328583
0.0384937
0.0445529
0.0494248
0.0540381
0.0505184
0.0480604
0.0432957
0.0387646
0.0321005
0.0335485
0.0166131
-0.0115721
-0.0114878
0.368856
-0.192065
-0.213729
-0.312374
-0.44719
-0.498611
-0.786486
-0.223601
0.216287
0.224722
0.178996
0.121874
0.057258
0.0276026
0.0365671
-0.0965331
0.0354296
0.0408682
0.0468074
0.051811
0.0575243
0.0554196
0.048497
0.0430963
0.0391984
0.0343981
0.0269181
0.0130422
-0.010596
-0.0250017
0.0485998
-0.184999
-0.256501
-0.306307
-0.440906
-0.436927
-0.633947
-0.268883
0.166855
0.202104
0.168034
0.117094
0.0593179
0.0290995
0.0359006
-0.0572718
0.0393084
0.045469
0.0523188
0.0583243
0.0598898
0.0611847
0.0555091
0.0607295
0.0440062
0.0332129
0.0257708
0.0101524
-0.00931254
-0.0354543
-0.0718217
-0.189648
-0.250815
-0.320243
-0.155407
-0.482256
-0.456916
-0.303055
0.122909
0.178875
0.156344
0.111871
0.0603968
0.0303252
0.0346144
-0.0308738
0.0432445
0.0521897
0.0644882
0.0653224
0.0702896
0.0594328
0.0540744
0.0650244
0.0425301
0.0343585
0.0225565
0.0329892
0.0184127
-0.0414878
-0.0972529
-0.175178
-0.246384
0.214886
-0.322369
-0.466954
-0.294987
-0.266168
0.0841491
0.155641
0.144027
0.106192
0.0607028
0.0314348
0.0330621
-0.014143
0.0467881
0.0626269
0.0762669
0.0690925
0.0843421
0.0574114
0.046302
0.0430321
0.0486665
0.0397313
0.0231503
0.0119375
0.0139562
-0.0447525
-0.105969
-0.180781
-0.248973
0.227013
-0.331263
-0.431002
-0.192923
-0.191067
0.0522956
0.133047
0.13122
0.100053
0.0603505
0.0324947
0.0314904
-0.00412193
0.078713
0.0751559
0.0771309
0.137105
0.0632479
0.0620213
0.0694195
2.849
0.0630489
0.0436968
0.0267425
0.00634673
-0.0113727
-0.0440005
-0.0502422
-0.194206
-0.249129
0.00993249
-0.229721
-0.432325
-0.167546
-0.194468
0.0288091
0.111706
0.118107
0.0934756
0.0593571
0.0334741
0.0300316
0.00155354
0.0671329
0.0690894
0.0682419
0.0678188
0.0699902
0.0878069
0.114924
0.07424
0.0685807
0.0507166
0.0313605
0.00583886
-0.0194666
-0.00156983
-0.108641
-0.192634
-0.24373
-0.123364
-0.29382
-0.364411
-0.329041
-0.129761
0.0131363
0.092116
0.104922
0.0864959
0.0576898
0.0342329
0.0287
0.00458586
0.0590368
0.0621848
0.0658194
0.0717421
0.0733921
0.0776151
0.0791309
0.0748567
0.0683848
0.0553465
0.0344262
0.0040719
-0.0349796
-0.0615604
-0.115315
-0.186376
-0.227148
-0.107695
0.114257
-0.322118
-0.29938
-0.0992586
0.00355002
0.0746025
0.0919042
0.0791711
0.0553345
0.0345944
0.0274094
0.00608188
0.0524219
0.055791
0.0599871
0.0667475
0.070569
0.0760948
0.0765433
0.0730565
0.0659771
0.0527098
0.0295911
-0.00461095
-0.0449138
-0.0813335
-0.128029
-0.176849
-0.210967
0.0992118
-0.0799078
-0.204509
-0.318321
-0.0831713
-0.00229759
0.0592969
0.0792873
0.071591
0.0523221
0.0343994
0.0260114
0.00668525
0.045087
0.0477212
0.0506829
0.0540549
0.057719
0.0612409
0.0626913
0.0598532
0.0523466
0.037291
0.0125723
-0.0320731
-0.0750387
-0.114988
-0.151192
-0.180626
-0.192636
-0.204353
-0.14274
-0.112891
-0.111587
-0.0690346
-0.00608946
0.0461486
0.067292
0.0638625
0.0487331
0.033571
0.0243562
0.00674591
0.0365595
0.0385336
0.0403445
0.0414897
0.0405419
0.0964173
0.0425794
0.0323629
0.0198328
0.00233577
-0.0427505
-0.0887267
-0.135513
-0.172958
-0.185898
-0.189913
-0.173113
-0.161485
-0.146529
-0.0588626
-0.0750442
-0.057689
-0.00887988
0.0349919
0.0560964
0.0560968
0.0446659
0.0319125
0.0224067
0.0064568
0.022823
0.0235949
0.0234808
0.0214023
0.0169097
0.011332
-0.00203923
-0.0120452
-0.035894
-0.05274
-0.123415
-0.18383
-0.189429
-0.267018
-0.253709
-0.211054
-0.164563
-0.127975
-0.104887
-0.0621984
-0.0574182
-0.0504029
-0.0114178
0.0255923
0.0458337
0.0484179
0.0402012
0.0295403
0.0202507
0.0059457
-0.000203281
-0.000691375
-0.00231196
-0.00588549
-0.0122419
-0.0211129
-0.0326672
-0.0587588
-0.0967195
-0.154011
-0.228448
-0.224512
-0.313201
-0.407498
-0.347894
-0.225525
-0.158839
-0.10203
-0.0584645
0.604474
-0.0597226
-0.0514249
-0.0139897
0.0177579
0.0365956
0.0409421
0.0354178
0.0266678
0.0179704
0.00530608
-0.0311411
-0.0320311
-0.0341452
-0.038097
-0.0448794
-0.0560298
-0.0735141
-0.0991783
-0.140324
-0.200901
-0.283351
-0.375633
-0.456181
-0.501136
-0.435612
-0.282658
-0.149847
-0.0698615
-0.0168644
0.168731
-0.141782
-0.0563171
-0.0158221
0.0114073
0.0284399
0.0337674
0.0303997
0.0234083
0.0155927
0.00460128
-0.0608081
-0.0616739
-0.0636712
-0.0673549
-0.0734625
-0.0832166
-0.0986482
-0.122848
-0.15857
-0.209827
-0.278228
-0.363545
-0.44515
-0.486856
-0.428378
-0.26867
-0.0969905
-0.0404705
0.0113439
0.0277136
-0.147109
-0.0246058
0.00361901
0.00650876
0.0213883
0.026978
0.0252176
0.0198239
0.0131143
0.00386414
-0.0776254
-0.0789748
-0.0809585
-0.0836439
-0.0887725
-0.0960952
-0.107237
-0.123745
-0.148106
-0.18115
-0.221321
-0.27239
-0.317211
-0.334004
-0.298692
-0.185536
-0.0630712
-0.018831
0.014425
0.612431
-0.0359402
-0.0346313
0.0112725
0.00309686
0.0154241
0.020608
0.0199256
0.0159564
0.0105219
0.00310257
-0.0770413
-0.0821542
-0.0885478
-0.0879169
-0.0882585
-0.0916041
-0.0993165
-0.107236
-0.11884
-0.122754
-0.071726
-0.148394
-0.0552888
-0.156933
-0.123654
-0.0727822
-0.00729483
-0.00487618
0.00451289
-0.00565184
-0.00620298
-0.022031
-0.0128326
0.00152297
0.0104658
0.0146376
0.014555
0.0118358
0.00780006
0.00231082
-0.0500715
0.00688684
-0.0316648
-0.058596
-0.0693523
-0.0694718
-0.0713845
-0.0756566
-0.0667079
0.00420861
-0.06649
-0.0619323
-0.0183462
-0.0565279
-0.03106
-0.00985721
0.0263463
0.00544963
0.00272978
-0.00340217
-0.0095857
-0.000956599
-0.00670154
0.0011539
0.00626768
0.00896723
0.00908564
0.00746441
0.0049266
0.00147549
-0.0164135
-0.0247695
-0.0292053
-0.0297203
-0.0276905
-0.0374245
-0.0445705
-0.0535523
-0.0421434
-0.0416468
-0.0217971
-0.0129641
-0.0159692
0.066849
0.00891571
0.0145803
0.00835111
0.0067619
0.00225067
-0.00165961
-0.00269696
-0.00459669
-0.00157108
0.000787273
0.00241251
0.00339117
0.00343384
0.00281277
0.00186677
0.000579443
93.952
89.8542
88.4877
87.5873
85.7648
84.0448
83.2848
84.3791
87.8213
92.0359
95.2033
96.8719
97.3513
97.0949
96.4706
95.7141
94.9575
94.2656
93.6647
93.1606
92.7483
92.418
92.1584
91.9589
91.8094
91.7014
91.6271
91.5797
91.5534
91.5432
94.6797
89.808
88.4819
87.594
85.7646
84.0372
83.2594
84.3295
87.7957
92.0565
95.2464
96.9142
97.3838
97.1167
96.4822
95.7167
94.9521
94.2534
93.6469
93.1386
92.7232
92.3906
92.1295
91.9289
91.7787
91.6701
91.5955
91.548
91.5217
91.5116
94.7544
89.726
88.4728
87.6075
85.763
84.0197
83.2066
84.2216
87.7207
92.068
95.3112
96.9901
97.4478
97.1627
96.511
95.7292
94.9491
94.2364
93.6184
93.1011
92.679
92.3416
92.0771
91.8742
91.7224
91.613
91.5379
91.4903
91.464
91.454
94.869
89.606
88.4605
87.6276
85.7601
83.9928
83.1283
84.0598
87.6052
92.0781
95.3981
97.0969
97.542
97.2348
96.5599
95.7548
94.9516
94.2177
93.5818
93.0506
92.6182
92.2733
92.0035
91.7969
91.6429
91.5322
91.4565
91.4087
91.3825
91.3727
95.0229
89.4445
88.4452
87.6548
85.7555
83.9567
83.0252
83.8411
87.4483
92.0905
95.5102
97.2346
97.6644
97.3294
96.6247
95.7895
94.9566
94.1952
93.5363
92.9871
92.5411
92.1863
91.9093
91.6978
91.5404
91.4276
91.3508
91.3024
91.276
91.2663
95.2209
89.2367
88.4274
87.6896
85.749
83.9117
82.8984
83.5607
87.2456
92.1057
95.6496
97.4045
97.8139
97.4432
96.7015
95.8301
94.9618
94.1674
93.4808
92.9097
92.4472
92.0801
91.7942
91.5762
91.4141
91.298
91.2189
91.1692
91.1422
91.1324
95.4671
88.9765
88.408
87.7327
85.7404
83.8582
82.7494
83.2125
86.9916
92.1247
95.8178
97.6083
97.9907
97.575
96.7889
95.8754
94.9662
94.1335
93.4142
92.8175
92.3357
91.9542
91.6575
91.4313
91.2631
91.1423
91.0598
91.0077
90.9796
90.9696
95.7654
88.6568
88.3876
87.7849
85.7296
83.7968
82.5806
82.7888
86.6792
92.1481
96.0171
97.8475
98.1954
97.7245
96.8861
95.9249
94.9693
94.0925
93.3353
92.7092
92.2053
91.8072
91.498
91.2622
91.0866
90.9598
90.8725
90.8171
90.7871
90.7767
96.1201
88.2689
88.3673
87.8472
85.7161
83.7279
82.3948
82.2793
86.2992
92.1776
96.2498
98.1245
98.4287
97.8912
96.9926
95.9779
94.9706
94.0431
93.2423
92.583
92.0544
91.6377
91.3143
91.0676
90.8835
90.7498
90.6568
90.5969
90.5639
90.5525
96.5361
87.8026
88.3481
87.9209
85.6996
83.6518
82.1964
81.6711
85.84
92.2153
96.5186
98.442
98.6917
98.0747
97.1073
96.0338
94.9692
93.9838
93.1332
92.4368
91.881
91.4437
91.1047
90.846
90.6527
90.5117
90.4126
90.3472
90.3094
90.2951
97.0189
87.2458
88.3313
88.0071
85.6794
83.5685
81.9909
80.948
85.2866
92.2639
96.8267
98.8036
98.9855
98.2743
97.229
96.0914
94.9644
93.9128
93.0052
92.2681
91.6829
91.2233
90.867
90.5954
90.3926
90.2446
90.1397
90.0686
90.024
90.0016
97.575
86.585
88.3188
88.1073
85.6551
83.4778
81.7857
80.0899
84.6202
92.3269
97.1774
99.2129
99.3118
98.4888
97.3559
96.1493
94.9551
93.8277
92.8548
92.0738
91.4574
90.9737
90.5986
90.3131
90.1005
89.9461
89.8365
89.7606
89.7098
89.679
98.2115
85.8048
88.3131
88.2231
85.6258
83.3788
81.5907
79.072
83.817
92.4084
97.5743
99.6742
99.6723
98.7168
97.4859
96.2057
94.9404
93.7256
92.6776
91.8506
91.2018
90.6923
90.2963
89.9951
89.7724
89.6124
89.5001
89.422
89.3672
89.3311
98.9356
84.8871
88.3172
88.3563
85.5907
83.2698
81.4184
77.8633
82.8495
92.5134
98.0212
100.193
100.069
98.9565
97.6161
96.2581
94.9186
93.6025
92.4681
91.5947
90.913
90.3759
89.9561
89.6368
89.4025
89.237
89.1236
89.0471
88.995
88.9701
99.7547
83.8099
88.3353
88.5091
85.5486
83.1479
81.2859
76.436
81.6867
92.6477
98.5217
100.775
100.506
99.2053
97.7428
96.3032
94.8864
93.4531
92.2197
91.3017
90.5878
90.0212
89.5735
89.232
88.9833
88.8107
88.6958
88.622
88.5763
88.5503
100.676
82.5502
88.3717
88.684
85.4983
83.0084
81.2138
74.7927
80.2911
92.8161
99.0788
101.427
100.986
99.4598
97.8608
96.3376
94.8354
93.2681
91.926
90.9664
90.2228
89.6252
89.1437
88.7735
88.5063
88.3242
88.2066
88.1355
88.0965
88.0796
101.706
81.0829
88.4315
88.8842
85.4386
82.8444
81.2164
72.8531
78.6148
93.0172
99.6945
102.157
101.513
99.7148
97.9626
96.3599
94.743
93.0208
91.5808
90.5809
89.8146
89.186
88.6614
88.253
87.9619
87.7687
87.6494
87.5837
87.5553
87.5519
102.848
79.3813
88.5194
89.1142
85.3677
82.6461
81.3058
70.4456
76.5706
93.2314
100.37
102.973
102.096
99.9629
98.0337
96.3761
94.556
92.6377
91.1741
90.1332
89.3603
88.7042
88.1221
87.6594
87.3377
87.1341
87.0178
86.9657
86.9578
86.9773
104.105
77.4165
88.6391
89.3801
85.2831
82.3999
81.4727
67.4575
73.9737
93.3905
101.099
103.881
102.741
100.192
98.0489
96.4051
94.1916
92.1293
90.6958
89.6083
88.8584
88.1863
87.5227
86.9775
86.6164
86.4087
86.3085
86.2866
86.3166
86.3742
105.471
75.1585
88.7925
89.6905
85.1813
82.0866
81.6663
63.7259
70.5884
93.4313
101.892
104.888
103.458
100.381
98.0127
96.4624
93.6358
91.678
90.1243
88.9801
88.3112
87.6516
86.8681
86.1898
85.7738
85.5769
85.5149
85.5471
85.6377
85.7531
106.937
72.5778
88.9781
90.0588
85.0637
81.6789
81.8095
59.2567
66.9027
93.4094
102.746
105.995
104.258
100.492
98.0617
96.5061
93.0308
91.3184
89.451
88.2018
87.7346
87.1405
86.1712
85.2871
84.7853
84.6076
84.6091
84.726
84.9101
85.1146
108.48
69.6489
89.189
90.5025
84.9157
81.1387
81.8518
51.0167
63.6145
93.4424
103.662
107.197
105.154
100.446
98.2802
96.4708
92.5817
91.0232
88.679
87.2097
87.1499
86.6822
85.4125
84.2482
83.621
83.4508
83.5417
83.7874
84.1159
84.4609
110.064
66.3553
89.4092
91.0493
84.9635
80.4119
81.7907
9.7279
61.143
93.4612
104.634
108.482
106.154
100.079
98.6083
96.4578
92.419
90.8172
87.7991
85.6529
86.3903
86.2374
84.5235
82.9771
82.1944
82.0428
82.2601
82.6867
83.2293
83.7896
111.628
62.7011
89.6175
91.7492
84.6692
79.4963
73.1392
0.699262
4.04203
93.4642
105.657
109.828
107.263
98.9417
99.0133
96.6076
92.5664
90.7423
86.7071
82.2527
84.6563
85.7557
83.5074
81.374
80.3963
80.3208
80.7155
81.3574
82.213
83.102
113.083
58.7576
89.79
92.6075
85.1249
73.7474
-0.0158095
0.383326
-0.460573
93.2631
106.779
111.201
108.468
96.0435
99.2119
96.9257
92.974
90.8317
85.5859
77.4804
82.4645
85.2057
82.0929
79.2777
77.9577
78.2056
78.8661
79.6118
81.0155
82.4393
114.296
54.7982
89.9044
93.641
85.821
0.062939
0.0150697
0.327018
0.924463
91.6567
108.108
112.551
109.683
93.1231
99.3389
97.3448
93.4468
91.1326
85.7518
74.4501
82.1353
85.3216
80.1386
53.3359
18.7329
8.64605
6.84971
9.16448
16.1484
27.0314
115.076
51.6551
89.9239
94.7821
46.9899
0.0477558
0.0265948
0.314043
0.95294
91.4553
109.675
113.823
110.763
93.5163
100.413
97.7153
93.6161
91.6658
87.7569
77.8692
37.5321
0.118399
0.173606
0.178223
0.161931
0.159458
0.156379
0.150351
0.141448
0.134263
115.152
51.7144
89.6024
96.0842
0.0342796
0.0304663
0.0334557
0.271915
0.967518
93.6216
110.837
114.968
111.608
96.8164
102.392
97.7346
93.5154
92.1236
89.7626
0.0670638
0.142953
0.15827
0.168875
0.171665
0.164115
0.15938
0.153237
0.172447
0.139321
0.13941
114.151
59.048
87.9829
44.7583
0.0298599
0.0213499
0.0381494
0.222787
0.956953
97.2166
111.656
115.967
111.739
101.52
103.34
97.3183
93.4406
92.6348
0.0316507
0.0786916
0.128871
0.152384
0.16638
0.169608
0.161481
0.17041
0.163534
0.142403
0.135019
0.130801
111.587
72.1088
82.8593
-0.0421816
0.0175685
0.0170373
0.0413214
0.181794
0.274619
107.897
112.043
116.431
110.692
105.835
102.636
94.0512
93.283
0.216558
0.0362717
0.0512963
0.0882529
0.133032
0.160246
0.168574
0.156711
0.162359
0.155821
0.132135
0.126997
0.12194
91.5454
91.5596
91.5893
91.6393
91.7149
91.8228
91.9708
92.1681
92.4258
92.7556
93.1688
93.6728
94.2654
94.9281
95.6166
96.2529
96.7099
96.782
96.1599
94.4679
91.4232
87.3129
83.6723
82.2729
83.2334
86.2464
91.3559
97.7136
104.052
109.023
91.5138
91.5281
91.558
91.6082
91.684
91.7921
91.9406
92.1387
92.3979
92.73
93.1468
93.6556
94.2546
94.9249
95.6217
96.2665
96.7321
96.8131
96.1983
94.5071
91.4447
87.2926
83.621
82.2353
83.2105
86.2278
91.3467
97.7115
104.054
109.04
91.4564
91.4709
91.5009
91.5511
91.6271
91.7356
91.8849
92.0848
92.347
92.684
93.108
93.627
94.2394
94.926
95.6405
96.3021
96.7824
96.8755
96.2674
94.5664
91.4578
87.2237
83.5058
82.159
83.1646
86.1904
91.3299
97.7107
104.062
109.078
91.3752
91.3898
91.4199
91.4701
91.5462
91.6551
91.8056
92.0081
92.2751
92.6198
93.0548
93.5893
94.2224
94.9347
95.677
96.3639
96.8635
96.9687
96.3645
94.6448
91.4682
87.1151
83.3338
82.0469
83.096
86.134
91.3052
97.7107
104.078
109.14
91.269
91.2838
91.3141
91.3645
91.4408
91.5504
91.7027
91.909
92.1825
92.5374
92.9874
93.5424
94.2029
94.9491
95.7279
96.4474
96.9709
97.09
96.4892
94.7451
91.4797
86.9669
83.1021
81.8992
83.0049
86.0583
91.2727
97.7114
104.1
109.218
91.1355
91.1507
91.1817
91.2327
91.3097
91.4206
91.5755
91.7867
92.0687
92.4365
92.9049
93.4854
94.1798
94.9679
95.7906
96.5484
97.1004
97.2375
96.6423
94.8692
91.4931
86.7754
82.8052
81.716
82.8918
85.9631
91.2322
97.7129
104.128
109.315
90.9731
90.9892
91.0211
91.0733
91.1515
91.2643
91.4227
91.6403
91.9326
92.3161
92.8065
93.4171
94.1521
94.9907
95.8648
96.6658
97.2504
97.4105
96.8247
95.0191
91.5094
86.5354
82.436
81.4979
82.7571
85.8481
91.1841
97.7152
104.162
109.431
90.7808
90.7981
90.8314
90.8849
90.9648
91.08
91.2429
91.4682
91.773
92.1747
92.6906
93.3359
94.1184
95.0171
95.9507
96.7992
97.4208
97.6091
97.0376
95.1971
91.5297
86.2409
81.9852
81.2462
82.6015
85.7129
91.1283
97.7183
104.202
109.566
90.5576
90.5764
90.6105
90.6655
90.7477
90.866
91.0342
91.2688
91.5881
92.011
92.5558
93.2401
94.077
95.047
96.0487
96.9486
97.6112
97.8334
97.2822
95.406
91.5559
85.884
81.4406
80.9624
82.4256
85.5572
91.0651
97.7222
104.245
109.723
90.3013
90.3232
90.3546
90.4116
90.4976
90.62
90.7946
91.04
91.3763
91.8232
92.4001
93.1273
94.0254
95.0803
96.1592
97.1133
97.8211
98.0834
97.5604
95.6493
91.5902
85.4552
80.7859
80.6495
82.2299
85.3805
90.9944
97.7268
104.292
109.9
90.003
90.0642
90.0476
90.1199
90.2126
90.3402
90.5222
90.7801
91.1356
91.6097
92.222
92.9949
93.9602
95.1172
96.282
97.2917
98.0499
98.3594
97.8741
95.9314
91.6357
84.9431
79.9998
80.3117
82.0147
85.1824
90.9161
97.7321
104.342
110.099
89.6586
89.8464
89.7235
89.7937
89.8921
90.0253
90.215
90.4868
90.8644
91.3688
92.0196
92.8402
93.8759
95.1582
96.4163
97.4815
98.2965
98.6612
98.2256
96.2573
91.6962
84.3344
79.0538
79.9558
81.7799
84.9625
90.8301
97.7379
104.392
110.32
89.3293
89.3505
89.3704
89.4321
89.5334
89.6719
89.8699
90.1581
90.561
91.0992
91.7916
92.6605
93.7642
95.2046
96.5586
97.6785
98.5599
98.9889
98.6177
96.6329
91.7764
83.6149
77.9102
79.5908
81.5247
84.7205
90.7357
97.7438
104.441
110.564
88.9588
88.9489
88.9755
89.0341
89.131
89.2727
89.4832
89.7922
90.224
90.7994
91.5366
92.4544
93.611
95.257
96.6993
97.8769
98.8389
99.3424
99.0534
97.0662
91.8816
82.771
76.5193
79.2282
81.2474
84.456
90.6322
97.7495
104.488
110.83
88.5368
88.5409
88.5656
88.6108
88.6814
88.8225
89.0532
89.3886
89.8523
90.4677
91.2531
92.2218
93.3891
95.3061
96.8152
98.0688
99.1331
99.7215
99.5359
97.5656
92.0178
81.794
74.817
78.8828
80.9442
84.1692
90.5182
97.7541
104.529
111.12
88.0786
88.0938
88.1295
88.1753
88.1504
88.3182
88.5838
88.9477
89.4442
90.1022
90.9388
91.9637
93.0512
95.2849
96.8555
98.2458
99.443
100.126
100.069
98.1422
92.1896
80.6849
72.7336
78.5857
80.6085
83.8609
90.3914
97.7563
104.563
111.433
87.5658
87.5963
87.6492
87.9568
87.2263
87.7897
88.0853
88.4686
88.9966
89.6996
90.5894
91.676
92.6435
94.9622
96.7261
98.4028
99.7707
100.554
100.657
98.8085
92.3999
79.4561
70.2347
78.4378
80.2303
83.5323
90.2491
97.7541
104.585
111.77
87.0136
87.0656
87.1438
87.3723
86.9903
87.2944
87.5588
87.9442
88.5031
89.2557
90.1988
91.348
92.3973
94.1798
96.3239
98.5443
100.121
101.004
101.302
99.5784
92.6498
78.1157
67.3642
78.4638
79.801
83.1866
90.0891
97.7449
104.592
112.13
86.4444
86.5245
86.6147
86.7053
86.7057
86.782
86.9872
87.3591
87.9544
88.7658
89.7592
90.9614
92.2524
93.2453
95.6963
98.6931
100.499
101.472
102.01
100.47
92.9351
76.6424
64.223
78.5487
79.2959
82.828
89.9111
97.7253
104.578
112.515
85.8729
85.9922
86.0992
86.1683
86.1821
86.2177
86.3429
86.6912
87.3391
88.2259
89.2621
90.4897
92.0643
92.4688
95.1627
98.8911
100.915
101.95
102.782
101.506
93.2556
74.9653
60.7103
78.6802
78.6751
82.4631
89.7184
97.6914
104.539
112.922
85.3122
85.495
85.6367
85.6912
85.6434
85.5992
85.6135
85.9113
86.6383
87.63
88.6968
89.9161
91.7938
92.1627
95.1234
99.1848
101.378
102.424
103.62
102.705
93.6476
72.7823
56.9821
78.9888
77.8863
82.0966
89.5195
97.6388
104.469
113.352
84.7844
85.0759
85.2887
85.334
85.1634
84.8315
84.8237
84.9609
85.7964
86.9516
88.0172
89.1941
91.498
92.4996
95.7179
99.5922
101.899
102.871
104.522
104.081
94.1884
69.287
32.9936
79.4423
76.8503
81.7198
89.3391
97.5616
104.361
113.801
84.3111
84.7834
85.1321
85.1817
84.7953
84.1156
83.6457
83.7272
84.7368
86.1367
87.0173
88.2244
91.229
93.2505
96.7104
100.095
102.493
103.246
105.479
105.632
94.9386
67.6628
2.19787
79.8184
75.5311
81.2675
89.2404
97.4506
104.21
114.263
83.9196
84.6788
85.2874
85.3848
84.5775
83.203
82.17
82.0927
83.4609
85.2375
85.3215
86.7964
91.005
94.1077
97.7108
100.693
103.187
103.472
106.471
107.348
95.8564
59.7617
1.79865
58.8993
74.2471
80.4497
89.383
97.2911
104.005
114.725
83.6282
84.794
85.9735
86.3995
84.6749
81.911
80.2098
79.8152
81.9817
84.3058
82.8058
84.7187
90.8555
94.947
98.5578
101.516
104.039
103.395
107.482
109.218
97.2244
21.2727
1.51375
0.179813
0.420432
79.1373
89.9659
97.0579
103.733
115.163
39.3735
55.344
69.3621
78.9512
77.4591
72.6551
75.3978
77.3065
80.5362
83.3557
80.9634
82.8273
90.9406
95.7926
99.4385
102.832
105.138
102.744
108.509
111.24
98.9417
22.2988
1.30451
0.287528
0.358791
4.26844
91.2221
96.7103
103.39
115.534
0.132783
0.127947
0.127474
0.123191
0.118645
0.114878
0.11538
0.162977
0.0408427
25.3853
80.7184
81.3597
91.7711
96.6956
100.363
104.657
106.59
101.12
109.587
113.261
101.662
10.2901
1.09676
0.361311
0.318527
0.0795696
92.7762
96.1988
102.983
115.759
0.141766
0.14056
0.133127
0.145551
0.121688
0.119466
0.118809
0.139831
0.131625
0.102263
0.0549721
78.0061
94.1385
97.5919
100.94
106.689
108.253
99.9554
110.839
114.486
104.346
10.2998
0.907962
0.394337
0.300289
0.112341
98.0787
95.5228
102.49
115.703
0.134124
0.131301
0.127964
0.126571
0.123763
0.452613
0.111705
0.124281
0.122407
0.0800877
0.0390822
0.142207
100.443
98.0875
101.402
108.109
108.978
100.834
112.513
115.524
107.63
3.74993
0.765479
0.404271
0.290772
0.13121
1.04432
94.8564
101.893
115.11
0.227284
0.124134
0.123297
0.121925
0.121813
0.451246
0.103012
0.108176
0.106236
0.047287
-0.00179594
0.0799519
1.55837
96.282
101.704
109.235
108.354
101.396
114.421
114.57
103.998
2.75961
0.687874
0.402588
0.28351
0.141461
0.0435259
94.5718
101.257
113.354
108.415
86.6139
5.26694
-0.0558986
0.0121144
0.0156726
0.0425773
0.162832
-0.742431
90.2144
114.565
116.396
109.967
108.251
101.047
86.8519
-2.08269
0.246582
0.028016
0.0309661
0.0569164
0.111703
0.15114
0.163939
0.150935
0.149195
0.134377
0.123568
0.119198
0.118565
107.253
96.9467
-0.212142
-0.0617285
0.0087397
0.0152846
0.0434704
0.139343
0.234737
1.48533
119.615
117.911
109.893
109.637
99.9656
79.095
0.104873
0.378297
0.0156929
0.0207348
0.0383305
0.0942388
0.139259
0.153866
0.143047
0.128974
0.121975
0.113521
0.109826
0.11595
106.527
107.923
-0.12084
-0.0638521
0.00575901
0.0150964
0.0459827
0.134691
-0.39442
-4.18955
122.738
120.853
110.92
111.283
92.0698
0.189983
0.139784
0.711126
0.0166133
0.0923036
0.0355954
0.0777319
0.125066
0.145363
0.13425
0.119935
0.109218
0.0999665
0.0937054
0.104262
107.522
94.464
-0.116062
-0.0630553
0.00315849
0.0149935
0.0560575
0.136786
-0.2848
0.74474
121.162
122.989
112.568
113.967
78.5027
-0.0209767
0.256419
0.0857622
0.0203201
0.0243868
0.0338216
0.0649775
0.11119
0.128044
0.12234
0.107288
0.0950637
0.0847093
0.0725225
0.102322
109.878
0.0685271
-0.111163
-0.0606411
0.000925052
0.0149522
0.044136
0.0557358
-1.02034
-0.129295
120.483
123.887
114.482
118.149
-6.14746
-0.060493
0.307236
0.0777474
0.0237632
0.0217484
0.0266856
0.0610652
0.0958505
0.113238
0.105504
0.0919092
0.0800637
0.0706362
0.0629213
3.81003
114.246
0.0463113
-0.105143
-0.0574239
-0.000955154
0.0149862
0.0465563
0.0673519
-0.954639
0.505933
123.939
124.173
116.749
122.979
-0.000744785
0.0352246
0.0642782
0.071703
0.0248852
0.116127
0.0283861
0.057092
0.0846749
0.093178
0.0875125
0.0750487
0.0656097
0.0578722
0.0553358
0.0569188
0.157422
0.0366498
-0.0966174
-0.0538201
-0.00251625
0.0150784
0.0419518
0.0232892
-0.00433472
2.12095
131.08
126.935
118.009
6.47921
0.125273
-0.0294319
0.043672
0.0679428
0.0234319
0.105916
0.0239897
0.124197
0.231504
0.0769019
0.0700828
0.0582286
0.0627522
0.0493316
0.0507782
0.0546257
0.117972
0.0345436
-0.0866675
-0.0505331
-0.00375496
0.0152077
0.0366011
0.031795
-0.687293
1.65225
125.678
131.401
106.094
-0.238634
0.212678
-0.0176512
0.04243
0.0559959
0.053535
0.0550567
0.00751036
0.200049
0.225779
0.0639612
0.0554443
0.0435416
0.0380687
0.0401024
0.0420163
0.0457098
0.0851827
0.0295153
-0.076683
-0.0476495
-0.00466825
0.015356
0.0369521
0.0509469
-0.172851
4.01739
12.3181
120.435
-0.179444
-0.100092
0.189291
-0.0204245
0.0362531
0.126072
0.211245
0.0334605
0.0237018
0.034165
0.06322
0.0549791
0.0445318
0.0338813
0.0284516
0.0287672
0.0320854
0.0370412
0.0602978
0.0206517
-0.0672142
-0.0448673
-0.00530135
0.0154919
0.0366049
0.0488959
0.0462703
7.21864
-1.00411
-0.348536
-0.191659
-0.1353
0.0414679
-0.0360714
0.037477
0.048473
0.0564882
0.0530423
0.0390511
0.0472831
0.0576841
0.0491431
0.0369846
0.027237
0.0225879
0.0237289
0.0325497
0.0313555
0.0412947
0.0116924
-0.0586534
-0.0419575
-0.00567599
0.0155702
0.0374753
0.0539095
0.0780924
6.42702
-0.546133
-0.351447
-0.166545
-0.112986
-0.0764309
-0.0712653
0.0443737
0.0563216
0.0589177
0.052546
0.0538175
0.0541123
0.071154
0.046708
0.0349485
0.0247659
0.0198323
0.0207725
0.0377331
0.0281429
0.0267502
0.00824731
-0.0513321
-0.0388226
-0.00579958
0.015555
0.0365312
0.0626376
0.0484328
3.80572
-0.52748
-0.397116
-0.121039
-0.0740919
-0.116787
-0.151221
0.0724932
0.0619978
0.0634295
0.0615708
0.06209
0.0603512
0.0620406
0.046954
0.0361084
0.0391005
0.0246272
0.0201601
0.0222137
0.0270037
0.0161576
0.00475926
-0.0453594
-0.03547
-0.00570884
0.0154472
0.0366309
0.0667457
0.0482758
0.235846
-0.413898
-0.363134
-0.0834626
-0.0561482
-0.143859
2.23347
0.0919328
0.0633498
0.0665929
0.305472
0.0688989
0.0629227
0.0553962
0.0484507
0.0389718
0.031115
0.0265303
0.0256098
0.0272372
0.030597
0.00866321
0.00219683
-0.0406121
-0.0320566
-0.00540437
0.0152502
0.0354535
0.0722243
0.067321
0.19195
-0.315278
0.078047
-0.0792447
0.00479016
-0.122217
1.66657
0.0264784
0.0656222
0.0715404
0.081098
0.0715888
0.0678145
0.0602933
0.0515785
0.0408263
0.0356579
0.0323012
0.0317151
0.0345304
0.0373245
0.00381161
-0.00138865
-0.0368637
-0.0287111
-0.00489954
0.0149683
0.0344486
0.0738446
0.0741645
0.070628
-0.215525
-0.286369
-0.0816064
-0.0532188
-0.0796267
-0.000603972
0.0369322
0.0616527
0.0695003
0.0730478
0.0708954
0.0659784
0.056419
0.0548975
0.0409041
0.0397701
0.0396557
0.0399131
0.0384485
0.0348888
0.000943754
-0.00411862
-0.0338004
-0.025493
-0.00426027
0.0146104
0.0334906
0.0635017
0.0661373
0.0187224
-0.131906
-0.18568
-0.0873912
-0.0608373
-0.0522216
0.10227
0.037257
0.0521781
0.0708572
0.0641906
0.0633821
0.0605457
0.0531289
0.0446433
0.0413117
0.0420434
0.0454796
0.0596576
0.0725089
0.43648
-0.000721103
-0.00611715
-0.0311046
-0.0224689
-0.00354841
0.0141559
0.0320803
0.060119
0.0497765
-0.0383552
-0.0217499
-0.0946086
-0.0899496
-0.0695015
-0.0537034
0.0739312
0.0302368
0.0425212
0.0620995
0.0531745
0.0538972
0.053294
0.050255
0.0449471
0.0409395
0.039883
0.0352833
0.0118992
0.156963
0.0874036
-0.00123647
-0.00822523
-0.0286577
-0.0196499
-0.00281026
0.0135753
0.030211
0.0502479
0.034381
-0.0326403
0.085702
0.0265628
-0.086571
-0.0840562
-0.0580368
0.0412283
0.0135483
0.0291811
0.037337
0.0420704
0.0427092
0.0464669
0.0435978
0.0403807
0.0501735
0.039998
0.037973
0.03818
0.0456399
0.0570274
0.000334539
-0.0119808
-0.0264276
-0.0170304
-0.00207671
0.0128547
0.0277681
0.0424849
0.0261175
-0.0165405
0.0305997
-0.0286354
-0.101065
-0.114864
-0.0836951
-0.0422814
-0.00540232
0.0150062
0.0258781
0.0314794
0.0954428
0.0811992
0.0356663
0.0362108
0.0385394
0.0460659
0.0413553
0.0449523
0.0491292
0.0531482
0.00363725
-0.0198499
-0.0243412
-0.0146081
-0.00137891
0.0119785
0.0248964
0.0346348
0.0225022
0.000549318
0.0216966
-0.020792
-0.123134
-0.152056
-0.121136
-0.0649089
-0.0168889
0.00221632
0.0150496
0.0225384
0.0259206
0.0249551
0.0283894
0.0306532
0.0328619
0.0352215
0.0381205
0.041225
0.0442299
0.0470896
0.00862141
-0.0357672
-0.0222565
-0.0123656
-0.000753792
0.0109294
0.0235513
0.0279738
0.0198747
0.00903149
0.0219727
-0.000866934
-0.140042
-0.178802
-0.156286
-0.0896624
-0.0356748
-0.00327209
0.00558082
0.0126468
0.0167641
0.0198882
0.0226715
0.0250991
0.0275597
0.0301749
0.0328441
0.0354696
0.0379601
0.0402765
0.0139028
-0.0705812
-0.0198773
-0.0102995
-0.000228903
0.00971293
0.0180338
0.021855
0.0171624
0.0161646
-0.0130918
0.655314
-0.130607
-0.179534
-0.164766
-0.100913
-0.0411181
-0.0118778
0.000427272
0.00481992
0.00837897
0.0115395
0.0145362
0.0173295
0.0199953
0.0226356
0.0251579
0.0274817
0.02964
0.0316014
0.015604
-0.0613744
-0.016882
-0.00841109
0.000173842
0.00832671
0.0142748
0.0157756
0.0126399
0.00105546
-0.0229493
0.155822
-0.108506
-0.147923
-0.134775
-0.0821231
-0.0319989
-0.0102039
0.00204837
-0.00203345
-0.00129291
-2.80995e-05
0.00197921
0.00452217
0.00717941
0.0097167
0.0119819
0.0139367
0.015601
0.0168854
0.0115087
-0.0240323
-0.0134276
-0.00669715
0.000440791
0.00678875
0.0114155
0.00875264
0.0247481
-0.0132488
-0.0343447
-0.0585348
-0.0880555
-0.104016
-0.0884811
-0.054963
-0.0158355
-0.00643864
-0.00419905
-0.0105958
-0.0139194
-0.0170342
-0.0157461
-0.0178633
-0.0151407
-0.0127628
-0.0107005
-0.00910738
-0.00797987
-0.00738263
0.00588897
-0.00702738
-0.0100822
-0.00515397
0.000573857
0.00512172
0.0057736
0.000827856
0.016172
-0.0427215
-0.0518565
-0.0591975
-0.0691978
-0.030105
-0.0586288
-0.0370555
-0.0179703
-0.0138321
-0.0184857
-0.0247288
-0.0313228
-0.0371809
-0.0389999
-0.0452624
-0.0425499
-0.0448911
-0.0431607
-0.0413138
-0.0399917
-0.0393074
0.00206824
-0.000561088
-0.00727849
-0.00378635
0.000594246
0.00340187
0.00151461
-0.00722064
-0.00710967
-0.106038
-0.0772575
-0.0575752
-0.0530143
-0.0514987
-0.045586
-0.0313545
-0.025996
-0.0250839
-0.026074
-0.0382059
-0.0495629
-0.0610266
-0.0650324
-0.0719324
-0.0745092
-0.0768939
-0.0486912
-0.0675078
-0.0661083
-0.0657633
0.000265533
0.00129062
-0.00498396
-0.00260621
0.000540615
0.00185298
-0.00184144
-0.0122612
-0.00423239
-0.172529
-0.105307
-0.054788
-0.0418583
-0.0373916
-0.0140294
-0.0310672
-0.0288131
-0.0304373
-0.0311909
-0.0416986
-0.0614799
-0.068939
-0.0719539
-0.0750713
-0.0750639
-0.0727279
-0.0485341
-0.0708796
-0.0773044
-0.0783818
-0.000359225
0.00130934
-0.00315213
-0.00161537
0.000457926
0.000723128
-0.00383761
-0.019964
-0.0265634
-0.145792
-0.0992176
-0.0492609
-0.0344319
-0.0282183
0.021679
-0.0228759
-0.0251818
-0.0312099
0.00322228
-0.0398876
-0.0400213
0.0502393
0.0802037
-0.040994
-0.0671579
-0.0741497
-0.0751667
-0.073191
-0.0727678
-0.0718301
-0.000382367
0.000637383
-0.00168208
-0.000808479
0.000359032
0.000175699
-0.00365087
-0.0114277
-0.0242838
-0.0145495
-0.0640707
-0.0427057
-0.0315459
-0.0244977
-0.0204633
-0.0183955
-0.0107687
-0.0252806
-0.02757
-0.000839227
-0.0287755
-0.0330066
-0.0364918
-0.0423126
-0.0617048
-0.0532282
-0.047325
-0.0437323
-0.0438463
-0.0434862
-0.000168012
4.7411e-05
-0.000133369
-4.27264e-05
8.32296e-05
9.45657e-05
-0.000228422
-0.00154748
-0.00279277
-0.00966432
-0.0373725
-0.0438454
-0.0351944
-0.0249512
-0.0169133
-0.0113245
-0.00791553
-0.00758879
-0.0106986
-0.014502
-0.0158373
-0.0148557
-0.0122533
-0.00920261
-0.00672355
-0.00453215
-0.00083406
0.000889257
0.00187872
0.00354623
0.37358
0.119376
0.116981
0.117005
0.114048
0.10501
0.0973976
0.0976851
0.090094
0.0328302
-0.0203861
0.0439394
-0.0504318
85.0884
101.186
110.7
108.266
101.848
115.368
114.858
110.784
3.25815
0.680898
0.397385
0.278244
0.146442
0.0525671
-0.0456824
100.874
111.131
0.124637
0.114907
0.110264
0.11278
0.10858
0.0994591
0.0927867
0.0904201
0.0800228
0.0273975
-0.0281944
0.0484224
0.0393408
0.328476
100.643
112.356
107.718
100.146
115.579
115.971
124.311
3.63496
0.686972
0.392397
0.273971
0.149511
0.0553335
0.107896
100.571
109.037
0.123212
0.109827
0.110426
0.119882
0.100565
0.0928668
0.0874847
0.0834612
0.0724276
0.0267131
-0.0264441
0.0183147
0.0904522
0.173589
31.9456
112.876
108.494
100.12
115.735
117.696
127.597
4.20875
0.681063
0.385867
0.269172
0.152054
0.0565096
0.0814284
2.11871
106.971
0.128412
0.107342
0.102657
0.172918
0.0798825
0.0863773
0.0822511
0.0770264
0.0668989
0.0298823
-0.0153238
0.0200198
0.0392292
0.128788
0.256522
116.068
109.03
100.462
116.853
118.991
131.856
-2.15438
0.653438
0.377395
0.263741
0.153909
0.057844
0.0645726
0.0040243
105.638
6.35328
0.0955909
0.0918161
0.0896659
0.0775615
0.0817593
0.0777943
0.071091
0.0629947
0.0507716
0.000123503
0.0175839
0.04373
0.118498
0.218834
-0.307869
109.241
103.891
121
120.953
83.5696
-1.34686
0.610152
0.36686
0.257509
0.154879
0.0598025
0.0541932
-0.000256038
22.9558
0.0504993
0.0656815
0.078665
0.0781965
0.0728113
0.0927073
0.0747651
0.0651206
0.0610057
0.0422355
0.0225402
0.0228497
0.0321659
0.0943342
0.187893
-0.315679
8.59461
106.953
124.378
125.026
40.5527
-1.0442
0.556662
0.353832
0.250418
0.154826
0.0622227
0.0480712
0.00601834
0.141725
0.0564255
0.0603345
0.0670571
0.0690761
0.0680461
0.0818088
0.0914413
0.0588597
0.059474
0.0465527
0.0339593
0.0269742
0.0220898
0.0853912
0.0589105
-0.244339
-0.252775
12.9134
125.454
123.75
-0.909881
-0.88411
0.496062
0.338194
0.242461
0.153766
0.06495
0.0445482
0.0107148
0.104739
0.0493273
0.0539807
0.0590618
0.0627219
0.0383961
0.190726
0.0595627
0.0637371
0.0620086
0.0464752
0.0410433
0.0423838
0.010378
-0.00723684
0.0432374
-0.337171
-0.237775
-0.312792
35.1326
13.6444
-1.01287
-0.874185
0.433921
0.31972
0.233616
0.151784
0.0676188
0.042692
0.0159252
0.0917044
0.041615
0.0465634
0.0523555
0.0579362
0.41733
1.68867
0.0531461
0.0550161
0.0551845
0.0438341
0.0438166
0.0292125
-0.000417258
-0.0420221
2.83678
-0.510511
-0.149564
-0.317317
-0.392829
-0.498074
-0.942777
-0.763881
0.365598
0.298812
0.22385
0.148907
0.0700777
0.0420719
0.0209646
0.0689222
0.0354142
0.0403369
0.0449255
0.0461027
0.0409496
0.0522328
0.0514307
0.0494586
0.0438318
0.0455497
0.0635233
0.0280199
-0.00329248
-0.0458079
0.813954
-0.255004
0.0369238
-0.317722
-0.348708
-0.512898
-0.747638
-0.723484
0.300915
0.275541
0.21314
0.145145
0.0721433
0.0425315
0.0255748
0.051251
0.0322633
0.0373374
0.0426969
0.0491452
0.0514603
0.0507088
0.0497013
0.0460606
0.0411198
0.0374254
0.0965745
0.0245402
-0.003869
-0.0336329
0.302785
-0.120531
-0.0776567
-0.308606
-0.390624
-0.497785
-0.654197
-0.655765
0.233875
0.250289
0.201469
0.140554
0.07365
0.0436609
0.0297014
0.0382415
0.0318521
0.0372897
0.0433782
0.049055
0.0657487
0.0508235
0.0490896
0.0441761
0.0396782
0.0369427
0.028386
0.0219173
-0.00474277
-0.00528242
0.00990733
-0.177811
-0.194431
-0.305193
-0.410076
-0.481982
-0.665245
-0.567628
0.165177
0.223637
0.188901
0.135198
0.0744901
0.0449432
0.0331816
0.0270477
0.0352365
0.0404946
0.0463085
0.0519957
0.0569009
0.0587528
0.0539559
0.0668618
0.0402423
0.0369381
0.0267174
0.017375
-0.00467504
-0.0263718
-0.0695641
-0.129521
-0.227392
-0.279468
-0.414926
-0.496166
-0.267685
-0.511722
0.11333
0.196275
0.175523
0.129123
0.0745948
0.0460447
0.0357722
0.0216792
0.0391435
0.0447808
0.0530209
0.0589742
0.0617959
0.0598099
0.0571873
0.064217
0.0431562
0.0353692
0.0274016
0.0147607
-0.00147147
-0.0306236
-0.0755663
-0.162319
-0.235917
-0.256585
-0.277501
-0.460979
-0.0874938
-0.428568
0.0632549
0.168957
0.161425
0.122394
0.0739094
0.0467564
0.0373547
0.0194441
0.0413193
0.0517084
0.063003
0.0657475
0.0669948
0.0601257
0.0539058
0.0448721
0.0445159
0.03737
0.0253284
0.0417078
0.00268045
-0.0292513
-0.0828463
-0.166302
-0.232318
-0.191022
-0.272586
-0.430719
0.0112653
-0.322968
0.0259657
0.142522
0.14679
0.115093
0.072458
0.0469093
0.0378946
0.0188205
0.0638786
0.0673408
0.071059
0.0697062
0.0658075
0.0707601
0.0505818
0.10964
0.0526105
0.0435563
0.0280361
0.0148996
0.0199617
-0.0377845
-0.087268
-0.158072
-0.236869
0.171649
-0.259701
-0.387004
-0.156061
-0.282111
-0.00252822
0.117743
0.131833
0.107297
0.070313
0.0464001
0.0374443
0.0186332
0.075049
0.0740355
0.0778845
0.37734
0.424148
0.0674432
0.0701432
2.10964
0.0614275
0.0494244
0.0326335
0.0114073
-0.00806859
-0.0342244
-0.0337632
-0.179304
-0.237254
-0.00371598
-0.273843
-0.391001
-0.224889
-0.0538561
-0.0175181
0.0953032
0.11682
0.0991016
0.067549
0.0452472
0.0361424
0.0182601
0.0639366
0.0667694
0.0675033
0.067869
0.0703238
0.0731193
0.152039
0.0768777
0.0729906
0.0563158
0.037937
0.0128574
-0.0166012
0.0135546
-0.0935659
-0.173251
-0.224181
-0.197061
-0.241576
-0.395667
-0.22805
-0.114485
-0.0221261
0.0756329
0.102041
0.0905803
0.0642565
0.0435614
0.034191
0.0174737
0.0565791
0.059842
0.0636925
0.0702523
0.0724114
0.0773707
0.0888416
0.0761472
0.0702806
0.0594055
0.0405519
0.0117558
-0.024822
-0.0585991
-0.102166
-0.168478
-0.22024
-0.209011
0.69611
-0.262245
-0.296199
-0.118436
-0.0229867
0.058867
0.0877767
0.0818269
0.0604958
0.0414962
0.0318168
0.0162877
0.0499343
0.0530131
0.0565814
0.064878
0.0667395
0.0720857
0.0750277
0.0722122
0.0662231
0.0544156
0.0331733
0.000434148
-0.0399842
-0.0786662
-0.120481
-0.16547
-0.202516
-0.189317
0.0537597
-0.00164326
0.348365
-0.0982294
-0.0223951
0.0448635
0.0742785
0.0729664
0.0562836
0.0392373
0.0292806
0.0148418
0.0425469
0.044946
0.0475479
0.0502747
0.0528621
0.0553812
0.0571815
0.0552625
0.0489134
0.0354881
0.0413065
-0.0325636
-0.0759979
-0.117409
-0.151678
-0.177721
-0.183184
-0.189398
-0.159394
0.338653
0.0141149
-0.0772049
-0.0215178
0.0332683
0.0617602
0.064127
0.0516636
0.036869
0.026813
0.0132973
0.033427
0.0352457
0.0369246
0.0381697
0.0385553
0.105684
0.104179
0.0260052
0.0127828
-0.0102789
-0.0466606
-0.0960649
-0.144219
-0.185271
-0.198195
-0.197043
-0.177604
-0.152482
-0.140148
0.701534
-0.0422216
-0.0633873
-0.0212682
0.0236961
0.0503602
0.0554472
0.0466935
0.0342749
0.0244657
0.0117664
0.0177803
0.0183107
0.0180294
0.0159652
0.0115394
0.00385746
-0.00588021
-0.0193088
-0.0433121
-0.0799614
-0.123834
-0.200699
-0.199465
-0.243551
-0.285019
-0.2332
-0.175616
-0.132445
-0.101393
0.504963
-0.063114
-0.0609835
-0.0221244
0.0157913
0.0401588
0.0470626
0.0414303
0.0313243
0.0221124
0.010299
-0.00732283
-0.00780175
-0.00926915
-0.01245
-0.018232
-0.027303
-0.0402653
-0.0620672
-0.0978681
-0.152914
-0.225778
-0.307122
-0.296828
-0.435292
-0.395038
-0.267474
-0.177279
-0.106967
-0.0584769
0.122363
-0.097829
-0.0687252
-0.0240195
0.00932838
0.031204
0.0390866
0.0359619
0.0279887
0.0196427
0.00890014
-0.0392008
-0.0398147
-0.04156
-0.0449595
-0.0508509
-0.0606166
-0.0762884
-0.0999898
-0.136119
-0.190305
-0.265411
-0.356471
-0.44387
-0.507446
-0.473119
-0.326068
-0.144263
-0.0792004
-0.0218303
0.0612339
-0.312755
-0.0778078
-0.024526
0.00429552
0.0235078
0.031621
0.0303756
0.0242967
0.0170146
0.00754998
-0.0661459
-0.066992
-0.0687074
-0.0717316
-0.077021
-0.0852156
-0.0980382
-0.118177
-0.148794
-0.192622
-0.251945
-0.326258
-0.402813
-0.423304
-0.430251
-0.300643
-0.143508
-0.0499363
0.00450453
0.150192
-0.11903
-0.0562896
-0.00100451
0.000836422
0.0170648
0.0247303
0.0247411
0.0202945
0.01422
0.00622035
-0.0794896
-0.0808653
-0.0825958
-0.0845408
-0.0886328
-0.0945201
-0.103744
-0.11713
-0.136428
-0.162354
-0.195232
-0.23276
-0.273367
-0.291766
-0.2682
-0.182269
-0.0826845
-0.0251945
0.00676307
0.423172
-0.0214911
-0.0329609
-0.0224228
-0.00142038
0.011849
0.0184204
0.0191103
0.0160255
0.0112561
0.00488286
-0.0703417
-0.0589577
0.0478915
-0.0891051
-0.0848364
-0.086308
-0.0920979
-0.0958434
-0.105873
-0.106202
-0.0418273
-0.115228
0.00536158
-0.123133
-0.101696
-0.0623108
-0.0229343
-0.00506266
0.00336697
-0.000694406
-0.0140472
-0.0112352
-0.0157981
-0.00124355
0.00774203
0.0126369
0.0134944
0.0115164
0.00811566
0.00351132
-0.041336
-0.0340139
0.0161674
-0.0418959
-0.0616544
-0.0601161
-0.0610449
-0.0385911
-0.0576695
0.0999092
-0.0524608
-0.046819
-0.0417574
-0.040573
-0.0139244
7.46193e-06
0.0277806
0.00718418
0.00409892
-0.00189178
-0.0052243
-0.0102514
-0.00731766
-0.000153293
0.00438935
0.00721935
0.00784052
0.00676197
0.00477994
0.00207839
0.00772839
0.000960281
-0.00439407
-0.00569272
-0.0132494
-0.0162327
-0.0171285
0.029681
0.0265128
-0.0232412
-0.015266
0.0288241
-0.0211911
0.00395326
0.00104132
0.00476919
0.00406558
0.00332099
0.00160249
-0.000422856
-0.00119133
-0.00176094
-0.000177763
0.00056811
0.000617669
0.000555784
0.000542873
0.00041816
0.000292009
0.000161415
91.5864
88.8707
88.1526
86.7334
84.8138
83.4939
83.5299
85.8765
90.0047
93.8361
96.2332
97.2411
97.292
96.8098
96.0948
95.3252
94.5951
93.9465
93.394
92.9368
92.5669
92.2736
92.0454
91.8723
91.7447
91.6546
91.5947
91.5587
91.5411
91.5375
91.518
88.8413
88.1584
86.7384
84.8084
83.4758
83.478
85.8157
89.9959
93.8741
96.2859
97.2875
97.3257
96.831
96.1045
95.3245
94.5851
93.9288
93.3702
92.9085
92.5352
92.2395
92.0098
91.8355
91.7071
91.6165
91.5563
91.5202
91.5027
91.4992
91.4083
88.793
88.1693
86.747
84.7972
83.4421
83.3832
85.6968
89.96
93.921
96.3677
97.3669
97.388
96.874
96.1292
95.3314
94.5753
93.9044
93.334
92.8634
92.4837
92.1834
91.9504
91.774
91.6443
91.5531
91.4926
91.4565
91.4391
91.4357
91.2558
88.7251
88.1855
86.7591
84.7801
83.3939
83.2473
85.524
89.9056
93.9821
96.4777
97.4773
97.4781
96.9397
96.1699
95.3471
94.5667
93.8747
93.2873
92.8037
92.4144
92.1072
91.8695
91.6899
91.5583
91.466
91.4051
91.3689
91.3516
91.3484
91.0542
88.6364
88.2073
86.7746
84.7571
83.3318
83.0692
85.293
89.8329
94.0604
96.6178
97.6177
97.5929
97.0233
96.222
95.3675
94.5568
93.8381
93.2291
92.7291
92.3274
92.0113
91.7672
91.5831
91.4486
91.3544
91.2925
91.2559
91.2385
91.2354
90.7945
88.5258
88.2355
86.7939
84.7281
83.2573
82.8477
84.9977
89.7407
94.1572
96.79
97.7887
97.7305
97.1219
96.2823
95.3906
94.544
93.7934
93.1586
92.6387
92.2223
91.8952
91.6429
91.453
91.3142
91.217
91.153
91.1152
91.0975
91.0946
90.4651
88.3918
88.2707
86.817
84.6928
83.172
82.5816
84.6298
89.6275
94.274
96.9962
97.9912
97.8906
97.2342
96.35
95.4154
94.5275
93.7397
93.0747
92.5317
92.098
91.758
91.496
91.2987
91.1542
91.0526
90.9854
90.9457
90.9272
90.9245
90.0469
88.2327
88.3139
86.8444
84.6512
83.0782
82.2696
84.1791
89.492
94.4126
97.2386
98.2267
98.0733
97.3598
96.4243
95.4417
94.5066
93.6757
92.976
92.4068
91.9534
91.5985
91.3253
91.1192
90.9678
90.8606
90.7891
90.7465
90.7267
90.7241
89.5423
88.0472
88.366
86.8762
84.603
82.9785
81.9096
83.6321
89.3326
94.5751
97.5197
98.4969
98.2786
97.4979
96.5046
95.4687
94.4804
93.5999
92.8607
92.262
91.7868
91.4152
91.1292
90.9134
90.7541
90.6405
90.5637
90.5169
90.4947
90.4921
88.9742
87.8339
88.4282
86.9128
84.5476
82.8762
81.5027
82.9711
89.1486
94.764
97.8427
98.8036
98.5067
97.6477
96.59
95.4957
94.4476
93.5101
92.7263
92.0954
91.5961
91.2062
90.9062
90.6797
90.5123
90.3921
90.3095
90.2571
90.2301
90.2255
88.3117
87.5917
88.5019
86.9545
84.4846
82.7751
81.0474
82.1727
88.9395
94.9816
98.2112
99.1496
98.7576
97.8078
96.679
95.522
94.4072
93.4037
92.5701
91.9043
91.3791
90.9692
90.654
90.4163
90.2408
90.1145
90.0264
89.968
89.933
89.917
87.5268
87.3192
88.5882
87.0014
84.4131
82.6797
80.5443
81.2045
88.7066
95.2302
98.6295
99.5377
99.0312
97.9767
96.7699
95.5462
94.3578
93.2772
92.3887
91.6861
91.1333
90.7016
90.3696
90.1199
89.9367
89.8054
89.7133
89.6499
89.6083
89.5872
86.5962
87.0149
88.6887
87.0535
84.3323
82.5952
79.9948
80.0216
88.4536
95.5118
99.1023
99.9716
99.3275
98.1521
96.8604
95.567
94.2977
93.1258
92.1781
91.4375
90.8558
90.4002
90.0493
89.7864
89.5954
89.4606
89.3671
89.302
89.2549
89.2915
85.5553
86.6775
88.8048
87.1105
84.2409
82.5273
79.4025
78.5624
88.1888
95.8271
99.635
100.456
99.6464
98.3311
96.9475
95.5818
94.2252
92.943
91.9338
91.1552
90.5436
90.0615
89.6884
89.4101
89.2103
89.0723
88.9797
88.918
88.8778
88.8577
84.3547
86.3066
88.9378
87.1716
84.1378
82.4821
78.7934
76.7518
87.9302
96.1746
100.233
100.996
99.9878
98.51
97.0276
95.5865
94.1372
92.7192
91.651
90.8352
90.1937
89.6816
89.2816
88.9837
88.7727
88.6302
88.5382
88.4811
88.4479
88.4314
82.9466
85.9033
89.0891
87.2351
84.0218
82.4659
78.2315
74.5009
87.7056
96.5483
100.904
101.598
100.351
98.6833
97.0967
95.5741
94.0253
92.4397
91.3248
90.4732
89.8034
89.2568
88.8224
88.4992
88.2737
88.1252
88.0334
87.9817
87.9574
87.9521
81.2832
85.4712
89.2596
87.2982
83.8917
82.484
77.7507
71.6218
87.5289
96.9327
101.653
102.27
100.737
98.8431
97.1515
95.5317
93.8607
92.076
90.9454
90.0635
89.3712
88.7842
88.3036
87.9467
87.7035
87.5493
87.4607
87.4189
87.4089
87.4193
79.3135
85.0177
89.4496
87.3559
83.7471
82.5411
77.4377
67.7944
87.4192
97.3055
102.487
103.021
101.143
98.9772
97.1908
95.4403
93.5592
91.6152
90.4947
89.5983
88.898
88.2633
87.7163
87.3126
87.0499
86.8942
86.8172
86.7966
86.8124
86.8485
76.982
84.5554
89.6593
87.4001
83.5879
82.6403
77.4595
62.4453
87.4488
97.6644
103.41
103.861
101.567
99.0665
97.2245
95.2783
93.047
91.1539
89.9515
89.0664
88.3905
87.6995
87.0506
86.5776
86.2967
86.1525
86.1046
86.1246
86.184
86.2598
74.2293
84.1037
89.8882
87.4165
83.4146
82.7887
78.0538
55.0144
87.7134
98.035
104.427
104.801
102.002
99.09
97.3285
95.0405
92.4267
90.6992
89.2915
88.452
87.8672
87.1126
86.3008
85.7178
85.4211
85.3101
85.3159
85.4014
85.5278
85.6629
70.9959
83.6912
90.1341
87.3814
83.2273
83.0176
79.4581
45.9455
88.3027
98.447
105.537
105.85
102.433
99.0315
97.5153
94.7591
91.9095
90.1973
88.4797
87.7282
87.3646
86.5288
85.4676
84.7208
84.3918
84.3306
84.4204
84.6072
84.8374
85.0658
67.2289
83.3571
90.3918
87.264
83.0269
83.3086
81.5928
9.29574
89.3526
98.8421
106.735
107.013
102.82
98.8465
97.5807
94.5251
91.6249
89.6821
87.4227
86.7932
86.9332
85.929
84.5088
83.5462
83.1598
83.1583
83.372
83.7127
84.104
84.4804
62.8946
83.1538
90.6514
86.5824
82.8239
83.3599
25.9638
0.754643
91.3252
99.0841
108.009
108.294
103.076
98.4051
97.8044
94.4563
91.5886
89.2191
85.8452
85.176
86.4581
85.2783
83.3373
82.0914
81.6454
81.7396
82.1206
82.6785
83.3121
83.9163
58.0037
83.148
90.8955
86.4168
82.4291
83.0164
-0.232299
0.383164
97.0364
99.2272
109.343
109.686
102.943
97.4441
98.3965
94.6068
91.7667
88.879
83.2102
81.8142
85.5677
84.6203
81.8777
80.2565
79.7455
80.0297
80.5946
81.4356
82.4483
83.3911
52.6335
83.4204
91.0961
86.3739
82.258
1.08245
-0.124509
0.351301
92.5381
99.2946
110.713
111.162
101.795
95.0822
99.1539
94.9063
92.067
88.8042
80.4903
77.3166
84.9355
83.7812
79.7159
77.964
77.1253
78.0713
78.6328
79.7811
81.5772
82.9345
46.9605
84.0591
91.214
86.6502
15.4075
-0.0355803
-0.013756
0.422485
73.941
99.0242
112.101
112.651
100.472
93.272
100.141
95.1286
92.3918
89.2559
80.6091
75.4081
85.3601
81.9609
16.3283
0.171105
0.162641
0.159588
0.156909
0.146985
0.135028
0.124038
41.2454
85.1454
91.2122
86.8821
0.0493279
-0.00713577
0.0313777
0.496201
40.0095
99.3066
113.488
114.012
100.735
94.4558
101.221
95.0287
92.6939
90.5534
84.3741
23.0927
0.161387
0.17524
0.173183
0.172723
0.160568
0.157854
0.154196
0.145075
0.138073
0.133651
35.7726
86.8213
91.0278
3.09304
0.0247134
0.00814261
0.0439427
0.483629
16.7542
101.437
114.655
115.069
102.154
98.7151
101.41
94.5154
92.9763
91.7391
0.0450012
0.124089
0.149374
0.16505
0.170936
0.168232
0.160967
0.161174
0.175684
0.142031
0.137266
0.148935
31.6236
89.51
90.1137
-0.0852105
0.0125105
0.0148888
0.0949989
0.405372
8.58629
103.144
114.578
115.669
102.93
103.235
101.104
93.0405
92.9793
0.0574268
0.0443671
0.102793
0.136199
0.158938
0.169068
0.165782
0.155409
0.173855
0.14117
0.135442
0.131079
0.13061
23.5276
93.2705
-0.189975
-0.050931
0.00824988
0.0183501
0.109822
0.289049
3.46337
104.573
114.679
116.221
101.889
105.592
101.671
89.5814
-0.83215
0.0797312
0.030562
0.0597609
0.101101
0.14534
0.167812
0.165032
0.150985
0.158721
0.134255
0.126524
0.123017
0.348571
91.5453
91.5667
91.6058
91.6677
91.7584
91.885
92.0562
92.2821
92.5741
92.9443
93.4025
93.9521
94.5841
95.2681
95.9445
96.5135
96.8141
96.5898
95.4884
93.1462
89.4684
85.3195
82.6518
82.4833
84.4545
88.5238
94.4239
100.905
106.804
110.047
91.5071
91.5287
91.568
91.6301
91.721
91.8481
92.02
92.2472
92.5416
92.9154
93.3788
93.9355
94.5764
95.2705
95.9575
96.5369
96.8478
96.633
95.5359
93.1824
89.4647
85.2619
82.5893
82.448
84.4286
88.5051
94.4192
100.906
106.815
110.067
91.4438
91.4654
91.5048
91.567
91.6582
91.7858
91.9591
92.189
92.4878
92.8684
93.3415
93.9116
94.5695
95.2835
95.9903
96.5873
96.9124
96.7074
95.6097
93.2267
89.4342
85.145
82.4759
82.3853
84.3817
88.472
94.4124
100.909
106.838
110.11
91.3566
91.3784
91.4178
91.48
91.5714
91.6998
91.8751
92.109
92.4145
92.8051
93.2925
93.882
94.5652
95.3087
96.0449
96.6663
97.0076
96.8111
95.7083
93.2825
89.3851
84.9743
82.3145
82.296
84.3137
88.4241
94.4035
100.916
106.875
110.176
91.2439
91.2659
91.3057
91.3681
91.46
91.5898
91.7679
92.0072
92.3215
92.7253
93.2312
93.846
94.5619
95.3433
96.1167
96.7681
97.1292
96.9428
95.8332
93.353
89.3184
84.7463
82.1031
82.1811
84.2243
88.361
94.3926
100.926
106.926
110.266
91.1035
91.1262
91.1667
91.2299
91.3229
91.4546
91.6366
91.8829
92.2083
92.6284
93.157
93.8026
94.5587
95.3861
96.2029
96.8891
97.2746
97.1022
95.9861
93.4399
89.2331
84.4542
81.8394
82.0416
84.1137
88.2826
94.38
100.938
106.991
110.38
90.9342
90.9579
90.9995
91.064
91.1585
91.293
91.4801
91.7349
92.0737
92.5132
93.0686
93.7507
94.5547
95.4369
96.3032
97.0283
97.4429
97.2894
96.1685
93.5449
89.1281
84.0898
81.5206
81.8794
83.9817
88.1883
94.3662
100.953
107.07
110.519
90.7349
90.76
90.8029
90.8689
90.9655
91.1034
91.2967
91.5619
91.9165
92.3784
92.9645
93.6884
94.5491
95.4958
96.4177
97.1856
97.6339
97.505
96.3824
93.6703
89.0022
83.642
81.1431
81.6968
83.8282
88.0776
94.3516
100.97
107.165
110.682
90.5046
90.5307
90.5743
90.6425
90.7418
90.884
91.0847
91.362
91.7349
92.2224
92.8428
93.6138
94.5407
95.5635
96.5463
97.3605
97.8476
97.7496
96.6301
93.8193
88.8545
83.0964
80.7025
81.4967
83.653
87.95
94.3369
100.99
107.274
110.871
90.2424
90.2677
90.3087
90.3817
90.4852
90.6326
90.8419
91.1334
91.5273
92.0435
92.7016
93.5241
94.5277
95.6406
96.6887
97.5523
98.0835
98.0241
96.9141
93.9952
88.6839
82.434
80.1932
81.2832
83.4558
87.8046
94.323
101.01
107.389
111.086
89.9993
90.1473
89.9982
90.0849
90.194
90.3474
90.5665
90.8742
91.2919
91.84
92.5388
93.4158
94.5079
95.728
96.8435
97.7596
98.3414
98.3291
97.2378
94.2024
88.4903
81.6299
79.6084
81.0614
83.2362
87.6402
94.3106
101.032
107.515
111.327
89.6008
89.6513
89.6691
89.7522
89.8672
90.0265
90.2563
90.5825
91.0272
91.6105
92.3525
93.2844
94.4771
95.8271
97.0076
97.9805
98.6207
98.6656
97.6049
94.446
88.2743
80.6504
78.9395
80.8373
82.9936
87.4553
94.3009
101.055
107.651
111.595
89.2375
89.2553
89.2985
89.3812
89.5003
89.666
89.9086
90.2565
90.7316
91.3535
92.1411
93.125
94.4278
95.9382
97.1752
98.2126
98.9209
99.0346
98.0248
94.7322
88.0377
79.4495
78.1757
80.6185
82.7272
87.248
94.2953
101.078
107.798
111.89
88.843
88.8587
88.8979
88.9713
89.0858
89.2601
89.5211
89.8949
90.4037
91.0676
91.9034
92.9327
94.3406
96.0565
97.335
98.453
99.2417
99.437
98.4985
95.068
87.784
77.9626
77.2998
80.4134
82.4361
87.0154
94.2955
101.101
107.96
112.212
88.4282
88.4439
88.4788
88.5263
88.6174
88.8064
89.0938
89.4969
90.042
90.751
91.6382
92.705
94.1534
96.1573
97.4689
98.6992
99.5829
99.8734
99.0337
95.462
87.5183
76.0966
76.2846
80.2315
82.119
86.754
94.3036
101.122
108.129
112.561
87.9621
87.9912
88.0451
88.0529
88.0706
88.3127
88.6297
89.0616
89.6444
90.4013
91.3432
92.4445
93.7102
96.1457
97.5506
98.9503
99.9446
100.344
99.6385
95.9239
87.2463
73.7214
75.1302
80.0927
81.7746
86.4585
94.3225
101.141
108.298
112.936
87.4455
87.4897
87.5474
95.2653
87.5033
87.8029
88.1309
88.5854
89.2073
90.0146
91.0121
92.167
93.0703
95.7704
97.5526
99.2089
100.328
100.85
100.322
96.4645
86.9734
70.686
73.9393
80.026
81.4015
86.1215
94.3558
101.157
108.47
113.335
86.8987
86.9669
87.0739
87.111
87.0719
87.2813
87.5897
88.0595
88.7251
89.586
90.6348
91.8909
92.7886
94.7953
97.4705
99.4832
100.732
101.388
101.094
97.0977
86.7031
66.815
72.8397
80.0418
80.9987
85.7318
94.4092
101.168
108.647
113.754
86.344
86.4359
86.5276
86.5822
86.5971
86.7233
86.9864
87.47
88.1913
89.111
90.1993
91.5652
92.7663
93.4358
97.3627
99.7883
101.16
101.955
101.966
97.8413
86.4376
61.656
71.9963
80.172
80.5655
85.272
94.4929
101.17
108.828
114.189
85.7968
85.9232
86.0166
86.0499
86.0471
86.1095
86.2893
86.7992
87.5991
88.5858
89.6874
91.1417
92.7421
92.3921
97.3628
100.144
101.61
102.543
102.949
98.6784
86.2211
54.2879
71.689
80.4597
80.1016
84.7169
94.6234
101.162
109.016
114.633
85.2802
85.4672
85.5773
85.564
85.457
85.6062
85.4631
86.0144
86.9343
88.0023
89.0639
90.641
92.6792
92.2908
97.6071
100.571
102.081
103.138
104.055
99.6492
86.1748
44.8015
72.273
80.9669
79.6021
84.042
94.8243
101.141
109.21
115.072
84.8277
85.1241
85.2809
85.199
84.8777
84.5686
84.5138
85.0365
86.1473
87.3119
88.2499
90.0633
92.6841
93.1564
98.1081
101.079
102.569
103.716
105.289
100.749
86.4752
18.5177
74.6258
81.7143
79.0353
83.2587
95.1263
101.107
109.413
115.489
84.4743
84.9606
85.2192
85.0243
84.334
83.5583
83.2186
83.7727
85.1894
86.4128
87.0392
89.3642
92.8195
94.4229
98.725
101.683
103.073
104.229
106.657
101.855
87.2341
-1.29302
18.0434
82.662
78.3158
82.4491
95.5684
101.06
109.626
115.856
84.2635
85.0733
85.5774
85.1981
83.7665
82.249
81.4693
82.155
84.1735
85.1603
84.8997
88.5027
93.072
95.6508
99.3058
102.42
103.59
104.592
108.155
102.914
88.3318
1.02802
0.823611
83.7555
77.3078
81.4894
96.202
101.005
109.853
116.132
84.2395
85.4968
86.803
86.2291
83.0206
80.43
78.5763
79.7546
83.1522
83.4991
82.0412
87.5335
93.4623
96.6974
100.059
103.352
104.136
104.677
109.75
103.948
91.0529
0.928833
0.808485
0.228321
0.73526
80.9
97.0873
100.945
110.095
116.252
0.38271
5.17263
12.0134
16.4944
16.4855
21.9758
39.6765
72.0783
82.314
82.5671
79.7777
86.7266
94.1247
97.6739
101.384
104.524
104.767
104.304
111.382
104.6
94.7216
1.04535
0.755452
0.279543
0.420029
80.4425
98.2497
100.89
110.352
116.123
0.131005
0.128821
0.125936
0.122224
0.115737
0.116255
0.153592
0.177773
0.155555
20.6578
77.5575
86.704
95.3496
98.5653
103.049
105.888
105.627
103.396
112.935
105.545
97.2111
1.26252
0.683694
0.325298
0.349712
-0.053977
99.6682
100.859
110.634
115.599
0.14392
0.133139
0.140734
0.127761
0.122378
0.114666
0.127335
0.140429
0.120682
0.0806065
0.00251477
87.7031
97.4922
99.1763
104.346
107.331
107.019
103.531
114.279
105.859
99.6354
1.32689
0.620205
0.344541
0.303666
0.193885
101.139
100.9
110.944
114.458
0.131528
0.129091
0.126743
0.12472
0.257746
0.105393
0.114773
0.122327
0.102767
0.0317285
0.0714557
-3.26784
100.439
99.761
104.565
108.815
108.346
105.547
115.048
105.902
95.4783
1.40595
0.572707
0.347367
0.273409
0.207308
101.42
101.073
111.532
112.359
0.126388
0.121838
0.12132
0.119384
0.111659
0.101618
0.102589
0.103889
0.078582
-0.001752
0.0231594
-0.0113652
99.2604
99.9623
104.554
110.861
108.426
107.198
116.058
106.665
66.8232
1.43302
0.540387
0.341782
0.253037
0.189273
-0.120625
101.158
112.682
108.843
31.4314
95.3226
-0.142185
-0.0426937
0.00709404
0.019627
0.0756194
0.209543
-24.0949
105.598
117.555
116.878
101.83
106.297
104.699
85.0376
0.066754
0.0932928
0.0179731
0.041824
0.0779752
0.132378
0.160372
0.156323
0.141727
0.135343
0.125819
0.118563
0.11756
0.132442
110.681
122.248
-0.121967
-0.0385355
0.00647292
0.0205873
0.0757444
0.137402
-4.65577
106.737
118.193
117.798
102.148
106.752
113.543
0.0555348
0.0779966
0.019711
0.0117659
0.0331134
0.058441
0.118144
0.179103
0.163202
0.134021
0.122477
0.114518
0.107556
0.108526
0.121924
133.335
1.86527
-0.107317
-0.036609
0.00614643
0.0215161
0.103037
0.0598933
0.899407
114.914
115.182
119.206
103.966
109.531
98.998
0.0140289
0.185124
0.0282831
0.0112333
0.0453523
0.0442321
0.103262
0.145633
0.136651
0.124012
0.111029
0.100887
0.0919616
0.0880313
0.120041
114.061
-0.175021
-0.0954617
-0.0356738
0.00603175
0.0222953
0.0965548
-0.00310482
0.449367
115.824
112.502
121.607
106.553
114.699
-0.56004
-0.0186117
0.198276
0.0394316
0.0156211
0.0255819
0.0389535
0.0905442
0.121489
0.123424
0.110848
0.0971035
0.0860931
0.0756807
0.0509981
2.84301
6.01903
-0.153826
-0.0864159
-0.0348761
0.0060369
0.0227451
0.0870628
-0.0616886
-1.64899
118.64
116.362
123.758
108.951
115.94
0.0669724
-0.0316177
0.0975615
0.0469612
0.0166145
0.0232304
0.0399587
0.0847462
0.134532
0.11161
0.0946229
0.0815651
0.0716722
0.0639189
0.0724538
7.14218
0.0634769
-0.0918644
-0.0793662
-0.0338249
0.00606985
0.0232016
0.0716328
-0.0850557
-0.93487
43.3722
121.133
123.542
109.662
2.60616
-0.00433411
-0.014231
0.0618646
0.0511258
0.0121414
0.0765328
0.0440211
0.0810694
0.0846874
0.0871975
0.0770765
0.065383
0.062393
0.0546211
0.0555145
0.0656487
-0.0670275
-0.082816
-0.0732708
-0.032363
0.00606872
0.0235832
0.0579745
-0.0882618
-0.685223
-6.44422
121.18
122.571
106.542
-0.100109
0.00952342
-0.00138146
0.0624926
0.0553814
0.00468173
0.097654
0.110702
0.0899914
0.0926358
0.0706467
0.0603306
0.0492091
0.0515336
0.0471157
0.0507627
0.0540698
-0.0242602
-0.0726869
-0.067724
-0.0305141
0.00605907
0.0240121
0.0754516
-0.0721488
-0.875936
-0.0541951
118.926
123.838
-0.1306
-0.0747923
-0.00497733
0.00578581
0.0506714
0.295944
0.0134285
0.0540834
0.0404568
0.084241
0.0609372
0.0574305
0.0465445
0.0370377
0.0354917
0.0376489
0.0417766
0.0455331
0.00290167
-0.0625755
-0.0625028
-0.0284429
0.00606752
0.024412
0.0519796
-0.0496394
-0.483042
-0.521242
122.701
2.29548
-0.117115
-0.0745326
-0.0322238
0.00890601
0.0466247
0.275114
0.0242263
0.0239994
0.0385865
0.0539629
0.0574684
0.0477463
0.042548
0.0282839
0.026333
0.0276187
0.0328487
0.0374419
0.00722285
-0.0532543
-0.0574421
-0.0262861
0.00604454
0.0247384
0.0540594
-0.00348001
-0.142571
-0.593259
-0.41655
-0.231422
-0.0952467
-0.0901825
-0.0673693
0.00993428
0.046773
0.0665999
0.0454172
0.0399151
0.0535795
0.053996
0.0532597
0.0423567
0.0305909
0.0230472
0.0218677
0.0383862
0.028747
0.0321762
0.0345601
-0.0450601
-0.0525061
-0.0241488
0.00595991
0.024945
0.0548417
0.0305544
-0.0868881
-0.69821
-0.372438
-0.30698
-0.0790806
-0.0971306
-0.130395
0.0336914
0.0558188
0.0627303
0.0574662
0.0566035
0.0608976
0.0574467
0.0509025
0.0408563
0.0293776
0.0214744
0.0191905
0.0293378
0.0254191
0.0295594
0.0317654
-0.0382498
-0.0477278
-0.0220893
0.00586955
0.0250614
0.0577495
0.0535456
-0.00241443
-0.886581
-0.313132
-0.384784
-0.0890516
-0.0808186
-0.274773
0.0703127
0.0684362
0.0641093
0.0631906
0.137354
0.064405
0.065425
0.0514358
0.0420312
0.0316943
0.0380063
0.0214573
0.0219783
0.025438
0.0299456
0.0230289
-0.0329752
-0.0432091
-0.0200853
0.00581195
0.0249955
0.055544
0.063904
0.0741587
-0.599261
-0.209804
0.208058
0.0491498
-0.0736228
-0.415368
0.563853
0.0936823
0.0661082
0.0665394
0.32547
0.0699603
0.0589563
0.0525929
0.0440837
0.0356392
0.0296745
0.0270943
0.0275634
0.0298873
0.0337718
0.044009
-0.0292883
-0.039014
-0.0181264
0.00575914
0.0247284
0.0635815
0.0730455
0.0829073
-0.368737
-0.290704
0.423544
-0.0492787
-0.0508017
-0.139305
3.40632
0.0631588
0.0683617
0.0749479
0.0707745
0.0707647
0.0596665
0.0644064
0.0482743
0.0386077
0.0349885
0.0330307
0.0360214
0.0365402
0.0406861
0.0248899
-0.0270754
-0.03513
-0.0162418
0.00571531
0.0242592
0.0471227
0.0726125
0.0520351
-0.227495
-0.238529
-0.157889
-0.0622564
-0.0209755
-0.0666346
0.0370195
0.0524552
0.0659723
0.0706476
0.0708122
0.0683132
0.0608673
0.0498111
0.0425939
0.0405557
0.0410433
0.0425669
0.0431941
0.0365114
0.0349414
0.0504309
-0.0260829
-0.0315345
-0.0144148
0.00569051
0.0235587
0.0450606
0.0686351
0.05587
-0.168865
-0.125083
-0.109861
-0.0724502
-0.0557665
-0.0400571
0.0436189
0.0440478
0.0597236
0.0609472
0.0615744
0.0609065
0.0557748
0.0479984
0.0422933
0.0415752
0.0428301
0.04961
0.106591
0.383918
0.473138
0.0423069
-0.0259292
-0.0281916
-0.0126349
0.00566345
0.0226094
0.0425627
0.0587607
0.0367429
-0.0576578
-0.0334032
-0.0822131
-0.0809082
-0.0618401
-0.0339775
0.0750391
0.033911
0.043833
0.0490179
0.0512086
0.0517156
0.0502137
0.0470067
0.0413262
0.0399642
0.037231
0.0284507
0.00947571
0.0643839
0.0715481
0.0667735
-0.0261837
-0.0250694
-0.0109236
0.00563422
0.0213861
0.0393017
0.0488874
0.0333435
-0.0210078
0.138772
-0.0740856
-0.0955906
-0.0793545
-0.0483224
0.0126171
0.0189249
0.03082
0.037383
0.0405198
0.0438324
0.0436616
0.0404422
0.0416785
0.046972
0.0395839
0.0401071
0.0441523
0.0523718
0.0595142
0.0842728
-0.0265674
-0.0221519
-0.00928301
0.00557535
0.0198652
0.0345346
0.0390279
0.0134259
0.00525313
0.0112537
-0.0676629
-0.122031
-0.112404
-0.0658414
-0.0261601
0.00274852
0.0183189
0.0268904
0.0318749
0.0933703
0.0326736
0.0340502
0.0357661
0.0370224
0.0390728
0.0426406
0.0463729
0.0500584
0.0533931
0.100735
-0.0275653
-0.0194059
-0.00773144
0.00543866
0.0180269
0.0309274
0.0309179
0.0133739
0.0106032
0.00284334
-0.0771897
-0.151359
-0.15325
-0.100245
-0.0411925
-0.00641342
0.00711524
0.0167701
0.0222189
0.0224977
0.0258338
0.028273
0.0305038
0.0328654
0.035536
0.0384691
0.0413978
0.0441737
0.0468295
0.0973506
-0.0291048
-0.0167823
-0.00630442
0.00520108
0.0159061
0.0251609
0.024588
0.0148499
0.0156642
-0.0198162
-0.0511064
-0.168137
-0.180517
-0.12963
-0.0626336
-0.0203375
0.00345847
0.00764166
0.0128981
0.0164759
0.0196005
0.0222621
0.0247507
0.0273276
0.029975
0.0325647
0.0350411
0.0373509
0.0394967
1.28039
-0.0293376
-0.0142317
-0.00501829
0.00484533
0.0135812
0.0196148
0.0195031
0.014654
-0.00147495
0.171254
0.0572825
-0.160863
-0.176013
-0.132873
-0.0663781
-0.0224611
-0.00137186
0.0012568
0.00471629
0.00764311
0.0105458
0.0134207
0.01617
0.0188285
0.0213952
0.0237561
0.0259116
0.0278718
0.0295946
0.0490495
-0.0242941
-0.0117524
-0.00387954
0.00435539
0.0109851
0.0144176
0.0144569
0.00614394
-0.0105177
-0.0454319
-0.0790182
-0.127736
-0.132309
-0.0972263
-0.0443091
-0.0170658
0.000314852
-0.003028
-0.00392289
-0.00399566
-0.00304603
-0.00108081
0.0014231
0.00402113
0.00639475
0.0084112
0.0100819
0.0113824
0.0122291
0.053376
-0.0168796
-0.00940324
-0.00289177
0.00372766
0.00831934
0.011439
0.021982
-0.00798207
-0.0297056
-0.0462863
-0.0712005
-0.0932309
-0.0888554
-0.0632483
0.195189
-0.0136411
-0.00416005
0.00607978
-0.0159146
-0.0202542
-0.0210328
-0.0245452
-0.0173322
-0.0208676
-0.01887
-0.0170857
-0.0157654
-0.0149588
-0.0147051
0.0388123
-0.0104934
-0.00725717
-0.00205754
0.00298313
0.00546695
0.00256737
0.00246199
-0.0373287
-0.0588473
-0.0570447
-0.0618552
-0.0640018
-0.0162412
-0.0454008
-0.0230297
-0.0141039
-0.0183855
-0.0248727
-0.0320131
-0.0396757
-0.0417793
-0.0491202
-0.0508058
-0.049849
-0.0522677
-0.050317
-0.0485553
-0.0474133
-0.0469332
0.0230204
-0.00628244
-0.00535047
-0.00137103
0.00218162
0.00265133
0.000468798
-0.0174038
-0.0956626
-0.116615
-0.0655239
-0.0524863
-0.0485743
-0.0460811
-0.038493
-0.0294105
-0.0264275
-0.00389299
-0.0360171
-0.0458162
-0.0595051
-0.0690142
-0.0724701
-0.0767352
-0.0766997
-0.0692603
-0.0689183
-0.0700914
-0.0700156
-0.0702894
0.0121958
-0.00368012
-0.00369404
-0.000818574
0.00143499
0.000377724
-0.00802006
-0.0305817
-0.131942
-0.137046
-0.0716402
-0.04466
-0.0366356
-0.0334415
0.0617598
-0.0277678
-0.026013
-0.0315634
-0.0106974
-0.0518222
-0.0262235
-0.0673405
-0.0693456
-0.0721514
-0.0724352
-0.0446565
-0.0529349
-0.0780492
-0.0789926
-0.0799964
0.00597668
-0.00205028
-0.00229113
-0.000391313
0.000857419
-0.000944081
-0.0095427
0.0252105
-0.0519228
-0.0949322
-0.0631731
-0.0387038
-0.0294568
-0.0256291
-0.023081
-0.0130101
-0.0258693
-0.0347662
-0.0393749
-0.0416556
-0.0476685
-0.0373444
0.0940466
-0.0321438
-0.069524
-0.070692
-0.0681151
-0.0684591
-0.0679755
-0.0659775
0.00245871
-0.000954229
-0.00111691
-9.62079e-05
0.000475158
-0.00100188
-0.00710171
0.0410838
-0.027858
-0.0585727
-0.0477019
-0.0362802
-0.0274438
-0.0215037
-0.0180209
-0.0167887
-0.0193936
-0.0232985
-0.023247
0.00268281
-0.0184421
-0.0278842
-0.0337385
0.028777
-0.028334
-0.0304366
-0.0320683
-0.033777
-0.0334656
-0.0306203
-0.00015231
-0.000494327
-0.00040301
-7.93773e-05
0.000210066
-5.64323e-05
-0.00171888
-0.00606279
0.00720262
-0.0214643
-0.0416515
-0.0405095
-0.0312392
-0.0223994
-0.0159919
-0.012056
-0.0107686
-0.0131354
-0.0176606
-0.0205
-0.0190172
-0.0160126
-0.0137996
-0.0122355
-0.011299
-0.00972237
-0.00712616
-0.00972691
-0.0111753
-0.00619122
0.123446
0.116788
0.115966
0.115165
0.109298
0.0983158
0.0960615
0.0939735
0.0674936
-0.010158
0.00390748
0.129685
-0.0403244
100.293
104.831
111.516
107.001
107.984
116.716
115.328
-6.29559
1.33868
0.527552
0.336378
0.243961
0.179416
-0.0454043
96.9172
113.4
106.183
0.119535
0.115339
0.111448
0.111711
0.102663
0.0939943
0.0900925
0.0857573
0.0601778
-0.0112255
-0.00236984
-0.0136201
0.0485611
12.5916
105.107
111.585
107.899
109.045
117.421
119.935
1.91583
1.22754
0.515106
0.330478
0.236326
0.170875
-0.0160954
4.01389
114.145
105.747
0.11686
0.112183
0.112926
0.112894
0.0936976
0.0885742
0.0840741
0.0783948
0.0554282
-0.00267987
-0.0085008
0.00822477
0.0936488
0.148546
106.462
111.991
108.485
110.796
117.904
121.11
-4.55315
1.07265
0.501199
0.323594
0.229082
0.162641
0.00177573
0.0444623
114.862
105.795
0.106264
0.102503
0.109541
0.188085
0.0835254
0.0833965
0.0783346
0.0721701
0.0532468
0.00694764
0.00278509
0.0209639
0.126973
0.146753
-0.948263
112.402
108.059
113.033
117.416
120.838
-2.13013
0.896297
0.48696
0.315656
0.222095
0.154779
0.0129351
0.049465
1.43699
106.754
0.101121
0.0872793
0.0890155
0.0805008
0.080594
0.0797079
0.0729232
0.0671531
0.0531643
0.0237786
0.0119474
0.0259883
0.0561083
0.105424
-0.0261126
86.1569
106.143
111.547
115.689
119.455
-1.88409
0.733246
0.466042
0.306591
0.215329
0.147386
0.0207545
0.0461224
0.109363
109.444
0.0545646
0.0709429
0.0763078
0.0740731
0.080685
0.0876901
0.0671598
0.0630483
0.0542245
0.0328468
0.0214722
0.0237167
0.0338979
0.0505141
-0.0202877
-0.292589
51.5828
110.687
119.744
123.014
-1.7714
0.662532
0.433081
0.296336
0.208597
0.140515
0.0269069
0.0422101
0.104182
103.775
0.0561148
0.0620957
0.0666208
0.0662347
0.0788239
0.0754852
0.0610625
0.0604331
0.0533749
0.0412687
0.0313358
0.0225541
0.0213423
-0.0269704
-0.0348899
-0.283056
-0.301947
86.0465
122.335
9.27989
-1.5834
0.35699
0.404754
0.284777
0.201696
0.13419
0.0321394
0.0401051
0.0970278
0.240509
0.0495641
0.0549784
0.0597572
0.0659776
2.11246
0.0583074
0.062896
0.0596919
0.0487047
0.0447828
0.0345757
0.0162947
-0.00888854
-0.14219
-0.101862
-0.294162
-0.303448
-0.333006
6.34437
-0.594003
-1.41404
0.342199
0.367302
0.271812
0.194508
0.128348
0.0367396
0.0394041
0.0918518
0.218645
0.0423701
0.0474086
0.0523008
0.0543626
2.20032
0.0498878
0.052609
0.0509926
0.0454684
0.0442761
0.0589886
0.018231
-0.0180976
-0.190865
2.21496
-0.0725701
-0.309453
-0.326593
-0.476346
-0.419836
-1.2879
0.2138
0.329882
0.257393
0.186956
0.12294
0.0411093
0.0392419
0.0839065
0.191303
0.0367329
0.0417152
0.0457735
0.0518366
0.0496359
0.051381
0.0500602
0.0463014
0.0420147
0.0408894
0.0884989
0.0118162
-0.019176
-0.0423895
0.341492
-0.0288944
-0.293714
-0.33938
-0.468194
-0.64451
-1.14813
0.135835
0.290001
0.241551
0.178968
0.117897
0.0452069
0.0396355
0.0739735
0.15964
0.0342927
0.0398586
0.0456058
0.0565714
0.0507572
0.0502946
0.0477013
0.0430563
0.0386783
0.0324656
0.0405123
0.0107282
-0.0186894
-0.0473421
0.420568
-0.20697
-0.277953
-0.320478
-0.460425
-0.571077
-0.959408
0.0495462
0.248586
0.224369
0.17048
0.11309
0.0488988
0.0403686
0.0670085
0.127407
0.0352228
0.0407215
0.0467583
0.0517266
0.0515516
0.0505612
0.0466438
0.0419955
0.0375431
0.0325345
0.0296169
0.008635
-0.0180641
-0.0102923
-0.0725375
-0.214429
-0.275357
-0.341214
-0.452609
-0.504976
-0.866424
-0.0352972
0.206968
0.206025
0.161423
0.108388
0.0519172
0.0412042
0.0606049
0.0976494
0.0387162
0.0442264
0.0505923
0.0550792
0.0563471
0.0596483
0.0678799
0.044432
0.041951
0.0310256
0.0230814
0.00636239
-0.0163236
-0.0381771
-0.120902
-0.207329
-0.254843
-0.36778
-0.307568
-0.563111
-0.679836
-0.0810844
0.167217
0.186782
0.151758
0.103672
0.0540132
0.0419018
0.0546852
0.0722296
0.0431947
0.05219
0.0581134
0.0628273
0.0623476
0.0628028
0.0584442
0.0515483
0.0396196
0.030998
0.0198119
0.0270865
-0.0149732
-0.0483436
-0.119821
-0.202333
-0.255452
-0.247203
-0.398423
-0.479237
-0.477261
-0.120792
0.130469
0.166985
0.141531
0.098825
0.0551414
0.0422447
0.0492066
0.051869
0.0476807
0.058537
0.0691272
0.0670814
0.0620283
0.0557816
0.0474018
0.0448604
0.0431966
0.0345509
0.0173903
0.0136438
0.00575852
-0.0537064
-0.123875
-0.191883
-0.244839
0.103196
-0.418451
-0.408312
-0.386262
-0.131711
0.0979899
0.147076
0.130801
0.093766
0.0553418
0.0420498
0.0441183
0.0364047
0.0674766
0.0712616
0.072046
0.0631019
0.0668326
0.0572787
0.0649074
0.0557174
0.0513039
0.0369229
0.0209802
0.039773
-0.00808131
-0.0555873
-0.130115
-0.19729
-0.259416
-0.0223613
-0.353587
-0.354543
-0.297729
-0.132514
0.0709047
0.127502
0.119628
0.088437
0.0547021
0.0411767
0.0393786
0.0251209
0.0718263
0.0743159
0.0780541
0.426523
0.0739905
0.0707216
0.0701953
0.0667084
0.062665
0.0431526
0.0237689
0.000335582
-0.0193053
-0.0109744
-0.0904689
-0.207996
-0.257349
-0.21914
-0.314471
-0.0104231
-0.262592
-0.122218
0.0494746
0.108725
0.108157
0.0828072
0.0533495
0.0397949
0.0349782
0.017134
0.0635604
0.0657839
0.0673721
0.0695807
0.0718833
0.0793097
0.0767441
0.0730816
0.0656698
0.0493446
0.0271621
-0.00260846
0.0277453
-0.0478905
-0.130639
-0.199096
-0.250787
0.0763108
-0.255547
0.163131
-0.189341
-0.0928014
0.0333488
0.0911565
0.0965607
0.0768643
0.0514391
0.0380618
0.0309387
0.0116006
0.0565799
0.0601859
0.0648273
0.0710301
0.0748006
0.0799327
0.0776155
0.0735053
0.0654707
0.0508876
0.0267505
-0.00754912
-0.0470799
-0.0798796
-0.135637
-0.195521
-0.226002
0.325675
-0.134965
-0.17075
-0.164929
-0.0734186
0.0215586
0.0751063
0.0850283
0.0706143
0.0491012
0.0360129
0.0273044
0.00783412
0.0495761
0.0526552
0.0563528
0.0611262
0.0664149
0.0706628
0.070935
0.0670547
0.0584117
0.0419878
0.0137231
-0.0251585
-0.0666226
-0.105321
-0.148891
-0.183961
-0.200804
-0.21396
0.205669
-0.13535
-0.107936
-0.0595052
0.0128571
0.0607434
0.0737621
0.0640955
0.0463554
0.0336711
0.0241138
0.00532215
0.0416688
0.0439759
0.0463021
0.0483026
0.0506133
0.0504356
0.0504692
0.0462864
0.035839
0.0216262
-0.0239827
-0.0666479
-0.110914
-0.147911
-0.17325
-0.18512
-0.18013
-0.172664
0.0224211
-0.0882855
-0.0672521
-0.0496879
0.00627908
0.0481255
0.0629508
0.0573726
0.0431638
0.0311274
0.0213497
0.00369617
0.0312087
0.0326955
0.0336704
0.0335733
0.0329121
0.097957
0.0220404
0.00966267
-0.0115921
-0.0225694
-0.0902409
-0.145547
-0.189668
-0.217594
-0.211991
-0.192257
-0.162166
-0.138157
-0.0981354
-0.0708691
-0.0619982
-0.0438814
0.00100933
0.037198
0.0527631
0.0505301
0.0395361
0.0286295
0.0189062
0.002679
0.0126789
0.012543
0.0111142
0.00737012
0.00137911
-0.00757693
-0.0207485
-0.0418068
-0.076838
-0.0982265
-0.196645
-0.178987
-0.234798
-0.331441
-0.27437
-0.209654
-0.148582
-0.109346
-0.0995827
-0.0702496
-0.0750215
-0.0426408
-0.00343663
0.0278581
0.0433301
0.0436775
0.0355154
0.0260133
0.0166484
0.00205477
-0.0149746
-0.0160058
-0.018366
-0.02282
-0.0304086
-0.041977
-0.057829
-0.088427
-0.134075
-0.199913
-0.28479
-0.3424
-0.437472
-0.453573
-0.366494
-0.214021
-0.135552
-0.0735838
-0.0120916
0.893356
-0.104249
-0.0453189
-0.00710579
0.0200246
0.0347483
0.0369141
0.0311546
0.0231469
0.0144698
0.00165915
-0.0470819
-0.0481383
-0.0505622
-0.0549727
-0.0623803
-0.0744188
-0.0935244
-0.122246
-0.165232
-0.227491
-0.310375
-0.401052
-0.483116
-0.507152
-0.414678
-0.245942
-0.114628
-0.040011
0.00592903
3.51831
-0.173393
-0.0212749
-0.00939437
0.0136499
0.0270872
0.0303279
0.0265193
0.0199972
0.0122995
0.0013788
-0.0710538
-0.0723334
-0.074591
-0.0784612
-0.0846639
-0.0942061
-0.108968
-0.131866
-0.165654
-0.211507
-0.272296
-0.342011
-0.399388
-0.396189
-0.351567
-0.198186
-0.0553947
-0.0156825
0.0196047
0.640264
-0.0539089
-0.0210243
-0.00677832
0.00872851
0.0203645
0.0239916
0.0216717
0.0165756
0.0100914
0.00114415
-0.0812606
-0.0829858
-0.0849732
-0.0880895
-0.0920194
-0.0986037
-0.108624
-0.122964
-0.141956
-0.166459
-0.191719
-0.227456
-0.246544
-0.243902
-0.191064
-0.105318
-0.0127131
-0.00462328
0.00977148
0.25011
-0.029656
-0.0271581
-0.00375364
0.00529711
0.0145489
0.0179278
0.0166555
0.0129026
0.00781213
0.000916684
-0.0618092
0.00451292
-0.0499668
-0.0747932
-0.0791201
-0.0836973
-0.0871164
-0.0943361
-0.0988229
-0.0642362
-0.0923425
-0.0298095
0.0243832
-0.0905767
-0.0600516
-0.0273349
0.0112724
0.00237887
0.00183177
-0.00679151
0.0267041
-0.0124807
-0.00480507
0.00328224
0.00950852
0.0120997
0.0114864
0.00898833
0.00543329
0.000676787
-0.0313492
-0.0166422
-0.0322759
-0.0423803
-0.0519208
-0.0529356
-0.0441472
-0.0524166
-0.00477968
0.069161
-0.042315
-0.0284595
-0.0248655
0.0357666
-0.00512945
0.008614
0.00871755
0.00660049
0.00144523
-0.00414975
-0.00694869
-0.0083929
-0.00231027
0.00192171
0.0049639
0.00638904
0.00613067
0.00481968
0.00292318
0.000412918
-0.0138727
-0.0155469
-0.0172904
-0.0146311
-0.0202843
-0.0290797
-0.0379557
0.0296429
0.0212847
-0.0233049
-0.0101339
0.0381642
-0.00988806
0.0702215
0.0121327
0.0176919
0.00630483
0.00493544
0.00155169
-0.00111884
-0.00249668
-0.00285993
-0.000755748
0.000539603
0.00144233
0.00197762
0.00197611
0.00159959
0.00106703
0.000343768
94.6587
89.8644
88.4901
87.5871
85.7644
84.0448
83.286
84.3796
87.8137
92.0227
95.1917
96.8647
97.3474
97.0932
96.4703
95.715
94.9597
94.2692
93.6694
93.1662
92.7546
92.4247
92.1654
91.966
91.8166
91.7085
91.6342
91.5867
91.5604
91.5502
94.7118
90.946
88.6159
87.9046
86.2488
84.3964
83.3336
83.8716
86.8143
91.0671
94.5898
96.6095
97.3321
97.2119
96.6466
95.9033
95.1356
94.4218
93.7953
93.2661
92.831
92.4808
92.2044
91.9907
91.8296
91.7121
91.6301
91.5766
91.5457
91.532
94.8072
90.9473
88.5979
87.9139
86.2515
84.3866
83.3034
83.7984
86.7487
91.0676
94.6384
96.6702
97.3838
97.2489
96.6694
95.913
95.1332
94.4087
93.7734
93.2373
92.797
92.443
92.164
91.9485
91.7861
91.6677
91.5853
91.5316
91.5006
91.487
94.9407
90.9529
88.5705
87.9294
86.2555
84.3691
83.2529
83.6763
86.6322
91.0538
94.703
96.7613
97.4675
97.3132
96.7133
95.937
95.1377
94.395
93.7442
93.1957
92.7462
92.3855
92.1017
91.883
91.7185
91.5988
91.5157
91.4619
91.431
91.4175
95.1161
90.9628
88.534
87.9515
86.2605
84.3439
83.1831
83.5053
86.4673
91.032
94.7877
96.8823
97.581
97.4034
96.7772
95.9743
95.1483
94.3803
93.7079
93.1424
92.6799
92.3097
92.0192
91.7957
91.6281
91.5066
91.4225
91.3682
91.3372
91.3239
95.3378
90.9784
88.4891
87.9805
86.2665
84.3111
83.0949
83.2831
86.2495
91.0033
94.895
97.0348
97.7235
97.5159
96.8564
96.0203
95.1614
94.3623
93.6632
93.0764
92.5977
92.2156
91.9163
91.6866
91.5147
91.3902
91.3042
91.2489
91.2174
91.204
95.6095
91.0011
88.4366
88.0171
86.2733
84.2707
82.9901
83.0064
85.9728
90.9673
95.0264
97.2205
97.8949
97.6488
96.9484
96.0728
95.1754
94.3399
93.609
92.9969
92.4991
92.1026
91.7927
91.5551
91.3773
91.2485
91.1594
91.102
91.0695
91.0558
95.9354
91.032
88.378
88.062
86.281
84.2229
82.8707
82.6717
85.6291
90.9241
95.1837
97.4411
98.0962
97.8018
97.0521
96.131
95.1897
94.3121
93.5443
92.9029
92.3828
91.9697
91.6472
91.4002
91.2151
91.0807
90.9872
90.9266
90.8923
90.878
96.3201
91.0722
88.315
88.1163
86.2892
84.1678
82.7395
82.2746
85.2082
90.8739
95.369
97.699
98.3283
97.9747
97.1671
96.1943
95.204
94.2782
93.4676
92.7927
92.2475
91.8155
91.4788
91.2207
91.0272
90.8859
90.7869
90.7221
90.6849
90.6696
96.7687
91.1223
88.249
88.1809
86.2978
84.1052
82.6003
81.81
84.6967
90.8176
95.5846
97.9968
98.5926
98.1673
97.2925
96.2622
95.2174
94.2369
93.3772
92.6644
92.0912
91.6383
91.2856
91.0154
90.8124
90.6636
90.5584
90.4882
90.4469
90.4293
97.2874
91.1838
88.1819
88.2573
86.3062
84.035
82.4578
81.2726
84.0765
90.7571
95.8332
98.3379
98.8908
98.3794
97.4273
96.3335
95.2293
94.1869
93.2707
92.5156
91.912
91.4361
91.0659
90.7823
90.5693
90.4128
90.3013
90.2254
90.1782
90.1551
97.8827
91.2575
88.1156
88.3468
86.3138
83.9567
82.3181
80.6561
83.324
90.6953
96.1175
98.7252
99.2248
98.6102
97.57
96.407
95.2387
94.1264
93.1449
92.3434
91.7071
91.2066
90.8172
90.5191
90.2957
90.1319
90.0148
89.9336
89.88
89.8479
98.5621
91.3448
88.053
88.451
86.3195
83.8693
82.1891
79.9546
82.4068
90.6369
96.4402
99.1637
99.5972
98.8593
97.7187
96.4807
95.2447
94.0534
92.9961
92.1445
91.4739
90.947
90.5366
90.2226
89.9882
89.8176
89.6963
89.6116
89.5531
89.5151
99.3328
91.4186
87.9979
88.5718
86.3217
83.7712
82.08
79.1633
81.2799
90.5895
96.804
99.6584
100.011
99.1256
97.871
96.5525
95.2458
93.9658
92.819
91.9151
91.2094
90.6546
90.2208
89.8887
89.6421
89.4649
89.3412
89.2562
89.1971
89.1568
100.202
91.4077
87.9551
88.7111
86.3182
83.6598
82.003
78.2743
79.8739
90.564
97.2111
100.215
100.469
99.4077
98.0236
96.6192
95.2395
93.8605
92.6067
91.6508
90.9102
90.3262
89.8659
89.5121
89.251
89.0662
88.9404
88.8572
88.8029
88.7699
101.177
91.3165
87.9316
88.871
86.3061
83.5313
81.9734
77.2505
78.0808
90.5785
97.6628
100.84
100.978
99.704
98.1723
96.6776
95.2204
93.7333
92.3504
91.347
90.5728
89.9588
89.4675
89.0868
88.8072
88.6123
88.483
88.4013
88.3524
88.3261
102.263
91.1245
87.9362
89.0537
86.2811
83.3798
82.0112
76.0624
75.8089
90.6576
98.1598
101.539
101.542
100.012
98.3109
96.7251
95.1769
93.5741
92.0401
90.9972
90.1933
89.5499
89.0213
88.6055
88.3018
88.0942
87.9606
87.8811
87.8393
87.8235
103.462
90.7917
87.9807
89.2613
86.2372
83.1966
82.1432
74.7323
72.9857
90.8138
98.7032
102.321
102.169
100.328
98.4297
96.7641
95.0835
93.3438
91.6602
90.5897
89.7668
89.0987
88.5237
88.0596
87.7242
87.5021
87.366
87.2932
87.2649
87.266
104.775
90.2548
88.0795
89.4961
86.1658
82.9695
82.4084
73.3027
69.3461
91.0326
99.2974
103.192
102.868
100.646
98.5123
96.8104
94.8949
92.9477
91.2164
90.1078
89.2881
88.6083
87.9728
87.4376
87.0595
86.8239
86.6925
86.6377
86.6365
86.6677
106.193
89.4171
88.2501
89.7596
86.0542
82.6821
82.8558
71.8782
64.5588
91.3239
99.9413
104.157
103.65
100.957
98.5363
96.9054
94.5671
92.4047
90.7343
89.5327
88.7512
88.0904
87.373
86.726
86.2865
86.0446
85.9349
85.9185
85.965
86.0444
107.701
88.1359
88.5127
90.053
85.8854
82.3141
83.5301
70.4933
59.7897
91.7756
100.614
105.219
104.526
101.244
98.5118
97.0821
94.1249
91.9209
90.1783
88.8308
88.1526
87.5752
86.7413
85.9148
85.3797
85.1404
85.076
85.1244
85.2453
85.3978
109.27
86.1995
88.8903
90.3771
85.6445
81.8441
84.408
69.1955
59.0094
92.5217
101.272
106.377
105.51
101.47
98.4962
97.1606
93.6891
91.5837
89.5507
87.9406
87.4826
87.1065
86.091
84.9993
84.3237
84.0737
84.0744
84.2223
84.4585
84.7255
110.853
83.294
89.4087
90.733
85.3044
81.2521
85.3009
49.5973
-8.77242
93.7227
101.926
107.62
106.616
101.544
98.5021
97.1008
93.4137
91.3904
88.8863
86.6995
86.6555
86.6944
85.3744
83.9198
83.0605
82.786
82.8743
83.1681
83.5782
84.0225
112.376
78.9538
90.0925
91.1231
85.1463
80.5379
85.6997
0.639548
-2.44788
94.6502
102.511
108.931
107.852
101.233
98.4286
97.2116
93.399
91.3435
88.2165
84.5668
85.1576
86.2345
84.5696
82.5771
81.4843
81.2045
81.4268
81.9098
82.5668
83.2794
113.73
72.4823
90.9571
91.5543
85.1599
79.7851
66.9733
0.236154
0.220508
93.2249
103.013
110.285
109.214
100.005
97.9338
97.602
93.6442
91.4293
87.589
80.8728
82.1488
85.5636
83.6883
80.8555
79.4679
79.2301
79.6877
80.3475
81.3573
82.5002
114.755
62.8382
92.0068
92.0372
85.3158
67.8847
-0.0088226
0.212395
0.484371
94.7603
103.54
111.647
110.669
97.0534
96.8253
98.1286
94.0444
91.6137
87.4477
77.5622
79.1337
85.3051
82.3506
78.5021
76.1361
76.6873
77.7365
78.1244
79.7043
81.7952
115.223
48.4715
93.2361
92.5858
86.2347
0.0554423
-0.00764238
0.182439
0.649973
93.9012
104.065
112.971
112.139
95.6433
96.4674
98.8337
94.3121
91.9338
88.3322
78.3517
79.5944
85.2011
11.9092
0.143988
0.150732
0.159178
0.157468
0.153095
0.143903
0.135229
114.814
27.2441
94.6126
93.2326
41.7411
0.0439846
-0.00243243
0.144326
0.781806
88.8248
104.469
114.221
113.44
97.1211
98.4868
99.3895
94.1843
92.2656
89.8472
80.3354
0.139343
0.159383
0.169606
0.172612
0.166989
0.160168
0.156689
0.15349
0.143935
0.137711
113.095
-3.55199
96.0669
94.2659
-0.0454163
0.0306695
0.00493204
0.123413
0.74002
51.263
106.107
115.368
114.228
100.106
101.946
99.5197
93.8483
92.4664
70.9899
0.0650442
0.130655
0.15295
0.166045
0.170857
0.165377
0.160013
0.168083
0.142522
0.13911
0.138184
109.652
-49.4237
97.8064
2.62476
-0.0326937
0.0241485
0.0119111
0.116767
0.635279
-23.9997
104.906
116.743
114.329
102.588
104.18
100.167
95.2556
81.7631
0.0336252
0.0543922
0.102547
0.137547
0.160885
0.169136
0.162748
0.162605
0.161014
0.138041
0.13254
0.128618
91.5523
91.5665
91.5963
91.6462
91.7219
91.8298
91.9777
92.1749
92.4323
92.7617
93.1743
93.6775
94.2691
94.9305
95.6177
96.2526
96.7081
96.7783
96.1536
94.4578
91.4107
87.3038
83.6713
82.2755
83.2362
86.2489
91.3581
97.7157
104.054
109.023
91.5314
91.5422
91.5676
91.612
91.6806
91.7796
91.9166
92.1005
92.3421
92.6531
93.0452
93.5273
94.1004
94.7509
95.4418
96.1046
96.6267
96.8266
96.4209
95.0411
92.3492
88.4072
84.4228
82.3679
82.7807
85.2612
89.859
96.0259
102.458
107.92
91.4865
91.4975
91.5231
91.5676
91.6364
91.7357
91.8733
92.0583
92.3018
92.6159
93.0129
93.5019
94.0841
94.746
95.4494
96.1249
96.6591
96.8705
96.4738
95.0941
92.3781
88.3785
84.3406
82.3007
82.743
85.2315
89.8406
96.0226
102.461
107.935
91.4171
91.4283
91.4539
91.4985
91.5673
91.6669
91.8053
91.9921
92.2391
92.5588
92.9641
93.4649
94.0632
94.7452
95.4714
96.1686
96.7212
96.9459
96.5568
95.1697
92.4089
88.3162
84.1986
82.1907
82.6807
85.1816
89.8106
96.0187
102.469
107.963
91.3237
91.3349
91.3607
91.4054
91.4743
91.5742
91.7137
91.9033
92.1551
92.4829
92.9001
93.4176
94.0383
94.7489
95.5073
96.2351
96.8115
97.0511
96.6682
95.2685
92.4466
88.2257
83.9988
82.0389
82.5944
85.1112
89.7687
96.0141
102.481
108.004
91.204
91.2156
91.2418
91.2868
91.3561
91.4568
91.5981
91.7913
92.0498
92.388
92.8204
93.3591
94.0085
94.7554
95.5542
96.3194
96.9246
97.1824
96.8076
95.3925
92.4937
88.106
83.7359
81.8447
82.4846
85.0203
89.7145
96.0091
102.498
108.063
91.056
91.0682
91.0952
91.1411
91.2113
91.3134
91.4572
91.6553
91.9222
92.2733
92.7243
93.2887
93.9727
94.7639
95.6108
96.4191
97.0576
97.3384
96.9754
95.5436
92.5512
87.9544
83.4028
81.6077
82.3521
84.9085
89.6479
96.0037
102.519
108.138
90.8786
90.8917
90.9199
90.967
91.0386
91.1426
91.2899
91.4941
91.7711
92.1376
92.6105
93.2049
93.9297
94.7738
95.6774
96.5339
97.2098
97.5186
97.1722
95.7237
92.6209
87.7679
82.9905
81.328
82.1981
84.7757
89.5686
95.9984
102.543
108.227
90.6707
90.6852
90.7146
90.7631
90.8364
90.9429
91.0943
91.306
91.595
91.9796
92.4776
93.106
93.8778
94.7844
95.7542
96.6639
97.381
97.7228
97.399
95.9351
92.705
87.543
82.4868
81.0058
82.0239
84.6214
89.4763
95.9936
102.572
108.329
90.4309
90.4475
90.477
90.5263
90.6024
90.7121
90.8686
91.0891
91.3923
91.7975
92.3239
92.9903
93.8147
94.7951
95.8418
96.8088
97.5708
97.9512
97.6568
96.1808
92.8061
87.2757
81.8759
80.642
81.8311
84.4453
89.3704
95.9899
102.603
108.447
90.1548
90.1801
90.2034
90.252
90.3339
90.448
90.6108
90.8414
91.1609
91.5898
92.1477
92.8553
93.7374
94.805
95.9409
96.9677
97.7785
98.2034
97.9467
96.4644
92.9274
86.9617
81.1365
80.2374
81.6218
84.2467
89.2503
95.9879
102.637
108.583
89.8307
90.0696
90.1292
89.9382
90.0297
90.1494
90.3189
90.561
90.8991
91.3546
91.9473
92.6988
93.6418
94.813
96.0519
97.1386
98.0027
98.4794
98.2704
96.7905
93.0732
86.5966
80.2401
79.7927
81.3983
84.0252
89.1154
95.9885
102.674
108.735
89.5001
89.5223
89.5558
89.5979
89.6892
89.8146
89.9906
90.2456
90.6052
91.0906
91.7213
92.5186
93.5222
94.8175
96.1745
97.3179
98.2422
98.7788
98.6293
97.1634
93.2482
86.1762
79.1476
79.3066
81.1634
83.7799
88.9645
95.9928
102.713
108.9
89.2221
89.1456
89.1648
89.2169
89.3085
89.4377
89.6219
89.893
90.2774
90.7961
91.4683
92.3131
93.3705
94.8154
96.3054
97.4994
98.495
99.1014
99.0253
97.5876
93.458
85.6975
77.8045
78.7721
80.9201
83.5102
88.7964
96.0023
102.754
109.077
88.7482
88.7451
88.7644
88.8089
88.8863
89.0112
89.2085
89.5015
89.9146
90.4699
91.1867
92.0814
93.1767
94.7958
96.4317
97.6733
98.7598
99.4468
99.4603
98.073
93.709
85.159
76.1334
78.1712
80.6713
83.2149
88.6089
96.0185
102.797
109.264
88.3155
88.3195
88.3425
88.3814
88.419
88.5289
88.7505
89.0718
89.5158
90.1101
90.8748
91.8235
92.9291
94.7072
96.5148
97.8259
99.0355
99.8149
99.936
98.629
94.0087
84.5614
74.0278
77.4903
80.4177
82.8931
88.3994
96.0435
102.842
109.458
87.8255
87.8433
87.8827
87.9606
87.8847
87.9862
88.2582
88.6053
89.0791
89.7144
90.5294
91.5367
92.6261
94.3694
96.4516
97.9418
99.3234
100.205
100.454
99.2642
94.3661
83.9084
71.3513
76.8336
80.1602
82.5434
88.1635
96.0799
102.89
109.656
87.2858
87.3212
87.3747
87.2876
94.6622
87.4709
87.7468
88.1004
88.5999
89.2787
90.1462
91.2108
92.3357
93.7241
96.0426
98.0119
99.6272
100.617
101.017
99.9908
94.7945
83.2032
67.9655
76.3239
79.9104
82.1635
87.8948
96.1303
102.943
109.853
86.7158
86.7768
86.8558
86.9656
86.9749
86.9993
87.2082
87.5455
88.0687
88.7981
89.7194
90.8324
92.1005
93.2326
95.1676
98.0485
99.9548
101.049
101.624
100.822
95.3161
82.4377
63.8013
75.8662
79.6598
81.75
87.5829
96.1975
103.004
110.044
86.1346
86.2306
86.3291
86.4146
86.4484
86.4819
86.6208
86.9199
87.4732
88.2673
89.2431
90.3888
91.8264
92.9237
94.1093
98.1025
100.318
101.498
102.276
101.771
95.9648
81.6087
58.7564
75.5379
79.3757
81.2957
87.2118
96.2833
103.074
110.222
85.5517
85.7003
85.8313
85.9111
85.9175
85.9051
85.9649
86.1951
86.7968
87.6813
88.7124
89.8582
91.4649
92.7117
93.4694
98.2561
100.732
101.958
102.97
102.85
96.7678
80.7567
52.5727
75.535
79.0375
80.7863
86.7581
96.3876
103.155
110.379
84.9811
85.217
85.4095
85.4946
85.4278
85.2625
85.4912
85.3396
86.0017
87.0234
88.1125
89.1972
91.0476
92.6908
93.682
98.5734
101.209
102.416
103.704
104.066
97.6535
80.1844
45.4977
76.0281
78.6136
80.1883
86.2026
96.5077
103.248
110.501
84.4395
84.8208
85.1276
85.2431
85.0625
84.6186
84.3092
84.278
85.0037
86.2436
87.3454
88.3075
90.5983
92.9466
94.6414
99.0378
101.764
102.852
104.468
105.415
98.6145
80.1579
-2.49553
76.8746
78.0651
79.4215
85.5509
96.6399
103.352
110.577
83.9435
84.5562
85.0679
85.2597
84.8626
83.9416
83.0895
82.8567
83.7346
85.3249
86.2103
86.9766
90.1071
93.3978
95.8538
99.5654
102.414
103.232
105.253
106.873
99.5629
80.5875
2.03722
83.472
77.5116
78.3147
84.8231
96.7796
103.467
110.588
83.5184
84.4743
85.3623
85.8013
85.0034
83.1164
81.5426
80.8811
82.1845
84.4205
84.4287
84.7785
89.5801
93.9409
96.9648
100.149
103.194
103.5
106.025
108.404
100.535
79.3684
1.44636
0.753409
20.0627
76.4849
84.0592
96.9179
103.592
110.515
83.0744
84.5971
86.1141
87.5651
85.9426
81.7316
79.4309
77.4109
79.8704
83.4524
82.4804
82.1638
89.1213
94.5607
97.8779
101.125
104.137
103.587
106.708
109.965
101.502
81.7093
1.16648
0.656438
0.324727
3.24091
83.3209
97.0499
103.726
110.337
0.132052
0.125078
0.125913
0.122491
0.121186
0.113489
0.119387
0.244428
39.089
81.9221
81.6819
80.1509
89.0792
95.3596
98.6886
102.772
105.238
103.302
107.198
111.493
102.828
81.0033
1.11873
0.597846
0.322962
0.201906
82.1242
97.2119
103.872
110.032
0.145308
0.144149
0.129752
0.125377
0.124133
0.128495
0.116807
0.163426
0.156877
0.079634
2.41972
77.9748
89.981
96.4988
99.3997
104.638
106.414
102.749
107.512
112.944
102.877
84.1818
1.06929
0.556411
0.326155
0.195134
85.3552
97.4981
104.046
109.583
0.149787
0.139965
0.131413
0.130433
0.123099
0.121958
0.113398
0.128667
0.13366
0.105355
0.0605105
0.224944
92.2067
97.8834
99.7346
105.998
107.421
103.583
108.381
114.026
105.363
74.2696
1.02202
0.52601
0.324103
0.193305
1.66756
98.0318
104.254
109.127
0.129987
0.128943
0.127118
0.125326
0.124421
0.601725
0.102675
0.114055
0.118047
0.0824268
0.0117355
0.103842
5.27082
98.6878
100.231
106.425
108.481
104.858
110.113
114.535
106.533
21.4358
0.989159
0.502007
0.318356
0.191391
0.202113
99.2883
104.432
109.168
107.783
156.948
92.2425
-0.188101
-0.0247011
0.0209578
0.0172525
0.105311
0.40702
-128.79
108.426
118.109
114.117
103.531
104.823
97.1911
101.147
0.24088
0.0373272
0.0308822
0.0594834
0.107178
0.149137
0.171263
0.157113
0.144975
0.153046
0.129338
0.12317
0.120339
106.778
118.611
47.6887
-0.179878
-0.0219545
0.019795
0.019614
0.0928965
0.261017
375.727
116.065
117.897
114.091
104.22
104.722
95.2743
-1.01804
0.230515
0.0270219
0.0202069
0.0419307
0.0882533
0.138468
0.167317
0.150967
0.136472
0.129086
0.12098
0.115503
0.116903
106.548
80.6739
1.96093
-0.169934
-0.0199349
0.0188076
0.0218445
0.0994043
0.0195511
31.2215
123.445
116.641
114.393
105.598
103.511
95.0927
0.0834686
0.327779
0.0211958
0.0126782
0.0348568
0.07012
0.124314
0.178475
0.141015
0.128321
0.117813
0.109128
0.103142
0.107703
108.451
-1.16065
-0.136549
-0.157305
-0.0185472
0.0179119
0.0272551
0.0495121
-0.151492
12.3066
123.975
114.452
114.935
107.635
103.605
0.83027
0.0952011
0.262018
0.0248079
0.0113238
0.0485251
0.0577836
0.111582
0.135423
0.131843
0.117453
0.104957
0.0947775
0.0853433
0.0813336
111.57
0.69729
-0.119553
-0.142629
-0.0176368
0.0170655
0.0245916
0.0745505
-0.292732
0.826893
116.157
115.189
115.798
110.742
103.799
-0.132232
0.0306128
0.13809
0.0309113
0.0169476
0.0267549
0.0490306
0.0981435
0.119593
0.116874
0.103401
0.0903711
0.0798987
0.0694427
0.020033
0.150424
0.0398923
-0.0989908
-0.127075
-0.0170028
0.016244
0.0246461
0.0831695
-0.340813
1.30709
118.121
121.053
116.077
114.221
-5.99956
-0.0710646
0.0647689
0.079696
0.0354786
0.0180726
0.0242698
0.0480363
0.0931156
0.127445
0.0988741
0.0868967
0.0749755
0.0661564
0.0595502
0.0225097
0.137421
0.0112845
-0.0912982
-0.111625
-0.0165218
0.015378
0.0277367
0.063088
-0.344673
1.09669
111.822
121.379
117.966
115.795
0.30165
-0.0464447
0.0312097
0.0712427
0.0383365
0.0669484
0.0253375
0.0636182
0.0910675
0.084965
0.080956
0.0695713
0.0596013
0.0656272
0.0532797
0.0566953
0.100718
0.00286271
-0.080704
-0.0967922
-0.0161388
0.0144622
0.0280037
0.0613816
-0.258802
1.06503
54.2724
115.99
118.779
-0.222178
0.0937832
-0.025731
0.0258821
0.0625535
0.0420586
0.0470354
0.030115
0.190567
0.177937
0.0720743
0.0648792
0.0535098
0.0444369
0.0445559
0.045619
0.0494313
0.0720025
-0.00965936
-0.0724777
-0.0829715
-0.0157613
0.0135995
0.0284861
0.0636228
-0.155948
0.730692
4.59709
107.391
92.8269
-0.233817
0.0132621
-0.0208009
0.0253847
0.0565953
0.286334
0.0266327
0.00804009
0.227528
0.0784487
0.0604466
0.0520688
0.0477262
0.0334463
0.0331799
0.0362995
0.040394
0.0502853
0.00800769
-0.0660222
-0.0706433
-0.0152798
0.0128595
0.0301084
0.0544305
-0.0307381
0.307071
-0.949855
7.14795
-0.21192
-0.154149
0.0856313
-0.0357503
0.0260846
0.0980979
0.298153
0.042935
0.0283412
0.0397139
0.0548196
0.0540229
0.0427452
0.0330976
0.025648
0.0248746
0.0261001
0.0323981
0.0335631
-0.0387271
-0.060693
-0.0601003
-0.0146303
0.0122209
0.0295403
0.0556734
0.060878
0.412266
-0.52451
-0.330117
-0.196723
-0.129638
0.00798803
-0.0689753
0.0304493
0.0481248
0.0588052
0.0466728
0.0448538
0.0502992
0.0701298
0.0500589
0.038553
0.027513
0.021378
0.0216171
0.0367567
0.0287432
0.0210799
-0.0220175
-0.055886
-0.0513992
-0.0138323
0.0116652
0.0298752
0.0601998
0.101901
0.130067
-0.544637
-0.358844
-0.150346
-0.0698288
-0.0262859
-0.138207
0.0567652
0.0589548
0.0619598
0.0593326
0.0579468
0.0619421
0.0574504
0.0490652
0.0380142
0.0273337
0.0203995
0.0190013
0.0244672
0.0253492
0.0120965
-0.0164612
-0.0512809
-0.0443292
-0.0129495
0.0112286
0.0301431
0.063739
0.117509
0.00811632
-0.536896
-0.36622
-0.129955
-0.066636
-0.0894989
-0.294331
0.0640882
0.0671692
0.0649145
0.06179
0.0663543
0.062552
0.0639886
0.0497502
0.0399565
0.0305679
0.0282515
0.0225741
0.0239078
0.0274621
0.0059695
-0.00735303
-0.0467096
-0.038607
-0.0119783
0.0109079
0.0300424
0.063557
0.107614
0.177041
-0.427642
-0.3354
0.477509
-0.0112166
-0.0920055
0.0927431
0.106966
0.0853916
0.0689883
0.0718231
0.0683948
0.0705234
0.0569493
0.0513453
0.0421595
0.0349439
0.0301063
0.02839
0.0294189
0.0319716
0.00219335
0.00399318
-0.0421
-0.0339123
-0.0109026
0.0106457
0.0296926
0.0661091
0.100079
0.109367
-0.300437
-0.319151
-0.0687269
-0.0543287
-0.0727801
-0.0375842
0.141248
0.0641841
0.0696669
0.0760094
0.0717783
0.0677576
0.0575473
0.0626154
0.042402
0.0383674
0.0359186
0.0347057
0.0372201
0.0382928
7.40268e-06
-0.0370752
-0.0374693
-0.0299094
-0.00976749
0.0104192
0.0290522
0.06113
0.0870665
0.026315
-0.189818
-0.233117
-0.109846
-0.0612425
-0.00930596
-0.0334734
0.029518
0.0538327
0.0752071
0.0690594
0.0686781
0.0652107
0.0589853
0.0468538
0.0415681
0.0410953
0.0427391
0.0464612
0.0479942
0.0264034
-0.00119484
-0.0242125
-0.0329304
-0.0263925
-0.00859945
0.0101848
0.0280865
0.0528541
0.0647086
-0.0542654
-0.110686
-0.115036
-0.0978907
-0.069416
-0.0543078
-0.00951937
0.0333478
0.0451389
0.0630328
0.0584413
0.0589739
0.0578957
0.0533474
0.0458506
0.0417134
0.0414852
0.0417291
0.0409747
0.449899
0.469898
-0.000665325
-0.0212802
-0.0287232
-0.0232323
-0.00742717
0.00988949
0.0267547
0.048969
0.0471636
-0.0483069
-0.0168805
-0.0326312
-0.0907547
-0.0781683
-0.0597208
-0.0215257
0.0240468
0.0335289
0.0419262
0.0468215
0.048721
0.0498048
0.0478012
0.0453191
0.0402654
0.0393103
0.0359355
0.0293934
0.0307214
0.0580067
0.00172021
-0.0149119
-0.0250364
-0.0203547
-0.00628439
0.00952675
0.0250469
0.0425968
0.0395481
-0.0263164
0.0250614
-0.0239963
-0.0849244
-0.101231
-0.0778428
-0.045048
-0.0034033
0.0188384
0.029793
0.0357962
0.0475
0.054768
0.0408098
0.0387166
0.0423164
0.0477129
0.0402211
0.0427451
0.0477171
0.0541072
0.00568315
0.00377367
-0.0217679
-0.0177407
-0.00517654
0.00907696
0.0229417
0.0374341
0.0317386
-0.0051327
0.018991
-0.00748346
-0.0939927
-0.133224
-0.112631
-0.0607332
-0.0222984
0.00409382
0.0180899
0.0260809
0.0338224
0.0937524
0.0309404
0.0329193
0.0348672
0.0363933
0.0392976
0.0427399
0.0462045
0.049494
0.0112586
0.000630971
-0.0189943
-0.0153557
-0.00412769
0.00850972
0.0204201
0.0304301
0.0256196
0.0108331
0.0146708
-0.0103126
-0.122844
-0.164501
-0.152903
-0.0927383
-0.0377553
-0.00356278
0.00762376
0.0159533
0.0203966
0.0222259
0.0251661
0.0274831
0.0297867
0.0322853
0.0350156
0.0378535
0.0406139
0.043216
0.0156808
0.00534224
-0.0168547
-0.013163
-0.00317122
0.00781064
0.0176336
0.0244921
0.0211108
0.0126698
0.00479559
0.00424296
-0.139576
-0.177204
-0.175781
-0.115766
-0.051492
-0.0151892
0.00220344
0.00728272
0.0118007
0.0152831
0.0183588
0.0210551
0.0236211
0.0262447
0.028863
0.0313607
0.0337172
0.0359036
0.0139577
-0.00644503
-0.0152693
-0.0111246
-0.00232752
0.00697165
0.0146306
0.0187625
0.0173032
0.0192145
-0.0113204
0.723278
-0.107694
-0.162461
-0.163256
-0.111973
-0.0502798
-0.0155836
0.000695264
0.000555934
0.00325407
0.00571345
0.00838682
0.0111806
0.0139143
0.0165431
0.0190128
0.0212403
0.0232447
0.0250046
0.00861291
-0.0413617
-0.0136141
-0.00919015
-0.0016127
0.00598457
0.0117863
0.0126218
0.0134897
0.000483312
-0.0207751
-0.0516809
-0.0874664
-0.123468
-0.119201
-0.0755097
-0.0313354
-0.00590694
-0.00342179
-0.0048552
-0.00689981
-0.00774075
-0.00737908
-0.00556129
-0.00315039
-0.000585367
0.00166771
0.00350156
0.00493474
0.00593798
0.00370416
-0.0211705
-0.0115586
-0.00734175
-0.00103583
0.00486116
0.00799174
0.0055344
0.0572044
-0.0192818
-0.0393043
-0.0512084
-0.0741052
-0.0547029
-0.0726311
-0.0532469
0.204025
-0.0110931
0.0184673
0.0103341
-0.0187784
-0.0258766
-0.0294003
-0.0310788
-0.0265239
-0.0282559
-0.0263786
-0.024667
-0.0234501
-0.0227903
0.000985706
-0.0117469
-0.00907198
-0.00561682
-0.000596889
0.00363434
0.0043935
-0.000590765
0.0363489
-0.0608725
-0.0664181
-0.0585805
-0.059708
-0.0539719
-0.0469281
-0.0349946
-0.0204088
-0.0146976
-0.0238783
-0.0302498
-0.0387567
-0.0423872
-0.0518797
-0.0589666
-0.058045
-0.0604126
-0.0599824
-0.0573242
-0.055426
-0.0544368
-0.000148887
-0.00680733
-0.00657847
-0.00406967
-0.000278349
0.00241021
0.00109822
-0.0042535
0.0113381
-0.135038
-0.114209
-0.0609811
-0.0484889
-0.0445384
-0.0421791
-0.0352178
-0.0272686
-0.0276117
0.0114431
-0.0381076
-0.0515018
-0.0652675
-0.0727856
-0.0751757
-0.0781699
-0.0764851
-0.0505229
-0.0698413
-0.073114
-0.0736632
-0.00042048
-0.00402175
-0.00444305
-0.00272997
-5.41678e-05
0.00136844
-0.00133704
-0.0130789
-0.00764607
-0.16144
-0.111186
-0.0597954
-0.0399732
-0.0332011
0.090397
0.0124254
-0.0265548
-0.0285812
0.00889194
-0.0301206
-0.0539692
0.0901381
-0.0462068
-0.0674299
-0.0703952
-0.0752423
-0.0490864
-0.0765358
-0.0780968
-0.0788725
-0.000292633
-0.00217906
-0.00267349
-0.00160327
9.23871e-05
0.000662061
-0.00236767
-0.0132932
0.0198524
-0.0291561
-0.0881185
-0.0513411
-0.0347728
-0.0270695
-0.0236843
-0.0212277
-0.0142143
-0.0273102
-0.0343335
-0.0320862
-0.0390089
-0.0392349
-0.0344615
-0.024167
-0.0223327
-0.0397477
-0.0648049
-0.0620399
-0.0619998
-0.0578291
-2.55879e-05
-0.000899043
-0.0011801
-0.000672425
0.000139828
0.000310128
-0.00161541
-0.00803384
-0.0180295
-0.0289395
-0.0460684
-0.0432385
-0.0341483
-0.0257007
-0.0197499
-0.0162908
-0.015723
-0.0184575
-0.0216422
-0.0253822
-0.023253
-0.018371
-0.024454
-0.0260228
-0.0210005
-0.00804965
-0.0221116
-0.0253459
-0.0274294
-0.0292638
0.380891
0.120668
0.119887
0.119359
0.117307
0.116188
0.100159
0.100971
0.0982934
0.0585012
-0.0165643
0.0390077
-0.0708156
97.6085
99.9449
106.729
109.636
104.085
111.629
115.662
108.892
35.8396
0.957705
0.481847
0.310928
0.189618
0.180105
0.481307
104.534
109.323
0.128313
0.11953
0.114701
0.115045
0.113157
0.106259
0.095929
0.0943916
0.0891547
0.0500408
-0.0236866
0.0228729
-0.0598403
-0.0129809
98.8366
106.927
109.924
103.898
111.916
116.615
111.694
7.52727
0.932995
0.470451
0.306183
0.188445
0.168981
0.134029
104.408
109.001
0.123595
0.115262
0.127209
0.111119
0.108989
0.098752
0.091279
0.0878232
0.0808166
0.0448548
-0.0230391
0.00817875
-0.0338237
0.111409
58.2123
106.767
109.974
102.95
112.322
117.403
112.323
9.81189
0.89332
0.457687
0.300475
0.187097
0.157103
0.126428
0.699373
108.374
0.128011
0.112883
0.109784
0.183745
0.105215
0.0906045
0.0860233
0.0814695
0.0738613
0.0432593
-0.0154734
0.0073954
0.00700837
0.130393
0.313546
105.63
110.254
104.244
112.942
118.376
115.145
8.25065
0.823975
0.445143
0.293891
0.18552
0.145459
0.115468
0.0147931
107.711
6.31057
0.107805
0.0987776
0.106118
0.0654899
0.0833374
0.0812446
0.0755128
0.0683254
0.0456062
0.000928732
0.0118747
0.0240196
0.130233
0.20568
-2.42941
110.75
105.202
114.707
118.888
119.957
-2.04889
0.729541
0.426841
0.286504
0.183495
0.134868
0.105047
0.00665041
24.7357
5.19926
0.0645365
0.0846543
0.0849168
0.0753927
0.100832
0.0777649
0.0697793
0.0643417
0.0470675
0.0165284
0.0151872
0.0288155
0.0767306
0.123036
-0.635839
83.4801
106.034
116.115
120.215
118.879
-1.70143
0.629444
0.409029
0.27838
0.18091
0.125733
0.0949949
0.00104407
0.237421
0.0620385
0.0599415
0.070491
0.0737577
0.0718468
0.0822226
0.0855904
0.0643652
0.0616612
0.0496545
0.0313806
0.0249764
0.0231259
0.0724361
0.0364682
-0.436195
-0.285731
51.8985
115.442
124.172
52.8597
-1.51745
0.518395
0.387052
0.26942
0.177765
0.118066
0.0855992
0.00142324
0.210645
0.0525513
0.0560489
0.061603
0.0651325
0.061233
0.0812604
0.0676721
0.0626369
0.0608334
0.0494963
0.0407235
0.0309754
0.0180045
0.0426724
-0.0823337
-0.476528
-0.282016
-0.317183
99.4649
124.438
-0.836701
-1.37218
0.414155
0.364025
0.25946
0.173999
0.111603
0.0772827
0.00424058
0.169731
0.0443869
0.0489161
0.0545203
0.0598929
0.0788165
2.04091
0.0559585
0.058799
0.0552082
0.0459051
0.0444892
0.0533477
0.00869379
-0.00847494
-0.319168
-0.543187
-0.267931
-0.318391
-0.364194
-0.474432
-0.76793
-1.16869
0.328609
0.336116
0.248417
0.169565
0.106253
0.0701393
0.0078118
0.140625
0.0369435
0.0417886
0.0468415
0.050701
0.0412719
0.171292
0.0517421
0.0521018
0.0486712
0.041952
0.0448545
0.0421443
0.0109257
-0.02335
-0.0524087
-0.542104
-0.0265606
-0.311669
-0.351459
-0.508103
-0.735459
-1.18665
0.251723
0.307116
0.236253
0.164489
0.101716
0.0640251
0.0113742
0.115638
0.0324296
0.0371786
0.0420971
0.045214
0.0491055
0.0508662
0.0509181
0.0486169
0.0440192
0.0402187
0.0497224
0.0324961
0.00317111
-0.0229925
-0.0654015
-0.255792
-0.0134659
-0.297783
-0.363444
-0.491231
-0.263612
-1.0048
0.182336
0.275975
0.222939
0.158775
0.0977658
0.058866
0.0147096
0.0923714
0.030364
0.0354768
0.0413413
0.0473332
0.0587158
0.0508876
0.0497725
0.0461363
0.0413592
0.0370977
0.0629328
0.0306422
0.00282208
-0.0231787
-0.058672
-0.278802
-0.225956
-0.290307
-0.349841
-0.481487
-0.632416
-0.798946
0.117515
0.243188
0.2085
0.152397
0.0942426
0.054695
0.0175919
0.0760532
0.0319481
0.0372638
0.0429144
0.0487704
0.0529154
0.0521698
0.0506722
0.0451335
0.0411218
0.0370421
0.0269531
0.0245523
0.00175564
-0.0187755
-0.0537174
-0.180492
-0.22379
-0.281701
-0.39465
-0.474295
-0.543529
-0.591494
0.0628465
0.209685
0.193024
0.145327
0.091
0.0515933
0.0200235
0.0619698
0.0360063
0.0408201
0.0470499
0.0536599
0.0575312
0.0574101
0.0571234
0.0663842
0.045352
0.0402074
0.0283189
0.0192047
0.000709653
-0.021918
-0.0565321
-0.12455
-0.223931
-0.260924
-0.40936
-0.460934
-0.495567
-0.505889
0.0160797
0.176387
0.176665
0.137567
0.0878667
0.0494888
0.0221027
0.0505082
0.0395472
0.0463494
0.0578655
0.0614117
0.0649417
0.0618679
0.0627982
0.0633541
0.0441154
0.0383159
0.0295323
0.0199725
0.020084
-0.0210258
-0.0635562
-0.14251
-0.217966
-0.251296
-0.426135
-0.442674
-0.315059
-0.396934
-0.0289105
0.144455
0.159681
0.129159
0.0846883
0.0481465
0.023928
0.0413893
0.0358211
0.0533705
0.0627706
0.0688526
0.0663006
0.0602859
0.0531881
0.0438084
0.0469872
0.042326
0.0306107
0.0182968
0.0141471
-0.0296391
-0.0685371
-0.147178
-0.216674
-0.243369
-0.141105
-0.462814
-0.291057
-0.321197
-0.0511137
0.115198
0.142402
0.120159
0.0813291
0.0473065
0.0256001
0.0343938
0.0468259
0.0666643
0.0731231
0.0716215
0.0529301
0.0599497
0.0602553
2.8118
0.0653246
0.0572324
0.0344329
0.0164208
0.0281038
-0.0268841
-0.0690626
-0.157765
-0.214739
-0.253505
-0.26701
-0.378401
-0.276624
-0.279264
-0.0604614
0.0895124
0.125171
0.110659
0.0776405
0.0467178
0.0271435
0.0291978
0.0677909
0.0703831
0.0711827
0.0635841
0.237762
0.0714132
0.147655
0.0758441
0.0678782
0.0581061
0.0403152
0.0189559
-0.00594267
-0.024511
-0.0280872
-0.158772
-0.213664
-0.279785
-0.239449
-0.315246
0.746949
-0.19916
-0.0611789
0.0679215
0.108363
0.100785
0.0735229
0.0461043
0.0283222
0.0253668
0.0590618
0.0623321
0.065032
0.0718044
0.0709544
0.0739127
0.0764485
0.0765436
0.0758226
0.0623842
0.0454601
0.02065
-0.0122927
0.0375702
-0.0817525
-0.150764
-0.206137
-0.258036
0.811241
-0.289156
0.594046
-0.145018
-0.053617
0.0504041
0.0923331
0.0906731
0.0689434
0.0451709
0.0290154
0.0224946
0.0525791
0.0557729
0.0595666
0.0652531
0.0693335
0.0754793
0.0845581
0.0762884
0.0713664
0.0618355
0.0450755
0.0170276
-0.0200969
-0.058503
-0.0964626
-0.147965
-0.203159
-0.203083
0.851404
-0.00949772
0.019649
-0.1359
-0.0464523
0.0365067
0.0773684
0.0804987
0.0639029
0.0436895
0.0291584
0.0202245
0.0457278
0.0483734
0.0513782
0.0548455
0.0593068
0.0639715
0.0672479
0.0665983
0.0617261
0.0511914
0.0308587
-0.00260885
-0.0434051
-0.0849323
-0.123782
-0.16308
-0.188013
-0.193418
-0.166483
0.621292
-0.110472
-0.11082
-0.0404746
0.0256155
0.0636834
0.0704373
0.0584578
0.0415746
0.0286447
0.0182751
0.0379413
0.0400073
0.0421212
0.0439935
0.0448792
0.0435605
0.0446877
0.042972
0.0365105
0.021947
0.0167175
-0.0474296
-0.0937426
-0.137158
-0.167631
-0.184359
-0.184198
-0.172505
-0.157589
0.676062
-0.0746868
-0.0803765
-0.035893
0.0169921
0.0514034
0.0606502
0.0526974
0.0388831
0.027398
0.0164657
0.0264908
0.027795
0.0287325
0.0286763
0.0268638
0.0265644
0.085903
0.00742424
-0.00787531
-0.0354269
-0.057024
-0.128638
-0.181553
-0.223326
-0.24048
-0.21991
-0.185774
-0.151128
-0.12494
0.00205837
-0.0865167
-0.0614485
-0.0331422
0.00999348
0.040558
0.0512999
0.0467099
0.0357103
0.0254866
0.0147057
0.00646527
0.00653866
0.00583984
0.00361965
-0.000980758
-0.00813047
-0.0184734
-0.0348139
-0.0623157
-0.105922
-0.136425
-0.247128
-0.231136
-0.368981
-0.353743
-0.254188
-0.195099
-0.131798
-0.0915709
-0.0369108
-0.0711846
-0.0567851
-0.0332317
0.0042214
0.0311407
0.0425136
0.0405954
0.0321236
0.0231132
0.0129596
-0.0226726
-0.0231393
-0.0245426
-0.027438
-0.0326271
-0.0413227
-0.0549317
-0.0728988
-0.108089
-0.159266
-0.230927
-0.32076
-0.409503
-0.473364
-0.464927
-0.350129
-0.183224
-0.111382
-0.052214
0.0334985
-0.0779593
-0.0743571
-0.0353706
-0.000387162
0.0231301
0.0343942
0.0344478
0.0281718
0.0204193
0.0112108
-0.0541185
-0.0545077
-0.0558531
-0.0586448
-0.0635506
-0.071618
-0.0845773
-0.105105
-0.135906
-0.181409
-0.245565
-0.329243
-0.418437
-0.492702
-0.487969
-0.371095
-0.201587
-0.0856036
-0.0188282
0.0308294
3.04167
-0.0845924
-0.0111661
-0.0037578
0.0165014
0.0270197
0.0283502
0.0239131
0.0174681
0.00944534
-0.0743945
-0.07533
-0.0768365
-0.0792487
-0.0834331
-0.0899022
-0.0997374
-0.11478
-0.137586
-0.170439
-0.212832
-0.269358
-0.329907
-0.371192
-0.348438
-0.285548
-0.146375
-0.0511941
-0.00166616
0.0279754
0.492386
-0.0450424
-0.0239384
-0.00610353
0.0112449
0.0204066
0.0223663
0.0193995
0.0142867
0.0076473
-0.0800546
-0.082186
-0.0855751
-0.0872646
-0.0887666
-0.0923044
-0.0987262
-0.109242
-0.122295
-0.137559
-0.0931226
-0.173457
-0.0837722
-0.203237
-0.189821
-0.133066
-0.0656607
-0.017568
0.00138535
0.00499345
-0.010271
-0.0259489
-0.0228178
-0.00358962
0.0073364
0.0145216
0.0165191
0.0146686
0.010887
0.00579653
-0.0538434
-0.0281207
0.0103565
-0.0623721
-0.0716268
-0.0737559
-0.0781938
-0.0836458
-0.0886767
-0.0932458
-0.0572132
-0.0820846
-0.0536338
-0.0321495
-0.0633928
-0.033983
-0.010558
0.000865843
0.00397983
-0.000267312
-0.00806932
0.0253436
-0.0145935
-0.0027736
0.00453352
0.00922862
0.0107721
0.00973076
0.00726704
0.00386726
-0.0312703
-0.0310674
-0.023081
-0.0391289
-0.0388884
-0.0371937
-0.0467547
-0.0445546
-0.048313
-0.03131
-0.0430503
-0.0299102
-0.0241563
-0.0119483
0.069884
0.00777664
0.0340394
0.00912817
0.00524742
0.000137199
-0.0041651
-0.00546478
-0.00515849
-0.00054761
0.00220802
0.00426619
0.00501365
0.00455191
0.00340568
0.00182907
93.4631
89.3229
88.3307
87.1981
85.2807
83.7364
83.3402
85.046
88.8825
92.9516
95.7449
97.0792
97.3367
96.961
96.2874
95.5229
94.7797
94.1103
93.5347
93.0551
92.6649
92.3537
92.1103
91.9243
91.786
91.6871
91.62
91.5784
91.5565
91.5497
91.5576
88.8583
88.1549
86.7355
84.8118
83.4869
83.5096
85.8541
90.0044
93.8542
96.2557
97.26
97.3054
96.818
96.0982
95.3244
94.5905
93.9389
93.3839
92.925
92.5538
92.2595
92.0307
91.8571
91.7292
91.6389
91.5789
91.5428
91.5252
91.5217
91.4683
88.8196
88.1632
86.7423
84.8035
83.4608
83.4357
85.7629
89.9805
93.8961
96.3233
97.3232
97.3532
96.8495
96.1147
95.3267
94.5799
93.9172
93.3534
92.8878
92.5118
92.214
91.9829
91.8076
91.6787
91.5878
91.5275
91.4913
91.4738
91.4704
91.3377
88.7616
88.1767
86.7526
84.7894
83.4198
83.3204
85.6173
89.935
93.9495
96.419
97.4183
97.4298
96.9043
96.1478
95.3384
94.571
93.8903
93.312
92.8354
92.4512
92.1478
91.9126
91.7347
91.6042
91.5125
91.4519
91.4157
91.3984
91.3951
91.1616
88.6834
88.1956
86.7664
84.7694
83.3645
83.1636
85.4161
89.8716
94.019
96.5439
97.5437
97.5326
96.9795
96.1948
95.3569
94.5621
93.8573
93.2597
92.7683
92.3732
92.0617
91.821
91.6394
91.5065
91.4134
91.3521
91.3157
91.2984
91.2953
90.9322
88.5839
88.2206
86.7838
84.7434
83.296
82.9639
85.1538
89.7893
94.1064
96.6998
97.6993
97.6589
97.0708
96.2512
95.3788
94.5508
93.8168
93.1954
92.6858
92.2772
91.9558
91.7078
91.5211
91.3846
91.289
91.2262
91.1891
91.1716
91.1686
90.6394
88.4618
88.2521
86.8049
84.7113
83.2159
82.7203
84.8234
89.6868
94.213
96.8888
97.8859
97.8078
97.1763
96.3153
95.4028
94.5363
93.7677
93.1184
92.5874
92.1626
91.8293
91.5724
91.379
91.2375
91.1382
91.0728
91.0342
91.0161
91.0133
90.269
88.3154
88.2912
86.8301
84.6729
83.126
82.4314
84.4156
89.5626
94.3404
97.1127
98.1047
97.9791
97.2954
96.3863
95.4284
94.5177
93.7091
93.0273
92.4716
92.0284
91.6811
91.4137
91.2122
91.0643
90.96
90.8909
90.8499
90.8308
90.8282
89.7999
88.1433
88.3387
86.8597
84.628
83.0289
82.0961
83.9186
89.4154
94.4907
97.3741
98.3573
98.1731
97.4273
96.4638
95.4551
94.4942
93.6394
92.9206
92.337
91.873
91.51
91.2305
91.0197
90.8644
90.754
90.68
90.6355
90.6147
90.6122
89.2683
87.9441
88.3958
86.8939
84.5762
82.9275
81.7122
83.3172
89.2437
94.6661
97.6758
98.6455
98.3898
97.5714
96.5467
95.4822
94.4649
93.5569
92.796
92.1816
91.6945
91.3141
91.0212
90.8001
90.6368
90.5199
90.4402
90.3908
90.3666
90.3635
88.6564
87.7165
88.4635
86.933
84.5171
82.8252
81.2811
82.5909
89.0472
94.8691
98.021
98.9715
98.6293
97.7265
96.6341
95.509
94.4285
93.4592
92.6511
92.0031
91.491
91.0914
90.7839
90.5519
90.3804
90.257
90.1716
90.1162
90.0854
90.0769
87.9366
87.4593
88.5433
86.9773
84.45
82.7264
80.8018
81.7123
88.8258
95.1019
98.4139
99.3381
98.8915
97.8913
96.7244
95.5344
94.3837
93.3432
92.4828
91.7988
91.26
90.8394
90.516
90.2724
90.093
89.9641
89.8737
89.8126
89.7739
89.7512
87.0771
87.1711
88.6366
87.0268
84.374
82.6358
80.2752
80.6433
88.5822
95.3668
98.8588
99.7487
99.1765
98.0637
96.8154
95.5571
94.3291
93.2049
92.2873
91.5658
90.9987
90.5553
90.2142
89.9581
89.7711
89.6378
89.5446
89.4798
89.4352
89.4121
86.0925
86.8504
88.7447
87.0814
84.288
82.5588
79.7034
79.3311
88.3219
95.6652
99.3608
100.207
99.4841
98.2413
96.9046
95.5753
94.2631
93.0389
92.0604
91.3008
90.7042
90.2357
89.8743
89.604
89.4089
89.2725
89.1794
89.1156
89.0706
89.1273
84.978
86.4962
88.8691
87.1406
84.1909
82.5015
79.0963
77.7059
88.057
95.997
99.9255
100.718
99.8143
98.4208
96.9887
95.5858
94.1834
92.837
91.7975
91.0001
90.3735
89.8769
89.4912
89.2036
88.9986
88.8587
88.7664
88.7071
88.6704
88.6498
83.6795
86.1089
89.0111
87.2032
84.0815
82.4701
78.5037
75.6895
87.8122
96.3589
100.559
101.288
100.167
98.5977
97.0638
95.5831
94.0853
92.5877
91.4938
90.6598
90.0037
89.475
89.059
88.7493
88.5315
88.3861
88.294
88.2393
88.2102
88.199
82.15
85.6905
89.1719
87.267
83.9585
82.4704
77.9781
73.1573
87.611
96.7407
101.268
101.924
100.541
98.7655
97.126
95.5577
93.9531
92.2711
91.1427
90.2748
89.5926
89.0266
88.571
88.2322
87.9982
87.8466
87.7559
87.7082
87.69
87.6917
80.34
85.2465
89.3521
87.3282
83.8212
82.5074
77.5643
69.8525
87.4625
97.1214
102.059
102.635
100.937
98.9144
97.173
95.4936
93.7347
91.8536
90.7303
89.8384
89.1395
88.5297
88.0191
87.6409
87.388
87.2321
87.1478
87.1147
87.1156
87.1373
78.1966
84.7866
89.552
87.3804
83.6693
82.5854
77.3936
65.3624
87.4105
97.4857
102.937
103.429
101.353
99.0289
97.2061
95.3691
93.3274
91.379
90.2361
89.3415
88.6478
87.9859
87.3938
86.9592
86.6869
86.5346
86.4695
86.4663
86.5015
86.5555
75.6621
84.3267
89.7715
87.413
83.503
82.707
77.6688
58.9787
87.5456
97.8458
103.907
104.318
101.784
99.0875
97.2598
95.1681
92.7374
90.9312
89.6378
88.7707
88.129
87.407
86.6862
86.1646
85.8761
85.7455
85.7212
85.7703
85.8598
85.9621
72.6763
83.8904
90.0092
87.4072
83.3228
82.8908
78.6431
50.6368
87.9704
98.2335
104.971
105.311
102.22
99.0724
97.4272
94.901
92.1436
90.4536
88.908
88.1068
87.6102
86.8199
85.8951
85.2362
84.9279
84.8406
84.8842
85.0148
85.1873
85.3635
69.1819
83.5114
90.2619
87.3371
83.1279
83.1648
80.4752
6.22586
88.717
98.6646
106.126
106.417
102.635
98.9603
97.5564
94.6285
91.7354
89.9374
87.9933
87.3019
87.1387
86.2342
85.0097
84.1606
83.8065
83.7723
83.9184
84.1747
84.4769
84.7711
65.1334
83.2353
90.5222
87.4572
82.9507
83.4008
80.506
0.0303726
90.3887
98.9822
107.364
107.639
102.973
98.6709
97.6515
94.4642
91.5769
89.4401
86.728
86.1274
86.7233
85.6079
83.9536
82.8607
82.4433
82.4825
82.775
83.2162
83.7165
84.1949
60.5156
83.1214
90.7768
86.5048
82.8319
83.1925
4.27825
0.453913
93.4532
99.1597
108.67
108.977
103.087
97.9687
98.0841
94.5052
91.6551
89.0277
84.6749
83.7534
86.0729
84.9539
82.6529
81.2282
80.7535
80.9239
81.399
82.0903
82.8893
83.6471
55.3706
83.2439
91.0035
86.3913
82.3191
75.7565
-0.189275
0.353915
96.0293
99.2762
110.023
110.417
102.547
96.4032
98.7376
94.7484
91.9093
88.7953
81.6878
79.5926
85.1125
84.2248
80.9483
79.1564
78.5739
79.0586
79.683
80.6851
81.9983
83.1528
49.8181
83.6886
91.1681
86.4697
78.7252
-0.0466872
-0.0604692
0.375769
86.1819
99.2332
111.41
111.911
101.007
93.8888
99.6082
95.0466
92.2274
88.9454
80.0261
75.6157
85.0981
83.6012
77.8042
76.2327
63.6017
60.507
61.2963
68.0937
76.4987
81.6448
44.0917
84.5413
91.2291
86.9013
0.0391815
-0.0201143
0.0151391
0.468036
50.762
98.9602
112.792
113.36
100.381
93.4271
100.698
95.1236
92.5443
89.8395
82.2244
76.0765
53.2581
0.212023
0.171941
0.174876
0.15942
0.158261
0.154256
0.146032
0.137376
0.132319
38.4769
85.8914
91.2264
89.828
0.035403
0.00204446
0.0401246
0.501582
21.5305
99.9513
114.159
114.594
101.425
96.2848
101.494
94.8349
92.8494
91.2291
79.2272
0.130705
0.15297
0.168906
0.17206
0.169933
0.161078
0.157011
0.155678
0.173812
0.139304
0.139349
33.1777
88.002
90.8954
-0.111035
0.0171698
0.0121605
0.0441138
0.449562
13.639
102.527
114.832
115.418
102.731
101.168
101.198
93.9484
93.0206
73.2321
0.0452423
0.116951
0.14526
0.162332
0.170074
0.166948
0.159529
0.169221
0.147796
0.139494
0.133361
0.152068
32.7327
91.3091
5.61673
-0.0632516
0.00984251
0.0168497
0.0905822
0.350911
5.77996
104.026
113.894
115.894
102.659
104.655
101.044
91.9009
86.1042
0.0705363
0.0402001
0.0815496
0.120815
0.153554
0.167045
0.164466
0.153518
0.154502
0.136451
0.131609
0.127294
0.127475
91.5546
91.5723
91.6067
91.6625
91.7456
91.8627
92.022
92.2332
92.5074
92.8566
93.2915
93.8174
94.429
95.1021
95.7851
96.3895
96.7719
96.7012
95.8446
93.8269
90.4485
86.2672
83.0772
82.3186
83.7928
87.3363
92.8768
99.3211
105.451
109.654
91.5296
91.551
91.5902
91.6523
91.7431
91.8699
92.0413
92.2677
92.5607
92.9323
93.3926
93.945
94.5804
95.2684
95.9491
96.5223
96.8273
96.6074
95.5086
93.1633
89.4705
85.2989
82.6275
82.4692
84.4442
88.5162
94.4218
100.905
106.808
110.054
91.4784
91.5
91.5394
91.6016
91.6926
91.82
91.9925
92.2209
92.5172
92.894
93.3617
93.9242
94.5726
95.2754
95.971
96.5583
96.8761
96.6664
95.5697
93.2034
89.4521
85.2101
82.5386
82.42
84.4078
88.4904
94.4161
100.907
106.825
110.086
91.4033
91.425
91.4643
91.5265
91.6178
91.7458
91.92
92.1517
92.4535
92.8388
93.3185
93.8975
94.5671
95.2947
96.0152
96.6236
96.9564
96.7557
95.6558
93.2529
89.4118
85.0665
82.4013
82.3439
84.3503
88.4499
94.4082
100.912
106.855
110.14
91.3036
91.3255
91.365
91.4273
91.5188
91.6479
91.8245
92.0608
92.3704
92.7673
93.2634
93.8649
94.5635
95.325
96.0789
96.7147
97.0653
96.8735
95.7674
93.3158
89.3539
84.8679
82.2151
82.2417
84.2716
88.3945
94.3983
100.92
106.899
110.218
91.1772
91.1996
91.2396
91.3024
91.3948
91.5254
91.7053
91.9479
92.2675
92.679
93.1958
93.8253
94.5603
95.3637
96.158
96.8263
97.199
97.019
95.9061
93.3943
89.2782
84.6087
81.9779
82.1143
84.1717
88.3238
94.3865
100.931
106.956
110.32
91.0225
91.0457
91.0867
91.1505
91.2442
91.3772
91.5616
91.8119
92.1437
92.5732
93.1147
93.7778
94.5568
95.4105
96.2513
96.9565
97.3559
97.1922
96.0735
93.49
89.1831
84.2817
81.6871
81.9632
84.0504
88.2374
94.3732
100.945
107.029
110.447
90.8383
90.8627
90.905
90.9702
91.0657
91.2018
91.3919
91.6517
91.998
92.4483
93.0186
93.7209
94.5522
95.4653
96.3586
97.1047
97.5356
97.3936
96.2714
93.6049
89.0679
83.8771
81.3395
81.7905
83.9076
88.135
94.359
100.961
107.116
110.598
90.6237
90.6494
90.6928
90.7598
90.8577
90.9976
91.1944
91.4654
91.8288
92.3031
92.9059
93.6528
94.5454
95.5286
96.4802
97.2709
97.7379
97.6236
96.5019
93.7417
88.9312
83.3824
80.931
81.5987
83.7433
88.016
94.3442
100.98
107.219
110.774
90.3775
90.4035
90.4466
90.5166
90.6178
90.7624
90.9673
91.2514
91.6345
92.1359
92.7748
93.571
94.5349
95.6008
96.6159
97.4544
97.9628
97.8831
96.7673
93.9036
88.7721
82.7812
80.4568
81.3914
83.5571
87.8796
94.3298
101
107.331
110.976
90.0993
90.1232
90.1597
90.2378
90.344
90.4943
90.7085
91.0078
91.4132
91.9449
92.623
93.4725
94.5188
95.6829
96.7647
97.6541
98.2097
98.1727
97.0708
94.0946
88.59
82.0516
79.9107
81.173
83.3488
87.7248
94.3165
101.021
107.451
111.203
90.0248
89.9708
89.833
89.9231
90.0352
90.1916
90.4159
90.7325
91.1633
91.7286
92.4487
93.3533
94.4942
95.776
96.9247
97.8685
98.4784
98.4934
97.4157
94.3193
88.3851
81.1646
79.2851
80.9492
83.1178
87.5504
94.3053
101.044
107.581
111.458
89.4186
89.4517
89.4894
89.5718
89.6892
89.8516
90.0873
90.4239
90.8834
91.4855
92.25
93.2086
94.4555
95.8812
97.0915
98.0954
98.7682
98.846
97.8087
94.5834
88.1583
80.0811
78.5703
80.7268
82.8634
87.3546
94.2975
101.067
107.723
111.739
89.0455
89.0583
89.1005
89.1807
89.2993
89.469
89.7199
90.0802
90.5718
91.2142
92.0256
93.0332
94.3911
95.9972
97.257
98.332
99.0788
99.2316
98.2544
94.8934
87.9127
78.7468
77.7533
80.5137
82.5848
87.1351
94.2945
101.09
107.877
112.048
88.641
88.6549
88.6909
88.7533
88.8587
89.0392
89.3123
89.7005
90.2272
90.9133
91.7743
92.8232
94.267
96.1124
97.4067
98.5755
99.4097
99.6509
98.7579
95.2572
87.6524
77.0843
76.8113
80.3187
82.2808
86.8886
94.2984
101.112
108.045
112.384
88.202
88.2232
88.2625
88.2909
88.3544
88.5634
88.8661
89.284
89.8479
90.5805
91.4948
92.5784
93.9744
96.1769
97.5181
98.8241
99.7612
100.105
99.3269
95.6838
87.3827
74.982
75.7212
80.1547
81.9503
86.6109
94.3115
101.132
108.213
112.746
87.7092
87.7461
87.8215
87.8569
87.7669
88.0582
88.3848
88.829
89.4311
90.2128
91.1828
92.3059
93.3799
96.0243
97.5628
99.0783
100.133
100.593
99.9697
96.1836
87.1096
72.2956
74.5286
80.0496
81.5917
86.2958
94.3371
101.15
108.383
113.132
87.1743
87.2303
87.3323
94.7906
87.2959
87.5452
87.8666
88.3294
88.9722
89.8058
90.8299
92.0301
92.8749
95.3586
97.5204
99.3433
100.527
101.115
100.696
96.7685
86.838
68.8715
73.3703
80.0223
81.2038
85.9341
94.3795
101.163
108.558
113.542
86.6212
86.7007
86.7971
86.8522
86.8471
87.0084
87.2974
87.7737
88.465
89.3545
90.4252
91.7393
92.7655
94.1264
97.4128
99.6307
100.943
101.668
101.517
97.4564
86.5689
64.4457
72.3729
80.0901
80.7859
85.512
94.4463
101.17
108.737
113.97
86.0684
86.1754
86.2664
86.3127
86.3286
86.4237
86.652
87.1461
87.903
88.8549
89.9545
91.3651
92.7622
92.8259
97.3394
99.9587
101.382
102.247
102.443
98.2489
86.3168
58.3097
71.7487
80.2931
80.3375
85.0082
94.551
101.168
108.921
114.411
85.5327
85.6848
85.784
85.7974
85.7557
85.7825
85.8937
86.4248
87.2777
88.3027
89.393
90.8996
92.7098
92.205
97.4494
100.348
101.843
102.841
103.486
99.1355
86.1648
49.6738
71.8333
80.6821
79.8573
84.395
94.7133
101.153
109.112
114.854
85.0439
85.2781
85.4061
85.3613
85.1566
85.3368
85.0212
85.556
86.561
87.6769
88.6889
90.3641
92.6668
92.6308
97.8318
100.814
102.323
103.432
104.656
100.196
86.2803
39.5283
73.1272
81.314
79.3313
83.6608
94.9604
101.126
109.31
115.285
84.6361
85.0148
85.2131
85.0832
84.6078
84.0967
83.9159
84.4447
85.6878
86.8915
87.717
89.732
92.7357
93.7761
98.4139
101.368
102.819
103.985
105.957
101.303
86.7984
28.0238
71.2566
82.1576
78.7002
82.8463
95.327
101.085
109.518
115.681
84.3486
84.9755
85.3258
85.0473
84.0541
82.9461
82.4154
83.0144
84.6759
85.8568
86.1302
88.9551
92.9321
95.0577
99.0215
102.032
103.329
104.436
107.39
102.393
87.7714
-0.397749
0.649771
83.207
77.8602
81.7981
95.8573
101.033
109.738
116.009
84.221
85.259
86.038
85.549
83.4476
81.4303
80.2577
81.1334
83.6748
84.3277
83.4446
88.0184
93.2446
96.192
99.6276
102.858
103.857
104.679
108.944
103.419
89.5942
0.879595
0.817721
0.523873
60.9179
81.1354
96.6099
100.975
109.972
116.216
84.7261
85.5796
88.0003
87.5181
82.3042
79.3245
76.9592
77.6693
82.6612
82.8863
80.8433
87.0899
93.7457
97.188
100.645
103.909
104.436
104.563
110.57
104.389
93.2158
0.974458
0.78677
0.250439
0.474588
80.8519
97.6339
100.916
110.221
116.227
0.132594
0.127099
0.124635
0.120594
0.115137
0.113892
0.125848
0.261076
36.7574
82.8085
78.7656
86.5332
94.6413
98.1381
102.212
105.189
105.151
103.879
112.164
105.277
96.1195
1.17066
0.719696
0.3059
0.382316
77.874
98.9334
100.869
110.489
115.922
0.143312
0.140338
0.139753
0.124596
0.125123
0.12902
0.133628
0.153146
0.129081
0.0829717
54.6182
87.1529
96.2989
98.9276
103.796
106.609
106.224
103.176
113.672
105.407
99.5666
1.2976
0.650092
0.337683
0.324243
-0.11091
100.386
100.866
110.791
115.124
0.136469
0.13137
0.12809
0.124501
0.115723
0.108705
0.121126
0.131398
0.113143
0.0571431
0.0721425
83.595
98.8591
99.442
104.579
108.021
107.779
104.419
114.69
106.338
98.603
1.36438
0.594461
0.347384
0.286978
0.210057
101.906
100.971
111.17
113.556
0.126983
0.125969
0.124346
0.122961
0.279558
0.101573
0.108557
0.113225
0.090692
0.0120607
0.0461131
-0.302507
102.492
99.9747
104.515
109.843
108.51
106.504
115.495
104.897
88.1837
1.4456
0.554411
0.345297
0.262275
0.198749
75.4479
101.158
112.044
110.803
29.5814
94.5796
-0.154417
-0.0459111
0.00751865
0.0190909
0.077792
0.244763
201.317
105.28
116.276
116.532
101.761
105.983
103.059
86.9254
0.00844958
0.0790924
0.0240217
0.0491399
0.0878783
0.138541
0.162442
0.162219
0.145573
0.161856
0.130121
0.12248
0.120003
0.351304
32.6166
94.4775
-0.131286
-0.0402291
0.00674408
0.0201287
0.0740782
0.173297
14.3833
104.969
118.331
117.284
101.693
106.621
111.889
-5.09615
0.0723047
0.00166084
0.0142823
0.0364061
0.0679102
0.125289
0.157165
0.152879
0.138078
0.127017
0.120443
0.113589
0.113926
0.123908
127.608
29.8639
-0.114189
-0.0373597
0.00627578
0.0210163
0.0711086
0.100211
-0.584419
112.211
117.261
118.43
103.052
107.888
115.398
0.0456476
0.180946
0.0249803
0.0103207
0.0456911
0.0503309
0.110311
0.176734
0.141736
0.130325
0.117044
0.107867
0.100169
0.100212
0.12074
128.531
1.15646
-0.100971
-0.0360752
0.00606901
0.0219192
0.0972769
0.0221899
0.0011069
114.124
112.674
120.155
105.185
111.651
-0.320972
0.000923096
0.184762
0.0340465
0.0135206
0.0441134
0.0404488
0.0963252
0.128949
0.129894
0.117856
0.104265
0.093466
0.0833317
0.0704508
0.123455
99.5208
-0.160608
-0.090456
-0.0352829
0.00602546
0.0224676
0.0901615
-0.0319249
-0.740614
117.724
113.571
122.857
108.027
117.036
0.139922
-0.0360702
0.189964
0.0437951
0.0167665
0.0244772
0.0388684
0.0857395
0.118376
0.115988
0.102938
0.0893917
0.0786831
0.0693824
0.0602651
6.90369
0.167449
-0.0841395
-0.0826584
-0.034387
0.00605635
0.0229654
0.0699136
-0.0798455
-1.19816
97.516
120.347
124.122
109.623
53.3957
0.0257896
-0.0203965
0.0608571
0.0493008
0.0149511
0.0275482
0.0414776
0.0829524
0.125732
0.0961582
0.0857948
0.0734343
0.0649147
0.0585431
0.0494498
0.0461087
0.11064
-0.0874984
-0.0762332
-0.0331424
0.00607459
0.023375
0.0652299
-0.0877137
-0.795779
17.8774
120.752
122.937
109.794
-0.482829
0.354027
-0.00674244
0.0613507
0.0531335
0.00899968
0.103107
0.0473522
0.0857762
0.0677972
0.0781772
0.0683633
0.0569982
0.0603664
0.050964
0.0545125
0.0587776
-0.0523105
-0.0777618
-0.0704126
-0.0314659
0.00606193
0.0237948
0.0592866
-0.0791421
-1.04457
-0.664145
119.094
122.719
-0.0877787
-0.071863
-0.000889169
0.00730279
0.0528064
0.0743345
0.0113071
0.105053
0.153571
0.0892455
0.0708128
0.0636047
0.0529053
0.0427539
0.0411979
0.0442608
0.0461333
0.0496115
-0.00923966
-0.0675178
-0.0650594
-0.0294848
0.00606289
0.0242251
0.0528796
-0.0659159
-0.684079
-0.0702653
122.584
114.527
-0.119558
-0.0864258
-0.0183805
0.00794408
0.0494482
0.290574
0.0114703
0.0154686
0.0440055
0.0597164
0.0611525
0.0520901
0.0469912
0.0320933
0.0303463
0.0323977
0.0370182
0.0411922
-0.000153146
-0.057741
-0.0599285
-0.0273564
0.00606388
0.0245839
0.0515963
-0.0177601
-0.222193
-0.719191
-0.429088
-0.215684
-0.118173
-0.0785199
-0.0477672
0.00967063
0.0442555
0.221802
0.0386029
0.0313876
0.0411325
0.052574
0.0550772
0.0444195
0.0347836
0.0252123
0.0234923
0.0345432
0.0294538
0.0342717
0.0125928
-0.0489632
-0.0549314
-0.0251979
0.00600762
0.0248588
0.0559164
0.0161201
-0.080075
-0.509038
-0.397275
-0.27577
-0.0891854
-0.0913494
-0.0932559
0.0127589
0.0509288
0.0633648
0.0518276
0.0487497
0.0568314
0.0564989
0.0515971
0.0411879
0.029461
0.0217517
0.0202491
0.0348132
0.0275767
0.0306687
0.0379079
-0.0414361
-0.0500665
-0.0230983
0.00591017
0.025019
0.0546869
0.0416913
-0.0471545
-0.917365
-0.338212
-0.345051
-0.0982741
-0.0890571
-0.186408
0.0413554
0.0612576
0.0631953
0.0616116
0.0636728
0.0636504
0.0613656
0.0515038
0.0412056
0.0302594
0.0360688
0.0193978
0.0196089
0.0239101
0.0291163
0.0221658
-0.0353883
-0.0454041
-0.0210722
0.00583705
0.0250557
0.0565309
0.0577375
0.031617
-0.759956
-0.234075
0.288806
-0.0896276
-0.0759307
-0.378387
0.18221
0.0883219
0.0650815
0.062788
0.313237
0.0673861
0.0582835
0.0519789
0.043114
0.0336609
0.0270346
0.0241558
0.0247404
0.027586
0.0316619
0.0374796
-0.0309135
-0.0410484
-0.0190881
0.00578531
0.0248842
0.0596215
0.0699746
0.0882177
-0.471056
-0.291826
0.276945
-0.0419901
-0.0472412
-0.254413
1.91024
0.0671761
0.0675502
0.0732663
0.0664878
0.0698219
0.059297
0.0534629
0.0444687
0.0373869
0.0323505
0.0299425
0.0305229
0.0350434
0.0361002
0.0429488
-0.0280012
-0.0370142
-0.0171649
0.00573331
0.0245178
0.0571074
0.0742918
0.0730253
-0.294673
-0.268974
-0.185096
-0.055989
-0.0369054
-0.089581
0.269905
0.0590382
0.0672074
0.0737136
0.0732148
0.070788
0.0602715
0.0625929
0.0490066
0.0396197
0.0380183
0.0372069
0.0381188
0.0363605
0.038178
0.0263793
-0.026447
-0.0332781
-0.0153136
0.00570173
0.023936
0.0456394
0.0715124
0.060863
-0.199164
-0.189708
-0.137707
-0.0681538
-0.0539378
-0.0535888
0.0377686
0.0477414
0.0725597
0.0662277
0.0661795
0.0651313
0.0589397
0.0486344
0.0423008
0.0411758
0.04296
0.0480439
0.0549158
0.0395086
0.0215658
0.0219209
-0.0259256
-0.0298168
-0.0135082
0.00567733
0.0231114
0.0452756
0.0629516
0.0375578
-0.129203
-0.0694304
-0.0908074
-0.0765378
-0.0584774
-0.0333976
0.0489774
0.0395861
0.0512822
0.0559804
0.0564148
0.0560367
0.0538418
0.0477012
0.0421767
0.0410449
0.0401956
0.0390403
0.480907
0.389394
0.0964429
0.0624047
-0.0260379
-0.0265872
-0.0117612
0.00564916
0.0220275
0.0409669
0.0539576
0.0514437
-0.0393219
-0.0185204
-0.0830252
-0.0834473
-0.0675282
-0.0391208
0.102795
0.0267395
0.037116
0.0430691
0.0457779
0.0470317
0.0470802
0.0429894
0.0389359
0.039984
0.0377354
0.0345112
0.0353343
0.0513282
0.0637562
0.0753732
-0.0263319
-0.0235706
-0.0100857
0.00561146
0.0206567
0.0368401
0.0437526
0.0391555
-0.00497995
0.00715695
-0.0686256
-0.108166
-0.0944589
-0.0566891
-0.0160036
0.010667
0.0244164
0.0319127
0.0360712
0.0969331
0.0392395
0.0374184
0.0384682
0.0471708
0.0403245
0.0429304
0.0471004
0.0521298
0.056453
0.0933139
-0.0269752
-0.0207457
-0.00848547
0.00551777
0.0189766
0.0326666
0.0346849
0.0112897
0.0108511
0.00846129
-0.0700208
-0.137347
-0.133306
-0.0822804
-0.0364672
-0.00459646
0.0124177
0.0218558
0.0282375
0.101844
0.0284052
0.0309388
0.0330444
0.0350614
0.0376331
0.0408365
0.0440969
0.0472041
0.0501559
0.106085
-0.0283259
-0.0180683
-0.00699348
0.0053321
0.0169827
0.0284644
0.0275223
0.0147659
0.0103728
-0.00682772
-0.0959468
-0.162416
-0.170118
-0.117153
-0.0553502
-0.0123574
0.00255295
0.0118661
0.0172296
0.0200793
0.0230133
0.0254603
0.0277957
0.0302943
0.0329651
0.0357008
0.0383758
0.040888
0.0432603
0.0884095
-0.0296425
-0.0154861
-0.00563657
0.00503715
0.0147637
0.0221323
0.0219092
0.0143085
0.00535795
-0.0332594
0.712384
-0.167753
-0.182978
-0.135584
-0.0668352
-0.0226748
0.00120482
0.00418005
0.00874437
0.0122645
0.0154342
0.018292
0.0209416
0.0235732
0.0261942
0.0286706
0.0309853
0.0331388
0.0351024
1.27648
-0.0274479
-0.0129677
-0.00442436
0.0046152
0.0123043
0.0170097
0.0170603
0.0201941
-0.00652654
-0.0451272
-0.077036
-0.145659
-0.157702
-0.120871
-0.0599777
-0.0201632
-0.00302875
0.00368129
0.000508358
0.00226263
0.00446004
0.00706356
0.00978868
0.0124301
0.0148965
0.0170961
0.0190363
0.0207003
0.0220134
0.0546234
-0.0206464
-0.0105443
-0.00336149
0.00405485
0.00963866
0.0138712
0.0109533
0.000767877
-0.0198901
-0.0456605
-0.0755164
-0.10912
-0.111149
-0.0807326
-0.0370002
-0.0146457
-0.00339949
-0.00492822
-0.0094433
-0.0117383
-0.0119711
-0.0117837
-0.00989154
-0.00727957
-0.00495459
-0.00307688
-0.0016558
-0.000686224
-0.000231778
0.0470342
-0.0133542
-0.00829008
-0.00245122
0.00336356
0.00690156
0.0053116
0.0194409
-0.0201405
-0.0419053
-0.0531713
-0.0668511
-0.052208
-0.0690905
-0.0526633
0.0174712
-0.0146038
-0.00939895
0.00558893
-0.0220729
-0.0296119
-0.0350614
-0.0376653
-0.0352169
-0.0367118
-0.0354589
-0.033621
-0.0321719
-0.0313047
-0.0310004
0.0303603
-0.00812892
-0.00626341
-0.00169318
0.00257932
0.00400213
0.00339602
-0.0109964
-0.0635464
-0.0843352
-0.0613139
-0.0568757
-0.0551165
-0.0439366
-0.0366173
-0.0258524
-0.0214915
-0.0255769
-0.0324996
-0.040242
-0.0514725
-0.058901
-0.0651343
-0.0676446
-0.0686487
-0.0671954
-0.0651612
-0.0623916
-0.0610217
-0.0605957
0.0168769
-0.00480795
-0.0044818
-0.00107594
0.00178934
0.00141045
-0.00537153
-0.0265776
-0.123135
-0.121708
-0.0693741
-0.0483106
-0.0418911
-0.0396773
-0.0367014
-0.0281535
-0.028816
0.0155388
-0.0350553
-0.0487192
-0.0650225
-0.0717805
-0.0756222
-0.0777784
-0.0762532
-0.0639579
-0.0500181
-0.0754425
-0.0760785
-0.0768814
0.00858947
-0.00276085
-0.00295412
-0.000587217
0.00111711
-0.000435264
-0.00924814
-0.0306036
-0.120391
-0.128932
-0.0692894
-0.0413604
-0.0323204
-0.0280998
0.134861
-0.0249723
-0.0260067
-0.0320005
0.00819607
-0.0427906
0.10377
0.0798218
-0.0492705
-0.066931
-0.0741387
-0.0680126
-0.0781407
-0.0776157
-0.0776325
-0.0782557
0.00404277
-0.00145236
-0.00167261
-0.000224167
0.000644152
-0.00113949
-0.00891854
0.0324449
0.0176988
-0.091346
-0.0549049
-0.0368743
-0.0278919
-0.023078
-0.0202093
-0.0110208
-0.0240056
-0.0279519
-0.00830994
-0.0354209
-0.0346168
-0.0375003
-0.0417655
0.104689
-0.0727976
-0.0614709
-0.0564361
-0.0541661
-0.0525347
-0.0538441
0.00123195
-0.00050437
-0.000590596
-8.78577e-06
0.000313331
-0.000577554
-0.00419934
-0.0107972
-0.00247807
-0.0341506
-0.043489
-0.0371858
-0.0280451
-0.0206581
-0.0157887
-0.0134724
-0.0132941
-0.0188634
-0.0228451
-0.0247413
-0.0113184
-0.0179805
-0.0186327
-0.0170959
-0.0163089
-0.00736189
-0.0156455
-0.0177639
-0.0180169
-0.0146269
0.123362
0.119074
0.118336
0.117074
0.112014
0.10351
0.0989341
0.0982366
0.0718298
-0.00754114
0.0114887
0.021418
0.884479
100.099
104.675
111.331
108.223
107.566
116.528
111.279
41.6336
1.38139
0.532684
0.33893
0.247932
0.183742
-0.0628866
101.074
113.074
106.892
0.121157
0.114423
0.113504
0.113329
0.105997
0.0963125
0.0930709
0.0897427
0.0635532
-0.00980966
0.00350062
-0.0149443
0.00511157
98.4342
104.857
111.405
107.901
108.49
117.072
118.502
110.357
1.28662
0.521235
0.333522
0.240046
0.175068
-0.0288728
23.5565
113.773
105.921
0.117979
0.132289
0.110095
0.11068
0.0983925
0.0913121
0.0870344
0.0819144
0.0574451
-0.00904105
-0.00463897
-0.00443485
0.068242
0.0781661
106.035
111.771
108.155
110.545
117.741
120.609
-14.0351
1.15544
0.508353
0.327126
0.232636
0.166671
-0.00591333
0.0373027
114.591
105.689
0.114201
0.107228
0.208405
0.175131
0.0882421
0.0858447
0.0811253
0.0751012
0.0540213
0.000397378
-0.00247931
0.0150326
0.154178
0.15559
67.0218
112.249
109.875
111.363
117.762
121.364
-2.07998
0.985156
0.495557
0.319726
0.225518
0.15862
0.00799008
0.0485234
97.0278
106.122
0.130486
0.0963807
0.096937
0.0850061
0.0807701
0.081288
0.0755743
0.0694729
0.0528751
0.0150022
0.00720868
0.0251472
0.116053
0.125958
-0.00466607
112.141
106.092
111.217
116.488
120.38
-1.97336
0.809126
0.47722
0.311223
0.218658
0.150987
0.017179
0.0482101
0.109585
107.8
0.0447979
0.0778423
0.0834423
0.0771232
0.109072
0.0792107
0.0702999
0.0649093
0.0540261
0.0270204
0.0155045
0.025589
0.0416183
0.0810932
0.0139117
-0.331756
106.377
111.128
117.001
118.079
-1.84525
0.653863
0.456214
0.301566
0.211936
0.143842
0.0240134
0.0439522
0.106803
111.369
0.0578271
0.0661076
0.0710628
0.0704757
0.0785627
0.0868187
0.0631881
0.0614458
0.0541301
0.0377611
0.0273074
0.0206774
0.0291592
0.0137634
-0.020696
-0.283149
-0.300171
110.889
121.282
108.114
-1.67158
0.458898
0.4192
0.290668
0.20514
0.137254
0.0296546
0.0409128
0.101687
0.245005
0.0531036
0.0586315
0.0627911
0.0617711
0.125538
0.0688256
0.0563631
0.0692151
0.0518133
0.043658
0.0339165
0.0168305
0.0234288
-0.0465437
-0.0261409
-0.283646
-0.303122
-0.335442
122.839
-0.669875
-1.51547
0.312961
0.390574
0.27841
0.198105
0.131181
0.0344878
0.0396656
0.0936717
0.230212
0.0458042
0.0512703
0.05653
0.068157
2.0807
0.0510873
0.0537588
0.0567694
0.0500867
0.0449477
0.0382488
0.018763
-0.0137848
-0.216799
-0.386904
-0.0885117
-0.309479
-0.334347
-0.477308
-0.589817
-1.3338
0.250782
0.348735
0.26471
0.190742
0.125564
0.0389836
0.0392443
0.087775
0.205849
0.0390522
0.0441072
0.0481639
0.0458851
0.0526703
0.0514477
0.0512323
0.0484162
0.0487632
0.0426854
0.091556
0.0127583
-0.0181324
-0.09415
2.71532
-0.0632137
-0.303377
-0.322392
-0.472136
-0.672936
-1.21397
0.18349
0.310232
0.249568
0.18298
0.120354
0.0432222
0.0393836
0.077651
0.175918
0.0351519
0.0403389
0.0453562
0.0593027
0.0503918
0.0506869
0.0487818
0.0444527
0.0401029
0.0348285
0.0568287
0.0113318
-0.0187605
-0.0521228
0.476431
-0.196253
-0.282765
-0.326294
-0.464387
-0.615031
-1.05596
0.105681
0.269061
0.233033
0.174747
0.115448
0.0471407
0.0399787
0.0705281
0.143506
0.0341484
0.040034
0.0459732
0.0513892
0.0509679
0.0502107
0.0469574
0.0421773
0.0377675
0.0385394
0.0338661
0.00971141
-0.0194892
-0.0288667
0.577407
-0.215103
-0.280303
-0.33715
-0.457061
-0.534731
-0.888266
0.000125264
0.227415
0.215236
0.165981
0.110709
0.0505296
0.0407941
0.0637101
0.112212
0.0367102
0.0421464
0.048213
0.0525792
0.0542379
0.0516457
0.0478736
0.0426937
0.0382067
0.0360517
0.0257889
0.00744915
-0.0167114
-0.0328855
-0.137558
-0.203412
-0.268402
-0.311683
-0.426377
-0.3501
-0.771667
-0.0642523
0.186558
0.1964
0.156616
0.106016
0.0531013
0.0415894
0.0575549
0.0844379
0.0405831
0.047231
0.0539811
0.0590037
0.0595408
0.0599063
0.0671417
0.0481467
0.0432053
0.0307879
0.0209674
0.0054153
-0.0162536
-0.0439578
-0.110498
-0.204707
-0.263285
-0.365187
-0.363862
-0.52713
-0.577503
-0.105299
0.148237
0.176827
0.146659
0.101247
0.0547038
0.0421326
0.0518651
0.0615009
0.0453598
0.0543038
0.0623859
0.0659393
0.0630965
0.0643812
0.0512686
0.0440173
0.0410009
0.0327103
0.0179973
0.0244814
0.0204037
-0.0512918
-0.121194
-0.199033
-0.252211
0.0426626
-0.407257
-0.4556
-0.428427
-0.118533
0.113438
0.156918
0.136174
0.0963011
0.0553553
0.0422257
0.0465908
0.043631
0.0524845
0.0644953
0.0724109
0.0683727
0.0842008
0.0552122
0.0423173
0.0463367
0.0466216
0.0357117
0.0189086
0.00902162
0.0170564
-0.0552398
-0.127369
-0.195159
-0.261242
0.121518
-0.418157
-0.390993
-0.319226
-0.133422
0.0836052
0.137118
0.125207
0.0911111
0.0551177
0.0416906
0.0416815
0.0303445
0.0764826
0.0754869
0.0774202
0.252453
0.0631801
0.0629784
1.11946
1.43349
0.0579015
0.0399128
0.0219822
0.0174718
-0.0179188
-0.0546208
-0.0901889
-0.200545
-0.258167
-0.205516
-0.349152
-0.318837
-0.298593
-0.121539
0.059376
0.11789
0.113861
0.0856325
0.0540995
0.0405275
0.0371124
0.0208063
0.0678461
0.0692035
0.0675863
0.0664254
0.0709217
0.149961
0.0799144
0.0714067
0.0654069
0.0465343
0.0256791
-0.000769706
-0.0220232
-0.0159115
-0.130228
-0.206157
-0.249373
-0.226962
-0.298167
0.501469
-0.24648
-0.105503
0.0407105
0.0996767
0.102305
0.0798454
0.052445
0.0389616
0.0328897
0.0141315
0.0598048
0.0629955
0.0668701
0.0707793
0.0744379
0.0784229
0.0772528
0.0733395
0.0656448
0.0510328
0.0279359
-0.00449731
-0.0265696
-0.0715399
-0.132273
-0.201254
-0.232723
0.700053
-0.231224
-0.0807932
-0.181211
-0.0822797
0.0269283
0.082845
0.0907148
0.0737449
0.050308
0.037065
0.0290488
0.00954865
0.0531926
0.0567143
0.0619136
0.0665698
0.0721993
0.0769968
0.0758762
0.0717389
0.063431
0.0485909
0.0222665
-0.0141616
-0.0543115
-0.0910582
-0.138546
-0.188559
-0.21003
0.503053
0.205203
-0.176877
-0.142874
-0.0657927
0.0168437
0.0676325
0.0792915
0.0673516
0.0477685
0.0348669
0.0256356
0.00645783
0.0457023
0.0484123
0.0514568
0.0549451
0.0586061
0.0619145
0.062395
0.0585436
0.049477
0.0313955
-0.00306375
-0.0423634
-0.085215
-0.124056
-0.159446
-0.183609
-0.192265
-0.19454
0.0384482
-0.108466
-0.0796622
-0.0540589
0.00932329
0.0541519
0.0682331
0.0607211
0.0448006
0.0323804
0.0226688
0.0044244
0.0370396
0.039004
0.0407189
0.0418509
0.0392526
0.0942888
0.0364688
0.0301469
0.0153103
0.00906973
-0.0526592
-0.100636
-0.146077
-0.178085
-0.188067
-0.187254
-0.165013
-0.157112
-0.0242173
-0.068375
-0.0639606
-0.0462289
0.00349315
0.0424001
0.0577172
0.0539251
0.041384
0.029868
0.0200839
0.00313047
0.0230543
0.0236825
0.0232044
0.0203877
0.0152468
0.00944393
-0.00297601
-0.0165681
-0.0439035
-0.0639373
-0.139854
-0.155418
-0.162942
-0.267042
-0.243853
-0.199611
-0.154927
-0.120528
-0.0775555
-0.0350599
-0.0645
-0.0426329
-0.00132597
0.0322865
0.0478971
0.0470633
0.0375518
0.0273343
0.0177501
0.00233183
-0.000252311
-0.000954024
-0.00296657
-0.00715522
-0.0142835
-0.0239016
-0.0369455
-0.066377
-0.10888
-0.170345
-0.250097
-0.242012
-0.381406
-0.398489
-0.317727
-0.202124
-0.141995
-0.0916372
-0.0479406
0.0155592
-0.0869658
-0.0437143
-0.00541351
0.0237162
0.038883
0.0402446
0.0333517
0.0246007
0.0155432
0.00183826
-0.0312705
-0.0324133
-0.0349083
-0.0394389
-0.0471235
-0.0596213
-0.0790087
-0.108016
-0.153223
-0.219155
-0.305654
-0.397164
-0.473416
-0.496101
-0.398863
-0.246328
-0.127024
-0.0558931
-0.00356669
3.63885
-0.136181
-0.0379001
-0.00849045
0.0166229
0.0307602
0.0335594
0.0288433
0.0215913
0.0133758
0.00151099
-0.0609394
-0.0620372
-0.064383
-0.0685838
-0.0754417
-0.0863509
-0.103605
-0.130436
-0.169433
-0.225049
-0.299189
-0.384338
-0.462177
-0.481777
-0.397312
-0.22862
-0.0973784
-0.0260109
0.0212908
0.545993
-0.12129
-0.0170706
-0.0100026
0.0109824
0.0235746
0.0270934
0.0240945
0.0183019
0.0111913
0.00125977
-0.0779085
-0.0793877
-0.0814585
-0.0846166
-0.0902763
-0.0983933
-0.11071
-0.128986
-0.155218
-0.19052
-0.232552
-0.284848
-0.325188
-0.315355
-0.276754
-0.155085
-0.032183
-0.00886117
0.0178731
0.631146
-0.0386798
-0.0316756
0.000894833
0.00679876
0.0173177
0.0208951
0.0191572
0.0147507
0.00895079
0.00103207
-0.0720224
-0.0837415
-0.0882855
-0.0877515
-0.0887509
-0.0929754
-0.101663
-0.111471
-0.120684
-0.0831595
-0.129518
-0.0635739
-0.135569
-0.153187
-0.112594
-0.060103
0.00480367
-0.00108483
0.00406512
-0.00816772
-0.0223053
-0.0222695
-0.00665452
0.0041388
0.0119198
0.0149593
0.0140643
0.0109559
0.00662481
0.000800214
-0.0437568
0.0214629
-0.0523818
-0.00223147
-0.069111
-0.0699402
-0.0726554
-0.0760607
-0.0281499
-0.0624416
-0.066078
-0.0605271
-0.0296304
-0.0531048
-0.0257179
-0.00626955
0.00635794
0.00525865
0.00135601
-0.00331343
-0.0106639
-0.0135639
-0.00429477
0.00257124
0.00717348
0.00921158
0.00880884
0.00691633
0.00418414
0.000549662
-0.0182534
-0.0272279
-0.0292148
-0.0296061
-0.0305768
-0.0396411
-0.0420259
-0.0524852
-0.0474706
-0.03774
-0.0190766
-0.014841
-0.0148579
0.0655597
0.00930827
0.032868
0.00859693
0.00571652
0.00120431
-0.00240313
-0.00190759
-0.00421168
-0.000802014
0.00120419
0.00273193
0.00348344
0.00332727
0.00260579
0.00159266
0.000270929
94.6495
90.9478
88.6215
87.9024
86.2479
84.3983
83.3404
83.8875
86.8245
91.0587
94.5719
96.5919
97.3188
97.203
96.6417
95.9019
95.1373
94.4263
93.8021
93.2746
92.8408
92.4915
92.2157
92.0025
91.8417
91.7243
91.6425
91.5891
91.5581
91.5445
93.9404
90.946
88.6081
87.9085
86.25
84.3925
83.3211
83.8414
86.7885
91.0699
94.6122
96.6358
97.3539
97.2271
96.6556
95.9067
95.1338
94.4156
93.7855
93.2535
92.8163
92.4646
92.1872
91.9727
91.8111
91.6932
91.6109
91.5574
91.5264
91.5128
93.9353
90.9496
88.5854
87.9209
86.2533
84.3788
83.2806
83.7433
86.6964
91.0619
94.6684
96.712
97.4218
97.2776
96.6886
95.923
95.1345
94.4018
93.7596
93.218
92.7735
92.4166
92.1355
91.9185
91.7552
91.6362
91.5534
91.4997
91.4687
91.4552
93.9429
90.9572
88.5534
87.9396
86.2579
84.3575
83.2203
83.597
86.556
91.0439
94.7426
96.818
97.5206
97.3553
96.7431
95.9543
95.1425
94.388
93.727
93.1706
92.715
92.3499
92.063
91.842
91.6761
91.5556
91.4721
91.4182
91.3872
91.3738
93.9757
90.9698
88.5126
87.9651
86.2634
84.3285
83.1412
83.4008
86.3654
91.0185
94.8384
96.9545
97.6486
97.457
96.8151
95.9964
95.1547
94.3719
93.6867
93.111
92.6408
92.265
91.9703
91.7439
91.5743
91.4515
91.3666
91.3119
91.2807
91.2674
94.0407
90.9888
88.4637
87.9978
86.2698
84.2918
83.0445
83.1518
86.1189
90.9863
94.9576
97.1234
97.8055
97.5798
96.9009
96.0458
95.1683
94.3517
93.6373
93.0384
92.5505
92.1615
91.8572
91.6237
91.449
91.3226
91.2352
91.179
91.147
91.1335
94.1327
91.0155
88.4079
88.0384
86.277
84.2477
82.932
82.8466
85.8099
90.9465
95.1017
97.3263
97.9917
97.7228
96.9988
96.1012
95.1825
94.3267
93.578
92.9518
92.4432
92.0387
91.7227
91.4806
91.2994
91.1679
91.0768
91.018
90.9846
90.9707
94.2505
91.0509
88.3469
88.0879
86.285
84.1962
82.8063
82.4812
85.4291
90.8998
95.2727
97.5652
98.2083
97.8858
97.1083
96.162
95.1969
94.296
93.5075
92.8499
92.3176
91.8953
91.566
91.3136
91.1244
90.9867
90.8906
90.828
90.7924
90.7777
94.3946
91.0959
88.2823
88.1472
86.2935
84.1374
82.6706
82.0511
84.9648
90.8463
95.4728
97.8427
98.4563
98.0686
97.2286
96.2278
95.2108
94.2586
93.4243
92.7309
92.1721
91.7299
91.3854
91.1214
90.9233
90.7783
90.6762
90.6088
90.5698
90.5536
94.5658
91.1516
88.2155
88.2175
86.3021
84.0711
82.5291
81.5508
84.4015
90.7878
95.7046
98.1618
98.7374
98.271
97.3588
96.2975
95.2236
94.2131
93.3261
92.5927
92.0046
91.5405
91.1792
90.9025
90.6945
90.5419
90.4334
90.3604
90.3163
90.2966
94.7652
91.2191
88.1485
88.3003
86.3102
83.9969
82.3872
80.9746
83.7186
90.7261
95.9707
98.5254
99.0532
98.4925
97.4978
96.3701
95.2343
94.158
93.2104
92.4326
91.8129
91.3249
90.9454
90.6547
90.4365
90.2763
90.1618
90.0832
90.0327
90.0052
94.9943
91.2992
88.0837
88.3969
86.317
83.9142
82.2517
80.3163
82.8885
90.6653
96.2738
98.9377
99.406
98.7325
97.6437
96.4439
95.2422
94.0916
93.0737
92.2475
91.5942
91.0807
90.6811
90.3753
90.1464
89.9792
89.8598
89.7765
89.7202
89.6848
95.2559
91.3938
88.0243
88.5092
86.3211
83.8217
82.1314
79.5704
81.8731
90.6112
96.6168
99.4037
99.7986
98.9903
97.7946
96.517
95.246
94.0116
92.9115
92.0339
91.3458
90.8051
90.3834
90.0606
89.8203
89.6465
89.5238
89.4385
89.3789
89.3372
95.5536
91.4227
87.9746
88.639
86.3208
83.7174
82.0367
78.7323
80.6176
90.5731
97.0021
99.9285
100.234
99.2647
97.9475
96.5867
95.2438
93.9155
92.7178
91.7875
91.0643
90.4951
90.0485
89.7061
89.4526
89.2719
89.1473
89.0631
89.006
88.9709
95.8909
91.373
87.9404
88.7884
86.3135
83.598
81.9811
77.7826
79.0333
90.5648
97.4313
100.518
100.717
99.5542
98.0988
96.6496
95.2321
93.8
92.4846
91.5042
90.7465
90.1475
89.6724
89.306
89.0362
88.8467
88.7194
88.637
88.5854
88.5552
96.2718
91.2351
87.9297
88.9594
86.2955
83.4589
81.9824
76.676
77.0071
90.6085
97.9056
101.18
101.253
99.8568
98.2433
96.7027
95.2029
93.659
92.2028
91.1784
90.3886
89.7596
89.2506
88.8537
88.5628
88.3618
88.2303
88.1494
88.1037
88.0821
96.6997
90.979
87.9526
89.1542
86.262
83.2928
82.0633
75.4134
74.4772
90.7266
98.4255
101.92
101.847
100.169
98.3736
96.7451
95.1388
93.4729
91.8599
90.8017
89.9862
89.3295
88.7791
88.3413
88.0229
87.8081
87.6728
87.5957
87.5595
87.551
97.1783
90.5539
88.0223
89.3752
86.2056
83.0894
82.2562
74.0241
71.2928
90.9164
98.9935
102.745
102.509
100.487
98.477
96.7846
95.0045
93.1716
91.4435
90.3591
89.5343
88.858
88.2549
87.7589
87.4039
87.1746
87.0394
86.9736
86.9566
86.9708
97.7098
89.8812
88.1546
89.6242
86.116
82.8345
82.6061
72.5857
67.093
91.1655
99.6152
103.662
103.248
100.804
98.5325
96.8478
94.7493
92.6823
90.9819
89.8334
89.0272
88.3514
87.6783
87.0939
86.6882
86.448
86.3247
86.2862
86.3059
86.3587
98.294
88.8432
88.3685
89.9025
85.9781
82.5095
83.1632
71.1799
61.9744
91.5235
100.275
104.676
104.075
101.105
98.5267
96.9885
94.3546
92.1456
90.4669
89.2006
88.4597
87.8296
87.0596
86.3329
85.8511
85.6102
85.5201
85.5325
85.6122
85.7242
98.9259
87.2663
88.6856
90.2111
85.7743
82.0932
83.9505
69.8208
58.5961
92.0927
100.954
105.787
105.004
101.368
98.5002
97.1487
93.8962
91.7339
89.8713
88.4148
87.8289
87.3331
86.4195
85.4714
84.8716
84.6304
84.5965
84.6894
84.8618
85.065
99.592
84.8926
89.1302
90.5509
85.4411
81.5644
84.8728
68.697
50.6661
93.0386
101.602
106.989
106.047
101.536
98.4997
97.1291
93.5231
91.4691
89.2209
87.3841
87.1003
86.8951
85.7452
84.4872
83.7243
83.4622
83.5026
83.7172
84.0321
84.3784
100.265
81.3402
89.7287
90.9235
85.18
80.906
85.6132
7.01321
9.4438
93.8514
102.232
108.268
107.217
101.457
98.4874
97.1213
93.3712
91.3485
88.5511
85.8075
86.0683
86.485
84.978
83.2861
82.3179
82.0364
82.1841
82.5685
83.0919
83.6564
100.893
76.0399
90.5017
91.3328
85.1038
80.1386
85.5618
0.546682
0.386273
94.5806
102.771
109.604
108.518
100.776
98.2616
97.3873
93.4929
91.3724
87.8857
82.8655
83.7948
85.9196
84.1548
81.7787
80.545
80.2768
80.5959
81.1778
81.9935
82.8922
101.389
68.1393
91.4589
91.7885
85.5025
79.4841
-0.0582408
0.217083
0.37375
93.3986
103.249
110.968
109.933
98.563
97.4595
97.8382
93.8371
91.509
87.4069
78.9685
80.5065
85.2944
83.0745
79.7409
78.1602
78.0345
78.7217
79.374
80.6323
82.1233
101.608
56.3668
92.5998
92.3027
85.6676
3.9893
-0.00952794
0.202857
0.554696
95.1046
103.817
112.319
111.406
95.9659
96.4036
98.4716
94.2203
91.7493
87.7677
77.1959
78.8305
85.7709
81.9682
65.1402
23.163
10.0013
6.88942
8.2448
13.7749
23.9244
101.324
38.8664
93.9116
92.8926
86.0846
0.0513267
-0.00550752
0.160283
0.732045
91.7153
104.263
113.605
112.826
96.0792
97.2171
99.1652
94.2946
92.1146
89.1411
80.7442
59.6221
0.18473
0.165554
0.172875
0.165686
0.159986
0.157242
0.152462
0.143504
0.135968
100.21
13.2847
95.329
93.6729
1.34957
0.0362684
0.00118547
0.132981
0.783609
80.9333
105.207
114.8
113.913
98.5481
100.207
99.466
94.0283
92.3596
90.0228
0.0464399
0.135466
0.15664
0.167963
0.171734
0.166409
0.160249
0.155747
0.169257
0.139233
0.138751
97.8673
-24.0739
96.8782
93.6588
-0.0381563
0.0268501
0.00855343
0.115634
0.695757
27.5271
105.288
116.011
114.357
101.535
103.316
99.7877
94.0574
92.5891
0.0151668
0.0606333
0.120969
0.147353
0.163964
0.17012
0.163857
0.157363
0.167794
0.142287
0.136218
0.130166
93.9416
-80.5531
98.9161
-0.196672
-0.0279415
0.0221981
0.0149631
0.111157
0.532164
-125.228
105.277
117.57
114.186
103.143
104.607
99.5378
98.3253
0.267784
0.0429989
0.0424398
0.0790069
0.122818
0.155815
0.172001
0.165064
0.155026
0.157782
0.133892
0.128031
0.123625
91.5439
91.5546
91.58
91.6242
91.6927
91.7916
91.9285
92.1122
92.3533
92.6634
93.0544
93.5348
94.1056
94.7534
95.4412
96.1008
96.6197
96.8159
96.4065
95.0245
92.3351
88.4061
84.4379
82.3832
82.79
85.2687
89.8639
96.0275
102.458
107.917
91.5122
91.5231
91.5486
91.5931
91.6618
91.7609
91.8982
92.0826
92.3249
92.6372
93.0313
93.5162
94.093
94.7482
95.4442
96.1122
96.6396
96.8447
96.4434
95.0647
92.3637
88.3978
84.3898
82.34
82.7649
85.2489
89.8513
96.0243
102.459
107.926
91.4548
91.4658
91.4915
91.536
91.6048
91.7043
91.8422
92.0281
92.2731
92.5897
92.9904
93.4847
94.0741
94.7449
95.4585
96.1436
96.6863
96.9043
96.5117
95.1292
92.3929
88.351
84.2767
82.2509
82.7149
85.2091
89.8271
96.0207
102.465
107.948
91.3735
91.3847
91.4104
91.455
91.5238
91.6236
91.7625
91.9505
92.1998
92.5232
92.934
93.4426
94.0513
94.7466
95.4879
96.1994
96.7632
96.995
96.609
95.2161
92.4267
88.2745
84.1062
82.1201
82.6405
85.149
89.7912
96.0165
102.475
107.981
91.2672
91.2786
91.3046
91.3494
91.4184
91.5187
91.659
91.8502
92.1052
92.4379
92.8623
93.3898
94.0241
94.7519
95.5295
96.2752
96.8655
97.1136
96.7344
95.3272
92.4689
88.1697
83.8756
81.9471
82.5424
85.0683
89.7431
96.0116
102.489
108.032
91.1337
91.1455
91.172
91.2174
91.2871
91.3884
91.5309
91.7264
91.9888
92.3332
92.7745
93.3255
93.9914
94.7594
95.5813
96.3673
96.9887
97.2574
96.8879
95.4645
92.521
88.0343
83.5786
81.7315
82.4211
84.967
89.6828
96.0064
102.508
108.099
90.9711
90.9837
91.0112
91.0577
91.1285
91.2315
91.377
91.578
91.8496
92.2082
92.6697
93.2485
93.9522
94.7687
95.6429
96.4746
97.1313
97.4255
97.0701
95.6299
92.5844
87.8657
83.2073
81.4732
82.2777
84.8447
89.6099
96.001
102.531
108.181
90.7786
90.7923
90.8211
90.8689
90.9413
91.0465
91.1958
91.4035
91.6863
92.0615
92.5465
93.1574
93.905
94.779
95.7145
96.597
97.293
97.6177
97.2818
95.8253
92.661
87.6604
82.751
81.1722
82.1134
84.7012
89.5241
95.9959
102.557
108.277
90.555
90.5702
90.6001
90.6491
90.7236
90.8315
90.9854
91.2012
91.4971
91.8916
92.4034
93.0504
93.8478
94.7898
95.7966
96.7346
97.4736
97.834
97.5239
96.0535
92.7532
87.415
82.1959
80.829
81.9297
84.5361
89.425
95.9916
102.587
108.385
90.2979
90.3169
90.3449
90.3942
90.4726
90.5843
90.7439
90.9692
91.2803
91.6969
92.2387
92.9253
93.7781
94.8002
95.8899
96.8866
97.6725
98.0743
97.7976
96.3176
92.864
87.1248
81.5238
80.4447
81.7284
84.3488
89.3122
95.9886
102.62
108.513
89.9994
90.0463
90.0585
90.0995
90.1862
90.3031
90.4692
90.7054
91.0339
91.4757
92.0506
92.7799
93.6922
94.8093
95.9949
97.0518
97.8886
98.3384
98.1043
96.6218
92.997
86.7859
80.71
80.0201
81.5117
84.1389
89.1848
95.9878
102.655
108.657
89.6638
89.8305
89.752
89.7725
89.8642
89.9868
90.1595
90.4078
90.7563
91.2263
91.8376
92.6118
93.5855
94.8158
96.1118
97.2275
98.1207
98.6262
98.4453
96.9712
93.1567
86.3936
79.7213
79.5551
81.2821
83.9056
89.042
95.9901
102.693
108.816
89.3234
89.3431
89.3615
89.4119
89.5042
89.6319
89.8116
90.0741
90.4456
90.9472
91.5983
92.4191
93.4509
94.8177
96.2394
97.4089
98.367
98.9372
98.8226
97.3683
93.3483
85.9443
78.5116
79.0462
81.0426
83.6482
88.8827
95.9968
102.733
108.987
88.9874
88.9455
88.9661
89.0154
89.1024
89.231
89.4209
89.7021
90.1004
90.6371
91.3311
92.2005
93.2796
94.8093
96.3706
97.5881
98.626
99.2713
99.2378
97.8222
93.5779
85.4357
77.0159
78.4816
80.7962
83.3658
88.7052
96.0094
102.775
109.169
88.539
88.5378
88.5573
88.5973
88.6593
88.7783
88.9847
89.2913
89.7198
90.2943
91.0347
91.9558
93.0604
94.7674
96.4829
97.7533
98.8963
99.628
99.6929
98.3418
93.8523
84.8674
75.1427
77.839
80.5452
83.0574
88.5072
96.0298
102.819
109.36
88.0774
88.088
88.1183
88.1657
88.1615
88.2632
88.5075
88.8431
89.3024
89.9169
90.7065
91.6841
92.7827
94.5862
96.5122
97.8893
99.1778
100.007
100.19
98.936
94.1795
84.2415
72.7703
77.1451
80.2889
82.7219
88.2851
96.0601
102.865
109.557
87.5609
87.5866
87.6328
87.7615
88.4652
87.7103
88.0046
88.3581
88.8453
89.5018
90.3429
91.3795
92.4722
94.0561
96.3047
97.9825
99.4729
100.408
100.73
99.6153
94.5703
83.5625
69.7534
76.5633
80.034
82.3574
88.0338
96.1031
102.916
109.755
87.0032
87.0504
87.1195
87.2645
87.65
87.2355
87.4822
87.8303
88.3415
89.0443
89.9386
91.0288
92.216
93.4477
95.657
98.0322
99.7873
100.831
101.315
100.392
95.0417
82.8288
65.9835
76.0981
79.7872
81.9613
87.7451
96.1616
102.972
109.95
86.4259
86.5029
86.5908
86.6842
86.7131
86.7489
86.9221
87.2432
87.7799
88.5393
89.4877
90.62
91.9741
93.0633
94.6262
98.0686
100.131
101.272
101.945
101.281
95.6223
82.0301
61.4007
75.6763
79.5238
81.5286
87.4061
96.238
103.037
110.136
85.8428
85.9619
86.0743
86.1559
86.1817
86.2
86.3017
86.5717
87.1465
87.9817
88.9849
90.1363
91.6554
92.8041
93.6998
98.1616
100.518
101.727
102.618
102.294
96.3472
81.1766
55.8153
75.4807
79.2143
81.0493
86.9968
96.3332
103.113
110.304
85.2637
85.4503
85.607
85.6878
85.6626
85.5974
85.698
85.7858
86.4184
87.3637
88.4236
89.5484
91.2607
92.6676
93.462
98.393
100.962
102.188
103.333
103.441
97.215
80.4052
49.1263
75.7199
78.8395
80.5019
86.4934
96.4459
103.2
110.445
84.7058
85.0055
85.2466
85.3429
85.2258
84.9265
84.8636
84.8451
85.534
86.6526
87.7633
88.7903
90.8271
92.7865
94.0974
98.7918
101.476
102.639
104.083
104.725
98.126
80.1709
11.3372
76.4336
78.3545
79.8337
85.8876
96.5726
103.298
110.546
84.1844
84.6686
85.0632
85.2081
84.9351
84.2941
83.7315
83.6197
84.4042
85.7962
86.8294
87.7189
90.3587
93.1555
95.2436
99.2992
102.075
103.052
104.86
106.133
99.0912
80.5107
-0.637851
76.7788
77.7709
78.9279
85.1945
96.7092
103.408
110.592
83.7205
84.4905
85.1611
85.4368
84.8707
83.556
82.3671
81.9686
82.9977
84.8612
85.4313
86.0098
89.8452
93.6616
96.4344
99.8379
102.785
103.384
105.645
107.632
100.032
79.9413
1.89129
1.07611
77.332
77.5125
84.4386
96.8497
103.528
110.564
83.3319
84.5045
85.6817
86.4532
85.3245
82.5538
80.5689
79.4036
81.2139
83.9617
83.3627
83.4184
89.3283
94.2373
97.4394
100.561
103.644
103.572
106.383
109.185
100.976
79.3971
1.29438
0.695857
0.326397
74.7042
83.6873
96.9836
103.658
110.44
36.7957
51.2605
65.8753
76.9145
78.681
73.6769
74.5195
75.0536
78.5641
82.8935
81.8792
81.0976
89.0128
94.9277
98.2925
101.871
104.671
103.513
106.984
110.743
102.15
84.7219
1.14489
0.624464
0.322105
0.0639651
82.8839
97.1227
103.797
110.202
0.132328
0.129019
0.127579
0.124091
0.120363
0.114136
0.115434
0.168753
0.189451
7.09491
82.1655
79.2027
89.4019
95.8783
99.0891
103.73
105.827
102.982
107.348
112.231
102.921
75.4291
1.09534
0.57542
0.325115
0.195065
80.7183
97.3309
103.953
109.824
0.14244
0.14106
0.140179
0.141851
0.127496
0.122885
0.130587
0.138337
0.142025
0.104005
0.0718839
50.6425
90.8248
97.1971
99.5547
105.427
106.957
102.969
107.822
113.553
103.743
85.4277
1.04351
0.540146
0.325727
0.194306
0.77719
97.727
104.148
109.332
0.132588
0.132261
0.129204
0.12729
0.124164
0.335845
0.108994
0.121342
0.127084
0.0960308
0.0342102
0.154594
94.115
98.3941
100.006
106.28
107.82
104.366
109.199
114.299
106.515
60.053
1.00475
0.513457
0.321578
0.192333
0.162216
98.4927
104.354
109.056
0.226531
0.123796
0.123657
0.12234
0.121242
0.603472
0.102118
0.106951
0.107233
0.0686851
-0.00531654
0.0624224
-0.4198
98.7483
100.282
106.537
109.28
104.72
110.963
114.925
105.625
1.33142
0.972924
0.491229
0.314586
0.190481
0.190244
93.3939
104.49
109.368
92.9521
141.219
75.8296
-0.183927
-0.0232171
0.0203519
0.0184597
0.0976339
0.332665
180.095
111.97
118.157
114.119
103.812
104.848
95.5394
36.7299
0.235379
0.0320581
0.0250498
0.0501093
0.0977161
0.14426
0.166181
0.154716
0.138858
0.134427
0.125599
0.119732
0.118848
96.5115
103.51
0.871671
-0.175229
-0.0208507
0.019283
0.0213351
0.0934193
0.14981
82.2864
120.505
117.377
114.208
104.557
105.809
99.2946
0.128099
0.219128
0.0198002
0.0162005
0.0353398
0.078857
0.131595
0.176593
0.145497
0.132528
0.123489
0.115392
0.10999
0.113427
98.6457
0.751039
-0.199407
-0.16388
-0.0191636
0.0183481
0.0226384
0.0545536
-0.087056
19.369
125.504
115.632
114.665
106.344
103.064
13.5785
0.0987489
0.307116
0.0220855
0.0164547
0.0485406
0.0624326
0.117162
0.171334
0.136729
0.123222
0.111563
0.102091
0.09465
0.0979435
101.397
-2.4089
-0.129829
-0.150087
-0.0180414
0.0174799
0.0264033
0.0418491
-0.231535
3.17054
110.174
114.107
115.295
109.068
104.284
-0.183981
0.0687938
0.224506
0.0279561
0.0147793
0.0473245
0.0519637
0.103949
0.127435
0.125159
0.11074
0.0977664
0.0871878
0.0761847
0.0497999
107.367
1.00949
-0.111618
-0.134811
-0.0172887
0.0166524
0.0239127
0.088438
-0.318879
2.83733
117.621
117.816
115.69
112.51
129.063
-0.0791817
0.0661873
0.0915214
0.0334813
0.017998
0.0250967
0.047734
0.0924687
0.113135
0.108337
0.0952771
0.0826275
0.072788
0.0646565
0.0494987
1.64532
0.0203752
-0.0976489
-0.119217
-0.0167442
0.0158173
0.032658
0.0756509
-0.363113
0.957593
115.703
122.463
116.97
115.571
-0.565443
-0.0429475
0.0606228
0.0752445
0.037015
0.0297978
0.0234131
0.0488919
0.0850027
0.0916875
0.0899037
0.0781438
0.0672456
0.0598284
0.0559103
0.0519306
-0.00443572
0.00571644
-0.0855428
-0.104052
-0.0163211
0.0149184
0.0278793
0.0642674
-0.211185
1.11623
98.0218
119.061
118.485
91.7265
0.169696
-0.0410903
0.0258683
0.0682521
0.0398562
0.115529
0.0368153
0.206024
0.144973
0.0784664
0.0724231
0.0611502
0.0524918
0.0536456
0.0498649
0.0537228
-0.013668
-0.0041542
-0.0763036
-0.0896616
-0.0159555
0.0140147
0.0282149
0.0763109
-0.204594
0.914179
-2.84074
112.026
119.015
-0.205318
0.0538867
-0.0200656
0.0306835
0.0606334
0.266026
0.0272815
0.00452861
0.203462
0.105752
0.0648927
0.0579764
0.0465777
0.038594
0.0385803
0.0410536
0.044736
-0.0144147
-0.0135808
-0.0690309
-0.0765437
-0.0155374
0.0132112
0.0287549
0.0584529
-0.0873451
0.565028
-0.94134
93.0183
-0.527747
-0.133979
0.228225
-0.0266561
0.0254975
0.0641176
0.30625
0.0352884
0.019938
0.0359902
0.0550492
0.0572354
0.0469222
0.0405128
0.0290485
0.0283578
0.0309976
0.0358035
-0.00870303
-0.0111069
-0.0632356
-0.0650916
-0.0149748
0.0125271
0.0292394
0.0550717
0.0213366
0.446972
-0.755671
-0.314276
-0.208573
-0.135836
0.0524629
-0.0499634
0.0275386
0.0389764
0.0555923
0.0429472
0.0364485
0.0448679
0.0638775
0.0516183
0.0400742
0.0293413
0.0230872
0.023063
0.044396
0.0299608
-0.00527356
-0.0436871
-0.05823
-0.0554879
-0.0142425
0.0119283
0.0302846
0.0584254
0.0905466
0.291822
-0.421474
-0.346482
-0.17011
-0.104767
0.0222634
-0.0969502
0.0345561
0.0543186
0.0603741
0.0535294
0.0528443
0.0595001
0.0696377
0.0491017
0.0378836
0.0268626
0.0204522
0.0200487
0.036415
0.0273057
-0.00407755
-0.0194347
-0.0535504
-0.047645
-0.0133958
0.0114276
0.0300414
0.0626095
0.103811
-0.08159
-0.553996
-0.360838
-0.149525
-0.0709534
-0.0856774
-0.204696
0.0618861
0.0629405
0.0635396
0.0631309
0.0605527
0.0615173
0.0628821
0.049253
0.038791
0.0287339
0.0353845
0.02013
0.0213601
0.0258214
-0.00389717
-0.012534
-0.0489792
-0.041291
-0.012473
0.0110556
0.0301563
0.0673862
0.10747
0.122719
-0.489929
-0.363892
-0.0838619
-0.0644827
-0.0924835
1.81109
0.0909211
0.0831862
0.0664934
0.0571431
0.0822769
0.0648259
0.0570749
0.0504844
0.0412293
0.0327821
0.0272825
0.0255585
0.0266511
0.0296592
-0.00473894
-0.00212933
-0.0443891
-0.036131
-0.0114461
0.0107699
0.0299035
0.0641769
0.111697
0.154174
-0.360813
-0.347081
0.186119
-0.0270685
-0.0780866
0.0239774
0.0913665
0.066477
0.0697153
0.0773765
0.0692299
0.068164
0.0564792
0.0547463
0.042178
0.0368064
0.0329896
0.0312151
0.0342022
0.0363196
-0.00508687
-0.00482835
-0.0397624
-0.0318204
-0.0103346
0.0105278
0.0294028
0.0675874
0.0931683
0.0649942
-0.237303
-0.277199
-0.117674
-0.0571401
-0.0650936
-0.0395291
0.0157614
0.0593105
0.0678536
0.0730527
0.0718424
0.0678512
0.0582556
0.0574525
0.0415504
0.0399087
0.0396148
0.0399011
0.0391074
0.0352355
-0.0062494
-0.0298475
-0.0351554
-0.0280817
-0.00918108
0.0103059
0.028609
0.0553354
0.0726745
-0.0037791
-0.156053
-0.182677
-0.0954129
-0.0653381
-0.0577376
-0.0172219
0.0339746
0.0493272
0.0696754
0.064014
0.0636625
0.0624212
0.0558206
0.0462842
0.0416223
0.0416781
0.0441766
0.0545237
0.0663928
0.466842
-0.00758132
-0.0240196
-0.030747
-0.0247592
-0.00800551
0.010044
0.027461
0.0562678
0.0544005
-0.0621877
-0.0645752
-0.0847361
-0.0949878
-0.0742583
-0.0581586
-0.00962888
0.0275821
0.039902
0.0539194
0.0525863
0.0538794
0.0536989
0.0513312
0.0464424
0.0413042
0.0402609
0.0369909
0.0222852
0.36726
0.0956326
-0.00862448
-0.0201298
-0.0268075
-0.0217456
-0.00684613
0.00971501
0.0259351
0.0459858
0.04375
-0.0390702
0.00630914
0.144048
-0.0866436
-0.0862855
-0.0654957
-0.0363539
0.0103131
0.0263182
0.0357306
0.0412171
0.0431006
0.0460379
0.0445086
0.0409322
0.0513315
0.0408353
0.038337
0.0377176
0.042931
0.0545583
-0.0112714
-0.00942825
-0.0233323
-0.0190037
-0.00572024
0.00931248
0.0240325
0.039539
0.0354468
0.0194874
0.0141387
-0.0111407
-0.0873055
-0.11641
-0.0938819
-0.0516407
-0.0127371
0.0111968
0.0237812
0.0305779
0.098254
0.0936604
0.0357749
0.0359156
0.0378878
0.0507994
0.0406212
0.0440018
0.0480923
0.052224
-0.0149299
-0.00315498
-0.0202972
-0.0165102
-0.00463738
0.00880619
0.0217234
0.0335936
0.028421
0.00462667
0.017264
-0.00801995
-0.106065
-0.150291
-0.133631
-0.0774161
-0.0242858
-0.00217887
0.0125821
0.0210232
0.0258858
0.0249583
0.0277482
0.0301224
0.0323174
0.0345957
0.037379
0.0404687
0.0435126
0.0464026
-0.0253575
0.00210231
-0.017829
-0.0142263
-0.00363209
0.0081734
0.0191183
0.0273299
0.0231825
0.0124256
0.0193423
-0.00972488
-0.134775
-0.174015
-0.168012
-0.106361
-0.0465022
-0.00847121
0.00313746
0.0112659
0.0159356
0.0191272
0.0220438
0.024516
0.0269449
0.0295266
0.0321943
0.0348381
0.0373695
0.0397251
-0.0505308
0.00334412
-0.0160147
-0.012118
-0.00273033
0.007405
0.0161696
0.0216052
0.0192623
0.0163062
-0.00392101
0.563248
-0.136443
-0.173603
-0.174463
-0.118055
-0.0529388
-0.0165959
0.000965201
0.00380347
0.00757296
0.0107836
0.0138238
0.0166661
0.0193494
0.0219963
0.0245608
0.0269314
0.0291299
0.0311429
-0.0623919
-0.0471812
-0.0144775
-0.0101374
-0.00195011
0.00649135
0.0129685
0.015765
0.0153475
0.0055799
-0.0145682
-0.027895
-0.0945404
-0.144302
-0.138286
-0.0964886
-0.0371505
-0.0139506
0.000896872
-0.00229415
-0.00149036
-0.000406146
0.00142535
0.00387997
0.00653562
0.00911867
0.0114593
0.0134861
0.0152248
0.0166117
-0.0254521
-0.0291541
-0.0126316
-0.00824523
-0.00130423
0.00543317
0.0097022
0.0113644
0.0321262
-0.00783747
-0.030465
-0.0523492
-0.0806566
-0.103384
-0.0950372
-0.0636842
0.0226191
-0.0104796
-0.00385539
-0.00923528
-0.0134791
-0.0164766
-0.0155483
-0.017941
-0.0157643
-0.0133233
-0.0111627
-0.00945224
-0.0082108
-0.00747648
-0.00699401
-0.0156169
-0.0103564
-0.00645215
-0.000797931
0.00425042
0.00619129
0.00212507
0.0457464
-0.0364038
-0.0508411
-0.0570022
-0.0669328
-0.0299157
-0.062405
-0.0435356
-0.0200422
-0.0146664
-0.0166291
-0.0232161
-0.0295899
-0.0359981
-0.0366299
-0.0448394
-0.0425977
-0.0449444
-0.0436263
-0.0417308
-0.0402539
-0.0394195
0.00045364
-0.00888935
-0.00777393
-0.00481138
-0.000422905
0.00300552
0.00263257
-0.00132737
0.0227057
-0.0962635
-0.0885857
-0.060023
-0.0537071
-0.0515842
-0.0478964
-0.0322255
-0.0271076
-0.0246162
-0.0255294
-0.0363915
-0.0465791
-0.0586421
-0.0655164
-0.0711301
-0.0739552
-0.0762272
-0.0422955
-0.0681238
-0.0663184
-0.065796
0.00241024
-0.00521996
-0.00545194
-0.00336695
-0.000155093
0.0018502
-0.000266195
-0.00839356
-0.0228464
-0.161157
-0.108943
-0.0611894
-0.0438056
-0.038108
-0.0368226
-0.0334291
-0.0289033
-0.0296864
-0.0286859
-0.0396876
-0.055917
-0.0691923
-0.0709922
-0.0747058
-0.0752997
-0.0734892
-0.0483608
-0.0500852
-0.0770073
-0.0781157
0.00223312
-0.00302755
-0.00350883
-0.00213531
2.93621e-05
0.000964167
-0.00206564
-0.0137989
-0.0314113
-0.130957
-0.0935461
-0.0562642
-0.0368505
-0.0293007
-0.0274231
-0.0242282
-0.0252554
-0.0294417
-0.0367862
-0.0397118
-0.041148
0.123381
0.0378269
0.0817328
-0.0639286
-0.0731442
-0.07543
-0.0741007
-0.0728788
-0.0720548
0.00142559
-0.00153741
-0.00189254
-0.00111134
0.000132488
0.000449037
-0.00221366
-0.011633
0.0298039
0.0263554
-0.0702738
-0.0464323
-0.0338192
-0.0258928
-0.0212628
-0.0186878
-0.0110822
-0.0238612
-0.0269287
0.00026447
-0.0285164
-0.0327661
-0.0353858
-0.0404297
-0.0652919
-0.0503258
-0.0488442
-0.0440397
-0.0438598
-0.0436399
0.000542458
-0.000117276
-0.000155372
-7.3335e-05
5.68445e-05
0.000112184
-0.000101571
-0.00105562
-0.0029336
-0.00785701
-0.0313749
-0.0444739
-0.037742
-0.0272944
-0.0186311
-0.0124845
-0.00852396
-0.0072962
-0.00971229
-0.0137234
-0.0157037
-0.0153404
-0.0129569
-0.00992563
-0.00723444
-0.00509725
-0.00101741
-0.000287282
0.00139375
0.00318417
0.373588
0.120664
0.117355
0.117224
0.115324
0.110092
0.097732
0.0976527
0.0936085
0.0538243
-0.0184296
0.0287355
-0.0452924
20.2466
99.5107
106.862
110.255
104.004
111.881
116.11
110.782
15.2174
0.946574
0.476288
0.308657
0.189051
0.174617
0.127814
104.59
109.239
0.124774
0.117514
0.111766
0.112902
0.111121
0.102482
0.0937155
0.0910655
0.0848077
0.0469927
-0.0264613
0.0169658
-0.0345161
0.102612
98.4572
107.079
110.149
103.307
112.181
117.057
112.006
16.546
0.915865
0.464202
0.303419
0.187787
0.163031
0.132565
98.8108
108.71
0.124232
0.113978
0.119368
0.117359
0.106938
0.0947459
0.0886323
0.0845725
0.077092
0.0436631
-0.0200055
0.00687202
-0.00304403
0.118078
-0.532208
106.426
110.042
104.069
112.917
117.755
113.521
4.53858
0.862213
0.450629
0.297258
0.186329
0.151135
0.120776
0.0501397
107.977
0.171713
0.109269
0.104108
0.171778
0.112467
0.0866658
0.083484
0.078409
0.0708645
0.0437123
-0.00699025
0.00833948
0.0170229
0.172822
0.262074
93.348
110.531
104.78
113.377
118.801
117.902
-2.36955
0.778415
0.435728
0.290259
0.184566
0.13995
0.110178
0.0126022
107.249
6.79094
0.102076
0.0917991
0.0920839
0.0751362
0.0815896
0.079297
0.0726194
0.0661462
0.0456758
0.0116289
0.0145032
0.0279773
0.0882081
0.159999
-0.965271
110.954
105.658
116.019
119.063
120.972
-1.84839
0.678152
0.418225
0.282499
0.18226
0.130068
0.099925
0.00271381
1.43569
0.0772949
0.058524
0.0767945
0.07892
0.0739477
0.0954001
0.0762822
0.0667957
0.0629532
0.0485132
0.0246437
0.0200787
0.0268782
0.0894019
0.0874322
-0.437682
-0.283886
107.217
115.208
122.67
95.0156
-1.59133
0.575762
0.397775
0.273975
0.179396
0.12171
0.0901554
0.00082487
0.231855
0.0567335
0.0585694
0.0656723
0.0690693
0.0679121
0.080332
0.087436
0.0625238
0.060861
0.0501585
0.0369522
0.02872
0.0183087
0.0565706
0.00296258
-0.431488
-0.284916
-0.314781
117.843
124.451
0.490845
-1.4262
0.483546
0.375164
0.264526
0.175947
0.114645
0.0812396
0.0026899
0.191603
0.04838
0.0525755
0.0579814
0.0620594
0.0553651
1.34995
0.0617795
0.0594308
0.0666609
0.0481011
0.0432434
0.0296594
0.0124627
0.0296531
-0.185075
-0.52058
-0.276362
-0.31815
-0.382229
81.7563
-0.797811
-1.2934
0.365817
0.349612
0.254024
0.171843
0.108785
0.0735686
0.00599257
0.153809
0.0404312
0.0451707
0.0508372
0.0560186
0.0728907
2.04349
0.053363
0.053472
0.0582574
0.0451898
0.0449954
0.0697553
0.00540691
-0.0183013
-0.234802
-0.678568
-0.0450949
-0.316612
-0.363674
-0.495799
-0.733774
-1.28028
0.286883
0.321876
0.24242
0.167081
0.103879
0.0669341
0.00963983
0.127444
0.0342493
0.0390408
0.0439026
0.0467132
0.0430321
0.0518294
0.05163
0.0501268
0.0460199
0.044866
0.045403
0.0403288
0.00313093
-0.0233367
-0.00224499
-0.332248
-0.0130332
-0.30374
-0.346984
-0.498927
-0.571974
-1.09047
0.212677
0.291616
0.229679
0.161687
0.0996625
0.0613088
0.0130907
0.102537
0.0311423
0.0359716
0.0413623
0.0467431
0.056669
0.050737
0.0501792
0.0471994
0.0424413
0.0384189
0.0697323
0.0324347
0.00345123
-0.023503
-0.0974356
-0.252627
-0.218694
-0.292584
-0.364576
-0.48379
-0.611525
-0.916615
0.148153
0.259549
0.215788
0.155641
0.0959441
0.0566331
0.0162276
0.0846471
0.0306172
0.0357823
0.0418908
0.0477372
0.0622215
0.0510857
0.0498513
0.0454498
0.0408622
0.036217
0.0247118
0.0277463
0.0022603
-0.01384
-0.0421301
-0.210584
-0.22823
-0.287638
-0.385672
-0.478254
-0.487859
-0.674456
0.0938383
0.22633
0.200811
0.148916
0.0925824
0.0529995
0.0188702
0.0685966
0.0341199
0.0390321
0.0446894
0.0506516
0.0539646
0.0550951
0.0532501
0.0688703
0.0423572
0.0391582
0.0292997
0.0215809
0.00123521
-0.0200078
-0.0553247
-0.14584
-0.180128
-0.265954
-0.40092
-0.400742
-0.515253
-0.564342
0.0445331
0.192779
0.184865
0.141495
0.0894165
0.050421
0.0211114
0.0558792
0.037869
0.0432745
0.0545418
0.05758
0.0617791
0.0602516
0.0583856
0.0652854
0.0454777
0.0377989
0.0285904
0.0174252
0.0120791
-0.023624
-0.0599994
-0.142905
-0.219404
-0.261397
-0.42491
-0.450897
-0.244543
-0.456531
-0.00754557
0.159996
0.168149
0.1334
0.0862766
0.0487336
0.0230502
0.0456261
0.0389347
0.0491156
0.059269
0.0648137
0.0662901
0.0620472
0.0674021
0.0468845
0.0446859
0.0398576
0.0306992
0.0349711
0.0103507
-0.0287312
-0.0667232
-0.144377
-0.217275
-0.231916
0.289268
-0.44748
0.0341006
-0.331862
-0.0432281
0.129298
0.150976
0.124686
0.0830252
0.0476764
0.0247862
0.0376098
0.0640874
0.0663297
0.0694696
0.0705227
0.0661436
0.0790035
0.0536793
0.053973
0.0519637
0.0456325
0.0319365
0.0160528
0.0257487
-0.0207347
-0.0695222
-0.152475
-0.218763
-0.250305
-0.199405
-0.400811
-0.323729
-0.295788
-0.0544377
0.101742
0.133675
0.115418
0.0795166
0.046995
0.0264098
0.0315735
0.0779221
0.0734561
0.0768445
0.118124
0.443089
0.0684584
0.0681922
0.549408
0.0583975
0.0588698
0.0372713
0.0174305
-0.00366819
-0.025232
-0.0247286
-0.142282
-0.217382
-0.266529
-0.246592
-0.366453
0.490614
-0.0313415
-0.0619968
0.0780946
0.116612
0.105714
0.0756191
0.0464306
0.0277958
0.0271202
0.0628218
0.066283
0.0675049
0.067638
0.069485
0.0722766
0.159323
0.078409
0.0716732
0.0600392
0.0432553
0.019983
-0.0090425
0.028384
-0.0590499
-0.152727
-0.2118
-0.274741
0.244927
-0.308083
0.592262
-0.173039
-0.0576333
0.0585947
0.100156
0.0957015
0.0712705
0.0456903
0.0287362
0.0238213
0.0557615
0.0589782
0.0626095
0.0681682
0.0708108
0.0761427
0.0803433
0.0771206
0.0719011
0.0628392
0.0462644
0.0201191
-0.014942
-0.0517016
-0.0877123
-0.150933
-0.210196
-0.21892
0.922455
-0.227367
0.710976
-0.144804
-0.0497724
0.0429774
0.0846331
0.0855346
0.0664552
0.0445011
0.0291623
0.0212934
0.0492106
0.0521825
0.0556216
0.0648769
0.065362
0.0708298
0.0783853
0.0731278
0.0681883
0.0581788
0.0398967
0.00993586
-0.0293394
-0.0692243
-0.108621
-0.154247
-0.195821
-0.20214
0.235024
0.629626
-0.127592
-0.127394
-0.0432798
0.0306759
0.070291
0.0753961
0.0611996
0.0426999
0.028988
0.019214
0.0419715
0.0443115
0.0468657
0.0495686
0.0522382
0.054913
0.0569717
0.0561251
0.0510964
0.0397481
0.0341769
-0.0222362
-0.0646497
-0.10738
-0.143626
-0.172201
-0.185802
-0.187101
-0.166907
0.636417
-0.0814205
-0.0946612
-0.0379781
0.0210281
0.0573063
0.0654525
0.0555842
0.0402817
0.028107
0.0173516
0.0329725
0.0347822
0.0365274
0.0380088
0.0385855
0.0577664
0.10478
0.0280502
0.0170558
-0.0034555
-0.0133383
-0.0827031
-0.13303
-0.176677
-0.195201
-0.197648
-0.18379
-0.155463
-0.144565
0.748941
-0.0876338
-0.0678057
-0.0342091
0.0132883
0.0457511
0.0558675
0.0496978
0.0373368
0.026504
0.0155742
0.0175868
0.0182252
0.0182277
0.01673
0.0126578
0.00601971
-0.00309091
-0.0151114
-0.0358339
-0.0706287
-0.0957156
-0.18576
-0.161818
-0.174069
-0.292746
-0.249166
-0.18957
-0.141482
-0.104622
0.0671344
-0.073897
-0.0566213
-0.0328103
0.00694089
0.0356282
0.0467886
0.0436335
0.0339487
0.0243349
0.0138238
-0.0072925
-0.00760758
-0.0087597
-0.0114236
-0.0164467
-0.0247414
-0.0362932
-0.0539365
-0.0870276
-0.136808
-0.205412
-0.292081
-0.277182
-0.425963
-0.41399
-0.314193
-0.189585
-0.121712
-0.0710883
0.0036011
-0.0588208
-0.0630284
-0.0342505
0.00174166
0.0269247
0.0383269
0.0374917
0.0301713
0.0217885
0.0120782
-0.0391711
-0.0395656
-0.040978
-0.0438905
-0.0490354
-0.0576388
-0.071572
-0.0932654
-0.125473
-0.174309
-0.244134
-0.332819
-0.422754
-0.497073
-0.493782
-0.368716
-0.210623
-0.0987684
-0.034291
0.0160258
2.79813
-0.0872066
-0.0169386
-0.00222323
0.0196134
0.030577
0.0313592
0.0260568
0.0189596
0.0103227
-0.065974
-0.0667094
-0.0681549
-0.0708745
-0.0754523
-0.0827513
-0.0941775
-0.11212
-0.139918
-0.179851
-0.235171
-0.306227
-0.384241
-0.423066
-0.445137
-0.341527
-0.178423
-0.0687484
-0.00746401
0.0217005
0.314856
-0.0639887
-0.0096333
-0.00503211
0.0136783
0.0235878
0.0253132
0.021664
0.01589
0.00854303
-0.0791941
-0.080476
-0.0821336
-0.0838376
-0.0875087
-0.0927113
-0.101019
-0.113287
-0.130917
-0.154984
-0.186231
-0.221713
-0.264838
-0.289084
-0.27911
-0.209129
-0.105388
-0.0360257
0.000760167
0.0213274
0.330078
-0.0339428
-0.0265523
-0.00640029
0.00910955
0.0173512
0.0193988
0.0170373
0.0125977
0.00672125
-0.070763
-0.0592796
-0.0125344
-0.0917093
-0.0851807
-0.0855492
-0.0902885
-0.0958877
-0.104554
-0.10711
-0.0400047
-0.114687
0.00408687
-0.0805083
-0.111279
-0.073104
-0.0334993
-0.0075288
0.00242864
0.00132435
-0.0105703
-0.00611437
-0.0186464
-0.00379406
0.00581744
0.0117901
0.0136109
0.012203
0.00908816
0.00483434
-0.0416742
-0.0361586
0.00101593
-0.0355754
-0.0571527
-0.0601893
-0.060688
-0.055734
-0.060106
0.0927033
-0.0426655
-0.0488791
-0.0435137
-0.0408192
-0.00295493
-0.00962857
0.0133691
0.00702593
0.00524836
-0.000186098
-0.00392518
-0.00965058
-0.00947581
-0.00159528
0.0033478
0.00670366
0.00787756
0.00715093
0.00535038
0.00285425
0.00583671
0.00250818
-0.00310464
-0.00452629
-0.011972
-0.0183215
-0.0130252
0.0127075
0.0234628
-0.0175527
-0.0156965
-0.0261384
-0.00509201
-0.00181248
0.000784287
0.002019
0.00390027
0.00371165
0.00213019
-0.000117987
-0.000979297
-0.00213959
-0.000573183
0.000523214
0.000837186
0.000534099
0.000560826
0.000454348
0.000320823
0.000204116
93.4672
89.3167
88.3295
87.1984
85.281
83.7363
83.3387
85.047
88.8922
92.9649
95.7554
97.0855
97.34
96.9623
96.2874
95.5216
94.7771
94.1065
93.5297
93.0493
92.6585
92.3469
92.1033
91.9172
91.7789
91.6799
91.613
91.5714
91.5495
91.5427
93.5177
89.2951
88.329
87.2043
85.2789
83.7258
83.3059
84.9982
88.8789
92.994
95.8
97.1257
97.3696
96.9813
96.2968
95.5222
94.7699
94.0927
93.5108
93.0265
92.6328
92.3191
92.0741
91.887
91.7479
91.6486
91.5813
91.5396
91.5178
91.5111
93.6182
89.2598
88.3297
87.2161
85.2732
83.7029
83.2375
84.8883
88.8255
93.0231
95.871
97.2
97.4293
97.0229
96.3214
95.5307
94.7632
94.0726
93.4798
92.9871
92.5872
92.2692
92.0211
91.8318
91.6914
91.5913
91.5237
91.4819
91.4602
91.4536
93.7688
89.2109
88.3316
87.2335
85.2639
83.6679
83.1362
84.7231
88.7414
93.0583
95.9674
97.3056
97.5183
97.0893
96.3644
95.5504
94.7601
94.0491
93.4394
92.9337
92.5243
92.1993
91.9464
91.7539
91.6115
91.5103
91.4422
91.4004
91.3787
91.3723
93.9583
89.1483
88.3353
87.2568
85.2507
83.6216
83.0019
84.4992
88.6273
93.1038
96.0918
97.4419
97.6343
97.1764
96.4217
95.5777
94.758
94.0204
93.3889
92.8665
92.4444
92.1103
91.8508
91.6538
91.5084
91.4054
91.3363
91.294
91.2722
91.2659
94.1917
89.0718
88.3416
87.2863
85.2335
83.5645
82.835
84.2111
88.4805
93.1607
96.246
97.6097
97.7754
97.2809
96.4895
95.6093
94.7546
93.9851
93.3274
92.7845
92.3471
92.0017
91.7339
91.5309
91.3812
91.2751
91.204
91.1606
91.1384
91.1321
94.4806
88.9811
88.3513
87.3225
85.2121
83.4978
82.636
83.8511
88.2976
93.2299
96.432
97.8103
97.9415
97.4014
96.5662
95.6443
94.749
93.9424
93.2537
92.6869
92.2316
91.8727
91.5949
91.3843
91.2289
91.1184
91.0442
90.9987
90.9756
90.9693
94.8393
88.8759
88.3656
87.3659
85.1864
83.4225
82.4063
83.4097
88.0745
93.3127
96.652
98.0454
98.1328
97.5373
96.6512
95.6822
94.7408
93.8911
93.1667
92.5725
92.0966
91.7222
91.4327
91.2132
91.0507
90.9346
90.856
90.8075
90.7829
90.7765
95.2768
88.7564
88.3857
87.4172
85.1561
83.3401
82.1478
82.8742
87.8066
93.4112
96.9084
98.317
98.3497
97.6881
96.7439
95.7223
94.7291
93.83
93.0645
92.4394
91.9405
91.5488
91.246
91.0163
90.8457
90.7231
90.639
90.5863
90.5592
90.5524
95.7526
88.6229
88.4133
87.4772
85.1208
83.2522
81.8634
82.2278
87.488
93.5275
97.2041
98.6273
98.5929
97.8531
96.8433
95.764
94.7132
93.7571
92.945
92.2856
91.7614
91.3506
91.0331
90.7922
90.613
90.4834
90.3934
90.3353
90.3037
90.2948
96.2875
88.4757
88.4499
87.5468
85.08
83.1607
81.5581
81.4483
87.1127
93.6642
97.5426
98.9793
98.8629
98.0313
96.9481
95.8063
94.6919
93.6704
92.8054
92.1087
91.5572
91.1254
90.7918
90.5389
90.351
90.2147
90.119
90.0552
90.0165
89.9992
96.9008
88.3153
88.4975
87.6272
85.0331
83.0674
81.2382
80.5053
86.6744
93.8238
97.9276
99.3764
99.1604
98.2213
97.0566
95.8481
94.6643
93.5669
92.6423
91.9058
91.3252
90.8707
90.5195
90.2537
90.057
89.915
89.8148
89.7458
89.7004
89.6736
97.6112
88.1421
88.5584
87.7196
84.9793
82.9744
80.913
79.3557
86.1673
94.0092
98.3635
99.8225
99.4864
98.4214
97.1667
95.8875
94.6293
93.4428
92.4516
91.6736
91.0626
90.5835
90.2128
89.9328
89.7272
89.5805
89.4778
89.4065
89.3561
89.3243
98.4395
87.9565
88.6351
87.8257
84.9177
82.8835
80.5942
77.9336
85.5887
94.2228
98.8549
100.323
99.8419
98.629
97.2754
95.9224
94.5853
93.2929
92.2284
91.4086
90.7666
90.2607
89.8674
89.5709
89.3554
89.2044
89.1016
89.0322
88.9849
88.975
99.4112
87.7598
88.73
87.9474
84.847
82.7958
80.2987
76.149
84.9442
94.4666
99.4068
100.883
100.229
98.8411
97.379
95.9494
94.5295
93.1096
91.9673
91.1068
90.4339
89.8988
89.4786
89.1617
88.9337
88.7772
88.6741
88.6084
88.5681
88.546
100.557
87.5542
88.8455
88.0871
84.7661
82.7118
80.0508
73.9516
84.2462
94.7421
100.024
101.509
100.648
99.0531
97.4729
95.9639
94.4543
92.8795
91.6633
90.7634
90.0616
89.4944
89.0408
88.6977
88.4536
88.2895
88.1851
88.1233
88.0905
88.078
101.914
87.3427
88.9831
88.2476
84.6735
82.6301
79.8664
71.2699
83.4961
95.0537
100.712
102.21
101.103
99.2588
97.55
95.9608
94.3353
92.5705
91.3103
90.3717
89.6472
89.0451
88.548
88.1698
87.9054
87.7328
87.6286
87.5736
87.5525
87.5539
103.528
87.1303
89.1442
88.4321
84.5678
82.5477
79.7897
67.9026
82.7057
95.4092
101.475
102.992
101.597
99.4485
97.5979
95.9361
94.1065
92.1285
90.8942
89.9227
89.1897
88.5507
87.9934
87.5662
87.2771
87.0978
86.9996
86.9603
86.9606
86.985
105.455
86.9249
89.3296
88.6439
84.4473
82.4579
79.91
63.6866
81.9534
95.7959
102.321
103.866
102.134
99.6076
97.5948
95.886
93.6642
91.6318
90.3941
89.4027
88.6911
88.0168
87.3708
86.8701
86.5522
86.3749
86.2967
86.2903
86.3292
86.3907
107.763
86.7398
89.5392
88.8858
84.3115
82.343
80.3527
58.5617
81.3572
96.1568
103.256
104.839
102.718
99.7125
97.5795
95.8098
93.0285
91.2118
89.7867
88.7892
88.1593
87.462
86.6788
86.0602
85.7081
85.5507
85.5155
85.5657
85.6654
85.7826
110.54
86.5968
89.7723
89.1589
84.1662
82.1742
81.2366
53.636
81.3529
96.4311
104.282
105.916
103.354
99.725
97.72
95.703
92.3935
90.8165
89.0546
88.0467
87.6193
86.9188
85.9239
85.1233
84.7174
84.5946
84.6292
84.7676
84.9609
85.1645
113.893
86.532
90.0276
89.4591
84.0354
81.9061
82.5712
10.5221
82.9709
96.5904
105.401
107.097
104.041
99.5697
97.9661
95.5723
91.9639
90.4265
88.1699
87.1217
87.1189
86.4033
85.0816
84.0387
83.5437
83.4547
83.5913
83.8644
84.2029
84.5433
117.954
86.6022
90.3033
89.7629
84.5888
81.4352
83.6912
0.317508
88.2796
96.5213
106.617
108.373
104.765
99.0799
98.3453
95.5186
91.828
90.0969
87.0412
85.6055
86.5344
85.8813
84.075
82.7105
82.1073
82.0711
82.3506
82.8151
83.3713
83.9227
122.884
86.8958
90.5974
90.1537
84.6811
80.6707
2.26085
0.740492
91.4079
95.8751
107.951
109.725
105.475
97.8128
99.0929
95.6393
91.9811
89.9018
85.3581
82.1998
85.419
85.3519
82.87
81.0382
80.3041
80.3924
80.8522
81.556
82.4398
83.3107
128.87
87.5461
90.9051
90.748
84.4243
60.9857
-0.0353435
0.488164
0.373045
94.7269
109.449
111.121
106.033
95.1852
99.7359
95.914
92.3532
89.9345
83.3479
77.1969
84.1202
84.7584
81.1883
78.9197
77.9075
78.369
79.0183
79.9073
81.4043
82.7452
136.119
88.7467
91.2118
91.6712
84.0794
-0.000703132
0.0324319
0.386693
4.53073
94.2292
111.169
112.511
106.05
92.3885
100.532
96.2005
92.8053
90.3817
83.1035
73.5527
84.3112
84.3888
77.7043
41.1296
15.3034
7.54044
7.16127
10.4034
18.6291
30.2869
144.84
90.7573
91.4817
93.2027
0.819838
0.0187568
0.0574821
0.379877
1.26726
95.1813
113.215
113.822
106.34
92.6705
101.727
96.3227
93.1426
91.3317
85.8781
74.263
16.0238
0.174841
0.178895
0.182889
0.160231
0.158921
0.155337
0.148108
0.139533
0.132767
155.173
93.8582
91.6025
94.2702
0.0310316
0.0238332
0.0627976
0.351966
0.989778
96.441
114.903
114.994
107.159
96.2379
102.898
96.2307
93.2824
92.2103
78.98
0.106454
0.145786
0.162051
0.170676
0.170934
0.162353
0.157969
0.153515
0.174466
0.138978
0.141446
167.017
98.1732
91.1748
0.283962
0.0238095
0.0236487
0.0636303
0.299464
1.01471
97.5829
117.746
116.024
107.426
101.478
102.631
95.625
93.5556
76.1543
0.0342007
0.0966492
0.135555
0.156781
0.168346
0.168363
0.159603
0.167022
0.152017
0.141159
0.133693
0.133293
181.268
103.7
30.4707
0.0132354
0.0183725
0.0226218
0.0656478
0.234518
0.987608
97.7587
118.603
117.074
106.018
105.827
101.539
93.5461
92.7153
0.162376
0.0341853
0.0608998
0.0992478
0.14211
0.163315
0.167886
0.154955
0.152054
0.141728
0.130619
0.126109
0.119273
91.5477
91.5654
91.5997
91.6555
91.7386
91.8557
92.015
92.2264
92.5009
92.8506
93.2861
93.8129
94.4256
95.1
95.7844
96.3902
96.7741
96.7055
95.8517
93.8378
90.4611
86.2743
83.0768
82.3158
83.7899
87.3339
92.8747
99.3189
105.449
109.654
91.5161
91.5339
91.5685
91.6245
91.7077
91.8251
91.985
92.1973
92.4735
92.8258
93.2651
93.7972
94.4166
95.0988
95.7916
96.4059
96.7986
96.7387
95.8913
93.875
90.4734
86.2426
83.0251
82.2837
83.7682
87.3166
92.8679
99.3176
105.454
109.67
91.4588
91.4767
91.5114
91.5675
91.6509
91.7688
91.9297
92.144
92.4236
92.7814
93.2286
93.7716
94.4052
95.1044
95.8147
96.4453
96.8521
96.8035
95.9602
93.9268
90.4681
86.1541
82.9137
82.2191
83.7247
87.2823
92.8563
99.3185
105.467
109.709
91.3776
91.3957
91.4303
91.4865
91.57
91.6884
91.8508
92.0683
92.3534
92.7195
93.1789
93.7386
94.3942
95.1199
95.8579
96.5127
96.9368
96.8987
96.0557
93.9939
90.452
86.0176
82.7484
82.1244
83.6591
87.2308
92.8398
99.3212
105.489
109.771
91.2714
91.2897
91.3246
91.3809
91.4648
91.5841
91.7487
91.9705
92.263
92.6405
93.1159
93.6978
94.3827
95.1435
95.9175
96.6031
97.0486
97.0221
96.1782
94.0794
90.4284
85.832
82.5269
82
83.5717
87.1615
92.8184
99.3257
105.519
109.857
91.138
91.1568
91.1923
91.2492
91.3339
91.4547
91.6224
91.85
92.1519
92.5436
93.0391
93.6484
94.3695
95.1734
95.9906
96.7122
97.1835
97.1724
96.3289
94.1854
90.3972
85.5918
82.2451
81.847
83.4624
87.0741
92.7923
99.3319
105.559
109.966
90.9758
90.9955
91.0321
91.0901
91.1761
91.2991
91.4709
91.7057
92.0193
92.428
92.9474
93.5892
94.3536
95.2094
96.0765
96.8386
97.3402
97.3495
96.509
94.3137
90.3587
85.2904
81.898
81.667
83.3313
86.9682
92.7619
99.3397
105.606
110.099
90.7838
90.8048
90.8426
90.9021
90.9899
91.1157
91.2927
91.5362
91.8636
92.2923
92.8392
93.5186
94.3341
95.2514
96.1755
96.9822
97.5184
97.5536
96.7202
94.4667
90.3131
84.9191
81.4791
81.462
83.1785
86.8432
92.7278
99.349
105.661
110.257
90.561
90.5833
90.622
90.6832
90.7734
90.9027
91.0859
91.3399
91.6833
92.135
92.713
93.4347
94.3093
95.2997
96.2878
97.1425
97.7179
97.785
96.964
94.6473
90.2612
84.4665
80.9802
81.2348
83.0037
86.6984
92.6906
99.3597
105.723
110.438
90.3057
90.3296
90.366
90.4303
90.5242
90.6581
90.8485
91.1147
91.4768
91.9544
92.5669
93.335
94.2772
95.3546
96.4133
97.319
97.9384
98.044
97.243
94.859
90.2042
83.9183
80.3908
80.9891
82.8068
86.533
92.6515
99.3715
105.791
110.645
90.0111
90.0862
90.0622
90.1408
90.2405
90.3798
90.5787
90.8589
91.2422
91.7489
92.399
93.2166
94.2347
95.4169
96.5515
97.5102
98.1792
98.3312
97.5596
95.1062
90.1438
83.2558
79.6969
80.7297
82.587
86.3461
92.6116
99.3843
105.864
110.877
89.6649
89.818
89.737
89.8158
89.9214
90.0664
90.2742
90.5704
90.9778
91.5169
92.2076
93.076
94.177
95.4881
96.7004
97.7141
98.4398
98.6467
97.917
95.394
90.0829
82.4551
78.88
80.4634
82.3433
86.1363
92.5729
99.3976
105.941
111.135
89.3281
89.3491
89.3814
89.454
89.564
89.7146
89.9324
90.2472
90.6821
91.257
91.991
92.9097
94.0955
95.5702
96.8554
97.9273
98.7193
98.9911
98.3195
95.7287
90.0255
81.4862
77.9137
80.1995
82.0736
85.9026
92.5378
99.4111
106.018
111.419
88.9366
88.9532
88.9867
89.0547
89.1615
89.3176
89.5502
89.8878
90.3536
90.9677
91.7481
92.7149
93.9726
95.6641
97.0061
98.1458
99.0171
99.3647
98.771
96.1179
89.9767
80.3113
76.7588
79.9529
81.7752
85.6432
92.5098
99.4241
106.094
111.729
88.5358
88.5451
88.575
88.6253
88.7081
88.871
89.1264
89.4915
89.991
90.6474
91.4775
92.4913
93.7655
95.7594
97.132
98.3648
99.333
99.7675
99.2763
96.5706
89.9436
78.8858
75.365
79.7477
81.4436
85.3563
92.4932
99.4359
106.167
112.066
88.0807
88.1007
88.1415
88.1793
88.1762
88.3768
88.6642
89.058
89.5926
90.2939
91.1769
92.2409
93.3746
95.7915
97.1968
98.5802
99.6675
100.199
99.8412
97.0982
89.9366
77.1626
73.7137
79.6161
81.0719
85.0397
92.4944
99.4455
106.246
112.427
87.5717
87.6071
87.6699
90.4715
87.4672
87.8612
88.1699
88.5854
89.1551
89.9041
90.8417
91.9647
92.821
95.5292
97.1478
98.7914
100.022
100.659
100.472
97.7147
89.9705
75.102
71.8524
79.5808
80.6508
84.6906
92.5215
99.4519
106.324
112.814
87.0249
87.0819
87.1726
89.8601
87.0967
87.3532
87.6412
88.0662
88.6729
89.4736
90.4644
91.6628
92.5466
94.6875
96.9427
99.0048
100.399
101.145
101.177
98.4356
90.0663
72.7107
69.7422
79.6942
80.1677
84.3049
92.5834
99.4536
106.397
113.223
86.4633
86.5462
86.6384
86.7175
86.7095
86.8218
87.0609
87.4863
88.1382
88.9978
90.0345
91.3108
92.5002
93.3908
96.6275
99.2377
100.802
101.652
101.962
99.27
90.253
70.1551
67.4179
80.0388
79.602
83.8769
92.6868
99.4494
106.458
113.65
85.9027
86.021
86.1211
86.1763
86.1839
86.2416
86.3981
86.8264
87.542
88.4733
89.5396
90.8661
92.4514
92.2459
96.3954
99.5179
101.236
102.172
102.838
100.247
90.571
68.03
65.126
80.7153
78.9271
83.4001
92.8341
99.4379
106.504
114.091
85.3594
85.536
85.6599
85.6871
85.6237
85.63
85.5939
86.0584
86.8695
87.8949
88.9585
90.3251
92.3224
91.8627
96.4924
99.8741
101.705
102.688
103.809
101.394
91.077
67.7565
63.0268
81.83
78.1106
82.8806
93.0239
99.4169
106.525
114.535
84.8604
85.1396
85.3191
85.3108
85.0904
84.8072
84.7562
85.1158
86.0743
87.2339
88.2389
89.6711
92.1682
92.4249
97.0108
100.321
102.214
103.174
104.882
102.726
91.8186
76.535
61.2926
83.4249
77.1126
82.369
93.2493
99.3835
106.515
114.97
84.4336
84.8877
85.18
85.127
84.6384
83.9605
83.5912
83.8955
85.094
86.4285
87.2173
88.8399
92.0731
93.4981
97.7943
100.861
102.772
103.584
106.055
104.236
92.7719
43.823
1.44005
85.1896
75.9503
81.9724
93.4956
99.3326
106.46
115.374
84.1134
84.8539
85.3789
85.2725
84.252
82.8852
82.0359
82.2985
83.9648
85.4788
85.3539
87.7217
92.0786
94.632
98.5758
101.519
103.397
103.836
107.321
105.917
93.8197
18.7931
1.06136
86.2174
75.0207
81.9141
93.7651
99.2572
106.344
115.719
83.929
85.0835
86.2105
86.1927
83.9661
81.3859
79.8584
80.0258
82.7956
84.3116
82.5277
86.2351
92.218
95.675
99.3225
102.386
104.139
103.803
108.65
107.78
94.4426
0.360976
1.04292
0.152646
1.19528
82.6024
93.9858
99.1477
106.148
115.962
43.4423
58.562
71.935
79.5984
76.0595
73.216
76.4082
77.1194
82.3226
83.297
80.3013
84.8871
92.6123
96.6281
100.342
103.61
105.095
103.252
109.992
109.898
95.2864
1.45587
0.994829
0.234737
0.371706
77.3994
94.2427
98.9946
105.849
116.039
0.132626
0.127878
0.126566
0.122396
0.116196
0.115142
0.117296
0.16761
0.192069
52.9851
78.0944
83.9224
93.6477
97.5488
101.695
105.22
106.458
101.945
111.288
112.306
96.3039
1.50236
0.914504
0.318644
0.324749
-0.913336
94.4292
98.8045
105.411
115.857
0.136783
0.139722
0.14101
0.133218
0.124832
0.116758
0.123774
0.143304
0.132253
0.0938799
0.106816
83.6061
96.0492
98.301
102.892
107.108
108.367
100.812
112.581
113.808
97.2555
1.5156
0.835655
0.360489
0.297527
0.153235
94.55
98.659
104.775
115.263
0.134469
0.130796
0.127572
0.125515
0.122725
0.111085
0.114644
0.12636
0.11665
0.061155
0.0529915
0.298259
101.18
98.5542
103.112
108.848
109.637
102.142
114.332
114.156
95.7851
1.67183
0.769273
0.373905
0.279724
0.152333
92.4401
98.7571
104.07
113.986
0.143079
0.124148
0.122962
0.121585
0.123126
0.108719
0.104236
0.108836
0.0959263
0.0237992
0.0122016
0.0702219
94.2052
99.1946
103.184
110.436
109.624
103.348
116.241
115.504
89.9681
1.91002
0.712222
0.372818
0.266409
0.149709
-0.150018
99.2371
103.464
111.458
200.537
108.138
0.17008
0.00503262
0.0154644
0.0221449
0.0735814
0.18354
3.18775
99.6106
117.229
118.101
104.697
108.563
99.5693
90.7792
0.212843
0.213111
0.0295236
0.0392605
0.0682912
0.124531
0.156511
0.160881
0.147439
0.166408
0.131015
0.1219
0.118934
0.121339
95.6271
111.786
0.139469
-0.00257606
0.0134254
0.0219074
0.0699994
0.160833
-1.57252
104.826
116.488
119.277
104.388
110.785
98.441
12.8932
0.137327
-0.0380349
0.0137913
0.0305822
0.0481003
0.10894
0.146228
0.151149
0.139784
0.127295
0.119779
0.111921
0.110282
0.119162
83.7944
114.914
0.105868
-0.0106091
0.0113943
0.0217797
0.0340619
0.12062
0.706178
113.15
115.989
120.655
105.232
113.393
91.1546
0.102892
0.165357
0.0298653
0.0130043
0.0426143
0.0324339
0.0930834
0.133162
0.143259
0.131672
0.116986
0.106807
0.097949
0.0935196
0.11421
85.2646
18.5537
0.0768771
-0.017956
0.00940396
0.0217207
0.0424962
0.088641
-3.76026
73.019
136.841
121.781
106.921
118.165
32.2129
-0.0174305
0.16894
0.0466655
0.0157788
0.0279305
0.0288033
0.0799149
0.117605
0.127821
0.118325
0.103935
0.0923978
0.0821206
0.0676155
0.160307
5.68914
0.0716412
0.0539151
-0.0238549
0.00751511
0.0216709
0.0493749
0.0474328
-3.00492
35.6825
136.272
122.128
108.621
123.562
-0.299089
0.0191138
0.218185
0.0598858
0.0184024
0.0250527
0.0314616
0.0772476
0.15191
0.114464
0.10233
0.0886154
0.0775701
0.0685661
0.0626089
6.94681
-0.0574337
-0.0565305
0.0306965
-0.0279139
0.00579035
0.0216057
0.0481774
0.027724
-2.16112
3.01977
126.89
122.707
108.822
126.71
0.0868643
-0.0121361
0.0604159
0.0638704
0.0172289
0.112923
0.032682
0.0715621
0.0885655
0.093475
0.084642
0.0720806
0.0638732
0.0570916
0.0546209
0.0767571
-0.0853422
-0.0585696
0.0131739
-0.0302078
0.00428034
0.0214952
0.0653219
0.0238121
-2.24611
2.51374
129.267
124.649
105.985
-0.669571
0.220644
-0.0110251
0.0539383
0.0703346
0.0133119
0.106559
0.0277651
0.0931941
0.233476
0.0755528
0.0673128
0.055459
0.0589776
0.0488055
0.0517797
0.0556319
-0.0473498
-0.0580778
-0.00157144
-0.0311018
0.00302893
0.0213354
0.0332974
0.0260956
-1.62408
2.85618
138.984
130.779
7.7038
-0.189491
0.0495124
-0.00711519
0.0475321
0.0899871
0.0156457
0.109659
0.00888052
0.0826161
0.137399
0.0624411
0.052683
0.0415003
0.0380332
0.0413097
0.0429992
0.046569
-0.0494345
-0.0570002
-0.0135333
-0.0309761
0.00205351
0.0211496
0.0358157
0.0457598
-0.942417
1.60059
161.577
137.188
-0.06633
-0.132593
-0.00946822
-0.00594729
0.0432282
0.26916
0.0223535
0.0244687
0.026155
0.0460808
0.0645938
0.0525433
0.0460811
0.0316463
0.0281816
0.029315
0.0333936
0.038199
-0.0378373
-0.0559937
-0.022784
-0.0301568
0.00133052
0.0209409
0.0401093
0.0564645
-0.420627
0.728209
-0.430711
-0.217595
-0.0509249
-0.116373
-0.0499449
-0.0104115
0.0433869
0.067329
0.0461218
0.0360846
0.0472308
0.0503457
0.0561336
0.046352
0.0341543
0.0254264
0.0224446
0.0253759
0.0279319
0.0322875
-0.0235581
-0.054507
-0.0293643
-0.028878
0.000824378
0.0207207
0.043019
0.0648659
-0.17093
0.0570924
-0.32385
-0.273167
-0.0860986
-0.106083
-0.101216
-0.0215415
0.0507434
0.0606257
0.0565394
0.053183
0.0558567
0.0553461
0.0548977
0.0439523
0.0320563
0.0229505
0.0195622
0.0252702
0.0357801
0.0290742
-0.0633292
-0.052667
-0.0333705
-0.0272999
0.000519769
0.0205051
0.0439276
0.0684774
-0.000944287
-0.0957865
-0.218324
-0.388976
-0.0835283
-0.0864275
-0.167927
-0.0392723
0.077216
0.0627251
0.0636165
0.21613
0.0655499
0.0590899
0.0533304
0.0443723
0.033456
0.0382462
0.0207951
0.0203646
0.0233298
0.0281936
-0.0470475
-0.0499872
-0.0350721
-0.0254951
0.00039895
0.0202767
0.045736
0.083231
0.0488075
-0.547944
-0.223383
0.153779
-0.0389524
-0.0597868
-0.266928
2.57537
0.0798282
0.0639034
0.0657268
0.324076
0.0667373
0.0609319
0.0539289
0.0461313
0.0367788
0.0296183
0.0259843
0.0258238
0.0279349
0.0316264
-0.0336729
-0.0466817
-0.0348869
-0.0235253
0.000434001
0.019996
0.0430105
0.0975522
0.0709749
-0.32949
-0.287699
0.233909
-0.0618895
-0.0190101
-0.145995
2.90322
0.0567579
0.066783
0.0730192
0.0777982
0.0726632
0.0623297
0.0609643
0.0476225
0.0394401
0.0345858
0.0317037
0.0324583
0.0353912
0.0386528
-0.0195749
-0.0432582
-0.0333435
-0.0214571
0.000596837
0.0196226
0.03997
0.0920256
0.067115
-0.179552
-0.233155
-0.212347
-0.066417
-0.0329599
-0.0840965
0.0576512
0.0486573
0.0634044
0.0710823
0.0727164
0.0706349
0.0631474
0.0535973
0.0475889
0.0404491
0.0396753
0.039736
0.0398234
0.0374783
0.035448
-0.00699928
-0.0398927
-0.0309598
-0.0193307
0.000848438
0.0191147
0.0390535
0.0739772
0.0464921
-0.129341
-0.141643
-0.152073
-0.0770772
-0.0561604
-0.0541089
0.117167
0.0417046
0.0554394
0.066174
0.0641416
0.0637339
0.0588934
0.0506007
0.0433046
0.0414893
0.0425575
0.0474418
0.0651854
0.0911188
0.0494969
-0.0118442
-0.0350223
-0.0281434
-0.0171999
0.00114459
0.0184415
0.037333
0.0618801
0.0454637
-0.0545741
-0.0256163
-0.0953638
-0.0839698
-0.0646128
-0.0460409
0.0994868
0.0336522
0.0450627
0.0626421
0.0535766
0.053902
0.0526387
0.0489217
0.0426515
0.0406736
0.0392705
0.0327677
0.0338652
0.128263
0.0872068
-0.0493192
-0.0293544
-0.0251986
-0.0151163
0.00146104
0.0175795
0.0350583
0.0527196
0.0323446
-0.0410697
0.130938
-0.0622951
-0.0862689
-0.0790458
-0.0527314
0.0883398
0.0186149
0.0317073
0.0387416
0.0427273
0.0430523
0.0461206
0.0426574
0.0399481
0.0445223
0.0393474
0.0377001
0.0391302
0.0486704
0.0592232
0.00701546
-0.0229945
-0.0223296
-0.0131102
0.00177405
0.016508
0.0317299
0.0433251
0.0147053
-0.01172
0.0196167
-0.0472678
-0.109784
-0.110384
-0.07081
-0.0309674
0.00103473
0.0183553
0.0277254
0.0318294
0.0953877
0.0396017
0.0356479
0.0366386
0.0394245
0.040138
0.0421738
0.0459642
0.0501807
0.0540476
-0.0208076
-0.0177833
-0.0196624
-0.0112105
0.00204596
0.0152136
0.0281912
0.0347238
0.0163214
0.00516188
0.0174039
-0.0405628
-0.135273
-0.149913
-0.106702
-0.0522277
-0.00970254
0.0061742
0.017271
0.023908
0.0245304
0.0261195
0.0289908
0.0311983
0.0334159
0.0359029
0.0388917
0.0419911
0.0449559
0.0477872
-0.00274026
-0.0134786
-0.0172637
-0.0094381
0.00224698
0.0136937
0.0252
0.0276407
0.0168408
0.00779984
0.0025819
-0.0285535
-0.154415
-0.179863
-0.141347
-0.0739392
-0.0263725
0.00108684
0.00774408
0.0138847
0.0175561
0.0206394
0.0232933
0.0257003
0.0282005
0.0308417
0.0335069
0.0361079
0.038554
0.040835
0.0165412
-0.0111552
-0.0151029
-0.00780042
0.00235152
0.0119789
0.0196637
0.0215654
0.0151557
0.00901501
-0.028374
0.657839
-0.150974
-0.182441
-0.151522
-0.0836321
-0.0313683
-0.00518556
0.00148874
0.00578798
0.00918562
0.012305
0.0152532
0.0180016
0.0206573
0.0232829
0.0257561
0.028036
0.0301505
0.0320592
-0.0227573
-0.011836
-0.0130552
-0.00629974
0.00233622
0.0100599
0.0152362
0.015774
0.0120769
-0.00350552
-0.0351203
-0.0758694
-0.124204
-0.143995
-0.124445
-0.0670289
-0.0250267
-0.00649132
0.00300697
-0.00183999
-0.00104858
0.000405464
0.00258386
0.00518659
0.00783155
0.0103121
0.0124976
0.0143811
0.0159622
0.0171391
-0.0182965
-0.0121479
-0.0109756
-0.00494055
0.00218807
0.00799208
0.013211
0.00842347
3.97085e-06
-0.0187991
-0.0397065
-0.0659497
-0.0951342
-0.102541
-0.0801458
-0.0158354
-0.0198582
-0.00470571
-0.00546902
-0.0117254
-0.0146844
-0.0157915
-0.0165619
-0.0150594
-0.0145234
-0.0122086
-0.0102574
-0.00878199
-0.00777707
-0.00732127
-0.0106804
-0.0108043
-0.00880088
-0.00373064
0.00191262
0.0057894
0.00494939
-0.000749069
-0.0171478
-0.0471184
-0.0533302
-0.0617025
-0.0711282
-0.0291264
-0.0545399
-0.0288585
-0.0169792
-0.0144101
-0.0204568
-0.0261737
-0.0330421
-0.0374419
-0.043081
-0.0452094
-0.0424295
-0.0445163
-0.0426767
-0.0409231
-0.039763
-0.0392273
-0.0059598
-0.0082946
-0.00663395
-0.00267729
0.00154352
0.00353177
0.00191124
-0.0118535
-0.0566926
-0.107271
-0.0688629
-0.0558046
-0.0523836
-0.0506543
-0.0426729
-0.0308481
-0.0252626
-0.0262343
-0.0340581
-0.0405858
-0.0527836
-0.0625577
-0.0682344
-0.0726801
-0.075132
-0.0778261
-0.0703863
-0.0670078
-0.0659584
-0.0657951
-0.00315987
-0.00578811
-0.00467004
-0.00178564
0.00114427
0.00155312
-0.00404305
-0.0216226
-0.0927558
-0.144382
-0.0861155
-0.0499951
-0.0403062
-0.0369162
0.00447106
-0.0299612
-0.0282857
-0.0319094
-0.034598
-0.0452492
-0.0661163
-0.0692523
-0.0730833
-0.0753599
-0.0746854
-0.0696863
-0.0485405
-0.0762897
-0.0775907
-0.0786431
-0.00156712
-0.00375356
-0.00299808
-0.00105441
0.000790438
0.00018678
-0.0062545
-0.0170626
-0.0536443
-0.150757
-0.0817404
-0.0440153
-0.0324007
-0.0274137
0.0891114
-0.0163598
-0.0247464
-0.0333521
0.0217695
-0.0404941
-0.0300184
0.0171149
0.0854722
-0.054094
-0.0696835
-0.0748622
-0.0747964
-0.0734065
-0.0725218
-0.071613
-0.000661358
-0.00196542
-0.00160349
-0.000482418
0.000511496
-0.000322211
-0.00557975
0.042867
-0.0315228
-0.0733233
-0.0569909
-0.0394
-0.0294496
-0.0232636
-0.0197208
-0.0181649
-0.0171682
-0.0249396
-0.0281631
-0.00241484
-0.0269277
-0.0334213
-0.0377693
-0.028251
-0.0589357
-0.0525132
-0.0452604
-0.0438644
-0.0433396
-0.0428201
0.000224827
-9.18629e-05
-0.000101473
2.5238e-05
0.000114257
-8.10141e-06
-0.000677984
-0.00228186
-0.00354174
-0.02362
-0.0439271
-0.0401976
-0.029832
-0.0205536
-0.013805
-0.00930772
-0.00727804
-0.00882049
-0.01278
-0.0153338
-0.0157088
-0.013622
-0.0104408
-0.00783547
-0.00517601
-0.00355443
-0.000797766
0.00151314
0.00280529
0.00421073
0.21927
0.118543
0.117046
0.116704
0.112452
0.101733
0.0973921
0.0972854
0.0849794
0.00996814
-0.0107988
0.0413901
0.0514981
101.035
103.421
111.428
109.81
105.076
117.915
117.557
87.3717
1.87042
0.675254
0.36773
0.258385
0.148243
-0.102965
33.1897
102.941
108.944
0.122887
0.113921
0.111471
0.113084
0.106668
0.0967885
0.0921051
0.0894159
0.0726657
0.0100178
-0.01981
0.0240092
0.0211729
-1.6355
103.773
111.666
108.676
103.37
119.85
118.173
90.2176
2.54877
0.646651
0.362325
0.25268
0.147225
-0.0713816
-0.108544
102.417
107.954
0.120349
0.11392
0.0955425
0.111518
0.0980151
0.0912759
0.0864646
0.0820594
0.0656835
0.00853274
-0.0186864
0.0174054
0.146934
0.121883
101.62
112.733
108.926
104.976
122.31
119.89
36.3746
2.14472
0.615025
0.355442
0.246875
0.146068
-0.0466206
-0.0744448
93.9647
108.457
0.115076
0.105834
0.0991767
0.17509
0.0836564
0.0854902
0.0809913
0.0755074
0.0611696
0.0166538
-0.014243
0.0193338
0.134217
0.128268
0.606154
115.463
110.095
106.503
124.135
120.703
-8.39602
1.36228
0.581238
0.347076
0.240914
0.1447
-0.0259625
-0.0414569
-0.0619589
109.644
0.105872
0.0931404
0.0920643
0.0861698
0.0761759
0.081471
0.0759804
0.0697785
0.0587942
0.033029
0.0015628
0.0220014
0.0515562
0.107414
0.259922
81.986
107.504
108.297
124.979
120.108
0.56539
1.17564
0.546024
0.337146
0.234674
0.143023
-0.0076095
-0.01755
-0.0191102
111.843
0.0415239
0.0706059
0.0793501
0.0770042
0.0729255
0.0899446
0.0711849
0.0646958
0.0586594
0.0354536
0.0220991
0.0242776
0.0369314
0.066458
0.153178
-0.221876
57.9007
110.813
125.147
121.689
-1.30306
0.596888
0.502282
0.32559
0.228072
0.141033
0.0086909
-0.00240654
0.0094261
2.70679
0.0564728
0.0622158
0.0680728
0.0688257
0.0734059
0.0786285
0.0674258
0.0600092
0.0575159
0.0437935
0.0314036
0.0233454
0.0244167
0.0396638
0.0368155
-0.317349
-0.296139
68.3111
124.48
127.618
-1.30729
0.140076
0.455393
0.31231
0.221015
0.138674
0.0227809
0.00760152
0.0227984
-0.464551
0.0503143
0.0554883
0.0601916
0.0629241
0.559706
0.0700253
0.0564033
0.0613729
0.0581112
0.0453115
0.037958
0.0207609
0.00528022
-0.0445261
1.29643
-0.355233
-0.3031
-0.310683
76.5365
-0.0532667
-1.19668
-0.175189
0.419248
0.297142
0.213422
0.13593
0.034492
0.0145311
0.0320411
-0.378566
0.0428248
0.0478682
0.0531811
0.060283
2.06772
0.0820234
0.0527748
0.0572843
0.0606501
0.0441371
0.0415559
0.019785
-0.00836357
-0.0631682
3.2996
-0.076092
-0.334648
-0.314145
-0.449918
-0.581585
-1.05671
-0.178254
0.348883
0.280184
0.205219
0.132775
0.0436133
0.0197758
0.0379093
-0.286192
0.0365955
0.0415902
0.0471087
0.0460584
0.0441609
0.0509395
0.0510711
0.0484468
0.0410797
0.0400334
0.0873019
0.0186592
-0.0108232
-0.0321853
2.76327
0.135898
-0.247974
-0.315446
-0.43794
-0.556512
-0.981503
-0.248364
0.304903
0.261427
0.196338
0.129192
0.0502885
0.0235408
0.0348287
-0.203584
0.0334305
0.0386929
0.0439363
0.057032
0.0503772
0.0505659
0.0490293
0.0448796
0.0399435
0.0360602
0.0854154
0.0185823
-0.0111204
-0.0318724
3.09301
-0.216149
-0.242036
-0.312735
-0.441704
-0.529174
-0.818009
-0.232176
0.249243
0.24099
0.186716
0.125173
0.0548865
0.0261541
0.0363932
-0.136106
0.0331011
0.0387985
0.0449013
0.0502002
0.0524788
0.0506183
0.0479832
0.0430595
0.0386024
0.0437281
0.031138
0.0157101
-0.0114099
-0.00624613
0.16772
-0.188877
-0.0899275
-0.316914
-0.449996
-0.453253
-0.756141
-0.229849
0.203616
0.219157
0.176328
0.12072
0.0578789
0.0280137
0.0364807
-0.085365
0.0363886
0.0418144
0.0478532
0.0528791
0.0577072
0.0629421
0.0498775
0.0490978
0.0398946
0.0351832
0.0260168
0.0122743
-0.0103589
-0.0296921
-0.0683109
-0.189131
-0.262413
-0.302816
-0.440264
-0.487378
-0.588357
-0.283862
0.155595
0.196338
0.165179
0.115831
0.0596685
0.0294227
0.0356204
-0.0496038
0.0404657
0.0465573
0.0544794
0.060153
0.061591
0.0618131
0.0577115
0.0611801
0.0411335
0.0332806
0.025831
0.019266
-0.00860477
-0.0371291
-0.0788482
-0.186787
-0.249012
-0.318613
-0.290859
-0.477461
-0.405623
-0.307057
0.112395
0.173043
0.153319
0.110493
0.0605385
0.0306091
0.0342391
-0.0259148
0.0439279
0.0542672
0.0657483
0.0663956
0.0657192
0.0585109
0.0514356
0.0444169
0.0435287
0.0359947
0.0221201
0.0337967
-0.0123893
-0.0425176
-0.100047
-0.168004
-0.246906
0.203585
-0.32552
-0.465712
-0.250478
-0.243324
0.0754757
0.14991
0.140866
0.1047
0.0606735
0.0317036
0.0326634
-0.0111176
0.0645741
0.0681339
0.0805296
0.0685222
0.0715434
0.0572899
0.0448001
0.0483896
0.051452
0.0394207
0.0240899
0.0177409
0.01338
-0.0450658
-0.106927
-0.176181
-0.249522
0.236798
-0.320773
-0.422986
-0.250536
-0.205758
0.045642
0.127575
0.127962
0.0984489
0.0601627
0.0327506
0.0311122
-0.00237652
0.0737167
0.0749216
0.0789227
0.429445
0.213676
0.0671925
0.0739013
1.04474
0.0610933
0.0451687
0.0278113
0.00478944
-0.0128913
-0.0435691
-0.0418941
-0.19469
-0.248453
-0.0471884
-0.30671
-0.444562
-0.166251
-0.179793
0.0241897
0.106632
0.11481
0.0917675
0.0590042
0.033691
0.0296888
0.00250463
0.0649063
0.0671241
0.0673744
0.0682091
0.070945
0.0758573
0.0886466
0.0750571
0.0704292
0.052327
0.0323195
0.00556139
-0.0238574
-0.00302222
-0.110532
-0.191245
-0.242418
-0.0574951
-0.276879
-0.399017
-0.321284
-0.115682
0.0102757
0.087538
0.101645
0.0846951
0.057165
0.0343674
0.0283785
0.00507059
0.0573758
0.0607202
0.0648397
0.0718377
0.0735944
0.0784421
0.0801813
0.0749649
0.0679473
0.0555274
0.0343533
0.00309094
-0.0356637
-0.0658527
-0.117626
-0.184503
-0.229195
-0.109502
0.676187
-0.294773
-0.286974
-0.094877
0.00181485
0.0705719
0.0887056
0.0772971
0.0546409
0.0346025
0.0270764
0.006298
0.050664
0.0538553
0.0575363
0.0632529
0.0681192
0.0731033
0.0740677
0.0710951
0.0639434
0.0503906
0.0260975
-0.00929857
-0.0502426
-0.0880809
-0.132687
-0.176319
-0.205328
-0.22124
-0.08617
-0.177551
-0.246317
-0.0793929
-0.00338631
0.055815
0.0762242
0.0696696
0.051475
0.0342519
0.0256259
0.00674129
0.0431247
0.045578
0.0482218
0.0509495
0.0534475
0.0559943
0.0571074
0.0541689
0.046334
0.0306123
0.00856008
-0.0430784
-0.0868834
-0.126738
-0.159165
-0.181972
-0.186104
-0.190502
-0.139013
-0.099187
-0.0954249
-0.066029
-0.006848
0.0431829
0.0644138
0.0619207
0.0477581
0.0332374
0.023894
0.00670041
0.0338782
0.0356901
0.0372819
0.0383241
0.0385463
0.108356
0.0862223
0.0235342
0.00797977
-0.00964424
-0.0606929
-0.109398
-0.1562
-0.192374
-0.199335
-0.194284
-0.171438
-0.151561
-0.140296
-0.0786016
-0.0716337
-0.0552987
-0.00951457
0.0324886
0.0534409
0.0541652
0.0435848
0.0313758
0.021883
0.0063454
0.0179527
0.0183467
0.0177264
0.0150313
0.00993679
0.00166075
-0.00854882
-0.0240824
-0.0515543
-0.0721741
-0.149954
-0.159006
-0.203634
-0.300831
-0.27551
-0.218632
-0.162922
-0.124671
-0.099295
-0.0797353
-0.0552494
-0.049764
-0.0120662
0.0234936
0.0434269
0.0465271
0.0390322
0.0288635
0.0196906
0.0057947
-0.00738213
-0.00805044
-0.00987174
-0.0136131
-0.0201948
-0.0298724
-0.0431745
-0.0695918
-0.10969
-0.168666
-0.247142
-0.2809
-0.375984
-0.434876
-0.372054
-0.236142
-0.157107
-0.0939245
-0.0444131
0.586047
-0.0675742
-0.0530052
-0.0145732
0.0160339
0.0344555
0.0391176
0.0341831
0.0258868
0.0173853
0.00513418
-0.0392726
-0.0401273
-0.042229
-0.0461545
-0.0528606
-0.0638895
-0.0814166
-0.107
-0.147659
-0.207021
-0.287856
-0.379232
-0.463423
-0.510442
-0.445607
-0.287037
-0.144898
-0.0624545
-0.00971637
0.129613
-0.183432
-0.040407
-0.0159292
0.0100503
0.0265749
0.0320328
0.0291179
0.0225412
0.0149833
0.00441944
-0.0663011
-0.0673204
-0.069334
-0.0728834
-0.0787375
-0.0879026
-0.102254
-0.124759
-0.158369
-0.205847
-0.269392
-0.346024
-0.419916
-0.437967
-0.407395
-0.253292
-0.0890164
-0.0339726
0.0141694
0.384725
-0.0704461
-0.0266605
0.00772241
0.00550622
0.0197977
0.0253469
0.0239036
0.0188824
0.0124777
0.00367614
-0.079799
-0.0812687
-0.0828088
-0.0854608
-0.089868
-0.0965165
-0.106667
-0.121334
-0.142224
-0.169959
-0.203758
-0.243721
-0.279606
-0.292791
-0.253912
-0.155581
-0.0528629
-0.0148746
0.0121174
0.613017
-0.0302919
-0.0313786
0.00451216
0.00251871
0.0140976
0.0190811
0.018591
0.01495
0.0098547
0.002908
-0.0665723
-0.0572432
-0.091374
-0.0872092
-0.0848166
-0.0874133
-0.0938144
-0.0978667
-0.106786
-0.104356
-0.0471053
-0.114322
0.000420855
-0.121517
-0.0919
-0.0517856
0.00491107
-0.00171878
0.00344218
-0.00477203
-0.0100087
-0.0188394
-0.0110046
0.00137256
0.00935966
0.0131991
0.0132
0.0107679
0.00709751
0.00210686
-0.0406802
-0.0283036
-0.0328086
-0.0333862
-0.0608705
-0.0601669
-0.0613018
-0.0526591
-0.0118501
0.0963902
-0.0525481
-0.0483475
-0.0414613
-0.0408822
-0.0203502
-0.00194496
0.0223687
0.00684443
0.00280731
-0.00353696
-0.00783923
-0.0114615
-0.00513969
0.00110509
0.00529163
0.00757557
0.00769524
0.0063302
0.00418128
0.0012579
0.00320258
-0.00179441
-0.00529124
-0.00819138
-0.016326
-0.00964961
-0.0169418
0.0237147
0.0120255
-0.0170164
-0.0210244
0.35345
-0.00415194
8.02861e-05
0.00121087
0.00361527
0.0039786
0.00247011
0.000277162
-0.000803876
-0.0026224
-0.00096197
0.000399325
0.000635852
0.000509109
0.000568974
0.000488236
0.000351347
0.000237022
3.86183e-05
)
;
boundaryField
{
leftWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
120
(
94.6495
94.6797
94.7544
94.869
95.0229
95.2209
95.4671
95.7654
96.1201
96.5361
97.0189
97.575
98.2115
98.9356
99.7547
100.676
101.706
102.848
104.105
105.471
106.937
108.48
110.064
111.628
113.083
114.296
115.076
115.152
114.151
111.587
94.6587
94.7118
94.8072
94.9407
95.1161
95.3378
95.6095
95.9354
96.3201
96.7687
97.2874
97.8827
98.5621
99.3328
100.202
101.177
102.263
103.462
104.775
106.193
107.701
109.27
110.853
112.376
113.73
114.755
115.223
114.814
113.095
109.652
94.6491
94.6677
94.7318
94.8369
94.9804
95.1671
95.4008
95.6857
96.0259
96.426
96.8916
97.4287
98.0444
98.7459
99.5406
100.436
101.438
102.552
103.78
105.12
106.562
108.089
109.667
111.243
112.736
114.025
114.935
115.218
114.528
112.403
94.6523
94.6944
94.7798
94.9035
95.0681
95.2778
95.5366
95.8486
96.2182
96.6503
97.1508
97.7263
98.384
99.1311
99.9752
100.923
101.981
103.152
104.436
105.829
107.317
108.874
110.46
112.006
113.415
114.541
115.174
115.021
113.678
110.67
)
;
}
rightWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
120
(
110.047
110.067
110.11
110.176
110.266
110.38
110.519
110.682
110.871
111.086
111.327
111.595
111.89
112.212
112.561
112.936
113.335
113.754
114.189
114.633
115.072
115.489
115.856
116.132
116.252
116.123
115.599
114.458
112.359
108.843
110.047
110.054
110.086
110.14
110.218
110.32
110.447
110.598
110.774
110.976
111.203
111.458
111.739
112.048
112.384
112.746
113.132
113.542
113.97
114.411
114.854
115.285
115.681
116.009
116.216
116.227
115.922
115.124
113.556
110.803
110.05
110.076
110.125
110.197
110.292
110.413
110.557
110.727
110.923
111.144
111.392
111.666
111.968
112.297
112.653
113.033
113.438
113.862
114.3
114.743
115.179
115.587
115.936
116.179
116.248
116.036
115.383
114.04
111.628
107.721
110.046
110.06
110.098
110.158
110.242
110.35
110.482
110.639
110.822
111.03
111.265
111.526
111.814
112.129
112.472
112.84
113.233
113.647
114.079
114.522
114.963
115.388
115.771
116.074
116.241
116.186
115.778
114.817
112.998
109.867
)
;
}
lowerWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
240
(
93.4631
89.3229
88.3307
87.1981
85.2807
83.7364
83.3402
85.046
88.8825
92.9516
95.7449
97.0792
97.3367
96.961
96.2874
95.5229
94.7797
94.1103
93.5347
93.0551
92.6649
92.3537
92.1103
91.9243
91.786
91.6871
91.62
91.5784
91.5565
91.5497
91.5546
91.5723
91.6067
91.6625
91.7456
91.8627
92.022
92.2332
92.5074
92.8566
93.2915
93.8174
94.429
95.1021
95.7851
96.3895
96.7719
96.7012
95.8446
93.8269
90.4485
86.2672
83.0772
82.3186
83.7928
87.3363
92.8768
99.3211
105.451
109.654
94.6495
89.8644
88.4901
87.5871
85.7644
84.0448
83.286
84.3796
87.8137
92.0227
95.1917
96.8647
97.3474
97.0932
96.4703
95.715
94.9597
94.2692
93.6694
93.1662
92.7546
92.4247
92.1654
91.966
91.8166
91.7085
91.6342
91.5867
91.5604
91.5502
91.5523
91.5665
91.5963
91.6462
91.7219
91.8298
91.9777
92.1749
92.4323
92.7617
93.1743
93.6775
94.2691
94.9305
95.6177
96.2526
96.7081
96.7783
96.1536
94.4578
91.4107
87.3038
83.6713
82.2755
83.2362
86.2489
91.3581
97.7157
104.054
109.023
91.6089
88.8813
88.1525
86.7325
84.814
83.4962
83.5371
85.8782
89.9905
93.8151
96.2157
97.2294
97.2852
96.8065
96.0942
95.3274
94.5998
93.9534
93.4027
92.9469
92.578
92.2853
92.0575
91.8846
91.7572
91.6671
91.6072
91.5711
91.5535
91.5499
91.5576
91.579
91.6181
91.68
91.7707
91.8973
92.0682
92.2937
92.5851
92.9543
93.4111
93.959
94.5887
95.2701
95.9438
96.51
96.8074
96.5792
95.4731
93.1271
89.453
85.3181
82.6599
82.4903
84.4606
88.5286
94.4269
100.908
106.805
110.047
93.952
90.9522
88.6252
87.9025
86.2476
84.3981
83.3412
83.8888
86.8191
91.0461
94.5595
96.5838
97.3141
97.2008
96.641
95.9025
95.1393
94.4295
93.8065
93.28
92.8469
92.4981
92.2226
92.0095
91.8488
91.7315
91.6496
91.5961
91.5652
91.5514
91.5507
91.5615
91.5869
91.6312
91.6997
91.7987
91.9355
92.1191
92.3599
92.6697
93.0601
93.5398
94.1096
94.7562
95.4427
96.1008
96.6182
96.8128
96.401
95.0153
92.3228
88.3955
84.4349
82.3856
82.7928
85.2714
89.8663
96.0295
102.461
107.918
)
;
}
atmosphere
{
type totalPressure;
rho rho;
psi none;
gamma 1;
p0 uniform 0;
value nonuniform List<scalar>
480
(
0
0
0
0
0
0
0
0
-0.00396839
-0.013866
-0.0179642
-0.0176942
-0.0161879
-0.0144824
-0.0127873
-0.0111956
-0.00947505
-0.00753382
-0.00575437
-0.00432595
-0.00325771
-0.00180462
-7.6702e-05
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-0.0229329
-0.0451622
-0.0414667
-0.0305361
-0.0206681
-0.013383
-0.00820914
-0.00470685
-0.00535785
-0.0108593
-0.0150561
-0.0146735
-0.012292
-0.00901596
-0.00547956
-0.00344162
-0.00227853
-0.00148322
-0.00102635
-0.000491211
-0.000216096
-1.10855e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-0.00019976
-0.000414533
0
0
0
0
-5.71265e-05
-0.000158565
-0.000222279
-0.000213809
-0.000103204
-1.27589e-06
0
0
0
0
0
0
0
-0.0298235
-0.0415423
-0.038019
-0.0311965
-0.0245176
-0.0188457
-0.0143149
-0.0107877
-0.00805741
-0.00595545
-0.00435815
-0.00316583
-0.00228749
-0.00164288
-0.00116799
-0.000816778
-0.000556963
-0.000365631
-0.000226448
-0.000127542
-6.03555e-05
-1.93678e-05
-1.56655e-07
-7.97595e-08
0
0
0
0
0
0
0
0
-0.000613283
-0.0312214
-0.0458434
-0.0388878
-0.0278451
-0.0186088
-0.011921
-0.00716206
-0.00424478
-0.0064519
-0.0122186
-0.0152595
-0.0140481
-0.0115784
-0.00803468
-0.00482713
-0.00304562
-0.0021627
-0.00136622
-0.0008745
-0.000393455
-0.000157581
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-0.000327103
-0.000341974
0
0
0
0
-8.57693e-05
-0.000178638
-0.000229133
-0.000195018
-6.7926e-05
0
0
0
0
0
0
0
-0.000164457
-0.00931816
-0.0166478
-0.018157
-0.0169823
-0.0153722
-0.0136166
-0.0120005
-0.0103698
-0.00855832
-0.00659273
-0.0049739
-0.0037914
-0.00266141
-0.000775625
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-0.00953978
-0.0391122
-0.0406158
-0.0347473
-0.0277917
-0.0215642
-0.0164644
-0.0124557
-0.00934762
-0.00694638
-0.00510758
-0.00372272
-0.00269683
-0.00194344
-0.00138971
-0.000980831
-0.000678267
-0.000454769
-0.000291008
-0.000173027
-9.07205e-05
-3.69976e-05
-7.79901e-06
0
0
0
0
0
0
0
0
0
-0.0135801
-0.0425524
-0.0437084
-0.0333914
-0.0229562
-0.01502
-0.00937667
-0.00539522
-0.00464172
-0.00934982
-0.0143832
-0.0150681
-0.0129482
-0.00997625
-0.00627004
-0.00384001
-0.00248004
-0.00166897
-0.00122171
-0.000608081
-0.000270606
-4.6726e-05
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-7.20467e-05
-0.00044213
-7.79439e-05
0
0
0
-2.88189e-05
-0.00013704
-0.00021143
-0.000225383
-0.000137117
-1.22427e-05
0
0
0
0
0
0
0
0
0
-0.00548771
-0.0378236
-0.0452505
-0.0362043
-0.0253557
-0.0167616
-0.0106127
-0.00623311
-0.00429695
-0.00781476
-0.0133807
-0.0152396
-0.0135555
-0.0108518
-0.00712391
-0.00432089
-0.0027287
-0.00190595
-0.00128692
-0.000736681
-0.0003183
-0.000118167
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-5.86202e-07
-0.000414019
-0.000218696
0
0
0
-5.44923e-06
-0.000112887
-0.00019671
-0.00023045
-0.000168537
-3.56131e-05
0
0
0
0
0
0
0
0
-0.00159029
-0.0117762
-0.0174719
-0.0179806
-0.0165927
-0.0149379
-0.0131998
-0.0116036
-0.00992708
-0.00805158
-0.00616927
-0.00463194
-0.00352941
-0.0022769
-0.000328206
0
0
0
0
0
0
0
0
0
0
0
0
0
-0.000410436
-0.0355609
-0.0413565
-0.0364515
-0.0294937
-0.0230223
-0.0176331
-0.013366
-0.0100526
-0.00748987
-0.00552158
-0.00403221
-0.002925
-0.00211079
-0.00151294
-0.00107195
-0.000745694
-0.000504475
-0.000327237
-0.000198871
-0.000108415
-4.80335e-05
-1.29607e-05
-1.40076e-06
0
0
0
0
0
0
0
0
-0.00667457
-0.0154769
-0.01817
-0.0173503
-0.0157823
-0.0140387
-0.0123888
-0.0107862
-0.00902744
-0.00704236
-0.00535473
-0.00405322
-0.00297556
-0.0012889
-2.86853e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-0.0210418
-0.0409347
-0.0394421
-0.0329563
-0.026108
-0.020154
-0.0153454
-0.0115866
-0.00867505
-0.00642904
-0.00471546
-0.00343079
-0.00248209
-0.00178584
-0.00127351
-0.000894873
-0.000614683
-0.000407989
-0.000257048
-0.000148996
-7.45245e-05
-2.73344e-05
-3.91675e-06
)
;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"stig.m.nilsen@gmail.com"
] | stig.m.nilsen@gmail.com | |
44e489ff651fcd6ecf96203a91d8a443a10bd90e | eb568794911a41f50ff666eed9648cc2025a4e44 | /视觉相关/000--绘制甜甜圈/01 OpenGL 环境搭建/01 OpenGL 环境搭建/main.cpp | 4e54451d7303f2eff885162317d6960941282d2f | [] | no_license | ExistOrLive/DemoForLearning | fb9e888ba88932c0747b11978d2d51fc8eb5ae99 | b0f3a5608d0a7b5d5c24ff13b9efc4eabd19851a | refs/heads/master | 2022-10-27T04:27:45.688643 | 2021-04-19T02:47:20 | 2021-04-19T02:47:20 | 185,629,254 | 0 | 0 | null | 2022-10-06T19:23:55 | 2019-05-08T15:06:29 | Python | UTF-8 | C++ | false | false | 4,603 | cpp | //演示了OpenGL背面剔除,深度测试,和多边形模式
#include "GLTools.h"
#include "GLMatrixStack.h"
#include "GLFrame.h"
#include "GLFrustum.h"
#include "GLGeometryTransform.h"
#include <math.h>
#ifdef __APPLE__
#include <glut/glut.h>
#else
#define FREEGLUT_STATIC
#include <GL/glut.h>
#endif
////设置角色帧,作为相机
GLFrame viewFrame;
//使用GLFrustum类来设置透视投影
GLFrustum viewFrustum;
GLTriangleBatch torusBatch;
GLMatrixStack modelViewMatix;
GLMatrixStack projectionMatrix;
GLGeometryTransform transformPipeline;
GLShaderManager shaderManager;
//标记:背面剔除、深度测试
int iCull = 0;
int iDepth = 0;
//渲染场景
void RenderScene()
{
//1.清除窗口和深度缓冲区
//可以给学员演示一下不清空颜色/深度缓冲区时.渲染会造成什么问题. 残留数据
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
//2.把摄像机矩阵压入模型矩阵中
modelViewMatix.PushMatrix(viewFrame);
//3.设置绘图颜色
GLfloat vRed[] = { 1.0f, 0.0f, 0.0f, 1.0f };
//4.
//使用平面着色器
//参数1:平面着色器
//参数2:模型视图投影矩阵
//参数3:颜色
// shaderManager.UseStockShader(GLT_SHADER_FLAT, transformPipeline.GetModelViewProjectionMatrix(), vRed);
//使用默认光源着色器
//通过光源、阴影效果跟提现立体效果
//参数1:GLT_SHADER_DEFAULT_LIGHT 默认光源着色器
//参数2:模型视图矩阵
//参数3:投影矩阵
//参数4:基本颜色值
shaderManager.UseStockShader(GLT_SHADER_DEFAULT_LIGHT, transformPipeline.GetModelViewMatrix(), transformPipeline.GetProjectionMatrix(), vRed);
//5.绘制
torusBatch.Draw();
//6.出栈 绘制完成恢复
modelViewMatix.PopMatrix();
//7.交换缓存区
glutSwapBuffers();
}
void SetupRC()
{
//1.设置背景颜色
glClearColor(0.3f, 0.3f, 0.3f, 1.0f );
glEnable(GL_CULL_FACE);
//2.初始化着色器管理器
shaderManager.InitializeStockShaders();
//3.将相机向后移动7个单元:肉眼到物体之间的距离
viewFrame.MoveForward(7.0);
//4.创建一个甜甜圈
//void gltMakeTorus(GLTriangleBatch& torusBatch, GLfloat majorRadius, GLfloat minorRadius, GLint numMajor, GLint numMinor);
//参数1:GLTriangleBatch 容器帮助类
//参数2:外边缘半径
//参数3:内边缘半径
//参数4、5:主半径和从半径的细分单元数量
gltMakeTorus(torusBatch, 1.0f, 0.3f, 52, 26);
//5.点的大小(方便点填充时,肉眼观察)
glPointSize(4.0f);
}
//键位设置,通过不同的键位对其进行设置
//控制Camera的移动,从而改变视口
void SpecialKeys(int key, int x, int y)
{
//1.判断方向
if(key == GLUT_KEY_UP)
//2.根据方向调整观察者位置
viewFrame.RotateWorld(m3dDegToRad(-5.0), 1.0f, 0.0f, 0.0f);
if(key == GLUT_KEY_DOWN)
viewFrame.RotateWorld(m3dDegToRad(5.0), 1.0f, 0.0f, 0.0f);
if(key == GLUT_KEY_LEFT)
viewFrame.RotateWorld(m3dDegToRad(-5.0), 0.0f, 1.0f, 0.0f);
if(key == GLUT_KEY_RIGHT)
viewFrame.RotateWorld(m3dDegToRad(5.0), 0.0f, 1.0f, 0.0f);
//3.重新刷新
glutPostRedisplay();
}
//窗口改变
void ChangeSize(int w, int h)
{
//1.防止h变为0
if(h == 0)
h = 1;
//2.设置视口窗口尺寸
glViewport(0, 0, w, h);
//3.setPerspective函数的参数是一个从顶点方向看去的视场角度(用角度值表示)
// 设置透视模式,初始化其透视矩阵
viewFrustum.SetPerspective(35.0f, float(w)/float(h), 1.0f, 100.0f);
//4.把透视矩阵加载到透视矩阵对阵中
projectionMatrix.LoadMatrix(viewFrustum.GetProjectionMatrix());
//5.初始化渲染管线
transformPipeline.SetMatrixStacks(modelViewMatix, projectionMatrix);
}
int main(int argc, char* argv[])
{
gltSetWorkingDirectory(argv[0]);
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA | GLUT_DEPTH | GLUT_STENCIL);
glutInitWindowSize(800, 600);
glutCreateWindow("Geometry Test Program");
glutReshapeFunc(ChangeSize);
glutSpecialFunc(SpecialKeys);
glutDisplayFunc(RenderScene);
GLenum err = glewInit();
if (GLEW_OK != err) {
fprintf(stderr, "GLEW Error: %s\n", glewGetErrorString(err));
return 1;
}
SetupRC();
glutMainLoop();
return 0;
}
| [
"2068531506@qq.com"
] | 2068531506@qq.com |
bafeece39aaf47c247b6cfdcd31a3848f521f00e | e76a18f315bbf974841557d1cd68b4ec11f8e276 | /round2/problems/permutation-cube/src/validate.cpp | 1b15c30b6486e252a65ffed8a26dfc1fc65688fa | [] | no_license | bcip/yandex2014 | 498bcd32f5a2d23e1c46e1dcfded2e2728785542 | 787d244372592d66d57be82a2fce2bdd930215b2 | refs/heads/master | 2021-01-10T20:24:56.186890 | 2014-09-04T13:01:26 | 2014-09-04T13:01:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 956 | cpp | #include "testlib.h"
using namespace std;
int map[50000];
int main()
{
registerValidation();
int N=inf.readInt(1,30000,"N");
inf.readEoln();
int m;
for (int i=0;i<N;i++) map[i]=0;
for (int i=0;i<N;i++)
{
m=inf.readInt (1,N);
if (map[m-1]!=0) quitf (_fail,"Double number %d in the first permutation",m);
map[m-1]=1;
if (i<N-1) inf.readSpace();
else inf.readEoln();
}
for (int i=0;i<N;i++)
{
m=inf.readInt (1,N);
if (map[m-1]!=1) quitf (_fail,"Double number %d in the second permutation",m);
map[m-1]=2;
if (i<N-1) inf.readSpace();
else inf.readEoln();
}
for (int i=0;i<N;i++)
{
m=inf.readInt (1,N);
if (map[m-1]!=2) quitf (_fail,"Double number %d in the third permutation",m);
map[m-1]=3;
if (i<N-1) inf.readSpace();
else inf.readEoln();
}
inf.readEof();
return 0;
}
| [
"wangqinshi1995@gmail.com"
] | wangqinshi1995@gmail.com |
786e369117e4d9329a1b7185f54cba170fe7e778 | 6ba1d6cbddb975e451c9baae4546aae3601ff9a6 | /common/utility/tests/src/test_FileUtils.cpp | c3f2fea5409fa4b3e432f7f359c258d57451c022 | [
"MIT"
] | permissive | cbtek/ThePromptMachine | 6f1e575b08a1434825c12332909754bed64dec07 | 27e219af8451209ced744cd8cb89d8ef73681923 | refs/heads/master | 2020-06-28T20:35:20.995704 | 2017-02-03T17:34:06 | 2017-02-03T17:34:06 | 74,474,883 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,105 | cpp | /**
MIT License
Copyright (c) 2016 cbtek
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 "utility/inc/StringUtils.hpp"
#include "utility/inc/FileUtils.hpp"
#include "contrib/catch/catch.hpp"
using namespace cbtek::common::utility;
static const std::string dataFolder = "testData/utility/";
TEST_CASE("Testing FileUtils::fileExists","[utility::FileUtils")
{
std::string data = "The Quick Brown fox\n\t jumped over the moon \t\n";
FileUtils::writeFileContents("test.tmp",data);
REQUIRE(FileUtils::fileExists("test.tmp"));
FileUtils::deleteFile("test.tmp");
}
TEST_CASE("Testing FileUtils::writeFileContents", "[utility::FileUtils]" )
{
std::string data = "The Quick Brown fox\n\t jumped over the moon \t\n";
FileUtils::writeFileContents("test.tmp",data);
std::string dataIn;
std::ifstream in("test.tmp");
while (in)
{
char token = in.get();
if (!in)
{
break;
}
dataIn.push_back(token);
}
in.close();
FileUtils::deleteFile("test.tmp");
REQUIRE(dataIn == data);
}
TEST_CASE("Testing FileUtils::copy", "[utility::FileUtils]" )
{
std::string data = "The Quick Brown fox\n\t jumped over the moon \t\n";
FileUtils::writeFileContents("test.tmp",data);
FileUtils::copyFile("test.tmp","test-copy.tmp");
REQUIRE(FileUtils::fileExists("test-copy.tmp"));
std::string dataIn;
std::ifstream in("test-copy.tmp");
while (in)
{
char token = in.get();
if (!in)
{
break;
}
dataIn.push_back(token);
}
in.close();
FileUtils::deleteFile("test.tmp");
FileUtils::deleteFile("test-copy.tmp");
REQUIRE(dataIn == data);
}
TEST_CASE("Testing FileUtils::getParentPath", "[utility::FileUtils]" )
{
std::string winPath="C:\\My Documents\\Some\\Stupid\\Windows\\File.ext";
std::string winNetworkPath="\\\\netdrive.us.com\\My Documents\\Some\\Stupid\\Windows\\File.ext";
std::string normalPath = "/usr/opt/running/server/php";
std::string mixPath = "\\usr/opt/running\\server/php";
REQUIRE(FileUtils::getParentPath(winPath) ==
"C:\\My Documents\\Some\\Stupid\\Windows");
REQUIRE(FileUtils::getParentPath(winPath,2) ==
"C:\\My Documents\\Some\\Stupid");
REQUIRE(FileUtils::getParentPath(winPath,200) =="C:");
REQUIRE(FileUtils::getParentPath(normalPath) ==
"/usr/opt/running/server");
REQUIRE(FileUtils::getParentPath(normalPath,2) ==
"/usr/opt/running");
REQUIRE(FileUtils::getParentPath(normalPath,200) =="/");
REQUIRE(FileUtils::getParentPath(mixPath) ==
"/usr/opt/running/server");
REQUIRE(FileUtils::getParentPath(mixPath,2) ==
"/usr/opt/running");
REQUIRE(FileUtils::getParentPath(winNetworkPath) ==
"\\\\netdrive.us.com\\My Documents\\Some\\Stupid\\Windows");
REQUIRE(FileUtils::getParentPath(winNetworkPath,3) ==
"\\\\netdrive.us.com\\My Documents\\Some");
REQUIRE(FileUtils::getParentPath(winNetworkPath,200) ==
"\\\\netdrive.us.com");
}
| [
"corey.berry@cbtek.net"
] | corey.berry@cbtek.net |
664916cbdbd63cf472b24c3ca38bccfa76c7036a | 421fdce65005be3b991608fc8c764d97a6e953e3 | /src/utils/Image.cpp | 18e344390fb7aa8ce1843b079221dca652908b44 | [
"MIT"
] | permissive | heiseish/DawnAI | f38a5d07b9e0ba29944e257fe8b797a0ac6b557f | 5f204b079f45a9195cdc18b100da13d9a7a969dc | refs/heads/master | 2023-07-22T14:42:13.669757 | 2019-10-26T15:17:47 | 2019-10-26T15:17:47 | 199,278,194 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,756 | cpp | #include "Image.hpp"
#include <curl/curl.h> // has to go before opencv headers
#include <iostream>
#include <vector>
#include <math.h>
#include "src/utils/Logger.hpp"
#include <opencv2/opencv.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
using namespace cv;
namespace dawn {
// Resize an image to a given size to
cv::Mat __resize_to_a_size(cv::Mat image, int newHeight, int newWidth) {
// get original image size
int orgImageHeight = image.rows;
int orgImageWidth = image.cols;
// get image area and resized image area
float imgArea = float(orgImageHeight * orgImageWidth);
float newArea = float(newHeight * newWidth);
// resize
cv::Mat image_scaled;
cv::Size scale(newWidth, newHeight);
if (newArea >= imgArea) {
cv::resize(image, image_scaled, scale, 0, 0, cv::INTER_LANCZOS4);
} else {
cv::resize(image, image_scaled, scale, 0, 0, cv::INTER_AREA);
}
return image_scaled;
}
// Normalize an image by subtracting mean and dividing by standard deviation
cv::Mat __normalize_mean_std(cv::Mat image, std::vector<double> mean, std::vector<double> std) {
// clone
cv::Mat imageNormalized = image.clone();
// convert to float
imageNormalized.convertTo(imageNormalized, CV_32FC3);
// subtract mean
cv::subtract(imageNormalized, mean, imageNormalized);
// divide by standard deviation
std::vector<cv::Mat> imgChannel(3);
cv::split(imageNormalized, imgChannel);
imgChannel[0] = imgChannel[0] / std[0];
imgChannel[1] = imgChannel[1] / std[1];
imgChannel[2] = imgChannel[2] / std[2];
cv::merge(imgChannel, imageNormalized);
return imageNormalized;
}
// 1. Preprocess
bool ImageUtil::Preprocess(cv::Mat& output, cv::Mat image, int newHeight, int newWidth,
std::vector<double> mean, std::vector<double> std) {
try {
// Clone
output = image.clone();
// Convert from BGR to RGB
cv::cvtColor(output, output, cv::COLOR_BGR2RGB);
// Resize image
output = __resize_to_a_size(output, newHeight, newWidth);
// Convert image to float
output.convertTo(output, CV_32FC3);
// 3. Normalize to [0, 1]
output = output / 255.0;
// 4. Subtract mean and divide by std
output = __normalize_mean_std(output, mean, std);
} catch (const std::exception& e) {
DAWN_ERROR << e.what() << std::endl;
return false;
} catch(...) {
return false;
}
return true;
}
//curl writefunction to be passed as a parameter
// we can't ever expect to get the whole image in one piece,
// every router / hub is entitled to fragment it into parts
// (like 1-8k at a time),
// so insert the part at the end of our stream.
size_t write_data(char *ptr, size_t size, size_t nmemb, void *userdata) {
std::vector<char> *stream = (std::vector<char>*)userdata;
size_t count = size * nmemb;
stream->insert(stream->end(), ptr, ptr + count);
return count;
}
/**
* @brief function to retrieve the image as cv::Mat data type
*/
bool ImageUtil::Download(cv::Mat& output, const char *img_url, int timeout) {
std::vector<char> stream;
CURL *curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, img_url); //the img url
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data); // pass the writefunction
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &stream); // pass the stream ptr to the writefunction
curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout); // timeout if curl_easy hangs,
CURLcode res = curl_easy_perform(curl); // start curl
if (res != CURLE_OK) {
return false;
}
curl_easy_cleanup(curl); // cleanup
output = cv::imdecode(stream, 1); // 'keep-as-is'
// curl_global_cleanup();
return !output.empty();
}
}
| [
"dtrnggiang@gmail.com"
] | dtrnggiang@gmail.com |
48a8124af8773018b0363a958bea74ce8216076e | c97a7063b42d081ba05540b4c98e260856cbfd13 | /TowerofAngra/Graduation_Work/protocol.h | 315b5dee0cb1869571c65392ca00b19e3e9970a6 | [] | no_license | MasterTyping/Shared-repository | 0846acac8ea2b055c44d76007c429425524832a0 | 2b583d2989b56fa9613ed45cfd6be94e566e0fde | refs/heads/master | 2023-03-01T18:24:32.805114 | 2019-05-17T07:19:26 | 2019-05-17T07:19:26 | 185,020,664 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,844 | h | #pragma once
// 클라이언트와 서버 서로 통신에 필요한 프로토콜 define 서버 -> 클라 일때는 sc_ , 클라 -> 서버 일 때는 cs_ 이런식으로 코딩 .
// 언리얼 엔진에서 추가할땐 경로 이용해서 헤더파일 추가.
//.
#include <iostream>
#include<cstdio>
#include<time.h>
#include<ctime>
#include<algorithm>
#include<tchar.h>
#include<WinSock2.h>
#include<Windows.h>
#include<stdio.h>
#include<stdlib.h>
#include<thread>
#include<vector>
#include<mutex>
#include<array>
#include<chrono>
#include<tchar.h>
#include<list>
#include<map>
#include <d3d11.h>
#include <DirectXMath.h>
#include <DirectXPackedVector.h>
//Network
#define SOCKET_BUF_SIZE 4096
#define SERVERPROT 9000
#define SERVERIP "127.0.0.1"
#define WORKER_THREAD_NUMBER 4
#define MAX_USER 4 //일단은 최대인원
#define MAX_MAP 7 //스테이지
//Client to Server
#define CS_KEY 1
#define CS_COLLISION 2
#define CS_DAMAGE 3
//
//-----OVERLAP_STATE-----
#define OP_RECV 1
#define OP_SEND 2
//
using namespace DirectX;
using namespace DirectX::PackedVector;
#pragma comment(lib, "d3d11")
#include "Math.h"
typedef struct PLAYER
{
Vec3 m_vPosition;
Vec3 m_vDir;
FLOAT m_fAngle;
Vec3 m_vAngle;
Vec3 m_vAxis[3];
float m_fAxisLength[3];
} PLAYER;
typedef struct OverlapEx
{
WSAOVERLAPPED original_overlap;
int operation;
WSABUF recv_buff;
unsigned char socket_buff[SOCKET_BUF_SIZE];
int packet_size;
BYTE event_type;
int event_target;
int ID;
BYTE MapType;
}OverlapEx;
typedef struct CLIENT
{
bool is_Connected;
bool is_Gaming;
int ID;
int StageNumber;
int Speed;
int previous_data_size;
Vec3 Character_Direction; //캐릭터의 방향
PLAYER Player;
SOCKET sock;
int StageList;
OverlapEx recv_overlap;
}CLIENT; | [
"jumbak1234@gmail.com"
] | jumbak1234@gmail.com |
4b58b9930a254a9e857c285404198e36f013d4bd | 6240aeaf80523becf02755e3b92ef10cf93c2d4e | /main.cpp | 8d638bd204676d3ce662aa68af9e186c8120e9af | [] | no_license | wahello/textToDrawing | 3cf8c6cf522bb469fd230e103edfb20c907fb1d7 | 119dd57aa652bd861132dfcf61b2e10b67b57641 | refs/heads/master | 2021-12-08T21:32:42.680246 | 2016-03-04T16:59:51 | 2016-03-04T16:59:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,590 | cpp | #include <QFile>
#include <QRegularExpression>
#include <QDebug>
#include <QTextStream>
#include <QIODevice>
#include <QProcess>
#include "entity.h"
int main()
{
// reading the input file
QFile ifile("in.txt");
QString content;
QStringList list;
ifile.open(QIODevice::ReadOnly);
// read whole content
while (!ifile.atEnd()) {
// defining the regexp by which splitting of contents is to be done
QRegularExpression exp("(\\(|\\)|\\,|\\=)");
content = ifile.readAll();
list = content.split(exp);
}
// closing the file after reading has been done
ifile.close();
// opening the file to write the splitted data
QFile ofile("out.txt");
ofile.open(QIODevice::WriteOnly);
QTextStream out(&ofile);
out << list.join("\n");
ofile.close();
// defining regexp to save only numbers in the parsed data in a list
//QRegularExpression exp1("^[0-9]*$");
QVector<QVector<QString>*> bigV;
QVector<QString>* v;
QString c;
int count = -1;
ofile.open(QIODevice::ReadOnly);
// read whole content
while (!ofile.atEnd())
{
c = ofile.readLine();
if(c == "wall\n")
{
++count;
v = new QVector<QString>(5);
(*v)[0] = c;
qDebug() << "wall";
}
if(c == "ball\n")
{
++count;
v = new QVector<QString>(4);
(*v)[0] = c;
qDebug() << "ball";
}
if(c == "l\n" && count >= 0 && v != NULL)
{
qDebug() << "l";
(*v)[1] = ofile.readLine();
}
if(c == "h\n" && count >= 0 && v != NULL)
{
qDebug() << "h";
(*v)[2] = ofile.readLine();
}
if(c == "bx\n" && count >= 0 && v != NULL)
{
(*v)[3] = ofile.readLine();
}
if(c == "by\n" && count >= 0 && v != NULL)
{
(*v)[4] = ofile.readLine();
}
if(c == "r\n" && count >= 0 && v != NULL)
{
(*v)[1] = ofile.readLine();
}
if(c == "cx\n" && count >= 0 && v != NULL)
{
(*v)[2] = ofile.readLine();
}
if(c == "cy\n" && count >= 0 && v != NULL)
{
(*v)[3] = ofile.readLine();
}
if(c == "\n" && count >= 0 && v != NULL)
{
qDebug() << "v : " << v;
bigV.append(v);
//delete v;
//v = 0;
}
}
qDebug() << bigV.count();
ofile.close();
// creating the entity class' object and calling its function
entity e;
DL_Dxf *abc = e.return_dxf();
DL_WriterA *def = e.return_dw();
e.startDXF(abc, def);
for (int i = 0; i < bigV.size(); ++i)
{
QVector<QString>* ab = bigV.at(i);
if (ab->at(0) == "wall\n")
{
int j = 1;
e.createWall(abc, def, ab->at(j).toFloat(), ab->at(j+1).toFloat(),
ab->at(j+2).toFloat(), ab->at(j+3).toFloat(),
"wall", 256, 1, "CONINUOUS");
}
if (ab->at(0) == "ball\n")
{
int j = 1;
// e.createWall(abc, def, ab->at(j).toFloat(), ab->at(j+1).toFloat(),
// ab->at(j+2).toFloat(), ab->at(j+3).toFloat(),
// "wall", 256, 1, "CONINUOUS");
}
}
// e.createFlange(abc, def, 20, 60, 100);
e.closeDXF(def);
QProcess::execute("librecad myfile.dxf");
}
| [
"grewalkamal005@gmail.com"
] | grewalkamal005@gmail.com |
0cc2ff92cd2db7936c8eac44ec6f8583e714cf18 | 083100943aa21e05d2eb0ad745349331dd35239a | /aws-cpp-sdk-codedeploy/include/aws/codedeploy/model/BatchGetOnPremisesInstancesRequest.h | 7ce4222cffa008cf4c9d920f33863ce05c9e8c24 | [
"JSON",
"MIT",
"Apache-2.0"
] | permissive | bmildner/aws-sdk-cpp | d853faf39ab001b2878de57aa7ba132579d1dcd2 | 983be395fdff4ec944b3bcfcd6ead6b4510b2991 | refs/heads/master | 2021-01-15T16:52:31.496867 | 2015-09-10T06:57:18 | 2015-09-10T06:57:18 | 41,954,994 | 1 | 0 | null | 2015-09-05T08:57:22 | 2015-09-05T08:57:22 | null | UTF-8 | C++ | false | false | 3,269 | h | /*
* Copyright 2010-2015 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 <aws/codedeploy/CodeDeploy_EXPORTS.h>
#include <aws/codedeploy/CodeDeployRequest.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace CodeDeploy
{
namespace Model
{
/*
<p>Represents the input of a batch get on-premises instances operation.</p>
*/
class AWS_CODEDEPLOY_API BatchGetOnPremisesInstancesRequest : public CodeDeployRequest
{
public:
BatchGetOnPremisesInstancesRequest();
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/*
<p>The names of the on-premises instances to get information about.</p>
*/
inline const Aws::Vector<Aws::String>& GetInstanceNames() const{ return m_instanceNames; }
/*
<p>The names of the on-premises instances to get information about.</p>
*/
inline void SetInstanceNames(const Aws::Vector<Aws::String>& value) { m_instanceNamesHasBeenSet = true; m_instanceNames = value; }
/*
<p>The names of the on-premises instances to get information about.</p>
*/
inline void SetInstanceNames(Aws::Vector<Aws::String>&& value) { m_instanceNamesHasBeenSet = true; m_instanceNames = value; }
/*
<p>The names of the on-premises instances to get information about.</p>
*/
inline BatchGetOnPremisesInstancesRequest& WithInstanceNames(const Aws::Vector<Aws::String>& value) { SetInstanceNames(value); return *this;}
/*
<p>The names of the on-premises instances to get information about.</p>
*/
inline BatchGetOnPremisesInstancesRequest& WithInstanceNames(Aws::Vector<Aws::String>&& value) { SetInstanceNames(value); return *this;}
/*
<p>The names of the on-premises instances to get information about.</p>
*/
inline BatchGetOnPremisesInstancesRequest& AddInstanceNames(const Aws::String& value) { m_instanceNamesHasBeenSet = true; m_instanceNames.push_back(value); return *this; }
/*
<p>The names of the on-premises instances to get information about.</p>
*/
inline BatchGetOnPremisesInstancesRequest& AddInstanceNames(Aws::String&& value) { m_instanceNamesHasBeenSet = true; m_instanceNames.push_back(value); return *this; }
/*
<p>The names of the on-premises instances to get information about.</p>
*/
inline BatchGetOnPremisesInstancesRequest& AddInstanceNames(const char* value) { m_instanceNamesHasBeenSet = true; m_instanceNames.push_back(value); return *this; }
private:
Aws::Vector<Aws::String> m_instanceNames;
bool m_instanceNamesHasBeenSet;
};
} // namespace Model
} // namespace CodeDeploy
} // namespace Aws
| [
"henso@amazon.com"
] | henso@amazon.com |
aab5d315a02d2f817477f1ca65e8f59c775b7dde | d5ed06611972fee3cea5aa5c162868b53d7a842c | /16:09:23 Homework/3.cpp | d8f16f44a0f07825a3063c33e065a084839e6b9f | [] | no_license | wheeltune/programming_seminars | 2c5358c47b3a55ec7665e0f6f83553ef766aa544 | 43cce14f2b9934fe50e3abd42959598220445d87 | refs/heads/master | 2021-01-12T17:08:46.292722 | 2016-12-10T15:34:40 | 2016-12-10T15:34:40 | 69,009,711 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,393 | cpp | #include <iostream>
#include <vector>
#include <queue>
#include <string>
#include <algorithm>
#include <cstddef>
class Network {
private:
class Edge;
class EdgeIterrator;
const std::size_t INF = 1000000000;
std::size_t vertexCount_;
std::size_t source_, target_;
std::vector<Edge> edges_;
std::vector<std::vector<std::size_t> > network_;
std::vector<EdgeIterrator> vIter_;
std::vector<std::size_t> distance_;
std::size_t maxFlow_;
public:
Network (std::size_t vertexCount, std::size_t source, std::size_t target)
: vertexCount_ (vertexCount), source_ (source), target_ (target)
, maxFlow_ (0), network_ (vertexCount), distance_(vertexCount)
{
for (std::size_t i = 0; i < vertexCount_; ++i) {
vIter_.push_back (begin(i));
}
}
int addEdge (std::size_t from, std::size_t to, std::size_t capasity)
{
std::size_t id = edges_.size();
edges_.push_back (Edge (from, to, capasity));
edges_.push_back (Edge (to, from, 0));
network_[from].push_back (id);
network_[to].push_back (id | 1);
return id >> 1;
}
void addCapasity (std::size_t id, std::size_t addCapasity)
{
id <<= 1;
edges_[id].addCapasity (addCapasity);
}
int getMaxFlow ()
{
return dinic();
}
EdgeIterrator begin(std::size_t v){
return EdgeIterrator (network_[v].begin(), &edges_);
}
EdgeIterrator end (std::size_t v) {
return EdgeIterrator (network_[v].end(), &edges_);
}
private:
class Edge {
public:
std::size_t capasity_, from_, to_;
int flow_;
Edge (std::size_t from, std::size_t to, std::size_t capasity)
: from_ (from), to_ (to), capasity_ (capasity), flow_ (0)
{}
std::size_t getRest () {
if (flow_ >= 0) {
return capasity_ - (std::size_t) ( flow_);
} else {
return capasity_ + (std::size_t) (-flow_);
}
}
bool isFull () {
return getRest() == 0;
}
void addCapasity (int addCapasity)
{
capasity_ += addCapasity;
}
};
class EdgeIterrator
: public std::iterator<std::random_access_iterator_tag,
Edge,
ptrdiff_t,
Edge*,
Edge&>
{
private:
friend class Edge;
std::vector<std::size_t>::iterator it_;
std::vector<Edge> *pEdges_;
public:
EdgeIterrator (std::vector<std::size_t>::iterator it, std::vector<Edge> *pEdges)
{
it_ = it;
pEdges_ = pEdges;
}
EdgeIterrator (const EdgeIterrator& edgeIterrator) = default;
~EdgeIterrator (){}
EdgeIterrator& operator= (const EdgeIterrator& edgeIterator) = default;
bool operator== (const EdgeIterrator& edgeIterator) const
{
return (it_ == edgeIterator.getConstPtr());
}
bool operator!= (const EdgeIterrator& edgeIterator) const
{
return (it_ != edgeIterator.getConstPtr());
}
EdgeIterrator& operator+= (const ptrdiff_t& movement)
{
it_ += movement;
return (*this);
}
EdgeIterrator& operator-= (const ptrdiff_t& movement)
{
it_ -= movement;
return (*this);
}
EdgeIterrator& operator++ ()
{
++it_;
return (*this);
}
EdgeIterrator& operator-- ()
{
--it_;
return (*this);
}
EdgeIterrator operator++ (int)
{
auto tmp(*this);
++it_;
return tmp;
}
EdgeIterrator operator-- (int)
{
auto tmp(*this);
--it_;
return tmp;
}
EdgeIterrator operator+ (const ptrdiff_t& movement)
{
auto oldPtr = it_;
it_ += movement;
auto tmp(*this);
it_ = oldPtr;
return tmp;
}
EdgeIterrator operator- (const ptrdiff_t& movement)
{
auto oldPtr = it_;
it_ -= movement;
auto tmp(*this);
it_ = oldPtr;
return tmp;
}
ptrdiff_t operator- (const EdgeIterrator& edgeIterator)
{
return std::distance(edgeIterator.getPtr(),this->getPtr());
}
Edge& operator* () {
return (*pEdges_)[*it_];
}
const Edge& operator* () const
{
return (*pEdges_)[*it_];
}
Edge* operator-> ()
{
return &((*pEdges_)[*it_]);
}
Edge* backEdge () {
return &((*pEdges_)[(*it_)^1]);
}
private:
std::vector<std::size_t>::iterator getPtr() const
{
return it_;
}
const std::vector<std::size_t>::iterator getConstPtr() const
{
return it_;
}
};
private:
bool dinicBfs ()
{
std::queue<std::size_t> queue;
for (auto& d_i : distance_) {
d_i = INF;
}
distance_[source_] = 0;
queue.push (source_);
while (!queue.empty() && distance_[target_] == INF) {
int from = queue.front();
queue.pop();
for (auto e_i = begin(from); e_i != end(from); ++e_i) {
if (distance_[e_i->to_] == INF && !e_i->isFull()) {
distance_[e_i->to_] = distance_[e_i->from_] + 1;
queue.push (e_i->to_);
}
}
}
return distance_[target_] != INF;
}
std::size_t dinicDfs (std::size_t v, std::size_t flow)
{
if (flow == 0 || v == target_) return flow;
for (; vIter_[v] != end(v); ++vIter_[v]) {
auto e_i = vIter_[v];
if (distance_[e_i->to_] == distance_[v] + 1) {
std::size_t pushed = dinicDfs(e_i->to_, std::min(flow, e_i->getRest()));
if (pushed > 0) {
e_i->flow_ += pushed;
e_i.backEdge()->flow_ -= pushed;
return pushed;
}
}
}
return 0;
}
std::size_t dinic ()
{
std::size_t maxFlow = 0;
while (dinicBfs()) {
for (std::size_t i = 0; i < vertexCount_; ++i) {
vIter_[i] = begin(i);
}
while (std::size_t pushed = dinicDfs (source_, INF)) {
maxFlow += pushed;
}
}
return maxFlow;
}
};
std::string s, p;
std::vector<int> compS, compP;
std::vector<std::pair<bool, int> > ret;
std::vector<std::vector<int> > ids;
std::vector<bool> used;
Network *pNetwork = nullptr;
void dfs (int v) {
if (v != 0) {
if (ret[v - 2].first) {
p[ret[v - 2].second] = '0';
} else {
s[ret[v - 2].second] = '0';
}
}
used[v] = true;
for (auto e_i = pNetwork->begin(v); e_i != pNetwork->end(v); ++e_i) {
if (!e_i->isFull() && !used[e_i->to_]) {
dfs (e_i->to_);
}
}
}
void addEdge (int from, int to, int capasity)
{
int id = ids[from][to];
if (id == -1) {
ids[from][to] = pNetwork->addEdge (from, to, 1);
} else {
pNetwork->addCapasity (id, 1);
}
}
int main ()
{
std::cin >> s >> p;
compS.resize(s.size());
compP.resize(p.size());
int n = 2;
for (int i = 0; i < s.size(); ++i) {
if (s[i] == '?') {
compS[i] = n++;
ret.push_back(std::make_pair(false, i));
}
}
for (int i = 0; i < p.size(); ++i) {
if (p[i] == '?') {
compP[i] = n++;
ret.push_back(std::make_pair(true, i));
}
}
Network network (n, 0, 1);
pNetwork = &network;
ids.resize(n);
used.resize(n, false);
for (auto& id_i : ids) {
id_i.resize (n, -1);
}
int add = 0;
for (int i = 0; i < p.size(); ++i) {
for (int j = i; j < s.size() - p.size() + i + 1; ++j) {
if (p[i] == '?' || s[j] == '?') {
if (p[i] == s[j]) {
addEdge (compP[i], compS[j], 1);
addEdge (compS[j], compP[i], 1);
} else if (p[i] == '?') {
if (s[j] == '0') {
addEdge (0, compP[i], 1);
} else /* s[j] == '1' */ {
addEdge (compP[i], 1, 1);
}
} else /* s[j] == '?' */ {
if (p[i] == '0') {
addEdge (0, compS[j], 1);
} else /* p[i] == '1' */ {
addEdge (compS[j], 1, 1);
}
}
} else {
add += (int) (p[i] != s[j]);
}
}
}
std::cout << network.getMaxFlow() + add << std::endl;
dfs (0);
for (auto& s_i : s) {
if (s_i == '?') s_i = '1';
}
for (auto& p_i : p) {
if (p_i == '?') p_i = '1';
}
std::cout << s << "\n" << p << "\n";
return 0;
} | [
"wheeltune@gmail.com"
] | wheeltune@gmail.com |
1a222427852bfb21003519613ba0dcfb06dfd7ce | c55698fa482a446fef942ca8685bacc9b47eb556 | /meta/include/mgs/meta/common_reference.hpp | acd8cf79787e02cf1d221bb12a5e7f083919d8ba | [
"BSL-1.0"
] | permissive | theodelrieu/mgs | be741dafe807073bcb35d86b765b82f66f796d7a | 965a95e3d539447cc482e915f9c44b3439168a4e | refs/heads/master | 2021-11-24T03:25:56.022972 | 2021-11-22T16:16:50 | 2021-11-22T16:16:50 | 182,254,780 | 26 | 0 | BSL-1.0 | 2021-11-22T16:16:51 | 2019-04-19T11:31:19 | C++ | UTF-8 | C++ | false | false | 288 | hpp | #pragma once
#include <mgs/meta/detail/common_reference_impl.hpp>
namespace mgs
{
namespace meta
{
template <typename... Ts>
struct common_reference : detail::common_reference<Ts...>
{
};
template <typename... Ts>
using common_reference_t = typename common_reference<Ts...>::type;
}
}
| [
"delrieutheo@gmail.com"
] | delrieutheo@gmail.com |
ae45ea160be5950ecdfdf2fa294c197780090d98 | eabe92ff958be0e5894ed7501780d8eb608b6ae9 | /ui/base/clipboard/clipboard_qt.cc | 7f891d2c298db235a727ec85d712f29afb938e7d | [
"BSD-3-Clause"
] | permissive | meego-tablet-ux/meego-app-browser | 51bf8a8b8f15d702151a3f32a2598d4621b6926d | 0f4ef17bd4b399c9c990a2f6ca939099495c2b9c | refs/heads/master | 2021-01-10T21:33:19.677680 | 2011-07-20T01:19:53 | 2011-08-01T07:18:37 | 32,045,345 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 10,222 | cc | // Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/base/clipboard/clipboard.h"
#include <QApplication>
#include <QClipboard>
#include <QMimeData>
#include <QImage>
#include <QBuffer>
#include <map>
#include <set>
#include <string>
#include <utility>
#include "base/file_path.h"
#include "base/logging.h"
#include "base/scoped_ptr.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "base/utf_string_conversions.h"
#include "ui/gfx/size.h"
namespace ui {
namespace {
const char kMimeBmp[] = "image/bmp";
const char kMimeHtml[] = "text/html";
const char kMimeText[] = "text/plain";
const char kMimeMozillaUrl[] = "text/x-moz-url";
const char kMimeWebkitSmartPaste[] = "chromium/x-webkit-paste";
} // namespace
Clipboard::Clipboard(): clipboard_data_(NULL) {
///\todo FIXME: GTK provide different clipboard_ for operation on selection
//while Qt use QClipboard::Mode to differ operation target on the same QClipboard.
//So we might need to wrap it for this usage instead of just make it the same one.
clipboard_ = QApplication::clipboard();
qclipboard_mode_ = QClipboard::Clipboard;
primary_selection_ = NULL;
}
Clipboard::~Clipboard() {
// TODO(estade): do we want to save clipboard data after we exit?
// gtk_clipboard_set_can_store and gtk_clipboard_store work
// but have strangely awful performance.
}
void Clipboard::WriteObjects(const ObjectMap& objects) {
clipboard_data_ = new TargetMap();
for (ObjectMap::const_iterator iter = objects.begin();
iter != objects.end(); ++iter) {
DispatchObject(static_cast<ObjectType>(iter->first), iter->second);
}
SetQtClipboard();
}
// When a URL is copied from a render view context menu (via "copy link
// location", for example), we additionally stick it in the X clipboard. This
// matches other linux browsers.
void Clipboard::DidWriteURL(const std::string& utf8_text) {
clipboard_->setText(QString::fromStdString(utf8_text),
QClipboard::Selection);
}
void Clipboard::SetQtClipboard() {
int i = 0;
QMimeData *mime = new QMimeData;
for (Clipboard::TargetMap::iterator iter = clipboard_data_->begin();
iter != clipboard_data_->end(); ++iter, ++i) {
if(!iter->second.first)
continue;
if(iter->first == kMimeBmp)
{
QImage image;
QByteArray* ba = reinterpret_cast<QByteArray*>(iter->second.first);
image.loadFromData(*ba);
mime->setImageData(image);
delete ba;
}
else
{
char* data = iter->second.first;
size_t size = iter->second.second;
mime->setData(QString::fromStdString(iter->first),
QByteArray(data, size));
delete data;
}
}
//ownership of mime is transferred to clipboard
clipboard_->setMimeData(mime, QClipboard::Mode(qclipboard_mode_));
delete clipboard_data_;
clipboard_data_ = NULL;
}
void Clipboard::WriteText(const char* text_data, size_t text_len) {
char* data = new char[text_len];
memcpy(data, text_data, text_len);
InsertMapping(kMimeText, data, text_len);
}
void Clipboard::WriteHTML(const char* markup_data,
size_t markup_len,
const char* url_data,
size_t url_len) {
// TODO(estade): We need to expand relative links with |url_data|.
static const char* html_prefix = "<meta http-equiv=\"content-type\" "
"content=\"text/html; charset=utf-8\">";
size_t html_prefix_len = strlen(html_prefix);
size_t total_len = html_prefix_len + markup_len + 1;
char* data = new char[total_len];
snprintf(data, total_len, "%s", html_prefix);
memcpy(data + html_prefix_len, markup_data, markup_len);
// Some programs expect NULL-terminated data. See http://crbug.com/42624
data[total_len - 1] = '\0';
InsertMapping(kMimeHtml, data, total_len);
}
// Write an extra flavor that signifies WebKit was the last to modify the
// pasteboard. This flavor has no data.
void Clipboard::WriteWebSmartPaste() {
InsertMapping(kMimeWebkitSmartPaste, NULL, 0);
}
void Clipboard::WriteBitmap(const char* pixel_data, const char* size_data) {
const gfx::Size* size = reinterpret_cast<const gfx::Size*>(size_data);
QImage image(reinterpret_cast<const uchar*>(pixel_data), size->width(), size->height(), QImage::Format_ARGB32_Premultiplied);
QByteArray *ba = new QByteArray;
QBuffer buffer(ba);
buffer.open(QIODevice::WriteOnly);
image.save(&buffer, "BMP");
InsertMapping(kMimeBmp, reinterpret_cast<char*>(ba), 0);
}
void Clipboard::WriteBookmark(const char* title_data, size_t title_len,
const char* url_data, size_t url_len) {
// Write as a mozilla url (UTF16: URL, newline, title).
string16 url = UTF8ToUTF16(std::string(url_data, url_len) + "\n");
string16 title = UTF8ToUTF16(std::string(title_data, title_len));
int data_len = 2 * (title.length() + url.length());
char* data = new char[data_len];
memcpy(data, url.data(), 2 * url.length());
memcpy(data + 2 * url.length(), title.data(), 2 * title.length());
InsertMapping(kMimeMozillaUrl, data, data_len);
}
void Clipboard::WriteData(const char* format_name, size_t format_len,
const char* data_data, size_t data_len) {
std::string format(format_name, format_len);
// We assume that certain mapping types are only written by trusted code.
// Therefore we must upkeep their integrity.
if (format == kMimeBmp)
return;
char* data = new char[data_len];
memcpy(data, data_data, data_len);
InsertMapping(format.c_str(), data, data_len);
}
// We do not use gtk_clipboard_wait_is_target_available because of
// a bug with the gtk clipboard. It caches the available targets
// and does not always refresh the cache when it is appropriate.
bool Clipboard::IsFormatAvailable(const Clipboard::FormatType& format,
Clipboard::Buffer buffer) {
ClipboardType* clipboard = LookupBackingClipboard(buffer);
if (clipboard == NULL)
return false;
const QMimeData* mime = clipboard_->mimeData(QClipboard::Mode(qclipboard_mode_));
return mime->hasFormat(QString::fromStdString(format));
}
bool Clipboard::IsFormatAvailableByString(const std::string& format,
Clipboard::Buffer buffer){
return IsFormatAvailable(format, buffer);
}
void Clipboard::ReadAvailableTypes(Clipboard::Buffer buffer,
std::vector<string16>* types,
bool* contains_filenames) {
if (!types || !contains_filenames) {
NOTREACHED();
return;
}
// TODO(dcheng): Implement me.
types->clear();
*contains_filenames = false;
}
void Clipboard::ReadText(Clipboard::Buffer buffer, string16* result){
ClipboardType* clipboard = LookupBackingClipboard(buffer);
if (clipboard == NULL)
return;
result->clear();
QString text = clipboard_->text(QClipboard::Mode(qclipboard_mode_));
if (text.isEmpty())
return;
UTF8ToUTF16(text.toUtf8().data(), text.toUtf8().size(), result);
}
void Clipboard::ReadAsciiText(Clipboard::Buffer buffer,
std::string* result) {
ClipboardType* clipboard = LookupBackingClipboard(buffer);
if (clipboard == NULL)
return;
result->clear();
QString text = clipboard_->text(QClipboard::Mode(qclipboard_mode_));
if (text.isEmpty())
return;
result->assign(text.toAscii().data());
}
void Clipboard::ReadFile(FilePath* file) {
*file = FilePath();
}
// TODO(estade): handle different charsets.
// TODO(port): set *src_url.
void Clipboard::ReadHTML(Clipboard::Buffer buffer, string16* markup,
std::string* src_url) {
ClipboardType* clipboard = LookupBackingClipboard(buffer);
if (clipboard == NULL)
return;
markup->clear();
QString format("html");
QString text = clipboard_->text(format, QClipboard::Mode(qclipboard_mode_));
if (text.isEmpty())
return;
UTF8ToUTF16(reinterpret_cast<char*>(text.toUtf8().data()), text.toUtf8().size(), markup);
// If there is a terminating NULL, drop it.
if (!markup->empty() && markup->at(markup->length() - 1) == '\0')
markup->resize(markup->length() - 1);
}
SkBitmap Clipboard::ReadImage(Buffer buffer) const {
// TODO(dcheng): implement this.
NOTIMPLEMENTED();
return SkBitmap();
// if (!data) {
// NOTREACHED();
// return;
// }
}
void Clipboard::ReadBookmark(string16* title, std::string* url) {
// TODO(estade): implement this.
NOTIMPLEMENTED();
}
void Clipboard::ReadData(const std::string& format, std::string* result) {
const QMimeData* mime = clipboard_->mimeData();
if (!mime->hasFormat(QString::fromStdString(format)))
return;
result->assign(reinterpret_cast<char*>(mime->data(QString::fromStdString(format)).data()), mime->data(QString::fromStdString(format)).size());
}
// static
Clipboard::FormatType Clipboard::GetPlainTextFormatType() {
return std::string(kMimeText);
}
// static
Clipboard::FormatType Clipboard::GetPlainTextWFormatType() {
return GetPlainTextFormatType();
}
// static
Clipboard::FormatType Clipboard::GetHtmlFormatType() {
return std::string(kMimeHtml);
}
// static
Clipboard::FormatType Clipboard::GetBitmapFormatType() {
return std::string(kMimeBmp);
}
// static
Clipboard::FormatType Clipboard::GetWebKitSmartPasteFormatType() {
return std::string(kMimeWebkitSmartPaste);
}
void Clipboard::InsertMapping(const char* key,
char* data,
size_t data_len) {
DCHECK(clipboard_data_->find(key) == clipboard_data_->end());
(*clipboard_data_)[key] = std::make_pair(data, data_len);
}
ClipboardType* Clipboard::LookupBackingClipboard(Buffer clipboard) {
switch (clipboard) {
case BUFFER_STANDARD:
{
qclipboard_mode_ = QClipboard::Clipboard;
return clipboard_;
}
case BUFFER_SELECTION:
{
qclipboard_mode_ = QClipboard::Selection;
return clipboard_;
}
default:
NOTREACHED();
return NULL;
}
}
} // namespace ui
| [
"halton.huo@intel.com"
] | halton.huo@intel.com |
ce7dc5aad7c81ecc1a6f3da4fbe2d169a4d5d95b | 15e79f904954c6456eebfad1eb109a3c29d61c5a | /src/util/reimage/main.cpp | 262e479dc9fef40b32e76b1cd26ad3c4df3b754c | [] | no_license | Darksider7/terkos | e8ded3f2f45e7132c2f74a1936b6879bce92f668 | 593ad04a31fd09c10776337c847e9a171212e80d | refs/heads/master | 2016-09-06T11:51:53.588709 | 2013-01-21T06:58:31 | 2013-01-21T06:58:31 | 37,706,130 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 202 | cpp | #include <QtGui/QApplication>
#include "mainwindow.h"
#if 0
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
#endif
| [
"rich.m.legrand@82d350b0-1e1e-11de-b69a-45dc1c5e4070"
] | rich.m.legrand@82d350b0-1e1e-11de-b69a-45dc1c5e4070 |
7c1833ce2b610ad80ec6db2e3a2639952f127704 | 65f3e6b0c62bd22e08a5ef447bef6a6c86e6cd06 | /ouzel/math/Box2.hpp | fb28256f2f28df0dd0f4011acfc0da7184f8db72 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | whztt07/ouzel | f2dfb9f3e6d12d54edf3b5a724ebfb8a04f0b555 | f9a7d6dedd640ca4db429c6c62a72aec5332661c | refs/heads/master | 2020-03-24T22:37:44.426088 | 2018-07-25T08:37:29 | 2018-07-25T08:37:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,921 | hpp | // Copyright 2015-2018 Elviss Strazdins. All rights reserved.
#include <cstdint>
#include <limits>
#include "math/Vector2.hpp"
#include "math/Size2.hpp"
#pragma once
namespace ouzel
{
class Box2
{
public:
Vector2 min;
Vector2 max;
Box2():
min(std::numeric_limits<float>::max(), std::numeric_limits<float>::max()),
max(std::numeric_limits<float>::lowest(), std::numeric_limits<float>::lowest())
{
}
Box2(const Vector2& initMin, const Vector2& initMax):
min(initMin), max(initMax)
{
}
Box2(const Box2& box):
min(box.min), max(box.max)
{
}
inline Vector2 getCenter()
{
return Vector2(0.5F * (min.x + max.x),
0.5F * (min.y + max.y));
}
void getCorners(Vector2* dst) const;
bool intersects(const Box2& aabb) const
{
return !(aabb.min.x > max.x ||
aabb.max.x < min.x ||
aabb.min.y > max.y ||
aabb.max.y < min.y);
}
bool containsPoint(const Vector2& point) const
{
if (point.x < min.x) return false;
if (point.y < min.y) return false;
if (point.x > max.x) return false;
if (point.y > max.y) return false;
return true;
}
void merge(const Box2& box);
void set(const Vector2& newMin, const Vector2& newMax)
{
min = newMin;
max = newMax;
}
void reset()
{
min.set(std::numeric_limits<float>::max(), std::numeric_limits<float>::max());
max.set(std::numeric_limits<float>::lowest(), std::numeric_limits<float>::lowest());
}
bool isEmpty() const
{
return min.x > max.x || min.y > max.y;
}
void insertPoint(const Vector2& point)
{
if (point.x < min.x) min.x = point.x;
if (point.x > max.x) max.x = point.x;
if (point.y < min.y) min.y = point.y;
if (point.y > max.y) max.y = point.y;
}
inline Box2 operator+(const Vector2& v) const
{
Box2 result(*this);
result += v;
return result;
}
inline Box2& operator+=(const Vector2& v)
{
min += v;
max += v;
return *this;
}
inline Box2 operator-(const Vector2& v) const
{
Box2 result(*this);
result -= v;
return result;
}
inline Box2& operator-=(const Vector2& v)
{
min -= v;
max -= v;
return *this;
}
inline Size2 getSize() const
{
return Size2(max.x - min.x, max.y - min.y);
}
};
}
| [
"elviss@elviss.lv"
] | elviss@elviss.lv |
dd0f9884a81b123c625c934aeb66fd6c38e8ab01 | 8257dee52bed07e24e87c13ca90a1b275495a9c4 | /剑指offer/3.cpp | 6ed4af380845c8bf4e190a5f9c57399cb193f871 | [] | no_license | nxety/algorithm | a8a426c087279999a14b1da1ed0794c5c19e03e5 | 5943623326cad713cfe909f99e16abcdc23436b7 | refs/heads/master | 2021-08-23T21:22:34.047569 | 2017-12-06T16:14:31 | 2017-12-06T16:14:31 | 113,451,439 | 1 | 0 | null | 2017-12-07T13:01:40 | 2017-12-07T13:01:39 | null | UTF-8 | C++ | false | false | 675 | cpp | /*输入一个链表,从尾到头打印链表每个节点的值。*/
/**
* struct ListNode {
* int val;
* struct ListNode *next;
* ListNode(int x) :
* val(x), next(NULL) {
* }
* };
*/
class Solution {
public:
vector<int> printListFromTailToHead(ListNode* head) {
vector<int> re;
if(head==NULL)
return re;
stack<int> tmp;
while(head!=NULL){
tmp.push(head->val);
head=head->next;
}
while(!tmp.empty()){
re.push_back(tmp.top());
tmp.pop();
}
return re;
}
}; | [
"fupengfei@yaochufa.com"
] | fupengfei@yaochufa.com |
33c8cf6a33fd1f3e6274a5ac458d7fee9cb8f187 | 81464366d3d2ab91a6600be8646d0856d413d8be | /Majority_element.cpp | c1fd0baf79c022da9748f4697ce2712a12e9e99e | [] | no_license | SunnyJaiswal5297/Basic_c_programs | 08f289d04817f81222ceaacd7362e47fbae2935e | a2fd6168ce4ff075be6488c172200da21058dd93 | refs/heads/master | 2022-12-03T09:53:35.189234 | 2020-07-28T17:17:17 | 2020-07-28T17:17:17 | 283,201,986 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,291 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
int n;
cin>>n;
vector<int> v(n);
for(int i=0;i<n;i++){
cin>>v[i];
}
// Select 1st element as majority element
int majority_index=0;
int count=1;
for(int i=1;i<n;i++){
// If same then increment it's count
if(v[i]==v[majority_index]){
count++;
}
// If different cancel it's count
else{
count--;
}
// If count reduces to zero select current element as majority element and set count to 1
if(count==0){
majority_index=i;
count=1;
}
}
// It returns majority element candidate so check if it's count>n/2
count=0;
for(int i=0;i<n;i++){
if(v[i]==v[majority_index]){
count++;
}
}
if(count>n/2){
cout<<v[majority_index]<<endl;
}
else{
cout<<"NO Majority Element"<<endl;
}
}
} | [
"s2jaiswal.sj@gmail.com"
] | s2jaiswal.sj@gmail.com |
7c80fdeb54d91ac92ac53f076c46d8af0662f0fc | 4e3114e36c7351ab15abf7295527c230f440dd75 | /src/device/objects/object3d.h | e3f50e824c8b441cbaffb930f88dbd4d7ee70bb1 | [] | no_license | t4rf9/RenderEngine-2021 | b8c5e9219d8ad987b7669b556e0e5d96cc1afac1 | 069f3a131f5235ca565b84db517044f03a44bcb7 | refs/heads/master | 2023-06-05T12:05:40.991463 | 2021-06-14T02:26:10 | 2021-06-14T02:26:10 | 375,306,295 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 567 | h | #pragma once
#include <curand_kernel.h>
#include "device/hit.h"
#include "device/material.h"
#include "device/ray.h"
// Base class for all 3d entities.
class Object3D {
public:
__device__ Object3D();
__device__ virtual ~Object3D();
__device__ explicit Object3D(Material *material);
// Intersect Ray with this object. If hit, store information in hit structure.
__device__ virtual bool intersect(const Ray &ray, Hit &hit, float t_min,
curandState &rand_state) = 0;
protected:
Material *material;
};
| [
"t4rf9@163.com"
] | t4rf9@163.com |
59e23b4b9214aa814c4675ed0a6383da948b6507 | 84a30a3016e724d92eb194bfcc88ca35773bad16 | /FM_Client/form1.h | 9979d71840a1f1a1e3f91a3df689ca3f8d79707b | [
"MIT"
] | permissive | mikymaione/FilmManager | c759f0cfb4db690b960870dd0294f1d89c57ad62 | be2dd1342a497dcefd89f2003d2ecbeb0e5e07a1 | refs/heads/master | 2020-07-28T19:48:34.376708 | 2019-09-19T09:43:36 | 2019-09-19T09:43:36 | 209,516,546 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 490 | h | /*
* File: form1.h
* Author: michele
*
* Created on 3 settembre 2014, 18.27
*/
#ifndef _FORM1_H
#define _FORM1_H
#include "ui_form1.h"
class form1 : public QMainWindow
{
Q_OBJECT
public:
form1();
protected:
void closeEvent(QCloseEvent * event);
private:
Ui::form1 widget;
bool Connetti();
bool Login();
public slots:
void FilmClicked();
void ConnessioneClicked();
void ConnettiClicked();
void LoginClicked();
};
#endif /* _FORM1_H */
| [
"mikymaione@hotmail.it"
] | mikymaione@hotmail.it |
1015a5fc2b596f4bb0effeb32e70c94fc8862fc9 | 08886d44886df82ede12c8e8b4b65c7f36195b38 | /src/rules/RulesFactory.hpp | 9059dead7179adbf3c4a426098757597a2d89a5b | [] | no_license | obsiwitch/eduinfoh413a1 | 2654a3e070e92f7b3935fe96cc38698c4c6387d9 | 98fb9adaa4ec85e809395397a763ba1fbb1d2158 | refs/heads/master | 2023-05-04T18:37:09.271107 | 2015-05-18T22:36:54 | 2017-02-14T10:04:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 657 | hpp | #ifndef RULES_FACTORY_HPP
#define RULES_FACTORY_HPP
#include <string>
#include "rules/Initialization/Initialization.hpp"
#include "rules/Neighbourhood/Neighbourhood.hpp"
#include "rules/Pivoting/Improvement.hpp"
struct RulesFactory {
static Initialization* getInitialization(std::string initialization,
Instance& instance);
static Improvement* getPivotingRule(std::string pivotingRule,
Instance& instance);
static Neighbourhood* getNeighbourhood(std::string neighbourhood,
unsigned size);
static Neighbourhood** getVNDNeighbourhood(std::string neighbourhood,
unsigned size);
};
#endif // RULES_FACTORY_HPP
| [
"obsiagae@gmail.com"
] | obsiagae@gmail.com |
5e3802be2afa7fbaa6d918134ab956d816403158 | 7b59a5e4bf1820484c8cb76e1a5caa59f88e345d | /zlibrary/ui/src/bada/image/ZLbadaImageManager.h | e17a663e7359649519c4468d3f58a7f4aacfebf2 | [] | no_license | temper8/FBReader-Tizen | a3fe20646975e79db5db6167420b91f8ddb07974 | a6629f78b3ad0cb2bd2436d1755ddafcf88a424e | refs/heads/master | 2020-05-17T06:05:33.804841 | 2014-05-06T19:10:30 | 2014-05-06T19:10:30 | 10,255,363 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,065 | h | /*
* Copyright (C) 2004-2010 Geometer Plus <contact@geometerplus.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#ifndef __ZLbadaIMAGEMANAGER_H__
#define __ZLbadaIMAGEMANAGER_H__
#include <map>
//#include <QtGui/QImage>
#include <FMedia.h>
#include <FGraphics.h>
#include <ZLImageManager.h>
using namespace Tizen::Media;
using namespace Tizen::Graphics;
class ZLImage;
class ZLbadaImageData : public ZLImageData {
public:
ZLbadaImageData();
~ZLbadaImageData();
unsigned int width() const;
unsigned int height() const;
void init(unsigned int width, unsigned int height);
void setPosition(unsigned int x, unsigned int y);
void moveX(int delta);
void moveY(int delta);
void setPixel(unsigned char r, unsigned char g, unsigned char b);
void copyFrom(const ZLImageData &source, unsigned int targetX, unsigned int targetY);
const Bitmap *image() const { return pBitmap; }
Bitmap* pBitmap;
private:
// QImage *myImage;
unsigned int myX, myY;
friend class ZLbadaImageManager;
};
class ZLbadaImageManager : public ZLImageManager {
public:
static void createInstance() { ourInstance = new ZLbadaImageManager(); }
private:
ZLbadaImageManager() {}
protected:
~ZLbadaImageManager() {}
shared_ptr<ZLImageData> createData() const;
bool convertImageDirect(const std::string &stringData, ZLImageData &imageData) const;
};
#endif /* __ZLbadaIMAGEMANAGER_H__ */
| [
"temper8@gmail.com"
] | temper8@gmail.com |
8f65698a62c90aa5a1d0fdfc713cb478ebe4b3bb | 7b66d850f4af84ca2f230317c3bdcc200fedbe8f | /ProductDetails/BisacDB.h | 43f079ad73bf6fe4d31b6018175ffb2225f56186 | [] | no_license | slapware/ProductDetails | ac07ea42043a4f4d4a4ffa99090cb5eaca9d4168 | a19d863725e69d2101df5c5b761e24dfce4ed0ba | refs/heads/master | 2021-01-01T16:37:00.033455 | 2017-07-20T19:46:53 | 2017-07-20T19:46:53 | 97,871,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,693 | h | // BisacDB.h : database record object class.
// Stephen La Pierre - original SlapWare 8/2/2011 1:22pm
#pragma once
#pragma warning( disable : 4267 ) // Disable warning messages
#ifdef _DEBUG
#define _RWCONFIG 15s
#else
#define _RWCONFIG 12s
#endif
#include <iostream>
#include "Markup.h" // define MARKUP_STL
#include <rw/cstring.h>
//:Special
#define _ThisClass CBisacDB
#define _NumBaseClass 0
//:Custom
using namespace std;
namespace slapware
{ // begin SlapWare namespace
class CBisacDB
{
public:
CBisacDB(void);
CBisacDB(const _ThisClass& rhs_); // Existing object being copied
_ThisClass& operator = (const _ThisClass& rhs_); // right-hand-side of assignment
virtual ~CBisacDB(void);
RWCString QuoteFix(RWCString& toCheck); // for SQL clean
RWCString CheckDate(RWCString& toCheck);// for date clean
// Getter Setter calls *************
RWCString BISAC_Code() const { return m_BISAC_Code; }
void BISAC_Code(RWCString val) { m_BISAC_Code = val; }
RWCString BISAC_Position() const { return m_BISAC_Position; }
void BISAC_Position(RWCString val) { m_BISAC_Position = val; }
RWCString BISAC_Revision() const { return m_BISAC_Revision; }
void BISAC_Revision(RWCString val) { m_BISAC_Revision = val; }
RWCString BISAC_Desc() const { return m_BISAC_Desc; }
void BISAC_Desc(RWCString val) { m_BISAC_Desc = val; }
private:
RWCString m_BISAC_Code;
RWCString m_BISAC_Position;
RWCString m_BISAC_Revision;
RWCString m_BISAC_Desc;
};
} // end SlapWare namespace
//:Special
#undef _ThisClass
#undef _NumBaseClass
| [
"slapware@gmail.com"
] | slapware@gmail.com |
60865577e460408b80a74420caa7ed3c22277d11 | c293843012465429aab76bd6e69849168c66f2b1 | /rawTX/Payer.cpp | 9aa45899da488035a2073cb4a20701b6fe496404 | [] | no_license | evoskuil/LibbitcoinTutorial | 8854aa7994420b8212a3e19081d2ccafce47a38a | f90711b9920a5648e2b560c11f57ee5806884c65 | refs/heads/master | 2022-03-08T02:42:46.369070 | 2017-04-26T07:50:15 | 2017-04-26T07:50:15 | 90,121,200 | 0 | 3 | null | 2017-05-03T07:33:17 | 2017-05-03T07:33:17 | null | UTF-8 | C++ | false | false | 2,930 | cpp | #include <bitcoin/bitcoin.hpp>
#include <string.h>
// #include "microPaymentChannel.cpp"
using namespace bc;
using namespace bc::wallet;
using namespace bc::machine;
using namespace bc::chain;
class Payer
{
public:
//constructor
Payer(std::string mnemonic)
{
wallet = HD_Wallet(split(mnemonic));
payerKey = to_chunk(wallet.childPublicKey(1).point());
}
// void setReciever(data_chunk payee)
// {
// recieverKey = payee;
// }
// data_chunk getRecieverKey()
// {
// return recieverKey;
// }
Channel requestChannel(uint64_t amount, uint32_t holdingPeriod)
{
//recieverKey = getRecieverKey();
payChannel = Channel(payerKey, amount, holdingPeriod);
return payChannel;
}
void confirmChannel(Channel completeChannel)
{
payChannel = completeChannel;
}
Channel getChannel()
{
return payChannel;
}
void makefillUp()
{
fillUp = payChannel.channelFillUp("599cc7320426d23908713e58040984a98f83b7c18759765695f938792835ded6",0);
endorsement sig = signfillUp();
script sigScript = fillUpSigScript(sig);
fillUp.inputs()[0].set_script(sigScript);
}
transaction getfillUp()
{
return fillUp;
}
script fillUpSigScript(endorsement signature)
{
operation::list opList {operation(signature), operation(payerKey)};
return script(opList);
}
endorsement signfillUp()
{
script prevlockingScript = script(script().to_pay_key_hash_pattern(wallet.childAddress(1).hash()));
endorsement signature;
if(script().create_endorsement(signature, wallet.childPrivateKey(1).secret(), prevlockingScript, fillUp, 0, all))
{
//std::cout << "Sig: " << encode_base16(signature) << std::endl;
return signature;
} else {
return signature;
}
}
void setRefundSig(endorsement sig)
{
refundSig = sig;
}
transaction setState(int extraAmount)
{
state = transaction();
hash_digest hash = fillUp.hash(all);
output_point utxo(hash, 0);
input input1 = input();
input1.set_previous_output(utxo);
input1.set_sequence(0);
state.inputs().push_back(input1);
//needs script//
output output1 = output();
output1.set_script(outputP2KHScript(payment_address(ec_public(recieverKey), 0x6f)));
output1.set_value((payChannel.getCurrentValue() + extraAmount));
state.outputs().push_back(output1);
output2.set_script(outputP2KHScript(payment_address(ec_public(payerKey), 0x6f)));
output2.set_value(payChannel.getChannelValue() - (payChannel.getCurrentValue() + extraAmount + 1000));
state.outputs().push_back(output2);
state.set_locktime(1487552300);
std::cout << encode_base16(state.to_data(1)) << std::endl;
return state;
}
void payStream()
{
int x = 1;
while(x == 1)
{
setState(10000);
cin >> x;
}
}
// void getRefundSig()
// {
// }
private:
HD_Wallet wallet;
data_chunk payerKey;
data_chunk recieverKey;
transaction fillUp;
transaction Bond;
transaction state;
Channel payChannel;
endorsement refundSig;
}; | [
"aajaramillo95@gmail.com"
] | aajaramillo95@gmail.com |
1fc154ab4b8940a8fdf0d41d816837e898271811 | 1af49694004c6fbc31deada5618dae37255ce978 | /chrome/browser/media/router/media_router_feature.cc | 52716b28a9b6a77e347387cd41ffe88eebd2db7d | [
"BSD-3-Clause"
] | permissive | sadrulhc/chromium | 59682b173a00269ed036eee5ebfa317ba3a770cc | a4b950c23db47a0fdd63549cccf9ac8acd8e2c41 | refs/heads/master | 2023-02-02T07:59:20.295144 | 2020-12-01T21:32:32 | 2020-12-01T21:32:32 | 317,678,056 | 3 | 0 | BSD-3-Clause | 2020-12-01T21:56:26 | 2020-12-01T21:56:25 | null | UTF-8 | C++ | false | false | 5,462 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/media/router/media_router_feature.h"
#include "base/base64.h"
#include "base/feature_list.h"
#include "base/strings/string_util.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/browser_context.h"
#include "content/public/common/content_features.h"
#include "crypto/random.h"
#include "extensions/buildflags/buildflags.h"
#include "ui/base/buildflags.h"
#if defined(OS_ANDROID) || BUILDFLAG(ENABLE_EXTENSIONS)
#include "chrome/common/pref_names.h"
#include "components/prefs/pref_service.h"
#include "components/user_prefs/user_prefs.h"
#include "media/base/media_switches.h"
#endif // defined(OS_ANDROID) || BUILDFLAG(ENABLE_EXTENSIONS)
#if !defined(OS_ANDROID)
#include "components/prefs/pref_registry_simple.h"
#endif
namespace media_router {
#if !defined(OS_ANDROID)
#if !defined(OFFICIAL_BUILD)
// Enables the media router. Can be useful to disable for local
// development on Mac because DIAL local discovery opens a local port
// and triggers a permission prompt. Only toggleable for developer builds.
const base::Feature kMediaRouter{"MediaRouter",
base::FEATURE_ENABLED_BY_DEFAULT};
#endif // !defined(OFFICIAL_BUILD)
// Controls if browser side DialMediaRouteProvider is enabled.
const base::Feature kDialMediaRouteProvider{"DialMediaRouteProvider",
base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kCastMediaRouteProvider{"CastMediaRouteProvider",
base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature kCastAllowAllIPsFeature{"CastAllowAllIPs",
base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature kGlobalMediaControlsCastStartStop{
"GlobalMediaControlsCastStartStop", base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature kAllowAllSitesToInitiateMirroring{
"AllowAllSitesToInitiateMirroring", base::FEATURE_DISABLED_BY_DEFAULT};
#endif // !defined(OS_ANDROID)
#if defined(OS_ANDROID) || BUILDFLAG(ENABLE_EXTENSIONS)
namespace {
const PrefService::Preference* GetMediaRouterPref(
content::BrowserContext* context) {
return user_prefs::UserPrefs::Get(context)->FindPreference(
::prefs::kEnableMediaRouter);
}
} // namespace
#endif // defined(OS_ANDROID) || BUILDFLAG(ENABLE_EXTENSIONS)
bool MediaRouterEnabled(content::BrowserContext* context) {
#if !defined(OFFICIAL_BUILD) && !defined(OS_ANDROID)
if (!base::FeatureList::IsEnabled(kMediaRouter))
return false;
#endif // !defined(OFFICIAL_BUILD) && !defined(OS_ANDROID)
#if defined(OS_ANDROID) || BUILDFLAG(ENABLE_EXTENSIONS)
const PrefService::Preference* pref = GetMediaRouterPref(context);
// Only use the pref value if it set from a mandatory policy.
if (pref->IsManaged() && !pref->IsDefaultValue()) {
bool allowed = false;
CHECK(pref->GetValue()->GetAsBoolean(&allowed));
return allowed;
}
// The component extension cannot be loaded in guest sessions.
// TODO(crbug.com/756243): Figure out why.
return !Profile::FromBrowserContext(context)->IsGuestSession();
#else // !(defined(OS_ANDROID) || BUILDFLAG(ENABLE_EXTENSIONS))
return false;
#endif // defined(OS_ANDROID) || BUILDFLAG(ENABLE_EXTENSIONS)
}
#if !defined(OS_ANDROID)
void RegisterLocalStatePrefs(PrefRegistrySimple* registry) {
registry->RegisterBooleanPref(prefs::kMediaRouterCastAllowAllIPs, false,
PrefRegistry::PUBLIC);
}
void RegisterProfilePrefs(PrefRegistrySimple* registry) {
// TODO(imcheng): Migrate existing Media Router prefs to here.
registry->RegisterStringPref(prefs::kMediaRouterReceiverIdHashToken, "",
PrefRegistry::PUBLIC);
}
bool GetCastAllowAllIPsPref(PrefService* pref_service) {
auto* pref = pref_service->FindPreference(prefs::kMediaRouterCastAllowAllIPs);
// Only use the pref value if it is set from a mandatory policy.
bool allow_all_ips = false;
if (pref->IsManaged() && !pref->IsDefaultValue()) {
CHECK(pref->GetValue()->GetAsBoolean(&allow_all_ips));
} else {
allow_all_ips = base::FeatureList::IsEnabled(kCastAllowAllIPsFeature);
}
return allow_all_ips;
}
std::string GetReceiverIdHashToken(PrefService* pref_service) {
static constexpr size_t kHashTokenSize = 64;
std::string token =
pref_service->GetString(prefs::kMediaRouterReceiverIdHashToken);
if (token.empty()) {
crypto::RandBytes(base::WriteInto(&token, kHashTokenSize + 1),
kHashTokenSize);
base::Base64Encode(token, &token);
pref_service->SetString(prefs::kMediaRouterReceiverIdHashToken, token);
}
return token;
}
bool DialMediaRouteProviderEnabled() {
return base::FeatureList::IsEnabled(kDialMediaRouteProvider);
}
bool CastMediaRouteProviderEnabled() {
return base::FeatureList::IsEnabled(kCastMediaRouteProvider);
}
bool GlobalMediaControlsCastStartStopEnabled() {
return base::FeatureList::IsEnabled(kGlobalMediaControlsCastStartStop) &&
base::FeatureList::IsEnabled(media::kGlobalMediaControlsForCast) &&
base::FeatureList::IsEnabled(
media::kGlobalMediaControlsOverlayControls);
}
#endif // !defined(OS_ANDROID)
} // namespace media_router
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
011f6b7c49315eaf4bad989cfd6f9bf36f3fd0aa | 673cba652e072b599b0eff18f81a3f38b8aca27c | /Heap_and_BinaryTree/heapSort.h | feffc9a6cc703b8f8fc20beeb00bc47030b251c2 | [] | no_license | s-suong/SS | b0c6d7912f571e2a6dd402234155468d9c6c3de5 | dac4bcf16f713c878bf62fb3c4a1b91cb0190b7a | refs/heads/master | 2020-04-06T08:23:46.157876 | 2018-11-16T02:33:10 | 2018-11-16T02:33:10 | 157,303,143 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,482 | h | #pragma once
inline int getLeftChildIndex(const int& nodeIndex)
{
return (2 * nodeIndex + 1);
}
inline int getRightChildIndex(const int& nodeIndex)
{
return (2 * nodeIndex + 2);
}
inline bool isLeaf(const int& nodeIndex, const int& itemCount)
{
if (getLeftChildIndex(nodeIndex) >= itemCount)
{
return true;
}
return false;
}
inline bool hasRightChild(int nodeIndex, const int& itemCount)
{
if (getRightChildIndex(nodeIndex) < itemCount)
{
return true;
}
return false;
}
template <class ItemType>
void swap(ItemType& a, ItemType& b)
{
ItemType temp = a;
a = b;
b = temp;
}
template <class ItemType>
void heapRebuild(const int& index, ItemType anArray[], const int& n)
{
if (!isLeaf(index, n))
{
int largerChildIndex = 2 * index + 1;
if (hasRightChild(index, n)) //has a right child
{
int rightChildIndex = largerChildIndex + 1;
if (anArray[rightChildIndex] > anArray[largerChildIndex])
{
largerChildIndex = rightChildIndex;
}
}
if (anArray[index] < anArray[largerChildIndex])
{
swap(anArray[index], anArray[largerChildIndex]);
heapRebuild(largerChildIndex, anArray, n);
}
}
}
template<class ItemType>
void heapSort(ItemType anArray[], const int& n)
{
for (int index = n / 2; index >= 0; index--)
{
heapRebuild(index, anArray, n);
}
swap(anArray[0], anArray[n - 1]);
int heapSize = n - 1;
while (heapSize > 1)
{
heapRebuild(0, anArray, heapSize);
swap(anArray[0], anArray[heapSize - 1]);
heapSize--;
}
} | [
"hjhjbetoan3456@gmail.com"
] | hjhjbetoan3456@gmail.com |
3b177c4d9cb8aba650de533d5d21417dac36124a | 570923e6c5427d9ac48966030fbd1387fbaca290 | /service/core/HttpRequest.h | 3be54667051402f78cbbfb569b0b385d785d8c87 | [
"Apache-2.0"
] | permissive | webosose/com.webos.service.swupdater | 78e2690fd36ce9e91a6ea07faa127c7eccbba993 | daa9e72c6ba52ac9f0b195ee7cd2253d58e4cde4 | refs/heads/master | 2021-07-07T20:45:43.991821 | 2021-01-19T04:25:42 | 2021-01-19T04:25:42 | 229,524,231 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,257 | h | // Copyright (c) 2019 LG Electronics, 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.
//
// SPDX-License-Identifier: Apache-2.0
#ifndef CORE_HTTPREQUEST_H_
#define CORE_HTTPREQUEST_H_
#include <algorithm>
#include <map>
#include <sstream>
#include <string>
#include <curl/curl.h>
#include <pbnjson.hpp>
#include "interface/IClassName.h"
#include "interface/IListener.h"
#include "util/Logger.h"
using namespace pbnjson;
using namespace std;
enum MethodType {
MethodType_NONE,
MethodType_GET,
MethodType_POST,
MethodType_PUT,
MethodType_DELETE,
};
class HttpRequest : public IClassName {
public:
static string toString(long responseCode);
HttpRequest();
virtual ~HttpRequest();
virtual bool open(const MethodType& methodType, const std::string& url);
virtual bool send(JValue request = nullptr);
long getStatus()
{
long responseCode = 0;
CURLcode rc = curl_easy_getinfo(m_easyHandle, CURLINFO_RESPONSE_CODE, &responseCode);
if (rc != CURLE_OK) {
Logger::error(getClassName(), "Failed in curl_easy_getinfo(RESPONSE_CODE)", curl_easy_strerror(rc));
}
return responseCode;
}
string& getResponseText()
{
return m_responseText;
}
protected:
static size_t onReceiveResponse(char* contents, size_t size, size_t nmemb, void* userdata);
bool prepare();
void addHeader(const std::string& key, const std::string& val);
bool setUrl(const std::string& url);
bool setMethod(MethodType method);
// request
CURL* m_easyHandle;
enum MethodType m_type;
struct curl_slist* m_header;
string m_url;
string m_requestText;
string m_responseText;
};
#endif /* CORE_HTTPREQUEST_H_ */
| [
"sangwoo82.kang@lge.com"
] | sangwoo82.kang@lge.com |
abcadf39167698c4d31b8ae382c4b623dc81247e | 202d02a2a749be7e3e5440e962670d9836a79f25 | /src/system/EventSystem/EventCenter.cpp | 648d26bd50d006863de0aa400e095d0c09367bd0 | [
"MIT"
] | permissive | martonantoni/pixie | 792b3b373c002a2a5089598fdfc9ade3f6aec55f | 4760e1363eb20919ef5c9d4b5adb5b7d955e3ccf | refs/heads/master | 2023-08-17T02:53:27.056968 | 2023-08-12T16:01:25 | 2023-08-12T16:01:25 | 249,523,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | cpp | #include "StdAfx.h"
cEventCenter *theEventCenter=NULL;
cEventCenter::cEventCenter()
{
theEventCenter=this;
}
void cEventCenter::PostEvent(cEvent &&Event, tIntrusivePtr<cEventDispatcher> Dispatcher)
{
mEvents_Writing.emplace_back(std::move(Event), std::move(Dispatcher));
if (!mDispatchingEvents && mEvents_Writing.size() == 1 && mNeedDispatchProcessor)
{
mNeedDispatchProcessor();
}
}
void cEventCenter::DispatchEvents(DWORD loopUntil)
{
mDispatchingEvents = true;
for (;;)
{
std::swap(mEvents_Reading, mEvents_Writing);
for (auto& Event : mEvents_Reading)
{
std::get<1>(Event)->Internal_DispatchEvent(std::get<0>(Event));
}
mEvents_Reading.clear();
if (loopUntil == 0)
break;
if (mEvents_Writing.empty())
break;
if (loopUntil - ::GetTickCount() > 0xf000'0000u)
break;
}
mDispatchingEvents = false;
if (!mEvents_Writing.empty() && mNeedDispatchProcessor)
{
mNeedDispatchProcessor();
}
}
| [
"marton.antoni@gmail.com"
] | marton.antoni@gmail.com |
c9a8051846a86bc4fe3d36a9e5cf96ceeb4a09d9 | 0cff774245478cb79949ebb61822bd3e129a92cd | /Sound/Mp3Sound.cpp | d89ae9111e9cc29c0721ee94dad46b78e87fde00 | [] | no_license | include-iinteresting/SoundManager | 5eb6508eaf88c93a069b08d8f93cee7d9a9f66f3 | 88ff954824e9d262b05128fd0189f23c5ababda3 | refs/heads/master | 2020-07-01T03:08:58.521609 | 2019-09-01T21:03:53 | 2019-09-01T21:03:53 | 201,027,723 | 0 | 0 | null | 2019-09-01T21:03:54 | 2019-08-07T10:27:17 | C | SHIFT_JIS | C++ | false | false | 10,204 | cpp | #include "stdafx.h"
#include "Mp3Sound.h"
#include <dsound.h>
#include "DirectSound.h"
#pragma comment(lib, "winmm.lib")
#pragma comment(lib, "msacm32.lib")
#pragma comment ( lib, "dxguid.lib" )
#define PLAY_TIME 1
/**
* @brief コンストラクタ
*/
CMp3Sound::CMp3Sound(const char *pFilename, bool bLoopFlag)
{
m_pFilename = pFilename;
m_bLoopFlag = bLoopFlag;
m_bFinFlag = false;
m_uiWriteFlag = 0;
m_dwPoint = 0;
m_has = { 0 };
m_ash = { 0 };
m_uiBufSize = 0;
m_lStartBlockPos = 0;
this->DecodePrepare();
}
/**
* @brief デストラクタ
*/
CMp3Sound::~CMp3Sound()
{
// ACMの後始末
acmStreamUnprepareHeader(m_has, &m_ash, 0);
acmStreamClose(m_has, 0);
// ファイルを閉じる
CloseHandle(m_hFile);
// 動的確保したデータを開放
delete[] m_ash.pbSrc;
delete[] m_ash.pbDst;
SAFE_RELEASE(m_pSecondary);
SAFE_RELEASE(m_pDSB);
}
/**
* @brief 更新
*/
void CMp3Sound::Update()
{
void* AP1 = 0, *AP2 = 0;
DWORD AB1 = 0, AB2 = 0;
m_pSecondary->GetCurrentPosition(&m_dwPoint, 0);
if (m_uiWriteFlag == 0 && m_dwPoint >= m_uiBufSize)
{
// 前半に書き込み
if (SUCCEEDED(m_pSecondary->Lock(0, m_uiBufSize, &AP1, &AB1, &AP2, &AB2, 0)))
{
this->GetPcmBufferFromMp3(m_hFile, m_has, m_ash, (char*)AP1, AB1, m_bLoopFlag, &m_bFinFlag);
m_pSecondary->Unlock(AP1, AB1, AP2, AB2);
m_uiWriteFlag = 1;
}
}
else if (m_uiWriteFlag == 1 && m_dwPoint < m_uiBufSize)
{
// 後半に書き込み
if (SUCCEEDED(m_pSecondary->Lock(m_uiBufSize, m_uiBufSize << 1, &AP1, &AB1, &AP2, &AB2, 0))) {
this->GetPcmBufferFromMp3(m_hFile, m_has, m_ash, (char*)AP1, AB1, m_bLoopFlag, &m_bFinFlag);
m_pSecondary->Unlock(AP1, AB1, AP2, AB2);
m_uiWriteFlag = 0;
}
}
}
/**
* @brief 再生
* @param [in] dwPriority 優先度
* @param [in] dwFlag 再生フラグ
*/
void CMp3Sound::Play(DWORD dwPriority, DWORD dwFlag)
{
if (m_pSecondary)
m_pSecondary->Play(0, dwPriority, dwFlag);
}
/**
* @brief 停止
*/
void CMp3Sound::Stop()
{
if (m_pSecondary)
m_pSecondary->Stop();
}
/**
* @brief 終了
*/
void CMp3Sound::Done()
{
if (m_pSecondary)
{
if (m_pSecondary) {
m_pSecondary->Stop();
// 読み込み位置を最初に戻す
m_uiWriteFlag = 0;
m_pSecondary->SetCurrentPosition(0);
SetFilePointer(m_hFile, m_lStartBlockPos, NULL, FILE_BEGIN);
// 音声データクリア
void* AP1 = 0, *AP2 = 0;
DWORD AB1 = 0, AB2 = 0;
m_pSecondary->Lock(0, m_uiBufSize << 1, &AP1, &AB1, &AP2, &AB2, DSBLOCK_ENTIREBUFFER);
m_pSecondary->Unlock(AP1, AB1, AP2, AB2);
}
}
}
/**
* @brief ループフラグの設定
* @param [in] bFlag 設定するフラグ
*/
void CMp3Sound::SetLoopFlag(bool bFlag)
{
if (m_bLoopFlag != bFlag)
m_bLoopFlag = bFlag;
}
/**
* @brief セカンダリバッファの生成
*/
void CMp3Sound::CreateSecondaryBuffer(WAVEFORMATEX wfx)
{
IDirectSound8 *pDS8 = CDirectSound::GetDirectSound8();
// DirectSoundBuffer情報
DSBUFFERDESC DSBufferDesc;
DSBufferDesc.dwSize = sizeof(DSBUFFERDESC);
DSBufferDesc.dwFlags = DSBCAPS_CTRLVOLUME;
DSBufferDesc.dwBufferBytes = wfx.nAvgBytesPerSec * PLAY_TIME;
DSBufferDesc.dwReserved = 0;
DSBufferDesc.lpwfxFormat = &wfx;
DSBufferDesc.guid3DAlgorithm = GUID_NULL;
m_uiBufSize = DSBufferDesc.dwBufferBytes >> 1;
pDS8->CreateSoundBuffer(&DSBufferDesc, &m_pDSB, NULL);
m_pDSB->QueryInterface(IID_IDirectSoundBuffer, (void**)&m_pSecondary);
}
/**
* @brief デコードする準備
*/
void CMp3Sound::DecodePrepare()
{
//! 文字列型の変換
wchar_t *tmp = new wchar_t[strlen(m_pFilename) + 1];
size_t len;
mbstowcs_s(&len, tmp, strlen(m_pFilename) + 1, m_pFilename, strlen(m_pFilename) + 1);
// ファイルを開く
m_hFile = CreateFile(
tmp,
GENERIC_READ,
0,
NULL,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL,
NULL
);
if (m_hFile == INVALID_HANDLE_VALUE)
return; // エラー
// ファイルサイズ取得
DWORD fileSize = GetFileSize(m_hFile, NULL);
BYTE header1[10];
DWORD readSize1;
// ヘッダの読み込み
ReadFile(m_hFile, header1, 10, &readSize1, NULL);
DWORD offset; // MP3データの位置
DWORD size; // MP3データのサイズ
// 先頭3バイトのチェック
if (memcmp(header1, "ID3", 3) == 0) {
// タグサイズを取得
DWORD tagSize =
((header1[6] << 21) |
(header1[7] << 14) |
(header1[8] << 7) |
(header1[9])) + 10;
// データの位置、サイズを計算
offset = tagSize;
size = fileSize - offset;
}
else {
// 末尾のタグに移動
BYTE tag[3];
SetFilePointer(m_hFile, fileSize - 128, NULL, FILE_BEGIN);
ReadFile(m_hFile, tag, 3, &readSize1, NULL);
// データの位置、サイズを計算
offset = 0;
if (memcmp(tag, "TAG", 3) == 0)
size = fileSize - 128; // 末尾のタグを省く
else
size = fileSize; // ファイル全体がMP3データ
}
// ファイルポインタをMP3データの開始位置に移動
SetFilePointer(m_hFile, offset, NULL, FILE_BEGIN);
BYTE header2[4];
DWORD readSize2;
ReadFile(m_hFile, header2, 4, &readSize2, NULL);
//!< MP3BlockDataのスタート位置を取得
m_lStartBlockPos += offset;
m_lStartBlockPos += readSize2;
//!< Check bitA FrameHeader
if (!(header2[0] == 0xFF && (header2[1] & 0xE0) == 0xE0))
return;
//!< Check bitB MPEGVersion
BYTE version = (header2[1] >> 3) & 0x03;
//!< Check bitC numLayer
BYTE layer = (header2[1] >> 1) & 0x03;
//!< Check bitE bitLate
// ビットレートのテーブル
const WORD bitRateTable[][16] = {
// MPEG1, Layer1
{ 0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,-1 },
// MPEG1, Layer2
{ 0,32,48,56,64,80,96,112,128,160,192,224,256,320,384,-1 },
// MPEG1, Layer3
{ 0,32,40,48,56,64,80,96,112,128,160,192,224,256,320,-1 },
// MPEG2/2.5, Layer1,2
{ 0,32,48,56,64,80,96,112,128,144,160,176,192,224,256,-1 },
// MPEG2/2.5, Layer3
{ 0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,-1 }
};
INT index;
if (version == 3) {
index = 3 - layer;
}
else {
if (layer == 3)
index = 3;
else
index = 4;
}
WORD bitRate = bitRateTable[index][header2[2] >> 4];
//!< Check bitF SamplingFrequency
// サンプリングレートのテーブル
const WORD sampleRateTable[][4] = {
{ 44100, 48000, 32000, -1 }, // MPEG1
{ 22050, 24000, 16000, -1 }, // MPEG2
{ 11025, 12000, 8000, -1 } // MPEG2.5
};
switch (version) {
case 0:
index = 2;
break;
case 2:
index = 1;
break;
case 3:
index = 0;
break;
}
WORD sampleRate =
sampleRateTable[index][(header2[2] >> 2) & 0x03];
//!< Load Padding And ChannelMode
BYTE padding = header2[2] >> 1 & 0x01;
BYTE channel = header2[3] >> 6;
// サイズ取得
WORD blockSize = ((144 * bitRate * 1000) / sampleRate) + padding;
// フォーマット取得
MPEGLAYER3WAVEFORMAT mf;
mf.wfx.wFormatTag = WAVE_FORMAT_MPEGLAYER3;
mf.wfx.nChannels = channel == 3 ? 1 : 2;
mf.wfx.nSamplesPerSec = sampleRate;
mf.wfx.nAvgBytesPerSec = (bitRate * 1000) / 8;
mf.wfx.nBlockAlign = 1;
mf.wfx.wBitsPerSample = 0;
mf.wfx.cbSize = MPEGLAYER3_WFX_EXTRA_BYTES;
mf.wID = MPEGLAYER3_ID_MPEG;
mf.fdwFlags =
padding ?
MPEGLAYER3_FLAG_PADDING_ON :
MPEGLAYER3_FLAG_PADDING_OFF;
mf.nBlockSize = blockSize;
mf.nFramesPerBlock = 1;
mf.nCodecDelay = 1393;
WAVEFORMATEX wfx = { 0 };
wfx.wFormatTag = WAVE_FORMAT_PCM;
acmFormatSuggest(
NULL,
&mf.wfx,
&wfx,
sizeof(WAVEFORMATEX),
ACM_FORMATSUGGESTF_WFORMATTAG
);
//!< Open AcmStream
acmStreamOpen(&m_has, NULL, &mf.wfx, &wfx, NULL, 0, 0, 0);
//!< MP3BlockSize Change Wave
DWORD waveBlockSize;
acmStreamSize(
m_has,
blockSize,
&waveBlockSize,
ACM_STREAMSIZEF_SOURCE
);
//!< Set AcmStreamStruct
m_ash.cbStruct = sizeof(ACMSTREAMHEADER);
m_ash.pbSrc = new BYTE[blockSize];
m_ash.cbSrcLength = blockSize;
m_ash.pbDst = new BYTE[waveBlockSize];
m_ash.cbDstLength = waveBlockSize;
//!< AcmStreamDecodePrepare
acmStreamPrepareHeader(m_has, &m_ash, 0);
this->CreateSecondaryBuffer(wfx);
}
/**
* @brief MP3からPCMデータに変換する
* @param [in] hFile FILEHANDLE
* @param [in] has HACMSTREAM
* @param [in] ash ACMSTREAMHEADER
* @param [out] buffer PCMBuffer
* @param [in] bufferSize バッファのサイズ
* @param [in] isLoop ループフラグ
* @param [out] isEnd 終了フラグ
*/
unsigned int CMp3Sound::GetPcmBufferFromMp3(HANDLE hFile, HACMSTREAM has, ACMSTREAMHEADER ash, char * buffer, int bufferSize, bool isLoop, bool * isEnd)
{
if (buffer == 0) {
if (isEnd)
*isEnd = true;
return 0;
}
if (isEnd)
*isEnd = false;
memset(buffer, 0, bufferSize);
int requestSize = ash.cbSrcLength;
DWORD readSize = 0;
int comSize = 0;
bool isAdjust = false;
if (bufferSize < requestSize)
{
requestSize = bufferSize;
isAdjust = true; // 調整段階
}
while (true)
{
ReadFile(hFile, ash.pbSrc, requestSize, &readSize, NULL);
acmStreamConvert(has, &ash, ACM_STREAMCONVERTF_BLOCKALIGN);
// デコードしたWAVEデータをそのまま格納
CopyMemory(
(LPBYTE)buffer + comSize,
ash.pbDst,
ash.cbDstLengthUsed
);
if (readSize == 0)
{
// ファイルエンドに到達した
if (isLoop == true)
{
// ループする場合、読み込み位置を最初に戻す
SetFilePointer(hFile, m_lStartBlockPos, NULL, FILE_BEGIN);
}
else
{
// ループしない場合、終了
if (isEnd)
*isEnd = true;
return comSize;
}
}
comSize += ash.cbDstLengthUsed;
if (comSize >= bufferSize)
{
// バッファを埋め尽くしたので終了
return comSize;
}
if (bufferSize - comSize < requestSize) {
isAdjust = true; // 調整段階
requestSize = bufferSize - comSize;
}
}
return 0; // 謎のエラー(ここでreturnすることは基本的にない)
}
| [
"game_love_h@outlook.jp"
] | game_love_h@outlook.jp |
87b06a33ce490ca479e3675289e9ab9a05084993 | 72530b12990dc28da37e3aad3d32bf8768af630b | /CPP/cpp_pool/day04/ex03/IMateriaSource.hpp | 33e54b2676c077d43c44ca95516d4279941492c4 | [] | no_license | lacretelle/42_cursus | baa805415819a74535d94a9a2f2ca058080d70c0 | 3333da966109c1e378545137b5530148ecd7d972 | refs/heads/master | 2023-03-17T16:19:31.627724 | 2021-03-05T15:25:57 | 2021-03-05T15:25:57 | 317,812,905 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 270 | hpp | #ifndef IMATERIA_SOURCE_HPP
# define IMATERIA_SOURCE_HPP
# include "AMateria.hpp"
class IMateriaSource
{
public:
virtual ~IMateriaSource() {}
virtual void learnMateria(AMateria *) = 0;
virtual AMateria *createMateria(std::string const &type) = 0;
};
#endif | [
"marie@MacBook-Air-de-Marie.local"
] | marie@MacBook-Air-de-Marie.local |
deab5380e5b2801aad72782f708266d1f6eecfaf | 5bbbe92351acc1d319bf688dfd22bad51f2055df | /본문소스/CH_36_03/CH_36_03.ino | cc3eb38582dcc0047497c02cc75e8a5e9558ef89 | [] | no_license | lsa-src/ArduinoBible | 70a8d152af68fbecfeb5cc8bf93d5a3a288ba653 | a293231368f8c9b14014dd551575b1452f1c8108 | refs/heads/main | 2023-05-27T00:36:13.742810 | 2021-06-07T01:19:45 | 2021-06-07T01:19:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,921 | ino | #include <LiquidCrystal_I2C.h>
#include <Keypad.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // (주소, 열, 행)
byte rowPins[4] = { 9, 8, 7, 6 }; // 행 연결 핀
byte colPins[4] = { 5, 4, 3, 2 }; // 열 연결 핀
const byte ROWS = 4; // 행 수
const byte COLS = 4; // 열 수
char key_values[] = { // 키 값
'1', '2', '3', 'A',
'4', '5', '6', 'B',
'7', '8', '9', 'C',
'*', '0', '#', 'D'
};
// 키 값 ‘A’에서 ‘D’까지를 사칙연산자로 대응시켜 출력
char operatorSymbol[] = { '+', '-', '*', '/' };
// 키패드 객체 생성 (키값, 행 연결 핀, 열 연결 핀, 행 수, 열 수)
Keypad keypad = Keypad( key_values, rowPins, colPins, ROWS, COLS);
byte X = 0; // 텍스트 LCD에 키 입력을 표시할 위치
byte state = 1; // 계산기의 상태
int operand1, operand2, result; // 입력한 숫자와 계산 결과
char op; // 입력한 사칙연산자
void setup() {
lcd.init(); // LCD 초기화
lcd.backlight(); // 백라이트 켜기
resetCalculator(); // 계산기 초기화
displayMessage("* Let's Start !");
}
void loop() {
char key = keypad.getKey(); // 눌러진 키 확인
if (key) { // 키가 눌러진 경우
switch (state) { // 현재 상태에 따라 다른 함수 호출
case 1: handleState1(key); break;
case 2: handleState2(key); break;
case 3: handleState3(key); break;
case 4: handleState4(key); break;
}
}
}
void resetCalculator() { // 계산기 상태 초기화
state = 1; // 초기 상태
operand1 = 0; // 첫 번째 피연산자
operand2 = 0; // 두 번째 피연산자
result = 0; // 계산 결과
op = 0; // 연산자
lcd.clear();
X = 0; // 키 입력 표시 위치
}
void displayInput(char key) { // 키 입력을 텍스트 LCD에 표시
lcd.setCursor(X, 0); // 첫 번째 줄에 표시
lcd.write(key);
X = (X + 1) % 16;
}
void displayMessage(char *msg) { // 메시지 출력
lcd.setCursor(0, 1); // 두 번째 줄에 표시
lcd.print(msg);
}
void handleState1(char key) { // 상태 1
if (keyInGroup1(key)) { // 숫자 키 입력
resetCalculator(); // 수식 입력 시작에 따른 계산기 초기화
state = 2; // 상태 2로 이동
operand1 = key - '0'; // 첫 번째 피연산자 계산
displayInput(key); // 텍스트 LCD에 키 입력 표시
}
else if (keyInGroup2(key)) { // 사칙연산자 키 입력
state = 1; // 상태 1, 초기 상태로 이동
resetCalculator(); // 계산기 초기화
displayMessage("* ERR : S1, IN2"); // 오류 : 상태 1에서 그룹 2 키 입력
}
else if (keyInGroup3(key)) { // 등호 연산자 키 입력
state = 1; // 상태 1, 초기 상태로 이동
resetCalculator(); // 계산기 초기화
displayMessage("* ERR : S1, IN3"); // 오류 : 상태 1에서 그룹 3 키 입력
}
else if (keyInGroup4(key)) { // 리셋 키 입력
state = 1; // 상태 1, 초기 상태로 이동
resetCalculator(); // 계산기 초기화
displayMessage("* RESET"); // 수식 입력 취소로 초기 상태로 이동
}
}
void handleState2(char key) { // 상태 2
if (keyInGroup1(key)) { // 숫자 키 입력
operand1 = operand1 * 10 + (key - '0'); // 첫 번째 피연산자 업데이트
displayInput(key);
}
else if (keyInGroup2(key)) { // 사칙연산자 키 입력
state = 3; // 상태 3으로 이동
op = key; // 연산자 저장
displayInput(operatorSymbol[key - 'A']);
}
else if (keyInGroup3(key)) { // 등호 연산자 키 입력
state = 1; // 상태 1, 초기 상태로 이동
displayMessage("* ERR : S2, IN3"); // 오류 : 상태 2에서 그룹 3 키 입력
}
else if (keyInGroup4(key)) { // 리셋 키 입력
state = 1; // 상태 1, 초기 상태로 이동
displayMessage("* RESET"); // 수식 입력 취소로 초기 상태로 이동
}
}
void handleState3(char key) { // 상태 3
if (keyInGroup1(key)) { // 숫자 키 입력
state = 4; // 상태 4로 이동
operand2 = key - '0'; // 두 번째 피연산자 계산
displayInput(key);
}
else if (keyInGroup2(key)) { // 사칙연산자 키 입력
state = 1; // 상태 1, 초기 상태로 이동
displayMessage("* ERR : S3, IN2"); // 오류 : 상태 3에서 그룹 2 키 입력
}
else if (keyInGroup3(key)) { // 등호 연산자 키 입력
state = 1; // 상태 1, 초기 상태로 이동
displayMessage("* ERR : S3, IN3"); // 오류 : 상태 3에서 그룹 3 키 입력
}
else if (keyInGroup4(key)) { // 리셋 키 입력
state = 1; // 상태 1, 초기 상태로 이동
displayMessage("* RESET"); // 수식 입력 취소로 초기 상태로 이동
}
}
void handleState4(char key) { // 상태 4
if (keyInGroup1(key)) { // 숫자 키 입력
operand2 = operand2 * 10 + (key - '0'); // 두 번째 피연산자 업데이트
displayInput(key);
}
else if (keyInGroup2(key)) { // 사칙연산자 키 입력
state = 1; // 상태 1, 초기 상태로 이동
displayMessage("* ERR : S4, IN2"); // 오류 : 상태 4에서 그룹 2 키 입력
}
else if (keyInGroup3(key)) { // 등호 연산자 키 입력
state = 1; // 상태 1, 초기 상태로 이동
calculateResult(); // 계산 결과 표시
}
else if (keyInGroup4(key)) { // 리셋 키 입력
state = 1; // 상태 1, 초기 상태로 이동
displayMessage("* RESET"); // 수식 입력 취소로 초기 상태로 이동
}
}
void calculateResult() { // 수식 계산
if (op == 'D' && operand2 == 0) {
displayMessage("* DIV by ZERO"); // 0으로 나누기 오류
return;
}
switch (op) {
case 'A' : // 더하기
result = operand1 + operand2;
break;
case 'B' : // 빼기
result = operand1 - operand2;
break;
case 'C' : // 곱하기
result = operand1 * operand2;
break;
case 'D' : // 나누기
result = operand1 / operand2;
break;
}
lcd.setCursor(0, 1); // 두 번째 줄에 계산 결과 표시
lcd.print(" = ");
lcd.print(result);
}
boolean keyInGroup1(char key) { // Group 1 : 숫자 키
if (key >= '0' && key <= '9') return true;
else return false;
}
boolean keyInGroup2(char key) { // Group 2 : 사칙연산자 키
if (key >= 'A' && key <= 'D') return true;
else return false;
}
boolean keyInGroup3(char key) { // Group 3 : 대입 연산자 키
return (key == '#');
}
boolean keyInGroup4(char key) { // Group 4 : 리셋 키
return (key == '*');
}
| [
"jeipubmanager@gmail.com"
] | jeipubmanager@gmail.com |
d5c6f6ce7547f478c8aa8c5a28975f22fd80c80e | 1619ba097a1a7dfe0cc275e60d7e936539a45ac7 | /0011/hubee.ino | 9a378c2242b7d06ee370ea3ec8b0fce6dd629fd9 | [] | no_license | calumk/CalumK-Blog | 00ab85ed27633df0b219b6cabd5743182d5da08f | b6530b16b11b8cfac550ab7f6222bd7bbfc2b1a3 | refs/heads/master | 2016-08-05T06:35:04.702611 | 2015-07-19T21:45:32 | 2015-07-19T21:45:32 | 39,348,114 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,660 | ino | //
// Sample script to allow your robots to move exact distances (to within 1.4mm) and to turn degrees.
// Should be as accurate as possible, but not 100% convinced the encoder code is correct. (I didnt write that bit) So Worth checking manually that there are 128 counts reported per revolution.
//
// Make sure you settup the pins correctly. This may not work out of the box.
//
//
// 1. You will need to add in the Correct circumfrence equation from your robot. This is the pi*D where D is the distance between the CENTER of each wheel - This can be changed in the rot2enc() function. - hardcode it, dont leave it as math. too slow.
//
// 2. Not TESTED!!!!
#include <HUBeeBMDWheel.h>
//declare two wheel objects - each encapsulates all the control functions for a wheel
HUBeeBMDWheel wheel_1;
HUBeeBMDWheel wheel_2;
int wheel_1Speed, wheel_2Speed; //wheel speed variables
int wheel_1QeiAPin = 3; //external interrupt 0 used for wheel 1 encoder chanel A
int wheel_1QeiBPin = 7; //wheel 1 encoder chanel B input
int wheel_2QeiAPin = 2; //external interrupt 1 used for wheel 2 encoder chanel A
int wheel_2QeiBPin = 4; //wheel 2 encoder chanel B input
int wheel_1QeiCounts, wheel_2QeiCounts; //quadrature encoder counter variables
void setup()
{
pinMode(wheel_1QeiAPin, INPUT_PULLUP);
pinMode(wheel_2QeiAPin, INPUT_PULLUP);
pinMode(wheel_1QeiBPin, INPUT_PULLUP);
pinMode(wheel_2QeiBPin, INPUT_PULLUP);
wheel_1.setupPins(8,11,9); //setup using pins 12 and 2 for direction control, and 3 for PWM speed control
wheel_2.setupPins(12,13,10);//setup using pins 13 and 4 for direction control, and 11 for PWM speed control
wheel_1.setDirectionMode(0); //Direction Mode determines how the wheel responds to positive and negative motor power values
wheel_2.setDirectionMode(0);
wheel_2.setBrakeMode(0); //Sets the brake mode to zero - freewheeling mode - so wheel 2 is easy to turn by hand
attachInterrupt(0, QEI_wheel_1, CHANGE);
attachInterrupt(1, QEI_wheel_2, CHANGE);
wheel_1Speed = 0;
wheel_1QeiCounts = 0;
wheel_2QeiCounts = 0;
}
void loop()
{
moveDistance(100) //100mm
turnDegrees(90) //90Deg
moveDistance(100) //100mm
moveDistance(100,false) //-100mm
turnDegrees(90,false) //-90Deg
end()
}
int dis2enc(dist){
encCalc = 1.47262155637; //mm - (2*pi*30) / 128 - ASSUMING RADIUS OF WHEEL IS 30mm ... CHECK!!!!
enc = dist / encCalc;
return int(enc)
}
int rot2enc(deg){
circumfrence = 628.318530718; //mm - (2*pi*100) - ASSUMING RADIUS OF ROBOT IS 100. THIS MUST BE MODIFIED!!!!!!
cirDeg = circumfrence/360; // 1.74532925199 encoder counts per degree of robot turn
enc = deg/cirDeg;
return int(enc)
}
void end()
{
while (1 = 1){}
}
// Move a distance
void moveDistance(distance,direction = true) // set direction to false for reverse
{
wheel_1QeiCounts = 0;
wheel_2QeiCounts = 0;
if(direction == true)
{
while(wheel_1QeiCounts <= dis2enc(distance))
{
wheel_1.setMotorPower(1); // what is on?
wheel_2.setMotorPower(1); // what is on?
}
}else{
while(abs(wheel_1QeiCounts) <= dis2enc(distance)) // abs is used to correct for negative wheel_1QeiCounts when reversing
{
wheel_1.setMotorPower(-1); // what is reverse?
wheel_2.setMotorPower(-1); // what is reverse?
}
}
wheel_1.setMotorPower(0); // off?
wheel_2.setMotorPower(0); // off?
}
// Move a distance
void turnDegrees(degrees,direction = true) // set direction to false for right?
{
wheel_1QeiCounts = 0;
wheel_2QeiCounts = 0;
if(direction == true)
{
while(wheel_1QeiCounts <= rot2enc(degrees))
{
wheel_1.setMotorPower(1); // forward?
wheel_2.setMotorPower(-1); // back?
}
}else{
while(abs(wheel_1QeiCounts) <= rot2enc(degrees)) // abs is used to correct for negative wheel_1QeiCounts when reversing
{
wheel_1.setMotorPower(-1); // back?
wheel_2.setMotorPower(1); // forward?
}
}
wheel_1.setMotorPower(0); // off?
wheel_2.setMotorPower(0); // off?
}
void QEI_wheel_1() //removed the comments
{
if(digitalRead(wheel_1QeiAPin))
{
if(digitalRead(wheel_1QeiBPin))
{
wheel_1QeiCounts--;
return;
}
wheel_1QeiCounts++;
return;
}
if(digitalRead(wheel_1QeiBPin))
{
wheel_1QeiCounts++;
return;
}
wheel_1QeiCounts--;
}
void QEI_wheel_2() //removed the comments
{
if(digitalRead(wheel_2QeiAPin))
{
if(digitalRead(wheel_2QeiBPin))
{
wheel_2QeiCounts--;
return;
}
wheel_2QeiCounts++;
return;
}
if(digitalRead(wheel_2QeiBPin))
{
wheel_2QeiCounts++;
return;
}
wheel_2QeiCounts--;
}
| [
"calum@calumk.com"
] | calum@calumk.com |
ec5978e422b73006235f753b6406f944341602f0 | 9a19706b8c603a4ebca2f174e28c021ee7b701c3 | /main.cpp | ef1b43a19bf5a682749878562e03446c1fa89d83 | [] | no_license | DryFrost/PhotogonMDI | 62cfb7a472607ef48b5d67435bf6e07dafa62d8c | d0c913462c11d1db4228415be4ff58908b9623d0 | refs/heads/master | 2020-04-14T22:35:40.550692 | 2019-10-02T02:12:45 | 2019-10-02T02:12:45 | 164,169,158 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | cpp | #include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setStyle("Material");
MainWindow w;
QApplication::setOrganizationName("MST");
QApplication::setOrganizationDomain("mst.edu");
QApplication::setApplicationName("Photogon");
w.show();
return a.exec();
}
| [
"dnguyen@Danes-MacBook-Pro.local"
] | dnguyen@Danes-MacBook-Pro.local |
ff32d93a13bf7128173f3f0f0c0acb29697a51ea | 88c3f6564cb9294ff69508c8823093626774face | /include/Movable.h | d0024f926c098e063f962ea6ea3b8a3ee2682582 | [
"MIT"
] | permissive | RickvanLoo/PacmanCpp | c39ccf7430ba16b39efaf4e7b8da28946c1939b6 | f83400b8897cf2579d3a15342434f7ce2ce0f292 | refs/heads/master | 2021-05-31T03:15:03.618716 | 2016-04-01T15:24:54 | 2016-04-01T15:24:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 510 | h | /*
* Movable.h
*
* Created on: Mar 29, 2016
* Author: rick
*/
#ifndef SRC_MOVABLE_H_
#define SRC_MOVABLE_H_
#include "GameObject.h"
#include <map>
#include <tuple>
class Movable: public GameObject {
public:
Movable(int, int, Type, Direction);
void GoLeft();
void GoRight();
void GoUp();
void GoDown();
void Move(int, int);
void setMoving(bool);
bool getMoving();
void setDir(Direction);
Direction getDir();
private:
bool Moving;
Direction CurrentDir;
};
#endif /* SRC_MOVABLE_H_ */
| [
"rivalo@home.nl"
] | rivalo@home.nl |
4d1254af880db1b9b15d4770fe3ea5d4fad4ff01 | 902e56e5eb4dcf96da2b8c926c63e9a0cc30bf96 | /LibsExternes/Includes/boost/spirit/home/support/container.hpp | c3d285fbc428064254644593c03736f0128c6cb7 | [
"BSD-3-Clause"
] | permissive | benkaraban/anima-games-engine | d4e26c80f1025dcef05418a071c0c9cbd18a5670 | 8aa7a5368933f1b82c90f24814f1447119346c3b | refs/heads/master | 2016-08-04T18:31:46.790039 | 2015-03-22T08:13:55 | 2015-03-22T08:13:55 | 32,633,432 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,384 | hpp | /*=============================================================================
Copyright (c) 2001-2010 Joel de Guzman
Copyright (c) 2001-2010 Hartmut Kaiser
http://spirit.sourceforge.net/
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#if !defined(BOOST_SPIRIT_CONTAINER_FEBRUARY_06_2007_1001AM)
#define BOOST_SPIRIT_CONTAINER_FEBRUARY_06_2007_1001AM
#if defined(_MSC_VER)
#pragma once
#endif
#include <boost/spirit/home/support/unused.hpp>
#include <boost/spirit/home/support/attributes_fwd.hpp>
#include <boost/detail/iterator.hpp> // for boost::detail::iterator_traits
#include <boost/mpl/has_xxx.hpp>
#include <boost/mpl/bool.hpp>
#include <boost/optional.hpp>
#include <boost/variant.hpp>
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/repeat.hpp>
#include <boost/range/iterator_range.hpp>
namespace boost { namespace spirit { namespace traits
{
///////////////////////////////////////////////////////////////////////////
// This file contains some container utils for stl containers. The
// utilities provided also accept spirit's unused_type; all no-ops.
// Compiler optimization will easily strip these away.
///////////////////////////////////////////////////////////////////////////
namespace detail
{
BOOST_MPL_HAS_XXX_TRAIT_DEF(value_type)
BOOST_MPL_HAS_XXX_TRAIT_DEF(iterator)
BOOST_MPL_HAS_XXX_TRAIT_DEF(size_type)
BOOST_MPL_HAS_XXX_TRAIT_DEF(reference)
}
template <typename T, typename Enable/* = void*/>
struct is_container
: mpl::bool_<
detail::has_value_type<T>::value &&
detail::has_iterator<T>::value &&
detail::has_size_type<T>::value &&
detail::has_reference<T>::value>
{};
template <typename T>
struct is_container<T&>
: is_container<T>
{};
template <typename T>
struct is_container<optional<T> >
: is_container<T>
{};
#define BOOST_SPIRIT_IS_CONTAINER(z, N, data) \
is_container<BOOST_PP_CAT(T, N)>::value || \
/***/
template <BOOST_VARIANT_ENUM_PARAMS(typename T)>
struct is_container<variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
: mpl::bool_<BOOST_PP_REPEAT(BOOST_VARIANT_LIMIT_TYPES
, BOOST_SPIRIT_IS_CONTAINER, _) false>
{};
#undef BOOST_SPIRIT_IS_CONTAINER
///////////////////////////////////////////////////////////////////////////
namespace detail
{
template <typename T>
struct remove_value_const
{
typedef T type;
};
template <typename T>
struct remove_value_const<T const>
: remove_value_const<T>
{};
template <typename F, typename S>
struct remove_value_const<std::pair<F, S> >
{
typedef typename remove_value_const<F>::type first_type;
typedef typename remove_value_const<S>::type second_type;
typedef std::pair<first_type, second_type> type;
};
}
///////////////////////////////////////////////////////////////////////
//[customization_container_value_default
template <typename Container, typename Enable/* = void*/>
struct container_value
: detail::remove_value_const<typename Container::value_type>
{};
//]
template <typename T>
struct container_value<T&>
: container_value<T>
{};
// this will be instantiated if the optional holds a container
template <typename T>
struct container_value<optional<T> >
: container_value<T>
{};
// this will be instantiated if the variant holds a container
template <BOOST_VARIANT_ENUM_PARAMS(typename T)>
struct container_value<variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
{
typedef typename
variant<BOOST_VARIANT_ENUM_PARAMS(T)>::types
types;
typedef typename
mpl::find_if<types, is_container<mpl::_1> >::type
iter;
typedef typename container_value<
typename mpl::if_<
is_same<iter, typename mpl::end<types>::type>
, unused_type, typename mpl::deref<iter>::type
>::type
>::type type;
};
//[customization_container_value_unused
template <>
struct container_value<unused_type>
{
typedef unused_type type;
};
//]
template <>
struct container_value<unused_type const>
{
typedef unused_type type;
};
///////////////////////////////////////////////////////////////////////////
template <typename Container, typename Enable/* = void*/>
struct container_iterator
{
typedef typename Container::iterator type;
};
template <typename Container>
struct container_iterator<Container&>
: container_iterator<Container>
{};
template <typename Container>
struct container_iterator<Container const>
{
typedef typename Container::const_iterator type;
};
template <typename Iterator>
struct container_iterator<iterator_range<Iterator> >
{
typedef typename range_const_iterator<
iterator_range<Iterator> >::type type;
};
template <>
struct container_iterator<unused_type>
{
typedef unused_type const* type;
};
template <>
struct container_iterator<unused_type const>
{
typedef unused_type const* type;
};
///////////////////////////////////////////////////////////////////////////
template <typename T, typename Enable/* = void*/>
struct optional_attribute
{
typedef T const& type;
static type call(T const& val)
{
return val;
}
static bool is_valid(T const&)
{
return true;
}
};
template <typename T>
struct optional_attribute<optional<T> >
{
typedef T const& type;
static type call(optional<T> const& val)
{
return boost::get<T>(val);
}
static bool is_valid(optional<T> const& val)
{
return val;
}
};
template <typename T>
typename optional_attribute<T>::type
optional_value(T const& val)
{
return optional_attribute<T>::call(val);
}
inline unused_type optional_value(unused_type)
{
return unused;
}
template <typename T>
bool has_optional_value(T const& val)
{
return optional_attribute<T>::is_valid(val);
}
inline bool has_optional_value(unused_type)
{
return true;
}
///////////////////////////////////////////////////////////////////////////
template <typename Container, typename T>
bool push_back(Container& c, T const& val);
//[customization_push_back_default
template <typename Container, typename T, typename Enable/* = void*/>
struct push_back_container
{
static bool call(Container& c, T const& val)
{
c.insert(c.end(), val);
return true;
}
};
//]
template <typename Container, typename T>
struct push_back_container<optional<Container>, T>
{
static bool call(optional<Container>& c, T const& val)
{
if (!c)
c = Container();
return push_back(boost::get<Container>(c), val);
}
};
namespace detail
{
template <typename T>
struct push_back_visitor : public static_visitor<>
{
typedef bool result_type;
push_back_visitor(T const& t) : t_(t) {}
template <typename Container>
bool push_back_impl(Container& c, mpl::true_) const
{
return push_back(c, t_);
}
template <typename T_>
bool push_back_impl(T_&, mpl::false_) const
{
// this variant doesn't hold a container
BOOST_ASSERT(false);
return false;
}
template <typename T_>
bool operator()(T_& c) const
{
return push_back_impl(c, typename is_container<T_>::type());
}
T const& t_;
};
}
template <BOOST_VARIANT_ENUM_PARAMS(typename T_), typename T>
struct push_back_container<variant<BOOST_VARIANT_ENUM_PARAMS(T_)>, T>
{
static bool call(variant<BOOST_VARIANT_ENUM_PARAMS(T_)>& c, T const& val)
{
return apply_visitor(detail::push_back_visitor<T>(val), c);
}
};
template <typename Container, typename T>
bool push_back(Container& c, T const& val)
{
return push_back_container<Container, T>::call(c, val);
}
//[customization_push_back_unused
template <typename Container>
bool push_back(Container&, unused_type)
{
return true;
}
//]
template <typename T>
bool push_back(unused_type, T const&)
{
return true;
}
inline bool push_back(unused_type, unused_type)
{
return true;
}
///////////////////////////////////////////////////////////////////////////
template <typename Container, typename Enable/* = void*/>
struct is_empty_container
{
static bool call(Container const& c)
{
return c.empty();
}
};
template <typename Container>
bool is_empty(Container const& c)
{
return is_empty_container<Container>::call(c);
}
template <typename T>
bool is_empty(unused_type)
{
return true;
}
///////////////////////////////////////////////////////////////////////////
template <typename Container, typename Enable/* = void*/>
struct begin_container
{
static typename container_iterator<Container>::type call(Container& c)
{
return c.begin();
}
};
template <typename Container>
typename spirit::result_of::begin<Container>::type
begin(Container& c)
{
return begin_container<Container>::call(c);
}
inline unused_type const*
begin(unused_type)
{
return &unused;
}
///////////////////////////////////////////////////////////////////////////
template <typename Container, typename Enable/* = void*/>
struct end_container
{
static typename container_iterator<Container>::type call(Container& c)
{
return c.end();
}
};
template <typename Container>
inline typename spirit::result_of::end<Container>::type
end(Container& c)
{
return end_container<Container>::call(c);
}
inline unused_type const*
end(unused_type)
{
return &unused;
}
///////////////////////////////////////////////////////////////////////////
template <typename Iterator, typename Enable/* = void*/>
struct deref_iterator
{
typedef typename boost::detail::iterator_traits<Iterator>::reference type;
static type call(Iterator& it)
{
return *it;
}
};
template <typename Iterator>
typename deref_iterator<Iterator>::type
deref(Iterator& it)
{
return deref_iterator<Iterator>::call(it);
}
inline unused_type
deref(unused_type const*)
{
return unused;
}
///////////////////////////////////////////////////////////////////////////
template <typename Iterator, typename Enable/* = void*/>
struct next_iterator
{
static void call(Iterator& it)
{
++it;
}
};
template <typename Iterator>
void next(Iterator& it)
{
next_iterator<Iterator>::call(it);
}
inline void next(unused_type const*)
{
// do nothing
}
///////////////////////////////////////////////////////////////////////////
template <typename Iterator, typename Enable/* = void*/>
struct compare_iterators
{
static bool call(Iterator const& it1, Iterator const& it2)
{
return it1 == it2;
}
};
template <typename Iterator>
bool compare(Iterator& it1, Iterator& it2)
{
return compare_iterators<Iterator>::call(it1, it2);
}
inline bool compare(unused_type const*, unused_type const*)
{
return false;
}
}}}
///////////////////////////////////////////////////////////////////////////////
namespace boost { namespace spirit { namespace result_of
{
///////////////////////////////////////////////////////////////////////////
template <typename T>
struct optional_value
{
typedef T type;
};
template <typename T>
struct optional_value<optional<T> >
{
typedef T type;
};
template <typename T>
struct optional_value<optional<T> const>
{
typedef T const type;
};
template <>
struct optional_value<unused_type>
{
typedef unused_type type;
};
template <>
struct optional_value<unused_type const>
{
typedef unused_type type;
};
///////////////////////////////////////////////////////////////////////////
template <typename Container>
struct begin
: traits::container_iterator<Container>
{};
template <typename Container>
struct end
: traits::container_iterator<Container>
{};
template <typename Iterator>
struct deref
: traits::deref_iterator<Iterator>
{};
template <>
struct deref<unused_type const*>
{
typedef unused_type type;
};
}}}
#endif
| [
"contact@anima-games.com@bd273c4a-bd8d-77bb-0e36-6aa87360798c"
] | contact@anima-games.com@bd273c4a-bd8d-77bb-0e36-6aa87360798c |
df54e48eaa140aa50a9cdf1d6d0ca99c93aa620e | 42c3d061692757a7029a3ebf3c52840eb53a89f4 | /OSSupport/Win/LocateDllByVersionPredicate.cpp | 368f47e368265f88284f9dd408cdba6b5af772eb | [
"BSL-1.0"
] | permissive | neilgroves/MlbDev | 510b4877e85fc18e86941006debd5b65fdbac5dc | aee71572e444aa82b8ce05328e716807e1600521 | refs/heads/master | 2021-01-16T22:20:18.065564 | 2014-02-21T12:35:32 | 2014-02-21T12:35:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,579 | cpp | // ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
// MLB Operating System Support (OSSupport) Library Module File
// ////////////////////////////////////////////////////////////////////////////
/*
File Name : %M%
File Version : %I%
Last Extracted : %D% %T%
Last Updated : %E% %U%
File Description : Implementation of the LocateDllByVersionPredicate class.
Revision History : 1998-04-08 --- Creation.
Michael L. Brock
Copyright Michael L. Brock 1998 - 2014.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
// Required include files...
// ////////////////////////////////////////////////////////////////////////////
#include <OSSupport_Win.h>
// ////////////////////////////////////////////////////////////////////////////
namespace MLB {
namespace OSSupport {
// ////////////////////////////////////////////////////////////////////////////
LocateDllByVersionPredicate::LocateDllByVersionPredicate(
const MLB::Utility::VersionNumber &min_version,
const MLB::Utility::VersionNumber &max_version)
:min_version_(std::min(min_version, max_version))
,max_version_(std::max(min_version, max_version))
{
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
std::string LocateDllByVersionPredicate::DescribePredicate() const
{
std::string out_string("first matching DLL");
if ((min_version_ == MLB::Utility::VersionNumber::GetMinimumValue()) &&
(max_version_ == MLB::Utility::VersionNumber::GetMaximumValue()))
out_string += " of any version";
else {
out_string += " with a version number";
if ((min_version_ > MLB::Utility::VersionNumber::GetMinimumValue()) &&
(max_version_ < MLB::Utility::VersionNumber::GetMaximumValue()))
out_string += " between " + min_version_.ToString() + " and " +
max_version_.ToString() + " inclusive";
else if (min_version_ > MLB::Utility::VersionNumber::GetMinimumValue())
out_string += " greater than or equal to " + min_version_.ToString();
else if (max_version_ < MLB::Utility::VersionNumber::GetMaximumValue())
out_string += " less than or equal to " + max_version_.ToString();
}
return(out_string);
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
bool LocateDllByVersionPredicate::IsMatchingDllInternal(
const std::string &full_name)
{
MLB::Utility::VersionNumber this_version;
if (!IsVersionMatch(full_name, this_version)) {
candidate_list_.push_back(DllMatchItem(full_name, this_version));
return(false);
}
candidate_list_.push_back(DllMatchItem(full_name, this_version));
matched_list_.push_back(DllMatchItem(full_name, this_version));
if (matched_list_.size() == 1)
best_match_ = matched_list_.front();
return(true);
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
bool LocateDllByVersionPredicate::IsVersionMatchImpl(
const std::string &full_name) const
{
MLB::Utility::VersionNumber this_version;
return(IsVersionMatchImpl(full_name, this_version));
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
bool LocateDllByVersionPredicate::IsVersionMatchImpl(
const std::string &full_name,
MLB::Utility::VersionNumber &this_version) const
{
DetermineProductVersion(full_name).swap(this_version);
return((this_version >= min_version_) && (this_version <= max_version_));
}
// ////////////////////////////////////////////////////////////////////////////
} // namespace OSSupport
} // namespace MLB
#ifdef TEST_MAIN
using namespace MLB::OSSupport;
// ////////////////////////////////////////////////////////////////////////////
int main(int argc, char **argv)
{
int return_code = EXIT_SUCCESS;
return(return_code);
}
// ////////////////////////////////////////////////////////////////////////////
#endif /* #ifdef TEST_MAIN */
| [
"michael.brock@gmail.com"
] | michael.brock@gmail.com |
2f9e7c95b65d81a65e478391398e6682f7985de6 | 24ee99f16666f5ae662c7a062bde01dff359ebd9 | /3. Linked List/12. K Reverse LC - 25.cpp | 72ca677689ff93e47c9b8a7218c6c7f75edf83b0 | [] | no_license | Anurag-c/Codes | d103cf2d406175ce8c6a5eab2c0163e1e6c5877f | d69df2a1a6d6d33fe3f0f9d52e32b98cd5abcde2 | refs/heads/main | 2023-03-29T14:00:42.576632 | 2021-04-11T08:11:09 | 2021-04-11T08:11:09 | 324,210,053 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 890 | cpp | void reverse(ListNode* head)
{
ListNode* back = NULL;
ListNode* curr = head;
ListNode* forward = NULL;
while(curr != NULL)
{
forward = curr->next;
curr->next = back;
back = curr;
curr= forward;
}
}
ListNode* reverseKGroup(ListNode* head, int k) \
{
if(head == NULL || head->next == NULL || k == 1) return head; // if(head == NULL) also works
ListNode* revEnd = head;
for(int i = 1; i < k && revEnd != NULL; i++) revEnd = revEnd->next;
if(revEnd == NULL) return head;
ListNode* knext = revEnd->next;
revEnd->next = NULL;
reverse(head); // for our comfort we can also take ListNode* newHead = reverse(head);
head->next = reverseKGroup(knext, k);
// remember that after reversing our head will revEnd and revEnd will be head
//i.e; head and tail get swapped
return revEnd;
} | [
"anurag.nampally@gmail.com"
] | anurag.nampally@gmail.com |
6ec529cf2a6ec778806319942056ca9f9abc3afb | f42778a539527e2756c6dd9f5b02f8bf1a9fc903 | /C-style Code/network flow/hungaryExample.cpp | 98ca2edd599dd4cb72c253b371395745f9707b33 | [] | no_license | SingleZombie/ICPC-Template | 40acb5b11b739806ec9f3cf6b6e67d60c0be6ce4 | 250c7ca9e351193eb9463128017d31de2d42a32a | refs/heads/master | 2020-05-07T17:15:13.051347 | 2019-07-23T02:38:52 | 2019-07-23T02:38:52 | 180,721,504 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,278 | cpp | #include <iostream>
#include <vector>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <string>
#include <cstring>
#include <queue>
#include <stack>
#include <functional>
#include <map>
#include <set>
#include <bitset>
#include <ctime>
#define INF 0x3f3f3f3f
#define memset0(x) memset(x, 0, sizeof(x))
#define memsetM1(x) memset(x, -1, sizeof(x))
#define memsetINF(x) memset(x, INF, sizeof(x))
using namespace std;
const int MAXN = 505;
bool graph[MAXN][MAXN];
bool vis[MAXN];
int match[MAXN];
int n, m, k;
void init()
{
memset0(graph);
memsetM1(match);
}
bool dfs(int u)
{
for (int v = 1; v <= m; v++)
{
if (graph[u][v])
{
if (vis[v])
{
continue;
}
vis[v] = true;
if (match[v] == -1 || dfs(match[v]))
{
match[v] = u;
return true;
}
}
}
return false;
}
int hungary()
{
int res = 0;
for (int i = 1; i <= n; i++)
{
memset0(vis);
if (dfs(i))
{
res++;
}
}
return res;
}
int main()
{
while (scanf("%d", &k) != EOF)
{
if (k == 0)
{
break;
}
scanf("%d%d", &n, &m);
init();
for (int i = 0; i < k; i++)
{
int u, v;
scanf("%d%d", &u, &v);
graph[u][v] = 1;
}
int ans = hungary();
printf("%d\n", ans);
}
cin.get();
cin.get();
return 0;
}
| [
"singlezombie@163.com"
] | singlezombie@163.com |
1817b347c6fafdc42aa9abce9a4f85eb0a6ff8f2 | 13a32b92b1ba8ffb07e810dcc8ccdf1b8b1671ab | /home--tommy--mypy/mypy/lib/python2.7/site-packages/pystan/stan/lib/stan_math/test/unit/math/rev/mat/prob/multi_normal2_test.cpp | 1b8826ed47e8048308670f50938da7af191597ec | [
"Unlicense",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | tommybutler/mlearnpy2 | 8ec52bcd03208c9771d8d02ede8eaa91a95bda30 | 9e5d377d0242ac5eb1e82a357e6701095a8ca1ff | refs/heads/master | 2022-10-24T23:30:18.705329 | 2022-10-17T15:41:37 | 2022-10-17T15:41:37 | 118,529,175 | 0 | 2 | Unlicense | 2022-10-15T23:32:18 | 2018-01-22T23:27:10 | Python | UTF-8 | C++ | false | false | 13,871 | cpp | #include <stan/math/rev/mat.hpp>
#include <gtest/gtest.h>
// UTILITY FUNCTIONS FOR TESTING
#include <vector>
#include <test/unit/math/rev/mat/prob/expect_eq_diffs.hpp>
#include <test/unit/math/rev/mat/prob/test_gradients.hpp>
#include <test/unit/math/rev/mat/prob/test_gradients_multi_normal.hpp>
#include <test/unit/math/prim/mat/prob/agrad_distributions_multi_normal_multi_row.hpp>
#include <test/unit/math/prim/mat/prob/agrad_distributions_multi_normal.hpp>
using Eigen::Dynamic;
using Eigen::Matrix;
using std::vector;
template <typename T_y, typename T_loc, typename T_scale>
void expect_propto(T_y y1, T_loc mu1, T_scale sigma1,
T_y y2, T_loc mu2, T_scale sigma2,
std::string message = "") {
expect_eq_diffs(stan::math::multi_normal_log<false>(y1,mu1,sigma1),
stan::math::multi_normal_log<false>(y2,mu2,sigma2),
stan::math::multi_normal_log<true>(y1,mu1,sigma1),
stan::math::multi_normal_log<true>(y2,mu2,sigma2),
message);
}
using stan::math::var;
using stan::math::to_var;
TEST_F(agrad_distributions_multi_normal,Propto) {
expect_propto(to_var(y),to_var(mu),to_var(Sigma),
to_var(y2),to_var(mu2),to_var(Sigma2),
"All vars: y, mu, sigma");
}
TEST_F(agrad_distributions_multi_normal,ProptoY) {
expect_propto(to_var(y),mu,Sigma,
to_var(y2),mu,Sigma,
"var: y");
}
TEST_F(agrad_distributions_multi_normal,ProptoYMu) {
expect_propto(to_var(y),to_var(mu),Sigma,
to_var(y2),to_var(mu2),Sigma,
"var: y and mu");
}
TEST_F(agrad_distributions_multi_normal,ProptoYSigma) {
expect_propto(to_var(y),mu,to_var(Sigma),
to_var(y2),mu,to_var(Sigma2),
"var: y and sigma");
}
TEST_F(agrad_distributions_multi_normal,ProptoMu) {
expect_propto(y,to_var(mu),Sigma,
y,to_var(mu2),Sigma,
"var: mu");
}
TEST_F(agrad_distributions_multi_normal,ProptoMuSigma) {
expect_propto(y,to_var(mu),to_var(Sigma),
y,to_var(mu2),to_var(Sigma2),
"var: mu and sigma");
}
TEST_F(agrad_distributions_multi_normal,ProptoSigma) {
expect_propto(y,mu,to_var(Sigma),
y,mu,to_var(Sigma2),
"var: sigma");
}
TEST_F(agrad_distributions_multi_normal_multi_row,Propto) {
expect_propto(to_var(y),to_var(mu),to_var(Sigma),
to_var(y2),to_var(mu2),to_var(Sigma2),
"All vars: y, mu, sigma");
}
TEST_F(agrad_distributions_multi_normal_multi_row,ProptoY) {
expect_propto(to_var(y),mu,Sigma,
to_var(y2),mu,Sigma,
"var: y");
}
TEST_F(agrad_distributions_multi_normal_multi_row,ProptoYMu) {
expect_propto(to_var(y),to_var(mu),Sigma,
to_var(y2),to_var(mu2),Sigma,
"var: y and mu");
}
TEST_F(agrad_distributions_multi_normal_multi_row,ProptoYSigma) {
expect_propto(to_var(y),mu,to_var(Sigma),
to_var(y2),mu,to_var(Sigma2),
"var: y and sigma");
}
TEST_F(agrad_distributions_multi_normal_multi_row,ProptoMu) {
expect_propto(y,to_var(mu),Sigma,
y,to_var(mu2),Sigma,
"var: mu");
}
TEST_F(agrad_distributions_multi_normal_multi_row,ProptoMuSigma) {
expect_propto(y,to_var(mu),to_var(Sigma),
y,to_var(mu2),to_var(Sigma2),
"var: mu and sigma");
}
TEST_F(agrad_distributions_multi_normal_multi_row,ProptoSigma) {
expect_propto(y,mu,to_var(Sigma),
y,mu,to_var(Sigma2),
"var: sigma");
}
TEST(ProbDistributionsMultiNormal,MultiNormalVar) {
using stan::math::var;
Matrix<var,Dynamic,1> y(3,1);
y << 2.0, -2.0, 11.0;
Matrix<var,Dynamic,1> mu(3,1);
mu << 1.0, -1.0, 3.0;
Matrix<var,Dynamic,Dynamic> Sigma(3,3);
Sigma << 9.0, -3.0, 0.0,
-3.0, 4.0, 0.0,
0.0, 0.0, 5.0;
EXPECT_FLOAT_EQ(-11.73908, stan::math::multi_normal_log(y,mu,Sigma).val());
}
TEST(ProbDistributionsMultiNormal,MultiNormalGradientUnivariate) {
using stan::math::var;
using std::vector;
using Eigen::VectorXd;
using stan::math::multi_normal_log;
Matrix<var,Dynamic,1> y_var(1,1);
y_var << 2.0;
Matrix<var,Dynamic,1> mu_var(1,1);
mu_var << 1.0;
Matrix<var,Dynamic,Dynamic> Sigma_var(1,1);
Sigma_var(0,0) = 9.0;
std::vector<var> x;
x.push_back(y_var(0));
x.push_back(mu_var(0));
x.push_back(Sigma_var(0,0));
var lp = stan::math::multi_normal_log(y_var,mu_var,Sigma_var);
vector<double> grad;
lp.grad(x,grad);
// ===================================
Matrix<double,Dynamic,1> y(1,1);
y << 2.0;
Matrix<double,Dynamic,1> mu(1,1);
mu << 1.0;
Matrix<double,Dynamic,Dynamic> Sigma(1,1);
Sigma << 9.0;
double epsilon = 1e-6;
Matrix<double,Dynamic,1> y_m(1,1);
Matrix<double,Dynamic,1> y_p(1,1);
y_p[0] = y[0] + epsilon;
y_m[0] = y[0] - epsilon;
double grad_diff
= (multi_normal_log(y_p,mu,Sigma) - multi_normal_log(y_m,mu,Sigma))
/ (2 * epsilon);
EXPECT_FLOAT_EQ(grad_diff, grad[0]);
Matrix<double,Dynamic,1> mu_m(1,1);
Matrix<double,Dynamic,1> mu_p(1,1);
mu_p[0] = mu[0] + epsilon;
mu_m[0] = mu[0] - epsilon;
grad_diff
= (multi_normal_log(y,mu_p,Sigma) - multi_normal_log(y,mu_m,Sigma))
/ (2 * epsilon);
EXPECT_FLOAT_EQ(grad_diff, grad[1]);
Matrix<double,Dynamic,Dynamic> Sigma_m(1,1);
Matrix<double,Dynamic,Dynamic> Sigma_p(1,1);
Sigma_p(0) = Sigma(0) + epsilon;
Sigma_m(0) = Sigma(0) - epsilon;
grad_diff
= (multi_normal_log(y,mu,Sigma_p) - multi_normal_log(y,mu,Sigma_m))
/ (2 * epsilon);
EXPECT_FLOAT_EQ(grad_diff, grad[2]);
}
struct multi_normal_fun {
const int K_;
multi_normal_fun(int K) : K_(K) { }
template <typename T>
T operator()(const std::vector<T>& x) const {
using Eigen::Matrix;
using Eigen::Dynamic;
using stan::math::var;
Matrix<T,Dynamic,1> y(K_);
Matrix<T,Dynamic,1> mu(K_);
Matrix<T,Dynamic,Dynamic> Sigma(K_,K_);
int pos = 0;
for (int i = 0; i < K_; ++i)
y(i) = x[pos++];
for (int i = 0; i < K_; ++i)
mu(i) = x[pos++];
for (int j = 0; j < K_; ++j) {
for (int i = 0; i <= j; ++i) {
Sigma(i,j) = x[pos++];
Sigma(j,i) = Sigma(i,j);
}
}
return stan::math::multi_normal_log<false>(y,mu,Sigma);
}
};
TEST(MultiNormal, TestGradFunctional) {
std::vector<double> x(3 + 3 + 3 * 2);
// y
x[0] = 1.0;
x[1] = 2.0;
x[2] = -3.0;
// mu
x[3] = 0.0;
x[4] = -2.0;
x[5] = -3.0;
// Sigma
x[6] = 1;
x[7] = -1;
x[8] = 10;
x[9] = -2;
x[10] = 20;
x[11] = 56;
test_grad(multi_normal_fun(3), x);
std::vector<double> u(3);
u[0] = 1.9;
u[1] = -2.7;
u[2] = 0.48;
test_grad(multi_normal_fun(1), u);
}
template <int is_row_vec_y, int is_row_vec_mu>
struct vectorized_multi_normal_fun {
const int K_; //size of each vector and order of square matrix sigma
const int L_; //size of the array of eigen vectors
const bool dont_vectorize_y; //direct use eigen vector for y
const bool dont_vectorize_mu; //direct use eigen vector for mu
vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(int K, int L, bool M = false, bool N = false) : K_(K), L_(L),
dont_vectorize_y(M),
dont_vectorize_mu(N) {
if ((dont_vectorize_y || dont_vectorize_mu) && L != 1)
throw std::runtime_error("attempt to disable vectorization with vector bigger than 1");
}
template <typename T_y, typename T_mu, typename T_sigma>
typename boost::math::tools::promote_args<T_y, T_mu, T_sigma>::type
operator() (const std::vector<T_y>& y_vec,
const std::vector<T_mu>& mu_vec,
const std::vector<T_sigma>& sigma_vec) const {
vector<Matrix<T_y,is_row_vec_y,is_row_vec_y*-1> > y(L_, Matrix<T_y,is_row_vec_y,is_row_vec_y*-1> (K_));
vector<Matrix<T_mu,is_row_vec_mu,is_row_vec_mu*-1> > mu(L_, Matrix<T_mu,is_row_vec_mu,is_row_vec_mu*-1> (K_));
Matrix<T_sigma,Dynamic,Dynamic> Sigma(K_, K_);
int pos = 0;
for (int i = 0; i < L_; ++i)
for (int j = 0; j < K_; ++j)
y[i](j) = y_vec[pos++];
pos = 0;
for (int i = 0; i < L_; ++i)
for (int j = 0; j < K_; ++j)
mu[i](j) = mu_vec[pos++];
pos = 0;
for (int j = 0; j < K_; ++j) {
for (int i = 0; i <= j; ++i) {
Sigma(i,j) = sigma_vec[pos++];
Sigma(j,i) = Sigma(i,j);
}
}
if (dont_vectorize_y) {
if (dont_vectorize_mu)
return stan::math::multi_normal_log<false>(y[0], mu[0], Sigma);
else
return stan::math::multi_normal_log<false>(y[0], mu, Sigma);
}
else {
if (dont_vectorize_mu)
return stan::math::multi_normal_log<false>(y, mu[0], Sigma);
else
return stan::math::multi_normal_log<false>(y, mu, Sigma);
}
}
};
template <int is_row_vec_y, int is_row_vec_mu>
void test_all() {
{
vector<double> y_(3), mu_(3), sigma_(6);
// y
y_[0] = 1.0;
y_[1] = 2.0;
y_[2] = -3.0;
// mu
mu_[0] = 0.0;
mu_[1] = -2.0;
mu_[2] = -3.0;
// Sigma
sigma_[0] = 1;
sigma_[1] = -1;
sigma_[2] = 10;
sigma_[3] = -2;
sigma_[4] = 20;
sigma_[5] = 56;
for (int ii = 0; ii < 2; ii++)
for (int jj = 0; jj < 2; jj++) {
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 1, ii, jj),
y_, mu_, sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 1, ii, jj),
y_, mu_, get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 1, ii, jj),
y_, get_vvar(mu_), sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 1, ii, jj),
y_, get_vvar(mu_), get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 1, ii, jj),
get_vvar(y_), mu_, sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 1, ii, jj),
get_vvar(y_), mu_, get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 1, ii, jj),
get_vvar(y_), get_vvar(mu_), sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 1, ii, jj),
get_vvar(y_), get_vvar(mu_), get_vvar(sigma_));
}
}
{
vector<double> y_(6), mu_(6), sigma_(6);
// y[1]
y_[0] = 1.0;
y_[1] = 2.0;
y_[2] = -3.0;
// y[2]
y_[3] = 0.0;
y_[4] = -2.0;
y_[5] = -3.0;
// mu[1]
mu_[0] = 0.0;
mu_[1] = 1.0;
mu_[2] = 3.0;
// mu[2]
mu_[3] = 0.0;
mu_[4] = -1.0;
mu_[5] = -2.0;
// Sigma
sigma_[0] = 1;
sigma_[1] = -1;
sigma_[2] = 10;
sigma_[3] = -2;
sigma_[4] = 20;
sigma_[5] = 56;
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 2),
y_, mu_, sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 2),
y_, mu_, get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 2),
y_, get_vvar(mu_), sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 2),
y_, get_vvar(mu_), get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 2),
get_vvar(y_), mu_, sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 2),
get_vvar(y_), mu_, get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 2),
get_vvar(y_), get_vvar(mu_), sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(3, 2),
get_vvar(y_), get_vvar(mu_), get_vvar(sigma_));
}
{
vector<double> y_(1), mu_(1), sigma_(1);
y_[0] = 1.9;
mu_[0] = -2.7;
sigma_[0] = 0.48;
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(1, 1),
y_, mu_, sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(1, 1),
y_, mu_, get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(1, 1),
y_, get_vvar(mu_), sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(1, 1),
y_, get_vvar(mu_), get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(1, 1),
get_vvar(y_), mu_, sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(1, 1),
get_vvar(y_), mu_, get_vvar(sigma_));
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(1, 1),
get_vvar(y_), get_vvar(mu_), sigma_);
test_grad_multi_normal(vectorized_multi_normal_fun<is_row_vec_y, is_row_vec_mu>(1, 1),
get_vvar(y_), get_vvar(mu_), get_vvar(sigma_));
}
}
TEST(MultiNormal, TestGradFunctionalVectorized) {
test_all<1,1>();
test_all<1,-1>();
test_all<-1,1>();
test_all<-1,-1>();
}
| [
"tbutler.github@internetalias.net"
] | tbutler.github@internetalias.net |
a1a22d2ccaf8738e9eaec06e10542af101f576bb | aa77a0de61a070d7f3248ee925c904c7d00a1442 | /initial_position/initial_position.ino | acb14e0790d3df8306ead1aa0488c1d9f88fff05 | [] | no_license | hashrobotics-hr/hash_v1_part2_source | cc83417ee812ac83cf0e4f9e0b533e97a53cc51a | f3642fc22c09989c0f78c22396a4ad8115743d5b | refs/heads/main | 2023-07-01T12:58:51.518243 | 2021-08-03T05:23:01 | 2021-08-03T05:23:01 | 392,199,768 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 961 | ino |
#include <Servo.h>
Servo head;
Servo rh1;
Servo rh2;
Servo rh3;
Servo rl1;
Servo rl2;
Servo rl3;
Servo rl4;
Servo rl5;
Servo lh1;
Servo lh2;
Servo lh3;
Servo ll1;
Servo ll2;
Servo ll3;
Servo ll4;
Servo ll5;
void setup() {
Serial.begin(9600);
Serial.println("GPIO test!");
head.attach(28);
rh1.attach(30);
rh2.attach(31);
rh3.attach(32);
rl1.attach(33);
rl2.attach(34);
rl3.attach(35);
rl4.attach(36);
rl5.attach(37);
lh1.attach(38);
lh2.attach(39);
lh3.attach(40);
ll1.attach(41);
ll2.attach(42);
ll3.attach(43);
ll4.attach(44);
ll5.attach(45);
initial_position();
}
void loop() {
}
void initial_position() {
head.write(90);
rh1.write(0);
rh2.write(0);
rh3.write(20);
rl1.write(90);
rl2.write(150);
rl3.write(30);
rl4.write(30);
rl5.write(90);
lh1.write(180);
lh2.write(180);
lh3.write(160);
ll1.write(90);
ll2.write(30);
ll3.write(150);
ll4.write(150);
ll5.write(90);
}
| [
"73425974+hashrobotics-hr@users.noreply.github.com"
] | 73425974+hashrobotics-hr@users.noreply.github.com |
d373766e545f73493aad07de117b2f49e3a3dc32 | 9189682d8a252fe81e29639cf299bdde8a4b59f1 | /src/GameLogging/Observers/GameOverObserver.h | 1b02550a8dd8a2afa5c8ea70df67bac5bed47dc3 | [] | no_license | Machumak00/course_work_oop | 957f880c32f32b708c80722a45b1fd8f47fa67ce | 8e988522b6c40085d3e93830a270f332236a3d9c | refs/heads/master | 2023-06-04T19:38:15.112498 | 2021-06-15T11:12:32 | 2021-06-15T11:12:32 | 377,134,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 145 | h | #pragma once
#include "Observer.h"
class GameOverObserver : public Observer {
public:
void update(const std::string& new_str) override;
};
| [
"misha7877@gmail.com"
] | misha7877@gmail.com |
705e81112407d3f58b2ee18e4deb5f0f1fec1b9a | 5386865e2ea964397b8127aba4b2592d939cd9f2 | /grupa B/olimpiada/nacionalen/2011/2011-05-08-tests&author-AB/day2/6-ezera/ezera.cpp | 039d9c79ffe985b42874d5389f94d3d2a696dbdc | [] | no_license | HekpoMaH/Olimpiads | e380538b3de39ada60b3572451ae53e6edbde1be | d358333e606e60ea83e0f4b47b61f649bd27890b | refs/heads/master | 2021-07-07T14:51:03.193642 | 2017-10-04T16:38:11 | 2017-10-04T16:38:11 | 105,790,126 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,084 | cpp | #include <iostream>
#include <stack>
#include <string>
using namespace std;
stack <int> S;
int C=0,BE=0;
int E[10000][2];
int main()
{
string L;
int i,ls;
cin >> L;
ls=L.size();
for (i=0; i<ls; i++)
{
if (L[i]=='\\') S.push(i);
if (L[i]=='/' && S.size()>0)
{
int x=S.top();
S.pop();
C+=i-x;
E[BE][0]=x;
E[BE][1]=i;
BE++;
while (BE>1)
{
if (E[BE-1][0]<E[BE-2][0] && E[BE-1][1]>E[BE-2][1])
{
E[BE-2][0]=E[BE-1][0];
E[BE-2][1]=E[BE-1][1];
BE--;
}
else break;
}
}
}
cout << BE << ' ' << C << '\n';
return 0;
} | [
"dgg30"
] | dgg30 |
7f063194f433b7cd27dc3d51599f45e715484681 | cb10193095b0658cd6041c0a1048abd82103ce91 | /examples/pppbayestree/gpstk/MWCSDetector.hpp | 02b16a63c1aa46333679dadf9d29f7f5a13a2495 | [
"BSD-3-Clause",
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | chengwei920412/minisam_lib | 41c810471306badf862cecd2a4d1f1b383aa54a0 | e2e904d1b6753976de1dee102f0b53e778c0f880 | refs/heads/master | 2023-03-17T09:36:35.679579 | 2020-03-15T05:52:35 | 2020-03-15T05:52:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,463 | hpp | //============================================================================
//
// This file is part of GPSTk, the GPS Toolkit.
//
// The GPSTk is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 3.0 of the License, or
// any later version.
//
// The GPSTk is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with GPSTk; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
//
// Copyright 2004, The University of Texas at Austin
// Dagoberto Salazar - gAGE ( http://www.gage.es ). 2007, 2008, 2009, 2011
//
//============================================================================
//============================================================================
//
//This software developed by Applied Research Laboratories at the University of
//Texas at Austin, under contract to an agency or agencies within the U.S.
//Department of Defense. The U.S. Government retains all rights to use,
//duplicate, distribute, disclose, or release this software.
//
//Pursuant to DoD Directive 523024
//
// DISTRIBUTION STATEMENT A: This software has been approved for public
// release, distribution is unlimited.
//
//=============================================================================
/**
* @file MWCSDetector.hpp
* This is a class to detect cycle slips using the Melbourne-Wubbena
* combination.
*/
#ifndef GPSTK_MWCSDETECTOR_HPP
#define GPSTK_MWCSDETECTOR_HPP
#include "../gpstk/ProcessingClass.hpp"
#include <list>
namespace gpstk
{
/** @addtogroup GPSsolutions */
//@{
/** This is a class to detect cycle slips using MW observables.
*
* This class is meant to be used with the GNSS data structures objects
* found in "DataStructures" class.
*
* A typical way to use this class follows:
*
* @code
* RinexObsStream rin("ebre0300.02o");
*
* gnssRinex gRin;
* ComputeMelbourneWubbena getMW;
* MWCSDetector markCSMW;
*
* while(rin >> gRin)
* {
* gRin >> getMW >> markCSMW;
* }
* @endcode
*
* The "MWCSDetector" object will visit every satellite in the GNSS data
* structure that is "gRin" and will decide if a cycle slip has happened
* in the given observable.
*
* The algorithm will use MW observables, and the LLI1 and LLI2 indexes.
* The result (a 1 if a cycle slip is found, 0 otherwise) will be stored
* in the data structure both as the CSL1 and CSL2 indexes.
*
* In taking the decision, this algorithm will use criteria as the
* maximum interval of time between two successive epochs and the
* maximum number of Melbourne-Wubbena wavelenghts allowed above or
* below the MW combination average for that arc.
*
* The default values are usually fine, but you may change them with the
* appropriate methods. This is of special importance for the maximum
* interval time, that should be adjusted for your sampling rate. It is
* 61 seconds by default, which is appropriate for 30 seconds per sample
* RINEX observation files.
*
* When used with the ">>" operator, this class returns the same
* incoming data structure with the cycle slip indexes inserted along
* their corresponding satellites. Be warned that if a given satellite
* does not have the observations required, it will be summarily deleted
* from the data structure.
*
* You should be aware that the Melbourne-Wubbena combination is based
* on a mix of code and phase observations, so it is very noisy.
* Therefore, it has a tendency to yield a high number of false
* positives if you are not careful with its parameters. Because of
* this, the default parameters are very conservative, i.e., the
* detector is NOT very sensitive by default.
*
* Best results are achieved when using this detector as a "backup"
* detector for detectors based in LI combination, like this:
*
* @code
* RinexObsStream rin("ebre0300.02o");
*
* gnssRinex gRin;
* ComputeLI getLI;
* LICSDetector markCSLI;
* ComputeMelbourneWubbena getMW;
* MWCSDetector markCSMW;
*
* while(rin >> gRin)
* {
* gRin >> getLI >> getMW >> markCSLI >> markCSMW;
* }
* @endcode
*
* @sa LICSDetector.hpp and LICSDetector2.hpp for more information.
*
* \warning Cycle slip detectors are objets that store their internal
* state, so you MUST NOT use the SAME object to process DIFFERENT data
* streams.
*
*/
class MWCSDetector : public ProcessingClass
{
public:
/// Default constructor, setting default parameters.
MWCSDetector() : obsType(TypeID::MWubbena), lliType1(TypeID::LLI1),
lliType2(TypeID::LLI2), resultType1(TypeID::CSL1),
resultType2(TypeID::CSL2), deltaTMax(61.0),
maxNumLambdas(10.0), useLLI(true)
{ };
/** Common constructor
*
* @param mLambdas Maximum deviation allowed before declaring
* cycle slip (in number of Melbourne-Wubbena
* wavelenghts).
* @param dtMax Maximum interval of time allowed between two
* successive epochs, in seconds.
*/
MWCSDetector( const double& mLambdas,
const double& dtMax = 61.0,
const bool& use = true );
/** Returns a satTypeValueMap object, adding the new data generated
* when calling this object.
*
* @param epoch Time of observations.
* @param gData Data object holding the data.
* @param epochflag Epoch flag.
*/
virtual satTypeValueMap& Process( const CommonTime& epoch,
satTypeValueMap& gData,
const short& epochflag = 0 )
throw(ProcessingException);
/** Method to set the maximum interval of time allowed between two
* successive epochs.
*
* @param maxDelta Maximum interval of time, in seconds
*/
virtual MWCSDetector& setDeltaTMax(const double& maxDelta);
/** Method to get the maximum interval of time allowed between two
* successive epochs, in seconds.
*/
virtual double getDeltaTMax() const
{
return deltaTMax;
};
/** Method to set the maximum deviation allowed before declaring
* cycle slip (in number of Melbourne-Wubbena wavelenghts).
*
* @param mLambdas Maximum deviation allowed before declaring
* cycle slip (in number of Melbourne-Wubbena
* wavelenghts).
*/
virtual MWCSDetector& setMaxNumLambdas(const double& mLambdas);
/** Method to get the maximum deviation allowed before declaring
* cycle slip (in number of Melbourne-Wubbena wavelenghts).
*/
virtual double getMaxNumLambdas() const
{
return maxNumLambdas;
};
/** Method to set whether the LLI indexes will be used as
* an aid or not.
*
* @param use Boolean value enabling/disabling LLI check.
*/
virtual MWCSDetector& setUseLLI(const bool& use)
{
useLLI = use;
return (*this);
};
/// Method to know if the LLI check is enabled or disabled.
virtual bool getUseLLI() const
{
return useLLI;
};
/** Returns a gnnsSatTypeValue object, adding the new data generated
* when calling this object.
*
* @param gData Data object holding the data.
*/
virtual gnssSatTypeValue& Process(gnssSatTypeValue& gData)
throw(ProcessingException)
{
(*this).Process(gData.header.epoch, gData.body);
return gData;
};
/** Returns a gnnsRinex object, adding the new data generated when
* calling this object.
*
* @param gData Data object holding the data.
*/
virtual gnssRinex& Process(gnssRinex& gData)
throw(ProcessingException);
/// Returns a string identifying this object.
virtual std::string getClassName(void) const;
/// Destructor
virtual ~MWCSDetector() {};
private:
/// Type of observation.
TypeID obsType;
/// Type of LMW1 record.
TypeID lliType1;
/// Type of LMW2 record.
TypeID lliType2;
/// Type of result #1.
TypeID resultType1;
/// Type of result #2.
TypeID resultType2;
/** Maximum interval of time allowed between two successive
* epochs, in seconds.
*/
double deltaTMax;
/** Maximum deviation allowed before declaring cycle slip,
* in number of Melbourne-Wubbena wavelenghts.
*/
double maxNumLambdas;
/// Whether use or ignore the LLI indexes as an aid.
bool useLLI;
/// A structure used to store filter data for a SV.
struct filterData
{
// Default constructor initializing the data in the structure
filterData() : formerEpoch(CommonTime::BEGINNING_OF_TIME),
windowSize(0), meanMW(0.0) {};
CommonTime formerEpoch; ///< The previous epoch time stamp.
int windowSize; ///< Size of current window, in samples.
double meanMW; ///< Accumulated mean value of combination.
};
/// Map holding the information regarding every satellite
std::map<SatID, filterData> MWData;
/** Method that implements the Melbourne-Wubbena cycle slip
* detection algorithm
*
* @param epoch Time of observations.
* @param sat SatID.
* @param tvMap Data structure of TypeID and values.
* @param epochflag Epoch flag.
* @param mw Current MW observation value.
* @param lli1 LLI1 index.
* @param lli2 LLI2 index.
*/
virtual double getDetection( const CommonTime& epoch,
const SatID& sat,
typeValueMap& tvMap,
const short& epochflag,
const double& mw,
const double& lli1,
const double& lli2 );
}; // End of class 'MWCSDetector'
//@}
} // End of namespace gpstk
#endif // GPSTK_MWCSDETECTOR_HPP
| [
"shaolin.lv.bit@gmail.com"
] | shaolin.lv.bit@gmail.com |
adf12512788b8e15f32fe44be2fd97808fe569a3 | d49cc8f855487b4b9aebd943b6b66bb4f9429707 | /UserCF/UserCF/newCF.cpp | b2c41efc2eba2f248bb8c1bba765512f544526d4 | [] | no_license | ciodya/GraduateProject2017 | 3891e4d6408e3eed9dfa39a0e6d22008ed63a414 | a854b46ddd80bc7e7b0295cfc5b92451e562795c | refs/heads/master | 2020-06-24T04:18:34.482447 | 2019-07-25T14:33:45 | 2019-07-25T14:33:45 | 198,810,640 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 17,577 | cpp | #include "stdafx.h"
#include "User_User_CF.h"
extern int all_test_info_kase;
extern int all_train_info_kase;
extern All_info * all_info;
extern All_info * all_test_info;
extern All_info * all_train_info;
extern map < int, User_info > m_user_info;
extern int GFLAG;
extern int all_test_movie;
extern map <int, int > test_movie_num;
extern map < int, Movie_info > m_movie_info;
double rating_avg[];
double n_vector_abs[MOVIELENSUSER];
double recommend_list[MOVIES];
int set_count;
vector <User_User_CF_user > love_this_movie_usere[MOVIES];//电影的评价用户矩阵,以电影编号为序,每部电影对应多个评价过它的用户
vector <User_User_CF_user > test_love_this_movie_usere[MOVIES];
set <User_User_CF_info > user_user_cf_infoo[MOVIELENSUSER];//每个用户的相似用户列表
set <User_User_CF_movie, uucfm_sim_opera> uucf_test_user_love_moviee[MOVIELENSUSER];//电影推荐列表
set <int> train_moviee[MOVIELENSUSER];//复制了训练集评价信息中的用户编号、电影编号
vector <user_rating > user_rating_info[MOVIELENSUSER];//记录用户评价的电影编号,评价信息
vector <user_rating> test_user_rating_info[MOVIELENSUSER];//记录用户评价的电影编号,评价信息
double getsimAttr(int u, int v){
double sim = 0.0;
if (m_user_info[u].Gender == m_user_info[v].Gender)
sim += sim_sex * 1;
if (abs(m_user_info[u].Age - m_user_info[v].Age) < 10)
sim += sim_age * 1;
if (m_user_info[u].Occupation == m_user_info[v].Occupation)
sim += sim_job * 1;
return sim;
}
void calculate_user_similary_best1()
{
int user_id = 0, movie_id = 0;
int love_this_movie_usere_len = 0;
double rating = 0.0;
int user_count = 0;//每个用户的相似用户个数
double PCC_down[MOVIELENSUSER];
double ACOS_down[MOVIELENSUSER];
double * user_movie_rating = new double[MOVIELENSUSER];//每个用户评价过的电影数
double ** user_similary_count = new double *[MOVIELENSUSER];//用户共同评价过的电影数矩阵
double ** user_rating_difference = new double *[MOVIELENSUSER];//用户评价差值之和矩阵
//double ** user_rating_difference_max = new double *[MOVIELENSUSER];//最大差值
//double ** user_rating_difference_min = new double *[MOVIELENSUSER];//最小差值
double ** vector_product = new double *[MOVIELENSUSER];//n维向量叉积
double ** PCC_up = new double *[MOVIELENSUSER];
for (int i = 0; i < MOVIELENSUSER; i++)
{
user_similary_count[i] = new double[MOVIELENSUSER];
user_rating_difference[i] = new double[MOVIELENSUSER];
//user_rating_difference_max[i] = new double[MOVIELENSUSER];
//user_rating_difference_min[i] = new double[MOVIELENSUSER];
vector_product[i] = new double[MOVIELENSUSER];
PCC_up[i] = new double[MOVIELENSUSER];
}
User_User_CF_user love_this_movie_usere_info;
if (user_movie_rating == NULL)
{
puts("error 1"); return;
}
if (user_similary_count == NULL)
{
puts("error 2"); return;
}
for (int i = 0; i < MOVIELENSUSER; i++){//矩阵初始化
memset(user_similary_count[i], 0, sizeof(double)* MOVIELENSUSER);
memset(user_rating_difference[i], 0, sizeof(double)* MOVIELENSUSER);
//memset(user_rating_difference_max[i], 0, sizeof(double)* MOVIELENSUSER);
//memset(user_rating_difference_min[i], 5, sizeof(double)* MOVIELENSUSER);
memset(vector_product[i], 0, sizeof(double)* MOVIELENSUSER);
memset(PCC_up[i], 0, sizeof(double)* MOVIELENSUSER);
}
memset(user_movie_rating, 0, sizeof(double)* MOVIELENSUSER);
memset(PCC_down, 0, sizeof(double)* MOVIELENSUSER);
memset(ACOS_down, 0, sizeof(double)* MOVIELENSUSER);
/*for (int i = 0; i < MOVIELENSUSER; i++) for (int j = 0; j < MOVIELENSUSER;j++)
{
if (user_similary_count[i][j] != 0.0) printf("%d\n", i);
}puts("asd"); for (;;);*/
for (int i = 0; i < all_test_info_kase; i++)
{
user_id = all_test_info[i].userid;
movie_id = all_test_info[i].moviesid;
rating = all_test_info[i].rating;
User_User_CF_user u;
u.user_id = user_id;
u.rating = rating;
user_rating v;
v.movie_id = movie_id;
v.rating = rating;
test_user_rating_info[user_id].push_back(v);//测试集评价信息副本
test_love_this_movie_usere[movie_id].push_back(u);
}
for (int i = 0; i < all_train_info_kase; i++)
{
user_id = all_train_info[i].userid;
movie_id = all_train_info[i].moviesid;
rating = all_train_info[i].rating;
User_User_CF_user u;
u.user_id = user_id;
u.rating = rating;
user_rating v;
v.movie_id = movie_id;
v.rating = rating;
love_this_movie_usere[movie_id].push_back(u);//电影的评价用户矩阵
user_rating_info[user_id].push_back(v);//用户的评价矩阵
train_moviee[user_id].insert(movie_id);//训练集评价信息副本
}
for (int i = 1; i < MOVIELENSUSER; i++)//遍历6040个用户
{
double sum_rating = 0;
for (int j = 0; j <user_rating_info[i].size(); j++){
sum_rating += user_rating_info[i][j].rating;
n_vector_abs[i] += pow(user_rating_info[i][j].rating, 2.0);
}
rating_avg[i] = sum_rating / user_rating_info[i].size();//用户u的平均评分
}
for (int i = 1; i < MOVIELENSUSER; i++)//遍历6040个用户
{
for (int j = 0; j < user_rating_info[i].size(); j++){
ACOS_down[i] += pow((user_rating_info[i][j].rating - rating_avg[i]), 2.0);
}
}
for (int i = 1; i < MOVIES; i++)//遍历3952部电影,向user_movie_rating数组和user_similary_count矩阵写数据
{
love_this_movie_usere_len = love_this_movie_usere[i].size();//评价过该电影的用户人数
if (!love_this_movie_usere_len) continue;//人数不为零则继续执行
for (int j = 0; j < love_this_movie_usere_len; j++)//遍历这些用户
{
love_this_movie_usere_info = love_this_movie_usere[i][j];//用户U
user_movie_rating[love_this_movie_usere_info.user_id]++;//用户U评价过的电影数加1
//+= love_this_movie_usere_info.rating;
for (int k = 0; k < love_this_movie_usere_len; k++)
{
User_User_CF_user love_this_movie_info_v = love_this_movie_usere[i][k];//也评价过这部电影的用户V
if (love_this_movie_info_v == love_this_movie_usere_info)
{
continue;
}
user_similary_count[love_this_movie_usere_info.user_id][love_this_movie_info_v.user_id]++; //用户U和V共同评价过的电影数加1
int user_rating_info_u_len = user_rating_info[love_this_movie_usere_info.user_id].size();
int user_rating_info_v_len = user_rating_info[love_this_movie_info_v.user_id].size();
double u_rating;
double v_rating;
for (int p = 0; p < user_rating_info_u_len; p++){
if (user_rating_info[love_this_movie_usere_info.user_id][p].movie_id == i)
u_rating = user_rating_info[love_this_movie_usere_info.user_id][p].rating;//用户U对这部电影的评分
}
for (int p = 0; p < user_rating_info_v_len; p++){
if (user_rating_info[love_this_movie_info_v.user_id][p].movie_id == i)
v_rating = user_rating_info[love_this_movie_info_v.user_id][p].rating;//用户V对这部电影的评分
}
/*for (int p = 0; p < MAX_RATING_NUM; p++){
if (all_train_info[p].userid == love_this_movie_usere_info.user_id && all_train_info[p].moviesid == i)
u_rating = all_train_info[p].rating;
if (all_train_info[p].userid == love_this_movie_info_v.user_id && all_train_info[p].moviesid == i)
v_rating = all_train_info[p].rating;
}*/
PCC_up[love_this_movie_usere_info.user_id][love_this_movie_info_v.user_id]
+= (u_rating - rating_avg[love_this_movie_usere_info.user_id]) * (v_rating - rating_avg[love_this_movie_info_v.user_id]);
PCC_down[love_this_movie_usere_info.user_id] += pow((u_rating - rating_avg[love_this_movie_usere_info.user_id]), 2.0);
PCC_down[love_this_movie_info_v.user_id] += pow((v_rating - rating_avg[love_this_movie_info_v.user_id]), 2.0);
vector_product[love_this_movie_usere_info.user_id][love_this_movie_info_v.user_id] += u_rating * v_rating;
user_rating_difference[love_this_movie_usere_info.user_id][love_this_movie_info_v.user_id] +=
pow(fabs(u_rating - v_rating),regulate_factor_k);//用户UV的评分差值之和
//if (fabs(u_rating - v_rating) < user_rating_difference_min[love_this_movie_usere_info.user_id][love_this_movie_info_v.user_id])
//user_rating_difference_min[love_this_movie_usere_info.user_id][love_this_movie_info_v.user_id] = fabs(u_rating - v_rating);//评分差值最小值
//if (fabs(u_rating - v_rating) > user_rating_difference_max[love_this_movie_usere_info.user_id][love_this_movie_info_v.user_id])
//user_rating_difference_max[love_this_movie_usere_info.user_id][love_this_movie_info_v.user_id] = fabs(u_rating - v_rating);//评分差值最大值
//+= 5.0 - abs(love_this_movie_usere_info.rating - love_this_movie_info_v.rating);
}
}
}
for (int i = 1; i < MOVIELENSUSER; i++)//遍历6040个用户
{
user_count = 0;
for (int j = 1; j < MOVIELENSUSER; j++) if (user_similary_count[i][j] && user_movie_rating[i] && user_movie_rating[j])
{//遍历与当前用户有共评电影的用户
double user_movie_union = user_movie_rating[i] + user_movie_rating[j] - user_similary_count[i][j];//两个用户评价过的电影的并集
double avg_difference = user_rating_difference[i][j] / user_similary_count[i][j];
double diff = 1 - avg_difference / (pow(4.0, regulate_factor_k));
double simJaccard = user_similary_count[i][j] / user_movie_union;//Jaccard 相似性系数
double simJaccard_plus = simJaccard * diff;//改进后的Jaccard系数
double simMatrix = vector_product[i][j] / (sqrt(n_vector_abs[i]) * sqrt(n_vector_abs[j]));//余弦相似度
//double simPCC = PCC_up[i][j] / (sqrt(PCC_down[i]) * sqrt(PCC_down[j]));//皮尔森相似度
//double simACOS = PCC_up[i][j] / (sqrt(ACOS_down[i]) * sqrt(ACOS_down[j]));//改进的余弦相似度
double simAttr = getsimAttr(i,j);//用户特征
double final_user_similary = sim_matrix * simJaccard_plus + sim_attr * simAttr;//////////////////////综合相似度
//sim_matrix * simJaccard_plus + sim_attr * simAttr
//double alpha = getalpha1(i, j);//根据执行的次数不同,得到的alpha值也不同
//double alpha1 = getalagepha1(m_user_info[i].MovieAge / m_user_info[i].rattime, m_user_info[j].MovieAge / m_user_info[j].rattime);//时间衰减因子
//final_user_similary *= alpha * alpha1;
User_User_CF_info u;
u.user_id = j;
u.similary = final_user_similary;
user_user_cf_infoo[i].insert(u);//用户V加入用户U的相似用户列表
user_count++;//相似用户个数
if (user_count > RECOMMEND_USER)
{
user_user_cf_infoo[i].erase(--user_user_cf_infoo[i].end());
}
}
}
for (int i = 0; i < MOVIELENSUSER; i++) delete[] user_similary_count[i];
for (int i = 0; i < MOVIELENSUSER; i++) delete[] PCC_up[i];
for (int i = 0; i < MOVIELENSUSER; i++) delete[] user_rating_difference[i];
//for (int i = 0; i < MOVIELENSUSER; i++) delete[] user_rating_difference_max[i];
//for (int i = 0; i < MOVIELENSUSER; i++) delete[] user_rating_difference_min[i];
for (int i = 0; i < MOVIELENSUSER; i++) delete[] vector_product[i];
delete[] vector_product;
delete[] PCC_up;
delete[] user_similary_count;
delete[] user_rating_difference;
//delete[] user_rating_difference_max;
//delete[] user_rating_difference_min;
delete[] user_movie_rating;
}
void recommend_set1(int user_id)
{
/*set < User_User_CF_movie, uucfm_mov_opera> ans;*/
User_User_CF_movie recommend_u;
/*User_User_CF_movie u;*/
set <User_User_CF_info> ::iterator sim_it;
set <int> ::iterator user_it;
set <User_User_CF_movie> ::iterator mk_it;
int love_this_movie_usere_len = 0;
double sum_sim = 0.0;
double v_rating;
/*double sum_sim_up = 0.0;*/
memset(recommend_list, 0, sizeof(double)* MOVIES);
for (sim_it = user_user_cf_infoo[user_id].begin(); sim_it != user_user_cf_infoo[user_id].end(); sim_it++)//遍历用户U的相似用户列表
sum_sim += sim_it->similary;
for (sim_it = user_user_cf_infoo[user_id].begin(); sim_it != user_user_cf_infoo[user_id].end(); sim_it++)//遍历用户U的相似用户列表
{
for (user_it = train_moviee[sim_it->user_id].begin(); user_it != train_moviee[sim_it->user_id].end(); user_it++)//遍历用户V评价过的电影
{
if (train_moviee[user_id].find(*user_it) != train_moviee[user_id].end()) continue;//若用户U没有评价过则继续执行
love_this_movie_usere_len = love_this_movie_usere[*user_it].size();
for (int j = 0; j < love_this_movie_usere_len; j++){
if (love_this_movie_usere[*user_it][j].user_id == sim_it->user_id)
v_rating = love_this_movie_usere[*user_it][j].rating;
}
recommend_list[*user_it] += (v_rating - rating_avg[sim_it->user_id]) * sim_it->similary;
//u.movie_id = *user_it;
//love_this_movie_usere_len = love_this_movie_usere[u.movie_id].size();
//for (int j = 0; j < love_this_movie_usere_len; j++)//遍历评价过这部电影的用户
//{
// User_User_CF_info v;
// v.user_id = love_this_movie_usere[*user_it][j].user_id;
// if (user_user_cf_infoo[user_id].find(v) == user_user_cf_infoo[user_id].end()) continue;//该用户在U的相似用户集合里
// sum_sim_up += (love_this_movie_usere[*user_it][j].rating - rating_avg[sim_it->user_id]) * sim_it->similary;
//}
/*u.similary = rating_avg[user_id] + sum_sim_up / sum_sim;*/
/*u.similary = sim_it->similary * getalagepha1(m_user_info[user_id].MovieAge / m_user_info[user_id].rattime, m_movie_info[*user_it].movie_age);*/
//if (ans.find(u) != ans.end())//该电影已经存在
// continue;
//{
// u.similary += ans.find(u)->similary;//电影的推荐指数叠加
// ans.erase(u);
//}
//ans.insert(u);//将该电影加入推荐
}
}
if (sum_sim > 0){
for (int i = 0; i < MOVIES; i++){
recommend_list[i] /= sum_sim;
recommend_list[i] += rating_avg[user_id];
}
for (int i = 0; i < MOVIES; i++/*mk_it = ans.begin(); mk_it != ans.end(); mk_it++*/)
{
if (recommend_list[i] <= 0) continue;
recommend_u.movie_id = i;/*mk_it->movie_id;*/
recommend_u.similary = recommend_list[i];/*mk_it->similary;*/
uucf_test_user_love_moviee[user_id].insert(recommend_u);//生成推荐列表
}
}
}
void generate_recommend_list1()
{
/*int hit = 0;
int recall = 0;
int precision = 0;*/
int recomend_movie_num = 0;
int recomend_movie = 0;//猜中的推荐总数
/*double ret = 0.0;*/
double MAE = 0.0;
double RMSE = 0.0;
set_count = 0;
int flag;
set <int> test_movie_gg;
set<User_User_CF_movie> ::iterator uucfm_it;
//set<user_rating> ::iterator iter;
for (int i = 0; i < MOVIELENSUSER; i++)
{
recommend_set1(i);
recomend_movie_num = 0;
int uucf_test_user_love_moviee_len = uucf_test_user_love_moviee[i].size();
if (uucf_test_user_love_moviee_len <= 0) continue;
printf("set done!\n");
for (recomend_movie_num, uucfm_it = uucf_test_user_love_moviee[i].begin(); uucfm_it != uucf_test_user_love_moviee[i].end() && recomend_movie_num < RECOMMEND_MOVIE; uucfm_it++, recomend_movie_num++)
{//遍历电影推荐列表
int test_love_this_movie_usere_len = test_love_this_movie_usere[uucfm_it->movie_id].size();//评价过该电影的用户人数
if (test_love_this_movie_usere_len <= 0 ) continue;//人数不为零则继续执行
flag = 0;
for (int j = 0; j < test_love_this_movie_usere_len && !flag ; j++)//遍历这些用户
{
if (test_love_this_movie_usere[uucfm_it->movie_id][j].user_id == i){
double pre_rating = uucfm_it->similary;//预测评分
double real_rating = test_love_this_movie_usere[uucfm_it->movie_id][j].rating;//实际评分
MAE += fabs(pre_rating - real_rating);//评分差值
RMSE += pow((pre_rating - real_rating), 2.0);
set_count++;//评分次数
flag = 1;
printf("ok!\n");
}
}
/*for (iter = test_user_rating_info[i].begin(); iter != test_user_rating_info[i].end(); iter++){
if (iter->movie_id == uucfm_it->movie_id){
}
}*/
/*int test_len = test_user_rating_info[i].size();
if (!test_len) continue;
for (int j = 0; j < test_len; j++){
if (test_user_rating_info[i][j].movie_id == uucfm_it->movie_id){
user_rating u = test_user_rating_info[i][j];
MAE += fabs(uucfm_it->similary - u.rating);
set_count++;
}*/
}
// for(int j = 0; j < MAX_RATING_NUM; j++)
// if (all_test_info[j].moviesid == uucfm_it->movie_id && all_test_info[j].userid == i)
// if (test_moviee[i].find(v) != test_moviee[i].end())//该电影在测试集中存在
// {
//
// hit++;//推荐的正是用户喜欢的
// if (test_movie_gg.find(uucfm_it->movie_id) == test_movie_gg.end()){
// test_movie_gg.insert(uucfm_it->movie_id);
// recomend_movie++;
// }
// ret += log2(test_movie_num[uucfm_it->movie_id] + 1);
// }
/*}*/
//recall += test_moviee[i].size();//该用户评价过的电影总数
//precision += RECOMMEND_MOVIE;//推荐列表大小为10
}
//printf("%lf %lf %lf %lf\n", hit / (recall*1.0), hit / (precision*1.0)/* recomend_movie / (all_test_movie*1.0), ret / (hit*1.0)*/);
MAE /= set_count;
RMSE /= set_count;
RMSE = sqrt(RMSE);
printf("%d\n%lf\n%lf\n", set_count,MAE, RMSE);
}
void uucfinit1(int flag)
{
for (int i = 0; i < MOVIES; i++) love_this_movie_usere[i].clear();
for (int i = 0; i < MOVIES; i++) test_love_this_movie_usere[i].clear();
for (int i = 0; i < MOVIELENSUSER; i++)
{
user_user_cf_infoo[i].clear();
uucf_test_user_love_moviee[i].clear();
/*test_moviee[i].clear();*/
train_moviee[i].clear();
user_rating_info[i].clear();
test_user_rating_info[i].clear();
}
}
void newCF_main()
{
uucfinit1(0);
calculate_user_similary_best1();
generate_recommend_list1();
uucfinit1(1);
} | [
"1502882191@qq.com"
] | 1502882191@qq.com |
b6513bd07b3f84a23718018dc77967d9da38be64 | 835a1f52b44f79761eb4069f8ac5902454404a78 | /source/py_fwd/py_forward.cpp | 67b70db0d785c0ca09a3ea3cdb3785061706fe6d | [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | laisun/Forward | d4681dafdc2af674dcfc65e42f413b1c65f8e3b7 | ecf1eab7b719eb35fa7ba501c230c44e91ea9911 | refs/heads/master | 2023-03-23T12:07:24.470555 | 2021-03-24T06:36:45 | 2021-03-24T06:36:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,582 | cpp | // Copyright (C) 2021 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.
//
// ╔════════════════════════════════════════════════════════════════════════════════════════╗
// ║──█████████╗───███████╗───████████╗───██╗──────██╗───███████╗───████████╗───████████╗───║
// ║──██╔══════╝──██╔════██╗──██╔════██╗──██║──────██║──██╔════██╗──██╔════██╗──██╔════██╗──║
// ║──████████╗───██║────██║──████████╔╝──██║──█╗──██║──█████████║──████████╔╝──██║────██║──║
// ║──██╔═════╝───██║────██║──██╔════██╗──██║█████╗██║──██╔════██║──██╔════██╗──██║────██║──║
// ║──██║─────────╚███████╔╝──██║────██║──╚████╔████╔╝──██║────██║──██║────██║──████████╔╝──║
// ║──╚═╝──────────╚══════╝───╚═╝────╚═╝───╚═══╝╚═══╝───╚═╝────╚═╝──╚═╝────╚═╝──╚═══════╝───║
// ╚════════════════════════════════════════════════════════════════════════════════════════╝
//
// Authors: Aster JIAN (asterjian@qq.com)
// Yzx (yzxyzxyzx777@outlook.com)
// Ao LI (346950981@qq.com)
// Paul LU (lujq96@gmail.com)
#include <pybind11/numpy.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#ifdef ENABLE_TORCH
#include "py_fwd/py_forward_torch.h"
#endif
#ifdef ENABLE_TENSORFLOW
#include "py_fwd/py_forward_tf.h"
#endif
#ifdef ENABLE_KERAS
#include "py_fwd/py_forward_keras.h"
#endif
#include "common/trt_calibrator.h"
#include "py_fwd/py_batch_stream.h"
namespace py = pybind11;
PYBIND11_MODULE(forward, m) {
m.doc() = R"pbdoc(Forward for Python)pbdoc";
m.attr("__version__") = "1.0.0";
py::class_<IPyBatchStream, PyBatchStream, std::shared_ptr<IPyBatchStream>>(m, "IPyBatchStream")
.def(py::init<>())
.def("next", &IPyBatchStream::next)
.def("getNumpyBatch", &IPyBatchStream::getNumpyBatch)
.def("getBatchSize", &IPyBatchStream::getBatchSize)
.def("bytesPerBatch", &IPyBatchStream::bytesPerBatch);
// This calibrator is for compatibility with 2.0EA. It is deprecated and
// should not be used. m.attr("LEGACY_CALIBRATION") = "legacy";
m.attr("ENTROPY_CALIBRATION") = "entropy";
m.attr("ENTROPY_CALIBRATION_2") = "entropy_2";
m.attr("MINMAX_CALIBRATION") = "minmax";
py::class_<nvinfer1::IInt8Calibrator, std::shared_ptr<nvinfer1::IInt8Calibrator>>(
m, "IInt8Calibrator");
py::class_<fwd::TrtInt8Calibrator, nvinfer1::IInt8Calibrator,
std::shared_ptr<fwd::TrtInt8Calibrator>>(m, "TrtInt8Calibrator")
.def(py::init<std::shared_ptr<fwd::IBatchStream>, const std::string&, const std::string&>())
.def(py::init<const std::string&, const std::string&, int>())
.def("set_scale_file", &fwd::TrtInt8Calibrator::setScaleFile);
#ifdef ENABLE_TORCH
py::class_<fwd::TorchBuilder>(m, "TorchBuilder")
.def(py::init<>())
.def("build",
py::overload_cast<fwd::TorchBuilder&, const std::string&,
const std::vector<torch::jit::IValue>&>(&TorchBuilderBuild),
py::arg("module_path"), py::arg("dummy_inputs"))
.def("build",
py::overload_cast<fwd::TorchBuilder&, const std::string&, const torch::jit::IValue&>(
&TorchBuilderBuild),
py::arg("module_path"), py::arg("dummy_inputs"))
.def("build_with_name",
py::overload_cast<fwd::TorchBuilder&, const std::string&,
const std::unordered_map<std::string, c10::IValue>&>(
&TorchBuilderBuildWithName),
py::arg("module_path"), py::arg("dummy_input_dict"))
.def("set_mode", &fwd::TorchBuilder::SetInferMode, py::arg("infer_mode"))
.def("set_opt_batch_size", &fwd::TorchBuilder::SetOptBatchSize, py::arg("opt_batch_size"))
.def("set_max_workspace_size", &fwd::TorchBuilder::SetMaxWorkspaceSize,
py::arg("max_workspace_size"))
.def("set_calibrator", &fwd::TorchBuilder::SetCalibrator, py::arg("calibrator"));
py::class_<fwd::TorchEngine, std::shared_ptr<fwd::TorchEngine>>(m, "TorchEngine")
.def(py::init<>())
.def("forward",
py::overload_cast<fwd::TorchEngine&, const std::vector<torch::jit::IValue>&>(
&TorchEngineForward),
py::arg("inputs"))
.def("forward",
py::overload_cast<fwd::TorchEngine&, const torch::jit::IValue&>(&TorchEngineForward),
py::arg("input_tensor"))
.def(
"forward_with_name",
py::overload_cast<fwd::TorchEngine&, const std::unordered_map<std::string, c10::IValue>&>(
&TorchEngineForwardWithName),
py::arg("input_dict"))
.def("load", &fwd::TorchEngine::Load, py::arg("engine_filename"))
.def("save", &fwd::TorchEngine::Save, py::arg("engine_filename"));
#endif // ENABLE_TORCH
#ifdef ENABLE_TENSORFLOW
py::class_<fwd::TfBuilder>(m, "TfBuilder")
.def(py::init<>())
.def("build", &TfBuilderBuild, py::arg("model_path"), py::arg("dummy_inputs"))
.def("set_mode", &fwd::TfBuilder::SetInferMode, py::arg("infer_mode"))
.def("set_opt_batch_size", &fwd::TfBuilder::SetOptBatchSize, py::arg("opt_batch_size"))
.def("set_max_workspace_size", &fwd::TfBuilder::SetMaxWorkspaceSize,
py::arg("max_workspace_size"))
.def("set_calibrator", &fwd::TfBuilder::SetCalibrator, py::arg("calibrator"));
py::class_<fwd::TfEngine, std::shared_ptr<fwd::TfEngine>>(m, "TfEngine")
.def(py::init<>())
.def("load", &fwd::TfEngine::Load, py::arg("engine_filename"))
.def("save", &fwd::TfEngine::Save, py::arg("engine_filename"))
.def("input_dims", &fwd::TfEngine::GetInputDims)
.def("output_dims", &fwd::TfEngine::GetOutputDims)
.def("forward", &TfEngineForwardWithName, py::arg("inputs"));
#endif // ENABLE_TENSORFLOW
#ifdef ENABLE_KERAS
py::class_<fwd::KerasBuilder>(m, "KerasBuilder")
.def(py::init<>())
.def("build", &fwd::KerasBuilder::Build, py::arg("model_path"), py::arg("batch_size") = 1)
.def("set_mode", &fwd::KerasBuilder::SetInferMode, py::arg("infer_mode"))
.def("set_opt_batch_size", &fwd::KerasBuilder::SetOptBatchSize, py::arg("opt_batch_size"))
.def("set_max_workspace_size", &fwd::KerasBuilder::SetMaxWorkspaceSize,
py::arg("max_workspace_size"))
.def("set_calibrator", &fwd::KerasBuilder::SetCalibrator, py::arg("calibrator"));
py::class_<fwd::KerasEngine, std::shared_ptr<fwd::KerasEngine>>(m, "KerasEngine")
.def(py::init<>())
.def("load", &fwd::KerasEngine::Load, py::arg("engine_filename"))
.def("save", &fwd::KerasEngine::Save, py::arg("engine_filename"))
.def("forward", &KerasEngineForward, py::arg("inputs"));
#endif // ENABLE_KERAS
}
| [
"percyyuan@tencent.com"
] | percyyuan@tencent.com |
2b0d052b15db1131d9734406f48a8a9261eb94dd | dde107dc5985176a030b8aa4423ad88fc4456747 | /lab42/lab42.cpp | f355938aa12a96fdce7fc2ddca1cda84a7511916 | [] | no_license | Tigercore1/CoreyMcDonough-CSCI20-Fall2017 | 23a62623ebb8edbce9238a6d1c424c88618ebe3b | 8f13f6efef864529b5256e31a5ad9c082525e23c | refs/heads/master | 2021-01-19T16:02:07.846983 | 2017-12-11T08:07:33 | 2017-12-11T08:07:33 | 100,982,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,197 | cpp | /*Created By: Corey McDonough
* Created On: 11/6/2017
* Our goal is to create a virtual shopping cart with at least 10 items. The cart should use parallel arrays. Each item must have a name, amount in stock, and price. Once the user
* is done, the user should be prompted with a shopping cart that shows what they purchased and how many. It should also show the total cost for all the items.
*/
#include <iostream>
#include <math.h>
#include <string>
using namespace std;
int main(){
//INITIALIZE
double total = 0;
string name[10];
int inventory[10];
double price[10];
int purchased[10];
int response = 9999;
int number = 0;
for (int i = 0; i < 10; i++){ //Initializing amount of items purchased to 0.
purchased[i] = 0;
}
name[0] = "Potato "; //name of items
name[1] = "Sick Kicks ";
name[2] = "Mac and Cheese";
name[3] = "Hoodie ";
name[4] = "Salad ";
name[5] = "Onesie ";
name[6] = "Ipod Shuffle ";
name[7] = "Lava Lamp ";
name[8] = "Backpack ";
name[9] = "Shoelace ";
inventory[0] = 72; //amount of items in stock
inventory[1] = 2;
inventory[2] = 5;
inventory[3] = 11;
inventory[4] = 0;
inventory[5] = 17;
inventory[6] = 1;
inventory[7] = 3;
inventory[8] = 6;
inventory[9] = 1;
price[0] = .50; //price of each item
price[1] = 200;
price[2] = .40;
price[3] = 20;
price[4] = 4;
price[5] = 23;
price[6] = 2;
price[7] = 15;
price[8] = 20;
price[9] = 3;
while (response != 0){ //user can enter "0" to end.
cout << "What would you like to add to your cart? Enter the item number. Type \"0\" to checkout." << endl; //menu setup
cout << "Name ~ Amount in Stock ~ Price" << endl;
cout << "----------------------------------" << endl;
for (int i = 0; i < 10; i++){ //Shows the menu
cout << (i+1) << ") " << name[i] << " " << inventory[i] << " $" << price[i] << endl;
}
cin >> response; //ITEM INPUT AND END IF 0
if (response == 0){
break;
}
else if ((response >= 1) && (response <= 10)){ //there are only 10 items on the list
cout << "How many would you like to add to your cart?" << endl;
cin >> number; //NUMBER OF ITEMS INPUT
if (inventory[response - 1] - number < 0){ //checks to see if there is enough items in stock to support purchase
cout << "Could not add items to cart. Not enough in stock." << endl;
number = 0;
response = 9999;
}
else {
inventory[response - 1] = inventory[response - 1] - number;
purchased [response -1] = purchased[response - 1] + number;
total = total + (number * price[response - 1]);
number = 0;
response = 9999;
}
}
else{
cout << "INVALID RESPONSE." << endl;
}
}
cout << "Your cart:" << endl; //CART
cout << "Name ~ Number Purchased ~ Price" << endl;
cout << "-----------------------------------" << endl;
for (int i = 0; i < 10; i++){//loop to display cart
cout << (i+1) << ") " << name[i] << " " << purchased[i] << " $" << price[i] << endl;
}
cout << "Total purchased: $" << total << endl;
}
/* TESTS:
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 2 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 1 $3
13
INVALID RESPONSE.
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 2 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 1 $3
2
How many would you like to add to your cart?
7
Could not add items to cart. Not enough in stock.
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 2 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 1 $3
2
How many would you like to add to your cart?
1
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 1 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 1 $3
2
How many would you like to add to your cart?
1
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 0 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 1 $3
7
How many would you like to add to your cart?
12
Could not add items to cart. Not enough in stock.
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 0 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 1 $3
7
How many would you like to add to your cart?
1
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 0 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 0 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 1 $3
10
How many would you like to add to your cart?
1
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 0 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 0 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 0 $3
13
INVALID RESPONSE.
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 0 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 0 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 0 $3
9
How many would you like to add to your cart?
6
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 0 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 0 $2
8) Lava Lamp 3 $15
9) Backpack 0 $20
10) Shoelace 0 $3
0
Your cart:
Name ~ Amount Purchased ~ Price
-----------------------------------
1) Potato 0 $0.5
2) Sick Kicks 2 $200
3) Mac and Cheese 0 $0.4
4) Hoodie 0 $20
5) Salad 0 $4
6) Onesie 0 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 0 $15
9) Backpack 6 $20
10) Shoelace 1 $3
Total purchased: $525
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 2 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 3 $15
9) Backpack 6 $20
10) Shoelace 1 $3
8
How many would you like to add to your cart?
3
What would you like to add to your cart? Enter the item number. Type "0" to checkout.
Name ~ Amount in Stock ~ Price
----------------------------------
1) Potato 72 $0.5
2) Sick Kicks 2 $200
3) Mac and Cheese 5 $0.4
4) Hoodie 11 $20
5) Salad 0 $4
6) Onesie 17 $23
7) Ipod Shuffle 1 $2
8) Lava Lamp 0 $15
9) Backpack 6 $20
10) Shoelace 1 $3
0
Your cart:
Name ~ Amount Purchased ~ Price
-----------------------------------
1) Potato 0 $0.5
2) Sick Kicks 0 $200
3) Mac and Cheese 0 $0.4
4) Hoodie 0 $20
5) Salad 0 $4
6) Onesie 0 $23
7) Ipod Shuffle 0 $2
8) Lava Lamp 3 $15
9) Backpack 0 $20
10) Shoelace 0 $3
Total purchased: $45
*/ | [
"cmcdonough002@student.butte.edu"
] | cmcdonough002@student.butte.edu |
a05bc2b7ed5ffd4abf804b41f71e6861888b8f44 | d843a35c7dbcf0a1738ad7914675153d046743b3 | /src/Puzzle.cpp | 403072a3d3b0214f4744dff876b6fb67df1a86ab | [] | no_license | aebsubis/nine-key-puzle | 2364c770e43295f8cce8e1a9fac8a3ba72105eec | c522a2746236d5a44415be75877bff962a649df1 | refs/heads/master | 2016-09-15T06:54:19.704706 | 2016-05-10T20:07:53 | 2016-05-10T20:07:53 | 33,012,638 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,968 | cpp | #include "Puzzle.h"
#include <fstream>
// Constructor por defecto.
Puzzle::Puzzle()
{
ruta = "";
grande = NULL;
medio = NULL;
pequeno = NULL;
matriz = NULL;
// Tamaño del puzzle.
tamano = 0;
// Posición del hueco.
huecoX = 0;
huecoY = 0;
// Inicializamos los mejores tiempos y movimientos.
for(int i=0; i<10; i++)
{
mejorTiempo[i]= 3600000;
mejorMovimiento[i] = 999;
}
}
// Constructor sobrecargado.
Puzzle::Puzzle(string ruta)
{
this->ruta = ruta;
// Cargamos las imágenes.
string rutaImagen = "";
rutaImagen = "puzzles/"+ruta+"/grande.jpg";
grande = IMG_Load(rutaImagen.c_str());
if (grande == NULL)
{
printf("No pude cargar gráfico: %s\n", SDL_GetError());
exit(1);
};
rutaImagen = "puzzles/"+ruta+"/medio.jpg";
medio = IMG_Load(rutaImagen.c_str());
if (medio == NULL)
{
printf("No pude cargar gráfico: %s\n", SDL_GetError());
exit(1);
};
rutaImagen = "puzzles/"+ruta+"/pequeno.jpg";
pequeno = IMG_Load(rutaImagen.c_str());
if (pequeno == NULL)
{
printf("No pude cargar gráfico: %s\n", SDL_GetError());
exit(1);
};
// Matriz del puzzle.
matriz = NULL;
// Tamaño del puzzle.
tamano = 0;
// Posición del hueco.
huecoX = 0;
huecoY = 0;
// Inicializamos los mejores tiempos y movimientos.
for(int i=0; i<10; i++)
{
mejorTiempo[i]= 3600000;
mejorMovimiento[i] = 999;
}
}
// Constructor de copia.
Puzzle::Puzzle(const Puzzle& puzzle)
{
grande = NULL;
medio = NULL;
pequeno = NULL;
matriz = NULL;
*this = puzzle;
}
// Operador de asignación.
Puzzle& Puzzle::operator=(const Puzzle& puzzle)
{
if (this != &puzzle)
{
// Copiamos la ruta.
ruta = puzzle.ruta;
// Cargamos las imágenes.
/*
string rutaImagen = "";
rutaImagen = "puzzles/"+ruta+"/grande.jpg";
grande = IMG_Load(rutaImagen.c_str());
if (grande == NULL)
{
printf("No pude cargar gráfico: %s\n", SDL_GetError());
exit(1);
};
rutaImagen = "puzzles/"+ruta+"/medio.jpg";
medio = IMG_Load(rutaImagen.c_str());
if (medio == NULL)
{
printf("No pude cargar gráfico: %s\n", SDL_GetError());
exit(1);
};
rutaImagen = "puzzles/"+ruta+"/pequeno.jpg";
pequeno = IMG_Load(rutaImagen.c_str());
if (pequeno == NULL)
{
printf("No pude cargar gráfico: %s\n", SDL_GetError());
exit(1);
};
*/
// Copiamos el tamaño.
setTamano(puzzle.getTamano());
// Copiamos la matriz.
// Puzzle solucionado
for(int i=0; i<tamano; i++)
{
for(int j=0; j<tamano; j++)
{
matriz->getPunteroElemento(i,j)->setX(puzzle.matriz->getPunteroElemento(i,j)->getX());
matriz->getPunteroElemento(i,j)->setY(puzzle.matriz->getPunteroElemento(i,j)->getY());
}
}
huecoX = puzzle.huecoX;
huecoY = puzzle.huecoY;
}
return *this;
}
// Destructor.
Puzzle::~Puzzle()
{
// Liberar memoria.
SDL_FreeSurface(grande);
SDL_FreeSurface(medio);
SDL_FreeSurface(pequeno);
if(matriz != NULL)
delete matriz;
// Liberamos los mejores movimientos.
mejorMovimiento.clear();
// Liberamos los mejores tiempos.
mejorTiempo.clear();
}
// Obtiene la rulta.
string Puzzle::getRuta() const
{
return ruta;
}
// Establece la ruta.
void Puzzle::setRuta(string ruta)
{
this->ruta = ruta;
}
// Devuelve la superficie de la imagen pequeña.
SDL_Surface* Puzzle::getPequeno() const
{
return pequeno;
}
// Devuelve la superficie de la imagen mediana.
SDL_Surface* Puzzle::getMedio() const
{
return medio;
}
// Devuelve la superficie de la imagen grande.
SDL_Surface* Puzzle::getGrande() const
{
return grande;
}
// Devuelve el tamaño del puzzle.
int Puzzle::getTamano() const
{
return tamano;
}
// Establece el tamaño del puzzle.
void Puzzle::setTamano(int nuevoTamano)
{
// Asignamos el nuevo tamaño.
tamano = nuevoTamano;
// Liberamos la matriz actual.
if(matriz != NULL)
delete matriz;
// Reservamos la matriz del nuevo tamaño.
matriz = new Matriz<Pieza>(tamano, tamano);
// Establecemos el estado solucionado.
solucionar();
// Indicamos la posición del hueco.
huecoX = tamano-1;
huecoY = tamano-1;
}
// Remueve las fichas.
void Puzzle::remover()
{
// Indica la dirección del movimiento.
string direccion = "";
// Número de intento de remover.
int intentoRemover = 1;
do{
// Removemos el puzzle.
int numIntercambios = tamano*tamano*50/intentoRemover;
for(int i=0; i<numIntercambios; i++ )
{
int dirAleatoria = rand()%4;
switch(dirAleatoria)
{
case 0:
direccion = "derecha";
break;
case 1:
direccion = "izquierda";
break;
case 2:
direccion = "arriba";
break;
case 3:
direccion = "abajo";
break;
}
mover(direccion);
}
// Incrementamos los intentos de remover el puzzle.
intentoRemover++;
}while(solucionado());
}
// Soluciona el puzzle.
void Puzzle::solucionar()
{
// Puzzle solucionado
for(int i=0; i<tamano; i++)
{
for(int j=0; j<tamano; j++)
{
matriz->getPunteroElemento(i,j)->setX(i);
matriz->getPunteroElemento(i,j)->setY(j);
}
}
}
// Indica si el puzzle está solucionado.
bool Puzzle::solucionado() const
{
// Puzzle solucionado
bool solucionado = true;
for(int i=0; i<tamano && solucionado == true; i++)
{
for(int j=0; j<tamano && solucionado == true; j++)
{
if( (matriz->getElemento(i,j).getX() != i) || (matriz->getElemento(i,j).getY() != j) )
solucionado = false;
}
}
return solucionado;
}
// Intercambia dos piezas.
void Puzzle::intercambiar(int posx1, int posy1, int posx2, int posy2)
{
Pieza pieza1 = matriz->getElemento(posx1, posy1);
Pieza pieza2 = matriz->getElemento(posx2, posy2);
matriz->setElemento(posx1, posy1, pieza2);
matriz->setElemento(posx2, posy2, pieza1);
// Comprobamos si hemos movido el hueco.
if(posx1 == huecoX && posy1 == huecoY)
{
// Cambiamos el hueco.
huecoX = posx2;
huecoY = posy2;
}
else if(posx2 == huecoX && posy2 == huecoY)
{
huecoX = posx1;
huecoY = posy1;
}
}
// Mueve el hueco en la dirección indicada.
bool Puzzle::mover(string direccion)
{
if(direccion == "arriba")
{
if(huecoY<tamano-1)
{
intercambiar(huecoX, huecoY, huecoX, huecoY+1);
return true;
}
}
else if(direccion == "abajo")
{
if(huecoY>0)
{
intercambiar(huecoX, huecoY, huecoX, huecoY-1);
return true;
}
}
else if(direccion == "derecha")
{
if(huecoX>0)
{
intercambiar(huecoX, huecoY, huecoX-1, huecoY);
return true;
}
}
else if(direccion == "izquierda")
{
if(huecoX<tamano-1)
{
intercambiar(huecoX, huecoY, huecoX+1, huecoY);
return true;
}
}
else
{
cout << "<Error>Puzzle:mover - Dirección no permitida.";
}
return false;
}
// Devuelve el mejor tiempo del nivel actual.
Uint32 Puzzle::getMejorTiempo()
{
return mejorTiempo[getTamano()];
}
// Establece el mejor tiempo del nivel actual.
void Puzzle::setMejorTiempo(Uint32 mejorTiempo)
{
this->mejorTiempo[getTamano()] = mejorTiempo;
}
// Devuelve la mejor cantidad de movimientos del nivel actual.
int Puzzle::getMejorMovimiento()
{
return mejorMovimiento[getTamano()];
}
// Establece la mejor cantidad de movimientos del nivel actual.
void Puzzle::setMejorMovimiento(int mejorMovimiento)
{
this->mejorMovimiento[getTamano()] = mejorMovimiento;
}
// Carga las estadísticas del puzzle desde el fichero de texto.
void Puzzle::cargarEstadisticas()
{
if(ruta!="")
{
// Stream del fichero
ifstream f;
// Ruta del fichero.
string fichero = "puzzles/"+ruta+"/estadisticas.txt";
// Abrimos el fichero.
f.open(fichero.c_str(),ios::in);
if( f.is_open() )
{
// Leemos las estadísticas.
for(int i=0; i<10; i++)
{
// Leemos el mejor tiempo.
Uint32 tiempo = 0;
f >> tiempo;
// Guardamos el mejor tiempo.
mejorTiempo[i]= tiempo;
// Leemos el mejor movimiento.
int movimiento = 0;
f >> movimiento;
// Guardamos el mejor movimiento.
mejorMovimiento[i] = movimiento;
}
// Cerramos el fichero.
f.close();
}
}
}
// Guarda las estadísticas del puzzle en el fichero de texto.
void Puzzle::guardarEstadisticas()
{
if(ruta!="")
{
// Stream del fichero
ofstream f;
// Ruta del fichero.
string fichero = "puzzles/"+ruta+"/estadisticas.txt";
// Abrimos el fichero.
f.open(fichero.c_str(),ios::out);
if( f.is_open() )
{
// Escribimos las estadísticas.
for(int i=0; i<10; i++)
{
// Escribimos el mejor tiempo.
Uint32 tiempo = mejorTiempo[i];
f << tiempo;
// Espacio
char espacio = ' ';
f << espacio;
// Escribimos el mejor movimiento.
int movimiento = mejorMovimiento[i];
f << movimiento;
// Salto de línea.
f << endl;
}
// Cerramos el fichero.
f.close();
}
}
}
// Devuelve el falor de f del puzzle.
int Puzzle::getF()
{
// Número de piezas mal colocadas.
int piezasMal = 0;
for(int i=0; i<tamano; i++)
{
for(int j=0; j<tamano; j++)
{
if( (matriz->getElemento(i,j).getX() != i) || (matriz->getElemento(i,j).getY() != j) )
piezasMal++;
}
}
return piezasMal;
}
| [
"aebsubis@0e8e9482-b845-11de-97ce-e783fd196cab"
] | aebsubis@0e8e9482-b845-11de-97ce-e783fd196cab |
2990453b894bbe72662374c50f0a4a83c0a069d5 | 8e11ffb1c18f2a50e508b8a81f39136dd9c92075 | /trunk/EUSandbox/src/CheckPointSystem/CheckPoint.cpp | c52d60494169c3c3e2255fc3d26a2645971eb603 | [] | no_license | BackupTheBerlios/evouni-svn | 6e3e1bb4fac5ad606a648d45d62561be798d1318 | 7712c38b41f43f689e13acf325d96869c3a664fd | refs/heads/master | 2021-01-10T19:11:17.911300 | 2007-01-02T15:39:27 | 2007-01-02T15:39:27 | 40,672,279 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,635 | cpp | #include "checkpoint.h"
CheckPoint::CheckPoint(String name, SceneManager *sceneMgr, CPState state, ParticleSystem* psystem, Vector3 position)
{
mPosition = position;
mName = name;
mSceneMgr = sceneMgr;
pSystem = psystem;
mState = state;
pEmitter = pSystem->addEmitter( "Ellipsoid" );
pEmitter->setAngle( Degree(0) );
pEmitter->setTimeToLive( 5 );
pEmitter->setEmissionRate( 100 );
pEmitter->setParticleVelocity( 0 );
pEmitter->setDirection( -Vector3::UNIT_Z );
setState(state);
pEmitter->setPosition(position);
}
CheckPoint::~CheckPoint(void)
{
}
void CheckPoint::setState(CPState state)
{
mState = state;
switch(mState)
{
case TODO:
pEmitter->setColour( ColourValue::Red, ColourValue::Red);
pEmitter->setParameter("width", "350");
pEmitter->setParameter("height", "350");
pEmitter->setParameter("depth", "350");
break;
case CURRENT:
pEmitter->setColour( ColourValue(1,1,0), ColourValue(1,1,0));
pEmitter->setParameter("width", "350");
pEmitter->setParameter("height", "350");
pEmitter->setParameter("depth", "350");
break;
case DONE:
pEmitter->setColour( ColourValue::Green, ColourValue::Green);
pEmitter->setParameter("width", "250");
pEmitter->setParameter("height", "250");
pEmitter->setParameter("depth", "250");
break;
case INACTIVE:
pEmitter->setColour( ColourValue::White, ColourValue::White);
pEmitter->setParameter("width", "250");
pEmitter->setParameter("height", "250");
pEmitter->setParameter("depth", "250");
break;
}
}
inline CPState CheckPoint::getState()
{
return mState;
}
| [
"tomen@783cb599-3120-0410-820c-bbc20197cc9d"
] | tomen@783cb599-3120-0410-820c-bbc20197cc9d |
27d70f92363b3d833d520a5ae114a398cc8f6b4f | f95341dd85222aa39eaa225262234353f38f6f97 | /DesktopX/Plugins/DXSysStats/SysStatsApp/CloseMenuAction.h | c59215c36bd5f4baf91fef979f2b645a2828441a | [] | no_license | Templier/threeoaks | 367b1a0a45596b8fe3607be747b0d0e475fa1df2 | 5091c0f54bd0a1b160ddca65a5e88286981c8794 | refs/heads/master | 2020-06-03T11:08:23.458450 | 2011-10-31T04:33:20 | 2011-10-31T04:33:20 | 32,111,618 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,280 | h | /*
* SysStats Widget Framework
* Copyright (C) 2002-2006 Paul Andrews
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
#include "MenuAction.h"
class SysStatsClientWindow;
class SysStatsApp;
class CloseMenuAction : public MenuAction
{
public:
CloseMenuAction(const char *_label, SysStatsClientWindow *window, SysStatsApp *app) :
window(window), app(app)
{ strncpy(label, _label, sizeof(label)); }
virtual void action();
virtual const char* getName() const { return label; }
private:
char label[80];
SysStatsClientWindow *window;
SysStatsApp *app;
}; | [
"julien.templier@ab80709b-eb45-0410-bb3a-633ce738720d"
] | julien.templier@ab80709b-eb45-0410-bb3a-633ce738720d |
51b5c42a662619448c55b191a1bd5de77e3b35c5 | 635198060c600457a5a19fa96f449d6e8d6ad55e | /code/Search-&-Recursion/clone-graph.cpp | c14f021aaf9660844a8a059757996456aa18f774 | [
"MIT"
] | permissive | leetcode-1533/Lintcode-US-Giants | eaa1b120df599b02ee47f7c4d99421250ed9b47c | 7b7ecf0f952a0bd3467bb2dd5befc3cc2646518a | refs/heads/master | 2021-05-29T21:46:10.615999 | 2015-11-09T07:45:36 | 2015-11-09T07:45:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,167 | cpp | 描述
深拷贝一个无向图。
思路
使用一个map,把所有的结点拷贝出来,key是旧的结点,value的新拷贝出的结点。然后再遍历一遍旧的图,填充neighbors,即把结点连接起来。
代码
/**
* Definition for undirected graph.
* struct UndirectedGraphNode {
* int label;
* vector<UndirectedGraphNode *> neighbors;
* UndirectedGraphNode(int x) : label(x) {};
* };
*/
class Solution {
public:
/**
* @param node: A undirected graph node
* @return: A undirected graph node
*/
UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) {
unordered_map<UndirectedGraphNode*, UndirectedGraphNode*> mapper;
queue<UndirectedGraphNode*> cache;
if (node == NULL)
return node;
cache.push(node);
cloneNode(node, mapper);
while (!cache.empty()) {
int count = cache.size();
for (int i = 0; i < count; i++) {
UndirectedGraphNode* node = cache.front();
cloneNode(node, mapper);
cache.pop();
for (int j = 0; j < node->neighbors.size(); j++) {
if (mapper.find(node->neighbors[j]) == mapper.end())
cache.push(node->neighbors[j]);
}
}
}
for (unordered_map<UndirectedGraphNode*, UndirectedGraphNode*>::iterator i = mapper.begin(); i != mapper.end(); i++) {
for (int j = 0; j < i->first->neighbors.size(); j++) {
i->second->neighbors.push_back(mapper[i->first->neighbors[j]]);
}
}
return mapper[node];
}
UndirectedGraphNode* cloneNode(UndirectedGraphNode* node, unordered_map<UndirectedGraphNode*, UndirectedGraphNode*>& mapper) {
UndirectedGraphNode* clonedNode = NULL;
if (mapper.find(node) == mapper.end()) {
clonedNode = new UndirectedGraphNode(node->label);
mapper[node] = clonedNode;
}
else
clonedNode = mapper[node];
return clonedNode;
}
};
| [
"zhangxiaoyang.hit@gmail.com"
] | zhangxiaoyang.hit@gmail.com |
e517016f3e6c92d52888e45ef50ceff646d0ab25 | 2eca79e025b20862bd0e5c14e7b46308c1bb235f | /driver/circularbuffer.h | ebd8f7eedc100813bf46b1ad5f42fbadf0919e5d | [] | no_license | muccc/WomoLIN-Sw-MainUnit | d6b166fe778ecdb08319b6dab442735c346c7b32 | 41d4164732ee898785585a6535d355ede21ed18f | refs/heads/develop | 2023-02-11T07:32:50.704206 | 2021-01-12T20:53:38 | 2021-01-12T20:53:38 | 272,496,243 | 0 | 1 | null | 2020-08-29T11:55:33 | 2020-06-15T16:58:57 | null | UTF-8 | C++ | false | false | 1,338 | h | /* SPDX-License-Identifier: GPLv3-or-later */
/* Copyright (c) 2020 Project WomoLIN */
/* Author Tilo Seeck <tiloseeck@web.de> */
#ifndef INC_CIRCULARBUFFER_HPP_
#define INC_CIRCULARBUFFER_HPP_
#include <memory>
namespace mainunit::driver
{
template <class T>
class CircularBuffer
{
public:
explicit CircularBuffer(size_t size) :
m_buffer(std::unique_ptr<T[]>(new T[size])),
m_maxsize(size)
{
//
}
void reset()
{
m_head = m_tail;
m_full = false;
}
bool empty() const
{
return (!m_full && (m_head == m_tail));
}
bool full() const
{
return m_full;
}
size_t capacity() const
{
return m_maxsize;
}
size_t size() const
{
size_t size = m_maxsize;
if(!m_full) {
if(m_head >= m_tail) {
size = m_head - m_tail;
} else {
size = m_maxsize + m_head - m_tail;
}
}
return size;
}
void put(T item)
{
m_buffer[m_head] = item;
if(m_full) {
m_tail = (m_tail + 1) % m_maxsize;
}
m_head = (m_head + 1) % m_maxsize;
m_full = m_head == m_tail;
}
T get()
{
if(empty()) {
return T();
}
auto val = m_buffer[m_tail];
m_full = false;
m_tail = (m_tail + 1) % m_maxsize;
return val;
}
private:
std::unique_ptr<T[]> m_buffer;
const size_t m_maxsize;
size_t m_head = 0;
size_t m_tail = 0;
bool m_full = false;
};
}
#endif /* INC_CIRCULARBUFFER_HPP_ */
| [
"tiloseeck@web.de"
] | tiloseeck@web.de |
8f2b611d8a9bd17371ebb066a04a3c2bbb3c5f0d | b8e9aeb010b9f1f4eceb8d290920f3710948cb1d | /PublicScholar/BibliographicAbstract.h | 615ad82db6f944ec750e6c390dda350204546c24 | [] | no_license | calekennedy/CS2413 | 3dab789d39e4980014d8204ea4c4087ea8c9fc66 | 7aaba09efc024a9aea642e338afcdd753b046bd4 | refs/heads/master | 2021-01-19T04:50:51.548373 | 2014-10-23T04:37:00 | 2014-10-23T04:37:00 | 25,163,834 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 550 | h | /*
Author: Cale Kennedy
Date: 2014 Sep 28
Crediting: Self
Description: Abstract class from which all Bibliographic classes inherit
*/
#pragma once
#include "String.h"
#include "KeyValuePair.h"
class BibliographicAbstract
{
public:
virtual String getKey() const = 0; // accessor
virtual void setKey(const String& key) = 0; // mutator
virtual String getValue() const = 0; // accessor
virtual void setValue(const String& key) = 0; // mutator
virtual void display() = 0; // display
virtual int size() const = 0; // gets the size of value
}; | [
"calek3nn3dy@gmail.com"
] | calek3nn3dy@gmail.com |
4e06223d57e88683c2e2e72e46d1b7205ee8eaf7 | 364980e64538f28a1ffc857523fd98f17340b82b | /client/views/character_creation_view/go_back_button.h | 90104c82ee0e964a55f365cf198f5f80530f8a33 | [] | no_license | nicomatex/taller_argentum | dee9f8e13f295dd386377d548a3304004763a91d | 9f5d2485356ba5d28080a5bde1458a04f3ffe6de | refs/heads/master | 2022-12-04T14:14:29.037640 | 2020-08-21T19:46:17 | 2020-08-21T19:46:17 | 268,933,989 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 889 | h | #ifndef __GO_BACK_BUTTON_H
#define __GO_BACK_BUTTON_H
#include "../../engine/UI/button.h"
#include "../../game_state_monitor.h"
/**
* @brief Boton de "volver" de la pantalla de
* creacion de personajes.
*
*/
class GoBackButton : public Button{
private:
GameStateMonitor& game_state_monitor;
public:
/**
* @brief Constructor del boton de "volver".
*
* @param button_area Area donde se va a renderizar el boton.
* @param viewport Viewport en el cual esta el boton.
* @param renderer Renderer con el cual se va a renderizar el boton.
* @param game_state_monitor Monitor de estado del juego.
*/
GoBackButton(SDL_Rect button_area, SDL_Rect viewport, SDL_Renderer* renderer,
GameStateMonitor& game_state_monitor);
void on_click() override;
};
#endif | [
"naguerre@fi.uba.ar"
] | naguerre@fi.uba.ar |
98c38cf32e8d468dfbdb6bf96a6fc31fb46acfa9 | 94710c631f114be4c35409108d303df70d81c2d6 | /xmax.cpp | 63f5794e09e99619e037f393ce94c9a888421b59 | [] | no_license | kanirudh/spoj | 4f25574bced703f0e2348e8dded8e02f742d27e8 | f160f7bc8d25049168f29976358c573c30a5f9ad | refs/heads/master | 2020-06-04T20:19:36.120948 | 2015-12-21T07:12:25 | 2015-12-21T07:12:25 | 10,152,684 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 850 | cpp | #include <cstdio>
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
typedef long long i64;
int main()
{
vector<i64> input;
int N;
i64 temp,maxl = 1;
scanf("%d",&N);
for(int i=0;i<N;i++){ scanf("%lld",&temp); input.push_back(temp);}
sort(input.rbegin(),input.rend());
while( maxl <= input[0] ) maxl = maxl << 1;
maxl >>= 1;
int i,start = 0;
for(; maxl >= 1;maxl >>=1){
//Pivoting
for(i = start; i< N && (input[i] & maxl) == 0;i++ );
if( i >= N) continue;
swap(input[start],input[i]);
for(i = 0;i<N;i++){
if(i!=start && (input[i] & maxl) != 0) input[i] = input[i]^input[start];
}
start++;
}
i64 result = 0;
// Note here that elements after the index corresponding to highest bit will be zero
for(int i=0;i<N;i++){
result = result^input[i];
}
printf("%lld\n",result);
return 0;
}
| [
"annumarch@gmail.com"
] | annumarch@gmail.com |
135d821d476a5a8806ce3736363f76c7635594f3 | bb608853d87c1b51e6cc8a71d037b8480855b6aa | /SrcServer/src/sinbaram/sinEffect2.cpp | 84d68096ed47fd39619b79f3e5577efb9e192197 | [] | no_license | tobiasquinteiro/Source-GothicPT | 9b8373f9025b82b4bf5d37e53de610e2ad5bef51 | 6542d5c6ab8b797cb6d83f66bde5ea0cd663d0e6 | refs/heads/master | 2022-12-31T04:43:21.159375 | 2020-10-26T00:26:34 | 2020-10-26T00:26:34 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 42,078 | cpp |
#include "sinLinkHeader.h"
#define SIN_MOVE_ROTATE 1
#define SIN_MOVE_DOWN 2
#define SIN_MOVE_BOMB 3
#define SIN_MOVE_TORNADO 4
#define SIN_MOVE_SPARK 5
#define SIN_MOVE_LINE 6
#define SIN_EFFECT_LIGHT 7
#define SIN_MOVE_SONGPYEUN 8
cSINEFFECT2 cSinEffect2[SIN_MAX_EFFECT2];
sinEFFECT_ZDEPTH sinEffect_Zdepth2[SIN_MAX_EFFECT2];
POINT3D sinPosi2;
POINT3D sinAngle2;
int Index = 0;
int Matstun = 0;
int MatIceVigo[5];
int MatBossEffect[3];
int MatParticle2[2];
int MatTestParticle;
int MatParticleLine;
int MatLightEffect;
int MatSongPyeun;
smCHAR sinTestChar;
int InitEffect2()
{
memset(cSinEffect2, 0, sizeof(cSINEFFECT2)*SIN_MAX_EFFECT2);
memset(sinEffect_Zdepth2, 0, sizeof(sinEFFECT_ZDEPTH)*SIN_MAX_EFFECT2);
int i = 0;
char szBuff[128];
Matstun = CreateTextureMaterial("image\\Sinimage\\Effect\\stun\\Star.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
for(i = 0; i < 5; i++)
{
wsprintf(szBuff, "image\\Sinimage\\Effect\\IceVigo\\0%d.tga", i + 1);
MatIceVigo[i] = CreateTextureMaterial(szBuff, 0, 0, 0, 0, SMMAT_BLEND_LAMP);
}
MatBossEffect[0] = CreateTextureMaterial("image\\Sinimage\\Effect\\BossMonster\\mamangjin1.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
MatBossEffect[1] = CreateTextureMaterial("image\\Sinimage\\Effect\\BossMonster\\mamangjin2.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
MatBossEffect[2] = CreateTextureMaterial("image\\Sinimage\\Effect\\BossMonster\\mamangjin3.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
MatParticle2[0] = CreateTextureMaterial("image\\Sinimage\\Effect\\Particle\\Par-1.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
MatParticle2[1] = CreateTextureMaterial("image\\Sinimage\\Effect\\Particle\\Par-5.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
MatTestParticle = CreateTextureMaterial("image\\Sinimage\\Effect\\Particle2\\TestParticle.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
MatParticleLine = CreateTextureMaterial("image\\Sinimage\\Effect\\Particle2\\raysoflight1.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
MatLightEffect = CreateTextureMaterial("image\\Sinimage\\Effect\\Skill\\SwordBlast\\bal.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
MatSongPyeun = CreateTextureMaterial("image\\Sinimage\\Effect\\Particle2\\song.tga", 0, 0, 0, 0, SMMAT_BLEND_LAMP);
return TRUE;
}
int sinSetParticleHit(POINT3D Posi)
{
int i = 0;
for(i = 0; i < 1; i++)
{
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].sinFace.r = 255;
cSinEffect2[Index].sinFace.g = 255;
cSinEffect2[Index].sinFace.b = 255;
cSinEffect2[Index].sinFace.Transparency = 255;
cSinEffect2[Index].sinFace.height = 1000;
cSinEffect2[Index].sinFace.width = 1000;
cSinEffect2[Index].sinFace.MatNum = MatParticle2[0];
cSinEffect2[Index].sinFace.x = Posi.x;
cSinEffect2[Index].sinFace.y = Posi.y + 15000;
cSinEffect2[Index].sinFace.z = Posi.z;
cSinEffect2[Index].Max_Time = 1000;
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
}
return TRUE;
}
int sinSetEffect_IceVigo(smCHAR *pChar, int Time)
{
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].Max_Time = Time;
cSinEffect2[Index].pChar = pChar;
cSinEffect2[Index].sinFace.width = 3000;
cSinEffect2[Index].sinFace.height = 3000;
cSinEffect2[Index].sinFace.r = 255;
cSinEffect2[Index].sinFace.g = 255;
cSinEffect2[Index].sinFace.b = 255;
cSinEffect2[Index].sinFace.Transparency = 255;
cSinEffect2[Index].sinFace.MatNum = MatIceVigo[0];
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
cSinEffect2[Index].AniTime = 10;
cSinEffect2[Index].AniMax = 5;
cSinEffect2[Index].lpMatAni = MatIceVigo;
cSinEffect2[Index].CODE = SIN_EFFECT_ICEVIGO;
return TRUE;
}
int sinSetEffect_Stun(smCHAR *pChar, int Time)
{
int TempX = 0, TempZ = 0, TempSize;
for(int i = 0; i < 8; i++)
{
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].Max_Time = Time;
cSinEffect2[Index].ObjMat = Matstun;
cSinEffect2[Index].Size.x = 128;
cSinEffect2[Index].Size.y = 128;
cSinEffect2[Index].pChar = pChar;
cSinEffect2[Index].Posi.x = pChar->pX;
cSinEffect2[Index].Posi.y = pChar->pY + 13000;
cSinEffect2[Index].Posi.z = pChar->pZ;
cSinEffect2[Index].CODE = SIN_EFFECT_STUN;
TempSize = (i % 8) * 64;
cSinEffect2[Index].Size.x += TempSize;
cSinEffect2[Index].Size.y += TempSize;
cSinEffect2[Index].Angle.x = ANGLE_270;
cSinEffect2[Index].Angle.y = ANGLE_180;
cSinEffect2[Index].Angle.z = 0;
cSinEffect2[Index].MoveKind = SIN_MOVE_ROTATE;
cSinEffect2[Index].RotateDistance.z = 365;
cSinEffect2[Index].RotateSpeed = 128;
cSinEffect2[Index].RotateSpeedCnt = i * 128;
cSinEffect2[Index].RotatePosi.x = GetCos[cSinEffect2[Index].RotateSpeedCnt&ANGCLIP] + cSinEffect2[Index].RotateDistance.z*GetSin[cSinEffect2[Index].RotateSpeedCnt&ANGCLIP];
cSinEffect2[Index].RotatePosi.z = -GetSin[cSinEffect2[Index].RotateSpeedCnt&ANGCLIP] + cSinEffect2[Index].RotateDistance.z*GetCos[cSinEffect2[Index].RotateSpeedCnt&ANGCLIP];
cSinEffect2[Index].RotatePosi.x >>= 16;
cSinEffect2[Index].RotatePosi.z >>= 16;
cSinEffect2[Index].Posi.x += cSinEffect2[Index].RotatePosi.x + TempX;
cSinEffect2[Index].Posi.z += cSinEffect2[Index].RotatePosi.z + TempZ;
TempX += cSinEffect2[Index].RotatePosi.x;
TempZ += cSinEffect2[Index].RotatePosi.z;
cSinEffect2[Index].CharDistance.x = cSinEffect2[Index].Posi.x - cSinEffect2[Index].pChar->pX;
cSinEffect2[Index].CharDistance.z = cSinEffect2[Index].Posi.z - cSinEffect2[Index].pChar->pZ;
cSinEffect2[Index].Angle.y = -((i * 256) + ANGLE_90)&ANGCLIP;
sinCreateObject(&cSinEffect2[Index]);
}
return TRUE;
}
int setBossMonsterEffect(smCHAR *pChar, int ProcessCount)
{
Index = sinSearchEmptyIndex();
smASE_SetPhysique(0);
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].sinPatMesh = smASE_Read("image\\Sinimage\\Effect\\BossMonster\\mon.ASE");
cSinEffect2[Index].CODE = SIN_EFFECT_BOSSAURA;
cSinEffect2[Index].Max_Time = SIN_EFFECT_NO_TIME;
cSinEffect2[Index].Posi.x = pChar->pX;
cSinEffect2[Index].Posi.y = pChar->pY + 1500;
cSinEffect2[Index].Posi.z = pChar->pZ;
cSinEffect2[Index].pChar = pChar;
cSinEffect2[Index].AniCount = 1;
cSinEffect2[Index].AniTime = 3;
cSinEffect2[Index].AniMax = 80;
ReadTextures();
return TRUE;
}
int setBossMonsterEffect2(POINT3D Posi)
{
int TempSize;
Index = sinSearchEmptyIndex();
smASE_SetPhysique(0);
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].Max_Time = 200 + rand() % 20;
cSinEffect2[Index].ObjMat = MatParticle2[1];
cSinEffect2[Index].Posi = Posi;
TempSize = 200 + rand() % 200;
cSinEffect2[Index].Size.x = TempSize;
cSinEffect2[Index].Size.y = TempSize;
cSinEffect2[Index].MoveKind = SIN_MOVE_DOWN;
sinCreateObject(&cSinEffect2[Index]);
ReadTextures();
return TRUE;
}
int sinSetParticleTail(POINT3D Posi)
{
int TempSize = 0;
for(int i = 0; i < 1; i++)
{
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].Max_Time = 200 + rand() % 20;
TempSize = 200 + rand() % 200;
cSinEffect2[Index].sinFace.width = TempSize;
cSinEffect2[Index].sinFace.height = TempSize;
cSinEffect2[Index].sinFace.x = Posi.x + rand() % 500 - rand() % 500;
cSinEffect2[Index].sinFace.y = Posi.y + rand() % 500 - rand() % 500;
cSinEffect2[Index].sinFace.z = Posi.z + rand() % 500 - rand() % 500;
cSinEffect2[Index].Posi.x = cSinEffect2[Index].sinFace.x;
cSinEffect2[Index].Posi.y = cSinEffect2[Index].sinFace.y;
cSinEffect2[Index].Posi.z = cSinEffect2[Index].sinFace.z;
cSinEffect2[Index].sinFace.r = 255;
cSinEffect2[Index].sinFace.g = 255;
cSinEffect2[Index].sinFace.b = 255;
cSinEffect2[Index].sinFace.Transparency = 255;
cSinEffect2[Index].sinFace.MatNum = MatParticle2[4];
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
cSinEffect2[Index].MoveSpeed.y = 3;
cSinEffect2[Index].MoveKind = SIN_MOVE_DOWN;
cSinEffect2[Index].AlphaAmount = 8;
cSinEffect2[Index].AlphaTime = 180;
}
return TRUE;
}
int IndexCount = 0;
int sinDrawEffect2(int x, int y, int z, int ax, int ay, int az)
{
int i;
POINT3D posi = { x,y,z };
POINT3D Angle = { ax,ay,az };
IndexCount = 0;
int sinColor_A = 0, sinColor_R = 0, sinColor_G = 0, sinColor_B = 0;
for(i = 0; i < SIN_MAX_EFFECT2; i++)
{
if(cSinEffect2[i].Flag && cSinEffect2[i].Time > 0 && !cSinEffect2[i].BoneFlag)
{
smRender.SetCameraPosi(x, y, z, ax, ay, az);
for(int j = 0; j < SIN_MAX_EFFECT2; j++)
{
if(!sinEffect_Zdepth2[j].Index)
{
if(!cSinEffect2[i].sinFace.MatNum)
{
sinEffect_Zdepth2[j].ZDepth = smRender.GetDepthZ(cSinEffect2[i].Posi.x, cSinEffect2[i].Posi.y, cSinEffect2[i].Posi.z);
sinEffect_Zdepth2[j].Index = i + 1;
IndexCount++;
}
break;
}
}
}
}
sinBubbleSort(sinEffect_Zdepth2, IndexCount - 1);
for(i = 0; i < IndexCount; i++)
{
if(sinEffect_Zdepth2[i].Index)
{
if(cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Flag && cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Time > 0)
{
renderDevice.BeginScene();
if(cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_A || cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_R ||
cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_G || cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_B)
{
sinColor_A = smRender.Color_A;
sinColor_R = smRender.Color_R;
sinColor_G = smRender.Color_G;
sinColor_B = smRender.Color_B;
if(cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_A > 255)cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_A = 255;
smRender.Color_A -= cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_A;
smRender.Color_R = cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_R;
smRender.Color_G = cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_G;
smRender.Color_B = cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_B;
}
if(!cSinEffect2[sinEffect_Zdepth2[i].Index - 1].sinPatMesh->smMaterialGroup)
smRender.SetMaterialGroup(smMaterialGroup);
cSinEffect2[sinEffect_Zdepth2[i].Index - 1].sinPatMesh->Frame = cSinEffect2[sinEffect_Zdepth2[i].Index - 1].AniCount * 160;
cSinEffect2[sinEffect_Zdepth2[i].Index - 1].sinPatMesh->SetPosi(&cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Posi, &cSinEffect2[sinEffect_Zdepth2[i].Index - 1].RanderAngle);
cSinEffect2[sinEffect_Zdepth2[i].Index - 1].sinPatMesh->RenderD3D(&posi, &Angle);
if(cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_A || cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_R ||
cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_G || cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Color_B)
{
smRender.Color_A = sinColor_A;
smRender.Color_R = sinColor_R;
smRender.Color_G = sinColor_G;
smRender.Color_B = sinColor_B;
}
renderDevice.EndScene();
}
}
}
memset(sinEffect_Zdepth2, 0, sizeof(sinEFFECT_ZDEPTH)*SIN_MAX_EFFECT2);
IndexCount = 0;
for(i = 0; i < SIN_MAX_EFFECT2; i++)
{
if(cSinEffect2[i].Flag && cSinEffect2[i].Time > 0 && !cSinEffect2[i].BoneFlag)
{
smRender.SetCameraPosi(x, y, z, ax, ay, az);
for(int j = 0; j < SIN_MAX_EFFECT2; j++)
{
if(!sinEffect_Zdepth2[j].Index)
{
if(cSinEffect2[i].sinFace.MatNum)
{
sinEffect_Zdepth2[j].ZDepth = smRender.GetDepthZ(cSinEffect2[i].sinFace.x, cSinEffect2[i].sinFace.y, cSinEffect2[i].sinFace.z);
sinEffect_Zdepth2[j].Index = i + 1;
IndexCount++;
}
break;
}
}
}
}
sinBubbleSort(sinEffect_Zdepth2, IndexCount - 1);
for(i = 0; i < IndexCount; i++)
{
if(sinEffect_Zdepth2[i].Index)
{
if(cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Flag && cSinEffect2[sinEffect_Zdepth2[i].Index - 1].Time > 0)
{
if(cSinEffect2[sinEffect_Zdepth2[i].Index - 1].sinFace.MatNum)
{
sinDrawTexture2(&cSinEffect2[sinEffect_Zdepth2[i].Index - 1]);
}
}
}
}
memset(sinEffect_Zdepth2, 0, sizeof(sinEFFECT_ZDEPTH)*SIN_MAX_EFFECT2);
return TRUE;
}
int sinSearchEmptyIndex()
{
int i;
for(i = 0; i < SIN_MAX_EFFECT2; i++)
{
if(!cSinEffect2[i].Flag)
{
return i;
}
}
return -1;
}
int sinCreateObject(cSINEFFECT2 *pEffect)
{
smTPOINT tPoint[4];
smMaterial[pEffect->ObjMat].SelfIllum = 1;
tPoint[0].u = 0;
tPoint[0].v = 0;
tPoint[1].u = 256;
tPoint[1].v = 0;
tPoint[2].u = 0;
tPoint[2].v = 256;
tPoint[3].u = 256;
tPoint[3].v = 256;
pEffect->sinObj = new smOBJ3D(4, 2);
pEffect->sinObj->AddVertex(-pEffect->Size.x, -pEffect->Size.y, 0);
pEffect->sinObj->AddVertex(pEffect->Size.x, -pEffect->Size.y, 0);
pEffect->sinObj->AddVertex(-pEffect->Size.x, pEffect->Size.y, 0);
pEffect->sinObj->AddVertex(pEffect->Size.x, pEffect->Size.y, 0);
pEffect->sinObj->AddFace(0, 1, 2, &tPoint[0], &tPoint[1], &tPoint[2]);
pEffect->sinObj->AddFace(2, 1, 3, &tPoint[2], &tPoint[1], &tPoint[3]);
pEffect->sinObj->ZeroNormals();
pEffect->sinObj->SetFaceMaterial(0, pEffect->ObjMat);
pEffect->sinObj->SetFaceMaterial(1, pEffect->ObjMat);
smMaterial[pEffect->ObjMat].TwoSide = TRUE;
pEffect->sinPatMesh = new smPAT3D;
pEffect->sinPatMesh->AddObject(pEffect->sinObj);
return TRUE;
}
int sinMoveEffect2(cSINEFFECT2 *pEffect)
{
int TempSpeed = 0;
memcpy(&pEffect->RanderAngle, &pEffect->Angle, sizeof(POINT3D));
switch(pEffect->MoveKind)
{
case SIN_MOVE_ROTATE:
pEffect->RotateSpeedCnt += pEffect->RotateSpeed;
pEffect->RotatePosi.x = GetCos[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetSin[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.z = -GetSin[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetCos[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.x >>= 16;
pEffect->RotatePosi.z >>= 16;
pEffect->Posi.x += pEffect->RotatePosi.x;
pEffect->Posi.z += pEffect->RotatePosi.z;
pEffect->Angle.y = -((pEffect->RotateSpeedCnt) + ANGLE_90)&ANGCLIP;
break;
case SIN_MOVE_DOWN:
pEffect->RotateSpeedCnt++;
if((pEffect->RotateSpeedCnt % 10) == 0)
{
pEffect->Posi.y -= pEffect->MoveSpeed.y;
pEffect->sinFace.y = pEffect->Posi.y;
}
break;
case SIN_MOVE_BOMB:
TempSpeed++;
while(TempSpeed)
{
pEffect->Gravity -= 3;
pEffect->RotatePosi.x = GetCos[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetSin[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.z = -GetSin[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetCos[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.x >>= 16;
pEffect->RotatePosi.z >>= 16;
pEffect->Posi.x += pEffect->RotatePosi.x;
pEffect->Posi.z += pEffect->RotatePosi.z;
pEffect->Posi.y += pEffect->MoveSpeed.y + pEffect->Gravity;
pEffect->sinFace.x = pEffect->Posi.x;
pEffect->sinFace.y = pEffect->Posi.y;
pEffect->sinFace.z = pEffect->Posi.z;
TempSpeed++;
if(TempSpeed >= 3)TempSpeed = 0;
}
break;
case SIN_MOVE_TORNADO:
pEffect->RotatePosi.x = pEffect->RotateDistance.y*GetCos[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetSin[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.z = -pEffect->RotateDistance.y*GetSin[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetCos[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.x >>= 16;
pEffect->RotatePosi.z >>= 16;
pEffect->Posi.y = lpCurPlayer->pX + pEffect->RotatePosi.y;
pEffect->Posi.z = lpCurPlayer->pZ + pEffect->RotatePosi.z;
pEffect->sinFace.x = pEffect->Posi.x;
pEffect->sinFace.y = pEffect->Posi.y;
pEffect->sinFace.z = pEffect->Posi.z;
break;
case SIN_MOVE_SPARK:
TempSpeed++;
while(TempSpeed)
{
pEffect->RotatePosi.x = GetCos[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetSin[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.z = -GetSin[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetCos[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.x >>= 16;
pEffect->RotatePosi.z >>= 16;
pEffect->Posi.x += pEffect->RotatePosi.x;
pEffect->Posi.z += pEffect->RotatePosi.z;
pEffect->Posi.y += pEffect->MoveSpeed.y;
pEffect->sinFace.x = pEffect->Posi.x;
pEffect->sinFace.y = pEffect->Posi.y;
pEffect->sinFace.z = pEffect->Posi.z;
TempSpeed++;
if(TempSpeed >= 5)TempSpeed = 0;
}
break;
case SIN_MOVE_LINE:
sinGetMoveLocation2(pEffect);
GetMoveLocation(0, 0, 256, pEffect->Angle.x, pEffect->Angle.y, 0);
pEffect->Posi.x += GeoResult_X;
pEffect->Posi.y += GeoResult_Y;
pEffect->Posi.z += GeoResult_Z;
pEffect->sinFace.x = pEffect->Posi.x;
pEffect->sinFace.y = pEffect->Posi.y;
pEffect->sinFace.z = pEffect->Posi.z;
pEffect->RanderAngle.y = (-pEffect->Angle.y + ANGLE_180)&ANGCLIP;
break;
case SIN_MOVE_SONGPYEUN:
sinGetMoveLocation2(pEffect);
GetMoveLocation(0, 0, 256, pEffect->Angle.x, pEffect->Angle.y, 0);
pEffect->Posi.x += GeoResult_X;
pEffect->Posi.y += GeoResult_Y;
pEffect->Posi.z += GeoResult_Z;
pEffect->sinFace.x = pEffect->Posi.x;
pEffect->sinFace.y = pEffect->Posi.y;
pEffect->sinFace.z = pEffect->Posi.z;
pEffect->RanderAngle.y = (-pEffect->Angle.y + ANGLE_180)&ANGCLIP;
break;
}
return TRUE;
}
int sinActiveEffect2()
{
sinProcess7();
int i = 0;
for(i = 0; i < SIN_MAX_EFFECT2; i++)
{
if(cSinEffect2[i].Flag)
{
cSinEffect2[i].Time++;
if(cSinEffect2[i].Time < 0)continue;
sinMoveEffect2(&cSinEffect2[i]);
sinCheckCharState(&cSinEffect2[i]);
sinSkillEffectMove(&cSinEffect2[i]);
sinPublicEffectMove(&cSinEffect2[i]);
if(cSinEffect2[i].AlphaFadeInFlag)
{
if(cSinEffect2[i].sinFace.MatNum)
{
if(cSinEffect2[i].sinFace.Transparency >= 255)
{
cSinEffect2[i].sinFace.Transparency = 255;
cSinEffect2[i].AlphaFadeInFlag = 0;
}
else
{
cSinEffect2[i].sinFace.Transparency += 10;
}
}
else
{
if(cSinEffect2[i].Color_A <= 0)
{
cSinEffect2[i].Color_A = 0;
cSinEffect2[i].AlphaFadeInFlag = 0;
}
else
{
cSinEffect2[i].Color_A -= 10;
}
}
}
if(cSinEffect2[i].Time >= cSinEffect2[i].AlphaTime && cSinEffect2[i].AlphaCount)
{
if((cSinEffect2[i].Time % cSinEffect2[i].AlphaCount) == 0)
{
if(cSinEffect2[i].AlphaReverseNum == 1)
{
if(cSinEffect2[i].sinFace.MatNum)
{
cSinEffect2[i].sinFace.Transparency -= cSinEffect2[i].AlphaAmount;
if(cSinEffect2[i].sinFace.Transparency <= cSinEffect2[i].AlphaReverse_A)
{
cSinEffect2[i].AlphaReverseNum = 2;
}
}
else
{
cSinEffect2[i].Color_A += cSinEffect2[i].AlphaAmount;
if((255 - cSinEffect2[i].Color_A) <= cSinEffect2[i].AlphaReverse_A)
{
cSinEffect2[i].AlphaReverseNum = 2;
}
}
}
else if(cSinEffect2[i].AlphaReverseNum == 2)
{
if(cSinEffect2[i].sinFace.MatNum)
{
cSinEffect2[i].sinFace.Transparency += cSinEffect2[i].AlphaAmount;
if(cSinEffect2[i].sinFace.Transparency >= 255)
{
cSinEffect2[i].AlphaReverseNum = 1;
}
}
else
{
cSinEffect2[i].Color_A -= cSinEffect2[i].AlphaAmount;
if(cSinEffect2[i].Color_A <= cSinEffect2[i].AlphaReverse_A)
{
cSinEffect2[i].AlphaReverseNum = 1;
}
}
}
else
{
if(cSinEffect2[i].sinFace.MatNum)
cSinEffect2[i].sinFace.Transparency -= cSinEffect2[i].AlphaAmount;
else
{
cSinEffect2[i].Color_A += cSinEffect2[i].AlphaAmount;
}
}
}
}
if(cSinEffect2[i].Max_Time != SIN_EFFECT_NO_TIME &&cSinEffect2[i].Time > cSinEffect2[i].Max_Time)
{
memset(&cSinEffect2[i], 0, sizeof(cSINEFFECT2));
}
if(cSinEffect2[i].AniTime)
{
if((cSinEffect2[i].Time % cSinEffect2[i].AniTime) == 0)
{
if(!cSinEffect2[i].AniReverseNum)
{
cSinEffect2[i].AniCount++;
if(cSinEffect2[i].AniCount >= cSinEffect2[i].AniMax)cSinEffect2[i].AniCount = 0;
if(cSinEffect2[i].sinFace.MatNum)
{
cSinEffect2[i].sinFace.MatNum = cSinEffect2[i].lpMatAni[cSinEffect2[i].AniCount];
}
if(cSinEffect2[i].ObjMat)
{
cSinEffect2[i].ObjMat = cSinEffect2[i].lpMatAni[cSinEffect2[i].AniCount];
sinCreateObject(&cSinEffect2[i]);
}
}
else
{
switch(cSinEffect2[i].AniReverseNum)
{
case 1:
cSinEffect2[i].AniCount++;
if(cSinEffect2[i].AniCount >= cSinEffect2[i].AniMax - 1)
{
cSinEffect2[i].AniReverseNum = 2;
}
if(cSinEffect2[i].sinFace.MatNum)
{
cSinEffect2[i].sinFace.MatNum = cSinEffect2[i].lpMatAni[cSinEffect2[i].AniCount];
}
if(cSinEffect2[i].ObjMat)
{
cSinEffect2[i].ObjMat = cSinEffect2[i].lpMatAni[cSinEffect2[i].AniCount];
sinCreateObject(&cSinEffect2[i]);
}
break;
case 2:
cSinEffect2[i].AniCount--;
if(cSinEffect2[i].AniCount <= 0)
{
cSinEffect2[i].AniReverseNum = 1;
}
if(cSinEffect2[i].sinFace.MatNum)
{
cSinEffect2[i].sinFace.MatNum = cSinEffect2[i].lpMatAni[cSinEffect2[i].AniCount];
}
if(cSinEffect2[i].ObjMat)
{
cSinEffect2[i].ObjMat = cSinEffect2[i].lpMatAni[cSinEffect2[i].AniCount];
sinCreateObject(&cSinEffect2[i]);
}
break;
}
}
}
}
if(cSinEffect2[i].SizeIncreTime)
{
if(cSinEffect2[i].Time >= cSinEffect2[i].SizeIncreTime)
{
cSinEffect2[i].sinFace.width += cSinEffect2[i].SizeAmount;
cSinEffect2[i].sinFace.height += cSinEffect2[i].SizeAmount;
}
}
if(cSinEffect2[i].SizeDecreTime)
{
if(cSinEffect2[i].Time > cSinEffect2[i].SizeDecreTime)
{
cSinEffect2[i].sinFace.width -= cSinEffect2[i].SizeAmount;
cSinEffect2[i].sinFace.height -= cSinEffect2[i].SizeAmount;
}
}
if(cSinEffect2[i].ReSizingNum == 1)
{
cSinEffect2[i].ActionTime[9]++;
cSinEffect2[i].sinFace.width -= cSinEffect2[i].ReSizingAmount;
cSinEffect2[i].sinFace.height -= cSinEffect2[i].ReSizingAmount;
if(cSinEffect2[i].ActionTime[9] >= 30)
{
cSinEffect2[i].ActionTime[9] = 0;
cSinEffect2[i].ReSizingNum = 2;
}
}
else
{
cSinEffect2[i].ActionTime[9]++;
cSinEffect2[i].sinFace.width += cSinEffect2[i].ReSizingAmount;
cSinEffect2[i].sinFace.height += cSinEffect2[i].ReSizingAmount;
if(cSinEffect2[i].ActionTime[9] >= 30)
{
cSinEffect2[i].ActionTime[9] = 0;
cSinEffect2[i].ReSizingNum = 1;
}
}
}
}
return TRUE;
}
int sinCheckCharState(cSINEFFECT2 *pEffect)
{
if(pEffect->pChar)
{
switch(pEffect->CODE)
{
case SIN_EFFECT_ICEVIGO:
pEffect->Posi.x = pEffect->pChar->pX;
pEffect->Posi.y = pEffect->pChar->pY + 13000;
pEffect->Posi.z = pEffect->pChar->pZ;
pEffect->sinFace.x = pEffect->Posi.x;
pEffect->sinFace.y = pEffect->Posi.y;
pEffect->sinFace.z = pEffect->Posi.z;
break;
case SIN_EFFECT_STUN:
pEffect->Posi.x += (pEffect->pChar->pX + pEffect->RotatePosi.x) - pEffect->Posi.x + pEffect->CharDistance.x;
pEffect->Posi.z += (pEffect->pChar->pZ + pEffect->RotatePosi.z) - pEffect->Posi.z + pEffect->CharDistance.z;
pEffect->Posi.y += (pEffect->pChar->pY + 13000) - pEffect->Posi.y;
pEffect->CharDistance.x = pEffect->Posi.x - pEffect->pChar->pX;
pEffect->CharDistance.z = pEffect->Posi.z - pEffect->pChar->pZ;
break;
case SIN_EFFECT_BOSSAURA:
pEffect->Posi.x = pEffect->pChar->pX;
pEffect->Posi.y = pEffect->pChar->pY + 1500;
pEffect->Posi.z = pEffect->pChar->pZ;
pEffect->RotateSpeedCnt += 20;
pEffect->sinPatMesh->Angle.y = pEffect->RotateSpeedCnt&ANGCLIP;
pEffect->Angle.y = pEffect->RotateSpeedCnt&ANGCLIP;
pEffect->RotateDistance.z = 256 * 16;
pEffect->RotatePosi.x = GetCos[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetSin[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.z = -GetSin[pEffect->RotateSpeedCnt&ANGCLIP] + pEffect->RotateDistance.z*GetCos[pEffect->RotateSpeedCnt&ANGCLIP];
pEffect->RotatePosi.y = pEffect->RotateSpeedCnt;
pEffect->RotatePosi.x >>= 16;
pEffect->RotatePosi.z >>= 16;
pEffect->RotatePosi.x += pEffect->Posi.x;
pEffect->RotatePosi.z += pEffect->Posi.z;
pEffect->RotatePosi.y += pEffect->Posi.y;
break;
}
}
return TRUE;
}
int EffectTestDrawText2()
{
HDC hdc = NULL;
char strBuff[128];
memset(strBuff, 0, sizeof(strBuff));
//renderDevice.lpDDSBack->GetDC(&hdc);
SelectObject(hdc, sinFont);
SetBkMode(hdc, TRANSPARENT);
SetTextColor(hdc, RGB(255, 255, 255));
//renderDevice.lpDDSBack->ReleaseDC(hdc);
return TRUE;
}
int sinReleaseEffect()
{
memset(cSinEffect2, 0, sizeof(cSINEFFECT2)*SIN_MAX_EFFECT2);
return TRUE;
}
int sinDrawTexture2(cSINEFFECT2 *pSinEffect2)
{
if(!pSinEffect2->sinFace.MatNum)return FALSE;
renderDevice.SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE);
renderDevice.SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_LESSEQUAL);
renderDevice.SetRenderState(D3DRENDERSTATE_TEXTUREHANDLE, 0);
renderDevice.SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE);
renderDevice.SetRenderState(D3DRENDERSTATE_TEXTUREADDRESS, D3DTADDRESS_WRAP);
renderDevice.SetRenderState(D3DRENDERSTATE_TEXTUREPERSPECTIVE, TRUE);
renderDevice.SetRenderState(D3DRENDERSTATE_TEXTUREMAG, D3DFILTER_LINEAR);
renderDevice.SetRenderState(D3DRENDERSTATE_TEXTUREMIN, D3DFILTER_LINEAR);
renderDevice.SetRenderState(D3DRENDERSTATE_SPECULARENABLE, TRUE);
renderDevice.SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, FALSE);
renderDevice.SetRenderState(D3DRENDERSTATE_TEXTUREMAPBLEND, D3DTBLEND_MODULATE);
renderDevice.SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE);
renderDevice.SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA);
renderDevice.SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA);
renderDevice.SetTextureStageState(0, D3DTSS_MINFILTER, D3DTFN_LINEAR);
renderDevice.SetTextureStageState(0, D3DTSS_MAGFILTER, D3DTFN_LINEAR);
smRender.Init();
smMaterialGroup->smMaterial[pSinEffect2->sinFace.MatNum].TwoSide = FALSE;
smRender.SetMaterialGroup(smMaterialGroup);
smMaterialGroup->SetMaterialAnimFrame(&smMaterial[pSinEffect2->sinFace.MatNum], 2);
smRender.SetCameraPosi(sinPosi2.x, sinPosi2.y, sinPosi2.z,
sinAngle2.x, sinAngle2.y, sinAngle2.z);
if(pSinEffect2->FaceAngleY)
{
if(smRender.AddFace2D(&pSinEffect2->sinFace, pSinEffect2->FaceAngleY))
{
smRender.SetClipStates(SMCLIP_LEFT | SMCLIP_RIGHT | SMCLIP_TOP | SMCLIP_BOTTOM);
smRender.ClipRendFace();
smRender.GeomVertex2D(FALSE);
smRender.RenderD3D();
}
}
else
{
if(smRender.AddFace2D(&pSinEffect2->sinFace))
{
smRender.SetClipStates(SMCLIP_LEFT | SMCLIP_RIGHT | SMCLIP_TOP | SMCLIP_BOTTOM);
smRender.ClipRendFace();
smRender.GeomVertex2D(FALSE);
smRender.RenderD3D();
}
}
return TRUE;
}
static char sinDecode[512];
static char sinLine[512];
int CheeseTestEffectImage()
{
char *szFilePath = "Image\\SinImage\\";
char szTempBuffFile[128];
char szTempBuff[128];
int FileFormatFlag = 0;
POINT ImageSize;
int sinObjCount = 0;
FILE *fp;
char strBuff[64];
char *p;
int Count = 0;
int NextFlag = 0;
wsprintf(szTempBuffFile, "%sCHEESE.INI", szFilePath);
fp = fopen(szTempBuffFile, "rb");
if(fp == NULL) return FALSE;
Index = sinSearchEmptyIndex();
smASE_SetPhysique(0);
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].Max_Time = SIN_EFFECT_NO_TIME;
cSinEffect2[Index].Posi.x = lpCurPlayer->pX;
cSinEffect2[Index].Posi.y = lpCurPlayer->pY + 5000;
cSinEffect2[Index].Posi.z = lpCurPlayer->pZ;
cSinEffect2[Index].pChar = lpCurPlayer;
while(!feof(fp))
{
NextFlag = 0;
if(fgets(sinLine, 255, fp) == NULL)
break;
p = GetWord(sinDecode, sinLine);
if(!NextFlag && lstrcmp(sinDecode, "*파일형식") == 0)
{
if(sinObjCount)
{
Index = sinSearchEmptyIndex();
smASE_SetPhysique(0);
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].Max_Time = SIN_EFFECT_NO_TIME;
cSinEffect2[Index].Posi.x = lpCurPlayer->pX;
cSinEffect2[Index].Posi.y = lpCurPlayer->pY + 5000;
cSinEffect2[Index].Posi.z = lpCurPlayer->pZ;
cSinEffect2[Index].pChar = lpCurPlayer;
}
p = GetWord(strBuff, p);
if(lstrcmp(strBuff, "TGA") == 0)
FileFormatFlag = 1;
if(lstrcmp(strBuff, "ASE") == 0)
FileFormatFlag = 2;
NextFlag = TRUE;
sinObjCount++;
}
if(!NextFlag && lstrcmp(sinDecode, "*이미지크기") == 0)
{
p = GetWord(strBuff, p);
ImageSize.x = atoi(strBuff);
p = GetWord(strBuff, p);
ImageSize.y = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*이미지파일이름") == 0)
{
p = GetWord(strBuff, p);
wsprintf(szTempBuff, "image\\Sinimage\\%s", strBuff);
if(FileFormatFlag == 1)
{
cSinEffect2[Index].sinFace.MatNum = CreateTextureMaterial(szTempBuff, 0, 0, 0, 0, SMMAT_BLEND_LAMP);
cSinEffect2[Index].sinFace.x = cSinEffect2[Index].Posi.x;
cSinEffect2[Index].sinFace.y = cSinEffect2[Index].Posi.y;
cSinEffect2[Index].sinFace.z = cSinEffect2[Index].Posi.z;
cSinEffect2[Index].sinFace.width = ImageSize.x;
cSinEffect2[Index].sinFace.height = ImageSize.y;
cSinEffect2[Index].sinFace.r = 255;
cSinEffect2[Index].sinFace.g = 255;
cSinEffect2[Index].sinFace.b = 255;
cSinEffect2[Index].sinFace.Transparency = 255;
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
}
if(FileFormatFlag == 2)
{
cSinEffect2[Index].sinPatMesh = smASE_Read(szTempBuff);
}
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*애니메이션시작") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].AniCount = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*애니메이션끝") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].AniMax = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*애니메이션타임") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].AniTime = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*이펙트시간") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].Max_Time = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*투명시작시간") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].AlphaTime = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*투명도") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].AlphaAmount = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*투명딜레이시간") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].AlphaCount = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*투명딜레이시간") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].AlphaCount = atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*좌표") == 0)
{
p = GetWord(strBuff, p);
cSinEffect2[Index].Posi.x += atoi(strBuff);
p = GetWord(strBuff, p);
cSinEffect2[Index].Posi.y += atoi(strBuff);
p = GetWord(strBuff, p);
cSinEffect2[Index].Posi.z += atoi(strBuff);
NextFlag = TRUE;
}
if(!NextFlag && lstrcmp(sinDecode, "*끝") == 0)
{
Count++;
}
}
if(fp) fclose(fp);
ReadTextures();
return TRUE;
}
#define SHHH_ANGF_SFLOAT (5+FLOATNS)
int sinGetMoveLocation2(cSINEFFECT2 *pEffect)
{
int i, j, k;
int dx, dy, dz;
int sinX, sinY, sinZ;
int cosX, cosY, cosZ;
pEffect->Angle.x &= ANGCLIP;
pEffect->Angle.y &= ANGCLIP;
pEffect->Angle.z &= ANGCLIP;
sinX = sdGetSin[pEffect->Angle.x] >> 2;
sinY = sdGetSin[pEffect->Angle.y] >> 2;
sinZ = sdGetSin[pEffect->Angle.z] >> 2;
cosX = sdGetCos[pEffect->Angle.x] >> 2;
cosY = sdGetCos[pEffect->Angle.y] >> 2;
cosZ = sdGetCos[pEffect->Angle.z] >> 2;
i = (pEffect->MoveSpeed.x * cosZ - pEffect->MoveSpeed.y * sinZ) >> SHHH_ANGF_SFLOAT;
j = (pEffect->MoveSpeed.x * sinZ + pEffect->MoveSpeed.y * cosZ) >> SHHH_ANGF_SFLOAT;
k = pEffect->MoveSpeed.z;
dy = (j * cosX - k * sinX) >> SHHH_ANGF_SFLOAT;
dz = (j * sinX + k * cosX) >> SHHH_ANGF_SFLOAT;
k = dz;
dx = (k * sinY + i * cosY) >> SHHH_ANGF_SFLOAT;
dz = (k * cosY - i * sinY) >> SHHH_ANGF_SFLOAT;
pEffect->Posi.x += dx;
pEffect->Posi.y += dy;
pEffect->Posi.z += dz;
return TRUE;
}
int sinSetRotatePosiReSet(cSINEFFECT2 *pEffect)
{
pEffect->RotatePosi.x >>= 16;
pEffect->RotatePosi.z >>= 16;
pEffect->Posi.x += pEffect->RotatePosi.x;
pEffect->Posi.z += pEffect->RotatePosi.z;
pEffect->Posi.y += pEffect->RotatePosi.y;
pEffect->sinFace.x = pEffect->Posi.x;
pEffect->sinFace.y = pEffect->Posi.y;
pEffect->sinFace.z = pEffect->Posi.z;
return TRUE;
}
int sinEffectDefaultSet(int Index, int Kind, smCHAR *pChar, POINT3D *pPosi, int Y)
{
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].Time = 1;
cSinEffect2[Index].AddHeight = Y;
if(pPosi)
{
cSinEffect2[Index].sinFace.x = pPosi->x;
cSinEffect2[Index].sinFace.y = pPosi->y + Y;
cSinEffect2[Index].sinFace.z = pPosi->z;
cSinEffect2[Index].Posi.x = pPosi->x;
cSinEffect2[Index].Posi.y = pPosi->y + Y;
cSinEffect2[Index].Posi.z = pPosi->z;
}
if(pChar)
{
cSinEffect2[Index].Posi.x = pChar->pX;
cSinEffect2[Index].Posi.y = pChar->pY + Y;
cSinEffect2[Index].Posi.z = pChar->pZ;
cSinEffect2[Index].pChar = pChar;
cSinEffect2[Index].sinFace.x = pChar->pX;
cSinEffect2[Index].sinFace.y = pChar->pY + Y;
cSinEffect2[Index].sinFace.z = pChar->pZ;
}
switch(Kind)
{
case SIN_EFFECT_FACE:
cSinEffect2[Index].sinFace.r = 255;
cSinEffect2[Index].sinFace.g = 255;
cSinEffect2[Index].sinFace.b = 255;
cSinEffect2[Index].sinFace.Transparency = 255;
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
break;
}
return TRUE;
}
int sinReSetObjPosi(cSINEFFECT2 *pEffect)
{
if(pEffect->sinFace.MatNum)
{
pEffect->SortPosi.x = pEffect->Posi.x + (pEffect->sinFace.width / 2);
pEffect->SortPosi.y = pEffect->Posi.y + (pEffect->sinFace.height / 2);
}
else
{
pEffect->SortPosi.x = pEffect->Posi.x + (pEffect->Size.x / 2);
pEffect->SortPosi.y = pEffect->Posi.x + (pEffect->Size.y / 2);
}
return TRUE;
}
int ParticleTestKey()
{
POINT3D TestPosi = { lpCurPlayer->pX,lpCurPlayer->pY + 10000,lpCurPlayer->pZ };
if(VRKeyBuff['5'])
{
}
return TRUE;
}
int sinSetLightEffect(int R, int G, int B, int A, POINT3D Posi)
{
int Size;
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].sinFace.r = R;
cSinEffect2[Index].sinFace.g = G;
cSinEffect2[Index].sinFace.b = B;
cSinEffect2[Index].sinFace.Transparency = A;
Size = 5000;
cSinEffect2[Index].sinFace.height = Size;
cSinEffect2[Index].sinFace.width = Size;
cSinEffect2[Index].sinFace.MatNum = MatLightEffect;
cSinEffect2[Index].sinFace.x = Posi.x;
cSinEffect2[Index].sinFace.y = Posi.y;
cSinEffect2[Index].sinFace.z = Posi.z;
cSinEffect2[Index].Posi.x = cSinEffect2[Index].sinFace.x;
cSinEffect2[Index].Posi.y = cSinEffect2[Index].sinFace.y;
cSinEffect2[Index].Posi.z = cSinEffect2[Index].sinFace.z;
cSinEffect2[Index].Max_Time = 30;
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
cSinEffect2[Index].MoveKind = SIN_EFFECT_LIGHT;
cSinEffect2[Index].SizeIncreTime = 1;
cSinEffect2[Index].SizeAmount = 3000;
cSinEffect2[Index].SizeDecreTime = 5;
cSinEffect2[Index].AlphaTime = 7;
cSinEffect2[Index].AlphaAmount = 30;
cSinEffect2[Index].AlphaCount = 1;
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].sinFace.r = R;
cSinEffect2[Index].sinFace.g = G;
cSinEffect2[Index].sinFace.b = B;
cSinEffect2[Index].sinFace.Transparency = A;
Size = 5000;
cSinEffect2[Index].sinFace.height = Size;
cSinEffect2[Index].sinFace.width = Size;
cSinEffect2[Index].sinFace.MatNum = MatLightEffect;
cSinEffect2[Index].sinFace.x = Posi.x;
cSinEffect2[Index].sinFace.y = Posi.y;
cSinEffect2[Index].sinFace.z = Posi.z;
cSinEffect2[Index].Posi.x = cSinEffect2[Index].sinFace.x;
cSinEffect2[Index].Posi.y = cSinEffect2[Index].sinFace.y;
cSinEffect2[Index].Posi.z = cSinEffect2[Index].sinFace.z;
cSinEffect2[Index].Max_Time = 35;
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
cSinEffect2[Index].MoveKind = SIN_EFFECT_LIGHT;
cSinEffect2[Index].SizeIncreTime = 1;
cSinEffect2[Index].SizeAmount = 2000;
cSinEffect2[Index].SizeDecreTime = 8;
cSinEffect2[Index].AlphaTime = 8;
cSinEffect2[Index].AlphaAmount = 15;
cSinEffect2[Index].AlphaCount = 1;
return TRUE;
}
int sinParticleLine(int Mat, POINT3D Posi, int R, int G, int B)
{
int i = 0;
int Size = 0;
for(i = 0; i < 30; i++)
{
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].ObjMat = MatParticleLine;
cSinEffect2[Index].Size.x = 64;
cSinEffect2[Index].Size.y = 8 * 256;
cSinEffect2[Index].Posi.x = Posi.x;
cSinEffect2[Index].Posi.y = Posi.y;
cSinEffect2[Index].Posi.z = Posi.z;
cSinEffect2[Index].Max_Time = rand() % 50;
cSinEffect2[Index].Angle.x = ((rand() % (4096 / 2)) - ANGLE_90)&ANGCLIP;
cSinEffect2[Index].Angle.z = 0;
cSinEffect2[Index].Angle.y = rand() % 4096;
cSinEffect2[Index].MoveSpeed.z = 256;
sinCreateObject(&cSinEffect2[Index]);
cSinEffect2[Index].MoveKind = SIN_MOVE_LINE;
cSinEffect2[Index].Color_R = R;
cSinEffect2[Index].Color_G = G;
cSinEffect2[Index].Color_B = B;
}
return TRUE;
}
int sinHitParticle(int Mat, POINT3D Posi)
{
int i = 0;
int Size = 0;
for(i = 0; i < 30; i++)
{
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].sinFace.r = 255;
cSinEffect2[Index].sinFace.g = 255;
cSinEffect2[Index].sinFace.b = 255;
cSinEffect2[Index].sinFace.Transparency = 255;
Size = rand() % 500 + 500;
cSinEffect2[Index].sinFace.height = Size;
cSinEffect2[Index].sinFace.width = Size;
cSinEffect2[Index].sinFace.MatNum = MatTestParticle;
cSinEffect2[Index].sinFace.x = Posi.x;
cSinEffect2[Index].sinFace.y = Posi.y;
cSinEffect2[Index].sinFace.z = Posi.z;
cSinEffect2[Index].Posi.x = cSinEffect2[Index].sinFace.x;
cSinEffect2[Index].Posi.y = cSinEffect2[Index].sinFace.y;
cSinEffect2[Index].Posi.z = cSinEffect2[Index].sinFace.z;
cSinEffect2[Index].Max_Time = rand() % 50 + 50;
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
cSinEffect2[Index].Gravity = rand() % 100;
cSinEffect2[Index].RotateSpeedCnt = rand() % 4096;
cSinEffect2[Index].RotateDistance.z = cSinEffect2[Index].Gravity + 10;
cSinEffect2[Index].MoveSpeed.y = rand() % 50 + 50;
cSinEffect2[Index].MoveKind = SIN_MOVE_BOMB;
cSinEffect2[Index].AlphaTime = cSinEffect2[Index].Max_Time - 30;
cSinEffect2[Index].AlphaCount = 1;
cSinEffect2[Index].AlphaAmount = 5;
}
return TRUE;
}
int sinTornadoParticle(int Mat, POINT3D Posi)
{
int i = 0;
int Size = 0;
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].sinFace.r = 255;
cSinEffect2[Index].sinFace.g = 255;
cSinEffect2[Index].sinFace.b = 255;
cSinEffect2[Index].sinFace.Transparency = 255;
Size = rand() % 500 + 500;
cSinEffect2[Index].sinFace.height = Size;
cSinEffect2[Index].sinFace.width = Size;
cSinEffect2[Index].sinFace.MatNum = MatTestParticle;
cSinEffect2[Index].sinFace.x = Posi.x;
cSinEffect2[Index].sinFace.y = Posi.y;
cSinEffect2[Index].sinFace.z = Posi.z;
cSinEffect2[Index].Posi.x = cSinEffect2[Index].sinFace.x;
cSinEffect2[Index].Posi.y = cSinEffect2[Index].sinFace.y;
cSinEffect2[Index].Posi.z = cSinEffect2[Index].sinFace.z;
cSinEffect2[Index].Max_Time = rand() % 50 + 50 + 1000;
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
cSinEffect2[Index].Gravity = rand() % 100;
cSinEffect2[Index].RotateDistance.z = cSinEffect2[Index].Gravity + 10;
cSinEffect2[Index].RotateDistance.y = cSinEffect2[Index].Gravity + 10;
cSinEffect2[Index].RotateSpeedCnt = rand() % 4096;
cSinEffect2[Index].MoveKind = SIN_MOVE_TORNADO;
cSinEffect2[Index].AlphaTime = cSinEffect2[Index].Max_Time - 30;
cSinEffect2[Index].AlphaCount = 1;
cSinEffect2[Index].AlphaAmount = 5;
return TRUE;
}
int sinSparkParticle(int Mat, POINT3D Posi)
{
int i = 0;
int Size = 0;
Index = sinSearchEmptyIndex();
cSinEffect2[Index].Flag = 1;
cSinEffect2[Index].sinFace.r = 255;
cSinEffect2[Index].sinFace.g = 255;
cSinEffect2[Index].sinFace.b = 255;
cSinEffect2[Index].sinFace.Transparency = 255;
Size = rand() % 250 + 150;
cSinEffect2[Index].sinFace.height = Size;
cSinEffect2[Index].sinFace.width = Size;
cSinEffect2[Index].sinFace.MatNum = MatTestParticle;
cSinEffect2[Index].sinFace.x = Posi.x;
cSinEffect2[Index].sinFace.y = Posi.y;
cSinEffect2[Index].sinFace.z = Posi.z;
cSinEffect2[Index].Posi.x = cSinEffect2[Index].sinFace.x;
cSinEffect2[Index].Posi.y = cSinEffect2[Index].sinFace.y;
cSinEffect2[Index].Posi.z = cSinEffect2[Index].sinFace.z;
cSinEffect2[Index].Max_Time = rand() % 50 + 50;
cSinEffect2[Index].sinFace.TexRect = sinTexRect;
cSinEffect2[Index].RotateDistance.z = cSinEffect2[Index].Gravity + 10;
cSinEffect2[Index].RotateSpeedCnt = rand() % 4096;
cSinEffect2[Index].MoveKind = SIN_MOVE_SPARK;
cSinEffect2[Index].MoveSpeed.y = 5 - rand() % 10;
cSinEffect2[Index].AlphaTime = cSinEffect2[Index].Max_Time - 30;
cSinEffect2[Index].AlphaCount = 1;
cSinEffect2[Index].AlphaAmount = 5;
return TRUE;
}
int sinSongPyeunEffect(POINT3D Posi)
{
int i = 0;
int Size = 0;
SetDynLight(Posi.x, Posi.y + 5000, Posi.z, 100, 100, 100, 255, 100, 1);
for(i = 0; i < 30; i++)
{
Index = sinSearchEmptyIndex();
sinEffectDefaultSet(Index, SIN_EFFECT_FACE, 0, &Posi, 5000);
cSinEffect2[Index].sinFace.MatNum = MatSongPyeun;
cSinEffect2[Index].sinFace.width = 1000;
cSinEffect2[Index].sinFace.height = 1000;
cSinEffect2[Index].Max_Time = rand() % 20 + 10;
cSinEffect2[Index].Angle.x = ((rand() % (4096 / 2)) - ANGLE_90)&ANGCLIP;
cSinEffect2[Index].Angle.z = 0;
cSinEffect2[Index].Angle.y = rand() % 4096;
cSinEffect2[Index].MoveSpeed.z = 64;
cSinEffect2[Index].MoveKind = SIN_MOVE_SONGPYEUN;
cSinEffect2[Index].AlphaTime = cSinEffect2[Index].Max_Time - 10;
cSinEffect2[Index].AlphaCount = 1;
cSinEffect2[Index].AlphaAmount = 15;
cSinEffect2[Index].MoveSpeed.y = rand() % 4 + 1;
}
return TRUE;
}
| [
"oarthurdev@gmail.com"
] | oarthurdev@gmail.com |
40c87bfc0aaa9b411fe7af3bec12ff276d366a6c | d09945668f19bb4bc17087c0cb8ccbab2b2dd688 | /srm/581-600/588/GameInDarknessDiv2.cpp | 3c5bf21a76b739b7b7ea09e58371cfc62c0278d3 | [] | no_license | kmjp/procon | 27270f605f3ae5d80fbdb28708318a6557273a57 | 8083028ece4be1460150aa3f0e69bdb57e510b53 | refs/heads/master | 2023-09-04T11:01:09.452170 | 2023-09-03T15:25:21 | 2023-09-03T15:25:21 | 30,825,508 | 23 | 2 | null | 2023-08-18T14:02:07 | 2015-02-15T11:25:23 | C++ | UTF-8 | C++ | false | false | 6,246 | cpp | #include <cstdlib>
#include <cstring>
#include <memory>
#include <cstdio>
#include <fstream>
#include <iostream>
#include <cmath>
#include <string>
#include <sstream>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
using namespace std;
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef signed long long ll;
typedef unsigned long long ull;
#undef _P
#define _P(...) printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define FOR2(x,from,to) for(x=from;x<to;x++)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ZERO(a) memset(a,0,sizeof(a))
void _fill_int(int* p,int val,int rep) {int i; FOR(i,rep) p[i]=val;}
#define FILL_INT(a,val) _fill_int((int*)a,val,sizeof(a)/4)
#define ZERO2(a,b) memset(a,0,b)
#define MINUS(a) _fill_int((int*)a,-1,sizeof(a)/4)
#define EPS (1e-11)
template <class T> T sqr(T val){ return val*val;}
//-------------------------------------------------------
class GameInDarknessDiv2 {
public:
string check (vector <string> field, vector <string> moves) {
bool okok[2][51][51];
int ax,ay;
int H=field.size();
int W=field[0].size();
ZERO(okok);
int y,x,i,d;
FOR(y,H) FOR(x,W) {
if(field[y][x]=='A') ay=y,ax=x,field[y][x]='.';
if(field[y][x]=='B') okok[0][y][x]=true,field[y][x]='.';
}
string M;
FOR(x,moves.size()) M+=moves[x];
FOR(i,M.size()) {
int cur=i%2,tar=(i%2)^1;
ZERO(okok[tar]);
if(M[i]=='U') ay--;
if(M[i]=='D') ay++;
if(M[i]=='L') ax--;
if(M[i]=='R') ax++;
okok[cur][ay][ax]=false;
FOR(y,H) FOR(x,W) {
if(okok[cur][y][x]==false) continue;
FOR(d,4) {
int dx[4]={1,-1,0,0}, dy[4]={0,0,1,-1};
int cx=x+dx[d],cy=y+dy[d];
if(cx<0 || cy<0 || cx>=W || cy>=H) continue;
if((cx!=ax || cy!=ay)&&field[cy][cx]=='.') okok[tar][cy][cx]=true;
}
}
}
FOR(y,H) FOR(x,W) if(okok[M.size()%2][y][x]) return "Bob wins";
return "Alice wins";
}
// BEGIN CUT HERE
public:
void run_test(int Case) { if ((Case == -1) || (Case == 0)) test_case_0(); if ((Case == -1) || (Case == 1)) test_case_1(); if ((Case == -1) || (Case == 2)) test_case_2(); if ((Case == -1) || (Case == 3)) test_case_3(); if ((Case == -1) || (Case == 4)) test_case_4(); if ((Case == -1) || (Case == 5)) test_case_5(); }
private:
template <typename T> string print_array(const vector<T> &V) { ostringstream os; os << "{ "; for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\","; os << " }"; return os.str(); }
void verify_case(int Case, const string &Expected, const string &Received) { cerr << "Test Case #" << Case << "..."; if (Expected == Received) cerr << "PASSED" << endl; else { cerr << "FAILED" << endl; cerr << "\tExpected: \"" << Expected << '\"' << endl; cerr << "\tReceived: \"" << Received << '\"' << endl; } }
void test_case_0() { string Arr0[] = {"A.B..",
"##.##",
"##.##"}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); string Arr1[] = {"RRDUR"}; vector <string> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); string Arg2 = "Alice wins"; verify_case(0, Arg2, check(Arg0, Arg1)); }
void test_case_1() { string Arr0[] = {"A.B..",
"##.##",
"##..."}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); string Arr1[] = {"RRRLD"}; vector <string> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); string Arg2 = "Bob wins"; verify_case(1, Arg2, check(Arg0, Arg1)); }
void test_case_2() { string Arr0[] = {"###.#",
"###..",
"A..B#",
"###..",
"###.#"}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); string Arr1[] = {"RR", "R", "UDD"}; vector <string> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); string Arg2 = "Alice wins"; verify_case(2, Arg2, check(Arg0, Arg1)); }
void test_case_3() { string Arr0[] = {"A.###",
".B..."}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); string Arr1[] = {"RDRRRLLLLUDUDRLURDLUD"}; vector <string> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); string Arg2 = "Bob wins"; verify_case(3, Arg2, check(Arg0, Arg1)); }
void test_case_4() { string Arr0[] = {".....",
".#.#.",
"##.#.",
"A###.",
"B...."}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); string Arr1[] = {"D"}; vector <string> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); string Arg2 = "Alice wins"; verify_case(4, Arg2, check(Arg0, Arg1)); }
void test_case_5() { string Arr0[] = {".#...#....#.......#....#......",
"...###.#.#..#.#.#..###...#.#.#",
".#.#...#...#..#..#.....##.#...",
"#..#.##..##..#.#..###.#....#.#",
"..#..#..#...#...#....#..##.#..",
"#..##..#..##.#.#.####..#.#...#",
".#....##.#.....#......##.#.#..",
".###.#...#.#.#..#.#.##...##.#.",
".....#.#.##..#.#..##...##...#.",
"#.#.#...#...#.#.#...#.#.#.##.#",
".#..##.#..##..#.###...........",
"..##.....####.......##.#.#.##.",
"#....##.#.#...####.#...#.#.#..",
"#.#.#......##.#...#..#.#..#..#",
"..#..#.#.##...#.#..#..#..#..#.",
".#..#...#...#..#..#.#..#..#A#.",
"..#..#.#.B##.##..#...#.#.##...",
"#.#.##..#......#.#.#.#.#...#.#",
"#.#...#.######...#.#.#.#.#.#..",
"..#.##.#.....#.##..#...#.#.#.#",
".#..#..#.#.#.#.#..#.#####..#.#",
"..#.#.##.#.#.##.#......#..#...",
"#..#.....#.#.....#.#.##..##.#.",
"##..###.#..#.#.#.#..##..#...##",
"##.#...#..##.#.#..#.#..#.#.#..",
"#..#.#.####..#..#..#..#......#",
"..#..#.....####..#.##.#.###.#.",
".#..#.####.#.#..#.....#...#...",
"..##.......#...#..####.##.#.#.",
"#....#.#.#..#.###....#....#..#"}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); string Arr1[] = {"UURURUULLLLLLLLLLDLLLLUDLLUDDLRDDDULLDLLDDRRRRRDDU","RRUUURUULLD"}; vector <string> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); string Arg2 = "Alice wins"; verify_case(5, Arg2, check(Arg0, Arg1)); }
// END CUT HERE
};
// BEGIN CUT HERE
int main(int argc, char** argv) {
GameInDarknessDiv2 ___test;
if(argc==1) {
___test.run_test(-1);
}
else {
int i = atoi(argv[1]);
___test.run_test(i);
}
}
// END CUT HERE
| [
"kmjp"
] | kmjp |
b4ad09e3575079ecb222c2824482f310de866750 | c51febc209233a9160f41913d895415704d2391f | /YorozuyaGSLib/source/_log_case_charselectDetail.cpp | 9f9f63549e1f62dc4afd680660de111ff4f48202 | [
"MIT"
] | permissive | roussukke/Yorozuya | 81f81e5e759ecae02c793e65d6c3acc504091bc3 | d9a44592b0714da1aebf492b64fdcb3fa072afe5 | refs/heads/master | 2023-07-08T03:23:00.584855 | 2023-06-29T08:20:25 | 2023-06-29T08:20:25 | 463,330,454 | 0 | 0 | MIT | 2022-02-24T23:15:01 | 2022-02-24T23:15:00 | null | UTF-8 | C++ | false | false | 1,030 | cpp | #include <_log_case_charselectDetail.hpp>
#include <common/ATFCore.hpp>
START_ATF_NAMESPACE
namespace Detail
{
Info::_log_case_charselectsize2_ptr _log_case_charselectsize2_next(nullptr);
Info::_log_case_charselectsize2_clbk _log_case_charselectsize2_user(nullptr);
int _log_case_charselectsize2_wrapper(struct _log_case_charselect* _this)
{
return _log_case_charselectsize2_user(_this, _log_case_charselectsize2_next);
};
::std::array<hook_record, 1> _log_case_charselect_functions =
{
_hook_record {
(LPVOID)0x14011fbf0L,
(LPVOID *)&_log_case_charselectsize2_user,
(LPVOID *)&_log_case_charselectsize2_next,
(LPVOID)cast_pointer_function(_log_case_charselectsize2_wrapper),
(LPVOID)cast_pointer_function((int(_log_case_charselect::*)())&_log_case_charselect::size)
},
};
}; // end namespace Detail
END_ATF_NAMESPACE
| [
"b1ll.cipher@yandex.ru"
] | b1ll.cipher@yandex.ru |
bf2d66eb08aa62e057f3298e4c24b3be6e39aee3 | 7def764f9ffc80473490d785aac0bd389c8b6854 | /IDI2/objectInstance.cpp | 3af52896480ba34f19f3393bddc682122bca72d2 | [] | no_license | Link90/ProjecteOpenGL | b63b7a04170ce2cc6b3806f77caeb2aecea91149 | 11f43e493bb28c7d0348ad515ff1e947a0cebaa3 | refs/heads/master | 2020-05-02T08:08:18.351242 | 2013-06-24T14:26:55 | 2013-06-24T14:26:55 | null | 0 | 0 | null | null | null | null | IBM852 | C++ | false | false | 2,587 | cpp | #include "objectInstance.h"
#include "box.h"
#include <QtOpenGL/qgl.h>
#include "scene.h"
#include <cmath>
ObjectInstance::ObjectInstance(int ob, Point p, Vector sz, float ori):
object(ob), pos(p), size(sz), orientation(ori)
{}
ObjectInstance::~ObjectInstance(void)
{}
void ObjectInstance::Render(std::vector<Model> &lmodels)
{
// Cal aplicar les transformacions de model necessÓries i pintar l'objecte
Model &o=lmodels[object];
Box box=o.boundingBox();
//CENTRE DE LA CAIXA CONTENIDORA (BOUNDING BOX)
Point centreBB;
centreBB.x = (box.maxb.x+box.minb.x)/2;
centreBB.z = (box.maxb.z+box.minb.z)/2;
//MIDA EN COORDENADES DE LA CAIXA CONTENIDORA
float midaX=box.maxb.x-box.minb.x;
float midaY=box.maxb.y-box.minb.y;
float midaZ=box.maxb.z-box.minb.z;
cameraIDI camAux;
camAux.iniciTGModelat();
camAux.trasllada(pos.x, pos.y, pos.z);
camAux.rota(orientation, 0.0, 1.0, 0.0);
camAux.escala(size.x/midaX, size.y/midaY, size.z/midaZ);
camAux.trasllada(-centreBB.x, -box.minb.y, -centreBB.z);
//Pintem l'objecte
o.Render();
camAux.fiTGModelat();
_transBox.Render(); // descomentar si es vol pintar la capsa englobant
}
int ObjectInstance::getObjectId()
{
return object;
}
//Consultes
Point ObjectInstance::getposition() {
return pos;
}
float ObjectInstance::getorientation(){
return orientation;
}
// Calculem la caixa transformada a partir de la caixa original
// de l'objecte
void ObjectInstance::computeTransformedBox(Model &obj)
{
Box b = obj.boundingBox();
float sa, sb, sc;
sa=b.maxb.x-b.minb.x;
sb=b.maxb.y-b.minb.y;
sc = b.maxb.z - b.minb.z;
cameraIDI camAux;
camAux.iniciTGModelat();
camAux.identitat();
camAux.trasllada(pos.x, pos.y, pos.z);
camAux.rota(orientation, 0, 1, 0);
camAux.escala(size.x/sa, size.y/sb, size.z/sc);
camAux.trasllada(-0.5*(b.maxb.x + b.minb.x), -b.minb.y, -0.5*(b.maxb.z + b.minb.z));
vector<Vertex> &verts = obj.vertices;
Point punt(verts[0].coord.x, verts[0].coord.y, verts[0].coord.z);
Scene::transformPoint(punt);
_transBox.init(punt);
for (unsigned int i=1; i<verts.size(); ++i)
{
Point punt(verts[i].coord.x, verts[i].coord.y, verts[i].coord.z);
Scene::transformPoint(punt);
_transBox.update(punt);
}
camAux.fiTGModelat();
}
Box & ObjectInstance::getTransformedBox ()
{
return _transBox;
}
void ObjectInstance::movement(int i){
float sinaux = i*sin(orientation*M_PI/180);
float cosaux = i*cos(orientation*M_PI/180);
pos.x += sinaux;
pos.z += cosaux;
}
void ObjectInstance::twisted(int i){
orientation += i;
}
| [
"link90albert@hotmail.com"
] | link90albert@hotmail.com |
a4da3e5d794c0c673b4fe2e1229514704bc0bc12 | a91e7fa436ca707d73db683b41ed712f35994141 | /10 HashTable/HashTable.h | 018fe0337daae6a4887aece389e121f6ae0ddad5 | [] | no_license | Zamirk/Advanced-Data-Structures | d6b93125f0e43eb36a91038f0efcefffb1f3457a | 106e56222f6a2625fef26d8b1c1067f773aa7cd6 | refs/heads/master | 2021-08-19T08:40:38.363879 | 2017-11-25T15:09:40 | 2017-11-25T15:09:40 | 112,012,602 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 439 | h | //X00110033
#ifndef UNTITLED21_HASHTABLE_H
#define UNTITLED21_HASHTABLE_H
#include <c++/array>
#include <iostream>
#include "BucketNode.h"
using namespace std;
class HashTable {
public:
HashTable();
~HashTable();
void insertItem(int a);
void display();
bool findStudent(int a);
void deleteStudent(int a);
private:
BucketNode** myArray;
int hSize;
int mod = 47;
};
#endif //UNTITLED21_HASHTABLE_H
| [
"samir.kahvedzic1@gmail.com"
] | samir.kahvedzic1@gmail.com |
40bf588992f54b8cae87cfbf5e80b01158cd0cb6 | dca653bb975528bd1b8ab2547f6ef4f48e15b7b7 | /branches/wx-2.9.0.1/samples/vscroll/vstest.cpp | c8af46184e51e660ab4f9d382555f514188cf100 | [] | no_license | czxxjtu/wxPython-1 | 51ca2f62ff6c01722e50742d1813f4be378c0517 | 6a7473c258ea4105f44e31d140ea5c0ae6bc46d8 | refs/heads/master | 2021-01-15T12:09:59.328778 | 2015-01-05T20:55:10 | 2015-01-05T20:55:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,129 | cpp | /////////////////////////////////////////////////////////////////////////////
// Name: samples/vscroll/vstest.cpp
// Purpose: VScroll wxWidgets sample
// Author: Vadim Zeitlin
// Modified by: Brad Anderson
// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// ============================================================================
// declarations
// ============================================================================
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
// for all others, include the necessary headers (this file is usually all you
// need because it includes almost all "standard" wxWidgets headers)
#ifndef WX_PRECOMP
#include "wx/wx.h"
#include "wx/app.h"
#include "wx/frame.h"
#endif
// we need to include the headers not included from wx/wx.h explicitly anyhow
#include "wx/vscroll.h"
// ----------------------------------------------------------------------------
// resources
// ----------------------------------------------------------------------------
// the application icon (under Windows and OS/2 it is in resources)
#if !defined(__WXMSW__) && !defined(__WXPM__)
#include "../sample.xpm"
#endif
// ----------------------------------------------------------------------------
// definitions
// ----------------------------------------------------------------------------
#define MAX_LINES 10000
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
// Define a new application type, each program should derive a class from wxApp
class VarScrollApp : public wxApp
{
public:
// create our main window
virtual bool OnInit();
};
// Define a new frame type: this is going to be our main frame
class VarScrollFrame : public wxFrame
{
public:
// ctor
VarScrollFrame();
// event handlers (these functions should _not_ be virtual)
void OnQuit(wxCommandEvent& event);
void OnModeVScroll(wxCommandEvent& event);
void OnModeHScroll(wxCommandEvent& event);
void OnModeHVScroll(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
void OnSize(wxSizeEvent& event)
{
// show current size in the status bar
#if wxUSE_STATUSBAR
if ( m_frameStatusBar )
{
wxSize sz = GetClientSize();
SetStatusText(wxString::Format(_T("%dx%d"), sz.x, sz.y), 1);
}
#endif // wxUSE_STATUSBAR
event.Skip();
}
private:
// either a wxVScrolledWindow or a wxHVScrolled window, depending on current mode
wxPanel *m_scrollWindow;
// any class wishing to process wxWidgets events must use this macro
DECLARE_EVENT_TABLE()
};
class VScrollWindow : public wxVScrolledWindow
{
public:
VScrollWindow(wxFrame *frame) : wxVScrolledWindow(frame, wxID_ANY)
{
m_frame = frame;
SetRowCount(MAX_LINES);
int i;
for ( i = 0; i < MAX_LINES; ++i )
m_heights[i] = rand()%25+16; // low: 16; high: 40
m_changed = true;
}
void OnIdle(wxIdleEvent&)
{
#if wxUSE_STATUSBAR
m_frame->SetStatusText(wxString::Format
(
_T("Page size = %d, pos = %d, max = %d"),
GetScrollThumb(wxVERTICAL),
GetScrollPos(wxVERTICAL),
GetScrollRange(wxVERTICAL)
));
#endif // wxUSE_STATUSBAR
m_changed = false;
}
void OnPaint(wxPaintEvent&)
{
wxPaintDC dc(this);
dc.SetPen(*wxBLACK_PEN);
const size_t lineFirst = GetVisibleBegin(),
lineLast = GetVisibleEnd();
const wxCoord hText = dc.GetCharHeight();
wxSize clientSize = GetClientSize();
wxCoord y = 0;
for ( size_t line = lineFirst; line < lineLast; line++ )
{
dc.DrawLine(0, y, clientSize.GetWidth(), y);
wxCoord hLine = OnGetRowHeight(line);
dc.DrawText(wxString::Format(_T("Line %lu"), (unsigned long)line),
2, y + (hLine - hText) / 2);
y += hLine;
dc.DrawLine(0, y, 1000, y);
}
}
void OnScroll(wxScrollWinEvent& event)
{
m_changed = true;
event.Skip();
}
void OnMouse(wxMouseEvent& event)
{
if(event.LeftDown())
CaptureMouse();
else if(event.LeftUp())
ReleaseMouse();
event.Skip();
}
virtual wxCoord OnGetRowHeight(size_t n) const
{
wxASSERT( n < GetRowCount() );
return m_heights[n];
}
private:
wxFrame *m_frame;
int m_heights[MAX_LINES];
bool m_changed;
DECLARE_EVENT_TABLE()
};
BEGIN_EVENT_TABLE(VScrollWindow, wxVScrolledWindow)
EVT_IDLE(VScrollWindow::OnIdle)
EVT_PAINT(VScrollWindow::OnPaint)
EVT_SCROLLWIN(VScrollWindow::OnScroll)
EVT_MOUSE_EVENTS(VScrollWindow::OnMouse)
END_EVENT_TABLE()
class HScrollWindow : public wxHScrolledWindow
{
public:
HScrollWindow(wxFrame *frame) : wxHScrolledWindow(frame, wxID_ANY)
{
m_frame = frame;
SetColumnCount(MAX_LINES);
int i;
for ( i = 0; i < MAX_LINES; ++i )
m_heights[i] = rand()%25+16; // low: 15; high: 40
m_changed = true;
}
void OnIdle(wxIdleEvent&)
{
#if wxUSE_STATUSBAR
m_frame->SetStatusText(wxString::Format
(
_T("Page size = %d, pos = %d, max = %d"),
GetScrollThumb(wxVERTICAL),
GetScrollPos(wxVERTICAL),
GetScrollRange(wxVERTICAL)
));
#endif // wxUSE_STATUSBAR
m_changed = false;
}
void OnPaint(wxPaintEvent&)
{
wxPaintDC dc(this);
dc.SetPen(*wxBLACK_PEN);
const size_t lineFirst = GetVisibleBegin(),
lineLast = GetVisibleEnd();
const wxCoord hText = dc.GetCharHeight();
wxSize clientSize = GetClientSize();
wxCoord x = 0;
for ( size_t line = lineFirst; line < lineLast; line++ )
{
dc.DrawLine(x, 0, x, clientSize.GetHeight());
wxCoord wLine = OnGetColumnWidth(line);
dc.DrawRotatedText(wxString::Format(_T("Line %lu"), (unsigned long)line),
x + (wLine - hText) / 2, clientSize.GetHeight() - 5, 90);
x += wLine;
dc.DrawLine(x, 0, x, 1000);
}
}
void OnScroll(wxScrollWinEvent& event)
{
m_changed = true;
event.Skip();
}
void OnMouse(wxMouseEvent& event)
{
if(event.LeftDown())
CaptureMouse();
else if(event.LeftUp())
ReleaseMouse();
event.Skip();
}
virtual wxCoord OnGetColumnWidth(size_t n) const
{
wxASSERT( n < GetColumnCount() );
return m_heights[n];
}
private:
wxFrame *m_frame;
int m_heights[MAX_LINES];
bool m_changed;
DECLARE_EVENT_TABLE()
};
BEGIN_EVENT_TABLE(HScrollWindow, wxHScrolledWindow)
EVT_IDLE(HScrollWindow::OnIdle)
EVT_PAINT(HScrollWindow::OnPaint)
EVT_SCROLLWIN(HScrollWindow::OnScroll)
EVT_MOUSE_EVENTS(HScrollWindow::OnMouse)
END_EVENT_TABLE()
class HVScrollWindow : public wxHVScrolledWindow
{
public:
HVScrollWindow(wxFrame *frame) : wxHVScrolledWindow(frame, wxID_ANY)
{
m_frame = frame;
SetRowColumnCount(MAX_LINES, MAX_LINES);
int i;
for ( i = 0; i < MAX_LINES; ++i )
{
m_heights[i] = rand()%30+31; // low: 30; high: 60
m_widths[i] = rand()%30+61; // low: 60; high: 90
}
m_changed = true;
}
void OnIdle(wxIdleEvent&)
{
#if wxUSE_STATUSBAR
m_frame->SetStatusText(wxString::Format
(
_T("Page size = %d rows %d columns; pos = row: %d, column: %d; max = %d rows, %d columns"),
GetScrollThumb(wxVERTICAL),
GetScrollThumb(wxHORIZONTAL),
GetScrollPos(wxVERTICAL),
GetScrollPos(wxHORIZONTAL),
GetScrollRange(wxVERTICAL),
GetScrollRange(wxHORIZONTAL)
));
#endif // wxUSE_STATUSBAR
m_changed = false;
}
void OnPaint(wxPaintEvent&)
{
wxPaintDC dc(this);
dc.SetPen(*wxBLACK_PEN);
const size_t rowFirst = GetVisibleRowsBegin(),
rowLast = GetVisibleRowsEnd();
const size_t columnFirst = GetVisibleColumnsBegin(),
columnLast = GetVisibleColumnsEnd();
const wxCoord hText = dc.GetCharHeight();
wxSize clientSize = GetClientSize();
wxCoord y = 0;
wxCoord x = 0;
for ( size_t row = rowFirst; row < rowLast; row++ )
{
wxCoord rowHeight = OnGetRowHeight(row);
dc.DrawLine(0, y, clientSize.GetWidth(), y);
x = 0;
for ( size_t col = columnFirst; col < columnLast; col++ )
{
wxCoord colWidth = OnGetColumnWidth(col);
if ( row == rowFirst )
dc.DrawLine(x, 0, x, clientSize.GetHeight());
dc.DrawText(wxString::Format(_T("Row %lu"), (unsigned long)row),
x + 2, y + rowHeight / 2 - hText);
dc.DrawText(wxString::Format(_T("Col %lu"), (unsigned long)col),
x + 2, y + rowHeight / 2);
x += colWidth;
if ( row == rowFirst)
dc.DrawLine(x, 0, x, clientSize.GetHeight());
}
y += rowHeight;
dc.DrawLine(0, y, clientSize.GetWidth(), y);
}
}
void OnScroll(wxScrollWinEvent& event)
{
m_changed = true;
event.Skip();
}
void OnMouse(wxMouseEvent& event)
{
if(event.LeftDown())
CaptureMouse();
else if(event.LeftUp())
ReleaseMouse();
event.Skip();
}
virtual wxCoord OnGetRowHeight(size_t n) const
{
wxASSERT( n < GetRowCount() );
return m_heights[n];
}
virtual wxCoord OnGetColumnWidth(size_t n) const
{
wxASSERT( n < GetColumnCount() );
return m_widths[n];
}
private:
wxFrame *m_frame;
int m_heights[MAX_LINES];
int m_widths[MAX_LINES];
bool m_changed;
DECLARE_EVENT_TABLE()
};
BEGIN_EVENT_TABLE(HVScrollWindow, wxHVScrolledWindow)
EVT_IDLE(HVScrollWindow::OnIdle)
EVT_PAINT(HVScrollWindow::OnPaint)
EVT_SCROLLWIN(HVScrollWindow::OnScroll)
EVT_MOUSE_EVENTS(HVScrollWindow::OnMouse)
END_EVENT_TABLE()
// ----------------------------------------------------------------------------
// constants
// ----------------------------------------------------------------------------
// IDs for the controls and the menu commands
enum
{
// menu items
VScroll_Quit = wxID_EXIT,
// it is important for the id corresponding to the "About" command to have
// this standard value as otherwise it won't be handled properly under Mac
// (where it is special and put into the "Apple" menu)
VScroll_About = wxID_ABOUT,
VScroll_VScrollMode = wxID_HIGHEST + 1,
VScroll_HScrollMode,
VScroll_HVScrollMode
};
// ----------------------------------------------------------------------------
// event tables and other macros for wxWidgets
// ----------------------------------------------------------------------------
// the event tables connect the wxWidgets events with the functions (event
// handlers) which process them. It can be also done at run-time, but for the
// simple menu events like this the static method is much simpler.
BEGIN_EVENT_TABLE(VarScrollFrame, wxFrame)
EVT_MENU(VScroll_Quit, VarScrollFrame::OnQuit)
EVT_MENU(VScroll_VScrollMode, VarScrollFrame::OnModeVScroll)
EVT_MENU(VScroll_HScrollMode, VarScrollFrame::OnModeHScroll)
EVT_MENU(VScroll_HVScrollMode, VarScrollFrame::OnModeHVScroll)
EVT_MENU(VScroll_About, VarScrollFrame::OnAbout)
EVT_SIZE(VarScrollFrame::OnSize)
END_EVENT_TABLE()
// Create a new application object: this macro will allow wxWidgets to create
// the application object during program execution (it's better than using a
// static object for many reasons) and also declares the accessor function
// wxGetApp() which will return the reference of the right type (i.e. VarScrollApp and
// not wxApp)
IMPLEMENT_APP(VarScrollApp)
// ============================================================================
// implementation
// ============================================================================
// ----------------------------------------------------------------------------
// the application class
// ----------------------------------------------------------------------------
// 'Main program' equivalent: the program execution "starts" here
bool VarScrollApp::OnInit()
{
if ( !wxApp::OnInit() )
return false;
// create the main application window
VarScrollFrame *frame = new VarScrollFrame;
// and show it (the frames, unlike simple controls, are not shown when
// created initially)
frame->Show(true);
// ok
return true;
}
// ----------------------------------------------------------------------------
// main frame
// ----------------------------------------------------------------------------
// frame constructor
VarScrollFrame::VarScrollFrame()
: wxFrame(NULL,
wxID_ANY,
_T("VScroll wxWidgets Sample"),
wxDefaultPosition,
wxSize(400, 350)),
m_scrollWindow(NULL)
{
// set the frame icon
SetIcon(wxICON(sample));
#if wxUSE_MENUS
// create a menu bar
wxMenu *menuFile = new wxMenu;
wxMenu *menuMode = new wxMenu;
// the "About" item should be in the help menu
wxMenu *menuHelp = new wxMenu;
menuHelp->Append(VScroll_About, _T("&About...\tF1"), _T("Show about dialog"));
#ifdef wxHAS_RADIO_MENU_ITEMS
menuMode->AppendRadioItem(VScroll_VScrollMode, _T("&Vertical\tAlt-V"),
_T("Vertical scrolling only"));
menuMode->AppendRadioItem(VScroll_HScrollMode, _T("&Horizontal\tAlt-H"),
_T("Horizontal scrolling only"));
menuMode->AppendRadioItem(VScroll_HVScrollMode,
_T("Hori&zontal/Vertical\tAlt-Z"),
_T("Horizontal and vertical scrolling"));
menuMode->Check(VScroll_VScrollMode, true);
#else
menuMode->Append(VScroll_VScrollMode, _T("&Vertical\tAlt-V"),
_T("Vertical scrolling only"));
menuMode->Append(VScroll_HScrollMode, _T("&Horizontal\tAlt-H"),
_T("Horizontal scrolling only"));
menuMode->Append(VScroll_HVScrollMode, _T("Hori&zontal/Vertical\tAlt-Z"),
_T("Horizontal and vertical scrolling"));
#endif
menuFile->Append(VScroll_Quit, _T("E&xit\tAlt-X"), _T("Quit this program"));
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar;
menuBar->Append(menuFile, _T("&File"));
menuBar->Append(menuMode, _T("&Mode"));
menuBar->Append(menuHelp, _T("&Help"));
// ... and attach this menu bar to the frame
SetMenuBar(menuBar);
#endif // wxUSE_MENUS
#if wxUSE_STATUSBAR
// create a status bar just for fun (by default with 1 pane only)
CreateStatusBar(2);
SetStatusText(_T("Welcome to wxWidgets!"));
int widths[2];
widths[0] = -1;
widths[1] = 100;
SetStatusWidths(2, widths);
#endif // wxUSE_STATUSBAR
// create our one and only child -- it will take our entire client area
if ( menuMode->IsChecked(VScroll_VScrollMode) )
m_scrollWindow = new VScrollWindow(this);
else if ( menuMode->IsChecked(VScroll_HScrollMode) )
m_scrollWindow = new HScrollWindow(this);
else
m_scrollWindow = new HVScrollWindow(this);
}
// ----------------------------------------------------------------------------
// event handlers
// ----------------------------------------------------------------------------
void VarScrollFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
{
// true is to force the frame to close
Close(true);
}
void VarScrollFrame::OnModeVScroll(wxCommandEvent& WXUNUSED(event))
{
if ( m_scrollWindow )
m_scrollWindow->Destroy();
m_scrollWindow = new VScrollWindow(this);
SendSizeEvent();
}
void VarScrollFrame::OnModeHScroll(wxCommandEvent& WXUNUSED(event))
{
if ( m_scrollWindow )
m_scrollWindow->Destroy();
m_scrollWindow = new HScrollWindow(this);
SendSizeEvent();
}
void VarScrollFrame::OnModeHVScroll(wxCommandEvent& WXUNUSED(event))
{
if ( m_scrollWindow )
m_scrollWindow->Destroy();
m_scrollWindow = new HVScrollWindow(this);
SendSizeEvent();
}
void VarScrollFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
wxMessageBox(_T("VScroll shows how to implement scrolling with\n")
_T("variable line widths and heights.\n")
_T("(c) 2003 Vadim Zeitlin"),
_T("About VScroll"),
wxOK | wxICON_INFORMATION,
this);
}
| [
"RD@c3d73ce0-8a6f-49c7-b76d-6d57e0e08775"
] | RD@c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 |
072e2ab45d3527713a3656280ab95aca52052ab1 | 9c7c58220a546d583e22f8737a59e7cc8bb206e6 | /Project/MyProject/MyProject/Source/MyProject/Private/BaseFrame/Libs/Thread/MThread.cpp | 3c333590e24d6e2e074c463ad797c5400dbfb061 | [] | no_license | SiCoYu/UE | 7176f9ece890e226f21cf972e5da4c3c4c4bfe41 | 31722c056d40ad362e5c4a0cba53b05f51a19324 | refs/heads/master | 2021-03-08T05:00:32.137142 | 2019-07-03T12:20:25 | 2019-07-03T12:20:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,403 | cpp | #include "MyProject.h"
#include "MThread.h"
#include "MEvent.h"
MY_BEGIN_NAMESPACE(MyNS)
// error C5038: data member 'MyNS::MThread::mThreadName' will be initialized after data member 'MyNS::MThread::mIsExitFlag'
MThread::MThread(std::string threadName)
//: mThreadName(threadName), mIsExitFlag(false)
: mIsExitFlag(false)
, mThreadName(threadName)
{
//mSyncEvent = new MEvent();
}
MThread::~MThread()
{
//delete mSyncEvent;
}
void MThread::init()
{
}
void MThread::dispose()
{
}
void MThread::setExitFlag(bool value)
{
mIsExitFlag = value;
}
void MThread::start()
{
// FRunnableThread::Create 的第二个参数如果穿 ansi 字符集会导致编译不过,需要传递宽字节编码
//mThread = FRunnableThread::Create(this, mThreadName.c_str(), 0, TPri_Normal, FPlatformAffinity::GetNoAffinityMask());
mThread = FRunnableThread::Create(this, StringCast<TCHAR>(mThreadName.c_str()).Get(), 0, TPri_Normal, FPlatformAffinity::GetNoAffinityMask());
//this->mSyncEvent->Wait();
}
void MThread::join()
{
this->Stop();
mThread->WaitForCompletion();
}
bool MThread::Init(void)
{
return true;
}
void MThread::Exit(void)
{
}
uint32 MThread::Run(void)
{
return 0;
}
void MThread::Stop()
{
mIsExitFlag = true;
}
void MThread::EnsureCompletion()
{
this->Stop();
this->mThread->WaitForCompletion();
}
void MThread::Shutdown()
{
this->EnsureCompletion();
}
MY_END_NAMESPACE | [
"kuangben2001@163.com"
] | kuangben2001@163.com |
ca7b00a9c6d7ff735e567a665cfddddcf39ab128 | 76859f325589b72fbb1c4bf8678505cf64a62334 | /bigworld/src/server/cellapp/cell.hpp | 1c9a8d563b16ef736f1526f1dd49b5f1501b24bc | [] | no_license | yf885188/BigWorld-Engine-1.9.1 | 267d3d24c29e414308143d3b2440cd4255ec4557 | e9d5a56739eb20c0c6973653a1342000e9f699be | refs/heads/master | 2023-08-29T17:12:16.985405 | 2021-11-18T06:41:31 | 2021-11-18T06:41:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,330 | hpp | /******************************************************************************
BigWorld Technology
Copyright BigWorld Pty, Ltd.
All Rights Reserved. Commercial in confidence.
WARNING: This computer program is protected by copyright law and international
treaties. Unauthorized use, reproduction or distribution of this program, or
any portion of this program, may result in the imposition of civil and
criminal penalties as provided by law.
******************************************************************************/
#ifndef CELL_HPP
#define CELL_HPP
class Cell;
class Entity;
#include "Python.h"
#include <algorithm>
#include <functional>
#include <map>
#include <string>
#include <vector>
#include <deque>
#include "space.hpp"
#include "cellapp_interface.hpp"
#include "cell_viewer_server.hpp"
#include "cstdmf/smartpointer.hpp"
#include "math/math_extra.hpp"
#include "math/vector2.hpp"
#include "math/vector3.hpp"
#include "network/mercury.hpp"
#include "server/common.hpp"
typedef SmartPointer<Entity> EntityPtr;
class CellAppChannel;
typedef std::vector< EntityPtr >::size_type EntityRemovalHandle;
const EntityRemovalHandle NO_ENTITY_REMOVAL_HANDLE = EntityRemovalHandle( -1 );
class Chunk;
/**
* This class is used to represent a cell.
*/
class Cell
{
public:
/**
* This class is used to store the collection of real entities.
*/
class Entities
{
public:
typedef std::vector< EntityPtr > Collection;
typedef Collection::iterator iterator;
typedef Collection::const_iterator const_iterator;
typedef Collection::size_type size_type;
typedef Collection::value_type value_type;
typedef Collection::reference reference;
iterator begin() { return collection_.begin(); }
const_iterator begin() const { return collection_.begin(); }
iterator end() { return collection_.end(); }
const_iterator end() const { return collection_.end(); }
bool empty() const { return collection_.empty(); }
size_type size() const { return collection_.size(); }
bool add( Entity * pEntity );
bool remove( Entity * pEntity );
EntityPtr front() { return collection_.front(); }
EntityPtr front() const { return collection_.front(); }
private:
void swapWithBack( Entity * pEntity );
private:
Collection collection_;
};
// Constructor/Destructor
Cell( Space & space, const Space::CellInfo & cellInfo );
~Cell();
void shutDown();
// Accessors and inline methods
float cellHysteresisSize() const;
const Space::CellInfo & cellInfo() { return *pCellInfo_; }
// Entity Maintenance C++ methods
void offloadEntity( Entity * pEntity, CellAppChannel * pChannel,
bool shouldSendPhysicsCorrection = false );
void addRealEntity( Entity * pEntity, bool shouldSendNow );
void entityDestroyed( Entity * pEntity );
EntityPtr createEntityInternal( BinaryIStream & data, PyObject * pDict,
bool isRestore = false,
Mercury::ChannelVersion channelVersion = Mercury::Channel::SEQ_NULL );
void backup( int index, int period );
bool checkOffloadsAndGhosts( bool isGeometryChange );
void checkChunkLoading();
void onSpaceGone();
void debugDump();
// Communication message handlers concerning entities
void createEntity( const Mercury::Address& srcAddr,
const Mercury::UnpackedMessageHeader& header,
BinaryIStream & data );
// ( EntityID id, TypeID type, Position3D & pos, string & args );
static Cell * findMessageHandler( BinaryIStream & data );
private:
// General private data
Entities realEntities_;
bool shouldOffload_;
mutable float lastERTFactor_;
mutable uint64 lastERTCalcTime_;
float cellHysteresisSize_;
long cellOffloadMaxPerCheck_;
long cellGhostingMaxPerCheck_;
friend class CellViewerConnection;
public:
// Instrumentation
static Watcher & watcher();
SpaceID spaceID() const;
Space & space() { return space_; }
const Space & space() const { return space_; }
const BW::Rect & rect() const { return pCellInfo_->rect(); }
int numRealEntities() const;
float getActualLoad() const;
void sendEntityPositions( Mercury::Bundle & bundle ) const;
Entities & realEntities();
// Load balancing
bool shouldOffload() const;
void shouldOffload( bool shouldOffload );
void shouldOffload( const CellAppInterface::shouldOffloadArgs & args );
void setRetiringCell( const CellAppInterface::setRetiringCellArgs & args );
bool reuse();
void handleCellAppDeath( const Mercury::Address & addr );
void restoreEntity( const Mercury::Address& srcAddr,
const Mercury::UnpackedMessageHeader& header,
BinaryIStream & data );
bool isRemoved() const { return isRemoved_; }
private:
void createPendingEntities();
enum LoadType
{
LOAD_TYPE_ABOVE_AVERAGE,
LOAD_TYPE_BELOW_AVERAGE,
LOAD_TYPE_BALANCED
};
// Load balance related data
float initialTimeOfDay_;
float gameSecondsPerSecond_;
bool isRetiring_;
bool isRemoved_;
enum
{
STAGE_CREATE_GHOSTS_0,
STAGE_CREATE_GHOSTS_1,
STAGE_OFFLOAD,
STAGE_DEL_GHOSTS
};
int checkOffloadsAndGhostsStage_;
Space & space_;
int backupIndex_;
Space::ConstCellInfoPtr pCellInfo_;
/**
* This class is used to store information about createEntity and
* restoreEntity calls that cannot be processed immediately because the
* CellApp is overloaded.
*/
class PendingCreation
{
public:
PendingCreation(
BinaryIStream & data, const Mercury::Address & srcAddr,
Mercury::ReplyID replyID,
bool isRestore,
Mercury::ChannelVersion channelVersion ):
stream_( data.remainingLength() ),
srcAddr_( srcAddr ),
replyID_( replyID ),
isRestore_( isRestore ),
channelVersion_( channelVersion )
{
stream_.transfer( data, data.remainingLength() );
}
BinaryIStream & stream() { return stream_; }
const Mercury::Address & srcAddr() const { return srcAddr_; }
Mercury::ReplyID replyID() const { return replyID_; }
Mercury::ChannelVersion channelVersion() const
{
return channelVersion_;
}
bool isRestore() const
{
return isRestore_;
}
private:
MemoryOStream stream_;
Mercury::Address srcAddr_;
Mercury::ReplyID replyID_;
bool isRestore_;
Mercury::ChannelVersion channelVersion_;
};
typedef std::vector< PendingCreation * > PendingCreations;
PendingCreations pendingCreations_;
};
#ifdef CODE_INLINE
#include "cell.ipp"
#endif
#endif // CELL_HPP
| [
"terran.erre@mail.ru"
] | terran.erre@mail.ru |
5cf9e0b121a6787ec836ba8522e98b7d35b4248e | 81df949dc97f7776f9915296dfb6aef03cf272ae | /master copy/logsys.cpp | 11ed71ed12e634bfc3a53b28f205a90e70b0e128 | [] | no_license | octeopus/CSCI222A1-2 | 1de0c6623ea1a9a40d05b7c9aa84c43e72e9c22c | 4225a2b4fb943c2f3452819a86051a89ae0dc48a | refs/heads/master | 2021-01-10T05:52:51.653014 | 2016-02-22T07:58:14 | 2016-02-22T07:58:14 | 51,134,803 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,098 | cpp | #include "logsys.h"
logSys::logSys(){
//-------------------------CHECK IF MEMBER FILE EXISTS-------------------------//
fstream fs;
fs.open(MEMBER_FILE);
bool ifExists = false;
//check if fs can reach the file
if(fs.good()){
ifExists = true;
}
fs.close();
//then if the file does not exist, create a new file and write a blank FacBin into it.
if(ifExists == false){
cout << MEMBER_FILE << " does not exist! Creating new " << MEMBER_FILE << "...\n\n";
memVec.index = 0;
memVec.f.clear();
writeMemFile(fs, memVec);
}
//-------------------------WRITE DATA INTO VECTOR OF FACILITIES-------------------------//
else{
readMemFile(fs, memVec);
}
//read member.txt into memVec
//readMemFile(fs, memVec);
//read manager.txt into manVec
}
void logSys::mainMenu(){
char option;
do
{
cout << "=========================================================\n"
<< " Country Club Facilities Booking System\n"
<< "=========================================================\n" << endl;
cout << "------------ Please Choose Your Login Option ------------\n" << endl;
cout << "1)\tClub Manager Login\n"
<< "2)\tClub Member Login\n"
<< "9)\tQuit\n" << endl;
cout << "---------------------------------------------------------\n" << endl;
cout << "Please enter your option: ";
cin >> option;
cin.clear();
cin.ignore(100, '\n');
cout << '\n' << endl;
switch(option)
{
case '1': //managersystem(); //Manager Login
break;
case '2': membersystem(); //Member Login
break;
case '9': cout << "Thank you for using the Booking System\n\n" << endl; //Quit
break;
default: cout << "\n[Invalid Option, Please Try Again]\n\n" << endl;
}
}while(option != '9');
}
void logSys::readMemFile(fstream& fs, memBox& v){
v.index = 0;
v.f.clear();
fs.open(MEMBER_FILE, ios::in);
Member ins;
//----------------------MEMBER DUMP ZONE--------------------------//
string MID, MName, MPass, MAdd, MPhone, MRank, MGen, MemUs;
char gend;
//----------------------BOOKING DUMP ZONE--------------------------//
string BCont; //carries the number of bookings made by a member
int BNum;
string BMID, BFID, BBID;
int sDateD, sDateM, sDateY, eDateD, eDateM, eDateY, sTimeH, sTimeM, eTimeH, eTimeM, bStatus;
Date sDate, eDate;
Time sTime, eTime;
string contain; //used to carry integers and needs to be used to convert to the appropriate format using int
//----------------------CHAFF DUMP ZONE-----------------------//
string chaff;
string firstLine;
getline(fs, firstLine, '\n');
v.index = stoi(firstLine);
while (!fs.eof()){
getline(fs, MID, ';');
getline(fs, MName, ';');
getline(fs, MPass, ';');
getline(fs, MAdd, ';');
getline(fs, MPhone, ';');
getline(fs, MRank, ';');
getline(fs, MGen, ';');
gend = *MGen.begin();
getline(fs, MemUs, ';');
getline(fs, BCont, ';');
BNum = stoi(BCont);
Member ins(MID, MName, MPass, MAdd, MPhone, MRank, gend, MemUs);
v.index++;
if (BNum > 0){
while (BNum > 0){
getline(fs, BMID, ';');
getline(fs, BFID, ';');
getline(fs, BBID, ';');
getline(fs, contain, ';');
sDateD = stoi(contain);
getline(fs, contain, ';');
sDateM = stoi(contain);
getline(fs, contain, ';');
sDateY = stoi(contain);
getline(fs, contain, ';');
eDateD = stoi(contain);
getline(fs, contain, ';');
eDateM = stoi(contain);
getline(fs, contain, ';');
eDateY = stoi(contain);
getline(fs, contain, ';');
sTimeH = stoi(contain);
getline(fs, contain, ';');
sTimeM = stoi(contain);
getline(fs, contain, ';');
eTimeH = stoi(contain);
getline(fs, contain, ';');
eTimeM = stoi(contain);
getline(fs, contain, ';');
bStatus = stoi(contain);
getline(fs, chaff, '\n');
sDate.day = sDateD;
sDate.month = sDateM;
sDate.year = sDateY;
eDate.day = eDateD;
eDate.month = eDateM;
eDate.year = eDateY;
sTime.hour = sTimeH;
sTime.minute = sTimeM;
eTime.hour = eTimeH;
eTime.minute = eTimeM;
Booking bIns(BMID, BFID, BBID, sDate, eDate, sTime, eTime, bStatus);
ins.bookingHistory.push_back(bIns);
BNum--;
}
}
if (ins.getMemID().length() > 4){
v.f.push_back(ins);
}
}
//Marcus - changed delimiter to ; to standardize
fs.close();
}
void logSys::writeMemFile(fstream& fs, const memBox v){
fs.open(MEMBER_FILE, ios::out);
fs << v.index << '\n';
for(size_t i = 0; i != v.f.size(); i++){
fs << v.f[i].getMemID() << ';'
<< v.f[i].getMemName() << ';'
<< v.f[i].getMemPassword() << ';'
<< v.f[i].getMemAddress() << ';'
<< v.f[i].getMemPhone() << ';'
<< v.f[i].getMemRank() << ';'
<< v.f[i].getMemGender() << ';'
<< v.f[i].getMemUserName() << ';'
<< v.f[i].bookingHistory.size() << ';';
if(v.f[i].bookingHistory.size() > 0){ //check if booking History has more than 1 entry
for(size_t m = 0; m != v.f[i].bookingHistory.size(); m++){
fs << v.f[i].bookingHistory[m].getBMID() << ';'
<< v.f[i].bookingHistory[m].getBFID() << ';'
<< v.f[i].bookingHistory[m].getBBID() << ';'
<< v.f[i].bookingHistory[m].getsDate().day << ';'
<< v.f[i].bookingHistory[m].getsDate().month << ';'
<< v.f[i].bookingHistory[m].getsDate().year << ';'
<< v.f[i].bookingHistory[m].geteDate().day << ';'
<< v.f[i].bookingHistory[m].geteDate().month << ';'
<< v.f[i].bookingHistory[m].geteDate().year << ';'
<< v.f[i].bookingHistory[m].getsTime().hour << ';'
<< v.f[i].bookingHistory[m].getsTime().minute << ';'
<< v.f[i].bookingHistory[m].geteTime().hour << ';'
<< v.f[i].bookingHistory[m].geteTime().minute << ';'
<< v.f[i].bookingHistory[m].getsTime().hour << ';'
<< v.f[i].bookingHistory[m].getBookStat() << ';';
}
}
fs << '\n';
}
fs.close();
}
//==================================================================================================
//member login system
void logSys::membersystem() //member login system
{
char choice;
if (memVec.index == 0){
MemReg();
}
else{
do{
cout << "=========================================================\n"
<< " Member Login\n"
<< "=========================================================\n" << endl;
cout << "1) Log In " << endl;
cout << "2) Register\n " << endl;
cout << "Please enter your choice: ";
cin >> choice;
cin.clear();
cin.ignore(200, '\n');
switch (choice){
case '1':
MemLogin();
break;
case '2':
MemReg();
break;
default:
cout << "Invalid input, please try again." << endl;
}
} while (choice != '9');
}
}
//==================================================================================================
/*
void logSys::saveReg()
{
ofstream ofile("member.txt");
if(!ofile.is_open())
{
ofile.open("member.txt");
}
ofile << MEMUser << ", " << memberPassword << ", " << memberName << ", " << memberAddress << ", " << memberGender << endl;
ofile.close();
}
*/
//==================================================================================================
void logSys::MemReg()
{
string MID, user, pass, name, addr, phone;
char gender;
cout << "=========================================================\n"
<< " Club Member Registeration\n"
<< "=========================================================\n" << endl;
cout << "[Please Enter A Username]: ";
//cin >> MEMUser;
getline(cin, user, '\n');
cout << "[Please Enter A Password]: ";
//cin >> memberPassword;
getline(cin, pass, '\n');
cout << "[Please Enter Your Name]: ";
getline(cin, name, '\n');
cout << "[Please Enter Your Address]: ";
getline(cin, addr, '\n');
cout << "[Please Enter Your Phone Number]: ";
getline(cin,phone, '\n');
cout << "[Please Enter Your Gender (M / F)]: ";
cin >> gender;
cin.clear();
cin.ignore(200,'\n');
MID = MIDToString(memVec.index+1);
Member ins(MID, name, pass, addr, phone, gender, user);
memVec.index++;
memVec.f.push_back(ins);
fstream fs;
fs.open(MEMBER_FILE, ios::trunc); //clear file first before writing in the information again
fs.close();
writeMemFile(fs,memVec);
cout << "Member " << user << " has been registered! Please log in again with your account credentials!" << endl;
cout << '\n' << endl;
cout << endl;
}
//==================================================================================================
void logSys::MemLogin()
{
MemSys ms; //access to Member System
string inputUser;
string inputPass;
cout << "=========================================================\n"
<< " Club Member Login\n"
<< "=========================================================\n" << endl;
cout << "Please Enter [Username] & [Password] to Login\n" << endl;
cout << "[Username]: ";
getline(cin, inputUser, '\n');
cout << "[Password]: ";
getline(cin, inputPass, '\n');
cin.clear();
cin.ignore(100, '\n');
cout << endl;
fstream fs;
readMemFile(fs, memVec);
//read file to update memVec
//check if username and password hits
bool ifFound = false;
string MID;
int retainIndex; //use this to retain the index of the user
for(size_t i = 0; i != memVec.f.size(); i++){
if (inputUser.compare(memVec.f[i].getMemUserName()) == 0 && inputPass.compare(memVec.f[i].getMemPassword()) == 0){
ifFound = true;
retainIndex = i;
MID = memVec.f[i].getMemID();
}
}
if(ifFound)
{
char MEoption;
do
{
cout << "=========================================================\n"
<< " Welcome [ " << inputUser << " ]\n"
<< "=========================================================\n" << endl;
cout << "--------------- Please Choose Your Option ---------------\n" << endl;
cout << "1)\tMember Profile System\n"
<< "2)\tSearch Facilities\n"
<< "9)\tQuit\n" << endl;
cout << "---------------------------------------------------------\n" << endl;
cout << "Please enter your option: ";
cin >> MEoption;
cin.clear();
cin.ignore(100, '\n');
cout << '\n' << endl;
switch(MEoption){
case '1':
ms.memProfMenu(retainIndex);
break;
case '2': cout << "Search Facilities" << endl; //Club Membership Ranking System
//call Search Subsystem while passing MemberID into the function
break;
case '9': cout << "\n[Exiting Club Member's Subsystem]\n\n" << endl;; //Quit
break;
default: cout << "\n[Invalid Option, Please Try Again] \n\n" << endl;
}
}while(MEoption != '9');
}
else
{
cout << "\n[Invalid Username or Password, Please Try Again!]\n\n" << endl;
}
}
/*
void logSys::managersystem() //manager login system
{
string MAUser;
string MAPass;
char MAoption;
cout << "=========================================================\n"
<< " Club Manager Login\n"
<< "=========================================================\n" << endl;
cout << "Please Enter [Username] & [Password] to Login\n" << endl;
cout << "[Username]: ";
getline(cin, MAUser);
cout << "[Password]: ";
getline(cin, MAPass);
cout << endl;
if(MAUser == "manager" && MAPass == "pass")
{
do
{
cout << "=========================================================\n"
<< " Welcome Manager\n"
<< "=========================================================\n" << endl;
cout << "--------------- Please Choose Your Option ---------------\n" << endl;
cout << "1)\tFacilities Management System\n"
<< "2)\tClub Membership Ranking System\n"
<< "3)\tGenerate Summary Report\n"
<< "9)\tQuit\n" << endl;
cout << "---------------------------------------------------------\n" << endl;
cout << "Please enter your option: ";
cin >> MAoption;
cin.clear();
cin.ignore(100, '\n');
cout << '\n' << endl;
switch(MAoption)
{
case '1': cout << "Facilities Management System" << endl; //Facilities Management System
break;
case '2': cout << "Club Membership Ranking System" << endl; //Club Membership Ranking System
break;
case '3': cout << "Generate Summary Report" << endl; //Generate Summary Report
break;
case '9': cout << "\n[Exiting Manager's Subsystem]\n\n" << endl;; //Quit
break;
default: cout << "\n[Invalid Option, Please Try Again] \n\n" << endl;
}
}while(MAoption != '9');
}
else
{
cout << "\n[Invalid Username or Password, Please Try Again!]\n\n" << endl;
}
}
*/
| [
"teokeez@gmail.com"
] | teokeez@gmail.com |
66a52e8db81bcd3fbf5b7e924d31a78b412304b9 | b5b56ce3eb1dfe324eafbda3e0e5f338c5dd72e2 | /Server/MapGen/MapGenerator/include/GMSCountryOverviewMap.h | f94639b50b2e9d6a692e23041825f489f4fc2c79 | [] | no_license | wayfinder/Wayfinder-Server | 5cb91281b33cea6d8f6d74550b6564a71c4be1d7 | a688546589f246ee12a8a167a568a9c4c4ef8151 | refs/heads/master | 2021-01-22T22:39:08.348787 | 2012-03-31T11:34:42 | 2012-03-31T11:34:42 | 727,490 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 21,330 | h | /*
Copyright (c) 1999 - 2010, Vodafone Group Services Ltd
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the Vodafone Group Services Ltd nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef GMSCOUNTRYOVERVIEWMAP
#define GMSCOUNTRYOVERVIEWMAP
#include "config.h"
#include "OldCountryOverviewMap.h"
#include "OldOverviewMap.h"
#include <list>
class OldWaterItem;
class OldForestItem;
/**
* Subclass to the OldCountryOverviewMap with methods and
* functionallity to create the map-boundry.
*
*/
class GMSCountryOverviewMap : public OldCountryOverviewMap {
public:
/**
* Create a new GMSCountryOverviewMap.
* @param id The ID of this map.
*/
GMSCountryOverviewMap(uint32 id);
/**
* Create a new GMSCountryOverviewMap.
* @param id The ID of this map.
* @param path The path to where this map will be loaded
* and saved.
*/
GMSCountryOverviewMap(uint32 id, const char* path);
/**
* Calls the normal internalLoad-method, but after that, the
* table m_idsByOriginalIDs is created.
* @param outfile The fd of the file where to loade the ID:s
* from.
* @return True if the IDs are loaded, false otherwise.
*/
virtual bool internalLoad(DataBuffer& dataBuffer);
/**
* Delete this overviewmap.
*/
virtual ~GMSCountryOverviewMap();
/**
* Create the map gfx data from the country polygon mif file.
* @return True if the map-boundry is created (the GfxData
* for the map is set).
*/
bool createCountryBorder();
/**
* Add data from a underview map that is in the country
* this country map describes. Appropiate items will be copied
* from the underview map to this country overview.
* @param map The map where to add data (= items etc) from.
* @return True if the data from map is added to this country,
* false otherwise.
*/
bool addDataFromMap(OldGenericMap* map);
/**
* Set the gfx filtering of this map, copied from another map.
* @param otherMap The map containing the filtering info
* that we want to add to this map.
* @return True upon success, false otherwise.
*/
bool setSimplifiedGfxFromMap(GMSCountryOverviewMap* otherMap);
/**
* Update the country polygon of this co map, by copying the
* copying the country polygon from another co map. This is
* used to re-use country polygon filtering from old co maps
* to new map generation.
* Will use break points in the break points file to write
* the countryBorders.txt, the text file that holds filtered
* country polygon parts.
* Will set the mapGfxDataIsFiltered flag true in this co map.
*
* @param otherMap The co map that has the gfx data we want to
* apply to this cop map.
* @param breakPointsFileName The file containing country
* polygon break points. NULL if no such file
* exists.
*/
bool copyCoPolFilteringFromMap(GMSCountryOverviewMap* otherMap,
const char* breakPointsFileName);
/**
* Adds and concatenates the water items in m_waterCandidates.
*
* @param addedWaterOriginalIDs Output parameter.
* Multimap with original map id
* as key and orignal item id
* as value for the water items
* that were added to the
* country map.
* @return The number of added water items.
*/
uint32 addWaterItems(multimap<uint32, uint32>& addedWaterOriginalIDs);
/**
* Adds the good forest items in m_forestCandidates to the map.
*
* @param addedForestOriginalIDs Output parameter.
* Multimap with original map id
* as key and orignal item id
* as value for the forest items
* that were added to the
* country map.
* @return The number of added forest items.
*/
uint32 addForestItems(multimap<uint32, uint32>& addedForestOriginalIDs);
/**
* Make sure builtup areas and citycentre poi will have
* unique names.
*/
void makeUniqueNames();
/**
* Loop through all items of a certain type (for instance bua)
* and make sure that there are unique names for all of them.
* Different items with the same official name will get a new,
* unique name consisting of the old name + the name of the
* municipal it is located in.
*
* Generally bua:s and citycentre poi:s should have unique names.
*
* @param itemType The item type that should have unique names.
* @param poiType In case itemType is pointOfInterestType
* then specify which kind of poi-type it
* is.
* @param checkItem If provided the method checks if this item
* (typically a city centre poi added to
* production maps) needs to be assigned a
* new unique name. If so, it does.
*/
void makeUniqueNames( ItemTypes::itemType itemType,
ItemTypes::pointOfInterest_t poiType
= ItemTypes::nbr_pointOfInterest,
OldItem* checkItem = NULL);
uint32 addZipCodeItems(OldOverviewMap* overview);
/**
* Update the groups so that they are referring to item ids in
* this map instead of item ids in the original maps.
*/
void updateGroupIDs();
/**
* Method that will merge the added street segments from the
* underview map to new streetsegments. Street segments will
* be merged between intersections of other streetsegments.
* The resulting street segments are then filtered.
* @return True upon success, false otherwise.
*/
bool mergeStreetSegments();
/**
* Method for applying changes to production country overview
* maps, typically when adding some extra data or changes
* from WASP to the maps.
* The affected items could have been removed from or added to
* the otherMap, or simply had some attribute updated. These
* changes are here transferred to the country overview map.
*
* @param otherMap The map from which to apply changes,
* typically an underview map.
* @param itemsAffectedInOtherMap OldItem ids of items that have
* changed in otherMap.
* @param coMapChanged Outparam that tells if this country
* overview map was affected by applying
* the changes.
* @returns True.
*/
bool applyChangesFromOtherMap(
OldGenericMap* otherMap, vector<uint32> itemsAffectedInOtherMap,
bool& coMapChanged);
/**
* Create border items. Divides the map gfx data (country polygon)
* into border parts using info in the country border break
* points file. The border parts that exist in the borderItems.txt
* file are used for creating border items in this map.
* The country polygon must be filtered in coordinate levels first!
*
* @param breakPointsFileName File with country border break
* points.
* @return Number of border items that were created and added
* to this co map.
*/
uint32 createBorderItems( const char* breakPointsFileName );
private:
/**
* Help method for copyCoPolFilteringFromMap and createBorderItems.
* Go through this map's gfxData (country polygon) and create
* borderGfxs using the country polygon break points file.
*
* @param breakPointsFileName File with country border break points.
* @param caller Caller of this method for debug.
* @return A vector with country border gfxs.
*/
vector<GfxDataFull*>createBorderGfxs( const char* breakPointsFileName,
const char* caller );
/**
* Help method for mergeStreetSegments().
* Recursive method.
*/
void mergeSSI( list<uint32>& mergedNodes,
set<uint32>& processedSSI,
OldStreetSegmentItem* ssi,
byte nodeNbr,
bool forward );
OldItem* addItemToCountryOverview(OldItem* item, OldGenericMap* otherMap,
uint32 zoomLevel,
GfxData* mapGfx = NULL );
/**
* Reset the item-arrays etc. in this map.
*/
void reset();
/**
* Creates a NEW GfxData based on the GfxData of the specified
* item. The polygons are filtered according to maxDist, and
* only polygons that should be included in the
* OldCountryOverviewMap are added (OldStreetItems may have
* polygons with too low roadclass; these will not be added,
* however if it's optional to have those polygon indices
* added to an output vector).
*
* @param origItem The item who's GfxData should be used
* when creating the new GfxData.
* @param maxDist The maxDist parameter, used when filtering
* polygons. If maxDist is set to MAX_UINT32,
* then no filtering is performed.
* @param skippedPolygons Optional parameter. Output
* parameter. Vector that will be
* filled with the indices of the
* polygons that are not included
* in the returned GfxData..
* @return A new GfxData. Note that the caller of this method
* must handle the destruction of this GfxData.
*/
GfxDataFull* createNewGfxData(OldItem* origItem,
uint32 maxDist = MAX_UINT32,
vector<uint16>* skippedPolygons = NULL);
/**
* Uses a lookuptable so it's not O(n) anymore.
* Get the ID on this overview map when the orignal map- and
* item-ID are known.
*
* Note that buildIDsByOriginalIDsTable() must be called
* in order to create the lookuptable. This is automatically
* done in the internalLoad method.
*
* @param origMapID The ID of the map where the item is located
* "for real".
* @param origItemID The ID of the item on the map where it is
* located "for real".
* @return The ID of the item in this map.
*/
inline uint32 getOverviewIDFast(uint32 origMapID, uint32 origItemID);
/**
* Build the table containing OriginalIDs keyed by the current
* IDs.
*/
void buildIDsByOriginalIDsTable();
/**
* The maximum zoomlevel for the street items.
*/
static const uint32 MAX_STREET_ZOOMLEVEL;
/**
* The maximum zoomlevel for the streetsegment items.
*/
static const uint32 MAX_STREETSEGMENT_ZOOMLEVEL;
struct waterNotice_t {
list<OldWaterItem*> waterItems;
vector<originalIDs_t> origIDs;
float64 area;
char* name;
};
struct forestNotice_t {
list<OldForestItem*> forestItems;
vector<originalIDs_t> origIDs;
float64 area;
char* name;
};
/**
* Checks whether the specified item should be included
* in the OldCountryOverviewMap.
* @param origItem The item to check.
* @param origMap The map that the item comes from.
* @param zoomLevel [IN/OUT] The zoomlevel for the item.
* May be modified by the method.
* @return True if the item should be included,
* false otherwise.
*/
bool toIncludeItem(OldItem* origItem, OldGenericMap* origMap,
uint32& zoomLevel );
/**
* Method used by toIncludeItem to determine if an item is a
* mountain pass to add.
* $return Returns false if the item is not a mountain pass, or
* there is some other reason for not adding it.
*/
bool isMountainPassToAdd( OldItem* item );
/**
* Checks whether the specified polygon of a item
* should be included in the OldCountryOverviewMap.
* NB! Note that this method requires that toIncludeItem()
* has returned true for this item.
*
* @param item The item to check.
* @param poly The polygon of the item.
* @return True if the polygon should be included,
* false otherwise.
*/
bool toIncludePolygon(OldItem* item, uint16 poly);
/**
* A temporary array with the water-items that might be included
* in this overview-map.
*/
vector<waterNotice_t> m_waterCandidates;
struct LessWaterAreaOrder:
public binary_function<waterNotice_t, waterNotice_t, bool> {
bool operator()(waterNotice_t x, waterNotice_t y) {
return (x.area > y.area);
}
};
vector<forestNotice_t> m_forestCandidates;
struct LessForestAreaOrder:
public binary_function<forestNotice_t, forestNotice_t, bool> {
bool operator()(forestNotice_t x, forestNotice_t y) {
return (x.area > y.area);
}
};
/**
* Reverse lookup table for fast getting the underview id given
* the overview id.
*/
map<struct originalIDs_t, uint32> m_idsByOriginalIDs;
/**
* Help method when updating group ids for all items in the map.
* Update groups for one item so they refer to item ids in this
* map istead of item ids in the original maps. If one group
* does not exist in this map it is removed from the item.
* @param item The item for which group ids should be updated.
*/
void updateGroupIDs(OldItem* item);
/**
* Help method when updating names (string indexes) for
* a new overview item. All names are removed from the
* newItem, and then added from otherItem to update the
* string table in this country overview map.
* @param newItem The overview item to update names for.
* @param otherItem The item from which to copy names.
* @param otherMap The map where otherItem is located.
*/
void updateNames(OldItem* newItem,
OldItem* otherItem, OldGenericMap* otherMap);
/**
* Help method when adding one item to this co-map. Removes
* all unwanted groups. Keeps bua and municipal groups. Note
* that groupids in the new item refer to ids in the map from
* which the new item originates.
* @param newItem The new overview item from which unwanted
* groups should be removed.
* @param otherMap The map from which the new item originates.
*/
void removeUnwantedGroups(OldItem* newItem, OldGenericMap* otherMap);
/**
* Help method when adding items to this map. Adds bua and
* municipal groups to newItem if it is a point of interest item.
* The groups are copied from the ssi this poi (other item)
* belongs to in the other map. Note that the group ids will
* be ids in the otherMap (underview IDs possible to translate to
* overview IDs).
*
* @param newItem The overview item (poi) to which bua and
* municipal groups should be added.
* @param otherItem The item corresponding to the new item.
* @param otherMap The map where otherItem is located and
* from which newItem originates.
*/
void addGroupsToPoi(OldItem* newItem,
OldItem* otherItem, OldGenericMap* otherMap);
/**
* Update the attribute values of an overviewItem to the
* values of another item.
* Typically used when applying changes to country overview
* production maps from underview maps.
* This method updates attributes that requires lookup of
* true ids in overview/underview, e.g. groups (from underview
* to overview group id). It also updates names and gfxData.
*
* @param overviewItem The overviewItem to update attributes for.
* @param otherItem The item from which to get attribute values.
* @param otherMap The map where otherItem is located.
*/
void updateAttributes(OldItem* overviewItem,
OldItem* otherItem, OldGenericMap* otherMap);
/**
* Check if a new item (typically added when applying changes
* to production maps) needs to have a unique name. If so, a
* unique name is added to the item and any items that had the
* same (official) name.
* Group ids for these item(s) must be correct before calling
* this method.
*
* @param checkItem The item which (perhaps) should be given
* a unique name.
*/
void updateUniqueNames(OldItem* checkItem);
/**
* Help method in makeUniqueNames. Used for deciding if one name
* of an item in this co-map is among the names in a vector of
* check-names (stringIndex and laguage considered).
*/
bool hasWantedName(OldItem* item, byte nameNbr,
const vector<uint32>& checkStringIdxs,
const vector<LangTypes::language_t>& checkLanguages);
};
// ========================================================================
// Implementation of inlined methods =
inline uint32
GMSCountryOverviewMap::getOverviewIDFast(uint32 origMapID,
uint32 origItemID)
{
originalIDs_t origID;
origID.origMapID = origMapID;
origID.origItemID = origItemID;
map<struct originalIDs_t, uint32>::iterator p =
m_idsByOriginalIDs.find( origID );
if ( p != m_idsByOriginalIDs.end() ) {
return p->second;
} else {
return MAX_UINT32;
}
}
#endif
| [
"daniel.n.pettersson@gmail.com"
] | daniel.n.pettersson@gmail.com |
40998963901eceef48f8a48cdbd2abc7754c6c46 | 9d56137855775b76418d368c824297cf338ae3bd | /master_thesis/numerical_experiments/source/eclipse_project/main.cpp | f4a85985015d77262fa8ae9e768013d771648dc7 | [] | no_license | b1mt3/university | 4f54cc1a7a7185ee734c0cdc2ee8c99447637378 | 70ce942e2a2a6e23127fba8cb1b27cc6d26537c1 | refs/heads/master | 2021-01-18T21:37:11.005099 | 2017-04-02T21:18:16 | 2017-04-02T21:18:16 | 87,016,137 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,448 | cpp | #include <stdio.h>
#include <math.h>
#include "performance.h"
int main (int argc, char **argv) {
// ---------------------------------- DECLARATIONS ----------------------------------
// mode for type of experiments
int mode;
// exit codes for every function to be called
int ex_code;
// input and output files
FILE *ifp, *ofp;
// initial parameters for BSs and UEs
double bs_dens, bs_pw, bs_thr, bs_thn, bs_pex, u_dens, u_pw, u_thr, u_thn, u_pex;
double mu;
// search disk radiuses for BSs and UEs
double r1, r2;
// probability of a loop step
double step_prob, last_step_prob;
// area of integration
double step_area;
// loop variables
int i, k;
double j, m, l;
// ----------------------------------- EXECUTIONS ------------------------------------
ifp = open_input ("ipf_sh0.txt", ifp);
if (ifp == 0) { return -1; }
else {
ofp = open_output ("ofp_sh0.txt", ofp);
if (ofp == 0) { return -2; }
}
mode = select_mode (ifp);
last_step_prob = 0.000;
if (mode == 0) {
ex_code = cell_parms_fill (ifp, &bs_dens, &bs_pw, &bs_pex, &bs_thn, &bs_thr);
if (ex_code == -4) { fclose (ifp); fclose (ofp); return -5; }
else {
for (j=0.00000001; j<=1; j*=2){
r1 = radius_calc (bs_pw, bs_thn, bs_thr, bs_pex);
step_prob = cell_perf_calc (j, r1);
if (fabs(step_prob-last_step_prob)<0.001) continue;
else { last_step_prob = step_prob; }
if (step_prob >= 0.999) { step_prob = 1.000; break;}
ex_code = write_output (ofp, j, step_prob);
}
return 1;
}
}
if (mode == 1) {
ex_code = d2d_parms_fill (ifp, &bs_dens, &bs_pw, &bs_pex, &bs_thn, &bs_thr, &u_dens, &u_pw, &u_pex, &u_thn, &u_thr);
if (ex_code == -4) { fclose (ifp); fclose (ofp); return -5; }
else {
r1 = radius_calc (bs_pw, bs_thn, bs_thr, bs_pex);
r2 = radius_calc (u_pw, u_thn, u_thr, u_pex);
for (m=0.00000001,l=0.000001;m<=1,l<=1000;m*=2,l*=2){
for (j=r1+0.001; j<=r1+r2; j++) {
step_area = area_over (r1, r2, j);
step_prob = cell_perf_calc (m, r1);
step_prob += calc_dev (l, m, r1, j, step_area);
if (fabs(last_step_prob - step_prob)<0.001) { continue; }
if (step_prob >= 0.999) { step_prob = 1.000; break; }
//m = j;
//k = m*10;
//if (k%10==0){ last_step_prob = step_prob; ex_code = write_output (ofp, j, step_prob); }
last_step_prob = step_prob;
}
if (step_prob==1.000) { ex_code = write_output_d2d (ofp, m, l, step_prob); break; }
ex_code = write_output_d2d (ofp, m, l, step_prob);
}
return 2;
}
}
if (mode == 2) {
ex_code = cell_fad_fill (ifp, &bs_dens, &bs_pw, &bs_pex, &bs_thn, &bs_thr, &mu);
if (ex_code == -4) { fclose (ifp); fclose (ofp); return -5;}
else {
for (l=0.0000000001; l<=1; l*=10){
for (j=0.001; j<=1 ; j+=0.001) {
step_prob = cell_fad_calc (bs_dens, l, bs_thr, bs_thn, bs_pex, bs_pw, j);
if (fabs(last_step_prob - step_prob)<0.001) { continue; }
if (step_prob >= 0.999) { step_prob = 1.000; break; }
// if (step_prob <= 0.001) { break; }
last_step_prob = step_prob;
// ex_code = write_output (ofp, j, step_prob);
}
if (step_prob==1.000) { ex_code = write_output (ofp, l, step_prob); break; }
ex_code = write_output (ofp, l, step_prob);
}
return 3;
}
}
// TODO: multiple hop with fading (mode 4)
else {
fclose (ifp);
fclose (ofp);
return -3;
}
return 0;
}
| [
"gulsaid89m@gmail.com"
] | gulsaid89m@gmail.com |
fda8ab06d8c3fc7d5ad31563a9667b60a79281ac | 82f8717f3985f49f2627355a82de8bf9348eb422 | /CocoaEngine/cpp/platform/windows/Win32Window.cpp | 9e8cef83b5adba8a72ef8ed8f63f9642a763e6a9 | [
"MIT"
] | permissive | xdinos/Cocoa | 5996ffd4d900dc20512deb01dcf0799d7f23548e | 4c197fd1c1e71a2cccdd11bc0bd67d2d2f939ea0 | refs/heads/master | 2023-02-26T16:17:55.673551 | 2021-01-02T01:29:38 | 2021-01-02T01:29:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36,637 | cpp | // TODO: This code is now deprecated in favor of GLFW, may come back to it at some point
#if 0
#include "platform/Window.h"
#include "jade/util/Log.h"
#include "jade/events/Input.h"
#include <windows.h>
#include <windowsx.h>
#include <stdio.h>
#include <io.h>
#define GL_LITE_IMPLEMENTATION
#include <gl/gl3w.h>
#undef GL_LITE_IMPLEMENTATION
namespace Jade {
bool Win32Window::m_Initialized = false;
HINSTANCE Win32Window::m_HINSTANCE = {};
HGLRC Win32Window::m_GlobalRC = NULL;
PFNWGLSWAPINTERVALEXTPROC Win32Window::wglSwapIntervalEXT = nullptr;
PFNWGLCHOOSEPIXELFORMATARBPROC Win32Window::wglChoosePixelFormatARB = nullptr;
PFNWGLCREATECONTEXTATTRIBSARBPROC Win32Window::wglCreateContextAttribsARB = nullptr;
void Win32Window::DefaultResizeCallback(HWND wnd, int width, int height) {
for (Window* window : s_Windows) {
Win32Window* win = static_cast<Win32Window*>(window);
if (win->WND == wnd) {
win->m_Width = width;
win->m_Height = height;
if (window->m_ResizeCallback != nullptr) {
window->m_ResizeCallback(window, width, height);
}
break;
}
}
}
void Win32Window::DefaultMouseButtonCallback(HWND wnd, int button, int action, int mods) {
for (Window* window : s_Windows) {
Win32Window* win = static_cast<Win32Window*>(window);
if (win->WND == wnd) {
if (window->m_MouseButtonCallback != nullptr) {
window->m_MouseButtonCallback(window, button, action, mods);
}
break;
}
}
}
void Win32Window::DefaultCursorCallback(HWND wnd, double xpos, double ypos) {
for (Window* window : s_Windows) {
Win32Window* win = static_cast<Win32Window*>(window);
if (win->WND == wnd) {
if (window->m_CursorCallback != nullptr) {
window->m_CursorCallback(window, xpos, ypos);
}
break;
}
}
}
void Win32Window::DefaultScrollCalback(HWND wnd, double xoffset, double yoffset) {
for (Window* window : s_Windows) {
Win32Window* win = static_cast<Win32Window*>(window);
if (win->WND == wnd) {
if (window->m_ScrollCallback != nullptr) {
window->m_ScrollCallback(window, xoffset, yoffset);
}
break;
}
}
}
void Win32Window::DefaultKeyCallback(HWND wnd, int key, int scancode, int action, int mods) {
for (Window* window : s_Windows) {
Win32Window* win = static_cast<Win32Window*>(window);
if (win->WND == wnd) {
if (window->m_KeyCallback != nullptr) {
window->m_KeyCallback(window, key, scancode, action, mods);
}
break;
}
}
}
void Win32Window::DefaultCloseCallback(HWND wnd) {
for (Window* window : s_Windows) {
Win32Window* win = static_cast<Win32Window*>(window);
if (win->WND == wnd) {
window->m_WindowShouldClose = true;
if (window->m_CloseCallback != nullptr) {
window->m_CloseCallback(window);
}
break;
}
}
}
Window* Win32Window::GetWindow(HWND window) {
for (Window* win : s_Windows) {
Win32Window* win32Win = static_cast<Win32Window*>(win);
if (win32Win->WND == window) {
return win;
}
}
return nullptr;
}
void Win32Window::ShowMessage(LPCSTR message) {
MessageBoxA(0, message, "Win32Window::Create", MB_ICONERROR);
}
static HICON CreateIconFromBytes(HDC DC, int width, int height, uint32* bytes) {
HICON hIcon = NULL;
ICONINFO iconInfo = {
TRUE, // fIcon, set to true if this is an icon, set to false if this is a cursor
NULL, // xHotspot, set to null for icons
NULL, // yHotspot, set to null for icons
NULL, // Monochrome bitmap mask, set to null initially
NULL // Color bitmap mask, set to null initially
};
uint32* rawBitmap = new uint32[width * height];
ULONG uWidth = (ULONG)width;
ULONG uHeight = (ULONG)height;
uint32* bitmapPtr = rawBitmap;
for (ULONG y = 0; y < uHeight; y++) {
for (ULONG x = 0; x < uWidth; x++) {
// Bytes are expected to be in RGB order (8 bits each)
// Swap G and B bytes, so that it is in BGR order for windows
uint32 byte = bytes[x + y * width];
uint8 A = (byte & 0xff000000) >> 24;
uint8 R = (byte & 0xff0000) >> 16;
uint8 G = (byte & 0xff00) >> 8;
uint8 B = (byte & 0xff);
*bitmapPtr = (A << 24) | (R << 16) | (G << 8) | B;
bitmapPtr++;
}
}
iconInfo.hbmColor = CreateBitmap(width, height, 1, 32, rawBitmap);
if (iconInfo.hbmColor) {
iconInfo.hbmMask = CreateCompatibleBitmap(DC, width, height);
if (iconInfo.hbmMask) {
hIcon = CreateIconIndirect(&iconInfo);
if (hIcon == NULL) {
Log::Warning("Failed to create icon.");
}
DeleteObject(iconInfo.hbmMask);
} else {
Log::Warning("Failed to create color mask.");
}
DeleteObject(iconInfo.hbmColor);
} else {
Log::Warning("Failed to create bitmap mask.");
}
delete[] rawBitmap;
return hIcon;
}
void Win32Window::_SetWindowIcon(int count, const WindowImage* images) {
for (int i=0; i < count; i++) {
WindowImage image = images[i];
HICON icon = CreateIconFromBytes(DC, image.m_Width, image.m_Height, image.m_Pixels);
m_Icons.push_back(icon);
SendMessage(WND, WM_SETICON, ICON_SMALL, (LPARAM)icon);
SendMessage(WND, WM_SETICON, ICON_BIG, (LPARAM)icon);
SendMessage(WND, WM_SETICON, ICON_SMALL2, (LPARAM)icon);
}
}
static LRESULT CALLBACK WindowProcedure(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
#define LAST(k,n) ((k) & ((1<<(n))-1))
#define MID(k,m,n) LAST((k)>>(m),((n)-(m)))
LRESULT result = 0;
static bool modifierIsPressed = 0;
static int modifierKey = 0;
switch(message) {
case WM_KEYUP:
case WM_KEYDOWN: {
//int repeatCount = MID(lParam, 0, 16);
int wScanCode = MID(lParam, 16, 24);
//int wExtendedKey = MID(lParam, 24, 25);
//int wContextCode = MID(lParam, 29, 30);
int wPrevState = MID(lParam, 30, 31);
int wTransitionState = MID(lParam, 31, 32); // 1 for keyup -- 0 for keydown
int action = wTransitionState == 1 ? JADE_RELEASE : JADE_PRESS;
if (action == JADE_PRESS && wPrevState == 1) {
action = JADE_REPEAT;
}
if (action == JADE_RELEASE && wParam == modifierKey) {
modifierKey = 0;
}
//Log::Info("Repeat: %d scanCode: %d extendedKey: %d contextCode: %d prevState: %d transitionState: %d",
// repeatCount, wScanCode, wExtendedKey, wContextCode, wPrevState, wTransitionState);
switch (wParam) {
case (VK_ESCAPE): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_ESCAPE, wScanCode, action, modifierKey);
break;
}
case (VK_SPACE): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_SPACE, wScanCode, action, modifierKey);
break;
}
case (VK_BACK): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_BACKSPACE, wScanCode, action, modifierKey);
break;
}
case (VK_TAB): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_TAB, wScanCode, action, modifierKey);
break;
}
case (VK_CLEAR): {
Jade::Log::Assert(false, "Pressed unkown key 'clear'");
break;
}
case (VK_RETURN): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_ENTER, wScanCode, action, modifierKey);
break;
}
case (VK_LSHIFT): {
modifierIsPressed = action == JADE_PRESS;
modifierKey = JADE_MOD_SHIFT;
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_LEFT_SHIFT, wScanCode, action, modifierKey);
break;
}
case (VK_RSHIFT): {
modifierIsPressed = action == JADE_PRESS;
modifierKey = JADE_MOD_SHIFT;
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_RIGHT_SHIFT, wScanCode, action, modifierKey);
break;
}
case (VK_LCONTROL): {
modifierIsPressed = action == JADE_PRESS;
modifierKey = JADE_MOD_CONTROL;
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_LEFT_CONTROL, wScanCode, action, modifierKey);
break;
}
case (VK_RCONTROL): {
modifierIsPressed = action == JADE_PRESS;
modifierKey = JADE_MOD_CONTROL;
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_RIGHT_CONTROL, wScanCode, action, modifierKey);
break;
}
case (VK_LMENU): {
modifierIsPressed = action == JADE_PRESS;
modifierKey = JADE_MOD_ALT;
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_LEFT_ALT, wScanCode, action, modifierKey);
break;
}
case (VK_RMENU): {
modifierIsPressed = action == JADE_PRESS;
modifierKey = JADE_MOD_ALT;
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_RIGHT_ALT, wScanCode, action, modifierKey);
break;
}
case (VK_PAUSE): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_PAUSE, wScanCode, action, modifierKey);
break;
} case (VK_CAPITAL): {
modifierIsPressed = action == JADE_PRESS;
modifierKey = JADE_MOD_CAPS_LOCK;
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_CAPS_LOCK, wScanCode, action, modifierKey);
break;
} case (VK_PRIOR): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_PAGE_UP, wScanCode, action, modifierKey);
break;
} case (VK_NEXT): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_PAGE_DOWN, wScanCode, action, modifierKey);
break;
} case (VK_END): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_END, wScanCode, action, modifierKey);
break;
} case (VK_HOME): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_HOME, wScanCode, action, modifierKey);
break;
} case (VK_LEFT): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_LEFT, wScanCode, action, modifierKey);
break;
} case (VK_UP): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_UP, wScanCode, action, modifierKey);
break;
} case (VK_RIGHT): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_RIGHT, wScanCode, action, modifierKey);
break;
} case (VK_DOWN): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_DOWN, wScanCode, action, modifierKey);
break;
} case (VK_SNAPSHOT): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_PRINT_SCREEN, wScanCode, action, modifierKey);
break;
} case (VK_INSERT): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_INSERT, wScanCode, action, modifierKey);
break;
} case (VK_DELETE): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_DELETE, wScanCode, action, modifierKey);
break;
} case (0x30): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_0, wScanCode, action, modifierKey);
break;
} case (0x31): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_1, wScanCode, action, modifierKey);
break;
} case (0x32): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_2, wScanCode, action, modifierKey);
break;
} case (0x33): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_3, wScanCode, action, modifierKey);
break;
} case (0x34): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_4, wScanCode, action, modifierKey);
break;
} case (0x35): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_5, wScanCode, action, modifierKey);
break;
} case (0x36): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_6, wScanCode, action, modifierKey);
break;
} case (0x37): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_7, wScanCode, action, modifierKey);
break;
} case (0x38): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_8, wScanCode, action, modifierKey);
break;
} case (0x39): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_9, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD0): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_0, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD1): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_1, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD2): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_2, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD3): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_3, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD4): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_4, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD5): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_5, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD6): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_6, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD7): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_7, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD8): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_8, wScanCode, action, modifierKey);
break;
} case (VK_NUMPAD9): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_NUMPAD_9, wScanCode, action, modifierKey);
break;
} case (VK_F1): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F1, wScanCode, action, modifierKey);
break;
} case (VK_F2): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F2, wScanCode, action, modifierKey);
break;
} case (VK_F3): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F3, wScanCode, action, modifierKey);
break;
} case (VK_F4): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F4, wScanCode, action, modifierKey);
break;
} case (VK_F5): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F5, wScanCode, action, modifierKey);
break;
} case (VK_F6): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F6, wScanCode, action, modifierKey);
break;
} case (VK_F7): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F7, wScanCode, action, modifierKey);
break;
} case (VK_F8): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F8, wScanCode, action, modifierKey);
break;
} case (VK_F9): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F9, wScanCode, action, modifierKey);
break;
} case (VK_F10): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F10, wScanCode, action, modifierKey);
break;
} case (VK_F11): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F11, wScanCode, action, modifierKey);
break;
} case (VK_F12): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F12, wScanCode, action, modifierKey);
break;
} case (VK_F13): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F13, wScanCode, action, modifierKey);
break;
} case (VK_F14): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F14, wScanCode, action, modifierKey);
break;
} case (VK_F15): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F15, wScanCode, action, modifierKey);
break;
} case (VK_F16): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F16, wScanCode, action, modifierKey);
break;
} case (VK_F17): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F17, wScanCode, action, modifierKey);
break;
} case (VK_F18): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F18, wScanCode, action, modifierKey);
break;
} case (VK_F19): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F19, wScanCode, action, modifierKey);
break;
} case (VK_F20): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F20, wScanCode, action, modifierKey);
break;
} case (VK_F21): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F21, wScanCode, action, modifierKey);
break;
} case (VK_F22): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F22, wScanCode, action, modifierKey);
break;
} case (VK_F23): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F23, wScanCode, action, modifierKey);
break;
} case (VK_F24): {
Jade::Win32Window::DefaultKeyCallback(hWnd, JADE_KEY_F24, wScanCode, action, modifierKey);
break;
}
case('A'):
case('B'):
case('C'):
case('D'):
case('E'):
case('F'):
case('G'):
case('H'):
case('I'):
case('J'):
case('K'):
case('L'):
case('M'):
case('N'):
case('O'):
case('P'):
case('Q'):
case('R'):
case('S'):
case('T'):
case('U'):
case('V'):
case('W'):
case('X'):
case('Y'):
case('Z'): {
Jade::Win32Window::DefaultKeyCallback(hWnd, (int)wParam, wScanCode, action, modifierKey);
break;
}
}
break;
}
// Mouse button events
case WM_LBUTTONDOWN:
case WM_RBUTTONDOWN:
case WM_MBUTTONDOWN: {
int button = wParam == MK_LBUTTON ? JADE_MOUSE_BUTTON_LEFT : wParam == MK_RBUTTON ? JADE_MOUSE_BUTTON_RIGHT : wParam == MK_MBUTTON ? JADE_MOUSE_BUTTON_MIDDLE : -1;
if (button != -1) {
Jade::Win32Window::DefaultMouseButtonCallback(hWnd, button, JADE_PRESS, modifierKey);
}
break;
}
case WM_LBUTTONDBLCLK:
case WM_RBUTTONDBLCLK:
case WM_MBUTTONDBLCLK: {
int button = wParam == MK_LBUTTON ? JADE_MOUSE_BUTTON_LEFT : wParam == MK_RBUTTON ? JADE_MOUSE_BUTTON_RIGHT : wParam == MK_MBUTTON ? JADE_MOUSE_BUTTON_MIDDLE : -1;
if (button != -1) {
Jade::Win32Window::DefaultMouseButtonCallback(hWnd, button, JADE_DOUBLE_CLICK, modifierKey);
}
break;
}
case WM_LBUTTONUP:
case WM_RBUTTONUP:
case WM_MBUTTONUP: {
int button = message == WM_LBUTTONUP ? JADE_MOUSE_BUTTON_LEFT : message == WM_RBUTTONUP ? JADE_MOUSE_BUTTON_RIGHT : message == WM_MBUTTONUP ? JADE_MOUSE_BUTTON_MIDDLE : -1;
if (button != -1) {
Jade::Win32Window::DefaultMouseButtonCallback(hWnd, button, JADE_RELEASE, modifierKey);
}
break;
}
// Mouse move events
case WM_MOUSEMOVE: {
int xpos = GET_X_LPARAM(lParam);
int ypos = GET_Y_LPARAM(lParam);
Jade::Win32Window::DefaultCursorCallback(hWnd, (double)xpos, (double)ypos);
break;
}
// Mouse scroll events
case WM_MOUSEWHEEL: {
int wheelDelta = GET_WHEEL_DELTA_WPARAM(wParam) / WHEEL_DELTA;
// TODO: Find out if horizontal scroll is supported by windows
Jade::Win32Window::DefaultScrollCalback(hWnd, 0.0, (double)wheelDelta);
break;
}
// Window resize events
case WM_SIZE: {
RECT rect;
GetWindowRect(hWnd, &rect);
int newHeight = rect.bottom - rect.top;
int newWidth = rect.right - rect.left;
Jade::Win32Window::DefaultResizeCallback(hWnd, newWidth, newHeight);
break;
}
// Window move events
case WM_MOVE: {
int xpos = (int)(short)LOWORD(lParam);
int ypos = (int)(short)HIWORD(lParam);
Window* win = Jade::Win32Window::GetWindow(hWnd);
Jade::Window::SetWindowPos(win, xpos, ypos);
break;
}
case WM_QUIT:
case WM_CLOSE: {
Jade::Win32Window::DefaultCloseCallback(hWnd);
PostQuitMessage(1);
break;
}
default: {
result = DefWindowProcA(hWnd, message, wParam, lParam);
}
}
return result;
}
static ATOM registerClass(HINSTANCE hInstance) {
WNDCLASSEXA wcex;
ZeroMemory(&wcex, sizeof(wcex));
wcex.cbSize = sizeof(wcex);
wcex.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
wcex.lpfnWndProc = WindowProcedure;
wcex.hInstance = hInstance;
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hIcon = NULL;
wcex.hIconSm = NULL;
wcex.lpszClassName = "Core";
return RegisterClassExA(&wcex);
}
void Win32Window::_SwapBuffers() {
::SwapBuffers(DC);
}
void Win32Window::_Destroy() {
wglMakeCurrent(NULL, NULL);
if (RC) {
wglDeleteContext(RC);
}
if (DC) {
ReleaseDC(WND, DC);
}
if (WND) {
DestroyWindow(WND);
}
}
void Win32Window::_Hide() {
if (WND) {
ShowWindow(WND, SW_HIDE);
}
}
void Win32Window::_Show() {
ShowWindow(WND, SW_SHOWNORMAL);
if (s_InitFocusOnShow) {
SetFocus(WND);
}
}
void Win32Window::_PollEvents() {
MSG msg = {0, 0, 0, 0, 0, NULL};
while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
void Win32Window::_SetWindowPos(int x, int y) {
m_XPos = x;
m_YPos = y;
HWND zIndex = HWND_NOTOPMOST;
if (s_InitFloating) {
zIndex = HWND_TOP;
}
::SetWindowPos(WND, zIndex, m_XPos, m_YPos, m_Width, m_Height, 0);
}
void Win32Window::_SetWindowSize(int width, int height) {
m_Width = width;
m_Height = height;
HWND zIndex = HWND_NOTOPMOST;
if (s_InitFloating) {
zIndex = HWND_TOP;
}
::SetWindowPos(WND, zIndex, m_XPos, m_YPos, m_Width, m_Height, 0);
}
void Win32Window::_SetWindowTitle(const char* title) {
if (!::SetWindowTextA(WND, title)) {
Log::Warning("Unable to set window title: %d", GetLastError());
} else {
::InvalidateRect(WND, NULL, FALSE);
}
}
void Win32Window::_MakeContextCurrent() {
if (!wglMakeCurrent(this->DC, this->RC)) {
ShowMessage("wglMakeCurrent() failed.");
}
}
void Win32Window::InitWin32(HINSTANCE hInstance) {
Win32Window::m_HINSTANCE = hInstance;
registerClass(hInstance);
Win32Window::m_Initialized = true;
}
void Win32Window::InitWin32() {
Win32Window::m_HINSTANCE = GetModuleHandle(NULL);
registerClass(Win32Window::m_HINSTANCE);
Win32Window::m_Initialized = true;
// Proceed to create fake Win32Window...
HWND fakeWND = CreateWindowExA(
0, // dwExStyle
"Core", "Fake Win32Window", // Win32Window class, Title
WS_CLIPSIBLINGS | WS_CLIPCHILDREN, // Style
0, 0, // Position x, y
1, 1, // Width, Height
NULL, NULL, // Parent Win32Window, Menu
m_HINSTANCE, NULL); // Instnce, Param
HDC fakeDC = GetDC(fakeWND);
PIXELFORMATDESCRIPTOR fakePFD;
ZeroMemory(&fakePFD, sizeof(fakePFD));
fakePFD.nSize = sizeof(fakePFD);
fakePFD.nVersion = 1;
fakePFD.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
fakePFD.iPixelType = PFD_TYPE_RGBA;
fakePFD.cColorBits = 32;
fakePFD.cAlphaBits = 8;
fakePFD.cDepthBits = 24;
int fakePFDID = ChoosePixelFormat(fakeDC, &fakePFD);
if (fakePFDID == NULL) {
ShowMessage("ChoosePixelFormat() failed.");
//return nullptr;
}
if (SetPixelFormat(fakeDC, fakePFDID, &fakePFD) == false) {
ShowMessage("SetPixelFormat() failed.");
//return nullptr;
}
HGLRC fakeRC = wglCreateContext(fakeDC); // Rendering context
if (fakeRC == NULL) {
ShowMessage("wglCreateContext() failed.");
//return nullptr;
}
if (wglMakeCurrent(fakeDC, fakeRC) == false) {
ShowMessage("wglMakeCurrent() failed");
//return nullptr;
}
wglChoosePixelFormatARB = reinterpret_cast<PFNWGLCHOOSEPIXELFORMATARBPROC>(wglGetProcAddress("wglChoosePixelFormatARB"));
if (wglChoosePixelFormatARB == nullptr) {
ShowMessage("wglGetProcAdress() failed.");
//return nullptr;
}
wglCreateContextAttribsARB = reinterpret_cast<PFNWGLCREATECONTEXTATTRIBSARBPROC>(wglGetProcAddress("wglCreateContextAttribsARB"));
if (wglCreateContextAttribsARB == nullptr) {
ShowMessage("wglGetProcAddress() failed.");
//return nullptr;
}
if (!glLiteInit()) {
ShowMessage("glLiteInit() failed.");
//return nullptr;
}
wglMakeCurrent(NULL, NULL);
wglDeleteContext(fakeRC);
ReleaseDC(fakeWND, fakeDC);
DestroyWindow(fakeWND);
}
void* Win32Window::_GetWindowHandle() {
return WND;
}
Window* Win32Window::CreateWindow(int width, int height, const char* title) {
Log::Assert(Win32Window::m_Initialized, "You must initialize a Win32Window before creating it.");
Win32Window* win = new Win32Window();
win->m_Width = width;
win->m_Height = height;
if (s_InitAllocConsole) {
// Allocate console Win32Window
FreeConsole();
bool success = AllocConsole();
if (!success) {
Log::Error("Could not allocate console.");
Log::Assert(false, "%d", GetLastError());
}
freopen("CONOUT$", "w+", stdout);
Log::Info("Console Win32Window created.");
}
DWORD winFlags = WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
if (s_InitDecorated) {
winFlags |= WS_BORDER | WS_CAPTION | WS_SYSMENU | WS_MAXIMIZEBOX | WS_MINIMIZEBOX;
}
if (s_InitIconified) {
winFlags |= WS_ICONIC;
}
if (s_InitMaximized) {
winFlags |= WS_MAXIMIZE;
}
if (s_InitResizable) {
winFlags |= WS_SIZEBOX;
}
if (s_InitVisible) {
winFlags |= WS_VISIBLE;
}
if (s_InitAutoIconify) {
Log::Warning("Auto Iconify flag used. But it has not been implemented yet.");
}
if (s_InitTransparentFramebuffer) {
Log::Warning("Transparent framebuffer flag used. But it has not been implemented yet.");
}
if (s_InitHovered) {
Log::Warning("Hovered flag used. But it has not been implemented yet.");
}
DWORD exWinFlags = 0;
if (s_InitFloating) {
exWinFlags |= WS_EX_TOPMOST;
}
// NOTE: Set process as DPI aware
SetProcessDpiAwarenessContext(DPI_AWARENESS_CONTEXT_SYSTEM_AWARE);
win->WND = CreateWindowExA(
exWinFlags, // dwExStyle
"Core", title, // Win32Window class, Title
winFlags, // Style
CW_USEDEFAULT, CW_USEDEFAULT, // Position x, y
width, height, // Width, Height
NULL, NULL, // Parent Win32Window, Menu
win->m_HINSTANCE, NULL // Instnce, Param
);
win->DC = GetDC(win->WND);
if (s_InitFocused) {
SetFocus(win->WND);
}
// TODO: Take into account window position for unmaximized windows
if (s_InitCenterCursor) {
SetCursorPos(width / 2, height / 2);
}
const int pixelAttribs[] = {
WGL_DRAW_TO_WINDOW_ARB, GL_TRUE,
WGL_SUPPORT_OPENGL_ARB, GL_TRUE,
WGL_DOUBLE_BUFFER_ARB, GL_TRUE,
WGL_PIXEL_TYPE_ARB, WGL_TYPE_RGBA_ARB,
WGL_ACCELERATION_ARB, WGL_FULL_ACCELERATION_ARB,
WGL_COLOR_BITS_ARB, 32,
WGL_ALPHA_BITS_ARB, 8,
WGL_DEPTH_BITS_ARB, 24,
WGL_STENCIL_BITS_ARB, 8,
WGL_SAMPLE_BUFFERS_ARB, GL_TRUE,
WGL_SAMPLES_ARB, 4,
0
};
int pixelFormatID; UINT numFormats;
bool status = Win32Window::wglChoosePixelFormatARB(win->DC, pixelAttribs, NULL, 1, &pixelFormatID, &numFormats);
if (status == false || numFormats == 0) {
ShowMessage("wglChoosePixelFormatARB() failed.");
return nullptr;
}
PIXELFORMATDESCRIPTOR PFD;
DescribePixelFormat(win->DC, pixelFormatID, sizeof(PFD), &PFD);
SetPixelFormat(win->DC, pixelFormatID, &PFD);
if (Win32Window::m_GlobalRC == NULL) {
const int major_min = 4;
const int minor_min = 5;
int contextAttribs[] = {
WGL_CONTEXT_MAJOR_VERSION_ARB, major_min,
WGL_CONTEXT_MINOR_VERSION_ARB, minor_min,
WGL_CONTEXT_PROFILE_MASK_ARB, WGL_CONTEXT_CORE_PROFILE_BIT_ARB,
0
};
win->RC = wglCreateContextAttribsARB(win->DC, 0, contextAttribs);
if (win->RC == NULL) {
ShowMessage("wglCreateContextAttribsARB() failed.");
return nullptr;
}
} else {
win->RC = Win32Window::m_GlobalRC;
}
win->_MakeContextCurrent();
wglSwapIntervalEXT = reinterpret_cast<PFNWGLSWAPINTERVALEXTPROC>(wglGetProcAddress("wglSwapIntervalEXT"));
if (wglSwapIntervalEXT == nullptr) {
ShowMessage("wglSwapIntervalEXT() not found. Cannot enable vsync.");
return nullptr;
}
wglSwapIntervalEXT(Window::s_SwapInterval);
//SetWindowTextA(win->WND, (LPCSTR(glGetString(GL_VERSION))));
if (s_InitIconified) {
ShowWindow(win->WND, SW_SHOWMINIMIZED);
} else if (s_InitMaximized) {
ShowWindow(win->WND, SW_MAXIMIZE);
} else {
win->_Show();
}
const GLubyte* vendor = glGetString(GL_VENDOR); // Returns the vendor
const GLubyte* renderer = glGetString(GL_RENDERER); // Returns a hint to the model
Log::Info("Renderer: %s", renderer);
Log::Info("Vendor: %s", vendor);
return win;
}
void Win32Window::UpdateSwapInterval() {
wglSwapIntervalEXT(Window::s_SwapInterval);
}
}
#endif | [
"ambrosiogabe@gmail.com"
] | ambrosiogabe@gmail.com |
edd02b5aa881b8efad6da42c4e1eaffa9a86159a | 679ac59c661c2c955df67272d309a9f63e5b8e33 | /src/qt/rpcconsole.cpp | 2ca5e1a47bf0534862ca66e3cfd53838650f8d65 | [
"MIT"
] | permissive | GenesysCrypto/GenesysCoin | b00ce9618ab0ce22f6ae93a6a4a3b1a4cc75837a | c65ae0e25c7361bfbad4ae21d9317ec4e819ea6a | refs/heads/master | 2021-01-21T21:39:38.518841 | 2016-03-21T12:47:11 | 2016-03-21T12:47:11 | 37,324,057 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,135 | cpp | #include "rpcconsole.h"
#include "ui_rpcconsole.h"
#include "clientmodel.h"
#include "guiutil.h"
#include "rpcserver.h"
#include "rpcclient.h"
#include <QTime>
#include <QThread>
#include <QKeyEvent>
#include <QUrl>
#include <QScrollBar>
#include <openssl/crypto.h>
// TODO: add a scrollback limit, as there is currently none
// TODO: make it possible to filter out categories (esp debug messages when implemented)
// TODO: receive errors and debug messages through ClientModel
const int CONSOLE_HISTORY = 50;
const QSize ICON_SIZE(24, 24);
const int INITIAL_TRAFFIC_GRAPH_MINS = 30;
const struct {
const char *url;
const char *source;
} ICON_MAPPING[] = {
{"cmd-request", ":/icons/tx_input"},
{"cmd-reply", ":/icons/tx_output"},
{"cmd-error", ":/icons/tx_output"},
{"misc", ":/icons/tx_inout"},
{NULL, NULL}
};
/* Object for executing console RPC commands in a separate thread.
*/
class RPCExecutor : public QObject
{
Q_OBJECT
public slots:
void start();
void request(const QString &command);
signals:
void reply(int category, const QString &command);
};
#include "rpcconsole.moc"
void RPCExecutor::start()
{
// Nothing to do
}
/**
* Split genesyscoin command line into a list of arguments. Aims to emulate \c bash and friends.
*
* - Arguments are delimited with whitespace
* - Extra whitespace at the beginning and end and between arguments will be ignored
* - Text can be "double" or 'single' quoted
* - The backslash \c \ is used as escape character
* - Outside quotes, any character can be escaped
* - Within double quotes, only escape \c " and backslashes before a \c " or another backslash
* - Within single quotes, no escaping is possible and no special interpretation takes place
*
* @param[out] args Parsed arguments will be appended to this list
* @param[in] strCommand Command line to split
*/
bool parseCommandLine(std::vector<std::string> &args, const std::string &strCommand)
{
enum CmdParseState
{
STATE_EATING_SPACES,
STATE_ARGUMENT,
STATE_SINGLEQUOTED,
STATE_DOUBLEQUOTED,
STATE_ESCAPE_OUTER,
STATE_ESCAPE_DOUBLEQUOTED
} state = STATE_EATING_SPACES;
std::string curarg;
foreach(char ch, strCommand)
{
switch(state)
{
case STATE_ARGUMENT: // In or after argument
case STATE_EATING_SPACES: // Handle runs of whitespace
switch(ch)
{
case '"': state = STATE_DOUBLEQUOTED; break;
case '\'': state = STATE_SINGLEQUOTED; break;
case '\\': state = STATE_ESCAPE_OUTER; break;
case ' ': case '\n': case '\t':
if(state == STATE_ARGUMENT) // Space ends argument
{
args.push_back(curarg);
curarg.clear();
}
state = STATE_EATING_SPACES;
break;
default: curarg += ch; state = STATE_ARGUMENT;
}
break;
case STATE_SINGLEQUOTED: // Single-quoted string
switch(ch)
{
case '\'': state = STATE_ARGUMENT; break;
default: curarg += ch;
}
break;
case STATE_DOUBLEQUOTED: // Double-quoted string
switch(ch)
{
case '"': state = STATE_ARGUMENT; break;
case '\\': state = STATE_ESCAPE_DOUBLEQUOTED; break;
default: curarg += ch;
}
break;
case STATE_ESCAPE_OUTER: // '\' outside quotes
curarg += ch; state = STATE_ARGUMENT;
break;
case STATE_ESCAPE_DOUBLEQUOTED: // '\' in double-quoted text
if(ch != '"' && ch != '\\') curarg += '\\'; // keep '\' for everything but the quote and '\' itself
curarg += ch; state = STATE_DOUBLEQUOTED;
break;
}
}
switch(state) // final state
{
case STATE_EATING_SPACES:
return true;
case STATE_ARGUMENT:
args.push_back(curarg);
return true;
default: // ERROR to end in one of the other states
return false;
}
}
void RPCExecutor::request(const QString &command)
{
std::vector<std::string> args;
if(!parseCommandLine(args, command.toStdString()))
{
emit reply(RPCConsole::CMD_ERROR, QString("Parse error: unbalanced ' or \""));
return;
}
if(args.empty())
return; // Nothing to do
try
{
std::string strPrint;
// Convert argument list to JSON objects in method-dependent way,
// and pass it along with the method name to the dispatcher.
json_spirit::Value result = tableRPC.execute(
args[0],
RPCConvertValues(args[0], std::vector<std::string>(args.begin() + 1, args.end())));
// Format result reply
if (result.type() == json_spirit::null_type)
strPrint = "";
else if (result.type() == json_spirit::str_type)
strPrint = result.get_str();
else
strPrint = write_string(result, true);
emit reply(RPCConsole::CMD_REPLY, QString::fromStdString(strPrint));
}
catch (json_spirit::Object& objError)
{
try // Nice formatting for standard-format error
{
int code = find_value(objError, "code").get_int();
std::string message = find_value(objError, "message").get_str();
emit reply(RPCConsole::CMD_ERROR, QString::fromStdString(message) + " (code " + QString::number(code) + ")");
}
catch(std::runtime_error &) // raised when converting to invalid type, i.e. missing code or message
{ // Show raw JSON object
emit reply(RPCConsole::CMD_ERROR, QString::fromStdString(write_string(json_spirit::Value(objError), false)));
}
}
catch (std::exception& e)
{
emit reply(RPCConsole::CMD_ERROR, QString("Error: ") + QString::fromStdString(e.what()));
}
}
RPCConsole::RPCConsole(QWidget *parent) :
QDialog(parent),
ui(new Ui::RPCConsole),
historyPtr(0)
{
ui->setupUi(this);
#ifndef Q_OS_MAC
ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));
ui->showCLOptionsButton->setIcon(QIcon(":/icons/options"));
#endif
// Install event filter for up and down arrow
ui->lineEdit->installEventFilter(this);
ui->messagesWidget->installEventFilter(this);
connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));
// set OpenSSL version label
ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));
startExecutor();
setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);
clear();
}
RPCConsole::~RPCConsole()
{
emit stopExecutor();
delete ui;
}
bool RPCConsole::eventFilter(QObject* obj, QEvent *event)
{
if(event->type() == QEvent::KeyPress) // Special key handling
{
QKeyEvent *keyevt = static_cast<QKeyEvent*>(event);
int key = keyevt->key();
Qt::KeyboardModifiers mod = keyevt->modifiers();
switch(key)
{
case Qt::Key_Up: if(obj == ui->lineEdit) { browseHistory(-1); return true; } break;
case Qt::Key_Down: if(obj == ui->lineEdit) { browseHistory(1); return true; } break;
case Qt::Key_PageUp: /* pass paging keys to messages widget */
case Qt::Key_PageDown:
if(obj == ui->lineEdit)
{
QApplication::postEvent(ui->messagesWidget, new QKeyEvent(*keyevt));
return true;
}
break;
default:
// Typing in messages widget brings focus to line edit, and redirects key there
// Exclude most combinations and keys that emit no text, except paste shortcuts
if(obj == ui->messagesWidget && (
(!mod && !keyevt->text().isEmpty() && key != Qt::Key_Tab) ||
((mod & Qt::ControlModifier) && key == Qt::Key_V) ||
((mod & Qt::ShiftModifier) && key == Qt::Key_Insert)))
{
ui->lineEdit->setFocus();
QApplication::postEvent(ui->lineEdit, new QKeyEvent(*keyevt));
return true;
}
}
}
return QDialog::eventFilter(obj, event);
}
void RPCConsole::setClientModel(ClientModel *model)
{
clientModel = model;
ui->trafficGraph->setClientModel(model);
if(model)
{
// Subscribe to information, replies, messages, errors
connect(model, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int)));
setNumBlocks(model->getNumBlocks());
connect(model, SIGNAL(numBlocksChanged(int)), this, SLOT(setNumBlocks(int)));
setMasternodeCount(model->getMasternodeCountString());
connect(model, SIGNAL(strMasternodesChanged(QString)), this, SLOT(setMasternodeCount(QString)));
updateTrafficStats(model->getTotalBytesRecv(), model->getTotalBytesSent());
connect(model, SIGNAL(bytesChanged(quint64,quint64)), this, SLOT(updateTrafficStats(quint64, quint64)));
// Provide initial values
ui->clientVersion->setText(model->formatFullVersion());
ui->clientName->setText(model->clientName());
ui->buildDate->setText(model->formatBuildDate());
ui->startupTime->setText(model->formatClientStartupTime());
setNumConnections(model->getNumConnections());
ui->isTestNet->setChecked(model->isTestNet());
}
}
static QString categoryClass(int category)
{
switch(category)
{
case RPCConsole::CMD_REQUEST: return "cmd-request"; break;
case RPCConsole::CMD_REPLY: return "cmd-reply"; break;
case RPCConsole::CMD_ERROR: return "cmd-error"; break;
default: return "misc";
}
}
void RPCConsole::clear()
{
ui->messagesWidget->clear();
history.clear();
historyPtr = 0;
ui->lineEdit->clear();
ui->lineEdit->setFocus();
// Add smoothly scaled icon images.
// (when using width/height on an img, Qt uses nearest instead of linear interpolation)
for(int i=0; ICON_MAPPING[i].url; ++i)
{
ui->messagesWidget->document()->addResource(
QTextDocument::ImageResource,
QUrl(ICON_MAPPING[i].url),
QImage(ICON_MAPPING[i].source).scaled(ICON_SIZE, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
}
// Set default style sheet
ui->messagesWidget->document()->setDefaultStyleSheet(
"table { }"
"td.time { color: #808080; padding-top: 3px; } "
"td.message { font-family: Monospace; font-size: 12px; } "
"td.cmd-request { color: #8e070b; } "
"td.cmd-error { color: red; } "
"b { color: #8e070b; } "
);
message(CMD_REPLY, (tr("Welcome to the GenesysCoin RPC console.") + "<br>" +
tr("Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen.") + "<br>" +
tr("Type <b>help</b> for an overview of available commands.")), true);
}
void RPCConsole::message(int category, const QString &message, bool html)
{
QTime time = QTime::currentTime();
QString timeString = time.toString();
QString out;
out += "<table><tr><td class=\"time\" width=\"65\">" + timeString + "</td>";
out += "<td class=\"icon\" width=\"32\"><img src=\"" + categoryClass(category) + "\"></td>";
out += "<td class=\"message " + categoryClass(category) + "\" valign=\"middle\">";
if(html)
out += message;
else
out += GUIUtil::HtmlEscape(message, true);
out += "</td></tr></table>";
ui->messagesWidget->append(out);
}
void RPCConsole::setNumConnections(int count)
{
ui->numberOfConnections->setText(QString::number(count));
}
void RPCConsole::setNumBlocks(int count)
{
ui->numberOfBlocks->setText(QString::number(count));
if(clientModel)
ui->lastBlockTime->setText(clientModel->getLastBlockDate().toString());
}
void RPCConsole::setMasternodeCount(const QString &strMasternodes)
{
ui->masternodeCount->setText(strMasternodes);
}
void RPCConsole::on_lineEdit_returnPressed()
{
QString cmd = ui->lineEdit->text();
ui->lineEdit->clear();
if(!cmd.isEmpty())
{
message(CMD_REQUEST, cmd);
emit cmdRequest(cmd);
// Remove command, if already in history
history.removeOne(cmd);
// Append command to history
history.append(cmd);
// Enforce maximum history size
while(history.size() > CONSOLE_HISTORY)
history.removeFirst();
// Set pointer to end of history
historyPtr = history.size();
// Scroll console view to end
scrollToEnd();
}
}
void RPCConsole::browseHistory(int offset)
{
historyPtr += offset;
if(historyPtr < 0)
historyPtr = 0;
if(historyPtr > history.size())
historyPtr = history.size();
QString cmd;
if(historyPtr < history.size())
cmd = history.at(historyPtr);
ui->lineEdit->setText(cmd);
}
void RPCConsole::startExecutor()
{
QThread* thread = new QThread;
RPCExecutor *executor = new RPCExecutor();
executor->moveToThread(thread);
// Notify executor when thread started (in executor thread)
connect(thread, SIGNAL(started()), executor, SLOT(start()));
// Replies from executor object must go to this object
connect(executor, SIGNAL(reply(int,QString)), this, SLOT(message(int,QString)));
// Requests from this object must go to executor
connect(this, SIGNAL(cmdRequest(QString)), executor, SLOT(request(QString)));
// On stopExecutor signal
// - queue executor for deletion (in execution thread)
// - quit the Qt event loop in the execution thread
connect(this, SIGNAL(stopExecutor()), executor, SLOT(deleteLater()));
connect(this, SIGNAL(stopExecutor()), thread, SLOT(quit()));
// Queue the thread for deletion (in this thread) when it is finished
connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
// Default implementation of QThread::run() simply spins up an event loop in the thread,
// which is what we want.
thread->start();
}
void RPCConsole::on_tabWidget_currentChanged(int index)
{
if(ui->tabWidget->widget(index) == ui->tab_console)
{
ui->lineEdit->setFocus();
}
}
void RPCConsole::on_openDebugLogfileButton_clicked()
{
GUIUtil::openDebugLogfile();
}
void RPCConsole::scrollToEnd()
{
QScrollBar *scrollbar = ui->messagesWidget->verticalScrollBar();
scrollbar->setValue(scrollbar->maximum());
}
void RPCConsole::on_showCLOptionsButton_clicked()
{
GUIUtil::HelpMessageBox help;
help.exec();
}
void RPCConsole::on_sldGraphRange_valueChanged(int value)
{
const int multiplier = 5; // each position on the slider represents 5 min
int mins = value * multiplier;
setTrafficGraphRange(mins);
}
QString RPCConsole::FormatBytes(quint64 bytes)
{
if(bytes < 1024)
return QString(tr("%1 B")).arg(bytes);
if(bytes < 1024 * 1024)
return QString(tr("%1 KB")).arg(bytes / 1024);
if(bytes < 1024 * 1024 * 1024)
return QString(tr("%1 MB")).arg(bytes / 1024 / 1024);
return QString(tr("%1 GB")).arg(bytes / 1024 / 1024 / 1024);
}
void RPCConsole::setTrafficGraphRange(int mins)
{
ui->trafficGraph->setGraphRangeMins(mins);
if(mins < 60) {
ui->lblGraphRange->setText(QString(tr("%1 m")).arg(mins));
} else {
int hours = mins / 60;
int minsLeft = mins % 60;
if(minsLeft == 0) {
ui->lblGraphRange->setText(QString(tr("%1 h")).arg(hours));
} else {
ui->lblGraphRange->setText(QString(tr("%1 h %2 m")).arg(hours).arg(minsLeft));
}
}
}
void RPCConsole::updateTrafficStats(quint64 totalBytesIn, quint64 totalBytesOut)
{
ui->lblBytesIn->setText(FormatBytes(totalBytesIn));
ui->lblBytesOut->setText(FormatBytes(totalBytesOut));
}
void RPCConsole::on_btnClearTrafficGraph_clicked()
{
ui->trafficGraph->clear();
}
| [
"gsyteam0@gmail.com"
] | gsyteam0@gmail.com |
f0acb1b35843ad09cdfd941501200263ec8663d4 | 31e94c27019298386cc739f8b0788560ca3b7a25 | /installer/StdAfx.cpp | f352e2cba08a39ff0e88a65ffa5d3d761f8b1b65 | [] | no_license | firwind/Ammyy-v3 | f7d5df9d0d4ea01fa4be6b96242fbedaef5e6e91 | 8bf063085550f522f4197d8a530801292a482179 | refs/heads/master | 2020-04-22T20:26:35.679847 | 2017-01-10T02:18:22 | 2017-01-10T02:18:22 | 170,641,720 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 224 | cpp | // stdafx.cpp : source file that includes just the standard includes
// Installer.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
RLLogEx _log;
| [
"Coldzer0x0@gmail.com"
] | Coldzer0x0@gmail.com |
8efd762f29aff35253123892c01620766be5cf61 | 9b83b05ee31f55a80706730394dc6e54456d6634 | /tests/manual/debugger/simple/simple_test_app.cpp | 9466454ac7c2b7648d2ed6e0bea8d33bf56a46db | [] | no_license | nahongyan/QtCreator | c49f6782f7407233abdb96f5cec823e855550f0a | a8a361f6057d3f79bd0ba05575e2958d498a7e14 | refs/heads/master | 2023-01-24T21:46:18.797698 | 2020-12-01T12:03:24 | 2020-12-01T12:03:24 | 317,527,105 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 186,521 | cpp | /****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
****************************************************************************/
#include <qglobal.h>
//////////////// Some global configuration below ////////////////
// The following defines can be used to steer the kind of tests that
// can be done.
// With USE_AUTORUN, creator will automatically "execute" the commands
// in a comment following a BREAK_HERE line.
// The following commands are supported:
// // Check <name> <value> <type>
// - Checks whether the local variable is displayed with value and type.
// // CheckType <name> <type>
// - Checks whether the local variable is displayed with type.
// The value is untested, so it can be used with pointers values etc.
// that would change between test runs
// // Continue
// - Continues execution
// On the TODO list:
// // Expand <name1>[ <name2> ...].
// - Expands local variables with given names.
// There should be at most one "Expand" line per BREAK_HERE,
// and this should placed on the line following the BREAK_HERE
// FIXME: Not implemented yet.
// Value: 1
// If the line after a BREAK_HERE line does not contain one of the
// supported commands, the test stops.
// Value: 2
// Same as 1, except that the debugger will stop automatically when
// a test after a BREAK_HERE failed
// Default: 0
// Before using this, make sure that "Show a message box when receiving a signal"
// is disabled in "Tools" -> "Options..." -> "Debugger" -> "GDB".
#ifndef USE_AUTORUN
#define USE_AUTORUN 0
#endif
// With USE_AUTOBREAK, the debugger will stop automatically on all
// lines containing the BREAK_HERE macro. This should be enabled
// during manual testing.
// Default: 0
#ifndef USE_AUTOBREAK
#define USE_AUTOBREAK 0
#endif
// With USE_UNINITIALIZED_AUTOBREAK, the debugger will stop automatically
// on all lines containing the BREAK_UNINITIALIZED_HERE macro.
// This should be enabled during manual testing.
// Default: 0
#ifndef USE_UNINITIALIZED_AUTOBREAK
#define USE_UNINITIALIZED_AUTOBREAK 0
#endif
////////////// No further global configuration below ////////////////
// AUTORUN is only sensibly with AUTOBREAK and without UNINITIALIZED_AUTOBREAK
#if USE_AUTORUN
#if !(USE_AUTOBREAK)
#undef USE_AUTOBREAK
#define USE_AUTOBREAK 1
#pragma message ("Switching on USE_AUTOBREAK")
#endif // !USE_AUTOBREAK
#if USE_UNINITIALIZED_AUTOBREAK
#undef USE_UNINITIALIZED_AUTOBREAK
#define USE_UNINITIALIZED_AUTOBREAK 0
#pragma message ("Switching off USE_UNINITIALIZED_AUTOBREAK")
#endif // USE_UNINITIALIZED_AUTOBREAK
#endif
#ifdef HAS_BOOST
#ifndef ANDROID
#define USE_BOOST 1
#endif
#endif
#ifdef HAS_PRIVATE
#define USE_PRIVATE 1
#endif
#ifdef HAS_EIGEN2
#define USE_EIGEN 1
#endif
#ifdef HAS_EIGEN3
#define USE_EIGEN 1
#endif
#ifdef HAS_SCRIPT
#define USE_SCRIPTLIB 1
#endif
#ifdef QT_WEBKIT_LIB
#define USE_WEBKITLIB 1
#else
#define USE_WEBKITLIB 0
#endif
#if QT_VERSION >= 0x050200
#define USE_TIMEZONE 1
#else
#define USE_TIMEZONE 0
#endif
#if QT_VERSION >= 0x050000
#define USE_JSON 1
#else
#define USE_JSON 0
#endif
#if QT_VERSION > 0x050000
#define USE_CXX11LIB 1
#else
#define USE_CXX11LIB 0
#endif
void dummyStatement(...) {}
#if defined(__GNUC__) && defined(__STRICT_ANSI__)
#undef __STRICT_ANSI__ // working around compile error with MinGW
#endif
#include <QCoreApplication>
#include <QDebug>
#include <QDateTime>
#include <QDir>
#include <QHash>
#include <QLibrary>
#include <QList>
#include <QMap>
#include <QPointer>
#include <QProcess>
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
#include <QRegExp>
#endif
#include <QString>
#include <QStringList>
#include <QSettings>
#include <QSharedPointer>
#include <QStack>
#include <QThread>
#include <QVariant>
#include <QVector>
#include <QUrl>
#if USE_GUILIB
#include <QAction>
#include <QApplication> // QWidgets: Separate module as of Qt 5
#include <QColor>
#include <QFont>
#include <QLabel>
#include <QPainter>
#include <QPixmap>
#include <QPainterPath>
#include <QRegion>
#include <QStandardItemModel>
#include <QTextCursor>
#include <QTextDocument>
# if USE_TIMEZONE
# include <QTimeZone>
# endif
#endif
#if USE_SCRIPTLIB
#include <QScriptEngine>
#include <QScriptValue>
#endif
#if USE_WEBKITLIB
#include <QWebPage>
#endif
#include <QXmlAttributes>
#include <QHostAddress>
#include <QNetworkRequest>
#if USE_CXX11LIB
#include <array>
#include <unordered_map>
#endif
#include <complex>
#include <deque>
#include <iostream>
#include <iterator>
#include <fstream>
#include <map>
#include <memory>
#include <list>
#include <limits>
#include <set>
#include <stack>
#include <string>
#include <vector>
#include <QMetaMethod>
#include <stdarg.h>
#include <stdint.h>
#include "../simple/deep/deep/simple_test_app.h"
#if USE_JSON
#include <QJsonArray>
#include <QJsonObject>
#include <QJsonValue>
#endif
#if USE_BOOST
#include <boost/optional.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/date_time.hpp>
#include <boost/date_time/gregorian/gregorian.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/bimap.hpp>
#endif
#if USE_EIGEN
#include <Eigen/Core>
#endif
#if USE_PRIVATE
#include <private/qobject_p.h>
#endif
#if defined(__GNUC__) && !defined(__llvm__) && !defined(Q_OS_MAC)
# ifndef ANDROID
# define USE_GCC_EXT 1
# undef __DEPRECATED
# include <ext/hash_set>
# endif
#endif
#ifdef Q_OS_WIN
#include <windows.h>
#include <basetsd.h>
#undef min
#undef max
#endif
#if USE_SSE && !defined(__SSE__)
#undef USE_SSE
#endif
#if USE_SSE
#include <xmmintrin.h>
#include <stddef.h>
#else
#endif
#if USE_AUTOBREAK
# ifdef Q_CC_MSVC
# define BREAK_HERE DebugBreak();
# else
# define BREAK_HERE asm("int $3; mov %eax, %eax")
# endif
#else
# define BREAK_HERE dummyStatement()
#endif
#if USE_UNINITIALIZED_AUTOBREAK
# ifdef Q_CC_MSVC
# include <crtdbg.h>
# define BREAK_UNINITIALIZED_HERE _CrtDbgReport(_CRT_WARN, NULL, NULL, "simple_test_app", NULL)
# else
# define BREAK_UNINITIALIZED_HERE asm("int $3; mov %eax, %eax")
# endif
#else
# define BREAK_UNINITIALIZED_HERE dummyStatement()
#endif
QT_BEGIN_NAMESPACE
uint qHash(const QMap<int, int> &) { return 0; }
uint qHash(const double & f) { return int(f); }
#ifdef Q_OS_WIN
uint qHash(const QPointer<QObject> &p) { return PtrToUint(p.data()); }
#else
uint qHash(const QPointer<QObject> &p) { return (ulong)p.data(); }
#endif
QT_END_NAMESPACE
namespace nsA {
namespace nsB {
struct SomeType
{
SomeType(int a) : a(a) {}
int a;
};
} // namespace nsB
} // namespace nsA
struct BaseClass
{
BaseClass() : a(1) {}
virtual ~BaseClass() {}
virtual int foo() { return a; }
int a;
};
struct DerivedClass : BaseClass
{
DerivedClass() : b(2) {}
int foo() { return b; }
int b;
};
namespace multibp {
// This tests multiple breakpoints.
template <typename T> class Vector
{
public:
explicit Vector(int size)
: m_size(size), m_data(new T[size])
{
BREAK_HERE;
// Check size 10 int.
// Continue.
// Manual: Add a breakpoint in the constructor
// Manual: Check there are multiple entries in the Breakpoint view.
dummyStatement(this);
}
~Vector() { delete [] m_data; }
int size() const { return m_size; }
private:
int m_size;
T *m_data;
};
void testMultiBp()
{
Vector<int> vi(10);
Vector<float> vf(10);
Vector<double> vd(10);
Vector<char> vc(10);
dummyStatement(&vi, &vf, &vd, &vc);
}
} // namespace multibp
class Foo
{
public:
Foo(int i = 0)
: a(i), b(2)
{
int s = 1;
int t = 2;
b = 2 + s + t;
dummyStatement(&s, &t);
}
virtual ~Foo()
{
a = 5;
}
void doit()
{
static QObject ob;
m["1"] = "2";
h[&ob] = m.begin();
a += 1;
--b;
dummyStatement(&a, &b);
}
public:
int a, b;
char x[6];
private:
typedef QMap<QString, QString> Map;
Map m;
QHash<QObject *, Map::iterator> h;
};
class Fooooo : public Foo
{
public:
Fooooo(int x) : Foo(x), a(x + 2) {}
int a;
};
class X : virtual public Foo { public: X() { } };
class XX : virtual public Foo { public: XX() { } };
class Y : virtual public Foo { public: Y() { } };
class D : public X, public Y { int diamond; D(){Q_UNUSED(diamond)} };
namespace peekandpoke {
void testAnonymousStructs()
{
union {
struct { int i; int b; };
struct { float f; };
double d;
} a = {{42, 43}};
BREAK_HERE;
// Expand a.
// CheckType a union {...}.
// Check a.b 43 int.
// Check a.d 9.1245819032257467e-313 double.
// Check a.f 5.88545355e-44 float.
// Check a.i 42 int.
// Continue.
a.i = 1;
BREAK_HERE;
// Expand a.
// CheckType a union {...}.
// Check a.b 43 int.
// Check a.d 9.1245819012000775e-313 double.
// Check a.f 1.40129846e-45 float.
// Check a.i 1 int.
// Continue.
a.i = 2;
BREAK_HERE;
// Expand a.
// CheckType a union {...}.
// Check a.b 43 int.
// Check a.d 9.1245819012494841e-313 double.
// Check a.f 2.80259693e-45 float.
// Check a.i 2 int.
// Continue.
dummyStatement(&a);
}
void testComplexWatchers()
{
struct S { int a; double b; } s[10];
BREAK_HERE;
// Expand s and s[0].
// CheckType s peekandpoke::S [10].
// Continue.
// Manual: Watcher Context: "Add New Watcher".
// Manual: Type ['s[%d].a' % i for i in range(5)]
// Manual: Expand it, continue stepping. This should result in a list
// Manual: of five items containing the .a fields of s[0]..s[4].
for (int i = 0; i != 10; ++i)
s[i].a = i;
dummyStatement(&s);
}
void testQImageDisplay()
{
#if USE_GUILIB
QImage im(QSize(200, 200), QImage::Format_RGB32);
im.fill(QColor(200, 10, 30).rgba());
QPainter pain;
pain.begin(&im);
pain.setPen(QPen(Qt::black, 5.0, Qt::SolidLine, Qt::RoundCap));
BREAK_HERE;
// Check im (200x200) QImage.
// CheckType pain QPainter.
// Continue.
pain.drawEllipse(20, 20, 160, 160);
BREAK_HERE;
// Continue.
// Manual: Toggle between "Normal" and "Displayed" in L&W Context Menu,
// Manual: entry "Display of Type QImage".
pain.drawArc(70, 115, 60, 30, 200 * 16, 140 * 16);
BREAK_HERE;
// Continue.
pain.setBrush(Qt::black);
BREAK_HERE;
// Continue.
pain.drawEllipse(65, 70, 15, 15);
BREAK_HERE;
// Continue.
// Manual: Toggle between "Normal" and "Displayed" in L&W Context Menu,
// Manual: entry "Display of Type QImage".
pain.drawEllipse(120, 70, 15, 15);
BREAK_HERE;
// Continue.
pain.end();
dummyStatement(&pain);
#endif
}
void testPeekAndPoke3()
{
testAnonymousStructs();
testComplexWatchers();
testQImageDisplay();
}
} // namespace peekandpoke
namespace anon {
#ifndef Q_CC_RVCT
struct TestAnonymous
{
union {
struct { int i; int b; };
struct { float f; };
double d;
};
};
namespace {
struct Something
{
Something() { a = b = 1; }
void foo()
{
a = 42;
b = 43;
}
int a, b;
};
}
#endif
void testAnonymous()
{
TestAnonymous a;
BREAK_HERE;
// Expand a a.#1 a.#2.
// CheckType a anon::TestAnonymous.
// Check a.#1 {...}.
// CheckType a.#1.b int.
// CheckType a.#1.i int.
// CheckType a.#2.f float.
// CheckType a.d double.
// Continue.
a.i = 1;
a.i = 2;
a.i = 3;
Something s;
BREAK_HERE;
// Expand s.
// CheckType s anon::(anonymous namespace)::Something.
// Check s.a 1 int.
// Check s.b 1 int.
// Continue.
s.foo();
BREAK_HERE;
// Expand s.
// Check s.a 42 int.
// Check s.b 43 int.
// Continue.
std::map<int, Something> m;
BREAK_HERE;
// CheckType m std::map<int, anon::{anonymous}::Something>.
// Continue.
dummyStatement(&a, &s, &m);
}
} // namespace anon
namespace qbytearray {
void testQByteArray1()
{
QByteArray ba;
BREAK_HERE;
// Check ba "" QByteArray.
// Continue.
ba += "Hello";
ba += '"';
ba += "World";
ba += char(0);
ba += 1;
ba += 2;
BREAK_HERE;
// Expand ba.
// Check ba "Hello"World" QByteArray.
// Check ba.0 72 'H' char.
// Check ba.11 0 '\0' char.
// Check ba.12 1 char.
// Check ba.13 2 char.
// Continue.
dummyStatement(&ba);
}
void testQByteArray2()
{
QByteArray ba;
for (int i = 256; --i >= 0; )
ba.append(char(i));
QString s(10000, 'x');
std::string ss(10000, 'c');
BREAK_HERE;
// CheckType ba QByteArray.
// Check s "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx..." QString.
// Check ss "ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc..." std::string.
// Continue.
dummyStatement(&ba, &ss, &s);
}
void testQByteArray3()
{
const char *str1 = "\356";
const char *str2 = "\xee";
const char *str3 = "\\ee";
QByteArray buf1(str1);
QByteArray buf2(str2);
QByteArray buf3(str3);
BREAK_HERE;
// Check buf1 "î" QByteArray.
// Check buf2 "î" QByteArray.
// Check buf3 "\ee" QByteArray.
// CheckType str1 char *.
// Continue.
dummyStatement(&buf1, &buf2, &buf3);
}
void testQByteArray4()
{
char data[] = {'H', 'e', 'l', 'l', 'o'};
QByteArray ba1 = QByteArray::fromRawData(data, 4);
QByteArray ba2 = QByteArray::fromRawData(data + 1, 4);
BREAK_HERE;
// Check ba1 "Hell" QByteArray.
// Check ba2 "ello" QByteArray.
// Continue.
dummyStatement(&ba1, &ba2, &data);
}
void testQByteArray()
{
testQByteArray1();
testQByteArray2();
testQByteArray3();
testQByteArray4();
}
} // namespace qbytearray
namespace catchthrow {
static void throwit1()
{
BREAK_HERE;
// Continue.
// Set a breakpoint on "throw" in the BreakWindow context menu
// before stepping further.
throw 14;
}
static void throwit()
{
throwit1();
}
void testCatchThrow()
{
int gotit = 0;
try {
throwit();
} catch (int what) {
gotit = what;
}
dummyStatement(&gotit);
}
} // namespace catchthrow
namespace undefined {
void testUndefined()
{
int *i = new int;
delete i;
BREAK_HERE;
// Continue.
// Manual: Uncomment the following line. Step.
// On Linux, a SIGABRT should be received.
//delete i;
dummyStatement(&i);
}
} // namespace undefined
namespace qdatetime {
void testQTimeZone()
{
#if USE_TIMEZONE
QTimeZone zz;
QTimeZone tz("UTC+05:00");
BREAK_HERE;
dummyStatement(&zz, &tz);
#endif
}
void testQDate()
{
QDate date;
BREAK_HERE;
// Expand date.
// CheckType date QDate.
// Check date.(ISO) "" QString.
// Check date.(Locale) "" QString.
// Check date.(SystemLocale) "" QString.
// Check date.toString "" QString.
// Continue.
// Step, check display.
date = QDate::currentDate();
date = date.addDays(5);
date = date.addDays(5);
dummyStatement(&date);
}
void testQTime()
{
QTime time;
BREAK_HERE;
// Expand time.
// CheckType time QTime.
// Check time.(ISO) "" QString.
// Check time.(Locale) "" QString.
// Check time.(SystemLocale) "" QString.
// Check time.toString "" QString.
// Continue.
// Step, check display.
time = QTime::currentTime();
time = time.addSecs(5);
time = time.addSecs(5);
dummyStatement(&time);
}
void testQDateTime()
{
QDateTime date;
BREAK_HERE;
// Expand date.
// CheckType date QDateTime.
// Check date.(ISO) "" QString.
// Check date.(Locale) "" QString.
// Check date.(SystemLocale) "" QString.
// Check date.toString "" QString.
// Check date.toUTC QDateTime.
// Continue.
// Step, check display
date = QDateTime::currentDateTime();
date = date.addDays(5);
date = date.addDays(5);
dummyStatement(&date);
}
void testDateTime()
{
testQTimeZone();
testQDate();
testQDateTime();
testQTime();
}
} // namespace qdatetime
namespace qdir {
void testQDir()
{
#ifdef Q_OS_WIN
QDir dir("C:\\Program Files");
dir.absolutePath(); // Keep in to facilitate stepping
BREAK_HERE;
// Check dir "C:/Program Files" QDir.
// Check dir.absolutePath "C:/Program Files" QString.
// Check dir.canonicalPath "C:/Program Files" QString.
// Continue.
#else
QDir dir("/tmp");
dir.absolutePath(); // Keep in to facilitate stepping
BREAK_HERE;
// Check dir "/tmp" QDir.
// Check dir.absolutePath "/tmp" QString.
// Check dir.canonicalPath "/tmp" QString.
// Continue.
#endif
dummyStatement(&dir);
}
} // namespace qdir
namespace qfileinfo {
void testQFileInfo()
{
#ifdef Q_OS_WIN
QFile file("C:\\Program Files\\t");
file.setObjectName("A QFile instance");
QFileInfo fi("C:\\Program Files\\tt");
QString s = fi.absoluteFilePath();
BREAK_HERE;
// Check fi "C:/Program Files/tt" QFileInfo.
// Check file "C:\Program Files\t" QFile.
// Check s "C:/Program Files/tt" QString.
// Continue.
dummyStatement(&file, &s);
#else
QFile file("/tmp/t");
file.setObjectName("A QFile instance");
QFileInfo fi("/tmp/tt");
QString s = fi.absoluteFilePath();
BREAK_HERE;
// Check fi "/tmp/tt" QFileInfo.
// Check file "/tmp/t" QFile.
// Check s "/tmp/tt" QString.
// Continue.
dummyStatement(&file, &s);
#endif
}
} // namespace qfileinfo
namespace qhash {
void testQHash1()
{
QHash<QString, QList<int> > hash;
hash.insert("Hallo", QList<int>());
hash.insert("Welt", QList<int>() << 1);
hash.insert("!", QList<int>() << 1 << 2);
hash.insert("!", QList<int>() << 1 << 2);
BREAK_HERE;
// Expand hash hash.0 hash.1 hash.1.value hash.2 hash.2.value.
// Check hash <3 items> QHash<QString, QList<int>>.
// Check hash.0 QHashNode<QString, QList<int>>.
// Check hash.0.key "Hallo" QString.
// Check hash.0.value <0 items> QList<int>.
// Check hash.1 QHashNode<QString, QList<int>>.
// Check hash.1.key "Welt" QString.
// Check hash.1.value <1 items> QList<int>.
// Check hash.1.value.0 1 int.
// Check hash.2 QHashNode<QString, QList<int>>.
// Check hash.2.key "!" QString.
// Check hash.2.value <2 items> QList<int>.
// Check hash.2.value.0 1 int.
// Check hash.2.value.1 2 int.
// Continue.
dummyStatement(&hash);
}
void testQHash2()
{
QHash<int, float> hash;
hash[11] = 11.0;
hash[22] = 22.0;
BREAK_HERE;
// Expand hash.
// Check hash <2 items> QHash<int, float>.
// Check hash.22 22 float.
// Check hash.11 11 float.
// Continue.
dummyStatement(&hash);
}
void testQHash3()
{
QHash<QString, int> hash;
hash["22.0"] = 22.0;
hash["123.0"] = 22.0;
hash["111111ss111128.0"] = 28.0;
hash["11124.0"] = 22.0;
hash["1111125.0"] = 22.0;
hash["11111126.0"] = 22.0;
hash["111111127.0"] = 27.0;
hash["111111111128.0"] = 28.0;
hash["111111111111111111129.0"] = 29.0;
BREAK_HERE;
// Expand hash hash.0 hash.8.
// Check hash <9 items> QHash<QString, int>.
// Check hash.0 QHashNode<QString, int>.
// Check hash.0.key "123.0" QString.
// Check hash.0.value 22 int.
// Check hash.8 QHashNode<QString, int>.
// Check hash.8.key "11124.0" QString.
// Check hash.8.value 22 int.
// Continue.
dummyStatement(&hash);
}
void testQHash4()
{
QHash<QByteArray, float> hash;
hash["22.0"] = 22.0;
hash["123.0"] = 22.0;
hash["111111ss111128.0"] = 28.0;
hash["11124.0"] = 22.0;
hash["1111125.0"] = 22.0;
hash["11111126.0"] = 22.0;
hash["111111127.0"] = 27.0;
hash["111111111128.0"] = 28.0;
hash["111111111111111111129.0"] = 29.0;
BREAK_HERE;
// Expand hash hash.0 hash.8/
// Check hash <9 items> QHash<QByteArray, float>.
// Check hash.0 QHashNode<QByteArray, float>.
// Check hash.0.key "123.0" QByteArray.
// Check hash.0.value 22 float.
// Check hash.8 QHashNode<QByteArray, float>.
// Check hash.8.key "11124.0" QByteArray.
// Check hash.8.value 22 float.
// Continue.
dummyStatement(&hash);
}
void testQHash5()
{
QHash<int, QString> hash;
hash[22] = "22.0";
BREAK_HERE;
// Expand hash hash.0.
// Check hash <1 items> QHash<int, QString>.
// Check hash.0 QHashNode<int, QString>.
// Check hash.0.key 22 int.
// Check hash.0.value "22.0" QString.
// Continue.
dummyStatement(&hash);
}
void testQHash6()
{
QHash<QString, Foo> hash;
hash["22.0"] = Foo(22);
hash["33.0"] = Foo(33);
BREAK_HERE;
// Expand hash hash.0 hash.0.value hash.1.
// Check hash <2 items> QHash<QString, Foo>.
// Check hash.0 QHashNode<QString, Foo>.
// Check hash.0.key "22.0" QString.
// CheckType hash.0.value Foo.
// Check hash.0.value.a 22 int.
// Check hash.1 QHashNode<QString, Foo>.
// Check hash.1.key "33.0" QString.
// CheckType hash.1.value Foo.
// Continue.
dummyStatement(&hash);
}
void testQHash7()
{
QObject ob;
QHash<QString, QPointer<QObject> > hash;
hash.insert("Hallo", QPointer<QObject>(&ob));
hash.insert("Welt", QPointer<QObject>(&ob));
hash.insert(".", QPointer<QObject>(&ob));
BREAK_HERE;
// Expand hash hash.0 hash.0.value hash.2.
// Check hash <3 items> QHash<QString, QPointer<QObject>>.
// Check hash.0 QHashNode<QString, QPointer<QObject>>.
// Check hash.0.key "Hallo" QString.
// CheckType hash.0.value QPointer<QObject>.
// CheckType hash.0.value.o QObject.
// Check hash.2 QHashNode<QString, QPointer<QObject>>.
// Check hash.2.key "." QString.
// CheckType hash.2.value QPointer<QObject>.
// Continue.
dummyStatement(&hash, &ob);
}
void testQHashIntFloatIterator()
{
typedef QHash<int, float> Hash;
Hash hash;
hash[11] = 11.0;
hash[22] = 22.0;
hash[33] = 33.0;
hash[44] = 44.0;
hash[55] = 55.0;
hash[66] = 66.0;
Hash::iterator it1 = hash.begin();
Hash::iterator it2 = it1; ++it2;
Hash::iterator it3 = it2; ++it3;
Hash::iterator it4 = it3; ++it4;
Hash::iterator it5 = it4; ++it5;
Hash::iterator it6 = it5; ++it6;
BREAK_HERE;
// Expand hash.
// Check hash <6 items> qhash::Hash.
// Check hash.11 11 float.
// Check it1.key 55 int.
// Check it1.value 55 float.
// Check it6.key 33 int.
// Check it6.value 33 float.
// Continue.
dummyStatement(&hash, &it1, &it2, &it3, &it4, &it5, &it6);
}
void testQHash()
{
testQHash1();
testQHash2();
testQHash3();
testQHash4();
testQHash5();
testQHash6();
testQHash7();
testQHashIntFloatIterator();
}
} // namespace qhash
namespace qhostaddress {
void testQHostAddress1()
{
QHostAddress ha1(129u * 256u * 256u * 256u + 130u);
QHostAddress ha2("127.0.0.1");
uint ip2 = ha2.toIPv4Address();
BREAK_HERE;
// Check ha1 129.0.0.130 QHostAddress.
// Check ha2 "127.0.0.1" QHostAddress.
// Continue.
dummyStatement(&ha1, &ha2, &ip2);
}
void testQHostAddress2()
{
QIPv6Address addr;
for (int i = 0; i != 16; ++i)
addr.c[i] = i;
addr.c[4] = 0;
addr.c[5] = 0;
addr.c[6] = 0;
addr.c[7] = 0;
addr.c[12] = 0;
addr.c[13] = 0;
addr.c[14] = 0;
addr.c[15] = 0;
QHostAddress ha1(addr);
ha1.setScopeId(QLatin1String("wlan0"));
BREAK_HERE;
// Continue.
dummyStatement(&ha1);
}
void testQHostAddress()
{
testQHostAddress1();
testQHostAddress2();
}
} // namespace qhostaddress
namespace painting {
void testQImage()
{
#if USE_GUILIB
// only works with Python dumper
QImage im(QSize(200, 200), QImage::Format_RGB32);
im.fill(QColor(200, 100, 130).rgba());
QPainter pain;
pain.begin(&im);
BREAK_HERE;
// Check im (200x200) QImage.
// CheckType pain QPainter.
// Continue.
// Step.
pain.drawLine(2, 2, 130, 130);
pain.drawLine(4, 2, 130, 140);
pain.drawRect(30, 30, 80, 80);
pain.end();
dummyStatement(&pain, &im);
#endif
}
void testQPixmap()
{
#if USE_GUILIB
QImage im(QSize(200, 200), QImage::Format_RGB32);
im.fill(QColor(200, 100, 130).rgba());
QPainter pain;
pain.begin(&im);
pain.drawLine(2, 2, 130, 130);
pain.end();
QPixmap pm = QPixmap::fromImage(im);
QSize size = pm.size();
BREAK_HERE;
// Check im (200x200) QImage.
// CheckType pain QPainter.
// Check pm (200x200) QPixmap.
// Continue.
dummyStatement(&im, &pm, &size);
#endif
}
void testPainting()
{
testQImage();
testQPixmap();
}
} // namespace painting
namespace qlist {
void testQListInt()
{
QList<int> big;
for (int i = 0; i < 10000; ++i)
big.push_back(i);
BREAK_HERE;
// Expand big.
// Check big <10000 items> QList<int>.
// Check big.0 0 int.
// Check big.1999 1999 int.
// Continue.
dummyStatement(&big);
}
void testQListIntTakeFirst()
{
QList<int> l;
l.append(0);
l.append(1);
l.append(2);
l.takeFirst();
BREAK_HERE;
// Expand l.
// Check l <2 items> QList<int>.
// Check l.0 1 int.
// Continue.
dummyStatement(&l);
}
void testQListStringTakeFirst()
{
QList<QString> l;
l.append("0");
l.append("1");
l.append("2");
l.takeFirst();
BREAK_HERE;
// Expand l.
// Check l <2 items> QList<QString>.
// Check l.0 "1" QString.
// Continue.
dummyStatement(&l);
}
void testQStringListTakeFirst()
{
QStringList l;
l.append("0");
l.append("1");
l.append("2");
l.takeFirst();
BREAK_HERE;
// Expand l.
// Check l <2 items> QStringList.
// Check l.0 "1" QString.
// Continue.
dummyStatement(&l);
}
void testQListIntStar()
{
QList<int *> l;
BREAK_HERE;
// Check l <0 items> QList<int*>.
// Continue.
l.append(new int(1));
l.append(new int(2));
l.append(new int(3));
BREAK_HERE;
// Expand l.
// Check l <3 items> QList<int*>.
// CheckType l.0 int.
// CheckType l.2 int.
// Continue.
dummyStatement(&l);
}
void testQListUInt()
{
QList<uint> l;
BREAK_HERE;
// Check l <0 items> QList<unsigned int>.
// Continue.
l.append(101);
l.append(102);
l.append(102);
BREAK_HERE;
// Expand l.
// Check l <3 items> QList<unsigned int>.
// Check l.0 101 unsigned int.
// Check l.2 102 unsigned int.
// Continue.
dummyStatement(&l);
}
void testQListUShort()
{
QList<ushort> l;
BREAK_HERE;
// Check l <0 items> QList<unsigned short>.
// Continue.
l.append(101);
l.append(102);
l.append(102);
BREAK_HERE;
// Expand l.
// Check l <3 items> QList<unsigned short>.
// Check l.0 101 unsigned short.
// Check l.2 102 unsigned short.
// Continue.
dummyStatement(&l);
}
void testQListQChar()
{
QList<QChar> l;
BREAK_HERE;
// Check l <0 items> QList<QChar>.
// Continue.
l.append(QChar('a'));
l.append(QChar('b'));
l.append(QChar('c'));
BREAK_HERE;
// Expand l.
// Check l <3 items> QList<QChar>.
// Check l.0 'a' (97) QChar.
// Check l.2 'c' (99) QChar.
// Continue.
dummyStatement(&l);
}
void testQListQULongLong()
{
QList<qulonglong> l;
BREAK_HERE;
// Check l <0 items> QList<unsigned long long>.
// Continue.
l.append(101);
l.append(102);
l.append(102);
BREAK_HERE;
// Expand l.
// Check l <3 items> QList<unsigned long long>.
// CheckType l.0 unsigned long long.
// CheckType l.2 unsigned long long.
// Continue.
dummyStatement(&l);
}
void testQListStdString()
{
QList<std::string> l;
BREAK_HERE;
// Check l <0 items> QList<std::string>.
// Continue.
l.push_back("aa");
l.push_back("bb");
l.push_back("cc");
l.push_back("dd");
BREAK_HERE;
// Expand l.
// Check l <4 items> QList<std::string>.
// CheckType l.0 std::string.
// CheckType l.3 std::string.
// Continue.
dummyStatement(&l);
}
void testQListFoo()
{
QList<Foo> l;
BREAK_HERE;
// Check l <0 items> QList<Foo>.
// Continue.
for (int i = 0; i < 100; ++i)
l.push_back(i + 15);
BREAK_HERE;
// Check l <100 items> QList<Foo>.
// Expand l.
// CheckType l.0 Foo.
// CheckType l.99 Foo.
// Continue.
l.push_back(1000);
l.push_back(1001);
l.push_back(1002);
BREAK_HERE;
// Check l <103 items> QList<Foo>.
// Continue.
dummyStatement(&l);
}
void testQListReverse()
{
QList<int> l = QList<int>() << 1 << 2 << 3;
typedef std::reverse_iterator<QList<int>::iterator> Reverse;
Reverse rit(l.end());
Reverse rend(l.begin());
QList<int> r;
while (rit != rend)
r.append(*rit++);
BREAK_HERE;
// Expand l r.
// Check l <3 items> QList<int>.
// Check l.0 1 int.
// Check l.1 2 int.
// Check l.2 3 int.
// Check r <3 items> QList<int>.
// Check r.0 3 int.
// Check r.1 2 int.
// Check r.2 1 int.
// CheckType rend qlist::Reverse.
// CheckType rit qlist::Reverse.
// Continue.
dummyStatement();
}
void testQList()
{
testQListInt();
testQListIntStar();
testQListUInt();
testQListUShort();
testQListQChar();
testQListQULongLong();
testQListStdString();
testQListFoo();
testQListReverse();
testQListIntTakeFirst();
testQListStringTakeFirst();
testQStringListTakeFirst();
}
} // namespace qlist
namespace qlocale {
void testQLocale()
{
QLocale loc = QLocale::system();
//QString s = loc.name();
//QVariant v = loc;
QLocale::MeasurementSystem m = loc.measurementSystem();
BREAK_HERE;
// CheckType loc QLocale.
// CheckType m QLocale::MeasurementSystem.
// Continue.
dummyStatement(&loc, &m);
}
} // namespace qlocale
namespace qmap {
void testQMapUIntStringList()
{
QMap<uint, QStringList> map;
map[11] = QStringList() << "11";
map[22] = QStringList() << "22";
BREAK_HERE;
// Expand map map.0 map.0.value map.1 map.1.value.
// Check map <2 items> QMap<unsigned int, QStringList>.
// Check map.0 QMapNode<unsigned int, QStringList>.
// Check map.0.key 11 unsigned int.
// Check map.0.value <1 items> QStringList.
// Check map.0.value.0 "11" QString.
// Check map.1 QMapNode<unsigned int, QStringList>.
// Check map.1.key 22 unsigned int.
// Check map.1.value <1 items> QStringList.
// Check map.1.value.0 "22" QString.
// Continue.
dummyStatement(&map);
}
void testQMapUIntStringListTypedef()
{
// only works with Python dumper
typedef QMap<uint, QStringList> T;
T map;
map[11] = QStringList() << "11";
map[22] = QStringList() << "22";
BREAK_HERE;
// Check map <2 items> qmap::T.
// Continue.
dummyStatement(&map);
}
void testQMapUIntFloat()
{
QMap<uint, float> map;
map[11] = 11.0;
map[22] = 22.0;
BREAK_HERE;
// Expand map.
// Check map <2 items> QMap<unsigned int, float>.
// Check map.11 11 float.
// Check map.22 22 float.
// Continue.
dummyStatement(&map);
}
void testQMapStringFloat()
{
QMap<QString, float> map;
map["22.0"] = 22.0;
BREAK_HERE;
// Expand map map.0.
// Check map <1 items> QMap<QString, float>.
// Check map.0 QMapNode<QString, float>.
// Check map.0.key "22.0" QString.
// Check map.0.value 22 float.
// Continue.
dummyStatement(&map);
}
void testQMapIntString()
{
QMap<int, QString> map;
map[22] = "22.0";
BREAK_HERE;
// Expand map map.0.
// Check map <1 items> QMap<int, QString>.
// Check map.0 QMapNode<int, QString>.
// Check map.0.key 22 int.
// Check map.0.value "22.0" QString.
// Continue.
dummyStatement(&map);
}
void testQMapStringFoo()
{
QMap<QString, Foo> map;
map["22.0"] = Foo(22);
map["33.0"] = Foo(33);
BREAK_HERE;
// Expand map map.0 map.0.key map.0.value map.1 map.1.value.
// Check map <2 items> QMap<QString, Foo>.
// Check map.0 QMapNode<QString, Foo>.
// Check map.0.key "22.0" QString.
// CheckType map.0.value Foo.
// Check map.0.value.a 22 int.
// Check map.1 QMapNode<QString, Foo>.
// Check map.1.key "33.0" QString.
// CheckType map.1.value Foo.
// Check map.1.value.a 33 int.
// Continue.
dummyStatement(&map);
}
void testQMapStringPointer()
{
// only works with Python dumper
QObject ob;
QMap<QString, QPointer<QObject> > map;
map.insert("Hallo", QPointer<QObject>(&ob));
map.insert("Welt", QPointer<QObject>(&ob));
map.insert(".", QPointer<QObject>(&ob));
BREAK_HERE;
// Expand map map.0 map.0.key map.0.value map.1 map.2.
// Check map <3 items> QMap<QString, QPointer<QObject>>.
// Check map.0 QMapNode<QString, QPointer<QObject>>.
// Check map.0.key "." QString.
// CheckType map.0.value QPointer<QObject>.
// CheckType map.0.value.o QObject.
// Check map.1 QMapNode<QString, QPointer<QObject>>.
// Check map.1.key "Hallo" QString.
// Check map.2 QMapNode<QString, QPointer<QObject>>.
// Check map.2.key "Welt" QString.
// Continue.
dummyStatement(&map);
}
void testQMapStringList()
{
// only works with Python dumper
QList<nsA::nsB::SomeType *> x;
x.append(new nsA::nsB::SomeType(1));
x.append(new nsA::nsB::SomeType(2));
x.append(new nsA::nsB::SomeType(3));
QMap<QString, QList<nsA::nsB::SomeType *> > map;
map["foo"] = x;
map["bar"] = x;
map["1"] = x;
map["2"] = x;
BREAK_HERE;
// Expand map map.0 map.0.key map.0.value map.1 map.1.value.1 map.1.value.2 map.3 map.3.value map.3.value.2.
// Check map <4 items> QMap<QString, QList<nsA::nsB::SomeType*>>.
// Check map.0 QMapNode<QString, QList<nsA::nsB::SomeType*>>.
// Check map.0.key "1" QString.
// Check map.0.value <3 items> QList<nsA::nsB::SomeType*>.
// CheckType map.0.value.0 nsA::nsB::SomeType.
// Check map.0.value.0.a 1 int.
// CheckType map.0.value.1 nsA::nsB::SomeType.
// Check map.0.value.1.a 2 int.
// CheckType map.0.value.2 nsA::nsB::SomeType.
// Check map.0.value.2.a 3 int.
// Check map.3 QMapNode<QString, QList<nsA::nsB::SomeType*>>.
// Check map.3.key "foo" QString.
// Check map.3.value <3 items> QList<nsA::nsB::SomeType*>.
// CheckType map.3.value.2 nsA::nsB::SomeType.
// Check map.3.value.2.a 3 int.
// Check x <3 items> QList<nsA::nsB::SomeType*>.
// Continue.
dummyStatement(&map);
}
void testQMultiMapUintFloat()
{
QMultiMap<uint, float> map;
map.insert(11, 11.0);
map.insert(22, 22.0);
map.insert(22, 33.0);
map.insert(22, 34.0);
map.insert(22, 35.0);
map.insert(22, 36.0);
BREAK_HERE;
// Expand map.
// Check map <6 items> QMultiMap<unsigned int, float>.
// Check map.0 11 float.
// Check map.5 22 float.
// Continue.
dummyStatement(&map);
}
void testQMultiMapStringFloat()
{
QMultiMap<QString, float> map;
map.insert("22.0", 22.0);
BREAK_HERE;
// Expand map map.0.
// Check map <1 items> QMultiMap<QString, float>.
// Check map.0 QMapNode<QString, float>.
// Check map.0.key "22.0" QString.
// Check map.0.value 22 float.
// Continue.
dummyStatement(&map);
}
void testQMultiMapIntString()
{
QMultiMap<int, QString> map;
map.insert(22, "22.0");
BREAK_HERE;
// Expand map map.0.
// Check map <1 items> QMultiMap<int, QString>.
// Check map.0 QMapNode<int, QString>.
// Check map.0.key 22 int.
// Check map.0.value "22.0" QString.
// Continue.
dummyStatement(&map);
}
void testQMultiMapStringFoo()
{
QMultiMap<QString, Foo> map;
map.insert("22.0", Foo(22));
map.insert("33.0", Foo(33));
map.insert("22.0", Foo(22));
BREAK_HERE;
// Expand map map.0 map.0.value.
// Check map <3 items> QMultiMap<QString, Foo>.
// Check map.0 QMapNode<QString, Foo>.
// Check map.0.key "22.0" QString.
// CheckType map.0.value Foo.
// Check map.0.value.a 22 int.
// Check map.2 QMapNode<QString, Foo>.
// Continue.
dummyStatement(&map);
}
void testQMultiMapStringPointer()
{
QObject ob;
QMultiMap<QString, QPointer<QObject> > map;
map.insert("Hallo", QPointer<QObject>(&ob));
map.insert("Welt", QPointer<QObject>(&ob));
map.insert(".", QPointer<QObject>(&ob));
map.insert(".", QPointer<QObject>(&ob));
BREAK_HERE;
// Expand map map.0 map.1 map.2 map.3.
// Check map <4 items> QMultiMap<QString, QPointer<QObject>>.
// Check map.0 QMapNode<QString, QPointer<QObject>>.
// Check map.0.key "." QString.
// CheckType map.0.value QPointer<QObject>.
// Check map.1 QMapNode<QString, QPointer<QObject>>.
// Check map.1.key "." QString.
// Check map.2 QMapNode<QString, QPointer<QObject>>.
// Check map.2.key "Hallo" QString.
// Check map.3 QMapNode<QString, QPointer<QObject>>.
// Check map.3.key "Welt" QString.
// Continue.
dummyStatement(&map);
}
void testQMap()
{
testQMapUIntStringList();
testQMapUIntStringListTypedef();
testQMapUIntFloat();
testQMapStringFloat();
testQMapIntString();
testQMapStringFoo();
testQMapStringPointer();
testQMapStringList();
testQMultiMapUintFloat();
testQMultiMapStringFloat();
testQMultiMapIntString();
testQMultiMapStringFoo();
testQMapUIntStringList();
testQMultiMapStringFoo();
testQMultiMapStringPointer();
}
} // namespace qmap
namespace qobject {
void testQObject1()
{
// This checks whether signal-slot connections are displayed.
QObject parent;
parent.setObjectName("A Parent");
QObject child(&parent);
child.setObjectName("A Child");
QObject::connect(&child, &QObject::destroyed, &parent, &QObject::deleteLater);
QObject::connect(&child, &QObject::destroyed, &child, &QObject::deleteLater);
QObject::disconnect(&child, &QObject::destroyed, &parent, &QObject::deleteLater);
QObject::disconnect(&child, &QObject::destroyed, &child, &QObject::deleteLater);
child.setObjectName("A renamed Child");
BREAK_HERE;
// Check child "A renamed Child" QObject.
// Check parent "A Parent" QObject.
// Continue.
dummyStatement(&parent, &child);
}
namespace Names {
namespace Bar {
struct Ui { Ui() { w = 0; } QWidget *w; };
class TestObject : public QObject
{
Q_OBJECT
public:
TestObject(QObject *parent = 0)
: QObject(parent)
{
m_ui = new Ui;
#if USE_GUILIB
m_ui->w = new QWidget;
#else
m_ui->w = 0;
#endif
}
Q_PROPERTY(QString myProp1 READ myProp1 WRITE setMyProp1)
QString myProp1() const { return m_myProp1; }
Q_SLOT void setMyProp1(const QString&mt) { m_myProp1 = mt; }
Q_INVOKABLE void foo() {}
Q_PROPERTY(QString myProp2 READ myProp2 WRITE setMyProp2)
QString myProp2() const { return m_myProp2; }
Q_SLOT void setMyProp2(const QString&mt) { m_myProp2 = mt; }
Q_PROPERTY(long myProp3 READ myProp3)
long myProp3() const { return -54; }
Q_PROPERTY(int myProp4 READ myProp4)
int myProp4() const { return -44; }
Q_SIGNAL void sigFoo();
Q_SIGNAL void sigBar(int);
enum Side { LeftSide, RightSide };
Q_ENUMS(Side)
public:
Ui *m_ui;
QString m_myProp1;
QString m_myProp2;
};
} // namespace Bar
} // namespace Names
void testQObject2()
{
//QString longString = QString(10000, QLatin1Char('A'));
Names::Bar::TestObject test;
test.setMyProp1("HELLO");
test.setMyProp2("WORLD");
test.setObjectName("An object");
QString s = test.myProp1();
s += test.myProp2();
const QMetaObject *mo = test.metaObject();
QMetaMethod mm0;
const QMetaObject smo = test.staticMetaObject;
QMetaMethod mm = mo->method(0);
QByteArray mmname = mm.name();
QMetaEnum me0;
QMetaEnum me = mo->enumerator(0);
QMetaProperty mp0;
QMetaProperty mp = mo->property(0);
QMetaClassInfo mci0;
QMetaClassInfo mci = mo->classInfo(0);
int n = mo->methodCount();
QVector<QMetaMethod> v(n);
for (int i = 0; i < n; ++i)
v[i] = mo->method(i);
test.setProperty("USER DEFINED 1", 44);
test.setProperty("USER DEFINED 2", QStringList() << "FOO" << "BAR");
BREAK_HERE;
// Check s "HELLOWORLD" QString.
// Check test qobject::Names::Bar::TestObject.
// Continue.
dummyStatement(&s, &mm, &smo, &mo, &mmname, &mm0, &me, &me0, &mp, &mp0, &mci, &mci0);
}
void testQObject3()
{
QAction act("xxx", qApp);
QString t = act.text();
t += "y";
t += "y";
t += "y";
t += "y";
t += "y";
dummyStatement(&act, &t);
}
void testQObject4()
{
#if USE_GUILIB
QWidget ob;
ob.setObjectName("An Object");
ob.setProperty("USER DEFINED 1", 44);
ob.setProperty("USER DEFINED 2", QStringList() << "FOO" << "BAR");
QObject ob1;
ob1.setObjectName("Another Object");
QObject::connect(&ob, &QObject::destroyed, &ob1, &QObject::deleteLater);
QObject::connect(&ob1, &QObject::destroyed, &ob, &QObject::deleteLater);
BREAK_HERE;
QObject::disconnect(&ob, &QObject::destroyed, &ob1, &QObject::deleteLater);
QObject::disconnect(&ob1, &QObject::destroyed, &ob, &QObject::deleteLater);
dummyStatement(&ob, &ob1);
#endif
}
void testQObject5()
{
QWidget ob;
ob.setObjectName("An Object");
ob.setProperty("USER DEFINED 1", 44);
ob.setProperty("USER DEFINED 2", QStringList() << "FOO" << "BAR");
QObject ob1;
QList<QObject *> obs;
obs.append(&ob);
obs.append(&ob1);
obs.append(0);
obs.append(qApp);
ob1.setObjectName("Another Object");
BREAK_HERE;
dummyStatement(&obs);
}
class Sender : public QObject
{
Q_OBJECT
public:
Sender() { setObjectName("Sender"); }
void doEmit() { emit aSignal(); }
signals:
void aSignal();
};
class Receiver : public QObject
{
Q_OBJECT
public:
Receiver() { setObjectName("Receiver"); }
void aSlot() {
QObject *s = sender();
if (s) {
qDebug() << "SENDER: " << s;
} else {
qDebug() << "NO SENDER";
}
}
};
void testSignalSlot()
{
Sender sender;
Receiver receiver;
QObject::connect(&sender, &Sender::aSignal, &receiver, &Receiver::aSlot);
// Break here.
// Single step through signal emission.
sender.doEmit();
dummyStatement(&sender, &receiver);
}
#if USE_PRIVATE
class DerivedObjectPrivate : public QObjectPrivate
{
public:
DerivedObjectPrivate() {
m_extraX = 43;
m_extraY.append("xxx");
m_extraZ = 1;
}
int m_extraX;
QStringList m_extraY;
uint m_extraZ : 1;
bool m_extraA : 1;
bool m_extraB;
};
class DerivedObject : public QObject
{
Q_OBJECT
public:
DerivedObject() : QObject(*new DerivedObjectPrivate, 0) {}
Q_PROPERTY(int x READ x WRITE setX)
Q_PROPERTY(QStringList y READ y WRITE setY)
Q_PROPERTY(uint z READ z WRITE setZ)
int x() const;
void setX(int x);
QStringList y() const;
void setY(QStringList y);
uint z() const;
void setZ(uint z);
private:
Q_DECLARE_PRIVATE(DerivedObject)
};
int DerivedObject::x() const
{
Q_D(const DerivedObject);
return d->m_extraX;
}
void DerivedObject::setX(int x)
{
Q_D(DerivedObject);
d->m_extraX = x;
d->m_extraA = !d->m_extraA;
d->m_extraB = !d->m_extraB;
}
QStringList DerivedObject::y() const
{
Q_D(const DerivedObject);
return d->m_extraY;
}
void DerivedObject::setY(QStringList y)
{
Q_D(DerivedObject);
d->m_extraY = y;
}
uint DerivedObject::z() const
{
Q_D(const DerivedObject);
return d->m_extraZ;
}
void DerivedObject::setZ(uint z)
{
Q_D(DerivedObject);
d->m_extraZ = z;
}
#endif
void testQObjectData()
{
// This checks whether QObject-derived classes with Q_PROPERTYs
// are displayed properly.
#if USE_PRIVATE
DerivedObject ob;
BREAK_HERE;
// Expand ob ob.properties.
// Check ob.properties.x 43 QVariant (int).
// Continue.
// expand ob and ob.properties
// step, and check whether x gets updated.
ob.setX(23);
ob.setX(25);
ob.setX(26);
BREAK_HERE;
// Expand ob ob.properties.
// Check ob.properties.x 26 QVariant (int).
// Continue.
#endif
}
void testQObject()
{
testQObjectData();
testQObject1();
testQObject2();
testQObject3();
testQObject4();
testQObject5();
testSignalSlot();
}
} // namespace qobject
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
namespace qregexp {
void testQRegExp()
{
// Works with Python dumpers only.
QRegExp re(QString("a(.*)b(.*)c"));
BREAK_HERE;
// Check re "a(.*)b(.*)c" QRegExp.
// Continue.
QString str1 = "a1121b344c";
QString str2 = "Xa1121b344c";
BREAK_HERE;
// Check str1 "a1121b344c" QString.
// Check str2 "Xa1121b344c" QString.
// Continue.
int pos2 = re.indexIn(str2);
int pos1 = re.indexIn(str1);
BREAK_HERE;
// Check pos1 0 int.
// Check pos2 1 int.
// Continue.
dummyStatement(&pos1, &pos2);
}
} // namespace qregexp
#endif
namespace qrect {
#if USE_GUILIB
void testQPoint()
{
QPoint s;
BREAK_HERE;
// Check s (0, 0) QPoint.
// Continue.
// Step over, check display looks sane.
s = QPoint(100, 200);
BREAK_HERE;
// Check s (100, 200) QPoint.
// Continue.
dummyStatement(&s);
}
void testQPointF()
{
QPointF s;
BREAK_HERE;
// Check s (0, 0) QPointF.
// Continue.
// Step over, check display looks sane.
s = QPointF(100, 200);
BREAK_HERE;
// Check s (100, 200) QPointF.
// Continue.
dummyStatement(&s);
}
void testQRect()
{
QRect rect;
BREAK_HERE;
// Check rect 0x0+0+0 QRect.
// Continue.
// Step over, check display looks sane.
rect = QRect(100, 100, 200, 200);
BREAK_HERE;
// Check rect 200x200+100+100 QRect.
// Continue.
dummyStatement(&rect);
}
void testQRectF()
{
QRectF rect;
BREAK_HERE;
// Check rect 0x0+0+0 QRectF.
// Continue.
// Step over, check display looks sane.
rect = QRectF(100, 100, 200, 200);
BREAK_HERE;
// Check rect 200x200+100+100 QRectF.
// Continue.
dummyStatement(&rect);
}
void testQSize()
{
QSize s;
BREAK_HERE;
// Check s (-1, -1) QSize.
// Continue.
s = QSize(100, 200);
BREAK_HERE;
// Check s (100, 200) QSize.
// Continue.
dummyStatement(&s);
}
void testQSizeF()
{
QSizeF s;
BREAK_HERE;
// Check s (-1, -1) QSizeF.
// Continue.
s = QSizeF(100, 200);
BREAK_HERE;
// Check s (100, 200) QSizeF.
// Continue.
dummyStatement(&s);
}
#endif
void testGeometry()
{
#if USE_GUILIB
testQPoint();
testQPointF();
testQRect();
testQRectF();
testQSize();
testQSizeF();
#endif
}
} // namespace qrect
namespace qregion {
void testQRegion()
{
#if USE_GUILIB
// Works with Python dumpers only.
QRegion region;
BREAK_HERE;
// Check region <empty> QRegion.
// Continue.
// Step over until end, check display looks sane.
region += QRect(100, 100, 200, 200);
BREAK_HERE;
// Expand region.
// Check region <1 items> QRegion.
// CheckType region.extents QRect.
// Check region.innerArea 40000 int.
// CheckType region.innerRect QRect.
// Check region.numRects 1 int.
// Check region.rects <0 items> QVector<QRect>.
// Continue.
region += QRect(300, 300, 400, 500);
BREAK_HERE;
// Expand region.
// Check region <2 items> QRegion.
// CheckType region.extents QRect.
// Check region.innerArea 200000 int.
// CheckType region.innerRect QRect.
// Check region.numRects 2 int.
// Check region.rects <2 items> QVector<QRect>.
// Continue.
region += QRect(500, 500, 600, 600);
BREAK_HERE;
// Expand region.
// Check region <4 items> QRegion.
// CheckType region.extents QRect.
// Check region.innerArea 360000 int.
// CheckType region.innerRect QRect.
// Check region.numRects 4 int.
// Check region.rects <8 items> QVector<QRect>.
// Continue.
region += QRect(500, 500, 600, 600);
BREAK_HERE;
// Check region <4 items> QRegion.
// Continue.
region += QRect(500, 500, 600, 600);
BREAK_HERE;
// Check region <4 items> QRegion.
// Continue.
region += QRect(500, 500, 600, 600);
BREAK_HERE;
// Check region <4 items> QRegion.
// Continue.
QVector<int> vv = {1, 2, 3};
dummyStatement(®ion, &vv);
QRect x(12, 34, 66, 77);
QVector<QRect> rr = {{1, 2, 3, 4}, {5, 6, 7, 8}};
dummyStatement(®ion, &vv, &rr, &x);
#endif
}
} // namespace qregion
namespace plugin {
void testPlugin()
{
QString dir = QDir::currentPath();
#ifdef Q_OS_LINUX
QLibrary lib(dir + "/libsimple_test_plugin.so");
#endif
#ifdef Q_OS_MAC
dir = QFileInfo(dir + "/../..").canonicalPath();
QLibrary lib(dir + "/libsimple_test_plugin.dylib");
#endif
#ifdef Q_OS_WIN
QLibrary lib(dir + "/debug/simple_test_plugin.dll");
#endif
BREAK_HERE;
// CheckType dir QString.
// CheckType lib QLibrary.
// CheckType name QString.
// CheckType res int.
// Continue.
// Step
int (*foo)() = (int(*)()) lib.resolve("pluginTest");
QString name = lib.fileName();
int res = 4;
if (foo) {
BREAK_HERE;
// Check res 4 int.
// Continue.
// Step
res = foo();
} else {
BREAK_HERE;
// Step
name = lib.errorString();
}
lib.unload();
dummyStatement(&name, &res);
}
} // namespace plugin
namespace final {
void testQSettings()
{
// Note: Construct a QCoreApplication first.
QSettings settings("/tmp/test.ini", QSettings::IniFormat);
QVariant value = settings.value("item1","").toString();
BREAK_HERE;
// Expand settings.
// Check settings QSettings.
// Check settings.@1 "" QObject.
// Check value "" QVariant (QString).
// Continue.
dummyStatement(&settings, &value);
}
void testNullPointerDeref()
{
int a = 'a';
int b = 'b';
BREAK_HERE;
// Continue.
return; // Comment out.
volatile int *ip = 0;
*(int *)ip = a + b;
}
void testEndlessRecursion(int i = 0)
{
BREAK_HERE;
// Continue.
return; // Comment out.
testEndlessRecursion(i + 1);
}
void testEndlessLoop()
{
qlonglong a = 1;
// gdb:
// Breakpoint at "while" will stop only once
// Hitting "Pause" button might show backtrace of different thread
BREAK_HERE;
// Continue.
// Jump over next line.
return;
while (a > 0)
++a;
dummyStatement(&a);
}
void testUncaughtException()
{
BREAK_HERE;
// Continue.
// Jump over next line.
return;
throw 42;
}
void testApplicationStart(QCoreApplication *app)
{
#if USE_GUILIB
QString str = QString::fromUtf8("XXXXXXXXXXXXXXyyXXX ö");
QLabel l(str);
l.setObjectName("Some Label");
l.show();
#endif
// Jump over next line.
return;
app->exec();
dummyStatement(&app);
}
void testNullReferenceHelper(int &i, int &j)
{
i += 1;
j += 1;
}
void testNullReference()
{
int i = 21;
int *p = &i;
int *q = 0;
int &pp = *p;
int &qq = *q;
BREAK_HERE;
// Check i 21 int.
// CheckType p int.
// Check p 21 int.
// Check q 0x0 int *.
// Check pp 21 int &.
// Check qq <null reference> int &.
// Continue.
return; // Comment out.
testNullReferenceHelper(pp, qq);
dummyStatement(p, q, &i);
}
void testFinal(QCoreApplication *app)
{
// This contains all "final" tests that do not allow proceeding
// with further tests.
BREAK_HERE;
// Continue.
testQSettings();
testNullPointerDeref();
testNullReference();
testEndlessLoop();
testEndlessRecursion();
testUncaughtException();
testApplicationStart(app);
}
} // namespace final
namespace qset {
void testQSet1()
{
QSet<int> s;
s.insert(11);
s.insert(22);
BREAK_HERE;
// Expand s.
// Check s <2 items> QSet<int>.
// Check s.22 22 int.
// Check s.11 11 int.
// Continue.
dummyStatement(&s);
}
void testQSet2()
{
QSet<QString> s;
s.insert("11.0");
s.insert("22.0");
BREAK_HERE;
// Expand s.
// Check s <2 items> QSet<QString>.
// Check s.0 "11.0" QString.
// Check s.1 "22.0" QString.
// Continue.
dummyStatement(&s);
}
void testQSet3()
{
QObject ob;
QSet<QPointer<QObject> > s;
QPointer<QObject> ptr(&ob);
s.insert(ptr);
s.insert(ptr);
s.insert(ptr);
BREAK_HERE;
// Expand s.
// Check s <1 items> QSet<QPointer<QObject>>.
// CheckType s.0 QPointer<QObject>.
// Continue.
dummyStatement(&ptr, &s);
}
void testQSet()
{
testQSet1();
testQSet2();
testQSet3();
}
} // namespace qset
namespace qsharedpointer {
class EmployeeData : public QSharedData
{
public:
EmployeeData() : id(-1) { name.clear(); }
EmployeeData(const EmployeeData &other)
: QSharedData(other), id(other.id), name(other.name) { }
~EmployeeData() { }
int id;
QString name;
};
class Employee
{
public:
Employee() { d = new EmployeeData; }
Employee(int id, QString name) {
d = new EmployeeData;
setId(id);
setName(name);
}
Employee(const Employee &other)
: d (other.d)
{
}
void setId(int id) { d->id = id; }
void setName(QString name) { d->name = name; }
int id() const { return d->id; }
QString name() const { return d->name; }
private:
QSharedDataPointer<EmployeeData> d;
};
void testQSharedPointer1()
{
QSharedPointer<int> ptr(new int(43));
QSharedPointer<int> ptr2 = ptr;
QSharedPointer<int> ptr3 = ptr;
BREAK_HERE;
dummyStatement(&ptr, &ptr2, &ptr3);
}
void testQSharedPointer2()
{
QSharedPointer<QString> ptr(new QString("hallo"));
QSharedPointer<QString> ptr2 = ptr;
QSharedPointer<QString> ptr3 = ptr;
BREAK_HERE;
dummyStatement(&ptr, &ptr2, &ptr3);
}
void testQSharedPointer3()
{
QSharedPointer<int> iptr(new int(43));
QWeakPointer<int> ptr(iptr);
QWeakPointer<int> ptr2 = ptr;
QWeakPointer<int> ptr3 = ptr;
BREAK_HERE;
dummyStatement(&ptr, &ptr2, &ptr3);
}
void testQSharedPointer4()
{
QSharedPointer<QString> sptr(new QString("hallo"));
QWeakPointer<QString> ptr(sptr);
QWeakPointer<QString> ptr2 = ptr;
QWeakPointer<QString> ptr3 = ptr;
BREAK_HERE;
dummyStatement(&ptr, &ptr2, &ptr3);
}
void testQSharedPointer5()
{
QSharedPointer<Foo> fptr(new Foo(1));
QWeakPointer<Foo> ptr(fptr);
QWeakPointer<Foo> ptr2 = ptr;
QWeakPointer<Foo> ptr3 = ptr;
BREAK_HERE;
dummyStatement(&ptr, &ptr2, &ptr3);
}
void testQSharedPointer()
{
testQSharedPointer1();
testQSharedPointer2();
testQSharedPointer3();
testQSharedPointer4();
testQSharedPointer5();
}
} // namespace qsharedpointer
namespace qxml {
void testQXmlAttributes()
{
// only works with Python dumper
QXmlAttributes atts;
atts.append("name1", "uri1", "localPart1", "value1");
atts.append("name2", "uri2", "localPart2", "value2");
atts.append("name3", "uri3", "localPart3", "value3");
BREAK_HERE;
// Expand atts atts.attList atts.attList.1 atts.attList.2.
// CheckType atts QXmlAttributes.
// CheckType atts.[vptr] .
// Check atts.attList <3 items> QXmlAttributes::AttributeList.
// CheckType atts.attList.0 QXmlAttributes::Attribute.
// Check atts.attList.0.localname "localPart1" QString.
// Check atts.attList.0.qname "name1" QString.
// Check atts.attList.0.uri "uri1" QString.
// Check atts.attList.0.value "value1" QString.
// CheckType atts.attList.1 QXmlAttributes::Attribute.
// Check atts.attList.1.localname "localPart2" QString.
// Check atts.attList.1.qname "name2" QString.
// Check atts.attList.1.uri "uri2" QString.
// Check atts.attList.1.value "value2" QString.
// CheckType atts.attList.2 QXmlAttributes::Attribute.
// Check atts.attList.2.localname "localPart3" QString.
// Check atts.attList.2.qname "name3" QString.
// Check atts.attList.2.uri "uri3" QString.
// Check atts.attList.2.value "value3" QString.
// CheckType atts.d QXmlAttributesPrivate.
// Continue.
dummyStatement();
}
} // namespace qxml
namespace stdarray {
void testStdArray()
{
#if USE_CXX11LIB
std::array<int, 4> a = {{1, 2, 3, 4}};
std::array<QString, 4> b = {{"1", "2", "3", "4"}};
BREAK_HERE;
// Expand a.
// Check a <4 items> std::array<int, 4u>.
// Check a <4 items> std::array<QString, 4u>.
// Continue.
dummyStatement(&a, &b);
#endif
}
} // namespace stdcomplex
namespace stdcomplex {
void testStdComplex()
{
std::complex<double> c(1, 2);
BREAK_HERE;
// Expand c.
// Check c (1.000000, 2.000000) std::complex<double>.
// Continue.
dummyStatement(&c);
}
} // namespace stdcomplex
namespace stddeque {
void testStdDequeInt()
{
std::deque<int> deque;
deque.push_back(1);
deque.push_back(2);
BREAK_HERE;
// Expand deque.
// Check deque <2 items> std::deque<int>.
// Check deque.0 1 int.
// Check deque.1 2 int.
// Continue.
dummyStatement(&deque);
}
void testStdDequeIntStar()
{
// This is not supposed to work with the compiled dumpers.
std::deque<int *> deque;
deque.push_back(new int(1));
deque.push_back(0);
deque.push_back(new int(2));
BREAK_HERE;
// Expand deque.
// Check deque <3 items> std::deque<int*>.
// CheckType deque.0 int.
// Check deque.1 0x0 int *.
// Continue.
deque.pop_back();
deque.pop_front();
deque.pop_front();
dummyStatement(&deque);
}
void testStdDequeFoo()
{
std::deque<Foo> deque;
deque.push_back(1);
deque.push_front(2);
BREAK_HERE;
// Expand deque deque.0 deque.1.
// Check deque <2 items> std::deque<Foo>.
// CheckType deque.0 Foo.
// Check deque.0.a 2 int.
// CheckType deque.1 Foo.
// Check deque.1.a 1 int.
// Continue.
dummyStatement(&deque);
}
void testStdDequeFooStar()
{
std::deque<Foo *> deque;
deque.push_back(new Foo(1));
deque.push_back(new Foo(2));
BREAK_HERE;
// Expand deque deque.0 deque.1.
// Check deque <2 items> std::deque<Foo*>.
// CheckType deque.0 Foo.
// Check deque.0.a 1 int.
// CheckType deque.1 Foo.
// Check deque.1.a 2 int.
// Continue.
dummyStatement(&deque);
}
void testStdDeque()
{
testStdDequeInt();
testStdDequeIntStar();
testStdDequeFoo();
testStdDequeFooStar();
}
} // namespace stddeque
namespace stdhashset {
void testStdHashSet()
{
// This is not supposed to work with the compiled dumpers.
#if USE_GCC_EXT
using namespace __gnu_cxx;
hash_set<int> h;
h.insert(1);
h.insert(194);
h.insert(2);
h.insert(3);
BREAK_HERE;
// Expand h.
// Check h <4 items> __gnu__cxx::hash_set<int>.
// Check h.0 194 int.
// Check h.1 1 int.
// Check h.2 2 int.
// Check h.3 3 int.
// Continue.
dummyStatement(&h);
#endif
}
} // namespace stdhashset
namespace stdlist {
void testStdListInt()
{
std::list<int> list;
list.push_back(1);
list.push_back(2);
BREAK_HERE;
// Expand list.
// Check list <2 items> std::list<int>.
// Check list.0 1 int.
// Check list.1 2 int.
// Continue.
dummyStatement(&list);
}
void testStdListIntStar()
{
std::list<int *> list;
list.push_back(new int(1));
list.push_back(0);
list.push_back(new int(2));
BREAK_HERE;
// Expand list.
// Check list <3 items> std::list<int*>.
// CheckType list.0 int.
// Check list.1 0x0 int *.
// CheckType list.2 int.
// Continue.
dummyStatement(&list);
}
void testStdListIntBig()
{
// This is not supposed to work with the compiled dumpers.
std::list<int> list;
for (int i = 0; i < 10000; ++i)
list.push_back(i);
BREAK_HERE;
// Expand list.
// Check list <more than 1000 items> std::list<int>.
// Check list.0 0 int.
// Check list.999 999 int.
// Continue.
dummyStatement(&list);
}
void testStdListFoo()
{
std::list<Foo> list;
list.push_back(15);
list.push_back(16);
BREAK_HERE;
// Expand list list.0 list.1.
// Check list <2 items> std::list<Foo>.
// CheckType list.0 Foo.
// Check list.0.a 15 int.
// CheckType list.1 Foo.
// Check list.1.a 16 int.
// Continue.
dummyStatement(&list);
}
void testStdListFooStar()
{
std::list<Foo *> list;
list.push_back(new Foo(1));
list.push_back(0);
list.push_back(new Foo(2));
BREAK_HERE;
// Expand list list.0 list.2.
// Check list <3 items> std::list<Foo*>.
// CheckType list.0 Foo.
// Check list.0.a 1 int.
// Check list.1 0x0 Foo *.
// CheckType list.2 Foo.
// Check list.2.a 2 int.
// Continue.
dummyStatement(&list);
}
void testStdListBool()
{
std::list<bool> list;
list.push_back(true);
list.push_back(false);
BREAK_HERE;
// Expand list.
// Check list <2 items> std::list<bool>.
// Check list.0 true bool.
// Check list.1 false bool.
// Continue.
dummyStatement(&list);
}
void testStdList()
{
testStdListInt();
testStdListIntStar();
testStdListIntBig();
testStdListFoo();
testStdListFooStar();
testStdListBool();
}
} // namespace stdlist
namespace stdunorderedmap {
#if USE_CXX11LIB
void testStdUnorderedMapStringFoo()
{
// This is not supposed to work with the compiled dumpers.
std::unordered_map<std::string, Foo> map;
map["22.0"] = Foo(22);
map["33.0"] = Foo(33);
map["44.0"] = Foo(44);
BREAK_HERE;
// Expand map map.0 map.0.second map.2 map.2.second.
// Check map <3 items> std::unordered_map<QString, Foo>.
// Check map.0 std::pair<QString const, Foo>.
// Check map.0.first "22.0" QString.
// CheckType map.0.second Foo.
// Check map.0.second.a 22 int.
// Check map.1 std::pair<QString const, Foo>.
// Check map.2.first "44.0" QString.
// CheckType map.2.second Foo.
// Check map.2.second.a 44 int.
// Continue.
dummyStatement(&map);
}
void testStdUnorderedMapCharStarFoo()
{
std::unordered_map<const char *, Foo> map;
map["22.0"] = Foo(22);
map["33.0"] = Foo(33);
BREAK_HERE;
// Expand map map.0 map.0.first map.0.second map.1 map.1.second.
// Check map <2 items> std::unordered_map<char const*, Foo>.
// Check map.0 std::pair<char const* const, Foo>.
// CheckType map.0.first char *.
// Check map.0.first.*first 50 '2' char.
// CheckType map.0.second Foo.
// Check map.0.second.a 22 int.
// Check map.1 std::pair<char const* const, Foo>.
// CheckType map.1.first char *.
// Check map.1.first.*first 51 '3' char.
// CheckType map.1.second Foo.
// Check map.1.second.a 33 int.
// Continue.
dummyStatement(&map);
}
void testStdUnorderedMapUIntUInt()
{
std::unordered_map<uint, uint> map;
map[11] = 1;
map[22] = 2;
BREAK_HERE;
// Expand map.
// Check map <2 items> std::unordered_map<unsigned int, unsigned int>.
// Check map.11 1 unsigned int.
// Check map.22 2 unsigned int.
// Continue.
dummyStatement(&map);
}
void testStdUnorderedMapUIntStringList()
{
#if 0
std::unordered_map<uint, QStringList> map;
map[11] = QStringList() << "11";
map[22] = QStringList() << "22";
BREAK_HERE;
// Expand map map.0 map.0.first map.0.second map.1 map.1.second.
// Check map <2 items> std::unordered_map<unsigned int, QStringList>.
// Check map.0 std::pair<unsigned int const, QStringList>.
// Check map.0.first 11 unsigned int.
// Check map.0.second <1 items> QStringList.
// Check map.0.second.0 "11" QString.
// Check map.1 std::pair<unsigned int const, QStringList>.
// Check map.1.first 22 unsigned int.
// Check map.1.second <1 items> QStringList.
// Check map.1.second.0 "22" QString.
// Continue.
dummyStatement(&map);
#endif
}
void testStdUnorderedMapUIntStringListTypedef()
{
#if 0
typedef std::unordered_map<uint, QStringList> T;
T map;
map[11] = QStringList() << "11";
map[22] = QStringList() << "22";
BREAK_HERE;
// Check map <2 items> stdmap::T.
// Continue.
dummyStatement(&map);
#endif
}
void testStdUnorderedMapUIntFloat()
{
std::unordered_map<uint, float> map;
map[11] = 11.0;
map[22] = 22.0;
BREAK_HERE;
// Expand map.
// Check map <2 items> std::unordered_map<unsigned int, float>.
// Check map.11 11 float.
// Check map.22 22 float.
// Continue.
dummyStatement(&map);
}
void testStdUnorderedMapUIntFloatIterator()
{
typedef std::unordered_map<int, float> Map;
Map map;
map[11] = 11.0;
map[22] = 22.0;
map[33] = 33.0;
map[44] = 44.0;
map[55] = 55.0;
map[66] = 66.0;
Map::iterator it1 = map.begin();
Map::iterator it2 = it1; ++it2;
Map::iterator it3 = it2; ++it3;
Map::iterator it4 = it3; ++it4;
Map::iterator it5 = it4; ++it5;
Map::iterator it6 = it5; ++it6;
BREAK_HERE;
// Expand map.
// Check map <6 items> stdmap::Map.
// Check map.11 11 float.
// Check it1.first 11 int.
// Check it1.second 11 float.
// Check it6.first 66 int.
// Check it6.second 66 float.
// Continue.
dummyStatement(&map, &it1, &it2, &it3, &it4, &it5, &it6);
}
void testStdUnorderedMapStringFloat()
{
std::unordered_map<std::string, float> map;
map["11.0"] = 11.0;
map["22.0"] = 22.0;
BREAK_HERE;
// Expand map map.0 map.1.
// Check map <2 items> std::unordered_map<QString, float>.
// Check map.0 std::pair<QString const, float>.
// Check map.0.first "11.0" QString.
// Check map.0.second 11 float.
// Check map.1 std::pair<QString const, float>.
// Check map.1.first "22.0" QString.
// Check map.1.second 22 float.
// Continue.
dummyStatement(&map);
}
void testStdUnorderedMapIntString()
{
std::unordered_map<int, QString> map;
map[11] = "11.0";
map[22] = "22.0";
BREAK_HERE;
// Expand map map.0 map.1.
// Check map <2 items> std::unordered_map<int, QString>.
// Check map.0 std::pair<int const, QString>.
// Check map.0.first 11 int.
// Check map.0.second "11.0" QString.
// Check map.1 std::pair<int const, QString>.
// Check map.1.first 22 int.
// Check map.1.second "22.0" QString.
// Continue.
dummyStatement(&map);
}
void testStdUnorderedMapStringPointer()
{
QObject ob;
std::unordered_map<std::string, QPointer<QObject> > map;
map["Hallo"] = QPointer<QObject>(&ob);
map["Welt"] = QPointer<QObject>(&ob);
map["."] = QPointer<QObject>(&ob);
BREAK_HERE;
// Expand map map.0 map.2.
// Check map <3 items> std::unordered_map<QString, QPointer<QObject>>.
// Check map.0 std::pair<QString const, QPointer<QObject>>.
// Check map.0.first "." QString.
// CheckType map.0.second QPointer<QObject>.
// Check map.2 std::pair<QString const, QPointer<QObject>>.
// Check map.2.first "Welt" QString.
// Continue.
dummyStatement(&map);
}
void testStdUnorderedMap()
{
testStdUnorderedMapStringFoo();
testStdUnorderedMapCharStarFoo();
testStdUnorderedMapUIntUInt();
testStdUnorderedMapUIntStringList();
testStdUnorderedMapUIntStringListTypedef();
testStdUnorderedMapUIntFloat();
testStdUnorderedMapUIntFloatIterator();
testStdUnorderedMapStringFloat();
testStdUnorderedMapIntString();
testStdUnorderedMapStringPointer();
}
#else
void testStdUnorderedMap() {}
#endif
} // namespace stdunorderedmap
namespace stdmap {
void testStdMapStringFoo()
{
// This is not supposed to work with the compiled dumpers.
std::map<QString, Foo> map;
map["22.0"] = Foo(22);
map["33.0"] = Foo(33);
map["44.0"] = Foo(44);
BREAK_HERE;
// Expand map map.0 map.0.second map.2 map.2.second.
// Check map <3 items> std::map<QString, Foo>.
// Check map.0 std::pair<QString const, Foo>.
// Check map.0.first "22.0" QString.
// CheckType map.0.second Foo.
// Check map.0.second.a 22 int.
// Check map.1 std::pair<QString const, Foo>.
// Check map.2.first "44.0" QString.
// CheckType map.2.second Foo.
// Check map.2.second.a 44 int.
// Continue.
dummyStatement(&map);
}
void testStdMapCharStarFoo()
{
std::map<const char *, Foo> map;
map["22.0"] = Foo(22);
map["33.0"] = Foo(33);
BREAK_HERE;
// Expand map map.0 map.0.first map.0.second map.1 map.1.second.
// Check map <2 items> std::map<char const*, Foo>.
// Check map.0 std::pair<char const* const, Foo>.
// CheckType map.0.first char *.
// Check map.0.first.*first 50 '2' char.
// CheckType map.0.second Foo.
// Check map.0.second.a 22 int.
// Check map.1 std::pair<char const* const, Foo>.
// CheckType map.1.first char *.
// Check map.1.first.*first 51 '3' char.
// CheckType map.1.second Foo.
// Check map.1.second.a 33 int.
// Continue.
dummyStatement(&map);
}
void testStdMapUIntUInt()
{
std::map<uint, uint> map;
map[11] = 1;
map[22] = 2;
BREAK_HERE;
// Expand map.
// Check map <2 items> std::map<unsigned int, unsigned int>.
// Check map.11 1 unsigned int.
// Check map.22 2 unsigned int.
// Continue.
dummyStatement(&map);
}
void testStdMapUIntStringList()
{
std::map<uint, QStringList> map;
map[11] = QStringList() << "11";
map[22] = QStringList() << "22";
BREAK_HERE;
// Expand map map.0 map.0.first map.0.second map.1 map.1.second.
// Check map <2 items> std::map<unsigned int, QStringList>.
// Check map.0 std::pair<unsigned int const, QStringList>.
// Check map.0.first 11 unsigned int.
// Check map.0.second <1 items> QStringList.
// Check map.0.second.0 "11" QString.
// Check map.1 std::pair<unsigned int const, QStringList>.
// Check map.1.first 22 unsigned int.
// Check map.1.second <1 items> QStringList.
// Check map.1.second.0 "22" QString.
// Continue.
dummyStatement(&map);
}
void testStdMapUIntStringListTypedef()
{
typedef std::map<uint, QStringList> T;
T map;
map[11] = QStringList() << "11";
map[22] = QStringList() << "22";
BREAK_HERE;
// Check map <2 items> stdmap::T.
// Continue.
dummyStatement(&map);
}
void testStdMapUIntFloat()
{
std::map<uint, float> map;
map[11] = 11.0;
map[22] = 22.0;
BREAK_HERE;
// Expand map.
// Check map <2 items> std::map<unsigned int, float>.
// Check map.11 11 float.
// Check map.22 22 float.
// Continue.
dummyStatement(&map);
}
void testStdMapUIntFloatIterator()
{
typedef std::map<int, float> Map;
Map map;
map[11] = 11.0;
map[22] = 22.0;
map[33] = 33.0;
map[44] = 44.0;
map[55] = 55.0;
map[66] = 66.0;
Map::iterator it1 = map.begin();
Map::iterator it2 = it1; ++it2;
Map::iterator it3 = it2; ++it3;
Map::iterator it4 = it3; ++it4;
Map::iterator it5 = it4; ++it5;
Map::iterator it6 = it5; ++it6;
BREAK_HERE;
// Expand map.
// Check map <6 items> stdmap::Map.
// Check map.11 11 float.
// Check it1.first 11 int.
// Check it1.second 11 float.
// Check it6.first 66 int.
// Check it6.second 66 float.
// Continue.
dummyStatement(&map, &it1, &it2, &it3, &it4, &it5, &it6);
}
void testStdMapStringFloat()
{
std::map<QString, float> map;
map["11.0"] = 11.0;
map["22.0"] = 22.0;
BREAK_HERE;
// Expand map map.0 map.1.
// Check map <2 items> std::map<QString, float>.
// Check map.0 std::pair<QString const, float>.
// Check map.0.first "11.0" QString.
// Check map.0.second 11 float.
// Check map.1 std::pair<QString const, float>.
// Check map.1.first "22.0" QString.
// Check map.1.second 22 float.
// Continue.
dummyStatement(&map);
}
void testStdMapIntString()
{
std::map<int, QString> map;
map[11] = "11.0";
map[22] = "22.0";
BREAK_HERE;
// Expand map map.0 map.1.
// Check map <2 items> std::map<int, QString>.
// Check map.0 std::pair<int const, QString>.
// Check map.0.first 11 int.
// Check map.0.second "11.0" QString.
// Check map.1 std::pair<int const, QString>.
// Check map.1.first 22 int.
// Check map.1.second "22.0" QString.
// Continue.
dummyStatement(&map);
}
void testStdMapStringPointer()
{
QObject ob;
std::map<QString, QPointer<QObject> > map;
map["Hallo"] = QPointer<QObject>(&ob);
map["Welt"] = QPointer<QObject>(&ob);
map["."] = QPointer<QObject>(&ob);
BREAK_HERE;
// Expand map map.0 map.2.
// Check map <3 items> std::map<QString, QPointer<QObject>>.
// Check map.0 std::pair<QString const, QPointer<QObject>>.
// Check map.0.first "." QString.
// CheckType map.0.second QPointer<QObject>.
// Check map.2 std::pair<QString const, QPointer<QObject>>.
// Check map.2.first "Welt" QString.
// Continue.
dummyStatement(&map);
}
void testStdMultiMapUIntFloat()
{
typedef std::pair<uint, float> V;
std::multimap<uint, float> map;
map.insert(V(11, 11.0f));
map.insert(V(22, 22.0f));
map.insert(V(22, 33.0f));
map.insert(V(22, 34.0f));
map.insert(V(22, 35.0f));
map.insert(V(22, 36.0f));
BREAK_HERE;
// Expand map.
// Check map <6 items> std:multimap<unsigned int, float>.
// Check map.0 11 float.
// Check map.5 22 float.
// Continue.
dummyStatement(&map);
}
void testStdMultiSetInt()
{
#if USE_CXX11LIB
#ifndef Q_CC_MSVC
std::multiset<int> set = {1, 1, 2, 3, 3, 3};
BREAK_HERE;
dummyStatement(&set);
#endif
#endif
}
void testStdMap()
{
testStdMapStringFoo();
testStdMapCharStarFoo();
testStdMapUIntUInt();
testStdMapUIntStringList();
testStdMapUIntStringListTypedef();
testStdMapUIntFloat();
testStdMapUIntFloatIterator();
testStdMapStringFloat();
testStdMapIntString();
testStdMapStringPointer();
testStdMultiMapUIntFloat();
testStdMultiSetInt();
}
} // namespace stdmap
namespace stdptr {
#if USE_CXX11LIB
void testStdUniquePtrInt()
{
std::unique_ptr<int> p(new int(32));
BREAK_HERE;
// Check p 32 std::unique_ptr<int, std::default_delete<int> >.
// Continue.
dummyStatement(&p);
}
void testStdUniquePtrFoo()
{
std::unique_ptr<Foo> p(new Foo);
BREAK_HERE;
// Check p 32 std::unique_ptr<Foo, std::default_delete<Foo> >.
// Continue.
dummyStatement(&p);
}
void testStdSharedPtrInt()
{
std::shared_ptr<int> p(new int(32));
BREAK_HERE;
// Check p 32 std::shared_ptr<int, std::default_delete<int> >.
// Continue.
dummyStatement(&p);
}
void testStdSharedPtrFoo()
{
std::shared_ptr<Foo> p(new Foo);
BREAK_HERE;
// Check p 32 std::shared_ptr<Foo, std::default_delete<int> >.
// Continue.
dummyStatement(&p);
}
void testStdPtr()
{
testStdUniquePtrInt();
testStdUniquePtrFoo();
testStdSharedPtrInt();
testStdSharedPtrFoo();
}
#else
void testStdPtr() {}
#endif
} // namespace stdptr
namespace lambda {
void testLambda()
{
#if USE_CXX11LIB
std::string x;
auto f = [&] () -> const std::string & {
size_t z = x.size();
Q_UNUSED(z)
return x;
};
auto c = f();
BREAK_HERE;
dummyStatement(&x, &f, &c);
#endif
}
} // namespace lambda
namespace stdset {
void testStdSetInt()
{
// This is not supposed to work with the compiled dumpers.
std::set<int> set;
set.insert(11);
set.insert(22);
set.insert(33);
BREAK_HERE;
// Check set <3 items> std::set<int>
// Continue.
dummyStatement(&set);
}
void testStdSetIntIterator()
{
typedef std::set<int> Set;
Set set;
set.insert(11);
set.insert(22);
set.insert(33);
set.insert(44);
set.insert(55);
set.insert(66);
Set::iterator it1 = set.begin();
Set::iterator it2 = it1; ++it2;
Set::iterator it3 = it2; ++it3;
Set::iterator it4 = it3; ++it4;
Set::iterator it5 = it4; ++it5;
Set::iterator it6 = it5; ++it6;
BREAK_HERE;
// Check set <6 items> stdset::Set.
// Check it1.value 11 int.
// Check it6.value 66 int.
// Continue.
dummyStatement(&set, &it1, &it2, &it3, &it4, &it5, &it6);
}
void testStdSetString()
{
std::set<QString> set;
set.insert("22.0");
BREAK_HERE;
// Expand set.
// Check set <1 items> std::set<QString>.
// Check set.0 "22.0" QString.
// Continue.
dummyStatement(&set);
}
void testStdSetPointer()
{
QObject ob;
std::set<QPointer<QObject> > hash;
QPointer<QObject> ptr(&ob);
BREAK_HERE;
// Check hash <0 items> std::set<QPointer<QObject>, std::less<QPointer<QObject>>, std::allocator<QPointer<QObject>>>.
// Check ob "" QObject.
// CheckType ptr QPointer<QObject>.
// Continue.
dummyStatement(&ptr);
}
void testStdSet()
{
testStdSetInt();
testStdSetIntIterator();
testStdSetString();
testStdSetPointer();
}
} // namespace stdset
namespace stdstack {
void testStdStack1()
{
// This does not work with the compiled dumpers.
std::stack<int *> s;
BREAK_HERE;
// Check s <0 items> std::stack<int*>.
// Continue.
s.push(new int(1));
BREAK_HERE;
// Check s <1 items> std::stack<int*>.
// Continue.
s.push(0);
BREAK_HERE;
// Check s <2 items> std::stack<int*>.
// Continue.
s.push(new int(2));
BREAK_HERE;
// Expand s.
// Check s <3 items> std::stack<int*>.
// CheckType s.0 int.
// Check s.1 0x0 int *.
// CheckType s.2 int.
// Continue.
s.pop();
BREAK_HERE;
// Check s <2 items> std::stack<int*>.
// Continue.
s.pop();
BREAK_HERE;
// Check s <1 items> std::stack<int*>.
// Continue.
s.pop();
BREAK_HERE;
// Check s <0 items> std::stack<int*>.
// Continue.
dummyStatement(&s);
}
void testStdStack2()
{
std::stack<int> s;
BREAK_HERE;
// Check s <0 items> std::stack<int>.
// Continue.
s.push(1);
BREAK_HERE;
// Check s <1 items> std::stack<int>.
// Continue.
s.push(2);
BREAK_HERE;
// Expand s.
// Check s <2 items> std::stack<int>.
// Check s.0 1 int.
// Check s.1 2 int.
// Continue.
dummyStatement(&s);
}
void testStdStack3()
{
std::stack<Foo *> s;
BREAK_HERE;
// Check s <0 items> std::stack<Foo*>.
// Continue.
s.push(new Foo(1));
BREAK_HERE;
// Check s <1 items> std::stack<Foo*>.
// Continue.
s.push(new Foo(2));
BREAK_HERE;
// Expand s s.0 s.1.
// Check s <2 items> std::stack<Foo*>.
// CheckType s.0 Foo.
// Check s.0.a 1 int.
// CheckType s.1 Foo.
// Check s.1.a 2 int.
// Continue.
dummyStatement(&s);
}
void testStdStack4()
{
std::stack<Foo> s;
BREAK_HERE;
// Check s <0 items> std::stack<Foo>.
// Continue.
s.push(1);
BREAK_HERE;
// Check s <1 items> std::stack<Foo>.
// Continue.
s.push(2);
BREAK_HERE;
// Expand s s.0 s.1.
// Check s <2 items> std::stack<Foo>.
// CheckType s.0 Foo.
// Check s.0.a 1 int.
// CheckType s.1 Foo.
// Check s.1.a 2 int.
// Continue.
dummyStatement(&s);
}
void testStdStack()
{
testStdStack1();
testStdStack2();
testStdStack3();
testStdStack4();
}
} // namespace stdstack
namespace stdstring {
void testStdString1()
{
std::string str;
std::wstring wstr;
BREAK_HERE;
// Check str "" std::string.
// Check wstr "" std::wstring.
// Continue.
str += "b";
wstr += wchar_t('e');
str += "d";
wstr += wchar_t('e');
str += "e";
str += "b";
str += "d";
str += "e";
wstr += wchar_t('e');
wstr += wchar_t('e');
str += "e";
BREAK_HERE;
// Check str "bdebdee" std::string.
// Check wstr "eeee" std::wstring.
// Continue.
dummyStatement(&str, &wstr);
}
void testStdString2()
{
std::string str = "foo";
QList<std::string> l;
BREAK_HERE;
// Check l <0 items> QList<std::string>.
// Check str "foo" std::string.
// Continue.
l.push_back(str);
BREAK_HERE;
// Check l <1 items> QList<std::string>.
// Continue.
l.push_back(str);
BREAK_HERE;
// Check l <2 items> QList<std::string>.
// Continue.
l.push_back(str);
BREAK_HERE;
// Check l <3 items> QList<std::string>.
// Continue.
l.push_back(str);
BREAK_HERE;
// Expand l.
// Check l <4 items> QList<std::string>.
// CheckType l.0 std::string.
// CheckType l.3 std::string.
// Check str "foo" std::string.
// Continue.
dummyStatement(&str, &l);
}
void testStdString3()
{
std::string str = "foo";
std::vector<std::string> v;
BREAK_HERE;
// Check str "foo" std::string.
// Check v <0 items> std::vector<std::string>.
// Continue.
v.push_back(str);
BREAK_HERE;
// Check v <1 items> std::vector<std::string>.
// Continue.
v.push_back(str);
BREAK_HERE;
// Check v <2 items> std::vector<std::string>.
// Continue.
v.push_back(str);
BREAK_HERE;
// Check v <3 items> std::vector<std::string>.
// Continue.
v.push_back(str);
BREAK_HERE;
// Expand v.
// Check v <4 items> std::vector<std::string>.
// Check v.0 "foo" std::string.
// Check v.3 "foo" std::string.
// Continue.
dummyStatement(&str, &v);
}
void testStdString()
{
testStdString1();
testStdString2();
testStdString3();
}
} // namespace stdstring
namespace stdvector {
void testStdVector1()
{
std::vector<int *> v;
BREAK_HERE;
// Check v <0 items> std::vector<int*>.
// Continue.
v.push_back(new int(1));
BREAK_HERE;
// Check v <1 items> std::vector<int*>.
// Continue.
v.push_back(0);
BREAK_HERE;
// Check v <2 items> std::vector<int*>.
// Continue.
v.push_back(new int(2));
BREAK_HERE;
// Expand v.
// Check v <3 items> std::vector<int*>.
// Check v.0 1 int.
// Check v.1 0x0 int *.
// Check v.2 2 int.
// Continue.
dummyStatement(&v);
}
void testStdVector2()
{
std::vector<int> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
v.push_back(4);
BREAK_HERE;
// Expand v.
// Check v <4 items> std::vector<int>.
// Check v.0 1 int.
// Check v.3 4 int.
// Continue.
dummyStatement(&v);
}
void testStdVector3()
{
std::vector<Foo *> v;
v.push_back(new Foo(1));
v.push_back(0);
v.push_back(new Foo(2));
BREAK_HERE;
// Expand v v.0 v.0.x v.2.
// Check v <3 items> std::vector<Foo*>.
// CheckType v.0 Foo.
// Check v.0.a 1 int.
// Check v.1 0x0 Foo *.
// CheckType v.2 Foo.
// Check v.2.a 2 int.
// Continue.
dummyStatement(&v);
}
void testStdVector4()
{
std::vector<Foo> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
v.push_back(4);
BREAK_HERE;
// Expand v v.0 v.0.x.
// Check v <4 items> std::vector<Foo>.
// CheckType v.0 Foo.
// Check v.1.a 2 int.
// CheckType v.3 Foo.
// Continue.
dummyStatement(&v);
}
void testStdVectorBool1()
{
std::vector<bool> v;
v.push_back(true);
v.push_back(false);
v.push_back(false);
v.push_back(true);
v.push_back(false);
BREAK_HERE;
// Expand v.
// Check v <5 items> std::vector<bool>.
// Check v.0 true bool.
// Check v.1 false bool.
// Check v.2 false bool.
// Check v.3 true bool.
// Check v.4 false bool.
// Continue.
dummyStatement(&v);
}
void testStdVectorBool2()
{
std::vector<bool> v1(65, true);
std::vector<bool> v2(65);
BREAK_HERE;
// Expand v1.
// Expand v2.
// Check v1 <65 items> std::vector<bool>.
// Check v1.0 true bool.
// Check v1.64 true bool.
// Check v2 <65 items> std::vector<bool>.
// Check v2.0 false bool.
// Check v2.64 false bool.
// Continue.
dummyStatement(&v1, &v2);
}
void testStdVector6()
{
std::vector<std::list<int> *> vector;
std::list<int> list;
vector.push_back(new std::list<int>(list));
vector.push_back(0);
list.push_back(45);
vector.push_back(new std::list<int>(list));
vector.push_back(0);
BREAK_HERE;
// Expand list vector vector.2.
// Check list <1 items> std::list<int>.
// Check list.0 45 int.
// Check vector <4 items> std::vector<std::list<int>*>.
// Check vector.0 <0 items> std::list<int>.
// Check vector.2 <1 items> std::list<int>.
// Check vector.2.0 45 int.
// Check vector.3 0x0 std::list<int> *.
// Continue.
dummyStatement(&vector, &list);
}
void testStdVector()
{
testStdVector1();
testStdVector2();
testStdVector3();
testStdVector4();
testStdVectorBool1();
testStdVectorBool2();
testStdVector6();
}
} // namespace stdvector
namespace stdstream {
void testStdStream()
{
using namespace std;
ifstream is;
BREAK_HERE;
// CheckType is std::ifstream.
// Continue.
#ifdef Q_OS_WIN
is.open("C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe");
#else
is.open("/etc/passwd");
#endif
BREAK_HERE;
// Continue.
bool ok = is.good();
BREAK_HERE;
// Check ok true bool.
// Continue.
dummyStatement(&is, &ok);
}
} // namespace stdstream
namespace itemmodel {
void testItemModel()
{
#if USE_GUILIB
//char buf[100];
//QString *s = static_cast<QString *>(static_cast<void *>(&(v.data_ptr().data.c)));
//QString *t = (QString *)&(v.data_ptr());
QStandardItemModel m;
QStandardItem *i1, *i2, *i11;
m.appendRow(QList<QStandardItem *>()
<< (i1 = new QStandardItem("1")) << (new QStandardItem("a")) << (new QStandardItem("a2")));
QModelIndex mi = i1->index();
m.appendRow(QList<QStandardItem *>()
<< (i2 = new QStandardItem("2")) << (new QStandardItem("b")));
i1->appendRow(QList<QStandardItem *>()
<< (i11 = new QStandardItem("11")) << (new QStandardItem("aa")));
BREAK_HERE;
// CheckType i1 QStandardItem.
// CheckType i11 QStandardItem.
// CheckType i2 QStandardItem.
// Check m QStandardItemModel.
// Check mi "1" QModelIndex.
// Continue.
dummyStatement(&i1, &mi, &m, &i2, &i11);
#endif
}
} // namespace itemmodel
namespace qstack {
void testQStackInt()
{
QStack<int> s;
s.append(1);
s.append(2);
BREAK_HERE;
// Expand s.
// Check s <2 items> QStack<int>.
// Check s.0 1 int.
// Check s.1 2 int.
// Continue.
dummyStatement(&s);
}
void testQStackBig()
{
QStack<int> s;
for (int i = 0; i != 10000; ++i)
s.append(i);
BREAK_HERE;
// Expand s.
// Check s <10000 items> QStack<int>.
// Check s.0 0 int.
// Check s.1999 1999 int.
// Continue.
dummyStatement(&s);
}
void testQStackFooPointer()
{
QStack<Foo *> s;
s.append(new Foo(1));
s.append(0);
s.append(new Foo(2));
BREAK_HERE;
// Expand s s.0 s.2.
// Check s <3 items> QStack<Foo*>.
// CheckType s.0 Foo.
// Check s.0.a 1 int.
// Check s.1 0x0 Foo *.
// CheckType s.2 Foo.
// Check s.2.a 2 int.
// Continue.
dummyStatement(&s);
}
void testQStackFoo()
{
QStack<Foo> s;
s.append(1);
s.append(2);
s.append(3);
s.append(4);
BREAK_HERE;
// Expand s s.0 s.3.
// Check s <4 items> QStack<Foo>.
// CheckType s.0 Foo.
// Check s.0.a 1 int.
// CheckType s.3 Foo.
// Check s.3.a 4 int.
// Continue.
dummyStatement(&s);
}
void testQStackBool()
{
QStack<bool> s;
s.append(true);
s.append(false);
BREAK_HERE;
// Expand s.
// Check s <2 items> QStack<bool>.
// Check s.0 true bool.
// Check s.1 false bool.
// Continue.
dummyStatement(&s);
}
void testQStack()
{
testQStackInt();
testQStackBig();
testQStackFoo();
testQStackFooPointer();
testQStackBool();
}
} // namespace qstack
namespace qurl {
void testQUrl()
{
QUrl url(QString("http://qt-project.org"));
BREAK_HERE;
// Check url "http://qt-project.org" QUrl.
// Continue.
dummyStatement(&url);
}
} // namespace qurl
namespace qstring {
void testQStringQuotes()
{
QString str1("Hello Qt"); // --> Value: "Hello Qt"
QString str2("Hello\nQt"); // --> Value: ""Hello\nQt"" (double quote not expected)
QString str3("Hello\rQt"); // --> Value: ""HelloQt"" (double quote and missing \r not expected)
QString str4("Hello\tQt"); // --> Value: "Hello\9Qt" (expected \t instead of \9)
BREAK_HERE;
// Check str1 "Hello Qt" QString.
// Check str2 "Hello\nQt" QString.
// Check str3 "Hello\rQt" QString.
// Check str4 "Hello\tQt" QString.
// Continue.
dummyStatement(&str1, &str2, &str3, &str4);
}
void testQString1()
{
QString str = "Hello ";
str += " big, ";
str += "\t";
str += "\r";
str += "\n";
str += QLatin1Char(0);
str += QLatin1Char(1);
str += " fat ";
str += " World";
str.prepend("Prefix: ");
BREAK_HERE;
// Check str "Prefix: Hello big, \t\r\n\000\001 fat World" QString.
// Continue.
dummyStatement(&str);
}
void testQString2()
{
QChar data[] = {'H', 'e', 'l', 'l', 'o'};
QString str1 = QString::fromRawData(data, 4);
QString str2 = QString::fromRawData(data + 1, 4);
BREAK_HERE;
// Check str1 "Hell" QString.
// Check str2 "ello" QString.
// Continue.
dummyStatement(&str1, &str2, &data);
}
void stringRefTest(const QString &refstring)
{
dummyStatement(&refstring);
}
void testQString3()
{
QString str = "Hello ";
str += " big, ";
str += " fat ";
str += " World ";
QString string("String Test");
QString *pstring = new QString("Pointer String Test");
stringRefTest(QString("Ref String Test"));
string = "Hi";
string += "Du";
qDebug() << string;
BREAK_HERE;
// CheckType pstring QString.
// Check str "Hello big, fat World " QString.
// Check string "HiDu" QString.
// Continue.
delete pstring;
dummyStatement(&str, &string, pstring);
}
void testQString4()
{
QString str;
for (int i = 0; i < 1000000; ++i)
str += QString::fromLatin1("%1 ").arg(i);
BREAK_HERE;
BREAK_HERE;
BREAK_HERE;
BREAK_HERE;
dummyStatement(&str);
}
void testQStringRef()
{
QString str = "Hello";
QStringRef ref(&str, 1, 2);
BREAK_HERE;
// Check ref "el" QStringRef.
// Continue.
dummyStatement(&str, &ref);
}
void testQString()
{
testQString1();
testQString2();
testQString3();
testQString4();
testQStringRef();
testQStringQuotes();
}
} // namespace qstring
namespace qstringlist {
void testQStringList()
{
QStringList l;
l << "Hello ";
l << " big, ";
l << " fat ";
l.takeFirst();
l << " World ";
BREAK_HERE;
// Expand l.
// Check l <3 items> QStringList.
// Check l.0 " big, " QString.
// Check l.1 " fat " QString.
// Check l.2 " World " QString.
// Continue.
dummyStatement(&l);
}
} // namespace qstringlist
namespace formats {
void testString()
{
const wchar_t *w = L"aöa";
QString u;
if (sizeof(wchar_t) == 4)
u = QString::fromUcs4((uint *)w);
else
u = QString::fromUtf16((ushort *)w);
BREAK_HERE;
// Check u "aöa" QString.
// CheckType w wchar_t *.
// Continue.
// All: Select UTF-8 in "Change Format for Type" in L&W context menu.
// Windows: Select UTF-16 in "Change Format for Type" in L&W context menu.
// Other: Select UCS-6 in "Change Format for Type" in L&W context menu.
dummyStatement(&u, &w);
}
void testCharPointers()
{
// These tests should result in properly displayed umlauts in the
// Locals&Watchers view. It is only support on gdb with Python.
const char *s = "aöa";
const char *t = "a\xc3\xb6";
const wchar_t *w = L"aöa";
BREAK_HERE;
// CheckType s char *.
// CheckType t char *.
// CheckType w wchar_t *.
// Continue.
// All: Select UTF-8 in "Change Format for Type" in L&W context menu.
// Windows: Select UTF-16 in "Change Format for Type" in L&W context menu.
// Other: Select UCS-6 in "Change Format for Type" in L&W context menu.
const unsigned char uu[] = {'a', 153 /* ö Latin1 */, 'a'};
const unsigned char *u = uu;
BREAK_HERE;
// CheckType u unsigned char *.
// CheckType uu unsigned char [3].
// Continue.
// Make sure to undo "Change Format".
dummyStatement(&s, &w, &t, &u);
}
void testCharArrays()
{
// These tests should result in properly displayed umlauts in the
// Locals&Watchers view. It is only support on gdb with Python.
const char s[] = "aöa";
const char t[] = "aöax";
const wchar_t w[] = L"aöa";
BREAK_HERE;
// CheckType s char [5].
// CheckType t char [6].
// CheckType w wchar_t [4].
// Continue.
// All: Select UTF-8 in "Change Format for Type" in L&W context menu.
// Windows: Select UTF-16 in "Change Format for Type" in L&W context menu.
// Other: Select UCS-6 in "Change Format for Type" in L&W context menu.
// Make sure to undo "Change Format".
dummyStatement(&s, &w, &t);
}
void testFormats()
{
testCharPointers();
testCharArrays();
testString();
}
} // namespace formats
namespace text {
void testText()
{
#if USE_GUILIB
//char *argv[] = { "xxx", 0 };
QTextDocument doc;
doc.setPlainText("Hallo\nWorld");
QTextCursor tc;
BREAK_HERE;
// CheckType doc QTextDocument.
// Continue.
tc = doc.find("all");
BREAK_HERE;
// Check tc 4 QTextCursor.
// Continue.
int pos = tc.position();
BREAK_HERE;
// Check pos 4 int.
// Continue.
int anc = tc.anchor();
BREAK_HERE;
// Check anc 1 int.
// Continue.
dummyStatement(&pos, &anc);
#endif
}
} // namespace text
namespace qprocess {
void testQProcess()
{
return;
const int N = 14;
QProcess proc[N];
for (int i = 0; i != N; ++i) {
proc[i].start("sleep", {"10"});
proc[i].waitForStarted();
}
BREAK_HERE;
dummyStatement(&proc);
}
} // namespace qprocess
namespace qthread {
class Thread : public QThread
{
public:
Thread() {}
void setId(int id) { m_id = id; }
void run()
{
int j = 2;
++j;
for (int i = 0; i != 1000; ++i) {
//sleep(1);
std::cerr << m_id;
}
if (m_id == 2) {
++j;
}
if (m_id == 3) {
BREAK_HERE;
// Expand this.
// Expand this.@1.
// Check j 3 int.
// CheckType this qthread::Thread.
// Check this.@1 QThread.
// Check this.@1.@1 "Thread #3" QObject.
// Continue.
dummyStatement(this);
}
std::cerr << j;
}
private:
int m_id;
};
void testQThread()
{
//return;
const int N = 14;
Thread thread[N];
for (int i = 0; i != N; ++i) {
thread[i].setId(i);
thread[i].setObjectName("Thread #" + QString::number(i));
thread[i].start();
}
BREAK_HERE;
// Expand thread.
// Expand thread.0.
// Expand thread.0.@1.
// Expand thread.13.
// Expand thread.13.@1.
// CheckType thread qthread::Thread [14].
// Check thread.0 qthread::Thread.
// Check thread.0.@1.@1 "Thread #0" qthread::Thread.
// Check thread.13 qthread::Thread.
// Check thread.13.@1.@1 "Thread #13" qthread::Thread.
// Continue.
for (int i = 0; i != N; ++i) {
thread[i].wait();
}
dummyStatement(&thread);
}
}
Q_DECLARE_METATYPE(QHostAddress)
typedef QMap<uint, QStringList> QMapUIntQStringList;
Q_DECLARE_METATYPE(QMapUIntQStringList)
namespace qvariant {
void testQVariant1()
{
QVariant value;
QVariant::Type t = QVariant::String;
value = QVariant(t, (void*)0);
*(QString*)value.data() = QString("Some string");
int i = 1;
BREAK_HERE;
// Check t QVariant::String (10) QVariant::Type.
// Check value "Some string" QVariant (QString).
// Continue.
// Check the variant contains a proper QString.
dummyStatement(&i);
}
void testQVariant2()
{
// Check var contains objects of the types indicated.
QVariant var; // Type 0, invalid
BREAK_HERE;
// Check var (invalid) QVariant (invalid).
// Continue.
var.setValue(true); // 1, bool
BREAK_HERE;
// Check var true QVariant (bool).
// Continue.
var.setValue(2); // 2, int
BREAK_HERE;
// Check var 2 QVariant (int).
// Continue.
var.setValue(3u); // 3, uint
BREAK_HERE;
// Check var 3 QVariant (uint).
// Continue.
var.setValue(qlonglong(4)); // 4, qlonglong
BREAK_HERE;
// Check var 4 QVariant (qlonglong).
// Continue.
var.setValue(qulonglong(5)); // 5, qulonglong
BREAK_HERE;
// Check var 5 QVariant (qulonglong).
// Continue.
var.setValue(double(6)); // 6, double
BREAK_HERE;
// Check var 6 QVariant (double).
// Continue.
var.setValue(QChar(7)); // 7, QChar
BREAK_HERE;
// Check var '?' (7) QVariant (QChar).
// Continue.
//None, # 8, QVariantMap
// None, # 9, QVariantList
var.setValue(QString("Hello 10")); // 10, QString
BREAK_HERE;
// Check var "Hello 10" QVariant (QString).
// Continue.
#if USE_GUILIB
var.setValue(QRect(100, 200, 300, 400)); // 19 QRect
BREAK_HERE;
// Check var 300x400+100+200 QVariant (QRect).
// Continue.
var.setValue(QRectF(100, 200, 300, 400)); // 19 QRectF
BREAK_HERE;
// Check var 300x400+100+200 QVariant (QRectF).
// Continue.
#endif
/*
"QStringList", # 11
"QByteArray", # 12
"QBitArray", # 13
"QDate", # 14
"QTime", # 15
"QDateTime", # 16
"QUrl", # 17
"QLocale", # 18
"QRect", # 19
"QRectF", # 20
"QSize", # 21
"QSizeF", # 22
"QLine", # 23
"QLineF", # 24
"QPoint", # 25
"QPointF", # 26
"QRegExp", # 27
*/
dummyStatement(&var);
}
void testQVariant3()
{
QVariant var;
BREAK_HERE;
// Check var (invalid) QVariant (invalid).
// Continue.
// Check the list is updated properly.
var.setValue(QStringList() << "World");
BREAK_HERE;
// Expand var.
// Check var <1 items> QVariant (QStringList).
// Check var.0 "World" QString.
// Continue.
var.setValue(QStringList() << "World" << "Hello");
BREAK_HERE;
// Expand var.
// Check var <2 items> QVariant (QStringList).
// Check var.1 "Hello" QString.
// Continue.
var.setValue(QStringList() << "Hello" << "Hello");
BREAK_HERE;
// Expand var.
// Check var <2 items> QVariant (QStringList).
// Check var.0 "Hello" QString.
// Check var.1 "Hello" QString.
// Continue.
var.setValue(QStringList() << "World" << "Hello" << "Hello");
BREAK_HERE;
// Expand var.
// Check var <3 items> QVariant (QStringList).
// Check var.0 "World" QString.
// Continue.
dummyStatement(&var);
}
void testQVariant4()
{
QVariant var;
QHostAddress ha("127.0.0.1");
var.setValue(ha);
QHostAddress ha1 = var.value<QHostAddress>();
BREAK_HERE;
// Expand ha ha1 var.
// Check ha "127.0.0.1" QHostAddress.
// Check ha.a 0 quint32.
// CheckType ha.a6 Q_IPV6ADDR.
// Check ha.ipString "127.0.0.1" QString.
// Check ha.isParsed false bool.
// Check ha.protocol QAbstractSocket::UnknownNetworkLayerProtocol (-1) QAbstractSocket::NetworkLayerProtocol.
// Check ha.scopeId "" QString.
// Check ha1 "127.0.0.1" QHostAddress.
// Check ha1.a 0 quint32.
// CheckType ha1.a6 Q_IPV6ADDR.
// Check ha1.ipString "127.0.0.1" QString.
// Check ha1.isParsed false bool.
// Check ha1.protocol QAbstractSocket::UnknownNetworkLayerProtocol (-1) QAbstractSocket::NetworkLayerProtocol.
// Check ha1.scopeId "" QString.
// CheckType var QVariant (QHostAddress).
// Check var.data "127.0.0.1" QHostAddress.
// Continue.
dummyStatement(&ha1);
}
void testQVariant5()
{
// This checks user defined types in QVariants.
typedef QMap<uint, QStringList> MyType;
MyType my;
my[1] = (QStringList() << "Hello");
my[3] = (QStringList() << "World");
QVariant var;
var.setValue(my);
// FIXME: Known to break
//QString type = var.typeName();
var.setValue(my);
const char *name = QMetaType::typeName(var.userType());
BREAK_HERE;
// Expand my my.0 my.0.value my.1 my.1.value var var.data var.data.0 var.data.0.value var.data.1 var.data.1.value.
// Check my <2 items> qvariant::MyType.
// Check my.0 QMapNode<unsigned int, QStringList>.
// Check my.0.key 1 unsigned int.
// Check my.0.value <1 items> QStringList.
// Check my.0.value.0 "Hello" QString.
// Check my.1 QMapNode<unsigned int, QStringList>.
// Check my.1.key 3 unsigned int.
// Check my.1.value <1 items> QStringList.
// Check my.1.value.0 "World" QString.
// CheckType var QVariant (QMap<unsigned int , QStringList>).
// Check var.data <2 items> QMap<unsigned int, QStringList>.
// Check var.data.0 QMapNode<unsigned int, QStringList>.
// Check var.data.0.key 1 unsigned int.
// Check var.data.0.value <1 items> QStringList.
// Check var.0.value.0 "Hello" QString.
// Check var.data.1 QMapNode<unsigned int, QStringList>.
// Check var.data.1.key 3 unsigned int.
// Check var.data.1.value <1 items> QStringList.
// Check var.data.1.value.0 "World" QString.
// Continue.
var.setValue(my);
var.setValue(my);
var.setValue(my);
dummyStatement(&var, &name);
}
void testQVariant6()
{
#if QT_VERSION > 0x050000
QList<int> list;
list << 1 << 2 << 3;
QVariant variant = QVariant::fromValue(list);
BREAK_HERE;
// Expand list variant variant.data.
// Check list <3 items> QList<int>.
// Check list.0 1 int.
// Check list.1 2 int.
// Check list.2 3 int.
// CheckType variant QVariant (QList<int>).
// Check variant.data <3 items> QList<int>.
// Check variant.data.0 1 int.
// Check variant.data.1 2 int.
// Check variant.data.2 3 int.
// Continue.
list.clear();
list = variant.value<QList<int> >();
BREAK_HERE;
// Expand list.
// Check list <3 items> QList<int>.
// Check list.0 1 int.
// Check list.1 2 int.
// Check list.2 3 int.
// Continue.
dummyStatement(&list);
#endif
}
void testQVariantList()
{
QVariantList vl;
BREAK_HERE;
// Check vl <0 items> QVariantList.
// Continue.
vl.append(QVariant(1));
vl.append(QVariant(2));
vl.append(QVariant("Some String"));
vl.append(QVariant(21));
vl.append(QVariant(22));
vl.append(QVariant("2Some String"));
BREAK_HERE;
// Expand vl.
// Check vl <6 items> QVariantList.
// CheckType vl.0 QVariant (int).
// CheckType vl.2 QVariant (QString).
// Continue.
dummyStatement(&vl);
}
void testQVariantMap()
{
QVariantMap vm;
BREAK_HERE;
// Check vm <0 items> QVariantMap.
// Continue.
vm["abd"] = QVariant(1);
BREAK_HERE;
// Expand vm vm.0 vm.5.
// Check vm <6 items> QVariantMap.
// Check vm.0 QMapNode<QString, QVariant>.
// Check vm.0.key "a" QString.
// Check vm.0.value 1 QVariant (int).
// Check vm.5 QMapNode<QString, QVariant>.
// Check vm.5.key "f" QString.
// Check vm.5.value "2Some String" QVariant (QString).
// Continue.
dummyStatement(&vm);
}
void testQVariant()
{
testQVariant1();
testQVariant2();
testQVariant3();
testQVariant4();
testQVariant5();
testQVariant6();
testQVariantList();
testQVariantMap();
}
} // namespace qvariant
namespace qvector {
void testQVectorIntBig()
{
// This tests the display of a big vector.
QVector<int> vec(10000);
for (int i = 0; i != vec.size(); ++i)
vec[i] = i * i;
BREAK_HERE;
// Expand vec.
// Check vec <10000 items> QVector<int>.
// Check vec.0 0 int.
// Check vec.1999 3996001 int.
// Continue.
// step over
// check that the display updates in reasonable time
vec[1] = 1;
vec[2] = 2;
vec.append(1);
vec.append(1);
BREAK_HERE;
// Expand vec.
// Check vec <10002 items> QVector<int>.
// Check vec.1 1 int.
// Check vec.2 2 int.
// Continue.
dummyStatement(&vec);
}
void testQVectorFoo()
{
// This tests the display of a vector of pointers to custom structs.
QVector<Foo> vec;
BREAK_HERE;
// Check vec <0 items> QVector<Foo>.
// Continue.
// step over, check display.
vec.append(1);
vec.append(2);
BREAK_HERE;
// Expand vec vec.0 vec.1.
// Check vec <2 items> QVector<Foo>.
// CheckType vec.0 Foo.
// Check vec.0.a 1 int.
// CheckType vec.1 Foo.
// Check vec.1.a 2 int.
// Continue.
dummyStatement(&vec);
}
typedef QVector<Foo> FooVector;
void testQVectorFooTypedef()
{
FooVector vec;
vec.append(Foo(2));
vec.append(Foo(3));
dummyStatement(&vec);
}
void testQVectorFooStar()
{
// This tests the display of a vector of pointers to custom structs.
QVector<Foo *> vec;
BREAK_HERE;
// Check vec <0 items> QVector<Foo*>.
// Continue.
// step over
// check that the display is ok.
vec.append(new Foo(1));
vec.append(0);
vec.append(new Foo(2));
vec.append(new Fooooo(3));
// switch "Auto derefencing pointers" in Locals context menu
// off and on again, and check result looks sane.
BREAK_HERE;
// Expand vec vec.0 vec.2.
// Check vec <4 items> QVector<Foo*>.
// CheckType vec.0 Foo.
// Check vec.0.a 1 int.
// Check vec.1 0x0 Foo *.
// CheckType vec.2 Foo.
// Check vec.2.a 2 int.
// CheckType vec.3 Fooooo.
// Check vec.3.a 5 int.
// Continue.
dummyStatement(&vec);
}
void testQVectorBool()
{
// This tests the display of a vector of custom structs.
QVector<bool> vec;
BREAK_HERE;
// Check vec <0 items> QVector<bool>.
// Continue.
// step over
// check that the display is ok.
vec.append(true);
vec.append(false);
BREAK_HERE;
// Expand vec.
// Check vec <2 items> QVector<bool>.
// Check vec.0 true bool.
// Check vec.1 false bool.
// Continue.
dummyStatement(&vec);
}
void testQVectorListInt()
{
QVector<QList<int> > vec;
QVector<QList<int> > *pv = &vec;
BREAK_HERE;
// CheckType pv QVector<QList<int>>.
// Check vec <0 items> QVector<QList<int>>.
// Continue.
vec.append(QList<int>() << 1);
vec.append(QList<int>() << 2 << 3);
BREAK_HERE;
// Expand pv pv.0 pv.1 vec vec.0 vec.1.
// CheckType pv QVector<QList<int>>.
// Check pv.0 <1 items> QList<int>.
// Check pv.0.0 1 int.
// Check pv.1 <2 items> QList<int>.
// Check pv.1.0 2 int.
// Check pv.1.1 3 int.
// Check vec <2 items> QVector<QList<int>>.
// Check vec.0 <1 items> QList<int>.
// Check vec.0.0 1 int.
// Check vec.1 <2 items> QList<int>.
// Check vec.1.0 2 int.
// Check vec.1.1 3 int.
// Continue.
dummyStatement(pv, &vec);
}
void testQVector()
{
testQVectorIntBig();
testQVectorFoo();
testQVectorFooTypedef();
testQVectorFooStar();
testQVectorBool();
testQVectorListInt();
}
} // namespace qvector
namespace noargs {
class Goo
{
public:
Goo(const QString &str, const int n) : str_(str), n_(n) {}
private:
QString str_;
int n_;
};
typedef QList<Goo> GooList;
void testNoArgumentName(int i, int, int k)
{
// This is not supposed to work with the compiled dumpers.
GooList list;
list.append(Goo("Hello", 1));
list.append(Goo("World", 2));
QList<Goo> list2;
list2.append(Goo("Hello", 1));
list2.append(Goo("World", 2));
BREAK_HERE;
// Expand list list.0 list.1 list2 list2.1.
// Check i 1 int.
// Check k 3 int.
// Check list <2 items> noargs::GooList.
// CheckType list.0 noargs::Goo.
// Check list.0.n_ 1 int.
// Check list.0.str_ "Hello" QString.
// CheckType list.1 noargs::Goo.
// Check list.1.n_ 2 int.
// Check list.1.str_ "World" QString.
// Check list2 <2 items> QList<noargs::Goo>.
// CheckType list2.0 noargs::Goo.
// Check list2.0.n_ 1 int.
// Check list2.0.str_ "Hello" QString.
// CheckType list2.1 noargs::Goo.
// Check list2.1.n_ 2 int.
// Check list2.1.str_ "World" QString.
// Continue.
dummyStatement(&i, &k);
}
} // namespace noargs
void foo() {}
void foo(int) {}
void foo(QList<int>) {}
void foo(QList<QVector<int> >) {}
void foo(QList<QVector<int> *>) {}
void foo(QList<QVector<int *> *>) {}
template <class T>
void foo(QList<QVector<T> *>) {}
namespace namespc {
class MyBase : public QObject
{
public:
MyBase() {}
virtual void doit(int i)
{
n = i;
}
protected:
int n;
};
namespace nested {
class MyFoo : public MyBase
{
public:
MyFoo() {}
virtual void doit(int i)
{
// Note there's a local 'n' and one in the base class.
n = i;
}
protected:
int n;
};
class MyBar : public MyFoo
{
public:
virtual void doit(int i)
{
n = i + 1;
}
};
namespace {
class MyAnon : public MyBar
{
public:
virtual void doit(int i)
{
n = i + 3;
}
};
namespace baz {
class MyBaz : public MyAnon
{
public:
virtual void doit(int i)
{
n = i + 5;
}
};
} // namespace baz
} // namespace anon
} // namespace nested
void testNamespace()
{
// This checks whether classes with "special" names are
// properly displayed.
using namespace nested;
MyFoo foo;
MyBar bar;
MyAnon anon;
baz::MyBaz baz;
BREAK_HERE;
// CheckType anon namespc::nested::(anonymous namespace)::MyAnon.
// CheckType bar namespc::nested::MyBar.
// CheckType baz namespc::nested::(anonymous namespace)::baz::MyBaz.
// CheckType foo namespc::nested::MyFoo.
// Continue.
// step into the doit() functions
baz.doit(1);
anon.doit(1);
foo.doit(1);
bar.doit(1);
dummyStatement();
}
} // namespace namespc
namespace gccextensions {
void testGccExtensions()
{
#ifdef __GNUC__
char v[8] = {1, 2};
char w __attribute__ ((vector_size (8))) = {1, 2};
int y[2] = {1, 2};
int z __attribute__ ((vector_size (8))) = {1, 2};
BREAK_HERE;
// Expand v.
// Check v.0 1 char.
// Check v.1 2 char.
// Check w.0 1 char.
// Check w.1 2 char.
// Check y.0 1 int.
// Check y.1 2 int.
// Check z.0 1 int.
// Check z.1 2 int.
// Continue.
dummyStatement(&v, &w, &y, &z);
#endif
}
} // namespace gccextension
class Z : public QObject
{
public:
Z() {
f = new Foo();
i = 0;
i = 1;
i = 2;
i = 3;
}
int i;
Foo *f;
};
void testMemoryView()
{
int a[20];
for (int i = 0; i != 20; ++i)
a[i] = i;
dummyStatement(&a);
}
QString fooxx()
{
return "bababa";
}
namespace basic {
struct Empty {};
struct Data { Data() : a(42) {} int a; };
struct VEmpty {};
struct VData { VData() : v(42) {} int v; };
struct S1 : Empty, Data, virtual VEmpty, virtual VData
{
S1() : i1(1) {}
int i1;
};
struct S2 : Empty, Data, virtual VEmpty, virtual VData
{
S2() : i2(1) {}
int i2;
};
struct Combined : S1, S2
{
Combined() : c(1) {} int c;
};
void testInheritance()
{
Combined combined;
combined.S1::a = 42;
combined.S2::a = 43;
combined.S1::v = 44;
combined.S2::v = 45;
BREAK_HERE;
// Continue.
dummyStatement(&combined);
}
// This tests display of basic types.
void testInt()
{
quint64 u64 = ULLONG_MAX;
qint64 s64 = LLONG_MAX;
quint32 u32 = UINT_MAX;
qint32 s32 = INT_MAX;
quint64 u64s = 0;
qint64 s64s = LLONG_MIN;
quint32 u32s = 0;
qint32 s32s = INT_MIN;
BREAK_HERE;
// Check u64 18446744073709551615 quint64.
// Check s64 9223372036854775807 qint64.
// Check u32 4294967295 quint32.
// Check s32 2147483647 qint32.
// Check u64s 0 quint64.
// Check s64s -9223372036854775808 qint64.
// Check u32s 0 quint32.
// Check s32s -2147483648 qint32.
// Continue.
dummyStatement(&u64, &s64, &u32, &s32, &u64s, &s64s, &u32s, &s32s);
}
void testStdInt()
{
uint8_t u8 = 64;
int8_t s8 = 65;
BREAK_HERE;
// Check u8 64 uint8_t
// Check u8 65 int8_t
dummyStatement(&u8, &s8);
}
void testArray1()
{
double d[3][3];
for (int i = 0; i != 3; ++i)
for (int j = 0; j != 3; ++j)
d[i][j] = i + j;
BREAK_HERE;
// Expand d d.0.
// CheckType d double [3][3].
// CheckType d.0 double [3].
// Check d.0.0 0 double.
// Check d.0.2 2 double.
// CheckType d.2 double [3].
// Continue.
dummyStatement(&d);
}
void testArray2()
{
char c[20];
c[0] = 'a';
c[1] = 'b';
c[2] = 'c';
c[3] = 'd';
BREAK_HERE;
// Expand c.
// CheckType c char [20].
// Check c.0 97 'a' char.
// Check c.3 100 'd' char.
// Continue.
dummyStatement(&c);
}
void testArray3()
{
QString s[20];
s[0] = "a";
s[1] = "b";
s[2] = "c";
s[3] = "d";
BREAK_HERE;
// Expand s.
// CheckType s QString [20].
// Check s.0 "a" QString.
// Check s.3 "d" QString.
// Check s.4 "" QString.
// Check s.19 "" QString.
// Continue.
dummyStatement(&s);
}
void testArray4()
{
QByteArray b[20];
b[0] = "a";
b[1] = "b";
b[2] = "c";
b[3] = "d";
BREAK_HERE;
// Expand b.
// CheckType b QByteArray [20].
// Check b.0 "a" QByteArray.
// Check b.3 "d" QByteArray.
// Check b.4 "" QByteArray.
// Check b.19 "" QByteArray.
// Continue.
dummyStatement(&b);
}
void testArray5()
{
Foo foo[10];
//for (int i = 0; i != sizeof(foo)/sizeof(foo[0]); ++i) {
for (int i = 0; i < 5; ++i) {
foo[i].a = i;
foo[i].doit();
}
BREAK_HERE;
// Expand foo.
// CheckType foo Foo [10].
// CheckType foo.0 Foo.
// CheckType foo.9 Foo.
// Continue.
dummyStatement(&foo);
}
// https://bugreports.qt.io/browse/QTCREATORBUG-5326
void testChar()
{
char s[6];
s[0] = 0;
BREAK_HERE;
// Expand s.
// CheckType s char [6].
// Check s.0 0 '\0' char.
// Continue.
// Manual: Open pinnable tooltip.
// Manual: Step over.
// Manual: Check that display and tooltip look sane.
strcat(s, "\"");
strcat(s, "\"");
strcat(s, "a");
strcat(s, "b");
strcat(s, "\"");
// Manual: Close tooltip.
dummyStatement(&s);
}
static char buf[20] = {0};
void testCharStar()
{
char *s = buf;
BREAK_HERE;
// Expand s.
// CheckType s char *.
// Continue.
// Manual: Open pinnable tooltip.
// Manual: Step over.
// Manual: Check that display and tooltip look sane.
s = strcat(s,"\"");
s = strcat(s,"\"");
s = strcat(s,"a");
s = strcat(s,"b");
s = strcat(s,"\"");
// Close tooltip.
dummyStatement(&s);
}
struct S
{
uint x : 1;
uint y : 1;
bool c : 1;
bool b;
float f;
double d;
qreal q;
int i;
};
void testBitfields()
{
// This checks whether bitfields are properly displayed
S s;
BREAK_HERE;
// Expand s.
// CheckType s basic::S.
// CheckType s.b bool.
// CheckType s.c bool.
// CheckType s.d double.
// CheckType s.f float.
// CheckType s.i int.
// CheckType s.q qreal.
// CheckType s.x uint.
// CheckType s.y uint.
// Continue.
s.i = 0;
dummyStatement(&s);
}
struct Function
{
Function(QByteArray var, QByteArray f, double min, double max)
: var(var), f(f), min(min), max(max) {}
QByteArray var;
QByteArray f;
double min;
double max;
};
void testFunction()
{
// In order to use this, switch on the 'qDump__Function' in dumper.py
Function func("x", "sin(x)", 0, 1);
BREAK_HERE;
// Expand func.
// CheckType func basic::Function.
// Check func.f "sin(x)" QByteArray.
// Check func.max 1 double.
// Check func.min 0 double.
// Check func.var "x" QByteArray.
// Continue.
func.max = 10;
func.f = "cos(x)";
func.max = 4;
func.max = 5;
func.max = 6;
func.max = 7;
BREAK_HERE;
// Expand func.
// CheckType func basic::Function.
// Check func.f "cos(x)" QByteArray.
// Check func.max 7 double.
// Continue.
dummyStatement(&func);
}
struct Color
{
int r,g,b,a;
Color() { r = 1, g = 2, b = 3, a = 4; }
};
void testAlphabeticSorting()
{
// This checks whether alphabetic sorting of structure
// members work.
Color c;
BREAK_HERE;
// Expand c.
// CheckType c basic::Color.
// Check c.a 4 int.
// Check c.b 3 int.
// Check c.g 2 int.
// Check c.r 1 int.
// Continue.
// Manual: Toogle "Sort Member Alphabetically" in context menu
// Manual: of "Locals" and "Expressions" views.
// Manual: Check that order of displayed members changes.
dummyStatement(&c);
}
namespace ns {
typedef unsigned long long vl;
typedef vl verylong;
#if USE_CXX11LIB
using uvl = unsigned long long;
using usingverylong = uvl;
#endif
}
void testTypedef()
{
typedef quint32 myType1;
typedef unsigned int myType2;
myType1 t1 = 0;
myType2 t2 = 0;
ns::vl j = 1000;
ns::verylong k = 1000;
BREAK_HERE;
// Check j 1000 basic::ns::vl.
// Check k 1000 basic::ns::verylong.
// Check t1 0 basic::myType1.
// Check t2 0 basic::myType2.
// Continue.
dummyStatement(&j, &k, &t1, &t2);
}
void testUsing()
{
#if USE_CXX11LIB
using myType1 = quint32;
using myType2 = unsigned int;
myType1 t1 = 0;
myType2 t2 = 0;
ns::uvl j = 1000;
ns::usingverylong k = 1000;
BREAK_HERE;
// Check j 1000 basic::ns::uvl.
// Check k 1000 basic::ns::usingverylong.
// Check t1 0 basic::myType1.
// Check t2 0 basic::myType2.
// Continue.
dummyStatement(&j, &k, &t1, &t2);
#endif
}
void testStruct()
{
Foo f(2);
f.doit();
f.doit();
f.doit();
BREAK_HERE;
// Expand f.
// CheckType f Foo.
// Check f.a 5 int.
// Check f.b 2 int.
// Continue.
dummyStatement(&f);
}
void testUnion()
{
union U
{
int a;
int b;
} u;
BREAK_HERE;
// Expand u.
// CheckType u basic::U.
// CheckType u.a int.
// CheckType u.b int.
// Continue.
dummyStatement(&u);
}
void testUninitialized()
{
// This tests the display of uninitialized data.
BREAK_UNINITIALIZED_HERE;
// Check hii <not accessible> QHash<int, int>.
// Check hss <not accessible> QHash<QString, QString>.
// Check li <not accessible> QList<int>.
// CheckType mii <not accessible> QMap<int, int>.
// Check mss <not accessible> QMap<QString, QString>.
// Check s <not accessible> QString.
// Check si <not accessible> QStack<int>.
// Check sl <not accessible> QStringList.
// Check sli <not accessible> std::list<int>.
// CheckType smii std::map<int, int>.
// CheckType smss std::map<std::string, std::string>.
// CheckType ss std::string.
// Check ssi <not accessible> std::stack<int>.
// Check ssl <not accessible> std::list<std::string>.
// CheckType svi std::vector<int>.
// Check vi <not accessible> QVector<int>.
// Continue.
// Manual: Note: All values should be <uninitialized> or random data.
// Manual: Check that nothing bad happens if items with random data
// Manual: are expanded.
QString s;
QStringList sl;
QMap<int, int> mii;
QMap<QString, QString> mss;
QHash<int, int> hii;
QHash<QString, QString> hss;
QList<int> li;
QVector<int> vi;
QStack<int> si;
std::string ss;
std::map<int, int> smii;
std::map<std::string, std::string> smss;
std::list<int> sli;
std::list<std::string> ssl;
std::vector<int> svi;
std::stack<int> ssi;
dummyStatement(&s, &sl, &mii, &mss, &hii, &hss, &si, &vi, &li,
&ss, &smii, &smss, &sli, &svi, &ssi, &ssl);
}
void testTypeFormats()
{
// These tests should result in properly displayed umlauts in the
// Locals and Expressions views. It is only support on gdb with Python.
const char *s = "aöa";
const char cs[] = "aöa";
char cc[] = "aöa";
const wchar_t *w = L"aöa";
const wchar_t cw[] = L"aöa";
wchar_t ww[] = L"aöa";
QString u;
BREAK_HERE;
// Expand s.
// CheckType s char *.
// Skip Check s.*s 97 'a' char.
// Check u "" QString.
// CheckType w wchar_t *.
// Continue.
// All: Select UTF-8 in "Change Format for Type" in L&W context menu.
// Windows: Select UTF-16 in "Change Format for Type" in L&W context menu.
// Other: Select UCS-6 in "Change Format for Type" in L&W context menu.
if (sizeof(wchar_t) == 4)
u = QString::fromUcs4((uint *)w);
else
u = QString::fromUtf16((ushort *)w);
// Make sure to undo "Change Format".
dummyStatement(s, w, &ww, &cw, &cc, &cs);
}
typedef void *VoidPtr;
typedef const void *CVoidPtr;
struct A
{
A() : test(7) {}
int test;
void doSomething(CVoidPtr cp) const;
};
void A::doSomething(CVoidPtr cp) const
{
BREAK_HERE;
// CheckType cp basic::CVoidPtr.
// Continue.
dummyStatement(&cp);
}
void testPointer()
{
Foo *f = new Foo();
BREAK_HERE;
// Expand f.
// CheckType f Foo.
// Check f.a 0 int.
// Check f.b 5 int.
// Continue.
dummyStatement(f);
}
void testPointerTypedef()
{
A a;
VoidPtr p = &a;
CVoidPtr cp = &a;
BREAK_HERE;
// CheckType a basic::A.
// CheckType cp basic::CVoidPtr.
// CheckType p basic::VoidPtr.
// Continue.
a.doSomething(cp);
dummyStatement(&a, &p);
}
void testStringWithNewline()
{
QString hallo = "hallo\nwelt";
BREAK_HERE;
// Check hallo "hallo\nwelt" QString.
// Continue.
// Check that string is properly displayed.
dummyStatement(&hallo);
}
void testMemoryView()
{
int a[20];
BREAK_HERE;
// CheckType a int [20].
// Continue.
// Select "Open Memory View" from Locals and Expressions
// context menu for item 'a'.
// Step several times.
// Check the contents of the memory view updates.
for (int i = 0; i != 20; ++i)
a[i] = i;
dummyStatement(&a);
}
void testColoredMemoryView()
{
int i = 42;
double d = 23;
QString s = "Foo";
BREAK_HERE;
// Check d 23 double.
// Check i 42 int.
// Check s "Foo" QString.
// Continue.
// Select "Open Memory Editor->Open Memory Editor Showing Stack Layout"
// from Locals and Expressions context menu.
// Check that the opened memory view contains coloured items
// for 'i', 'd', and 's'.
dummyStatement(&i, &d, &s);
}
void testReference1()
{
int a = 43;
const int &b = a;
typedef int &Ref;
const int c = 44;
const Ref d = a;
BREAK_HERE;
// Check a 43 int.
// Check b 43 int &.
// Check c 44 int.
// Check d 43 basic::Ref.
// Continue.
dummyStatement(&a, &b, &c, &d);
}
void testReference2()
{
QString a = "hello";
const QString &b = fooxx();
typedef QString &Ref;
const QString c = "world";
const Ref d = a;
BREAK_HERE;
// Check a "hello" QString.
// Check b "bababa" QString &.
// Check c "world" QString.
// Check d "hello" basic::Ref.
// Continue.
dummyStatement(&a, &b, &c, &d);
}
void testReference3(const QString &a)
{
const QString &b = a;
typedef QString &Ref;
const Ref d = const_cast<Ref>(a);
BREAK_HERE;
// Check a "hello" QString &.
// Check b "hello" QString &.
// Check d "hello" basic::Ref.
// Continue.
dummyStatement(&a, &b, &d);
}
void testDynamicReference()
{
DerivedClass d;
BaseClass *b1 = &d;
BaseClass &b2 = d;
BREAK_HERE;
// CheckType b1 DerivedClass *.
// CheckType b2 DerivedClass &.
// Continue.
int x = b1->foo();
int y = b2.foo();
dummyStatement(&d, &b1, &b2, &x, &y);
}
void testLongEvaluation1()
{
QDateTime time = QDateTime::currentDateTime();
const int N = 10000;
QDateTime x = time;
#if USE_TIMEZONE
QTimeZone tz("UTC+05:00");
x.setTimeZone(tz);
#endif
QDateTime bigv[N];
for (int i = 0; i < 10000; ++i) {
bigv[i] = time;
time = time.addDays(1);
}
BREAK_HERE;
// Expand bigv.
// Check N 10000 int.
// CheckType bigv QDateTime [10000].
// CheckType bigv.0 QDateTime.
// CheckType bigv.9999 QDateTime.
// CheckType time QDateTime.
// Continue.
// Note: This is expected to _not_ take up to a minute.
dummyStatement(&bigv);
}
void testLongEvaluation2()
{
const int N = 10000;
int bigv[N];
for (int i = 0; i < 10000; ++i)
bigv[i] = i;
BREAK_HERE;
// Expand bigv.
// Check N 10000 int.
// CheckType bigv int [10000].
// Check bigv.0 0 int.
// Check bigv.9999 9999 int.
// Continue.
// Note: This is expected to take up to a minute.
dummyStatement(&bigv);
}
void testFork()
{
QProcess proc;
proc.start("/bin/ls", QStringList());
proc.waitForFinished();
QByteArray ba = proc.readAllStandardError();
ba.append('x');
BREAK_HERE;
// Check ba "x" QByteArray.
// Check proc QProcess.
// Continue.
// Check there is some contents in ba. Error message is expected.
dummyStatement(&ba);
}
int testFunctionPointerHelper(int x) { return x; }
void testFunctionPointer()
{
typedef int (*func_t)(int);
func_t f = testFunctionPointerHelper;
int a = f(43);
BREAK_HERE;
// CheckType f basic::func_t.
// Continue.
// Check there's a valid display for f.
dummyStatement(&f, &a);
}
struct Class
{
Class() : a(34) {}
int testFunctionPointerHelper(int x) { return x; }
int a;
};
void testMemberFunctionPointer()
{
Class x;
typedef int (Class::*func_t)(int);
func_t f = &Class::testFunctionPointerHelper;
int a = (x.*f)(43);
BREAK_HERE;
// CheckType f basic::func_t.
// Continue.
// Check there's a valid display for f.
dummyStatement(&f, &a);
}
void testMemberPointer()
{
Class x;
typedef int (Class::*member_t);
member_t m = &Class::a;
int a = x.*m;
BREAK_HERE;
// CheckType m basic::member_t.
// Continue.
// Check there's a valid display for m.
dummyStatement(&m, &a);
}
void testPassByReferenceHelper(Foo &f)
{
BREAK_HERE;
// Expand f.
// CheckType f Foo &.
// Check f.a 12 int.
// Continue.
++f.a;
BREAK_HERE;
// Expand f.
// CheckType f Foo &.
// Check f.a 13 int.
// Continue.
}
void testPassByReference()
{
Foo f(12);
testPassByReferenceHelper(f);
dummyStatement(&f);
}
void testBigInt()
{
qint64 a = Q_INT64_C(0xF020304050607080);
quint64 b = Q_UINT64_C(0xF020304050607080);
quint64 c = std::numeric_limits<quint64>::max() - quint64(1);
BREAK_HERE;
// Check a -1143861252567568256 qint64.
// Check b -1143861252567568256 quint64.
// Check c -2 quint64.
// Continue.
dummyStatement(&a, &b, &c);
}
void testHidden()
{
int n = 1;
n = 2;
BREAK_HERE;
// Check n 2 int.
// Continue.
n = 3;
BREAK_HERE;
// Check n 3 int.
// Continue.
{
QString n = "2";
BREAK_HERE;
// Check n "2" QString.
// Check n@1 3 int.
// Continue.
n = "3";
BREAK_HERE;
// Check n "3" QString.
// Check n@1 3 int.
// Continue.
{
double n = 3.5;
BREAK_HERE;
// Check n 3.5 double.
// Check n@1 "3" QString.
// Check n@2 3 int.
// Continue.
++n;
BREAK_HERE;
// Check n 4.5 double.
// Check n@1 "3" QString.
// Check n@2 3 int.
// Continue.
dummyStatement(&n);
}
BREAK_HERE;
// Check n "3" QString.
// Check n@1 3 int.
// Continue.
n = "3";
n = "4";
BREAK_HERE;
// Check n "4" QString.
// Check n@1 3 int.
// Continue.
dummyStatement(&n);
}
++n;
dummyStatement(&n);
}
int testReturnInt()
{
return 1;
}
bool testReturnBool()
{
return true;
}
QString testReturnQString()
{
return "string";
}
void testReturn()
{
bool b = testReturnBool();
BREAK_HERE;
// Check b true bool.
// Continue.
int i = testReturnInt();
BREAK_HERE;
// Check i 1 int.
// Continue.
QString s = testReturnQString();
BREAK_HERE;
// Check s "string" QString.
// Continue.
dummyStatement(&i, &b, &s);
}
#ifdef Q_COMPILER_RVALUE_REFS
struct X { X() : a(2), b(3) {} int a, b; };
X testRValueReferenceHelper1()
{
return X();
}
X testRValueReferenceHelper2(X &&x)
{
return x;
}
void testRValueReference()
{
X &&x1 = testRValueReferenceHelper1();
X &&x2 = testRValueReferenceHelper2(std::move(x1));
X &&x3 = testRValueReferenceHelper2(testRValueReferenceHelper1());
X y1 = testRValueReferenceHelper1();
X y2 = testRValueReferenceHelper2(std::move(y1));
X y3 = testRValueReferenceHelper2(testRValueReferenceHelper1());
BREAK_HERE;
// Continue.
dummyStatement(&x1, &x2, &x3, &y1, &y2, &y3);
}
#else
void testRValueReference() {}
#endif
void testBasic()
{
testInheritance();
testInt();
testStdInt();
testReference1();
testReference2();
testReference3("hello");
testRValueReference();
testDynamicReference();
testReturn();
testArray1();
testArray2();
testArray3();
testArray4();
testArray5();
testChar();
testCharStar();
testBitfields();
testFunction();
testAlphabeticSorting();
testTypedef();
testUsing();
testPointer();
testPointerTypedef();
testStruct();
testUnion();
testUninitialized();
testTypeFormats();
testStringWithNewline();
testMemoryView();
testColoredMemoryView();
testLongEvaluation1();
testLongEvaluation2();
// testFork();
testFunctionPointer();
testMemberPointer();
testMemberFunctionPointer();
testPassByReference();
testBigInt();
testHidden();
}
} // namespace basic
namespace io {
void testWCout()
{
using namespace std;
wstring x = L"xxxxx";
wstring::iterator i = x.begin();
// Break here.
// Step.
while (i != x.end()) {
wcout << *i;
i++;
}
wcout.flush();
string y = "yyyyy";
string::iterator j = y.begin();
while (j != y.end()) {
cout << *j;
j++;
}
cout.flush();
}
void testWCout0()
{
// Mixing cout and wcout does not work with gcc.
// See http://gcc.gnu.org/ml/gcc-bugs/2006-05/msg01193.html
// which also says "you can obtain something close to your
// expectations by calling std::ios::sync_with_stdio(false);
// at the beginning of your program."
using namespace std;
//std::ios::sync_with_stdio(false);
// Break here.
// Step.
wcout << L"WWWWWW" << endl;
wcerr << L"YYYYYY" << endl;
cout << "CCCCCC" << endl;
cerr << "EEEEEE" << endl;
wcout << L"WWWWWW" << endl;
wcerr << L"YYYYYY" << endl;
cout << "CCCCCC" << endl;
cerr << "EEEEEE" << endl;
wcout << L"WWWWWW" << endl;
wcerr << L"YYYYYY" << endl;
cout << "CCCCCC" << endl;
cerr << "EEEEEE" << endl;
}
void testOutput()
{
qDebug() << "qDebug() 1";
qDebug() << "qDebug() 2";
qDebug() << "qDebug() 3";
qDebug() << "qDebug <foo & bar>";
std::cout << "std::cout @@ 1" << std::endl;
std::cout << "std::cout @@ 2\n";
std::cout << "std::cout @@ 3" << std::endl;
std::cout << "std::cout <foo & bar>\n";
std::cerr << "std::cerr 1\n";
std::cerr << "std::cerr 2\n";
std::cerr << "std::cerr 3\n";
std::cerr << "std::cerr <foo & bar>\n";
}
void testInput()
{
// This works only when "Run in terminal" is selected
// in the Run Configuration.
int i;
std::cin >> i;
int j;
std::cin >> j;
std::cout << "Values are " << i << " and " << j << "." << std::endl;
}
void testIO()
{
testOutput();
//testInput();
//testWCout();
//testWCout0();
}
} // namespace io
namespace sse {
void testSSE()
{
#if USE_SSE
float a[4];
float b[4];
int i;
for (i = 0; i < 4; i++) {
a[i] = 2 * i;
b[i] = 2 * i;
}
__m128 sseA, sseB;
sseA = _mm_loadu_ps(a);
sseB = _mm_loadu_ps(b);
__m128i sseAi;
sseAi = _mm_set_epi32(1, 3, 5, 7);
BREAK_HERE;
// Expand a b.
// CheckType sseA __m128.
// CheckType sseB __m128.
// Continue.
dummyStatement(&i, &sseA, &sseB);
#endif
}
} // namespace sse
namespace qscript {
void testQScript()
{
#if USE_SCRIPTLIB
BREAK_UNINITIALIZED_HERE;
QScriptEngine engine;
QDateTime date = QDateTime::currentDateTime();
QScriptValue s;
BREAK_HERE;
// Check engine QScriptEngine.
// Check s (invalid) QScriptValue.
// Check x1 <not accessible> QString.
// Continue.
s = QScriptValue(33);
int x = s.toInt32();
s = QScriptValue(QString("34"));
QString x1 = s.toString();
s = engine.newVariant(QVariant(43));
QVariant v = s.toVariant();
s = engine.newVariant(QVariant(43.0));
s = engine.newVariant(QVariant(QString("sss")));
s = engine.newDate(date);
date = s.toDateTime();
s.setProperty("a", QScriptValue());
QScriptValue d = s.data();
BREAK_HERE;
// Check d (invalid) QScriptValue.
// Check v 43 QVariant (int).
// Check x 33 int.
// Check x1 "34" QString.
// Continue.
dummyStatement(&x1, &v, &s, &d, &x);
#else
dummyStatement();
#endif
}
} // namespace script
namespace qjson {
void testQJson()
{
#if USE_JSON
QJsonObject obj {
{"-1", -1},
{"3", 3},
{"0x3fffff (4194303)", 4194303},
{"0x400000 (4194304)", 4194304},
{"0x800000 (8388608)", 8388608},
{"0x1000000 (16777216)", 16777216},
{"-0x3fffff (-4194303)", -4194303},
{"-0x400000 (-4194304)", -4194304},
{"-0x800000 (-8388608)", -8388608}
};
QJsonArray arr;
for (unsigned int i = 0; i < 32; ++i) {
const qint64 bit = 1ll << i;
arr.append(QJsonValue(bit - 1));
arr.append(QJsonValue(bit));
arr.append(QJsonValue(bit + 1));
}
for (unsigned int i = 0; i < 32; ++i) {
const qint64 bit = -(1ll << i);
arr.append(QJsonValue(bit + 1));
arr.append(QJsonValue(bit));
arr.append(QJsonValue(bit - 1));
}
BREAK_HERE;
// Check v -1 QJsonValue.
// Check obj "foo" -1 QJsonValue.
// Continue.
#endif
}
} // namespace json
namespace webkit {
void testWTFString()
{
#if USE_WEBKITLIB
BREAK_UNINITIALIZED_HERE;
QWebPage p;
BREAK_HERE;
// CheckType p QWebPage.
// Continue.
dummyStatement(&p);
#else
dummyStatement();
#endif
}
void testWebKit()
{
testWTFString();
}
} // namespace webkit
namespace boost {
#if USE_BOOST
void testBoostOptional1()
{
boost::optional<int> i;
BREAK_HERE;
// Check i <uninitialized> boost::optional<int>.
// Continue.
i = 1;
BREAK_HERE;
// Check i 1 boost::optional<int>.
// Continue.
dummyStatement(&i);
}
void testBoostOptional2()
{
boost::optional<QStringList> sl;
BREAK_HERE;
// Check sl <uninitialized> boost::optional<QStringList>.
// Continue.
sl = (QStringList() << "xxx" << "yyy");
sl.get().append("zzz");
BREAK_HERE;
// Check sl <3 items> boost::optional<QStringList>.
// Continue.
dummyStatement(&sl);
}
void testBoostSharedPtr()
{
boost::shared_ptr<int> s;
boost::shared_ptr<int> i(new int(43));
boost::shared_ptr<int> j = i;
boost::shared_ptr<QStringList> sl(new QStringList(QStringList() << "HUH!"));
BREAK_HERE;
// Expand sl.
// Check s (null) boost::shared_ptr<int>.
// Check i 43 boost::shared_ptr<int>.
// Check j 43 boost::shared_ptr<int>.
// Check sl boost::shared_ptr<QStringList>.
// Check sl.data <1 items> QStringList
// Continue.
dummyStatement(&s, &j, &sl);
}
void testBoostGregorianDate()
{
using namespace boost;
using namespace gregorian;
date d(2005, Nov, 29);
BREAK_HERE;
// Check d Tue Nov 29 2005 boost::gregorian::date.
// Continue
d += months(1);
BREAK_HERE;
// Check d Thu Dec 29 2005 boost::gregorian::date.
// Continue
d += months(1);
BREAK_HERE;
// Check d Sun Jan 29 2006 boost::gregorian::date.
// Continue
// snap-to-end-of-month behavior kicks in:
d += months(1);
BREAK_HERE;
// Check d Tue Feb 28 2006 boost::gregorian::date.
// Continue.
// Also end of the month (expected in boost)
d += months(1);
BREAK_HERE;
// Check d Fri Mar 31 2006 boost::gregorian::date.
// Continue.
// Not where we started (expected in boost)
d -= months(4);
BREAK_HERE;
// Check d Wed Nov 30 2005 boost::gregorian::date.
// Continue.
dummyStatement(&d);
}
void testBoostPosixTimeTimeDuration()
{
using namespace boost;
using namespace posix_time;
time_duration d1(1, 0, 0);
BREAK_HERE;
// Check d1 01:00:00 boost::posix_time::time_duration.
// Continue.
time_duration d2(0, 1, 0);
BREAK_HERE;
// Check d2 00:01:00 boost::posix_time::time_duration.
// Continue.
time_duration d3(0, 0, 1);
BREAK_HERE;
// Check d3 00:00:01 boost::posix_time::time_duration.
// Continue.
dummyStatement(&d1, &d2, &d3);
}
void testBoostBimap()
{
typedef boost::bimap<int, int> B;
B b;
BREAK_HERE;
// Check b <0 items> boost::B.
// Continue.
b.left.insert(B::left_value_type(1, 2));
BREAK_HERE;
// Check b <1 items> boost::B.
// Continue.
B::left_const_iterator it = b.left.begin();
int l = it->first;
int r = it->second;
// Continue.
dummyStatement(&b, &l, &r);
}
void testBoostPosixTimePtime()
{
using namespace boost;
using namespace gregorian;
using namespace posix_time;
ptime p1(date(2002, 1, 10), time_duration(1, 0, 0));
BREAK_HERE;
// Check p1 Thu Jan 10 01:00:00 2002 boost::posix_time::ptime.
// Continue.
ptime p2(date(2002, 1, 10), time_duration(0, 0, 0));
BREAK_HERE;
// Check p2 Thu Jan 10 00:00:00 2002 boost::posix_time::ptime.
// Continue.
ptime p3(date(1970, 1, 1), time_duration(0, 0, 0));
BREAK_HERE;
// Check p3 Thu Jan 1 00:00:00 1970 boost::posix_time::ptime.
// Continue.
dummyStatement(&p1, &p2, &p3);
}
void testBoost()
{
testBoostOptional1();
testBoostOptional2();
testBoostSharedPtr();
testBoostPosixTimeTimeDuration();
testBoostPosixTimePtime();
testBoostGregorianDate();
testBoostBimap();
}
#else
void testBoost() {}
#endif
} // namespace boost
namespace mpi {
struct structdata
{
int ints[8];
char chars[32];
double doubles[5];
};
enum type_t { MPI_LB, MPI_INT, MPI_CHAR, MPI_DOUBLE, MPI_UB };
struct tree_entry
{
tree_entry() {}
tree_entry(int l, int o, type_t t)
: blocklength(l), offset(o), type(t)
{}
int blocklength;
int offset;
type_t type;
};
struct tree
{
enum kind_t { STRUCT };
void *base;
kind_t kind;
int count;
tree_entry entries[20];
};
void testMPI()
{
structdata buffer = {
//{MPI_LB},
{0, 1024, 2048, 3072, 4096, 5120, 6144 },
{"message to 1 of 2: hello"},
{0, 3.14, 6.2831853071795862, 9.4247779607693793, 13},
//{MPI_UB}
};
tree x;
x.base = &buffer;
x.kind = tree::STRUCT;
x.count = 5;
x.entries[0] = tree_entry(1, -4, MPI_LB);
x.entries[1] = tree_entry(5, 0, MPI_INT);
x.entries[2] = tree_entry(7, 47, MPI_CHAR);
x.entries[3] = tree_entry(2, 76, MPI_DOUBLE);
x.entries[4] = tree_entry(1, 100, MPI_UB);
int i = x.count;
i = buffer.ints[0];
i = buffer.ints[1];
i = buffer.ints[2];
i = buffer.ints[3];
/*
gdb) print datatype
> $3 = {
> kind = STRUCT,
> count = 5,
> entries = {{
> blocklength = 1,
> offset = -4,
> type = MPI_LB
> }, {
> blocklength = 5,
> offset = 0,
> type = MPI_INT
> }, {
> blocklength = 7,
> offset = 47,
> type = MPI_CHAR
> }, {
> blocklength = 2,
> offset = 76,
> type = MPI_DOUBLE
> }, {
> blocklength = 1,
> offset = 100,
> type = MPI_UB
> }}
> }
*/
dummyStatement(&i);
}
} // namespace mpi
//namespace kr {
// FIXME: put in namespace kr, adjust qdump__KRBase in dumpers/qttypes.py
struct KRBase
{
enum Type { TYPE_A, TYPE_B } type;
KRBase(Type _type) : type(_type) {}
};
struct KRA : KRBase { int x; int y; KRA():KRBase(TYPE_A), x(1), y(32) {} };
struct KRB : KRBase { KRB():KRBase(TYPE_B) {} };
//} // namespace kr
namespace kr {
// Only with python.
// This tests qdump__KRBase in dumpers/qttypes.py which uses
// a static typeflag to dispatch to subclasses.
void testKR()
{
KRBase *ptr1 = new KRA;
KRBase *ptr2 = new KRB;
ptr2 = new KRB;
BREAK_HERE;
// Expand ptr1 ptr2.
// CheckType ptr1 KRBase.
// Check ptr1.type KRBase::TYPE_A (0) KRBase::Type.
// CheckType ptr2 KRBase.
// Check ptr2.type KRBase::TYPE_B (1) KRBase::Type.
// Continue.
dummyStatement(&ptr1, &ptr2);
}
} // namspace kr
namespace eigen {
void testEigen()
{
#if USE_EIGEN
using namespace Eigen;
Vector3d test = Vector3d::Zero();
Matrix3d myMatrix = Matrix3d::Constant(5);
MatrixXd myDynamicMatrix(30, 10);
myDynamicMatrix(0, 0) = 0;
myDynamicMatrix(1, 0) = 1;
myDynamicMatrix(2, 0) = 2;
Matrix<double, 12, 15, ColMajor> colMajorMatrix;
Matrix<double, 12, 15, RowMajor> rowMajorMatrix;
int k = 0;
for (int i = 0; i != 12; ++i) {
for (int j = 0; j != 15; ++j) {
colMajorMatrix(i, j) = k;
rowMajorMatrix(i, j) = k;
++k;
}
}
BREAK_HERE;
// Continue.
dummyStatement(&colMajorMatrix, &rowMajorMatrix, &test,
&myMatrix, &myDynamicMatrix);
#endif
}
}
namespace bug842 {
void test842()
{
// https://bugreports.qt.io/browse/QTCREATORBUG-842
qWarning("Test");
BREAK_HERE;
// Continue.
// Manual: Check that Application Output pane contains string "Test".
dummyStatement();
}
} // namespace bug842
namespace bug3611 {
void test3611()
{
// https://bugreports.qt.io/browse/QTCREATORBUG-3611
typedef unsigned char byte;
byte f = '2';
int *x = (int*)&f;
BREAK_HERE;
// Check f 50 '2' bug3611::byte.
// Continue.
// Step.
f += 1;
f += 1;
f += 1;
BREAK_HERE;
// Check f 53 '5' bug3611::byte.
// Continue.
dummyStatement(&f, &x);
}
} // namespace bug3611
namespace bug4019 {
// https://bugreports.qt.io/browse/QTCREATORBUG-4019
class A4019
{
public:
A4019() : test(7) {}
int test;
void doSomething() const;
};
void A4019::doSomething() const
{
std::cout << test << std::endl;
}
void test4019()
{
A4019 a;
a.doSomething();
}
} // namespave bug4019
namespace bug4997 {
// https://bugreports.qt.io/browse/QTCREATORBUG-4997
void test4997()
{
using namespace std;
// cin.get(); // if commented out, the debugger doesn't stop at the breakpoint
// in the next line on Windows when "Run in Terminal" is used.^
dummyStatement();
}
}
namespace bug4904 {
// https://bugreports.qt.io/browse/QTCREATORBUG-4904
struct CustomStruct {
int id;
double dvalue;
};
void test4904()
{
QMap<int, CustomStruct> map;
CustomStruct cs1;
cs1.id = 1;
cs1.dvalue = 3.14;
CustomStruct cs2 = cs1;
cs2.id = -1;
map.insert(cs1.id, cs1);
map.insert(cs2.id, cs2);
QMap<int, CustomStruct>::iterator it = map.begin();
BREAK_HERE;
// Expand map map.0 map.0.value.
// Check map <2 items> QMap<int, bug4904::CustomStruct>.
// Check map.0 QMapNode<int, bug4904::CustomStruct>.
// Check map.0.key -1 int.
// CheckType map.0.value bug4904::CustomStruct.
// Check map.0.value.dvalue 3.1400000000000001 double.
// Check map.0.value.id -1 int.
// Continue.
dummyStatement(&it);
}
} // namespace bug4904
namespace bug5046 {
// https://bugreports.qt.io/browse/QTCREATORBUG-5046
struct Foo { int a, b, c; };
void test5046()
{
Foo f;
f.a = 1;
f.b = 2;
f.c = 3;
f.a = 4;
BREAK_HERE;
// Expand f.
// CheckType f bug5046::Foo.
// Check f.a 4 int.
// Check f.b 2 int.
// Check f.c 3 int.
// Continue.
// Manual: pop up main editor tooltip over 'f'
// Manual: verify that the entry is expandable, and expansion works
dummyStatement(&f);
}
} // namespace bug5046
namespace bug5106 {
// https://bugreports.qt.io/browse/QTCREATORBUG-5106
class A5106
{
public:
A5106(int a, int b) : m_a(a), m_b(b) {Q_UNUSED(m_a);Q_UNUSED(m_b)}
virtual int test() { return 5; }
private:
int m_a, m_b;
};
class B5106 : public A5106
{
public:
B5106(int c, int a, int b) : A5106(a, b), m_c(c) {Q_UNUSED(m_c)}
virtual int test() { return 4; BREAK_HERE; }
private:
int m_c;
};
void test5106()
{
B5106 b(1,2,3);
b.test();
b.A5106::test();
}
} // namespace bug5106
namespace bug5184 {
// https://bugreports.qt.io/browse/QTCREATORBUG-5184
// Note: The report there shows type field "QUrl &" instead of QUrl.
// It's unclear how this can happen. It should never have been like
// that with a stock 7.2 and any version of Creator.
void helper(const QUrl &url)
{
QNetworkRequest request(url);
QList<QByteArray> raw = request.rawHeaderList();
BREAK_HERE;
// Check raw <0 items> QList<QByteArray>.
// CheckType request QNetworkRequest.
// Check url "http://127.0.0.1/" QUrl &.
// Continue.
dummyStatement(&request, &raw);
}
void test5184()
{
QUrl url(QString("http://127.0.0.1/"));
helper(url);
}
} // namespace bug5184
namespace qc42170 {
// http://www.qtcentre.org/threads/42170-How-to-watch-data-of-actual-type-in-debugger
struct Object
{
Object(int id_) : id(id_) {}
virtual ~Object() {}
int id;
};
struct Point : Object
{
Point(double x_, double y_) : Object(1), x(x_), y(y_) {}
double x, y;
};
struct Circle : Point
{
Circle(double x_, double y_, double r_) : Point(x_, y_), r(r_) { id = 2; }
double r;
};
void helper(Object *obj)
{
BREAK_HERE;
// CheckType obj qc42170::Circle.
// Continue.
// Check that obj is shown as a 'Circle' object.
dummyStatement(obj);
}
void test42170()
{
Circle *circle = new Circle(1.5, -2.5, 3.0);
Object *obj = circle;
helper(circle);
helper(obj);
}
} // namespace qc42170
namespace bug5799 {
// https://bugreports.qt.io/browse/QTCREATORBUG-5799
typedef struct { int m1; int m2; } S1;
struct S2 : S1 { };
typedef struct S3 { int m1; int m2; } S3;
struct S4 : S3 { };
void test5799()
{
S2 s2;
s2.m1 = 5;
S4 s4;
s4.m1 = 5;
S1 a1[10];
typedef S1 Array[10];
Array a2;
BREAK_HERE;
// Expand s2 s2.@1 s4 s4.@1
// CheckType a1 bug5799::S1 [10].
// CheckType a2 bug5799::Array.
// CheckType s2 bug5799::S2.
// CheckType s2.@1 bug5799::S1.
// Check s2.@1.m1 5 int.
// CheckType s2.@1.m2 int.
// CheckType s4 bug5799::S4.
// CheckType s4.@1 bug5799::S3.
// Check s4.@1.m1 5 int.
// CheckType s4.@1.m2 int.
// Continue.
dummyStatement(&s2, &s4, &a1, &a2);
}
} // namespace bug5799
namespace bug6813 {
// https://bugreports.qt.io/browse/QTCREATORBUG-6813
void test6813()
{
int foo = 0;
int *bar = &foo;
//std::cout << "&foo: " << &foo << "; bar: " << bar << "; &bar: " << &bar;
dummyStatement(&foo, &bar);
}
} // namespace bug6813
namespace qc41700 {
// http://www.qtcentre.org/threads/41700-How-to-watch-STL-containers-iterators-during-debugging
void test41700()
{
using namespace std;
typedef map<string, list<string> > map_t;
map_t m;
m["one"].push_back("a");
m["one"].push_back("b");
m["one"].push_back("c");
m["two"].push_back("1");
m["two"].push_back("2");
m["two"].push_back("3");
map_t::const_iterator it = m.begin();
BREAK_HERE;
// Expand m m.0 m.0.second m.1 m.1.second.
// Check m <2 items> qc41700::map_t.
// Check m.0 std::pair<std::string const, std::list<std::string>>.
// Check m.0.first "one" std::string.
// Check m.0.second <3 items> std::list<std::string>.
// Check m.0.second.0 "a" std::string.
// Check m.0.second.1 "b" std::string.
// Check m.0.second.2 "c" std::string.
// Check m.1 std::pair<std::string const, std::list<std::string>>.
// Check m.1.first "two" std::string.
// Check m.1.second <3 items> std::list<std::string>.
// Check m.1.second.0 "1" std::string.
// Check m.1.second.1 "2" std::string.
// Check m.1.second.2 "3" std::string.
// Continue.
dummyStatement(&it);
}
} // namespace qc41700
namespace cp42895 {
void g(int c, int d)
{
qDebug() << c << d;
BREAK_HERE;
// Check c 3 int.
// Check d 4 int.
// Continue.
// Check there are frames for g and f in the stack view.
dummyStatement(&c, &d);
}
void f(int a, int b)
{
g(a, b);
}
void test42895()
{
f(3, 4);
}
} // namespace cp
namespace bug6465 {
// https://bugreports.qt.io/browse/QTCREATORBUG-6465
void test6465()
{
typedef char Foo[20];
Foo foo = "foo";
char bar[20] = "baz";
// BREAK HERE
dummyStatement(&foo, &bar);
}
} // namespace bug6465
namespace bug6857 {
class MyFile : public QFile
{
public:
MyFile(const QString &fileName)
: QFile(fileName) {}
};
void test6857()
{
MyFile file("/tmp/tt");
file.setObjectName("A file");
BREAK_HERE;
// Expand file.
// Expand file.@1.
// Expand file.@1.@1.
// Check file bug6857::MyFile.
// Check file.@1 "/tmp/tt" QFile.
// Check file.@1.@1.@1 "A file" QObject.
// Continue.
dummyStatement(&file);
}
}
namespace bug6858 {
class MyFile : public QFile
{
public:
MyFile(const QString &fileName)
: QFile(fileName) {}
};
void test6858()
{
MyFile file("/tmp/tt");
file.setObjectName("Another file");
QFile *pfile = &file;
BREAK_HERE;
// Expand pfile.
// Expand pfile.@1.
// Expand pfile.@1.@1.
// Check pfile bug6858::MyFile.
// Check pfile.@1 "/tmp/tt" QFile.
// Check pfile.@1.@1.@1 "Another file" QObject.
// Continue.
dummyStatement(&file, pfile);
}
}
namespace bug6863 {
class MyObject : public QObject
{
Q_OBJECT
public:
MyObject() {}
};
void setProp(QObject *obj)
{
obj->setProperty("foo", "bar");
BREAK_HERE;
// Expand obj.
// Check obj.[QObject].properties <2 items>.
// Continue.
dummyStatement(&obj);
}
void test6863()
{
QFile file("/tmp/tt");
setProp(&file);
MyObject obj;
setProp(&obj);
}
}
namespace bug6933 {
class Base
{
public:
Base() : a(21) {}
virtual ~Base() {}
int a;
};
class Derived : public Base
{
public:
Derived() : b(42) {}
int b;
};
void test6933()
{
Derived d;
Base *b = &d;
BREAK_HERE;
// Expand b b.bug6933::Base
// Check b.[bug6933::Base].[vptr]
// Check b.b 42 int.
// Continue.
dummyStatement(&d, b);
}
}
namespace varargs {
void test(const char *format, ...)
{
va_list arg;
va_start(arg, format);
int i = va_arg(arg, int);
double f = va_arg(arg, double);
va_end(arg);
dummyStatement(&i, &f);
}
void testVaList()
{
test("abc", 1, 2.0);
}
} // namespace varargs
namespace gdb13393 {
struct Base {
Base() : a(1) {}
virtual ~Base() {} // Enforce type to have RTTI
int a;
};
struct Derived : public Base {
Derived() : b(2) {}
int b;
};
struct S
{
Base *ptr;
const Base *ptrConst;
Base &ref;
const Base &refConst;
S(Derived &d)
: ptr(&d), ptrConst(&d), ref(d), refConst(d)
{}
};
void test13393()
{
Derived d;
S s(d);
Base *ptr = &d;
const Base *ptrConst = &d;
Base &ref = d;
const Base &refConst = d;
Base **ptrToPtr = &ptr;
#if USE_BOOST
boost::shared_ptr<Base> sharedPtr(new Derived());
#else
int sharedPtr = 1;
#endif
BREAK_HERE;
// Expand d ptr ptr.@1 ptrConst ptrToPtr ref refConst s.
// CheckType d gdb13393::Derived.
// CheckType d.@1 gdb13393::Base.
// Check d.b 2 int.
// CheckType ptr gdb13393::Derived.
// CheckType ptr.@1 gdb13393::Base.
// Check ptr.@1.a 1 int.
// CheckType ptrConst gdb13393::Derived.
// CheckType ptrConst.@1 gdb13393::Base.
// Check ptrConst.b 2 int.
// CheckType ptrToPtr gdb13393::Derived.
// CheckType ptrToPtr.[vptr] .
// Check ptrToPtr.@1.a 1 int.
// CheckType ref gdb13393::Derived.
// CheckType ref.[vptr] .
// Check ref.@1.a 1 int.
// CheckType refConst gdb13393::Derived.
// CheckType refConst.[vptr] .
// Check refConst.@1.a 1 int.
// CheckType s gdb13393::S.
// CheckType s.ptr gdb13393::Derived.
// CheckType s.ptrConst gdb13393::Derived.
// CheckType s.ref gdb13393::Derived.
// CheckType s.refConst gdb13393::Derived.
// Check sharedPtr 1 int.
// Continue.
dummyStatement(&d, &s, &ptrToPtr, &sharedPtr, &ptrConst, &refConst, &ref);
}
} // namespace gdb13393
namespace gdb10586 {
// http://sourceware.org/bugzilla/show_bug.cgi?id=10586. fsf/MI errors out
// on -var-list-children on an anonymous union. mac/MI was fixed in 2006.
// The proposed fix has been reported to crash gdb steered from eclipse.
// http://sourceware.org/ml/gdb-patches/2011-12/msg00420.html
// Check we are not harmed by either version.
void testmi()
{
struct test {
struct { int a; float b; };
struct { int c; float d; };
} v = {{1, 2}, {3, 4}};
BREAK_HERE;
// Expand v.
// Check v gdb10586::test.
// Check v.a 1 int.
// Continue.
dummyStatement(&v);
}
void testeclipse()
{
struct { int x; struct { int a; }; struct { int b; }; } v = {1, {2}, {3}};
struct s { int x, y; } n = {10, 20};
BREAK_HERE;
// Expand v.
// Expand n.
// CheckType v {...}.
// CheckType n gdb10586::s.
// Check v.a 2 int.
// Check v.b 3 int.
// Check v.x 1 int.
// Check n.x 10 int.
// Check n.y 20 int.
// Continue.
dummyStatement(&v, &n);
}
void test10586()
{
testmi();
testeclipse();
}
} // namespace gdb10586
namespace valgrind {
void testLeak()
{
new int[100]; // Leaks intentionally.
}
void testValgrind()
{
testLeak();
}
} // namespace valgrind
namespace tmplate {
template<typename T> struct Template
{
Template() : t() {}
// This serves as a manual test that multiple breakpoints work.
// Each of the two '// BREAK_HERE' below is in a function that
// is instantiated three times, so both should be reported as
// breakpoints with three subbreakpoints each.
template <typename S> void fooS(S s)
{
t = s;
// BREAK_HERE;
}
template <int N> void fooN()
{
t = N;
// BREAK_HERE;
}
T t;
};
void testTemplate()
{
Template<double> t;
t.fooS(1);
t.fooS(1.);
t.fooS('a');
t.fooN<2>();
t.fooN<3>();
t.fooN<4>();
dummyStatement(&t, &t.t);
}
} // namespace tmplate
namespace sanity {
// A very quick check.
void testSanity()
{
std::string s;
s = "hallo";
s += "hallo";
QVector<int> qv;
qv.push_back(2);
std::vector<int> v;
v.push_back(2);
QStringList list;
list << "aaa" << "bbb" << "cc";
QList<const char *> list2;
list2 << "foo";
list2 << "bar";
list2 << 0;
list2 << "baz";
list2 << 0;
QObject obj;
obj.setObjectName("An Object");
BREAK_HERE;
// Check list <3 items> QStringList
// Check list2 <5 items> QList<char const*>
// Check obj "An Object" QObject
// Check qv <1 items> QVector<int>
// Check s "hallohallo" std::string
// Check v <1 items> std::vector<int>
// Continue
dummyStatement(&s, &qv, &v, &list, &list2, &obj);
}
} // namespace sanity
template <class X> int ffff(X)
{
return sizeof(X);
}
int main(int argc, char *argv[])
{
int z = ffff(3) + ffff(2.0);
Q_UNUSED(z)
#if USE_GUILIB
QApplication app(argc, argv);
#else
QCoreApplication app(argc, argv);
#endif
QChar c(0x1E9E);
bool b = c.isPrint();
qDebug() << c << b;
// Notify Creator about auto run intention.
if (USE_AUTORUN)
qWarning("Creator: Switch on magic autorun.");
else
qWarning("Creator: Switch off magic autorun.");
// For a very quick check, step into this one.
sanity::testSanity();
// Check for normal dumpers.
basic::testBasic();
gccextensions::testGccExtensions();
qhostaddress::testQHostAddress();
varargs::testVaList();
formats::testFormats();
breakpoints::testBreakpoints();
peekandpoke::testPeekAndPoke3();
anon::testAnonymous();
itemmodel::testItemModel();
noargs::testNoArgumentName(1, 2, 3);
text::testText();
io::testIO();
catchthrow::testCatchThrow();
undefined::testUndefined();
plugin::testPlugin();
valgrind::testValgrind();
namespc::testNamespace();
tmplate::testTemplate();
painting::testPainting();
webkit::testWebKit();
stdarray::testStdArray();
stdcomplex::testStdComplex();
stddeque::testStdDeque();
stdlist::testStdList();
stdhashset::testStdHashSet();
stdmap::testStdMap();
stdunorderedmap::testStdUnorderedMap();
stdset::testStdSet();
stdstack::testStdStack();
stdstream::testStdStream();
stdstring::testStdString();
stdvector::testStdVector();
stdptr::testStdPtr();
lambda::testLambda();
qbytearray::testQByteArray();
qdatetime::testDateTime();
qdir::testQDir();
qfileinfo::testQFileInfo();
qhash::testQHash();
qlist::testQList();
qlocale::testQLocale();
qmap::testQMap();
qobject::testQObject();
qrect::testGeometry();
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
qregexp::testQRegExp();
#endif
qregion::testQRegion();
qscript::testQScript();
qjson::testQJson();
qset::testQSet();
qsharedpointer::testQSharedPointer();
qstack::testQStack();
qstringlist::testQStringList();
qstring::testQString();
// qthread::testQThread();
qprocess::testQProcess();
qurl::testQUrl();
qvariant::testQVariant();
qvector::testQVector();
qxml::testQXmlAttributes();
// Third party data types.
boost::testBoost();
eigen::testEigen();
kr::testKR();
mpi::testMPI();
sse::testSSE();
// The following tests are specific to certain bugs.
// They need not to be checked during a normal release check.
cp42895::test42895();
bug5046::test5046();
bug4904::test4904();
qc41700::test41700();
qc42170::test42170();
multibp::testMultiBp();
bug842::test842();
bug3611::test3611();
bug4019::test4019();
bug4997::test4997();
bug5106::test5106();
bug5184::test5184();
bug5799::test5799();
bug6813::test6813();
bug6465::test6465();
bug6857::test6857();
bug6858::test6858();
bug6863::test6863();
bug6933::test6933();
gdb13393::test13393();
gdb10586::test10586();
final::testFinal(&app);
return 0;
}
#include "simple_test_app.moc"
| [
"2468254048@qq.com"
] | 2468254048@qq.com |
cd66e45388e01437101cb933b66cec636b4a838d | f73c42d4fbb492fe8179f8e9a1f4504bc920cc82 | /LeetCodeOnCpp/343.cpp | 1f5770525c983d85eabe65792d9d3f224c5f79a9 | [] | no_license | Galibier/AlgorithmOnLeetCode | 5a87983a7daf675576fd73e57c143fe9b1094132 | 4e5ef4c937357c3f9ccc7f7cc4f532177a76f9c8 | refs/heads/master | 2020-03-22T13:04:01.847982 | 2018-10-25T05:51:24 | 2018-10-25T05:51:24 | 140,080,767 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | cpp | class Solution {
public:
long long integerBreak(long long n) {
if(n == 2) return 1;
if(n == 3) return 2;
if(n == 4) return 4;
if(n == 5) return 6;
if(n == 6) return 9;
return 3 * integerBreak(n - 3);
}
}; | [
"cx.sjtu@gmail.com"
] | cx.sjtu@gmail.com |
4ee7a46c7c96f5e4cd7e38ec16b99f8040e08cb8 | 065c300bd4810b09a213383e0452ceff0acec22c | /DiskOperations.h | d8a01ee9cd40a3cf7175a49fc561af80698c0f4f | [] | no_license | nicolas0p/GerenciaDeArquivosEmDisco | d6fd888c0e1323f9df5bd37b9470ae1cd1f062ff | 7546f105903dd966448e20f2d0dba71881371c6a | refs/heads/master | 2016-08-04T09:24:54.349295 | 2014-07-16T01:52:37 | 2014-07-16T01:52:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,587 | h | /*
* WriteTreeToDisk.h
*
* Created on: 13/07/2014
* Author: nicolas
*/
#ifndef WRITETREETODISK_H_
#define WRITETREETODISK_H_
#include <cstring>
#include <deque>
#include <string>
#include "PrimaryTree.h"
#include "SecundaryTree.h"
const int MAX_MANPAGE_NAME_SIZE = 53; //estes numeros foram obtidos a partir de testes nas manpages
const int MAX_MANPAGE_CONTENT = 140000;
const int GREATEST_WORD_SIZE = 84; //numero pesquisado nas manpages
/**
* Objeto que será gravado no disco.
* Contém o nome do comando e o seu conteudo em texto.
*/
struct diskManpage {
char name[MAX_MANPAGE_NAME_SIZE];
char content[MAX_MANPAGE_CONTENT];
diskManpage(const char *name, const char *content) {
strcpy(this->name, name);
strcpy(this->content, content);
}
};
struct diskNode {
char word[GREATEST_WORD_SIZE];
int listPosition;
diskNode(const char *name, int listPosition) :
listPosition(listPosition) {
strcpy(this->word, name);
}
};
void writeSecondaryTreeToDisk(std::string treeFilename, std::string invertedListFilename, SecundaryTree& tree);
void writePrimaryTreeToDisk(std::string treeFilename, PrimaryTree& tree);
std::deque<int> readInvertedList(std::string invertedListFileName, int indexOfList);
int searchTreeOnDisk(std::string filename, std::string toSearch);
int binarySearch(const std::deque<int> &deque, int key);
void writeManPage(diskManpage& manpage, std::string fileName, int index);
diskManpage readManPage(std::string fileName, int manpageIndex);
std::string readName(std::string fileName, int recordIndex);
#endif /* WRITETREETODISK_H_ */
| [
"nicolas0pfeifer@gmail.com"
] | nicolas0pfeifer@gmail.com |
b377236a21898911cf214d3516add4dce8f0dada | d2192be8100d8de3846bebeba41fa0d5f270d758 | /Aufgaben/dynamische_allocation/main.cpp | fbd5eae496eb7e17a82ec114fe1b694d64363e06 | [] | no_license | Durand-Chuante/Programmierung-C-PlusPlus | d9bf7fcd0b946274688f63ab7be8afc6a6376fea | 25040dd27d99b365c8dd7bdb4567d0d2f31af66c | refs/heads/master | 2022-11-28T19:34:28.455641 | 2020-08-07T10:00:47 | 2020-08-07T10:00:47 | 285,796,449 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 312 | cpp | #include <iostream>
using namespace std;
int main()
{
int nbr;
int *ptr;
cin >> nbr;
cout << endl;
ptr = new int [nbr];
for(int i = 0; i < nbr; i++)
{
ptr[i] = i;
cout << ptr[i] << endl;
}
delete[] ptr;
//cout << "Hello world!" << endl;
return 0;
}
| [
"durand.ngukap@yahoo.com"
] | durand.ngukap@yahoo.com |
604004cf97420482e0095d90f926bec6cb7ee120 | cc9bef580dede743c455947695d30df38382c174 | /MyCameraWindow.h | c496f2634ed640f1a7e6c33b102274787c112b58 | [] | no_license | Magnettoqwerty/OpenCV | cdc07ba11d0622519083b9b82fe539d969ca4d41 | 785eb1e0962993f082cb0f41e8ec502c559fc661 | refs/heads/master | 2020-03-31T09:55:16.933849 | 2011-09-25T16:40:52 | 2011-09-25T16:40:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 575 | h | #ifndef MYCAMERAWINDOW_H_
#define MYCAMERAWINDOW_H_
#include <QWidget>
#include <QVBoxLayout>
#include "QOpenCVWidget.h"
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <QPushButton>
class MyCameraWindow : public QWidget
{
Q_OBJECT
private:
QOpenCVWidget *cvwidget;
CvCapture *camera;
QPushButton *but;
public:
MyCameraWindow(CvCapture *cam, QWidget *parent=0);
protected:
void timerEvent(QTimerEvent*);
public slots:
void takepic(void);
};
#endif /*MYCAMERAWINDOW_H_*/
| [
"2magnetto@gmail.com"
] | 2magnetto@gmail.com |
ab84804bf2a1a9d05b7c183f4342a227fcd1f42c | cade2807a814d6b87560d068bef6ea01e3192deb | /pthread_test.cpp | 4915bc3591e776728e4e2afa9957a72f2fcfcc84 | [] | no_license | TongzeZhu/MyTmpCpp | 161007bf2324c53ac4c39843ee20da33d9576cfd | 0798489e726069161995825bcc7c8a04d176719a | refs/heads/master | 2021-09-08T03:02:49.935407 | 2018-03-06T09:58:40 | 2018-03-06T09:58:40 | 115,582,463 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,297 | cpp | #include <pthread.h>
#include <cstdio>
#include <thread>
void* thread_func(void *index)
{
printf("this is the %dth thread!\n", *((int*)index));
std::this_thread::sleep_for(std::chrono::seconds(10));
}
void startJoinableThreads(int threadNum)
{
int ret = 0;
pthread_t thread;
while(threadNum)
{
// bug:
if(0 != (ret=pthread_create(&thread, nullptr, thread_func, &threadNum)))
{
printf("%dth detached thread creation failure: %d!\n", threadNum, ret);
}
threadNum--;
}
std::this_thread::sleep_for(std::chrono::seconds(10));
}
void startDetachedThreads(int threadNum)
{
int ret = 0;
pthread_t thread;
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
while(threadNum)
{
// bug: pass address of threadNum, rather than value!
if(0 != (ret=pthread_create(&thread, &attr, thread_func, &threadNum)))
{
printf("%dth detached thread creation failure: %d!\n", threadNum, ret);
}
threadNum--;
}
std::this_thread::sleep_for(std::chrono::seconds(10));
}
int main(int argc, char *argv[])
{
//startJoinableThreads(5);
startDetachedThreads(5);
return 0;
}
| [
"tongze.zhu@westwell-lab.com"
] | tongze.zhu@westwell-lab.com |
4aa415e696710a45bdd486a086ca9769094c2db9 | ac278c430b6f5ae07e46059b6e4aac546654c741 | /Program_Manager_Programatori.h | 310d89ed908fca59d301f6208d5bf091e5985cdf | [] | no_license | mihaibadea/FMI_POO_T2 | d31fe72056d363245418ff04ee7b5bfd9054ee29 | 091ef030e2cb788a91571765cd2cbd418797eafe | refs/heads/master | 2022-05-17T09:26:50.714414 | 2020-04-22T20:53:16 | 2020-04-22T20:53:16 | 257,877,157 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | h | #ifndef PROGRAM_MANAGER_PROGRAMATORI_H
#define PROGRAM_MANAGER_PROGRAMATORI_H
#include "Program.h"
class Program_Manager_Programatori : public Program
{
public:
Program_Manager_Programatori();
~Program_Manager_Programatori()=default;
protected:
private:
};
#endif // PROGRAM_MANAGER_PROGRAMATORI_H
| [
"mihaimarbadea@gmail.com"
] | mihaimarbadea@gmail.com |
6b30cc509d448758b8bc9e32967d49f0f7a5968d | 3a86586871b35b1ad4f19c64ea3d9e7f10ba382f | /u2/engine/include/core/U2FileSystemArchive.h | 6272693587f7115c8ca0e5fbaeab93ff73498164 | [
"MIT"
] | permissive | jrsnail/u2project_logic | 598c631caf76d9fa53ad66d7e7e8e801d649ee3c | 099647bb5f999831532d846776781f5ee05a8971 | refs/heads/master | 2020-04-16T10:56:53.035031 | 2016-09-16T05:25:53 | 2016-09-16T05:25:53 | 51,911,880 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,319 | h | #ifndef __U2FileSystemArchive_H__
#define __U2FileSystemArchive_H__
#include "U2Prerequisites.h"
#include "U2Archive.h"
#include "Threading/U2ThreadHeaders.h"
#include "U2HeaderPrefix.h"
U2EG_NAMESPACE_BEGIN
/** \addtogroup Core
* @{
*/
/** \addtogroup Resources
* @{
*/
/** Specialisation of the Archive class to allow reading of files from
filesystem folders / directories.
*/
class _U2Export FileSystemArchive : public Archive
{
protected:
/** Utility method to retrieve all files in a directory matching pattern.
@param pattern
File pattern.
@param recursive
Whether to cascade down directories.
@param dirs
Set to @c true if you want the directories to be listed instead of files.
@param simpleList
Populated if retrieving a simple list.
@param detailList
Populated if retrieving a detailed list.
*/
void findFiles(const String& pattern, bool recursive, bool dirs,
StringVector* simpleList, FileInfoList* detailList);
public:
FileSystemArchive(const String& type, const String& name, const String& guid = BLANK);
~FileSystemArchive();
/// @copydoc Archive::isCaseSensitive
virtual bool isCaseSensitive(void) const override;
/// @copydoc Archive::load
virtual void load() override;
/// @copydoc Archive::unload
virtual void unload() override;
/// @copydoc Archive::openForRead
virtual InStreamPtr openForRead(const String& filename) override;
/// @copydoc Archive::openForWrite
virtual OutStreamPtr openForWrite(const String& filename, bool append) override;
/// @copydoc Archive::create
virtual OutStreamPtr create(const String& filename) override;
/// @copydoc Archive::remove
virtual void remove(const String& filename) override;
/// @copydoc Archive::list
virtual StringVectorPtr list(bool recursive = true, bool dirs = false) override;
/// @copydoc Archive::listFileInfo
virtual FileInfoListPtr listFileInfo(bool recursive = true, bool dirs = false) override;
/// @copydoc Archive::find
virtual StringVectorPtr find(const String& pattern, bool recursive = true,
bool dirs = false) override;
/// @copydoc Archive::findFileInfo
virtual FileInfoListPtr findFileInfo(const String& pattern, bool recursive = true,
bool dirs = false) override;
/// @copydoc Archive::exists
virtual bool exists(const String& filename) override;
/// @copydoc Archive::getModifiedTime
virtual time_t getModifiedTime(const String& filename) override;
/// Set whether filesystem enumeration will include hidden files or not.
/// This should be called prior to declaring and/or initializing filesystem
/// resource locations. The default is true (ignore hidden files).
static void setIgnoreHidden(bool ignore)
{
msIgnoreHidden = ignore;
}
/// Get whether hidden files are ignored during filesystem enumeration.
static bool getIgnoreHidden()
{
return msIgnoreHidden;
}
protected:
U2_AUTO_MUTEX;
static bool msIgnoreHidden;
};
class FileSystemArchiveFactory : public TemplateObjectFactory < FileSystemArchive >
{
public:
virtual const String& getType() const override;
};
/** @} */
/** @} */
U2EG_NAMESPACE_END
#include "U2HeaderSuffix.h"
#endif // __U2FileSystemArchive_H__
| [
"jr19841227@gmail.com"
] | jr19841227@gmail.com |
1b6f2793adbf2da18f9547018937021aa6b9ba86 | ce315d03c7a79d828368f779269a67681e5782ff | /thirdparty/re2/util/hash.cc | 24404b7653122c166f5bc8e1f8af1e4f31a95054 | [] | no_license | linzai1992/websearch | bc3a3f377326c990324a291d69df1dbeab8af50e | 6c5e6c1bbad5c1ac1324db71b2a4eaeef9376207 | refs/heads/master | 2020-07-05T14:49:22.911441 | 2014-06-23T01:48:52 | 2014-06-23T01:48:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,525 | cc | // Modified by Russ Cox to add "namespace re2".
// Also threw away all but hashword and hashword2.
// http://burtleburtle.net/bob/c/lookup3.c
/*
-------------------------------------------------------------------------------
lookup3.c, by Bob Jenkins, May 2006, Public Domain.
These are functions for producing 32-bit hashes for hash table lookup.
hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
are externally useful functions. Routines to test the hash are included
if SELF_TEST is defined. You can use this free for any purpose. It's in
the public domain. It has no warranty.
You probably want to use hashlittle(). hashlittle() and hashbig()
hash byte arrays. hashlittle() is is faster than hashbig() on
little-endian machines. Intel and AMD are little-endian machines.
On second thought, you probably want hashlittle2(), which is identical to
hashlittle() except it returns two 32-bit hashes for the price of one.
You could implement hashbig2() if you wanted but I haven't bothered here.
If you want to find a hash of, say, exactly 7 integers, do
a = i1; b = i2; c = i3;
mix(a,b,c);
a += i4; b += i5; c += i6;
mix(a,b,c);
a += i7;
final(a,b,c);
then use c as the hash value. If you have a variable length array of
4-byte integers to hash, use hashword(). If you have a byte array (like
a character string), use hashlittle(). If you have several byte arrays, or
a mix of things, see the comments above hashlittle().
Why is this so big? I read 12 bytes at a time into 3 4-byte integers,
then mix those integers. This is fast (you can do a lot more thorough
mixing with 12*3 instructions on 3 integers than you can with 3 instructions
on 1 byte), but shoehorning those bytes into integers efficiently is messy.
-------------------------------------------------------------------------------
*/
#include "thirdparty/re2/util/util.h"
#define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
/*
-------------------------------------------------------------------------------
mix -- mix 3 32-bit values reversibly.
This is reversible, so any information in (a,b,c) before mix() is
still in (a,b,c) after mix().
If four pairs of (a,b,c) inputs are run through mix(), or through
mix() in reverse, there are at least 32 bits of the output that
are sometimes the same for one pair and different for another pair.
This was tested for:
* pairs that differed by one bit, by two bits, in any combination
of top bits of (a,b,c), or in any combination of bottom bits of
(a,b,c).
* "differ" is defined as +, -, ^, or ~^. For + and -, I transformed
the output delta to a Gray code (a^(a>>1)) so a string of 1's (as
is commonly produced by subtraction) look like a single 1-bit
difference.
* the base values were pseudorandom, all zero but one bit set, or
all zero plus a counter that starts at zero.
Some k values for my "a-=c; a^=rot(c,k); c+=b;" arrangement that
satisfy this are
4 6 8 16 19 4
9 15 3 18 27 15
14 9 3 7 17 3
Well, "9 15 3 18 27 15" didn't quite get 32 bits diffing
for "differ" defined as + with a one-bit base and a two-bit delta. I
used http://burtleburtle.net/bob/hash/avalanche.html to choose
the operations, constants, and arrangements of the variables.
This does not achieve avalanche. There are input bits of (a,b,c)
that fail to affect some output bits of (a,b,c), especially of a. The
most thoroughly mixed value is c, but it doesn't really even achieve
avalanche in c.
This allows some parallelism. Read-after-writes are good at doubling
the number of bits affected, so the goal of mixing pulls in the opposite
direction as the goal of parallelism. I did what I could. Rotates
seem to cost as much as shifts on every machine I could lay my hands
on, and rotates are much kinder to the top and bottom bits, so I used
rotates.
-------------------------------------------------------------------------------
*/
#define mix(a,b,c) \
{ \
a -= c; a ^= rot(c, 4); c += b; \
b -= a; b ^= rot(a, 6); a += c; \
c -= b; c ^= rot(b, 8); b += a; \
a -= c; a ^= rot(c,16); c += b; \
b -= a; b ^= rot(a,19); a += c; \
c -= b; c ^= rot(b, 4); b += a; \
}
/*
-------------------------------------------------------------------------------
final -- final mixing of 3 32-bit values (a,b,c) into c
Pairs of (a,b,c) values differing in only a few bits will usually
produce values of c that look totally different. This was tested for
* pairs that differed by one bit, by two bits, in any combination
of top bits of (a,b,c), or in any combination of bottom bits of
(a,b,c).
* "differ" is defined as +, -, ^, or ~^. For + and -, I transformed
the output delta to a Gray code (a^(a>>1)) so a string of 1's (as
is commonly produced by subtraction) look like a single 1-bit
difference.
* the base values were pseudorandom, all zero but one bit set, or
all zero plus a counter that starts at zero.
These constants passed:
14 11 25 16 4 14 24
12 14 25 16 4 14 24
and these came close:
4 8 15 26 3 22 24
10 8 15 26 3 22 24
11 8 15 26 3 22 24
-------------------------------------------------------------------------------
*/
#define final(a,b,c) \
{ \
c ^= b; c -= rot(b,14); \
a ^= c; a -= rot(c,11); \
b ^= a; b -= rot(a,25); \
c ^= b; c -= rot(b,16); \
a ^= c; a -= rot(c,4); \
b ^= a; b -= rot(a,14); \
c ^= b; c -= rot(b,24); \
}
namespace re2 {
/*
--------------------------------------------------------------------
This works on all machines. To be useful, it requires
-- that the key be an array of uint32_t's, and
-- that the length be the number of uint32_t's in the key
The function hashword() is identical to hashlittle() on little-endian
machines, and identical to hashbig() on big-endian machines,
except that the length has to be measured in uint32_ts rather than in
bytes. hashlittle() is more complicated than hashword() only because
hashlittle() has to dance around fitting the key bytes into registers.
--------------------------------------------------------------------
*/
uint32 hashword(
const uint32 *k, /* the key, an array of uint32_t values */
size_t length, /* the length of the key, in uint32_ts */
uint32 initval) /* the previous hash, or an arbitrary value */
{
uint32_t a,b,c;
/* Set up the internal state */
a = b = c = 0xdeadbeef + (((uint32_t)length)<<2) + initval;
/*------------------------------------------------- handle most of the key */
while (length > 3)
{
a += k[0];
b += k[1];
c += k[2];
mix(a,b,c);
length -= 3;
k += 3;
}
/*------------------------------------------- handle the last 3 uint32_t's */
switch(length) /* all the case statements fall through */
{
case 3 : c+=k[2];
case 2 : b+=k[1];
case 1 : a+=k[0];
final(a,b,c);
case 0: /* case 0: nothing left to add */
break;
}
/*------------------------------------------------------ report the result */
return c;
}
/*
--------------------------------------------------------------------
hashword2() -- same as hashword(), but take two seeds and return two
32-bit values. pc and pb must both be nonnull, and *pc and *pb must
both be initialized with seeds. If you pass in (*pb)==0, the output
(*pc) will be the same as the return value from hashword().
--------------------------------------------------------------------
*/
void hashword2 (
const uint32 *k, /* the key, an array of uint32_t values */
size_t length, /* the length of the key, in uint32_ts */
uint32 *pc, /* IN: seed OUT: primary hash value */
uint32 *pb) /* IN: more seed OUT: secondary hash value */
{
uint32_t a,b,c;
/* Set up the internal state */
a = b = c = 0xdeadbeef + ((uint32_t)(length<<2)) + *pc;
c += *pb;
/*------------------------------------------------- handle most of the key */
while (length > 3)
{
a += k[0];
b += k[1];
c += k[2];
mix(a,b,c);
length -= 3;
k += 3;
}
/*------------------------------------------- handle the last 3 uint32_t's */
switch(length) /* all the case statements fall through */
{
case 3 : c+=k[2];
case 2 : b+=k[1];
case 1 : a+=k[0];
final(a,b,c);
case 0: /* case 0: nothing left to add */
break;
}
/*------------------------------------------------------ report the result */
*pc=c; *pb=b;
}
} // namespace re2
| [
"shunping@shunping-desktop.(none)"
] | shunping@shunping-desktop.(none) |
da0c7395d9115ecc3d04ccbd6d52261cee722469 | 1c1c36ae8ad0a224dfa625d169cd49a2edb03097 | /src/moves/QueenMoveFinder.hpp | de18bc0f39f17243c73bc72e425d3e6fad812327 | [] | no_license | PaulWells/Chess | 62ab66726601c74289bc83dfca95450400180f64 | a49161380da3f6d47037e90e92f8206a360f4ce8 | refs/heads/master | 2021-01-23T07:09:37.384039 | 2018-01-07T00:15:53 | 2018-01-07T00:15:53 | 102,500,425 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 421 | hpp | #pragma once
#include "IMoveFinder.hpp"
#include "SlideMoveFinder.hpp"
class QueenMoveFinder : public ITypedMoveFinder
{
public:
QueenMoveFinder();
std::unique_ptr<std::vector<Move>> FindMoves(ChessBoard board, Square square) override;
ChessPieceType GetPieceType() override;
private:
std::unique_ptr<IMoveFinder> m_straightSlideMoveFinder;
std::unique_ptr<IMoveFinder> m_diagonalSlideMoveFinder;
};
| [
"paulwells12@gmail.com"
] | paulwells12@gmail.com |
6cc1f87d543c4d6122c2e2f5f7b6db6838cb78ec | 13b5697fe0b6ffe0d66cc349cd0ca148ff157e89 | /src/gui.cpp | 261b82705de9a4a3079925277003503199aa39b1 | [] | no_license | RB1504/AED872532 | acfc521d1d17076ea0523270b692a3cf853ed41a | ba6f6fd6f13f79429964acf22edf75ece2759b38 | refs/heads/master | 2016-09-06T09:19:47.804793 | 2015-03-17T18:10:32 | 2015-03-17T18:10:32 | 30,785,744 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,478 | cpp | #include"gui.h"
#include "protohandler.h"
using namespace std;
ALLEGRO_COLOR WHITE = al_map_rgb(255,255,255);
ALLEGRO_COLOR GREEN_GRASS = al_map_rgb(0,92,9);
ALLEGRO_COLOR BLUE_WATER = al_map_rgb(64, 164, 223);
int Gui::start()
{
//variables primitivas
bool done = false; // make it better
//variables de objeto
//Lista<Plane> jugadores;
Lista<Plane>* jugadores = new Lista<Plane>();
Lista<Enemy>* enemigos = new Lista<Enemy>();
Lista<Bonus>* bonus = new Lista<Bonus>();
Lista<int> balas;
//variables de Allegro
ALLEGRO_DISPLAY *display = NULL;
ALLEGRO_EVENT_QUEUE *event_queue = NULL;
ALLEGRO_BITMAP *player;
//Inicializacion
if(!al_init())
return -1;
display = al_create_display(WIDTH, HEIGHT);
if (!display)
return -1;
al_init_primitives_addon();
al_init_image_addon();
Plane plane;
Enemy enemy;
enemy.x =100;
enemy.y = 200;
Bullet bullet;
bullet.x = 200;
bullet.y = 300;
initPlane(plane);
jugadores->insertarAlFinal(plane);
while(!done)
{
drawTerrain();
for(int i =0;i<jugadores->len();i++)
{
Plane plane = jugadores->datoPosicion(i);
drawPlane(plane);
}
for(int i =0;i<enemigos->len();i++)
{
Enemy enemy = enemigos->datoPosicion(i);
drawEnemy(enemy);
}
al_flip_display();
al_clear_to_color(al_map_rgb(0,0,0));
}
return 0;
}
void Gui::addLevel(Floor &floor)
{
int largo = HEIGHT/PIXEL;
Lista<Floor>* pisos= &mundo;
pisos->insertarAlInicio(floor);
if (pisos->len()>largo)
{
pisos->borrarPos(largo-1);
}
}
void Gui::initPlane(Plane &plane)
{
plane.x = WIDTH / 2;
plane.y = HEIGHT * 2 / 3;
plane.ID = PLAYER;
plane.speed = 7;
}
void Gui::drawPlane(Plane &plane)
{
player = al_load_bitmap("player.png");
al_draw_bitmap(player, plane.x, plane.y, 0);
}
void Gui::drawEnemy(Enemy &enemy)
{
if (!enemy.death){
if (enemy.isDying)
{
al_draw_filled_rectangle(enemy.x, enemy.y, enemy.x + 15, enemy.y - 15, al_map_rgb(255, 0, 0));
}
else
{
//al_draw_filled_rectangle(enemy.x+2, enemy.y , enemy.x + 22, enemy.y + 20, al_map_rgb(0, 255, 0));
al_draw_filled_triangle(enemy.x, enemy.y, enemy.x + 12, enemy.y + 24, enemy.x + 24, enemy.y, al_map_rgb(0, 0, 255));
al_draw_filled_rectangle(enemy.x + 4, enemy.y+5, enemy.x + 8, enemy.y + 8, al_map_rgb(255, 0, 0));
al_draw_filled_rectangle(enemy.x + 16, enemy.y+5, enemy.x + 20,enemy.y + 8, al_map_rgb(255, 0, 0));
}
}
}
void Gui::drawBullet(Bullet &bullet)
{
if (!bullet.death){
al_draw_filled_circle(bullet.x,bullet.y,2.0,al_map_rgb(255,255,255));
}
}
void Gui::drawTerrain()
{
Lista<Floor>* lista = &mundo;
for(int i=0;i<lista->len();i++)
{
Floor piso = lista->datoPosicion(i);
al_draw_filled_rectangle(0,i*PIXEL,piso.inicio,(i+1)*PIXEL, al_map_rgb(0,92,9));
al_draw_filled_rectangle(piso.fin,i*PIXEL,WIDTH,(i+1)*PIXEL,al_map_rgb(0,92,9));
if (piso.puente) al_draw_filled_rectangle(piso.inicio,i*PIXEL,piso.fin,(i+1)*PIXEL, al_map_rgb(102, 51, 0));
else al_draw_filled_rectangle(piso.inicio,i*PIXEL,piso.fin,(i+1)*PIXEL, al_map_rgb(64, 164, 223));
}
}
void Gui::receive(std::string message) {
StructEvento evento = proto::readEvent(message);
}
| [
"paroque28@gmail.com"
] | paroque28@gmail.com |
af0533c3d90874062c08d32799de35c98eaddd08 | c57cc21f63484b794eb3ab0447fd0a12d1c1aa1f | /4.16/Private/Detour/DetourNavMesh.cpp | 3e9fe682cf022d6c61c96fb1ccabce31396aa41b | [
"Zlib"
] | permissive | quanrquanr/recastnavigation-ue4 | 21c3bb605a4c54aa7389f8a2a420140ac4cd24b2 | 9eabd9f749b5946ca21f2feeff9336fc075509a8 | refs/heads/master | 2021-12-30T09:24:41.989219 | 2018-02-08T06:27:06 | 2018-02-08T06:27:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 71,641 | cpp | // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
// Modified version of Recast/Detour's source file
//
// Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
//
//#include "NavmeshModulePrivatePCH.h"
#include <math.h>
#include <float.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "DetourNavMesh.h"
#include "DetourNode.h"
#include "DetourCommon.h"
#include "DetourAlloc.h"
#include "DetourAssert.h"
#include "DetourNavMeshQuery.h"
#include <new>
enum ESlabOverlapFlag
{
SLABOVERLAP_Cross = 1,
SLABOVERLAP_Min = 2,
SLABOVERLAP_Max = 4,
};
inline bool overlapSlabs(const float* amin, const float* amax,
const float* bmin, const float* bmax,
const float px, const float py, unsigned char* mode)
{
// Check for horizontal overlap.
// The segment is shrunken a little so that slabs which touch
// at end points are not connected.
const float minx = dtMax(amin[0]+px,bmin[0]+px);
const float maxx = dtMin(amax[0]-px,bmax[0]-px);
if (minx > maxx)
return false;
// Check vertical overlap.
const float ad = (amax[1]-amin[1]) / (amax[0]-amin[0]);
const float ak = amin[1] - ad*amin[0];
const float bd = (bmax[1]-bmin[1]) / (bmax[0]-bmin[0]);
const float bk = bmin[1] - bd*bmin[0];
const float aminy = ad*minx + ak;
const float amaxy = ad*maxx + ak;
const float bminy = bd*minx + bk;
const float bmaxy = bd*maxx + bk;
const float dmin = bminy - aminy;
const float dmax = bmaxy - amaxy;
// Crossing segments always overlap.
if (dmin*dmax < 0)
{
*mode = SLABOVERLAP_Cross;
return true;
}
// Check for overlap at endpoints.
const float thr = dtSqr(py*2);
if (dmin*dmin <= thr)
{
*mode |= SLABOVERLAP_Min;
}
if (dmax*dmax <= thr)
{
*mode |= SLABOVERLAP_Max;
}
return (*mode != 0);
}
static float getSlabCoord(const float* va, const int side)
{
if (side == 0 || side == 4)
return va[0];
else if (side == 2 || side == 6)
return va[2];
return 0;
}
static void calcSlabEndPoints(const float* va, const float* vb, float* bmin, float* bmax, const int side)
{
if (side == 0 || side == 4)
{
if (va[2] < vb[2])
{
bmin[0] = va[2];
bmin[1] = va[1];
bmax[0] = vb[2];
bmax[1] = vb[1];
}
else
{
bmin[0] = vb[2];
bmin[1] = vb[1];
bmax[0] = va[2];
bmax[1] = va[1];
}
}
else if (side == 2 || side == 6)
{
if (va[0] < vb[0])
{
bmin[0] = va[0];
bmin[1] = va[1];
bmax[0] = vb[0];
bmax[1] = vb[1];
}
else
{
bmin[0] = vb[0];
bmin[1] = vb[1];
bmax[0] = va[0];
bmax[1] = va[1];
}
}
}
static float getHeightFromDMesh(const dtMeshTile* tile, int polyIdx, float* pos)
{
if (tile == 0 || polyIdx < 0 || polyIdx >= tile->header->detailMeshCount)
return 0.0f;
const dtPolyDetail* pd = &tile->detailMeshes[polyIdx];
const dtPoly* poly = &tile->polys[polyIdx];
for (int j = 0; j < pd->triCount; ++j)
{
const unsigned char* t = &tile->detailTris[(pd->triBase+j)*4];
const float* v[3];
for (int k = 0; k < 3; ++k)
{
if (t[k] < poly->vertCount)
v[k] = &tile->verts[poly->verts[t[k]]*3];
else
v[k] = &tile->detailVerts[(pd->vertBase+(t[k]-poly->vertCount))*3];
}
float h;
if (dtClosestHeightPointTriangle(pos, v[0], v[1], v[2], h))
{
return h;
}
}
return 0.0f;
}
inline int computeTileHash(int x, int y, const int mask)
{
const unsigned int h1 = 0x8da6b343; // Large multiplicative constants;
const unsigned int h2 = 0xd8163841; // here arbitrarily chosen primes
unsigned int n = h1 * x + h2 * y;
return (int)(n & mask);
}
enum ELinkAllocationType
{
CREATE_LINK_PREALLOCATED,
CREATE_LINK_DYNAMIC_OFFMESH,
CREATE_LINK_DYNAMIC_CLUSTER,
};
inline unsigned int allocLink(dtMeshTile* tile, char LinkAllocMode)
{
unsigned int newLink = DT_NULL_LINK;
if (LinkAllocMode == CREATE_LINK_PREALLOCATED)
{
if (tile->linksFreeList != DT_NULL_LINK)
{
newLink = tile->linksFreeList;
tile->linksFreeList = tile->links[newLink].next;
}
}
else if (LinkAllocMode == CREATE_LINK_DYNAMIC_OFFMESH)
{
if (tile->dynamicFreeListO == DT_NULL_LINK)
{
dtLink emptyLink;
memset(&emptyLink, 0, sizeof(dtLink));
emptyLink.next = DT_NULL_LINK;
tile->dynamicFreeListO = tile->dynamicLinksO.size();
tile->dynamicLinksO.push(emptyLink);
}
newLink = tile->dynamicFreeListO;
tile->dynamicFreeListO = tile->dynamicLinksO[newLink].next;
newLink += tile->header->maxLinkCount;
}
else if (LinkAllocMode == CREATE_LINK_DYNAMIC_CLUSTER)
{
if (tile->dynamicFreeListC == DT_NULL_LINK)
{
dtClusterLink emptyLink;
memset(&emptyLink, 0, sizeof(dtClusterLink));
emptyLink.next = DT_NULL_LINK;
tile->dynamicFreeListC = tile->dynamicLinksC.size();
tile->dynamicLinksC.push(emptyLink);
}
newLink = tile->dynamicFreeListC;
tile->dynamicFreeListC = tile->dynamicLinksC[newLink].next;
newLink += DT_CLINK_FIRST;
}
return newLink;
}
inline void freeLink(dtMeshTile* tile, unsigned int link)
{
if (link < (unsigned int)tile->header->maxLinkCount)
{
tile->links[link].next = tile->linksFreeList;
tile->linksFreeList = link;
}
else if (link < DT_CLINK_FIRST)
{
const unsigned int linkIdx = link - tile->header->maxLinkCount;
tile->dynamicLinksO[linkIdx].next = tile->dynamicFreeListO;
tile->dynamicFreeListO = linkIdx;
}
else
{
const unsigned int linkIdx = link - DT_CLINK_FIRST;
tile->dynamicLinksC[linkIdx].next = tile->dynamicFreeListC;
tile->dynamicFreeListC = linkIdx;
}
}
dtNavMesh* dtAllocNavMesh()
{
void* mem = dtAlloc(sizeof(dtNavMesh), DT_ALLOC_PERM);
if (!mem) return 0;
return new(mem) dtNavMesh;
}
/// @par
///
/// This function will only free the memory for tiles with the #DT_TILE_FREE_DATA
/// flag set.
void dtFreeNavMesh(dtNavMesh* navmesh)
{
if (!navmesh) return;
navmesh->~dtNavMesh();
dtFree(navmesh);
}
void dtFreeNavMeshTileRuntimeData(dtMeshTile* tile)
{
tile->dynamicLinksO.~dtChunkArray();
tile->dynamicLinksC.~dtChunkArray();
}
//////////////////////////////////////////////////////////////////////////////////////////
// Segment type offmesh links
static const unsigned int DT_INVALID_SEGMENT = 0xffffffff;
static const int DT_MAX_OFFMESH_SEGMENT_POINTS = 32;
struct dtOffMeshSegmentIntersection
{
dtMeshTile* tile;
unsigned int poly;
float t;
};
struct dtOffMeshSegmentTileIntersection
{
dtOffMeshSegmentIntersection points[DT_MAX_OFFMESH_SEGMENT_POINTS];
int npoints;
};
struct dtOffMeshSegmentIntersectionLink
{
float t;
unsigned int polyA, polyB;
dtMeshTile* tileA;
dtMeshTile* tileB;
};
struct dtOffMeshSegmentPart
{
float t0, t1;
unsigned short vA0, vA1, vB0, vB1;
unsigned int polyA, polyB;
dtMeshTile* tileA;
dtMeshTile* tileB;
};
struct dtOffMeshSegmentData
{
dtOffMeshSegmentTileIntersection listA;
dtOffMeshSegmentTileIntersection listB;
};
inline bool isIntersectionPointEqual(float t0, float t1)
{
return dtAbs(t0 - t1) < 0.001f;
}
static bool isPolyIntersectingSegment(const dtMeshTile* tile, int polyIdx,
const float* spos, const float* epos, float& tmin, float& tmax)
{
dtPoly* poly = &tile->polys[polyIdx];
float verts[DT_VERTS_PER_POLYGON*3];
for (int i = 0; i < poly->vertCount; i++)
dtVcopy(&verts[i*3], &tile->verts[poly->verts[i]*3]);
int smin, smax;
return dtIntersectSegmentPoly2D(spos, epos, verts, poly->vertCount, tmin, tmax, smin, smax);
}
static void addSegmentIntersections(dtOffMeshSegmentIntersection* isec, dtOffMeshSegmentIntersection* list, int& nlist)
{
int minIdx = -1;
int maxIdx = -1;
for (int i = 0; i < nlist; i++)
{
if (isIntersectionPointEqual(list[i].t, isec[0].t)) minIdx = i;
if (isIntersectionPointEqual(list[i].t, isec[1].t)) maxIdx = i;
}
// min = overwrite if exists or add new one
if (minIdx < 0)
{
list[nlist] = isec[0];
nlist++;
}
else
{
list[minIdx] = isec[0];
}
// max = skip if exists or add new one
if (maxIdx < 0 && nlist < DT_MAX_OFFMESH_SEGMENT_POINTS)
{
list[nlist] = isec[1];
nlist++;
}
}
int segmentIntersectionSorter(const void* i1, const void* i2)
{
// lesser "t" goes first
const dtOffMeshSegmentIntersection* a = (const dtOffMeshSegmentIntersection*)i1;
const dtOffMeshSegmentIntersection* b = (const dtOffMeshSegmentIntersection*)i2;
return (a->t < b->t) ? -1 : (a->t > b->t) ? 1 : 0;
}
static void gatherSegmentIntersections(dtMeshTile* tile,
const float* spos, const float* epos, const float radius,
dtOffMeshSegmentTileIntersection& list)
{
// get all polys intersecting with segment
float segBMin[3], segBMax[3], segRad[3] = { radius, tile->header->walkableClimb, radius };
dtVcopy(segBMin, spos);
dtVcopy(segBMax, spos);
dtVmin(segBMin, epos);
dtVmax(segBMax, epos);
dtVsub(segBMin, segBMin, segRad);
dtVadd(segBMax, segBMax, segRad);
if (!dtOverlapBounds(segBMin, segBMax, tile->header->bmin, tile->header->bmax))
return;
dtOffMeshSegmentIntersection intersec[2];
intersec[0].tile = tile;
intersec[1].tile = tile;
float bmin[3], bmax[3];
for (int i = 0; i < tile->header->offMeshBase; i++)
{
dtPoly* poly = &tile->polys[i];
dtVcopy(bmin, &tile->verts[poly->verts[0]*3]);
dtVcopy(bmax, &tile->verts[poly->verts[0]*3]);
for (int j = 1; j < poly->vertCount; j++)
{
dtVmin(bmin, &tile->verts[poly->verts[j]*3]);
dtVmax(bmax, &tile->verts[poly->verts[j]*3]);
}
// use simple AABB overlap test first
if (dtOverlapBounds(segBMin, segBMax, bmin, bmax))
{
// mark intersection
if (isPolyIntersectingSegment(tile, i, spos, epos, intersec[0].t, intersec[1].t))
{
intersec[0].poly = i;
intersec[1].poly = i;
addSegmentIntersections(intersec, list.points, list.npoints);
if (list.npoints >= DT_MAX_OFFMESH_SEGMENT_POINTS)
break;
}
}
}
}
static dtOffMeshSegmentData* initSegmentIntersection(dtMeshTile* tile)
{
const int segCount = tile->header->offMeshSegConCount;
if (segCount <= 0)
return NULL;
dtOffMeshSegmentData* segs = (dtOffMeshSegmentData*)dtAlloc(sizeof(dtOffMeshSegmentData)*segCount, DT_ALLOC_TEMP);
if (segs == NULL)
return NULL;
memset(segs, 0, sizeof(dtOffMeshSegmentData)*segCount);
for (int i = 0; i < segCount; i++)
{
dtOffMeshSegmentConnection& con = tile->offMeshSeg[i];
gatherSegmentIntersections(tile, con.startA, con.endA, con.rad, segs[i].listA);
gatherSegmentIntersections(tile, con.startB, con.endB, con.rad, segs[i].listB);
}
return segs;
}
static void appendSegmentIntersection(dtOffMeshSegmentData* seg, dtMeshTile* tile, dtMeshTile* nei)
{
if (seg == NULL)
return;
for (int i = 0; i < tile->header->offMeshSegConCount; i++)
{
dtOffMeshSegmentConnection& con = tile->offMeshSeg[i];
gatherSegmentIntersections(nei, con.startA, con.endA, con.rad, seg[i].listA);
gatherSegmentIntersections(nei, con.startB, con.endB, con.rad, seg[i].listB);
}
}
int segmentIntersectionLinkSorter(const void* i1, const void* i2)
{
// lesser "t" goes first
const dtOffMeshSegmentIntersectionLink* a = (const dtOffMeshSegmentIntersectionLink*)i1;
const dtOffMeshSegmentIntersectionLink* b = (const dtOffMeshSegmentIntersectionLink*)i2;
return (a->t < b->t) ? -1 : (a->t > b->t) ? 1 : 0;
}
int segmentPartSorter(const void* i1, const void* i2)
{
// higher length (t1-t0) goes first
const dtOffMeshSegmentPart* a = (const dtOffMeshSegmentPart*)i1;
const dtOffMeshSegmentPart* b = (const dtOffMeshSegmentPart*)i2;
const float lenA = a->t1 - a->t0;
const float lenB = b->t1 - b->t0;
return (lenA > lenB) ? -1 : (lenA < lenB) ? 1 : 0;
}
static unsigned int findMatchingSegmentIntersection(const float t, const dtOffMeshSegmentIntersection* points, const int npoints, bool bAllowExisting)
{
if (npoints < 1 || t < points[0].t || t > points[npoints - 1].t)
return DT_INVALID_SEGMENT;
unsigned int seg = DT_INVALID_SEGMENT;
for (int i = 1; i < npoints; i++)
{
if (t <= points[i].t)
{
if (bAllowExisting || (!isIntersectionPointEqual(t, points[i].t) && !isIntersectionPointEqual(t, points[i-1].t)))
{
if (i < 2 || points[i - 2].poly != points[i - 1].poly)
seg = i - 1;
}
return seg;
}
}
return seg;
}
static bool canConnectSegmentPart(unsigned int startPoly, unsigned int endPoly,
const dtMeshTile* startTile, const dtMeshTile* endTile,
const dtOffMeshSegmentIntersection* points, const int npoints)
{
if ((startPoly != endPoly || startTile != endTile) && (npoints > 1))
{
for (int i = 1; i < npoints; i++)
{
if (points[i-1].poly == points[i].poly &&
points[i-1].tile == points[i].tile &&
startPoly == points[i].poly &&
startTile == points[i].tile)
{
return false;
}
}
}
return true;
}
static unsigned short findOrAddUniqueValue(float v, float* arr, unsigned short& narr)
{
for (unsigned short i = 0; i < narr; i++)
{
if (arr[i] == v)
return i;
}
const unsigned short pos = narr;
arr[pos] = v;
narr++;
return pos;
}
static void createSegmentParts(dtMeshTile* tile, const dtOffMeshSegmentData& segData,
dtOffMeshSegmentPart* parts, const int maxParts, int& nparts, unsigned short& nverts)
{
if (segData.listA.npoints <= 0 && segData.listB.npoints <= 0)
return;
const int maxLinks = DT_MAX_OFFMESH_SEGMENT_POINTS * 2;
dtOffMeshSegmentIntersectionLink links[maxLinks];
memset(links, 0, sizeof(dtOffMeshSegmentIntersectionLink)*maxLinks);
int nlinks = 0;
// match from A to B
for (int i = 0; i < segData.listA.npoints; i++)
{
unsigned int idxB = findMatchingSegmentIntersection(segData.listA.points[i].t, segData.listB.points, segData.listB.npoints, true);
if (idxB != DT_INVALID_SEGMENT)
{
links[nlinks].t = segData.listA.points[i].t;
links[nlinks].polyA = segData.listA.points[i].poly;
links[nlinks].polyB = segData.listB.points[idxB].poly;
links[nlinks].tileA = segData.listA.points[i].tile;
links[nlinks].tileB = segData.listB.points[idxB].tile;
nlinks++;
}
}
// match from B to A
for (int i = 0; i < segData.listA.npoints; i++)
{
unsigned int idxA = findMatchingSegmentIntersection(segData.listB.points[i].t, segData.listA.points, segData.listA.npoints, false);
if (idxA != DT_INVALID_SEGMENT)
{
links[nlinks].t = segData.listB.points[i].t;
links[nlinks].polyA = segData.listA.points[idxA].poly;
links[nlinks].polyB = segData.listB.points[i].poly;
links[nlinks].tileA = segData.listA.points[idxA].tile;
links[nlinks].tileB = segData.listB.points[i].tile;
nlinks++;
}
}
if (nlinks < 2)
return;
// sort positions
qsort(links, nlinks, sizeof(dtOffMeshSegmentIntersectionLink), segmentIntersectionLinkSorter);
// create segments
memset(parts, 0, sizeof(dtOffMeshSegmentPart)*maxParts);
nparts = 0;
for (int i = 1; i < nlinks; i++)
{
if (links[i-1].tileA == tile || links[i-1].tileB == tile ||
links[i ].tileA == tile || links[i ].tileB == tile ||
canConnectSegmentPart(links[i-1].polyA, links[i].polyA, links[i-1].tileA, links[i].tileA, segData.listA.points, segData.listA.npoints))
{
parts[nparts].t0 = links[i-1].t;
parts[nparts].t1 = links[i].t;
parts[nparts].polyA = links[i-1].polyA;
parts[nparts].polyB = links[i-1].polyB;
parts[nparts].tileA = links[i-1].tileA;
parts[nparts].tileB = links[i-1].tileB;
nparts++;
}
}
// sort positions
if (nparts > DT_MAX_OFFMESH_SEGMENT_PARTS)
{
qsort(parts, nparts, sizeof(dtOffMeshSegmentPart), segmentPartSorter);
nparts = DT_MAX_OFFMESH_SEGMENT_PARTS;
}
// count unique verts
float uniquePos[DT_MAX_OFFMESH_SEGMENT_PARTS*2];
unsigned short nPos = 0;
for (int i = 0; i < nparts; i++)
{
parts[i].vA0 = findOrAddUniqueValue(parts[i].t0, uniquePos, nPos);
parts[i].vA1 = findOrAddUniqueValue(parts[i].t1, uniquePos, nPos);
}
for (int i = 0; i < nparts; i++)
{
parts[i].vB0 = parts[i].vA0 + nPos;
parts[i].vB1 = parts[i].vA1 + nPos;
}
nverts = nPos * 2;
}
static void createSegmentPolys(dtNavMesh* nav, dtMeshTile* tile, dtOffMeshSegmentConnection* con,
dtOffMeshSegmentPart* parts, int nparts, unsigned short vertBase, int polyBase)
{
float lenA[3], lenB[3];
dtVsub(lenA, con->endA, con->startA);
dtVsub(lenB, con->endB, con->startB);
unsigned char sideFwd = DT_LINK_FLAG_OFFMESH_CON | (con->getBiDirectional() ? DT_LINK_FLAG_OFFMESH_CON_BIDIR : 0);
unsigned char sideBck = sideFwd | DT_LINK_FLAG_OFFMESH_CON_BACKTRACKER;
con->firstPoly = (unsigned short)(polyBase - tile->header->offMeshSegPolyBase);
con->npolys = (nparts > 0 && nparts < 256) ? (unsigned char)nparts : 0;
for (int i = 0; i < nparts; i++)
{
dtOffMeshSegmentPart* it = &parts[i];
// add verts
dtVmad(&tile->verts[(vertBase+it->vA0)*3], con->startA, lenA, it->t0);
dtVmad(&tile->verts[(vertBase+it->vA1)*3], con->startA, lenA, it->t1);
dtVmad(&tile->verts[(vertBase+it->vB0)*3], con->startB, lenB, it->t0);
dtVmad(&tile->verts[(vertBase+it->vB1)*3], con->startB, lenB, it->t1);
// add poly
dtPoly* poly = &tile->polys[polyBase + i];
poly->vertCount = 4;
poly->verts[0] = vertBase + it->vA0;
poly->verts[1] = vertBase + it->vA1;
poly->verts[2] = vertBase + it->vB0;
poly->verts[3] = vertBase + it->vB1;
poly->firstLink = DT_NULL_LINK;
// add links
const unsigned char sideA = (tile == it->tileA) ? DT_CONNECTION_INTERNAL : 0;
const unsigned char sideB = (tile == it->tileB) ? DT_CONNECTION_INTERNAL : 0;
nav->linkOffMeshHelper(tile, polyBase + i, it->tileA, it->polyA, sideBck | sideA, 0);
nav->linkOffMeshHelper(tile, polyBase + i, it->tileB, it->polyB, sideFwd | sideB, 1);
nav->linkOffMeshHelper(it->tileA, it->polyA, tile, polyBase + i, sideFwd | sideA, 0xff);
nav->linkOffMeshHelper(it->tileB, it->polyB, tile, polyBase + i, sideBck | sideB, 0xff);
}
}
static void createSegmentLinks(dtNavMesh* nav, dtOffMeshSegmentData* seg, dtMeshTile* tile)
{
if (seg == NULL)
return;
unsigned short vertBase = (unsigned short)tile->header->offMeshSegVertBase;
int polyBase = tile->header->offMeshSegPolyBase;
for (int i = 0; i < tile->header->offMeshSegConCount; i++)
{
dtOffMeshSegmentConnection& con = tile->offMeshSeg[i];
dtOffMeshSegmentData& segData = seg[i];
qsort(segData.listA.points, segData.listA.npoints, sizeof(dtOffMeshSegmentIntersection), segmentIntersectionSorter);
qsort(segData.listB.points, segData.listB.npoints, sizeof(dtOffMeshSegmentIntersection), segmentIntersectionSorter);
const int maxParts = (DT_MAX_OFFMESH_SEGMENT_POINTS * 2) - 1;
dtOffMeshSegmentPart parts[maxParts];
int nparts = 0;
unsigned short nverts = 0;
createSegmentParts(tile, segData, parts, maxParts, nparts, nverts);
createSegmentPolys(nav, tile, &con, parts, nparts, vertBase, polyBase);
vertBase += nverts;
polyBase += nparts;
}
}
//////////////////////////////////////////////////////////////////////////////////////////
/**
@class dtNavMesh
The navigation mesh consists of one or more tiles defining three primary types of structural data:
A polygon mesh which defines most of the navigation graph. (See rcPolyMesh for its structure.)
A detail mesh used for determining surface height on the polygon mesh. (See rcPolyMeshDetail for its structure.)
Off-mesh connections, which define custom point-to-point edges within the navigation graph.
The general build process is as follows:
-# Create rcPolyMesh and rcPolyMeshDetail data using the Recast build pipeline.
-# Optionally, create off-mesh connection data.
-# Combine the source data into a dtNavMeshCreateParams structure.
-# Create a tile data array using dtCreateNavMeshData().
-# Allocate at dtNavMesh object and initialize it. (For single tile navigation meshes,
the tile data is loaded during this step.)
-# For multi-tile navigation meshes, load the tile data using dtNavMesh::addTile().
Notes:
- This class is usually used in conjunction with the dtNavMeshQuery class for pathfinding.
- Technically, all navigation meshes are tiled. A 'solo' mesh is simply a navigation mesh initialized
to have only a single tile.
- This class does not implement any asynchronous methods. So the ::dtStatus result of all methods will
always contain either a success or failure flag.
@see dtNavMeshQuery, dtCreateNavMeshData, dtNavMeshCreateParams, #dtAllocNavMesh, #dtFreeNavMesh
*/
dtNavMesh::dtNavMesh() :
m_tileWidth(0),
m_tileHeight(0),
m_maxTiles(0),
m_tileLutSize(0),
m_tileLutMask(0),
m_posLookup(0),
m_nextFree(0),
m_tiles(0),
m_saltBits(0),
m_tileBits(0),
m_polyBits(0)
{
memset(&m_params, 0, sizeof(dtNavMeshParams));
memset(m_areaCostOrder, 0, sizeof(m_areaCostOrder));
m_orig[0] = 0;
m_orig[1] = 0;
m_orig[2] = 0;
}
dtNavMesh::~dtNavMesh()
{
for (int i = 0; i < m_maxTiles; ++i)
{
if (m_tiles[i].flags & DT_TILE_FREE_DATA)
{
dtFree(m_tiles[i].data);
m_tiles[i].data = 0;
m_tiles[i].dataSize = 0;
}
// cleanup runtime data (not serialized by navmesh owners)
dtFreeNavMeshTileRuntimeData(&m_tiles[i]);
}
dtFree(m_posLookup);
dtFree(m_tiles);
}
dtStatus dtNavMesh::init(const dtNavMeshParams* params)
{
memcpy(&m_params, params, sizeof(dtNavMeshParams));
dtVcopy(m_orig, params->orig);
m_tileWidth = params->tileWidth;
m_tileHeight = params->tileHeight;
// Init tiles
m_maxTiles = params->maxTiles;
m_tileLutSize = dtNextPow2(params->maxTiles/4);
if (!m_tileLutSize) m_tileLutSize = 1;
m_tileLutMask = m_tileLutSize-1;
m_tiles = (dtMeshTile*)dtAlloc(sizeof(dtMeshTile)*m_maxTiles, DT_ALLOC_PERM);
if (!m_tiles)
return DT_FAILURE | DT_OUT_OF_MEMORY;
m_posLookup = (dtMeshTile**)dtAlloc(sizeof(dtMeshTile*)*m_tileLutSize, DT_ALLOC_PERM);
if (!m_posLookup)
return DT_FAILURE | DT_OUT_OF_MEMORY;
memset(m_tiles, 0, sizeof(dtMeshTile)*m_maxTiles);
memset(m_posLookup, 0, sizeof(dtMeshTile*)*m_tileLutSize);
m_nextFree = 0;
for (int i = m_maxTiles-1; i >= 0; --i)
{
m_tiles[i].salt = 1;
m_tiles[i].next = m_nextFree;
m_nextFree = &m_tiles[i];
}
// Init ID generator values.
m_tileBits = dtIlog2(dtNextPow2((unsigned int)params->maxTiles));
m_polyBits = dtIlog2(dtNextPow2((unsigned int)params->maxPolys));
// Only allow 31 salt bits, since the salt mask is calculated using 32bit uint and it will overflow.
#if USE_64BIT_ADDRESS
m_saltBits = dtMin((unsigned int)31, 64 - m_tileBits - m_polyBits);
#else
m_saltBits = dtMin((unsigned int)31, 32 - m_tileBits - m_polyBits);
#endif
if (m_saltBits < DT_MIN_SALT_BITS)
return DT_FAILURE | DT_INVALID_PARAM;
return DT_SUCCESS;
}
dtStatus dtNavMesh::init(unsigned char* data, const int dataSize, const int flags)
{
// Make sure the data is in right format.
dtMeshHeader* header = (dtMeshHeader*)data;
if (header->magic != DT_NAVMESH_MAGIC)
return DT_FAILURE | DT_WRONG_MAGIC;
if (header->version != DT_NAVMESH_VERSION)
return DT_FAILURE | DT_WRONG_VERSION;
dtNavMeshParams params;
dtVcopy(params.orig, header->bmin);
params.tileWidth = header->bmax[0] - header->bmin[0];
params.tileHeight = header->bmax[2] - header->bmin[2];
params.maxTiles = 1;
params.maxPolys = header->polyCount;
dtStatus status = init(¶ms);
if (dtStatusFailed(status))
return status;
return addTile(data, dataSize, flags, 0, 0);
}
/// @par
///
/// @note The parameters are created automatically when the single tile
/// initialization is performed.
const dtNavMeshParams* dtNavMesh::getParams() const
{
return &m_params;
}
//////////////////////////////////////////////////////////////////////////////////////////
int dtNavMesh::findConnectingPolys(const float* va, const float* vb,
const dtMeshTile* fromTile, int fromPolyIdx,
const dtMeshTile* tile, int side,
dtPolyRef* con, float* conarea, int maxcon) const
{
if (!tile) return 0;
float amin[2], amax[2], apt[3];
calcSlabEndPoints(va,vb, amin,amax, side);
const float apos = getSlabCoord(va, side);
dtVcopy(apt, va);
// Remove links pointing to 'side' and compact the links array.
float bmin[2], bmax[2], bpt[3];
unsigned short m = DT_EXT_LINK | (unsigned short)side;
int n = 0;
dtPolyRef base = getPolyRefBase(tile);
for (int i = 0; i < tile->header->polyCount; ++i)
{
dtPoly* poly = &tile->polys[i];
const int nv = poly->vertCount;
for (int j = 0; j < nv; ++j)
{
// Skip edges which do not point to the right side.
if (poly->neis[j] != m) continue;
const float* vc = &tile->verts[poly->verts[j]*3];
const float* vd = &tile->verts[poly->verts[(j+1) % nv]*3];
const float bpos = getSlabCoord(vc, side);
// Segments are not close enough.
if (dtAbs(apos-bpos) > 0.01f)
continue;
// Check if the segments touch.
calcSlabEndPoints(vc,vd, bmin,bmax, side);
unsigned char overlapMode = 0;
if (!overlapSlabs(amin,amax, bmin,bmax, 0.01f, tile->header->walkableClimb, &overlapMode)) continue;
// if overlapping with only one side, verify height difference using detailed mesh
if (overlapMode == SLABOVERLAP_Max || overlapMode == SLABOVERLAP_Min)
{
dtVcopy(bpt, vc);
const int coordIdx = (side == 0 || side == 4) ? 2 : 0;
apt[coordIdx] = (overlapMode == SLABOVERLAP_Min) ? dtMax(amin[0], bmin[0]) : dtMin(amax[0], bmax[0]);
bpt[coordIdx] = apt[coordIdx];
const float aH = getHeightFromDMesh(fromTile, fromPolyIdx, apt);
const float bH = getHeightFromDMesh(tile, i, bpt);
const float heightDiff = dtAbs(aH - bH);
if (heightDiff > tile->header->walkableClimb)
continue;
}
// Add return value.
if (n < maxcon)
{
conarea[n*2+0] = dtMax(amin[0], bmin[0]);
conarea[n*2+1] = dtMin(amax[0], bmax[0]);
con[n] = base | (dtPolyRef)i;
n++;
}
break;
}
}
return n;
}
void dtNavMesh::unconnectExtLinks(dtMeshTile* tile, dtMeshTile* target)
{
if (!tile || !target) return;
const unsigned int targetNum = decodePolyIdTile(getTileRef(target));
for (int i = 0; i < tile->header->polyCount; ++i)
{
dtPoly* poly = &tile->polys[i];
unsigned int j = poly->firstLink;
unsigned int pj = DT_NULL_LINK;
while (j != DT_NULL_LINK)
{
dtLink& testLink = getLink(tile, j);
//@UE4 BEGIN
if ((testLink.side & DT_CONNECTION_INTERNAL) == 0 &&
//@UE4 END
decodePolyIdTile(testLink.ref) == targetNum)
{
// Remove link.
unsigned int nj = testLink.next;
if (pj == DT_NULL_LINK)
{
poly->firstLink = nj;
}
else
{
dtLink& prevLink = getLink(tile, pj);
prevLink.next = nj;
}
freeLink(tile, j);
j = nj;
}
else
{
// Advance
pj = j;
j = testLink.next;
}
}
}
unconnectClusterLinks(tile, target);
}
void dtNavMesh::connectExtLinks(dtMeshTile* tile, dtMeshTile* target, int side, bool updateCLinks)
{
if (!tile) return;
// Connect border links.
for (int i = 0; i < tile->header->polyCount; ++i)
{
dtPoly* poly = &tile->polys[i];
// Create new links.
// unsigned short m = DT_EXT_LINK | (unsigned short)side;
const int nv = poly->vertCount;
for (int j = 0; j < nv; ++j)
{
// Skip non-portal edges.
if ((poly->neis[j] & DT_EXT_LINK) == 0)
continue;
const int dir = (int)(poly->neis[j] & 0xff);
if (side != -1 && dir != side)
continue;
// Create new links
const float* va = &tile->verts[poly->verts[j]*3];
const float* vb = &tile->verts[poly->verts[(j+1) % nv]*3];
dtPolyRef nei[4];
float neia[4*2];
int nnei = findConnectingPolys(va,vb, tile, i, target, dtOppositeTile(dir), nei,neia,4);
for (int k = 0; k < nnei; ++k)
{
unsigned int idx = allocLink(tile, CREATE_LINK_PREALLOCATED);
if (idx != DT_NULL_LINK)
{
dtLink* link = &tile->links[idx];
link->ref = nei[k];
link->edge = (unsigned char)j;
link->side = (unsigned char)dir;
link->next = poly->firstLink;
poly->firstLink = idx;
// Compress portal limits to a byte value.
if (dir == 0 || dir == 4)
{
float tmin = (neia[k*2+0]-va[2]) / (vb[2]-va[2]);
float tmax = (neia[k*2+1]-va[2]) / (vb[2]-va[2]);
if (tmin > tmax)
dtSwap(tmin,tmax);
link->bmin = (unsigned char)(dtClamp(tmin, 0.0f, 1.0f)*255.0f);
link->bmax = (unsigned char)(dtClamp(tmax, 0.0f, 1.0f)*255.0f);
}
else if (dir == 2 || dir == 6)
{
float tmin = (neia[k*2+0]-va[0]) / (vb[0]-va[0]);
float tmax = (neia[k*2+1]-va[0]) / (vb[0]-va[0]);
if (tmin > tmax)
dtSwap(tmin,tmax);
link->bmin = (unsigned char)(dtClamp(tmin, 0.0f, 1.0f)*255.0f);
link->bmax = (unsigned char)(dtClamp(tmax, 0.0f, 1.0f)*255.0f);
}
}
if (updateCLinks)
{
unsigned int targetIdx = decodePolyIdPoly(nei[k]);
if (tile->polyClusters && target->polyClusters &&
i < tile->header->offMeshBase &&
targetIdx < (unsigned int)target->header->offMeshBase)
{
connectClusterLink(tile, tile->polyClusters[i], target, target->polyClusters[targetIdx], DT_CLINK_VALID_FWD);
connectClusterLink(target, target->polyClusters[targetIdx], tile, tile->polyClusters[i], DT_CLINK_VALID_BCK);
}
}
}
}
}
}
void dtNavMesh::linkOffMeshHelper(dtMeshTile* tile0, unsigned int polyIdx0, dtMeshTile* tile1, unsigned int polyIdx1, unsigned char side, unsigned char edge)
{
dtPoly* poly0 = &tile0->polys[polyIdx0];
const unsigned int idx = allocLink(tile0, CREATE_LINK_DYNAMIC_OFFMESH);
dtLink& link = getLink(tile0, idx);
link.ref = getPolyRefBase(tile1) | (dtPolyRef)polyIdx1;
link.edge = edge;
link.side = side;
link.bmin = link.bmax = 0;
link.next = poly0->firstLink;
poly0->firstLink = idx;
}
void dtNavMesh::connectExtOffMeshLinks(dtMeshTile* tile, dtMeshTile* target, int side, bool updateCLinks)
{
if (!tile) return;
// Connect off-mesh links.
// We are interested on links which land from target tile to this tile.
//@UE4 BEGIN
const unsigned char oppositeSide = (side == -1) ? DT_CONNECTION_INTERNAL : (unsigned char)dtOppositeTile(side);
for (int i = 0; i < target->header->offMeshConCount; ++i)
{
dtOffMeshConnection* targetCon = &target->offMeshCons[i];
if (targetCon->side != oppositeSide)
continue;
const unsigned char biDirFlag = targetCon->getBiDirectional() ? DT_LINK_FLAG_OFFMESH_CON_BIDIR : 0;
dtPoly* targetPoly = &target->polys[targetCon->poly];
// Skip off-mesh connections which start location could not be connected at all.
if (targetPoly->firstLink == DT_NULL_LINK)
continue;
const dtLink& targetLink = getLink(target, targetPoly->firstLink);
const dtPolyRef targetLandPoly = targetLink.ref;
const float ext[3] = { targetCon->rad, targetCon->height, targetCon->rad };
// Find polygon to connect to.
const float* p = &targetCon->pos[3];
float nearestPt[3];
dtPolyRef ref = targetCon->getSnapToCheapestArea() ?
findCheapestNearPolyInTile(tile, p, ext, nearestPt) :
findNearestPolyInTile(tile, p, ext, nearestPt, true);
if (!ref)
continue;
// findNearestPoly may return too optimistic results, further check to make sure.
if (dtSqr(nearestPt[0]-p[0])+dtSqr(nearestPt[2]-p[2]) > dtSqr(targetCon->rad))
continue;
// Make sure the location is on current mesh.
float* v = &target->verts[targetPoly->verts[1]*3];
dtVcopy(v, nearestPt);
unsigned char linkSide = oppositeSide | DT_LINK_FLAG_OFFMESH_CON | biDirFlag;
if (tile != target)
{
linkSide &= ~DT_CONNECTION_INTERNAL;
}
// Link off-mesh connection to target poly.
const unsigned int landPolyIdx = decodePolyIdPoly(ref);
linkOffMeshHelper(target, targetCon->poly, tile, landPolyIdx, linkSide, 1);
// Link target poly to off-mesh connection.
linkSide = (side == -1 ? DT_CONNECTION_INTERNAL : side) | DT_LINK_FLAG_OFFMESH_CON | biDirFlag;
if (tile != target)
{
linkSide &= ~DT_CONNECTION_INTERNAL;
}
if (biDirFlag == 0)
{
// if it's not a bi-directional link put it in anyway
// just annotate it accordingly
linkSide |= DT_LINK_FLAG_OFFMESH_CON_BACKTRACKER;
}
linkOffMeshHelper(tile, landPolyIdx, target, targetCon->poly, linkSide, 0xff);
if (updateCLinks)
{
unsigned int targetPolyIdx = decodePolyIdPoly(targetLandPoly);
unsigned int thisPolyIdx = landPolyIdx;
if (thisPolyIdx < (unsigned int)tile->header->offMeshBase &&
targetPolyIdx < (unsigned int)target->header->offMeshBase &&
tile->polyClusters && target->polyClusters)
{
unsigned int targetClusterIdx = target->polyClusters[targetPolyIdx];
unsigned int thisClusterIdx = tile->polyClusters[thisPolyIdx];
const bool bUniqueCheck = true;
const unsigned char flagsFwd = DT_CLINK_VALID_FWD | (biDirFlag ? DT_CLINK_VALID_BCK : 0);
const unsigned char flagsBck = DT_CLINK_VALID_BCK | (biDirFlag ? DT_CLINK_VALID_FWD : 0);
connectClusterLink(target, targetClusterIdx, tile, thisClusterIdx, flagsFwd, bUniqueCheck);
connectClusterLink(tile, thisClusterIdx, target, targetClusterIdx, flagsBck, bUniqueCheck);
}
}
//@UE4 END
}
}
void dtNavMesh::connectIntLinks(dtMeshTile* tile)
{
if (!tile) return;
dtPolyRef base = getPolyRefBase(tile);
for (int i = 0; i < tile->header->polyCount; ++i)
{
dtPoly* poly = &tile->polys[i];
poly->firstLink = DT_NULL_LINK;
if (poly->getType() != DT_POLYTYPE_GROUND)
continue;
// Build edge links backwards so that the links will be
// in the linked list from lowest index to highest.
for (int j = poly->vertCount-1; j >= 0; --j)
{
// Skip hard and non-internal edges.
if (poly->neis[j] == 0 || (poly->neis[j] & DT_EXT_LINK)) continue;
unsigned int idx = allocLink(tile, CREATE_LINK_PREALLOCATED);
if (idx != DT_NULL_LINK)
{
dtLink* link = &tile->links[idx];
link->ref = base | (dtPolyRef)(poly->neis[j]-1);
link->edge = (unsigned char)j;
//@UE4 BEGIN
link->side = DT_CONNECTION_INTERNAL;
//@UE4 END
link->bmin = link->bmax = 0;
// Add to linked list.
link->next = poly->firstLink;
poly->firstLink = idx;
}
}
}
}
void dtNavMesh::baseOffMeshLinks(dtMeshTile* tile)
{
if (!tile) return;
// Base off-mesh connection start points.
for (int i = 0; i < tile->header->offMeshConCount; ++i)
{
dtOffMeshConnection* con = &tile->offMeshCons[i];
dtPoly* poly = &tile->polys[con->poly];
const float ext[3] = { con->rad, con->height, con->rad };
// Find polygon to connect to.
const float* p = &con->pos[0]; // First vertex
float nearestPt[3];
dtPolyRef ref = con->getSnapToCheapestArea() ?
findCheapestNearPolyInTile(tile, p, ext, nearestPt) :
findNearestPolyInTile(tile, p, ext, nearestPt, true);
if (!ref) continue;
// findNearestPoly may return too optimistic results, further check to make sure.
if (dtSqr(nearestPt[0]-p[0])+dtSqr(nearestPt[2]-p[2]) > dtSqr(con->rad))
continue;
// Make sure the location is on current mesh.
float* v = &tile->verts[poly->verts[0]*3];
dtVcopy(v, nearestPt);
unsigned char sideFwd = DT_CONNECTION_INTERNAL | DT_LINK_FLAG_OFFMESH_CON | (con->getBiDirectional() ? DT_LINK_FLAG_OFFMESH_CON_BIDIR : 0);
unsigned char sideBck = sideFwd | DT_LINK_FLAG_OFFMESH_CON_BACKTRACKER;
// Link off-mesh connection to target poly.
linkOffMeshHelper(tile, con->poly, tile, decodePolyIdPoly(ref), sideBck, 0);
// Start end-point is always connect back to off-mesh connection.
linkOffMeshHelper(tile, decodePolyIdPoly(ref), tile, con->poly, sideFwd, 0xff);
}
}
void dtNavMesh::connectClusterLink(dtMeshTile* tile0, unsigned int clusterIdx0, dtMeshTile* tile1, unsigned int clusterIdx1, unsigned char flags, bool bCheckExisting)
{
if (tile0 == tile1 && clusterIdx0 == clusterIdx1)
return;
dtCluster& cluster0 = tile0->clusters[clusterIdx0];
dtClusterRef cluster1Ref = getClusterRefBase(tile1) | (dtClusterRef)clusterIdx1;
dtClusterLink* link = 0;
// check if already connected
if (bCheckExisting)
{
unsigned int i = cluster0.firstLink;
while (i != DT_NULL_LINK)
{
dtClusterLink& testLink = getClusterLink(tile0, i);
if (testLink.ref == cluster1Ref)
{
link = &testLink;
break;
}
i = testLink.next;
}
}
if (!link)
{
// add new link
unsigned int linkIdx = allocLink(tile0, CREATE_LINK_DYNAMIC_CLUSTER);
dtClusterLink& testLink = getClusterLink(tile0, linkIdx);
testLink.ref = cluster1Ref;
testLink.next = cluster0.firstLink;
cluster0.firstLink = linkIdx;
link = &testLink;
}
// assign cost and side properties
link->flags = link->flags | flags;
}
void dtNavMesh::unconnectClusterLinks(dtMeshTile* tile0, dtMeshTile* tile1)
{
unsigned int tile1Num = decodeClusterIdTile(getTileRef(tile1));
unsigned int nclusters = (unsigned int)tile0->header->clusterCount;
for (unsigned int i = 0; i < nclusters; i++)
{
dtCluster& cluster = tile0->clusters[i];
unsigned int pj = DT_NULL_LINK;
unsigned int j = cluster.firstLink;
while (j != DT_NULL_LINK)
{
dtClusterLink& link = getClusterLink(tile0, j);
unsigned int linkTileNum = decodeClusterIdTile(link.ref);
if (linkTileNum == tile1Num)
{
unsigned int nj = link.next;
if (pj == DT_NULL_LINK)
{
cluster.firstLink = nj;
}
else
{
dtClusterLink& prevLink = getClusterLink(tile0, pj);
prevLink.next = nj;
}
freeLink(tile0, j);
j = nj;
}
else
{
pj = j;
j = link.next;
}
}
}
}
void dtNavMesh::closestPointOnPolyInTile(const dtMeshTile* tile, unsigned int ip,
const float* pos, float* closest) const
{
const dtPoly* poly = &tile->polys[ip];
// Off-mesh connections don't have detail polygons.
if (poly->getType() == DT_POLYTYPE_OFFMESH_POINT)
{
const float* v0 = &tile->verts[poly->verts[0]*3];
const float* v1 = &tile->verts[poly->verts[1]*3];
const float d0 = dtVdist(pos, v0);
const float d1 = dtVdist(pos, v1);
const float u = d0 / (d0+d1);
dtVlerp(closest, v0, v1, u);
return;
}
// Clamp point to be inside the polygon.
float verts[DT_VERTS_PER_POLYGON*3];
float edged[DT_VERTS_PER_POLYGON];
float edget[DT_VERTS_PER_POLYGON];
const int nv = poly->vertCount;
for (int i = 0; i < nv; ++i)
dtVcopy(&verts[i*3], &tile->verts[poly->verts[i]*3]);
dtVcopy(closest, pos);
if (!dtDistancePtPolyEdgesSqr(pos, verts, nv, edged, edget))
{
// Point is outside the polygon, dtClamp to nearest edge.
float dmin = FLT_MAX;
int imin = -1;
for (int i = 0; i < nv; ++i)
{
if (edged[i] < dmin)
{
dmin = edged[i];
imin = i;
}
}
const float* va = &verts[imin*3];
const float* vb = &verts[((imin+1)%nv)*3];
dtVlerp(closest, va, vb, edget[imin]);
}
// Find height at the location.
if (poly->getType() == DT_POLYTYPE_GROUND)
{
const dtPolyDetail* pd = &tile->detailMeshes[ip];
for (int j = 0; j < pd->triCount; ++j)
{
const unsigned char* t = &tile->detailTris[(pd->triBase+j)*4];
const float* v[3];
for (int k = 0; k < 3; ++k)
{
if (t[k] < poly->vertCount)
v[k] = &tile->verts[poly->verts[t[k]]*3];
else
v[k] = &tile->detailVerts[(pd->vertBase+(t[k]-poly->vertCount))*3];
}
float h;
if (dtClosestHeightPointTriangle(pos, v[0], v[1], v[2], h))
{
closest[1] = h;
break;
}
}
}
else
{
float h;
if (dtClosestHeightPointTriangle(closest, &verts[0], &verts[6], &verts[3], h))
{
closest[1] = h;
}
else if (dtClosestHeightPointTriangle(closest, &verts[3], &verts[6], &verts[9], h))
{
closest[1] = h;
}
}
}
dtPolyRef dtNavMesh::findNearestPolyInTile(const dtMeshTile* tile,
const float* center, const float* extents,
float* nearestPt, bool bExcludeUnwalkable) const
{
float bmin[3], bmax[3];
dtVsub(bmin, center, extents);
dtVadd(bmax, center, extents);
// Get nearby polygons from proximity grid.
dtPolyRef polys[128];
int polyCount = queryPolygonsInTile(tile, bmin, bmax, polys, 128, bExcludeUnwalkable);
// Find nearest polygon amongst the nearby polygons.
dtPolyRef nearest = 0;
float nearestDistanceSqr = FLT_MAX;
for (int i = 0; i < polyCount; ++i)
{
dtPolyRef ref = polys[i];
float closestPtPoly[3];
closestPointOnPolyInTile(tile, decodePolyIdPoly(ref), center, closestPtPoly);
float d = dtVdistSqr(center, closestPtPoly);
if (d < nearestDistanceSqr)
{
if (nearestPt)
dtVcopy(nearestPt, closestPtPoly);
nearestDistanceSqr = d;
nearest = ref;
}
}
// Verify if the point is actually within requested height, caller is performing 2D check anyway (radius)
if (dtAbs(nearestPt[1]-center[1]) > extents[1])
{
nearest = 0;
}
return nearest;
}
dtPolyRef dtNavMesh::findCheapestNearPolyInTile(const dtMeshTile* tile, const float* center,
const float* extents, float* nearestPt) const
{
float bmin[3], bmax[3];
dtVsub(bmin, center, extents);
dtVadd(bmax, center, extents);
// Get nearby polygons from proximity grid.
dtPolyRef polys[128];
const bool bExcludeUnwalkable = true;
int polyCount = queryPolygonsInTile(tile, bmin, bmax, polys, 128, bExcludeUnwalkable);
// Find nearest polygon amongst the nearby polygons.
dtPolyRef nearest = 0;
float nearestDistanceSqr = FLT_MAX;
unsigned char cheapestAreaCostOrder = 0xff;
for (int i = 0; i < polyCount; ++i)
{
dtPolyRef ref = polys[i];
const int polyIdx = decodePolyIdPoly(ref);
dtPoly* poly = &tile->polys[polyIdx];
const unsigned char polyAreaCostOrder = m_areaCostOrder[poly->getArea()];
if (polyAreaCostOrder < cheapestAreaCostOrder)
{
cheapestAreaCostOrder = polyAreaCostOrder;
nearestDistanceSqr = FLT_MAX;
nearest = 0;
}
if (polyAreaCostOrder == cheapestAreaCostOrder)
{
float closestPtPoly[3];
closestPointOnPolyInTile(tile, polyIdx, center, closestPtPoly);
float d = dtVdistSqr(center, closestPtPoly);
if (d < nearestDistanceSqr)
{
if (nearestPt)
dtVcopy(nearestPt, closestPtPoly);
nearestDistanceSqr = d;
nearest = ref;
}
}
}
// Verify if the point is actually within requested height, caller is performing 2D check anyway (radius)
if (dtAbs(nearestPt[1] - center[1]) > extents[1])
{
nearest = 0;
}
return nearest;
}
int dtNavMesh::queryPolygonsInTile(const dtMeshTile* tile, const float* qmin, const float* qmax,
dtPolyRef* polys, const int maxPolys, bool bExcludeUnwalkable) const
{
if (tile->bvTree)
{
const dtBVNode* node = &tile->bvTree[0];
const dtBVNode* end = &tile->bvTree[tile->header->bvNodeCount];
const float* tbmin = tile->header->bmin;
const float* tbmax = tile->header->bmax;
const float qfac = tile->header->bvQuantFactor;
// Calculate quantized box
unsigned short bmin[3], bmax[3];
// dtClamp query box to world box.
float minx = dtClamp(qmin[0], tbmin[0], tbmax[0]) - tbmin[0];
float miny = dtClamp(qmin[1], tbmin[1], tbmax[1]) - tbmin[1];
float minz = dtClamp(qmin[2], tbmin[2], tbmax[2]) - tbmin[2];
float maxx = dtClamp(qmax[0], tbmin[0], tbmax[0]) - tbmin[0];
float maxy = dtClamp(qmax[1], tbmin[1], tbmax[1]) - tbmin[1];
float maxz = dtClamp(qmax[2], tbmin[2], tbmax[2]) - tbmin[2];
// Quantize
bmin[0] = (unsigned short)(qfac * minx) & 0xfffe;
bmin[1] = (unsigned short)(qfac * miny) & 0xfffe;
bmin[2] = (unsigned short)(qfac * minz) & 0xfffe;
bmax[0] = (unsigned short)(qfac * maxx + 1) | 1;
bmax[1] = (unsigned short)(qfac * maxy + 1) | 1;
bmax[2] = (unsigned short)(qfac * maxz + 1) | 1;
// Traverse tree
dtPolyRef base = getPolyRefBase(tile);
int n = 0;
while (node < end)
{
const bool overlap = dtOverlapQuantBounds(bmin, bmax, node->bmin, node->bmax);
const bool isLeafNode = node->i >= 0;
if (isLeafNode && overlap)
{
if (n < maxPolys)
{
if (!bExcludeUnwalkable || tile->polys[node->i].flags)
{
polys[n++] = base | (dtPolyRef)node->i;
}
}
}
if (overlap || isLeafNode)
node++;
else
{
const int escapeIndex = -node->i;
node += escapeIndex;
}
}
return n;
}
else
{
float bmin[3], bmax[3];
int n = 0;
dtPolyRef base = getPolyRefBase(tile);
for (int i = 0; i < tile->header->polyCount; ++i)
{
dtPoly* p = &tile->polys[i];
// Do not return off-mesh connection polygons.
if (p->getType() != DT_POLYTYPE_GROUND)
continue;
if (p->flags == 0 && bExcludeUnwalkable)
continue;
// Calc polygon bounds.
const float* v = &tile->verts[p->verts[0]*3];
dtVcopy(bmin, v);
dtVcopy(bmax, v);
for (int j = 1; j < p->vertCount; ++j)
{
v = &tile->verts[p->verts[j]*3];
dtVmin(bmin, v);
dtVmax(bmax, v);
}
if (dtOverlapBounds(qmin,qmax, bmin,bmax))
{
if (n < maxPolys)
polys[n++] = base | (dtPolyRef)i;
}
}
return n;
}
}
/// @par
///
/// The add operation will fail if the data is in the wrong format, the allocated tile
/// space is full, or there is a tile already at the specified reference.
///
/// The lastRef parameter is used to restore a tile with the same tile
/// reference it had previously used. In this case the #dtPolyRef's for the
/// tile will be restored to the same values they were before the tile was
/// removed.
///
/// @see dtCreateNavMeshData, #removeTile
dtStatus dtNavMesh::addTile(unsigned char* data, int dataSize, int flags,
dtTileRef lastRef, dtTileRef* result)
{
// Make sure the data is in right format.
dtMeshHeader* header = (dtMeshHeader*)data;
if (header->magic != DT_NAVMESH_MAGIC)
return DT_FAILURE | DT_WRONG_MAGIC;
if (header->version != DT_NAVMESH_VERSION)
return DT_FAILURE | DT_WRONG_VERSION;
// Make sure the location is free.
if (getTileAt(header->x, header->y, header->layer))
return DT_FAILURE;
// Allocate a tile.
dtMeshTile* tile = 0;
if (!lastRef)
{
if (m_nextFree)
{
tile = m_nextFree;
m_nextFree = tile->next;
tile->next = 0;
}
}
else
{
// Try to relocate the tile to specific index with same salt.
int tileIndex = (int)decodePolyIdTile((dtPolyRef)lastRef);
if (tileIndex >= m_maxTiles)
return DT_FAILURE | DT_OUT_OF_MEMORY;
// Try to find the specific tile id from the free list.
dtMeshTile* target = &m_tiles[tileIndex];
dtMeshTile* prev = 0;
tile = m_nextFree;
while (tile && tile != target)
{
prev = tile;
tile = tile->next;
}
// Could not find the correct location.
if (tile != target)
return DT_FAILURE | DT_OUT_OF_MEMORY;
// Remove from freelist
if (!prev)
m_nextFree = tile->next;
else
prev->next = tile->next;
// Restore salt.
tile->salt = decodePolyIdSalt((dtPolyRef)lastRef);
}
// Make sure we could allocate a tile.
if (!tile)
return DT_FAILURE | DT_OUT_OF_MEMORY;
// Insert tile into the position lut.
int h = computeTileHash(header->x, header->y, m_tileLutMask);
tile->next = m_posLookup[h];
m_posLookup[h] = tile;
// Patch header pointers.
const int headerSize = dtAlign4(sizeof(dtMeshHeader));
const int vertsSize = dtAlign4(sizeof(float)*3*header->vertCount);
const int polysSize = dtAlign4(sizeof(dtPoly)*header->polyCount);
const int linksSize = dtAlign4(sizeof(dtLink)*(header->maxLinkCount));
const int detailMeshesSize = dtAlign4(sizeof(dtPolyDetail)*header->detailMeshCount);
const int detailVertsSize = dtAlign4(sizeof(float)*3*header->detailVertCount);
const int detailTrisSize = dtAlign4(sizeof(unsigned char)*4*header->detailTriCount);
const int bvtreeSize = dtAlign4(sizeof(dtBVNode)*header->bvNodeCount);
const int offMeshLinksSize = dtAlign4(sizeof(dtOffMeshConnection)*header->offMeshConCount);
const int offMeshSegsSize = dtAlign4(sizeof(dtOffMeshSegmentConnection)*header->offMeshSegConCount);
const int clustersSize = dtAlign4(sizeof(dtCluster)*header->clusterCount);
const int clusterPolysSize = dtAlign4(sizeof(unsigned short)*header->offMeshBase);
unsigned char* d = data + headerSize;
tile->verts = (float*)d; d += vertsSize;
tile->polys = (dtPoly*)d; d += polysSize;
tile->links = (dtLink*)d; d += linksSize;
tile->detailMeshes = (dtPolyDetail*)d; d += detailMeshesSize;
tile->detailVerts = (float*)d; d += detailVertsSize;
tile->detailTris = (unsigned char*)d; d += detailTrisSize;
tile->bvTree = (dtBVNode*)d; d += bvtreeSize;
tile->offMeshCons = (dtOffMeshConnection*)d; d += offMeshLinksSize;
tile->offMeshSeg = (dtOffMeshSegmentConnection*)d; d += offMeshSegsSize;
tile->clusters = (dtCluster*)d; d += clustersSize;
tile->polyClusters = (unsigned short*)d; d += clusterPolysSize;
// If there are no items in the bvtree, reset the tree pointer.
if (!bvtreeSize)
tile->bvTree = 0;
const bool bHasClusters = header->clusterCount > 0;
if (bHasClusters)
{
for (int i = 0; i < header->clusterCount; i++)
{
tile->clusters[i].numLinks = 0;
tile->clusters[i].firstLink = DT_NULL_LINK;
}
}
else
{
tile->polyClusters = 0;
}
// Build links freelist
tile->linksFreeList = 0;
tile->links[header->maxLinkCount-1].next = DT_NULL_LINK;
for (int i = 0; i < header->maxLinkCount-1; ++i)
tile->links[i].next = i+1;
// Initialize dynamic links array
tile->dynamicFreeListO = DT_NULL_LINK;
tile->dynamicLinksO.resize(0);
tile->dynamicFreeListC = DT_NULL_LINK;
tile->dynamicLinksC.resize(0);
// Init tile.
tile->header = header;
tile->data = data;
tile->dataSize = dataSize;
tile->flags = flags;
connectIntLinks(tile);
baseOffMeshLinks(tile);
dtOffMeshSegmentData* segList = initSegmentIntersection(tile);
// Create connections with neighbour tiles.
ReadTilesHelper TileArray;
int nneis = getTileCountAt(header->x, header->y);
dtMeshTile** neis = TileArray.PrepareArray(nneis);
// Connect with layers in current tile.
getTilesAt(header->x, header->y, neis, nneis);
for (int j = 0; j < nneis; ++j)
{
if (neis[j] != tile)
{
connectExtLinks(tile, neis[j], -1, bHasClusters);
connectExtLinks(neis[j], tile, -1, bHasClusters);
appendSegmentIntersection(segList, tile, neis[j]);
}
connectExtOffMeshLinks(tile, neis[j], -1, bHasClusters);
connectExtOffMeshLinks(neis[j], tile, -1, bHasClusters);
}
// Connect with neighbour tiles.
for (int i = 0; i < 8; ++i)
{
nneis = getNeighbourTilesCountAt(header->x, header->y, i);
neis = TileArray.PrepareArray(nneis);
getNeighbourTilesAt(header->x, header->y, i, neis, nneis);
for (int j = 0; j < nneis; ++j)
{
connectExtLinks(tile, neis[j], i, bHasClusters);
connectExtLinks(neis[j], tile, dtOppositeTile(i), bHasClusters);
appendSegmentIntersection(segList, tile, neis[j]);
connectExtOffMeshLinks(tile, neis[j], i, bHasClusters);
connectExtOffMeshLinks(neis[j], tile, dtOppositeTile(i), bHasClusters);
}
}
createSegmentLinks(this, segList, tile);
dtFree(segList);
if (result)
*result = getTileRef(tile);
return DT_SUCCESS;
}
const dtMeshTile* dtNavMesh::getTileAt(const int x, const int y, const int layer) const
{
// Find tile based on hash.
int h = computeTileHash(x,y,m_tileLutMask);
dtMeshTile* tile = m_posLookup[h];
while (tile)
{
if (tile->header &&
tile->header->x == x &&
tile->header->y == y &&
tile->header->layer == layer)
{
return tile;
}
tile = tile->next;
}
return 0;
}
int dtNavMesh::getNeighbourTilesAt(const int x, const int y, const int side, dtMeshTile** tiles, const int maxTiles) const
{
int nx = x, ny = y;
switch (side)
{
case 0: nx++; break;
case 1: nx++; ny++; break;
case 2: ny++; break;
case 3: nx--; ny++; break;
case 4: nx--; break;
case 5: nx--; ny--; break;
case 6: ny--; break;
case 7: nx++; ny--; break;
};
return getTilesAt(nx, ny, (const dtMeshTile**)tiles, maxTiles);
}
// @UE4 BEGIN
int dtNavMesh::getNeighbourTilesCountAt(const int x, const int y, const int side) const
{
int nx = x, ny = y;
switch (side)
{
case 0: nx++; break;
case 1: nx++; ny++; break;
case 2: ny++; break;
case 3: nx--; ny++; break;
case 4: nx--; break;
case 5: nx--; ny--; break;
case 6: ny--; break;
case 7: nx++; ny--; break;
};
return getTileCountAt(nx, ny);
}
int dtNavMesh::getTileCountAt(const int x, const int y) const
{
int n = 0;
// Find tile based on hash.
int h = computeTileHash(x,y,m_tileLutMask);
dtMeshTile* tile = m_posLookup[h];
while (tile)
{
if (tile->header &&
tile->header->x == x &&
tile->header->y == y)
{
n++;
}
tile = tile->next;
}
return n;
}
// @UE4 END
int dtNavMesh::getTilesAt(const int x, const int y, dtMeshTile** tiles, const int maxTiles) const
{
int n = 0;
// Find tile based on hash.
int h = computeTileHash(x,y,m_tileLutMask);
dtMeshTile* tile = m_posLookup[h];
while (tile)
{
if (tile->header &&
tile->header->x == x &&
tile->header->y == y)
{
if (n < maxTiles)
tiles[n++] = tile;
}
tile = tile->next;
}
return n;
}
/// @par
///
/// This function will not fail if the tiles array is too small to hold the
/// entire result set. It will simply fill the array to capacity.
int dtNavMesh::getTilesAt(const int x, const int y, dtMeshTile const** tiles, const int maxTiles) const
{
int n = 0;
// Find tile based on hash.
int h = computeTileHash(x,y,m_tileLutMask);
dtMeshTile* tile = m_posLookup[h];
while (tile)
{
if (tile->header &&
tile->header->x == x &&
tile->header->y == y)
{
if (n < maxTiles)
tiles[n++] = tile;
}
tile = tile->next;
}
return n;
}
dtTileRef dtNavMesh::getTileRefAt(const int x, const int y, const int layer) const
{
// Find tile based on hash.
int h = computeTileHash(x,y,m_tileLutMask);
dtMeshTile* tile = m_posLookup[h];
while (tile)
{
if (tile->header &&
tile->header->x == x &&
tile->header->y == y &&
tile->header->layer == layer)
{
return getTileRef(tile);
}
tile = tile->next;
}
return 0;
}
const dtMeshTile* dtNavMesh::getTileByRef(dtTileRef ref) const
{
if (!ref)
return 0;
unsigned int tileIndex = decodePolyIdTile((dtPolyRef)ref);
unsigned int tileSalt = decodePolyIdSalt((dtPolyRef)ref);
if ((int)tileIndex >= m_maxTiles)
return 0;
const dtMeshTile* tile = &m_tiles[tileIndex];
if (tile->salt != tileSalt)
return 0;
return tile;
}
int dtNavMesh::getMaxTiles() const
{
return m_maxTiles;
}
//xsj-zhugongbo BEGIN
dtPolyRef dtNavMesh::getPolyRef(const dtMeshTile* tile, unsigned int ip) const
{
const unsigned int it = (unsigned int)(tile - m_tiles);
return encodePolyId(tile->salt, it, ip);
}
bool dtNavMesh::isPointInPoly(const dtMeshTile* tile, unsigned int ip, const float* point) const
{
const dtPoly* poly = &(tile->polys[ip]);
if (poly->getType() == DT_POLYTYPE_OFFMESH_POINT)
return false;
float verts[DT_VERTS_PER_POLYGON * 3];
const int nv = poly->vertCount;
for (int i = 0; i < nv; ++i)
{
dtVcopy(&verts[i * 3], &tile->verts[poly->verts[i] * 3]);
}
return dtPointInPolygon(point, verts, nv);
}
//xsj-zhugongbo END
dtMeshTile* dtNavMesh::getTile(int i)
{
return &m_tiles[i];
}
const dtMeshTile* dtNavMesh::getTile(int i) const
{
return &m_tiles[i];
}
void dtNavMesh::calcTileLoc(const float* pos, int* tx, int* ty) const
{
*tx = (int)floorf((pos[0]-m_orig[0]) / m_tileWidth);
*ty = (int)floorf((pos[2]-m_orig[2]) / m_tileHeight);
}
dtStatus dtNavMesh::getTileAndPolyByRef(const dtPolyRef ref, const dtMeshTile** tile, const dtPoly** poly) const
{
if (!ref) return DT_FAILURE;
unsigned int salt, it, ip;
decodePolyId(ref, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return DT_FAILURE | DT_INVALID_PARAM;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return DT_FAILURE | DT_INVALID_PARAM;
if (ip >= (unsigned int)m_tiles[it].header->polyCount) return DT_FAILURE | DT_INVALID_PARAM;
*tile = &m_tiles[it];
*poly = &m_tiles[it].polys[ip];
return DT_SUCCESS;
}
/// @par
///
/// @warning Only use this function if it is known that the provided polygon
/// reference is valid. This function is faster than #getTileAndPolyByRef, but
/// it does not validate the reference.
void dtNavMesh::getTileAndPolyByRefUnsafe(const dtPolyRef ref, const dtMeshTile** tile, const dtPoly** poly) const
{
unsigned int salt, it, ip;
decodePolyId(ref, salt, it, ip);
*tile = &m_tiles[it];
*poly = &m_tiles[it].polys[ip];
}
bool dtNavMesh::isValidPolyRef(dtPolyRef ref) const
{
if (!ref) return false;
unsigned int salt, it, ip;
decodePolyId(ref, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return false;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return false;
if (ip >= (unsigned int)m_tiles[it].header->polyCount) return false;
return true;
}
/// @par
///
/// This function returns the data for the tile so that, if desired,
/// it can be added back to the navigation mesh at a later point.
///
/// @see #addTile
dtStatus dtNavMesh::removeTile(dtTileRef ref, unsigned char** data, int* dataSize)
{
if (!ref)
return DT_FAILURE | DT_INVALID_PARAM;
unsigned int tileIndex = decodePolyIdTile((dtPolyRef)ref);
unsigned int tileSalt = decodePolyIdSalt((dtPolyRef)ref);
if ((int)tileIndex >= m_maxTiles)
return DT_FAILURE | DT_INVALID_PARAM;
dtMeshTile* tile = &m_tiles[tileIndex];
if (tile->salt != tileSalt)
return DT_FAILURE | DT_INVALID_PARAM;
// Remove tile from hash lookup.
int h = computeTileHash(tile->header->x,tile->header->y,m_tileLutMask);
dtMeshTile* prev = 0;
dtMeshTile* cur = m_posLookup[h];
while (cur)
{
if (cur == tile)
{
if (prev)
prev->next = cur->next;
else
m_posLookup[h] = cur->next;
break;
}
prev = cur;
cur = cur->next;
}
// Remove connections to neighbour tiles.
// Create connections with neighbour tiles.
ReadTilesHelper TileArray;
int nneis = getTileCountAt(tile->header->x, tile->header->y);
dtMeshTile** neis = TileArray.PrepareArray(nneis);
// Connect with layers in current tile.
getTilesAt(tile->header->x, tile->header->y, neis, nneis);
for (int j = 0; j < nneis; ++j)
{
if (neis[j] == tile) continue;
unconnectExtLinks(neis[j], tile);
}
// Connect with neighbour tiles.
for (int i = 0; i < 8; ++i)
{
nneis = getNeighbourTilesCountAt(tile->header->x, tile->header->y, i);
neis = TileArray.PrepareArray(nneis);
getNeighbourTilesAt(tile->header->x, tile->header->y, i, neis, nneis);
for (int j = 0; j < nneis; ++j)
unconnectExtLinks(neis[j], tile);
}
// Whether caller wants to own tile data
bool callerOwnsData = (data && dataSize);
// Reset tile.
if ((tile->flags & DT_TILE_FREE_DATA) && !callerOwnsData)
{
// Owns data
dtFree(tile->data);
tile->data = 0;
tile->dataSize = 0;
if (data) *data = 0;
if (dataSize) *dataSize = 0;
}
else
{
if (data) *data = tile->data;
if (dataSize) *dataSize = tile->dataSize;
}
tile->header = 0;
tile->flags = 0;
tile->linksFreeList = 0;
tile->polys = 0;
tile->verts = 0;
tile->links = 0;
tile->detailMeshes = 0;
tile->detailVerts = 0;
tile->detailTris = 0;
tile->bvTree = 0;
tile->offMeshCons = 0;
// Update salt, salt should never be zero.
tile->salt = (tile->salt+1) & ((1<<m_saltBits)-1);
if (tile->salt == 0)
tile->salt++;
// Add to free list.
tile->next = m_nextFree;
m_nextFree = tile;
return DT_SUCCESS;
}
dtTileRef dtNavMesh::getTileRef(const dtMeshTile* tile) const
{
if (!tile) return 0;
const unsigned int it = (unsigned int)(tile - m_tiles);
return (dtTileRef)encodePolyId(tile->salt, it, 0);
}
/// @par
///
/// Example use case:
/// @code
///
/// const dtPolyRef base = navmesh->getPolyRefBase(tile);
/// for (int i = 0; i < tile->header->polyCount; ++i)
/// {
/// const dtPoly* p = &tile->polys[i];
/// const dtPolyRef ref = base | (dtPolyRef)i;
///
/// // Use the reference to access the polygon data.
/// }
/// @endcode
dtPolyRef dtNavMesh::getPolyRefBase(const dtMeshTile* tile) const
{
if (!tile) return 0;
const unsigned int it = (unsigned int)(tile - m_tiles);
return encodePolyId(tile->salt, it, 0);
}
dtClusterRef dtNavMesh::getClusterRefBase(const dtMeshTile* tile) const
{
if (!tile) return 0;
const unsigned int it = (unsigned int)(tile - m_tiles);
return encodePolyId(tile->salt, it, 0);
}
struct dtTileState
{
int magic; // Magic number, used to identify the data.
int version; // Data version number.
dtTileRef ref; // Tile ref at the time of storing the data.
};
struct dtPolyState
{
unsigned short flags; // Flags (see dtPolyFlags).
unsigned char area; // Area ID of the polygon.
};
/// @see #storeTileState
int dtNavMesh::getTileStateSize(const dtMeshTile* tile) const
{
if (!tile) return 0;
const int headerSize = dtAlign4(sizeof(dtTileState));
const int polyStateSize = dtAlign4(sizeof(dtPolyState) * tile->header->polyCount);
return headerSize + polyStateSize;
}
/// @par
///
/// Tile state includes non-structural data such as polygon flags, area ids, etc.
/// @note The state data is only valid until the tile reference changes.
/// @see #getTileStateSize, #restoreTileState
dtStatus dtNavMesh::storeTileState(const dtMeshTile* tile, unsigned char* data, const int maxDataSize) const
{
// Make sure there is enough space to store the state.
const int sizeReq = getTileStateSize(tile);
if (maxDataSize < sizeReq)
return DT_FAILURE | DT_BUFFER_TOO_SMALL;
dtTileState* tileState = (dtTileState*)data; data += dtAlign4(sizeof(dtTileState));
dtPolyState* polyStates = (dtPolyState*)data; data += dtAlign4(sizeof(dtPolyState) * tile->header->polyCount);
// Store tile state.
tileState->magic = DT_NAVMESH_STATE_MAGIC;
tileState->version = DT_NAVMESH_STATE_VERSION;
tileState->ref = getTileRef(tile);
// Store per poly state.
for (int i = 0; i < tile->header->polyCount; ++i)
{
const dtPoly* p = &tile->polys[i];
dtPolyState* s = &polyStates[i];
s->flags = p->flags;
s->area = p->getArea();
}
return DT_SUCCESS;
}
/// @par
///
/// Tile state includes non-structural data such as polygon flags, area ids, etc.
/// @note This function does not impact the tile's #dtTileRef and #dtPolyRef's.
/// @see #storeTileState
dtStatus dtNavMesh::restoreTileState(dtMeshTile* tile, const unsigned char* data, const int maxDataSize)
{
// Make sure there is enough space to store the state.
const int sizeReq = getTileStateSize(tile);
if (maxDataSize < sizeReq)
return DT_FAILURE | DT_INVALID_PARAM;
const dtTileState* tileState = (const dtTileState*)data; data += dtAlign4(sizeof(dtTileState));
const dtPolyState* polyStates = (const dtPolyState*)data; data += dtAlign4(sizeof(dtPolyState) * tile->header->polyCount);
// Check that the restore is possible.
if (tileState->magic != DT_NAVMESH_STATE_MAGIC)
return DT_FAILURE | DT_WRONG_MAGIC;
if (tileState->version != DT_NAVMESH_STATE_VERSION)
return DT_FAILURE | DT_WRONG_VERSION;
if (tileState->ref != getTileRef(tile))
return DT_FAILURE | DT_INVALID_PARAM;
// Restore per poly state.
for (int i = 0; i < tile->header->polyCount; ++i)
{
dtPoly* p = &tile->polys[i];
const dtPolyState* s = &polyStates[i];
p->flags = s->flags;
p->setArea(s->area);
}
return DT_SUCCESS;
}
/// @par
///
/// Off-mesh connections are stored in the navigation mesh as special 2-vertex
/// polygons with a single edge. At least one of the vertices is expected to be
/// inside a normal polygon. So an off-mesh connection is "entered" from a
/// normal polygon at one of its endpoints. This is the polygon identified by
/// the prevRef parameter.
dtStatus dtNavMesh::getOffMeshConnectionPolyEndPoints(dtPolyRef prevRef, dtPolyRef polyRef, const float* currentPos, float* startPos, float* endPos) const
{
unsigned int salt, it, ip;
if (!polyRef)
return DT_FAILURE;
// Get current polygon
decodePolyId(polyRef, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return DT_FAILURE | DT_INVALID_PARAM;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return DT_FAILURE | DT_INVALID_PARAM;
const dtMeshTile* tile = &m_tiles[it];
if (ip >= (unsigned int)tile->header->polyCount) return DT_FAILURE | DT_INVALID_PARAM;
const dtPoly* poly = &tile->polys[ip];
if (poly->getType() == DT_POLYTYPE_GROUND)
return DT_FAILURE;
// Figure out which way to hand out the vertices.
int idx0 = 0, idx1 = 1;
// Find link that points to first vertex.
unsigned int i = poly->firstLink;
while (i != DT_NULL_LINK)
{
const dtLink& link = getLink(tile, i);
if (link.edge == 0)
{
if (link.ref != prevRef)
{
idx0 = 1;
idx1 = 0;
}
break;
}
i = link.next;
}
if (poly->getType() == DT_POLYTYPE_OFFMESH_SEGMENT)
{
idx0 = (idx0 == 0) ? 0 : 2;
idx1 = (idx1 == 1) ? 1 : 3;
const int idx2 = (idx0 == 0) ? 2 : 0;
const int idx3 = (idx1 == 1) ? 3 : 1;
float start0[3], start1[3];
dtVcopy(start0, &tile->verts[poly->verts[idx0]*3]);
dtVcopy(start1, &tile->verts[poly->verts[idx1]*3]);
float t = 0;
dtDistancePtSegSqr2D(startPos, start0, start1, t);
dtVlerp(startPos, start0, start1, t);
dtVlerp(endPos, &tile->verts[poly->verts[idx2]*3], &tile->verts[poly->verts[idx3]*3], t);
}
else
{
dtVcopy(startPos, &tile->verts[poly->verts[idx0]*3]);
dtVcopy(endPos, &tile->verts[poly->verts[idx1]*3]);
}
return DT_SUCCESS;
}
const dtOffMeshConnection* dtNavMesh::getOffMeshConnectionByRef(dtPolyRef ref) const
{
unsigned int salt, it, ip;
if (!ref)
return 0;
// Get current polygon
decodePolyId(ref, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return 0;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return 0;
const dtMeshTile* tile = &m_tiles[it];
if (ip >= (unsigned int)tile->header->polyCount) return 0;
const dtPoly* poly = &tile->polys[ip];
// Make sure that the current poly is indeed off-mesh link.
if (poly->getType() != DT_POLYTYPE_OFFMESH_POINT)
return 0;
const unsigned int idx = ip - tile->header->offMeshBase;
dtAssert(idx < (unsigned int)tile->header->offMeshConCount);
return &tile->offMeshCons[idx];
}
const dtOffMeshSegmentConnection* dtNavMesh::getOffMeshSegmentConnectionByRef(dtPolyRef ref) const
{
unsigned int salt, it, ip;
if (!ref)
return 0;
// Get current polygon
decodePolyId(ref, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return 0;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return 0;
const dtMeshTile* tile = &m_tiles[it];
if (ip >= (unsigned int)tile->header->polyCount) return 0;
const dtPoly* poly = &tile->polys[ip];
// Make sure that the current poly is indeed off-mesh link.
if (poly->getType() != DT_POLYTYPE_OFFMESH_SEGMENT)
return 0;
const unsigned int idx = (ip - tile->header->offMeshSegPolyBase) / DT_MAX_OFFMESH_SEGMENT_PARTS;
dtAssert(idx < (unsigned int)tile->header->offMeshSegConCount);
return &tile->offMeshSeg[idx];
}
void dtNavMesh::updateOffMeshConnectionByUserId(unsigned int userId, unsigned char newArea, unsigned short newFlags)
{
for (int it = 0; it < m_maxTiles; it++)
{
dtMeshTile* tile = &m_tiles[it];
if (tile == 0 || tile->header == 0)
continue;
for (int ic = 0; ic < tile->header->offMeshConCount; ic++)
{
dtOffMeshConnection& con = tile->offMeshCons[ic];
if (con.userId == userId)
{
dtPoly* poly = &tile->polys[con.poly];
poly->setArea(newArea);
poly->flags = newFlags;
}
}
}
}
void dtNavMesh::updateOffMeshSegmentConnectionByUserId(unsigned int userId, unsigned char newArea, unsigned short newFlags)
{
for (int it = 0; it < m_maxTiles; it++)
{
dtMeshTile* tile = &m_tiles[it];
if (tile == 0 || tile->header == 0)
continue;
for (int ic = 0; ic < tile->header->offMeshSegConCount; ic++)
{
dtOffMeshSegmentConnection& con = tile->offMeshSeg[ic];
if (con.userId == userId)
{
for (int ip = 0; ip < con.npolys; ip++)
{
dtPoly* poly = &tile->polys[tile->header->offMeshSegPolyBase + con.firstPoly + ip];
poly->setArea(newArea);
poly->flags = newFlags;
}
}
}
}
}
dtStatus dtNavMesh::setPolyFlags(dtPolyRef ref, unsigned short flags)
{
if (!ref) return DT_FAILURE;
unsigned int salt, it, ip;
decodePolyId(ref, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return DT_FAILURE | DT_INVALID_PARAM;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return DT_FAILURE | DT_INVALID_PARAM;
dtMeshTile* tile = &m_tiles[it];
if (ip >= (unsigned int)tile->header->polyCount) return DT_FAILURE | DT_INVALID_PARAM;
dtPoly* poly = &tile->polys[ip];
// Change flags.
poly->flags = flags;
return DT_SUCCESS;
}
dtStatus dtNavMesh::getPolyFlags(dtPolyRef ref, unsigned short* resultFlags) const
{
if (!ref) return DT_FAILURE;
unsigned int salt, it, ip;
decodePolyId(ref, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return DT_FAILURE | DT_INVALID_PARAM;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return DT_FAILURE | DT_INVALID_PARAM;
const dtMeshTile* tile = &m_tiles[it];
if (ip >= (unsigned int)tile->header->polyCount) return DT_FAILURE | DT_INVALID_PARAM;
const dtPoly* poly = &tile->polys[ip];
*resultFlags = poly->flags;
return DT_SUCCESS;
}
dtStatus dtNavMesh::setPolyArea(dtPolyRef ref, unsigned char area)
{
if (!ref) return DT_FAILURE;
unsigned int salt, it, ip;
decodePolyId(ref, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return DT_FAILURE | DT_INVALID_PARAM;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return DT_FAILURE | DT_INVALID_PARAM;
dtMeshTile* tile = &m_tiles[it];
if (ip >= (unsigned int)tile->header->polyCount) return DT_FAILURE | DT_INVALID_PARAM;
dtPoly* poly = &tile->polys[ip];
poly->setArea(area);
return DT_SUCCESS;
}
dtStatus dtNavMesh::getPolyArea(dtPolyRef ref, unsigned char* resultArea) const
{
if (!ref) return DT_FAILURE;
unsigned int salt, it, ip;
decodePolyId(ref, salt, it, ip);
if (it >= (unsigned int)m_maxTiles) return DT_FAILURE | DT_INVALID_PARAM;
if (m_tiles[it].salt != salt || m_tiles[it].header == 0) return DT_FAILURE | DT_INVALID_PARAM;
const dtMeshTile* tile = &m_tiles[it];
if (ip >= (unsigned int)tile->header->polyCount) return DT_FAILURE | DT_INVALID_PARAM;
const dtPoly* poly = &tile->polys[ip];
*resultArea = poly->getArea();
return DT_SUCCESS;
}
//@UE4 BEGIN
void dtNavMesh::applyWorldOffset(const float* offset)
{
//Shift navmesh origin
dtVadd(m_params.orig, m_params.orig, offset);
dtVadd(m_orig, m_orig, offset);
// Iterate over all tiles and apply provided offset
for (int i = 0; i < m_maxTiles; ++i)
{
dtMeshTile& tile = m_tiles[i];
if (tile.header != NULL)
{
// Shift tile bounds
dtVadd(tile.header->bmin, tile.header->bmin, offset);
dtVadd(tile.header->bmax, tile.header->bmax, offset);
//Shift tile vertices
for (int j = 0; j < tile.header->vertCount; ++j)
{
dtVadd(&(tile.verts[j*3]), &(tile.verts[j*3]), offset);
}
//Shift tile details vertices
for (int j = 0; j < tile.header->detailVertCount; ++j)
{
dtVadd(&(tile.detailVerts[j*3]), &(tile.detailVerts[j*3]), offset);
}
//Shift off-mesh connections
for (int j = 0; j < tile.header->offMeshConCount; ++j)
{
dtVadd(&(tile.offMeshCons[j].pos[0]), &(tile.offMeshCons[j].pos[0]), offset);
dtVadd(&(tile.offMeshCons[j].pos[3]), &(tile.offMeshCons[j].pos[3]), offset);
}
// Shift clusters
for (int j = 0; j < tile.header->clusterCount; ++j)
{
dtVadd(&(tile.clusters[j].center[0]), &(tile.clusters[j].center[0]), offset);
}
}
}
}
void dtNavMesh::applyAreaCostOrder(unsigned char* costOrder)
{
memcpy(m_areaCostOrder, costOrder, sizeof(m_areaCostOrder));
}
//@UE4 END
| [
"zhugongbo@kingsoft.com"
] | zhugongbo@kingsoft.com |
b5641abfec92bbd8c1053124becaa61821023510 | ee14faa2e089cf107b5e71ebb80b68425df6ca1a | /addons/CaveKeeper/CaveKeeper.h | 83753ff20978b125ef930085314d256d781178d6 | [] | no_license | AntonChalakov/VRPGruppe1 | 62be2aba22818ccf35d68052451c4dc7d4fe38b2 | e32626ed0e7cc2ba93380e2a6d0dfb5e90c963ad | refs/heads/master | 2021-01-01T17:40:25.901172 | 2017-07-25T14:16:16 | 2017-07-25T14:16:16 | 98,129,331 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,708 | h | #ifndef CAVEKEEPER_H_INCLUDED
#define CAVEKEEPER_H_INCLUDED
#include <OpenSG/OSGVector.h>
#include <map>
#include <string>
#include <vector>
#include "CKOctree.h"
#include "core/utils/VRFunctionFwd.h"
#include "core/objects/VRObjectFwd.h"
OSG_BEGIN_NAMESPACE;
using namespace std;
// -------------- TODO --------
// check if element exists when adding to octree
// when changing the world, only change the minimum data, do not rebuild the full mesh!
// bumpmap
class BlockWorld {
public:
CKOctree* tree = 0;
VRObjectPtr getAnchor();
private:
VRObjectPtr anchor;
map<string, VRMaterialPtr> materials;
map<int, VRGeometryPtr> chunks;
VRUpdateCbPtr updatePtr;
// octree population algorithm
void createPlane(int w);
void createSphere(int r, Vec3i p0);
// mesh methods
VRMaterialPtr initMaterial(string texture);
VRGeometryPtr createChunk(vector<CKOctree::element*>& elements);
VRGeometryPtr initChunk();
void appendToVector(vector<CKOctree::element*>* elements, CKOctree::element* e);
// update methods
void updateShaderCamPos();
protected:
BlockWorld();
~BlockWorld();
void initWorld();
void redraw(int chunk_id = 0);
};
class CaveKeeper : public BlockWorld {
private:
void placeLight(Vec3f p);
public:
CaveKeeper();
~CaveKeeper();
static shared_ptr<CaveKeeper> create();
int intersect(VRDevicePtr dev);
int addBlock(Vec3i p);
void remBlock(int i);
void place(VRDevicePtr dev, string s, VRTransformPtr geo);
};
OSG_END_NAMESPACE
#endif // CAVEKEEPER_H_INCLUDED
| [
"anton.chalakov@yahoo.de"
] | anton.chalakov@yahoo.de |
bb38e75627b6f9524e89e30804042c0a1b5189ca | ec76c1297252070d72fd194baebca3146bafac59 | /damBreak_turbulence/damBreak/4.7/p | 601d0112e51cac51106e4a6a3a8306fe8e5ca440 | [] | no_license | Shivam-IITKGP/CFD_InterFoam_BottleFill | 413cdb5536cf71d95da882821fa36c7bd138e17e | be711e0f19a5331bb1094b8e54982c9ad101da5c | refs/heads/main | 2023-04-13T12:58:09.332312 | 2021-04-15T16:24:42 | 2021-04-15T16:24:42 | 358,315,309 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 77,368 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 8
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "4.7";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
9150
(
390.93
363.931
338.432
321.239
312.934
312.927
321.219
338.403
363.899
390.901
362.075
342.523
326.871
315.07
309.088
309.083
315.055
326.849
342.497
362.048
332.803
319.235
310.696
302.94
298.832
298.828
302.929
310.679
319.214
332.78
308.096
298.074
292.609
287.247
284.278
284.275
287.238
292.595
298.057
308.076
286.808
277.887
273.306
269.135
266.69
266.687
269.126
273.293
277.871
286.788
23.972
20.0593
45.1948
59.4411
66.0662
65.974
59.175
44.7946
19.4995
23.2095
194.071
169.994
164.63
163.427
163.553
163.503
163.283
164.409
169.707
193.784
298.506
267.226
251.334
241.473
236.828
236.8
241.392
251.213
267.084
298.377
379.09
336.988
309.216
291.889
283.401
283.384
291.841
309.148
336.914
379.029
429.885
377.151
338.548
316.519
306.386
306.375
316.488
338.506
377.107
429.854
-57.9519
-20.7109
-32.4682
-24.597
-28.6894
-29.8689
-25.1899
-34.4859
-25.0016
-66.2783
-50.5393
-33.3862
-52.2777
-45.5947
-49.3739
-50.2275
-45.7331
-55.5839
-36.5243
-56.4908
-93.9916
-63.2354
-94.7395
-87.8369
-84.8243
-85.096
-88.3065
-97.116
-65.6342
-97.9159
-273.204
-148.72
-131.691
-113.365
-97.3035
-97.4735
-114.146
-133.388
-149.977
-276.448
-418.918
-180.47
-84.2904
-54.2378
-38.5997
-38.7441
-54.7381
-85.0772
-181.372
-421.23
1772.41
1772.33
1772.25
1772.15
1772.06
1771.95
1771.84
1771.72
1771.6
1771.47
1752.94
1752.86
1752.77
1752.68
1752.58
1752.48
1752.36
1752.24
1752.12
1751.98
1733.45
1733.37
1733.29
1733.2
1733.1
1733
1732.88
1732.76
1732.63
1732.49
1713.96
1713.88
1713.8
1713.71
1713.62
1713.51
1713.4
1713.28
1713.15
1713.01
1694.44
1694.37
1694.29
1694.21
1694.11
1694.01
1693.9
1693.78
1693.65
1693.51
1674.91
1674.85
1674.77
1674.69
1674.6
1674.5
1674.4
1674.28
1674.16
1674.02
1655.38
1655.32
1655.25
1655.17
1655.09
1654.99
1654.89
1654.78
1654.66
1654.53
1635.84
1635.78
1635.72
1635.65
1635.57
1635.48
1635.39
1635.29
1635.17
1635.05
1616.29
1616.24
1616.18
1616.12
1616.05
1615.97
1615.89
1615.79
1615.69
1615.58
1596.74
1596.7
1596.65
1596.59
1596.53
1596.46
1596.39
1596.3
1596.21
1596.11
1577.19
1577.15
1577.11
1577.06
1577.01
1576.95
1576.89
1576.81
1576.73
1576.63
1557.63
1557.6
1557.57
1557.53
1557.48
1557.43
1557.37
1557.3
1557.23
1557.14
1538.07
1538.07
1538.01
1537.98
1537.93
1537.89
1537.83
1537.77
1537.69
1537.61
1518.53
1518.5
1518.45
1518.41
1518.36
1518.31
1518.25
1518.18
1518.11
1518.01
1498.96
1498.92
1498.87
1498.81
1498.76
1498.69
1498.62
1498.54
1498.44
1498.32
1479.38
1479.34
1479.25
1479.19
1479.11
1479.03
1478.93
1478.81
1478.68
1478.51
1459.81
1459.75
1459.62
1459.53
1459.43
1459.31
1459.17
1459.01
1458.83
1458.61
1440.24
1440.13
1440
1439.87
1439.72
1439.55
1439.35
1439.12
1438.88
1438.6
1420.7
1420.54
1420.38
1420.2
1420
1419.77
1419.47
1419.1
1418.75
1418.44
1401.21
1401.03
1400.84
1400.64
1400.4
1400.11
1399.75
1399.42
1401.22
1398.04
1381.83
1381.64
1381.44
1381.22
1380.97
1380.45
1381
1381.09
1380.08
1378.89
1362.54
1362.33
1362.09
1361.72
1361.97
1361.86
1361.68
1361.41
1360.33
1359.45
1343.42
1343.2
1343.46
1343.41
1343.28
1343.03
1342.71
1341.95
1340.89
1339.75
1324.71
1325.04
1325.32
1325.16
1324.88
1324.48
1323.9
1323.04
1321.52
1319.38
1306.21
1306.67
1307.58
1307.55
1306.72
1306.36
1305.73
1304.72
1303.14
1301.95
1287.65
1287.83
1289
1289.35
1288.29
1288.39
1288.33
1287.78
1287.2
1289.46
1269.43
1269.58
1269.76
1269.99
1270.2
1270.43
1270.45
1269.91
1272.19
1271.66
1251.22
1251.4
1251.63
1251.93
1252.28
1252.72
1253.06
1253.18
1257.49
1257.04
1232.9
1233.12
1233.4
1233.76
1234.2
1234.73
1235.35
1236.1
1238.02
1240.04
1214.39
1214.62
1214.91
1215.29
1215.74
1216.27
1216.88
1217.67
1218.8
1220.19
1195.67
1195.89
1196.17
1196.51
1196.89
1197.33
1197.8
1198.31
1198.83
1199.36
1176.73
1176.97
1177.24
1177.53
1177.86
1178.2
1178.56
1178.9
1179.23
1179.48
1157.66
1157.9
1158.16
1158.43
1158.7
1158.97
1159.22
1159.44
1159.64
1159.77
1138.53
1138.78
1139.03
1139.27
1139.49
1139.69
1139.86
1139.99
1140.07
1140.11
1119.4
1119.66
1119.9
1120.12
1120.31
1120.45
1120.54
1120.57
1120.54
1120.46
1100.33
1100.59
1100.82
1101.03
1101.2
1101.3
1101.3
1101.22
1101.15
1100.95
1081.34
1081.58
1081.82
1082.07
1082.35
1082.59
1082.6
1082.48
1082.42
1082.36
1062.5
1062.71
1062.92
1063.35
1063.97
1064.88
1064.93
1068.44
1069.89
1069.79
1044.19
1044.35
1045.84
1046.62
1047.34
1047.85
1047.76
1049.13
1048.88
1051.07
1026.61
1027.43
1028.3
1029.35
1029.95
1028.84
1029.59
1030.19
1030.37
1030.7
1008.46
1008.99
1008.92
1009.58
1010.3
1010.66
1011.11
1011.73
1012.3
1012.87
991.251
988.866
989.738
990.37
991.058
991.805
992.608
993.483
994.378
995.29
968.262
968.935
969.851
970.799
971.78
972.823
973.947
975.149
976.424
977.768
948.365
949.203
950.137
951.155
952.302
953.619
955.066
956.639
958.355
960.232
928.21
929.126
930.154
931.481
933.589
934.018
935.724
937.601
939.683
942
907.674
908.638
909.83
911.298
912.781
913.922
915.742
917.798
920.096
922.66
886.652
887.625
888.941
890.24
891.653
893.221
894.99
897.104
899.512
902.196
865.102
866.03
867.275
868.56
869.998
871.623
873.373
875.438
877.915
880.696
842.892
843.718
844.716
845.974
847.687
849.236
850.591
852.686
855.225
858.123
819.929
820.501
821.273
822.194
823.386
824.942
826.429
828.574
831.141
834.131
796.208
796.446
796.86
797.474
798.331
799.467
800.951
802.854
805.227
808.119
771.681
771.465
771.43
771.552
771.884
772.51
773.454
774.798
776.656
779.217
746.506
745.919
744.953
744.346
743.872
743.713
743.919
744.793
746.358
748.86
722.302
719.372
718.236
716.491
715.527
714.605
715.746
717.969
722.194
725.091
695.753
694.009
691.573
689.583
694.518
696.483
692.906
693.228
692.202
688.484
671.022
674.554
677.234
678.075
674.611
666.324
664.35
659.405
655.339
652.633
661.671
660.088
654.908
651.591
648.324
642.069
635.529
628.693
621.002
612.325
643.651
641.678
637.925
631.756
625.32
618.542
610.914
602.17
592.356
583.399
628.524
624.751
619.682
613.782
607.214
599.645
590.809
582.689
578.335
578.574
614.037
609.685
604.9
599.39
592.773
585.004
579.073
578.082
579.528
579.958
599.077
596.201
592.549
587.816
582.224
578.69
579.147
579.413
579.451
579.476
584.948
584.057
582.132
579.41
578.094
579.08
579.252
579.312
579.307
579.205
573.292
574.532
575.16
576.457
578.446
579.046
579.273
579.241
579.07
578.91
562.901
567.577
571.937
575.764
577.824
577.937
578.183
578.749
578.337
576.13
552.22
560.927
566.222
571.155
571.395
571.709
572.666
583.447
569.624
560.131
527.346
532.184
538.23
546.471
539.354
533.06
533.24
530.558
508.517
503.635
494.039
494.463
494.342
488.082
484.092
482.46
482.257
479.879
476.262
476.503
469.902
469.699
468.147
465.394
463.277
463.326
464.606
467.515
483.388
474.656
451.039
451.859
451.585
450.225
449.474
452.708
461.791
472.499
473.578
469.864
435.266
437.386
437.515
436.175
438.974
447.382
453.727
457.679
455.696
447.481
423.862
426.721
427.802
422.974
429.712
434.392
437.844
437.474
432.147
421.032
407.918
420.085
414.594
413.899
421.408
422.511
420.612
416.122
408.641
396.038
399.074
410.126
396.274
403.655
406.549
406.088
401.628
394.214
383.733
370.764
394.184
390.544
391.952
396.73
396.69
391.747
383.326
373.38
361.388
347.98
384.775
380.206
387.71
390.973
380.597
372.609
364.194
353.125
340.254
326.488
371.263
373.007
382.896
377.791
367.861
356.413
344.991
332.65
319.353
305.441
357.414
370.961
377.443
346.928
341.752
334.182
323.836
311.545
298.073
283.903
339.879
367.781
351.313
340.929
331.454
320.237
307.143
292.887
277.982
262.823
357.232
356.619
350.057
334.931
319.149
304.139
288.873
273.036
256.818
240.536
350.007
329.704
320.261
310.666
297.519
282.886
267.314
250.883
233.974
217.151
322.934
300.116
297.088
287.811
275.679
261.636
245.865
228.727
210.697
192.25
303.563
298.655
288.105
273.81
259.026
243.585
227.103
209.834
192.302
175.246
285.932
278.596
266.332
251.996
237.553
222.402
206.203
189.413
172.932
157.794
247.619
246.905
238.607
226.783
214.11
200.074
184.318
167.238
149.266
129.843
220.322
220.136
213.444
203.937
193.336
181.139
167.121
151.711
135.288
118.407
200.283
198.261
192.246
184.499
175.883
165.934
154.555
142.223
129.661
119.781
181.778
178.903
173.366
166.941
160.204
152.611
144.073
135.07
126.666
123.015
162.024
160.42
155.593
150.24
145.204
139.864
134.039
128.144
123.516
124.779
144.628
142.009
136.81
132.409
129.226
126.289
123.223
120.361
119.384
124.863
105.915
111.909
112.212
111.184
110.707
110.388
110.134
110.787
114.677
123.739
84.8163
89.5186
90.3111
90.2664
90.6802
91.2246
91.9776
94.4936
101.029
106.424
65.1142
68.7116
69.7897
70.1154
70.2446
69.9771
69.3036
69.4597
69.9742
57.7143
45.4839
50.2881
52.1123
52.5003
51.8394
50.4058
48.1179
45.7084
41.5207
24.5926
45.3307
41.6028
39.5687
38.2226
36.4299
33.9869
30.4131
25.9478
19.1684
6.29003
13.5409
21.5079
25.0678
25.0455
23.5785
21.0815
17.1639
12.1951
5.58983
-1.10561
25.4264
21.3111
19.1304
15.8386
13.3456
10.7038
6.92636
2.63313
-2.61848
-4.25611
6.87284
6.50717
7.24059
4.56279
2.84066
0.841382
-2.54745
-5.66185
-10.1754
-6.844
-3.02894
-4.96517
-3.35915
-4.78864
-5.78321
-7.3459
-10.6579
-12.2338
-18.1669
-11.8122
-11.3862
-7.46383
-8.99175
-10.4774
-12.1004
-13.2785
-14.6023
-12.8986
-15.8385
-22.1613
-26.5619
-0.698811
-13.4739
-15.3607
-18.8146
-19.9126
-17.2947
-13.2306
-1.98457
-38.2499
1771.32
1771.16
1770.98
1770.8
1770.61
1770.42
1770.21
1770
1769.78
1769.55
1769.32
1769.08
1768.84
1768.59
1768.34
1768.09
1767.83
1767.58
1767.33
1767.08
1766.82
1766.58
1766.34
1766.1
1765.87
1765.67
1765.46
1765.27
1765.1
1764.94
1764.8
1764.67
1764.56
1764.47
1764.4
1764.35
1764.31
1764.28
1764.28
1764.28
1751.83
1751.66
1751.48
1751.29
1751.1
1750.89
1750.67
1750.45
1750.22
1749.99
1749.74
1749.49
1749.24
1748.98
1748.72
1748.45
1748.19
1747.92
1747.66
1747.4
1747.14
1746.89
1746.64
1746.41
1746.18
1745.97
1745.77
1745.59
1745.42
1745.26
1745.12
1745
1744.9
1744.81
1744.74
1744.69
1744.66
1744.63
1744.63
1744.63
1732.34
1732.16
1731.98
1731.79
1731.58
1731.37
1731.15
1730.91
1730.67
1730.43
1730.17
1729.91
1729.64
1729.37
1729.1
1728.82
1728.54
1728.27
1727.99
1727.72
1727.45
1727.19
1726.93
1726.69
1726.46
1726.24
1726.04
1725.86
1725.69
1725.53
1725.39
1725.27
1725.17
1725.08
1725.02
1724.97
1724.94
1724.92
1724.93
1724.94
1712.85
1712.67
1712.48
1712.29
1712.08
1711.86
1711.63
1711.38
1711.14
1710.88
1710.61
1710.34
1710.06
1709.77
1709.48
1709.19
1708.9
1708.61
1708.32
1708.03
1707.75
1707.47
1707.2
1706.95
1706.71
1706.48
1706.28
1706.09
1705.91
1705.75
1705.61
1705.49
1705.38
1705.3
1705.23
1705.19
1705.17
1705.17
1705.19
1705.22
1693.36
1693.18
1692.99
1692.79
1692.58
1692.35
1692.12
1691.87
1691.61
1691.34
1691.07
1690.78
1690.49
1690.19
1689.88
1689.58
1689.27
1688.96
1688.65
1688.35
1688.05
1687.75
1687.46
1687.19
1686.93
1686.7
1686.48
1686.28
1686.1
1685.94
1685.79
1685.66
1685.55
1685.46
1685.4
1685.36
1685.34
1685.38
1685.43
1685.46
1673.87
1673.69
1673.5
1673.3
1673.09
1672.86
1672.62
1672.37
1672.11
1671.83
1671.54
1671.25
1670.94
1670.62
1670.3
1669.98
1669.65
1669.33
1669
1668.67
1668.34
1668.02
1667.7
1667.4
1667.12
1666.87
1666.65
1666.44
1666.26
1666.09
1665.94
1665.8
1665.68
1665.59
1665.54
1665.5
1665.66
1665.62
1665.7
1665.73
1654.38
1654.21
1654.03
1653.83
1653.62
1653.39
1653.15
1652.9
1652.63
1652.35
1652.05
1651.74
1651.41
1651.08
1650.74
1650.39
1650.05
1649.7
1649.35
1649
1648.63
1648.26
1647.9
1647.55
1647.24
1646.97
1646.74
1646.54
1646.36
1646.2
1646.06
1645.93
1645.84
1645.91
1646.03
1646.08
1646.22
1646.16
1646.14
1646.17
1634.91
1634.75
1634.57
1634.38
1634.17
1633.95
1633.71
1633.46
1633.18
1632.9
1632.59
1632.27
1631.92
1631.56
1631.19
1630.82
1630.44
1630.07
1629.7
1629.32
1628.89
1628.47
1628.03
1627.62
1627.27
1627.07
1626.79
1626.57
1626.4
1626.27
1626.18
1626.16
1626.21
1626.46
1626.61
1626.52
1626.64
1626.86
1626.94
1626.96
1615.44
1615.29
1615.12
1614.94
1614.74
1614.52
1614.29
1614.04
1613.77
1613.48
1613.16
1612.82
1612.45
1612.05
1611.64
1611.22
1610.78
1610.56
1610.14
1609.61
1609.12
1608.6
1608.09
1607.79
1607.68
1607.32
1606.8
1606.53
1606.32
1606.17
1606.09
1606.09
1606.19
1606.84
1606.78
1607.19
1607.33
1607.23
1607.33
1607.32
1595.99
1595.84
1595.69
1595.51
1595.32
1595.11
1594.88
1594.62
1594.35
1594.06
1593.75
1593.4
1593
1592.57
1592.05
1591.85
1592.05
1591.05
1590.51
1589.93
1589.24
1588.8
1588.28
1587.7
1587.21
1587.06
1586.67
1586.33
1586.08
1585.94
1585.94
1586.14
1586.55
1586.86
1587.12
1587.36
1587.61
1587.87
1587.97
1588.03
1576.52
1576.39
1576.25
1576.08
1575.89
1575.68
1575.45
1575.19
1574.88
1574.59
1574.32
1574.01
1573.64
1573.78
1573.58
1572.71
1571.68
1571.36
1570.74
1570.06
1569.3
1568.75
1567.96
1567.63
1566.92
1566.38
1566.05
1565.81
1565.57
1565.45
1565.53
1565.79
1566.31
1567.01
1567.63
1568.21
1568.56
1568.56
1568.73
1568.72
1557.04
1556.92
1556.78
1556.61
1556.43
1556.21
1556
1555.77
1555.47
1555.78
1555.61
1555.34
1554.64
1553.68
1553.44
1552.87
1551.77
1550.94
1550.59
1550.16
1549.44
1548.74
1547.7
1547
1547.21
1546.96
1545.39
1545.27
1544.87
1544.61
1544.78
1545.25
1545.99
1546.81
1547.58
1548.36
1549.07
1549.53
1549.84
1549.96
1537.51
1537.38
1537.23
1537.06
1536.87
1536.63
1536.42
1536.58
1536.6
1536.15
1535.25
1534.94
1534.53
1533.94
1533.44
1532.96
1531.92
1533.53
1533.25
1530.27
1530.69
1529.01
1529.39
1529.24
1529.03
1528.26
1526.53
1524.92
1523.72
1523.26
1523.58
1524.31
1525.33
1526.67
1528.12
1529.52
1530.68
1531.46
1531.74
1531.74
1517.9
1517.75
1517.57
1517.37
1517.2
1517.17
1517.08
1516.7
1516.18
1516.06
1515.43
1514.8
1514.14
1513.57
1513.62
1513.73
1513.48
1512.88
1511.17
1512.08
1509.43
1510.2
1510.14
1508.73
1507.77
1507.82
1505.83
1506.07
1506.83
1505.73
1504.4
1503.02
1504.39
1506.49
1508.91
1511.23
1513.16
1514.38
1514.67
1514.2
1498.17
1497.98
1497.75
1497.55
1497.59
1497.48
1496.6
1496.79
1496.16
1495.32
1494.7
1494.44
1493.9
1495.03
1494.87
1494.31
1492.53
1491.85
1491.03
1489.8
1490.22
1490.64
1486.85
1486.77
1486.32
1485.96
1485.55
1485.25
1484.76
1485.66
1489.07
1489.82
1488.58
1487.05
1490.69
1494.54
1497.52
1498.9
1498.61
1497.18
1478.3
1478.02
1477.7
1477.39
1477.93
1476.91
1477.29
1476.7
1475.64
1476.63
1477.04
1473.56
1473.48
1472.74
1471.53
1470.81
1470.03
1469.38
1468.6
1467.58
1466.45
1465.48
1464.79
1464.33
1464.03
1463.86
1463.84
1464.06
1464.68
1465.79
1466.94
1466.99
1470.71
1475.06
1477.29
1479.56
1481.91
1483.79
1482.84
1480.11
1458.34
1458
1457.59
1457.25
1457.49
1457.29
1456.39
1455.91
1456.22
1456.2
1455.77
1453.25
1452.08
1451.23
1450.28
1449.35
1448.44
1447.53
1446.52
1445.36
1444.16
1442.97
1442.01
1441.38
1441.06
1440.97
1441.06
1441.34
1442
1443.22
1444.9
1446.92
1448.49
1448.29
1452.26
1451.49
1458.64
1465.08
1464.2
1462.62
1438.26
1437.89
1437.44
1436.93
1436.36
1435.65
1435.92
1435.94
1435.9
1434.88
1433.61
1432.37
1431.22
1430.14
1429.13
1428.13
1427.12
1426.05
1424.88
1423.56
1421.95
1420.12
1418.58
1417.69
1417.42
1417.48
1417.35
1416.92
1416.16
1416.34
1417.3
1418.32
1418.44
1414.63
1407.97
1405.58
1408.89
1422.39
1430.35
1430.01
1418.26
1417.61
1417.13
1416.54
1415.91
1415.65
1415.4
1414.9
1414.26
1413.65
1412.49
1411.36
1410.28
1409.26
1408.27
1407.3
1406.3
1405.22
1404.03
1402.58
1400.54
1399.09
1398.55
1396.58
1394.67
1394.95
1395.02
1392.85
1392.24
1387.09
1387.59
1388.69
1387.02
1380.5
1377.31
1394.33
1383.67
1384.63
1393.08
1398.39
1397.8
1397.35
1396.78
1396.25
1396.02
1395.65
1395.14
1394.66
1393.73
1392.69
1391.67
1390.66
1389.69
1388.78
1387.91
1387.06
1386.22
1385.35
1384.45
1383.39
1381.75
1382.06
1382.01
1379.27
1376.26
1372.24
1373.76
1370.92
1370.56
1368.91
1361.88
1363.97
1364.04
1363.91
1371.56
1377.64
1369.41
1364.35
1367.23
1372.54
1378.19
1377.48
1376.75
1376.61
1376.53
1375.88
1375.16
1374.4
1373.32
1372.3
1371.34
1370.44
1369.57
1368.79
1368.05
1367.36
1366.69
1366.03
1365.38
1364.69
1363.64
1363.38
1363.1
1360.47
1357.61
1354.36
1353.14
1356.03
1341.54
1339.9
1337.69
1340.49
1345.42
1351.55
1356.5
1357.51
1354.01
1349.65
1349.99
1353.49
1358.62
1357.9
1357.14
1357.56
1357.06
1356.36
1355.36
1354.41
1353.4
1352.45
1351.56
1350.77
1350.04
1349.39
1348.8
1348.26
1347.77
1347.33
1346.92
1346.59
1346.41
1346.29
1344.07
1341.76
1340.46
1337.79
1338.83
1334.6
1326.31
1327.14
1331.28
1333.69
1336.59
1339.43
1341.47
1340.32
1337.01
1335.79
1336.71
1338.57
1338.68
1337.96
1337.22
1338.35
1338.54
1337.55
1335.74
1334.83
1333.96
1333.14
1332.39
1331.73
1331.17
1330.68
1330.19
1329.75
1329.4
1329.03
1328.68
1328.29
1328.07
1328.88
1330.98
1329.93
1321.82
1316.31
1315.33
1316.35
1319
1321.18
1323.27
1325.68
1327.93
1329.38
1327.92
1323.68
1322.01
1322.23
1323.54
1324.95
1317.7
1319.01
1318.73
1317.98
1318.02
1316.96
1315.93
1315.54
1315.03
1314.51
1314.27
1313.78
1313.14
1312.82
1312.32
1312.04
1311.56
1311.1
1310.29
1308.98
1307.26
1307.14
1309.65
1313.58
1313.2
1307.29
1309.88
1311.73
1313.18
1315.37
1317.16
1319.12
1320.51
1316.73
1311.1
1308.69
1308.44
1308.92
1310.29
1311.44
1314.87
1298.26
1299.1
1299.09
1298.67
1298.24
1297.88
1297.54
1297.19
1296.84
1296.72
1296.38
1296.03
1295.74
1295.51
1295.21
1295.11
1295.01
1294.24
1293.08
1293.53
1302.01
1310.9
1305.9
1301.04
1300.95
1303.58
1305.46
1307.52
1309.09
1310.94
1311.35
1305.57
1299.29
1296.44
1295.59
1295.25
1295.45
1297.6
1297.67
1290.73
1280.54
1282.09
1282.06
1281.62
1281.18
1280.79
1280.45
1280.15
1279.87
1279.64
1279.44
1279.27
1279.11
1278.97
1279.06
1280.4
1280.47
1282.78
1284.83
1289.27
1295.54
1296.03
1291.84
1291.99
1295.01
1297.26
1298.98
1300.94
1302.76
1299.82
1293.2
1287.47
1284.58
1283.23
1282.25
1281.62
1281.74
1283.08
1282.89
1270.5
1267.64
1267.06
1267.48
1266.35
1265.32
1264.63
1264.14
1263.76
1263.48
1263.27
1263.12
1262.99
1262.82
1262.6
1262.72
1264.51
1269.54
1271.01
1276.01
1279.53
1283.77
1283.24
1283.5
1287.67
1289.72
1290.99
1292.59
1293.32
1287.72
1280.05
1274.92
1272.38
1270.63
1269.11
1267.89
1267.1
1267.45
1267.65
1267.57
1256.01
1254.43
1252.75
1250.64
1249.61
1248.92
1248.42
1247.93
1247.51
1247.23
1247.05
1246.91
1246.77
1246.52
1245.96
1245.03
1244.88
1249.36
1258.34
1265.76
1272.92
1271.39
1289.07
1278.16
1281.74
1283.22
1283.78
1281.73
1274.19
1266.57
1261.88
1259.25
1257.18
1255.31
1253.75
1252.54
1251.7
1251.83
1251.62
1251.4
1241.48
1241.03
1240.88
1240.95
1240.36
1235.18
1232.38
1231.74
1231.27
1231.01
1230.94
1230.98
1231.08
1231.18
1231.06
1230.44
1231.01
1237.09
1248.07
1256.68
1258.81
1262.55
1293.86
1264.43
1275.96
1269.18
1262.56
1256.16
1249.75
1246.19
1243.93
1241.94
1240.11
1238.55
1237.27
1236.25
1235.44
1234.87
1234.87
1234.22
1221.09
1221.63
1222.36
1223.29
1221.39
1216.51
1214.25
1214.09
1214.02
1214.1
1214.27
1214.67
1215.16
1215.82
1216.36
1217.05
1219.42
1226.25
1232.33
1239.88
1242.31
1243.76
1260.84
1246.96
1239.66
1225.23
1223.95
1225.08
1225.35
1224.87
1223.96
1222.87
1221.79
1220.81
1219.94
1219.17
1218.48
1217.8
1217.19
1216.48
1199.89
1200.08
1199.66
1198.77
1197.68
1196.73
1196.45
1196.3
1196.49
1196.63
1197.09
1197.87
1198.82
1199.86
1200.82
1202.89
1207.07
1212.93
1217.9
1222.78
1225.54
1226.35
1227.72
1223.13
1212.93
1206.14
1205.5
1206.04
1205.94
1205.4
1204.71
1204.01
1203.33
1202.68
1202.05
1201.44
1200.78
1200.02
1199.31
1198.71
1179.62
1179.58
1179.33
1178.96
1178.55
1178.24
1178.09
1178.12
1178.32
1178.66
1179.26
1180.13
1181.03
1182.01
1183.28
1185.86
1190.68
1195.05
1201.58
1206.4
1203.79
1201.98
1200.2
1196.74
1192.29
1189.26
1187.89
1187.16
1186.56
1186.02
1185.53
1185.08
1184.65
1184.22
1183.76
1183.23
1182.59
1181.79
1180.93
1180.6
1159.84
1159.8
1159.66
1159.47
1159.29
1159.17
1159.14
1159.24
1159.47
1159.85
1160.42
1161.33
1162.16
1162.94
1164.59
1167.81
1172.39
1177.91
1183.27
1182.34
1179.67
1176.1
1174.34
1172.56
1170.55
1169.01
1168.03
1167.39
1166.91
1166.55
1166.27
1166.03
1165.79
1165.52
1165.18
1164.74
1164.13
1163.3
1162.36
1162.08
1140.09
1140.01
1139.92
1139.82
1139.72
1139.67
1139.68
1139.78
1139.98
1140.28
1140.71
1141.32
1141.92
1142.74
1144.68
1148.71
1154.45
1159.92
1158.69
1157.03
1152.99
1151.44
1150.67
1149.51
1148.25
1147.59
1147.46
1147.34
1147.1
1146.92
1146.83
1146.78
1146.72
1146.61
1146.41
1146.06
1145.5
1144.67
1143.66
1143.34
1120.33
1120.18
1120.08
1120.01
1119.94
1119.88
1119.84
1119.88
1120.01
1120.2
1120.41
1120.6
1120.75
1121.25
1123.11
1127.71
1137.23
1136.96
1134.97
1131.06
1129.65
1129.13
1128.39
1127.39
1126.9
1128.46
1127.36
1127.02
1127.07
1127.06
1127.15
1127.29
1127.43
1127.51
1127.46
1127.24
1126.77
1125.98
1124.93
1124.53
1100.54
1100.21
1100.17
1100.12
1100.09
1099.79
1099.43
1099.44
1099.61
1099.72
1099.64
1099.32
1098.8
1098.57
1100.66
1115.34
1116.89
1114.51
1110.25
1108.61
1108.13
1107.6
1106.93
1106.55
1106.96
1107.22
1107.17
1106.55
1106.69
1106.89
1107.19
1107.55
1107.92
1108.21
1108.36
1108.31
1107.97
1107.24
1106.16
1105.79
1082.64
1083.89
1083.32
1083.02
1082.07
1081.63
1081.76
1079.13
1079.17
1079.3
1079.02
1078.46
1077.81
1077.83
1094.8
1095.76
1094.63
1090.21
1087.83
1087.12
1086.73
1086.18
1085.73
1085.86
1086.11
1086.11
1086.16
1085.68
1085.88
1086.34
1086.91
1087.54
1088.18
1088.74
1089.14
1089.3
1089.12
1088.47
1087.37
1086.91
1069.52
1069.25
1068.69
1068.8
1069.78
1068.77
1067.61
1064.04
1061.36
1060.96
1060.9
1061.58
1063.4
1071.22
1077.19
1063.97
1064.47
1064.15
1064.18
1064.15
1064.86
1064.78
1064.77
1065.13
1065.16
1065.21
1065.15
1064.77
1065.07
1065.66
1066.41
1067.29
1068.23
1069.13
1069.86
1070.28
1070.32
1069.83
1068.84
1067.8
1050.83
1050.73
1052.9
1051.4
1051.84
1051.95
1050.76
1048.56
1044.69
1042.67
1041.48
1042.47
1047.8
1052.88
1044.24
1041.11
1043.53
1043.05
1045.2
1043.22
1044.66
1044.58
1044.71
1044.89
1044.77
1044.64
1044.36
1044.19
1044.43
1044.96
1045.76
1046.84
1048.12
1049.45
1050.58
1051.36
1051.66
1051.37
1050.51
1049.55
1031.44
1032.31
1032.82
1032.42
1031.78
1034.84
1034.42
1026.71
1028.68
1022.94
1017.68
1019.73
1029
1028.32
1026.48
1032.25
1027.24
1029.12
1025.04
1024.71
1024.97
1025.13
1025.28
1025.66
1025.6
1024.79
1024.26
1024.05
1024.09
1024.42
1025.26
1026.74
1028.66
1030.59
1032.08
1033.12
1033.66
1033.58
1032.86
1032.68
1013.5
1014.1
1014.35
1014
1013.01
1012.67
1011.71
1011.33
1008.72
998.861
986.943
1005.18
1007.21
1008.36
1009.51
1011.17
1009.21
1010.38
1005.62
1005.87
1006.23
1006.51
1006.66
1007.3
1008.9
1005.61
1005.01
1004.51
1003.95
1003.71
1003.75
1004.55
1008.38
1013.36
1016.07
1016.98
1017.44
1017.59
1017.61
1019.19
996.256
997.218
998.025
998.62
998.914
998.174
995.41
993.09
992.714
983.058
977.277
981.926
977.527
988.122
992.462
993.038
990.942
989.651
989.495
989.648
989.575
989.612
989.803
989.488
989.381
988.543
987.816
986.602
984.72
982.407
984.801
988.746
984.304
993.576
1000.35
1002.8
1003.34
1003.52
1003.96
1004.71
979.239
980.822
982.467
984.341
986.017
984.33
980.869
974.265
971.084
966.527
968.361
969.236
970.152
981.014
985.7
983.514
980.716
978.754
977.637
976.704
975.728
975.326
975.502
975.713
975.919
975.411
974.656
973.379
971.26
968.856
970.545
984.836
984.779
981.224
984.516
987.849
990.77
991.657
990.355
991.515
962.392
964.926
967.953
971.965
976.037
974.63
973.442
973.051
968.584
966.587
966.271
966.264
966.189
969.374
976.303
976.975
973.654
971.499
969.274
967.138
965.494
977.828
976.79
965.886
965.676
965.427
965.202
964.79
964.076
963.987
967.154
973.474
974.778
974.301
974.325
975.008
976.805
980.493
977.978
980.23
944.728
948.008
951.941
957.086
963.331
966.648
968.758
968.696
966.93
966.485
966.021
965.417
964.607
963.783
963.593
962.914
961.504
962.976
962.136
960.228
958.706
975.919
975.79
957.706
957.039
957.08
957.356
957.587
957.834
959.142
963.419
967.465
968.609
968.097
967.337
967.177
965.39
968.329
969.493
971.508
925.679
929.282
933.431
938.365
944.359
950.97
956.539
961.349
964.696
964.147
964.218
964.293
964.137
963.798
963.52
963.6
964.573
964.319
952.9
956.437
945.901
973.896
964.178
954.779
951.408
950.452
950.398
950.583
950.951
952.422
957.122
962.05
963.459
963.347
962.881
962.525
957.842
957.586
962.39
964.331
905.337
909.03
913.147
917.712
922.72
928.133
934.022
940.852
945.958
951.443
957.474
959.534
959.871
959.473
959.174
959.009
959.145
956.924
942.139
949.401
932.932
966.625
949.701
947.294
943.791
942.542
942.401
942.655
943.099
944.52
949.567
956.821
958.897
959.183
959.049
957.706
951.707
948.591
954.169
958.179
883.95
887.748
891.912
896.387
901.048
905.7
910.031
913.626
916.712
921.063
928.524
936.965
939.642
940.709
942.904
943.023
936.754
931.181
936.311
929.765
924.982
946.389
933.828
934.903
933.644
932.773
932.977
933.701
934.58
936.162
941.475
951.013
954.546
955.169
955.095
953.102
945.692
940.419
946.915
952.562
861.557
865.615
870.095
874.931
879.992
885.098
889.997
894.361
897.938
900.855
903.443
905.484
906.409
906.52
906.177
906.524
911.453
919.373
924.565
923.46
924.568
924.861
923.296
922.306
921.62
921.206
922.217
923.881
925.697
927.885
933.147
943.562
950.2
951.524
951.472
948.441
938.134
932.734
940.593
947.498
837.753
842.128
847.047
852.439
858.172
864.083
869.977
875.632
880.846
885.517
889.585
892.839
894.93
895.93
896.767
898.906
903.45
909.278
910.454
916.347
918.722
918.344
917.347
914.252
910.074
908.35
909.872
912.798
915.878
919.128
924.175
934.4
945.141
948.401
948.495
940.741
927.283
924.998
934.505
942.512
811.772
816.374
821.724
827.755
834.355
841.383
848.625
855.77
862.486
868.573
874.096
879.14
883.439
886.408
887.991
889.072
890.213
891.621
892.057
893.56
902.349
909.214
911.641
909.858
901.665
896.081
896.05
899.94
904.252
908.407
913.218
921.682
934.674
946.286
947.607
922.151
911.22
915.945
926.244
937.071
782.865
787.889
794.108
801.337
809.469
818.374
827.701
836.798
845.58
853.272
860.142
866.105
872.671
876.903
877.714
878.213
878.254
877.047
875.968
875.627
879.4
887.166
898.623
907.358
899
886.752
881.562
884.806
890.538
895.293
899.291
904.372
913.264
929.366
939.376
904.451
899.959
907.302
918.309
929.724
753.267
759.406
766.447
775.076
785.468
796.597
808.107
819.499
829.431
838.345
846.003
852.057
861.561
864.446
867.403
868.787
871.082
870.763
868.531
863.585
862.227
861.679
868.165
881.992
898.078
883.881
869.554
869.95
876.591
881.676
884.732
887.93
892.223
898.437
895.987
889.824
891.237
898.555
909.306
921.347
727.761
731.462
737.374
743.786
751.445
762.568
775.704
789.04
802.087
812.907
823.104
831.553
839.129
841.92
845.583
847.656
849.617
851.141
853.077
852.753
848.434
842.057
840.806
842.231
855.077
874.849
867.303
859.543
858.076
864.14
867.78
870.546
873.304
875.455
875.85
875.532
878.369
885.554
896.926
909.967
688.267
690.086
693.621
700.579
709.764
722.853
738.7
755.688
771.711
785.553
797.326
807.127
814.254
818.394
821.214
823.458
824.396
824.887
825.128
824.43
826.204
825.841
821.248
816.703
820.545
823.938
828.004
836.256
862.059
863.145
849.219
850.939
853.225
854.85
855.104
856.321
860.124
867.932
880.213
894.06
648.453
644.472
642.303
643.762
653.368
673.659
699.101
722.508
742.582
759.159
772.5
782.836
790.135
794.665
797.096
798.022
797.554
795.878
793.403
791.59
791.342
791.251
795.776
792.792
791.147
789.021
784.457
783.889
799.401
831.265
845.064
840.243
828.56
826.578
828.456
831.484
836.626
845.43
858.522
872.879
603.077
594.247
587.392
582.929
590.072
623.005
662.035
694.747
717.72
734.404
747.42
757.132
763.679
767.467
768.993
768.699
766.923
764.003
760.312
756.287
752.38
749.99
750.345
751.94
751.88
750.541
749.039
748.334
753.556
777.075
806.916
816.717
813.837
806.073
798.26
799.254
806.814
817.703
831.859
846.727
578.356
579.279
580.774
582.003
585.602
602.294
637.904
680.965
702.864
713.264
722.084
729.128
733.533
735.449
735.249
733.263
729.831
725.343
720.25
715.037
710.204
706.37
704.026
702.953
702.853
703.888
706.071
708.9
713.325
727.409
757.747
782.384
789.96
786.47
777.542
769.301
773.32
785.768
801.264
816.699
579.778
580.494
581.477
582.406
583.586
586.433
614.358
668.646
688.2
690.356
693.454
696.775
698.27
697.715
695.323
691.274
685.81
679.289
672.192
665.103
658.635
653.383
649.835
648.223
648.633
651.14
655.723
662.158
670.061
680.875
702.97
735.979
756.327
762.774
755.177
742.537
738.87
750.435
767.588
782.89
580.128
580.272
580.551
580.977
581.73
584.696
614.765
656.004
663.341
659.74
658.705
658.443
656.898
653.707
648.876
642.426
634.534
625.6
616.208
607.029
598.723
591.92
587.352
585.63
586.96
591.161
597.96
607.115
618.272
630.878
646.76
674.863
705.151
730.71
727.89
716.393
708.529
714.995
731.844
744.959
579.521
579.615
579.79
580.094
581.201
592.088
616.04
626.842
624.039
620.049
617.326
614.335
610.148
604.516
597.361
588.794
579.23
568.919
557.673
545.931
534.717
525.271
519.155
517.088
519.452
525.8
535.275
547.326
561.607
577.567
595.16
619.678
657.09
684.349
690.489
680.819
674.115
676.322
691.586
704.651
579.161
579.247
579.415
579.787
581.838
587.425
590.366
587.171
582.232
577.51
572.654
567.085
560.518
552.933
544.707
536.225
527.414
515.724
497.174
474.959
451.729
434.056
431.721
436.851
445.269
456.547
470.379
486.077
503.465
522.313
542.178
565.003
599.852
629.971
649.834
649.354
640.213
637.409
650.39
662.822
578.806
578.676
577.978
573.567
565.942
559.697
553.729
547.3
540.696
533.782
526.318
518.165
509.416
500.568
492.086
480.411
458.643
422.852
382.37
365.265
354.941
348.183
354.951
355.768
368.801
388.979
409.442
429.255
449.539
470.453
492.135
515.491
546.756
577.616
611.546
612.778
602.808
597.759
609.198
619.974
574.119
571.472
558.277
541.171
530.783
523.211
515.638
507.449
498.666
489.225
479.107
468.454
457.607
445.659
427.65
393.202
349.164
335.076
331.636
328.57
328.04
330.002
330.168
318.121
326.639
347.626
368.151
387.653
407.304
428.133
449.939
473.632
504.462
534.789
571.347
572.234
562.507
557.945
568.999
576.479
543.249
515.617
502.722
496.937
492.651
486.073
477.51
467.668
456.806
445.058
432.611
419.513
403.881
380.389
347.865
329.881
322.955
321.046
320.918
321.281
321.835
321.922
317.28
307.627
314.788
329.694
345.136
360.925
378.029
396.831
417.281
440.727
472.673
501.149
533.911
529.225
518.949
518.714
528.157
533.119
468.273
464.965
467.232
466.567
461.162
452.521
441.901
429.894
416.864
403.058
388.385
371.335
349.49
329.33
319.79
318.404
318.161
318.77
319.748
320.635
320.982
319.105
309.59
304.946
311.637
321.631
332.589
344.77
358.719
374.798
393.246
415.926
447.21
474.767
494.361
481.744
476.778
482.331
487.72
488.787
464.681
465.437
458.825
448.567
436.789
423.745
409.612
394.695
379.172
362.939
345.862
329.454
318.94
315.773
315.251
315.539
316.201
316.897
317.657
318.302
317.363
308.689
300.952
303.832
311.172
319.026
327.539
336.644
346.955
359.221
373.334
389.424
405.143
445.153
446.438
442.603
443.463
446.647
450.077
448.176
470.629
461.565
445.509
428.392
411.711
394.823
377.539
359.785
341.247
323.675
313.762
312.475
312.661
312.707
313.014
313.556
314.14
314.747
315.324
314.949
308.779
298.831
300.306
307.859
316.067
324.956
334.1
341.107
346.886
355.322
362.189
361.813
366.761
396.379
390.866
404.877
410.655
413.441
416.16
413.657
458.394
441.121
422.074
402.935
383.699
364.248
344.387
323.066
302.048
294.663
304.857
309.564
310.558
310.866
311.368
311.906
312.345
312.746
312.828
310.28
301.739
297.728
304.691
314.409
325.744
340.19
352.818
353.787
345.84
347.58
341.66
326.725
335.684
344.972
358.326
377.892
385.559
386.658
387.956
386.289
432.512
414.424
395.29
375.255
354.609
333.571
311.026
285.253
268.719
284.148
302.254
307.511
309.121
309.719
310.294
310.559
310.868
311.036
310.373
306.417
298.365
297.002
305.253
315.216
327.471
342.924
352.688
349.471
333.219
327.693
324.217
321.056
322.27
323.968
335.207
354.157
364.252
364.418
364.246
365.014
405.839
387.862
368.521
348.129
327.177
305.671
281.721
257.583
249.732
275.382
294.685
305.812
309.782
310.573
310.098
309.654
309.464
309.534
308.658
304.809
296.526
293.247
299.763
307.625
316.231
325.283
331.305
331.449
326.431
322.862
320.855
320.15
320.214
320.674
324.314
334.107
342.655
345.637
344.693
348.619
380.268
362.204
343.017
323.01
302.863
282.754
265.36
252.988
247.175
254.177
283.672
302.097
308.341
310.069
309.705
308.289
307.412
307.284
306.39
303.988
295.466
288.039
290.773
296.091
300.646
306.09
316.519
321.954
322.097
321.208
320.531
320.223
320.13
320.17
320.563
320.192
324.954
328.088
329.28
335.716
355.423
337.881
319.38
300.435
282.747
267.977
257.543
251.736
246.278
260.896
276.984
281.986
292.368
304.104
306.061
305.154
304.175
303.739
303.207
301.569
296.231
285.39
281.047
283.717
286.027
288.36
299.53
315.293
320.129
320.451
320.216
319.89
319.769
319.745
319.096
312.184
315.46
315.647
317.369
325.228
332.672
315.556
298.009
281.247
265.792
254.84
251.309
248.85
253.169
256.036
255.408
253.948
261.647
284.718
299.628
301.376
300.822
300.145
299.565
298.787
296.989
289.552
277.458
273.5
274.6
275.407
279.275
293.784
311.417
318.399
319.032
319.094
319.019
318.604
314.534
308.982
308.996
306.309
306.826
313.155
311.206
294.484
277.831
263.016
250.088
247.826
243.139
243.366
243.396
239.885
236.968
234.77
235.29
249.235
279.679
296.008
297.774
297.512
296.646
295.657
294.391
291.871
283.358
271.256
265.247
265.139
266.744
270.947
283.018
300.014
311.946
316.519
317.207
312.814
302.414
298.039
300.22
290.678
291.826
297.255
290.344
274.545
260.208
246.782
237.881
235.009
232.537
230.992
226.469
222.359
218.702
216.632
216.704
221.356
241.645
274.524
291.682
293.531
293.264
292.338
290.949
289.269
286.171
276.761
264.386
255.359
253.186
254.76
257.972
264.065
272.915
283.414
286.606
281.662
283.417
273.203
288.149
271.995
273.926
278.173
268.54
252.674
238.659
225.337
224.152
219.999
218.938
218.95
216.343
208.967
197.689
193.08
194.881
200.03
209.349
227.289
254.331
277.894
287.141
286.865
285.736
284.692
283.204
280.667
272.832
257.011
243.163
238.86
240.918
244.432
248.004
252.814
259.017
264.127
260.16
264.037
266.948
251.641
254.197
258.095
246.975
231.543
216.021
203.109
201.937
202.812
203.32
207.325
200.813
190.131
170.412
160.462
164.812
173.527
183.73
195.855
212.642
235.049
256.902
271.229
277.383
276.585
274.238
271.669
269.196
262.581
247.154
231.659
225.25
227.107
231.045
234.766
238.415
241.737
243.134
246.691
247.749
232.653
235.419
239.449
223.575
207.203
190.523
185.051
180.585
181.246
191.029
180.369
163.092
170.749
151.536
134.374
136.213
146.488
158.153
169.821
181.865
194.692
208.212
221.775
234.835
246.814
253.834
254.626
246.637
241.476
235.737
225.705
215.834
209.535
210.59
214.195
217.55
220.759
225.576
229.537
230.529
217.468
219.095
222.497
200.114
184.341
174.034
169.22
160.044
163.612
163.889
139.137
129.663
132.376
127.516
122.432
121.421
128.407
138.06
147.689
157.965
168.282
176.968
183.017
188.632
196.465
207.327
219.995
226.123
221.354
214.073
209.082
202.994
196.004
191.774
193.472
197.278
201.48
207.38
213.061
214.891
202.621
202.84
205.436
172.821
150.218
156.686
150.32
145.864
142.734
122.908
114.345
112.639
114.284
114.269
112.286
110.436
114.231
122.751
134.365
143.824
149.229
156.473
162.348
166.696
171.962
177.702
184.38
190.974
194.917
193.736
190.652
186.921
181.89
175.364
174.062
177.202
181.406
187.274
194.627
202.349
187.226
186.268
188.172
159.717
146.108
139.934
117.267
126.253
114.936
107.542
104.698
105.214
106.709
107.444
107.721
109.437
110.248
107.959
118.528
128.417
135.09
140.424
145.278
148.246
151.997
155.63
159.289
162.866
166.079
168.629
169.24
170.88
167.817
155.907
154.309
156.024
159.565
163.82
170.365
191.825
173.353
169.33
170.873
145.434
140.206
131.317
105.491
114.76
96.7229
98.3117
98.9424
100.01
101.248
102.378
103.487
104.317
102.738
106.938
113.915
118.277
121.588
124.446
127.148
129.269
131.279
133.497
135.929
138.417
140.822
143.15
145.656
145.825
149.121
144.339
138.177
137.733
139.871
142.405
145.21
153.754
149.69
148.992
152.278
108.011
120.523
108.96
112.657
97.0411
91.7126
92.8447
94.1595
94.9657
95.7307
96.5171
97.8179
99.2159
104.403
105.745
107.019
108.339
109.679
110.811
111.525
111.642
111.868
113.07
115.147
117.637
120.341
123.414
127.287
130.059
128.271
130.244
110.925
115.261
119.805
123.237
126.048
128.281
129.137
130.716
133.146
104.122
120.081
85.1093
93.0666
79.8105
83.9863
86.7359
88.3036
89.7476
89.9647
90.6324
91.1462
91.803
96.618
98.2491
98.4541
98.8321
99.4851
100.087
99.4452
96.32
92.7923
93.1793
96.3083
99.8135
103.205
106.886
111.149
113.498
110.224
112.613
94.6307
98.8077
103.926
107.027
109.36
110.989
112.138
113.24
115.369
116.144
127.932
79.3127
88.3693
72.9097
79.2675
81.7195
82.6194
84.1296
85.1461
86.456
86.5934
86.101
84.8504
88.0855
89.2276
90.1165
91.6671
93.8045
94.484
90.7879
75.8382
71.9198
78.0906
84.1803
88.8549
92.6435
95.3092
93.6058
92.541
97.7467
77.9961
85.8214
90.9752
93.6627
95.5221
96.7989
97.5857
97.6514
102.658
124.541
130.405
74.9202
81.593
67.1857
75.4656
77.5495
78.0006
79.0749
80.6123
81.9172
80.4393
75.119
76.3855
78.7746
80.3028
81.9357
84.4446
87.9602
89.882
104.995
94.9044
69.4728
70.4912
76.6116
80.9156
80.2412
72.9313
62.4315
73.6734
75.9724
77.025
80.5146
82.096
83.1202
83.9452
84.4499
84.6011
84.432
88.1645
128.798
129.205
69.3739
68.2955
59.0728
70.2073
72.4186
72.4644
73.2936
74.5188
76.5322
74.4691
71.2159
70.627
70.8343
71.3879
72.3372
74.0456
76.4495
79.2931
86.3325
91.329
77.3173
72.8325
75.9586
72.8606
58.7102
49.7378
56.827
56.0419
63.4706
68.836
71.3806
72.0679
72.5351
72.8268
72.8356
72.5377
71.9197
74.13
130.029
125.801
64.5312
49.4131
47.3136
62.8027
66.9344
66.7914
66.7243
69.4296
68.5667
64.3125
62.0068
60.8456
60.3137
60.3036
60.7772
61.6961
62.9391
64.8275
69.8965
73.1212
69.5252
62.1002
55.4079
49.6634
45.4229
44.8235
46.1199
48.6469
57.0416
60.5184
61.2713
61.5434
61.7096
61.6604
61.3648
60.8035
60.2416
60.5579
125.854
116.274
59.9554
45.5898
35.3164
49.4894
59.2823
59.5772
54.055
56.2018
54.771
51.3917
49.2675
48.0997
47.5626
47.4691
47.7025
48.2373
49.0893
50.3761
52.9194
55.4163
55.6119
52.0863
48.4249
45.1762
43.2213
42.6243
43.1426
47.6332
51.1031
51.3653
50.9666
50.6952
50.4379
50.1253
49.7107
49.1322
48.9021
48.2057
96.9592
82.7381
45.9509
36.0378
34.0989
41.0643
45.1798
34.3792
35.1477
21.4707
29.4927
31.8796
32.5446
32.7334
32.9967
33.3492
33.6393
33.9687
34.7213
36.1325
38.4957
42.569
45.3454
43.801
41.9684
40.678
39.6885
39.48
39.8689
41.6769
41.2184
40.0284
39.1413
38.5595
38.1742
37.8393
37.5417
37.2023
37.2473
36.7496
35.3924
29.3745
14.3804
5.89223
9.77205
20.7441
23.0394
24.4688
7.0016
6.23468
6.10717
8.53566
13.9929
16.9785
18.2361
19.2189
19.9045
18.966
18.7642
20.1968
22.6845
27.8982
35.1132
37.5636
36.292
34.8508
33.7628
33.3681
33.5439
31.8223
29.0997
27.0187
25.6961
24.9625
24.846
24.6818
24.9336
24.9811
25.0647
26.4543
7.47651
5.00094
3.03875
1.51548
0.0534417
-2.2621
-2.05492
-2.85086
1.88133
-0.828883
-6.33034
-2.12963
1.06427
4.83569
5.23288
7.32871
7.73705
8.61719
2.6807
3.10766
5.26736
8.70236
18.3726
28.2821
30.5392
29.2978
27.2034
25.2087
25.4186
20.2683
15.2593
12.1152
10.3352
9.64798
9.87362
10.6877
11.9152
13.237
14.1605
16.2222
-0.054373
-0.460897
-0.453098
-0.696148
-0.979103
-1.12898
-1.08582
-1.19567
-1.91628
-2.06861
-1.68339
-0.664116
0.215135
-5.17423
-5.99554
-4.9049
0.350628
-2.32304
-8.13281
-12.4883
-12.1194
-10.9868
-7.32455
6.07725
18.8818
22.8468
21.5825
15.7204
12.8216
3.8873
-2.79744
-6.47328
-8.16071
-8.12554
-6.6356
-4.16013
-1.09138
2.1961
4.90419
6.49697
-1.17949
-1.22653
-1.03347
-1.05056
-1.14674
-1.23853
-1.32032
-1.39919
-1.47149
-1.4763
-1.48179
-1.61659
-1.88784
-1.85442
-3.45087
-1.16031
-3.74749
-10.9583
-12.7962
-20.8272
-23.8472
-24.943
-27.6425
-27.1788
-12.521
4.38089
12.5206
9.34544
-3.33794
-18.4148
-27.5123
-31.248
-31.8483
-29.7371
-25.3084
-19.3333
-12.3403
-5.10284
-2.64058
0.510959
-1.37084
-1.33135
-1.25599
-1.24725
-1.29629
-1.37013
-1.43749
-1.4944
-1.53928
-1.56972
-1.59352
-1.62027
-1.64355
-1.63778
-1.71799
-2.10017
-3.83279
-7.10727
-16.6862
-22.1934
-26.752
-31.4267
-39.5413
-49.7444
-54.2864
-43.1122
-21.151
-5.44779
-18.4502
-44.1721
-62.7657
-67.6995
-65.163
-58.059
-46.8441
-33.8803
-22.0109
-11.8875
-6.10779
-2.76538
-1.5181
-1.42592
-1.41542
-1.41413
-1.43479
-1.47606
-1.5238
-1.56891
-1.60699
-1.63516
-1.65825
-1.68249
-1.70128
-1.711
-1.71511
-1.7164
-1.77339
-2.39223
-2.65102
-6.16003
-7.70007
-17.7009
-37.2834
-63.0596
-83.9489
-97.4755
-94.7547
-74.7513
-52.5394
-67.9102
-104.133
-124.68
-117.521
-99.172
-74.173
-51.9901
-34.4386
-17.371
-8.12003
-8.50005
-1.70104
-1.56428
-1.55294
-1.54119
-1.5453
-1.5728
-1.61634
-1.66242
-1.69542
-1.71635
-1.73271
-1.74969
-1.76833
-1.78859
-1.80929
-1.83057
-1.85719
-1.89868
-1.93159
-2.00097
-2.43719
-4.43829
-10.7174
-25.7729
-55.2977
-104.56
-151.738
-165.664
-158.747
-151.301
-169.072
-198.234
-189.564
-153.622
-116.2
-84.8411
-57.2358
-31.8667
-17.1032
-16.0561
-2.30035
-1.88693
-1.78765
-1.71844
-1.68224
-1.68879
-1.72691
-1.77825
-1.80499
-1.81464
-1.81972
-1.82476
-1.83103
-1.83928
-1.85043
-1.86464
-1.88072
-1.89216
-1.8811
-1.84595
-1.80872
-1.60236
-1.35799
-1.81145
-7.32195
-27.6941
-77.6067
-158.97
-304.486
-391.998
-385.265
-407.006
-397.906
-305.975
-193.934
-106.46
-55.1622
-17.604
-0.607286
-0.660181
-5.01243
-2.56919
-2.17951
-1.98421
-1.86097
-1.85186
-1.94787
-1.97828
-1.97029
-1.94882
-1.92848
-1.91111
-1.89629
-1.8842
-1.87559
-1.87252
-1.87304
-1.86851
-1.85702
-1.83479
-1.7643
-1.70494
-2.00813
-2.86583
-5.37938
-12.3145
-33.0019
-102.671
-276.898
-561.299
-644.843
-649.189
-624.991
-411.784
-218.135
-103.66
-34.3397
-11.8178
-5.56711
-1.58874
1774.87
1774.87
1774.91
1774.96
1774.97
1774.97
1774.98
1774.97
1774.94
1774.9
1774.83
1774.75
1774.66
1774.56
1774.45
1774.33
1774.22
1774.11
1774
1773.89
1773.79
1773.69
1773.61
1773.52
1773.45
1773.38
1773.31
1773.25
1773.18
1773.12
1773.07
1773.01
1772.96
1772.9
1772.84
1772.78
1772.71
1772.65
1772.57
1772.49
1755.19
1755.21
1755.23
1755.23
1755.22
1755.2
1755.19
1755.16
1755.12
1755.06
1755
1754.92
1754.83
1754.74
1754.65
1754.55
1754.45
1754.36
1754.27
1754.18
1754.1
1754.02
1753.94
1753.87
1753.81
1753.75
1753.7
1753.65
1753.6
1753.56
1753.51
1753.47
1753.42
1753.38
1753.33
1753.28
1753.22
1753.16
1753.09
1753.01
1735.53
1735.59
1735.62
1735.61
1735.58
1735.54
1735.5
1735.44
1735.38
1735.31
1735.23
1735.15
1735.06
1734.98
1734.89
1734.8
1734.72
1734.64
1734.56
1734.49
1734.42
1734.36
1734.3
1734.25
1734.2
1734.15
1734.11
1734.07
1734.04
1734
1733.97
1733.93
1733.9
1733.86
1733.82
1733.77
1733.72
1733.66
1733.6
1733.52
1715.84
1715.92
1715.95
1715.95
1715.92
1715.87
1715.81
1715.74
1715.67
1715.59
1715.5
1715.42
1715.33
1715.24
1715.16
1715.08
1715
1714.93
1714.87
1714.8
1714.75
1714.7
1714.65
1714.61
1714.58
1714.54
1714.51
1714.49
1714.46
1714.44
1714.41
1714.38
1714.36
1714.32
1714.29
1714.25
1714.2
1714.15
1714.09
1714.03
1696.11
1696.21
1696.25
1696.24
1696.22
1696.17
1696.1
1696.03
1695.95
1695.86
1695.78
1695.69
1695.6
1695.52
1695.44
1695.37
1695.3
1695.23
1695.18
1695.12
1695.08
1695.04
1695.01
1694.98
1694.95
1694.93
1694.91
1694.89
1694.87
1694.86
1694.84
1694.82
1694.8
1694.77
1694.74
1694.71
1694.67
1694.62
1694.57
1694.51
1676.34
1676.46
1676.5
1676.5
1676.47
1676.43
1676.36
1676.29
1676.21
1676.12
1676.03
1675.95
1675.87
1675.79
1675.71
1675.65
1675.59
1675.53
1675.48
1675.44
1675.41
1675.38
1675.35
1675.33
1675.32
1675.3
1675.29
1675.28
1675.27
1675.26
1675.25
1675.24
1675.23
1675.21
1675.19
1675.16
1675.12
1675.08
1675.03
1674.98
1656.55
1656.67
1656.72
1656.72
1656.7
1656.65
1656.59
1656.52
1656.44
1656.36
1656.28
1656.2
1656.12
1656.05
1655.98
1655.93
1655.87
1655.83
1655.79
1655.76
1655.73
1655.71
1655.7
1655.69
1655.68
1655.68
1655.67
1655.67
1655.67
1655.67
1655.66
1655.66
1655.65
1655.63
1655.62
1655.59
1655.56
1655.53
1655.49
1655.43
1636.73
1636.87
1636.92
1636.92
1636.9
1636.86
1636.8
1636.74
1636.66
1636.59
1636.51
1636.44
1636.37
1636.31
1636.25
1636.2
1636.16
1636.13
1636.1
1636.08
1636.06
1636.05
1636.04
1636.04
1636.04
1636.05
1636.05
1636.05
1636.06
1636.06
1636.06
1636.06
1636.06
1636.05
1636.04
1636.02
1636
1635.97
1635.93
1635.89
1616.9
1617.06
1617.11
1617.12
1617.1
1617.07
1617.01
1616.95
1616.88
1616.82
1616.75
1616.68
1616.63
1616.57
1616.53
1616.49
1616.46
1616.43
1616.41
1616.4
1616.39
1616.39
1616.39
1616.4
1616.41
1616.42
1616.43
1616.44
1616.45
1616.46
1616.46
1616.47
1616.47
1616.47
1616.46
1616.45
1616.43
1616.4
1616.37
1616.33
1597.07
1597.28
1597.32
1597.33
1597.31
1597.28
1597.23
1597.18
1597.12
1597.05
1597
1596.94
1596.89
1596.85
1596.81
1596.78
1596.76
1596.74
1596.74
1596.73
1596.73
1596.74
1596.75
1596.76
1596.78
1596.79
1596.81
1596.83
1596.84
1596.86
1596.87
1596.88
1596.88
1596.88
1596.88
1596.87
1596.86
1596.84
1596.81
1596.78
1577.23
1577.56
1577.56
1577.56
1577.55
1577.52
1577.48
1577.42
1577.37
1577.32
1577.26
1577.22
1577.17
1577.14
1577.11
1577.09
1577.08
1577.07
1577.07
1577.08
1577.09
1577.1
1577.12
1577.14
1577.16
1577.18
1577.2
1577.22
1577.24
1577.26
1577.28
1577.29
1577.3
1577.3
1577.3
1577.3
1577.29
1577.27
1577.25
1577.22
1557.51
1557.85
1557.84
1557.83
1557.82
1557.79
1557.75
1557.7
1557.65
1557.61
1557.56
1557.52
1557.48
1557.45
1557.43
1557.42
1557.41
1557.41
1557.42
1557.43
1557.45
1557.47
1557.5
1557.53
1557.55
1557.58
1557.61
1557.63
1557.65
1557.68
1557.69
1557.71
1557.72
1557.73
1557.73
1557.73
1557.72
1557.71
1557.69
1557.66
1537.92
1538.13
1538.14
1538.14
1538.13
1538.1
1538.07
1538.02
1537.98
1537.93
1537.89
1537.85
1537.82
1537.79
1537.77
1537.76
1537.76
1537.77
1537.79
1537.81
1537.84
1537.87
1537.9
1537.93
1537.97
1538
1538.03
1538.06
1538.08
1538.11
1538.13
1538.14
1538.15
1538.16
1538.17
1538.16
1538.16
1538.14
1538.13
1538.1
1518.38
1518.47
1518.5
1518.51
1518.5
1518.48
1518.44
1518.4
1518.35
1518.3
1518.25
1518.21
1518.18
1518.15
1518.14
1518.13
1518.13
1518.14
1518.17
1518.2
1518.24
1518.29
1518.33
1518.37
1518.41
1518.44
1518.48
1518.51
1518.54
1518.56
1518.58
1518.59
1518.61
1518.61
1518.62
1518.61
1518.6
1518.59
1518.57
1518.55
1498.9
1498.92
1498.96
1498.97
1498.95
1498.92
1498.88
1498.83
1498.77
1498.71
1498.66
1498.62
1498.58
1498.55
1498.52
1498.5
1498.5
1498.52
1498.56
1498.62
1498.67
1498.73
1498.79
1498.84
1498.88
1498.92
1498.96
1498.99
1499.02
1499.04
1499.05
1499.07
1499.08
1499.08
1499.08
1499.07
1499.06
1499.04
1499.03
1498.99
1479.52
1479.52
1479.53
1479.52
1479.49
1479.45
1479.4
1479.33
1479.27
1479.22
1479.15
1479.08
1479.02
1478.97
1478.91
1478.87
1478.85
1478.88
1478.95
1479.06
1479.14
1479.22
1479.29
1479.35
1479.4
1479.44
1479.48
1479.51
1479.53
1479.55
1479.56
1479.57
1479.57
1479.57
1479.58
1479.57
1479.59
1479.63
1479.47
1479.45
1460.25
1460.22
1460.21
1460.17
1460.17
1460.09
1460.04
1459.94
1459.9
1459.84
1459.77
1459.62
1459.53
1459.43
1459.32
1459.21
1459.12
1459.14
1459.49
1459.5
1459.65
1459.76
1459.85
1459.92
1459.97
1460.02
1460.05
1460.07
1460.08
1460.09
1460.1
1460.11
1460.2
1460.14
1460.16
1460.08
1460.15
1460.08
1459.98
1459.9
1441.1
1441.03
1440.99
1440.94
1440.88
1440.79
1440.72
1440.65
1440.57
1440.5
1440.4
1440.25
1440.13
1439.99
1439.82
1439.53
1440.09
1440.38
1439.69
1440.04
1440.24
1440.38
1440.49
1440.56
1440.62
1440.66
1440.68
1440.68
1440.67
1440.69
1440.7
1440.78
1440.81
1440.69
1440.78
1440.65
1440.7
1440.57
1440.46
1440.35
1422.05
1421.96
1421.87
1421.81
1421.7
1421.61
1421.53
1421.44
1421.35
1421.25
1421.14
1421.02
1420.9
1420.77
1420.68
1421.17
1423.32
1421.71
1421
1421.08
1421.17
1421.24
1421.29
1421.33
1421.38
1421.4
1421.39
1421.37
1421.41
1421.94
1421.33
1421.39
1421.37
1421.39
1421.36
1421.28
1421.27
1421.07
1420.96
1420.83
1403.11
1402.99
1402.87
1402.79
1402.66
1402.54
1402.4
1402.35
1402.22
1402.12
1402
1401.88
1401.76
1401.64
1401.97
1403.18
1403.45
1402.37
1402.17
1402.16
1402.16
1402.14
1402.12
1402.14
1402.22
1402.24
1402.18
1402.3
1402.55
1402.53
1402.26
1402.2
1402.14
1402.06
1402.11
1402.01
1401.79
1401.68
1401.54
1401.38
1384.27
1384.11
1383.96
1383.85
1383.64
1383.53
1383.34
1383.4
1383.16
1383.06
1382.96
1382.86
1382.78
1382.76
1383.42
1383.6
1383.59
1383.58
1383.56
1383.4
1383.28
1383.13
1383.36
1383.64
1383.24
1383.42
1382.91
1383.28
1383.3
1383.18
1383.1
1383.03
1382.92
1382.99
1382.95
1382.6
1382.49
1382.35
1382.2
1382.02
1365.5
1365.3
1365.14
1364.91
1364.76
1364.59
1364.44
1364.5
1364.21
1364.12
1364.03
1363.96
1363.91
1363.95
1364.22
1364.5
1364.35
1364.43
1364.69
1364.61
1364.4
1364.39
1365.19
1365.2
1364.45
1364.91
1364.05
1364.2
1364.04
1364.02
1363.95
1363.78
1363.77
1363.73
1363.52
1363.39
1363.25
1363.1
1362.94
1362.75
1346.81
1346.57
1346.38
1346.1
1345.91
1345.73
1345.58
1345.59
1345.35
1345.26
1345.2
1345.17
1345.18
1345.29
1345.27
1345.36
1345.32
1344.9
1345.35
1345.91
1345.39
1345.91
1346.11
1345.89
1345.51
1345.4
1345.29
1345.24
1344.96
1344.98
1344.73
1344.64
1344.56
1344.44
1344.31
1344.19
1344.07
1343.94
1343.83
1343.64
1328.16
1327.89
1327.64
1327.33
1327.11
1326.92
1326.76
1326.78
1326.53
1326.45
1326.41
1326.39
1326.43
1326.56
1326.58
1326.76
1326.9
1327.05
1327.35
1326.66
1326.29
1326.41
1326.56
1326.74
1326.65
1326.33
1326.49
1326.01
1326.02
1325.91
1325.55
1325.46
1325.32
1325.18
1325.06
1324.98
1324.93
1324.97
1324.97
1324.87
1309.52
1309.23
1308.94
1308.6
1308.36
1308.15
1307.99
1307.98
1307.73
1307.65
1307.61
1307.6
1307.64
1307.76
1308.03
1308.22
1308.37
1308.58
1308.83
1307.65
1307.71
1307.79
1307.71
1307.63
1307.42
1307.83
1307.38
1307.05
1306.97
1306.58
1306.47
1306.29
1306.13
1305.93
1305.52
1305.45
1306.44
1305.86
1306.01
1306.16
1290.89
1290.57
1290.25
1289.88
1289.61
1289.38
1289.23
1289.11
1288.93
1288.85
1288.8
1288.79
1288.84
1289.02
1289.51
1289.62
1289.61
1289.57
1289.57
1289.22
1289
1288.86
1288.73
1288.58
1288.44
1288.33
1288.31
1288.1
1287.8
1287.72
1287.52
1287.41
1287.2
1286.69
1289.24
1291.28
1286.38
1286.93
1287.26
1287.49
1272.25
1271.9
1271.55
1271.15
1270.86
1270.61
1270.42
1270.24
1270.11
1270.02
1269.97
1269.96
1270.03
1270.31
1271.13
1271.31
1270.93
1270.83
1270.49
1270.18
1269.96
1269.79
1269.65
1269.51
1269.37
1269.25
1269.13
1268.96
1268.92
1268.79
1268.78
1268.6
1268.51
1269.48
1271.78
1270.89
1269.22
1269.12
1269.19
1269.3
1253.59
1253.22
1252.83
1252.41
1252.09
1251.82
1251.59
1251.4
1251.24
1251.12
1251.05
1251.01
1251.03
1251.23
1252.74
1254.26
1251.5
1251.29
1251.06
1250.85
1250.7
1250.58
1250.47
1250.34
1250.19
1250.03
1250.39
1250.21
1249.9
1249.94
1249.91
1249.94
1250.57
1251.81
1252.35
1251.73
1251.15
1251.01
1251
1251.08
1234.9
1234.51
1234.09
1233.64
1233.29
1232.99
1232.73
1232.5
1232.31
1232.14
1232
1231.88
1231.77
1231.69
1232.25
1233.14
1231.66
1231.81
1231.62
1231.66
1231.47
1231.35
1231.29
1231.21
1231.16
1232.1
1232.42
1230.73
1231.12
1231.14
1231.26
1232.03
1232.72
1233.29
1233.6
1233.27
1232.92
1232.72
1232.68
1232.74
1216.19
1215.78
1215.33
1214.86
1214.48
1214.14
1213.85
1213.58
1213.35
1213.15
1212.97
1212.81
1212.67
1212.56
1212.53
1212.54
1212.42
1212.29
1212.29
1212.22
1212.06
1212.2
1212.15
1212.08
1212.63
1213.35
1212.17
1212.11
1212.28
1212.41
1213.42
1214.53
1214.93
1215.16
1215.04
1214.67
1214.37
1214.2
1214.16
1214.23
1197.47
1197.04
1196.55
1196.05
1195.64
1195.27
1194.94
1194.64
1194.36
1194.12
1193.89
1193.69
1193.5
1193.32
1193.13
1193.01
1193.05
1192.83
1192.88
1192.77
1192.68
1192.78
1192.63
1192.83
1193.22
1193.36
1193.12
1193.3
1193.49
1193.88
1195.58
1197.23
1197.64
1196.64
1196.14
1195.77
1195.52
1195.4
1195.4
1195.49
1178.74
1178.29
1177.76
1177.24
1176.78
1176.38
1176.01
1175.67
1175.36
1175.07
1174.8
1174.54
1174.3
1174.16
1174.08
1173.73
1173.55
1173.41
1173.23
1173.11
1172.98
1172.97
1173.13
1173.34
1173.54
1173.54
1173.54
1173.68
1173.96
1174.39
1175.41
1181.18
1179.58
1176.69
1176.49
1176.34
1176.27
1176.29
1176.37
1176.53
1160.01
1159.54
1158.96
1158.41
1157.91
1157.47
1157.06
1156.68
1156.33
1156
1155.68
1155.38
1155.14
1154.92
1154.7
1154.38
1154.12
1153.9
1153.7
1153.5
1153.36
1153.47
1153.54
1153.61
1153.57
1153.52
1153.49
1153.69
1154.02
1154.4
1154.94
1155.55
1156.01
1155.99
1156.36
1156.59
1156.78
1156.97
1157.18
1157.42
1141.29
1140.79
1140.16
1139.57
1139.03
1138.55
1138.1
1137.69
1137.29
1136.91
1136.55
1136.24
1135.94
1135.64
1135.32
1134.98
1134.65
1134.33
1134.02
1133.71
1134.13
1133.99
1133.81
1133.53
1133.25
1133.05
1133
1133.27
1133.93
1134.42
1134.99
1135.49
1135.93
1136.34
1136.73
1137.08
1137.39
1137.68
1137.97
1138.26
1122.57
1122.04
1121.36
1120.72
1120.15
1119.63
1119.14
1118.69
1118.25
1117.83
1117.47
1117.11
1116.75
1116.37
1115.98
1115.56
1115.15
1114.77
1114.24
1113.93
1114.71
1114.48
1113.92
1113
1112.72
1111.25
1111.32
1112.37
1113.34
1114.32
1115.06
1115.71
1116.29
1116.81
1117.28
1117.7
1118.08
1118.44
1118.79
1119.11
1103.87
1103.28
1102.56
1101.88
1101.27
1100.71
1100.18
1099.69
1099.22
1098.79
1098.41
1097.99
1097.56
1097.12
1096.64
1096.13
1095.53
1095.36
1095.31
1094.86
1094.4
1094.43
1093.77
1093.7
1092.04
1096.38
1104.23
1091.91
1093.75
1094.91
1095.74
1096.43
1097.04
1097.58
1098.06
1098.51
1098.93
1099.32
1099.69
1100.03
1085.16
1084.54
1083.77
1083.04
1082.38
1081.79
1081.23
1080.7
1080.21
1079.78
1079.36
1078.91
1078.4
1077.95
1077.41
1076.79
1077.23
1079.7
1075.83
1076.08
1075.91
1075.65
1074.78
1073.82
1074.98
1079.94
1080.66
1077.46
1076.77
1077.21
1077.53
1077.9
1078.3
1078.72
1079.13
1079.54
1079.94
1080.33
1080.7
1081.05
1066.45
1065.79
1064.96
1064.19
1063.5
1062.86
1062.27
1061.72
1061.21
1060.71
1060.31
1059.83
1059.1
1058.87
1058.3
1057.89
1065.26
1059.13
1057.87
1057.51
1057.28
1056.93
1056.54
1057.52
1059.06
1060.55
1061.55
1060.46
1059.22
1059.33
1059.37
1059.51
1059.74
1060.03
1060.36
1060.71
1061.08
1061.46
1061.83
1062.19
1047.71
1047.01
1046.14
1045.33
1044.59
1043.92
1043.29
1042.7
1042.17
1041.64
1041.36
1041.01
1040.46
1040.13
1039.79
1042.23
1044.16
1038.48
1038.53
1038.55
1038.46
1038.67
1041.19
1041.92
1042.83
1043.75
1044.38
1042.64
1041.81
1041.43
1041.21
1041.16
1041.23
1041.39
1041.64
1041.95
1042.3
1042.68
1043.08
1043.57
1028.94
1028.21
1027.31
1026.44
1025.67
1024.95
1024.26
1024.02
1023.29
1022.66
1022.19
1021.58
1021.02
1020.4
1020
1031.99
1021.98
1021.19
1020.76
1020.82
1021.08
1023.25
1026.08
1026.51
1026.97
1027.32
1026.66
1024.8
1023.84
1023.19
1022.79
1022.6
1022.55
1022.63
1022.82
1023.1
1023.44
1023.83
1024.21
1025
1010.14
1009.37
1008.43
1007.54
1006.74
1006.02
1005.41
1005.82
1004.63
1003.92
1003.44
1003
1002.67
1002.55
1008.58
1010.43
1001.07
1001.5
1001.89
1002.54
1003.57
1006.03
1010.18
1011.23
1010.89
1009.46
1007.53
1005.96
1004.96
1004.29
1003.87
1003.63
1003.56
1003.62
1003.82
1004.12
1004.54
1005.06
1005.8
1007.68
991.284
990.473
989.504
988.584
987.774
987.076
986.689
986.471
985.556
984.864
984.237
983.61
983.113
982.359
990.067
987.04
984.88
983.682
983.275
983.327
984.085
984.656
988.698
996.065
989.991
987.135
986.158
985.471
984.928
984.524
984.257
984.121
984.106
984.211
984.428
984.755
985.192
985.746
986.38
988.923
972.333
971.506
970.506
969.561
968.736
968.037
967.662
967.411
966.761
966
965.567
965.097
964.964
968.083
970.261
963.717
964.111
963.594
962.905
962.377
963.917
964.43
965.373
965.005
965
964.818
964.823
964.691
964.509
964.349
964.252
964.232
964.298
964.46
964.718
965.073
965.529
966.088
966.778
967.599
953.302
952.45
951.426
950.46
949.612
948.87
948.259
948.516
947.746
946.615
945.859
944.68
943.38
949.821
949.084
948.407
947.12
945.986
944.222
946.094
948.561
943.027
944.179
944.371
944.305
944.294
944.271
944.203
944.122
944.065
944.054
944.103
944.225
944.428
944.717
945.097
945.569
946.14
946.805
947.564
934.172
933.34
932.267
931.309
930.477
929.751
929.137
928.69
928.848
928.12
927.392
926.806
927.484
928.739
928.907
929.21
928.881
928.626
924.534
925.669
925.955
923.976
923.853
924.022
924.005
923.94
923.863
923.788
923.73
923.704
923.722
923.797
923.938
924.155
924.453
924.838
925.316
925.892
926.569
927.352
914.93
914.148
913.033
912.093
911.284
910.586
910.015
909.602
909.337
909.126
908.591
908.881
909.83
910.538
910.668
910.084
909.925
910.303
904.563
905.577
905.689
905.413
904.426
904.026
903.877
903.707
903.558
903.434
903.343
903.292
903.29
903.346
903.468
903.664
903.94
904.303
904.762
905.322
905.992
906.787
895.516
894.747
893.707
892.747
891.908
891.13
890.39
890.724
890.85
890.406
890.247
892.128
892.494
892.824
893.128
891.659
890.813
891.173
886.071
887.026
887.069
886.691
885.267
884.379
883.966
883.633
883.356
883.129
882.954
882.832
882.767
882.762
882.826
882.962
883.179
883.484
883.885
884.391
885.016
885.778
875.972
875.218
874.28
873.349
872.591
871.926
871.608
873.118
872.264
871.923
872.079
874.609
875.101
875.214
875.087
872.32
871.149
870.568
868.241
869.386
870.004
867.799
865.586
864.679
864.054
863.556
863.14
862.795
862.514
862.295
862.136
862.04
862.009
862.049
862.166
862.368
862.666
863.071
863.601
864.283
856.27
855.533
854.696
853.858
853.25
852.678
853.599
854.028
852.635
853.636
852.79
856.237
858.714
855.803
854.515
852.503
851.1
849.913
848.708
848.225
849.184
846.235
845.057
844.404
843.802
843.261
842.778
842.35
841.977
841.656
841.388
841.174
841.018
840.923
840.895
840.944
841.081
841.322
841.704
842.233
836.348
835.689
834.957
834.132
833.444
832.772
836.831
834.097
833.504
833.344
832.896
836.357
843.998
833.304
832.879
831.668
830.552
829.53
828.567
827.681
826.815
825.826
824.983
824.254
823.582
822.96
822.388
821.863
821.381
820.942
820.542
820.184
819.866
819.594
819.372
819.21
819.12
819.123
819.246
819.508
816.37
815.819
815.155
814.409
813.701
813.027
816.678
813.852
813.516
813.055
811.376
816.762
812.882
812.547
811.83
810.959
810.058
809.154
808.256
807.376
806.5
805.65
804.833
804.059
803.326
802.632
801.974
801.349
800.752
800.179
799.629
799.098
798.585
798.091
797.62
797.181
796.788
796.46
796.227
796.141
796.42
795.942
795.323
794.649
793.942
793.196
795.964
792.582
794.064
792.955
791.992
796.522
792.198
792.291
791.413
790.583
789.742
788.886
788.026
787.17
786.319
785.478
784.654
783.852
783.073
782.316
781.576
780.85
780.131
779.415
778.695
777.967
777.223
776.462
775.685
774.898
774.115
773.354
772.649
772.062
776.554
776.12
775.549
774.921
774.267
773.676
775.654
772.169
773.792
772.817
771.902
775.558
772.928
771.643
770.997
770.264
769.495
768.697
767.879
767.049
766.211
765.373
764.538
763.71
762.888
762.07
761.25
760.422
759.577
758.706
757.804
756.857
755.855
754.786
753.648
752.439
751.168
749.84
748.509
747.3
756.782
756.383
755.876
755.347
754.86
755.176
755.324
752.399
754.209
753.608
753.354
753.89
753.456
751.366
750.701
750.13
749.444
748.688
747.892
747.07
746.234
745.39
744.541
743.686
742.824
741.95
741.054
740.124
739.149
738.12
737.031
735.863
734.59
733.194
731.66
729.975
728.118
726.09
724.012
722.745
737.056
736.694
736.253
735.823
735.507
735.92
735.936
734.181
734.207
734.11
733.469
733.286
734.054
732.845
731.27
730.506
729.723
728.932
728.111
727.268
726.431
725.56
724.693
723.815
722.919
721.995
721.031
720.005
718.899
717.7
716.436
715.094
713.578
711.868
709.941
707.76
705.253
702.4
699.546
699.315
717.341
717.016
716.622
716.226
715.903
715.834
716.936
715.823
715.277
714.979
714.718
714.512
714.518
713.824
712.881
711.738
710.215
709.356
708.503
707.624
706.772
705.894
705.007
704.113
703.194
702.239
701.226
700.133
698.944
697.93
697.09
694.691
693.001
691.049
688.804
686.26
683.29
679.558
676.729
674.374
697.689
697.414
697.068
696.685
696.301
695.821
698.373
696.921
696.369
695.957
695.519
695.206
695.522
695.418
694.98
694.081
691.351
690.084
689.102
688.157
687.259
686.365
685.472
684.57
683.649
682.688
681.666
680.576
679.444
678.535
677.224
675.055
673.204
671.194
668.875
666.398
663.81
660.888
659.814
661.594
678.199
677.972
677.685
677.322
676.895
676.322
679.339
677.755
677.338
676.864
676.132
676.306
675.742
675.424
677.297
677.124
671.828
670.558
669.593
668.668
667.781
666.899
666.019
665.127
664.216
663.263
662.251
661.201
660.17
658.999
657.591
655.824
653.904
651.766
649.409
646.778
644.693
644.952
646.279
647.05
658.935
658.746
658.492
658.124
657.646
657.012
659.926
658.652
658.201
657.567
656.678
656.68
656.099
655.32
654.448
653.763
652.07
650.981
650.106
649.217
648.346
647.485
646.622
645.746
644.865
643.938
642.972
642.048
641.073
639.937
638.477
637.034
635.306
633.097
630.958
631.416
631.46
631.418
631.26
630.185
639.949
639.803
639.563
639.202
638.709
637.888
640.394
639.422
638.747
637.975
637.375
636.815
636.207
635.485
634.638
633.71
632.678
631.697
630.755
629.843
628.95
628.095
627.248
626.392
625.54
624.661
623.772
623.053
622.111
621.056
619.833
619.322
618.204
616.821
618.661
621.667
620.887
620.116
619.299
617.67
621.234
621.216
621.23
620.919
620.829
620.073
620.118
619.932
618.965
618.338
618.031
617.465
616.78
616.01
615.166
614.267
613.317
612.339
611.501
610.441
609.526
608.656
607.822
607.005
606.19
605.371
604.571
603.961
603.316
602.396
601.499
601.053
600.993
600.744
604.126
612.844
611.31
604.367
603.413
601.542
602.621
602.767
602.615
603.563
602.672
602.444
600.993
600.701
600.26
599.519
599.065
598.448
597.567
596.698
595.865
594.994
594.037
593.028
592.237
590.955
590
589.125
588.309
587.515
586.725
585.934
585.153
584.448
584.208
582.75
582.039
581.329
581.717
581.899
581.33
583.701
583.166
581.281
583.678
584.958
584.523
584.746
584.592
588.875
586.126
585.076
582.493
582.129
581.642
580.957
580.475
579.926
578.677
579.685
576.873
575.92
574.901
573.789
572.656
573.078
570.395
569.454
568.678
567.941
567.196
566.452
565.732
564.959
564.203
563.434
562.485
562.384
566.958
562.423
564.075
564.601
565.46
566.956
569.736
571.882
567.443
567.634
567.87
569.911
570.287
565.362
566.395
563.195
563.555
561.106
561.465
561.32
559.92
561.232
558.605
557.197
556.024
554.723
553.231
555.096
550.655
549.544
548.882
548.295
547.626
546.969
546.353
545.759
545.184
544.617
544.049
545.438
547.336
543.576
545.965
547.49
549.229
551.642
555.07
558.289
550.707
550.817
551.136
551.776
552.478
546.373
548.896
544.208
544.401
543.815
543.73
543.64
542.786
542.599
543.169
538.674
537.469
535.99
534.296
532.9
530.287
528.314
528.865
528.651
527.961
527.436
527.016
526.627
526.228
525.854
525.601
526.503
526.296
525.747
526.28
528.014
530.462
533.727
537.871
543.817
533.443
533.536
533.776
534.112
534.605
528.14
530.123
526.498
527.076
526.572
526.098
526.478
525.634
524.612
525.744
520.91
519.503
517.66
515.336
512.129
522.916
512.482
511.001
509.712
507.688
507.914
507.99
507.81
507.589
507.432
507.361
508.304
508.075
508.072
508.637
509.445
509.836
512.21
515.518
520.581
515.592
515.733
515.952
516.43
516.69
510.322
511.899
510.88
510.391
509.813
508.946
508.379
508.609
507.088
507.915
504.695
503.053
501.831
500.235
498.424
503.857
502.978
494.054
491.474
493.241
488.169
489.121
489.389
489.35
489.251
489.119
489.58
490.388
489.903
489.608
489.813
488.116
488.933
490.292
492.197
497.395
497.572
497.694
498.738
498.585
493.333
495.226
494.58
493.899
493.256
492.626
491.526
492.098
492.201
489.394
489.895
485.834
486.154
485.131
484.015
484.763
483.092
480.371
479.974
479.143
475.446
474.287
473.732
472.855
472.236
471.602
470.939
470.722
470.001
469.723
470.963
469.024
467.504
468.313
469.193
479.178
479.401
479.535
479.553
481.124
479.456
477.054
477.526
476.578
476.179
475.841
475.148
473.896
476.466
472.874
472.945
469.629
471.024
470.174
469.71
471.312
470.002
468.653
467.379
466.314
464.688
460.472
458.91
457.3
456.115
454.924
453.951
452.999
452.059
450.785
449.237
449.761
447.939
448.765
449.78
461.378
461.641
462.042
462.627
462.822
463.485
457.292
458.294
458.738
458.026
458.232
458.037
457.611
457.104
456.655
456.086
455.023
456.029
455.514
455.439
458.301
458.049
457.12
456.19
455.104
453.546
447.234
444.83
442.764
441.059
439.498
437.979
436.541
435.028
433.486
432.2
431.149
430.551
431.01
432.517
443.771
443.919
444.216
444.661
444.951
445.475
439.629
440.478
440.925
441.073
441.239
441.218
440.634
440.925
440.813
440.13
439.769
439.8
439.921
440.198
442.02
444.223
445.349
445.195
443.629
439.056
433.276
430.665
428.62
426.584
424.915
423.184
421.461
419.571
417.208
415.074
414.768
415.862
417.307
421.218
425.968
426.065
426.24
426.396
427.231
427.343
424.162
424.268
424.322
424.309
424.278
424.231
424.111
424.245
425.265
424.043
423.264
423.116
423.124
423.341
424.03
424.754
425.984
429.464
424.711
419.404
416.779
415.133
413.715
412.216
411.033
409.558
408.176
406.648
404.831
403.685
407.447
408.031
409.265
411.216
407.965
408.123
408.275
408.288
408.256
410.531
409.23
408.316
407.848
407.525
407.262
407.019
406.75
406.49
407.281
406.388
405.76
405.661
405.525
405.389
405.148
404.341
403.85
403.122
402.461
401.463
400.574
399.723
398.874
398.031
397.251
396.529
395.853
395.198
394.741
395.076
396.925
397.583
398.408
399.475
390.032
390.281
390.551
390.807
391.118
391.592
392.761
390.654
390.332
390.185
389.994
389.785
389.56
389.341
389.194
388.919
388.794
388.029
387.897
387.639
386.44
388.059
386.187
387.101
386.339
385.639
385.039
384.509
384.054
383.683
383.405
383.215
383.084
383.033
383.564
384.897
385.854
386.312
386.599
384.948
372.161
372.395
372.62
372.76
372.733
372.108
376.388
375.081
373.4
373.029
372.738
372.493
372.273
372.039
371.784
371.471
370.933
371.185
370.768
370.36
369.708
369.925
369.473
369.062
369.155
369.103
368.961
368.833
368.795
368.869
369.068
369.404
369.875
370.48
372.291
375.181
375.682
376.095
376.487
385.276
354.4
354.634
354.894
355.142
355.388
355.694
356.861
358.461
354.732
355.046
355.061
354.994
354.886
354.746
354.578
354.373
354.104
354.385
354.478
353.897
353.553
353.421
353.398
353.439
353.35
352.54
352.658
352.826
353.096
353.512
354.1
354.899
355.996
357.557
361.468
365.31
364.107
364.968
363.807
374.221
336.678
336.905
337.161
337.397
337.591
337.703
337.418
341.2
340.045
337.917
337.8
337.682
337.571
337.47
337.371
337.269
337.154
337.11
337.211
336.899
336.68
336.529
336.747
337.222
337.573
336.092
336.105
336.388
336.793
337.343
338.063
338.992
340.198
341.522
350.306
348.169
353.245
357.267
350.843
356.446
318.975
319.204
319.476
319.754
320.033
320.34
320.719
322.023
323.318
319.284
319.826
319.971
320.019
320.022
320.004
319.984
319.979
319.985
319.9
319.681
319.538
319.024
321.359
320.041
320.247
319.294
319.182
319.519
319.969
320.568
321.346
322.345
323.622
325.246
327.013
329.046
330.116
331.545
329.77
328.474
301.24
301.47
301.738
302.004
302.253
302.482
302.656
302.498
305.566
304.622
302.722
302.66
302.637
302.603
302.585
302.585
302.602
302.617
302.54
302.336
302.154
301.982
302.602
303.181
302.665
302.303
302.258
302.375
302.702
303.181
303.825
304.644
305.639
306.78
307.951
309.082
310.336
309.589
306.508
303.35
283.438
283.684
283.968
284.254
284.538
284.839
285.198
285.681
286.508
287.801
285.79
285.06
285.067
285.051
285.044
285.056
285.088
285.131
285.139
284.91
285.032
284.791
284.785
285.103
284.921
284.763
284.702
284.772
284.964
285.293
285.761
286.368
287.081
287.81
288.465
289.138
295.008
295.827
294.377
305.815
265.521
265.796
266.105
266.403
266.679
266.943
267.204
267.445
267.642
271.731
270.578
267.691
267.522
267.44
267.416
267.436
267.495
267.581
267.66
267.705
267.722
267.642
267.564
267.144
267.07
266.949
266.86
266.845
266.922
267.113
267.455
267.972
268.616
269.266
269.829
270.406
276.408
273.395
273.447
295.564
247.459
247.765
248.102
248.412
248.677
248.897
249.072
249.186
249.159
252.134
250.37
249.175
249.32
249.409
249.508
249.623
249.755
249.915
250.112
250.334
250.459
250.698
250.629
249.738
249.354
249.132
248.924
248.755
248.638
248.612
248.793
249.274
249.993
250.738
251.328
251.587
253.701
250.287
251.911
305.548
229.259
229.584
229.942
230.268
230.538
230.752
230.911
231.009
231.055
231.184
231.302
231.13
231.194
231.369
231.548
231.713
231.875
232.042
232.215
232.367
232.589
234.556
234.338
232.08
231.606
231.278
230.934
230.566
230.143
229.683
229.492
230.18
231.573
233.028
234.152
234.9
233.501
235.122
256.257
296.473
210.949
211.27
211.631
211.962
212.235
212.447
212.596
212.677
212.671
212.512
212.462
212.525
212.755
213.193
213.493
213.726
213.922
214.089
214.228
214.315
214.287
215.588
215.053
213.929
213.686
213.375
212.947
212.367
211.539
210.214
211.689
212.095
212.058
214.71
215.901
215.686
214.429
219.278
240.672
262.003
192.567
192.864
193.21
193.537
193.817
194.043
194.213
194.317
194.325
194.141
199.064
195.623
194.867
195.348
195.66
195.881
196.075
196.255
196.406
196.515
196.574
196.611
196.525
196.402
196.265
196.075
195.812
195.448
195.063
195.166
200.522
202.328
196.927
196.192
198.967
198.706
197.594
199.29
222.458
227.631
174.153
174.405
174.719
175.039
175.336
175.606
175.846
176.051
176.198
176.246
180.633
180.768
177.458
177.871
178.065
178.164
178.302
178.498
178.69
178.836
178.935
178.995
179.024
179.035
179.02
178.986
178.92
178.759
178.883
180.738
182.118
182.618
182.131
178.742
184.467
183.263
182.202
182.258
206.392
205.071
155.733
155.918
156.187
156.497
156.825
157.159
157.49
157.795
158
158.544
161.356
161.38
160.739
160.923
160.721
160.404
160.449
160.766
161.041
161.232
161.373
161.496
161.597
161.704
161.825
161.973
162.158
162.352
164.574
166.381
166.835
167.141
166.858
163.049
167.168
165.401
164.876
165.282
188.325
188.025
137.311
137.406
137.616
137.925
138.309
138.745
139.212
139.68
140.067
140.778
143.134
143.074
142.492
145.001
143.519
146.164
144.159
143.203
143.553
143.741
143.874
144
144.145
144.332
144.59
144.956
145.479
146.215
148.738
151.262
151.946
151.765
150.526
148.416
150.249
143.326
149.292
148.643
169.546
172.476
118.854
118.839
118.984
119.31
119.788
120.376
121.037
121.728
122.359
122.544
126.224
126.142
125.653
129.231
126.571
130.822
130.133
126.538
126.497
126.446
126.421
126.44
126.519
126.677
126.944
127.36
127.967
128.848
130.194
133.65
139.596
133.888
129.575
129.646
128.922
130.177
130.885
128.989
148.445
155.606
100.291
100.162
100.255
100.636
101.267
102.084
103.038
104.079
105.081
105.572
109.035
109.303
109.097
112.326
110.832
111.949
111.485
110.209
109.379
109.046
108.826
108.679
108.618
108.646
109.038
109.129
109.48
109.947
110.298
110.822
111.023
109.445
109.431
107.439
107.25
123.796
121.424
122.986
126.316
136.871
81.5379
81.3199
81.4051
81.9158
82.7798
83.9069
85.2474
86.7476
88.2259
89.9677
91.8959
91.5181
92.7441
94.3271
94.1588
94.3521
94.555
93.4437
92.1337
91.4788
90.9821
90.6532
90.4678
90.4653
90.7968
91.0105
91.1464
91.5294
91.9162
92.1521
91.9722
91.0397
89.5577
86.8851
108.735
105.103
123.61
106.538
107.462
117.317
62.5085
62.3114
62.5329
63.2938
64.4518
65.8943
67.576
69.444
71.3128
73.9045
75.3195
75.2299
76.6854
77.1978
77.2223
77.2475
77.0048
76.0788
74.8059
73.561
72.6807
72.2066
71.9352
71.9212
72.0872
72.4159
72.8102
73.4415
74.1863
74.9874
75.7153
76.2699
77.8088
81.958
91.6718
81.7272
103.911
85.2562
88.4361
97.5193
43.2847
43.3906
44.0542
45.1888
46.6291
48.303
50.1834
52.214
54.2324
57.0847
59.4697
60.2596
59.9548
59.9158
59.5419
59.2347
58.9985
58.4875
57.4728
55.3974
53.7452
53.0739
52.8795
52.5743
52.9545
53.3071
54.2023
54.9284
55.7315
57.4195
57.7935
57.5437
67.6219
69.8046
63.7627
72.3472
75.8079
66.9387
71.5971
79.3215
24.3038
25.2319
26.6729
28.2388
29.8513
31.568
33.4223
35.3737
37.3436
39.506
42.4963
45.0807
45.092
42.7752
41.3679
39.9568
39.0981
38.4467
38.5124
36.6245
34.1013
32.905
32.5757
32.4901
33.0569
33.8131
35.1586
36.7288
37.5313
40.9967
45.6315
50.699
52.3921
50.568
50.4071
50.5784
46.862
36.4482
59.7093
61.1406
6.20881
8.32324
10.5538
12.4947
14.257
15.8952
17.5022
19.1546
20.7601
22.2307
23.9869
25.304
26.8997
27.293
24.0712
19.8363
17.3005
15.6069
16.2019
16.2789
10.9045
9.99063
10.0699
10.5588
11.4637
14.2848
19.7528
27.7135
33.2519
34.9111
36.0499
36.8232
35.423
32.4686
33.0767
34.1118
34.1033
32.268
41.3129
46.0507
-7.92904
-6.10722
-4.41888
-2.77023
-1.27299
-0.471974
0.423704
1.82526
3.38488
4.63296
5.41826
5.73875
5.37344
3.91431
3.74396
-1.23572
-9.00663
-12.2427
-16.0108
-11.458
-13.8729
-16.8977
-16.9667
-15.7095
-9.50384
4.74636
19.32
22.7641
22.3802
20.6767
18.5945
14.7404
12.9949
11.7722
12.214
13.7067
11.9861
0.486381
30.6602
27.7644
-2.09104
-2.66444
-3.71279
-2.14581
-3.02613
-11.9596
-17.6449
-18.7903
-18.0698
-17.2782
-16.9117
-17.3935
-18.9145
-21.0698
-25.3058
-32.0786
-41.1086
-48.2847
-55.194
-54.4324
-53.4246
-61.0032
-57.3319
-46.108
-23.3298
0.000472535
1.87193
-4.68027
-3.92428
-4.14463
-4.52346
-7.73061
-11.2247
-12.4616
-6.67807
5.94162
9.27179
0.777944
9.42818
8.37489
-2.01823
-2.02301
-2.18994
-2.33853
-3.33589
-6.24329
-10.1588
-13.8126
-18.3317
-24.3758
-30.0987
-35.7734
-41.5674
-48.3371
-56.9428
-69.6542
-85.4794
-100.291
-114.298
-125.274
-127.148
-137.416
-125.798
-98.0391
-66.8704
-53.6627
-42.5039
-39.6389
-37.7957
-34.9388
-29.4323
-18.3109
-8.48103
-8.86405
-4.64662
-2.29019
-1.72981
-1.44948
-0.0515915
1.71036
-1.99092
-1.9738
-1.9417
-1.89025
-1.88253
-2.03534
-2.51659
-4.02234
-7.36632
-12.4314
-18.1353
-22.9975
-27.234
-35.1346
-45.5466
-61.893
-89.5205
-135.406
-222.483
-330.332
-398.598
-418.477
-390.623
-292.729
-176.286
-106.316
-63.8472
-44.4166
-37.6301
-29.3439
-18.7089
-9.61112
-4.04261
-2.4756
-1.83795
-1.50684
-1.43068
-1.42547
-1.00012
-0.433028
-1.97819
-2.1166
-2.08932
-1.92101
-1.82994
-1.94346
-2.29051
-2.93265
-3.96965
-5.64655
-7.9093
-10.2345
-12.6237
-17.1733
-24.774
-37.3036
-61.4009
-119.767
-225.906
-441.316
-683.34
-741.31
-643.556
-402.047
-236.289
-113.64
-56.1538
-31.5705
-19.5403
-12.2577
-7.53718
-4.62749
-3.00646
-2.16727
-1.75457
-1.5419
-1.4465
-1.43876
-1.9489
-5.11127
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar> 10(276.998 268.077 263.496 259.325 256.88 256.877 259.316 263.483 268.061 276.978);
}
inletWall
{
type calculated;
value nonuniform List<scalar>
30
(
390.93
362.075
332.803
308.096
286.808
24.2693
194.323
298.724
379.282
430.057
-57.9519
-50.5393
-93.9916
-273.204
-418.918
390.901
362.048
332.78
308.076
286.788
23.5068
194.036
298.595
379.222
430.026
-66.2783
-56.4908
-97.9159
-276.448
-421.23
)
;
}
bottleWall
{
type calculated;
value nonuniform List<scalar>
290
(
1764.28
1744.63
1724.94
1705.22
1685.46
1665.73
1646.17
1626.96
1607.32
1588.03
1568.72
1549.96
1531.74
1514.2
1497.18
1480.11
1462.62
1430.01
1398.39
1372.54
1353.49
1338.57
1324.95
1311.44
1297.67
1282.89
1267.57
1251.4
1234.22
1216.48
1198.71
1180.6
1162.08
1143.34
1124.53
1105.79
1086.91
1067.8
1049.55
1032.68
1019.19
1004.71
991.515
980.23
971.508
964.331
958.179
952.562
947.498
942.512
937.071
929.724
921.347
909.967
894.06
872.879
846.727
816.699
782.89
744.959
704.651
662.822
619.974
576.479
533.119
488.787
448.176
413.657
386.289
365.014
348.619
335.716
325.228
313.155
297.255
278.173
258.095
239.449
222.497
205.436
188.172
170.873
152.278
133.146
115.369
102.658
88.1645
74.13
60.5579
48.2057
36.7496
26.4543
16.2222
6.49697
0.510959
-2.76538
-8.50005
-16.0561
-0.660181
-1.58874
1781.13
1780.97
1780.79
1780.61
1780.42
1780.23
1780.02
1779.81
1779.59
1779.36
1779.13
1778.89
1778.65
1778.4
1778.15
1777.9
1777.64
1777.39
1777.14
1776.89
1776.63
1776.39
1776.15
1775.91
1775.68
1775.48
1775.27
1775.08
1774.91
1774.75
1774.61
1774.48
1774.37
1774.28
1774.21
1774.16
1774.12
1774.09
1774.09
1774.09
1782.22
1782.14
1782.06
1781.96
1781.87
1781.76
1781.65
1781.53
1781.41
1781.28
1784.68
1784.68
1784.72
1784.77
1784.78
1784.78
1784.79
1784.78
1784.75
1784.71
1784.64
1784.56
1784.47
1784.37
1784.26
1784.14
1784.03
1783.92
1783.81
1783.7
1783.6
1783.5
1783.42
1783.33
1783.26
1783.19
1783.12
1783.06
1782.99
1782.93
1782.88
1782.82
1782.77
1782.71
1782.65
1782.59
1782.52
1782.46
1782.38
1782.3
1774.87
1755.19
1735.53
1715.84
1696.11
1676.34
1656.55
1636.73
1616.9
1597.07
1577.23
1557.51
1537.92
1518.38
1498.9
1479.52
1460.25
1441.1
1422.05
1403.11
1384.27
1365.5
1346.81
1328.16
1309.52
1290.89
1272.25
1253.59
1234.9
1216.19
1197.47
1178.74
1160.01
1141.29
1122.57
1103.87
1085.16
1066.45
1047.71
1028.94
1010.14
991.284
972.333
953.302
934.172
914.93
895.516
875.972
856.27
836.348
816.37
796.42
776.554
756.782
737.056
717.341
697.689
678.199
658.935
639.949
621.234
602.621
584.523
567.443
550.707
533.443
515.592
497.395
479.178
461.378
443.771
425.968
407.965
390.032
372.161
354.4
336.678
318.975
301.24
283.438
265.521
247.459
229.259
210.949
192.567
174.153
155.733
137.311
118.854
100.291
81.5379
62.5085
43.2847
24.3038
6.20881
-7.92904
-2.09104
-2.01823
-1.99092
-1.97819
)
;
}
atmosphere
{
type calculated;
value nonuniform List<scalar>
80
(
-2.54402
-2.38621
-2.27367
-2.14863
-2.05463
-1.99704
-1.9677
-1.962
-1.962
-1.962
-1.96201
-1.96202
-1.96204
-1.9621
-1.96254
-1.9731
-2.00585
-1.99252
-1.96225
-1.962
-1.96245
-1.97695
-2.03065
-2.10409
-2.01334
-1.97003
-9.9157
-135.903
-347.957
-1386
-1553.89
-1592.88
-1727.59
-826.405
-303.111
-196.115
-25.6751
-1.96945
-2.18049
-2.40456
-1.96204
-1.9811
-1.97737
-1.97127
-1.96764
-1.9661
-1.96475
-1.96262
-1.96206
-1.962
-3.38343
-6.02598
-1.96212
-1.96234
-1.96314
-1.96702
-1.96986
-100.631
-240.33
-860.449
-1795.11
-1941.39
-1603.66
-610.787
-271.17
-1.96343
-1.96208
-1.96229
-1.96205
-1.962
-1.96207
-1.96352
-1.97048
-1.98256
-1.97585
-1.967
-1.96556
-1.98359
-2.07755
-2.4845
)
;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"shivamshahi12@gmail.com"
] | shivamshahi12@gmail.com | |
24eb9e1a96db33d6c38bbb75aa3508b41b698571 | 1c9956648654fc97ad9910823ad2f25558f10339 | /hdu/HDU2191:珍惜现在,感恩生活(二维多重背包).cpp | 758428c537c3683af825ce126110cf45e0812b81 | [] | no_license | AvlTreeQL/ICPC_Code | e997b0dc56a37545f9613635431e772e5f5e903d | 69f2013029aca7c6340eaff380e511182081fe1f | refs/heads/master | 2023-09-01T07:43:29.231801 | 2021-10-27T11:11:58 | 2021-10-27T11:11:58 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,823 | cpp | /*
题目描述:
为了挽救灾区同胞的生命,心系灾区同胞的你准备自己采购一些粮食支援灾区,
现在假设你一共有资金n元,而市场有m种大米,
每种大米都是袋装产品,其价格不等,并且只能整袋购买。
请问:你用有限的资金最多能采购多少公斤粮食呢?
输入:
输入数据首先包含一个正整数C,表示有C组测试用例
,每组测试用例的第一行是两个整数n和m(1<=n<=100, 1<=m<=100),分别表示经费的金额和大米的种类,
然后是m行数据,每行包含3个数p,h和c(1<=p<=20,1<=h<=200,1<=c<=20),分别表示每袋的价格、每袋的重量以及对应种类大米的袋数。
输出:
对于每组测试数据,请输出能够购买大米的最多重量,你可以假设经费买不光所有的大米,并且经费你可以不用完。每个实例的输出占一行。
样例输入:
1
8 2
2 100 4
4 100 2
样例输出:
400
*/
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int main() {
// freopen("input.txt", "r", stdin);
int C;
scanf("%d", &C);
while (C--) {
int n, m;
scanf("%d%d", &n, &m);
int p[110] = { 0 };
int w[110] = { 0 };
int num[110] = { 0 };
int dp[110][1100] = { 0 };
for (int i=1; i <= m; i++) {
scanf("%d%d%d", &p[i], &w[i], &num[i]);
}
for (int i = 1; i <= m; i++) {//种类 物品种类 m是种类总数
for (int j = 1 ; j <= n; j++) {//金额 体积 n是总体积
for (int k = 0; k <= num[i]; k++) {//k 每种物品的数量
if (k*p[i] <= j) {
dp[i][j] = max(dp[i][j], dp[i - 1][j - k*p[i]] + k*w[i]);
}
else {
// dp[i][j] = dp[i - 1][j];
break;
}
}
}
}
printf("%d\n", dp[m][n]);
}
return 0;
} | [
"374655767@qq.com"
] | 374655767@qq.com |
1c97c6e1fc1a3ef02886026f6e86d141c5d5d4b4 | 1863e7d30a16f36392ed3830ffdc5ba951c91f92 | /Georgette/Effect.cpp | 78be19cb7c6246bba8c109e4813c8387708d6510 | [] | no_license | mathieubecher/Georgette | ec1f4b6b093a78f70b58e4438097f6048ae30706 | edd61a01c68bfba23a86f923bff6ab8705d58899 | refs/heads/master | 2020-07-30T17:15:39.440064 | 2019-10-03T21:34:56 | 2019-10-03T21:34:56 | 210,300,101 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 212 | cpp | #include "pch.h"
#include "Effect.h"
#include "Game.h"
Effect::Effect()
{
Game::Get()->AddEffect(this);
}
Effect::~Effect()
{
//Game::Get()->RemoveEffect(this);
}
void Effect::Update() {
} | [
"mbelkhenchir@gmail.com"
] | mbelkhenchir@gmail.com |
ae56dbd9609a47c15aeac9566ad76ddd09e00f95 | 135759dafda9bc6e05631682c6d518656d602b6a | /tracer/basemain.cpp | 956eb41bb98d2ab0a884a11aead2d0e6f16c6141 | [] | no_license | qq53/trace | 783a09a150356966de8f20453273c1dfb3cdbabf | 23202b964463e75c9cddb32d8fb3cfeaef779f68 | refs/heads/master | 2021-01-21T04:50:48.098373 | 2016-06-05T14:34:03 | 2016-06-05T14:34:03 | 44,669,317 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | cpp | #include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
#include <sys/ptrace.h>
#include <sys/wait.h>
#include <unistd.h>
#include <sys/reg.h>
#include <sys/syscall.h>
#include <sys/user.h>
#include <string.h>
#include <fcntl.h>
#include "pre.h"
#include "main.h"
#include "basecall.cpp"
#define STACK_SIZE 0x8000
int main(int argc, char *argv[])
{
long call_num;
int status;
int insyscall = 0;
char **args;
if(argc < 4){
printf("Usage: tracer xx rodata_addr rodata_size\n");
return 0;
}
rodata_addr_start = atoi(argv[2]);
rodata_size = atoi(argv[3]);
rodata_addr_end = rodata_size + rodata_addr_start;
init_call();
child = fork();
if (child == 0) {
ptrace(PTRACE_TRACEME, 0, NULL, NULL);
if(argc <= 4)
args = NULL;
else
args = &argv[4];
close(1);
execve(argv[1], args, NULL);
} else {
while (1) {
wait(&status);
if (WIFEXITED(status))
break;
call_num = ptrace(PTRACE_PEEKUSER, child, BYTES * ORIG_REG0, NULL);
if (insyscall == 0) {
insyscall = 1;
reg0 = ptrace(PTRACE_PEEKUSER, child, BYTES * REG0, NULL);
} else {
insyscall = 0;
ptrace(PTRACE_GETREGS, child, NULL, ®s);
syscall_trace[call_num](call_num);
}
ptrace(PTRACE_SYSCALL, child, NULL, NULL);
}
}
return 0;
}
| [
"sen1993@xiyoulinux.org"
] | sen1993@xiyoulinux.org |
71751604f83ff538157fa9f45bdbbb0066e4d830 | 106e93bdacea5476487d220dfc763a6940babb53 | /Game/portal_entry.cpp | 983a2c263c347294a3c2de94ce6fb82fb851a88e | [] | no_license | Douglas-Pichard/Survive-It- | 81381c560e5729e11440c5fb12a9ec83264fc153 | c8bfdccd105ce4b596bb66bbbd008eef34e8dd44 | refs/heads/master | 2022-10-18T05:57:05.302716 | 2020-06-17T06:05:21 | 2020-06-17T06:05:21 | 266,086,920 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,031 | cpp | #pragma once
#include "portal_entry.h"
#include "scene.h"
Portal_Entry::Portal_Entry()
: Game_Object("Portal.Entry", "Texture.Portal.Entry")
{
_width = 200;
_height = 200;
_translation = Vector_2D(50, 300);
}
Portal_Entry::~Portal_Entry()
{
}
void Portal_Entry::render(Uint32 milliseconds_to_simulate, Assets* assets, SDL_Renderer* renderer, Configuration* config)
{
Animated_Texture* texture = (Animated_Texture*)assets->get_asset(_texture_id);
texture->update_frame(milliseconds_to_simulate);
Game_Object::render(milliseconds_to_simulate, assets, renderer, config);
}
void Portal_Entry::simulate_AI(Uint32, Assets*, Input*, Scene* scene)
{
// Get player object from scene
// player = scene->get_game_object
// Calculate portal center
// portal_center = _translation + Vector_2D( width / 2, height / 2 )
// player_center = player->translation() + Vector_2D(player->width() / 2, player->height() / 2)
// Get distance from portal center to player center
// distance_to_player = (portal_center - player_center).magnitude();
// If distance is less than some tolerance, i.e. they are in the trigger region
// if(distance_to_player < 50.0f)
// If triggered, teleport to some exit position
// portal_exit = scene->get_game_object
// exit_location = portal_exit->translation() + Vector_2D(100.f, 0.f)
// Set player translation to exit position
// player->set_translation(exit_location)
Game_Object* player = scene->get_game_object("Player");
Vector_2D portal_center = _translation
+ Vector_2D((float)_width / 2, (float)_height / 2);
Vector_2D player_center = player->translation()
+ Vector_2D((float)player->width() / 2, (float)player->height() / 2);
float distance_to_player = (portal_center - player_center).magnitude();
if(distance_to_player < 50.0f)
{
Game_Object* portal_exit = scene->get_game_object("Portal.Exit");
Vector_2D portal_exit_location = portal_exit->translation()
+ Vector_2D(100.f, 0.f);
player->set_translation(portal_exit_location);
}
}
| [
"7581@ait.nsw.edu.augit config user.name Douglas-Pichardgit commit -mgit config user.email 7581@ait.nsw.edu.au"
] | 7581@ait.nsw.edu.augit config user.name Douglas-Pichardgit commit -mgit config user.email 7581@ait.nsw.edu.au |
1dba43e91e2aa46190ebcb7e59bc566942366bf9 | c5f3f36394557254c105ba229ced551851e29712 | /source/librii/gpu/DLInterpreter.hpp | def626227d56e957862e2b1a5e7ad7451b8545d9 | [
"LicenseRef-scancode-public-domain"
] | permissive | riidefi/RiiStudio | 78a21b002f639863fb7c4d18608efac39107a098 | 22d35de909cfce53e49415c693eb2ba65fde2859 | refs/heads/master | 2023-08-22T17:51:38.192281 | 2023-08-21T19:48:29 | 2023-08-21T19:48:29 | 206,892,230 | 85 | 21 | null | 2023-09-06T20:14:21 | 2019-09-07T00:16:23 | C++ | UTF-8 | C++ | false | false | 1,329 | hpp | #pragma once
#include "GPUAddressSpace.hpp"
#include "GPUCommand.hpp"
#include <core/common.h>
#include <librii/gx.h>
#include <oishii/reader/binary_reader.hxx>
namespace librii::gpu {
struct QBPCommand {
BPAddress reg;
u32 val;
};
struct QXFCommand {
u16 reg;
u32 val; // first val
std::vector<u32> vals; // first val repeated
};
struct QCPCommand {
u8 reg;
u32 val;
};
class QDisplayListHandler {
public:
virtual ~QDisplayListHandler() {}
virtual Result<void> onCommandBP(const QBPCommand& token) { return {}; }
virtual Result<void> onCommandCP(const QCPCommand& token) { return {}; }
virtual Result<void> onCommandXF(const QXFCommand& token) { return {}; }
virtual Result<void> onCommandDraw(oishii::BinaryReader& reader,
librii::gx::PrimitiveType type, u16 nverts,
u32 stream_end) {
return {};
}
virtual Result<void> onCommandIndexedLoad(u32 cmd, u32 index, u16 address,
u8 size) {
return {};
}
virtual Result<void> onStreamBegin() { return {}; }
virtual Result<void> onStreamEnd() { return {}; }
};
Result<void> RunDisplayList(oishii::BinaryReader& reader,
QDisplayListHandler& handler, u32 dlSize);
} // namespace librii::gpu
| [
"34194588+riidefi@users.noreply.github.com"
] | 34194588+riidefi@users.noreply.github.com |
ac44956874c8108a5cc42ffa3aed936a64923c22 | 8945793fe20c0b9b494e238d3109daa2a1a6ec1b | /src/Bussines.cpp | ab26e5900aaf5a20878a91f5d42ae54fcbaf0cef | [] | no_license | michaelkotor/laba05 | 5436a07c83c867bb2ebafb01fb8e3b127db8a0aa | 21b2cd226a0dc80e20302a034608c91ecc568bfc | refs/heads/master | 2023-01-08T18:43:31.242856 | 2020-11-12T22:40:17 | 2020-11-12T22:40:17 | 305,148,890 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,052 | cpp | //
// Created by Michael Kotor on 10/13/20.
//
#include "../include/Bussines.h"
#include "cstring"
#include <iomanip>
#include <ValidateString.h>
#include <InputException.h>
Business::Business() : IP(), Tourist() {
this->counterAddress = 0;
}
Business::Business(const char *oneAddress) : Tourist(oneAddress) {
this->counterAddress = 0;
addAddress(oneAddress);
}
Business::~Business() {
}
char *Business::getAddresses() {
return this->addresses[0];
}
char *Business::getName() {
return this->name;
}
char *Business::getSurname() {
return this->surname;
}
int Business::getDateOfBirth() {
return this->dateOfBirth;
}
void Business::setName(const char *name) {
IP::setName(name);
}
void Business::setSurname(const char *surname) {
Tourist::setSurname(surname);
}
void Business::setDateOfBirth(int dateOfBirth) {
Tourist::setDateOfBirth(dateOfBirth);
}
void Business::input(istream &in) noexcept(false) {
ValidateString validateString;
bool isBroken = true;
while(isBroken) {
try {
cout << "Enter name: " << endl;
in.getline(this->name, 20);
validateString.validateStringEnglish(this->name, 20);
isBroken = false;
} catch (InputException &e) {
cout << e.what() << endl;
}
}
isBroken = true;
while(isBroken) {
try {
cout << "Enter surname: " << endl;
in.getline(this->surname, 20);
validateString.validateStringEnglish(this->surname, 20);
isBroken = false;
} catch (InputException &e) {
cout << e.what() << endl;
}
}
isBroken = true;
while(isBroken) {
try {
cout << "Enter address: " << endl;
in.getline(this->address, 20);
validateString.validateStringEnglish(this->address, 20);
isBroken = false;
} catch (InputException &e) {
cout << e.what() << endl;
}
}
isBroken = true;
while(isBroken) {
try {
cout << "Enter numberOfPassport: " << endl;
in.getline(this->numberOfPassport, 20);
if(in.fail()) {
in.clear();
in.ignore(256,'\n');
throw InputException("Invalid char!");
}
validateString.validateStringEnglish(this->numberOfPassport, 20);
isBroken = false;
} catch (InputException &e) {
cout << e.what() << endl;
}
}
isBroken = true;
while(isBroken) {
try {
cout << "Enter numberOfLinsence: " << endl;
in >> this->numberOfLinsence;
if(in.fail()) {
in.clear();
in.ignore(256,'\n');
throw InputException("Invalid char!");
}
if(in.get() != '\n') {
throw InputException("Invalid char!");
}
validateString.validateInteger(this->numberOfLinsence);
isBroken = false;
} catch (InputException &e) {
cout << e.what() << endl;
}
}
isBroken = true;
while(isBroken) {
try {
cout << "Enter dateOfBirth(YEAR): " << endl;
in >> this->dateOfBirth;
if(in.fail()) {
in.clear();
in.ignore(256,'\n');
throw InputException("Invalid char!");
}
if(in.get() != '\n') {
throw InputException("Invalid char!");
}
validateString.validateInteger(this->dateOfBirth);
isBroken = false;
} catch (InputException &e) {
cout << e.what() << endl;
}
}
}
void Business::output(ostream &out) const {
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
cout << left << "|" << setw(20) << "Name" << "|" << setw(20) << right << this->name << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
cout << left << "|" << setw(20) << "Surname" << "|" << setw(20) << right << this->surname << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
cout << left << "|" << setw(20) << "NumberOfLinsence" << "|" << setw(20) << right << this->numberOfLinsence << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
out << left << "|" << setw(20) << "NumberOfPassport" << "|" << setw(20) << right << this->numberOfPassport << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
out << left << "|" << setw(20) << "Address" << "|" << setw(20) << right << this->address << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
cout << left << "|" << setw(20) << "DateOfBirth" << "|" << setw(20) << right << this->dateOfBirth << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
if(this->numberOfLinsence > 0) {
cout << left << "|" << setw(21) << right << "Payments" << setw(21) << right << setfill(' ') << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
}
for(int i = 0; i < this->counterPayments; i++) {
cout << left << "|" << setw(20) << "Date" << "|" << setw(20) << right << this->payments[i].date << "|" << endl;
cout << left << "|" << setw(20) << "Value" << "|" << setw(20) << right << this->payments[i].value << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
}
if(this->counterPayments > 0) {
cout << left << "|" << setw(21) << right << "Payments" << setw(21) << right << setfill(' ') << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
}
for(int i = 0; i < this->counterPayments; i++) {
cout << left << "|" << setw(20) << "Date" << "|" << setw(20) << right << this->payments[i].date << "|" << endl;
cout << left << "|" << setw(20) << "Value" << "|" << setw(20) << right << this->payments[i].value << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
}
if(this->counterAddress > 0) {
cout << left << "|" << setw(21) << right << "Addresses" << setw(21) << right << setfill(' ') << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
}
for(int i = 0; i < this->counterAddress; i++) {
cout << left << "|" << setw(20) << "Address" << "|" << setw(20) << right << this->addresses[i] << "|" << endl;
cout << setw(43) << setfill('-') << '-' << endl << setfill(' ');
}
}
int Business::addAddress(const char *address) {
strcpy(this->addresses[this->counterAddress++], address);
return this->counterAddress;
}
void Business::createNewAddress() {
cin.clear();
while (cin.get() != '\n')
{
continue;
}
char temp[20];
cout << "Create new Address" << endl;
cin.getline(temp, 20);
addAddress(temp);
}
| [
"milan3020@gmail.com"
] | milan3020@gmail.com |
c163b63942a6cfb57b00c82955f6eae58b1dcd88 | dc1bc5ca754e9bc6e6c292a2ca51b747dc728120 | /src/compiler.cc | e9e7fd7fd311beac10540e0bd3effcdfcd8604cd | [
"MIT"
] | permissive | xukl/BASIC-Compiler | 3c50239f8c4a8badab31ceaa6b784d2d1089d4c8 | 3b0f752df5b9301aa116811729e362bfeaa05e58 | refs/heads/master | 2022-11-25T11:16:59.452155 | 2020-07-31T01:50:34 | 2020-07-31T01:50:34 | 281,577,665 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 427 | cc | #include "to_raw.hpp"
#include <iostream>
int main()
{
try
{
auto &&prog = statement::read_program(std::cin);
auto &&cfg = basic_block::gen_cfg(prog);
auto &&obj_code = translate::translate_to_obj_code(cfg);
auto &&linked_code = link::link(obj_code);
auto &&raw_prog = to_raw::to_raw_prog(linked_code);
to_raw::print_raw_prog(std::cout, raw_prog);
}
catch (const char *e)
{
std::cerr << e << std::endl;
}
}
| [
"xu2k3l4@outlook.com"
] | xu2k3l4@outlook.com |
a0914a105b6083db6aa0cda688fc4478ccec5fb1 | e8b4083cc4c578502c26922b5e8676089a4425e1 | /CPU/simparam.h | eaee82adb674200a98c251bf6164fb616cdd8531 | [] | no_license | nshettell/1D_NLC | f8e9f32421863de0856bde11a585d7b8c8ce8bdb | c3187a3c97c6ea11469af523c8a6a72bd17e0a4c | refs/heads/master | 2021-01-15T17:40:38.327258 | 2012-11-01T17:52:04 | 2012-11-01T17:52:04 | 8,931,401 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 659 | h | #ifndef PARAMSIM_H
#define PARAMSIM_H
//Class to read in the simulation parameters from a file
// Adapted to the JQ ED code
class PARAMS
{
public:
double NN_; //the number of lattice sites
double JJ_; //the heisenberg exchange
double hh_; //the next-nearest neighbor heisenberg exchange
int valvec_; // 1 for -values only, 2 for vals AND vectors
// FULL_DIAG?
PARAMS(){
//initializes commonly used parameters from a file
ifstream pfin;
pfin.open("param.dat");
pfin >> NN_;
pfin >> JJ_;
pfin >> hh_;
pfin >> valvec_;
pfin.close();
}//constructor
}; //PARAMS
#endif
| [
"kslimes@gmail.com"
] | kslimes@gmail.com |
b5beaed9256e2ffc77cd52a189faef24998ded75 | b90444530bd7999168c6ea5e3c17657ae2a0b925 | /src/wallet/test/wallet_test_fixture.h | cffbd7ca329c86c845c6c93695f0b1150cc5c4ff | [
"MIT"
] | permissive | Bitcoin3-source/Bitcoin3.0 | 4723d3db6fa2edc5734ab28dac87cf131bbcfe9e | 4c623be5200032fd49b54e01147da721e142f4f2 | refs/heads/main | 2023-03-25T20:34:26.331459 | 2021-03-25T02:31:47 | 2021-03-25T02:31:47 | 343,466,598 | 0 | 3 | MIT | 2021-03-25T02:31:48 | 2021-03-01T15:36:34 | null | UTF-8 | C++ | false | false | 669 | h | // Copyright (c) 2016-2018 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 BITCOIN3_WALLET_TEST_WALLET_TEST_FIXTURE_H
#define BITCOIN3_WALLET_TEST_WALLET_TEST_FIXTURE_H
#include <test/test_bitcoin3.h>
#include <wallet/wallet.h>
#include <memory>
/** Testing setup and teardown for wallet.
*/
struct WalletTestingSetup: public TestingSetup {
explicit WalletTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
~WalletTestingSetup();
CWallet m_wallet;
};
#endif // BITCOIN3_WALLET_TEST_WALLET_TEST_FIXTURE_H
| [
"superdaddynz@gmail.com"
] | superdaddynz@gmail.com |
4833f7b63bcb7e983bf2ebe36f23d04396ab0309 | d86aedd0eb141b8d5fbaf30f41425ff97c17d6f4 | /src/qt/catscoin/catscoingui.cpp | c14bf10056cb4b77f2fc015b644f0b2279966173 | [
"MIT"
] | permissive | catscoinofficial/src | 277f6d4458e8ee3332ea415e0ed8b5253d22071b | eb9053362c3e9c90fe2cac09a65fad7d64d5f417 | refs/heads/master | 2023-02-28T10:39:10.685012 | 2021-02-07T10:54:28 | 2021-02-07T10:54:28 | 336,761,478 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 21,816 | cpp | // Copyright (c) 2019 The CATSCOIN developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "qt/catscoin/catscoingui.h"
#ifdef Q_OS_MAC
#include "macdockiconhandler.h"
#endif
#include "qt/guiutil.h"
#include "clientmodel.h"
#include "optionsmodel.h"
#include "networkstyle.h"
#include "notificator.h"
#include "guiinterface.h"
#include "qt/catscoin/qtutils.h"
#include "qt/catscoin/defaultdialog.h"
#include "qt/catscoin/settings/settingsfaqwidget.h"
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QApplication>
#include <QColor>
#include <QShortcut>
#include <QKeySequence>
#include <QWindowStateChangeEvent>
#include "util.h"
#define BASE_WINDOW_WIDTH 1200
#define BASE_WINDOW_HEIGHT 740
const QString CATSCOINGUI::DEFAULT_WALLET = "~Default";
CATSCOINGUI::CATSCOINGUI(const NetworkStyle* networkStyle, QWidget* parent) :
QMainWindow(parent),
clientModel(0){
/* Open CSS when configured */
this->setStyleSheet(GUIUtil::loadStyleSheet());
this->setMinimumSize(BASE_WINDOW_WIDTH, BASE_WINDOW_HEIGHT);
GUIUtil::restoreWindowGeometry("nWindow", QSize(BASE_WINDOW_WIDTH, BASE_WINDOW_HEIGHT), this);
#ifdef ENABLE_WALLET
/* if compiled with wallet support, -disablewallet can still disable the wallet */
enableWallet = !GetBoolArg("-disablewallet", false);
#else
enableWallet = false;
#endif // ENABLE_WALLET
QString windowTitle = tr("Cats Coin") + " - ";
windowTitle += ((enableWallet) ? tr("Wallet") : tr("Node"));
windowTitle += " " + networkStyle->getTitleAddText();
setWindowTitle(windowTitle);
#ifndef Q_OS_MAC
QApplication::setWindowIcon(networkStyle->getAppIcon());
setWindowIcon(networkStyle->getAppIcon());
#else
MacDockIconHandler::instance()->setIcon(networkStyle->getAppIcon());
#endif
#ifdef ENABLE_WALLET
// Create wallet frame
if(enableWallet){
QFrame* centralWidget = new QFrame(this);
this->setMinimumWidth(BASE_WINDOW_WIDTH);
this->setMinimumHeight(BASE_WINDOW_HEIGHT);
QHBoxLayout* centralWidgetLayouot = new QHBoxLayout();
centralWidget->setLayout(centralWidgetLayouot);
centralWidgetLayouot->setContentsMargins(0,0,0,0);
centralWidgetLayouot->setSpacing(0);
centralWidget->setProperty("cssClass", "container");
centralWidget->setStyleSheet("padding:0px; border:none; margin:0px;");
// First the nav
navMenu = new NavMenuWidget(this);
centralWidgetLayouot->addWidget(navMenu);
this->setCentralWidget(centralWidget);
this->setContentsMargins(0,0,0,0);
QFrame *container = new QFrame(centralWidget);
container->setContentsMargins(0,0,0,0);
centralWidgetLayouot->addWidget(container);
// Then topbar + the stackedWidget
QVBoxLayout *baseScreensContainer = new QVBoxLayout(this);
baseScreensContainer->setMargin(0);
baseScreensContainer->setSpacing(0);
baseScreensContainer->setContentsMargins(0,0,0,0);
container->setLayout(baseScreensContainer);
// Insert the topbar
topBar = new TopBar(this);
topBar->setContentsMargins(0,0,0,0);
baseScreensContainer->addWidget(topBar);
// Now stacked widget
stackedContainer = new QStackedWidget(this);
QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
stackedContainer->setSizePolicy(sizePolicy);
stackedContainer->setContentsMargins(0,0,0,0);
baseScreensContainer->addWidget(stackedContainer);
// Init
dashboard = new DashboardWidget(this);
sendWidget = new SendWidget(this);
receiveWidget = new ReceiveWidget(this);
addressesWidget = new AddressesWidget(this);
privacyWidget = new PrivacyWidget(this);
masterNodesWidget = new MasterNodesWidget(this);
coldStakingWidget = new ColdStakingWidget(this);
settingsWidget = new SettingsWidget(this);
// Add to parent
stackedContainer->addWidget(dashboard);
stackedContainer->addWidget(sendWidget);
stackedContainer->addWidget(receiveWidget);
stackedContainer->addWidget(addressesWidget);
stackedContainer->addWidget(privacyWidget);
stackedContainer->addWidget(masterNodesWidget);
stackedContainer->addWidget(coldStakingWidget);
stackedContainer->addWidget(settingsWidget);
stackedContainer->setCurrentWidget(dashboard);
} else
#endif
{
// When compiled without wallet or -disablewallet is provided,
// the central widget is the rpc console.
rpcConsole = new RPCConsole(enableWallet ? this : 0);
setCentralWidget(rpcConsole);
}
// Create actions for the toolbar, menu bar and tray/dock icon
createActions(networkStyle);
// Create system tray icon and notification
createTrayIcon(networkStyle);
// Connect events
connectActions();
// TODO: Add event filter??
// // Install event filter to be able to catch status tip events (QEvent::StatusTip)
// this->installEventFilter(this);
// Subscribe to notifications from core
subscribeToCoreSignals();
}
void CATSCOINGUI::createActions(const NetworkStyle* networkStyle){
toggleHideAction = new QAction(networkStyle->getAppIcon(), tr("&Show / Hide"), this);
toggleHideAction->setStatusTip(tr("Show or hide the main Window"));
quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this);
quitAction->setStatusTip(tr("Quit application"));
quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));
quitAction->setMenuRole(QAction::QuitRole);
connect(toggleHideAction, SIGNAL(triggered()), this, SLOT(toggleHidden()));
connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
}
/**
* Here add every event connection
*/
void CATSCOINGUI::connectActions() {
QShortcut *consoleShort = new QShortcut(this);
consoleShort->setKey(QKeySequence(SHORT_KEY + Qt::Key_C));
connect(consoleShort, &QShortcut::activated, [this](){
navMenu->selectSettings();
settingsWidget->showDebugConsole();
goToSettings();
});
connect(topBar, &TopBar::showHide, this, &CATSCOINGUI::showHide);
connect(topBar, &TopBar::themeChanged, this, &CATSCOINGUI::changeTheme);
connect(topBar, &TopBar::onShowHideColdStakingChanged, navMenu, &NavMenuWidget::onShowHideColdStakingChanged);
connect(settingsWidget, &SettingsWidget::showHide, this, &CATSCOINGUI::showHide);
connect(sendWidget, &SendWidget::showHide, this, &CATSCOINGUI::showHide);
connect(receiveWidget, &ReceiveWidget::showHide, this, &CATSCOINGUI::showHide);
connect(addressesWidget, &AddressesWidget::showHide, this, &CATSCOINGUI::showHide);
connect(privacyWidget, &PrivacyWidget::showHide, this, &CATSCOINGUI::showHide);
connect(masterNodesWidget, &MasterNodesWidget::showHide, this, &CATSCOINGUI::showHide);
connect(masterNodesWidget, &MasterNodesWidget::execDialog, this, &CATSCOINGUI::execDialog);
connect(coldStakingWidget, &ColdStakingWidget::showHide, this, &CATSCOINGUI::showHide);
connect(coldStakingWidget, &ColdStakingWidget::execDialog, this, &CATSCOINGUI::execDialog);
connect(settingsWidget, &SettingsWidget::execDialog, this, &CATSCOINGUI::execDialog);
}
void CATSCOINGUI::createTrayIcon(const NetworkStyle* networkStyle) {
#ifndef Q_OS_MAC
trayIcon = new QSystemTrayIcon(this);
QString toolTip = tr("Cats Coin client") + " " + networkStyle->getTitleAddText();
trayIcon->setToolTip(toolTip);
trayIcon->setIcon(networkStyle->getAppIcon());
trayIcon->hide();
#endif
notificator = new Notificator(QApplication::applicationName(), trayIcon, this);
}
//
CATSCOINGUI::~CATSCOINGUI() {
// Unsubscribe from notifications from core
unsubscribeFromCoreSignals();
GUIUtil::saveWindowGeometry("nWindow", this);
if (trayIcon) // Hide tray icon, as deleting will let it linger until quit (on Ubuntu)
trayIcon->hide();
#ifdef Q_OS_MAC
MacDockIconHandler::cleanup();
#endif
}
/** Get restart command-line parameters and request restart */
void CATSCOINGUI::handleRestart(QStringList args){
if (!ShutdownRequested())
emit requestedRestart(args);
}
void CATSCOINGUI::setClientModel(ClientModel* clientModel) {
this->clientModel = clientModel;
if(this->clientModel) {
// Create system tray menu (or setup the dock menu) that late to prevent users from calling actions,
// while the client has not yet fully loaded
createTrayIconMenu();
topBar->setClientModel(clientModel);
dashboard->setClientModel(clientModel);
sendWidget->setClientModel(clientModel);
settingsWidget->setClientModel(clientModel);
// Receive and report messages from client model
connect(clientModel, SIGNAL(message(QString, QString, unsigned int)), this, SLOT(message(QString, QString, unsigned int)));
connect(topBar, SIGNAL(walletSynced(bool)), dashboard, SLOT(walletSynced(bool)));
connect(topBar, SIGNAL(walletSynced(bool)), coldStakingWidget, SLOT(walletSynced(bool)));
// Get restart command-line parameters and handle restart
connect(settingsWidget, &SettingsWidget::handleRestart, [this](QStringList arg){handleRestart(arg);});
if (rpcConsole) {
rpcConsole->setClientModel(clientModel);
}
if (trayIcon) {
trayIcon->show();
}
} else {
// Disable possibility to show main window via action
toggleHideAction->setEnabled(false);
if (trayIconMenu) {
// Disable context menu on tray icon
trayIconMenu->clear();
}
}
}
void CATSCOINGUI::createTrayIconMenu() {
#ifndef Q_OS_MAC
// return if trayIcon is unset (only on non-Mac OSes)
if (!trayIcon)
return;
trayIconMenu = new QMenu(this);
trayIcon->setContextMenu(trayIconMenu);
connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));
#else
// Note: On Mac, the dock icon is used to provide the tray's functionality.
MacDockIconHandler* dockIconHandler = MacDockIconHandler::instance();
dockIconHandler->setMainWindow((QMainWindow*)this);
trayIconMenu = dockIconHandler->dockMenu();
#endif
// Configuration of the tray icon (or dock icon) icon menu
trayIconMenu->addAction(toggleHideAction);
trayIconMenu->addSeparator();
#ifndef Q_OS_MAC // This is built-in on Mac
trayIconMenu->addSeparator();
trayIconMenu->addAction(quitAction);
#endif
}
#ifndef Q_OS_MAC
void CATSCOINGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason)
{
if (reason == QSystemTrayIcon::Trigger) {
// Click on system tray icon triggers show/hide of the main window
toggleHidden();
}
}
#endif
void CATSCOINGUI::changeEvent(QEvent* e)
{
QMainWindow::changeEvent(e);
#ifndef Q_OS_MAC // Ignored on Mac
if (e->type() == QEvent::WindowStateChange) {
if (clientModel && clientModel->getOptionsModel() && clientModel->getOptionsModel()->getMinimizeToTray()) {
QWindowStateChangeEvent* wsevt = static_cast<QWindowStateChangeEvent*>(e);
if (!(wsevt->oldState() & Qt::WindowMinimized) && isMinimized()) {
QTimer::singleShot(0, this, SLOT(hide()));
e->ignore();
}
}
}
#endif
}
void CATSCOINGUI::closeEvent(QCloseEvent* event)
{
#ifndef Q_OS_MAC // Ignored on Mac
if (clientModel && clientModel->getOptionsModel()) {
if (!clientModel->getOptionsModel()->getMinimizeOnClose()) {
QApplication::quit();
}
}
#endif
QMainWindow::closeEvent(event);
}
void CATSCOINGUI::messageInfo(const QString& text){
if(!this->snackBar) this->snackBar = new SnackBar(this, this);
this->snackBar->setText(text);
this->snackBar->resize(this->width(), snackBar->height());
openDialog(this->snackBar, this);
}
void CATSCOINGUI::message(const QString& title, const QString& message, unsigned int style, bool* ret) {
QString strTitle = tr("Cats Coin"); // default title
// Default to information icon
int nNotifyIcon = Notificator::Information;
QString msgType;
// Prefer supplied title over style based title
if (!title.isEmpty()) {
msgType = title;
} else {
switch (style) {
case CClientUIInterface::MSG_ERROR:
msgType = tr("Error");
break;
case CClientUIInterface::MSG_WARNING:
msgType = tr("Warning");
break;
case CClientUIInterface::MSG_INFORMATION:
msgType = tr("Information");
break;
default:
msgType = tr("System Message");
break;
}
}
// Check for error/warning icon
if (style & CClientUIInterface::ICON_ERROR) {
nNotifyIcon = Notificator::Critical;
} else if (style & CClientUIInterface::ICON_WARNING) {
nNotifyIcon = Notificator::Warning;
}
// Display message
if (style & CClientUIInterface::MODAL) {
// Check for buttons, use OK as default, if none was supplied
int r = 0;
showNormalIfMinimized();
if(style & CClientUIInterface::BTN_MASK){
r = openStandardDialog(
(title.isEmpty() ? strTitle : title), message, "OK", "CANCEL"
);
}else{
r = openStandardDialog((title.isEmpty() ? strTitle : title), message, "OK");
}
if (ret != NULL)
*ret = r;
} else if(style & CClientUIInterface::MSG_INFORMATION_SNACK){
messageInfo(message);
}else {
// Append title to "CATSCOIN - "
if (!msgType.isEmpty())
strTitle += " - " + msgType;
notificator->notify((Notificator::Class) nNotifyIcon, strTitle, message);
}
}
bool CATSCOINGUI::openStandardDialog(QString title, QString body, QString okBtn, QString cancelBtn){
DefaultDialog *dialog;
if (isVisible()) {
showHide(true);
dialog = new DefaultDialog(this);
dialog->setText(title, body, okBtn, cancelBtn);
dialog->adjustSize();
openDialogWithOpaqueBackground(dialog, this);
} else {
dialog = new DefaultDialog();
dialog->setText(title, body, okBtn);
dialog->setWindowTitle(tr("Cats Coin"));
dialog->adjustSize();
dialog->raise();
dialog->exec();
}
bool ret = dialog->isOk;
dialog->deleteLater();
return ret;
}
void CATSCOINGUI::showNormalIfMinimized(bool fToggleHidden) {
if (!clientModel)
return;
// activateWindow() (sometimes) helps with keyboard focus on Windows
if (isHidden()) {
show();
activateWindow();
} else if (isMinimized()) {
showNormal();
activateWindow();
} else if (GUIUtil::isObscured(this)) {
raise();
activateWindow();
} else if (fToggleHidden)
hide();
}
void CATSCOINGUI::toggleHidden() {
showNormalIfMinimized(true);
}
void CATSCOINGUI::detectShutdown() {
if (ShutdownRequested()) {
if (rpcConsole)
rpcConsole->hide();
qApp->quit();
}
}
void CATSCOINGUI::goToDashboard(){
if(stackedContainer->currentWidget() != dashboard){
stackedContainer->setCurrentWidget(dashboard);
topBar->showBottom();
}
}
void CATSCOINGUI::goToSend(){
showTop(sendWidget);
}
void CATSCOINGUI::goToAddresses(){
showTop(addressesWidget);
}
void CATSCOINGUI::goToPrivacy(){
showTop(privacyWidget);
}
void CATSCOINGUI::goToMasterNodes(){
showTop(masterNodesWidget);
}
void CATSCOINGUI::goToColdStaking(){
showTop(coldStakingWidget);
}
void CATSCOINGUI::goToSettings(){
showTop(settingsWidget);
}
void CATSCOINGUI::goToReceive(){
showTop(receiveWidget);
}
void CATSCOINGUI::showTop(QWidget* view){
if(stackedContainer->currentWidget() != view){
stackedContainer->setCurrentWidget(view);
topBar->showTop();
}
}
void CATSCOINGUI::changeTheme(bool isLightTheme){
QString css = GUIUtil::loadStyleSheet();
this->setStyleSheet(css);
// Notify
emit themeChanged(isLightTheme, css);
// Update style
updateStyle(this);
}
void CATSCOINGUI::resizeEvent(QResizeEvent* event){
// Parent..
QMainWindow::resizeEvent(event);
// background
showHide(opEnabled);
// Notify
emit windowResizeEvent(event);
}
bool CATSCOINGUI::execDialog(QDialog *dialog, int xDiv, int yDiv){
return openDialogWithOpaqueBackgroundY(dialog, this);
}
void CATSCOINGUI::showHide(bool show){
if(!op) op = new QLabel(this);
if(!show){
op->setVisible(false);
opEnabled = false;
}else{
QColor bg("#000000");
bg.setAlpha(200);
if(!isLightTheme()){
bg = QColor("#00000000");
bg.setAlpha(150);
}
QPalette palette;
palette.setColor(QPalette::Window, bg);
op->setAutoFillBackground(true);
op->setPalette(palette);
op->setWindowFlags(Qt::CustomizeWindowHint);
op->move(0,0);
op->show();
op->activateWindow();
op->resize(width(), height());
op->setVisible(true);
opEnabled = true;
}
}
int CATSCOINGUI::getNavWidth(){
return this->navMenu->width();
}
void CATSCOINGUI::openFAQ(int section){
showHide(true);
SettingsFaqWidget* dialog = new SettingsFaqWidget(this);
if (section > 0) dialog->setSection(section);
openDialogWithOpaqueBackgroundFullScreen(dialog, this);
dialog->deleteLater();
}
#ifdef ENABLE_WALLET
bool CATSCOINGUI::addWallet(const QString& name, WalletModel* walletModel)
{
// Single wallet supported for now..
if(!stackedContainer || !clientModel || !walletModel)
return false;
// set the model for every view
navMenu->setWalletModel(walletModel);
dashboard->setWalletModel(walletModel);
topBar->setWalletModel(walletModel);
receiveWidget->setWalletModel(walletModel);
sendWidget->setWalletModel(walletModel);
addressesWidget->setWalletModel(walletModel);
privacyWidget->setWalletModel(walletModel);
masterNodesWidget->setWalletModel(walletModel);
coldStakingWidget->setWalletModel(walletModel);
settingsWidget->setWalletModel(walletModel);
// Connect actions..
connect(privacyWidget, &PrivacyWidget::message, this, &CATSCOINGUI::message);
connect(masterNodesWidget, &MasterNodesWidget::message, this, &CATSCOINGUI::message);
connect(coldStakingWidget, &MasterNodesWidget::message, this, &CATSCOINGUI::message);
connect(topBar, &TopBar::message, this, &CATSCOINGUI::message);
connect(sendWidget, &SendWidget::message,this, &CATSCOINGUI::message);
connect(receiveWidget, &ReceiveWidget::message,this, &CATSCOINGUI::message);
connect(addressesWidget, &AddressesWidget::message,this, &CATSCOINGUI::message);
connect(settingsWidget, &SettingsWidget::message, this, &CATSCOINGUI::message);
// Pass through transaction notifications
connect(dashboard, SIGNAL(incomingTransaction(QString, int, CAmount, QString, QString)), this, SLOT(incomingTransaction(QString, int, CAmount, QString, QString)));
return true;
}
bool CATSCOINGUI::setCurrentWallet(const QString& name) {
// Single wallet supported.
return true;
}
void CATSCOINGUI::removeAllWallets() {
// Single wallet supported.
}
void CATSCOINGUI::incomingTransaction(const QString& date, int unit, const CAmount& amount, const QString& type, const QString& address) {
// Only send notifications when not disabled
if(!bdisableSystemnotifications){
// On new transaction, make an info balloon
message((amount) < 0 ? (pwalletMain->fMultiSendNotify == true ? tr("Sent MultiSend transaction") : tr("Sent transaction")) : tr("Incoming transaction"),
tr("Date: %1\n"
"Amount: %2\n"
"Type: %3\n"
"Address: %4\n")
.arg(date)
.arg(BitcoinUnits::formatWithUnit(unit, amount, true))
.arg(type)
.arg(address),
CClientUIInterface::MSG_INFORMATION);
pwalletMain->fMultiSendNotify = false;
}
}
#endif // ENABLE_WALLET
static bool ThreadSafeMessageBox(CATSCOINGUI* gui, const std::string& message, const std::string& caption, unsigned int style)
{
bool modal = (style & CClientUIInterface::MODAL);
// The SECURE flag has no effect in the Qt GUI.
// bool secure = (style & CClientUIInterface::SECURE);
style &= ~CClientUIInterface::SECURE;
bool ret = false;
std::cout << "thread safe box: " << message << std::endl;
// In case of modal message, use blocking connection to wait for user to click a button
QMetaObject::invokeMethod(gui, "message",
modal ? GUIUtil::blockingGUIThreadConnection() : Qt::QueuedConnection,
Q_ARG(QString, QString::fromStdString(caption)),
Q_ARG(QString, QString::fromStdString(message)),
Q_ARG(unsigned int, style),
Q_ARG(bool*, &ret));
return ret;
}
void CATSCOINGUI::subscribeToCoreSignals()
{
// Connect signals to client
uiInterface.ThreadSafeMessageBox.connect(boost::bind(ThreadSafeMessageBox, this, _1, _2, _3));
}
void CATSCOINGUI::unsubscribeFromCoreSignals()
{
// Disconnect signals from client
uiInterface.ThreadSafeMessageBox.disconnect(boost::bind(ThreadSafeMessageBox, this, _1, _2, _3));
}
| [
"64649630+catscoinofficial@users.noreply.github.com"
] | 64649630+catscoinofficial@users.noreply.github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.