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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
67791174e9b401f28fee93a13b7841c837d83eba | c9da109272f2b5ec8981d1916bcc526830a49d33 | /gecko_api/include/nsIServiceManager.h | b257ed123a732f613bc4e031627e1b7ff083ecc3 | [] | no_license | aqbal/firefox-mac-pdf | 378997577cf1e3f8926e0f1aad66e4e88c318bdf | 121d1deb8fac35c56e6b31c0030bf88b59d78e47 | refs/heads/master | 2016-08-12T04:03:29.762671 | 2011-03-03T01:44:00 | 2011-03-03T01:44:00 | 51,633,771 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,895 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/tinderbox/XR-Trunk/Darwin_8.8.4_Depend/mozilla/xpcom/components/nsIServiceManager.idl
*/
#ifndef __gen_nsIServiceManager_h__
#define __gen_nsIServiceManager_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIServiceManager */
#define NS_ISERVICEMANAGER_IID_STR "8bb35ed9-e332-462d-9155-4a002ab5c958"
#define NS_ISERVICEMANAGER_IID \
{0x8bb35ed9, 0xe332, 0x462d, \
{ 0x91, 0x55, 0x4a, 0x00, 0x2a, 0xb5, 0xc9, 0x58 }}
/**
* The nsIServiceManager manager interface provides a means to obtain
* global services in an application. The service manager depends on the
* repository to find and instantiate factories to obtain services.
*
* Users of the service manager must first obtain a pointer to the global
* service manager by calling NS_GetServiceManager. After that,
* they can request specific services by calling GetService. When they are
* finished they can NS_RELEASE() the service as usual.
*
* A user of a service may keep references to particular services indefinitely
* and only must call Release when it shuts down.
*
* @status FROZEN
*/
class NS_NO_VTABLE NS_SCRIPTABLE nsIServiceManager : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISERVICEMANAGER_IID)
/**
* getServiceByContractID
*
* Returns the instance that implements aClass or aContractID and the
* interface aIID. This may result in the instance being created.
*
* @param aClass or aContractID : aClass or aContractID of object
* instance requested
* @param aIID : IID of interface requested
* @param result : resulting service
*/
/* void getService (in nsCIDRef aClass, in nsIIDRef aIID, [iid_is (aIID), retval] out nsQIResult result); */
NS_SCRIPTABLE NS_IMETHOD GetService(const nsCID & aClass, const nsIID & aIID, void * *result) = 0;
/* void getServiceByContractID (in string aContractID, in nsIIDRef aIID, [iid_is (aIID), retval] out nsQIResult result); */
NS_SCRIPTABLE NS_IMETHOD GetServiceByContractID(const char *aContractID, const nsIID & aIID, void * *result) = 0;
/**
* isServiceInstantiated
*
* isServiceInstantiated will return a true if the service has already
* been created, otherwise false
*
* @param aClass or aContractID : aClass or aContractID of object
* instance requested
* @param aIID : IID of interface requested
* @param aIID : IID of interface requested
*/
/* boolean isServiceInstantiated (in nsCIDRef aClass, in nsIIDRef aIID); */
NS_SCRIPTABLE NS_IMETHOD IsServiceInstantiated(const nsCID & aClass, const nsIID & aIID, PRBool *_retval) = 0;
/* boolean isServiceInstantiatedByContractID (in string aContractID, in nsIIDRef aIID); */
NS_SCRIPTABLE NS_IMETHOD IsServiceInstantiatedByContractID(const char *aContractID, const nsIID & aIID, PRBool *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIServiceManager, NS_ISERVICEMANAGER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISERVICEMANAGER \
NS_SCRIPTABLE NS_IMETHOD GetService(const nsCID & aClass, const nsIID & aIID, void * *result); \
NS_SCRIPTABLE NS_IMETHOD GetServiceByContractID(const char *aContractID, const nsIID & aIID, void * *result); \
NS_SCRIPTABLE NS_IMETHOD IsServiceInstantiated(const nsCID & aClass, const nsIID & aIID, PRBool *_retval); \
NS_SCRIPTABLE NS_IMETHOD IsServiceInstantiatedByContractID(const char *aContractID, const nsIID & aIID, PRBool *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISERVICEMANAGER(_to) \
NS_SCRIPTABLE NS_IMETHOD GetService(const nsCID & aClass, const nsIID & aIID, void * *result) { return _to GetService(aClass, aIID, result); } \
NS_SCRIPTABLE NS_IMETHOD GetServiceByContractID(const char *aContractID, const nsIID & aIID, void * *result) { return _to GetServiceByContractID(aContractID, aIID, result); } \
NS_SCRIPTABLE NS_IMETHOD IsServiceInstantiated(const nsCID & aClass, const nsIID & aIID, PRBool *_retval) { return _to IsServiceInstantiated(aClass, aIID, _retval); } \
NS_SCRIPTABLE NS_IMETHOD IsServiceInstantiatedByContractID(const char *aContractID, const nsIID & aIID, PRBool *_retval) { return _to IsServiceInstantiatedByContractID(aContractID, aIID, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISERVICEMANAGER(_to) \
NS_SCRIPTABLE NS_IMETHOD GetService(const nsCID & aClass, const nsIID & aIID, void * *result) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetService(aClass, aIID, result); } \
NS_SCRIPTABLE NS_IMETHOD GetServiceByContractID(const char *aContractID, const nsIID & aIID, void * *result) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServiceByContractID(aContractID, aIID, result); } \
NS_SCRIPTABLE NS_IMETHOD IsServiceInstantiated(const nsCID & aClass, const nsIID & aIID, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsServiceInstantiated(aClass, aIID, _retval); } \
NS_SCRIPTABLE NS_IMETHOD IsServiceInstantiatedByContractID(const char *aContractID, const nsIID & aIID, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsServiceInstantiatedByContractID(aContractID, aIID, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsServiceManager : public nsIServiceManager
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISERVICEMANAGER
nsServiceManager();
private:
~nsServiceManager();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsServiceManager, nsIServiceManager)
nsServiceManager::nsServiceManager()
{
/* member initializers and constructor code */
}
nsServiceManager::~nsServiceManager()
{
/* destructor code */
}
/* void getService (in nsCIDRef aClass, in nsIIDRef aIID, [iid_is (aIID), retval] out nsQIResult result); */
NS_IMETHODIMP nsServiceManager::GetService(const nsCID & aClass, const nsIID & aIID, void * *result)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getServiceByContractID (in string aContractID, in nsIIDRef aIID, [iid_is (aIID), retval] out nsQIResult result); */
NS_IMETHODIMP nsServiceManager::GetServiceByContractID(const char *aContractID, const nsIID & aIID, void * *result)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean isServiceInstantiated (in nsCIDRef aClass, in nsIIDRef aIID); */
NS_IMETHODIMP nsServiceManager::IsServiceInstantiated(const nsCID & aClass, const nsIID & aIID, PRBool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean isServiceInstantiatedByContractID (in string aContractID, in nsIIDRef aIID); */
NS_IMETHODIMP nsServiceManager::IsServiceInstantiatedByContractID(const char *aContractID, const nsIID & aIID, PRBool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#define NS_ERROR_SERVICE_NOT_AVAILABLE NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_XPCOM, 22)
/**
* @status DEPRECATED
*/
#define NS_ERROR_SERVICE_NOT_FOUND NS_ERROR_GENERATE_SUCCESS(NS_ERROR_MODULE_XPCOM, 22)
/**
* @status DEPRECATED
*/
#define NS_ERROR_SERVICE_IN_USE NS_ERROR_GENERATE_SUCCESS(NS_ERROR_MODULE_XPCOM, 23)
// Observing xpcom autoregistration. Topics will be 'start' and 'stop'.
#define NS_XPCOM_AUTOREGISTRATION_OBSERVER_ID "xpcom-autoregistration"
#ifdef MOZILLA_INTERNAL_API
#include "nsXPCOM.h"
#include "nsServiceManagerUtils.h"
#include "nsIServiceManagerObsolete.h"
#endif
#endif /* __gen_nsIServiceManager_h__ */
| [
"colesbury@db329023-cf4e-0410-aa6c-69754c57d2e5"
] | colesbury@db329023-cf4e-0410-aa6c-69754c57d2e5 |
2fb5475801fcd8bfdb459e9dcfbc866218cb3b92 | 60bb67415a192d0c421719de7822c1819d5ba7ac | /blazetest/src/mathtest/tsvecsmatmult/VCbLCa.cpp | a9df973c8bce02211614723c0a3b8f1eabedf867 | [
"BSD-3-Clause"
] | permissive | rtohid/blaze | 48decd51395d912730add9bc0d19e617ecae8624 | 7852d9e22aeb89b907cb878c28d6ca75e5528431 | refs/heads/master | 2020-04-16T16:48:03.915504 | 2018-12-19T20:29:42 | 2018-12-19T20:29:42 | 165,750,036 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,399 | cpp | //=================================================================================================
/*!
// \file src/mathtest/tsvecsmatmult/VCbLCa.cpp
// \brief Source file for the VCbLCa sparse vector/sparse matrix multiplication math test
//
// Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redistribute it and/or modify it under
// the terms of the New (Revised) BSD License. Redistribution and use in source and binary
// forms, with or without modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
// 2. 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.
// 3. Neither the names of the Blaze development group 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.
*/
//=================================================================================================
//*************************************************************************************************
// Includes
//*************************************************************************************************
#include <cstdlib>
#include <iostream>
#include <blaze/math/CompressedMatrix.h>
#include <blaze/math/CompressedVector.h>
#include <blaze/math/LowerMatrix.h>
#include <blazetest/mathtest/Creator.h>
#include <blazetest/mathtest/tsvecsmatmult/OperationTest.h>
#include <blazetest/system/MathTest.h>
//=================================================================================================
//
// MAIN FUNCTION
//
//=================================================================================================
//*************************************************************************************************
int main()
{
std::cout << " Running 'VCbLCa'..." << std::endl;
using blazetest::mathtest::TypeA;
using blazetest::mathtest::TypeB;
try
{
// Matrix type definitions
using VCb = blaze::CompressedVector<TypeB>;
using LCa = blaze::LowerMatrix< blaze::CompressedMatrix<TypeA> >;
// Creator type definitions
using CVCb = blazetest::Creator<VCb>;
using CLCa = blazetest::Creator<LCa>;
// Running tests with small vectors and matrices
for( size_t i=0UL; i<=6UL; ++i ) {
for( size_t j=0UL; j<=i; ++j ) {
for( size_t k=0UL; k<=LCa::maxNonZeros( i ); ++k ) {
RUN_TSVECSMATMULT_OPERATION_TEST( CVCb( i, j ), CLCa( i, k ) );
}
}
}
// Running tests with large vectors and matrices
RUN_TSVECSMATMULT_OPERATION_TEST( CVCb( 67UL, 7UL ), CLCa( 67UL, 7UL ) );
RUN_TSVECSMATMULT_OPERATION_TEST( CVCb( 127UL, 13UL ), CLCa( 127UL, 13UL ) );
RUN_TSVECSMATMULT_OPERATION_TEST( CVCb( 64UL, 8UL ), CLCa( 64UL, 8UL ) );
RUN_TSVECSMATMULT_OPERATION_TEST( CVCb( 128UL, 16UL ), CLCa( 128UL, 16UL ) );
}
catch( std::exception& ex ) {
std::cerr << "\n\n ERROR DETECTED during sparse vector/sparse matrix multiplication:\n"
<< ex.what() << "\n";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
//*************************************************************************************************
| [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
3259189ee3a9f7e9b0763de8cbb4873e52b1d697 | cecfda84e25466259d3ef091953c3ac7b44dc1fc | /UVa Online Judge/volume131/13130 Cacho/program.cpp | 27bc8e8c8bbbb7da1116ed829cee263eabae0ef7 | [] | no_license | metaphysis/Code | 8e3c3610484a8b5ca0bb116bc499a064dda55966 | d144f4026872aae45b38562457464497728ae0d6 | refs/heads/master | 2023-07-26T12:44:21.932839 | 2023-07-12T13:39:41 | 2023-07-12T13:39:41 | 53,327,611 | 231 | 57 | null | null | null | null | UTF-8 | C++ | false | false | 728 | cpp | // Cacho
// UVa ID: 13130
// Verdict: Accepted
// Submission Date: 2019-04-15
// UVa Run Time: 0.000s
//
// 版权所有(C)2019,邱秋。metaphysis # yeah dot net
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char *argv[])
{
cin.tie(0), cout.tie(0), ios::sync_with_stdio(false);
int cases, dice[5];
cin >> cases;
for (int cs = 1; cs <= cases; cs++)
{
for (int i = 0; i < 5; i++) cin >> dice[i];
if ((dice[0] == 1 && dice[1] == 2 && dice[2] == 3 && dice[3] == 4 && dice[4] == 5)
|| (dice[0] == 2 && dice[1] == 3 && dice[2] == 4 && dice[3] == 5 && dice[4] == 6))
cout << "Y\n";
else
cout << "N\n";
}
return 0;
}
| [
"metaphysis@yeah.net"
] | metaphysis@yeah.net |
cbe4e29a3ffeaae92fdeaecb679af432a70b1ca0 | 9a8c6a6bc5300f7038c33d9d558f7524e5f33451 | /myex/prob5/prob5-3.cpp | 03163c4c3f913329d22599ad77946972fdb9db7f | [] | no_license | s1250009/Cpp | 5ee7279290ca0189e5e0dfb15984063638ef860a | a2bd5e9ebf99bb8badbcd94dd687fdca59376334 | refs/heads/master | 2022-04-05T15:13:02.134348 | 2020-03-07T16:17:01 | 2020-03-07T16:17:01 | 212,468,765 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 534 | cpp | #include <iostream>
#include "counter.h"
using namespace std;
int main(){
Counter c1, c2;
c1.count();
c2.count();
c2.count();
c2.reset();
c1.count();
c1.count();
c2.count();
int a,b,c;
a = c1.getCount();
b = c2.getCount();
c = Counter::getTotalCount();
cout << a << ' ' << b << ' ' << c << endl;
cout << "c1's count:";
cout << a << '\n';
cout << "c2's count:";
cout << b << '\n';
cout << "total count:" << Counter::getTotalCount() << endl;
return 0;
} | [
"s1250009@u-aizu.ac.jp"
] | s1250009@u-aizu.ac.jp |
57ffe18e4fb82ee09b41991e44fb6ccf1307d10d | 9b76d1676c1fa747971def9a4c8210da99ba7576 | /include/vsmc/opencl/backend_cl.hpp | e83577c947bbe7b70dec9ab1172354b4cb539bb9 | [
"BSD-2-Clause"
] | permissive | zhouyan/vSMCExtra | 0754caf42da406816acbf22330dd426ddbb17fb1 | baf1645742aa4e02c225cde27253f2c3fe792ce7 | refs/heads/master | 2016-09-15T14:54:53.674425 | 2016-03-10T09:26:54 | 2016-03-10T09:26:54 | 39,458,721 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,108 | hpp | //============================================================================
// vSMC/include/vsmc/opencl/backend_cl.hpp
//----------------------------------------------------------------------------
// vSMC: Scalable Monte Carlo
//----------------------------------------------------------------------------
// Copyright (c) 2013-2015, Yan Zhou
// 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.
//
// 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 VSMC_OPENCL_BACKEND_CL_HPP
#define VSMC_OPENCL_BACKEND_CL_HPP
#include <vsmc/opencl/internal/common.hpp>
#include <vsmc/opencl/internal/cl_copy.hpp>
#include <vsmc/opencl/cl_buffer.hpp>
#include <vsmc/opencl/cl_configure.hpp>
#include <vsmc/opencl/cl_manager.hpp>
#include <vsmc/opencl/cl_manip.hpp>
#include <vsmc/opencl/cl_query.hpp>
#include <vsmc/opencl/cl_type.hpp>
#include <vsmc/rng/seed.hpp>
#define VSMC_STATIC_ASSERT_OPENCL_BACKEND_CL_DYNAMIC_STATE_SIZE_RESIZE(Dim) \
VSMC_STATIC_ASSERT((Dim == Dynamic), \
"**StateCL::resize_dim** USED WITH A FIXED DIMENSION OBJECT")
#define VSMC_STATIC_ASSERT_OPENCL_BACKEND_CL_STATE_CL_FP_TYPE(type) \
VSMC_STATIC_ASSERT((std::is_same<type, ::cl_float>::value || \
std::is_same<type, ::cl_double>::value), \
"**StateCL** USED WITH RealType OTHER THAN cl_float OR cl_double")
#define VSMC_RUNTIME_ASSERT_OPENCL_BACKEND_CL_BUILD(func) \
VSMC_RUNTIME_ASSERT((build()), \
"**StateCL::" #func \
"** CAN ONLY BE CALLED AFTER true **StateCL::build**")
#define VSMC_RUNTIME_ASSERT_OPENCL_BACKEND_CL_STATE_SIZE(state_size) \
VSMC_RUNTIME_ASSERT((state_size >= 1), "STATE SIZE IS LESS THAN 1")
#define VSMC_RUNTIME_ASSERT_OPENCL_BACKEND_CL_COPY_SIZE_MISMATCH \
VSMC_RUNTIME_ASSERT((N == copy_.size()), "**StateCL::copy** SIZE " \
"MISMATCH")
#define VSMC_RUNTIME_ASSERT_OPENCL_BACKEND_CL_UNPACK_SIZE(psize, dim) \
VSMC_RUNTIME_ASSERT((psize >= dim), \
"**StateCL::state_unpack** INPUT PACK SIZE TOO SMALL")
#define VSMC_DEFINE_OPENCL_BACKEND_CL_SPECIAL(Name) \
Name() : build_id_(-1) {} \
Name(const Name<T> &) = default; \
Name<T> &operator=(const Name<T> &) = default; \
Name(Name<T> &&) = default; \
Name<T> &operator=(Name<T> &&) = default; \
virtual ~Name() {}
#define VSMC_DEFINE_OPENCL_BACKEND_CL_CONFIGURE_KERNEL \
CLConfigure &configure() { return configure_; } \
const CLConfigure &configure() const { return configure_; } \
const CLKernel &kernel() { return kernel_; } \
const std::string &kernel_name() const { return kernel_name_; }
#define VSMC_DEFINE_OPENCL_BACKEND_CL_SET_KERNEL \
if (kname.empty()) { \
kernel_name_.clear(); \
return; \
} \
if (build_id_ != particle.value().build_id() || kernel_name_ != kname) { \
build_id_ = particle.value().build_id(); \
kernel_name_ = std::move(kname); \
kernel_ = particle.value().create_kernel(kernel_name_); \
configure_.local_size( \
particle.size(), kernel_, particle.value().manager().device()); \
}
#define VSMC_DEFINE_OPENCL_BACKEND_CL_MEMBER_DATA \
CLConfigure configure_; \
int build_id_; \
CLKernel kernel_; \
std::string kernel_name_
namespace vsmc
{
namespace internal
{
template <typename>
void set_cl_fp_type(std::stringstream &);
template <>
inline void set_cl_fp_type<cl_float>(std::stringstream &ss)
{
ss << "#ifndef FP_TYPE\n";
ss << "#define FP_TYPE float\n";
ss << "typedef float fp_type;\n";
ss << "#endif\n";
ss << "#ifndef VSMC_HAS_RNGC_DOUBLE\n";
ss << "#define VSMC_HAS_RNGC_DOUBLE 0\n";
ss << "#endif\n";
}
template <>
inline void set_cl_fp_type<cl_double>(std::stringstream &ss)
{
ss << "#if defined(cl_khr_fp64)\n";
ss << "#pragma OPENCL EXTENSION cl_khr_fp64 : enable\n";
ss << "#elif defined(cl_amd_fp64)\n";
ss << "#pragma OPENCL EXTENSION cl_amd_fp64 : enable\n";
ss << "#endif\n";
ss << "#define FP_TYPE double\n";
ss << "typedef double fp_type;\n";
ss << "#endif\n";
ss << "#ifndef VSMC_HAS_RNGC_DOUBLE\n";
ss << "#define VSMC_HAS_RNGC_DOUBLE 1\n";
ss << "#endif\n";
}
template <typename RealType>
inline std::string cl_source_macros(
std::size_t size, std::size_t state_size, std::size_t seed)
{
std::stringstream ss;
set_cl_fp_type<RealType>(ss);
ss << "#ifndef SIZE\n";
ss << "#define SIZE " << size << "UL\n";
ss << "#endif\n";
ss << "#ifndef STATE_SIZE\n";
ss << "#define STATE_SIZE " << state_size << "UL\n";
ss << "#endif\n";
ss << "#ifndef SEED\n";
ss << "#define SEED " << seed << "UL\n";
ss << "#endif\n";
return ss.str();
}
} // namespace vsmc::internal
/// \brief Particle::value_type subtype using OpenCL
/// \ingroup OpenCL
template <std::size_t StateSize, typename RealType, typename ID = CLDefault>
class StateCL
{
public:
using size_type = ::cl_ulong;
using fp_type = RealType;
using cl_id = ID;
using manager_type = CLManager<ID>;
using state_pack_type = Vector<char>;
explicit StateCL(size_type N)
: state_size_(StateSize == Dynamic ? 1 : StateSize)
, size_(N)
, build_(false)
, build_id_(0)
, state_buffer_(state_size_ * size_)
{
if (manager().opencl_version() >= 120) {
src_idx_buffer_.resize(
size_, CL_MEM_READ_ONLY | CL_MEM_HOST_WRITE_ONLY);
} else {
src_idx_buffer_.resize(size_, CL_MEM_READ_ONLY);
}
}
size_type size() const { return size_; }
std::size_t state_size() const { return state_size_; }
/// \brief Change state size
void resize_state(std::size_t state_size)
{
VSMC_STATIC_ASSERT_OPENCL_BACKEND_CL_DYNAMIC_STATE_SIZE_RESIZE(
StateSize);
VSMC_RUNTIME_ASSERT_OPENCL_BACKEND_CL_STATE_SIZE(state_size);
state_size_ = state_size;
state_buffer_.resize(state_size_ * size_);
}
/// \brief Change state buffer flag (cause reallocation)
void update_state(::cl_mem_flags flag)
{
state_buffer_.resize(state_size_ * size_, flag);
}
/// \brief Change state buffer flag and host pointer (cause
/// reallocation)
void update_state(::cl_mem_flags flag, void *host_ptr)
{
state_buffer_.resize(state_size_ * size_, flag, host_ptr);
}
/// \brief The instance of the CLManager signleton associated
/// with this
/// value collcection
static manager_type &manager() { return manager_type::instance(); }
/// \brief The OpenCL buffer that stores the state values
const CLBuffer<char, ID> &state_buffer() const { return state_buffer_; }
/// \brief The OpenCL program associated with this value
/// collection
const CLProgram &program() const { return program_; }
/// \brief Build the OpenCL program from source
///
/// \param source The source of the program
/// \param flags The OpenCL compiler flags, e.g., `-I`
/// \param os The output stream to write the output when error
/// occurs
///
/// \details
/// Note that a few macros are defined before the user supplied `source`.
/// Say the template parameter `StateSize == 4`, `RealType` of this class
/// is set to `cl_float`, and there are `1000` particles, then the complete
/// source, which acutally get compiled looks like the following
/// ~~~{.cpp}
/// #ifndef FP_TYPE
/// #define FP_TYPE float
/// typedef float fp_type;
/// #endif
///
/// #ifndef VSMC_HAS_RNGC_DOUBLE
/// #define VSMC_HAS_RNGC_DOUBLE 0
/// #endif
///
/// #ifndef SIZE
/// #define SIZE 1000UL;
/// #endif
///
/// #ifndef STATE_SIZE
/// #define STATE_SIZE 4UL;
/// #endif
///
/// #ifndef SEED
/// #define SEED 101UL;
/// #endif
/// // The actual seed is vsmc::Seed::instance().get()
/// // ... User source, passed by the source argument
/// ~~~
/// After build, `vsmc::Seed::instance().skip(N)` is called with `N` being
/// the nubmer of particles.
template <typename CharT, typename Traits>
void build(const std::string &source, const std::string &flags,
std::basic_ostream<CharT, Traits> &os)
{
VSMC_STATIC_ASSERT_OPENCL_BACKEND_CL_STATE_CL_FP_TYPE(fp_type);
std::string src(internal::cl_source_macros<fp_type>(
size_, state_size_, Seed::instance().get()) +
source);
Seed::instance().skip(static_cast<Seed::skip_type>(size_));
program_ = manager().create_program(src);
build_program(flags, os);
}
void build(
const std::string &source, const std::string &flags = std::string())
{
build(source, flags, std::cout);
}
/// \brief Build from an existing program
template <typename CharT, typename Traits>
void build(const CLProgram &program, const std::string &flags,
std::basic_ostream<CharT, Traits> &os)
{
program_ = program;
build_program(flags, os);
}
void build(
const CLProgram &program, const std::string &flags = std::string())
{
build(program, flags, std::cout);
}
/// \brief Whether the last attempted building success
bool build() const { return build_; }
/// \brief The build id of the last attempted of building
///
/// \details
/// This function returns a non-decreasing sequence of integers
int build_id() const { return build_id_; }
/// \brief Create kernel with the current program
///
/// \details
/// If build() does not return `true`, then calling this is an
/// error
CLKernel create_kernel(const std::string &name) const
{
VSMC_RUNTIME_ASSERT_OPENCL_BACKEND_CL_BUILD(create_kernel);
return CLKernel(program_, name);
}
template <typename IntType>
void copy(size_type N, const IntType *src_idx)
{
VSMC_RUNTIME_ASSERT_OPENCL_BACKEND_CL_COPY_SIZE_MISMATCH;
manager().template write_buffer<size_type>(
src_idx_buffer_.data(), N, src_idx);
copy_(src_idx_buffer_.data(), state_buffer_.data());
}
void copy_pre()
{
state_idx_host_.resize(size_);
if (manager().opencl_version() >= 120) {
state_idx_buffer_.resize(size_, CL_MEM_READ_ONLY |
CL_MEM_HOST_WRITE_ONLY | CL_MEM_USE_HOST_PTR,
state_idx_host_.data());
} else {
state_idx_buffer_.resize(size_,
CL_MEM_READ_ONLY | CL_MEM_USE_HOST_PTR,
state_idx_host_.data());
}
state_tmp_host_.resize(size_ * state_size_);
state_tmp_buffer_.resize(size_ * state_size_,
CL_MEM_READ_ONLY | CL_MEM_USE_HOST_PTR, state_tmp_host_.data());
std::memset(state_idx_host_.data(), 0, size_);
manager().read_buffer(
state_buffer_.data(), size_ * state_size_, state_tmp_host_.data());
}
void copy_post()
{
manager().write_buffer(
state_idx_buffer_.data(), size_, state_idx_host_.data());
manager().write_buffer(state_tmp_buffer_.data(), size_ * state_size_,
state_tmp_host_.data());
copy_(state_idx_buffer_.data(), state_tmp_buffer_.data(),
state_buffer_.data());
}
state_pack_type state_pack(size_type id) const
{
state_pack_type pack(this->state_size());
std::memcpy(pack.data(), state_tmp_host_.data() + id * state_size_,
state_size_);
return pack;
}
void state_unpack(size_type id, const state_pack_type &pack)
{
VSMC_RUNTIME_ASSERT_OPENCL_BACKEND_CL_UNPACK_SIZE(
pack.size(), state_size_);
state_idx_host_[id] = 1;
std::memcpy(state_tmp_host_.data() + id * state_size_, pack.data(),
state_size_);
}
CLConfigure ©_configure() { return copy_.configure(); }
const CLConfigure ©_configure() const { return copy_.configure(); }
const CLKernel ©_kernel() { return copy_.kernel(); }
private:
std::size_t state_size_;
size_type size_;
CLProgram program_;
bool build_;
int build_id_;
CLBuffer<char, ID> state_buffer_;
CLBuffer<size_type, ID> src_idx_buffer_;
internal::CLCopy<ID> copy_;
CLBuffer<char, ID> state_idx_buffer_;
CLBuffer<char, ID> state_tmp_buffer_;
Vector<char> state_idx_host_;
Vector<char> state_tmp_host_;
template <typename CharT, typename Traits>
void build_program(
const std::string flags, std::basic_ostream<CharT, Traits> &os)
{
++build_id_;
build_ = false;
::cl_int status = program_.build(manager().device_vec(), flags);
if (status != CL_SUCCESS) {
std::vector<CLDevice> dev_vec(program_.get_device());
std::string equal(75, '=');
std::string dash(75, '-');
std::string name;
for (const auto &dev : dev_vec) {
dev.get_info(CL_DEVICE_NAME, name);
os << equal << std::endl;
if (program_.build_status(dev) == CL_BUILD_SUCCESS)
os << "Build success for " << name << std::endl;
else
os << "Build failure for " << name << std::endl;
os << dash << std::endl;
os << program_.build_log(dev) << std::endl;
}
os << equal << std::endl;
return;
}
copy_.build(size_, state_size_);
build_ = true;
}
}; // class StateCL
/// \brief Sampler<T>::init_type subtype using OpenCL
/// \ingroup OpenCL
///
/// \details
/// Kernel requirement
/// ~~~{.cpp}
/// __kernel
/// void kern (__global state_type *state, __global ulong *accept);
/// ~~~
/// - Kernels can have additonal arguments and set by the user in
/// `eval_pre`.
/// - `state` has size `N * StateSize` where `accept` has size `N`.
/// - The declaration does not have to much this, but the first
/// arguments will
/// be set by InitializeCL::opeartor(). For example
/// ~~~{.cpp}
/// typedef struct {
/// state_type v1;
/// state_type v2;
/// // ...
/// state_type vDim; // vDim = StateSize / state_type
/// } param;
/// __kernel
/// void kern (__global param *state, __global ulong *accept);
/// ~~~
/// is also acceptable, but now `state` has to be treat as a length
/// `N` array.
/// In summary, on the host side, it is a `cl::Buffer` object being
/// passed to
/// the kernel, which is not much unlike `void *` pointer.
template <typename T>
class InitializeCL
{
public:
/// \brief The index offset of additional kernel arguments set
/// by the user
///
/// \details
/// The first user supplied additional argument shall have
/// index
/// `kernel_args_offset`
static constexpr ::cl_uint kernel_args_offset() { return 2; }
std::size_t operator()(Particle<T> &particle, void *param)
{
set_kernel(particle);
if (kernel_name_.empty())
return 0;
set_kernel_args(particle);
eval_param(particle, param);
eval_pre(particle);
particle.value().manager().run_kernel(
kernel_, particle.size(), configure_.local_size());
eval_post(particle);
return accept_count(particle, accept_buffer_.data());
}
virtual void eval_param(Particle<T> &, void *) {}
virtual void eval_sp(std::string &) {}
virtual void eval_pre(Particle<T> &) {}
virtual void eval_post(Particle<T> &) {}
virtual std::size_t accept_count(
Particle<T> &particle, const CLMemory &accept_buffer)
{
particle.value().manager().read_buffer(
accept_buffer, particle.size(), accept_host_.data());
return static_cast<std::size_t>(std::accumulate(accept_host_.begin(),
accept_host_.end(), static_cast<::cl_ulong>(0)));
}
virtual void set_kernel(Particle<T> &particle)
{
std::string kname;
eval_sp(kname);
VSMC_DEFINE_OPENCL_BACKEND_CL_SET_KERNEL;
}
virtual void set_kernel_args(Particle<T> &particle)
{
accept_host_.resize(particle.size());
if (particle.value().manager().opencl_version() >= 120) {
accept_buffer_.resize(particle.size(), CL_MEM_READ_WRITE |
CL_MEM_HOST_READ_ONLY | CL_MEM_USE_HOST_PTR,
accept_host_.data());
} else {
accept_buffer_.resize(particle.size(),
CL_MEM_READ_WRITE | CL_MEM_USE_HOST_PTR, accept_host_.data());
}
cl_set_kernel_args(kernel_, 0, particle.value().state_buffer().data(),
accept_buffer_.data());
}
VSMC_DEFINE_OPENCL_BACKEND_CL_CONFIGURE_KERNEL
protected:
VSMC_DEFINE_OPENCL_BACKEND_CL_SPECIAL(InitializeCL)
private:
VSMC_DEFINE_OPENCL_BACKEND_CL_MEMBER_DATA;
CLBuffer<::cl_ulong, typename T::cl_id> accept_buffer_;
std::vector<::cl_ulong> accept_host_;
}; // class InitializeCL
/// \brief Sampler<T>::move_type subtype using OpenCL
/// \ingroup OpenCL
///
/// \details
/// Kernel requirement
/// ~~~{.cpp}
/// __kernel
/// void kern (ulong iter, __global state_type *state, __global
/// ulong
/// *accept);
/// ~~~
template <typename T>
class MoveCL
{
public:
/// \brief The index offset of additional kernel arguments set
/// by the user
///
/// \details
/// The first user supplied additional argument shall have
/// index
/// `kernel_args_offset`
static constexpr ::cl_uint kernel_args_offset() { return 3; }
std::size_t operator()(std::size_t iter, Particle<T> &particle)
{
set_kernel(iter, particle);
if (kernel_name_.empty())
return 0;
set_kernel_args(iter, particle);
eval_pre(iter, particle);
particle.value().manager().run_kernel(
kernel_, particle.size(), configure_.local_size());
eval_post(iter, particle);
return accept_count(particle, accept_buffer_.data());
}
virtual void eval_sp(std::size_t, std::string &) {}
virtual void eval_pre(std::size_t, Particle<T> &) {}
virtual void eval_post(std::size_t, Particle<T> &) {}
virtual std::size_t accept_count(
Particle<T> &particle, const CLMemory &accept_buffer)
{
particle.value().manager().read_buffer(
accept_buffer, particle.size(), accept_host_.data());
return static_cast<std::size_t>(std::accumulate(accept_host_.begin(),
accept_host_.end(), static_cast<::cl_ulong>(0)));
}
virtual void set_kernel(std::size_t iter, Particle<T> &particle)
{
std::string kname;
eval_sp(iter, kname);
VSMC_DEFINE_OPENCL_BACKEND_CL_SET_KERNEL;
}
virtual void set_kernel_args(std::size_t iter, Particle<T> &particle)
{
accept_host_.resize(particle.size());
if (particle.value().manager().opencl_version() >= 120) {
accept_buffer_.resize(particle.size(), CL_MEM_READ_WRITE |
CL_MEM_HOST_READ_ONLY | CL_MEM_USE_HOST_PTR,
accept_host_.data());
} else {
accept_buffer_.resize(particle.size(),
CL_MEM_READ_WRITE | CL_MEM_USE_HOST_PTR, accept_host_.data());
}
cl_set_kernel_args(kernel_, 0, static_cast<::cl_ulong>(iter),
particle.value().state_buffer().data(), accept_buffer_.data());
}
VSMC_DEFINE_OPENCL_BACKEND_CL_CONFIGURE_KERNEL
protected:
VSMC_DEFINE_OPENCL_BACKEND_CL_SPECIAL(MoveCL)
private:
VSMC_DEFINE_OPENCL_BACKEND_CL_MEMBER_DATA;
CLBuffer<::cl_ulong, typename T::cl_id> accept_buffer_;
std::vector<::cl_ulong> accept_host_;
}; // class MoveCL
/// \brief Monitor<T>::eval_type subtype using OpenCL
/// \ingroup OpenCL
///
/// \details
/// Kernel requirement
/// ~~~{.cpp}
/// __kernel
/// void kern (ulong iter, ulong dim, __global state_type *state,
/// __global fp_type *r);
/// ~~~
template <typename T>
class MonitorEvalCL
{
public:
/// \brief The index offset of additional kernel arguments set
/// by the user
///
/// \details
/// The first user supplied additional argument shall have
/// index
/// `kernel_args_offset`
static constexpr ::cl_uint kernel_args_offset() { return 4; }
void operator()(
std::size_t iter, std::size_t dim, Particle<T> &particle, double *r)
{
set_kernel(iter, dim, particle);
if (kernel_name_.empty())
return;
set_kernel_args(iter, dim, particle);
eval_pre(iter, particle);
particle.value().manager().run_kernel(
kernel_, particle.size(), configure_.local_size());
particle.value().manager().template read_buffer<typename T::fp_type>(
buffer_.data(), particle.value().size() * dim, r);
eval_post(iter, particle);
}
virtual void eval_sp(std::size_t, std::string &) {}
virtual void eval_pre(std::size_t, Particle<T> &) {}
virtual void eval_post(std::size_t, Particle<T> &) {}
virtual void set_kernel(
std::size_t iter, std::size_t, Particle<T> &particle)
{
std::string kname;
eval_sp(iter, kname);
VSMC_DEFINE_OPENCL_BACKEND_CL_SET_KERNEL;
}
virtual void set_kernel_args(
std::size_t iter, std::size_t dim, Particle<T> &particle)
{
if (particle.value().manager().opencl_version() >= 120) {
buffer_.resize(particle.size() * dim,
CL_MEM_READ_WRITE | CL_MEM_HOST_READ_ONLY);
} else {
buffer_.resize(particle.size() * dim);
}
cl_set_kernel_args(kernel_, 0, static_cast<::cl_ulong>(iter),
static_cast<::cl_ulong>(dim),
particle.value().state_buffer().data(), buffer_.data());
}
VSMC_DEFINE_OPENCL_BACKEND_CL_CONFIGURE_KERNEL
protected:
VSMC_DEFINE_OPENCL_BACKEND_CL_SPECIAL(MonitorEvalCL)
private:
VSMC_DEFINE_OPENCL_BACKEND_CL_MEMBER_DATA;
CLBuffer<typename T::fp_type, typename T::cl_id> buffer_;
}; // class MonitorEvalCL
/// \brief Path<T>::eval_type subtype using OpenCL
/// \ingroup OpenCL
///
/// \details
/// Kernel requirement
/// ~~~{.cpp}
/// __kernel
/// void kern (ulong iter, __global state_type *state,
/// __global state_type *r);
/// ~~~
template <typename T>
class PathEvalCL
{
public:
/// \brief The index offset of additional kernel arguments set
/// by the user
///
/// \details
/// The first user supplied additional argument shall have
/// index
/// `kernel_args_offset`
static constexpr ::cl_uint kernel_args_offset() { return 3; }
double operator()(std::size_t iter, Particle<T> &particle, double *r)
{
set_kernel(iter, particle);
if (kernel_name_.empty())
return 0;
set_kernel_args(iter, particle);
eval_pre(iter, particle);
particle.value().manager().run_kernel(
kernel_, particle.size(), configure_.local_size());
particle.value().manager().template read_buffer<typename T::fp_type>(
buffer_.data(), particle.value().size(), r);
eval_post(iter, particle);
return this->eval_grid(iter, particle);
}
virtual void eval_sp(std::size_t, std::string &) {}
virtual double eval_grid(std::size_t, Particle<T> &) { return 0; }
virtual void eval_pre(std::size_t, Particle<T> &) {}
virtual void eval_post(std::size_t, Particle<T> &) {}
virtual void set_kernel(std::size_t iter, Particle<T> &particle)
{
std::string kname;
eval_sp(iter, kname);
VSMC_DEFINE_OPENCL_BACKEND_CL_SET_KERNEL;
}
virtual void set_kernel_args(std::size_t iter, Particle<T> &particle)
{
if (particle.value().manager().opencl_version() >= 120) {
buffer_.resize(
particle.size(), CL_MEM_READ_WRITE | CL_MEM_HOST_READ_ONLY);
} else {
buffer_.resize(particle.size());
}
cl_set_kernel_args(kernel_, 0, static_cast<::cl_ulong>(iter),
particle.value().state_buffer().data(), buffer_.data());
}
VSMC_DEFINE_OPENCL_BACKEND_CL_CONFIGURE_KERNEL
protected:
VSMC_DEFINE_OPENCL_BACKEND_CL_SPECIAL(PathEvalCL)
private:
VSMC_DEFINE_OPENCL_BACKEND_CL_MEMBER_DATA;
CLBuffer<typename T::fp_type, typename T::cl_id> buffer_;
}; // class PathEvalCL
} // namespace vsmc
#endif // VSMC_OPENCL_BACKEND_CL_HPP
| [
"zhouyan@me.com"
] | zhouyan@me.com |
38cd272254ebc2606f46a49a8e65829897e2c6cc | 439df4a7fdd73401d2a3a7061a1df678fd5eb98b | /day2/arduino/relay/relay.ino | d3d1dc703f50ea5dc8b6a83ea25eb18bd7ea5fa8 | [] | no_license | SothanaV/demo | 13c582861d4061f7e2c0f69b0f68f9f7adf6ff04 | d4db7e92fc2eaa0f0e916d1b6c611fe83ae3e1c9 | refs/heads/master | 2021-03-13T02:05:37.498402 | 2017-07-30T05:29:38 | 2017-07-30T05:29:38 | 91,478,385 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 530 | ino | ////นำเข้า ชุดคำสั่ง import libary/////
#include <Arduino.h>
#define USE_SERIAL Serial
///////define pin กำหนดขา/////
int relay = 5; //setpin of relay at D1
//////กำหนดค่าอื่นๆ//////////////
void setup()
{
USE_SERIAL.begin(115200);
pinMode(relay,OUTPUT);
}
void loop()
{
digitalWrite(relay,HIGH);
delay(1000);
digitalWrite(relay,LOW);
delay(1000);
digitalWrite(relay,HIGH);
delay(500);
digitalWrite(relay,LOW);
delay(500);
}
| [
"nai6320@gmail.com"
] | nai6320@gmail.com |
eee59bb4f9c1672f9bc4d2349271556a773e2ac2 | 53948ed8641e21e59318ffea88e9f123fad70300 | /03_animation/03_rectangleInterpolatePowf/src/ofApp.cpp | d9b9afeab1f17836a9ed2ce969400da0bf8fef00 | [] | no_license | mikewesthad/ofBookExamples | 1e573d955e52165ffb0ff74c8d1fe9877dad049c | 1a3a9b3be086a34efa841ec2af9416f1c1dcbdab | refs/heads/master | 2020-12-25T17:14:58.185004 | 2016-02-29T01:52:08 | 2016-02-29T01:52:08 | 52,225,446 | 0 | 0 | null | 2016-02-21T20:08:34 | 2016-02-21T20:08:34 | null | UTF-8 | C++ | false | false | 918 | cpp | #include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup(){
// macs by default run on non vertical sync, which can make animation very, very fast
// this fixes that:
ofSetVerticalSync(true);
// set background:
ofBackground(30,30,30);
// set the "a" and "b" positions of the rectangle...
myRectangle.posa.x = 0;
myRectangle.posa.y = 50;
myRectangle.posb.x = 400;
myRectangle.posb.y = 50;
myRectangle.interpolateByPct(0); // start at 0 pct
pct = 0; // a variable we can alter...
}
//--------------------------------------------------------------
void ofApp::update(){
pct += 0.01f; // increase by a certain amount
if (pct > 1) pct = 0; // just between 0 and 1 (0% and 100%)
myRectangle.interpolateByPct(pct); // go between pta and ptb
}
//--------------------------------------------------------------
void ofApp::draw(){
myRectangle.draw();
}
| [
"litchirhythm@gmail.com"
] | litchirhythm@gmail.com |
a5668a5ac7840e3d3205c44a8c6062f8685e6b06 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/squid/new_hunk_5788.cpp | c348915d3bf8cd15d3b854417d2eab0f2eaf82c0 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 230 | cpp | storeAppendPrintf(sentry, " C = CLOSING\n");
storeAppendPrintf(sentry, " R = RESERVED or DEFERRED\n");
storeAppendPrintf(sentry, " S = SHUTDOWN\n");
storeAppendPrintf(sentry, " P = PLACEHOLDER\n");
}
void
| [
"993273596@qq.com"
] | 993273596@qq.com |
78819f862f6a59391b09f235d1f64fdb0b7ed82f | ce64c59e1e2b6ae779f125c982e94f6de93d62f8 | /actions/kaction.cpp | 309cf82652e236ff92744c1ffbafdea791b00ba4 | [] | no_license | The-Oracle/kdeui | f3e2d7cc7335bdffce9d6a02de38ab196e5cf02d | 87414d061d2f7156901212a19ea01bdf85d6e53d | refs/heads/master | 2021-01-20T00:51:25.654205 | 2017-04-24T05:14:13 | 2017-04-24T05:14:13 | 89,200,851 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,867 | cpp | /* This file is part of the KDE libraries
Copyright (C) 1999 Reginald Stadlbauer <reggie@kde.org>
(C) 1999 Simon Hausmann <hausmann@kde.org>
(C) 2000 Nicolas Hadacek <haadcek@kde.org>
(C) 2000 Kurt Granroth <granroth@kde.org>
(C) 2000 Michael Koch <koch@kde.org>
(C) 2001 Holger Freyther <freyther@kde.org>
(C) 2002 Ellis Whitehead <ellis@kde.org>
(C) 2002 Joseph Wenninger <jowenn@kde.org>
(C) 2005-2006 Hamish Rodda <rodda@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "kaction.h"
#include "kaction_p.h"
#include "kglobalaccel_p.h"
#include "klocale.h"
#include "kmessagebox.h"
#include "kauthaction.h"
#include "kauthactionwatcher.h"
#include <QtGui/QApplication>
#include <QtGui/QHBoxLayout>
#include <QtGui/QShortcutEvent>
#include <QtGui/QToolBar>
#include <kdebug.h>
#include "kguiitem.h"
#include "kicon.h"
//---------------------------------------------------------------------
// KActionPrivate
//---------------------------------------------------------------------
void KActionPrivate::init(KAction *q_ptr)
{
q = q_ptr;
globalShortcutEnabled = false;
neverSetGlobalShortcut = true;
QObject::connect(q, SIGNAL(triggered(bool)), q, SLOT(slotTriggered()));
q->setProperty("isShortcutConfigurable", true);
}
void KActionPrivate::setActiveGlobalShortcutNoEnable(const KShortcut &cut)
{
globalShortcut = cut;
emit q->globalShortcutChanged(cut.primary());
}
void KActionPrivate::slotTriggered()
{
#ifdef KDE3_SUPPORT
emit q->activated();
#endif
emit q->triggered(QApplication::mouseButtons(), QApplication::keyboardModifiers());
if (authAction) {
KAuth::Action::AuthStatus s = authAction->earlyAuthorize();
switch(s) {
case KAuth::Action::Denied:
q->setEnabled(false);
break;
case KAuth::Action::Authorized:
emit q->authorized(authAction);
break;
default:
break;
}
}
}
void KActionPrivate::authStatusChanged(int status)
{
KAuth::Action::AuthStatus s = (KAuth::Action::AuthStatus)status;
switch(s) {
case KAuth::Action::Authorized:
q->setEnabled(true);
if(!oldIcon.isNull()) {
q->setIcon(oldIcon);
oldIcon = KIcon();
}
break;
case KAuth::Action::AuthRequired:
q->setEnabled(true);
oldIcon = KIcon(q->icon());
q->setIcon(KIcon("dialog-password"));
break;
default:
q->setEnabled(false);
if(!oldIcon.isNull()) {
q->setIcon(oldIcon);
oldIcon = KIcon();
}
}
}
bool KAction::event(QEvent *event)
{
if (event->type() == QEvent::Shortcut) {
QShortcutEvent *se = static_cast<QShortcutEvent*>(event);
if(se->isAmbiguous()) {
KMessageBox::information(
NULL, // No widget to be seen around here
i18n( "The key sequence '%1' is ambiguous. Use 'Configure Shortcuts'\n"
"from the 'Settings' menu to solve the ambiguity.\n"
"No action will be triggered.",
se->key().toString(QKeySequence::NativeText)),
i18n("Ambiguous shortcut detected"));
return true;
}
}
return QAction::event(event);
}
//---------------------------------------------------------------------
// KAction
//---------------------------------------------------------------------
KAction::KAction(QObject *parent)
: QWidgetAction(parent), d(new KActionPrivate)
{
d->init(this);
}
KAction::KAction(const QString &text, QObject *parent)
: QWidgetAction(parent), d(new KActionPrivate)
{
d->init(this);
setText(text);
}
KAction::KAction(const KIcon &icon, const QString &text, QObject *parent)
: QWidgetAction(parent), d(new KActionPrivate)
{
d->init(this);
setIcon(icon);
setText(text);
}
KAction::~KAction()
{
if (d->globalShortcutEnabled) {
// - remove the action from KGlobalAccel
d->globalShortcutEnabled = false;
KGlobalAccel::self()->d->remove(this, KGlobalAccelPrivate::SetInactive);
}
KGestureMap::self()->removeGesture(d->shapeGesture, this);
KGestureMap::self()->removeGesture(d->rockerGesture, this);
delete d;
}
bool KAction::isShortcutConfigurable() const
{
return property("isShortcutConfigurable").toBool();
}
void KAction::setShortcutConfigurable( bool b )
{
setProperty("isShortcutConfigurable", b);
}
KShortcut KAction::shortcut(ShortcutTypes type) const
{
Q_ASSERT(type);
if (type == DefaultShortcut) {
QKeySequence primary = property("defaultPrimaryShortcut").value<QKeySequence>();
QKeySequence secondary = property("defaultAlternateShortcut").value<QKeySequence>();
return KShortcut(primary, secondary);
}
QKeySequence primary = shortcuts().value(0);
QKeySequence secondary = shortcuts().value(1);
return KShortcut(primary, secondary);
}
void KAction::setShortcut( const KShortcut & shortcut, ShortcutTypes type )
{
Q_ASSERT(type);
if (type & DefaultShortcut) {
setProperty("defaultPrimaryShortcut", shortcut.primary());
setProperty("defaultAlternateShortcut", shortcut.alternate());
}
if (type & ActiveShortcut) {
QAction::setShortcuts(shortcut);
}
}
void KAction::setShortcut( const QKeySequence & keySeq, ShortcutTypes type )
{
Q_ASSERT(type);
if (type & DefaultShortcut)
setProperty("defaultPrimaryShortcut", keySeq);
if (type & ActiveShortcut) {
QAction::setShortcut(keySeq);
}
}
void KAction::setShortcuts(const QList<QKeySequence>& shortcuts, ShortcutTypes type)
{
setShortcut(KShortcut(shortcuts), type);
}
const KShortcut & KAction::globalShortcut(ShortcutTypes type) const
{
Q_ASSERT(type);
if (type == DefaultShortcut)
return d->defaultGlobalShortcut;
return d->globalShortcut;
}
void KAction::setGlobalShortcut( const KShortcut & shortcut, ShortcutTypes type,
GlobalShortcutLoading load )
{
Q_ASSERT(type);
bool changed = false;
// protect against garbage keycode -1 that Qt sometimes produces for exotic keys;
// at the moment (~mid 2008) Multimedia PlayPause is one of those keys.
int shortcutKeys[8];
for (int i = 0; i < 4; i++) {
shortcutKeys[i] = shortcut.primary()[i];
shortcutKeys[i + 4] = shortcut.alternate()[i];
}
for (int i = 0; i < 8; i++) {
if (shortcutKeys[i] == -1) {
kWarning(283) << "Encountered garbage keycode (keycode = -1) in input, not doing anything.";
return;
}
}
if (!d->globalShortcutEnabled) {
changed = true;
if (objectName().isEmpty() || objectName().startsWith(QLatin1String("unnamed-"))) {
kWarning(283) << "Attempt to set global shortcut for action without objectName()."
" Read the setGlobalShortcut() documentation.";
return;
}
d->globalShortcutEnabled = true;
KGlobalAccel::self()->d->doRegister(this);
}
if ((type & DefaultShortcut) && d->defaultGlobalShortcut != shortcut) {
d->defaultGlobalShortcut = shortcut;
changed = true;
}
if ((type & ActiveShortcut) && d->globalShortcut != shortcut) {
d->globalShortcut = shortcut;
changed = true;
}
//We want to have updateGlobalShortcuts called on a new action in any case so that
//it will be registered properly. In the case of the first setShortcut() call getting an
//empty shortcut parameter this would not happen...
if (changed || d->neverSetGlobalShortcut) {
KGlobalAccel::self()->d->updateGlobalShortcut(this, type | load);
d->neverSetGlobalShortcut = false;
}
}
#ifndef KDE_NO_DEPRECATED
bool KAction::globalShortcutAllowed() const
{
return d->globalShortcutEnabled;
}
#endif
bool KAction::isGlobalShortcutEnabled() const
{
return d->globalShortcutEnabled;
}
#ifndef KDE_NO_DEPRECATED
void KAction::setGlobalShortcutAllowed( bool allowed, GlobalShortcutLoading /* load */ )
{
if (allowed) {
//### no-op
} else {
forgetGlobalShortcut();
}
}
#endif
void KAction::forgetGlobalShortcut()
{
d->globalShortcut = KShortcut();
d->defaultGlobalShortcut = KShortcut();
if (d->globalShortcutEnabled) {
d->globalShortcutEnabled = false;
d->neverSetGlobalShortcut = true; //it's a fresh start :)
KGlobalAccel::self()->d->remove(this, KGlobalAccelPrivate::UnRegister);
}
}
KShapeGesture KAction::shapeGesture( ShortcutTypes type ) const
{
Q_ASSERT(type);
if ( type & DefaultShortcut )
return d->defaultShapeGesture;
return d->shapeGesture;
}
KRockerGesture KAction::rockerGesture( ShortcutTypes type ) const
{
Q_ASSERT(type);
if ( type & DefaultShortcut )
return d->defaultRockerGesture;
return d->rockerGesture;
}
void KAction::setShapeGesture( const KShapeGesture& gest, ShortcutTypes type )
{
Q_ASSERT(type);
if( type & DefaultShortcut )
d->defaultShapeGesture = gest;
if ( type & ActiveShortcut ) {
if ( KGestureMap::self()->findAction( gest ) ) {
kDebug(283) << "New mouse gesture already in use, won't change gesture.";
return;
}
KGestureMap::self()->removeGesture( d->shapeGesture, this );
KGestureMap::self()->addGesture( gest, this );
d->shapeGesture = gest;
}
}
void KAction::setRockerGesture( const KRockerGesture& gest, ShortcutTypes type )
{
Q_ASSERT(type);
if( type & DefaultShortcut )
d->defaultRockerGesture = gest;
if ( type & ActiveShortcut ) {
if ( KGestureMap::self()->findAction( gest ) ) {
kDebug(283) << "New mouse gesture already in use, won't change gesture.";
return;
}
KGestureMap::self()->removeGesture( d->rockerGesture, this );
KGestureMap::self()->addGesture( gest, this );
d->rockerGesture = gest;
}
}
void KAction::setHelpText(const QString& text)
{
setStatusTip(text);
setToolTip(text);
if (whatsThis().isEmpty())
setWhatsThis(text);
}
KAuth::Action *KAction::authAction() const
{
return d->authAction;
}
void KAction::setAuthAction(const QString &actionName)
{
if (actionName.isEmpty()) {
setAuthAction(0);
} else {
setAuthAction(new KAuth::Action(actionName));
}
}
void KAction::setAuthAction(KAuth::Action *action)
{
if (d->authAction == action) {
return;
}
if (d->authAction) {
disconnect(d->authAction->watcher(), SIGNAL(statusChanged(int)),
this, SLOT(authStatusChanged(int)));
//delete d->authAction;
d->authAction = 0;
if (!d->oldIcon.isNull()) {
setIcon(d->oldIcon);
d->oldIcon = KIcon();
}
}
if (action != 0) {
d->authAction = action;
// Set the parent widget
d->authAction->setParentWidget(parentWidget());
connect(d->authAction->watcher(), SIGNAL(statusChanged(int)),
this, SLOT(authStatusChanged(int)));
d->authStatusChanged(d->authAction->status());
}
}
/* vim: et sw=2 ts=2
*/
#include "kaction.moc"
| [
"Jeremy@jbdynamics.net"
] | Jeremy@jbdynamics.net |
675b5d102cffd3e44e1bf1e812beca5baa7d481e | 6ceef7c951794e782fe044d0b8eb6997f9d8809b | /theNewBoston/stockMarketSimulator.cpp | daa61a283500f9a9daaafe9bec2a71464a76b1e0 | [] | no_license | sandeepatel01/Learn_CODE | 26798ed42b6203985299ddaa8ce36674451726e7 | 0b43d028bacee97f434b9391f96668212cb253c2 | refs/heads/master | 2023-03-19T08:13:19.516303 | 2021-01-15T18:10:30 | 2021-01-15T18:10:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 257 | cpp | #include <iostream>
#include <cmath>
using namespace std;
int main()
{
float a;
float p = 10000;
float r = .03;
for(int day = 1; day <=30; day++)
{
a = p * pow(1+r, day);
cout << day << " ------- " << a << endl;
}
} | [
"rosekamallove@gmail.com"
] | rosekamallove@gmail.com |
b9f3c9916f3f6c346b3f4dbf6fef1294713abb93 | af7977991477325ddc604b6d3e2ac3cb4aa29337 | /FlappyBirdGame3D3.0/Temp/il2cppOutput/il2cppOutput/AssemblyU2DCSharp_Vuforia_VuforiaBehaviour1383180241.h | 584f92669c16ad910d89e57b544c8db2c6330b7d | [] | no_license | jpf2141/FlappyBird3D | b824cf5fac6ca3c5739afc342b659af1f2836ab9 | fe4e9c421ec8dc26a7befd620f9deaf3c6361de5 | refs/heads/master | 2021-01-21T13:53:25.062470 | 2016-05-06T02:39:28 | 2016-05-06T02:39:28 | 55,712,365 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,405 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// Vuforia.VuforiaBehaviour
struct VuforiaBehaviour_t1383180241;
#include "Vuforia_UnityExtensions_Vuforia_VuforiaAbstractBeh2427322319.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Vuforia.VuforiaBehaviour
struct VuforiaBehaviour_t1383180241 : public VuforiaAbstractBehaviour_t2427322319
{
public:
public:
};
struct VuforiaBehaviour_t1383180241_StaticFields
{
public:
// Vuforia.VuforiaBehaviour Vuforia.VuforiaBehaviour::mVuforiaBehaviour
VuforiaBehaviour_t1383180241 * ___mVuforiaBehaviour_43;
public:
inline static int32_t get_offset_of_mVuforiaBehaviour_43() { return static_cast<int32_t>(offsetof(VuforiaBehaviour_t1383180241_StaticFields, ___mVuforiaBehaviour_43)); }
inline VuforiaBehaviour_t1383180241 * get_mVuforiaBehaviour_43() const { return ___mVuforiaBehaviour_43; }
inline VuforiaBehaviour_t1383180241 ** get_address_of_mVuforiaBehaviour_43() { return &___mVuforiaBehaviour_43; }
inline void set_mVuforiaBehaviour_43(VuforiaBehaviour_t1383180241 * value)
{
___mVuforiaBehaviour_43 = value;
Il2CppCodeGenWriteBarrier(&___mVuforiaBehaviour_43, value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"kdj2109@columbia.edu"
] | kdj2109@columbia.edu |
2bb14f8f714ba2187df20e3cc2071921b45a9c18 | 14f3dfb46f5270b1e5f307eb9b5ba5683215ab25 | /interval_sum.cpp | c85edeb2f8d24bfc5872b6756283ff1373b7fb66 | [] | no_license | devleejb/algorithm-snippets | 7f0a36ac95511288d595a01b34f83a43354a427d | 43e63ad1c1cc108cc2df233a4e838bb1022406d2 | refs/heads/main | 2023-08-24T01:02:17.434821 | 2021-10-11T06:09:28 | 2021-10-11T06:09:28 | 404,652,578 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 434 | cpp | #include <stdio.h>
using namespace std;
int arr[5] = {1, 2, 3, 4, 5};
int prefixSum[6];
int sumVal;
void calPrefixSum(int n) {
for (int i = 0; i <= n; ++i) {
prefixSum[i + 1] = sumVal += arr[i];
}
}
// Return Interval Sum [start, end]
int intervalSum(int start, int end) {
return prefixSum[end] - prefixSum[start - 1];
}
int main() {
calPrefixSum(5);
printf("%d", intervalSum(1, 4));
return 0;
} | [
"dev.leejb@gmail.com"
] | dev.leejb@gmail.com |
a6a362c4eb8379993c626185c2ca374a0735608f | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5652388522229760_0/C++/heroming/heroming.cpp | fd09d7ba1f3f1251ffbc09a36bc4bc09806524c9 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,985 | cpp | /*
* Author:heroming
* File:heroming.cpp
* Time:2016/4/9 8:54:38
*/
#include <vector>
#include <list>
#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <string>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <ctime>
using namespace std;
#define px first
#define py second
#define pb push_back
#define sz(v) ((int)(v).size())
#define all(v) (v).begin(), (v).end()
#define clr(v, e) memset(v, e, sizeof(v))
#define rep(it, v) for (auto it : v)
#define forn(i, n) for (int i = 0; i < (n); ++ i)
#define form(i, a, b) for (int i = (a); i <= (b); ++ i)
#define forv(i, v) for (int i = 0; i < sz(v); ++ i)
#define iter(it, v) for (auto it = v.begin(); it != v.end(); ++ it)
typedef long long lint;
typedef vector<int> vint;
typedef vector<string> vstring;
typedef pair<int, int> pint;
typedef vector<lint> vlint;
typedef vector<pint> vpint;
const int maxn = 1000000;
const int maxm = 12;
int n;
bool v[maxm];
int solve(const int x) {
clr(v, 1);
int cnt = 0;
for (int i = 1; i <= 100; ++ i) {
int w = x * i;
while (w) {
int e = w % 10;
w /= 10;
if (v[e]) {
v[e] = 0;
++ cnt;
if (cnt == 10) {
return x * i;
}
}
}
}
return -1;
}
int main() {
freopen("heroming.out", "w", stdout);
int cas = 0;
scanf("%d", &cas);
for (int l = 1; l <= cas; ++ l) {
scanf("%d", &n);
int ans = solve(n);
if (ans == -1) {
printf("Case #%d: INSOMNIA\n", l);
} else {
printf("Case #%d: %d\n", l, ans);
}
}
return 0;
}
| [
"alexandra1.back@gmail.com"
] | alexandra1.back@gmail.com |
6f0549f8d2cd60ae5fe437fcccdb23d74a1f282b | 883887c3c84bd3ac4a11ac76414129137a1b643b | /vuexporter2009/include/n3dfile.h | 9e9e31e0609dd60a0fa5a7be43adf2f41b3eea4e | [] | no_license | 15831944/vAcademia | 4dbb36d9d772041e2716506602a602d516e77c1f | 447f9a93defb493ab3b6f6c83cbceb623a770c5c | refs/heads/master | 2022-03-01T05:28:24.639195 | 2016-08-18T12:32:22 | 2016-08-18T12:32:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,880 | h | // n3dfile.h: interface for the CCamera class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_IN3DFILE_H__2EA8A433_3318_4E3E_A71D_E986DA9A4673__INCLUDED_)
#define AFX_IN3DFILE_H__2EA8A433_3318_4E3E_A71D_E986DA9A4673__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
namespace natura3d
{
#define FILEEX_ERR_NOERROR 0x00
#define FILEEX_ERR_INVALID_OPCLOSEDFILE 0x01
#define FILEEX_ERR_PARAM_OUTOFRANGE 0x02
#define FILEEX_ERR_OTHERIO_CURRENTLY_RUNNG 0x03
#define FILEEX_ERR_INVALIDPARAM 0x04
struct ifileexception
{
virtual DWORD get_custom_error() = 0;
virtual DWORD get_win_error_code() = 0;
virtual LPCTSTR get_custom_error_msg() = 0;
virtual LPCTSTR get_win_error_msg() = 0;
};
struct ifile
{
virtual ~ifile(){}
virtual void* get_file_data(LPVOID *data, DWORD* size) = 0;
virtual void free_file_data(LPVOID data) = 0;
virtual BOOL open( LPCTSTR lpFile, DWORD dwCreateDisp = 0,
DWORD dwAccess = GENERIC_READ | GENERIC_WRITE, DWORD dwShare = 0,
LPSECURITY_ATTRIBUTES lpSec = NULL ) throw( ifileexception ) = 0;
virtual void close() = 0;
virtual UINT read( TCHAR* pszBuffer, UINT uCount, UINT* puCount ) = 0;
virtual DWORD read( BYTE* pBuffer, DWORD dwSize ) throw( ifileexception ) = 0;
virtual void write( const TCHAR* pszBuffer, UINT uCount, UINT* puCount ) = 0;
virtual DWORD seek( DWORD lToMove, DWORD dwMoveFrom = FILE_BEGIN ) throw( ifileexception ) = 0;
virtual DWORD seek_to_begin() throw( ifileexception ) = 0;
virtual DWORD seek_to_end() throw( ifileexception ) = 0;
virtual DWORD get_file_size() = 0;
virtual bool attach(void* data, DWORD size) = 0;
virtual void* detach() = 0;
virtual LPCTSTR get_file_path() = 0;
};
};
#endif // !defined(AFX_IN3DFILE_H__2EA8A433_3318_4E3E_A71D_E986DA9A4673__INCLUDED_) | [
"ooo.vspaces@gmail.com"
] | ooo.vspaces@gmail.com |
f14178fc996ee4c667e4ede8216c99f9a185492a | 44f7f0513aa956e2fe880ab3537255d4f13940ca | /Engine/Code/Engine/Utils/LinkedPtrList.hpp | 8943efca06db3d433432e2c585a7b098fc5d08e8 | [] | no_license | ZanneZankyo/Zankyo-Games | ae1862f174d13c80b70657a3a880952fa6279a3c | e75838242cabb0467b6934704a2eeb7dba1c038c | refs/heads/master | 2020-03-17T20:30:07.300836 | 2018-07-09T22:53:51 | 2018-07-09T22:53:51 | 133,913,193 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,234 | hpp | #pragma once
template<typename DataType>
class LinkedPtrListNode
{
public:
LinkedPtrListNode<DataType>* m_next;
DataType* m_data;
public:
DataType* Data() { return m_data; }
void Initialize() { m_next = nullptr; m_data = nullptr; }
void Free() { free(m_data); }
void Destroy(bool deleteMeta = true) {
if(deleteMeta)
free(m_data);
if (m_next)
{
m_next->~LinkedPtrListNode();
free(m_next);
}
}
};
//linked list that store ptr (DataType*)
template<typename DataType>
class LinkedPtrList
{
private:
LinkedPtrListNode<DataType>* m_head;
public:
DataType* Get(size_t index);
size_t Size();
void PushFront(DataType* data);
void SortingPush(DataType* data, bool ascending = true);
void Delete(LinkedPtrListNode<DataType>* node);
LinkedPtrListNode<DataType>* Head() { return m_head; }
void Initialize() { m_head = nullptr; }
void Destroy(bool deleteMeta) { m_head->Destroy(deleteMeta); }
};
template<typename DataType>
void LinkedPtrList<DataType>::SortingPush(DataType* data, bool ascending /*= true*/)
{
LinkedPtrListNode<DataType>* newNode = (LinkedPtrListNode<DataType>*)malloc(sizeof(LinkedPtrListNode<DataType>));
newNode->Initialize();
newNode->m_data = data;
if (!m_head)
{
m_head = newNode;
return;
}
LinkedPtrListNode<DataType>* prev = nullptr;
LinkedPtrListNode<DataType>* current = m_head;
bool isPushed = false;
while (current)
{
bool nodeFound = false;
if (ascending && *(newNode->Data()) < *(current->Data()))
nodeFound = true;
else if (!ascending && !(*(newNode->Data()) < *(current->Data())))
nodeFound = true;
if (nodeFound)
{
if (prev)
prev->m_next = newNode;
else
m_head = newNode;
newNode->m_next = current;
isPushed = true;
break;
}
prev = current;
current = current->m_next;
}
if (!isPushed)
prev->m_next = newNode;
}
template<typename DataType>
size_t LinkedPtrList<DataType>::Size()
{
size_t size = 0;
LinkedPtrListNode<DataType>* current = m_head;
while (current)
{
size++;
current = current->m_next;
}
return size;
}
template<typename DataType>
void LinkedPtrList<DataType>::PushFront(DataType* data)
{
LinkedPtrListNode<DataType>* newNode = (LinkedPtrListNode<DataType>*)malloc(sizeof(LinkedPtrListNode<DataType>));
newNode->Initialize();
newNode->m_next = m_head;
newNode->m_data = data;
m_head = newNode;
}
template<typename DataType>
void LinkedPtrList<DataType>::Delete(LinkedPtrListNode<DataType>* node)
{
if (!m_head)
return;
if (node == m_head)
{
LinkedPtrListNode<DataType>* temp = m_head;
m_head = m_head->m_next;
temp->Free();
free(temp);
return;
}
LinkedPtrListNode<DataType>* prev = m_head;
LinkedPtrListNode<DataType>* current = prev->m_next;
while (current)
{
if (current == node)
break;
prev = current;
current = current->m_next;
}
if (!current)
return;
prev->m_next = current->m_next;
//free(current->m_data);
current->Free();
free(current);
}
template<typename DataType>
DataType* LinkedPtrList<DataType>::Get(size_t index)
{
int count = 0;
LinkedPtrListNode<DataType>* current = m_head;
while (count < index || current)
{
current = current->m_next;
count++;
}
if (current)
return current->m_data;
return nullptr;
}
| [
"zannezankyo@gmail.com"
] | zannezankyo@gmail.com |
ee6eef7f825fdb2bd34740be94c9c335523f3e93 | a81c07a5663d967c432a61d0b4a09de5187be87b | /content/browser/loader/source_stream_to_data_pipe.h | f909755ab70b5b95620499b8684a7ae4b6fc18b8 | [
"BSD-3-Clause"
] | permissive | junxuezheng/chromium | c401dec07f19878501801c9e9205a703e8643031 | 381ce9d478b684e0df5d149f59350e3bc634dad3 | refs/heads/master | 2023-02-28T17:07:31.342118 | 2019-09-03T01:42:42 | 2019-09-03T01:42:42 | 205,967,014 | 2 | 0 | BSD-3-Clause | 2019-09-03T01:48:23 | 2019-09-03T01:48:23 | null | UTF-8 | C++ | false | false | 1,824 | 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 CONTENT_BROWSER_LOADER_SOURCE_STREAM_TO_DATA_PIPE_H_
#define CONTENT_BROWSER_LOADER_SOURCE_STREAM_TO_DATA_PIPE_H_
#include "base/callback_forward.h"
#include "base/memory/weak_ptr.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/system/data_pipe.h"
#include "mojo/public/cpp/system/simple_watcher.h"
#include "services/network/public/cpp/net_adapters.h"
namespace net {
class SourceStream;
}
namespace content {
// A convenient adapter class to read out data from net::SourceStream
// and write them into a data pipe.
class CONTENT_EXPORT SourceStreamToDataPipe {
public:
// Reads out the data from |source| and write into |dest|.
SourceStreamToDataPipe(std::unique_ptr<net::SourceStream> source,
mojo::ScopedDataPipeProducerHandle dest,
base::OnceCallback<void(int)> completion_callback);
~SourceStreamToDataPipe();
// Start reading the source.
void Start();
int64_t TransferredBytes() const { return transferred_bytes_; }
private:
void ReadMore();
void DidRead(int result);
void OnDataPipeWritable(MojoResult result);
void OnDataPipeClosed(MojoResult result);
void OnComplete(int result);
std::unique_ptr<net::SourceStream> source_;
mojo::ScopedDataPipeProducerHandle dest_;
base::OnceCallback<void(int)> completion_callback_;
int64_t transferred_bytes_ = 0;
scoped_refptr<network::NetToMojoPendingBuffer> pending_write_;
mojo::SimpleWatcher writable_handle_watcher_;
base::WeakPtrFactory<SourceStreamToDataPipe> weak_factory_{this};
};
} // namespace content
#endif // CONTENT_BROWSER_LOADER_SOURCE_STREAM_TO_DATA_PIPE_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
4057ea9bd890e7cc1b7935710a65135d8084a66c | befd3c888dff79f56bdc8892bdebe8847d59c9ad | /ZLToolKit/Util/NoticeCenter.h | 8a4469536e9ea43c2b41456a85b16fd15127a134 | [] | no_license | wlfsihua/HI3520DVR | 2a44d9dc5cab7b4eccf854d95725723ed972658b | 5c09110cbe140dc3e44e5c6366995cb45c8bf14c | refs/heads/master | 2022-11-06T09:29:38.946490 | 2020-06-21T17:43:16 | 2020-06-21T17:43:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,363 | h | /*
* MIT License
*
* Copyright (c) 2016 xiongziliang <771730766@qq.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef SRC_UTIL_NOTICECENTER_H_
#define SRC_UTIL_NOTICECENTER_H_
#include <mutex>
#include <memory>
#include <string>
#include <exception>
#include <functional>
#include <unordered_map>
#include "function_traits.h"
using namespace std;
namespace ZL {
namespace Util {
class NoticeCenter {
public:
class InterruptException : public std::runtime_error
{
public:
InterruptException():std::runtime_error("InterruptException"){}
virtual ~InterruptException(){}
};
virtual ~NoticeCenter(){}
static NoticeCenter &Instance();
template<typename ...ArgsType>
bool emitEvent(const char *strEvent,ArgsType &&...args){
lock_guard<recursive_mutex> lck(_mtxListener);
auto it0 = _mapListener.find(strEvent);
if (it0 == _mapListener.end()) {
return false;
}
for(auto &pr : it0->second){
typedef function<void(ArgsType &&...)> funType;
funType *obj = (funType *)(pr.second.get());
try{
(*obj)(std::forward<ArgsType>(args)...);
}catch(InterruptException &ex){
break;
}
}
return it0->second.size();
}
template<typename FUN>
void addListener(void *tag, const char *strEvent, const FUN &fun) {
typedef typename function_traits<FUN>::stl_function_type funType;
std::shared_ptr<void> pListener(new funType(fun), [](void *ptr) {
funType *obj = (funType *)ptr;
delete obj;
});
lock_guard<recursive_mutex> lck(_mtxListener);
_mapListener[strEvent].emplace(tag,pListener);
}
void delListener(void *tag,const char *strEvent){
lock_guard<recursive_mutex> lck(_mtxListener);
auto it = _mapListener.find(strEvent);
if(it == _mapListener.end()){
return;
}
it->second.erase(tag);
if(it->second.empty()){
_mapListener.erase(it);
}
}
void delListener(void *tag){
lock_guard<recursive_mutex> lck(_mtxListener);
for(auto it = _mapListener.begin();it != _mapListener.end();){
it->second.erase(tag);
if(it->second.empty()){
it = _mapListener.erase(it);
continue;
}
++it;
}
}
private:
NoticeCenter(){}
recursive_mutex _mtxListener;
unordered_map<string,unordered_multimap<void *,std::shared_ptr<void> > > _mapListener;
};
} /* namespace Util */
} /* namespace ZL */
#endif /* SRC_UTIL_NOTICECENTER_H_ */
| [
"864733526@qq.com"
] | 864733526@qq.com |
69dd71bc466959b11e58fb977327fc2c69416994 | 4494c8ed801f7f3c2627c750b7d4fef469d70616 | /frontend/grader/framework.h | a5a8d95f1b2694e5a6ab3833e4de7dbfc4fe1c02 | [
"Apache-2.0"
] | permissive | william-redenbaugh/lc3tools | 7c9a2f23b6ab8ed6f48c72d28e13949ba1e277e4 | 33e3745a21750c703c0a895d5bed6a9d5a3eacd1 | refs/heads/master | 2022-11-20T21:33:12.706561 | 2020-07-16T07:59:14 | 2020-07-16T07:59:14 | 280,090,294 | 0 | 0 | Apache-2.0 | 2020-07-16T07:54:04 | 2020-07-16T07:54:03 | null | UTF-8 | C++ | false | false | 4,718 | h | /*
* Copyright 2020 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education.
*/
#include <cstdint>
#include <iostream>
#include <functional>
#include <map>
#include <string>
#include <sstream>
#include <vector>
#include "inputter.h"
#include "interface.h"
#include "printer.h"
struct TestCase;
extern std::vector<TestCase> tests;
extern uint32_t verify_count;
extern uint32_t verify_valid;
class BufferedPrinter : public lc3::utils::IPrinter
{
public:
BufferedPrinter(bool print_output) : print_output(print_output) {}
std::vector<char> display_buffer;
virtual void setColor(lc3::utils::PrintColor color) override { (void) color; }
virtual void print(std::string const & string) override;
virtual void newline(void) override;
void clear(void) { display_buffer.clear(); }
private:
bool print_output;
};
class StringInputter : public lc3::utils::IInputter
{
public:
StringInputter(void) { setString(""); }
StringInputter(std::string const & source) { setString(source); }
void setString(std::string const & source) { setStringAfter(source, 0); }
void setStringAfter(std::string const & source, uint32_t inst_count);
void beginInput(void) {}
bool getChar(char & c);
void endInput(void) {}
private:
std::string source;
uint32_t pos;
uint32_t inst_delay;
};
struct TestCase
{
std::string name;
std::function<void(lc3::sim &, StringInputter &)> test_func;
uint32_t points;
bool randomize;
TestCase(char const * name, std::function<void(lc3::sim &, StringInputter &)> test_func, uint32_t points,
bool randomize)
{
this->name = name;
this->test_func = test_func;
this->points = points;
this->randomize = randomize;
}
};
bool outputCompare(lc3::utils::IPrinter const & printer, std::string check, bool substr);
#define REGISTER_TEST(name, function, points) \
tests.emplace_back( #name , ( function ), ( points ), false); \
do {} while(false)
#define REGISTER_RANDOM_TEST(name, function, points) \
tests.emplace_back( #name , ( function ), ( points ), true); \
do {} while(false)
#define VERIFY_NAMED(message, check) \
verify_count += 1; \
std::cout << " " << ( message ) << " => "; \
if(( check ) == true) { \
verify_valid += 1; \
std::cout << "yes\n"; \
} else { \
std::cout << "no\n"; \
} \
do {} while(false)
#define VERIFY(check) \
VERIFY_NAMED(#check, check)
#define VERIFY_OUTPUT_NAMED(message, check) \
verify_count += 1; \
std::cout << " " << ( message ) << " => "; \
if(outputCompare(sim.getPrinter(), check, false)) { \
verify_valid += 1; \
std::cout << "yes\n"; \
} else { \
std::cout << "no\n"; \
} \
static_cast<BufferedPrinter &>(sim.getPrinter()).clear(); \
do {} while(false)
#define VERIFY_OUTPUT(check) \
VERIFY_OUTPUT_NAMED(#check, check)
#define VERIFY_OUTPUT_HAD_NAMED(message, check) \
verify_count += 1; \
std::cout << " " << ( message ) << " => "; \
if(outputCompare(sim.getPrinter(), check, true)) { \
verify_valid += 1; \
std::cout << "yes\n"; \
} else { \
std::cout << "no\n"; \
} \
static_cast<BufferedPrinter &>(sim.getPrinter()).clear(); \
do {} while(false)
#define VERIFY_OUTPUT_HAD(check) \
VERIFY_OUTPUT_HAD_NAMED(#check, check)
| [
"dev.sakhuja@gmail.com"
] | dev.sakhuja@gmail.com |
3bfa4ee9b0710cee212462abe9649cfe94cfcd41 | 5d01a2a16078b78fbb7380a6ee548fc87a80e333 | /ETS/Components/MM/EtsMmRisks/MmRvSynthGreeksAtom.h | 1fa56c2f9a86c67150b4e999ac46b7eabd0206b6 | [] | no_license | WilliamQf-AI/IVRMstandard | 2fd66ae6e81976d39705614cfab3dbfb4e8553c5 | 761bbdd0343012e7367ea111869bb6a9d8f043c0 | refs/heads/master | 2023-04-04T22:06:48.237586 | 2013-04-17T13:56:40 | 2013-04-17T13:56:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,154 | h | // MmRvSynthGreeksAtom.h : Declaration of the CMmRvSynthGreeksAtom
#ifndef __MMRVSYNTHGREEKSATOM_H__
#define __MMRVSYNTHGREEKSATOM_H__
#pragma once
#include "resource.h" // main symbols
#include "EtsMmRisks.h"
#include "MmRvPrice.h"
_COM_SMARTPTR_TYPEDEF(IMmRvSynthGreeksAtom, IID_IMmRvSynthGreeksAtom);
/////////////////////////////////////////////////////////////////////////////
//
struct __MmRvSynthGreeksAtom
{
// core info
LONG m_nContractID;
EtsContractTypeEnum m_enContractType;
_bstr_t m_bstrSymbol;
_bstr_t m_bstrSynthUndSymbol;
LONG m_nSynthUndID;
VARIANT_BOOL m_bIsTotal;
VARIANT_BOOL m_bVisible;
DOUBLE m_dDeliveryUnits;
DOUBLE m_dDeltaInShares;
DOUBLE m_dGammaInShares;
DOUBLE m_dGammaInSharesPerc;
DOUBLE m_dDeltaInMoney;
DOUBLE m_dBetaWtdDeltaInMoney;
DOUBLE m_dNetExposure;
VARIANT_BOOL m_bBadNetExposure;
VARIANT_BOOL m_bBadDelta;
VARIANT_BOOL m_bBadGamma;
VARIANT_BOOL m_bBadGammaPerc;
VARIANT_BOOL m_bBadDeltaInMoney;
VARIANT_BOOL m_bBadBetaWtdDeltaInMoney;
DOUBLE m_dNetDelta;
DOUBLE m_dNetGamma;
DOUBLE m_dRhoInShares;
VARIANT_BOOL m_bBadNetDelta;
VARIANT_BOOL m_bBadNetGamma;
VARIANT_BOOL m_bBadRhoInShares;
IMmRvPricePtr m_spSuPrice;
CComObject<CMmRvPrice>* m_pSuPrice;
DOUBLE m_dSuPrice;
DOUBLE m_dThetaInShares;
VARIANT_BOOL m_bBadThetaInShares;
__MmRvSynthGreeksAtom() :
m_pSuPrice(NULL),
m_nContractID(0L),
m_enContractType(enCtIndex),
m_nSynthUndID(0L),
m_bIsTotal(VARIANT_FALSE),
m_bVisible(VARIANT_FALSE),
m_dDeliveryUnits(BAD_DOUBLE_VALUE),
m_dDeltaInShares(BAD_DOUBLE_VALUE),
m_dGammaInShares(BAD_DOUBLE_VALUE),
m_dGammaInSharesPerc(BAD_DOUBLE_VALUE),
m_dDeltaInMoney(BAD_DOUBLE_VALUE),
m_dBetaWtdDeltaInMoney(BAD_DOUBLE_VALUE),
m_dSuPrice(BAD_DOUBLE_VALUE),
m_dRhoInShares(BAD_DOUBLE_VALUE),
m_dNetExposure(BAD_DOUBLE_VALUE),
m_bBadDelta(VARIANT_FALSE),
m_bBadGamma(VARIANT_FALSE),
m_bBadGammaPerc(VARIANT_FALSE),
m_bBadDeltaInMoney(VARIANT_FALSE),
m_bBadBetaWtdDeltaInMoney(VARIANT_FALSE),
m_dNetGamma(BAD_DOUBLE_VALUE),
m_bBadNetGamma(VARIANT_FALSE),
m_dNetDelta(BAD_DOUBLE_VALUE),
m_bBadNetDelta(VARIANT_FALSE),
m_bBadRhoInShares(VARIANT_FALSE),
m_bBadNetExposure(VARIANT_FALSE),
m_bBadThetaInShares(VARIANT_FALSE),
m_dThetaInShares(BAD_DOUBLE_VALUE)
{
}
void ClearValuesInShares()
{
m_dDeltaInShares = BAD_DOUBLE_VALUE;
m_dGammaInShares = BAD_DOUBLE_VALUE;
m_dGammaInSharesPerc = BAD_DOUBLE_VALUE;
m_dDeltaInMoney = BAD_DOUBLE_VALUE;
m_dBetaWtdDeltaInMoney = BAD_DOUBLE_VALUE;
m_dNetGamma = BAD_DOUBLE_VALUE;
m_dNetDelta = BAD_DOUBLE_VALUE;
m_dRhoInShares = BAD_DOUBLE_VALUE;
m_dNetExposure = BAD_DOUBLE_VALUE;
m_dThetaInShares = BAD_DOUBLE_VALUE;
m_bBadDelta = VARIANT_FALSE;
m_bBadGamma = VARIANT_FALSE;
m_bBadGammaPerc = VARIANT_FALSE;
m_bBadDeltaInMoney = VARIANT_FALSE;
m_bBadBetaWtdDeltaInMoney = VARIANT_FALSE;
m_bBadNetGamma = VARIANT_FALSE;
m_bBadNetDelta = VARIANT_FALSE;
m_bBadRhoInShares = VARIANT_FALSE;
m_bBadNetExposure = VARIANT_FALSE;
m_bBadThetaInShares = VARIANT_FALSE;
}
};
/////////////////////////////////////////////////////////////////////////////
//
class ATL_NO_VTABLE CMmRvSynthGreeksAtom :
public CComObjectRootEx<CComMultiThreadModel>,
public CComCoClass<CMmRvSynthGreeksAtom, &CLSID_MmRvSynthGreeksAtom>,
public ISupportErrorInfoImpl<&IID_IMmRvSynthGreeksAtom>,
public IDispatchImpl<IMmRvSynthGreeksAtom, &IID_IMmRvSynthGreeksAtom, &LIBID_EtsMmRisksLib, /*wMajor =*/ 1, /*wMinor =*/ 0>,
public __MmRvSynthGreeksAtom
{
public:
CMmRvSynthGreeksAtom()
{
m_pUnkMarshaler = NULL;
}
DECLARE_REGISTRY_RESOURCEID(IDR_MMRVSYNTHGREEKSATOM)
DECLARE_NOT_AGGREGATABLE(CMmRvSynthGreeksAtom)
BEGIN_COM_MAP(CMmRvSynthGreeksAtom)
COM_INTERFACE_ENTRY(IMmRvSynthGreeksAtom)
COM_INTERFACE_ENTRY(IDispatch)
COM_INTERFACE_ENTRY(ISupportErrorInfo)
COM_INTERFACE_ENTRY_AGGREGATE(IID_IMarshal, m_pUnkMarshaler.p)
END_COM_MAP()
DECLARE_PROTECT_FINAL_CONSTRUCT()
DECLARE_GET_CONTROLLING_UNKNOWN()
HRESULT FinalConstruct()
{
HRESULT hr = CComObject<CMmRvPrice>::CreateInstance(&m_pSuPrice);
if(FAILED(hr))
return hr;
m_spSuPrice.Attach(m_pSuPrice, TRUE);
return CoCreateFreeThreadedMarshaler(GetControllingUnknown(), &m_pUnkMarshaler.p);
}
void FinalRelease()
{
m_pUnkMarshaler.Release();
}
private:
CComPtr<IUnknown> m_pUnkMarshaler;
public:
// core info
IMPLEMENT_SIMPLE_PROPERTY(LONG, ContractID, m_nContractID)
IMPLEMENT_SIMPLE_PROPERTY(EtsContractTypeEnum, ContractType, m_enContractType)
IMPLEMENT_BSTRT_PROPERTY(Symbol, m_bstrSymbol)
IMPLEMENT_BSTRT_PROPERTY(SynthUndSymbol, m_bstrSynthUndSymbol)
IMPLEMENT_SIMPLE_PROPERTY(LONG, SynthUndID, m_nSynthUndID)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, IsTotal, m_bIsTotal)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, Visible, m_bVisible)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, DeliveryUnits, m_dDeliveryUnits)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, DeltaInShares, m_dDeltaInShares)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, GammaInShares, m_dGammaInShares)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, GammaInSharesPerc, m_dGammaInSharesPerc)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, DeltaInMoney, m_dDeltaInMoney)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, BetaWtdDeltaInMoney, m_dBetaWtdDeltaInMoney)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, NetGamma, m_dNetGamma)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, NetDelta, m_dNetDelta)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, RhoInShares, m_dRhoInShares)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, NetExposure, m_dNetExposure)
IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, ThetaInShares, m_dThetaInShares)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadDelta, m_bBadDelta)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadGamma, m_bBadGamma)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadGammaPerc, m_bBadGammaPerc)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadDeltaInMoney, m_bBadDeltaInMoney)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadBetaWtdDeltaInMoney, m_bBadBetaWtdDeltaInMoney)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadNetGamma, m_bBadNetGamma)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadNetDelta, m_bBadNetDelta)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadRhoInShares, m_bBadRhoInShares)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadNetExposure, m_bBadNetExposure)
IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadThetaInShares, m_bBadThetaInShares)
IMPLEMENT_OBJECTREADONLY_PROPERTY(IMmRvPrice*, SuPrice, m_spSuPrice);
STDMETHODIMP ClearValuesInShares()
{
__MmRvSynthGreeksAtom::ClearValuesInShares();
return S_OK;
}
};
OBJECT_ENTRY_AUTO(__uuidof(MmRvSynthGreeksAtom), CMmRvSynthGreeksAtom)
#endif //__MMRVSYNTHGREEKSATOM_H__
//// MmRvSynthGreeksAtom.h : Declaration of the CMmRvSynthGreeksAtom
//#ifndef __MMRVSYNTHGREEKSATOM_H__
//#define __MMRVSYNTHGREEKSATOM_H__
//#pragma once
//
//#include "resource.h" // main symbols
//#include "EtsMmRisks.h"
//
//_COM_SMARTPTR_TYPEDEF(IMmRvSynthGreeksAtom, IID_IMmRvSynthGreeksAtom);
//
///////////////////////////////////////////////////////////////////////////////
////
//struct __MmRvSynthGreeksAtom
//{
// // core info
// LONG m_nContractID;
// EtsContractTypeEnum m_enContractType;
// _bstr_t m_bstrSymbol;
// _bstr_t m_bstrSynthUndSymbol;
//
// LONG m_nSynthUndID;
// VARIANT_BOOL m_bIsTotal;
//
// VARIANT_BOOL m_bVisible;
// DOUBLE m_dDeliveryUnits;
//
// DOUBLE m_dDeltaInShares;
// DOUBLE m_dGammaInShares;
// DOUBLE m_dGammaInSharesPerc;
// DOUBLE m_dDeltaInMoney;
// DOUBLE m_dBetaWtdDeltaInMoney;
//
// VARIANT_BOOL m_bBadDelta;
// VARIANT_BOOL m_bBadGamma;
// VARIANT_BOOL m_bBadGammaPerc;
// VARIANT_BOOL m_bBadDeltaInMoney;
// VARIANT_BOOL m_bBadBetaWtdDeltaInMoney;
//
// DOUBLE m_dNetGamma;
// VARIANT_BOOL m_bBadNetGamma;
//
//
// __MmRvSynthGreeksAtom() :
// m_nContractID(0L),
// m_enContractType(enCtIndex),
//
// m_nSynthUndID(0L),
// m_bIsTotal(VARIANT_FALSE),
//
// m_bVisible(VARIANT_FALSE),
// m_dDeliveryUnits(BAD_DOUBLE_VALUE),
//
// m_dDeltaInShares(BAD_DOUBLE_VALUE),
// m_dGammaInShares(BAD_DOUBLE_VALUE),
// m_dGammaInSharesPerc(BAD_DOUBLE_VALUE),
// m_dDeltaInMoney(BAD_DOUBLE_VALUE),
// m_dBetaWtdDeltaInMoney(BAD_DOUBLE_VALUE),
//
// m_bBadDelta(VARIANT_FALSE),
// m_bBadGamma(VARIANT_FALSE),
// m_bBadGammaPerc(VARIANT_FALSE),
// m_bBadDeltaInMoney(VARIANT_FALSE),
// m_bBadBetaWtdDeltaInMoney(VARIANT_FALSE),
// m_dNetGamma(BAD_DOUBLE_VALUE),
// m_bBadNetGamma(VARIANT_FALSE)
//
// {
// }
//
// void ClearValuesInShares()
// {
// m_dDeltaInShares = BAD_DOUBLE_VALUE;
// m_dGammaInShares = BAD_DOUBLE_VALUE;
// m_dGammaInSharesPerc = BAD_DOUBLE_VALUE;
// m_dDeltaInMoney = BAD_DOUBLE_VALUE;
// m_dBetaWtdDeltaInMoney = BAD_DOUBLE_VALUE;
//
// m_bBadDelta = VARIANT_FALSE;
// m_bBadGamma = VARIANT_FALSE;
// m_bBadGammaPerc = VARIANT_FALSE;
// m_bBadDeltaInMoney = VARIANT_FALSE;
// m_bBadBetaWtdDeltaInMoney = VARIANT_FALSE;
// }
//};
//
///////////////////////////////////////////////////////////////////////////////
////
//class ATL_NO_VTABLE CMmRvSynthGreeksAtom :
// public CComObjectRootEx<CComSingleThreadModel>,
// public CComCoClass<CMmRvSynthGreeksAtom, &CLSID_MmRvSynthGreeksAtom>,
// public ISupportErrorInfoImpl<&IID_IMmRvSynthGreeksAtom>,
// public IDispatchImpl<IMmRvSynthGreeksAtom, &IID_IMmRvSynthGreeksAtom, &LIBID_EtsMmRisksLib, /*wMajor =*/ 1, /*wMinor =*/ 0>,
// public __MmRvSynthGreeksAtom
//{
//public:
// CMmRvSynthGreeksAtom()
// {
// }
//
//DECLARE_REGISTRY_RESOURCEID(IDR_MMRVSYNTHGREEKSATOM)
//
//DECLARE_NOT_AGGREGATABLE(CMmRvSynthGreeksAtom)
//
//BEGIN_COM_MAP(CMmRvSynthGreeksAtom)
// COM_INTERFACE_ENTRY(IMmRvSynthGreeksAtom)
// COM_INTERFACE_ENTRY(IDispatch)
// COM_INTERFACE_ENTRY(ISupportErrorInfo)
//END_COM_MAP()
//
// DECLARE_PROTECT_FINAL_CONSTRUCT()
//
// HRESULT FinalConstruct()
// {
// return S_OK;
// }
//
// void FinalRelease()
// {
// }
//
//public:
//
// // core info
// IMPLEMENT_SIMPLE_PROPERTY(LONG, ContractID, m_nContractID)
// IMPLEMENT_SIMPLE_PROPERTY(EtsContractTypeEnum, ContractType, m_enContractType)
// IMPLEMENT_BSTRT_PROPERTY(Symbol, m_bstrSymbol)
// IMPLEMENT_BSTRT_PROPERTY(SynthUndSymbol, m_bstrSynthUndSymbol)
//
// IMPLEMENT_SIMPLE_PROPERTY(LONG, SynthUndID, m_nSynthUndID)
// IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, IsTotal, m_bIsTotal)
//
// IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, Visible, m_bVisible)
//
// IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, DeliveryUnits, m_dDeliveryUnits)
//
// IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, DeltaInShares, m_dDeltaInShares)
// IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, GammaInShares, m_dGammaInShares)
// IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, GammaInSharesPerc, m_dGammaInSharesPerc)
// IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, DeltaInMoney, m_dDeltaInMoney)
// IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, BetaWtdDeltaInMoney, m_dBetaWtdDeltaInMoney)
//
// IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadDelta, m_bBadDelta)
// IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadGamma, m_bBadGamma)
// IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadGammaPerc, m_bBadGammaPerc)
// IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadDeltaInMoney, m_bBadDeltaInMoney)
// IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadBetaWtdDeltaInMoney, m_bBadBetaWtdDeltaInMoney)
//
// IMPLEMENT_SIMPLE_PROPERTY(DOUBLE, NetGamma, m_dNetGamma)
// IMPLEMENT_SIMPLE_PROPERTY(VARIANT_BOOL, BadNetGamma, m_bBadNetGamma)
//
//
// STDMETHODIMP ClearValuesInShares()
// {
// __MmRvSynthGreeksAtom::ClearValuesInShares();
// return S_OK;
// }
//};
//
//OBJECT_ENTRY_AUTO(__uuidof(MmRvSynthGreeksAtom), CMmRvSynthGreeksAtom)
//
//#endif //__MMRVSYNTHGREEKSATOM_H__ | [
"chuchev@egartech.com"
] | chuchev@egartech.com |
990572a02c961f3e6251ef1e2ea535eefd67c70e | 1de92b1d5ac3659466066077e6b7dd267b0dc015 | /codes/miserman.cpp | 3f726ec98a4155432872c532719baeca17425759 | [] | no_license | sumedhm/spoj | 2fcb1e6ef7d9e511a6d47698d3b4d7d56bf8d564 | fd5ca5b6075da548100510bd841d4c06158fd88f | refs/heads/master | 2020-12-25T18:18:39.824168 | 2015-10-14T09:38:01 | 2015-10-14T09:38:01 | 15,586,919 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,062 | cpp | #include <iostream>
#include <stdlib.h>
using namespace std;
int minimum(int a, int b){
return (a<b ? a:b);
}
int minimumFare(int **fares, int m, int n){
if(m<=0 || n<=0) return 0;
int min;
if(n==1){
for(int i=0;i<m;i++) min += fares[i][0];
return min;
}
int fare[m][n];
for(int i=0;i<n;i++){
fare[0][i] = fares[0][i];
}
for(int i=1;i<m;i++){
for(int j=0;j<n;j++){
if(j==0){
fare[i][j] = minimum(fare[i-1][j], fare[i-1][j+1]) + fares[i][j];
} else if(j==n-1){
fare[i][j] = minimum(fare[i-1][j], fare[i-1][j-1]) + fares[i][j];
} else {
fare[i][j] = minimum(fare[i-1][j], minimum(fare[i-1][j-1], fare[i-1][j+1])) + fares[i][j];
}
}
}
min = fare[n-1][0];
for(int i=0;i<n;i++){
if(fare[n-1][i] < min) min = fare[n-1][i];
}
return min;
}
int main(){
int m,n;
int **arr;
cin >> m >> n;
arr = (int **) malloc (m * sizeof(int*));
for(int i=0;i<n;i++) arr[i] = (int *) malloc (sizeof(int)*n);
for(int i=0;i<m;i++)
for(int j=0;j<n;j++)
cin >> arr[i][j];
cout << minimumFare(arr, m, n) << endl;
return 0;
} | [
"sumedhm18@gmail.com"
] | sumedhm18@gmail.com |
1be70934c07533e87d932d120376119dea730b84 | 48952512107de9f5f05da4ace3017747f4233695 | /src/test/DoS_tests.cpp | 47423db5e41916f657bd10185443bf140f9890ac | [
"MIT"
] | permissive | eliooses/identifi | ba24bf943876f6ceb8f2742afee1e2fcd4a2dd00 | ec46aeeb63e8d3ec7e13d380691097db41bef8b4 | refs/heads/master | 2021-01-18T02:29:24.166610 | 2014-08-29T18:26:36 | 2014-08-29T18:26:36 | 23,488,383 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,483 | cpp | //
// Unit tests for denial-of-service detection/prevention code
//
#include <algorithm>
#include <boost/assign/list_of.hpp> // for 'map_list_of()'
#include <boost/date_time/posix_time/posix_time_types.hpp>
#include <boost/test/unit_test.hpp>
#include <boost/foreach.hpp>
#include "main.h"
#include "net.h"
#include "util.h"
#include <stdint.h>
// Tests this internal-to-main.cpp method:
extern bool AddOrphanTx(const CDataStream& vMsg);
extern unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans);
extern std::map<uint256, CDataStream*> mapOrphanTransactions;
extern std::map<uint256, std::map<uint256, CDataStream*> > mapOrphanTransactionsByPrev;
CService ip(uint32_t i)
{
struct in_addr s;
s.s_addr = i;
return CService(CNetAddr(s), GetDefaultPort());
}
BOOST_AUTO_TEST_SUITE(DoS_tests)
BOOST_AUTO_TEST_CASE(DoS_banning)
{
CNode::ClearBanned();
CAddress addr1(ip(0xa0b0c001));
CNode dummyNode1(INVALID_SOCKET, addr1, "", true);
dummyNode1.Misbehaving(100); // Should get banned
BOOST_CHECK(CNode::IsBanned(addr1));
BOOST_CHECK(!CNode::IsBanned(ip(0xa0b0c001|0x0000ff00))); // Different IP, not banned
CAddress addr2(ip(0xa0b0c002));
CNode dummyNode2(INVALID_SOCKET, addr2, "", true);
dummyNode2.Misbehaving(50);
BOOST_CHECK(!CNode::IsBanned(addr2)); // 2 not banned yet...
BOOST_CHECK(CNode::IsBanned(addr1)); // ... but 1 still should be
dummyNode2.Misbehaving(50);
BOOST_CHECK(CNode::IsBanned(addr2));
}
BOOST_AUTO_TEST_CASE(DoS_banscore)
{
CNode::ClearBanned();
mapArgs["-banscore"] = "111"; // because 11 is my favorite number
CAddress addr1(ip(0xa0b0c001));
CNode dummyNode1(INVALID_SOCKET, addr1, "", true);
dummyNode1.Misbehaving(100);
BOOST_CHECK(!CNode::IsBanned(addr1));
dummyNode1.Misbehaving(10);
BOOST_CHECK(!CNode::IsBanned(addr1));
dummyNode1.Misbehaving(1);
BOOST_CHECK(CNode::IsBanned(addr1));
mapArgs.erase("-banscore");
}
BOOST_AUTO_TEST_CASE(DoS_bantime)
{
CNode::ClearBanned();
int64 nStartTime = GetTime();
SetMockTime(nStartTime); // Overrides future calls to GetTime()
CAddress addr(ip(0xa0b0c001));
CNode dummyNode(INVALID_SOCKET, addr, "", true);
dummyNode.Misbehaving(100);
BOOST_CHECK(CNode::IsBanned(addr));
SetMockTime(nStartTime+60*60);
BOOST_CHECK(CNode::IsBanned(addr));
SetMockTime(nStartTime+60*60*24+1);
BOOST_CHECK(!CNode::IsBanned(addr));
}
BOOST_AUTO_TEST_SUITE_END()
| [
"martti.malmi@aalto.fi"
] | martti.malmi@aalto.fi |
f6b847a578d7c4fc1b5a6e03b08a2b3f7d66af0a | f44561bab919b065056bff7cc7ed395ff6a55dd2 | /pgk/zad5/grid.hpp | 9ccc7d9c0c38ac8fe6b8ef9daef60d818ea8891c | [] | no_license | CheessieStew/Stuff | dfb3015e9c45d972d76fffd473f54da7e8c8ebde | 1208d4f47ca80c0ec05b83003855e48832e3c208 | refs/heads/master | 2021-01-19T01:45:26.979829 | 2017-04-25T23:12:32 | 2017-04-25T23:12:32 | 53,255,724 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 359 | hpp | #pragma once
#include <GL/glew.h>
#include <glfw3.h>
#include <glm/glm.hpp>
#include <vector>
class Grid
{
int Density;
int MaxLoD;
int CurrentLoD;
GLuint vertexBuffer;
GLuint* indexBuffers;
public:
void BindVertices();
void BindLoD(int LoD);
void BindLoDNoDetail();
int HowManyElements();
Grid(int density, int numberOfLoDs);
void CleanUp();
};
| [
"serindrack@gmail.com"
] | serindrack@gmail.com |
fef7d397b7d00e23c73944aff38c0a933babc485 | 95dcf1b68eb966fd540767f9315c0bf55261ef75 | /build/pc/Boost_1_50_0/boost/date_time/time_zone_base.hpp | 2399dad3d13ed5d9f20cd65430c86d4189b8b044 | [
"BSL-1.0"
] | permissive | quinsmpang/foundations.github.com | 9860f88d1227ae4efd0772b3adcf9d724075e4d1 | 7dcef9ae54b7e0026fd0b27b09626571c65e3435 | refs/heads/master | 2021-01-18T01:57:54.298696 | 2012-10-14T14:44:38 | 2012-10-14T14:44:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,712 | hpp | #ifndef _DATE_TIME_TIME_ZONE_BASE__
#define _DATE_TIME_TIME_ZONE_BASE__
/* Copyright (c) 2003-2005 CrystalClear Software, Inc.
* Subject to the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
* Author: Jeff Garland, Bart Garst
* $Date: 2008-02-28 04:00:24 +0800 (星期四, 2008-02-28) $
*/
#include <string>
#include <sstream>
namespace boost {
namespace date_time {
//! Interface class for dynamic time zones.
/*! This class represents the base interface for all timezone
* representations. Subclasses may provide different systems
* for identifying a particular zone. For example some may
* provide a geographical based zone construction while others
* may specify the offset from GMT. Another possible implementation
* would be to convert from POSIX timezone strings. Regardless of
* the construction technique, this is the interface that these
* time zone types must provide.
*
* Note that this class is intended to be used as a shared
* resource (hence the derivation from boost::counted_base.
*/
template<typename time_type, typename CharT>
class time_zone_base {
public:
typedef CharT char_type;
typedef std::basic_string<CharT> string_type;
typedef std::basic_ostringstream<CharT> stringstream_type;
typedef typename time_type::date_type::year_type year_type;
typedef typename time_type::time_duration_type time_duration_type;
time_zone_base() {};
virtual ~time_zone_base() {};
//!String for the timezone when in daylight savings (eg: EDT)
virtual string_type dst_zone_abbrev() const=0;
//!String for the zone when not in daylight savings (eg: EST)
virtual string_type std_zone_abbrev() const=0;
//!String for the timezone when in daylight savings (eg: Eastern Daylight Time)
virtual string_type dst_zone_name() const=0;
//!String for the zone when not in daylight savings (eg: Eastern Standard Time)
virtual string_type std_zone_name() const=0;
//! True if zone uses daylight savings adjustments otherwise false
virtual bool has_dst() const=0;
//! Local time that DST starts -- undefined if has_dst is false
virtual time_type dst_local_start_time(year_type y) const=0;
//! Local time that DST ends -- undefined if has_dst is false
virtual time_type dst_local_end_time(year_type y) const=0;
//! Base offset from UTC for zone (eg: -07:30:00)
virtual time_duration_type base_utc_offset() const=0;
//! Adjustment forward or back made while DST is in effect
virtual time_duration_type dst_offset() const=0;
//! Returns a POSIX time_zone string for this object
virtual string_type to_posix_string() const =0;
private:
};
//! Structure which holds the time offsets associated with daylight savings time
/*!
*@param time_duration_type A type used to represent the offset
*/
template<class time_duration_type>
class dst_adjustment_offsets
{
public:
dst_adjustment_offsets(const time_duration_type& dst_adjust,
const time_duration_type& dst_start_offset,
const time_duration_type& dst_end_offset) :
dst_adjust_(dst_adjust),
dst_start_offset_(dst_start_offset),
dst_end_offset_(dst_end_offset)
{}
//! Amount DST adjusts the clock eg: plus one hour
time_duration_type dst_adjust_;
//! Time past midnight on start transition day that dst starts
time_duration_type dst_start_offset_;
//! Time past midnight on end transition day that dst ends
time_duration_type dst_end_offset_;
};
} } //namespace date_time
#endif
| [
"wisbyme@yahoo.com"
] | wisbyme@yahoo.com |
a1454ffb9776c0a932f84a7db5e95bef1557bbd5 | c98d0ff396a010607da42a6cba0b45ae52c04c0c | /include/fmt/chrono.h | e080b958b3849650e2b51f42967adccf681decd8 | [
"BSD-3-Clause",
"LicenseRef-scancode-free-unknown",
"Python-2.0",
"BSD-2-Clause"
] | permissive | cgrinker/fmt | 39ecc76e76be52638d6995a520af10b13ba5f994 | f16f77297e6bb4df38d4c858edb3295f55716cb4 | refs/heads/master | 2020-06-04T11:39:37.039908 | 2019-06-14T22:53:31 | 2019-06-14T22:53:31 | 192,006,221 | 0 | 0 | BSD-2-Clause | 2019-06-14T21:12:35 | 2019-06-14T21:12:35 | null | UTF-8 | C++ | false | false | 22,690 | h | // Formatting library for C++ - chrono support
//
// Copyright (c) 2012 - present, Victor Zverovich
// All rights reserved.
//
// For the license information refer to format.h.
#ifndef FMT_CHRONO_H_
#define FMT_CHRONO_H_
#include "format.h"
#include "locale.h"
#include <chrono>
#include <ctime>
#include <locale>
#include <sstream>
FMT_BEGIN_NAMESPACE
// Prevents expansion of a preceding token as a function-style macro.
// Usage: f FMT_NOMACRO()
#define FMT_NOMACRO
namespace internal {
inline null<> localtime_r FMT_NOMACRO(...) { return null<>(); }
inline null<> localtime_s(...) { return null<>(); }
inline null<> gmtime_r(...) { return null<>(); }
inline null<> gmtime_s(...) { return null<>(); }
} // namespace internal
// Thread-safe replacement for std::localtime
inline std::tm localtime(std::time_t time) {
struct dispatcher {
std::time_t time_;
std::tm tm_;
dispatcher(std::time_t t) : time_(t) {}
bool run() {
using namespace fmt::internal;
return handle(localtime_r(&time_, &tm_));
}
bool handle(std::tm* tm) { return tm != nullptr; }
bool handle(internal::null<>) {
using namespace fmt::internal;
return fallback(localtime_s(&tm_, &time_));
}
bool fallback(int res) { return res == 0; }
#if !FMT_MSC_VER
bool fallback(internal::null<>) {
using namespace fmt::internal;
std::tm* tm = std::localtime(&time_);
if (tm) tm_ = *tm;
return tm != nullptr;
}
#endif
};
dispatcher lt(time);
// Too big time values may be unsupported.
if (!lt.run()) FMT_THROW(format_error("time_t value out of range"));
return lt.tm_;
}
// Thread-safe replacement for std::gmtime
inline std::tm gmtime(std::time_t time) {
struct dispatcher {
std::time_t time_;
std::tm tm_;
dispatcher(std::time_t t) : time_(t) {}
bool run() {
using namespace fmt::internal;
return handle(gmtime_r(&time_, &tm_));
}
bool handle(std::tm* tm) { return tm != nullptr; }
bool handle(internal::null<>) {
using namespace fmt::internal;
return fallback(gmtime_s(&tm_, &time_));
}
bool fallback(int res) { return res == 0; }
#if !FMT_MSC_VER
bool fallback(internal::null<>) {
std::tm* tm = std::gmtime(&time_);
if (tm) tm_ = *tm;
return tm != nullptr;
}
#endif
};
dispatcher gt(time);
// Too big time values may be unsupported.
if (!gt.run()) FMT_THROW(format_error("time_t value out of range"));
return gt.tm_;
}
namespace internal {
inline std::size_t strftime(char* str, std::size_t count, const char* format,
const std::tm* time) {
return std::strftime(str, count, format, time);
}
inline std::size_t strftime(wchar_t* str, std::size_t count,
const wchar_t* format, const std::tm* time) {
return std::wcsftime(str, count, format, time);
}
} // namespace internal
template <typename Char> struct formatter<std::tm, Char> {
template <typename ParseContext>
auto parse(ParseContext& ctx) -> decltype(ctx.begin()) {
auto it = ctx.begin();
if (it != ctx.end() && *it == ':') ++it;
auto end = it;
while (end != ctx.end() && *end != '}') ++end;
tm_format.reserve(internal::to_unsigned(end - it + 1));
tm_format.append(it, end);
tm_format.push_back('\0');
return end;
}
template <typename FormatContext>
auto format(const std::tm& tm, FormatContext& ctx) -> decltype(ctx.out()) {
basic_memory_buffer<Char> buf;
std::size_t start = buf.size();
for (;;) {
std::size_t size = buf.capacity() - start;
std::size_t count =
internal::strftime(&buf[start], size, &tm_format[0], &tm);
if (count != 0) {
buf.resize(start + count);
break;
}
if (size >= tm_format.size() * 256) {
// If the buffer is 256 times larger than the format string, assume
// that `strftime` gives an empty result. There doesn't seem to be a
// better way to distinguish the two cases:
// https://github.com/fmtlib/fmt/issues/367
break;
}
const std::size_t MIN_GROWTH = 10;
buf.reserve(buf.capacity() + (size > MIN_GROWTH ? size : MIN_GROWTH));
}
return std::copy(buf.begin(), buf.end(), ctx.out());
}
basic_memory_buffer<Char> tm_format;
};
namespace internal {
template <typename Period> FMT_CONSTEXPR const char* get_units() {
return nullptr;
}
template <> FMT_CONSTEXPR const char* get_units<std::atto>() { return "as"; }
template <> FMT_CONSTEXPR const char* get_units<std::femto>() { return "fs"; }
template <> FMT_CONSTEXPR const char* get_units<std::pico>() { return "ps"; }
template <> FMT_CONSTEXPR const char* get_units<std::nano>() { return "ns"; }
template <> FMT_CONSTEXPR const char* get_units<std::micro>() { return "µs"; }
template <> FMT_CONSTEXPR const char* get_units<std::milli>() { return "ms"; }
template <> FMT_CONSTEXPR const char* get_units<std::centi>() { return "cs"; }
template <> FMT_CONSTEXPR const char* get_units<std::deci>() { return "ds"; }
template <> FMT_CONSTEXPR const char* get_units<std::ratio<1>>() { return "s"; }
template <> FMT_CONSTEXPR const char* get_units<std::deca>() { return "das"; }
template <> FMT_CONSTEXPR const char* get_units<std::hecto>() { return "hs"; }
template <> FMT_CONSTEXPR const char* get_units<std::kilo>() { return "ks"; }
template <> FMT_CONSTEXPR const char* get_units<std::mega>() { return "Ms"; }
template <> FMT_CONSTEXPR const char* get_units<std::giga>() { return "Gs"; }
template <> FMT_CONSTEXPR const char* get_units<std::tera>() { return "Ts"; }
template <> FMT_CONSTEXPR const char* get_units<std::peta>() { return "Ps"; }
template <> FMT_CONSTEXPR const char* get_units<std::exa>() { return "Es"; }
template <> FMT_CONSTEXPR const char* get_units<std::ratio<60>>() {
return "m";
}
template <> FMT_CONSTEXPR const char* get_units<std::ratio<3600>>() {
return "h";
}
enum class numeric_system {
standard,
// Alternative numeric system, e.g. 十二 instead of 12 in ja_JP locale.
alternative
};
// Parses a put_time-like format string and invokes handler actions.
template <typename Char, typename Handler>
FMT_CONSTEXPR const Char* parse_chrono_format(const Char* begin,
const Char* end,
Handler&& handler) {
auto ptr = begin;
while (ptr != end) {
auto c = *ptr;
if (c == '}') break;
if (c != '%') {
++ptr;
continue;
}
if (begin != ptr) handler.on_text(begin, ptr);
++ptr; // consume '%'
if (ptr == end) FMT_THROW(format_error("invalid format"));
c = *ptr++;
switch (c) {
case '%':
handler.on_text(ptr - 1, ptr);
break;
case 'n': {
const char newline[] = "\n";
handler.on_text(newline, newline + 1);
break;
}
case 't': {
const char tab[] = "\t";
handler.on_text(tab, tab + 1);
break;
}
// Day of the week:
case 'a':
handler.on_abbr_weekday();
break;
case 'A':
handler.on_full_weekday();
break;
case 'w':
handler.on_dec0_weekday(numeric_system::standard);
break;
case 'u':
handler.on_dec1_weekday(numeric_system::standard);
break;
// Month:
case 'b':
handler.on_abbr_month();
break;
case 'B':
handler.on_full_month();
break;
// Hour, minute, second:
case 'H':
handler.on_24_hour(numeric_system::standard);
break;
case 'I':
handler.on_12_hour(numeric_system::standard);
break;
case 'M':
handler.on_minute(numeric_system::standard);
break;
case 'S':
handler.on_second(numeric_system::standard);
break;
// Other:
case 'c':
handler.on_datetime(numeric_system::standard);
break;
case 'x':
handler.on_loc_date(numeric_system::standard);
break;
case 'X':
handler.on_loc_time(numeric_system::standard);
break;
case 'D':
handler.on_us_date();
break;
case 'F':
handler.on_iso_date();
break;
case 'r':
handler.on_12_hour_time();
break;
case 'R':
handler.on_24_hour_time();
break;
case 'T':
handler.on_iso_time();
break;
case 'p':
handler.on_am_pm();
break;
case 'Q':
handler.on_duration_value();
break;
case 'q':
handler.on_duration_unit();
break;
case 'z':
handler.on_utc_offset();
break;
case 'Z':
handler.on_tz_name();
break;
// Alternative representation:
case 'E': {
if (ptr == end) FMT_THROW(format_error("invalid format"));
c = *ptr++;
switch (c) {
case 'c':
handler.on_datetime(numeric_system::alternative);
break;
case 'x':
handler.on_loc_date(numeric_system::alternative);
break;
case 'X':
handler.on_loc_time(numeric_system::alternative);
break;
default:
FMT_THROW(format_error("invalid format"));
}
break;
}
case 'O':
if (ptr == end) FMT_THROW(format_error("invalid format"));
c = *ptr++;
switch (c) {
case 'w':
handler.on_dec0_weekday(numeric_system::alternative);
break;
case 'u':
handler.on_dec1_weekday(numeric_system::alternative);
break;
case 'H':
handler.on_24_hour(numeric_system::alternative);
break;
case 'I':
handler.on_12_hour(numeric_system::alternative);
break;
case 'M':
handler.on_minute(numeric_system::alternative);
break;
case 'S':
handler.on_second(numeric_system::alternative);
break;
default:
FMT_THROW(format_error("invalid format"));
}
break;
default:
FMT_THROW(format_error("invalid format"));
}
begin = ptr;
}
if (begin != ptr) handler.on_text(begin, ptr);
return ptr;
}
struct chrono_format_checker {
FMT_NORETURN void report_no_date() { FMT_THROW(format_error("no date")); }
template <typename Char> void on_text(const Char*, const Char*) {}
FMT_NORETURN void on_abbr_weekday() { report_no_date(); }
FMT_NORETURN void on_full_weekday() { report_no_date(); }
FMT_NORETURN void on_dec0_weekday(numeric_system) { report_no_date(); }
FMT_NORETURN void on_dec1_weekday(numeric_system) { report_no_date(); }
FMT_NORETURN void on_abbr_month() { report_no_date(); }
FMT_NORETURN void on_full_month() { report_no_date(); }
void on_24_hour(numeric_system) {}
void on_12_hour(numeric_system) {}
void on_minute(numeric_system) {}
void on_second(numeric_system) {}
FMT_NORETURN void on_datetime(numeric_system) { report_no_date(); }
FMT_NORETURN void on_loc_date(numeric_system) { report_no_date(); }
FMT_NORETURN void on_loc_time(numeric_system) { report_no_date(); }
FMT_NORETURN void on_us_date() { report_no_date(); }
FMT_NORETURN void on_iso_date() { report_no_date(); }
void on_12_hour_time() {}
void on_24_hour_time() {}
void on_iso_time() {}
void on_am_pm() {}
void on_duration_value() {}
void on_duration_unit() {}
FMT_NORETURN void on_utc_offset() { report_no_date(); }
FMT_NORETURN void on_tz_name() { report_no_date(); }
};
template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
inline bool isnan(T) {
return false;
}
template <typename T, FMT_ENABLE_IF(std::is_floating_point<T>::value)>
inline bool isnan(T value) {
return std::isnan(value);
}
// Convers value to int and checks that it's in the range [0, upper).
template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
inline int to_nonnegative_int(T value, int upper) {
FMT_ASSERT(value >= 0 && value <= upper, "invalid value");
return static_cast<int>(value);
}
template <typename T, FMT_ENABLE_IF(!std::is_integral<T>::value)>
inline int to_nonnegative_int(T value, int upper) {
FMT_ASSERT(
std::isnan(value) || (value >= 0 && value <= static_cast<T>(upper)),
"invalid value");
return static_cast<int>(value);
}
template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
inline T mod(T x, int y) {
return x % y;
}
template <typename T, FMT_ENABLE_IF(std::is_floating_point<T>::value)>
inline T mod(T x, int y) {
return std::fmod(x, y);
}
// If T is an integral type, maps T to its unsigned counterpart, otherwise
// leaves it unchanged (unlike std::make_unsigned).
template <typename T, bool INTEGRAL = std::is_integral<T>::value>
struct make_unsigned_or_unchanged {
using type = T;
};
template <typename T> struct make_unsigned_or_unchanged<T, true> {
using type = typename std::make_unsigned<T>::type;
};
template <typename Rep, typename Period,
FMT_ENABLE_IF(std::is_integral<Rep>::value)>
inline std::chrono::duration<Rep, std::milli> get_milliseconds(
std::chrono::duration<Rep, Period> d) {
auto s = std::chrono::duration_cast<std::chrono::seconds>(d);
return std::chrono::duration_cast<std::chrono::milliseconds>(d - s);
}
template <typename Rep, typename Period,
FMT_ENABLE_IF(std::is_floating_point<Rep>::value)>
inline std::chrono::duration<Rep, std::milli> get_milliseconds(
std::chrono::duration<Rep, Period> d) {
return std::chrono::duration<Rep, std::milli>(
mod(d.count() * Period::num / Period::den * 1000, 1000));
}
template <typename Rep, typename OutputIt>
OutputIt format_chrono_duration_value(OutputIt out, Rep val, int precision) {
if (precision >= 0) return format_to(out, "{:.{}f}", val, precision);
return format_to(out, std::is_floating_point<Rep>::value ? "{:g}" : "{}",
val);
}
template <typename Period, typename OutputIt>
static OutputIt format_chrono_duration_unit(OutputIt out) {
if (const char* unit = get_units<Period>()) return format_to(out, "{}", unit);
if (Period::den == 1) return format_to(out, "[{}]s", Period::num);
return format_to(out, "[{}/{}]s", Period::num, Period::den);
}
template <typename FormatContext, typename OutputIt, typename Rep,
typename Period>
struct chrono_formatter {
FormatContext& context;
OutputIt out;
int precision;
// rep is unsigned to avoid overflow.
using rep =
conditional_t<std::is_integral<Rep>::value && sizeof(Rep) < sizeof(int),
unsigned, typename make_unsigned_or_unchanged<Rep>::type>;
rep val;
typedef std::chrono::duration<rep> seconds;
seconds s;
typedef std::chrono::duration<rep, std::milli> milliseconds;
bool negative;
typedef typename FormatContext::char_type char_type;
explicit chrono_formatter(FormatContext& ctx, OutputIt o,
std::chrono::duration<Rep, Period> d)
: context(ctx), out(o), val(d.count()), negative(false) {
if (d.count() < 0) {
val = -val;
negative = true;
}
s = std::chrono::duration_cast<seconds>(
std::chrono::duration<rep, Period>(val));
}
Rep hour() const { return mod((s.count() / 3600), 24); }
Rep hour12() const {
Rep hour = mod((s.count() / 3600), 12);
return hour <= 0 ? 12 : hour;
}
Rep minute() const { return mod((s.count() / 60), 60); }
Rep second() const { return mod(s.count(), 60); }
std::tm time() const {
auto time = std::tm();
time.tm_hour = to_nonnegative_int(hour(), 24);
time.tm_min = to_nonnegative_int(minute(), 60);
time.tm_sec = to_nonnegative_int(second(), 60);
return time;
}
void write_sign() {
if (negative) {
*out++ = '-';
negative = false;
}
}
void write(Rep value, int width) {
write_sign();
if (isnan(value)) return write_nan();
typedef typename int_traits<int>::main_type main_type;
main_type n = to_unsigned(
to_nonnegative_int(value, (std::numeric_limits<int>::max)()));
int num_digits = internal::count_digits(n);
if (width > num_digits) out = std::fill_n(out, width - num_digits, '0');
out = format_decimal<char_type>(out, n, num_digits);
}
void write_nan() { std::copy_n("nan", 3, out); }
void format_localized(const tm& time, const char* format) {
if (isnan(val)) return write_nan();
auto locale = context.locale().template get<std::locale>();
auto& facet = std::use_facet<std::time_put<char_type>>(locale);
std::basic_ostringstream<char_type> os;
os.imbue(locale);
facet.put(os, os, ' ', &time, format, format + std::strlen(format));
auto str = os.str();
std::copy(str.begin(), str.end(), out);
}
void on_text(const char_type* begin, const char_type* end) {
std::copy(begin, end, out);
}
// These are not implemented because durations don't have date information.
void on_abbr_weekday() {}
void on_full_weekday() {}
void on_dec0_weekday(numeric_system) {}
void on_dec1_weekday(numeric_system) {}
void on_abbr_month() {}
void on_full_month() {}
void on_datetime(numeric_system) {}
void on_loc_date(numeric_system) {}
void on_loc_time(numeric_system) {}
void on_us_date() {}
void on_iso_date() {}
void on_utc_offset() {}
void on_tz_name() {}
void on_24_hour(numeric_system ns) {
if (ns == numeric_system::standard) return write(hour(), 2);
auto time = tm();
time.tm_hour = to_nonnegative_int(hour(), 24);
format_localized(time, "%OH");
}
void on_12_hour(numeric_system ns) {
if (ns == numeric_system::standard) return write(hour12(), 2);
auto time = tm();
time.tm_hour = to_nonnegative_int(hour12(), 12);
format_localized(time, "%OI");
}
void on_minute(numeric_system ns) {
if (ns == numeric_system::standard) return write(minute(), 2);
auto time = tm();
time.tm_min = to_nonnegative_int(minute(), 60);
format_localized(time, "%OM");
}
void on_second(numeric_system ns) {
if (ns == numeric_system::standard) {
write(second(), 2);
auto ms = get_milliseconds(std::chrono::duration<Rep, Period>(val));
if (ms != std::chrono::milliseconds(0)) {
*out++ = '.';
write(ms.count(), 3);
}
return;
}
auto time = tm();
time.tm_sec = to_nonnegative_int(second(), 60);
format_localized(time, "%OS");
}
void on_12_hour_time() { format_localized(time(), "%r"); }
void on_24_hour_time() {
write(hour(), 2);
*out++ = ':';
write(minute(), 2);
}
void on_iso_time() {
on_24_hour_time();
*out++ = ':';
write(second(), 2);
}
void on_am_pm() { format_localized(time(), "%p"); }
void on_duration_value() {
write_sign();
out = format_chrono_duration_value(out, val, precision);
}
void on_duration_unit() { out = format_chrono_duration_unit<Period>(out); }
};
} // namespace internal
template <typename Rep, typename Period, typename Char>
struct formatter<std::chrono::duration<Rep, Period>, Char> {
private:
align_spec spec;
int precision;
typedef internal::arg_ref<Char> arg_ref_type;
arg_ref_type width_ref;
arg_ref_type precision_ref;
mutable basic_string_view<Char> format_str;
typedef std::chrono::duration<Rep, Period> duration;
struct spec_handler {
formatter& f;
basic_parse_context<Char>& context;
basic_string_view<Char> format_str;
template <typename Id> FMT_CONSTEXPR arg_ref_type make_arg_ref(Id arg_id) {
context.check_arg_id(arg_id);
return arg_ref_type(arg_id);
}
FMT_CONSTEXPR arg_ref_type make_arg_ref(basic_string_view<Char> arg_id) {
context.check_arg_id(arg_id);
const auto str_val = internal::string_view_metadata(format_str, arg_id);
return arg_ref_type(str_val);
}
FMT_CONSTEXPR arg_ref_type make_arg_ref(internal::auto_id) {
return arg_ref_type(context.next_arg_id());
}
void on_error(const char* msg) { FMT_THROW(format_error(msg)); }
void on_fill(Char fill) { f.spec.fill_ = fill; }
void on_align(alignment align) { f.spec.align_ = align; }
void on_width(unsigned width) { f.spec.width_ = width; }
void on_precision(unsigned precision) { f.precision = precision; }
void end_precision() {}
template <typename Id> void on_dynamic_width(Id arg_id) {
f.width_ref = make_arg_ref(arg_id);
}
template <typename Id> void on_dynamic_precision(Id arg_id) {
f.precision_ref = make_arg_ref(arg_id);
}
};
typedef typename basic_parse_context<Char>::iterator iterator;
struct parse_range {
iterator begin;
iterator end;
};
FMT_CONSTEXPR parse_range do_parse(basic_parse_context<Char>& ctx) {
auto begin = ctx.begin(), end = ctx.end();
if (begin == end || *begin == '}') return {begin, begin};
spec_handler handler{*this, ctx, format_str};
begin = internal::parse_align(begin, end, handler);
if (begin == end) return {begin, begin};
begin = internal::parse_width(begin, end, handler);
if (begin == end) return {begin, begin};
if (*begin == '.') {
if (std::is_floating_point<Rep>::value)
begin = internal::parse_precision(begin, end, handler);
else
handler.on_error("precision not allowed for this argument type");
}
end = parse_chrono_format(begin, end, internal::chrono_format_checker());
return {begin, end};
}
public:
formatter() : spec(), precision(-1) {}
FMT_CONSTEXPR auto parse(basic_parse_context<Char>& ctx)
-> decltype(ctx.begin()) {
auto range = do_parse(ctx);
format_str = basic_string_view<Char>(
&*range.begin, internal::to_unsigned(range.end - range.begin));
return range.end;
}
template <typename FormatContext>
auto format(const duration& d, FormatContext& ctx) -> decltype(ctx.out()) {
auto begin = format_str.begin(), end = format_str.end();
// As a possible future optimization, we could avoid extra copying if width
// is not specified.
basic_memory_buffer<Char> buf;
auto out = std::back_inserter(buf);
typedef output_range<decltype(ctx.out()), Char> range;
basic_writer<range> w(range(ctx.out()));
internal::handle_dynamic_spec<internal::width_checker>(
spec.width_, width_ref, ctx, format_str.begin());
internal::handle_dynamic_spec<internal::precision_checker>(
precision, precision_ref, ctx, format_str.begin());
if (begin == end || *begin == '}') {
out = internal::format_chrono_duration_value(out, d.count(), precision);
internal::format_chrono_duration_unit<Period>(out);
} else {
internal::chrono_formatter<FormatContext, decltype(out), Rep, Period> f(
ctx, out, d);
f.precision = precision;
parse_chrono_format(begin, end, f);
}
w.write(buf.data(), buf.size(), spec);
return w.out();
}
};
FMT_END_NAMESPACE
#endif // FMT_CHRONO_H_
| [
"victor.zverovich@gmail.com"
] | victor.zverovich@gmail.com |
1ff4ff5b41143a180e547d48355e46b88308367e | 4ef234d3528936a0fe344f782fec115ad2a1d71f | /src/AnimatedSpriteSkin/CAnimatedSpriteSkin.h | ef3c3c55c046a0ef3591bf5496423abb2c02e8c2 | [
"Zlib"
] | permissive | liqt/IrrLua | 12b1e92e66a10c1671dce924566e22ea00f534d1 | e03211e2caf59ed2083862eaf23d76151652980a | refs/heads/master | 2021-01-16T17:51:19.757041 | 2013-11-14T21:46:09 | 2013-11-14T21:46:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,070 | h | // Copyright (C) 2002-2006 Nikolaus Gebhardt, Josh Turpen
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef _CANIMATEDSPRITESKIN_H_
#define _CANIMATEDSPRITESKIN_H_
#include "IGUISkin.h"
#include "irrString.h"
#include "ITexture.h"
#include "TAnimSpriteSceneNode.h"
#include "EGUIElementTypes.h"
#include <string>
#include "AnimatedSpriteSkin.h"
namespace irr
{
namespace video
{
class IVideoDriver;
}
namespace gui
{
enum EGUI_ELEMENT_IMAGE_TYPE
{
EGEIT_BUTTON_PANE_STANDARD = 0,
EGEIT_BUTTON_PANE_PRESSED,
EGEIT_SUNKEN_PANE_FLAT,
EGEIT_SUNKEN_PANE_SUNKEN,
EGEIT_WINDOW_BACKGROUND,
EGEIT_WINDOW_BACKGROUND_TITLEBAR,
EGEIT_MENU_PANE,
EGEIT_TOOLBAR,
EGEIT_TAB_BUTTON,
EGEIT_TAB_BODY,
EGEIT_COUNT
};
class ANIMATEDSPRITESKIN_API CAnimatedSpriteSkin : public IGUISkin
{
public:
CAnimatedSpriteSkin(video::IVideoDriver* driver, scene::ISceneManager *scm, irr::ITimer *timer);
//! destructor
~CAnimatedSpriteSkin();
//! loads the image file into the element type
virtual bool Load(EGUI_ELEMENT_IMAGE_TYPE Type, std::string filename, s32 Ax,s32 Ay,s32 Aw,s32 Ah,s32 frmWidth,s32 frmHeight,bool useClrKey);
virtual s32 getAnimationSpeed(EGUI_ELEMENT_IMAGE_TYPE Type);
virtual void setAnimationSpeed(EGUI_ELEMENT_IMAGE_TYPE Type, s32 spd);
virtual void setLoop(EGUI_ELEMENT_IMAGE_TYPE Type, bool l);
virtual bool getLoop(EGUI_ELEMENT_IMAGE_TYPE Type);
virtual void playForward(EGUI_ELEMENT_IMAGE_TYPE Type);
virtual void playBackward(EGUI_ELEMENT_IMAGE_TYPE Type);
virtual void resetAnimation(EGUI_ELEMENT_IMAGE_TYPE Type);
//! returns default color
virtual video::SColor getColor(EGUI_DEFAULT_COLOR color);
//! sets a default color
virtual void setColor(EGUI_DEFAULT_COLOR which, video::SColor newColor);
//! returns default color
virtual s32 getSize(EGUI_DEFAULT_SIZE size);
//! sets a default size
virtual void setSize(EGUI_DEFAULT_SIZE which, s32 size);
//! returns the default font
virtual IGUIFont* getFont();
//! sets a default font
virtual void setFont(IGUIFont* font);
//! Returns a default text.
/** For example for Message box button captions:
"OK", "Cancel", "Yes", "No" and so on. */
virtual const wchar_t* getDefaultText(EGUI_DEFAULT_TEXT text);
//! Sets a default text.
/** For example for Message box button captions:
"OK", "Cancel", "Yes", "No" and so on. */
virtual void setDefaultText(EGUI_DEFAULT_TEXT which, const wchar_t* newText);
//! draws a standard 3d button pane
/** Used for drawing for example buttons in normal state.
It uses the colors EGDC_3D_DARK_SHADOW, EGDC_3D_HIGH_LIGHT, EGDC_3D_SHADOW and
EGDC_3D_FACE for this. See EGUI_DEFAULT_COLOR for details.
\param rect: Defining area where to draw.
\param clip: Clip area.
\param element: Pointer to the element which whiches to draw this. This parameter
is usually not used by ISkin, but can be used for example by more complex
implementations to find out how to draw the part exactly. */
virtual void draw3DButtonPaneStandard(IGUIElement* element,
const core::rect<s32>& rect,
const core::rect<s32>* clip=0);
//! draws a pressed 3d button pane
/** Used for drawing for example buttons in pressed state.
It uses the colors EGDC_3D_DARK_SHADOW, EGDC_3D_HIGH_LIGHT, EGDC_3D_SHADOW and
EGDC_3D_FACE for this. See EGUI_DEFAULT_COLOR for details.
\param rect: Defining area where to draw.
\param clip: Clip area.
\param element: Pointer to the element which whiches to draw this. This parameter
is usually not used by ISkin, but can be used for example by more complex
implementations to find out how to draw the part exactly. */
virtual void draw3DButtonPanePressed(IGUIElement* element,
const core::rect<s32>& rect,
const core::rect<s32>* clip=0);
//! draws a sunken 3d pane
/** Used for drawing the background of edit, combo or check boxes.
\param element: Pointer to the element which whiches to draw this. This parameter
is usually not used by ISkin, but can be used for example by more complex
implementations to find out how to draw the part exactly.
\param bgcolor: Background color.
\param flat: Specifies if the sunken pane should be flat or displayed as sunken
deep into the ground.
\param rect: Defining area where to draw.
\param clip: Clip area. */
virtual void draw3DSunkenPane(IGUIElement* element,
video::SColor bgcolor, bool flat, bool fillBackGround,
const core::rect<s32>& rect,
const core::rect<s32>* clip=0);
//! draws a window background
/** Used for drawing the background of dialogs and windows.
\param element: Pointer to the element which whiches to draw this. This parameter
is usually not used by ISkin, but can be used for example by more complex
implementations to find out how to draw the part exactly.
\param titleBarColor: Title color.
\param drawTitleBar: True to enable title drawing.
\param rect: Defining area where to draw.
\param clip: Clip area.
\return Returns rect where to draw title bar text. */
virtual core::rect<s32> draw3DWindowBackground(IGUIElement* element,
bool drawTitleBar, video::SColor titleBarColor,
const core::rect<s32>& rect,
const core::rect<s32>* clip=0);
//! draws a standard 3d menu pane
/** Used for drawing for menus and context menus.
It uses the colors EGDC_3D_DARK_SHADOW, EGDC_3D_HIGH_LIGHT, EGDC_3D_SHADOW and
EGDC_3D_FACE for this. See EGUI_DEFAULT_COLOR for details.
\param element: Pointer to the element which whiches to draw this. This parameter
is usually not used by ISkin, but can be used for example by more complex
implementations to find out how to draw the part exactly.
\param rect: Defining area where to draw.
\param clip: Clip area. */
virtual void draw3DMenuPane(IGUIElement* element,
const core::rect<s32>& rect,
const core::rect<s32>* clip=0);
//! draws a standard 3d tool bar
/** Used for drawing for toolbars and menus.
\param element: Pointer to the element which whiches to draw this. This parameter
is usually not used by ISkin, but can be used for example by more complex
implementations to find out how to draw the part exactly.
\param rect: Defining area where to draw.
\param clip: Clip area. */
virtual void draw3DToolBar(IGUIElement* element,
const core::rect<s32>& rect,
const core::rect<s32>* clip=0);
//! draws a tab button
/** Used for drawing for tab buttons on top of tabs.
\param element: Pointer to the element which whiches to draw this. This parameter
is usually not used by ISkin, but can be used for example by more complex
implementations to find out how to draw the part exactly.
\param active: Specifies if the tab is currently active.
\param rect: Defining area where to draw.
\param clip: Clip area. */
virtual void draw3DTabButton(IGUIElement* element, bool active,
const core::rect<s32>& rect, const core::rect<s32>* clip=0);
//! draws a tab control body
/** \param element: Pointer to the element which whiches to draw this. This parameter
is usually not used by ISkin, but can be used for example by more complex
implementations to find out how to draw the part exactly.
\param border: Specifies if the border should be drawn.
\param background: Specifies if the background should be drawn.
\param rect: Defining area where to draw.
\param clip: Clip area. */
virtual void draw3DTabBody(IGUIElement* element, bool border, bool background,
const core::rect<s32>& rect, const core::rect<s32>* clip=0);
private:
video::SColor Colors[EGDC_COUNT];
s32 Sizes[EGDS_COUNT];
IGUIFont* Font;
core::stringw Texts[EGDT_COUNT];
video::IVideoDriver* Driver;
scene::TAnimSpriteSceneNode *Sprites[EGEIT_COUNT];
scene::ISceneManager *SceneManager;
irr::ITimer *Timer;
void drawSprite(scene::TAnimSpriteSceneNode *Sprite, const core::rect<s32> rect);
};
} // end namespace gui
} // end namespace irr
#endif /* _CGUIIMAGESKIN_H_ */
| [
"zenakuten@yahoo.com"
] | zenakuten@yahoo.com |
e4f5761c8309ad03ae33ceec632f2b764cfb8eb4 | a963d48092f5a27b0875db68d673065b13398895 | /boost_lib/boost_1_55_0-windows/libs/container/test/vector_test.hpp | 9bf47bb6c5de7823c38853797b558b922a334752 | [] | no_license | james1023/test_boost | 219130db778bff512555bb29e5e59afaf59594b6 | 11100d6a913d5c5411f89ff3a32b7e654e91a104 | refs/heads/master | 2020-05-20T12:19:36.754779 | 2017-03-02T03:30:01 | 2017-03-02T03:30:01 | 35,875,247 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,414 | hpp | //////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2004-2012. 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)
//
// See http://www.boost.org/libs/container for documentation.
//
//////////////////////////////////////////////////////////////////////////////
#ifndef BOOST_CONTAINER_TEST_VECTOR_TEST_HEADER
#define BOOST_CONTAINER_TEST_VECTOR_TEST_HEADER
#include <boost/container/detail/config_begin.hpp>
#include <algorithm>
#include <memory>
#include <vector>
#include <iostream>
#include <functional>
#include <list>
#include <boost/move/utility.hpp>
#include <boost/container/detail/mpl.hpp>
#include "print_container.hpp"
#include "check_equal_containers.hpp"
#include "movable_int.hpp"
#include <string>
#include <vector>
#include "emplace_test.hpp"
#include "input_from_forward_iterator.hpp"
#include <boost/move/utility.hpp>
#include <boost/move/iterator.hpp>
#include <boost/detail/no_exceptions_support.hpp>
#include <boost/static_assert.hpp>
#include "insert_test.hpp"
namespace boost{
namespace container {
namespace test{
//
template<int Dummy = 0>
class default_init_allocator_base
{
protected:
static unsigned char s_pattern;
static bool s_ascending;
public:
static void reset_pattern(unsigned char value)
{ s_pattern = value; }
static void set_ascending(bool enable)
{ s_ascending = enable; }
};
template<int Dummy>
unsigned char default_init_allocator_base<Dummy>::s_pattern = 0u;
template<int Dummy>
bool default_init_allocator_base<Dummy>::s_ascending = true;
template<class T>
class default_init_allocator
: public default_init_allocator_base<0>
{
typedef default_init_allocator_base<0> base_t;
public:
typedef T value_type;
default_init_allocator()
{}
template <class U>
default_init_allocator(default_init_allocator<U>)
{}
T* allocate(std::size_t n)
{
//Initialize memory to a pattern
T *const p = ::new T[n];
unsigned char *puc_raw = reinterpret_cast<unsigned char*>(p);
std::size_t max = sizeof(T)*n;
if(base_t::s_ascending){
for(std::size_t i = 0; i != max; ++i){
puc_raw[i] = static_cast<unsigned char>(s_pattern++);
}
}
else{
for(std::size_t i = 0; i != max; ++i){
puc_raw[i] = static_cast<unsigned char>(s_pattern--);
}
}
return p;
}
void deallocate(T *p, std::size_t)
{ delete[] p; }
};
template<class T>
inline bool check_ascending_byte_pattern(const T&t)
{
const unsigned char *pch = &reinterpret_cast<const unsigned char &>(t);
const std::size_t max = sizeof(T);
for(std::size_t i = 1; i != max; ++i){
if( (pch[i-1] != ((unsigned char)(pch[i]-1u))) ){
return false;
}
}
return true;
}
template<class T>
inline bool check_descending_byte_pattern(const T&t)
{
const unsigned char *pch = &reinterpret_cast<const unsigned char &>(t);
const std::size_t max = sizeof(T);
for(std::size_t i = 1; i != max; ++i){
if( (pch[i-1] != ((unsigned char)(pch[i]+1u))) ){
return false;
}
}
return true;
}
template<class IntDefaultInitAllocVector>
bool default_init_test()//Test for default initialization
{
const std::size_t Capacity = 100;
{
test::default_init_allocator<int>::reset_pattern(0);
test::default_init_allocator<int>::set_ascending(true);
IntDefaultInitAllocVector v(Capacity, default_init);
typename IntDefaultInitAllocVector::iterator it = v.begin();
//Compare with the pattern
for(std::size_t i = 0; i != Capacity; ++i, ++it){
if(!test::check_ascending_byte_pattern(*it))
return false;
}
}
{
test::default_init_allocator<int>::reset_pattern(100);
test::default_init_allocator<int>::set_ascending(false);
IntDefaultInitAllocVector v;
v.resize(Capacity, default_init);
typename IntDefaultInitAllocVector::iterator it = v.begin();
//Compare with the pattern
for(std::size_t i = 0; i != Capacity; ++i, ++it){
if(!test::check_descending_byte_pattern(*it))
return false;
}
}
return true;
}
template<class V1, class V2>
bool vector_copyable_only(V1 *, V2 *, boost::container::container_detail::false_type)
{
return true;
}
//Function to check if both sets are equal
template<class V1, class V2>
bool vector_copyable_only(V1 *boostvector, V2 *stdvector, boost::container::container_detail::true_type)
{
typedef typename V1::value_type IntType;
std::size_t size = boostvector->size();
boostvector->insert(boostvector->end(), 50, IntType(1));
stdvector->insert(stdvector->end(), 50, 1);
if(!test::CheckEqualContainers(boostvector, stdvector)) return false;
{
IntType move_me(1);
boostvector->insert(boostvector->begin()+size/2, 50, boost::move(move_me));
stdvector->insert(stdvector->begin()+size/2, 50, 1);
if(!test::CheckEqualContainers(boostvector, stdvector)) return false;
}
{
IntType move_me(2);
boostvector->assign(boostvector->size()/2, boost::move(move_me));
stdvector->assign(stdvector->size()/2, 2);
if(!test::CheckEqualContainers(boostvector, stdvector)) return false;
}
{
IntType move_me(3);
boostvector->assign(boostvector->size()*3-1, boost::move(move_me));
stdvector->assign(stdvector->size()*3-1, 3);
if(!test::CheckEqualContainers(boostvector, stdvector)) return false;
}
{
IntType copy_me(3);
const IntType ccopy_me(3);
boostvector->push_back(copy_me);
stdvector->push_back(int(3));
boostvector->push_back(ccopy_me);
stdvector->push_back(int(3));
if(!test::CheckEqualContainers(boostvector, stdvector)) return false;
}
{
V1 *pv1 = new V1(*boostvector);
V2 *pv2 = new V2(*stdvector);
boostvector->clear();
stdvector->clear();
boostvector->assign(pv1->begin(), pv1->end());
stdvector->assign(pv2->begin(), pv2->end());
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
delete pv1;
delete pv2;
}
return true;
}
template<class MyBoostVector>
int vector_test()
{
typedef std::vector<int> MyStdVector;
typedef typename MyBoostVector::value_type IntType;
const int max = 100;
if(!test_range_insertion<MyBoostVector>()){
return 1;
}
{
BOOST_TRY{
MyBoostVector *boostvector = new MyBoostVector;
MyStdVector *stdvector = new MyStdVector;
boostvector->resize(100);
stdvector->resize(100);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->resize(200);
stdvector->resize(200);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->resize(0);
stdvector->resize(0);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
for(int i = 0; i < max; ++i){
IntType new_int(i);
boostvector->insert(boostvector->end(), boost::move(new_int));
stdvector->insert(stdvector->end(), i);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
}
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
typename MyBoostVector::iterator boostit(boostvector->begin());
typename MyStdVector::iterator stdit(stdvector->begin());
typename MyBoostVector::const_iterator cboostit = boostit;
(void)cboostit;
++boostit; ++stdit;
boostvector->erase(boostit);
stdvector->erase(stdit);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->erase(boostvector->begin());
stdvector->erase(stdvector->begin());
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
{
//Initialize values
IntType aux_vect[50];
for(int i = 0; i < 50; ++i){
IntType new_int(-1);
BOOST_STATIC_ASSERT((boost::container::test::is_copyable<boost::container::test::movable_int>::value == false));
aux_vect[i] = boost::move(new_int);
}
int aux_vect2[50];
for(int i = 0; i < 50; ++i){
aux_vect2[i] = -1;
}
typename MyBoostVector::iterator insert_it =
boostvector->insert(boostvector->end()
,boost::make_move_iterator(&aux_vect[0])
,boost::make_move_iterator(aux_vect + 50));
if(std::size_t(std::distance(insert_it, boostvector->end())) != 50) return 1;
stdvector->insert(stdvector->end(), aux_vect2, aux_vect2 + 50);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
for(int i = 0, j = static_cast<int>(boostvector->size()); i < j; ++i){
boostvector->erase(boostvector->begin());
stdvector->erase(stdvector->begin());
}
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
}
{
boostvector->resize(100);
stdvector->resize(100);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
IntType aux_vect[50];
for(int i = 0; i < 50; ++i){
IntType new_int(-i);
aux_vect[i] = boost::move(new_int);
}
int aux_vect2[50];
for(int i = 0; i < 50; ++i){
aux_vect2[i] = -i;
}
typename MyBoostVector::size_type old_size = boostvector->size();
typename MyBoostVector::iterator insert_it =
boostvector->insert(boostvector->begin() + old_size/2
,boost::make_move_iterator(&aux_vect[0])
,boost::make_move_iterator(aux_vect + 50));
if(boostvector->begin() + old_size/2 != insert_it) return 1;
stdvector->insert(stdvector->begin() + old_size/2, aux_vect2, aux_vect2 + 50);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
for(int i = 0; i < 50; ++i){
IntType new_int(-i);
aux_vect[i] = boost::move(new_int);
}
for(int i = 0; i < 50; ++i){
aux_vect2[i] = -i;
}
old_size = boostvector->size();
//Now try with input iterators instead
insert_it = boostvector->insert(boostvector->begin() + old_size/2
,boost::make_move_iterator(make_input_from_forward_iterator(&aux_vect[0]))
,boost::make_move_iterator(make_input_from_forward_iterator(aux_vect + 50))
);
if(boostvector->begin() + old_size/2 != insert_it) return 1;
stdvector->insert(stdvector->begin() + old_size/2, aux_vect2, aux_vect2 + 50);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
}
/* //deque has no reserve
boostvector->reserve(boostvector->size()*2);
stdvector->reserve(stdvector->size()*2);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
*/
boostvector->shrink_to_fit();
MyStdVector(*stdvector).swap(*stdvector);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->shrink_to_fit();
MyStdVector(*stdvector).swap(*stdvector);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
{ //push_back with not enough capacity
IntType push_back_this(1);
boostvector->push_back(boost::move(push_back_this));
stdvector->push_back(int(1));
boostvector->push_back(IntType(1));
stdvector->push_back(int(1));
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
}
{ //test back()
const IntType test_this(1);
if(test_this != boostvector->back()) return 1;
}
{ //pop_back with enough capacity
boostvector->pop_back();
boostvector->pop_back();
stdvector->pop_back();
stdvector->pop_back();
IntType push_back_this(1);
boostvector->push_back(boost::move(push_back_this));
stdvector->push_back(int(1));
boostvector->push_back(IntType(1));
stdvector->push_back(int(1));
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
}
if(!vector_copyable_only(boostvector, stdvector
,container_detail::bool_<boost::container::test::is_copyable<IntType>::value>())){
return 1;
}
boostvector->erase(boostvector->begin());
stdvector->erase(stdvector->begin());
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
for(int i = 0; i < max; ++i){
IntType insert_this(i);
boostvector->insert(boostvector->begin(), boost::move(insert_this));
stdvector->insert(stdvector->begin(), i);
boostvector->insert(boostvector->begin(), IntType(i));
stdvector->insert(stdvector->begin(), int(i));
}
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
//Test insertion from list
{
std::list<int> l(50, int(1));
typename MyBoostVector::iterator it_insert =
boostvector->insert(boostvector->begin(), l.begin(), l.end());
if(boostvector->begin() != it_insert) return 1;
stdvector->insert(stdvector->begin(), l.begin(), l.end());
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->assign(l.begin(), l.end());
stdvector->assign(l.begin(), l.end());
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->clear();
stdvector->clear();
boostvector->assign(make_input_from_forward_iterator(l.begin()), make_input_from_forward_iterator(l.end()));
stdvector->assign(l.begin(), l.end());
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
}
/* deque has no reserve or capacity
std::size_t cap = boostvector->capacity();
boostvector->reserve(cap*2);
stdvector->reserve(cap*2);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->resize(0);
stdvector->resize(0);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->resize(cap*2);
stdvector->resize(cap*2);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->clear();
stdvector->clear();
boostvector->shrink_to_fit();
MyStdVector(*stdvector).swap(*stdvector);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
boostvector->resize(cap*2);
stdvector->resize(cap*2);
if(!test::CheckEqualContainers(boostvector, stdvector)) return 1;
*/
delete stdvector;
delete boostvector;
}
BOOST_CATCH(std::exception &ex){
#ifndef BOOST_NO_EXCEPTIONS
std::cout << ex.what() << std::endl;
#endif
return 1;
}
BOOST_CATCH_END
}
std::cout << std::endl << "Test OK!" << std::endl;
return 0;
}
} //namespace test{
} //namespace container {
} //namespace boost{
#include <boost/container/detail/config_end.hpp>
#endif //BOOST_CONTAINER_TEST_VECTOR_TEST_HEADER
| [
"james.huang@avtech.com.tw"
] | james.huang@avtech.com.tw |
09ee50d526279684cf120859196b52dad564e827 | 3218bb96f8ce61cef2ad2b4e607e9b9c4152025e | /hphp/runtime/vm/extern-compiler.cpp | d9369f6a04d33bedd7ef0759ceaf381afed3a847 | [
"PHP-3.01",
"Zend-2.0",
"MIT"
] | permissive | yahongie2014/hhvm | 22e655d73988dd15b38e77646d6096090292e9c8 | a825853c3eb82dde1ff95b39c90a91f7fe10d067 | refs/heads/master | 2020-04-01T05:56:48.293583 | 2018-10-13T16:35:08 | 2018-10-13T16:37:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34,112 | cpp | /*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-present Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#include "hphp/runtime/vm/extern-compiler.h"
#include <cinttypes>
#include <condition_variable>
#include <mutex>
#include <signal.h>
#include <sstream>
#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <folly/DynamicConverter.h>
#include <folly/json.h>
#include <folly/FileUtil.h>
#include "hphp/runtime/base/ini-setting.h"
#include "hphp/runtime/base/zend-strtod.h"
#include "hphp/runtime/vm/native.h"
#include "hphp/runtime/vm/repo.h"
#include "hphp/runtime/vm/unit-emitter.h"
#include "hphp/util/atomic-vector.h"
#include "hphp/util/compression.h"
#include "hphp/util/embedded-data.h"
#include "hphp/util/light-process.h"
#include "hphp/util/logger.h"
#include "hphp/util/match.h"
#include "hphp/util/md5.h"
#include "hphp/util/struct-log.h"
#include "hphp/util/timer.h"
#include <iostream>
namespace HPHP {
TRACE_SET_MOD(extern_compiler);
namespace {
bool createHackc(const std::string& path, const std::string& binary) {
if (access(path.c_str(), R_OK|X_OK) == 0) {
auto const fd = open(path.c_str(), O_RDONLY);
if (fd != -1) {
SCOPE_EXIT { close(fd); };
std::string contents;
if (folly::readFile(fd, contents) && contents == binary) return true;
}
}
try {
folly::writeFileAtomic(path, binary, 0755);
} catch (std::system_error& ex) {
return false;
}
return true;
}
THREAD_LOCAL(std::string, tl_extractPath);
std::mutex s_extractLock;
std::string s_extractPath;
folly::Optional<std::string> hackcExtractPath() {
if (!RuntimeOption::EvalHackCompilerUseEmbedded) return folly::none;
auto check = [] (const std::string& s) {
return !s.empty() && access(s.data(), X_OK) == 0;
};
if (!tl_extractPath.isNull() && check(*tl_extractPath)) {
return *tl_extractPath;
}
std::unique_lock<std::mutex> lock{s_extractLock};
if (check(s_extractPath)) {
*tl_extractPath.getCheck() = s_extractPath;
return *tl_extractPath;
}
auto set = [&] (const std::string& s) {
s_extractPath = s;
*tl_extractPath.getCheck() = s;
return s;
};
auto const trust = RuntimeOption::EvalHackCompilerTrustExtract;
auto const location = RuntimeOption::EvalHackCompilerExtractPath;
// As an optimization we can just choose to trust the extracted version
// without reading it.
if (trust && check(location)) return set(location);
embedded_data desc;
if (!get_embedded_data("hackc_binary", &desc)) {
Logger::Error("Embedded hackc binary is missing");
return folly::none;
}
auto const gz_binary = read_embedded_data(desc);
int len = safe_cast<int>(gz_binary.size());
auto const bin_str = gzdecode(gz_binary.data(), len);
SCOPE_EXIT { free(bin_str); };
if (!bin_str || !len) {
Logger::Error("Embedded hackc binary could not be decompressed");
return folly::none;
}
auto const binary = std::string(bin_str, len);
if (createHackc(location, binary)) return set(location);
int fd = -1;
SCOPE_EXIT { if (fd != -1) close(fd); };
auto fallback = RuntimeOption::EvalHackCompilerFallbackPath;
if ((fd = mkstemp(&fallback[0])) == -1) {
Logger::FError(
"Unable to create temp file for hackc binary: {}", folly::errnoStr(errno)
);
return folly::none;
}
if (folly::writeFull(fd, binary.data(), binary.size()) == -1) {
Logger::FError(
"Failed to write extern hackc binary: {}", folly::errnoStr(errno)
);
return folly::none;
}
if (chmod(fallback.data(), 0755) != 0) {
Logger::Error("Unable to mark hackc binary as writable");
return folly::none;
}
return set(fallback);
}
std::string hackcCommand() {
if (auto path = hackcExtractPath()) {
return *path + " " + RuntimeOption::EvalHackCompilerArgs;
}
return RuntimeOption::EvalHackCompilerCommand;
}
struct CompileException : Exception {
explicit CompileException(const std::string& what) : Exception(what) {}
template<class... A>
explicit CompileException(A&&... args)
: Exception(folly::sformat(std::forward<A>(args)...))
{}
};
struct CompilerFatal : std::runtime_error {
explicit CompilerFatal(const std::string& str)
: std::runtime_error(str)
{}
};
[[noreturn]] void throwErrno(const char* what) {
throw CompileException("{}: {}", what, folly::errnoStr(errno));
}
struct CompilerOptions {
bool verboseErrors;
uint64_t maxRetries;
uint64_t workers;
bool inheritConfig;
};
constexpr int kInvalidPid = -1;
struct ExternCompiler {
explicit ExternCompiler(const CompilerOptions& options)
: m_options(options)
{}
ExternCompiler(ExternCompiler&&) = default;
ExternCompiler& operator=(ExternCompiler&&) = default;
void detach_from_process () {
// Called from forked processes. Resets inherited pid of compiler process to
// prevent it being closed in case child process exits
m_pid = kInvalidPid;
// Don't call the destructor of the thread object. The thread doesn't
// belong to this child process, so we just silently make sure we don't
// touch it.
m_logStderrThread.release();
}
~ExternCompiler() { stop(); }
std::string extract_facts(
const std::string& filename,
folly::StringPiece code
) {
if (!isRunning()) {
start();
}
std::string facts;
try {
writeExtractFacts(filename, code);
return readResult(nullptr /* structured log entry */);
}
catch (CompileException& ex) {
stop();
if (m_options.verboseErrors) {
Logger::FError("ExternCompiler Error (facts): {}", ex.what());
}
throw;
}
}
std::string ffp_parse_file(
const std::string& filename,
folly::StringPiece code
) {
if (!isRunning()) {
start();
}
try {
writeParseFile(filename, code);
return readResult(nullptr /* structured log entry */);
}
catch (CompileException& ex) {
stop();
if (m_options.verboseErrors) {
Logger::FError("ExternCompiler Error (parse): {}", ex.what());
}
throw;
}
}
int64_t logTime(
StructuredLogEntry& log,
int64_t t,
const char* name,
bool first = false
) {
if (!RuntimeOption::EvalLogExternCompilerPerf) return 0;
int64_t current = Timer::GetCurrentTimeMicros();
if (first) return current;
int64_t diff = current - t;
log.setInt(name, diff);
FTRACE(2, "{} took {} us\n", name, diff);
return current;
}
std::unique_ptr<UnitEmitter> compile(
const char* filename,
const MD5& md5,
folly::StringPiece code,
const Native::FuncTable& nativeFuncs,
bool forDebuggerEval,
AsmCallbacks* callbacks
) {
if (!isRunning()) {
start();
}
std::string prog;
std::unique_ptr<Unit> u;
try {
m_compilations++;
StructuredLogEntry log;
log.setStr("filename", filename);
int64_t t = logTime(log, 0, nullptr, true);
writeProgram(filename, md5, code, forDebuggerEval);
t = logTime(log, t, "send_source");
prog = readResult(&log);
t = logTime(log, t, "receive_hhas");
auto ue = assemble_string(prog.data(),
prog.length(),
filename,
md5,
nativeFuncs,
false /* swallow errors */,
callbacks
);
logTime(log, t, "assemble_hhas");
if (RuntimeOption::EvalLogExternCompilerPerf) {
StructuredLog::log("hhvm_detailed_frontend_performance", log);
}
return ue;
} catch (CompileException& ex) {
stop();
if (m_options.verboseErrors) {
Logger::FError("ExternCompiler Error: {}", ex.what());
}
throw;
} catch (CompilerFatal& ex) {
// this catch is here so we don't fall into the std::runtime_error one
throw;
} catch (FatalErrorException&) {
// we want these to propagate out of the compiler
throw;
} catch (AssemblerUnserializationError& ex) {
// This (probably) has nothing to do with the php/hhas, so don't do the
// verbose error handling we have in the AssemblerError case.
throw;
} catch (AssemblerError& ex) {
if (m_options.verboseErrors) {
auto const msg = folly::sformat(
"{}\n"
"========== PHP Source ==========\n"
"{}\n"
"========== ExternCompiler Result ==========\n"
"{}\n",
ex.what(),
code,
prog);
Logger::FError("ExternCompiler Generated a bad unit: {}", msg);
// Throw the extended message to ensure the fataling unit contains the
// additional context
throw AssemblerError(msg);
}
throw;
} catch (std::runtime_error& ex) {
if (m_options.verboseErrors) {
Logger::FError("ExternCompiler Runtime Error: {}", ex.what());
}
throw;
}
}
std::string getVersionString() {
if (!isRunning()) start();
return m_version;
}
private:
void start();
void stop();
bool isRunning() const { return m_pid != kInvalidPid; }
void stopLogStderrThread();
void writeMessage(folly::dynamic& header, folly::StringPiece body);
void writeConfigs();
void writeProgram(const char* filename, MD5 md5, folly::StringPiece code,
bool forDebuggerEval);
void writeExtractFacts(const std::string& filename, folly::StringPiece code);
void writeParseFile(const std::string& filename, folly::StringPiece code);
std::string readVersion() const;
std::string readResult(StructuredLogEntry* log) const;
pid_t m_pid{kInvalidPid};
FILE* m_in{nullptr};
FILE* m_out{nullptr};
std::string m_version;
FILE* m_err{nullptr};
std::unique_ptr<std::thread> m_logStderrThread;
unsigned m_compilations{0};
const CompilerOptions& m_options;
};
struct CompilerGuard;
struct CompilerPool {
explicit CompilerPool(CompilerOptions&& options)
: m_options(options)
, m_compilers(options.workers, nullptr)
{}
std::pair<size_t, ExternCompiler*> getCompiler();
void releaseCompiler(size_t id, ExternCompiler* ptr);
void start();
void shutdown(bool detach_compilers);
CompilerResult compile(const char* code,
int len,
const char* filename,
const MD5& md5,
const Native::FuncTable& nativeFuncs,
bool forDebuggerEval,
AsmCallbacks* callbacks,
bool& internal_error);
FfpResult parse(std::string name, const char* code, int len);
ParseFactsResult extract_facts(const CompilerGuard& compiler,
const std::string& filename,
const char* code,
int len);
std::string getVersionString() { return m_version; }
std::pair<uint64_t, bool> getMaxRetriesAndVerbosity() const {
return std::make_pair(m_options.maxRetries, m_options.verboseErrors);
}
private:
CompilerOptions m_options;
std::atomic<size_t> m_freeCount{0};
std::mutex m_compilerLock;
std::condition_variable m_compilerCv;
AtomicVector<ExternCompiler*> m_compilers;
std::string m_version;
};
struct CompilerGuard final: public FactsParser {
explicit CompilerGuard(CompilerPool& pool)
: m_pool(pool) {
std::tie(m_index, m_ptr) = m_pool.getCompiler();
}
~CompilerGuard() {
m_pool.releaseCompiler(m_index, m_ptr);
}
CompilerGuard(CompilerGuard&&) = delete;
CompilerGuard& operator=(CompilerGuard&&) = delete;
ExternCompiler* operator->() const { return m_ptr; }
private:
size_t m_index;
ExternCompiler* m_ptr;
CompilerPool& m_pool;
};
std::pair<size_t, ExternCompiler*> CompilerPool::getCompiler() {
std::unique_lock<std::mutex> l(m_compilerLock);
m_compilerCv.wait(l, [&] {
return m_freeCount.load(std::memory_order_relaxed) != 0;
});
m_freeCount -= 1;
for (size_t id = 0; id < m_compilers.size(); ++id) {
auto ret = m_compilers.exchange(id, nullptr);
if (ret) return std::make_pair(id, ret);
}
not_reached();
}
void CompilerPool::releaseCompiler(size_t id, ExternCompiler* ptr) {
std::unique_lock<std::mutex> l(m_compilerLock);
m_compilers[id].store(ptr, std::memory_order_relaxed);
m_freeCount += 1;
l.unlock();
m_compilerCv.notify_one();
}
void CompilerPool::start() {
auto const nworkers = m_options.workers;
m_freeCount.store(nworkers, std::memory_order_relaxed);
for (int i = 0; i < nworkers; ++i) {
m_compilers[i].store(new ExternCompiler(m_options),
std::memory_order_relaxed);
}
CompilerGuard g(*this);
m_version = g->getVersionString();
}
void CompilerPool::shutdown(bool detach_compilers) {
for (int i = 0; i < m_compilers.size(); ++i) {
if (auto c = m_compilers.exchange(i, nullptr)) {
if (detach_compilers) {
c->detach_from_process();
}
delete c;
}
}
}
template<typename F>
auto run_compiler(
const CompilerGuard& compiler,
int maxRetries,
bool verboseErrors,
F&& func,
bool& internal_error) ->
boost::variant<
typename std::result_of<F&&(const CompilerGuard&)>::type,
std::string
>
{
std::stringstream err;
size_t retry = 0;
const size_t max = std::max<size_t>(1, maxRetries + 1);
while (retry++ < max) {
try {
internal_error = false;
return func(compiler);
} catch (FatalErrorException&) {
// let these propagate out of the compiler
throw;
} catch (AssemblerUnserializationError& ex) {
// Variable unserializer threw when called from the assembler, treat it
// as an internal error.
internal_error = true;
return ex.what();
} catch (AssemblerError& ex) {
// Assembler rejected hhas generated by external compiler
return ex.what();
} catch (CompilerFatal& ex) {
// ExternCompiler returned an error when building this unit
return ex.what();
} catch (CompileException& ex) {
internal_error = true;
// Swallow and retry, we return infra errors in bulk once the retry limit
// is exceeded.
err << ex.what();
if (retry < max) err << '\n';
} catch (std::runtime_error& ex) {
internal_error = true;
// Nontransient, don't bother with a retry.
return ex.what();
}
}
if (verboseErrors) {
Logger::Error(
"ExternCompiler encountered too many communication errors, giving up."
);
}
return err.str();
}
ParseFactsResult extract_facts_worker(const CompilerGuard& compiler,
const std::string& filename,
const char* code,
int len,
int maxRetries,
bool verboseErrors
) {
auto extract = [&](const CompilerGuard& c) {
auto result = c->extract_facts(filename, folly::StringPiece(code, len));
return FactsJSONString { result };
};
auto internal_error = false;
return run_compiler(
compiler,
maxRetries,
verboseErrors,
extract,
internal_error);
}
CompilerResult CompilerPool::compile(const char* code,
int len,
const char* filename,
const MD5& md5,
const Native::FuncTable& nativeFuncs,
bool forDebuggerEval,
AsmCallbacks* callbacks,
bool& internal_error
) {
auto compile = [&](const CompilerGuard& c) {
return c->compile(filename,
md5,
folly::StringPiece(code, len),
nativeFuncs,
forDebuggerEval,
callbacks);
};
return run_compiler(
CompilerGuard(*this),
m_options.maxRetries,
m_options.verboseErrors,
compile,
internal_error);
}
FfpResult CompilerPool::parse(std::string file, const char* code, int len) {
auto compile = [&](const CompilerGuard& c) {
auto result = c->ffp_parse_file(file, folly::StringPiece(code, len));
return FfpJSONString { result };
};
auto internal_error = false;
return run_compiler(
CompilerGuard(*this),
m_options.maxRetries,
m_options.verboseErrors,
compile,
internal_error);
}
////////////////////////////////////////////////////////////////////////////////
std::string readline(FILE* f) {
char* line = nullptr;
size_t mx = 0;
ssize_t len = 0;
SCOPE_EXIT { free(line); };
for (auto tries = 0; tries < 10; tries++) {
if ((len = getline(&line, &mx, f)) >= 0) {
break;
}
if (errno == EINTR) {
// Signal. Maybe Xenon? Just try again within reason.
::clearerr(f);
continue;
}
// Non-EINTR error.
break;
}
if (len < 0) {
throwErrno("error reading line");
}
return len ? std::string(line, len - 1) : std::string();
}
std::string ExternCompiler::readVersion() const {
// Note the utter lack of error handling. We're really expecting the version
// JSON to be the first thing we get from the compiler daemon, and that it has
// a "version" field, and that the value at the field is indeed a string...
const auto line = readline(m_out);
return folly::parseJson(line).at("version").asString();
}
std::string ExternCompiler::readResult(StructuredLogEntry* log) const {
const auto line = readline(m_out);
const auto header = folly::parseJson(line);
const std::string type = header.getDefault("type", "").asString();
const std::size_t bytes = header.getDefault("bytes", 0).asInt();
const auto logResult = [&] (auto name, auto t) {
if (log != nullptr) log->setInt(name, t);
FTRACE(2, "{} took {} us\n", name, t);
};
if (RuntimeOption::EvalLogExternCompilerPerf) {
if (auto parsing_time = header.get_ptr("parsing_time")) {
logResult("extern_parsing", parsing_time->asInt());
}
if (auto codegen_time = header.get_ptr("codegen_time")) {
logResult("extern_codegen", codegen_time->asInt());
}
if (auto printing_time = header.get_ptr("printing_time")) {
logResult("extern_printing", printing_time->asInt());
}
}
if (type == "success") {
std::string program(bytes, '\0');
if (bytes != 0 && fread(&program[0], bytes, 1, m_out) != 1) {
throwErrno("reading input program");
}
return program;
} else if (type == "error") {
// We don't need to restart the pipe -- the compiler just wasn't able to
// build this file...
throw CompilerFatal(
header.getDefault("error", "[no 'error' field]").asString());
} else {
throw CompilerFatal("unknown message type, " + type);
}
not_reached();
}
void ExternCompiler::stopLogStderrThread() {
SCOPE_EXIT { m_err = nullptr; };
if (m_err) {
fclose(m_err); // need to unblock getline()
}
if (m_logStderrThread && m_logStderrThread->joinable()) {
m_logStderrThread->join();
}
}
void ExternCompiler::writeMessage(
folly::dynamic& header,
folly::StringPiece body
) {
const auto bytes = body.size();
header["bytes"] = bytes;
const auto jsonHeader = folly::toJson(header);
if (
fprintf(m_in, "%s\n", jsonHeader.data()) == -1 ||
(bytes > 0 && fwrite(body.begin(), bytes, 1, m_in) != 1)
) {
throwErrno("error writing message");
}
fflush(m_in);
}
struct ConfigBuilder {
template<typename T>
ConfigBuilder& addField(folly::StringPiece key, const T& data) {
if (!m_config.isObject()) {
m_config = folly::dynamic::object();
}
m_config[key] = folly::dynamic::object(
"global_value", folly::toDynamic(data));
return *this;
}
std::string toString() const {
return m_config.isNull() ? "" : folly::toJson(m_config);
}
private:
folly::dynamic m_config{nullptr};
};
void ExternCompiler::writeConfigs() {
static const std::string boundConfig = [this] () -> std::string {
if (m_options.inheritConfig) {
// necessary to initialize zend-strtod, which is used to serialize
// boundConfig to JSON (!)
zend_get_bigint_data();
return IniSetting::GetAllAsJSON();
}
return "";
}();
// Some configs, like IncludeRoots, can't easily be Config::Bind(ed), so here
// we create a place to dump miscellaneous config values HackC might want.
static const std::string miscConfig = [this] () -> std::string {
if (m_options.inheritConfig) {
return ConfigBuilder()
.addField("hhvm.include_roots", RuntimeOption::IncludeRoots)
.toString();
}
return "";
}();
folly::dynamic header = folly::dynamic::object("type", "config");
writeMessage(header, boundConfig);
writeMessage(header, miscConfig);
}
void ExternCompiler::writeProgram(
const char* filename,
MD5 md5,
folly::StringPiece code,
bool forDebuggerEval
) {
folly::dynamic header = folly::dynamic::object
("type", "code")
("md5", md5.toString())
("file", filename)
("is_systemlib", !SystemLib::s_inited)
("for_debugger_eval", forDebuggerEval);
writeMessage(header, code);
}
void ExternCompiler::writeExtractFacts(
const std::string& filename,
folly::StringPiece code
) {
folly::dynamic header = folly::dynamic::object
("type", "facts")
("file", filename);
writeMessage(header, code);
}
void ExternCompiler::writeParseFile(
const std::string& filename,
folly::StringPiece code
) {
folly::dynamic header = folly::dynamic::object
("type", "parse")
("file", filename);
writeMessage(header, code);
}
struct CompilerManager final {
int get_delegate() { return m_delegate; }
std::mutex& get_delegate_lock() { return m_delegateLock; }
void set_username(const std::string& username) { m_username = username; }
void ensure_started();
void shutdown();
void detach_after_fork();
CompilerPool& get_hackc_pool();
private:
void stop(bool detach_compilers);
int m_delegate{kInvalidPid};
std::mutex m_delegateLock;
std::unique_ptr<CompilerPool> m_hackc_pool;
std::atomic<bool> m_started{false};
std::mutex m_compilers_start_lock;
folly::Optional<std::string> m_username;
} s_manager;
struct UseLightDelegate final {
UseLightDelegate()
: m_lock(s_manager.get_delegate_lock())
, m_prev(LightProcess::setThreadLocalAfdtOverride(s_manager.get_delegate()))
{}
UseLightDelegate(UseLightDelegate&&) = delete;
UseLightDelegate& operator=(UseLightDelegate&&) = delete;
~UseLightDelegate() {
LightProcess::setThreadLocalAfdtOverride(std::move(m_prev));
}
private:
std::unique_lock<std::mutex> m_lock;
std::unique_ptr<LightProcess> m_prev;
};
void ExternCompiler::stop() {
// This is super-gross: it's possible we're in a forked child -- but fork()
// doesn't -- can't -- copy over threads, so m_logStderrThread is rubbish --
// but joinable() in the child. When the child's ~ExternCompiler() destructor
// is called, it will call m_logStderrThread's destructor, terminating a
// joinable but unjoined thread, which causes a panic. We really shouldn't be
// mixing threads with forking, but we should just about get away with it
// here.
SCOPE_EXIT {
stopLogStderrThread();
};
if (m_pid == kInvalidPid) return;
SCOPE_EXIT {
// We must close err before in, otherwise there's a race:
// - hackc tries to read from stdin
// - stdin is closed
// - hackc writes an error to stderr
// - the error handler thread in HHVM spews out the error
// This makes the tests unrunnable, but probably doesn't have a practical
// effect on real usage other than log spew on process shutdown.
if (m_err) fclose(m_err);
if (m_in) fclose(m_in);
if (m_out) fclose(m_out);
m_err = m_in = m_out = nullptr;
m_pid = kInvalidPid;
};
m_compilations = 0;
auto ret = kill(m_pid, SIGTERM);
if (ret == -1) {
Logger::FWarning(
"ExternCompiler: kill failed: {}, {}",
errno,
folly::errnoStr(errno).c_str());
}
int status, code;
{
UseLightDelegate useDelegate;
ret = LightProcess::waitpid(m_pid, &status, 0, 2);
if (ret != m_pid) {
Logger::FWarning(
"ExternCompiler: unable to wait for compiler process, return code {},"
"errno: {}, {}",
ret,
errno,
folly::errnoStr(errno).c_str());
return;
}
}
if (WIFEXITED(status) && (code = WEXITSTATUS(status)) != 0) {
Logger::FWarning("ExternCompiler: exited with status code {}", code);
} else if (WIFSIGNALED(status) && (code = WTERMSIG(status)) != SIGTERM) {
Logger::FWarning(
"ExternCompiler: terminated by signal {}{}",
code,
WCOREDUMP(status) ? " (code dumped)" : ""
);
}
}
struct Pipe final {
Pipe() {
if (pipe2(fds, O_CLOEXEC) == -1) throwErrno("unable to open pipe");
}
~Pipe() {
if (fds[0] != -1) close(fds[0]);
if (fds[1] != -1) close(fds[1]);
}
FILE* detach(const char* mode) {
auto ret = fdopen(fds[*mode == 'r' ? 0 : 1], mode);
if (!ret) throwErrno("unable to fdopen pipe");
close(fds[*mode == 'r' ? 1 : 0]);
fds[0] = fds[1] = -1;
return ret;
}
int remoteIn() const { return fds[0]; }
int remoteOut() const { return fds[1]; }
int fds[2];
};
void ExternCompiler::start() {
if (m_pid != kInvalidPid) return;
Pipe in, out, err;
std::vector<int> created = {in.remoteIn(), out.remoteOut(), err.remoteOut()};
std::vector<int> wanted = {STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO};
std::vector<std::string> env;
auto const command = hackcCommand();
if (!command.empty()) {
UseLightDelegate useDelegate;
m_pid = LightProcess::proc_open(
command.c_str(),
created,
wanted,
nullptr /* cwd */,
env
);
} else {
Logger::Error("Unable to get external command");
throw BadCompilerException("Unable to get external command");
}
if (m_pid == kInvalidPid) {
const auto msg = folly::to<std::string>(
"Unable to start external compiler with command: ", command.c_str());
Logger::Error(msg);
throw BadCompilerException(msg);
}
m_in = in.detach("w");
m_out = out.detach("r");
m_err = err.detach("r");
m_logStderrThread = std::make_unique<std::thread>([&]() {
int ret = 0;
auto pid = m_pid;
try {
pollfd pfd[] = {{fileno(m_err), POLLIN, 0}};
while ((ret = poll(pfd, 1, -1)) != -1) {
if (ret == 0) continue;
if (pfd[0].revents & (POLLHUP | POLLNVAL | POLLERR)) {
throw std::runtime_error("hangup");
}
if (pfd[0].revents) {
const auto line = readline(m_err);
Logger::FError("[external compiler {}]: {}", pid, line);
}
}
} catch (const std::exception& exc) {
// The stderr output messes with expected test output, which presumably
// come from non-server runs.
if (RuntimeOption::ServerMode) {
Logger::FVerbose(
"Ceasing to log stderr from external compiler ({}): {}",
pid,
exc.what());
}
}
});
// Here we expect the very first communication from the external compiler
// process to be a single line of JSON representing the compiler version.
try {
m_version = readVersion();
} catch (const CompileException& exc) {
throw BadCompilerException(
"Couldn't read version message from external compiler");
}
// For...reasons...the external compiler process misses the first line of
// output on the pipe, so we open communications with a single newline.
if (fprintf(m_in, "\n") == -1) {
throw BadCompilerException("Couldn't write initial newline");
}
fflush(m_in);
writeConfigs();
}
CompilerResult hackc_compile(
const char* code,
int len,
const char* filename,
const MD5& md5,
const Native::FuncTable& nativeFuncs,
bool forDebuggerEval,
AsmCallbacks* callbacks,
bool& internal_error
) {
return s_manager.get_hackc_pool().compile(
code, len, filename, md5, nativeFuncs, forDebuggerEval, callbacks, internal_error
);
}
////////////////////////////////////////////////////////////////////////////////
}
void CompilerManager::ensure_started() {
if (m_started.load(std::memory_order_acquire)) {
return;
}
std::unique_lock<std::mutex> l(m_compilers_start_lock);
if (m_started.load(std::memory_order_relaxed)) {
return;
}
m_delegate = LightProcess::createDelegate();
if (m_delegate != kInvalidPid && m_username) {
std::unique_lock<std::mutex> lock(m_delegateLock);
LightProcess::ChangeUser(m_delegate, m_username.value());
}
CompilerOptions hackcConfig {
RuntimeOption::EvalHackCompilerVerboseErrors,
RuntimeOption::EvalHackCompilerMaxRetries,
RuntimeOption::EvalHackCompilerWorkers,
RuntimeOption::EvalHackCompilerInheritConfig,
};
m_hackc_pool = std::make_unique<CompilerPool>(std::move(hackcConfig));
m_hackc_pool->start();
m_started.store(true, std::memory_order_release);
}
void CompilerManager::stop(bool detach_compilers) {
if (m_hackc_pool) {
m_hackc_pool->shutdown(detach_compilers);
m_hackc_pool = nullptr;
}
close(m_delegate);
m_delegate = kInvalidPid;
m_started.store(false, std::memory_order_relaxed);
}
void CompilerManager::shutdown() {
stop(false);
}
void CompilerManager::detach_after_fork() {
stop(true);
}
CompilerPool& CompilerManager::get_hackc_pool() {
ensure_started();
return *m_hackc_pool;
}
void compilers_start() {
s_manager.ensure_started();
#if FOLLY_HAVE_PTHREAD_ATFORK
pthread_atfork(
nullptr /* prepare */,
nullptr /* parent */,
compilers_detach_after_fork /* child */
);
#endif
}
void compilers_set_user(const std::string& username) {
s_manager.set_username(username);
}
void compilers_shutdown() {
s_manager.shutdown();
std::unique_lock<std::mutex> lock{s_extractLock};
if (!s_extractPath.empty() &&
s_extractPath != RuntimeOption::EvalHackCompilerExtractPath) {
unlink(s_extractPath.data());
}
}
void compilers_detach_after_fork() {
s_manager.detach_after_fork();
std::unique_lock<std::mutex> lock{s_extractLock};
if (!s_extractPath.empty() &&
s_extractPath != RuntimeOption::EvalHackCompilerExtractPath) {
s_extractPath.clear();
}
}
std::unique_ptr<FactsParser> acquire_facts_parser() {
return std::make_unique<CompilerGuard>(s_manager.get_hackc_pool());
}
ParseFactsResult extract_facts(
const FactsParser& facts_parser,
const std::string& filename,
const char* code,
int len
) {
size_t maxRetries;
bool verboseErrors;
std::tie(maxRetries, verboseErrors) =
s_manager.get_hackc_pool().getMaxRetriesAndVerbosity();
return extract_facts_worker(
dynamic_cast<const CompilerGuard&>(facts_parser),
filename,
code,
len,
maxRetries,
verboseErrors);
}
FfpResult ffp_parse_file(std::string file, const char *contents, int size) {
return s_manager.get_hackc_pool().parse(file, contents, size);
}
std::string hackc_version() {
return s_manager.get_hackc_pool().getVersionString();
}
bool startsWith(const char* big, const char* small) {
return strncmp(big, small, strlen(small)) == 0;
}
bool isFileHack(const char* code, size_t codeLen) {
// if the file starts with a shebang
if (codeLen > 2 && strncmp(code, "#!", 2) == 0) {
// reset code to the next char after the shebang line
const char* loc = reinterpret_cast<const char*>(
memchr(code, '\n', codeLen));
if (!loc) {
return false;
}
ptrdiff_t offset = loc - code;
code = loc + 1;
codeLen -= offset + 1;
}
return codeLen > strlen("<?hh") && startsWith(code, "<?hh");
}
std::unique_ptr<UnitCompiler>
UnitCompiler::create(const char* code,
int codeLen,
const char* filename,
const MD5& md5,
const Native::FuncTable& nativeFuncs,
bool forDebuggerEval
) {
s_manager.ensure_started();
return std::make_unique<HackcUnitCompiler>(code, codeLen, filename, md5,
nativeFuncs, forDebuggerEval);
}
std::unique_ptr<UnitEmitter> HackcUnitCompiler::compile(
AsmCallbacks* callbacks) const {
bool ice = false;
auto res = hackc_compile(m_code,
m_codeLen,
m_filename,
m_md5,
m_nativeFuncs,
m_forDebuggerEval,
callbacks,
ice);
std::unique_ptr<UnitEmitter> unitEmitter;
match<void>(
res,
[&] (std::unique_ptr<UnitEmitter>& ue) {
unitEmitter = std::move(ue);
},
[&] (std::string& err) {
unitEmitter = createFatalUnit(
makeStaticString(m_filename),
m_md5,
FatalOp::Runtime,
makeStaticString(err));
}
);
if (unitEmitter) unitEmitter->m_ICE = ice;
return unitEmitter;
}
////////////////////////////////////////////////////////////////////////////////
}
| [
"hhvm-bot@users.noreply.github.com"
] | hhvm-bot@users.noreply.github.com |
43f332cfb6b0e73898494e1da09f52a0c87f0465 | 23c84c283f0dd2ffe6811e85d5924102a05d7ed1 | /UVa/V012/1201 - Taxi Cab Scheme.cpp | 766db78cd0602a3e7a47550a672dc3a05c58c38f | [] | no_license | HJackH/OnlineJudges | efaaaf35fabeb5393a3fefac9a19e3c89a535b3b | 1e5bfc7ad13cc171e16d562a4cac0bcdc92bbce2 | refs/heads/master | 2022-07-08T21:31:37.960165 | 2022-06-22T07:01:57 | 2022-06-22T07:01:57 | 245,434,136 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,553 | cpp | #include <bits/stdc++.h>
using namespace std;
#define IOS ios_base::sync_with_stdio(0); cin.tie(0);
#define pb push_back
const int MAXN = 500 + 5;
int dis(int x1, int y1, int x2, int y2) {
return abs(x1 - x2) + abs(y1 - y2);
}
struct Taxi {
int stTime, edTime;
int fx, fy;
int tx, ty;
void read() {
char c;
int h, m;
cin >> h >> c >> m >> fx >> fy >> tx >> ty;
stTime = h * 60 + m;
edTime = stTime + dis(fx, fy, tx, ty);
}
};
int n, my[MAXN];
Taxi taxis[MAXN];
vector<int> G[MAXN];
bool vis[MAXN];
bool inTime(Taxi &a, Taxi &b) {
return (a.edTime + dis(a.tx, a.ty, b.fx, b.fy)) < b.stTime;
}
bool match(int u) {
for (int v : G[u]) {
if (vis[v]) {
continue;
}
vis[v] = 1;
if (my[v] == -1 || match(my[v])) {
my[v] = u;
return true;
}
}
return false;
}
int KM() {
memset(my, -1, sizeof(my));
int ans = 0;
for (int i = 0; i < n; i++) {
memset(vis, 0, sizeof(vis));
if (match(i)) {
++ans;
}
}
return ans;
}
int main() { IOS
int T;
cin >> T;
while (T--) {
cin >> n;
for (int i = 0; i < n; i++) {
taxis[i].read();
G[i].clear();
}
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
if (inTime(taxis[i], taxis[j])) {
G[i].pb(j);
}
}
}
cout << n - KM() << '\n';
}
} | [
"fandy36@gmail.com"
] | fandy36@gmail.com |
1468c7cc6d2d9dac7b63ec53b559b21b6c2bd3fd | 7fb8c421a2efa33969b0cf298a3f1fe4688dbbda | /GaleEngine/Managers/Physics_Manager.cpp | 9448af615df30c7036bbf3e156eabe65c09d655b | [] | no_license | hakgagik/GaleEngine | 9c2e7d007ddb15a7a497b0aeac4a2df4e2107e06 | 3a3cb5a4330c67348d99bef56223f3ea4c14f09b | refs/heads/master | 2022-09-04T18:56:12.330889 | 2020-03-30T15:38:37 | 2020-03-30T15:38:37 | 47,303,019 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,068 | cpp | #include "Physics_Manager.h"
#include "../Physics/Particles/Particle.h"
#include "../Physics/Constraints/Constraint.h"
#include "../Physics/IConstraintGroup.h"
#include "../Physics/PhysicsObjects/PhysicsObject.h"
#include "../Physics/PhysicsObjects/Fluids/FluidHelper.h"
#include <glm/glm.hpp>
using namespace Managers;
using namespace Physics;
using namespace Particles;
using namespace Forces;
using namespace Constraints;
using namespace PhysicsObjects;
using namespace Fluids;
using namespace glm;
using namespace std;
using json = nlohmann::json;
Physics_Manager Physics_Manager::instance;
Physics_Manager& Physics_Manager::Get() {
return instance;
}
Physics_Manager::Physics_Manager() {}
Physics_Manager::~Physics_Manager() {
//for (Particle* particle : particleList) delete particle;
//for (Constraint* constraint : constraintList) delete constraint;
//for (ForceField* force : extForceList) delete force;
for (PhysicsObject* physicsObject : PhysicsObjectList) delete physicsObject;
}
void Physics_Manager::Init() {
FluidHelper::Init();
}
void Physics_Manager::InitializeParticles() {
initParticles();
}
void Physics_Manager::Update() {
applyExtForces();
predictPositions();
FluidHelper::Get().Update();
calculatePotentialInteractions();
for (int i = 0; i < iterations; i++) {
projectConstraints(iterations);
}
finalizePositionsAndVelocities();
}
void Physics_Manager::Transmute() {
for (PhysicsObject* physObj : PhysicsObjectList) {
physObj->Transmute();
}
}
void Physics_Manager::initParticles() {
for (PhysicsObject* physObj : PhysicsObjectList) {
physObj->InitParticles();
}
}
void Physics_Manager::applyExtForces() {
for (PhysicsObject* physObj : PhysicsObjectList) {
physObj->ApplyForces();
}
}
void Physics_Manager::predictPositions() {
for (PhysicsObject* physObj : PhysicsObjectList) {
physObj->PredictPositions();
}
}
void Physics_Manager::calculatePotentialInteractions() {
//TODO
for (PhysicsObject* physObj : PhysicsObjectList) {
physObj->CalculatePotentialInteractions();
}
}
void Physics_Manager::projectConstraints(int iterations) {
for (PhysicsObject* physObj : PhysicsObjectList) {
physObj->Project(iterations);
physObj->CollideWithBounds(Bounds);
}
}
void Physics_Manager::finalizePositionsAndVelocities() {
for (PhysicsObject* physObj : PhysicsObjectList) {
physObj->FinalizeParticles();
}
}
void Physics_Manager::AddPhysicsObject(PhysicsObject* physicsObject) {
PhysicsObjectList.push_back(physicsObject);
}
void Physics_Manager::LoadFromJSON(json &j) {
for (json t : j["Physics"]["PhysicsObjects"]) {
string objectType = t["Type"];
if (objectType == "Cloth") {
createCloth(t);
}
}
//for (json t : j["Physics"]["Forces"]) {
//}
}
void Physics_Manager::WriteToJSON(json &j) {
for (PhysicsObject* physObj : PhysicsObjectList) {
j["Physics"]["PhysicsObjects"].push_back(physObj->GetJSON());
}
//for (ForceField* forceField : extForceList) {
// j["Physics"]["Forces"].push_back(forceField->GetJSON());
//}
}
void Physics_Manager::createCloth(json j) {
} | [
"xddarkgalegh@aim.com"
] | xddarkgalegh@aim.com |
34302a10d273551e74861a22530a94e995b39707 | 65278f7bb0c1014a2a2df1a6e6124b02d5dff28a | /maxflow/src/pyarray_index.h | 56649d199d825248e4eb7b4779e60c776cb50d6e | [] | no_license | letterx/PyMaxflow | 71ee5c4b36188eeb7f4b10355d1e5b16e054e0b9 | e41668d7f930e789d75fc9182e9c1ed3f1f7131f | refs/heads/master | 2020-12-06T23:30:06.421207 | 2013-11-21T02:18:00 | 2013-11-21T02:18:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,948 | h |
#ifndef _PYARRAY_INDEX_H
#define _PYARRAY_INDEX_H
#include "pyarraymodule.h"
class pyarray_index
{
public:
typedef npy_intp* iterator;
typedef const npy_intp* const_iterator;
npy_intp* idx;
int ndim;
explicit pyarray_index(int ndim);
pyarray_index(int ndim, int value);
pyarray_index(int ndim, const npy_intp* idx);
pyarray_index(const pyarray_index& rhs);
~pyarray_index();
pyarray_index& operator=(const pyarray_index& rhs);
inline const npy_intp& operator[](int i) const {return idx[i];}
inline npy_intp& operator[](int i) {return idx[i];}
inline operator npy_intp*() {return &idx[0];}
inline operator npy_intp*() const {return const_cast<npy_intp*>(&idx[0]);}
inline iterator begin() {return idx;}
inline iterator end() {return idx + ndim;}
inline const_iterator begin() const {return idx;}
inline const_iterator end() const {return idx + ndim;}
bool operator==(const pyarray_index& rhs) const;
};
std::ostream& operator<<(std::ostream& os, const pyarray_index& idx);
/// Provisional iteration functionality until NpyIter is ready.
class pyarray_iterator
{
private:
pyarray_index ind;
pyarray_index lower;
pyarray_index upper;
bool end;
public:
explicit pyarray_iterator(const PyArrayObject* arr);
pyarray_iterator(const pyarray_index& shape);
pyarray_iterator(const pyarray_index& ind, const pyarray_index& shape);
pyarray_iterator(const pyarray_index& ind, const pyarray_index& lower, const pyarray_index& upper);
pyarray_iterator(const pyarray_iterator& rhs);
pyarray_iterator& operator++();
pyarray_iterator operator++(int);
inline const pyarray_index& getIndex() const {return ind;}
pyarray_index getShape() const;
inline int getNDim() const {return ind.ndim;}
inline const pyarray_index& getUpper() const {return upper;}
inline const pyarray_index& getLower() const {return lower;}
inline bool atEnd() const {return end;}
};
/// Iterator through the Moore neighborhood of a given index.
class moore_neighbor_index
{
private:
pyarray_index center;
pyarray_iterator* iter;
void init_iter(const pyarray_index& shapelower, const pyarray_index& shapeupper);
public:
explicit moore_neighbor_index(const pyarray_iterator& idx);
moore_neighbor_index(const PyArrayObject* arr, const pyarray_index& center);
moore_neighbor_index(const moore_neighbor_index& rhs);
~moore_neighbor_index();
moore_neighbor_index& operator=(const moore_neighbor_index& rhs);
moore_neighbor_index& operator++();
moore_neighbor_index operator++(int);
inline const pyarray_index& getIndex() const {return iter->getIndex();}
pyarray_index getOffset() const;
inline int getNDim() const {return center.ndim;}
inline bool atEnd() const {return iter->atEnd();}
};
#endif
| [
"pmarquezneila@gmail.com"
] | pmarquezneila@gmail.com |
b90f3a885e44634ac97b34f9a2dd90449e30cbf0 | 21237f6d16d8179dbf4e6a79a944ce2e670db20e | /windows/runner/main.cpp | e37d88d41ca3c3076d3b7045569ce1040965dc55 | [] | no_license | mannasoumo/OntimeApp | 728b104dc02015c7376c1f3b6b18f52e3772edc0 | 1707b4ccaedf3bafc0d0088382c12eb704e986f7 | refs/heads/main | 2023-08-17T06:21:59.527335 | 2021-10-07T04:08:14 | 2021-10-07T04:08:14 | 407,779,887 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,265 | cpp | #include <flutter/dart_project.h>
#include <flutter/flutter_view_controller.h>
#include <windows.h>
#include "flutter_window.h"
#include "utils.h"
int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
_In_ wchar_t *command_line, _In_ int show_command) {
// Attach to console when present (e.g., 'flutter run') or create a
// new console when running with a debugger.
if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) {
CreateAndAttachConsole();
}
// Initialize COM, so that it is available for use in the library and/or
// plugins.
::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED);
flutter::DartProject project(L"data");
std::vector<std::string> command_line_arguments =
GetCommandLineArguments();
project.set_dart_entrypoint_arguments(std::move(command_line_arguments));
FlutterWindow window(project);
Win32Window::Point origin(10, 10);
Win32Window::Size size(1280, 720);
if (!window.CreateAndShow(L"tasks", origin, size)) {
return EXIT_FAILURE;
}
window.SetQuitOnClose(true);
::MSG msg;
while (::GetMessage(&msg, nullptr, 0, 0)) {
::TranslateMessage(&msg);
::DispatchMessage(&msg);
}
::CoUninitialize();
return EXIT_SUCCESS;
}
| [
"75923589+mannasoumo@users.noreply.github.com"
] | 75923589+mannasoumo@users.noreply.github.com |
263356eacebe9991e1dea5d9c890930341791411 | 0ddc8ded20a40949abc64bd81f3e972d670dba7f | /Penteract/Assets/Scripts/AbilityRefreshEffect.cpp | b181df1d8724ce9104363b4c768de2b348b74650 | [
"MIT"
] | permissive | jcarlos0305/Penteract | cb8444cd8ef099786e8a765621bb34b036bd2cd4 | 1ba680cb63369773787247b435bf5a7a54e78e47 | refs/heads/master | 2023-06-14T10:31:26.457527 | 2021-07-09T16:06:56 | 2021-07-09T16:06:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,364 | cpp | #include "AbilityRefreshEffect.h"
#include "GameplaySystems.h"
#include "Components/UI/ComponentImage.h"
#include "Components/UI/ComponentTransform2D.h"
#include "HUDController.h"
// clang-format off
EXPOSE_MEMBERS(AbilityRefreshEffect) {
MEMBER(MemberType::FLOAT, totalEffectTime),
MEMBER(MemberType::FLOAT, effectScale),
MEMBER(MemberType::GAME_OBJECT_UID, effectMember1UID),
MEMBER(MemberType::GAME_OBJECT_UID, skillParentObjectUID),
MEMBER(MemberType::BOOL, debugPlay)
};// clang-format on
GENERATE_BODY_IMPL(AbilityRefreshEffect);
void AbilityRefreshEffect::Start() {
GameObject* effectMember1Obj = GameplaySystems::GetGameObject(effectMember1UID);
GameObject* skillObject = GameplaySystems::GetGameObject(skillParentObjectUID);
if (effectMember1Obj) {
effectMember1 = effectMember1Obj->GetComponent<ComponentImage>();
effectTransform2D = effectMember1Obj->GetComponent<ComponentTransform2D>();
if (effectMember1) {
originalAlpha = effectMember1->GetColor().z;
originalColor = effectMember1->GetColor().xyz();
effectMember1->Disable();
}
}
if (skillObject) {
skillObjTransform2D = skillObject->GetComponent<ComponentTransform2D>();
}
}
void AbilityRefreshEffect::Update() {
if (debugPlay) {
debugPlay = false;
Play();
}
if (!isPlaying || !skillObjTransform2D) return;
effectTimer = Min(totalEffectTime, effectTimer + Time::GetDeltaTime());
float deltaA = effectTimer / totalEffectTime;
float deltaB = Min(1.0f, effectTimer * 1.2f / totalEffectTime);
//DO EFFECT
skillObjTransform2D->SetScale(float3::Lerp(effectScaleVector, originalScaleVector, deltaA));
effectTransform2D->SetScale(float3::Lerp(effectScaleVector, originalEffectScaleVector, deltaB));
if (deltaA > 0.5) {
deltaA = HUDController::MapValue01(deltaA, 0.5f, 1.0f);
effectMember1->SetColor(float4(originalColor, Lerp(originalAlpha, 0, deltaA)));
}
if (effectTimer == totalEffectTime) {
isPlaying = false;
effectMember1->Disable();
}
}
void AbilityRefreshEffect::Play() {
if (!skillObjTransform2D) return;
if (effectMember1) {
effectMember1->Enable();
effectMember1->SetColor(float4(originalColor, originalAlpha));
}
originalScaleVector = skillObjTransform2D->GetScale();
originalEffectScaleVector = effectTransform2D->GetScale();
effectScaleVector = float3(effectScale);
effectTimer = 0;
isPlaying = true;
} | [
"davidsierragonzalez@enti.cat"
] | davidsierragonzalez@enti.cat |
8b9072630fca781d10ba91ec54a046d0fcd51e2c | c0177f6ee9ed5fcd549ce48af2a6b2eab14219f6 | /OOP With C++/Chapter 12 'Templates'/Programming Exercises/12.4 Class template which shows working of calculators/main.cpp | c93bf9732754fb7c90152db028d85e1f47f5f31f | [
"MIT"
] | permissive | idesign0/robotics | 99d8f9be5690485a0b78120d815521a2617429b5 | 69a7961a563276fbf021814c0b4577d4c45f3eb8 | refs/heads/master | 2021-07-09T18:26:27.739304 | 2020-10-29T12:59:52 | 2020-10-29T12:59:52 | 210,374,010 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 834 | cpp | #include<iostream>
#include<stdlib.h>
using namespace std;
template<class T>
class calculator{
T num1;
T num2;
public:
calculator(T a, T b){
num1=a;
num2=b;
}
T add(){ return num1+num2;}
T subtract(){ return num1-num2;}
T multiply(){ return num1*num2;}
T division(){ return num1/num2;}
void display(){
cout << "Numbers are : Num1 : " <<num1 <<" Num2 "<< num2 << endl;
cout << "Additions of numbers : "<< add() << endl;
cout << "Subtract of numbers : "<< subtract() << endl;
cout << "Multiply of numbers : "<< multiply() << endl;
cout << "Division of numbers : "<< division() << endl;
}
};
int main(){
calculator<int> a(10,5);
a.display();
cout << "\n\n";
calculator<float> b(2.4,1.2);
b.display();
return 0;
}
| [
"dhruvpatel2991998@gmail.com"
] | dhruvpatel2991998@gmail.com |
1b9463e462becb923450500951a8286f4fe59c22 | b5d20ba5c51cbbabb8e8f67e64fec5f22abbf5b5 | /webrtc/rtc_base/base64_unittest.cc | 913e9f790537ad7d3af64640854a2cccab7e038c | [] | no_license | zeiger589/video-chat | 1f979e7f1e7ab543d4e36bef09175548c7528ec6 | 7c233388298057663cfbb65631b0d0d8b80530d4 | refs/heads/master | 2020-05-17T07:07:53.894612 | 2019-04-17T16:10:18 | 2019-04-17T16:10:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 62,120 | cc | /*
* Copyright 2011 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "rtc_base/third_party/base64/base64.h"
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include "rtc_base/logging.h"
#include "rtc_base/test_base64.h"
#include "test/gtest.h"
namespace rtc {
namespace {
static struct {
size_t plain_length;
const char* plaintext;
const char* cyphertext;
} base64_tests[] = {
// Basic bit patterns;
// values obtained with "echo -n '...' | uuencode -m test"
{1, "\000", "AA=="},
{1, "\001", "AQ=="},
{1, "\002", "Ag=="},
{1, "\004", "BA=="},
{1, "\010", "CA=="},
{1, "\020", "EA=="},
{1, "\040", "IA=="},
{1, "\100", "QA=="},
{1, "\200", "gA=="},
{1, "\377", "/w=="},
{1, "\376", "/g=="},
{1, "\375", "/Q=="},
{1, "\373", "+w=="},
{1, "\367", "9w=="},
{1, "\357", "7w=="},
{1, "\337", "3w=="},
{1, "\277", "vw=="},
{1, "\177", "fw=="},
{2, "\000\000", "AAA="},
{2, "\000\001", "AAE="},
{2, "\000\002", "AAI="},
{2, "\000\004", "AAQ="},
{2, "\000\010", "AAg="},
{2, "\000\020", "ABA="},
{2, "\000\040", "ACA="},
{2, "\000\100", "AEA="},
{2, "\000\200", "AIA="},
{2, "\001\000", "AQA="},
{2, "\002\000", "AgA="},
{2, "\004\000", "BAA="},
{2, "\010\000", "CAA="},
{2, "\020\000", "EAA="},
{2, "\040\000", "IAA="},
{2, "\100\000", "QAA="},
{2, "\200\000", "gAA="},
{2, "\377\377", "//8="},
{2, "\377\376", "//4="},
{2, "\377\375", "//0="},
{2, "\377\373", "//s="},
{2, "\377\367", "//c="},
{2, "\377\357", "/+8="},
{2, "\377\337", "/98="},
{2, "\377\277", "/78="},
{2, "\377\177", "/38="},
{2, "\376\377", "/v8="},
{2, "\375\377", "/f8="},
{2, "\373\377", "+/8="},
{2, "\367\377", "9/8="},
{2, "\357\377", "7/8="},
{2, "\337\377", "3/8="},
{2, "\277\377", "v/8="},
{2, "\177\377", "f/8="},
{3, "\000\000\000", "AAAA"},
{3, "\000\000\001", "AAAB"},
{3, "\000\000\002", "AAAC"},
{3, "\000\000\004", "AAAE"},
{3, "\000\000\010", "AAAI"},
{3, "\000\000\020", "AAAQ"},
{3, "\000\000\040", "AAAg"},
{3, "\000\000\100", "AABA"},
{3, "\000\000\200", "AACA"},
{3, "\000\001\000", "AAEA"},
{3, "\000\002\000", "AAIA"},
{3, "\000\004\000", "AAQA"},
{3, "\000\010\000", "AAgA"},
{3, "\000\020\000", "ABAA"},
{3, "\000\040\000", "ACAA"},
{3, "\000\100\000", "AEAA"},
{3, "\000\200\000", "AIAA"},
{3, "\001\000\000", "AQAA"},
{3, "\002\000\000", "AgAA"},
{3, "\004\000\000", "BAAA"},
{3, "\010\000\000", "CAAA"},
{3, "\020\000\000", "EAAA"},
{3, "\040\000\000", "IAAA"},
{3, "\100\000\000", "QAAA"},
{3, "\200\000\000", "gAAA"},
{3, "\377\377\377", "////"},
{3, "\377\377\376", "///+"},
{3, "\377\377\375", "///9"},
{3, "\377\377\373", "///7"},
{3, "\377\377\367", "///3"},
{3, "\377\377\357", "///v"},
{3, "\377\377\337", "///f"},
{3, "\377\377\277", "//+/"},
{3, "\377\377\177", "//9/"},
{3, "\377\376\377", "//7/"},
{3, "\377\375\377", "//3/"},
{3, "\377\373\377", "//v/"},
{3, "\377\367\377", "//f/"},
{3, "\377\357\377", "/+//"},
{3, "\377\337\377", "/9//"},
{3, "\377\277\377", "/7//"},
{3, "\377\177\377", "/3//"},
{3, "\376\377\377", "/v//"},
{3, "\375\377\377", "/f//"},
{3, "\373\377\377", "+///"},
{3, "\367\377\377", "9///"},
{3, "\357\377\377", "7///"},
{3, "\337\377\377", "3///"},
{3, "\277\377\377", "v///"},
{3, "\177\377\377", "f///"},
// Random numbers: values obtained with
//
// #! /bin/bash
// dd bs=$1 count=1 if=/dev/random of=/tmp/bar.random
// od -N $1 -t o1 /tmp/bar.random
// uuencode -m test < /tmp/bar.random
//
// where $1 is the number of bytes (2, 3)
{2, "\243\361", "o/E="},
{2, "\024\167", "FHc="},
{2, "\313\252", "y6o="},
{2, "\046\041", "JiE="},
{2, "\145\236", "ZZ4="},
{2, "\254\325", "rNU="},
{2, "\061\330", "Mdg="},
{2, "\245\032", "pRo="},
{2, "\006\000", "BgA="},
{2, "\375\131", "/Vk="},
{2, "\303\210", "w4g="},
{2, "\040\037", "IB8="},
{2, "\261\372", "sfo="},
{2, "\335\014", "3Qw="},
{2, "\233\217", "m48="},
{2, "\373\056", "+y4="},
{2, "\247\232", "p5o="},
{2, "\107\053", "Rys="},
{2, "\204\077", "hD8="},
{2, "\276\211", "vok="},
{2, "\313\110", "y0g="},
{2, "\363\376", "8/4="},
{2, "\251\234", "qZw="},
{2, "\103\262", "Q7I="},
{2, "\142\312", "Yso="},
{2, "\067\211", "N4k="},
{2, "\220\001", "kAE="},
{2, "\152\240", "aqA="},
{2, "\367\061", "9zE="},
{2, "\133\255", "W60="},
{2, "\176\035", "fh0="},
{2, "\032\231", "Gpk="},
{3, "\013\007\144", "Cwdk"},
{3, "\030\112\106", "GEpG"},
{3, "\047\325\046", "J9Um"},
{3, "\310\160\022", "yHAS"},
{3, "\131\100\237", "WUCf"},
{3, "\064\342\134", "NOJc"},
{3, "\010\177\004", "CH8E"},
{3, "\345\147\205", "5WeF"},
{3, "\300\343\360", "wOPw"},
{3, "\061\240\201", "MaCB"},
{3, "\225\333\044", "ldsk"},
{3, "\215\137\352", "jV/q"},
{3, "\371\147\160", "+Wdw"},
{3, "\030\320\051", "GNAp"},
{3, "\044\174\241", "JHyh"},
{3, "\260\127\037", "sFcf"},
{3, "\111\045\033", "SSUb"},
{3, "\202\114\107", "gkxH"},
{3, "\057\371\042", "L/ki"},
{3, "\223\247\244", "k6ek"},
{3, "\047\216\144", "J45k"},
{3, "\203\070\327", "gzjX"},
{3, "\247\140\072", "p2A6"},
{3, "\124\115\116", "VE1O"},
{3, "\157\162\050", "b3Io"},
{3, "\357\223\004", "75ME"},
{3, "\052\117\156", "Kk9u"},
{3, "\347\154\000", "52wA"},
{3, "\303\012\142", "wwpi"},
{3, "\060\035\362", "MB3y"},
{3, "\130\226\361", "WJbx"},
{3, "\173\013\071", "ews5"},
{3, "\336\004\027", "3gQX"},
{3, "\357\366\234", "7/ac"},
{3, "\353\304\111", "68RJ"},
{3, "\024\264\131", "FLRZ"},
{3, "\075\114\251", "PUyp"},
{3, "\315\031\225", "zRmV"},
{3, "\154\201\276", "bIG+"},
{3, "\200\066\072", "gDY6"},
{3, "\142\350\267", "Yui3"},
{3, "\033\000\166", "GwB2"},
{3, "\210\055\077", "iC0/"},
{3, "\341\037\124", "4R9U"},
{3, "\161\103\152", "cUNq"},
{3, "\270\142\131", "uGJZ"},
{3, "\337\076\074", "3z48"},
{3, "\375\106\362", "/Uby"},
{3, "\227\301\127", "l8FX"},
{3, "\340\002\234", "4AKc"},
{3, "\121\064\033", "UTQb"},
{3, "\157\134\143", "b1xj"},
{3, "\247\055\327", "py3X"},
{3, "\340\142\005", "4GIF"},
{3, "\060\260\143", "MLBj"},
{3, "\075\203\170", "PYN4"},
{3, "\143\160\016", "Y3AO"},
{3, "\313\013\063", "ywsz"},
{3, "\174\236\135", "fJ5d"},
{3, "\103\047\026", "QycW"},
{3, "\365\005\343", "9QXj"},
{3, "\271\160\223", "uXCT"},
{3, "\362\255\172", "8q16"},
{3, "\113\012\015", "SwoN"},
// various lengths, generated by this python script:
//
// from string import lowercase as lc
// for i in range(27):
// print '{ %2d, "%s",%s "%s" },' % (i, lc[:i], ' ' * (26-i),
// lc[:i].encode('base64').strip())
{0, "abcdefghijklmnopqrstuvwxyz", ""},
{1, "abcdefghijklmnopqrstuvwxyz", "YQ=="},
{2, "abcdefghijklmnopqrstuvwxyz", "YWI="},
{3, "abcdefghijklmnopqrstuvwxyz", "YWJj"},
{4, "abcdefghijklmnopqrstuvwxyz", "YWJjZA=="},
{5, "abcdefghijklmnopqrstuvwxyz", "YWJjZGU="},
{6, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVm"},
{7, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZw=="},
{8, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2g="},
{9, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hp"},
{10, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpag=="},
{11, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpams="},
{12, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamts"},
{13, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbQ=="},
{14, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW4="},
{15, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5v"},
{16, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcA=="},
{17, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHE="},
{18, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHFy"},
{19, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHFycw=="},
{20, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHFyc3Q="},
{21, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHFyc3R1"},
{22, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dg=="},
{23, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnc="},
{24, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4"},
{25, "abcdefghijklmnopqrstuvwxy", "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eQ=="},
{26, "abcdefghijklmnopqrstuvwxyz", "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXo="},
};
#if 0
static struct {
const char* plaintext;
const char* cyphertext;
} base64_strings[] = {
// The first few Google quotes
// Cyphertext created with "uuencode - GNU sharutils 4.2.1"
{
"Everyone! We're teetering on the brink of disaster."
" - Sergey Brin, 6/24/99, regarding the company's state "
"after the unleashing of Netscape/Google search",
"RXZlcnlvbmUhICBXZSdyZSB0ZWV0ZXJpbmcgb24gdGhlIGJyaW5rIG9mIGRp"
"c2FzdGVyLiAtIFNlcmdleSBCcmluLCA2LzI0Lzk5LCByZWdhcmRpbmcgdGhl"
"IGNvbXBhbnkncyBzdGF0ZSBhZnRlciB0aGUgdW5sZWFzaGluZyBvZiBOZXRz"
"Y2FwZS9Hb29nbGUgc2VhcmNo" },
{
"I'm not sure why we're still alive, but we seem to be."
" - Larry Page, 6/24/99, while hiding in the kitchenette "
"during the Netscape traffic overflow",
"SSdtIG5vdCBzdXJlIHdoeSB3ZSdyZSBzdGlsbCBhbGl2ZSwgYnV0IHdlIHNl"
"ZW0gdG8gYmUuIC0gTGFycnkgUGFnZSwgNi8yNC85OSwgd2hpbGUgaGlkaW5n"
"IGluIHRoZSBraXRjaGVuZXR0ZSBkdXJpbmcgdGhlIE5ldHNjYXBlIHRyYWZm"
"aWMgb3ZlcmZsb3c" },
{
"I think kids want porn."
" - Sergey Brin, 6/99, on why Google shouldn't prioritize a "
"filtered search for children and families",
"SSB0aGluayBraWRzIHdhbnQgcG9ybi4gLSBTZXJnZXkgQnJpbiwgNi85OSwg"
"b24gd2h5IEdvb2dsZSBzaG91bGRuJ3QgcHJpb3JpdGl6ZSBhIGZpbHRlcmVk"
"IHNlYXJjaCBmb3IgY2hpbGRyZW4gYW5kIGZhbWlsaWVz" },
};
#endif
// Compare bytes 0..len-1 of x and y. If not equal, abort with verbose error
// message showing position and numeric value that differed.
// Handles embedded nulls just like any other byte.
// Only added because string.compare() in gcc-3.3.3 seems to misbehave with
// embedded nulls.
// TODO: switch back to string.compare() if/when gcc is fixed
#define EXPECT_EQ_ARRAY(len, x, y, msg) \
for (size_t j = 0; j < len; ++j) { \
if (x[j] != y[j]) { \
RTC_LOG(LS_ERROR) << "" #x << " != " #y << " byte " << j \
<< " msg: " << msg; \
} \
}
size_t Base64Escape(const unsigned char* src,
size_t szsrc,
char* dest,
size_t szdest) {
std::string escaped;
Base64::EncodeFromArray((const char*)src, szsrc, &escaped);
memcpy(dest, escaped.data(), std::min(escaped.size(), szdest));
return escaped.size();
}
size_t Base64Unescape(const char* src,
size_t szsrc,
char* dest,
size_t szdest) {
std::string unescaped;
EXPECT_TRUE(
Base64::DecodeFromArray(src, szsrc, Base64::DO_LAX, &unescaped, nullptr));
memcpy(dest, unescaped.data(), std::min(unescaped.size(), szdest));
return unescaped.size();
}
size_t Base64Unescape(const char* src, size_t szsrc, std::string* s) {
EXPECT_TRUE(Base64::DecodeFromArray(src, szsrc, Base64::DO_LAX, s, nullptr));
return s->size();
}
TEST(Base64, EncodeDecodeBattery) {
RTC_LOG(LS_VERBOSE) << "Testing base-64";
size_t i;
// Check the short strings; this tests the math (and boundaries)
for (i = 0; i < sizeof(base64_tests) / sizeof(base64_tests[0]); ++i) {
char encode_buffer[100];
size_t encode_length;
char decode_buffer[100];
size_t decode_length;
size_t cypher_length;
RTC_LOG(LS_VERBOSE) << "B64: " << base64_tests[i].cyphertext;
const unsigned char* unsigned_plaintext =
reinterpret_cast<const unsigned char*>(base64_tests[i].plaintext);
cypher_length = strlen(base64_tests[i].cyphertext);
// The basic escape function:
memset(encode_buffer, 0, sizeof(encode_buffer));
encode_length =
Base64Escape(unsigned_plaintext, base64_tests[i].plain_length,
encode_buffer, sizeof(encode_buffer));
// Is it of the expected length?
EXPECT_EQ(encode_length, cypher_length);
// Is it the expected encoded value?
EXPECT_STREQ(encode_buffer, base64_tests[i].cyphertext);
// If we encode it into a buffer of exactly the right length...
memset(encode_buffer, 0, sizeof(encode_buffer));
encode_length =
Base64Escape(unsigned_plaintext, base64_tests[i].plain_length,
encode_buffer, cypher_length);
// Is it still of the expected length?
EXPECT_EQ(encode_length, cypher_length);
// And is the value still correct? (i.e., not losing the last byte)
EXPECT_STREQ(encode_buffer, base64_tests[i].cyphertext);
// If we decode it back:
memset(decode_buffer, 0, sizeof(decode_buffer));
decode_length = Base64Unescape(encode_buffer, cypher_length, decode_buffer,
sizeof(decode_buffer));
// Is it of the expected length?
EXPECT_EQ(decode_length, base64_tests[i].plain_length);
// Is it the expected decoded value?
EXPECT_EQ(0,
memcmp(decode_buffer, base64_tests[i].plaintext, decode_length));
// Our decoder treats the padding '=' characters at the end as
// optional. If encode_buffer has any, run some additional
// tests that fiddle with them.
char* first_equals = strchr(encode_buffer, '=');
if (first_equals) {
// How many equals signs does the string start with?
int equals = (*(first_equals + 1) == '=') ? 2 : 1;
// Try chopping off the equals sign(s) entirely. The decoder
// should still be okay with this.
std::string decoded2("this junk should also be ignored");
*first_equals = '\0';
EXPECT_NE(0U, Base64Unescape(encode_buffer, first_equals - encode_buffer,
&decoded2));
EXPECT_EQ(decoded2.size(), base64_tests[i].plain_length);
EXPECT_EQ_ARRAY(decoded2.size(), decoded2.data(),
base64_tests[i].plaintext, i);
size_t len;
// try putting some extra stuff after the equals signs, or in between them
if (equals == 2) {
snprintf(first_equals, 6, " = = ");
len = first_equals - encode_buffer + 5;
} else {
snprintf(first_equals, 6, " = ");
len = first_equals - encode_buffer + 3;
}
decoded2.assign("this junk should be ignored");
EXPECT_NE(0U, Base64Unescape(encode_buffer, len, &decoded2));
EXPECT_EQ(decoded2.size(), base64_tests[i].plain_length);
EXPECT_EQ_ARRAY(decoded2.size(), decoded2, base64_tests[i].plaintext, i);
}
}
}
// here's a weird case: a giant base64 encoded stream which broke our base64
// decoding. Let's test it explicitly.
const char SpecificTest[] =
"/9j/4AAQSkZJRgABAgEASABIAAD/"
"4Q0HRXhpZgAATU0AKgAAAAgADAEOAAIAAAAgAAAAngEPAAI\n"
"AAAAFAAAAvgEQAAIAAAAJAAAAwwESAAMAAAABAAEAAAEaAAUAAAABAAAAzAEbAAUAAAABAAAA1"
"A\n"
"EoAAMAAAABAAIAAAExAAIAAAAUAAAA3AEyAAIAAAAUAAAA8AE8AAIAAAAQAAABBAITAAMAAAAB"
"A\n"
"AIAAIdpAAQAAAABAAABFAAAAsQgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAFNPTlk"
"A\n"
"RFNDLVAyMDAAAAAASAAAAAEAAABIAAAAAUFkb2JlIFBob3Rvc2hvcCA3LjAAMjAwNzowMTozMC"
"A\n"
"yMzoxMDowNABNYWMgT1MgWCAxMC40LjgAAByCmgAFAAAAAQAAAmqCnQAFAAAAAQAAAnKIIgADA"
"A\n"
"AAAQACAACIJwADAAAAAQBkAACQAAAHAAAABDAyMjCQAwACAAAAFAAAAnqQBAACAAAAFAAAAo6R"
"A\n"
"QAHAAAABAECAwCRAgAFAAAAAQAAAqKSBAAKAAAAAQAAAqqSBQAFAAAAAQAAArKSBwADAAAAAQA"
"F\n"
"AACSCAADAAAAAQAAAACSCQADAAAAAQAPAACSCgAFAAAAAQAAArqgAAAHAAAABDAxMDCgAQADAA"
"A\n"
"AAf//"
"AACgAgAEAAAAAQAAAGSgAwAEAAAAAQAAAGSjAAAHAAAAAQMAAACjAQAHAAAAAQEAAACkAQ\n"
"ADAAAAAQAAAACkAgADAAAAAQAAAACkAwADAAAAAQAAAACkBgADAAAAAQAAAACkCAADAAAAAQAA"
"A\n"
"ACkCQADAAAAAQAAAACkCgADAAAAAQAAAAAAAAAAAAAACgAAAZAAAAAcAAAACjIwMDc6MDE6MjA"
"g\n"
"MjM6MDU6NTIAMjAwNzowMToyMCAyMzowNTo1MgAAAAAIAAAAAQAAAAAAAAAKAAAAMAAAABAAAA"
"B\n"
"PAAAACgAAAAYBAwADAAAAAQAGAAABGgAFAAAAAQAAAxIBGwAFAAAAAQAAAxoBKAADAAAAAQACA"
"A\n"
"ACAQAEAAAAAQAAAyICAgAEAAAAAQAACd0AAAAAAAAASAAAAAEAAABIAAAAAf/Y/"
"+AAEEpGSUYAA\n"
"QIBAEgASAAA/+0ADEFkb2JlX0NNAAL/7gAOQWRvYmUAZIAAAAAB/"
"9sAhAAMCAgICQgMCQkMEQsK\n"
"CxEVDwwMDxUYExMVExMYEQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAQ0LCw"
"0\n"
"ODRAODhAUDg4OFBQODg4OFBEMDAwMDBERDAwMDAwMEQwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD"
"A\n"
"wMDAz/wAARCABkAGQDASIAAhEBAxEB/90ABAAH/"
"8QBPwAAAQUBAQEBAQEAAAAAAAAAAwABAgQFB\n"
"gcICQoLAQABBQEBAQEBAQAAAAAAAAABAAIDBAUGBwgJCgsQAAEEAQMCBAIFBwYIBQMMMwEAAhE"
"D\n"
"BCESMQVBUWETInGBMgYUkaGxQiMkFVLBYjM0coLRQwclklPw4fFjczUWorKDJkSTVGRFwqN0Nh"
"f\n"
"SVeJl8rOEw9N14/"
"NGJ5SkhbSVxNTk9KW1xdXl9VZmdoaWprbG1ub2N0dXZ3eHl6e3x9fn9xEAAg\n"
"IBAgQEAwQFBgcHBgU1AQACEQMhMRIEQVFhcSITBTKBkRShsUIjwVLR8DMkYuFygpJDUxVjczTx"
"J\n"
"QYWorKDByY1wtJEk1SjF2RFVTZ0ZeLys4TD03Xj80aUpIW0lcTU5PSltcXV5fVWZnaGlqa2xtb"
"m\n"
"9ic3R1dnd4eXp7fH/"
"9oADAMBAAIRAxEAPwDy7bKNTUXNLz9EaJPDWMjxH4ozhtpYwaACT8ShaaW\n"
"bW0uEc9/JFfjj0Q4Hk/PRDxwX7y47W9z/"
"AN9Cv4+O3ILK2DcRqT2CaSvEbcl1Jbz37KG1dBldLo\n"
"qaS4l9xGjG9v6yoDAdYIaIjUk+AREgo4y5sapirb8Yl0NHHdKvBNm4yA1o5Pc+"
"SPEFvCWqB3HZF\n"
"Hj2SbWQ/"
"afGFP0bHP8ATY0uc4w1o1JPkkimGiS2KvqlnmBkOZQTyydzgPMM9v8A0lp4v1Nx9gF1\n"
"tpdqJaGtH/S3I0i3lISXW/8AMqnd/O2bfg2eUkqVYf/"
"Q8zuncO4Bj7lZ+n7f5Mj5KsJcY8NUZ4d\n"
"uEDVo1HkeU0rg3Om4H2rabCWUN7DQuK1n5FWKW4uCwG92gDRJBS6exhxmMboQI+"
"Cv4WFTQ42Bs2\n"
"fvnkkqEmy2YxoMMbpVzaz6jt+RbpHZs8lzkHqrasKkYOKP0jgDfZ4N/"
"wDM1tNrcWfSPmRyq9uNV\n"
"DnFg2s97i7UkjxKVrq0eVz3spZsja+ASDzwsh9jnOk/"
"JFzb3XZD3v1c4yT8UACTCniKDUnKz5Nj\n"
"G33XV1DV73BrT8dF23SejV4zg9g33cOsPb+SxVvqv9ViwNy8vS0iWs/"
"daf8A0Y5dpTi1sADGxCR\n"
"K1o0YBEmInlXWYbDBcDLdPJXa8f71Yrx2jnUoAqLnfZK5hJaW2vdwEk5a/wD/0fN6Ia/"
"e76IiVf\n"
"xavUL7CPpnT4LNbYXAVjuQt/AqDmNYO/"
"Kjnoy4hr5J8SwMhrRMaeSvbsxrfUazcOw4UX0Cisem2\n"
"SBoD4+"
"Kz8nC6llbSLCRrubJA8kwUWbUDa29X1PMa7aQWjuDC0MXMdbDbhI7eazBiUfZ6GOYRe1s\n"
"WvGgJ8Vbw2+m4Bx9s6JpNHuuGo1FF53r/"
"SHYua61gLse0lzXeBP5rkvqx0o5vVWz7WY49QkiQSP\n"
"oN/tLoevW/ogxv0HA7tJ0AnhT+pdDGYVl/wCdcTPkGn2NU0JWNWvlgAbHV6fEqdu2gR/"
"r2WlWwt\n"
"AA5VXAEsLXTqJafArQY5rRr9LiPBJiZsZCI1pJjxCi0j4oncSICSkWwzwkjeaSch//"
"0vO7sP7Lm\n"
"enO9ogtd5FbPT3Q5pCpZVc4ld3Lmn3O8j9EI2BYdunKjOobMQIyI+rusc2wx4d0eutwGnHh/"
"uQc\n"
"Ha7ladj6mVANGvcqOgz0Go7HJ12/GEHcwvB/dPY6ImbbaMaASGuIBjkN7qofs9Ubg9g7OI9p/"
"t/\n"
"RTSmhTHr0v6eSz6UgCPP2/wAVu9Ex2V49dVY2iACB4BZeVXQ/"
"AJ3gzGnnOi2+kACpru8flUsNmt\n"
"zHRf6xfWCnoeAfTh2ZaQKazx/"
"Ke7+QxcKz61fWA2uuObaC4zGhaPJrXBL64ZFmR124O09ENraPK\n"
"N3/AH5GqxIrZVUyp2K2vfdkENsDnxuex9m4Ox9n82xSgNd9D+p/XR1npgseR9ppOy4Dx/NfH/"
"CL\n"
"oQJGunmvMv8AFq3KHVcq3HkYQbD2nuSf0I/rMavSg6TLjLigQhJ7Z58v9QkmlsTOqSCn/"
"9PzL7R\n"
"d6Qq3n0wZ2zotXpT9xLfFYvkr/S7jXeB8E0jRkhKpC3q8LcJ/kmCrTnkuAPCq4do9Q/"
"ytVbuAeY\n"
"Gg5lQybQK+"
"82GBqEQUA1kOHPYf3LLsoyN36G5w8iUfHxepbXE2l0cApALgLHzBq9UxhTXU5hMC1\n"
"ktnSCup6S4Ctk+C5XqVGcaHPfuiuHkeTTuWz0+9zaKiH6CC0/yXBSQ2a/"
"MxojV57634rq+v2PLY\n"
"be1r2nsYG13/"
"AFKxbfCBMcr0brGAzrGEwCG31ncx0SfBzf7S4+zoHUWWsJq3hz9oLfcBH77R9H+\n"
"0pA13u/qPgDp/Q6ri39JlfpXkDx+h/"
"msWn1L6wdO6bSbcrIbU2Q0xLnSe21kuVejJspbVS5+4bd\n"
"ocBAkD/orG+tP1ar67Wy7GtZTm1SCXfRsb+a18fRe38x6SG3/44H1Z3f0y2I+l6DoSXD/"
"8xPrDs\n"
"3enVu3bdnqN3R+//USSVo//"
"1PLohhce+gRWS0Nsby3lRgFkKxQyW7SgUh3em5Tbq2uB9wWw1wey\n"
"J1XGV2XYdm5k7e4WzidXY9oMwo5RZ4T6Hd1ixwfp96PWbAJBVTHzK7O6Ky5oJB1HZMqmUEFlkG"
"y\n"
"xpa4zI1Hkq31dy7bMN9BAc3HeWAnnbyxEycmuup1jiAGglZ31PyrmZ9tQg1WtNj54EHR3/"
"S2qTH\n"
"1Yc5GgD1FFtzPdWGkd2AyflogZmRmsz6PSrbXbdo+"
"txOrP337f3fzVo15DK2uyrTtqpBOnBKx6b\n"
"7MjJsz7tHWOAYP3WD6LU6cqGjFCNl1MmvLcxv6YtDTLSAqP27LrdtYHXFnJZI+"
"Tp3MWg68OpDPv\n"
"UMUM2lkQBoouKQ6swjE9Nml+1sz1PW+z6xt27zuj+skrX2ZvqR5z8kkuOfdPt43/1fMm/"
"grFG6f\n"
"Lss9JA7JG7tnZs/SfJUrfS3foJ9TvHCopJsV8nWx/t24bJn8Fo/5TjWJXMJIS+i+G36TsZ/"
"7Q9P\n"
"8ATfzfeOFofVSZv2/zvt+O3X/v65dJPjt/BiyfN1/wn0zre79nVej/ADG8ep4x2/"
"6Srjd6TdviF\n"
"52ko8m6/Ht9X1KnftEo+POwxzK8mSTF46vrH6T1/OEl5Okkl//Z/"
"+0uHFBob3Rvc2hvcCAzLjAA\n"
"OEJJTQQEAAAAAAArHAIAAAIAAhwCeAAfICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA"
"A\n"
"4QklNBCUAAAAAABD7Caa9B0wqNp2P4sxXqayFOEJJTQPqAAAAAB2wPD94bWwgdmVyc2lvbj0iM"
"S\n"
"4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCFET0NUWVBFIHBsaXN0IFBVQkxJQyAiLS8vQXBwbGUg"
"Q\n"
"29tcHV0ZXIvL0RURCBQTElTVCAxLjAvL0VOIiAiaHR0cDovL3d3dy5hcHBsZS5jb20vRFREcy9"
"Q\n"
"cm9wZXJ0eUxpc3QtMS4wLmR0ZCI+"
"CjxwbGlzdCB2ZXJzaW9uPSIxLjAiPgo8ZGljdD4KCTxrZXk\n"
"+Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1Ib3Jpem9udGFsUmVzPC9rZXk+"
"Cgk8ZGljdD\n"
"4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuY3JlYXRvcjwva2V5PgoJCTxzdHJpbmc+"
"Y\n"
"29tLmFwcGxlLnByaW50aW5nbWFuYWdlcjwvc3RyaW5nPgoJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50\n"
"LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQk8YXJyYXk+"
"CgkJCTxkaWN0PgoJCQkJPGtleT5jb20\n"
"uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUhvcml6b250YWxSZXM8L2tleT4KCQkJCTxyZWFsP"
"j\n"
"cyPC9yZWFsPgoJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNsaWVudDwva2V5PgoJ"
"C\n"
"QkJPHN0cmluZz5jb20uYXBwbGUucHJpbnRpbmdtYW5hZ2VyPC9zdHJpbmc+"
"CgkJCQk8a2V5PmNv\n"
"bS5hcHBsZS5wcmludC50aWNrZXQubW9kRGF0ZTwva2V5PgoJCQkJPGRhdGU+"
"MjAwNy0wMS0zMFQ\n"
"yMjowODo0MVo8L2RhdGU+"
"CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbG\n"
"FnPC9rZXk+CgkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQk8L2RpY3Q+"
"CgkJPC9hcnJheT4KC\n"
"TwvZGljdD4KCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1PcmllbnRhdGlvbjwv\n"
"a2V5PgoJPGRpY3Q+"
"CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4\n"
"KCQk8c3RyaW5nPmNvbS5hcHBsZS5wcmludGluZ21hbmFnZXI8L3N0cmluZz4KCQk8a2V5PmNvb"
"S\n"
"5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+"
"CgkJPGFycmF5PgoJCQk8ZGljdD4KC\n"
"QkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1PcmllbnRhdGlvbjwva2V5PgoJ\n"
"CQkJPGludGVnZXI+MTwvaW50ZWdlcj4KCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LnRpY2tldC5\n"
"jbGllbnQ8L2tleT4KCQkJCTxzdHJpbmc+"
"Y29tLmFwcGxlLnByaW50aW5nbWFuYWdlcjwvc3RyaW\n"
"5nPgoJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0Lm1vZERhdGU8L2tleT4KCQkJCTxk"
"Y\n"
"XRlPjIwMDctMDEtMzBUMjI6MDg6NDFaPC9kYXRlPgoJCQkJPGtleT5jb20uYXBwbGUucHJpbnQ"
"u\n"
"dGlja2V0LnN0YXRlRmxhZzwva2V5PgoJCQkJPGludGVnZXI+"
"MDwvaW50ZWdlcj4KCQkJPC9kaWN\n"
"0PgoJCTwvYXJyYXk+Cgk8L2RpY3Q+"
"Cgk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0Ll\n"
"BNU2NhbGluZzwva2V5PgoJPGRpY3Q+"
"CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZ\n"
"WF0b3I8L2tleT4KCQk8c3RyaW5nPmNvbS5hcHBsZS5wcmludGluZ21hbmFnZXI8L3N0cmluZz4"
"K\n"
"CQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+"
"CgkJPGFycmF5Pgo\n"
"JCQk8ZGljdD4KCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1TY2FsaW5nPC\n"
"9rZXk+"
"CgkJCQk8cmVhbD4xPC9yZWFsPgoJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0L\n"
"mNsaWVudDwva2V5PgoJCQkJPHN0cmluZz5jb20uYXBwbGUucHJpbnRpbmdtYW5hZ2VyPC9zdHJ"
"p\n"
"bmc+"
"CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQubW9kRGF0ZTwva2V5PgoJCQkJPGR\n"
"hdGU+MjAwNy0wMS0zMFQyMjowODo0MVo8L2RhdGU+"
"CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC\n"
"50aWNrZXQuc3RhdGVGbGFnPC9rZXk+"
"CgkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQk8L2RpY\n"
"3Q+CgkJPC9hcnJheT4KCTwvZGljdD4KCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQu\n"
"UE1WZXJ0aWNhbFJlczwva2V5PgoJPGRpY3Q+"
"CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V\n"
"0LmNyZWF0b3I8L2tleT4KCQk8c3RyaW5nPmNvbS5hcHBsZS5wcmludGluZ21hbmFnZXI8L3N0c"
"m\n"
"luZz4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+"
"CgkJPGFyc\n"
"mF5PgoJCQk8ZGljdD4KCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1WZXJ0\n"
"aWNhbFJlczwva2V5PgoJCQkJPHJlYWw+NzI8L3JlYWw+"
"CgkJCQk8a2V5PmNvbS5hcHBsZS5wcml\n"
"udC50aWNrZXQuY2xpZW50PC9rZXk+"
"CgkJCQk8c3RyaW5nPmNvbS5hcHBsZS5wcmludGluZ21hbm\n"
"FnZXI8L3N0cmluZz4KCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LnRpY2tldC5tb2REYXRlPC9rZ\n"
"Xk+CgkJCQk8ZGF0ZT4yMDA3LTAxLTMwVDIyOjA4OjQxWjwvZGF0ZT4KCQkJCTxrZXk+"
"Y29tLmFw\n"
"cGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCTxpbnRlZ2VyPjA8L2ludGVnZX"
"I\n"
"+CgkJCTwvZGljdD4KCQk8L2FycmF5PgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuU"
"G\n"
"FnZUZvcm1hdC5QTVZlcnRpY2FsU2NhbGluZzwva2V5PgoJPGRpY3Q+"
"CgkJPGtleT5jb20uYXBwb\n"
"GUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQk8c3RyaW5nPmNvbS5hcHBsZS5wcmludGl"
"u\n"
"Z21hbmFnZXI8L3N0cmluZz4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycm"
"F\n"
"5PC9rZXk+CgkJPGFycmF5PgoJCQk8ZGljdD4KCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhZ2\n"
"VGb3JtYXQuUE1WZXJ0aWNhbFNjYWxpbmc8L2tleT4KCQkJCTxyZWFsPjE8L3JlYWw+"
"CgkJCQk8a\n"
"2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuY2xpZW50PC9rZXk+"
"CgkJCQk8c3RyaW5nPmNvbS5h\n"
"cHBsZS5wcmludGluZ21hbmFnZXI8L3N0cmluZz4KCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LnR\n"
"pY2tldC5tb2REYXRlPC9rZXk+"
"CgkJCQk8ZGF0ZT4yMDA3LTAxLTMwVDIyOjA4OjQxWjwvZGF0ZT\n"
"4KCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCTxpb\n"
"nRlZ2VyPjA8L2ludGVnZXI+"
"CgkJCTwvZGljdD4KCQk8L2FycmF5PgoJPC9kaWN0PgoJPGtleT5j\n"
"b20uYXBwbGUucHJpbnQuc3ViVGlja2V0LnBhcGVyX2luZm9fdGlja2V0PC9rZXk+"
"Cgk8ZGljdD4\n"
"KCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0LlBNQWRqdXN0ZWRQYWdlUmVjdDwva"
"2\n"
"V5PgoJCTxkaWN0PgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuY3JlYXRvcjwva2V5"
"P\n"
"goJCQk8c3RyaW5nPmNvbS5hcHBsZS5wcmludGluZ21hbmFnZXI8L3N0cmluZz4KCQkJPGtleT5"
"j\n"
"b20uYXBwbGUucHJpbnQudGlja2V0Lml0ZW1BcnJheTwva2V5PgoJCQk8YXJyYXk+"
"CgkJCQk8ZGl\n"
"jdD4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0LlBNQWRqdXN0ZWRQYWdlU"
"m\n"
"VjdDwva2V5PgoJCQkJCTxhcnJheT4KCQkJCQkJPHJlYWw+"
"MC4wPC9yZWFsPgoJCQkJCQk8cmVhb\n"
"D4wLjA8L3JlYWw+CgkJCQkJCTxyZWFsPjczNDwvcmVhbD4KCQkJCQkJPHJlYWw+"
"NTc2PC9yZWFs\n"
"PgoJCQkJCTwvYXJyYXk+"
"CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNsaWVudDw\n"
"va2V5PgoJCQkJCTxzdHJpbmc+"
"Y29tLmFwcGxlLnByaW50aW5nbWFuYWdlcjwvc3RyaW5nPgoJCQ\n"
"kJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5tb2REYXRlPC9rZXk+CgkJCQkJPGRhdGU+"
"M\n"
"jAwNy0wMS0zMFQyMjowODo0MVo8L2RhdGU+"
"CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlj\n"
"a2V0LnN0YXRlRmxhZzwva2V5PgoJCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+"
"CgkJCQk8L2RpY3Q\n"
"+CgkJCTwvYXJyYXk+CgkJPC9kaWN0PgoJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYX\n"
"QuUE1BZGp1c3RlZFBhcGVyUmVjdDwva2V5PgoJCTxkaWN0PgoJCQk8a2V5PmNvbS5hcHBsZS5w"
"c\n"
"mludC50aWNrZXQuY3JlYXRvcjwva2V5PgoJCQk8c3RyaW5nPmNvbS5hcHBsZS5wcmludGluZ21"
"h\n"
"bmFnZXI8L3N0cmluZz4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0Lml0ZW1BcnJheT"
"w\n"
"va2V5PgoJCQk8YXJyYXk+"
"CgkJCQk8ZGljdD4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYW\n"
"dlRm9ybWF0LlBNQWRqdXN0ZWRQYXBlclJlY3Q8L2tleT4KCQkJCQk8YXJyYXk+"
"CgkJCQkJCTxyZ\n"
"WFsPi0xODwvcmVhbD4KCQkJCQkJPHJlYWw+"
"LTE4PC9yZWFsPgoJCQkJCQk8cmVhbD43NzQ8L3Jl\n"
"YWw+CgkJCQkJCTxyZWFsPjU5NDwvcmVhbD4KCQkJCQk8L2FycmF5PgoJCQkJCTxrZXk+"
"Y29tLmF\n"
"wcGxlLnByaW50LnRpY2tldC5jbGllbnQ8L2tleT4KCQkJCQk8c3RyaW5nPmNvbS5hcHBsZS5wc"
"m\n"
"ludGluZ21hbmFnZXI8L3N0cmluZz4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQu"
"b\n"
"W9kRGF0ZTwva2V5PgoJCQkJCTxkYXRlPjIwMDctMDEtMzBUMjI6MDg6NDFaPC9kYXRlPgoJCQk"
"J\n"
"CTxrZXk+"
"Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWd\n"
"lcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5P"
"m\n"
"NvbS5hcHBsZS5wcmludC5QYXBlckluZm8uUE1QYXBlck5hbWU8L2tleT4KCQk8ZGljdD4KCQkJ"
"P\n"
"GtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20"
"u\n"
"YXBwbGUucHJpbnQucG0uUG9zdFNjcmlwdDwvc3RyaW5nPgoJCQk8a2V5PmNvbS5hcHBsZS5wcm"
"l\n"
"udC50aWNrZXQuaXRlbUFycmF5PC9rZXk+"
"CgkJCTxhcnJheT4KCQkJCTxkaWN0PgoJCQkJCTxrZX\n"
"k+"
"Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVBhcGVyTmFtZTwva2V5PgoJCQkJCTxzdHJpb"
"\n"
"mc+bmEtbGV0dGVyPC9zdHJpbmc+"
"CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNs\n"
"aWVudDwva2V5PgoJCQkJCTxzdHJpbmc+"
"Y29tLmFwcGxlLnByaW50LnBtLlBvc3RTY3JpcHQ8L3N\n"
"0cmluZz4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQubW9kRGF0ZTwva2V5PgoJC"
"Q\n"
"kJCTxkYXRlPjIwMDMtMDctMDFUMTc6NDk6MzZaPC9kYXRlPgoJCQkJCTxrZXk+"
"Y29tLmFwcGxlL\n"
"nByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4xPC9pbnRlZ2VyPgo"
"J\n"
"CQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC"
"5\n"
"QYXBlckluZm8uUE1VbmFkanVzdGVkUGFnZVJlY3Q8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb"
"2\n"
"0uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUu"
"c\n"
"HJpbnQucG0uUG9zdFNjcmlwdDwvc3RyaW5nPgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWN"
"r\n"
"ZXQuaXRlbUFycmF5PC9rZXk+CgkJCTxhcnJheT4KCQkJCTxkaWN0PgoJCQkJCTxrZXk+"
"Y29tLmF\n"
"wcGxlLnByaW50LlBhcGVySW5mby5QTVVuYWRqdXN0ZWRQYWdlUmVjdDwva2V5PgoJCQkJCTxhc"
"n\n"
"JheT4KCQkJCQkJPHJlYWw+MC4wPC9yZWFsPgoJCQkJCQk8cmVhbD4wLjA8L3JlYWw+"
"CgkJCQkJC\n"
"TxyZWFsPjczNDwvcmVhbD4KCQkJCQkJPHJlYWw+NTc2PC9yZWFsPgoJCQkJCTwvYXJyYXk+"
"CgkJ\n"
"CQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNsaWVudDwva2V5PgoJCQkJCTxzdHJpbm"
"c\n"
"+Y29tLmFwcGxlLnByaW50aW5nbWFuYWdlcjwvc3RyaW5nPgoJCQkJCTxrZXk+"
"Y29tLmFwcGxlLn\n"
"ByaW50LnRpY2tldC5tb2REYXRlPC9rZXk+CgkJCQkJPGRhdGU+"
"MjAwNy0wMS0zMFQyMjowODo0M\n"
"Vo8L2RhdGU+"
"CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LnN0YXRlRmxhZzwva2V5\n"
"PgoJCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCQk8L2RpY3Q+CgkJCTwvYXJyYXk+"
"CgkJPC9\n"
"kaWN0PgoJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVVuYWRqdXN0ZWRQYXBlcl\n"
"JlY3Q8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0"
"b\n"
"3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUucHJpbnQucG0uUG9zdFNjcmlwdDwvc3RyaW5"
"n\n"
"PgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+"
"CgkJCTxhcnJ\n"
"heT4KCQkJCTxkaWN0PgoJCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVVuYW\n"
"RqdXN0ZWRQYXBlclJlY3Q8L2tleT4KCQkJCQk8YXJyYXk+"
"CgkJCQkJCTxyZWFsPi0xODwvcmVhb\n"
"D4KCQkJCQkJPHJlYWw+LTE4PC9yZWFsPgoJCQkJCQk8cmVhbD43NzQ8L3JlYWw+"
"CgkJCQkJCTxy\n"
"ZWFsPjU5NDwvcmVhbD4KCQkJCQk8L2FycmF5PgoJCQkJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LnR\n"
"pY2tldC5jbGllbnQ8L2tleT4KCQkJCQk8c3RyaW5nPmNvbS5hcHBsZS5wcmludGluZ21hbmFnZ"
"X\n"
"I8L3N0cmluZz4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQubW9kRGF0ZTwva2V5"
"P\n"
"goJCQkJCTxkYXRlPjIwMDctMDEtMzBUMjI6MDg6NDFaPC9kYXRlPgoJCQkJCTxrZXk+"
"Y29tLmFw\n"
"cGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2"
"V\n"
"yPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wc"
"m\n"
"ludC5QYXBlckluZm8ucHBkLlBNUGFwZXJOYW1lPC9rZXk+CgkJPGRpY3Q+CgkJCTxrZXk+"
"Y29tL\n"
"mFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJCTxzdHJpbmc+"
"Y29tLmFwcGxlLnBy\n"
"aW50LnBtLlBvc3RTY3JpcHQ8L3N0cmluZz4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2"
"V\n"
"0Lml0ZW1BcnJheTwva2V5PgoJCQk8YXJyYXk+"
"CgkJCQk8ZGljdD4KCQkJCQk8a2V5PmNvbS5hcH\n"
"BsZS5wcmludC5QYXBlckluZm8ucHBkLlBNUGFwZXJOYW1lPC9rZXk+"
"CgkJCQkJPHN0cmluZz5VU\n"
"yBMZXR0ZXI8L3N0cmluZz4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuY2xpZW5"
"0\n"
"PC9rZXk+"
"CgkJCQkJPHN0cmluZz5jb20uYXBwbGUucHJpbnQucG0uUG9zdFNjcmlwdDwvc3RyaW5\n"
"nPgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5tb2REYXRlPC9rZXk+"
"CgkJCQkJPG\n"
"RhdGU+MjAwMy0wNy0wMVQxNzo0OTozNlo8L2RhdGU+"
"CgkJCQkJPGtleT5jb20uYXBwbGUucHJpb\n"
"nQudGlja2V0LnN0YXRlRmxhZzwva2V5PgoJCQkJCTxpbnRlZ2VyPjE8L2ludGVnZXI+"
"CgkJCQk8\n"
"L2RpY3Q+CgkJCTwvYXJyYXk+CgkJPC9kaWN0PgoJCTxrZXk+"
"Y29tLmFwcGxlLnByaW50LnRpY2t\n"
"ldC5BUElWZXJzaW9uPC9rZXk+CgkJPHN0cmluZz4wMC4yMDwvc3RyaW5nPgoJCTxrZXk+"
"Y29tLm\n"
"FwcGxlLnByaW50LnRpY2tldC5wcml2YXRlTG9jazwva2V5PgoJCTxmYWxzZS8+"
"CgkJPGtleT5jb\n"
"20uYXBwbGUucHJpbnQudGlja2V0LnR5cGU8L2tleT4KCQk8c3RyaW5nPmNvbS5hcHBsZS5wcml"
"u\n"
"dC5QYXBlckluZm9UaWNrZXQ8L3N0cmluZz4KCTwvZGljdD4KCTxrZXk+"
"Y29tLmFwcGxlLnByaW5\n"
"0LnRpY2tldC5BUElWZXJzaW9uPC9rZXk+Cgk8c3RyaW5nPjAwLjIwPC9zdHJpbmc+"
"Cgk8a2V5Pm\n"
"NvbS5hcHBsZS5wcmludC50aWNrZXQucHJpdmF0ZUxvY2s8L2tleT4KCTxmYWxzZS8+"
"Cgk8a2V5P\n"
"mNvbS5hcHBsZS5wcmludC50aWNrZXQudHlwZTwva2V5PgoJPHN0cmluZz5jb20uYXBwbGUucHJ"
"p\n"
"bnQuUGFnZUZvcm1hdFRpY2tldDwvc3RyaW5nPgo8L2RpY3Q+CjwvcGxpc3Q+"
"CjhCSU0D6QAAAAA\n"
"AeAADAAAASABIAAAAAALeAkD/7v/uAwYCUgNnBSgD/"
"AACAAAASABIAAAAAALYAigAAQAAAGQAAA\n"
"ABAAMDAwAAAAF//"
"wABAAEAAAAAAAAAAAAAAABoCAAZAZAAAAAAACAAAAAAAAAAAAAAAAAAAAAAA\n"
"AAAAAAAAAAAADhCSU0D7QAAAAAAEABIAAAAAQABAEgAAAABAAE4QklNBCYAAAAAAA4AAAAAAAA"
"A\n"
"AAAAP4AAADhCSU0EDQAAAAAABAAAAB44QklNBBkAAAAAAAQAAAAeOEJJTQPzAAAAAAAJAAAAAA"
"A\n"
"AAAABADhCSU0ECgAAAAAAAQAAOEJJTScQAAAAAAAKAAEAAAAAAAAAAThCSU0D9QAAAAAASAAvZ"
"m\n"
"YAAQBsZmYABgAAAAAAAQAvZmYAAQChmZoABgAAAAAAAQAyAAAAAQBaAAAABgAAAAAAAQA1AAAA"
"A\n"
"QAtAAAABgAAAAAAAThCSU0D+AAAAAAAcAAA/////////////////////////////wPoAAAAAP/"
"/\n"
"//////////////////////////8D6AAAAAD/////////////////////////////A+gAAAAA//"
"/\n"
"//////////////////////////"
"wPoAAA4QklNBAgAAAAAABAAAAABAAACQAAAAkAAAAAAOEJJTQ\n"
"QeAAAAAAAEAAAAADhCSU0EGgAAAAADRQAAAAYAAAAAAAAAAAAAAGQAAABkAAAACABEAFMAQwAw"
"A\n"
"DIAMwAyADUAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAA"
"A\n"
"AAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAEAAAAAAABudWxsAAAAAgAAAAZib3VuZH"
"N\n"
"PYmpjAAAAAQAAAAAAAFJjdDEAAAAEAAAAAFRvcCBsb25nAAAAAAAAAABMZWZ0bG9uZwAAAAAAA"
"A\n"
"AAQnRvbWxvbmcAAABkAAAAAFJnaHRsb25nAAAAZAAAAAZzbGljZXNWbExzAAAAAU9iamMAAAAB"
"A\n"
"AAAAAAFc2xpY2UAAAASAAAAB3NsaWNlSURsb25nAAAAAAAAAAdncm91cElEbG9uZwAAAAAAAAA"
"G\n"
"b3JpZ2luZW51bQAAAAxFU2xpY2VPcmlnaW4AAAANYXV0b0dlbmVyYXRlZAAAAABUeXBlZW51bQ"
"A\n"
"AAApFU2xpY2VUeXBlAAAAAEltZyAAAAAGYm91bmRzT2JqYwAAAAEAAAAAAABSY3QxAAAABAAAA"
"A\n"
"BUb3AgbG9uZwAAAAAAAAAATGVmdGxvbmcAAAAAAAAAAEJ0b21sb25nAAAAZAAAAABSZ2h0bG9u"
"Z\n"
"wAAAGQAAAADdXJsVEVYVAAAAAEAAAAAAABudWxsVEVYVAAAAAEAAAAAAABNc2dlVEVYVAAAAAE"
"A\n"
"AAAAAAZhbHRUYWdURVhUAAAAAQAAAAAADmNlbGxUZXh0SXNIVE1MYm9vbAEAAAAIY2VsbFRleH"
"R\n"
"URVhUAAAAAQAAAAAACWhvcnpBbGlnbmVudW0AAAAPRVNsaWNlSG9yekFsaWduAAAAB2RlZmF1b"
"H\n"
"QAAAAJdmVydEFsaWduZW51bQAAAA9FU2xpY2VWZXJ0QWxpZ24AAAAHZGVmYXVsdAAAAAtiZ0Nv"
"b\n"
"G9yVHlwZWVudW0AAAARRVNsaWNlQkdDb2xvclR5cGUAAAAATm9uZQAAAAl0b3BPdXRzZXRsb25"
"n\n"
"AAAAAAAAAApsZWZ0T3V0c2V0bG9uZwAAAAAAAAAMYm90dG9tT3V0c2V0bG9uZwAAAAAAAAALcm"
"l\n"
"naHRPdXRzZXRsb25nAAAAAAA4QklNBBEAAAAAAAEBADhCSU0EFAAAAAAABAAAAAE4QklNBAwAA"
"A\n"
"AACfkAAAABAAAAZAAAAGQAAAEsAAB1MAAACd0AGAAB/9j/4AAQSkZJRgABAgEASABIAAD/"
"7QAMQ\n"
"WRvYmVfQ00AAv/uAA5BZG9iZQBkgAAAAAH/"
"2wCEAAwICAgJCAwJCQwRCwoLERUPDAwPFRgTExUT\n"
"ExgRDAwMDAwMEQwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwBDQsLDQ4NEA4OEBQODg4UFA"
"4\n"
"ODg4UEQwMDAwMEREMDAwMDAwRDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/"
"AABEIAGQAZA\n"
"MBIgACEQEDEQH/3QAEAAf/xAE/"
"AAABBQEBAQEBAQAAAAAAAAADAAECBAUGBwgJCgsBAAEFAQEBA\n"
"QEBAAAAAAAAAAEAAgMEBQYHCAkKCxAAAQQBAwIEAgUHBggFAwwzAQACEQMEIRIxBUFRYRMicYE"
"y\n"
"BhSRobFCIyQVUsFiMzRygtFDByWSU/"
"Dh8WNzNRaisoMmRJNUZEXCo3Q2F9JV4mXys4TD03Xj80Y\n"
"nlKSFtJXE1OT0pbXF1eX1VmZ2hpamtsbW5vY3R1dnd4eXp7fH1+"
"f3EQACAgECBAQDBAUGBwcGBT\n"
"UBAAIRAyExEgRBUWFxIhMFMoGRFKGxQiPBUtHwMyRi4XKCkkNTFWNzNPElBhaisoMHJjXC0kST"
"V\n"
"KMXZEVVNnRl4vKzhMPTdePzRpSkhbSVxNTk9KW1xdXl9VZmdoaWprbG1ub2JzdHV2d3h5ent8f"
"/\n"
"2gAMAwEAAhEDEQA/"
"APLtso1NRc0vP0Rok8NYyPEfijOG2ljBoAJPxKFppZtbS4Rz38kV+OPRDge\n"
"T89EPHBfvLjtb3P8A30K/j47cgsrYNxGpPYJpK8RtyXUlvPfsobV0GV0uippLiX3EaMb2/"
"rKgMB\n"
"1ghoiNST4BESCjjLmxqmKtvxiXQ0cd0q8E2bjIDWjk9z5I8QW8JaoHcdkUePZJtZD9p8YU/"
"Rsc/\n"
"wBNjS5zjDWjUk+SSKYaJLYq+qWeYGQ5lBPLJ3OA8wz2/wDSWni/"
"U3H2AXW2l2oloa0f9LcjSLeU\n"
"hJdb/wAyqd387Zt+DZ5SSpVh/9DzO6dw7gGPuVn6ft/"
"kyPkqwlxjw1Rnh24QNWjUeR5TSuDc6bg\n"
"fatpsJZQ3sNC4rWfkVYpbi4LAb3aANEkFLp7GHGYxuhAj4K/"
"hYVNDjYGzZ++eSSoSbLZjGgwxul\n"
"XNrPqO35FukdmzyXOQeqtqwqRg4o/SOAN9ng3/"
"AMzW02txZ9I+ZHKr241UOcWDaz3uLtSSPEpWu\n"
"rR5XPeylmyNr4BIPPCyH2Oc6T8kXNvddkPe/"
"VzjJPxQAJMKeIoNScrPk2MbfddXUNXvcGtPx0Xb\n"
"dJ6NXjOD2Dfdw6w9v5LFW+q/1WLA3Ly9LSJaz91p/"
"wDRjl2lOLWwAMbEJErWjRgESYieVdZhsMF\n"
"wMt08ldrx/vVivHaOdSgCoud9krmElpba93ASTlr/AP/R83ohr97voiJV/"
"Fq9QvsI+mdPgs1thc\n"
"BWO5C38CoOY1g78qOejLiGvknxLAyGtExp5K9uzGt9RrNw7DhRfQKKx6bZIGgPj4rPycLqWVtI"
"s\n"
"JGu5skDyTBRZtQNrb1fU8xrtpBaO4MLQxcx1sNuEjt5rMGJR9noY5hF7Wxa8aAnxVvDb6bgHH2"
"z\n"
"omk0e64ajUUXnev9Idi5rrWAux7SXNd4E/muS+rHSjm9VbPtZjj1CSJBI+g3+0uh69b+iDG/"
"QcD\n"
"u0nQCeFP6l0MZhWX/"
"AJ1xM+QafY1TQlY1a+WABsdXp8Sp27aBH+vZaVbC0ADlVcASwtdOolp8Ct\n"
"BjmtGv0uI8EmJmxkIjWkmPEKLSPiidxIgJKRbDPCSN5pJyH//S87uw/"
"suZ6c72iC13kVs9PdDmk\n"
"KllVziV3cuafc7yP0QjYFh26cqM6hsxAjIj6u6xzbDHh3R663AaceH+"
"5BwdruVp2PqZUA0a9yo6\n"
"DPQajscnXb8YQdzC8H909joiZttoxoBIa4gGOQ3uqh+z1RuD2Ds4j2n+39FNKaFMevS/"
"p5LPpSA\n"
"I8/b/ABW70THZXj11VjaIAIHgFl5VdD8AneDMaec6Lb6QAKmu7x+VSw2a3MdF/"
"rF9YKeh4B9OHZ\n"
"lpAprPH8p7v5DFwrPrV9YDa645toLjMaFo8mtcEvrhkWZHXbg7T0Q2to8o3f8AfkarEitlVTKn"
"Y\n"
"ra992QQ2wOfG57H2bg7H2fzbFKA130P6n9dHWemCx5H2mk7LgPH818f8IuhAka6ea8y/"
"wAWrcod\n"
"VyrceRhBsPae5J/Qj+sxq9KDpMuMuKBCEntnny/1CSaWxM6pIKf/0/"
"MvtF3pCrefTBnbOi1elP3\n"
"Et8Vi+Sv9LuNd4HwTSNGSEqkLerwtwn+SYKtOeS4A8Krh2j1D/"
"K1Vu4B5gaDmVDJtAr7zYYGoRB\n"
"QDWQ4c9h/"
"csuyjI3fobnDyJR8fF6ltcTaXRwCkAuAsfMGr1TGFNdTmEwLWS2dIK6npLgK2T4Lle\n"
"pUZxoc9+6K4eR5NO5bPT73NoqIfoILT/JcFJDZr8zGiNXnvrfiur6/"
"Y8tht7WvaexgbXf8AUrFt\n"
"8IExyvRusYDOsYTAIbfWdzHRJ8HN/"
"tLj7OgdRZawmreHP2gt9wEfvtH0f7SkDXe7+o+AOn9DquL\n"
"f0mV+leQPH6H+axafUvrB07ptJtyshtTZDTEudJ7bWS5V6MmyltVLn7ht2hwECQP+isb60/"
"Vqvr\n"
"tbLsa1lObVIJd9Gxv5rXx9F7fzHpIbf/jgfVnd/TLYj6XoOhJcP/zE+sOzd6dW7dt2eo3dH7/"
"9R\n"
"JJWj//"
"U8uiGFx76BFZLQ2xvLeVGAWQrFDJbtKBSHd6blNura4H3BbDXB7InVcZXZdh2bmTt7hbO\n"
"J1dj2gzCjlFnhPod3WLHB+"
"n3o9ZsAkFVMfMrs7orLmgkHUdkyqZQQWWQbLGlrjMjUeSrfV3Ltsw\n"
"30EBzcd5YCedvLETJya66nWOIAaCVnfU/"
"KuZn21CDVa02PngQdHf9LapMfVhzkaAPUUW3M91YaR\n"
"3YDJ+WiBmZGazPo9Kttdt2j63E6s/fft/d/NWjXkMra7KtO2qkE6cErHpvsyMmzPu0dY4Bg/"
"dYP\n"
"otTpyoaMUI2XUya8tzG/pi0NMtICo/"
"bsut21gdcWclkj5OncxaDrw6kM+9QxQzaWRAGii4pDqzC\n"
"MT02aX7WzPU9b7PrG3bvO6P6yStfZm+pHnPySS4590+3jf/"
"V8yb+CsUbp8uyz0kDskbu2dmz9J8\n"
"lSt9Ld+gn1O8cKikmxXydbH+3bhsmfwWj/lONYlcwkhL6L4bfpOxn/tD0/wBN/N944Wh9VJm/"
"b/\n"
"O+347df+/rl0k+O38GLJ83X/CfTOt7v2dV6P8AMbx6njHb/"
"pKuN3pN2+IXnaSjybr8e31fUqd+0\n"
"Sj487DHMryZJMXjq+sfpPX84SXk6SSX/"
"9kAOEJJTQQhAAAAAABVAAAAAQEAAAAPAEEAZABvAGIA\n"
"ZQAgAFAAaABvAHQAbwBzAGgAbwBwAAAAEwBBAGQAbwBiAGUAIABQAGgAbwB0AG8AcwBoAG8AcA"
"A\n"
"gADcALgAwAAAAAQA4QklNBAYAAAAAAAcABQAAAAEBAP/"
"hFWdodHRwOi8vbnMuYWRvYmUuY29tL3\n"
"hhcC8xLjAvADw/eHBhY2tldCBiZWdpbj0n77u/"
"JyBpZD0nVzVNME1wQ2VoaUh6cmVTek5UY3prY\n"
"zlkJz8+Cjw/YWRvYmUteGFwLWZpbHRlcnMgZXNjPSJDUiI/"
"Pgo8eDp4YXBtZXRhIHhtbG5zOng9\n"
"J2Fkb2JlOm5zOm1ldGEvJyB4OnhhcHRrPSdYTVAgdG9vbGtpdCAyLjguMi0zMywgZnJhbWV3b3"
"J\n"
"rIDEuNSc+"
"CjxyZGY6UkRGIHhtbG5zOnJkZj0naHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi\n"
"1yZGYtc3ludGF4LW5zIycgeG1sbnM6aVg9J2h0dHA6Ly9ucy5hZG9iZS5jb20vaVgvMS4wLyc+"
"C\n"
"gogPHJkZjpEZXNjcmlwdGlvbiBhYm91dD0ndXVpZDoyMmQwMmIwYS1iMjQ5LTExZGItOGFmOC0"
"5\n"
"MWQ1NDAzZjkyZjknCiAgeG1sbnM6cGRmPSdodHRwOi8vbnMuYWRvYmUuY29tL3BkZi8xLjMvJz"
"4\n"
"KICA8IS0tIHBkZjpTdWJqZWN0IGlzIGFsaWFzZWQgLS0+"
"CiA8L3JkZjpEZXNjcmlwdGlvbj4KCi\n"
"A8cmRmOkRlc2NyaXB0aW9uIGFib3V0PSd1dWlkOjIyZDAyYjBhLWIyNDktMTFkYi04YWY4LTkx"
"Z\n"
"DU0MDNmOTJmOScKICB4bWxuczpwaG90b3Nob3A9J2h0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9"
"z\n"
"aG9wLzEuMC8nPgogIDwhLS0gcGhvdG9zaG9wOkNhcHRpb24gaXMgYWxpYXNlZCAtLT4KIDwvcm"
"R\n"
"mOkRlc2NyaXB0aW9uPgoKIDxyZGY6RGVzY3JpcHRpb24gYWJvdXQ9J3V1aWQ6MjJkMDJiMGEtY"
"j\n"
"I0OS0xMWRiLThhZjgtOTFkNTQwM2Y5MmY5JwogIHhtbG5zOnhhcD0naHR0cDovL25zLmFkb2Jl"
"L\n"
"mNvbS94YXAvMS4wLyc+"
"CiAgPCEtLSB4YXA6RGVzY3JpcHRpb24gaXMgYWxpYXNlZCAtLT4KIDwv\n"
"cmRmOkRlc2NyaXB0aW9uPgoKIDxyZGY6RGVzY3JpcHRpb24gYWJvdXQ9J3V1aWQ6MjJkMDJiMG"
"E\n"
"tYjI0OS0xMWRiLThhZjgtOTFkNTQwM2Y5MmY5JwogIHhtbG5zOnhhcE1NPSdodHRwOi8vbnMuY"
"W\n"
"RvYmUuY29tL3hhcC8xLjAvbW0vJz4KICA8eGFwTU06RG9jdW1lbnRJRD5hZG9iZTpkb2NpZDpw"
"a\n"
"G90b3Nob3A6MjJkMDJiMDYtYjI0OS0xMWRiLThhZjgtOTFkNTQwM2Y5MmY5PC94YXBNTTpEb2N"
"1\n"
"bWVudElEPgogPC9yZGY6RGVzY3JpcHRpb24+"
"CgogPHJkZjpEZXNjcmlwdGlvbiBhYm91dD0ndXV\n"
"pZDoyMmQwMmIwYS1iMjQ5LTExZGItOGFmOC05MWQ1NDAzZjkyZjknCiAgeG1sbnM6ZGM9J2h0d"
"H\n"
"A6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvJz4KICA8ZGM6ZGVzY3JpcHRpb24+"
"CiAgIDxyZ\n"
"GY6QWx0PgogICAgPHJkZjpsaSB4bWw6bGFuZz0neC1kZWZhdWx0Jz4gICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgPC9yZGY6bGk+"
"CiAgIDwvcmRmOkFsdD4KICA8L2RjOmRlc2NyaXB0aW9\n"
"uPgogPC9yZGY6RGVzY3JpcHRpb24+Cgo8L3JkZjpSREY+"
"CjwveDp4YXBtZXRhPgogICAgICAgIC\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"A\n"
"ogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAK"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg"
"I\n"
"CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICA"
"g\n"
"ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC"
"A\n"
"gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgI"
"C\n"
"AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0ndyc/"
"P\n"
"v/uAA5BZG9iZQBkQAAAAAH/"
"2wCEAAQDAwMDAwQDAwQGBAMEBgcFBAQFBwgGBgcGBggKCAkJCQkI\n"
"CgoMDAwMDAoMDAwMDAwMDAwMDAwMDAwMDAwMDAwBBAUFCAcIDwoKDxQODg4UFA4ODg4UEQwMDA"
"w\n"
"MEREMDAwMDAwRDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/"
"AABEIAGQAZAMBEQACEQEDEQ\n"
"H/3QAEAA3/"
"xAGiAAAABwEBAQEBAAAAAAAAAAAEBQMCBgEABwgJCgsBAAICAwEBAQEBAAAAAAAAA\n"
"AEAAgMEBQYHCAkKCxAAAgEDAwIEAgYHAwQCBgJzAQIDEQQABSESMUFRBhNhInGBFDKRoQcVsUI"
"j\n"
"wVLR4TMWYvAkcoLxJUM0U5KismNzwjVEJ5OjszYXVGR0w9LiCCaDCQoYGYSURUaktFbTVSga8u"
"P\n"
"zxNTk9GV1hZWltcXV5fVmdoaWprbG1ub2N0dXZ3eHl6e3x9fn9zhIWGh4iJiouMjY6PgpOUlZa"
"X\n"
"mJmam5ydnp+"
"So6SlpqeoqaqrrK2ur6EQACAgECAwUFBAUGBAgDA20BAAIRAwQhEjFBBVETYSIGc\n"
"YGRMqGx8BTB0eEjQhVSYnLxMyQ0Q4IWklMlomOywgdz0jXiRIMXVJMICQoYGSY2RRonZHRVN/"
"Kj\n"
"s8MoKdPj84SUpLTE1OT0ZXWFlaW1xdXl9UZWZnaGlqa2xtbm9kdXZ3eHl6e3x9fn9zhIWGh4iJ"
"i\n"
"ouMjY6Pg5SVlpeYmZqbnJ2en5KjpKWmp6ipqqusra6vr/2gAMAwEAAhEDEQA/"
"APBnplwPAdR+GB\n"
"KY6dYtNG1w39yh4+xb+zIksgEfFaRSSoIx8f7RPRRkSWQimM+lRmwWVXFWYigHxUUVoMiJM+"
"Fj0\n"
"tg0RBegLE0Wu+3c+GTBazFCGI7HtSp9slbFYYzyoBsegw2hY1Afl3wqqRqahk+"
"0tDgKpgu4DAUU\n"
"+HY+GRS2ePiMKtUB3G+KGuONq//"
"Q8OzpFbW5WnxMop4k9crG5ZnZNJkEOn21utVRYw7HxZtz+OR\n"
"vdsrZ2lRtci4aVxFEQA0neg/"
"ZXxJpTITNNuOFss0vSotYNvZ2qGRkPKSTqiU8Sdqk5SZU5Ix8XJ\n"
"NNZ8k6bp8TtM73OputUtYq0Unux/"
"hkRkJOzZLCAN2KR+VpbtSkCBaDnIzdlWu59u+XeJTjeASk8\n"
"+juZOESEAVqx8BvU/"
"PJibScTrTy09560hkWOGFd2YgFnPQKD19zhOSkxw2l8Vm6XAiYb8gg+k5O\n"
"9mnhoon9H3cs5s7WF5pp29OGGMFndyaAKBuTiEEPQLD8h/"
"NDmNdYlttNkYjlbFjcXCr3LLH8II8\n"
"C2WUGviZvon/OPWkm3RNSv72SYllMkKxQRV67CQMSKYQAxMkR/"
"wBC56d61P0heel4cYuVOXWvTp\n"
"h4Qjjf/9Hw5qBYyISaqjBV+QpvkAzKcki4HomnIxck/"
"wBhtlR2bhunvlDywddMUl4zW+kQ9FQ8X\n"
"nfuSewrtmPkycPvc/"
"DhMhvyegXOrWWhmLQPKlsj6xIAiLCoZkY96nv7npmJvI2XOjQFMl0fyRqM\n"
"NoxvZvrGt33wlATwiMnVnY1LEdSfuyXF3KIDmUu88w2XlnTl8raAlb2ZFfVL0jdYRtQnxc7BfD"
"C\n"
"OaJR7nm3me5tdOtjbMvp3ZRXkV6chVQRX79hmVjgZG+"
"jgZ5jHGhzecXF5LPL6jEjstSSaDM51Ka\n"
"6MZ9S1C0sEBe8uZo4YCBXdjxGw60wEWyEqfUHkT8vLXRJFuLdTcaqfhlvWUErtukZ3ABPUjIXT"
"E\n"
"m3rGmeV2Tk5UKz/AG/E/wAcgZKya20C3b02kjYtH8AqCygbkUH0nLYlgUb+gbWtPbpXt/"
"n2ybB/\n"
"/9Lw4oaVxGd+PxH3qBkGaY3KyiSP01IkiUclH8sg+LKydm6INvZvKsFu+"
"kWtvD8LRoFNRup6moO\n"
"aqd277HsGW+XPLmn6XM17FF6l7vW4fd2Zuu+"
"RFls2tmUNrLJb7TSBertGQGqetDkxE0na0pvtHs\n"
"QkszWyiGAG5laYlnkeMVHJj8sA5rPk+SvMepTalqlxd3B5zTOXdj/"
"MxqafLpm5xioh5nPK5kpRG\n"
"pkcKAST0A6k5NpfUP5K/ki1ssHmHzF+71KRQ8Nud/Qibb/kYw6/"
"yjbrXISlSH07YaHbWyxx2kXE\n"
"KACB2zHJtLI7XSelBRvH2xCpvaaTDHXkOTVBPcUG2479RlsdmJVPRtvV+ylenQ0y62FP/"
"9PxRpo\n"
"WG5FxKKxKFDA+GVS5NsebLdFsRePc3siVW4f4QR0QVAGYeSXR2unhtZ6s60K6jt+MMSFwtF2+"
"xX\n"
"wr7eGUGLlRPQMsE2vxQm7itxKg3VCfT2+"
"nb8cDYaCDtfOXmCCcROrQrUhkkCHYn6emRMqZxjbLd\n"
"F1+W/"
"4xajHzjNCtQKMffETWUdngX5p+QZ9A8xS6hbo0ui37NNDPT7DOalHpsCD08Rmyw5ARTpdV\n"
"gIPEF35MeRn80ed4S5EdrpKm9kZ15K0iH92hB7Me/tmS60vt/"
"QrCYyekiBdgSTXcjqV9q9MokFD\n"
"N7S3aFVVR8RoK9zldqndvAY6nffr/AGYQqLhjdpCoIAZW22HavU/LJBUP9WblX0xTw7fOmWsX/"
"9\n"
"Tw7FdvMqWkQ3Z1qfED+mQIbI77PX/"
"LFis9vBajZm2Y+x65rMh3t30Bsze400aVaIbSLk6r8CMRT\n"
"l/"
"NmOcllnGDD9Y8uecNfEEiXrMgDGWAyGOOu5WlB+"
"vMrHODTlxZCdjsyFdB006VpVtLasurQxBL\n"
"64WiLI4/"
"aFT1ANOXemV5piR2b9NiljB4yyHy9CLOVI5GJhB+CvXY9R8xmINzs5HNZ+Z96BZpbxA\n"
"fVJo39UFefwopYgL4nMiMd2qZoIn/AJx00u3t/"
"Lt7qpp9Yv5GLf5MUTERqfbvmzBeezjd9H+VlL\n"
"wSQzBqsvOGQD7L12rXsemPNxmXQSxxIPU2nFV4HYqR1xEUWj4ZAxBryr2G+"
"J2VGDZlLrxUH6KZA\n"
"Fkqb15VFelfwy+2FP8A/"
"9Xxlf6AdA182Yk9eFeLxSjoVfcfSMo4uIOfkweFOnpvlWYrLEwNFAA+\n"
"nMOYdrhFvQLeSO7coBXiK8iKiv07Zj8Ac4QtNrW1njUcKcT+yAR/"
"xGmR4WcsStLpTuPU9IFaEsV\n"
"BP3k4m2AgBzSwyQNcIwNTE1aI3wnam9O2Ug7s5Ckk/"
"NDndeVXa2H78MqqV6jmeBp9+ZWKXqDjZ4\n"
"+gvVvy30qCy0qzsLRBCnBI2VdgUTqPvOZ7y+Q7pz+bn5q6d+VflZxZlJ/"
"NN4ypptk5qtB9qRwDX\n"
"gn/AAx2y2ItpfKFv+eH5qNeTajJ5ovVaVywSqvEtTUKqupAA6D2y0BNPtv/AJx//"
"M5PzL8mJeXT\n"
"L+ndPf6rqarSpkAqsnEAAeoN6DpkJRYci9lROSgSUUH9o9K5Tw0ztfSHnXkOtK9q+PHwydq//"
"9b\n"
"yxrVoZNBtNSA5zRMPXmH8j0CLXuBmHE+"
"qneamHpEuqYeV7pzFVTRgQK5XMNmnlb1vyyY5QA1OwJ\n"
"+eUF2seTOLu5s7azVIVAkpVn/"
"hhnIALG73Yz5jvb1dICqzpDNIqyFD8SxH7R28cxibZCiWOsdJs\n"
"PTM6XNstPhnkjIhcHuJBVfvOCiUSn0TfWrTTLjyw8guA/PifTO3xcxxA8a5ZAbimvJP0m3p/"
"kFF\n"
"WxhmpWQJ9NW3zZPHz5vlb/nIDVbrWfzO1RJhxGnpDaRL/"
"khA1T7ktmSOTAJhZaAUtLawsbayl8v\n"
"xWi3Gpay0cF3HPcFRJJHJMXVrcJ8UaAFG5LWjF8tAYW9H/wCcOo9bTzxrt/"
"owkTyksZW5gkIKvI\n"
"7k26nvyReRJHyyBWT7dWQyOWlbnK2526e1O1MqIUFE84uPLkOdK9RXI0E2/wD/1/DA1bURZLY/"
"W\n"
"ZDZqwb0eXw7dMgIi7bjllVXsz7yNcfWC0Vd3Ip92Y2UOz0cnsPlwyx8xQ/"
"u24sMxCadoJp9LOXk\n"
"VX/"
"uwRUE0BI8cokbLMyoKouHu2MaKGXw7fLDwgoGSkbHpaNZyLLHRSKcFFQQRvUdMlwUFOQyLzr\n"
"ztpCaba6fPau4ijv4OURY8AjVFKV7ZZiO+7Vnh6XvXkSWNbW2WTb92KDxIFMzwHlZc3zX+"
"fuizW\n"
"f5p3ty8XGDU4YLmCQiisyII3+4rvl8UB5ffEghRGvOm7AbnvWvjk1fen/"
"ONPldPKP5aWOpPCfr2\n"
"uE31y6q2wbaMEn+VAMDSdyzrzj+avlHyTp0l/r2rxWFuHWJuIeacu4qFCRgsajfBwsty89/"
"6Gr/\n"
"ACa9an+JL/hSnrfoubhXwpXpjwhaL//"
"Q8E1AqtcAZMs8l6i1nqMa1oSVP0VynKLDmaWdSfQXl69\n"
"jF1Jv8MhDb5rpB3AO7INRRLhhGp4R05FgaGvTMU8200xS70zVDMRp2pTIOvBmB3PgQP15kxIcn"
"D\n"
"LH/"
"EEz0rRvOJhldr9pQtCqyd6VrShGTqw5d4ARv9jHfOGl+ZJNMluLkyenaFbiRdqFYW5nrWuwO\n"
"MKB5MdSMRxnhlu9N8p6lLFpti63FUjCtFJTrDKvse2bEDZ4XJ9RZB+YPli2/"
"Mjy5bxoUi1a0YS2\n"
"85UOwIXiy9jRu+TBppfOF1+V3m22vrdpNPM8cs/oo0VJlUqQPjValR3+IZNNvtLS9Yu9Mi0/"
"TJr\n"
"kyp6QhWVVCIWRATsKBemwwFrDzT87fybs/"
"wA1bW21PRb+DTvNlgGSRp6iC8i3KJJx+y6n7D0Pwm\n"
"hxBZXT55/6Fi/Nf0PW+qWXq+t6X1X67F6vD/ftK04V/wBl344U8b//"
"0fBapxheVh9ocV+nviqY2\n"
"/qQJDew/"
"bioWHiuQ8m0bbvaPKGtQ6jaxSo9JloCK75gZI0Xb4sgkHo8MouoAvP94BsRmGY7uWJU\n"
"gzbypOQpNOvIdK4Nw2WCE2tXulTkjEEbdafgclxMhFBas93dwyQzsWDghlJFONKHJCZtjOFBJf"
"y\n"
"j1y9vPL9zpbIs0WkXL2sUjA8hDXlGCRXtt07ZuYvL5KJeo6bfajbkzWkcToR8dqshZ6in2fhNK"
"/\n"
"PDTUlXmHVvMdr5o0v9H2kdrqGpfu7m0nkY87Uf7tkKAU4/"
"s03ynLkEBbfihx7dGT6va67LbRMNR\n"
"aKOBuUTKgIBXoK1BOYR1M3aQ0mOt9yxUeZNdtJhFapLqMluSXkg5oxJrUMW5KevQ9MmNXXNqOi"
"H\n"
"Rr/Hmv8A1r9I/oj95w+r+j9Yf1+NP5+nXtTD+dF8tkfkOlv/0vC3ph7f0/"
"alcVTbS4A8QibuKb5\n"
"RI05EBYRFpdX3ly79a2qYCavH/"
"EY7TCYyMD5PSdD8+wXUSn1ArDqOhBzFlipz4ZwWbaV5htbsgF\n"
"qg9crMXKErGyYwajFGzxyHlGSePbbwyqg5UZlCaxrFpaWU95LIqrEjMAT4Dp9OShGy1ZslBhv/"
"A\n"
"Dj9rd/a+aL+xUK+m38L3d0HrxRo2HFtu5D8c27y8t30raarbWkU+u6g4gsNORn+EcUaSh2Pc0/"
"4\n"
"lgtAjezzbT9SutY1i782al8Nxdyotqh6xWybIg+jc5q8s+I27bFDgFPQp9RE+nrag70+"
"L6crrZu\n"
"4jajokdv6LW/Dii1Wo61PXKQN3KPK0L+h4/rnD/K5V78a5LhXxd3/0/"
"DMXXtwxVNtL9Xkaf3f7N\n"
"etfbKMjdjtkZ9D6ufrlK0+HpX8coF9HJ26sXvfqXrf7i/U+uften/d/"
"wCyrmQL6uOav0pvpP8Ai\n"
"b1F+rV59+vH6a5XLhcjH4nRmY/xpxHP0/UptWvT6Mx/RbmjxWK+aP8AFf1M/"
"pCv1Kvxen9inavf\n"
"MrFwXtzcLUeLXq5Mv/I3nz1b0v8AjofuKVry9KrUpTanOlf9jmQ68va/zH9b/COn/o7/"
"AI431mP\n"
"65SvLh+zWvbl9rMfNfC34K4kmj9T6lD6FKclp/DNYXZx5srsPrHor6nXvkgxTPS/"
"U+rv6dPU5mt\n"
"fngFN5ulv+l/pL/Lp/scerHo//2Q==\n";
static std::string gCommandLine;
TEST(Base64, LargeSample) {
RTC_LOG(LS_VERBOSE) << "Testing specific base64 file";
char unescaped[64 * 1024];
// unescape that massive blob above
size_t size = Base64Unescape(SpecificTest, sizeof(SpecificTest), unescaped,
sizeof(unescaped));
EXPECT_EQ(size, sizeof(testbase64));
EXPECT_EQ(0, memcmp(testbase64, unescaped, sizeof(testbase64)));
}
bool DecodeTest(const char* encoded,
size_t expect_unparsed,
const char* decoded,
Base64::DecodeFlags flags) {
std::string result;
size_t consumed = 0, encoded_len = strlen(encoded);
bool success =
Base64::DecodeFromArray(encoded, encoded_len, flags, &result, &consumed);
size_t unparsed = encoded_len - consumed;
EXPECT_EQ(expect_unparsed, unparsed)
<< "\"" << encoded << "\" -> \"" << decoded << "\"";
EXPECT_STREQ(decoded, result.c_str());
return success;
}
#define Flags(x, y, z) \
Base64::DO_PARSE_##x | Base64::DO_PAD_##y | Base64::DO_TERM_##z
TEST(Base64, DecodeParseOptions) {
// Trailing whitespace
EXPECT_TRUE(DecodeTest("YWJjZA== ", 1, "abcd", Flags(STRICT, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA== ", 0, "abcd", Flags(WHITE, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA== ", 0, "abcd", Flags(ANY, YES, CHAR)));
// Embedded whitespace
EXPECT_FALSE(DecodeTest("YWJjZA= =", 3, "abcd", Flags(STRICT, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA= =", 0, "abcd", Flags(WHITE, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA= =", 0, "abcd", Flags(ANY, YES, CHAR)));
// Embedded non-base64 characters
EXPECT_FALSE(DecodeTest("YWJjZA=*=", 3, "abcd", Flags(STRICT, YES, CHAR)));
EXPECT_FALSE(DecodeTest("YWJjZA=*=", 3, "abcd", Flags(WHITE, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA=*=", 0, "abcd", Flags(ANY, YES, CHAR)));
// Unexpected padding characters
EXPECT_FALSE(DecodeTest("YW=JjZA==", 7, "a", Flags(STRICT, YES, CHAR)));
EXPECT_FALSE(DecodeTest("YW=JjZA==", 7, "a", Flags(WHITE, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YW=JjZA==", 0, "abcd", Flags(ANY, YES, CHAR)));
}
TEST(Base64, DecodePadOptions) {
// Padding
EXPECT_TRUE(DecodeTest("YWJjZA==", 0, "abcd", Flags(STRICT, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA==", 0, "abcd", Flags(STRICT, ANY, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA==", 2, "abcd", Flags(STRICT, NO, CHAR)));
// Incomplete padding
EXPECT_FALSE(DecodeTest("YWJjZA=", 1, "abcd", Flags(STRICT, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA=", 1, "abcd", Flags(STRICT, ANY, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA=", 1, "abcd", Flags(STRICT, NO, CHAR)));
// No padding
EXPECT_FALSE(DecodeTest("YWJjZA", 0, "abcd", Flags(STRICT, YES, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA", 0, "abcd", Flags(STRICT, ANY, CHAR)));
EXPECT_TRUE(DecodeTest("YWJjZA", 0, "abcd", Flags(STRICT, NO, CHAR)));
}
TEST(Base64, DecodeTerminateOptions) {
// Complete quantum
EXPECT_TRUE(DecodeTest("YWJj", 0, "abc", Flags(STRICT, NO, BUFFER)));
EXPECT_TRUE(DecodeTest("YWJj", 0, "abc", Flags(STRICT, NO, CHAR)));
EXPECT_TRUE(DecodeTest("YWJj", 0, "abc", Flags(STRICT, NO, ANY)));
// Complete quantum with trailing data
EXPECT_FALSE(DecodeTest("YWJj*", 1, "abc", Flags(STRICT, NO, BUFFER)));
EXPECT_TRUE(DecodeTest("YWJj*", 1, "abc", Flags(STRICT, NO, CHAR)));
EXPECT_TRUE(DecodeTest("YWJj*", 1, "abc", Flags(STRICT, NO, ANY)));
// Incomplete quantum
EXPECT_FALSE(DecodeTest("YWJ", 0, "ab", Flags(STRICT, NO, BUFFER)));
EXPECT_FALSE(DecodeTest("YWJ", 0, "ab", Flags(STRICT, NO, CHAR)));
EXPECT_TRUE(DecodeTest("YWJ", 0, "ab", Flags(STRICT, NO, ANY)));
}
TEST(Base64, GetNextBase64Char) {
// The table looks like this:
// "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
char next_char;
EXPECT_TRUE(Base64::GetNextBase64Char('A', &next_char));
EXPECT_EQ('B', next_char);
EXPECT_TRUE(Base64::GetNextBase64Char('Z', &next_char));
EXPECT_EQ('a', next_char);
EXPECT_TRUE(Base64::GetNextBase64Char('/', &next_char));
EXPECT_EQ('A', next_char);
EXPECT_FALSE(Base64::GetNextBase64Char('&', &next_char));
EXPECT_FALSE(Base64::GetNextBase64Char('Z', nullptr));
}
} // namespace
} // namespace rtc
| [
"tuanit96@gmail.com"
] | tuanit96@gmail.com |
2e9b67b6f67c9135f0e292b18fb4e2ca3c1d6e2d | 74a12315360ce16ebc112d248638e14f4d569505 | /problems_051-100/euler_66.cpp | fdbba9892e7604849918337e10c83e8ff1022be7 | [
"Apache-2.0"
] | permissive | sedihub/project_euler | 2c0d18bc21777f86d2134c466eec67960e20fc3c | 2d7d40ee67a1e0402aa68e78a5f7d7cf18221db5 | refs/heads/master | 2023-02-19T15:10:52.430978 | 2021-01-23T22:53:58 | 2021-01-23T22:53:58 | 297,150,524 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,228 | cpp | /*
PROBLEM:
Consider quadratic Diophantine equations of the form:
$$
x^2 - Dy^2 = 1
$$
For example, when D=13, the minimal solution in x is 649^2 – 13×180^2 = 1.
It can be assumed that there are no solutions in positive integers when D is square.
By finding minimal solutions in x for D = {2, 3, 5, 6, 7}, we obtain the following:
3^2 – 2×2^2 = 1
2^2 – 3×1^2 = 1
*9*^2 – 5×4^2 = 1 <---
5^2 – 6×2^2 = 1
8^2 – 7×3^2 = 1
Hence, by considering minimal solutions in x for D <= 7, the largest x is obtained when D = 5.
Find the value of D <= 1000 in minimal solutions of x for which the largest value of x
is obtained.
SOLUTION:
We can rewrite the equation as:
(x + 1)(x - 1) = Dy^2
Seeking a brute-force solution from here on, but that did not work! That approach is highly
inefficient. Retaining all the visited squares in a `std::map` did not help either...
See [Pell's equation](https://mathworld.wolfram.com/PellEquation.html) descriptions on the
MathWorld website.
ANSWER: 661
16421658242965910275055840472270471049^2 - 661 * 638728478116949861246791167518480580^2
**/
#include <iostream>
#include <map>
#include <vector>
#include <array>
#include <algorithm>
#include <iterator>
typedef unsigned int uint;
class LargeUInt
{
public:
LargeUInt()
{
vec.clear();
}
LargeUInt(uint n)
{
vec.clear();
if (n == 0) vec.push_back('0');
while (n > 0) {
vec.push_back(n % 10 + '0');
n /= 10;
}
std::reverse(vec.begin(), vec.end());
}
friend std::ostream &operator<<(std::ostream &output, const LargeUInt &lUInt);
friend bool operator==(const LargeUInt &lhs, const LargeUInt &rhs);
friend bool operator<(const LargeUInt &lhs, const LargeUInt &rhs);
friend bool operator>(const LargeUInt &lhs, const LargeUInt &rhs);
LargeUInt operator+(const LargeUInt &n)
{
LargeUInt temp = LargeUInt();
temp.vec.clear();
unsigned short int carry_over = 0;
std::vector<char>::const_reverse_iterator lhs = vec.rbegin();
std::vector<char>::const_reverse_iterator rhs = n.vec.rbegin();
while (lhs!=vec.rend() && rhs!=(n.vec).rend()) {
carry_over += char_to_uint(*lhs) + char_to_uint(*rhs);
(temp.vec).push_back(uint_to_char(carry_over % 10));
carry_over /= 10;
lhs++;
rhs++;
}
while (lhs!=vec.rend()) {
carry_over += char_to_uint(*lhs);
(temp.vec).push_back(uint_to_char(carry_over % 10));
carry_over /= 10;
lhs++;
}
while (rhs!=(n.vec).rend()) {
carry_over += char_to_uint(*rhs);
(temp.vec).push_back(uint_to_char(carry_over % 10));
carry_over /= 10;
rhs++;
}
while (carry_over > 0) {
(temp.vec).push_back(uint_to_char(carry_over % 10));
carry_over /= 10;
}
temp.reverse_digits();
return temp;
}
LargeUInt operator+(const uint &n)
{
LargeUInt temp = LargeUInt(n);
return (temp + *this);
}
LargeUInt operator*(const LargeUInt &n)
{
// A vector used to carry out the multiplication:
unsigned int length = this->vec.size() + n.vec.size();
std::vector<unsigned int> temp_vec;
for (unsigned int i = 0; i <= length; i++) {
temp_vec.push_back(0);
}
// First, the multiply digits:
unsigned int idx;
unsigned short int carry_over = 0;
std::vector<char>::const_reverse_iterator lhs, rhs;
for (lhs = this->vec.rbegin(); lhs != this->vec.rend(); lhs++) {
for (rhs = n.vec.rbegin(); rhs != n.vec.rend(); rhs++) {
idx = std::distance<std::vector<char>::const_reverse_iterator>(this->vec.rbegin(), lhs) +\
std::distance<std::vector<char>::const_reverse_iterator>(n.vec.rbegin(), rhs);
carry_over += char_to_uint(*rhs) * char_to_uint(*lhs);
temp_vec[idx] += carry_over % 10;
carry_over /= 10;
}
while (carry_over > 0) {
idx++;
temp_vec[idx] += carry_over % 10;
carry_over /= 10;
}
}
// Next, make sure that we have digits -- note that the digits are aranged in reverse:
carry_over = 0;
std::vector<unsigned int>::iterator it;
for (it = temp_vec.begin(); it != temp_vec.end(); it++) {
carry_over += *it;
*it = carry_over % 10;
carry_over /= 10;
}
// Remove unneeded zeros at the end:
while (temp_vec.back() == 0) {
temp_vec.pop_back();
}
// Reverse the vector of digits:
std::reverse(temp_vec.begin(), temp_vec.end());
// Assign to a new LargeUInt instance:
LargeUInt result = LargeUInt();
for (it = temp_vec.begin(); it != temp_vec.end(); it++) {
result.vec.push_back(uint_to_char(*it));
}
return result;
}
LargeUInt operator*(const uint &n)
{
LargeUInt temp = LargeUInt(n);
return (*this) * temp;
}
LargeUInt operator^(const uint &n)
{
if (n == 0) {
return LargeUInt(1);
}
else if (n == 1) {
return *this;
}
else {
uint count = 0;
LargeUInt p(1);
while (count != n) {
p = p * *this;
count += 1;
}
return p;
}
}
protected:
void reverse_digits()
{
std::reverse(vec.begin(),vec.end());
std::vector<char>::iterator it = vec.begin();
while (*it == '0') {
vec.erase(it);
it = vec.begin();
}
}
inline unsigned short int char_to_uint(char c)
{
return (unsigned short int)(c - '0');
}
inline char uint_to_char(unsigned short int n)
{
return (char)n + '0';
}
private:
std::vector<char> vec;
};
std::ostream &operator<<(std::ostream &output, const LargeUInt &lUInt)
{
std::vector<char>::const_iterator it;
for (it = (lUInt.vec).begin(); it != (lUInt.vec).end(); it++) {
output << *it;
}
return output;
}
bool operator==(const LargeUInt &lhs, const LargeUInt &rhs)
{
return (lhs.vec == rhs.vec);
}
bool operator<(const LargeUInt &lhs, const LargeUInt &rhs)
{
if (lhs.vec.size() == rhs.vec.size()) {
for (uint n = lhs.vec.size(); n > 0; n--) {
if (lhs.vec[n-1] == rhs.vec[n-1]) continue;
else {
return (lhs.vec[n-1] < rhs.vec[n-1]);
}
}
}
else {
return (lhs.vec.size() < rhs.vec.size());
}
return false;
}
bool operator>(const LargeUInt &lhs, const LargeUInt &rhs)
{
if (lhs.vec.size() == rhs.vec.size()) {
for (uint n = lhs.vec.size(); n > 0; n--) {
if (lhs.vec[n-1] == rhs.vec[n-1]) continue;
else {
return (lhs.vec[n-1] > rhs.vec[n-1]);
}
}
}
else {
return (lhs.vec.size() > rhs.vec.size());
}
return false;
}
uint uint_sqrt(uint n)
{
if (n == 0) {
return 0;
}
else if (n < 4) {
return 1;
}
uint cand_0, cand_1;
cand_0 = uint_sqrt(n >> 2) << 1;
cand_1 = cand_0 + 1;
if (cand_1 * cand_1 > n) return cand_0;
else return cand_1;
}
void continued_fraction_sqrt(uint n, uint &period, std::vector<uint> &a_vec)
{
uint isqrt_n = uint_sqrt(n);
// Define vectors for coefficients and the remainder pairs:
std::vector< std::array<uint, 2> > num_den_vec;
// Initialize:
a_vec.push_back(isqrt_n);
num_den_vec.push_back(std::array<uint, 2>{1, isqrt_n});
if (isqrt_n * isqrt_n == n) { // It's a perfect square.
period = 0;
return;
}
// Stop when period is found:
std::vector< std::array<uint, 2> >::iterator it;
uint a_n;
std::array<uint, 2> r_n;
//
r_n[0] = (n - num_den_vec.back()[1] * num_den_vec.back()[1]) / num_den_vec.back()[0];
a_n = (isqrt_n + num_den_vec.back()[1]) / r_n[0];
r_n[1] = isqrt_n - (isqrt_n + num_den_vec.back()[1]) % r_n[0];
it = std::find(num_den_vec.begin(), num_den_vec.end(), r_n);
// std::cout << a_n << ", " << r_n[0] << "/( sqrt{" << n << "} - " << r_n[1] << ")" << std::endl;
while (it == num_den_vec.end()) {
a_vec.push_back(a_n);
num_den_vec.push_back(std::array<uint, 2>(r_n));
r_n[0] = (n - num_den_vec.back()[1] * num_den_vec.back()[1]) / num_den_vec.back()[0];
a_n = (isqrt_n + num_den_vec.back()[1]) / r_n[0];
r_n[1] = isqrt_n - (isqrt_n + num_den_vec.back()[1]) % r_n[0];
it = std::find(num_den_vec.begin(), num_den_vec.end(), r_n);
// std::cout << a_n << ", " << r_n[0] << "/( sqrt{" << n << "} - " << r_n[1] << ")" << std::endl;
}
a_vec.push_back(a_n);
period = (uint)std::distance(it, num_den_vec.end());
return;
}
bool is_solution(LargeUInt x, LargeUInt y, uint d) {
LargeUInt x2 = x^2;
LargeUInt dy2p1 = LargeUInt(d) * (y^2) + LargeUInt(1);
if (x2 == dy2p1) {
// std::cout << x << "^2 = " << x2 << ",\t" << d << " * "
// << y << "^2 + 1 = " << dy2p1 << std::endl;
return true;
}
else {
return false;
}
}
int main()
{
const uint UPPER_LIMIT = 1000;
const bool VERBOSE = !false;
std::vector<uint> coefficients;
std::vector<uint>::iterator it;
uint period;
uint max_d = 1;
uint n, n_folded;
LargeUInt x = LargeUInt(1);
LargeUInt y;
LargeUInt p_n, p_nm1, p_nm2; // p_n, p_{n-1}, p_{n-2}
LargeUInt q_n, q_nm1, q_nm2; // q_n, q_{n-1}, q_{n-2}
for (uint d = 1; d <= UPPER_LIMIT; d++) {
coefficients.clear();
continued_fraction_sqrt(d, period, coefficients);
if (period == 0) continue;
if (VERBOSE) {
std::cout << std::endl << d << " = [";
for (it = coefficients.begin(); it != coefficients.end(); it++) {
std::cout << " " << *it;
}
std::cout << "]" << " (Period: " << period << ")" << std::endl;
}
//
p_nm2 = LargeUInt(coefficients[0]);
q_nm2 = LargeUInt(1);
if (VERBOSE) std::cout << "\t[" << d << "]_" << 0 << " = " << p_nm2 << " / " << q_nm2 << std::endl;
if (is_solution(p_nm2, q_nm2, d)) {
if (p_nm2 > x) {
x = p_nm2;
y = q_nm2;
max_d = d;
}
continue;
}
p_nm1 = LargeUInt(1 + coefficients[0] * coefficients[1]);
q_nm1 = LargeUInt(coefficients[1]);
if (VERBOSE) std::cout << "\t[" << d << "]_" << 1 << " = " << p_nm1 << " / " << q_nm1 << std::endl;
if (is_solution(p_nm1, q_nm1, d)) {
if (p_nm1 > x) {
x = p_nm1;
y = q_nm1;
max_d = d;
}
continue;
}
n = 2;
n_folded = 1 + (n - 1) % period;
p_n = LargeUInt(coefficients[n_folded]) * p_nm1 + p_nm2;
q_n = LargeUInt(coefficients[n_folded]) * q_nm1 + q_nm2;
if (VERBOSE) std::cout << "\t[" << d << "]_" << n << " = " << p_n << " / " << q_n << std::endl;
p_nm2 = p_nm1;
p_nm1 = p_n;
q_nm2 = q_nm1;
q_nm1 = q_n;
n++;
while (!is_solution(p_n, q_n, d)) {
n_folded = 1 + (n - 1) % period;
p_n = LargeUInt(coefficients[n_folded]) * p_nm1 + p_nm2;
q_n = LargeUInt(coefficients[n_folded]) * q_nm1 + q_nm2;
if (VERBOSE) std::cout << "\t[" << d << "]_" << n << " = " << p_n << " / " << q_n << std::endl;
p_nm2 = p_nm1;
p_nm1 = p_n;
q_nm2 = q_nm1;
q_nm1 = q_n;
n++;
}
if (p_n > x) {
x = p_n;
y = q_n;
max_d = d;
}
continue;
}
std::cout << std::endl << "----------------------------------" << std::endl;
std::cout << x << "^2 - " << max_d << " * " << y << "^2" << std::endl;
return 0;
}
| [
"luciferous@protonmail.com"
] | luciferous@protonmail.com |
1a68245c4775c07afc3760129f209c4fcc861bb2 | c4116c2e8c411a9ab01065144e0e105f99f95313 | /Podd/THaEpicsEbeam.cxx | 0c37153afcaf45274e45ea7e90891abfaf3e6aa3 | [
"BSD-3-Clause"
] | permissive | JeffersonLab/analyzer | aba8b4ce90b549b345daa81e731e44b0d704354b | a0613dcafa9efe42f759f5321cd0f8d2c633ba2f | refs/heads/master | 2023-06-17T00:26:31.368749 | 2022-11-06T22:46:23 | 2022-11-06T22:46:23 | 13,133,237 | 9 | 61 | BSD-3-Clause | 2021-10-30T14:54:45 | 2013-09-26T20:14:27 | C++ | UTF-8 | C++ | false | false | 4,298 | cxx | //*-- Author : Ole Hansen 07-May-2004
//////////////////////////////////////////////////////////////////////////
//
// THaEpicsEbeam
//
// A physics module that provides beam energy/momentum based on
// EPCIS information
//
//////////////////////////////////////////////////////////////////////////
#include "THaEpicsEbeam.h"
#include "VarDef.h"
#include "THaEvData.h"
#include "TMath.h"
//_____________________________________________________________________________
THaEpicsEbeam::THaEpicsEbeam( const char* name, const char* description,
const char* beam, const char* epics_var,
Double_t scale_factor ) :
THaPhysicsModule( name,description ), fEcorr(0.0), fEpicsIsMomentum(false),
fScaleFactor(scale_factor), fBeamName(beam), fEpicsVar(epics_var),
fBeamModule(nullptr)
{
// Constructor.
}
//_____________________________________________________________________________
THaEpicsEbeam::~THaEpicsEbeam()
{
// Destructor
RemoveVariables();
}
//_____________________________________________________________________________
void THaEpicsEbeam::Clear( Option_t* opt )
{
// Clear all event-by-event variables.
THaPhysicsModule::Clear(opt);
BeamIfoClear();
fEcorr = 0.0;
}
//_____________________________________________________________________________
THaAnalysisObject::EStatus THaEpicsEbeam::Init( const TDatime& run_time )
{
// Initialize the module.
fBeamModule = dynamic_cast<THaBeamModule*>
( FindModule( fBeamName.Data(), "THaBeamModule"));
if( !fBeamModule )
return fStatus;
//this is done by THaBeamInfo::operator= in Process
// fBeamIfo.SetBeam( fBeamModule->GetBeamInfo()->GetBeam() );
return THaPhysicsModule::Init(run_time);
}
//_____________________________________________________________________________
Int_t THaEpicsEbeam::DefineVariables( EMode mode )
{
// Initialize global variables
RVarDef vars[] = {
{ "ecorr", "Beam energy correction (output-input) (GeV)", "fEcorr" },
{ nullptr }
};
return DefineVarsFromList( vars, mode );
}
//_____________________________________________________________________________
Int_t THaEpicsEbeam::Process( const THaEvData& evdata )
{
// Obtain actual beam energy from EPICS (if available) and
// calculate new beam parameters
if( !IsOK() ) return -1;
THaBeamInfo* input = fBeamModule->GetBeamInfo();
if( !input->IsOK() ) return 2;
// Copy the input beam info
fBeamIfo = *input;
// Obtain current beam energy (or momentum) from EPICS
// If requested EPICS variable not loaded, do nothing
if( evdata.IsLoadedEpics(fEpicsVar) ) {
Double_t e = evdata.GetEpicsData(fEpicsVar);
// the scale factor must convert the EPICS value to GeV
e *= fScaleFactor;
Double_t m = fBeamIfo.GetM();
Double_t p;
if( fEpicsIsMomentum ) {
p = e;
e = TMath::Sqrt(p*p+m*m);
} else {
p = TMath::Sqrt( TMath::Max(e*e-m*m,0.0) );
}
fBeamIfo.SetP(p);
fEcorr = e - input->GetE();
}
fDataValid = true;
return 0;
}
//_____________________________________________________________________________
void THaEpicsEbeam::SetBeam( const char* name )
{
// Set the name of the module providing the beam input data
if( !IsInit())
fBeamName = name;
else
PrintInitError("SetBeam");
}
//_____________________________________________________________________________
void THaEpicsEbeam::SetEpicsVar( const char* name )
{
// Set the name of the EPICS variable to use for corrections
if( !IsInit())
fEpicsVar = name;
else
PrintInitError("SetEpicsVar");
}
//_____________________________________________________________________________
void THaEpicsEbeam::SetEpicsIsMomentum( Bool_t mode )
{
// If mode=true, interpret EPICS data as momentum rather than energy
if( !IsInit())
fEpicsIsMomentum = mode;
else
PrintInitError("SetEpicsIsMomentum");
}
//_____________________________________________________________________________
void THaEpicsEbeam::SetScaleFactor( Double_t factor )
{
// If mode=true, interpret EPICS data as momentum rather than energy
if( !IsInit())
fScaleFactor = factor;
else
PrintInitError("SetEpicsIsMomentum");
}
//_____________________________________________________________________________
ClassImp(THaEpicsEbeam)
| [
"ole@jlab.org"
] | ole@jlab.org |
b5d72d15efb4f3ec93c4e97b1749b959a8c9e768 | e82c9d4cff80444346dffd89015cea8de0c3402b | /Euler_Point.h | 3a077bb129006749d9af1db2101e1aa556bece7e | [] | no_license | Linpinliang/IB | 94e64790b7007c609458036d1a9f571e906ed889 | f4e507477efb0307268ac177324fd22476e0d430 | refs/heads/master | 2020-05-24T14:30:56.556259 | 2019-05-18T11:50:09 | 2019-05-18T11:50:09 | 187,306,402 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,466 | h | #ifndef EULER_POINT_H
#define EULER_POINT_H
#include "Parameter.h"
#include <iostream>
#include "Function.h"
#include <vector>
using namespace std;
/*
*/
using namespace std;
class Euler_Point
{
private:
//网格
int grid_x;
int grid_y;
//速度
double u;
double v;
double u0;
double v0;
//unfoced velocity
double u_noF;
double v_noF;
//网格类型
char style;
//温度
double T;
double T0;
//密度
double Rho;
double Rho0;
double P;
//体力项
double forcing_x;
double forcing_y;
//multi method parameter
int _NF;
vector<double > _NF_Fx;
vector<double > _NF_Fy;
vector<double > _NF_u;
vector<double > _NF_v;
//分布函数
double New_f[9];
double f[9];
//力项
double F[9];
public:
Euler_Point();
//初始化
Euler_Point(int x, int y);
Euler_Point(int x, int y , int _nf_number);
~Euler_Point();
//LBM
//计算微观量
void macroscopic();
//碰撞
void Collision();
//力项
//void Scond_Forcing_Step();
//void Collision_With_Body_Force();
//Set函数
//设置速度
void Set_Velocity(double vx, double vy);
void Set_Velocity0(double u ,double v);
//设置体积力项;
void Set_Body_force(double fx, double fy);
//设置点的位置
void Set_Position(int x, int y);
//设置温度
void Set_Temperature(double t);
//设置压力
void Set_Pressure(double p);
//设置密度
void Set_rho(double rho);
void Set_u_v_noF(double u, double v);
//mluti method begin
void Set_NF(int nf_number);
void Set_NF_F(int m, double Fx ,double Fy);
void Set_NF_u(int m,double u ,double v);
//mluti method end
void Set_f(double value, int N);
void Set_New_f(double value, int N);
void Set_F(double value, int N);
//Get函数
double Get_Body_force_fx();
double Get_Body_force_fy();
double Get_Velocity_x();
double Get_Velocity_y();
double Get_Velocity0_x();
double Get_Velocity0_y();
int Get_Position_x();
int Get_Position_y();
double Get_u_noF();
double Get_v_noF();
double Get_Pressure();
double Get_Temperature();
double Get_rho();
//mluti method begin
double Get_NF_Fx(int m);
double Get_NF_Fy(int m);
double Get_NF_u(int m);
double Get_NF_v(int m);
//mluti method end
double Get_f(int N);
double Get_New_f(int N);
double Get_F(int N);
void initialize_NF_F(int nf_number);
void initialize_NF_u(int nf_number);
//Get
//Print函数
//输出分布函数
void Print_f();
};
#endif // !EULER_POINT_H
| [
"928248595@qq.com"
] | 928248595@qq.com |
0e1c91b702fc5d4a96b264f2f52da8374a3b13bf | 6cc00c07a75bf18a2b1824383c3acc050098d9ed | /CodeChef/Easy/E0076.cpp | 3a3fdd999ba91599e7588a7d2062b423927441f6 | [
"MIT"
] | permissive | Mohammed-Shoaib/Coding-Problems | ac681c16c0f7c6d83f7cb46be71ea304d238344e | ccfb9fc2f0d8dff454439d75ce519cf83bad7c3b | refs/heads/master | 2022-06-14T02:24:10.316962 | 2022-03-20T20:04:16 | 2022-03-20T20:04:16 | 145,226,886 | 75 | 31 | MIT | 2020-10-02T07:46:58 | 2018-08-18T14:31:33 | C++ | UTF-8 | C++ | false | false | 665 | cpp | // Problem Code: A1
#include <iostream>
#include <vector>
using namespace std;
string subsetSum(vector<int> coins, int n, int m) {
vector< vector<bool> > dp(n + 1, vector<bool>(m + 1));
for (int i=0 ; i <= n ; i++)
dp[i][0] = true;
for (int i=1 ; i <= n ; i++)
for (int j=1 ; j <= m ; j++) {
dp[i][j] = dp[i - 1][j];
if (j >= coins[i - 1])
dp[i][j] = dp[i][j] || dp[i - 1][j - coins[i - 1]];
}
return (dp[n][m]) ? "Yes" : "No";
}
int main() {
int t;
cin >> t;
while (t--) {
int n, m;
cin >> n >> m;
vector<int> coins(n);
for (int i=0 ; i < n ; i++)
cin >> coins[i];
cout << subsetSum(coins, n, m) << endl;
}
return 0;
} | [
"shoaib98libra@gmail.com"
] | shoaib98libra@gmail.com |
ddeb680188d8b801be93f1bca25b33d023ceb3dc | ebe08ca697a16a81eebef5180e95f7386aa16455 | /Source/LigmaWars/Private/RotateandHoverComponent.cpp | 2e54bb5090a55973ff69dc5388eaede455a69bcb | [] | no_license | DemirAmetov96/LigmaWarsGame | ef5c9c65ab7fb73e84767b71a4e3f3e2a46ab400 | 87046625351c711bb67d54e1ebf338d6825a2d7e | refs/heads/master | 2020-04-15T15:12:51.895483 | 2019-01-09T04:09:31 | 2019-01-09T04:09:31 | 164,777,874 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,230 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "RotateandHoverComponent.h"
#include "GameframeWork/PlayerController.h"
#include "GameFramework/Actor.h"
// Sets default values for this component's properties
URotateandHoverComponent::URotateandHoverComponent()
{
// Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features
// off to improve performance if you don't need them.
PrimaryComponentTick.bCanEverTick = true;
// ...
}
// Called when the game starts
void URotateandHoverComponent::BeginPlay()
{
Super::BeginPlay();
Owner = GetOwner();
if (Owner->HasAuthority()) {
Owner->SetReplicates(true);
Owner->SetReplicateMovement(true);
}
}
void URotateandHoverComponent::MakeObjectRotate(float DeltaTime)
{
FRotator currentRotation = Owner->GetActorRotation();
currentRotation.Yaw = currentRotation.Yaw + (RotationSpeed * DeltaTime);
Owner->SetActorRotation(currentRotation);
}
void URotateandHoverComponent::MakeObjectFloat(float DeltaTime)
{
//Get the location of the actor every frame
CurrentLocation = Owner->GetActorLocation();
//Delta Time is the time between each frame. If we add the DeltaTime each frame, we get the total running time (RunningTime)
RunningTime = RunningTime + DeltaTime;
//We want the change in height to be smooth, so we use a sin function
SinWave = (FMath::Sin(RunningTime * FloatingSpeed));
//Change the z position every frame. SinWave returns values between 1 and -1, but we wont notice that in the world its too small, so we multiply the change by FloatingHeight
CurrentLocation.Z = CurrentLocation.Z + (SinWave * FloatingHeight * DeltaTime);
//We set the new updated current location onto the actor to move it
Owner->SetActorLocation(CurrentLocation);
}
// Called every frame
void URotateandHoverComponent::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
if (Owner->HasAuthority()) {
//Function that makes the object float smoothly
MakeObjectFloat(DeltaTime);
//Function that rotates the object
MakeObjectRotate(DeltaTime);
}
}
| [
"demirametov@gmail.com"
] | demirametov@gmail.com |
021f49e60d3b6310e90d148c5990dc2b8b09df7f | 9e3266ced53ab77e24a53fda6677220b03c62a97 | /A_1006.cpp | b8b89dcc43a297fffbb6a16a999b448807739379 | [] | no_license | dongx/PAT | 9f5836ff71867e3879e7d28996902b9af2b00177 | 7feb0d72d03242ed120e7546eb31bcceb20fef7e | refs/heads/master | 2020-03-30T22:01:39.257029 | 2015-04-16T05:46:23 | 2015-04-16T05:46:23 | 33,999,978 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 892 | cpp | #include <iostream>
#include <string>
#include <cstdio>
using namespace std;
struct Records{
char id[15];
long inTime;
long outTime;
}Records;
int main()
{
int number;
cin>>number;
int h,m,s;
struct Records stu[number];
for(int i = 0;i < number;i++){
scanf("%s",&stu[i].id);
scanf("%d:%d:%d",&h,&m,&s);
stu[i].inTime = h*3600+m*60+s;
scanf("%d:%d:%d",&h,&m,&s);
stu[i].outTime = h*3600+m*60+s;
}
int minId,maxId = 0;
long minInTime = stu[0].inTime;
long maxOutTime = stu[0].outTime;
for(int i=1;i<number;i++){
if(stu[i].inTime < minInTime){
minInTime = stu[i].inTime;
minId = i;
}
if(stu[i].outTime > maxOutTime){
maxOutTime = stu[i].outTime;
maxId = i;
}
}
printf("%s %s",stu[minId].id,stu[maxId].id);
}
| [
"dongxin213@gmail.com"
] | dongxin213@gmail.com |
b3e18a9f30284a41bd47aacdda7ff9b7ee2ac307 | c67cbd22f9bc3c465fd763fdf87172f2c8ec77d4 | /Desktop/Please Work/build/Android/Preview/app/src/main/include/Uno.IO.StreamReader.h | 7f4b383ab4713b9ad9f0ef5032bbcc55e9f2ffbf | [] | no_license | AzazelMoreno/Soteria-project | 7c58896d6bf5a9ad919bde6ddc2a30f4a07fa0d4 | 04fdb71065941176867fb9007ecf38bbf851ad47 | refs/heads/master | 2020-03-11T16:33:22.153713 | 2018-04-19T19:47:55 | 2018-04-19T19:47:55 | 130,120,337 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,680 | h | // This file was generated based on C:/Users/rudy0/AppData/Local/Fusetools/Packages/UnoCore/1.8.0/Source/Uno/IO/StreamReader.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.IDisposable.h>
#include <Uno.IO.TextReader.h>
namespace g{namespace Uno{namespace IO{struct Stream;}}}
namespace g{namespace Uno{namespace IO{struct StreamReader;}}}
namespace g{namespace Uno{namespace Text{struct Decoder;}}}
namespace g{
namespace Uno{
namespace IO{
// public sealed class StreamReader :7
// {
::g::Uno::IO::TextReader_type* StreamReader_typeof();
void StreamReader__ctor_1_fn(StreamReader* __this, ::g::Uno::IO::Stream* stream);
void StreamReader__Dispose1_fn(StreamReader* __this, bool* disposing);
void StreamReader__New1_fn(::g::Uno::IO::Stream* stream, StreamReader** __retval);
void StreamReader__Peek_fn(StreamReader* __this, int32_t* __retval);
void StreamReader__Read_fn(StreamReader* __this, int32_t* __retval);
void StreamReader__Read1_fn(StreamReader* __this, uArray* buffer, int32_t* index, int32_t* count, int32_t* __retval);
void StreamReader__ReadBuffer_fn(StreamReader* __this);
void StreamReader__ReadToEnd_fn(StreamReader* __this, uString** __retval);
struct StreamReader : ::g::Uno::IO::TextReader
{
uStrong< ::g::Uno::IO::Stream*> _stream;
uStrong< ::g::Uno::Text::Decoder*> _decoder;
uStrong<uArray*> _byteBuffer;
int32_t _byteLen;
uStrong<uArray*> _charBuffer;
int32_t _charPos;
int32_t _charLen;
void ctor_1(::g::Uno::IO::Stream* stream);
void ReadBuffer();
uString* ReadToEnd();
static StreamReader* New1(::g::Uno::IO::Stream* stream);
};
// }
}}} // ::g::Uno::IO
| [
"rudy0604594@gmail.com"
] | rudy0604594@gmail.com |
ef93b9ac06c350e975b6276fcd1a831be44f4367 | cbba4843ce29e263bb6a4b371547cdc7b1cde095 | /DISCONTINUED/includes-aj/runtime/BooleanPrototype.h | d131b7df79ce5f68e10129aaa284672e8a3821ed | [
"Apache-2.0"
] | permissive | openaphid/Runtime | e5c15adbec0c8d64a3cee4f0e707ff4127387b5f | f2d779b45632bba438e2a9a655166f4963274425 | refs/heads/master | 2021-06-20T08:45:50.765804 | 2021-03-10T09:10:26 | 2021-03-10T09:10:26 | 4,126,273 | 56 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,764 | h |
/*
Copyright 2012 Aphid Mobile
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.
*/
/*
* Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
* Copyright (C) 2008 Apple Inc. All rights reserved.
*
* 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 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
*
*/
#ifndef BooleanPrototype_h
#define BooleanPrototype_h
#include "BooleanObject.h"
namespace AJ {
class BooleanPrototype : public BooleanObject {
public:
BooleanPrototype(ExecState*, NonNullPassRefPtr<Structure>, Structure* prototypeFunctionStructure);
};
} // namespace AJ
#endif // BooleanPrototype_h
| [
"openaphid@gmail.com"
] | openaphid@gmail.com |
58ddaf7d13a0dfe2f5abc2615459bd97c928b8f8 | 5983ae483f5d4abb576baf7e38e2354a38ae0349 | /createnewstudent.cpp | 4d57afaa63efefe3e7d36cb82d55c5d83cb6395b | [] | no_license | nimrod-vanir/HaigNetwork | 5a525e139bda26348d3324cd5c745fce5c377b9f | 0c476b284cb77d4589c54a992f8c69186a924c47 | refs/heads/master | 2020-08-17T03:36:31.599251 | 2019-10-16T17:08:58 | 2019-10-16T17:08:58 | 215,601,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,743 | cpp | //include required header files and libraries
#include "createnewstudent.h"
#include "ui_createnewstudent.h"
#include <QMessageBox>
CreateNewStudent::CreateNewStudent(QWidget *parent) :
QDialog(parent),
ui(new Ui::CreateNewStudent)
{
//function called when window is launched
//Ui window is displayed
ui->setupUi(this);
QVariant currentID;
currentID = SecCookie_Instance.id;
MainWindow_Class.dbOpen();
QSqlQuery qry_checkUser1;
QSqlQuery qry_checkUser2;
qry_checkUser1.prepare("select * from Users where UserID = '"+currentID.toString()+"' ");
if (qry_checkUser1.exec()){
while (qry_checkUser1.next()){
if (qry_checkUser1.value(3).toString() == "Admin"){
qry_checkUser2.prepare("select * from ClubsInfo where ClubStatus = 'Active' ");
}
}
}
else{
qry_checkUser2.prepare("select * from ClubsInfo where ClubPresident = '"+currentID.toString()+"' ");
}
if (qry_checkUser2.exec()){
while (qry_checkUser2.next()){
ui->comboBox_Clubs->addItem(qry_checkUser2.value(0).toString());
qDebug() << qry_checkUser2.value(0);
}
}
MainWindow_Class.dbClose();
}
CreateNewStudent::~CreateNewStudent()
{
//function called when window is closed
delete ui;
}
void CreateNewStudent::on_pushButton_Save_clicked()
{
// function is called when 'Save' button is clicked
QString StudentID, StudentNAME, StudentEMAIL;
QString ClubNAME, ClubID;
bool isInt;
StudentID = ui->lineEdit_StudentNum->text().toDouble(&isInt);
if (!isInt) {
QMessageBox::warning(this, tr("ERROR"), tr("Student number must be a number."));
}
StudentID = ui->lineEdit_StudentNum->text();
StudentNAME = ui->lineEdit_StudentName->text();
StudentEMAIL = ui->lineEdit_Email->text();
if(StudentNAME == "" or StudentEMAIL == "") {
QMessageBox::warning(this, tr("ERROR"), tr("Please enter all information."));
}
else{
ClubNAME = ui->comboBox_Clubs->currentText();
MainWindow_Class.dbOpen();
QSqlQuery CheckIfStudentExists;
QSqlQuery GetClubID;
bool StudentInDB = false;
CheckIfStudentExists.prepare("select * from Students where StudentID = '"+StudentID+"' ");
if (CheckIfStudentExists.exec()){
qDebug () << "1";
while (CheckIfStudentExists.next()){
StudentInDB = true;
qDebug () << "2";
GetClubID.prepare("select * from ClubsInfo where ClubName = '"+ClubNAME+"' ");
if (GetClubID.exec()){
qDebug () << "3";
while (GetClubID.next()){
ClubID = GetClubID.value(3).toString();
qDebug () << "4";
MainWindow_Class.dbClose();
}
}
}
}
if (StudentInDB == true){
QMessageBox::warning(this, tr("ERROR"), tr("Student number already exists."));
}
else{
MainWindow_Class.dbOpen();
QSqlQuery AddToDB;
AddToDB.prepare("insert into Students (StudentID, Name, Email) values ('"+StudentID+"', '"+StudentNAME+"', '"+StudentEMAIL+"') ");
if (AddToDB.exec()){
MainWindow_Class.dbClose();
QMessageBox::information(this, tr("SAVED"), tr("New Student has been saved."));
}
else{
MainWindow_Class.dbClose();
QMessageBox::warning(this, tr("ERROR"), tr("There was an error. Please try again. (Contact Mr. Lawrence if this problem continues)"));
}
}
}
}
| [
"nimrodvanir@DESKTOP-TVIMQCO.localdomain"
] | nimrodvanir@DESKTOP-TVIMQCO.localdomain |
12bbbe9fa07cb5f42f61e74ace00ec7812d85da5 | 1f620b55d7875283bd1e8c83062d62519b1ac10b | /practice/5557.cpp | e063df822ee5446e7b5100fbc80fa842fd1646d2 | [] | no_license | punkryn/SWEA | e53b42d0f1dcd051810399553d476adc09ac19e5 | c5f24561fce6bc9522e72690ec90859c7e215850 | refs/heads/main | 2023-07-03T20:31:28.906605 | 2021-08-10T10:09:13 | 2021-08-10T10:09:13 | 387,395,353 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 751 | cpp | #include <iostream>
using namespace std;
long long dp[101][21];
int arr[101];
int main(){
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int n;
cin >> n;
for(int i = 0; i < n; i++){
cin >> arr[i];
}
dp[0][arr[0]] = 1;
for(int i = 1; i < n - 1; i++){
for(int j = 0; j <= 20; j++){
if(dp[i-1][j] > 0){
int sum_value = arr[i] + j;
int sub_value = j - arr[i];
if(sum_value <= 20) dp[i][sum_value] += dp[i-1][j];
if(sub_value >= 0) dp[i][sub_value] += dp[i-1][j];
}
}
}
// for(int i = 0; i <= 20; i++){
// cout << dp[n-2][i] << ' ';
// }
cout << dp[n-2][arr[n-1]] << '\n';
} | [
"gns8167@naver.com"
] | gns8167@naver.com |
1ca72e8a5c7a562f7e36749003b81e8044a6c2ea | 2ea984ee5114382724502f2667b236f2e1136560 | /制作ゲーム/FMGameBase(Ver20200403_Yurudora)/Project/src/BaseObject/GameObject/SpEffect/RedFairyDead/cRedFairyDead.cpp | f8ad1b2a7b7334caf3bcad51d3e40e0542dc411d | [] | no_license | s-kosugi/FMGameBase | 06cce9670025769e0a41b45cfc295372d72817e5 | 595a845135b1b5691bd22274fa0496fb97df76bf | refs/heads/master | 2022-12-30T07:10:42.897526 | 2020-10-05T23:40:01 | 2020-10-05T23:40:01 | 292,718,517 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 3,266 | cpp | /*==============================================================================*/
/* */
/* @file title : cRedFairyDead.cpp */
/* @brief : 赤妖精死亡エフェクトクラス */
/* @written : s.kosugi */
/* @create : 2020/04/05 */
/* */
/*==============================================================================*/
#include "cRedFairyDead.h"
#include "Utility/Easing/Easing.h"
#include "Utility/Timer/cTimer.h"
//==========================================================================================
// 定数
//==========================================================================================
const int cRedFairyDead::PRIORITY = 400; // 表示優先度
const float cRedFairyDead::LIFE_TIME = 1.0f; // 表示時間
const float cRedFairyDead::MAX_SPEED = 0.0f; // 最大移動速度
const float cRedFairyDead::MIN_SPEED = -5.0f; // 最小移動速度
const float cRedFairyDead::FLASH_INTERVAL = 0.08f; // 点滅間隔
//==========================================================================================
// コンストラクタ
//==========================================================================================
cRedFairyDead::cRedFairyDead( IBaseObject* parent )
: cSpriteObject( parent, "RedFairyDead1", "data\\graphic\\enemy_01_dead1.png" )
{
}
//==========================================================================================
// デストラクタ
//==========================================================================================
cRedFairyDead::~cRedFairyDead( void )
{
}
//==========================================================================================
// 初期化
//==========================================================================================
void cRedFairyDead::Initialize( const cVector2& pos )
{
SetPriority( PRIORITY );
// 座標を設定
m_vPos = pos;
cTimer* timer = CreateObject<cTimer>(this,"VanishTimer");
timer->Setup( LIFE_TIME );
// もう片方の半身を別スプライトで作成する
cSpriteObject* obj = CreateDrawObject<cSpriteObject>( this, "RedFairyDead2", "data\\graphic\\enemy_01_dead2.png" );
obj->SetPos( pos );
cSpriteObject::Initialize();
}
//==========================================================================================
// 更新
//==========================================================================================
void cRedFairyDead::Update( void )
{
cTimer* timer = (cTimer*)FindChild("VanishTimer");
if( timer )
{
cSpriteObject* child = (cSpriteObject*)FindChild( "RedFairyDead2" );
m_vPosUp.x = m_vPosUp.y = Easing::OutQuad( timer->GetTime(),timer->GetLimit(), MAX_SPEED, MIN_SPEED );
// 点滅処理 タイマーを整数時間に置き換えて計算
SetVisible(int(timer->GetTime() * 100.0f) % (int)(FLASH_INTERVAL*100) <= FLASH_INTERVAL*100 / 2.0f ? true : false );
// もう片方の半身は逆向きに移動させる
if( child )
{
child->SetPos( child->GetPos() - m_vPosUp );
child->SetVisible(m_bVisible);
}
// 時間経過したらオブジェクトを削除する
if( timer->Finished())
{
DeleteObject();
}
}
m_vPos += m_vPosUp;
cSpriteObject::Update();
} | [
"program.sk5@outlook.jp"
] | program.sk5@outlook.jp |
85087518cf9f4af7a91132ead30561b430d367f6 | 56faa945655349a2c529b5076139ad823db2e516 | /leetcode/hard/493.bit.cpp | 5bf2cfdf47dd56d6ea80046198b5e37663168079 | [] | no_license | lijinpei/leetcode | 61e3fec4ec935ec0d3a8048e5df6c022b3663545 | 9833469506f4802009398b6217e510e35b188c95 | refs/heads/master | 2018-10-17T08:28:08.716683 | 2018-08-02T16:30:50 | 2018-08-02T16:30:50 | 120,696,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,296 | cpp | #include <cstdint>
#include <algorithm>
#include <vector>
#include <iostream>
#include <algorithm>
uint32_t LOWBIT(uint32_t v) {
return v & -int32_t(v);
}
class Solution {
public:
int reversePairs(const std::vector<int> &nums) {
int s = nums.size();
std::vector<int> BIT(s + 1);
auto BIT_mark = [&](int p) {
while (p <= s) {
++BIT[p];
p += LOWBIT(p);
}
};
auto BIT_sufffix_sum = [&](int p) {
int ret = 0;
while (p) {
ret += BIT[p];
p -= LOWBIT(p);
}
return ret;
};
std::vector<int> sorted(nums);
std::sort(sorted.begin(), sorted.end());
auto upper_bound = [&](int v) {
return std::distance(sorted.begin(),
std::upper_bound(sorted.begin(), sorted.end(), v));
};
int ans = 0;
for (int i = s - 1; i >= 0; --i) {
int v = nums[i];
int v1 = (v > 0) ? (v - 1) / 2 : v / 2 - 1;
int p = upper_bound(v);
int p1 = upper_bound(v1);
int nv = BIT_sufffix_sum(p1);
ans += nv;
//std::cout << nv << std::endl;
BIT_mark(p);
}
return ans;
}
};
int main() {
Solution sol;
std::cout << sol.reversePairs({1, 3, 2, 3, 1}) << std::endl;
std::cout << sol.reversePairs({2, 4, 3, 5, 1}) << std::endl;
}
| [
"leekingp1994@163.com"
] | leekingp1994@163.com |
2390843f323f22220ae9d7094e576349d9824303 | 046eaaf88181f687aebdd11822176d8745c1b890 | /src/Graphics/Helpers/Grid.cpp | e2116cb36723b1c4e1e1eb359ee6abd5524e27f5 | [
"MIT"
] | permissive | filipecn/Aergia | 7e28d11e4e76f1500b9fe54720341d9bb25d12d9 | ba42e3f07c70791f0e44b876adf2696ca8001c0e | refs/heads/master | 2021-01-20T12:15:21.271343 | 2015-07-17T05:16:48 | 2015-07-17T05:16:48 | 29,448,614 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,027 | cpp | /*
* Grid.cpp
*
* The MIT License (MIT)
*
* Copyright (c) 2014 FilipeCN
*
* 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 "Grid.h"
using namespace aergia::graphics::helpers;
Grid::Grid(){
}
Grid::Grid(int n){
this->nx = this->ny = this->nz = n;
}
Grid::~Grid(){
}
void Grid::draw(unsigned int mode){
glColor3f(1,1,1);
glBegin(GL_LINES);
for(int i = -nx; i <= nx; i++){
glColor3f(1,1,1);
if(!i) glColor3f(0,0,1);
glVertex3f(i, -ny, 0);
glVertex3f(i, ny, 0);
if(!i) glColor3f(0,1,0);
glVertex3f(i, 0, -nz);
glVertex3f(i, 0, nz);
}
for(int i = -ny; i <= ny; i++){
glColor3f(1,1,1);
if(!i) glColor3f(1,0,0);
glVertex3f(-nx, i, 0);
glVertex3f(nx, i, 0);
if(!i) glColor3f(0,1,0);
glVertex3f(0, i, -nz);
glVertex3f(0, i, nz);
}
for(int i = -nz; i <= nz; i++){
glColor3f(1,1,1);
if(!i) glColor3f(0,0,1);
glVertex3f(0,-ny, i);
glVertex3f(0,ny, i);
if(!i) glColor3f(1,0,0);
glVertex3f(-nx, 0, i);
glVertex3f(nx, 0, i);
}
glEnd();
}
| [
"filipecn@gmail.com"
] | filipecn@gmail.com |
77547890b008746e3f4ddd6dbc1101710f27e1b8 | 3bb2b2648b836ec1b9f9dca72a5de604534173f9 | /UE4Editor/MedievalEscape/Source/MedievalEscape/Hands.h | b7a211af89423628b020beb268a5725630056138 | [
"Unlicense"
] | permissive | Skippern/udemy_UE4_course | c8ce59cb170be57b191686984997c4f6d23d94fa | 37c14c81748b9d11f265f3299d3d85d693b5e269 | refs/heads/master | 2023-03-01T13:30:22.096870 | 2021-02-17T21:40:37 | 2021-02-17T21:40:37 | 106,208,595 | 0 | 1 | null | 2017-10-29T11:50:33 | 2017-10-08T20:43:24 | C++ | UTF-8 | C++ | false | false | 1,123 | h | // Aun "Skippern" Johnsen 2021
#pragma once
#include "Components/ActorComponent.h"
#include "Components/InputComponent.h"
#include "CoreMinimal.h"
#include "DrawDebugHelpers.h"
#include "Engine/World.h"
#include "GameFramework/PlayerController.h"
#include "PhysicsEngine/PhysicsHandleComponent.h"
#include "Hands.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class MEDIEVALESCAPE_API UHands : public UActorComponent
{
GENERATED_BODY()
public:
// Sets default values for this component's properties
UHands();
// Called every frame
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
protected:
// Called when the game starts
virtual void BeginPlay() override;
private:
float Reach = 100.f;
UPhysicsHandleComponent* PhysicsHandler = nullptr;
UInputComponent* InputHandler = nullptr;
FVector PlayerViewPointLocation;
FRotator PlayerViewPointRotation;
void Grab();
void Release();
// void Push();
void SetupInputHandler();
FVector GetLineTraceEnd();
FHitResult GetFirstPhysicsBodyInReach();
};
| [
"skippern@gimnechiske.org"
] | skippern@gimnechiske.org |
0cf9cdd134866f6925d98a02f7d099dd366ce240 | 7c112951d0785e3fcc7191137ddc0d39c854759c | /MOG_Bridge/Integration Samples/C++/MOG_Integration.h | 6d1781534a028bf92f32915837cc8bf117a6dcc7 | [] | no_license | MOGwareSupport/MOG | 1003f575eea09a13309ecbad698cdb71a16f2fb8 | cd768ad570d99c7f2b959a082f8f4976ec628b4a | refs/heads/master | 2020-09-07T17:21:01.373903 | 2019-11-14T03:40:29 | 2019-11-14T03:40:29 | 220,857,805 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,618 | h | // MOG_Integration
// Copyright (c) 2006 MOGware, Inc.
//
//
#ifndef __MOGINTEGRATION_H__
#define __MOGINTEGRATION_H__
#define MOG_INTEGRATION 1
#if MOG_INTEGRATION
#include <stdio.h>
#include <windows.h>
#include "MOG_BridgeAPI.h"
enum MOGStatus
{
MOGStatus_Offline,
MOGStatus_OfflineNoServer,
MOGStatus_LoggingIn,
MOGStatus_LoggedIn,
MOGStatus_NoClient,
MOGStatus_NoServer,
MOGStatus_IncorrectAPIVersion,
};
class MOG_Integration
{
public:
typedef void (*EventHandler)(void* parameter, char* filename);
// Initialization
static void SetEventHandler(EventHandler handler, void* parameter);
static bool ConnectToMOG();
// Process
static bool ProcessTick();
// Shutdown
static bool DisconnectFromMOG(MOGStatus disconnectedStatus);
// Accessor Functions
static MOG_BridgeAPI *GetMOGBridge() { return mMOGBridge; };
// MOG Status
static MOGStatus GetMOGStatus() { return mStatus; };
static void SetMOGStatus(MOGStatus status) { mStatus = status; };
static char *GetMOGStatusString(char *buffer);
// Utility Functions
static char *GetProjectName(char *buffer);
static char *GetBranchName(char *buffer);
static char *GetUserName(char *buffer);
private:
// Member Variables
static HINSTANCE mMOGHandle;
static MOG_BridgeAPI* mMOGBridge;
static MOGStatus mStatus;
static EventHandler mUserEventHandler;
static void* mUserEventParameter;
// Default Callback Handlers
static bool __cdecl HandleCommand(struct MOGAPI_BaseInfo *pCommandType);
static void __cdecl HandleEvent(struct MOGAPI_BaseInfo *pEventType);
};
#endif
#endif // __MOGINTEGRATION_H__
| [
"support@mogware.com"
] | support@mogware.com |
9c1250bad3a8fd91c2520f43b2e35ad02b90ea41 | e093de3afa04c5117290dbc05fac8c39ff144756 | /lc/301.remove-invalid-parentheses.cpp | 45dc2a39596c46aa2ea289f89ababcc0d410561b | [] | no_license | njzhangyifei/oj | 25cef36f0cb1484c94ee5adf91628c7c1fef81be | 4d0b461f5c5c7dd36af0ff3f22a39a9e8d741f9c | refs/heads/master | 2020-05-30T08:46:12.255693 | 2019-08-01T02:06:21 | 2019-08-01T02:06:21 | 82,627,911 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,148 | cpp | class Solution {
public:
vector<string> removeInvalidParentheses(string s) {
vector<string> res;
remove(s, res, 0, 0, {'(', ')'});
return res;
}
void remove(string & s, vector<string> & res, int last_i, int last_j, const vector<char> & parens) {
int stack = 0;
for (int i = last_i; i < s.size(); ++i) {
if (s[i] == parens[0]) stack ++;
if (s[i] == parens[1]) stack --;
if (stack >= 0) continue;
// more paren[1], start finding the first one after last_j before i
for (int j = last_j; j <= i; j++) {
if (s[j] == parens[1] && (j == last_j || s[j - 1] != parens[1])) {
string removed = s.substr(0, j) + s.substr(j+1, s.size()-j);
remove(removed, res, i, j, parens);
}
}
return;
}
string reversed = s;
reverse(reversed.begin(), reversed.end());
if (parens[0] == '(') {
remove(reversed, res, 0, 0, {')', '('});
} else {
res.push_back(reversed);
}
}
};
| [
"njzhangyifei@gmail.com"
] | njzhangyifei@gmail.com |
d0c87770ab06faa8b71278932931dff7a30b073b | 968a4cb2feb13518940f9d125c4d6b5ae2094595 | /Plugins/PointSprite/ParaViewPlugin/vtkSMSpriteTextureProxy.h | d953b93b7249a4217f031a41942d80c9449cf884 | [
"LicenseRef-scancode-paraview-1.2"
] | permissive | wildmichael/ParaView3-enhancements-old | b4f2327e09cac3f81fa8c5cdb7a56bcdf960b6c1 | d889161ab8458787ec7aa3d8163904b8d54f07c5 | refs/heads/master | 2021-05-26T12:33:58.622473 | 2009-10-29T09:17:57 | 2009-10-29T09:17:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,879 | h | /*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkSMSpriteTextureProxy.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkSMSpriteTextureProxy
// .SECTION Thanks
// <verbatim>
//
// This file is part of the PointSprites plugin developed and contributed by
//
// Copyright (c) CSCS - Swiss National Supercomputing Centre
// EDF - Electricite de France
//
// John Biddiscombe, Ugo Varetto (CSCS)
// Stephane Ploix (EDF)
//
// </verbatim>
// .SECTION Description
// Combines vtkTexture and vtkImageSpriteSource. This makes it simple for
// applications to create textures for point sprites.
#ifndef __vtkSMSpriteTextureProxy_h
#define __vtkSMSpriteTextureProxy_h
#include "vtkSMSourceProxy.h"
class vtkImageData;
class VTK_EXPORT vtkSMSpriteTextureProxy : public vtkSMSourceProxy
{
public:
static vtkSMSpriteTextureProxy* New();
vtkTypeRevisionMacro(vtkSMSpriteTextureProxy, vtkSMSourceProxy);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Returns the client side image if one has been loaded successfully.
vtkImageData* GetLoadedImage();
//BTX
protected:
vtkSMSpriteTextureProxy();
~vtkSMSpriteTextureProxy();
virtual void CreateVTKObjects();
private:
vtkSMSpriteTextureProxy(const vtkSMSpriteTextureProxy&); // Not implemented
void operator=(const vtkSMSpriteTextureProxy&); // Not implemented
//ETX
};
#endif
| [
"utkarsh"
] | utkarsh |
d168211a723d89fcb1604f12cdd5836b47541de1 | ca3f403b48c31c4fab34343277534c1fbd6c6616 | /wifi/model/sta-wifi-mac.h | cc63ba22e3c483a407de5b0a574d13229f0961a4 | [] | no_license | ieee80211axsimulator/muofdma | 868f35c8c1a4d5a4d415ff268f630dfeaedecd3c | b0b5f6ffbaf23fa56f66060b9cbf2b174a93ebeb | refs/heads/master | 2021-07-25T03:50:28.477191 | 2017-11-06T21:44:51 | 2017-11-06T21:44:51 | 107,055,656 | 10 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 7,325 | h | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2006, 2009 INRIA
* Copyright (c) 2009 MIRKO BANCHI
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
* Mirko Banchi <mk.banchi@gmail.com>
*/
#ifndef STA_WIFI_MAC_H
#define STA_WIFI_MAC_H
#include "regular-wifi-mac.h"
#include "supported-rates.h"
#include "capability-information.h"
namespace ns3 {
class MgtAddBaRequestHeader;
/**
* \ingroup wifi
*
* The Wifi MAC high model for a non-AP STA in a BSS.
*/
class StaWifiMac : public RegularWifiMac
{
public:
/**
* \brief Get the type ID.
* \return the object TypeId
*/
static TypeId GetTypeId (void);
StaWifiMac ();
virtual ~StaWifiMac ();
/**
* \param packet the packet to send.
* \param to the address to which the packet should be sent.
*
* The packet should be enqueued in a tx queue, and should be
* dequeued as soon as the channel access function determines that
* access is granted to this MAC.
*/
void Enqueue (Ptr<const Packet> packet, Mac48Address to);
/**
* \param missed the number of beacons which must be missed
* before a new association sequence is started.
*/
void SetMaxMissedBeacons (uint32_t missed);
/**
* \param timeout
*
* If no probe response is received within the specified
* timeout, the station sends a new probe request.
*/
void SetProbeRequestTimeout (Time timeout);
/**
* \param timeout
*
* If no association response is received within the specified
* timeout, the station sends a new association request.
*/
void SetAssocRequestTimeout (Time timeout);
/**
* Start an active association sequence immediately.
*/
void StartActiveAssociation (void);
uint32_t GetBSR (void);
void SendTriggerFrameResp (uint32_t ru); //infocom
void StopMuMode (void);
void SetTfDuration (uint32_t tfDuration);
uint32_t GetTfDuration (void) const;
void TriggerFrameRespAccess (void);
void PrepareForTx (void);
void CancelTfRespIfNotSent (void);
void KillTriggerFrameBeaconRetransmission (void);
static void UpdateBsrTx (uint32_t ru);
static void ResetBsrTx ();
bool GetBsrTx (uint32_t ru);
void CheckAndCancel (void);
void CancelExpiredEvents (void);
static bool m_bsrTx0;
static bool m_bsrTx1;
static bool m_bsrTx2;
static bool m_bsrTx3;
static bool m_bsrTx4;
static bool m_bsrTx5;
static bool m_bsrTx6;
static bool m_bsrTx7;
static bool m_bsrTx8;
void UpdateSlots (uint32_t ru);
private:
/**
* The current MAC state of the STA.
*/
enum MacState
{
ASSOCIATED,
WAIT_PROBE_RESP,
WAIT_ASSOC_RESP,
BEACON_MISSED,
REFUSED
};
/**
* Enable or disable active probing.
*
* \param enable enable or disable active probing
*/
void SetActiveProbing (bool enable);
/**
* Return whether active probing is enabled.
*
* \return true if active probing is enabled, false otherwise
*/
bool GetActiveProbing (void) const;
void Receive (Ptr<Packet> packet, const WifiMacHeader *hdr);
/**
* Forward a probe request packet to the DCF. The standard is not clear on the correct
* queue for management frames if QoS is supported. We always use the DCF.
*/
void SendProbeRequest (void);
/**
* Forward an association request packet to the DCF. The standard is not clear on the correct
* queue for management frames if QoS is supported. We always use the DCF.
*/
void SendAssociationRequest (void);
/**
* Try to ensure that we are associated with an AP by taking an appropriate action
* depending on the current association status.
*/
void TryToEnsureAssociated (void);
/**
* This method is called after the association timeout occurred. We switch the state to
* WAIT_ASSOC_RESP and re-send an association request.
*/
void AssocRequestTimeout (void);
/**
* This method is called after the probe request timeout occurred. We switch the state to
* WAIT_PROBE_RESP and re-send a probe request.
*/
void ProbeRequestTimeout (void);
/**
* Return whether we are associated with an AP.
*
* \return true if we are associated with an AP, false otherwise
*/
bool IsAssociated (void) const;
/**
* Return whether we are waiting for an association response from an AP.
*
* \return true if we are waiting for an association response from an AP, false otherwise
*/
bool IsWaitAssocResp (void) const;
/**
* This method is called after we have not received a beacon from the AP
*/
void MissedBeacons (void);
/**
* Restarts the beacon timer.
*
* \param delay the delay before the watchdog fires
*/
void RestartBeaconWatchdog (Time delay);
/**
* Return an instance of SupportedRates that contains all rates that we support
* including HT rates.
*
* \return SupportedRates all rates that we support
*/
SupportedRates GetSupportedRates (void) const;
/**
* Set the current MAC state.
*
* \param value the new state
*/
void SetState (MacState value);
/**
* Set the EDCA parameters.
*
* \param ac the access class
* \param cwMin the minimum contention window size
* \param cwMax the maximum contention window size
* \param aifsn the number of slots that make up an AIFS
* \param txopLimit the TXOP limit
*/
void SetEdcaParameters (AcIndex ac, uint8_t cwMin, uint8_t cwMax, uint8_t aifsn, Time txopLimit);
/**
* Return the Capability information of the current STA.
*
* \return the Capability information that we support
*/
CapabilityInformation GetCapabilities (void) const;
MacState m_state; ///< MAC state
int m_noSlots;
uint32_t m_muSlots;
Time m_probeRequestTimeout; ///< probe request timeout
Time m_assocRequestTimeout; ///< assoc request timeout
Time m_lastTfBeaconTxStart;
Time m_lastTfTxStart;
Time m_lastTfRespRecv;
Time m_muUlModeEnd;
Time m_muDlModeEnd;
bool m_muModeToStart;
bool m_firstTf;
bool m_bsrAckRecvd;
EventId m_probeRequestEvent; ///< probe request event
EventId m_assocRequestEvent; ///< assoc request event
EventId m_triggerFrameRespEvent;
EventId m_muModeExpireEvent;
EventId m_cancelEvent;
uint32_t m_tfDuration;
EventId m_beaconWatchdog; ///< beacon watchdog
Time m_beaconWatchdogEnd; ///< beacon watchdog end
uint32_t m_maxMissedBeacons; ///< maximum missed beacons
bool m_activeProbing; ///< active probing
bool m_muUlFlag;
TracedCallback<Mac48Address> m_assocLogger; ///< assoc logger
TracedCallback<Mac48Address> m_deAssocLogger; ///< deassoc logger
};
} //namespace ns3
#endif /* STA_WIFI_MAC_H */
| [
"xxx@yyy.zzz"
] | xxx@yyy.zzz |
893a00e7200956382a11ad072dfe4a6f286d82b7 | 1fc9560211750135d297483acf5c6abde34a44ce | /Archives/OOP244/w6/in_lab/Contact.h | 1e295a68e591b40c377f4d45d4767dc8499a1029 | [] | no_license | shweyin/Seneca-work | d5b1eec6677dc7bafd69ae34558210c036da242f | df1f033bf18f801076d4932f7834579974cfe288 | refs/heads/master | 2023-01-21T15:11:27.581479 | 2020-12-05T19:57:02 | 2020-12-05T19:57:02 | 124,494,944 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 504 | h | #pragma once
// Student: Shweyin Than, 115675175, shweyin@gmail.com
#include <iostream>
#include <cstring>
#include <iomanip>
namespace sict
{
class Contact
{
char name[20];
int size;
long long *phone_numbers;
long long cc(long long);
long long ac(long long);
long long num1(long long);
long long num2(long long);
void setEmpty();
bool isValid(long long);
public:
Contact();
Contact(const char*, long long*, int);
~Contact();
bool isEmpty() const;
void display();
};
}
| [
"shweyin@gmail.com"
] | shweyin@gmail.com |
7892296d0e1af50cd567140eaa7287ccf82fc14c | cd982e468c9493635816f8ca468e6de5e03ab5da | /DIKUgrafik/Src/WindowUtils/windowutils.h | 1364b1935d27a3e429c77a83f1cef6130d49addd | [] | no_license | gmnamra/Grafik | 5ee0625ee95779fbc67ab00ee6247880bb57c3c5 | a7bb9b0035091cce5d1261c775eb753dd15e76b8 | refs/heads/master | 2020-05-27T12:42:46.288013 | 2018-01-20T12:00:19 | 2018-01-20T12:00:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,073 | h | #ifndef __WINDOWUTILS_H__
#define __WINDOWUTILS_H__
#include <iostream>
#include <iomanip>
#include <stdexcept>
#include <fstream>
#include <sstream>
#include <cmath>
#include <vector>
#include <string>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include "DIKUgrafik/errorcheck.h"
// ResizeCallback - function pointer declared in main program
extern void ResizeCallback(GLFWwindow*, int, int);
// KeyboardCallback - function pointer declared in main program
extern void KeyboardCallback(GLFWwindow*, int, int, int, int);
/**
* Initialize GLFW
*/
void InitializeGLFW();
/**
* Creates a graphics window and creates two callbacks to Keyboard and Resize.
* \param WindowWidth - The width of the window.
* \param WindowHeight - The height of the window.
* \param WindowTitle - The title of the window.
* \return An identifier for the window.
*/
GLFWwindow* CreateWindow(int WindowWidth, int WindowHeight,
std::string const& WindowTitle);
/**
* Initializes GLEW.
*/
void InitializeGLEW();
/**
* Initializes OpenGL.
*/
void InitializeOpenGL();
#endif
| [
"jakobhl@hotmail.com"
] | jakobhl@hotmail.com |
739ae777d1d48d7b4b6c8e49e5ac22ce4c7f9da0 | a69ba39dcbf8280c6ec75f16d1725b611976ef1a | /inference/interface/inf_wrapper.hh | cfc10cae1fe5684ee784ca04bbee53bf16662722 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | GilesStrong/cms_hh_tf_inference | 0954abd8c10ea10fe856b53e6ed0d053230abe98 | 070c6e67531d16f8639b85e2f9e5219512142afa | refs/heads/master | 2022-03-13T09:04:57.784967 | 2020-02-19T10:46:26 | 2020-02-19T10:46:26 | 228,627,256 | 0 | 1 | Apache-2.0 | 2022-02-10T09:18:11 | 2019-12-17T13:52:37 | Jupyter Notebook | UTF-8 | C++ | false | false | 557 | hh | #ifndef INF_WRAPPER_HH_
#define INF_WRAPPER_HH_
// C++
#include <iostream>
#include <string>
// Local
#include "pipeline.hh"
class InfWrapper {
/* Wrapper for instanciating prediction pipelines and assigning events to correct ensemble */
private:
std::vector<Pipeline> _pipes;
bool _verbose;
public:
// Methods
InfWrapper(std::string, unsigned int n_threads=1, bool verbose=false);
~InfWrapper();
float predict(std::vector<float>, unsigned long int);
void load_pipeline(std::string, unsigned int);
};
#endif /* INF_WRAPPER_HH_ */
| [
"giles.strong@outlook.com"
] | giles.strong@outlook.com |
37af0aaf013f33515662384dfa8f76206345b9bc | 084006eb442b60b82b3d85d61a3b53d21c5c8855 | /shared/Irrlicht/source/Irrlicht/CImageLoaderBMP.cpp | b12cdc05bc20cc977e96a3c600b9f87f86f791f0 | [
"XFree86-1.1",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-other-permissive",
"Zlib"
] | permissive | SethRobinson/proton | 7aadcb38bc676c136dce01b8f6773fd75fa33d55 | 6b1474e75a2acf48d848c70fcb043ce8223001a9 | refs/heads/master | 2023-08-31T11:04:21.575522 | 2023-08-29T07:44:50 | 2023-08-29T07:44:50 | 142,253,855 | 81 | 31 | NOASSERTION | 2023-08-07T22:02:41 | 2018-07-25T05:55:38 | C++ | UTF-8 | C++ | false | false | 8,626 | cpp | // Copyright (C) 2002-2009 Nikolaus Gebhardt
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#include "CImageLoaderBMP.h"
#ifdef _IRR_COMPILE_WITH_BMP_LOADER_
#include "IReadFile.h"
#include "SColor.h"
#include "CColorConverter.h"
#include "CImage.h"
#include "os.h"
#include "irrString.h"
namespace irr
{
namespace video
{
//! constructor
CImageLoaderBMP::CImageLoaderBMP()
{
#ifdef _DEBUG
setDebugName("CImageLoaderBMP");
#endif
}
//! returns true if the file maybe is able to be loaded by this class
//! based on the file extension (e.g. ".tga")
bool CImageLoaderBMP::isALoadableFileExtension(const io::path& filename) const
{
return core::hasFileExtension ( filename, "bmp" );
}
//! returns true if the file maybe is able to be loaded by this class
bool CImageLoaderBMP::isALoadableFileFormat(io::IReadFile* file) const
{
u16 headerID;
file->read(&headerID, sizeof(u16));
#ifdef __BIG_ENDIAN__
headerID = os::Byteswap::byteswap(headerID);
#endif
return headerID == 0x4d42;
}
void CImageLoaderBMP::decompress8BitRLE(u8*& bmpData, s32 size, s32 width, s32 height, s32 pitch) const
{
u8* p = bmpData;
u8* newBmp = new u8[(width+pitch)*height];
u8* d = newBmp;
u8* destEnd = newBmp + (width+pitch)*height;
s32 line = 0;
while (bmpData - p < size && d < destEnd)
{
if (*p == 0)
{
++p;
switch(*p)
{
case 0: // end of line
++p;
++line;
d = newBmp + (line*(width+pitch));
break;
case 1: // end of bmp
delete [] bmpData;
bmpData = newBmp;
return;
case 2:
++p; d +=(u8)*p; // delta
++p; d += ((u8)*p)*(width+pitch);
++p;
break;
default:
{
// absolute mode
s32 count = (u8)*p; ++p;
s32 readAdditional = ((2-(count%2))%2);
s32 i;
for (i=0; i<count; ++i)
{
*d = *p;
++p;
++d;
}
for (i=0; i<readAdditional; ++i)
++p;
}
}
}
else
{
s32 count = (u8)*p; ++p;
u8 color = *p; ++p;
for (s32 i=0; i<count; ++i)
{
*d = color;
++d;
}
}
}
delete [] bmpData;
bmpData = newBmp;
}
void CImageLoaderBMP::decompress4BitRLE(u8*& bmpData, s32 size, s32 width, s32 height, s32 pitch) const
{
s32 lineWidth = (width+1)/2+pitch;
u8* p = bmpData;
u8* newBmp = new u8[lineWidth*height];
u8* d = newBmp;
u8* destEnd = newBmp + lineWidth*height;
s32 line = 0;
s32 shift = 4;
while (bmpData - p < size && d < destEnd)
{
if (*p == 0)
{
++p;
switch(*p)
{
case 0: // end of line
++p;
++line;
d = newBmp + (line*lineWidth);
shift = 4;
break;
case 1: // end of bmp
delete [] bmpData;
bmpData = newBmp;
return;
case 2:
{
++p;
s32 x = (u8)*p; ++p;
s32 y = (u8)*p; ++p;
d += x/2 + y*lineWidth;
shift = x%2==0 ? 4 : 0;
}
break;
default:
{
// absolute mode
s32 count = (u8)*p; ++p;
s32 readAdditional = ((2-((count)%2))%2);
s32 readShift = 4;
s32 i;
for (i=0; i<count; ++i)
{
s32 color = (((u8)*p) >> readShift) & 0x0f;
readShift -= 4;
if (readShift < 0)
{
++*p;
readShift = 4;
}
u8 mask = 0x0f << shift;
*d = (*d & (~mask)) | ((color << shift) & mask);
shift -= 4;
if (shift < 0)
{
shift = 4;
++d;
}
}
for (i=0; i<readAdditional; ++i)
++p;
}
}
}
else
{
s32 count = (u8)*p; ++p;
s32 color1 = (u8)*p; color1 = color1 & 0x0f;
s32 color2 = (u8)*p; color2 = (color2 >> 4) & 0x0f;
++p;
for (s32 i=0; i<count; ++i)
{
u8 mask = 0x0f << shift;
u8 toSet = (shift==0 ? color1 : color2) << shift;
*d = (*d & (~mask)) | (toSet & mask);
shift -= 4;
if (shift < 0)
{
shift = 4;
++d;
}
}
}
}
delete [] bmpData;
bmpData = newBmp;
}
//! creates a surface from the file
IImage* CImageLoaderBMP::loadImage(io::IReadFile* file) const
{
SBMPHeader header;
file->read(&header, sizeof(header));
#ifdef __BIG_ENDIAN__
header.Id = os::Byteswap::byteswap(header.Id);
header.FileSize = os::Byteswap::byteswap(header.FileSize);
header.BitmapDataOffset = os::Byteswap::byteswap(header.BitmapDataOffset);
header.BitmapHeaderSize = os::Byteswap::byteswap(header.BitmapHeaderSize);
header.Width = os::Byteswap::byteswap(header.Width);
header.Height = os::Byteswap::byteswap(header.Height);
header.Planes = os::Byteswap::byteswap(header.Planes);
header.BPP = os::Byteswap::byteswap(header.BPP);
header.Compression = os::Byteswap::byteswap(header.Compression);
header.BitmapDataSize = os::Byteswap::byteswap(header.BitmapDataSize);
header.PixelPerMeterX = os::Byteswap::byteswap(header.PixelPerMeterX);
header.PixelPerMeterY = os::Byteswap::byteswap(header.PixelPerMeterY);
header.Colors = os::Byteswap::byteswap(header.Colors);
header.ImportantColors = os::Byteswap::byteswap(header.ImportantColors);
#endif
s32 pitch = 0;
//! return if the header is false
if (header.Id != 0x4d42)
return 0;
if (header.Compression > 2) // we'll only handle RLE-Compression
{
os::Printer::log("Compression mode not supported.", ELL_ERROR);
return 0;
}
// adjust bitmap data size to dword boundary
header.BitmapDataSize += (4-(header.BitmapDataSize%4))%4;
// read palette
long pos = file->getPos();
s32 paletteSize = (header.BitmapDataOffset - pos) / 4;
s32* paletteData = 0;
if (paletteSize)
{
paletteData = new s32[paletteSize];
file->read(paletteData, paletteSize * sizeof(s32));
#ifdef __BIG_ENDIAN__
for (s32 i=0; i<paletteSize; ++i)
paletteData[i] = os::Byteswap::byteswap(paletteData[i]);
#endif
}
// read image data
if (!header.BitmapDataSize)
{
// okay, lets guess the size
// some tools simply don't set it
header.BitmapDataSize = static_cast<u32>(file->getSize()) - header.BitmapDataOffset;
}
file->seek(header.BitmapDataOffset);
f32 t = (header.Width) * (header.BPP / 8.0f);
s32 widthInBytes = (s32)t;
t -= widthInBytes;
if (t!=0.0f)
++widthInBytes;
s32 lineData = widthInBytes + ((4-(widthInBytes%4)))%4;
pitch = lineData - widthInBytes;
u8* bmpData = new u8[header.BitmapDataSize];
file->read(bmpData, header.BitmapDataSize);
// decompress data if needed
switch(header.Compression)
{
case 1: // 8 bit rle
decompress8BitRLE(bmpData, header.BitmapDataSize, header.Width, header.Height, pitch);
break;
case 2: // 4 bit rle
decompress4BitRLE(bmpData, header.BitmapDataSize, header.Width, header.Height, pitch);
break;
}
// create surface
// no default constructor from packed area! ARM problem!
core::dimension2d<u32> dim;
dim.Width = header.Width;
dim.Height = header.Height;
IImage* image = 0;
switch(header.BPP)
{
case 1:
image = new CImage(ECF_A1R5G5B5, dim);
if (image)
CColorConverter::convert1BitTo16Bit(bmpData, (s16*)image->lock(), header.Width, header.Height, pitch, true);
break;
case 4:
image = new CImage(ECF_A1R5G5B5, dim);
if (image)
CColorConverter::convert4BitTo16Bit(bmpData, (s16*)image->lock(), header.Width, header.Height, paletteData, pitch, true);
break;
case 8:
image = new CImage(ECF_A1R5G5B5, dim);
if (image)
CColorConverter::convert8BitTo16Bit(bmpData, (s16*)image->lock(), header.Width, header.Height, paletteData, pitch, true);
break;
case 16:
image = new CImage(ECF_A1R5G5B5, dim);
if (image)
CColorConverter::convert16BitTo16Bit((s16*)bmpData, (s16*)image->lock(), header.Width, header.Height, pitch, true);
break;
case 24:
image = new CImage(ECF_R8G8B8, dim);
if (image)
CColorConverter::convert24BitTo24Bit(bmpData, (u8*)image->lock(), header.Width, header.Height, pitch, true, true);
break;
case 32: // thx to Reinhard Ostermeier
image = new CImage(ECF_A8R8G8B8, dim);
if (image)
CColorConverter::convert32BitTo32Bit((s32*)bmpData, (s32*)image->lock(), header.Width, header.Height, pitch, true);
break;
};
if (image)
image->unlock();
// clean up
delete [] paletteData;
delete [] bmpData;
return image;
}
//! creates a loader which is able to load windows bitmaps
IImageLoader* createImageLoaderBMP()
{
return new CImageLoaderBMP;
}
} // end namespace video
} // end namespace irr
#endif
| [
"seth@rtsoft.com"
] | seth@rtsoft.com |
c6c6f47e1036ee4fd466cf38a49960cac8924efb | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_ExplosionEmitter_underwater_functions.cpp | 6bcf6f73496a3af7912a9db17ad1a6d3f2cec275 | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,609 | cpp | // ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_ExplosionEmitter_underwater_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function ExplosionEmitter_underwater.ExplosionEmitter_underwater_C.UserConstructionScript
// ()
void AExplosionEmitter_underwater_C::UserConstructionScript()
{
static auto fn = UObject::FindObject<UFunction>("Function ExplosionEmitter_underwater.ExplosionEmitter_underwater_C.UserConstructionScript");
AExplosionEmitter_underwater_C_UserConstructionScript_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function ExplosionEmitter_underwater.ExplosionEmitter_underwater_C.ExecuteUbergraph_ExplosionEmitter_underwater
// ()
// Parameters:
// int EntryPoint (Parm, ZeroConstructor, IsPlainOldData)
void AExplosionEmitter_underwater_C::ExecuteUbergraph_ExplosionEmitter_underwater(int EntryPoint)
{
static auto fn = UObject::FindObject<UFunction>("Function ExplosionEmitter_underwater.ExplosionEmitter_underwater_C.ExecuteUbergraph_ExplosionEmitter_underwater");
AExplosionEmitter_underwater_C_ExecuteUbergraph_ExplosionEmitter_underwater_Params params;
params.EntryPoint = EntryPoint;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
3553cd574942817611ff7db5f47ccd1112a5bf4c | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /gpu/command_buffer/service/gles2_cmd_decoder_unittest_attribs.cc | 631e3bf989378c72574a364cc7ef04c4be280d4c | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 19,694 | cc | // Copyright 2014 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 "gpu/command_buffer/service/gles2_cmd_decoder.h"
#include <stddef.h>
#include "base/command_line.h"
#include "base/stl_util.h"
#include "base/strings/string_number_conversions.h"
#include "gpu/command_buffer/common/gles2_cmd_format.h"
#include "gpu/command_buffer/common/gles2_cmd_utils.h"
#include "gpu/command_buffer/service/context_group.h"
#include "gpu/command_buffer/service/context_state.h"
#include "gpu/command_buffer/service/gl_surface_mock.h"
#include "gpu/command_buffer/service/gles2_cmd_decoder_unittest.h"
#include "gpu/command_buffer/service/gpu_switches.h"
#include "gpu/command_buffer/service/image_manager.h"
#include "gpu/command_buffer/service/mailbox_manager.h"
#include "gpu/command_buffer/service/mocks.h"
#include "gpu/command_buffer/service/program_manager.h"
#include "gpu/command_buffer/service/test_helper.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_mock.h"
#include "ui/gl/gl_surface_stub.h"
#if !defined(GL_DEPTH24_STENCIL8)
#define GL_DEPTH24_STENCIL8 0x88F0
#endif
using ::gl::MockGLInterface;
using ::testing::_;
using ::testing::DoAll;
using ::testing::InSequence;
using ::testing::Invoke;
using ::testing::MatcherCast;
using ::testing::Mock;
using ::testing::Pointee;
using ::testing::Return;
using ::testing::SaveArg;
using ::testing::SetArrayArgument;
using ::testing::SetArgPointee;
using ::testing::SetArgPointee;
using ::testing::StrEq;
using ::testing::StrictMock;
namespace gpu {
namespace gles2 {
using namespace cmds;
TEST_P(GLES2DecoderTest, DisableVertexAttribArrayValidArgs) {
SetDriverVertexAttribEnabled(1, false);
SpecializedSetup<cmds::DisableVertexAttribArray, 0>(true);
cmds::DisableVertexAttribArray cmd;
cmd.Init(1);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(GL_NO_ERROR, GetGLError());
}
TEST_P(GLES2DecoderTest, EnableVertexAttribArrayValidArgs) {
SetDriverVertexAttribEnabled(1, true);
SpecializedSetup<cmds::EnableVertexAttribArray, 0>(true);
cmds::EnableVertexAttribArray cmd;
cmd.Init(1);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(GL_NO_ERROR, GetGLError());
}
TEST_P(GLES2DecoderWithShaderTest, EnabledVertexAttribArrayIsDisabledIfUnused) {
SetupExpectationsForApplyingDefaultDirtyState();
// Set up and enable attribs 0, 1, 2
SetupAllNeededVertexBuffers();
// Enable attrib 3, and verify it's called in the driver
{
EXPECT_CALL(*gl_, EnableVertexAttribArray(3))
.Times(1)
.RetiresOnSaturation();
cmds::EnableVertexAttribArray cmd;
cmd.Init(3);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
}
DoVertexAttribPointer(3, 2, GL_FLOAT, 0, 0);
// Expect the draw call below causes attrib 3 to be disabled in the driver
EXPECT_CALL(*gl_, DisableVertexAttribArray(3)).Times(1).RetiresOnSaturation();
// Perform a draw which uses only attributes 0, 1, 2 - not attrib 3
{
EXPECT_CALL(*gl_, DrawArrays(GL_TRIANGLES, 0, kNumVertices))
.Times(1)
.RetiresOnSaturation();
DrawArrays cmd;
cmd.Init(GL_TRIANGLES, 0, kNumVertices);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(GL_NO_ERROR, GetGLError());
}
}
TEST_P(GLES2DecoderWithShaderTest, GetVertexAttribPointervSucceeds) {
const GLuint kOffsetToTestFor = sizeof(float) * 4;
const GLuint kIndexToTest = 1;
GetVertexAttribPointerv::Result* result =
static_cast<GetVertexAttribPointerv::Result*>(shared_memory_address_);
result->size = 0;
const GLuint* result_value = result->GetData();
// Test that initial value is 0.
GetVertexAttribPointerv cmd;
cmd.Init(kIndexToTest,
GL_VERTEX_ATTRIB_ARRAY_POINTER,
shared_memory_id_,
shared_memory_offset_);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(sizeof(*result_value), result->size);
EXPECT_EQ(0u, *result_value);
EXPECT_EQ(GL_NO_ERROR, GetGLError());
// Set the value and see that we get it.
SetupVertexBuffer();
DoVertexAttribPointer(kIndexToTest, 2, GL_FLOAT, 0, kOffsetToTestFor);
result->size = 0;
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(sizeof(*result_value), result->size);
EXPECT_EQ(kOffsetToTestFor, *result_value);
EXPECT_EQ(GL_NO_ERROR, GetGLError());
}
TEST_P(GLES2DecoderWithShaderTest, GetVertexAttribPointervBadArgsFails) {
const GLuint kIndexToTest = 1;
GetVertexAttribPointerv::Result* result =
static_cast<GetVertexAttribPointerv::Result*>(shared_memory_address_);
result->size = 0;
const GLuint* result_value = result->GetData();
// Test pname invalid fails.
GetVertexAttribPointerv cmd;
cmd.Init(kIndexToTest,
GL_VERTEX_ATTRIB_ARRAY_POINTER + 1,
shared_memory_id_,
shared_memory_offset_);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(0u, result->size);
EXPECT_EQ(kInitialResult, *result_value);
EXPECT_EQ(GL_INVALID_ENUM, GetGLError());
// Test index out of range fails.
result->size = 0;
cmd.Init(kNumVertexAttribs,
GL_VERTEX_ATTRIB_ARRAY_POINTER,
shared_memory_id_,
shared_memory_offset_);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(0u, result->size);
EXPECT_EQ(kInitialResult, *result_value);
EXPECT_EQ(GL_INVALID_VALUE, GetGLError());
// Test memory id bad fails.
cmd.Init(kIndexToTest,
GL_VERTEX_ATTRIB_ARRAY_POINTER,
kInvalidSharedMemoryId,
shared_memory_offset_);
EXPECT_NE(error::kNoError, ExecuteCmd(cmd));
// Test memory offset bad fails.
cmd.Init(kIndexToTest,
GL_VERTEX_ATTRIB_ARRAY_POINTER,
shared_memory_id_,
kInvalidSharedMemoryOffset);
EXPECT_NE(error::kNoError, ExecuteCmd(cmd));
}
TEST_P(GLES2DecoderWithShaderTest, BindBufferToDifferentTargetFails) {
// Bind the buffer to GL_ARRAY_BUFFER
DoBindBuffer(GL_ARRAY_BUFFER, client_buffer_id_, kServiceBufferId);
// Attempt to rebind to GL_ELEMENT_ARRAY_BUFFER
// NOTE: Real GLES2 does not have this restriction but WebGL and we do.
// This can be restriction can be removed at runtime.
EXPECT_CALL(*gl_, BindBuffer(_, _)).Times(0);
BindBuffer cmd;
cmd.Init(GL_ELEMENT_ARRAY_BUFFER, client_buffer_id_);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(GL_INVALID_OPERATION, GetGLError());
}
TEST_P(GLES2DecoderWithShaderTest, VertexAttribPointer) {
SetupVertexBuffer();
static const GLenum types[] = {
GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT,
GL_FLOAT, GL_FIXED, GL_INT, GL_UNSIGNED_INT,
};
static const GLsizei sizes[] = {
1, 1, 2, 2, 4, 4, 4, 4,
};
static const GLuint indices[] = {
0, 1, kNumVertexAttribs - 1, kNumVertexAttribs,
};
static const GLsizei offset_mult[] = {
0, 0, 1, 1, 2, 1000,
};
static const GLsizei offset_offset[] = {
0, 1, 0, 1, 0, 0,
};
static const GLsizei stride_mult[] = {
-1, 0, 0, 1, 1, 2, 1000,
};
static const GLsizei stride_offset[] = {
0, 0, 1, 0, 1, 0, 0,
};
for (size_t tt = 0; tt < base::size(types); ++tt) {
GLenum type = types[tt];
GLsizei num_bytes = sizes[tt];
for (size_t ii = 0; ii < base::size(indices); ++ii) {
GLuint index = indices[ii];
for (GLint size = 0; size < 5; ++size) {
for (size_t oo = 0; oo < base::size(offset_mult); ++oo) {
GLuint offset = num_bytes * offset_mult[oo] + offset_offset[oo];
for (size_t ss = 0; ss < base::size(stride_mult); ++ss) {
GLsizei stride = num_bytes * stride_mult[ss] + stride_offset[ss];
for (int normalize = 0; normalize < 2; ++normalize) {
bool index_good = index < static_cast<GLuint>(kNumVertexAttribs);
bool size_good = (size > 0 && size < 5);
bool offset_good = (offset % num_bytes == 0);
bool stride_good =
(stride % num_bytes == 0) && stride >= 0 && stride <= 255;
bool type_good = (type != GL_INT && type != GL_UNSIGNED_INT &&
type != GL_FIXED);
bool good = size_good && offset_good && stride_good &&
type_good && index_good;
bool call = good && (type != GL_FIXED);
if (call) {
EXPECT_CALL(*gl_,
VertexAttribPointer(index,
size,
type,
normalize,
stride,
BufferOffset(offset)));
}
VertexAttribPointer cmd;
cmd.Init(index, size, type, normalize, stride, offset);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
if (good) {
EXPECT_EQ(GL_NO_ERROR, GetGLError());
} else if (size_good && offset_good && stride_good && type_good &&
!index_good) {
EXPECT_EQ(GL_INVALID_VALUE, GetGLError());
} else if (size_good && offset_good && stride_good &&
!type_good && index_good) {
EXPECT_EQ(GL_INVALID_ENUM, GetGLError());
} else if (size_good && offset_good && !stride_good &&
type_good && index_good) {
if (stride < 0 || stride > 255) {
EXPECT_EQ(GL_INVALID_VALUE, GetGLError());
} else {
EXPECT_EQ(GL_INVALID_OPERATION, GetGLError());
}
} else if (size_good && !offset_good && stride_good &&
type_good && index_good) {
EXPECT_EQ(GL_INVALID_OPERATION, GetGLError());
} else if (!size_good && offset_good && stride_good &&
type_good && index_good) {
EXPECT_EQ(GL_INVALID_VALUE, GetGLError());
} else {
EXPECT_NE(GL_NO_ERROR, GetGLError());
}
}
}
}
}
}
}
}
class GLES2DecoderVertexArraysOESTest : public GLES2DecoderWithShaderTest {
public:
GLES2DecoderVertexArraysOESTest() = default;
bool vertex_array_deleted_manually_;
void SetUp() override {
InitState init;
init.gl_version = "OpenGL ES 2.0";
init.bind_generates_resource = true;
InitDecoder(init);
SetupDefaultProgram();
AddExpectationsForGenVertexArraysOES();
GenHelper<GenVertexArraysOESImmediate>(client_vertexarray_id_);
vertex_array_deleted_manually_ = false;
}
void TearDown() override {
// This should only be set if the test handled deletion of the vertex array
// itself. Necessary because vertex_array_objects are not sharable, and thus
// not managed in the ContextGroup, meaning they will be destroyed during
// test tear down
if (!vertex_array_deleted_manually_) {
AddExpectationsForDeleteVertexArraysOES();
}
GLES2DecoderWithShaderTest::TearDown();
}
void GenVertexArraysOESImmediateValidArgs() {
AddExpectationsForGenVertexArraysOES();
GenVertexArraysOESImmediate* cmd =
GetImmediateAs<GenVertexArraysOESImmediate>();
GLuint temp = kNewClientId;
cmd->Init(1, &temp);
EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(*cmd, sizeof(temp)));
EXPECT_EQ(GL_NO_ERROR, GetGLError());
EXPECT_TRUE(GetVertexArrayInfo(kNewClientId) != nullptr);
AddExpectationsForDeleteVertexArraysOES();
}
void GenVertexArraysOESImmediateDuplicateOrNullIds() {
GenVertexArraysOESImmediate* cmd =
GetImmediateAs<GenVertexArraysOESImmediate>();
GLuint temp[3] = {kNewClientId, kNewClientId + 1, kNewClientId};
cmd->Init(3, temp);
EXPECT_EQ(error::kInvalidArguments,
ExecuteImmediateCmd(*cmd, sizeof(temp)));
EXPECT_TRUE(GetVertexArrayInfo(kNewClientId) == nullptr);
EXPECT_TRUE(GetVertexArrayInfo(kNewClientId + 1) == nullptr);
GLuint null_id[2] = {kNewClientId, 0};
cmd->Init(2, null_id);
EXPECT_EQ(error::kInvalidArguments,
ExecuteImmediateCmd(*cmd, sizeof(temp)));
EXPECT_TRUE(GetVertexArrayInfo(kNewClientId) == nullptr);
}
void GenVertexArraysOESImmediateInvalidArgs() {
EXPECT_CALL(*gl_, GenVertexArraysOES(_, _)).Times(0);
GenVertexArraysOESImmediate* cmd =
GetImmediateAs<GenVertexArraysOESImmediate>();
cmd->Init(1, &client_vertexarray_id_);
EXPECT_EQ(error::kInvalidArguments,
ExecuteImmediateCmd(*cmd, sizeof(&client_vertexarray_id_)));
}
void DeleteVertexArraysOESImmediateValidArgs() {
AddExpectationsForDeleteVertexArraysOES();
DeleteVertexArraysOESImmediate& cmd =
*GetImmediateAs<DeleteVertexArraysOESImmediate>();
cmd.Init(1, &client_vertexarray_id_);
EXPECT_EQ(error::kNoError,
ExecuteImmediateCmd(cmd, sizeof(client_vertexarray_id_)));
EXPECT_EQ(GL_NO_ERROR, GetGLError());
EXPECT_TRUE(GetVertexArrayInfo(client_vertexarray_id_) == nullptr);
vertex_array_deleted_manually_ = true;
}
void DeleteVertexArraysOESImmediateInvalidArgs() {
DeleteVertexArraysOESImmediate& cmd =
*GetImmediateAs<DeleteVertexArraysOESImmediate>();
GLuint temp = kInvalidClientId;
cmd.Init(1, &temp);
EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
}
void DeleteBoundVertexArraysOESImmediateValidArgs() {
BindVertexArrayOESValidArgs();
AddExpectationsForDeleteBoundVertexArraysOES();
DeleteVertexArraysOESImmediate& cmd =
*GetImmediateAs<DeleteVertexArraysOESImmediate>();
cmd.Init(1, &client_vertexarray_id_);
EXPECT_EQ(error::kNoError,
ExecuteImmediateCmd(cmd, sizeof(client_vertexarray_id_)));
EXPECT_EQ(GL_NO_ERROR, GetGLError());
EXPECT_TRUE(GetVertexArrayInfo(client_vertexarray_id_) == nullptr);
vertex_array_deleted_manually_ = true;
}
void IsVertexArrayOESValidArgs() {
IsVertexArrayOES cmd;
cmd.Init(client_vertexarray_id_, shared_memory_id_, shared_memory_offset_);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(GL_NO_ERROR, GetGLError());
}
void IsVertexArrayOESInvalidArgsBadSharedMemoryId() {
IsVertexArrayOES cmd;
cmd.Init(
client_vertexarray_id_, kInvalidSharedMemoryId, shared_memory_offset_);
EXPECT_EQ(error::kOutOfBounds, ExecuteCmd(cmd));
cmd.Init(
client_vertexarray_id_, shared_memory_id_, kInvalidSharedMemoryOffset);
EXPECT_EQ(error::kOutOfBounds, ExecuteCmd(cmd));
}
void BindVertexArrayOESValidArgs() {
AddExpectationsForBindVertexArrayOES();
BindVertexArrayOES cmd;
cmd.Init(client_vertexarray_id_);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(GL_NO_ERROR, GetGLError());
}
void BindVertexArrayOESValidArgsNewId() {
BindVertexArrayOES cmd;
cmd.Init(kNewClientId);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(GL_INVALID_OPERATION, GetGLError());
}
};
INSTANTIATE_TEST_SUITE_P(Service,
GLES2DecoderVertexArraysOESTest,
::testing::Bool());
class GLES2DecoderEmulatedVertexArraysOESTest
: public GLES2DecoderVertexArraysOESTest {
public:
GLES2DecoderEmulatedVertexArraysOESTest() = default;
void SetUp() override {
InitState init;
init.bind_generates_resource = true;
init.use_native_vao = false;
InitDecoder(init);
SetupDefaultProgram();
AddExpectationsForGenVertexArraysOES();
GenHelper<GenVertexArraysOESImmediate>(client_vertexarray_id_);
vertex_array_deleted_manually_ = false;
}
};
INSTANTIATE_TEST_SUITE_P(Service,
GLES2DecoderEmulatedVertexArraysOESTest,
::testing::Bool());
// Test vertex array objects with native support
TEST_P(GLES2DecoderVertexArraysOESTest, GenVertexArraysOESImmediateValidArgs) {
GenVertexArraysOESImmediateValidArgs();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest,
GenVertexArraysOESImmediateValidArgs) {
GenVertexArraysOESImmediateValidArgs();
}
TEST_P(GLES2DecoderVertexArraysOESTest,
GenVertexArraysOESImmediateDuplicateOrNullIds) {
GenVertexArraysOESImmediateDuplicateOrNullIds();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest,
GenVertexArraysOESImmediateDuplicateOrNullIds) {
GenVertexArraysOESImmediateDuplicateOrNullIds();
}
TEST_P(GLES2DecoderVertexArraysOESTest,
GenVertexArraysOESImmediateInvalidArgs) {
GenVertexArraysOESImmediateInvalidArgs();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest,
GenVertexArraysOESImmediateInvalidArgs) {
GenVertexArraysOESImmediateInvalidArgs();
}
TEST_P(GLES2DecoderVertexArraysOESTest,
DeleteVertexArraysOESImmediateValidArgs) {
DeleteVertexArraysOESImmediateValidArgs();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest,
DeleteVertexArraysOESImmediateValidArgs) {
DeleteVertexArraysOESImmediateValidArgs();
}
TEST_P(GLES2DecoderVertexArraysOESTest,
DeleteVertexArraysOESImmediateInvalidArgs) {
DeleteVertexArraysOESImmediateInvalidArgs();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest,
DeleteVertexArraysOESImmediateInvalidArgs) {
DeleteVertexArraysOESImmediateInvalidArgs();
}
TEST_P(GLES2DecoderVertexArraysOESTest,
DeleteBoundVertexArraysOESImmediateValidArgs) {
DeleteBoundVertexArraysOESImmediateValidArgs();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest,
DeleteBoundVertexArraysOESImmediateValidArgs) {
DeleteBoundVertexArraysOESImmediateValidArgs();
}
TEST_P(GLES2DecoderVertexArraysOESTest, IsVertexArrayOESValidArgs) {
IsVertexArrayOESValidArgs();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest, IsVertexArrayOESValidArgs) {
IsVertexArrayOESValidArgs();
}
TEST_P(GLES2DecoderVertexArraysOESTest,
IsVertexArrayOESInvalidArgsBadSharedMemoryId) {
IsVertexArrayOESInvalidArgsBadSharedMemoryId();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest,
IsVertexArrayOESInvalidArgsBadSharedMemoryId) {
IsVertexArrayOESInvalidArgsBadSharedMemoryId();
}
TEST_P(GLES2DecoderVertexArraysOESTest, BindVertexArrayOESValidArgs) {
BindVertexArrayOESValidArgs();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest, BindVertexArrayOESValidArgs) {
BindVertexArrayOESValidArgs();
}
TEST_P(GLES2DecoderVertexArraysOESTest, BindVertexArrayOESValidArgsNewId) {
BindVertexArrayOESValidArgsNewId();
}
TEST_P(GLES2DecoderEmulatedVertexArraysOESTest,
BindVertexArrayOESValidArgsNewId) {
BindVertexArrayOESValidArgsNewId();
}
TEST_P(GLES2DecoderTest, BufferDataGLError) {
GLenum target = GL_ARRAY_BUFFER;
GLsizeiptr size = 4;
DoBindBuffer(GL_ARRAY_BUFFER, client_buffer_id_, kServiceBufferId);
BufferManager* manager = group().buffer_manager();
Buffer* buffer = manager->GetBuffer(client_buffer_id_);
ASSERT_TRUE(buffer != nullptr);
EXPECT_EQ(0, buffer->size());
EXPECT_CALL(*gl_, GetError())
.WillOnce(Return(GL_NO_ERROR))
.WillOnce(Return(GL_OUT_OF_MEMORY))
.RetiresOnSaturation();
EXPECT_CALL(*gl_, BufferData(target, size, _, GL_STREAM_DRAW))
.Times(1)
.RetiresOnSaturation();
BufferData cmd;
cmd.Init(target, size, 0, 0, GL_STREAM_DRAW);
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
EXPECT_EQ(GL_OUT_OF_MEMORY, GetGLError());
EXPECT_EQ(0, buffer->size());
}
// TODO(gman): BufferData
// TODO(gman): BufferDataImmediate
// TODO(gman): BufferSubData
// TODO(gman): BufferSubDataImmediate
} // namespace gles2
} // namespace gpu
| [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
741f6c6425541e45d26a0f4a60cbb97e700ec85f | a67aff40080148e6ef791cae0a983d3dfc51a3e5 | /LeetCode/tags/hash-table/find-words-that-can-be-formed-by-characters.cpp | d101ca1d2231f03e2313e81f04423f8be193fa72 | [] | no_license | llenroc/CP | 622b97676dafc80dbcb7054977fcb73702f370fe | fa4c5160f37b6cc550b062bf77b17b0484efc671 | refs/heads/master | 2023-03-28T17:25:28.548230 | 2021-04-06T11:09:14 | 2021-04-06T11:09:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 653 | cpp | #include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define MOD 1000000007
typedef vector<int> vi;
typedef vector<vector<int>> vii;
class Solution {
public:
int countCharacters(vector<string>& words, string chars) {
int f[26]={0}, ans=0;
for(char &c: chars) f[c-'a']++;
for(string &w:words) {
int wf[26]={0};
for(char &c:w)
wf[c-'a']++;
bool flag=true;
for(int i=0;i<26;i++) {
if(wf[i]>f[i])
flag=false;
}
if(flag)
ans += w.size();
}
return ans;
}
};
| [
"jitendra.iitp@gmail.com"
] | jitendra.iitp@gmail.com |
b51546de2f8bc1e7c66b7a48282d9733668de854 | 37d6f894d3152e77bb86497dd052f5efc924ce59 | /src/test/merkle_tests.cpp | 51119891a3d8e54f1232f33b763d2009ad8f4671 | [
"MIT"
] | permissive | xuyenvtram/C-Bit-0.12.1 | 099339e4fafcb7f56c4c4ff09502c86788dea371 | 8506fc10f79eb32dc2c0cb0223b45c050e0f2efd | refs/heads/master | 2021-01-20T03:53:08.517958 | 2017-04-27T11:43:19 | 2017-04-27T11:43:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,909 | cpp | // Copyright (c) 2015 The C-Bit Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "consensus/merkle.h"
#include "test/test_bitcoin.h"
#include "random.h"
#include <boost/test/unit_test.hpp>
BOOST_FIXTURE_TEST_SUITE(merkle_tests, TestingSetup)
// Older version of the merkle root computation code, for comparison.
static uint256 BlockBuildMerkleTree(const CBlock& block, bool* fMutated, std::vector<uint256>& vMerkleTree)
{
vMerkleTree.clear();
vMerkleTree.reserve(block.vtx.size() * 2 + 16); // Safe upper bound for the number of total nodes.
for (std::vector<CTransaction>::const_iterator it(block.vtx.begin()); it != block.vtx.end(); ++it)
vMerkleTree.push_back(it->GetHash());
int j = 0;
bool mutated = false;
for (int nSize = block.vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
{
for (int i = 0; i < nSize; i += 2)
{
int i2 = std::min(i+1, nSize-1);
if (i2 == i + 1 && i2 + 1 == nSize && vMerkleTree[j+i] == vMerkleTree[j+i2]) {
// Two identical hashes at the end of the list at a particular level.
mutated = true;
}
vMerkleTree.push_back(Hash(vMerkleTree[j+i].begin(), vMerkleTree[j+i].end(),
vMerkleTree[j+i2].begin(), vMerkleTree[j+i2].end()));
}
j += nSize;
}
if (fMutated) {
*fMutated = mutated;
}
return (vMerkleTree.empty() ? uint256() : vMerkleTree.back());
}
// Older version of the merkle branch computation code, for comparison.
static std::vector<uint256> BlockGetMerkleBranch(const CBlock& block, const std::vector<uint256>& vMerkleTree, int nIndex)
{
std::vector<uint256> vMerkleBranch;
int j = 0;
for (int nSize = block.vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
{
int i = std::min(nIndex^1, nSize-1);
vMerkleBranch.push_back(vMerkleTree[j+i]);
nIndex >>= 1;
j += nSize;
}
return vMerkleBranch;
}
static inline int ctz(uint32_t i) {
if (i == 0) return 0;
int j = 0;
while (!(i & 1)) {
j++;
i >>= 1;
}
return j;
}
BOOST_AUTO_TEST_CASE(merkle_test)
{
for (int i = 0; i < 32; i++) {
// Try 32 block sizes: all sizes from 0 to 16 inclusive, and then 15 random sizes.
int ntx = (i <= 16) ? i : 17 + (insecure_rand() % 4000);
// Try up to 3 mutations.
for (int mutate = 0; mutate <= 3; mutate++) {
int duplicate1 = mutate >= 1 ? 1 << ctz(ntx) : 0; // The last how many transactions to duplicate first.
if (duplicate1 >= ntx) break; // Duplication of the entire tree results in a different root (it adds a level).
int ntx1 = ntx + duplicate1; // The resulting number of transactions after the first duplication.
int duplicate2 = mutate >= 2 ? 1 << ctz(ntx1) : 0; // Likewise for the second mutation.
if (duplicate2 >= ntx1) break;
int ntx2 = ntx1 + duplicate2;
int duplicate3 = mutate >= 3 ? 1 << ctz(ntx2) : 0; // And for the the third mutation.
if (duplicate3 >= ntx2) break;
int ntx3 = ntx2 + duplicate3;
// Build a block with ntx different transactions.
CBlock block;
block.vtx.resize(ntx);
for (int j = 0; j < ntx; j++) {
CMutableTransaction mtx;
mtx.nLockTime = j;
block.vtx[j] = mtx;
}
// Compute the root of the block before mutating it.
bool unmutatedMutated = false;
uint256 unmutatedRoot = BlockMerkleRoot(block, &unmutatedMutated);
BOOST_CHECK(unmutatedMutated == false);
// Optionally mutate by duplicating the last transactions, resulting in the same merkle root.
block.vtx.resize(ntx3);
for (int j = 0; j < duplicate1; j++) {
block.vtx[ntx + j] = block.vtx[ntx + j - duplicate1];
}
for (int j = 0; j < duplicate2; j++) {
block.vtx[ntx1 + j] = block.vtx[ntx1 + j - duplicate2];
}
for (int j = 0; j < duplicate3; j++) {
block.vtx[ntx2 + j] = block.vtx[ntx2 + j - duplicate3];
}
// Compute the merkle root and merkle tree using the old mechanism.
bool oldMutated = false;
std::vector<uint256> merkleTree;
uint256 oldRoot = BlockBuildMerkleTree(block, &oldMutated, merkleTree);
// Compute the merkle root using the new mechanism.
bool newMutated = false;
uint256 newRoot = BlockMerkleRoot(block, &newMutated);
BOOST_CHECK(oldRoot == newRoot);
BOOST_CHECK(newRoot == unmutatedRoot);
BOOST_CHECK((newRoot == uint256()) == (ntx == 0));
BOOST_CHECK(oldMutated == newMutated);
BOOST_CHECK(newMutated == !!mutate);
// If no mutation was done (once for every ntx value), try up to 16 branches.
if (mutate == 0) {
for (int loop = 0; loop < std::min(ntx, 16); loop++) {
// If ntx <= 16, try all branches. Otherise, try 16 random ones.
int mtx = loop;
if (ntx > 16) {
mtx = insecure_rand() % ntx;
}
std::vector<uint256> newBranch = BlockMerkleBranch(block, mtx);
std::vector<uint256> oldBranch = BlockGetMerkleBranch(block, merkleTree, mtx);
BOOST_CHECK(oldBranch == newBranch);
BOOST_CHECK(ComputeMerkleRootFromBranch(block.vtx[mtx].GetHash(), newBranch, mtx) == oldRoot);
}
}
}
}
}
BOOST_AUTO_TEST_SUITE_END()
| [
"crzybluebilly@mailinator.com"
] | crzybluebilly@mailinator.com |
49b63da97bfbef5634233ae23b4d2c68bcfd1c31 | 938a706481520d93ff5d9a43861cad20ca569862 | /Exercise04-06/src/evaluation.cpp | b79a4a7abd7b970fa1f63d8e33df4842aa12ebb5 | [] | no_license | saurabheights/TDCV | aed4fd9f7e7917cdc8cbd65be6b9f26aca2610dd | a7b92584c1942d2cd54d341358242164b3448f98 | refs/heads/master | 2023-06-23T18:54:04.555476 | 2019-02-09T23:51:14 | 2019-02-09T23:51:14 | 157,727,313 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,068 | cpp | #include <opencv2/opencv.hpp>
#include <HogVisualization.h>
#include <RandomForest.h>
#include <iomanip>
#include <sstream>
#include <random>
#include <opencv2/core/utils/filesystem.hpp>
using namespace cv;
using namespace std;
// #define DISPLAY
vector<vector<pair<int, cv::Mat>>> loadTask3Dataset()
{
vector<pair<int, cv::Mat>> labelImagesTrain;
vector<pair<int, cv::Mat>> labelImagesTest;
labelImagesTrain.reserve(53 + 81 + 51 + 290);
labelImagesTest.reserve(44);
int numberOfTrainImages[6] = {53, 81, 51, 290};
int numberOfTestImages[1] = {44};
for (int i = 0; i < 4; i++)
{
for (size_t j = 0; j < numberOfTrainImages[i]; j++)
{
stringstream imagePath;
imagePath << string(PROJ_DIR) << "/data/task3/train/" << setfill('0') << setw(2) << i << "/" << setfill('0') << setw(4) << j << ".jpg";
string imagePathStr = imagePath.str();
// cout << imagePathStr << endl;
pair<int, cv::Mat> labelImagesTrainPair;
labelImagesTrainPair.first = i;
labelImagesTrainPair.second = imread(imagePathStr, cv::IMREAD_UNCHANGED).clone();
labelImagesTrain.push_back(labelImagesTrainPair);
}
}
for (size_t j = 0; j < numberOfTestImages[0]; j++)
{
stringstream imagePath;
imagePath << string(PROJ_DIR) << "/data/task3/test/" << setfill('0') << setw(4) << j << ".jpg";
string imagePathStr = imagePath.str();
// cout << imagePathStr << endl;
pair<int, cv::Mat> labelImagesTestPair;
labelImagesTestPair.first = -1; // These test images have no label
labelImagesTestPair.second = imread(imagePathStr, cv::IMREAD_UNCHANGED).clone();
labelImagesTest.push_back(labelImagesTestPair);
}
vector<vector<pair<int, cv::Mat>>> fullDataset;
fullDataset.push_back(labelImagesTrain);
fullDataset.push_back(labelImagesTest);
return fullDataset;
}
vector<vector<vector<int>>> getLabelAndBoundingBoxes()
{
int numberOfTestImages = 44;
vector<vector<vector<int>>> groundTruthBoundingBoxes;
for (size_t j = 0; j < numberOfTestImages; j++)
{
stringstream gtFilePath;
gtFilePath << string(PROJ_DIR) << "/data/task3/gt/" << setfill('0') << setw(4) << j << ".gt.txt";
string gtFilePathStr = gtFilePath.str();
fstream gtFile;
gtFile.open(gtFilePathStr);
if (!gtFile.is_open())
{
cout << "Failed to open file: " << gtFilePathStr << endl;
exit(-1);
}
std::string line;
vector<vector<int>> groundTruthBoundingBoxesPerImage;
while (std::getline(gtFile, line))
{
std::istringstream in(line);
vector<int> groundTruthLabelAndBoundingBox(5);
int temp;
for (size_t i = 0; i < 5; i++)
{
in >> temp;
groundTruthLabelAndBoundingBox.at(i) = temp;
}
groundTruthBoundingBoxesPerImage.push_back(groundTruthLabelAndBoundingBox);
}
groundTruthBoundingBoxes.push_back(groundTruthBoundingBoxesPerImage);
}
return groundTruthBoundingBoxes;
}
vector<float> computeTpFpFn(vector<Prediction> predictionsNMSVector,
vector<Prediction> groundTruthPredictions)
{
float tp = 0, fp = 0, fn = 0;
float matchThresholdIou = 0.3f;
for (auto &&myPrediction : predictionsNMSVector)
{
bool matchesWithAnyGroundTruth = false;
Rect myRect = myPrediction.bbox;
for (auto &&groundTruth : groundTruthPredictions)
{
if (groundTruth.label != myPrediction.label)
continue;
Rect gtRect = groundTruth.bbox;
float iouScore = ((myRect & gtRect).area() * 1.0f) / ((myRect | gtRect).area());
if (iouScore > matchThresholdIou)
{
matchesWithAnyGroundTruth = true;
break;
}
}
if (matchesWithAnyGroundTruth)
tp++;
else
fp++;
}
for (auto &&groundTruth : groundTruthPredictions)
{
bool isGtBboxMissed = true;
Rect gtRect = groundTruth.bbox;
for (auto &&myPrediction : predictionsNMSVector)
{
if (groundTruth.label != myPrediction.label)
continue;
Rect myRect = myPrediction.bbox;
float iouScore = ((myRect & gtRect).area() * 1.0f) / ((myRect | gtRect).area());
if (iouScore > matchThresholdIou)
{
isGtBboxMissed = false;
break;
}
}
if (isGtBboxMissed)
fn++;
}
vector<float> results;
results.push_back(tp);
results.push_back(fp);
results.push_back(fn);
return results;
}
vector<float> task3_core(string outputDir,
vector<pair<int, cv::Mat>> &testImagesLabelVector,
vector<vector<vector<int>>> &labelAndBoundingBoxes,
cv::Scalar *gtColors,
float NMS_MIN_IOU_THRESHOLD,
float NMS_MAX_IOU_THRESHOLD,
float NMS_CONFIDENCE_THRESHOLD)
{
ifstream predictionsFile(outputDir + "predictions.txt");
if (!predictionsFile.is_open())
{
cout << "Failed to open" << outputDir + "predictions.txt" << endl;
exit(-1);
}
float tp = 0, fp = 0, fn = 0;
for (size_t i = 0; i < testImagesLabelVector.size(); i++)
{
int fileNumber;
predictionsFile >> fileNumber; // Prediction file format: Starts with File number
assert(fileNumber == i);
// Ignore the ground truth data in predictions.txt. we already have it.
int tmp, tmp1;
predictionsFile >> tmp; // Ignore - number of ground truth
vector<Prediction> groundTruthPredictions;
for (size_t j = 0; j < tmp; j++)
{
Prediction groundTruthPrediction;
groundTruthPrediction.label = labelAndBoundingBoxes.at(i).at(j).at(0);
groundTruthPrediction.bbox.x = labelAndBoundingBoxes.at(i).at(j).at(1);
groundTruthPrediction.bbox.y = labelAndBoundingBoxes.at(i).at(j).at(2);
groundTruthPrediction.bbox.height = labelAndBoundingBoxes.at(i).at(j).at(3);
groundTruthPrediction.bbox.height -= groundTruthPrediction.bbox.x;
groundTruthPrediction.bbox.width = labelAndBoundingBoxes.at(i).at(j).at(4);
groundTruthPrediction.bbox.width -= groundTruthPrediction.bbox.y;
groundTruthPredictions.push_back(groundTruthPrediction);
predictionsFile >> tmp1; // Ignore - label;
for (size_t k = 0; k < 4; k++)
{
predictionsFile >> tmp1; // Ignore - rectangle
}
}
// Read prediction data
cv::Mat testImage = testImagesLabelVector.at(i).second;
vector<Prediction> predictionsVector; // Output of Hog Detection on ith test image
int numOfPredictions;
predictionsFile >> numOfPredictions;
predictionsVector.reserve(numOfPredictions);
for (size_t i = 0; i < numOfPredictions; i++)
{
Prediction prediction;
predictionsFile >> prediction.label;
predictionsFile >> prediction.bbox.x >> prediction.bbox.y >> prediction.bbox.height >> prediction.bbox.width;
predictionsFile >> prediction.confidence;
predictionsVector.push_back(prediction);
}
// Display all the bounding boxes before NonMaximal Suppression
#ifdef DISPLAY
cv::Mat testImageClone = testImage.clone(); // For drawing bbox
for (auto &&prediction : predictionsVector)
{
cv::rectangle(testImageClone, prediction.bbox, gtColors[prediction.label]);
}
cv::imshow("TestImageOutput", testImageClone);
cv::waitKey(100);
#endif
// Apply NonMaximal Suppression
cv::Mat testImageNms1Clone = testImage.clone(); // For drawing bbox
cv::Mat testImageNmsClone = testImage.clone(); // For drawing bbox
vector<Prediction> predictionsNMSVector;
predictionsNMSVector.reserve(20); // 20 should be enough.
// Ignore boxes with low threshold.
std::vector<Prediction>::iterator iter;
for (iter = predictionsVector.begin(); iter != predictionsVector.end(); ) {
if (iter->confidence < NMS_CONFIDENCE_THRESHOLD)
iter = predictionsVector.erase(iter);
else
++iter;
}
// std::sort(predictionsVector.begin(), predictionsVector.end(), greater_than_key());
for (auto &&prediction : predictionsVector)
{
cv::rectangle(testImageNms1Clone, prediction.bbox, gtColors[prediction.label]);
// Check if NMS already has a cluster which shares NMS_IOU_THRESHOLD area with current prediction.bbox and both have same label.
bool clusterFound = false;
for (auto &&nmsCluster : predictionsNMSVector)
{
if (nmsCluster.label == prediction.label)
{ // Only if same label
Rect &rect1 = prediction.bbox;
Rect &rect2 = nmsCluster.bbox;
float iouScore = ((rect1 & rect2).area() * 1.0f) / ((rect1 | rect2).area());
if (iouScore > NMS_MAX_IOU_THRESHOLD) // Merge the two bounding boxes
{
nmsCluster.bbox = rect1 | rect2;
nmsCluster.confidence = max(prediction.confidence, nmsCluster.confidence);
clusterFound = true;
break;
}
// else if (iouScore > NMS_MIN_IOU_THRESHOLD) // ToDo: Improve this.
// {
// // Drop the bounding box with lower confidence
// if (nmsCluster.confidence < prediction.confidence)
// {
// nmsCluster = prediction;
// }
// clusterFound = true;
// break;
// }
}
}
// If no NMS cluster found, add the prediction as a new cluster
if (!clusterFound)
predictionsNMSVector.push_back(prediction);
}
// Prediction file format: Next is N Lines of Labels and cv::Rect
for (auto &&prediction : predictionsNMSVector)
cv::rectangle(testImageNmsClone, prediction.bbox, gtColors[prediction.label]);
#ifdef DISPLAY
// Display all the bounding boxes before NonMaximal Suppression
cv::imshow("TestImage NMS BBox Filter", testImageNms1Clone);
cv::imshow("TestImage NMS Output", testImageNmsClone);
cv::waitKey(500);
#endif
// cout << "Boxes count: " << predictionsVector.size();
// cout << "\nNMS boxes count: " << predictionsNMSVector.size() << '\n';
#ifdef DISPLAY
// Display all ground truth boxes
cv::Mat testImageGtClone = testImage.clone(); // For drawing bbox
for (size_t j = 0; j < groundTruthPredictions.size(); j++)
cv::rectangle(testImageGtClone, groundTruthPredictions.at(j).bbox, gtColors[groundTruthPredictions.at(j).label]);
cv::imshow("Ground Truth", testImageGtClone);
cv::waitKey(500);
#endif
// Write NMS output image
stringstream nmsOutputFilePath;
nmsOutputFilePath << outputDir << setfill('0') << setw(4) << i << "-NMSOutput" << "-Confidence-" << NMS_CONFIDENCE_THRESHOLD << ".png";
string nmsOutputFilePathStr = nmsOutputFilePath.str();
cv::imwrite(nmsOutputFilePathStr, testImageNmsClone);
// Compute precision and recall using groundTruthPredictions and predictionsNMSVector
#ifdef DISPLAY
cv::waitKey(0);
#endif
vector<float> tpFpFn = computeTpFpFn(predictionsNMSVector, groundTruthPredictions);
#ifdef DISPLAY
cv::waitKey(0);
#endif
tp += tpFpFn[0];
fp += tpFpFn[1];
fn += tpFpFn[2];
}
float precision = tp / (tp + fp);
float recall = tp / (tp + fn);
predictionsFile.close();
vector<float> precisionRecallValue;
precisionRecallValue.push_back(precision);
precisionRecallValue.push_back(recall);
return precisionRecallValue;
}
int main()
{
// Load all the images
vector<vector<pair<int, cv::Mat>>> dataset = loadTask3Dataset();
// Load the ground truth bounding boxes values
vector<vector<vector<int>>> labelAndBoundingBoxes = getLabelAndBoundingBoxes();
vector<pair<int, cv::Mat>> trainingImagesLabelVector = dataset.at(0);
vector<pair<int, cv::Mat>> testImagesLabelVector = dataset.at(1);
cv::Scalar gtColors[4];
gtColors[0] = cv::Scalar(255, 0, 0);
gtColors[1] = cv::Scalar(0, 255, 0);
gtColors[2] = cv::Scalar(0, 0, 255);
gtColors[3] = cv::Scalar(255, 255, 0);
float NMS_MAX_IOU_THRESHOLD = 0.5f; // If above this threshold, merge the two bounding boxes.
float NMS_MIN_IOU_THRESHOLD = 0.1f; // If above this threshold, drop the bounding boxes with lower confidence.
// float NMS_CONFIDENCE_THRESHOLD = 0.75f;
// Loop over multiple values.
string outputDir;
cout << "Enter path to dir of predictions.txt: ";
// cin >> outputDir;
outputDir = "/media/sk/6a4a41c4-a920-46db-84c5-69e0450c2dd0/mega/TUM-Study/TrackingAndDetectionInComputerVision/Exercises/Exercise04-06/output/Trees-50_subsetPercent-50-undersampling_0-augment_1-strideX_2-strideY_2-NMS_MIN_0.1-NMS_Max_0.5-NMS_CONF_0.6";
if (outputDir.at(outputDir.length() - 1) != '/')
{
outputDir += '/';
}
#ifdef DISPLAY
cv::namedWindow("TestImageOutput");
cv::namedWindow("TestImage NMS Output");
cv::namedWindow("Ground Truth");
cv::namedWindow("TestImage NMS BBox Filter");
cv::waitKey(0);
#endif
cout << "\n";
ofstream outputFile;
outputFile.open(outputDir+"predictionRecallValues.csv");
if (!outputFile.is_open())
{
cout << "Failed to open" << outputDir+"predictionRecallValues.csv" << endl;
exit(-1);
}
outputFile << "Precision,Recall"<< endl;
for (int confidence = 0; confidence <= 100; confidence += 5) // If float is used, it may overshoot 1.0 - floating point error
{
float NMS_CONFIDENCE_THRESHOLD = confidence / 100.0f;
vector<float> precisionRecallValue = task3_core(outputDir, testImagesLabelVector, labelAndBoundingBoxes, gtColors, NMS_MIN_IOU_THRESHOLD, NMS_MAX_IOU_THRESHOLD, NMS_CONFIDENCE_THRESHOLD);
cout << "NMS_CONFIDENCE_THRESHOLD: " << NMS_CONFIDENCE_THRESHOLD << ", Precision: " << precisionRecallValue[0] << ", Recall: " << precisionRecallValue[1] << endl;
outputFile << precisionRecallValue[0] << "," << precisionRecallValue[1] << endl;
}
outputFile.close();
cout << "\n";
} | [
"khandujasaurabh@gmail.com"
] | khandujasaurabh@gmail.com |
a19df37b84f2c59a90d27e61d998123aa0655d93 | 1473d671ba397ada8164ee44612b68130a94d7e6 | /translator.h | 62bdfa0d2bdf1ed48b97ef97283c6c7db2c16e88 | [] | no_license | vmoolle/qtsummit2015demo | 53e7b071609d0d3e5c979a99345dd863fd334dfe | f3196bc6ef6fdeaa10f2415a2fb0020c214a4d9e | refs/heads/master | 2021-01-10T01:29:14.379545 | 2015-10-07T21:31:08 | 2015-10-07T21:31:08 | 43,747,797 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 687 | h | #ifndef TRANSLATOR
#define TRANSLATOR
#include "activerequest.h"
class TranslateRequest: public ActiveRequest
{
Q_OBJECT
public:
~TranslateRequest();
QVariant value() const;
private slots:
void onLanguageChange();
private:
friend class Translator;
TranslateRequest(Translator *translator, const QString& text);
Translator *m_translator;
QString m_text;
};
class Translator: public QObject
{
Q_OBJECT
signals:
void languageChange();
public:
Translator(QObject *parent=0);
~Translator();
Q_INVOKABLE QObject* translate(const QString& text);
protected:
bool eventFilter(QObject *obj, QEvent *event);
};
#endif // TRANSLATOR
| [
"vmoolle@ics.com"
] | vmoolle@ics.com |
af4d4355b06b388845c85479409986e48819e57b | c1d03c773c8f21354f8ae77affc0b0e706320d5e | /Week 5/Programming Assignment 1/src/inheritance.cpp | 3aee3a5e92d7765eb3a1106b07ad43efb6ed220c | [] | no_license | ProfessionalLearner/c-plus-plus-yellow-belt | a86aa83a75c0d2cb4fb0c0a6234d6a55df298229 | 3d80e6937e57d345f4f6b86d555bc3eed9223015 | refs/heads/master | 2023-01-11T01:24:19.524487 | 2020-11-09T15:34:19 | 2020-11-09T15:34:19 | 311,380,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 314 | cpp | #include <iostream>
using namespace std;
class Animal {
public:
Animal(const string& name)
: Name(name) {
}
const string Name;
};
class Dog : public Animal {
public:
Dog(const string& name) : Animal(name) {
}
void Bark() {
cout << Name << " barks: woof!" << endl;
}
};
| [
"arnur.nogaibekov@mail.utoronto.ca"
] | arnur.nogaibekov@mail.utoronto.ca |
e370f839e54434581a3f3a41563007a094b3b9c2 | 209bd94caa54ad6aeb9f6f208199608da8eeeb58 | /src/text.cpp | c48ff1bb997d13b2f781018bd4c571b6c6191f7e | [
"Apache-2.0"
] | permissive | PuceBaboon/ESP_Zork | d966915e3eeaa85565ba55011170d7418fcb1def | 6eb26cac03f112b9c7cd1c28013a4784d1308017 | refs/heads/master | 2021-01-19T10:26:47.419698 | 2018-02-18T00:33:54 | 2018-02-18T00:33:54 | 87,866,958 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,534 | cpp | /* Jzip V2.1 Infocom/Inform Zcode Format Interpreter
* --------------------------------------------------------------------
* Copyright (c) 2000 John D. Holder. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
*
* --------------------------------------------------------------------
*/
/*
* Modified by Louis Davis April, 2012
* Arduino support.
*
*/
/*
* text.c
*
* Text manipulation routines
*
*/
#include "ztypes.h"
/*
* decode_text
*
* Convert ZSCII encoded text to ASCII. Text is encoded by squeezing each character
* into 5 bits. 3 x 5 bit encoded characters can fit in one word with a spare
* bit left over. The spare bit is used to signal to end of a string. The 5 bit
* encoded characters can either be actual character codes or prefix codes that
* modifier the following code.
*
*/
void decode_text(unsigned long *address) {
int i, synonym_flag, synonym = 0, zscii_flag, zscii = 0;
int data, code, shift_state, shift_lock;
unsigned long addr;
/* Set state variables */
shift_state = 0;
shift_lock = 0;
zscii_flag = 0;
synonym_flag = 0;
do {
/*
* Read one 16 bit word. Each word contains three 5 bit codes. If the
* high bit is set then this is the last word in the string.
*/
data = read_data_word(address);
for (i = 10; i >= 0; i -= 5) {
/* Get code, high bits first */
code = (data >> i) & 0x1f;
/* Synonym codes */
if (synonym_flag) {
synonym_flag = 0;
synonym = (synonym - 1) * 64;
addr =
(unsigned long) get_word(h_synonyms_offset + synonym +
(code * 2)) * 2;
decode_text(&addr);
shift_state = shift_lock;
}
/* ZSCII codes */
else if (zscii_flag) {
/*
* If this is the first part ZSCII ten-bit code then remember it.
* Because the codes are only 5 bits you need two codes to make
* one eight bit ASCII character. The first code contains the
* top 5 bits (although only 3 bits are used at the moment).
* The second code contains the bottom 5 bits.
*/
if (zscii_flag++ == 1) {
zscii = code << 5;
}
/*
* If this is the second part of a ten-bit ZSCII code then assemble the
* character from the two codes and output it.
*/
else {
zscii_flag = 0;
write_zchar((unsigned char) (zscii | code));
}
}
/* Character codes */
else if (code > 5) {
code -= 6;
/*
* If this is character 0 in the punctuation set then the next two
* codes make a ten-bit ZSCII character. (Std. Sec. 3.4)
*/
if (shift_state == 2 && code == 0) {
zscii_flag = 1;
}
/*
* If this is character 1 in the punctuation set then this
* is a new line.
*/
else if (shift_state == 2 && code == 1 && h_type > V1) {
z_new_line();
}
/*
* This is a normal character so select it from the character
* table appropriate for the current shift state.
*/
else {
write_zchar(pgm_read_byte
(&lookup_table[shift_state][code]));
}
shift_state = shift_lock;
}
/* Special codes 0 to 5 */
else {
/* Space: 0 Output a space character. */
if (code == 0) {
write_zchar(' ');
} else {
/* The use of the synonym and shift codes is the only
* difference between the different versions.
*/
if (h_type < V3) {
/* Newline or synonym: 1
* Output a newline character or set synonym flag.
*/
if (code == 1) {
if (h_type == V1) {
z_new_line();
} else {
synonym_flag = 1;
synonym = code;
}
} else {
/*
* Shift keys: 2, 3, 4 or 5
*
* Shift keys 2 & 3 only shift the next character and can be used regardless of
* the state of the shift lock. Shift keys 4 & 5 lock the shift until reset.
*
* The following code implements the the shift code state transitions:
* +-------------+-------------+-------------+-------------+
* | Shift State | Lock State |
* +-------------+-------------+-------------+-------------+-------------+
* | Code | 2 | 3 | 4 | 5 |
* +-------------+-------------+-------------+-------------+-------------+
* | lowercase | uppercase | punctuation | uppercase | punctuation |
* | uppercase | punctuation | lowercase | punctuation | lowercase |
* | punctuation | lowercase | uppercase | lowercase | uppercase |
* +-------------+-------------+-------------+-------------+-------------+
*/
if (code < 4) {
shift_state = (shift_lock + code + 2) % 3;
} else {
shift_lock = shift_state =
(shift_lock + code) % 3;
}
}
} else { /* not V3 */
/*
* Synonym table: 1, 2 or 3
*
* Selects which of three synonym tables the synonym
* code following in the next code is to use.
*/
if (code < 4) {
synonym_flag = 1;
synonym = code;
}
/*
* Shift key: 4 or 5
*
* Selects the shift state for the next character,
* either uppercase (4) or punctuation (5). The shift
* state automatically gets reset back to lowercase for
* V3+ games after the next character is output.
*
*/
else {
shift_state = code - 3;
shift_lock = 0;
}
}
}
}
}
}
while ((data & 0x8000) == 0);
} /* decode_text */
/*
* encode_text
*
* Pack a string into up to 9 codes or 3 words.
*
*/
void encode_text(int len, unsigned long s_addr, ZINT16 * buffer) {
int i, j, prev_table, table, next_table, shift_state, code,
codes_count;
char codes[9];
/* Initialise codes count and prev_table number */
codes_count = 0;
prev_table = 0;
/* Scan do the string one character at a time */
while (len--) {
/*
* Set the table and code to be the ASCII character inducer, then
* look for the character in the three lookup tables. If the
* character isn't found then it will be an ASCII character.
*/
table = 2;
code = 0;
for (i = 0; i < 3; i++) {
for (j = 0; j < 26; j++) {
if (pgm_read_byte(&lookup_table[i][j]) == get_byte(s_addr)) {
table = i;
code = j;
}
}
}
/*
* Type 1 and 2 games differ on how the shift keys are used. Switch
* now depending on the game version.
*/
if (h_type < V3) {
/*
* If the current table is the same as the previous table then
* just store the character code, otherwise switch tables.
*/
if (table != prev_table) {
/* Find the table for the next character */
next_table = 0;
if (len) {
next_table = 2;
for (i = 0; i < 3; i++) {
for (j = 0; j < 26; j++) {
if (pgm_read_byte(&lookup_table[i][j]) ==
get_byte(s_addr + 1))
next_table = i;
}
}
}
/*
* Calculate the shift key. This magic. See the description in
* decode_text for more information on version 1 and 2 shift
* key changes.
*/
shift_state = (table + (prev_table * 2)) % 3;
/* Only store the shift key if there is a change in table */
if (shift_state) {
/*
* If the next character as the uses the same table as
* this character then change the shift from a single
* shift to a shift lock. Also remember the current
* table for the next iteration.
*/
if (next_table == table) {
shift_state += 2;
prev_table = table;
} else
prev_table = 0;
/* Store the code in the codes buffer */
if (codes_count < 9)
codes[codes_count++] = (char) (shift_state + 1);
}
}
} else {
/*
* For V3 games each uppercase or punctuation table is preceded
* by a separate shift key. If this is such a shift key then
* put it in the codes buffer.
*/
if (table && codes_count < 9)
codes[codes_count++] = (char) (table + 3);
}
/* Put the character code in the code buffer */
if (codes_count < 9)
codes[codes_count++] = (char) (code + 6);
/*
* Cannot find character in table so treat it as a literal ASCII
* code. The ASCII code inducer (code 0 in table 2) is followed by
* the high 3 bits of the ASCII character followed by the low 5
* bits to make 8 bits in total.
*/
if (table == 2 && code == 0) {
if (codes_count < 9)
codes[codes_count++] =
(char) ((get_byte(s_addr) >> 5) & 0x07);
if (codes_count < 9)
codes[codes_count++] = (char) (get_byte(s_addr) & 0x1f);
}
/* Advance to next character */
s_addr++;
}
/* Pad out codes with shift 5's */
while (codes_count < 9)
codes[codes_count++] = 5;
/* Pack codes into buffer */
buffer[0] =
((ZINT16) codes[0] << 10) | ((ZINT16) codes[1] << 5) | (ZINT16)
codes[2];
buffer[1] =
((ZINT16) codes[3] << 10) | ((ZINT16) codes[4] << 5) | (ZINT16)
codes[5];
buffer[2] =
((ZINT16) codes[6] << 10) | ((ZINT16) codes[7] << 5) | (ZINT16)
codes[8];
/* Terminate buffer at 6 or 9 codes depending on the version */
if (h_type < V4)
buffer[1] |= 0x8000;
else
buffer[2] |= 0x8000;
} /* encode_text */
/*
* write_zchar
*
* High level Z-code character output routine. Translates Z-code characters to
* machine specific character(s) before output. If it cannot translate it then
* use the default translation. If the character is still unknown then display
* a '?'.
*
*/
void write_zchar(int c) {
char xlat_buffer[MAX_TEXT_SIZE + 1];
int i;
c = (unsigned int) (c & 0xff);
/* If character is not special character then just write it */
if (c >= ' ' && c <= '~') {
write_char(c);
} else if (c == 13) {
write_char('\r');
} else {
/* Put default character in translation buffer */
xlat_buffer[0] = '?';
xlat_buffer[1] = '\0';
/* If translation fails then supply a default */
if (1) {
if (c > 23 && c < 28) {
/* Arrow keys - these must the keyboard keys used for input */
static char xlat[4] = { '\\', '/', '+', '-' };
xlat_buffer[0] = xlat[c - 24];
xlat_buffer[1] = '\0';
} else if (c == 0) {
/* Null - print nothing */
xlat_buffer[0] = '\0';
} else if (c < 32) {
/* Some other control character: print an octal escape. */
xlat_buffer[0] = '\\';
xlat_buffer[1] = (char) ('0' + ((c >> 6) & 7));
xlat_buffer[2] = (char) ('0' + ((c >> 3) & 7));
xlat_buffer[3] = (char) ('0' + (c & 7));
xlat_buffer[4] = '\0';
} else if (c > 178 && c < 219) {
/* IBM line drawing characters to ASCII characters */
if (c == 179)
xlat_buffer[0] = '|';
else if (c == 186)
xlat_buffer[0] = '#';
else if (c == 196)
xlat_buffer[0] = '-';
else if (c == 205)
xlat_buffer[0] = '=';
else
xlat_buffer[0] = '+';
xlat_buffer[1] = '\0';
} else if (c > 154 && c < 164) {
/* German character replacements */
static char xlat[] = "aeoeueAeOeUess>><<";
xlat_buffer[0] = xlat[((c - 155) * 2) + 0];
xlat_buffer[1] = xlat[((c - 155) * 2) + 1];
xlat_buffer[2] = '\0';
}
}
/* Substitute translated characters */
for (i = 0; xlat_buffer[i] != '\0'; i++) {
write_char((unsigned char) xlat_buffer[i]);
}
}
} /* write_zchar */
/*
* write_char
*
* High level character output routine. The write_char routine is slightly
* complicated by the fact that the output can be limited by a fixed character
* count, as well as, filling up the buffer.
*
*/
void write_char(int c) {
static unsigned char line_count = 0;
if (screen_window == TEXT_WINDOW) {
if (c == '\n')
line_count = 0;
else {
line_count++;
if (line_count >= 80) {
line_count = 1;
Serial.write('\n');
}
}
Serial.write(c);
}
} /* write_char */
/*
* write_string
*
* Output a string
*
*/
void write_string(const prog_char * s) {
while (*s)
write_char(*s++);
} /* write_string */
/*
* z_output_stream
*
* Set various printing modes. These can be: disabling output, scripting and
* redirecting output. Redirection is peculiar. I use it to format the status
* line for V1 to V3 games, otherwise it wasn't used. V4 games format the
* status line themselves in an internal buffer in the writeable data area.
* To use the normal text decoding routines they have to redirect output to
* the writeable data area. This is done by passing in a buffer pointer.
* The first word of the buffer will receive the number of characters
* written since the output was redirected. The remainder of the buffer
* will contain the redirected text.
*
*/
void z_output_stream(zword_t type, zword_t option) {
if ((ZINT16) type == 3) {
screen_window = STATUS_WINDOW;
} else if ((ZINT16) type == -3) {
screen_window = TEXT_WINDOW;
}
} /* z_output_stream */
/*
* z_print_char
*
* Write a character.
*
*/
void z_print_char(zword_t c) {
write_zchar((char) c);
} /* z_print_char */
/*
* z_print_num
*
* Write a signed number.
*
*/
void z_print_num(zword_t num) {
int i, count;
char buffer[10];
i = (ZINT16) num;
sprintf(buffer, "%d", i);
count = strlen(buffer);
for (i = 0; i < count; i++)
write_char(buffer[i]);
} /* z_print_num */
/*
* z_print_paddr
*
* Print using a packed address. Packed addresses are used to save space and
* reference addresses outside of the data region.
*
*/
void z_print_paddr(zword_t packed_address) {
unsigned long address;
/* Convert packed address to real address */
address = (unsigned long) packed_address *story_scaler;
/* Decode and output text at address */
decode_text(&address);
} /* z_print_paddr */
/*
* z_print_addr
*
* Print using a real address. Real addresses are just offsets into the
* data region.
*
*/
void z_print_addr(zword_t offset) {
unsigned long address;
address = offset;
/* Decode and output text at address */
decode_text(&address);
} /* z_print_addr */
/*
* z_print_obj
*
* Print an object description. Object descriptions are stored as ASCII
* strings at the front of the property list for the object.
*
*/
void z_print_obj(zword_t obj) {
zword_t offset;
unsigned long address;
/* Check for NULL object */
if (obj == 0)
return;
/* Calculate address of property list */
offset = get_object_address(obj);
offset += (h_type < V4) ? O3_PROPERTY_OFFSET : O4_PROPERTY_OFFSET;
/* Read the property list address and skip the count byte */
address = (unsigned long) get_word(offset) + 1;
/* Decode and output text at address */
decode_text(&address);
} /* z_print_obj */
/*
* z_print
*
* Print the string embedded in the instruction stream at this point. All
* strings that do not need to be referenced by address are embedded in the
* instruction stream. All strings that can be refered to by address are placed
* at the end of the code region and referenced by packed address.
*
*/
void z_print(void) {
/* Decode and output text at PC */
decode_text(&pc);
} /* z_print */
/*
* z_print_ret
*
* Print a string embedded in the instruction stream as with print_literal,
* except flush the output buffer and write a new line. After this return from
* the current subroutine with a status of true.
*
*/
void z_print_ret(void) {
z_print();
z_new_line();
z_ret(TRUE);
} /* z_print_ret */
/*
* z_new_line
*
* Simply flush the current contents of the output buffer followed by a new
* line.
*
*/
void z_new_line(void) {
write_char('\n');
write_char('\r');
} /* z_new_line */
/*
* print_time
*
* Print the time as HH:MM [am|pm]. This is a bit language dependent and can
* quite easily be changed. If you change the size of the time string output
* then adjust the status line position in display_status_line.
*
*/
void print_time(int hours, int minutes) {
int pm_indicator;
/* Remember if time is pm */
pm_indicator = (hours < 12) ? OFF : ON;
/* Convert 24 hour clock to 12 hour clock */
hours %= 12;
if (hours == 0)
hours = 12;
/* Write hour right justified */
if (hours < 10)
write_char(' ');
z_print_num((zword_t) hours);
/* Write hours/minutes separator */
write_char(':');
/* Write minutes zero filled */
if (minutes < 10)
write_char('0');
z_print_num((zword_t) minutes);
/* Write the am or pm string */
if (pm_indicator == ON)
write_string(" pm");
else
write_string(" am");
} /* print_time */
/*
* z_encode
*
* Convert text to packed text.
*
*/
void z_encode(zword_t word_addr, zword_t word_length, zword_t word_offset,
zword_t dest_addr) {
unsigned long addr;
int i;
ZINT16 word[3];
addr = word_addr + word_offset;
/* Encode the word */
encode_text(word_length, addr, word);
/* Move the encoded word, byte swapped, into the destination buffer */
for (i = 0; i < 3; i++, dest_addr += 2)
set_word(dest_addr, word[i]);
} /* z_encode */
| [
"PuceBaboon@users.noreply.github.com"
] | PuceBaboon@users.noreply.github.com |
13f1542da5fba98d74b986a2cb5d22b20e3d19ac | eb46dbb888d661f8577da2ef3fdc744ffac1e5e4 | /modules/video/opencv_perf_video_pch.cpp | df1b402c2cbadc54c0b04640cfed48256be8244f | [] | no_license | gzhangx/opencv.builds | 251d692767285d2dd9a84e934618fa348417a9fe | 760936d44450a6660efb750cf8ad5726c33a4504 | refs/heads/master | 2023-08-03T09:46:02.559701 | 2021-09-17T22:19:37 | 2021-09-17T22:19:37 | 406,840,538 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 68 | cpp | #include "D:/work/acccn/opencv/modules/video/perf/perf_precomp.hpp"
| [
"gzhangx@hotmail.com"
] | gzhangx@hotmail.com |
04c1f1f86736eb34fed616351a9fab454fb6e76b | ad273708d98b1f73b3855cc4317bca2e56456d15 | /aws-cpp-sdk-kinesisvideo/source/model/TagResourceResult.cpp | 068434f3adb044b2fe226c60a85c8e8ea2c3b501 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | novaquark/aws-sdk-cpp | b390f2e29f86f629f9efcf41c4990169b91f4f47 | a0969508545bec9ae2864c9e1e2bb9aff109f90c | refs/heads/master | 2022-08-28T18:28:12.742810 | 2020-05-27T15:46:18 | 2020-05-27T15:46:18 | 267,351,721 | 1 | 0 | Apache-2.0 | 2020-05-27T15:08:16 | 2020-05-27T15:08:15 | null | UTF-8 | C++ | false | false | 1,273 | cpp | /*
* Copyright 2010-2017 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.
*/
#include <aws/kinesisvideo/model/TagResourceResult.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <aws/core/AmazonWebServiceResult.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/UnreferencedParam.h>
#include <utility>
using namespace Aws::KinesisVideo::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
using namespace Aws;
TagResourceResult::TagResourceResult()
{
}
TagResourceResult::TagResourceResult(const Aws::AmazonWebServiceResult<JsonValue>& result)
{
*this = result;
}
TagResourceResult& TagResourceResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result)
{
AWS_UNREFERENCED_PARAM(result);
return *this;
}
| [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
913d1521dfeb8961fbe8b3baaee43c32d4ab6df9 | c1c70168fe5ed0c9c81e08915a647961200d1766 | /CodeForce/Problems/1552A.cpp | cf2b1d2995743d40aa01e23a96616b197e212e89 | [] | no_license | cies96035/CPP_programs | 046fa81e1d7d6e5594daee671772dbfdbdfb2870 | 9877fb44c0cd6927c7bfe591bd595886b1531501 | refs/heads/master | 2023-08-30T15:53:57.064865 | 2023-08-27T10:01:12 | 2023-08-27T10:01:12 | 250,568,619 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 465 | cpp | #include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, a, b) for(int i = a; i < b; i++)
int t, n, cnt;
string s1, s2;
int main()
{
cin.tie(0);
ios_base::sync_with_stdio(0);
cin >> t;
while(t--){
cin >> n >> s1;
s2 = s1;
sort(s1.begin(), s1.end());
cnt = 0;
rep(i, 0, s1.size()){
cnt += (s1[i] != s2[i]);
}
cout << cnt << '\n';
}
return 0;
} | [
"39860649+cies96035@users.noreply.github.com"
] | 39860649+cies96035@users.noreply.github.com |
12d71d49a59afaf793be43cc86bf4455e7db1dcb | de3377ea3356e5e167a1046ae200331b12e87998 | /RISBJfunctions.cpp | af5072108fc94de8e46f2d34b3daf16dd96e2743 | [] | no_license | Frupla/Risky-project | 536058e605226b07932927abef441ef5823fdb04 | 3d1339ee7208fb298d4a343658020a6145413964 | refs/heads/master | 2020-04-04T18:52:08.905608 | 2018-12-05T09:21:51 | 2018-12-05T09:21:51 | 156,182,905 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,319 | cpp | #include <iostream>
#include <stdint.h>
using namespace std;
union InstructionUnion {
uint32_t instruction;
struct {
uint32_t opcode: 7;
uint32_t rd: 5;
uint32_t funct3: 3;
uint32_t instruction.I_s.rs1: 5;
uint32_t rs2: 5;
uint32_t funct7: 7;
} R_s;
struct {
uint32_t opcode: 7;
uint32_t rd: 5;
uint32_t funct3: 3;
uint32_t instruction.I_s.rs1: 5;
uint32_t instruction.I_s.imm: 12;
} I_s;
struct {
uint32_t opcode: 7;
uint32_t instruction.I_s.imm4_0: 5;
uint32_t funct3: 3;
uint32_t instruction.I_s.rs1: 5;
uint32_t rs2: 5;
uint32_t instruction.I_s.imm11_5: 7;
} S_s;
struct {
uint32_t opcode: 7;
uint32_t instruction.I_s.imm11: 1;
uint32_t instruction.I_s.imm4_1: 4;
uint32_t funct3: 3;
uint32_t instruction.I_s.rs1: 5;
uint32_t rs2: 5;
uint32_t instruction.I_s.imm10_5: 6;
uint32_t instruction.I_s.imm12: 1;
} B_s;
struct
{
uint32_t opcode: 7;
uint32_t rd: 5;
uint32_t instruction.I_s.imm31_12: 20;
} U_s;
struct
{
uint32_t opcode: 7;
uint32_t rd: 5;
uint32_t instruction.I_s.imm19_12: 8;
uint32_t instruction.I_s.imm11: 1;
uint32_t instruction.I_s.imm10_1: 10;
uint32_t instruction.I_s.imm20: 1;
}J_s;
};
int R(uint32_t instruction){
//struct R_s r = (struct R_s)instruction;
/*char opcode = instruction & 0x0000007f; //removes all but last 7 bit, 7f = 0111 1111
char rd = (instruction >> 7) & 0x0000001f; //shifts down to rd in bottom 5 bits, and then zeros all but last 5 bits, 1f = 0001 1111
char funct3 = (instruction >> (7+5)) & 0x00000007; //shifts down to funct3 in bottom 3 bits, and then zeros all but last 3 bits, 0x0f = 0000 0111
char instruction.I_s.rs1 = (instruction >> (7+5+3)) & 0x0000001f; //shifts down to instruction.I_s.rs1 in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
char rs2 = (instruction >> (7+5+3+5)) & 0x0000001f; //shifts down to rs2 in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
char funct7 = (instruction >> (7+5+3+5+5)) & 0x0000007f; //shifts down to funct7 in bottom 7 bits, and then zeros all but last 7 bits, 0x7f = 0111 1111
*/
InstructionUnion r;
r.instruction = instruction;
//cout << (int)(r.R_s.opcode) << '\n' << (int)(r.R_s.rd) << '\n' << (int)(r.R_s.funct3) << '\n' << (int)(r.R_s.instruction.I_s.rs1) << '\n' << (int)(r.R_s.rs2) << '\n' << (int)(r.R_s.funct7) << endl;
return 0;
}
int I(uint32_t instruction){
/*
char opcode = instruction & 0x0000007f; //zeros all but last 7 bit, 0x7f = 0111 1111
char rd = (instruction >> 7) & 0x0000001f; //shifts down to rd in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
char funct3 = (instruction >> (7+5)) & 0x00000007; //shifts down to funct3 in bottom 3 bits, and then zeros all but last 5 bits, 0x0f = 0000 0111
char instruction.I_s.rs1 = (instruction >> (7+5+3)) & 0x0000001f; //shifts down to instruction.I_s.rs1 in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
uint32_t instruction.I_s.imm = (instruction >> (7+5+3+5)) & 0x00000fff; //shifts down to instruction.I_s.imm in bottom 12 bits, and then zeros all but last 12 bits
*/
InstructionUnion i;
i.instruction = instruction;
//cout << (int)(i.I_s.opcode) << '\n' << (int)(i.I_s.rd) << '\n' << (int)(i.I_s.funct3) << '\n' << (int)(i.I_s.instruction.I_s.rs1) << '\n' << (int)(i.I_s.instruction.I_s.imm) << endl;
return 0;
}
int S(uint32_t instruction){
/*
char opcode = instruction & 0x0000007f; //zeros all but last 7 bit, 0x7f = 0111 1111
char instruction.I_s.imm1 = (instruction >> 7) & 0x0000001f; //shifts down to instruction.I_s.imm[4:0] in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
char funct3 = (instruction >> (7+5)) & 0x00000007; //shifts down to funct3 in bottom 3 bits, and then zeros all but last 5 bits, 0x0f = 0000 0111
char instruction.I_s.rs1 = (instruction >> (7+5+3)) & 0x0000001f; //shifts down to instruction.I_s.rs1 in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
char rs2 = (instruction >> (7+5+3+5)) & 0x0000001f; //shifts down to rs2 in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
uint32_t instruction.I_s.imm2 = (instruction >> (7+5+3+5+5)) & 0x0000007f; //shifts down to instruction.I_s.imm[11:5] in bottom 7 bits, and then zeros all but last 7 bits
*/
InstructionUnion s;
s.instruction = instruction;
uint32_t instruction.I_s.imm = ((uint32_t)(s.S_s.instruction.I_s.imm11_5) << 5) | s.S_s.instruction.I_s.imm4_0;
//cout << (int)opcode << '\n' << (int)instruction.I_s.imm1 << '\n' << (int)funct3 << '\n' << (int)instruction.I_s.rs1 << '\n' << (int)rs2 << '\n' << (int)instruction.I_s.imm2 << '\n';
return 0;
}
int B(uint32_t instruction){
/*char opcode = instruction & 0x0000007f; //zeros all but last 7 bit, 0x7f = 0111 1111
char instruction.I_s.imm11 = (instruction >> 7) & 0x00000001; //shifts down to instruction.I_s.imm[11] in bottom bit, and then zeros all but last bits, 0x01 = 0000 0001
char instruction.I_s.imm4_1 = (instruction >> 8) & 0x0000000f; //shifts down to instruction.I_s.imm[4:1] in bottom bits, and then zeros all but last 4 bits, 0x0f = 0000 1111
char funct3 = (instruction >> (7+5)) & 0x00000007; //shifts down to funct3 in bottom 3 bits, and then zeros all but last 5 bits, 0x0f = 0000 0111
char instruction.I_s.rs1 = (instruction >> (7+5+3)) & 0x0000001f; //shifts down to instruction.I_s.rs1 in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
char rs2 = (instruction >> (7+5+3+5)) & 0x0000001f; //shifts down to rs2 in bottom 5 bits, and then zeros all but last 5 bits, 0x1f = 0001 1111
uint32_t instruction.I_s.imm10_5 = (instruction >> (7+5+3+5+5)) & 0x0000003f; //shifts down to instruction.I_s.imm[10:5] in bottom 6 bits, and then zeros all but last 6 bits
uint32_t instruction.I_s.imm12 = (instruction >> (7+5+3+5+5+6)) & 0x00000001; //shifts down to instruction.I_s.imm[12] in bottom bit, and then zeros all but last bit
*/
InstructionUnion b;
b.instruction = instruction;
uint32_t instruction.I_s.imm = ((uint32_t)(b.B_s.instruction.I_s.imm12) << 12)| ((uint32_t)(b.B_s.instruction.I_s.imm11) << 11) | ((uint32_t)(b.B_s.instruction.I_s.imm10_5) << 5) | ((uint32_t)(b.B_s.instruction.I_s.imm4_1) << 1); //the pieced together instruction.I_s.imm, under the assuption that instruction.I_s.imm[0] = 0;
cout << (int)instruction.I_s.imm << '\n' << (int)(b.B_s.rs2) << '\n' << (int)(b.B_s.instruction.I_s.rs1) << '\n' << (int)(b.B_s.funct3) << '\n' << (int)(b.B_s.opcode ) << '\n';
return 0;
}
int U(uint32_t instruction){
/*
char opcode = instruction & 0x0000007f; //removes all but last 7 bit, 7f = 0111 1111
char rd = (instruction >> 7) & 0x0000001f; //shifts down to rd in bottom 5 bits, and then zeros all but last 5 bits, 1f = 0001 1111
uint32_t instruction.I_s.imm = instruction & 0xfffff000; //sets instruction.I_s.imm[31:12] in the top 20 bits and zeros the remaning 12
*/
InstructionUnion u;
u.instruction = instruction;
uint32_t instruction.I_s.imm = (uint32_t)(u.U_s.instruction.I_s.imm) << 12;
//cout <<(int)opcode << '\n' << (int)rd << '\n' << (int)instruction.I_s.imm << '\n';
return 0;
}
int J(uint32_t instruction){
/*
char opcode = instruction & 0x0000007f; //removes all but last 7 bit, 7f = 0111 1111
char rd = (instruction >> 7) & 0x0000001f; //shifts down to rd in bottom 5 bits, and then zeros all but last 5 bits, 1f = 0001 1111
uint32_t instruction.I_s.imm19_12= (instruction >> (7+5)) & 0x000000ff; //shifts down to instruction.I_s.imm[19:12] in bottom 8 bits, and then zeros all but last 8 bits
char instruction.I_s.imm11 = (instruction >> (7+5+8)) & 0x00000001; //shifts down to instruction.I_s.imm[11] in bottom bit, and then zeros all but last bits, 0x01 = 0000 0001
uint32_t instruction.I_s.imm10_1 = (instruction >> (7+5+8+1)) & 0x000003ff; //shifts down to instruction.I_s.imm[10_1] in bottom 10 bits, and then zeros all but last 10 bits, 0x3ff = 0011 1111 1111
uint32_t instruction.I_s.imm20 = (instruction >> (7+5+8+1+10)) & 0x00000001; //shifts down to instruction.I_s.imm[20] in bottom bit, and then zeros all but last bits, 0x01 = 0000 0001
*/
InstructionUnion j;
j.instruction = instruction;
uint32_t instruction.I_s.imm = ((uint32_t)(j.J_s.instruction.I_s.imm20) << 20) | ((uint32_t)(j.J_s.instruction.I_s.imm19_12) << 12) | ((uint32_t)(j.J_s.instruction.I_s.imm11) << 11) | ((uint32_t)(j.J_s.instruction.I_s.imm10_1) << 1); //the pieced together instruction.I_s.imm, under the assuption that instruction.I_s.imm[0] = 0;
//cout << (int)opcode << '\n' << (int)rd << '\n' << (int)instruction.I_s.imm << '\n'; //<< (int)instruction.I_s.imm10_1 << '\n' << (int)instruction.I_s.imm20 << '\n';
return 0;
}
int main () {
//R(0x408505b3);// 0100 0000 1000 0101 0000 0101 1011 0011 = 0x408505b3 - corresponds to 32, 8, 10, 0, 11, 51
//I(0x893491c9);// 1000 1001 0011 0100 1001 0001 1100 1001 = 0x893491c9, instruction.I_s.imm 1000 1001 0011 = 2195,instruction.I_s.rs1 0100 1 = 9, funct3 001 =1,rd 0001 1=3, opcode 100 1001=73
//S(0x408505b3);// opcode 51, instruction.I_s.imm1 11, funct3 0, instruction.I_s.rs1 = 10, rs2 = 8, instruction.I_s.imm2 = 32
B(0x408505b3);// instruction.I_s.imm12:0 - instruction.I_s.imm10_5: 100 000 rs2: 0 1000=8 - instruction.I_s.rs1: 0 1010=10 - funct3: 000=0 -instruction.I_s.imm4_1: 0101=5 instruction.I_s.imm11: 1 - opcode: 011 0011=51
// instruction.I_s.imm: 0 1100 0000 1010 = 3082 rs2: 8 - instruction.I_s.rs1: 10 - funct3: 0 opcode: 51
//U(0x408505b3); // opcode: 51, rd: 11, instruction.I_s.imm: 264272
//J(0x408505b3); //opcode: 51, rd: 11,
// instruction.I_s.imm20: 0- instruction.I_s.imm10_1: 100 0000 100 - instruction.I_s.imm11: 0 - instruction.I_s.imm19_12: 0101 0000
// instruction.I_s.imm = 0 0101 0000 0100 0000 1000 = 328712
return 0;
}
| [
"s163905@student.dtu.dk"
] | s163905@student.dtu.dk |
fa44d615786ca427430ca0cb3d21c438b1a8e57a | 6cecdbbe6eb721a0e43c07ed2b31bdcc9e553c55 | /Sail2D/Runs/first_flatplate_150_12/case/7000/phi | c1f035e49fddc8bdbd0e7591fd98ba50a345c158 | [] | no_license | kiranhegde/Gmsh | 799d8cbefb7dd3f3d35ded15b40292fd3ede6468 | fefa906dabfddd9b87cc1f0256df81b4735420e1 | refs/heads/master | 2021-01-19T23:21:57.414954 | 2015-01-21T02:02:37 | 2015-01-21T02:02:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 334,696 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "7000";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
29324
(
-0.0105801
-0.0119153
0.0132253
0.00927028
-0.0117134
-0.01088
0.0120134
-0.01269
-0.00993242
0.0109089
-0.0135239
-0.00906484
0.00989873
-0.0142311
-0.00827014
0.00897734
-0.0148244
-0.00754163
0.00813495
-0.0153164
-0.00687209
0.00736408
-0.0157121
-0.0062593
0.00665503
-0.0160178
-0.00569581
0.00600155
-0.0162319
-0.00517767
0.00539176
-0.0163582
-0.00469843
0.0048247
-0.0163942
-0.00425579
0.00429175
-0.0163401
-0.00384554
0.00379146
-0.0162005
-0.00346203
0.00332248
-0.0159778
-0.00310399
0.0028813
-0.0156782
-0.00277077
0.00247116
-0.0153144
-0.00245603
0.00209226
-0.0148949
-0.00216081
0.00174128
-0.0144307
-0.00188464
0.00142045
-0.0139364
-0.00162338
0.00112903
-0.0134173
-0.00138075
0.000861641
-0.012892
-0.00115194
0.000626695
-0.0123864
-0.000945154
0.000439508
-0.00075663
-0.0120172
0.000387405
-0.00945959
-0.0107747
0.00831898
-0.0104364
-0.00990312
-0.0112621
-0.00910674
-0.0119546
-0.00837232
-0.0125238
-0.00770101
-0.0129825
-0.00708294
-0.0133387
-0.00651584
-0.0136073
-0.0059907
-0.0137932
-0.00550997
-0.0139072
-0.00506359
-0.0139533
-0.00465236
-0.0139389
-0.00427017
-0.0138674
-0.00391711
-0.0137407
-0.00358868
-0.0135622
-0.00328251
-0.0133335
-0.00299951
-0.0130543
-0.00273523
-0.0127252
-0.00248989
-0.0123443
-0.00226556
-0.0119105
-0.00205717
-0.0114245
-0.00186673
-0.0108796
-0.0016968
-0.010279
-0.00154577
-0.00141269
-0.00962295
-0.00845506
-0.00977729
0.00745767
-0.00930375
-0.00905443
-0.0100197
-0.00839075
-0.0106089
-0.00778312
-0.0110891
-0.0072208
-0.0114655
-0.00670658
-0.0117496
-0.00623175
-0.0119484
-0.00579192
-0.0120702
-0.00538819
-0.0121217
-0.00501209
-0.012108
-0.00466602
-0.0120355
-0.00434268
-0.0119087
-0.0040439
-0.0117339
-0.00376346
-0.011512
-0.00350441
-0.0112501
-0.00326139
-0.010951
-0.00303435
-0.0106171
-0.00282379
-0.0102536
-0.00262909
-0.0098614
-0.00244936
-0.00944502
-0.00228311
-0.00900726
-0.00213455
-0.00855344
-0.00199959
-0.00188339
-0.00808274
-0.00756381
-0.00890294
0.00668946
-0.00830616
-0.00831208
-0.00892596
-0.00777095
-0.00943788
-0.0072712
-0.00984817
-0.00681051
-0.0101679
-0.00638686
-0.0104037
-0.00599599
-0.010564
-0.00563153
-0.010656
-0.0052962
-0.0106837
-0.0049844
-0.0106562
-0.00469354
-0.0105764
-0.00442245
-0.0104509
-0.00416938
-0.0102811
-0.00393326
-0.0100731
-0.00371241
-0.00982995
-0.00350459
-0.0095527
-0.00331159
-0.00924675
-0.00312974
-0.00891471
-0.00296112
-0.00855894
-0.00280513
-0.00818171
-0.00266034
-0.00778702
-0.00252925
-0.00737593
-0.00241068
-0.00230603
-0.00695329
-0.00677208
-0.00812772
0.00599685
-0.00742563
-0.00765853
-0.00797306
-0.00722352
-0.00841864
-0.00682562
-0.00877569
-0.00645345
-0.00905024
-0.00611231
-0.00925049
-0.00579574
-0.00938253
-0.0054995
-0.00945296
-0.00522577
-0.00946869
-0.00496867
-0.00943347
-0.00472876
-0.00935116
-0.00450477
-0.0092279
-0.00429264
-0.00906645
-0.00409471
-0.00887046
-0.0039084
-0.00864399
-0.00373106
-0.00839081
-0.00356478
-0.00811177
-0.00340878
-0.00781096
-0.00326193
-0.00749024
-0.00312585
-0.00715324
-0.00299735
-0.00680061
-0.00288187
-0.00643602
-0.00277527
-0.00267934
-0.00606271
-0.00606626
-0.00744117
0.0053797
-0.00664839
-0.0070764
-0.00712942
-0.00674249
-0.00752599
-0.00642905
-0.00783877
-0.00614067
-0.00808023
-0.00587085
-0.00825428
-0.00562169
-0.0083676
-0.00538618
-0.0084269
-0.00516647
-0.00843508
-0.00496049
-0.00839791
-0.00476593
-0.00832031
-0.00458237
-0.00820526
-0.00440769
-0.00805612
-0.00424384
-0.00787805
-0.00408647
-0.00767157
-0.00393754
-0.00743941
-0.00379694
-0.00718672
-0.00366147
-0.00691307
-0.00353559
-0.00662382
-0.0034151
-0.00631747
-0.0033037
-0.0060004
-0.00319894
-0.00567142
-0.00310425
-0.00301763
-0.00533313
-0.00544213
-0.00682791
0.00482887
-0.00596037
-0.00655816
-0.00639128
-0.00631158
-0.00674202
-0.00607832
-0.00702011
-0.00586257
-0.00723224
-0.00565872
-0.00738638
-0.00546755
-0.00748681
-0.00528575
-0.00753493
-0.00511835
-0.00754015
-0.00495527
-0.0075052
-0.00480088
-0.00743255
-0.00465502
-0.007326
-0.00451424
-0.00718968
-0.00438016
-0.00702587
-0.00425028
-0.00683776
-0.00412565
-0.00662913
-0.00400557
-0.00639854
-0.00389205
-0.00615202
-0.00378211
-0.00588898
-0.00367814
-0.00561364
-0.00357904
-0.00532489
-0.00348768
-0.0050266
-0.00340255
-0.00332377
-0.00472046
-0.00489075
-0.00627603
0.00433887
-0.00535107
-0.00609784
-0.00573762
-0.00592503
-0.00604922
-0.00576672
-0.00629907
-0.00561272
-0.00649025
-0.00546754
-0.00662524
-0.00533256
-0.00671252
-0.00519847
-0.00675685
-0.00507402
-0.00675949
-0.00495262
-0.00672513
-0.00483524
-0.0066588
-0.00472136
-0.00656221
-0.00461082
-0.00643926
-0.00450311
-0.00629015
-0.00439939
-0.00612003
-0.00429576
-0.00592863
-0.00419698
-0.00572059
-0.00410009
-0.00549633
-0.00400638
-0.00525852
-0.00391595
-0.00500757
-0.00382998
-0.00474646
-0.0037488
-0.00447681
-0.0036722
-0.00360263
-0.00419795
-0.00439582
-0.00578731
0.0039071
-0.00481318
-0.00568048
-0.00515613
-0.00558208
-0.00543996
-0.0054829
-0.00566159
-0.00539109
-0.00583086
-0.00529826
-0.00595471
-0.0052087
-0.00603106
-0.00512212
-0.00607161
-0.00503347
-0.00607315
-0.00495108
-0.00604252
-0.00486587
-0.00598154
-0.00478235
-0.00589325
-0.00469911
-0.00577991
-0.00461646
-0.00564577
-0.00453353
-0.00549003
-0.0044515
-0.00531731
-0.0043697
-0.0051295
-0.0042879
-0.00492512
-0.00421076
-0.00470942
-0.00413165
-0.00448136
-0.00405805
-0.00424509
-0.00398507
-0.00399896
-0.00391833
-0.00385559
-0.003746
-0.00395736
-0.00534393
0.00351398
-0.00433096
-0.00530688
-0.0046431
-0.00526994
-0.00489507
-0.00523093
-0.00509675
-0.00518941
-0.00525017
-0.00514485
-0.00535958
-0.00509928
-0.00543047
-0.00505124
-0.00546278
-0.00500115
-0.00546786
-0.004946
-0.00543842
-0.00489531
-0.00538278
-0.00483798
-0.00530213
-0.00477976
-0.00519974
-0.00471884
-0.00507847
-0.0046548
-0.00493731
-0.00459265
-0.00477955
-0.00452746
-0.0046099
-0.00445755
-0.00442369
-0.00439697
-0.00422643
-0.00432891
-0.00402056
-0.00426391
-0.00380514
-0.00420049
-0.00358344
-0.00414002
-0.00335309
-0.00408595
-0.0107983
-0.00066169
-0.000557179
-0.00984971
-0.000680619
-0.000267967
-0.0090122
-0.000734484
-0.000103026
-0.00824493
-0.000806679
3.94165e-05
-0.00753218
-0.000896726
0.000183967
-0.00686271
-0.00100401
0.000334546
-0.00623347
-0.00112738
0.000498133
-0.00564177
-0.00126911
0.000677408
-0.00508655
-0.00142926
0.000874034
-0.00457164
-0.00160739
0.00109248
-0.00409755
-0.00180691
0.00133282
-0.00366847
-0.00202815
0.00159908
-0.00328934
-0.00227189
0.00189276
-0.00296393
-0.00254145
0.00221603
-0.0026964
-0.00283908
0.00257155
-0.00249316
-0.00316645
0.0029632
-0.00235846
-0.00352782
0.00339312
-0.00229785
-0.0039262
0.00386559
-0.00231786
-0.00436651
0.00438652
-0.0024264
-0.00485169
0.00496023
-0.00263192
-0.00538741
0.00559293
-0.00294433
-0.00597897
0.00629138
-0.00337576
-0.00663173
0.00706316
-0.00735471
0.0079166
-0.00393765
-0.0089351
-0.00134954
-0.00825929
-0.00135643
-0.00761488
-0.00137889
-0.00700236
-0.0014192
-0.00642132
-0.00147777
-0.0058728
-0.00155253
-0.00535774
-0.00164244
-0.00487584
-0.00175101
-0.00442832
-0.00187678
-0.00401525
-0.00202046
-0.00364038
-0.00218178
-0.00330384
-0.00236469
-0.00300792
-0.00256781
-0.00275532
-0.00279405
-0.00255011
-0.00304429
-0.0023949
-0.00332166
-0.00229619
-0.00362653
-0.00225785
-0.00396453
-0.00228886
-0.00433551
-0.00239586
-0.00474469
-0.00258731
-0.00519596
-0.00287399
-0.00569229
-0.00326654
-0.00623918
-0.00684408
-0.00377718
-0.00760194
-0.00183034
-0.00712175
-0.00183662
-0.00664368
-0.00185696
-0.00617491
-0.00188797
-0.00571807
-0.00193461
-0.00527737
-0.00199322
-0.00485332
-0.0020665
-0.00444991
-0.00215442
-0.00406877
-0.00225791
-0.0037129
-0.00237634
-0.00338456
-0.00251013
-0.00308709
-0.00266216
-0.00282415
-0.00283075
-0.00259968
-0.00301851
-0.00241625
-0.00322772
-0.00227985
-0.00345806
-0.00219458
-0.0037118
-0.00216632
-0.0039928
-0.00220091
-0.00430092
-0.00230504
-0.00464056
-0.00248604
-0.00501496
-0.00275261
-0.00542572
-0.00311367
-0.00587812
-0.00637761
-0.00358014
-0.00652913
-0.0022545
-0.0061095
-0.00225625
-0.00569807
-0.00226839
-0.00529713
-0.00228891
-0.0049091
-0.00232265
-0.00453509
-0.00236723
-0.00417738
-0.0024242
-0.00383792
-0.00249387
-0.00351857
-0.00257726
-0.00322307
-0.00267184
-0.00295119
-0.00278201
-0.00270724
-0.0029061
-0.00249375
-0.00304425
-0.00231329
-0.00319898
-0.00217097
-0.00337004
-0.00206907
-0.00355996
-0.00201177
-0.0037691
-0.00200529
-0.00399928
-0.00205342
-0.00425279
-0.00216351
-0.00453048
-0.00234215
-0.00483632
-0.00259582
-0.00517204
-0.00293375
-0.00554019
-0.00594584
-0.00336552
-0.00568784
-0.00262937
-0.00532025
-0.00262384
-0.00496237
-0.00262627
-0.00461361
-0.00263766
-0.00427749
-0.00265876
-0.00395383
-0.0026909
-0.00364456
-0.00273348
-0.00335099
-0.00278744
-0.00307724
-0.002851
-0.00282271
-0.00292637
-0.00259127
-0.00301345
-0.00238495
-0.00311243
-0.00220623
-0.00322296
-0.00205713
-0.00334808
-0.0019419
-0.00348527
-0.00186384
-0.00363802
-0.0018265
-0.00380644
-0.00183424
-0.00399154
-0.00189292
-0.00419411
-0.00200606
-0.00441734
-0.0021809
-0.00466148
-0.00242383
-0.00492911
-0.00274153
-0.00522249
-0.00554486
-0.00314251
-0.00499484
-0.00296765
-0.00466567
-0.00295301
-0.00434571
-0.00294623
-0.00403575
-0.00294762
-0.00373744
-0.00295707
-0.00345173
-0.00297661
-0.00317954
-0.00300567
-0.00292401
-0.00304297
-0.00268493
-0.00309008
-0.00246486
-0.00314644
-0.00226535
-0.00321296
-0.00208946
-0.00328832
-0.00193827
-0.00337415
-0.00181588
-0.00347047
-0.00172366
-0.00357749
-0.00166452
-0.00369716
-0.00164337
-0.00382759
-0.00166348
-0.00397142
-0.0017284
-0.00412919
-0.00184406
-0.00430167
-0.0020145
-0.00449104
-0.00224582
-0.0046978
-0.0025443
-0.004924
-0.00517138
-0.00291778
-0.00441479
-0.00327332
-0.00411735
-0.00325045
-0.00382984
-0.00323374
-0.00355333
-0.00322413
-0.0032866
-0.00322381
-0.0030318
-0.00323141
-0.00279012
-0.00324735
-0.00256338
-0.00326971
-0.00235242
-0.00330105
-0.0021593
-0.00333955
-0.00198573
-0.00338653
-0.00183387
-0.00344018
-0.00170584
-0.00350217
-0.00160273
-0.00357359
-0.00152754
-0.00365267
-0.00148398
-0.00374073
-0.00147368
-0.00383789
-0.00150136
-0.00394374
-0.00157055
-0.00406001
-0.0016851
-0.00418711
-0.00184976
-0.00432638
-0.00206943
-0.00447813
-0.00235006
-0.00464337
-0.0048249
-0.00269654
-0.00392054
-0.00355073
-0.00365117
-0.00351982
-0.00339138
-0.00349353
-0.00314121
-0.00347431
-0.00290223
-0.00346278
-0.00267412
-0.00345952
-0.0024578
-0.00346367
-0.00225542
-0.00347209
-0.00206782
-0.00348864
-0.00189747
-0.00350991
-0.00174537
-0.00353862
-0.00161296
-0.00357259
-0.00150191
-0.00361323
-0.00141484
-0.00366065
-0.00135343
-0.00371408
-0.00132009
-0.00377407
-0.00131898
-0.003839
-0.00135213
-0.00391059
-0.00142295
-0.00398919
-0.00153526
-0.00407481
-0.00169271
-0.00416892
-0.00190028
-0.00427057
-0.00216305
-0.00438059
-0.00450157
-0.00248639
-0.00349356
-0.00380317
-0.00324963
-0.00376375
-0.00301413
-0.00372903
-0.00278919
-0.00369925
-0.00257327
-0.0036787
-0.00236795
-0.00366485
-0.002173
-0.00365862
-0.0019907
-0.00365439
-0.00182355
-0.00365579
-0.00167267
-0.00366079
-0.00153803
-0.00367327
-0.00142203
-0.0036886
-0.00132586
-0.00370939
-0.00125133
-0.00373518
-0.00120023
-0.00376518
-0.00117591
-0.00379839
-0.00117965
-0.00383525
-0.00121578
-0.00387446
-0.00128647
-0.0039185
-0.00139524
-0.00396604
-0.00154498
-0.00401918
-0.00173989
-0.00407565
-0.00198478
-0.0041357
-0.00420232
-0.00228404
-0.00312346
-0.00403279
-0.00290113
-0.00398608
-0.00268749
-0.00394267
-0.00248468
-0.00390206
-0.0022907
-0.00387268
-0.00210587
-0.00384969
-0.00192894
-0.00383555
-0.00176486
-0.00381847
-0.00161387
-0.00380678
-0.00147888
-0.00379577
-0.00135986
-0.00379229
-0.00125784
-0.00379062
-0.00117369
-0.00379354
-0.00110832
-0.00380055
-0.00106559
-0.00380792
-0.00104703
-0.00381695
-0.00105564
-0.00382665
-0.00109372
-0.00383638
-0.00116313
-0.00384909
-0.00126631
-0.00386285
-0.00140733
-0.00387816
-0.00158902
-0.00389396
-0.00181804
-0.00390669
-0.00209392
-0.00392643
0.00195555
-0.00132004
0.00142132
-0.00205684
0.00185707
-0.00129686
0.00139535
0.00176815
-0.00123786
0.00132678
0.00169343
-0.00115321
0.00122794
0.00163632
-0.00105202
0.00110912
0.00159774
-0.000940541
0.000979126
0.0015768
-0.000824052
0.000844993
0.00157082
-0.000705741
0.000711721
0.00157736
-0.000589698
0.000583154
0.0015919
-0.000477126
0.00046259
0.00161067
-0.000369494
0.00035072
0.00162931
-0.000267993
0.000249356
0.00164322
-0.000172228
0.000158316
0.00164823
-8.256e-05
7.75461e-05
0.00163883
2.36311e-06
7.03895e-06
0.00160945
8.38398e-05
-5.44543e-05
0.00155398
0.000162856
-0.000107388
0.00146373
0.000243146
-0.000152902
0.00132927
0.000327977
-0.000193515
0.00113628
0.0004242
-0.00023121
0.000864419
0.000540695
-0.000268835
0.000482407
0.00069377
-0.00031176
-6.0661e-05
0.000910517
-0.000367449
0.00124401
-0.000868759
-0.00043591
0.0017812
-0.00122875
-0.00187249
0.00168754
-0.0012032
0.00160027
-0.00115059
0.00152519
-0.00107814
0.00146457
-0.000991395
0.00141915
-0.00089512
0.00138813
-0.000793038
0.00137026
-0.00068787
0.00136214
-0.000581577
0.00136133
-0.000476312
0.00136341
-0.000371572
0.00136479
-0.000269375
0.00136011
-0.000167549
0.0013448
-6.72511e-05
0.00131321
3.39565e-05
0.00125917
0.000137878
0.00117557
0.000246458
0.00105462
0.00036409
0.000886602
0.000496
0.000660449
0.000650352
0.000363407
0.000837738
-1.56077e-05
0.00107278
-0.000479203
0.00137411
0.0017564
-0.000991598
0.0016088
-0.00113393
-0.00170363
0.00151616
-0.00111056
0.00143032
-0.00106474
0.00135484
-0.00100266
0.0012921
-0.000928649
0.00124198
-0.000845008
0.0012037
-0.000754759
0.00117564
-0.000659809
0.00115598
-0.00056191
0.00114097
-0.000461307
0.00112824
-0.000358843
0.00111291
-0.000254045
0.00109239
-0.000147021
0.0010611
-3.59602e-05
0.00101482
8.02311e-05
0.000948413
0.000204286
0.000855399
0.000339472
0.000729354
0.000490135
0.000563178
0.000662176
0.000349415
0.000864114
8.17954e-05
0.00110536
-0.000244104
0.00139868
-0.000622652
0.00175266
0.00217142
-0.00103767
0.00144064
-0.00104113
-0.00153343
0.00134951
-0.00101943
0.00126537
-0.000980602
0.00119048
-0.00092777
0.00112576
-0.000863934
0.00107242
-0.000791663
0.0010293
-0.000711643
0.000995282
-0.000625788
0.000967661
-0.000534289
0.000944974
-0.000438621
0.000924031
-0.000337899
0.000901974
-0.000231988
0.000874854
-0.000119901
0.000839227
-3.34121e-07
0.000790601
0.000128858
0.000724541
0.000270346
0.000635911
0.000428102
0.000519605
0.000606441
0.000369295
0.000812486
0.000179912
0.0010535
-5.41126e-05
0.00133938
-0.000335165
0.00167974
-0.000664279
0.00208178
0.00254833
-0.00104119
0.00128049
-0.000952388
-0.00136924
0.00119359
-0.000932528
0.00111264
-0.000899658
0.00104011
-0.000855239
0.000977595
-0.000801417
0.000923963
-0.00073803
0.000879682
-0.000667363
0.000843226
-0.000589331
0.000813448
-0.00050451
0.000787499
-0.000412672
0.00076375
-0.00031415
0.000739029
-0.000207268
0.000710568
-9.14398e-05
0.000674717
3.5517e-05
0.000627822
0.000175753
0.000565863
0.000332304
0.000484921
0.000509045
0.000379805
0.000711557
0.000245839
0.000946452
7.82423e-05
0.00122109
-0.000127563
0.00154519
-0.000376386
0.00192856
-0.000672527
0.00237792
0.0028901
-0.0010143
0.00113419
-0.000866003
-0.00122057
0.00105202
-0.000850357
0.000976169
-0.000823811
0.000907857
-0.000786926
0.000847607
-0.000741167
0.000796646
-0.000687069
0.00075359
-0.000624307
0.000717632
-0.000553373
0.000687335
-0.000474213
0.000661321
-0.000386658
0.000636985
-0.000289813
0.000612545
-0.000182828
0.000584823
-6.37183e-05
0.000550817
6.95235e-05
0.000507382
0.000219188
0.000450812
0.000388874
0.000377092
0.000582764
0.000282451
0.000806199
0.000163187
0.00106572
1.33864e-05
0.00137089
-0.000170916
0.00172949
-0.000394943
0.00215259
-0.000661473
0.00264445
0.00320565
-0.00097702
0.00100158
-0.000786327
-0.00108126
0.000925637
-0.00077441
0.00085506
-0.000753234
0.000792101
-0.000723967
0.000736441
-0.000685507
0.000688651
-0.00063928
0.000648256
-0.000583911
0.000614299
-0.000519416
0.000585532
-0.000445446
0.000560048
-0.000361175
0.000536497
-0.000266262
0.000513077
-0.000159409
0.000487332
-3.79725e-05
0.000456381
0.000100474
0.000416656
0.000258913
0.000364942
0.000440588
0.000298403
0.000649303
0.000213038
0.000891564
0.00010447
0.00117428
-2.99e-05
0.00150526
-0.000196241
0.00189583
-0.000398197
0.00235454
-0.000643005
0.00288925
0.00349257
-0.000929927
0.000883836
-0.000712325
-0.000957838
0.000814287
-0.00070486
0.000750164
-0.000689112
0.000692389
-0.000666191
0.000641445
-0.000634563
0.00059727
-0.000595105
0.000560228
-0.000546869
0.000528645
-0.000487834
0.000501695
-0.000418496
0.0004779
-0.00033738
0.000455787
-0.000244149
0.000433847
-0.000137468
0.000410303
-1.44285e-05
0.000382375
0.000128402
0.000346726
0.000294562
0.000300114
0.000487201
0.00023914
0.000710276
0.000161252
0.000969453
6.31997e-05
0.00127234
-5.79977e-05
0.00162646
-0.000208346
0.00204618
-0.000392483
0.00253868
-0.000614894
0.00311167
0.00375798
-0.000880305
0.000780467
-0.000644674
-0.000848118
0.000717116
-0.000641509
0.000659216
-0.000631212
0.000606613
-0.000613588
0.00056012
-0.00058807
0.000520312
-0.000555297
0.000485992
-0.000512549
0.000457454
-0.000459295
0.000432914
-0.000393956
0.000410939
-0.000315405
0.000390104
-0.000223314
0.00036975
-0.000117114
0.000348177
7.14469e-06
0.000323496
0.000153083
0.000291714
0.000326344
0.000249652
0.000529262
0.00019482
0.000765108
0.000124206
0.00104007
3.46144e-05
0.00136193
-7.36779e-05
0.00173475
-0.000210434
0.00218294
-0.000377933
0.00270618
-0.000583288
0.00331702
0.00399973
-0.000825034
0.000689581
-0.000750571
-0.000583684
0.000632334
-0.000584262
0.000579957
-0.000578836
0.000532935
-0.000566566
0.000491297
-0.000546432
0.000454487
-0.000518488
0.000423734
-0.000481796
0.000397468
-0.000433029
0.000375074
-0.000371562
0.000354993
-0.000295323
0.00033497
-0.000203291
0.000316713
-9.88576e-05
0.000297604
2.62535e-05
0.000275646
0.000175041
0.000247213
0.000354777
0.000208414
0.000568062
0.000157673
0.000815849
9.45325e-05
0.00110321
1.7229e-05
0.00143923
-7.72107e-05
0.00182919
-0.000200379
0.0023061
-0.000355204
0.002861
-0.000544926
0.00350674
-0.000765532
0.00422034
-0.00123023
0.00184402
-0.00148255
-0.00178418
0.00244288
-0.00188893
-0.00240719
0.00282364
-0.00220064
-0.00302874
0.00310386
-0.00248231
-0.00362312
0.00336991
-0.00277553
-0.00418277
0.00363778
-0.00307813
-0.00470008
0.00391532
-0.003398
-0.00516681
0.00420625
-0.00373951
-0.00557649
0.00451193
-0.00410224
-0.00592304
0.00483598
-0.00448943
-0.00620424
0.00518249
-0.00490128
-0.00641298
0.00555052
-0.00534178
-0.00654477
0.00594987
-0.00581808
-0.00659574
0.00638035
-0.00632938
-0.00655809
0.00684198
-0.00687963
-0.00642674
0.00734196
-0.00747332
-0.00619827
0.00788628
-0.00811475
-0.00586152
0.00847034
-0.00880709
-0.00540865
0.00910873
-0.0095616
-0.00483731
0.0097994
-0.0103707
-0.00413217
0.0105456
-0.0112508
-0.00328369
0.0113553
-0.0122037
-0.0022816
0.0122345
-0.0132366
0.0131873
-0.01435
-0.00111888
-0.00142478
0.00227721
-0.00190698
0.00292509
-0.002474
0.00339066
-0.0030395
0.00366935
-0.00357223
0.00390264
-0.00406795
0.0041335
-0.00452153
0.0043689
-0.00492553
0.00461025
-0.00527911
0.00486551
-0.0055754
0.00513227
-0.00581301
0.0054201
-0.00598847
0.00572597
-0.00609352
0.00605491
-0.00612451
0.00641134
-0.00608071
0.00679818
-0.00595373
0.00721498
-0.00573565
0.00766821
-0.00542562
0.00816031
-0.00500931
0.00869242
-0.00448171
0.0092718
-0.00383269
0.0098966
-0.00305567
0.0105782
-0.0021391
0.0113179
0.0121225
-0.00107436
-0.00147265
0.00271219
-0.00191705
0.00336948
-0.00241894
0.00389256
-0.0029282
0.00417861
-0.00340971
0.00438415
-0.00385373
0.00457752
-0.00425707
0.00477224
-0.0046171
0.00497027
-0.00492708
0.00517549
-0.00519013
0.00539531
-0.00539562
0.00562559
-0.00554491
0.00587526
-0.00563582
0.00614583
-0.00566129
0.00643681
-0.00561436
0.00675125
-0.00549444
0.00709506
-0.00529307
0.00746684
-0.00500472
0.00787195
-0.00462143
0.00830913
-0.00413759
0.00878796
-0.00354772
0.00930674
-0.00283807
0.00986858
-0.00200104
0.0104809
0.0111456
-0.00102408
-0.00145016
0.00312116
-0.00187088
0.0037902
-0.00232348
0.00434516
-0.00278368
0.00463882
-0.00321521
0.00481568
-0.00361356
0.00497587
-0.00397377
0.00513245
-0.00429102
0.00528751
-0.00456838
0.00545285
-0.00479995
0.00562688
-0.00498247
0.00580811
-0.00511618
0.00600898
-0.00519322
0.00622287
-0.00521125
0.00645484
-0.0051675
0.0067075
-0.00505491
0.00698247
-0.00487049
0.00728243
-0.00460569
0.00760715
-0.00425709
0.00796053
-0.00381445
0.00834531
-0.00327241
0.0087647
-0.00262494
0.00922111
-0.00186066
0.00971664
0.010257
-0.000972052
-0.00139657
0.00350343
-0.00179215
0.00418577
-0.00220199
0.00475501
-0.00261462
0.00505145
-0.00300501
0.00520607
-0.00335971
0.00533057
-0.00368095
0.00545369
-0.00396947
0.00557603
-0.0042151
0.00569849
-0.00442044
0.00583222
-0.00458631
0.00597397
-0.00470181
0.00612449
-0.00477022
0.00629128
-0.00478545
0.00647006
-0.00474534
0.00666739
-0.00464166
0.00687879
-0.00447093
0.0071117
-0.00422867
0.00736488
-0.00391181
0.00764367
-0.0035091
0.00794261
-0.00301551
0.00827111
-0.00242527
0.00863086
-0.00172771
0.00901908
0.00944668
-0.000917432
-0.00132786
0.00385427
-0.00169494
0.00455285
-0.00206943
0.00512949
-0.00244217
0.00542419
-0.00279052
0.00555443
-0.00311008
0.00565012
-0.00339917
0.00574278
-0.00365439
0.00583125
-0.00387608
0.00592017
-0.00406101
0.00601716
-0.00420735
0.0061203
-0.00431317
0.00623031
-0.00437452
0.00635263
-0.00438721
0.00648275
-0.00434733
0.00662751
-0.00425348
0.00678494
-0.00409875
0.00695698
-0.00387989
0.00714603
-0.00358794
0.00735172
-0.00322169
0.00757636
-0.0027731
0.00782252
-0.00223538
0.00809314
-0.0016016
0.00838531
0.00870338
-0.0008583
-0.00125323
0.00417757
-0.00159043
0.00489006
-0.00192945
0.00546851
-0.00226735
0.00576208
-0.00258059
0.00586766
-0.00286843
0.00593797
-0.00312723
0.00600158
-0.00335696
0.00606099
-0.00355691
0.00612012
-0.00372466
0.0061849
-0.00385625
0.0062519
-0.00395075
0.0063248
-0.00400308
0.00640496
-0.00401398
0.00649366
-0.00397946
0.00659298
-0.00389299
0.00669847
-0.00375042
0.0068144
-0.00355029
0.0069459
-0.00328631
0.00708774
-0.00295461
0.00724467
-0.00254624
0.00741415
-0.00205605
0.00760295
-0.00147718
0.00780644
0.00803029
-0.000804095
-0.00117483
0.00447209
-0.00148252
0.00519775
-0.00179253
0.00577852
-0.00209255
0.0060621
-0.00237542
0.00615053
-0.00263573
0.00619827
-0.00286924
0.00623509
-0.00307751
0.00626926
-0.00325793
0.00630054
-0.00340708
0.00633405
-0.00352525
0.00637007
-0.00361031
0.00640987
-0.00366092
0.00645556
-0.00367026
0.006503
-0.00363654
0.00655926
-0.00355759
0.00661952
-0.00343001
0.00668682
-0.00324898
0.00676487
-0.00300845
0.0068472
-0.00270435
0.00694058
-0.00233252
0.00704232
-0.00188693
0.00715736
-0.00136356
0.00728307
0.00741717
-0.000750432
-0.00110038
0.00474744
-0.00138247
0.00547985
-0.00165967
0.00605572
-0.00193281
0.00633524
-0.00218469
0.00640242
-0.00241748
0.00643107
-0.00262955
0.00644716
-0.00281584
0.00645555
-0.00297992
0.00646462
-0.00311504
0.00646917
-0.00322451
0.00647954
-0.00330103
0.00648639
-0.0033429
0.00649743
-0.00335266
0.00651276
-0.00331985
0.00652645
-0.00324885
0.00654852
-0.00313335
0.00657132
-0.00296642
0.00659793
-0.00274965
0.00663043
-0.00247534
0.00666626
-0.00213788
0.00670486
-0.00173301
0.00675249
-0.00125246
0.00680252
0.00686195
-0.000697245
-0.00101665
0.00499856
-0.0012656
0.0057288
-0.00151524
0.00630536
-0.00176466
0.00658465
-0.00200224
0.00664
-0.0022156
0.00664443
-0.00240643
0.00663799
-0.00257645
0.00662557
-0.00272208
0.00661026
-0.00284581
0.0065929
-0.0029417
0.00657543
-0.00301218
0.00655687
-0.00305005
0.0065353
-0.00305688
0.00651959
-0.00303217
0.00650174
-0.00296593
0.00648229
-0.00286072
0.00646611
-0.00271075
0.00644795
-0.00251303
0.00643272
-0.00226217
0.0064154
-0.00195666
0.00639936
-0.00158796
0.00638378
-0.00115374
0.00636829
-0.000646862
0.00635508
0.0012147
-0.000827292
0.00223544
-0.000581229
0.00323227
-0.000370137
0.00424151
-0.000147598
0.00525827
0.000112265
0.00625679
0.00042193
0.00721208
0.000785988
0.00809725
0.00120709
0.00888766
0.00168076
0.00956502
0.00220393
0.0101157
0.00277182
0.0105307
0.00337642
0.0108092
0.00401328
0.010957
0.00467692
0.0109865
0.00536223
0.0109171
0.00607098
0.0107699
0.00680221
0.010568
0.00756601
0.010333
0.00836995
0.0100811
0.00922914
0.00982646
0.0101534
0.00957161
0.0111638
0.00931942
0.0122656
0.013469
0.00907571
-0.000162085
-0.000665208
-2.79108e-06
-0.000740522
0.00035396
-0.000726889
0.000865841
-0.000659479
0.00151169
-0.000533581
0.00227664
-0.000343023
0.00314588
-8.32571e-05
0.0040993
0.000253671
0.00510379
0.000676271
0.00611845
0.00118927
0.00709838
0.00179189
0.00799899
0.00247582
0.00878078
0.00323149
0.00941456
0.00404314
0.00988242
0.00489437
0.0101817
0.00577172
0.010324
0.0066599
0.0103318
0.00755819
0.0102351
0.00846662
0.0100661
0.00939816
0.00985084
0.0103687
0.0096167
0.0113979
0.00937193
0.0125103
0.0137143
0.0091266
-2.65228e-05
-0.000638685
-4.69549e-05
-0.000720088
-2.68332e-05
-0.00074701
5.44149e-05
-0.000740727
0.00022229
-0.000701456
0.000504288
-0.000625021
0.000923031
-0.000502
0.00149499
-0.000318286
0.00222389
-5.26305e-05
0.0030965
0.00031666
0.00408157
0.000806817
0.00513116
0.00142623
0.0061875
0.00217515
0.00718818
0.00304246
0.0080745
0.00400805
0.00879991
0.00504631
0.00933567
0.00612414
0.00967595
0.00721791
0.00983593
0.00830664
0.00984716
0.00938694
0.00974879
0.0104671
0.0095787
0.011568
0.00937049
0.0127185
0.013946
0.00913876
-2.94787e-05
-0.000609205
-2.90172e-05
-0.000720549
-4.42548e-06
-0.000771602
4.84271e-05
-0.000793579
0.00013737
-0.0007904
0.000272587
-0.000760237
0.000467781
-0.000697194
0.000741532
-0.000592037
0.00111851
-0.000429612
0.00162437
-0.000189194
0.00227863
0.000152559
0.00308315
0.000621703
0.00401784
0.00124047
0.00503799
0.0020223
0.00608009
0.00296595
0.00707026
0.00405614
0.00793672
0.00525768
0.00862503
0.0065296
0.00910547
0.00782619
0.00937948
0.00911292
0.00947412
0.0103724
0.00943164
0.0116105
0.00929808
0.0128521
0.0141322
0.00911189
-3.86128e-06
-0.000605343
-2.87849e-06
-0.000721531
7.7007e-06
-0.000782181
3.15296e-05
-0.000817407
7.42659e-05
-0.000833136
0.000142564
-0.000828535
0.000244786
-0.000799416
0.000392442
-0.000739692
0.000602243
-0.000639413
0.000895772
-0.000482723
0.00129821
-0.000249878
0.00183452
8.53924e-05
0.00252119
0.000553797
0.00335703
0.00118646
0.00431587
0.00200711
0.00534546
0.00302655
0.00637058
0.00423256
0.00730809
0.0055921
0.00808432
0.00704996
0.00865103
0.00854621
0.00899651
0.010027
0.00914271
0.0114643
0.00913455
0.0128603
0.0142518
0.00901496
-1.0553e-05
-0.000594789
-1.01858e-05
-0.000721898
-5.27551e-07
-0.000791839
1.95101e-05
-0.000837444
5.23669e-05
-0.000865993
0.000101733
-0.000877901
0.000172418
-0.000870101
0.00027087
-0.000838144
0.000406758
-0.000775301
0.000593921
-0.000669885
0.00085011
-0.000506068
0.00119737
-0.000261866
0.00166145
8.97166e-05
0.0022659
0.00058201
0.00302174
0.00125127
0.00391776
0.00213053
0.00491201
0.00323831
0.0059352
0.0045689
0.00689702
0.00608814
0.00771134
0.00773189
0.00831726
0.00942103
0.00869377
0.0110878
0.00886124
0.0126928
0.014248
0.008865
-3.5466e-06
-0.000591242
-1.51459e-06
-0.000723929
6.35111e-06
-0.000799704
2.1174e-05
-0.000852267
4.45185e-05
-0.000889337
7.92494e-05
-0.000912631
0.000128743
-0.000919595
0.000197338
-0.000906739
0.000291129
-0.000869092
0.000419251
-0.000798006
0.000594417
-0.000681234
0.000833186
-0.000500635
0.00115617
-0.000233272
0.00158765
0.000150533
0.00215163
0.00068729
0.00286383
0.00141834
0.0037206
0.00238154
0.00468779
0.00360171
0.00569809
0.00507784
0.00666021
0.00676977
0.00747972
0.00860153
0.00808816
0.0104794
0.00846272
0.0123182
0.014084
0.00862676
-3.90113e-06
-0.00058734
-2.16011e-06
-0.000725669
5.08448e-06
-0.000806949
1.78371e-05
-0.000865019
3.7417e-05
-0.000908917
6.55836e-05
-0.000940798
0.000104589
-0.0009586
0.000157556
-0.000959705
0.00022848
-0.000940016
0.000323466
-0.000892991
0.000451324
-0.000809092
0.000624193
-0.000673503
0.000857777
-0.000466855
0.00117185
-0.000163542
0.00159005
0.000269096
0.00213653
0.000871859
0.0028285
0.00168957
0.00366517
0.00276503
0.00461525
0.00412777
0.00561133
0.00577368
0.00655819
0.00765467
0.00735759
0.00967996
0.00793945
0.0117364
0.0137331
0.00829033
-2.18156e-06
-0.000585158
1.59322e-07
-0.000728009
6.7953e-06
-0.000813585
1.79007e-05
-0.000876123
3.43664e-05
-0.000925383
5.73169e-05
-0.000963747
8.87529e-05
-0.000990036
0.000130933
-0.00100188
0.000186867
-0.00099595
0.000260586
-0.00096671
0.000358514
-0.00090702
0.000489519
-0.000804507
0.000665596
-0.000642932
0.000902344
-0.00040029
0.00121932
-4.78761e-05
0.00163979
0.000451387
0.00218727
0.00114209
0.00287857
0.00207373
0.00371234
0.003294
0.00465545
0.00483057
0.00563654
0.00667358
0.00655592
0.00876058
0.00731294
0.0109794
0.0132017
0.00784438
-1.72051e-06
-0.000583437
7.47204e-07
-0.000730476
6.99817e-06
-0.000819836
1.70593e-05
-0.000886184
3.15154e-05
-0.000939839
5.13629e-05
-0.000983594
7.79721e-05
-0.00101665
0.000113134
-0.00103705
0.000159121
-0.00104194
0.00021903
-0.00102662
0.000297301
-0.000985291
0.000400582
-0.000907787
0.000538145
-0.000780495
0.000722128
-0.000584271
0.000968401
-0.000294149
0.00129682
0.000122966
0.0017305
0.000708408
0.0022922
0.00151204
0.00299731
0.00258889
0.0038406
0.00398728
0.00478293
0.00573125
0.00574618
0.00779733
0.00662484
0.0101007
0.0124998
0.00732672
-9.09562e-07
-0.000582526
1.76653e-06
-0.000733151
7.73117e-06
-0.0008258
1.70365e-05
-0.000895488
2.99092e-05
-0.000952712
4.73528e-05
-0.00100104
7.03785e-05
-0.00103967
0.000100412
-0.00106708
0.00013927
-0.0010808
0.000189298
-0.00107665
0.000253879
-0.00104987
0.000338027
-0.000991935
0.000448847
-0.000891315
0.000595973
-0.000731398
0.000792186
-0.000490362
0.00105391
-0.000138758
0.00140157
0.000360748
0.00185816
0.00105545
0.00244542
0.00200163
0.00317533
0.00325738
0.00403633
0.00487025
0.00497932
0.00685435
0.00591576
0.00916425
0.0116779
0.00673771
-3.40606e-07
-0.000582185
2.50183e-06
-0.000735992
8.18777e-06
-0.000831486
1.68322e-05
-0.000904132
2.87023e-05
-0.000964582
4.44252e-05
-0.00101676
6.4871e-05
-0.00106012
9.11937e-05
-0.0010934
0.00012487
-0.00111447
0.000167775
-0.00111955
0.000222516
-0.00110461
0.000292989
-0.00106241
0.000384642
-0.000982967
0.000505259
-0.000852014
0.00066513
-0.000650233
0.000877829
-0.000351457
0.00116069
7.7883e-05
0.00153479
0.000681356
0.00202308
0.00151334
0.00264536
0.0026351
0.00340813
0.00410748
0.00428993
0.00597254
0.00522781
0.00822638
0.0107828
0.00612288
1.15536e-07
-0.000582299
3.13638e-06
-0.000739012
8.82593e-06
-0.000837175
1.69482e-05
-0.000912254
2.79976e-05
-0.000975632
4.24793e-05
-0.00103124
6.09643e-05
-0.0010786
8.44768e-05
-0.00111691
0.000114178
-0.00114417
0.000151734
-0.00115711
0.000199156
-0.00115203
0.000259468
-0.00112272
0.000337083
-0.00106058
0.000438211
-0.000953142
0.000571193
-0.000783214
0.000747271
-0.000527535
0.000981084
-0.000155929
0.0012911
0.000371336
0.00169909
0.00110536
0.00222745
0.00210674
0.00289276
0.00344217
0.00369376
0.00517154
0.00459565
0.00732449
0.00985721
0.00552122
6.28633e-07
-0.000582928
3.7823e-06
-0.000742165
9.29324e-06
-0.000842686
1.71647e-05
-0.000920124
2.76757e-05
-0.000986143
4.10234e-05
-0.00104459
5.80216e-05
-0.0010956
7.93956e-05
-0.00113829
0.000106231
-0.00117101
0.000139699
-0.00119057
0.000181504
-0.00119384
0.00023417
-0.00117539
0.00030119
-0.0011276
0.000387594
-0.00103955
0.000500285
-0.000895905
0.00064857
-0.000675819
0.00084478
-0.000352139
0.0011048
0.000111318
0.00144836
0.000761807
0.00189759
0.0016575
0.00247336
0.00286641
0.00318643
0.00445847
0.0040231
0.00648782
0.00895515
0.00492515
1.0977e-06
-0.000584025
4.38866e-06
-0.000745455
9.84996e-06
-0.000848148
1.7489e-05
-0.000927763
2.74603e-05
-0.000996114
4.01138e-05
-0.00105724
5.59553e-05
-0.00111144
7.56632e-05
-0.00115799
0.00010011
-0.00119546
0.000130397
-0.00122086
0.000167994
-0.00123144
0.000214716
-0.00122211
0.000273647
-0.00118653
0.000348748
-0.00111465
0.000445867
-0.000993024
0.000572735
-0.000802686
0.000739773
-0.000519176
0.000960622
-0.00010953
0.00125267
0.000469755
0.00163672
0.00127345
0.00213476
0.00236837
0.00276453
0.0038287
0.00352772
0.00572464
0.00809015
0.00439273
1.59164e-06
-0.000585616
5.08223e-06
-0.000748945
1.04389e-05
-0.000853504
1.79737e-05
-0.000935297
2.74972e-05
-0.00100564
3.95379e-05
-0.00106928
5.44555e-05
-0.00112636
7.28361e-05
-0.00117637
9.54338e-05
-0.00121805
0.000123197
-0.00124862
0.000157335
-0.00126558
0.000199482
-0.00126425
0.000252021
-0.00123907
0.000318383
-0.00118101
0.000403236
-0.00107788
0.000513517
-0.000912967
0.000657638
-0.000663297
0.000847507
-0.000299399
0.00109831
0.000218948
0.00142902
0.000942746
0.00186136
0.00193603
0.00241615
0.00327391
0.00310615
0.00503463
0.00727558
0.00392072
2.03514e-06
-0.00058765
5.50858e-06
-0.000752417
1.10221e-05
-0.000859018
1.80977e-05
-0.000942372
2.7566e-05
-0.00101511
3.91816e-05
-0.00108089
5.31815e-05
-0.00114036
7.06377e-05
-0.00119383
9.16656e-05
-0.00123908
0.000117384
-0.00127434
0.000148772
-0.00129696
0.000187264
-0.00130274
0.000234694
-0.0012865
0.000294128
-0.00124044
0.000369436
-0.00115319
0.000466291
-0.00100982
0.000592187
-0.000789192
0.000757038
-0.000464251
0.000974494
1.4933e-06
0.00126107
0.000656173
0.00163707
0.00156004
0.00212391
0.00278706
0.00273869
0.00441986
0.00653245
0.00348182
2.26097e-06
-0.000589911
5.93573e-06
-0.000756091
1.13759e-05
-0.000864458
1.85749e-05
-0.00094957
2.76933e-05
-0.00102423
3.8727e-05
-0.00109193
5.22447e-05
-0.00115388
6.86349e-05
-0.00121022
8.85397e-05
-0.00125899
0.000112495
-0.0012983
0.000141613
-0.00132608
0.000177019
-0.00133815
0.000220388
-0.00132987
0.000274153
-0.0012942
0.000341777
-0.00122081
0.000427898
-0.00109594
0.000539056
-0.00090035
0.00068401
-0.000609204
0.000873921
-0.000188418
0.00112403
0.000406062
0.00145262
0.00123145
0.00188041
0.00235927
0.00242666
0.00387361
0.00585968
0.00309943
2.47657e-06
-0.000592387
6.26536e-06
-0.000759879
1.16971e-05
-0.00086989
1.89446e-05
-0.000956817
2.75706e-05
-0.00103285
3.82896e-05
-0.00110265
5.14035e-05
-0.00116699
6.68353e-05
-0.00122565
8.55905e-05
-0.00127774
0.000108222
-0.00132093
0.000135356
-0.00135322
0.000168215
-0.00137101
0.000208172
-0.00136983
0.000257301
-0.00134333
0.000318541
-0.00128205
0.000395964
-0.00117336
0.000495129
-0.000999515
0.00062356
-0.000737635
0.000791262
-0.000356119
0.00101143
0.000185895
0.00130069
0.000942185
0.00167887
0.0019811
0.00216632
0.00338616
0.00524811
0.00277789
2.61442e-06
-0.000595002
6.49653e-06
-0.000763761
1.1905e-05
-0.000875299
1.86809e-05
-0.000963593
2.74079e-05
-0.00104158
3.77596e-05
-0.001113
5.00183e-05
-0.00117925
6.50528e-05
-0.00124068
8.28426e-05
-0.00129553
0.000104133
-0.00134222
0.000129711
-0.00137879
0.000160313
-0.00140161
0.000197409
-0.00140692
0.000242573
-0.0013885
0.000298488
-0.00133796
0.000368665
-0.00124354
0.000457827
-0.00108868
0.000572606
-0.000852414
0.000721741
-0.000505255
0.000916835
-9.19878e-06
0.00117286
0.000686159
0.00150801
0.00164595
0.00194269
0.00295148
0.00470091
0.00248989
2.88179e-06
-0.000597883
6.78879e-06
-0.000767667
1.21333e-05
-0.000880643
1.89239e-05
-0.000970383
2.71466e-05
-0.0010498
3.72071e-05
-0.00112306
4.91246e-05
-0.00119117
6.32495e-05
-0.00125481
8.01511e-05
-0.00131243
0.000100285
-0.00136235
0.000124304
-0.00140281
0.000153081
-0.00143039
0.00018753
-0.00144137
0.000229411
-0.00143038
0.000280729
-0.00138928
0.000344694
-0.00130751
0.000425462
-0.00116944
0.000528689
-0.00095564
0.000662251
-0.000638817
0.000836415
-0.000183363
0.00106464
0.000457936
0.00136397
0.00134662
0.00175489
0.00256057
0.00418835
0.00226745
2.92367e-06
-0.000600806
6.83126e-06
-0.000771574
1.20953e-05
-0.000885907
1.87184e-05
-0.000977005
2.67603e-05
-0.00105784
3.63118e-05
-0.00113261
4.78799e-05
-0.00120274
6.14314e-05
-0.00126836
7.73891e-05
-0.00132839
9.65584e-05
-0.00138152
0.000119175
-0.00142543
0.000146154
-0.00145736
0.000178416
-0.00147364
0.000217291
-0.00146925
0.000264713
-0.0014367
0.000323219
-0.00136601
0.000396746
-0.00124297
0.00048996
-0.00104885
0.000609731
-0.000758588
0.000764938
-0.00033857
0.00096722
0.000255655
0.00123131
0.00108252
0.00157419
0.00221769
0.00375834
0.0020042
3.03074e-06
-0.000603836
6.84544e-06
-0.000775389
1.20403e-05
-0.000891102
1.85516e-05
-0.000983516
2.63396e-05
-0.00106563
3.55228e-05
-0.00114179
4.6491e-05
-0.00121371
5.94531e-05
-0.00128132
7.48224e-05
-0.00134376
9.29457e-05
-0.00139964
0.000114317
-0.0014468
0.000139745
-0.00148279
0.000170008
-0.0015039
0.000206287
-0.00150553
0.000250301
-0.00148072
0.000304266
-0.00141998
0.000371529
-0.00131023
0.000456479
-0.0011338
0.000564985
-0.000867093
0.000705058
-0.000478643
0.000887264
7.3449e-05
0.00112531
0.000844471
0.00143685
0.00190616
0.00334337
0.00185182
2.95618e-06
-0.000606793
6.79917e-06
-0.000779232
1.18549e-05
-0.000896158
1.81313e-05
-0.000989792
2.56299e-05
-0.00107313
3.45453e-05
-0.00115071
4.5084e-05
-0.00122425
5.74645e-05
-0.0012937
7.20854e-05
-0.00135838
8.92884e-05
-0.00141684
0.000109678
-0.00146719
0.000133663
-0.00150678
0.000162206
-0.00153244
0.000196163
-0.00153949
0.000237164
-0.00152172
0.000287272
-0.00147008
0.000349241
-0.0013722
0.000427057
-0.00121162
0.000525957
-0.000965993
0.000653095
-0.00060578
0.000817974
-9.14298e-05
0.0010333
0.000629148
0.00131548
0.00162398
0.00297804
0.0016808
3.05803e-06
-0.00060985
6.86476e-06
-0.000783038
1.17013e-05
-0.000900995
1.78358e-05
-0.000995926
2.49938e-05
-0.00108029
3.35561e-05
-0.00115927
4.36355e-05
-0.00123432
5.54848e-05
-0.00130555
6.94147e-05
-0.00137231
8.58038e-05
-0.00143323
0.000105107
-0.00148649
0.000127861
-0.00152953
0.000154801
-0.00155938
0.000186814
-0.0015715
0.000225229
-0.00156013
0.000271896
-0.00151675
0.000329362
-0.00142967
0.000401104
-0.00128336
0.000491852
-0.00105674
0.000607932
-0.00072186
0.000757968
-0.000241467
0.000953326
0.000433791
0.00120864
0.00136866
0.0026453
0.00154138
2.98823e-06
-0.000612839
6.6879e-06
-0.000786737
1.15378e-05
-0.000905845
1.72743e-05
-0.00100166
2.42506e-05
-0.00108727
3.25404e-05
-0.00116756
4.2166e-05
-0.00124395
5.34999e-05
-0.00131688
6.6692e-05
-0.0013855
8.23129e-05
-0.00144885
0.000100663
-0.00150485
0.000122335
-0.0015512
0.000147774
-0.00158482
0.000178058
-0.00160178
0.000214145
-0.00159622
0.00025785
-0.00156046
0.00031143
-0.00148325
0.000377921
-0.00134985
0.00046165
-0.00114047
0.000568274
-0.000828484
0.0007055
-0.000378692
0.000883558
0.000255733
0.00111589
0.00113633
0.00234209
0.00141911
2.94244e-06
-0.000615781
6.54136e-06
-0.000790336
1.11439e-05
-0.000910447
1.67529e-05
-0.00100727
2.34866e-05
-0.001094
3.1256e-05
-0.00117533
4.04829e-05
-0.00125318
5.12772e-05
-0.00132768
6.40061e-05
-0.00139823
7.88562e-05
-0.0014637
9.62179e-05
-0.00152221
0.000116756
-0.00157174
0.00014094
-0.00160901
0.000169538
-0.00163038
0.000203707
-0.00163039
0.000244742
-0.00160149
0.000294908
-0.00153342
0.000356963
-0.00141191
0.000434642
-0.00121815
0.000533165
-0.000927006
0.000659443
-0.000504971
0.000822677
9.24993e-05
0.00103477
0.000924235
0.00206707
0.00130979
2.86555e-06
-0.000618648
6.33649e-06
-0.000793807
1.07524e-05
-0.000914864
1.61361e-05
-0.00101266
2.25032e-05
-0.00110037
2.99885e-05
-0.00118281
3.87598e-05
-0.00126195
4.90144e-05
-0.00133793
6.10651e-05
-0.00141028
7.51619e-05
-0.0014778
9.17479e-05
-0.00153879
0.000111214
-0.0015912
0.000134153
-0.00163194
0.000161272
-0.0016575
0.0001935
-0.00166262
0.000232256
-0.00164025
0.000279389
-0.00158055
0.000337477
-0.00146999
0.000409984
-0.00129066
0.000501632
-0.00101865
0.000618706
-0.000622044
0.000769661
-5.84564e-05
0.000965475
0.000728421
0.00181657
0.00121598
2.73453e-06
-0.000621381
6.07145e-06
-0.000797143
1.02879e-05
-0.00091908
1.53796e-05
-0.00101775
2.14514e-05
-0.00110644
2.85605e-05
-0.00118992
3.68663e-05
-0.00127025
4.66259e-05
-0.00134769
5.80184e-05
-0.00142168
7.14123e-05
-0.00149119
8.71845e-05
-0.00155457
0.000105574
-0.00160959
0.000127363
-0.00165373
0.000152943
-0.00168308
0.00018343
-0.0016931
0.000220022
-0.00167684
0.000264316
-0.00162484
0.000318842
-0.00152452
0.000386766
-0.00135858
0.000472454
-0.00110434
0.000581809
-0.000731399
0.000722965
-0.000199613
0.000907347
0.000544039
0.00157062
0.0011533
2.76236e-06
-0.000624144
5.90387e-06
-0.000800285
9.78495e-06
-0.000922961
1.47145e-05
-0.00102268
2.03296e-05
-0.00111205
2.71273e-05
-0.00119672
3.50055e-05
-0.00127813
4.4109e-05
-0.00135679
5.49018e-05
-0.00143247
6.75208e-05
-0.00150381
8.23543e-05
-0.0015694
9.98718e-05
-0.00162711
0.000120315
-0.00167418
0.000144548
-0.00170731
0.000173281
-0.00172184
0.000207662
-0.00171122
0.000249309
-0.00166649
0.000300346
-0.00157556
0.000363717
-0.00142195
0.000443312
-0.00118394
0.000544514
-0.000832601
0.00067434
-0.000329438
0.000842371
0.000376008
0.00134228
0.00107071
2.51082e-06
-0.000626654
5.48121e-06
-0.000803255
9.31401e-06
-0.000926794
1.37719e-05
-0.00102713
1.91522e-05
-0.00111743
2.54707e-05
-0.00120304
3.28685e-05
-0.00128553
4.16249e-05
-0.00136555
5.16737e-05
-0.00144252
6.35708e-05
-0.00151571
7.75419e-05
-0.00158337
9.39681e-05
-0.00164354
0.000113318
-0.00169353
0.000136173
-0.00173017
0.000163151
-0.00174882
0.000195455
-0.00174352
0.000234508
-0.00170554
0.000282131
-0.00162318
0.000341052
-0.00148087
0.000414671
-0.00125756
0.000507512
-0.000925442
0.00062552
-0.000447446
0.000775728
0.000225799
0.00115939
0.000958613
2.40054e-06
-0.000629056
5.14646e-06
-0.000806001
8.63734e-06
-0.000930285
1.28835e-05
-0.00103138
1.80037e-05
-0.00112255
2.38375e-05
-0.00120887
3.07717e-05
-0.00129247
3.8876e-05
-0.00137365
4.84897e-05
-0.00145213
5.96604e-05
-0.00152688
7.27149e-05
-0.00159642
8.81593e-05
-0.00165898
0.000106334
-0.0017117
0.000127813
-0.00175165
0.000153302
-0.00177431
0.000183613
-0.00177383
0.000220236
-0.00174217
0.000264957
-0.0016679
0.000320084
-0.001536
0.00038894
-0.00132641
0.000475766
-0.00101227
0.000586254
-0.000557933
0.000727437
8.4616e-05
0.000985086
0.000901743
2.21565e-06
-0.000631269
4.7617e-06
-0.000808546
8.02026e-06
-0.000933543
1.19368e-05
-0.0010353
1.66492e-05
-0.00112727
2.21718e-05
-0.00121439
2.86317e-05
-0.00129893
3.62439e-05
-0.00138127
4.51359e-05
-0.00146102
5.5617e-05
-0.00153736
6.79796e-05
-0.00160879
8.24029e-05
-0.0016734
9.95684e-05
-0.00172887
0.000119668
-0.00177175
0.000143582
-0.00179822
0.000172123
-0.00180238
0.00020653
-0.00177657
0.000248485
-0.00170986
0.000300279
-0.00158779
0.000364993
-0.00139113
0.000446745
-0.00109402
0.000551219
-0.000662407
0.000686249
-5.04137e-05
0.000803459
0.000867875
2.05126e-06
-0.000633321
4.38219e-06
-0.000810877
7.37523e-06
-0.000936536
1.10652e-05
-0.00103899
1.53757e-05
-0.00113158
2.0508e-05
-0.00121953
2.65548e-05
-0.00130497
3.36146e-05
-0.00138833
4.19455e-05
-0.00146936
5.17055e-05
-0.00154712
6.32344e-05
-0.00162032
7.67916e-05
-0.00168696
9.28135e-05
-0.00174489
0.000111767
-0.0017907
0.000134216
-0.00182067
0.000161093
-0.00182925
0.000193349
-0.00180883
0.000232709
-0.00174922
0.000281249
-0.00163633
0.00034171
-0.00145159
0.000417963
-0.00117027
0.000515061
-0.000759505
0.000640179
-0.000175532
0.00063968
0.000803959
1.88037e-06
-0.0006352
3.9905e-06
-0.000812987
6.73335e-06
-0.000939278
1.0109e-05
-0.00104236
1.4131e-05
-0.0011356
1.8943e-05
-0.00122434
2.45177e-05
-0.00131055
3.10302e-05
-0.00139484
3.87495e-05
-0.00147707
4.78782e-05
-0.00155625
5.86073e-05
-0.00163105
7.13814e-05
-0.00169973
8.63158e-05
-0.00175982
0.000104126
-0.00180851
0.000125176
-0.00184172
0.000150368
-0.00185445
0.000180761
-0.00183922
0.000217811
-0.00178627
0.000263509
-0.00168203
0.000320529
-0.00150861
0.000392504
-0.00124225
0.000484432
-0.000851434
0.000603378
-0.000294477
0.00048334
0.000759717
1.70008e-06
-0.000636901
3.60992e-06
-0.000814897
6.09938e-06
-0.000941768
9.18296e-06
-0.00104545
1.28682e-05
-0.00113928
1.72209e-05
-0.00122869
2.24173e-05
-0.00131574
2.85848e-05
-0.00140101
3.57687e-05
-0.00148426
4.41478e-05
-0.00156463
5.41615e-05
-0.00164106
6.59837e-05
-0.00171156
7.99891e-05
-0.00177383
9.66146e-05
-0.00182514
0.000116432
-0.00186154
0.000140032
-0.00187805
0.00016862
-0.00186781
0.000203409
-0.00182106
0.000246413
-0.00172504
0.000300111
-0.00156231
0.000367896
-0.00131003
0.00045434
-0.000937878
0.000565646
-0.000405784
0.000338105
0.000710883
1.51345e-06
-0.000638413
3.21341e-06
-0.000816596
5.47186e-06
-0.000944026
8.28374e-06
-0.00104826
1.16728e-05
-0.00114267
1.57011e-05
-0.00123272
2.04528e-05
-0.00132049
2.60714e-05
-0.00140662
3.27137e-05
-0.0014909
4.06357e-05
-0.00157255
4.99158e-05
-0.00165034
6.08374e-05
-0.00172248
7.39436e-05
-0.00178694
8.93709e-05
-0.00184056
0.000107829
-0.00187999
0.000129944
-0.00190016
0.000156673
-0.00189454
0.000189377
-0.00185376
0.000229716
-0.00176537
0.00028021
-0.0016128
0.000344041
-0.00137386
0.000425409
-0.00101925
0.00052985
-0.000510225
0.000204666
0.000663288
1.33158e-06
-0.000639746
2.8385e-06
-0.000818104
4.87582e-06
-0.000946064
7.439e-06
-0.00105082
1.05296e-05
-0.00114576
1.42269e-05
-0.00123642
1.86122e-05
-0.00132488
2.3799e-05
-0.00141181
2.99197e-05
-0.00149702
3.71773e-05
-0.00157981
4.57719e-05
-0.00165893
5.59635e-05
-0.00173267
6.80639e-05
-0.00179904
8.24525e-05
-0.00185495
9.96144e-05
-0.00189716
0.000120247
-0.00192079
0.000145081
-0.00191937
0.000175522
-0.0018842
0.000213249
-0.0018031
0.000260435
-0.00165999
0.000320124
-0.00143355
0.000396385
-0.00109551
0.000494427
-0.000608267
7.98389e-05
0.000619254
1.15758e-06
-0.000640903
2.49919e-06
-0.000819445
4.33477e-06
-0.000947899
6.6474e-06
-0.00105313
9.47897e-06
-0.0011486
1.28786e-05
-0.00123982
1.69107e-05
-0.00132891
2.16938e-05
-0.00141659
2.73602e-05
-0.00150269
3.40616e-05
-0.00158651
4.2005e-05
-0.00166688
5.15206e-05
-0.00174219
6.26663e-05
-0.00181018
7.60607e-05
-0.00186835
9.19135e-05
-0.00191301
0.000110978
-0.00193986
0.000134042
-0.00194244
0.000162237
-0.0019124
0.000197147
-0.00183801
0.000240905
-0.00170374
0.000296451
-0.0014891
0.00036773
-0.00116679
0.000460297
-0.000700835
-4.56179e-05
0.000585753
1.01529e-06
-0.00064192
2.2009e-06
-0.000820632
3.83408e-06
-0.000949533
5.96667e-06
-0.00105527
8.55977e-06
-0.00115119
1.16693e-05
-0.00124292
1.54009e-05
-0.00133264
1.98328e-05
-0.00142103
2.50736e-05
-0.00150793
3.1266e-05
-0.0015927
3.86669e-05
-0.00167428
4.74301e-05
-0.00175095
5.7838e-05
-0.00182059
7.02137e-05
-0.00188072
8.5021e-05
-0.00192782
0.000102616
-0.00195745
0.000123966
-0.00196379
0.000149891
-0.00193832
0.000181935
-0.00187005
0.000221967
-0.00174378
0.00027248
-0.00153961
0.000336872
-0.00123118
0.000419344
-0.000783307
-0.000148942
0.000522669
8.79553e-07
-0.000642797
1.94186e-06
-0.000821693
3.46691e-06
-0.000951057
5.38936e-06
-0.00105719
7.79712e-06
-0.0011536
1.06762e-05
-0.0012458
1.41185e-05
-0.00133609
1.82226e-05
-0.00142513
2.31376e-05
-0.00151284
2.89754e-05
-0.00159854
3.58316e-05
-0.00168113
4.40021e-05
-0.00175912
5.37266e-05
-0.00183031
6.53013e-05
-0.0018923
7.90514e-05
-0.00194157
9.5519e-05
-0.00197392
0.000115333
-0.0019836
0.000139434
-0.00196242
0.000169092
-0.00189971
0.000205989
-0.00178067
0.000252319
-0.00158594
0.00031091
-0.00128977
0.000385614
-0.000858012
-0.00024452
0.000481193
7.93458e-07
-0.000643591
1.74807e-06
-0.000822648
3.13514e-06
-0.000952444
4.94724e-06
-0.001059
7.15349e-06
-0.0011558
9.84862e-06
-0.0012485
1.30871e-05
-0.00133932
1.69318e-05
-0.00142897
2.15227e-05
-0.00151743
2.69749e-05
-0.00160399
3.34959e-05
-0.00168765
4.11747e-05
-0.0017668
5.03974e-05
-0.00183954
6.12337e-05
-0.00190313
7.42177e-05
-0.00195455
8.97349e-05
-0.00198944
0.000108412
-0.00200228
0.000131171
-0.00198518
0.000159089
-0.00192763
0.000193998
-0.00181558
0.000238035
-0.00162998
0.00029425
-0.00134598
0.000366834
-0.000930596
-0.000344603
0.000466916
6.87822e-07
-0.000644278
1.61277e-06
-0.000823572
2.90875e-06
-0.000953739
4.57548e-06
-0.00106067
6.68036e-06
-0.00115791
9.21185e-06
-0.00125103
1.22387e-05
-0.00134235
1.58974e-05
-0.00143263
2.02144e-05
-0.00152175
2.54133e-05
-0.00160919
3.1548e-05
-0.00169379
3.88763e-05
-0.00177413
4.76103e-05
-0.00184827
5.79693e-05
-0.00191349
7.03424e-05
-0.00196692
8.51561e-05
-0.00200425
0.00010287
-0.00201999
0.000124463
-0.00200678
0.000151074
-0.00195424
0.000184113
-0.00184862
0.000225813
-0.00167168
0.000279132
-0.0013993
0.00034782
-0.000999284
-0.000422959
0.000426177
6.5719e-07
-0.000644936
1.51726e-06
-0.000824433
2.74173e-06
-0.000954964
4.33521e-06
-0.00106226
6.29176e-06
-0.00115986
8.69349e-06
-0.00125343
1.15993e-05
-0.00134526
1.5055e-05
-0.00143609
1.91983e-05
-0.00152589
2.4107e-05
-0.0016141
3.00146e-05
-0.0016997
3.70471e-05
-0.00178116
4.53572e-05
-0.00185658
5.53081e-05
-0.00192344
6.71751e-05
-0.00197879
8.13689e-05
-0.00201844
9.84542e-05
-0.00203708
0.000119229
-0.00202755
0.000144804
-0.00197982
0.000176771
-0.00188059
0.00021731
-0.00171222
0.000269332
-0.00145133
0.000337297
-0.00106725
-0.000525225
0.000439563
6.5377e-07
-0.000645588
1.46806e-06
-0.000825247
2.61513e-06
-0.00095611
4.15855e-06
-0.0010638
6.02908e-06
-0.00116173
8.3129e-06
-0.00125572
1.10635e-05
-0.00134801
1.43515e-05
-0.00143938
1.83196e-05
-0.00152986
2.30524e-05
-0.00161883
2.86881e-05
-0.00170533
3.54233e-05
-0.00178789
4.34446e-05
-0.0018646
5.30959e-05
-0.00193309
6.44716e-05
-0.00199017
7.81613e-05
-0.00203213
9.46906e-05
-0.00205361
0.000114652
-0.00204751
0.000139251
-0.00200442
0.00016987
-0.00191121
0.000208465
-0.00175081
0.000257806
-0.00150067
0.000321359
-0.0011308
-0.000597958
0.000394092
6.02914e-07
-0.000646192
1.37518e-06
-0.00082602
2.51665e-06
-0.000957252
3.97015e-06
-0.00106526
5.77772e-06
-0.00116354
7.9541e-06
-0.00125789
1.05969e-05
-0.00135065
1.37496e-05
-0.00144253
1.75423e-05
-0.00153365
2.20801e-05
-0.00162337
2.75081e-05
-0.00171076
3.39964e-05
-0.00179438
4.17473e-05
-0.00187235
5.09952e-05
-0.00194234
6.21097e-05
-0.00200128
7.5317e-05
-0.00204534
9.12782e-05
-0.00206957
0.000110724
-0.00206696
0.000134536
-0.00202823
0.000164295
-0.00194097
0.00020199
-0.00178851
0.000250278
-0.00154896
0.000313333
-0.00119386
-0.000687465
0.000402841
4.97055e-07
-0.000646689
1.29935e-06
-0.000826822
2.40477e-06
-0.000958357
3.79154e-06
-0.00106664
5.53343e-06
-0.00116528
7.63271e-06
-0.00125999
1.01442e-05
-0.00135316
1.31803e-05
-0.00144557
1.6805e-05
-0.00153728
2.11595e-05
-0.00162772
2.63764e-05
-0.00171598
3.26055e-05
-0.00180061
4.00942e-05
-0.00187984
4.90178e-05
-0.00195127
5.97072e-05
-0.00201197
7.25126e-05
-0.00205815
8.79238e-05
-0.00208498
0.00010662
-0.00208566
0.000129549
-0.00205116
0.000158058
-0.00196948
0.000193829
-0.00182428
0.000239449
-0.00159457
0.000298282
-0.00125269
-0.000762893
0.00037371
5.68526e-07
-0.000647259
1.40728e-06
-0.000827662
2.35281e-06
-0.000959303
3.74946e-06
-0.00106804
5.33045e-06
-0.00116686
7.30859e-06
-0.00126197
9.71602e-06
-0.00135557
1.25944e-05
-0.00144845
1.60733e-05
-0.00154076
2.02412e-05
-0.00163189
2.52443e-05
-0.00172098
3.12453e-05
-0.00180661
3.84391e-05
-0.00188703
4.70626e-05
-0.00195989
5.73618e-05
-0.00202227
6.97903e-05
-0.00207058
8.46135e-05
-0.0020998
0.000102641
-0.00210368
0.000124734
-0.00207325
0.000151952
-0.00199669
0.000186026
-0.00185836
0.000229106
-0.00163765
0.000284046
-0.00130763
-0.000831321
0.000352474
6.47659e-07
-0.000647905
1.27629e-06
-0.00082829
2.34627e-06
-0.000960373
3.49635e-06
-0.00106919
5.05718e-06
-0.00116842
6.97616e-06
-0.00126389
9.22581e-06
-0.00135782
1.19968e-05
-0.00145122
1.52839e-05
-0.00154405
1.92701e-05
-0.00163588
2.4058e-05
-0.00172577
2.98124e-05
-0.00181237
3.67139e-05
-0.00189394
4.49985e-05
-0.00196817
5.49431e-05
-0.00203221
6.68867e-05
-0.00208252
8.12528e-05
-0.00211417
9.86724e-05
-0.0021211
0.000119971
-0.00209455
0.000146253
-0.00202298
0.00017904
-0.00189114
0.000220252
-0.00167887
0.000272585
-0.00135996
-0.000903981
0.000345244
5.34526e-07
-0.00064844
1.20604e-06
-0.000828962
2.13343e-06
-0.0009613
3.31648e-06
-0.00107037
4.8456e-06
-0.00116995
6.58622e-06
-0.00126563
8.71745e-06
-0.00135995
1.13122e-05
-0.00145381
1.44436e-05
-0.00154718
1.82282e-05
-0.00163966
2.27607e-05
-0.0017303
2.8258e-05
-0.00181787
3.48756e-05
-0.00190055
4.28207e-05
-0.00197612
5.24101e-05
-0.0020418
6.38641e-05
-0.00209397
7.78078e-05
-0.00212811
9.45761e-05
-0.00213787
0.000115132
-0.0021151
0.000140452
-0.0020483
0.000171926
-0.00192262
0.000211364
-0.0017183
0.000260587
-0.00140919
-0.00095695
0.000313556
4.4491e-07
-0.000648885
1.10474e-06
-0.000829622
1.95863e-06
-0.000962154
3.08406e-06
-0.0010715
4.44772e-06
-0.00117132
6.08872e-06
-0.00126727
8.13783e-06
-0.001362
1.05737e-05
-0.00145625
1.35203e-05
-0.00155012
1.70653e-05
-0.00164321
2.13891e-05
-0.00173462
2.65945e-05
-0.00182307
3.2878e-05
-0.00190684
4.04637e-05
-0.00198371
4.96151e-05
-0.00205096
6.06474e-05
-0.00210501
7.40094e-05
-0.00214148
9.03187e-05
-0.00215418
0.000110209
-0.002135
0.000134966
-0.00207305
0.000166057
-0.00195371
0.00020547
-0.00175772
0.000256583
-0.0014603
-0.00102981
0.00032944
4.93583e-07
-0.00064938
1.08472e-06
-0.000830215
1.87121e-06
-0.000962941
2.87724e-06
-0.00107251
4.12446e-06
-0.00117256
5.65106e-06
-0.0012688
7.51078e-06
-0.00136386
9.77946e-06
-0.00145852
1.25323e-05
-0.00155288
1.58616e-05
-0.00164654
1.98998e-05
-0.00173866
2.47942e-05
-0.00182797
3.07169e-05
-0.00191276
3.78921e-05
-0.00199088
4.65682e-05
-0.00205963
5.70404e-05
-0.00211548
6.98015e-05
-0.00215424
8.52777e-05
-0.00216966
0.000104305
-0.00215402
0.000127963
-0.00209671
0.000157329
-0.00198307
0.000194425
-0.00179481
0.000241428
-0.0015073
-0.00108981
0.000301432
6.19551e-07
-0.000649999
1.01522e-06
-0.000830611
1.79998e-06
-0.000963726
2.7038e-06
-0.00107341
3.6527e-06
-0.00117351
5.12174e-06
-0.00127027
6.84599e-06
-0.00136558
8.83655e-06
-0.00146051
1.14643e-05
-0.0015555
1.46249e-05
-0.0016497
1.82665e-05
-0.0017423
2.28218e-05
-0.00183252
2.85184e-05
-0.00191846
3.52485e-05
-0.00199761
4.33553e-05
-0.00206774
5.32649e-05
-0.00212539
6.52834e-05
-0.00216626
7.99827e-05
-0.00218436
9.81198e-05
-0.00217216
0.000120539
-0.00211913
0.000148679
-0.00201121
0.000184118
-0.00183025
0.000229141
-0.00155232
-0.00114675
0.000286083
4.21675e-07
-0.000650423
8.62203e-07
-0.000831052
1.58236e-06
-0.000964446
2.31039e-06
-0.00107414
3.33146e-06
-0.00117453
4.68152e-06
-0.00127162
6.23296e-06
-0.00136713
8.13634e-06
-0.00146241
1.03683e-05
-0.00155774
1.32521e-05
-0.00165259
1.67322e-05
-0.00174578
2.09745e-05
-0.00183677
2.61384e-05
-0.00192362
3.24173e-05
-0.00200389
4.00403e-05
-0.00207536
4.93024e-05
-0.00213465
6.06192e-05
-0.00217757
7.43447e-05
-0.00219808
9.1319e-05
-0.00218914
0.000112297
-0.00214011
0.000138787
-0.0020377
0.000171958
-0.00186342
0.000213579
-0.00159394
-0.00119692
0.000263745
3.3482e-07
-0.000650758
7.29609e-07
-0.000831448
1.28555e-06
-0.000965003
2.00866e-06
-0.00107486
3.00816e-06
-0.00117553
4.05142e-06
-0.00127266
5.45414e-06
-0.00136854
7.18557e-06
-0.00146414
9.40181e-06
-0.00155995
1.19957e-05
-0.00165518
1.51651e-05
-0.00174895
1.90883e-05
-0.00184069
2.38754e-05
-0.00192841
2.97034e-05
-0.00200972
3.67974e-05
-0.00208246
4.54213e-05
-0.00214328
5.5902e-05
-0.00218805
6.87675e-05
-0.00221095
8.4623e-05
-0.00220499
0.000104369
-0.00215986
0.000129206
-0.00206254
0.000160706
-0.00189492
0.000200866
-0.0016341
-0.00124846
0.000252402
2.2589e-07
-0.000650986
5.88668e-07
-0.000831812
8.92623e-07
-0.000965308
1.72017e-06
-0.00107569
2.52717e-06
-0.00117634
3.53835e-06
-0.00127368
4.80052e-06
-0.0013698
6.36952e-06
-0.00146571
8.31413e-06
-0.0015619
1.07149e-05
-0.00165758
1.36855e-05
-0.00175192
1.73175e-05
-0.00184432
2.1745e-05
-0.00193284
2.7162e-05
-0.00201514
3.37485e-05
-0.00208904
4.17604e-05
-0.00215129
5.15255e-05
-0.00219782
6.35162e-05
-0.00222294
7.82002e-05
-0.00221968
9.65629e-05
-0.00217822
0.000119745
-0.00208572
0.000149219
-0.0019244
0.000187334
-0.00167222
-0.00129908
0.000237955
2.49688e-07
-0.000651235
6.3378e-07
-0.000832197
9.5983e-07
-0.000965633
1.5955e-06
-0.00107633
2.20782e-06
-0.00117695
3.09848e-06
-0.00127457
4.22349e-06
-0.00137092
5.63636e-06
-0.00146713
7.40362e-06
-0.00156366
9.60169e-06
-0.00165978
1.23628e-05
-0.00175469
1.56933e-05
-0.00184765
1.96596e-05
-0.0019368
2.48429e-05
-0.00202032
3.0986e-05
-0.00209519
3.84606e-05
-0.00215876
4.75669e-05
-0.00220692
5.8684e-05
-0.00223406
7.24532e-05
-0.00223344
8.95213e-05
-0.00219529
0.000110986
-0.00210719
0.000138489
-0.0019519
0.00017417
-0.0017079
-0.00134649
0.00022158
3.02157e-07
-0.000651539
4.6521e-07
-0.000832361
9.08806e-07
-0.000966077
1.29288e-06
-0.00107671
1.9057e-06
-0.00117757
2.78061e-06
-0.00127544
3.78419e-06
-0.00137193
4.97207e-06
-0.00146831
6.58111e-06
-0.00156527
8.5986e-06
-0.0016618
1.11134e-05
-0.0017572
1.42747e-05
-0.00185081
1.80854e-05
-0.00194061
2.27985e-05
-0.00202503
2.85573e-05
-0.00210095
3.55767e-05
-0.00216578
4.41285e-05
-0.00221548
5.45801e-05
-0.00224451
6.74042e-05
-0.00224627
8.33172e-05
-0.0022112
0.000103205
-0.00212708
0.000128235
-0.00197693
0.000159917
-0.00173958
-0.00138627
0.000199701
1.94778e-07
-0.000651734
4.02865e-07
-0.000832569
7.08635e-07
-0.000966383
1.11548e-06
-0.00107712
1.64759e-06
-0.0011781
2.33832e-06
-0.00127613
3.23255e-06
-0.00137282
4.46745e-06
-0.00146955
5.93362e-06
-0.00156674
7.70748e-06
-0.00166357
1.00402e-05
-0.00175953
1.29492e-05
-0.00185372
1.65684e-05
-0.00194423
2.10106e-05
-0.00202948
2.64575e-05
-0.00210639
3.31194e-05
-0.00217245
4.12494e-05
-0.00222361
5.12092e-05
-0.00225447
6.34779e-05
-0.00225854
7.87659e-05
-0.00222649
9.80191e-05
-0.00214633
0.000122527
-0.00200144
0.000153962
-0.00177102
-0.00142772
0.000195411
1.46824e-07
-0.000651882
3.36017e-07
-0.00083276
5.98068e-07
-0.000966646
9.45762e-07
-0.00107747
1.49483e-06
-0.00117865
2.01115e-06
-0.00127665
2.80694e-06
-0.00137362
3.84323e-06
-0.00147059
5.18182e-06
-0.00156808
6.97511e-06
-0.00166537
9.06377e-06
-0.00176162
1.17881e-05
-0.00185645
1.51691e-05
-0.00194761
1.92489e-05
-0.00203356
2.45721e-05
-0.00211172
3.0919e-05
-0.00217879
3.86886e-05
-0.00223138
4.82136e-05
-0.00226399
5.99865e-05
-0.00227031
7.46655e-05
-0.00224117
9.32461e-05
-0.00216491
0.00011691
-0.0020251
0.00014764
-0.00180175
-0.00146724
0.000187157
8.09118e-08
-0.000651962
2.64913e-07
-0.000832943
4.93194e-07
-0.000966873
7.90829e-07
-0.00107777
1.18588e-06
-0.00117904
1.71271e-06
-0.00127718
2.41654e-06
-0.00137432
3.34699e-06
-0.00147152
4.56573e-06
-0.0015693
6.14154e-06
-0.00166694
8.23719e-06
-0.00176372
1.07121e-05
-0.00185892
1.39885e-05
-0.00195089
1.79229e-05
-0.00203749
2.28496e-05
-0.00211664
2.89007e-05
-0.00218484
3.6332e-05
-0.00223881
4.54658e-05
-0.00227313
5.67547e-05
-0.0022816
7.08834e-05
-0.0022553
8.86498e-05
-0.00218268
0.000111475
-0.00204793
0.00014092
-0.00183119
-0.00150554
0.000179217
2.12811e-07
-0.000652175
3.54212e-07
-0.000833085
4.48267e-07
-0.000966967
7.75899e-07
-0.0010781
1.00963e-06
-0.00117928
1.45349e-06
-0.00127762
2.06214e-06
-0.00137493
2.8854e-06
-0.00147234
3.98443e-06
-0.0015704
5.4278e-06
-0.00166839
7.29732e-06
-0.00176559
9.68699e-06
-0.00186131
1.27088e-05
-0.00195391
1.64774e-05
-0.00204126
2.12018e-05
-0.00212137
2.69965e-05
-0.00219064
3.41202e-05
-0.00224593
4.28739e-05
-0.00228188
5.36893e-05
-0.00229242
6.71358e-05
-0.00226874
8.40779e-05
-0.00219962
0.000105657
-0.00206951
0.000133486
-0.00185902
-0.00154178
0.000169729
1.29632e-07
-0.000652304
2.3735e-07
-0.000833194
4.6755e-07
-0.000967197
5.62118e-07
-0.00107819
8.17538e-07
-0.00117953
1.26929e-06
-0.00127807
1.78435e-06
-0.00137544
2.50166e-06
-0.00147306
3.3977e-06
-0.00157129
4.70993e-06
-0.0016697
6.43522e-06
-0.00176731
8.7432e-06
-0.00186362
1.15156e-05
-0.00195669
1.51778e-05
-0.00204492
1.9608e-05
-0.0021258
2.51658e-05
-0.0021962
3.20173e-05
-0.00225278
4.04502e-05
-0.00229032
5.0858e-05
-0.00230282
6.37735e-05
-0.00228166
7.99481e-05
-0.0022158
0.000100349
-0.00208991
0.000126322
-0.00188499
-0.00157519
0.000159732
9.19663e-08
-0.000652397
1.80903e-07
-0.000833283
2.837e-07
-0.0009673
4.12058e-07
-0.00107832
6.88553e-07
-0.00117981
8.81289e-07
-0.00127827
1.30355e-06
-0.00137587
1.91573e-06
-0.00147367
2.86244e-06
-0.00157224
3.95999e-06
-0.0016708
5.53971e-06
-0.00176889
7.6116e-06
-0.00186569
1.0286e-05
-0.00195936
1.36901e-05
-0.00204833
1.80143e-05
-0.00213012
2.33292e-05
-0.00220151
2.99485e-05
-0.0022594
3.81361e-05
-0.0022985
4.82764e-05
-0.00231297
6.0932e-05
-0.00229432
7.68651e-05
-0.00223173
9.71483e-05
-0.00211019
0.000123197
-0.00191104
-0.0016103
0.000158307
1.95654e-08
-0.000652416
1.01047e-07
-0.000833365
1.65806e-07
-0.000967365
2.3844e-07
-0.00107839
3.54251e-07
-0.00117992
5.51095e-07
-0.00127846
8.74899e-07
-0.00137619
1.37477e-06
-0.00147417
2.11044e-06
-0.00157297
3.23135e-06
-0.00167192
4.65367e-06
-0.00177032
6.47595e-06
-0.00186752
8.96314e-06
-0.00196185
1.21641e-05
-0.00205153
1.62283e-05
-0.00213419
2.1351e-05
-0.00220664
2.77052e-05
-0.00226576
3.56067e-05
-0.00230641
4.54266e-05
-0.00232279
5.77022e-05
-0.00230659
7.31923e-05
-0.00224722
9.27952e-05
-0.0021298
0.000118003
-0.00193625
-0.00164143
0.00014913
6.09715e-08
-0.000652478
9.274e-08
-0.000833398
9.18197e-08
-0.000967364
1.7616e-07
-0.00107848
1.12419e-07
-0.00117986
2.0786e-07
-0.00127856
4.17491e-07
-0.0013764
7.90293e-07
-0.00147455
1.38562e-06
-0.00157357
2.26955e-06
-0.0016728
3.52198e-06
-0.00177157
5.23474e-06
-0.00186923
7.59099e-06
-0.0019642
1.04955e-05
-0.00205443
1.43158e-05
-0.00213801
1.91923e-05
-0.00221151
2.52422e-05
-0.00227181
3.28111e-05
-0.00231397
4.22638e-05
-0.00233224
5.41086e-05
-0.00231844
6.90435e-05
-0.00226215
8.80542e-05
-0.00214881
0.000112257
-0.00196045
-0.00167272
0.000143545
1.16986e-07
-0.000652595
9.64294e-08
-0.000833378
-4.95996e-08
-0.000967218
-1.29345e-07
-0.0010784
-1.93032e-07
-0.00117979
-2.02099e-07
-0.00127855
-2.36277e-08
-0.00137658
1.28408e-07
-0.0014747
5.73924e-07
-0.00157401
1.29178e-06
-0.00167352
2.3606e-06
-0.00177264
3.94769e-06
-0.00187082
5.93051e-06
-0.00196619
8.66204e-06
-0.00205717
1.22135e-05
-0.00214156
1.67564e-05
-0.00221606
2.25109e-05
-0.00227756
2.97178e-05
-0.00232118
3.87473e-05
-0.00234127
5.00765e-05
-0.00232977
6.42664e-05
-0.00227635
8.24788e-05
-0.00216702
0.000105547
-0.00198352
-0.00170205
0.000134881
-8.81625e-09
-0.000652588
-7.78401e-08
-0.00083331
-1.16388e-07
-0.00096718
-3.70938e-07
-0.00107814
-5.3528e-07
-0.00117963
-5.70566e-07
-0.00127852
-6.98244e-07
-0.00137645
-5.18366e-07
-0.00147488
-3.19884e-07
-0.00157421
2.18626e-07
-0.00167406
1.08835e-06
-0.00177351
2.37826e-06
-0.00187211
4.19446e-06
-0.001968
6.73116e-06
-0.0020597
9.92061e-06
-0.00214475
1.41442e-05
-0.00222028
1.95503e-05
-0.00228297
2.63755e-05
-0.00232801
3.49856e-05
-0.00234988
4.58549e-05
-0.00234063
5.96521e-05
-0.00229014
7.72744e-05
-0.00218464
9.99745e-05
-0.00200622
-0.00173186
0.000129783
-7.89581e-08
-0.000652508
-2.01156e-07
-0.000833188
-4.04836e-07
-0.000966976
-6.63184e-07
-0.00107789
-8.45262e-07
-0.00117945
-1.181e-06
-0.00127818
-1.35726e-06
-0.00137627
-1.41709e-06
-0.00147482
-1.22056e-06
-0.00157441
-1.0489e-06
-0.00167423
-3.00538e-07
-0.00177425
7.53485e-07
-0.00187316
2.30782e-06
-0.00196956
4.48265e-06
-0.00206188
7.48873e-06
-0.00214776
1.12916e-05
-0.00222408
1.6319e-05
-0.002288
2.27005e-05
-0.00233439
3.08281e-05
-0.00235801
4.11681e-05
-0.00235097
5.43556e-05
-0.00230333
7.12817e-05
-0.00220157
9.31733e-05
-0.00202811
-0.00176032
0.000121633
-1.79333e-07
-0.00065233
-3.58268e-07
-0.00083301
-6.39997e-07
-0.000966694
-9.93579e-07
-0.00107753
-1.37725e-06
-0.00117906
-1.75138e-06
-0.00127781
-2.07224e-06
-0.00137595
-2.29448e-06
-0.0014746
-2.36428e-06
-0.00157434
-2.22064e-06
-0.00167438
-1.71013e-06
-0.00177477
-9.88065e-07
-0.00187389
3.58527e-07
-0.0019709
2.14646e-06
-0.00206367
4.73468e-06
-0.00215034
8.21361e-06
-0.00222756
1.27802e-05
-0.00229256
1.86997e-05
-0.00234031
2.62627e-05
-0.00236557
3.59516e-05
-0.00236066
4.83874e-05
-0.00231577
6.43997e-05
-0.00221758
8.51278e-05
-0.00204884
-0.00178743
0.000112241
-1.88822e-07
-0.000652141
-3.67097e-07
-0.000832832
-8.33875e-07
-0.000966227
-1.21214e-06
-0.00107716
-1.81378e-06
-0.00117846
-2.33098e-06
-0.00127729
-2.81081e-06
-0.00137547
-3.20912e-06
-0.0014742
-3.4737e-06
-0.00157408
-3.54597e-06
-0.0016743
-3.35601e-06
-0.00177496
-2.82254e-06
-0.00187442
-1.84828e-06
-0.00197188
-3.20272e-07
-0.0020652
1.89536e-06
-0.00215256
5.02049e-06
-0.00223069
9.05059e-06
-0.00229659
1.44232e-05
-0.00234568
2.13603e-05
-0.00237251
3.02911e-05
-0.0023696
4.17698e-05
-0.00232725
5.65498e-05
-0.00223236
7.55093e-05
-0.0020678
-0.00181096
9.90383e-05
-3.35539e-07
-0.000651807
-5.86694e-07
-0.000832582
-9.77382e-07
-0.000965837
-1.64935e-06
-0.00107648
-2.29177e-06
-0.00117782
-2.86617e-06
-0.00127672
-3.50889e-06
-0.00137483
-4.17416e-06
-0.00147354
-4.6387e-06
-0.00157361
-4.93275e-06
-0.00167401
-4.98909e-06
-0.0017749
-4.65242e-06
-0.00187476
-4.05987e-06
-0.00197247
-2.8017e-06
-0.00206645
-1.03798e-06
-0.00215432
1.5954e-06
-0.00223332
5.21043e-06
-0.00230021
1.00342e-05
-0.00235051
1.63749e-05
-0.00237885
2.46143e-05
-0.00237783
3.53104e-05
-0.00233794
4.91562e-05
-0.00224621
6.70579e-05
-0.0020857
-0.00183451
9.06056e-05
-3.22799e-07
-0.000651484
-7.52492e-07
-0.000832153
-1.33295e-06
-0.000965256
-2.03225e-06
-0.00107579
-2.71618e-06
-0.00117714
-3.61537e-06
-0.00127582
-4.42096e-06
-0.00137402
-5.09479e-06
-0.00147286
-5.76175e-06
-0.00157294
-6.36327e-06
-0.00167341
-6.66914e-06
-0.00177459
-6.68781e-06
-0.00187474
-6.3297e-06
-0.00197283
-5.49017e-06
-0.00206729
-3.97664e-06
-0.00215584
-1.84488e-06
-0.00223545
1.34651e-06
-0.0023034
5.5691e-06
-0.00235473
1.13111e-05
-0.00238459
1.88993e-05
-0.00238542
2.89092e-05
-0.00234795
4.21072e-05
-0.00225941
5.95415e-05
-0.00210314
-0.00185829
8.33225e-05
-4.38439e-07
-0.000651046
-9.41434e-07
-0.000831651
-1.61858e-06
-0.000964579
-2.43197e-06
-0.00107497
-3.33626e-06
-0.00117623
-4.29336e-06
-0.00127486
-5.26332e-06
-0.00137305
-6.20663e-06
-0.00147192
-7.07697e-06
-0.00157207
-7.73965e-06
-0.00167275
-8.37855e-06
-0.00177395
-8.67768e-06
-0.00187444
-8.63261e-06
-0.00197288
-8.14377e-06
-0.00206778
-7.09276e-06
-0.00215689
-5.33921e-06
-0.00223721
-2.844e-06
-0.0023059
1.04672e-06
-0.00235862
6.07676e-06
-0.00238962
1.2894e-05
-0.00239224
2.19827e-05
-0.00235704
3.40623e-05
-0.00227149
4.99965e-05
-0.00211907
-0.00187814
6.9842e-05
-4.49381e-07
-0.000650598
-1.05595e-06
-0.000831045
-1.85074e-06
-0.000963785
-2.79426e-06
-0.00107403
-3.84206e-06
-0.00117518
-4.95661e-06
-0.00127375
-6.09941e-06
-0.00137191
-7.2322e-06
-0.00147079
-8.31058e-06
-0.00157099
-9.28509e-06
-0.00167177
-1.00169e-05
-0.00177322
-1.06755e-05
-0.00187378
-1.08682e-05
-0.00197268
-1.0801e-05
-0.00206785
-1.01406e-05
-0.00215755
-8.76277e-06
-0.00223859
-6.7024e-06
-0.00230796
-3.56889e-06
-0.00236175
8.18604e-07
-0.00239401
6.88276e-06
-0.0023983
1.5062e-05
-0.00236522
2.60681e-05
-0.00228249
4.08209e-05
-0.00213383
-0.00189731
5.99901e-05
-4.58758e-07
-0.00065014
-1.14884e-06
-0.000830356
-2.13279e-06
-0.000962801
-3.10735e-06
-0.00107306
-4.38003e-06
-0.00117391
-5.64569e-06
-0.00127248
-6.95619e-06
-0.0013706
-8.27434e-06
-0.00146947
-9.55727e-06
-0.00156971
-1.07571e-05
-0.00167057
-1.18176e-05
-0.00177216
-1.26729e-05
-0.00187293
-1.32449e-05
-0.00197211
-1.34428e-05
-0.00206765
-1.31594e-05
-0.00215783
-1.2269e-05
-0.00223948
-1.06222e-05
-0.00230961
-8.03401e-06
-0.00236434
-4.20417e-06
-0.00239784
1.06812e-06
-0.00240358
8.43207e-06
-0.00237258
1.85987e-05
-0.00229266
3.27001e-05
-0.00214793
-0.00191901
5.44079e-05
-6.14263e-07
-0.000649526
-1.39771e-06
-0.000829573
-2.31657e-06
-0.000961882
-3.59345e-06
-0.00107178
-4.91528e-06
-0.00117259
-6.24628e-06
-0.00127115
-7.72645e-06
-0.00136912
-9.23133e-06
-0.00146797
-1.08037e-05
-0.00156814
-1.22287e-05
-0.00166915
-1.35365e-05
-0.00177086
-1.45865e-05
-0.00187188
-1.5534e-05
-0.00197116
-1.59905e-05
-0.0020672
-1.61423e-05
-0.00215768
-1.56566e-05
-0.00223996
-1.44011e-05
-0.00231086
-1.23892e-05
-0.00236635
-9.22406e-06
-0.002401
-4.67454e-06
-0.00240813
1.60819e-06
-0.00237887
1.01374e-05
-0.00230119
2.15101e-05
-0.0021593
-0.0019309
3.3393e-05
-7.00401e-07
-0.000648826
-1.58002e-06
-0.000828694
-2.69644e-06
-0.000960766
-4.00774e-06
-0.00107047
-5.37724e-06
-0.00117122
-7.03631e-06
-0.00126949
-8.68211e-06
-0.00136747
-1.03692e-05
-0.00146628
-1.19737e-05
-0.00156654
-1.36204e-05
-0.0016675
-1.52519e-05
-0.00176922
-1.66462e-05
-0.00187048
-1.781e-05
-0.00197
-1.86577e-05
-0.00206635
-1.90179e-05
-0.00215732
-1.89724e-05
-0.00224001
-1.81738e-05
-0.00231166
-1.65089e-05
-0.00236802
-1.37366e-05
-0.00240378
-9.51994e-06
-0.00241234
-3.36876e-06
-0.00238502
5.31958e-06
-0.00230988
1.76382e-05
-0.00217162
-0.00195293
3.96731e-05
-8.18985e-07
-0.000648008
-1.77838e-06
-0.000827736
-2.99636e-06
-0.000959548
-4.42584e-06
-0.00106904
-6.01852e-06
-0.00116963
-7.73814e-06
-0.00126778
-9.54919e-06
-0.00136566
-1.14188e-05
-0.00146441
-1.3309e-05
-0.00156464
-1.51777e-05
-0.00166564
-1.68943e-05
-0.00176751
-1.86376e-05
-0.00186874
-2.00257e-05
-0.00196861
-2.1276e-05
-0.0020651
-2.20686e-05
-0.00215653
-2.23583e-05
-0.00223972
-2.20028e-05
-0.00231202
-2.07682e-05
-0.00236925
-1.85904e-05
-0.00240595
-1.49732e-05
-0.00241596
-9.49982e-06
-0.00239049
-1.50917e-06
-0.00231787
9.85756e-06
-0.00218299
-0.0019661
2.3028e-05
-8.31951e-07
-0.000647177
-1.89678e-06
-0.000826672
-3.23443e-06
-0.000958211
-4.70786e-06
-0.00106757
-6.53399e-06
-0.0011678
-8.41093e-06
-0.0012659
-1.03938e-05
-0.00136368
-1.24507e-05
-0.00146235
-1.45454e-05
-0.00156255
-1.66378e-05
-0.00166354
-1.86803e-05
-0.00176546
-2.06167e-05
-0.0018668
-2.23794e-05
-0.00196685
-2.38893e-05
-0.00206359
-2.50523e-05
-0.00215537
-2.56923e-05
-0.00223908
-2.58711e-05
-0.00231184
-2.52354e-05
-0.00236989
-2.35834e-05
-0.00240761
-2.07353e-05
-0.00241881
-1.6261e-05
-0.00239497
-9.53607e-06
-0.00232459
-1.98823e-07
-0.00219232
-0.00197647
1.01681e-05
-8.39798e-07
-0.000646337
-1.98745e-06
-0.000825525
-3.42737e-06
-0.000956771
-5.19744e-06
-0.0010658
-7.06917e-06
-0.00116593
-9.00772e-06
-0.00126396
-1.11558e-05
-0.00136153
-1.34802e-05
-0.00146003
-1.57747e-05
-0.00156026
-1.80867e-05
-0.00166123
-2.03708e-05
-0.00176318
-2.24964e-05
-0.00186468
-2.46286e-05
-0.00196472
-2.64633e-05
-0.00206176
-2.79868e-05
-0.00215384
-2.90937e-05
-0.00223797
-2.96613e-05
-0.00231127
-2.95423e-05
-0.00237001
-2.85464e-05
-0.0024086
-2.64149e-05
-0.00242094
-2.27751e-05
-0.00239861
-1.71284e-05
-0.00233024
-8.4459e-06
-0.00220101
-0.00199163
6.71192e-06
-9.91698e-07
-0.000645347
-2.2292e-06
-0.000824288
-3.77619e-06
-0.000955224
-5.57937e-06
-0.001064
-7.58607e-06
-0.00116392
-9.76161e-06
-0.00126179
-1.20726e-05
-0.00135922
-1.44044e-05
-0.0014577
-1.69794e-05
-0.00155768
-1.95071e-05
-0.0016587
-2.20285e-05
-0.00176066
-2.44925e-05
-0.00186222
-2.68364e-05
-0.00196237
-2.89157e-05
-0.00205968
-3.07879e-05
-0.00215197
-3.23423e-05
-0.00223642
-3.32666e-05
-0.00231035
-3.36711e-05
-0.00236961
-3.31969e-05
-0.00240908
-3.16667e-05
-0.00242247
-2.87534e-05
-0.00240152
-2.39757e-05
-0.00233502
-1.65541e-05
-0.00220843
-0.00200602
-2.15705e-06
-1.07087e-06
-0.000644276
-2.39739e-06
-0.000822963
-4.04829e-06
-0.000953574
-5.96815e-06
-0.00106208
-8.01602e-06
-0.00116187
-1.04222e-05
-0.00125938
-1.28899e-05
-0.00135675
-1.54798e-05
-0.00145511
-1.80772e-05
-0.00155508
-2.08155e-05
-0.00165597
-2.36486e-05
-0.00175783
-2.63676e-05
-0.0018595
-2.89928e-05
-0.00195975
-3.14531e-05
-0.00205722
-3.36618e-05
-0.00214976
-3.55165e-05
-0.00223456
-3.68989e-05
-0.00230896
-3.76138e-05
-0.00236889
-3.76675e-05
-0.00240902
-3.66941e-05
-0.00242345
-3.44653e-05
-0.00240375
-3.07676e-05
-0.00233872
-2.542e-05
-0.00221378
-0.00200588
-2.55612e-05
-1.17972e-06
-0.000643098
-2.57462e-06
-0.000821569
-4.31529e-06
-0.000951833
-6.34164e-06
-0.00106005
-8.59976e-06
-0.00115962
-1.1054e-05
-0.00125693
-1.3673e-05
-0.00135413
-1.643e-05
-0.00145235
-1.92957e-05
-0.00155222
-2.22377e-05
-0.00165303
-2.5138e-05
-0.00175493
-2.81865e-05
-0.00185645
-3.10167e-05
-0.00195692
-3.38577e-05
-0.00205438
-3.64022e-05
-0.00214722
-3.86189e-05
-0.00223235
-4.03784e-05
-0.0023072
-4.1523e-05
-0.00236775
-4.18477e-05
-0.0024087
-4.10222e-05
-0.00242427
-3.88078e-05
-0.00240596
-3.46222e-05
-0.0023429
-2.77566e-05
-0.00222064
-0.00202421
-9.43047e-06
-1.17838e-06
-0.00064192
-2.58126e-06
-0.000820167
-4.50884e-06
-0.000949906
-6.56256e-06
-0.001058
-9.03491e-06
-0.00115714
-1.16278e-05
-0.00125433
-1.43986e-05
-0.00135136
-1.73218e-05
-0.00144943
-2.03696e-05
-0.00154917
-2.35121e-05
-0.00164988
-2.67145e-05
-0.00175172
-2.99345e-05
-0.00185323
-3.31194e-05
-0.00195373
-3.62046e-05
-0.00205129
-3.9247e-05
-0.00214418
-4.16666e-05
-0.00222993
-4.39405e-05
-0.00230493
-4.55826e-05
-0.0023661
-4.63966e-05
-0.00240789
-4.62753e-05
-0.00242439
-4.47051e-05
-0.00240754
-4.12138e-05
-0.00234639
-3.54618e-05
-0.00222639
-0.0020255
-3.41702e-05
-1.17287e-06
-0.000640748
-2.80309e-06
-0.000818537
-4.64111e-06
-0.000948068
-7.15286e-06
-0.00105549
-9.46278e-06
-0.00115483
-1.20936e-05
-0.0012517
-1.50034e-05
-0.00134845
-1.80802e-05
-0.00144635
-2.1381e-05
-0.00154587
-2.47113e-05
-0.00164655
-2.81231e-05
-0.00174831
-3.15027e-05
-0.00184985
-3.50318e-05
-0.00195021
-3.83553e-05
-0.00204797
-4.16867e-05
-0.00214085
-4.47222e-05
-0.00222689
-4.73496e-05
-0.0023023
-4.95921e-05
-0.00236386
-5.10467e-05
-0.00240643
-5.1446e-05
-0.00242399
-5.02919e-05
-0.00240869
-4.68517e-05
-0.00234984
-3.99083e-05
-0.00223334
-0.00204283
-2.2582e-05
-1.31048e-06
-0.000639438
-2.92435e-06
-0.000816924
-4.9263e-06
-0.000946067
-7.2542e-06
-0.00105316
-9.76411e-06
-0.00115232
-1.26829e-05
-0.00124879
-1.58982e-05
-0.00134524
-1.89348e-05
-0.00144332
-2.22223e-05
-0.00154258
-2.58045e-05
-0.00164297
-2.94067e-05
-0.00174471
-3.30783e-05
-0.00184618
-3.67799e-05
-0.0019465
-4.04648e-05
-0.00204429
-4.40054e-05
-0.0021373
-4.75306e-05
-0.00222337
-5.07439e-05
-0.00229909
-5.35897e-05
-0.00236102
-5.59095e-05
-0.00240411
-5.74859e-05
-0.00242242
-5.80327e-05
-0.00240814
-5.71591e-05
-0.00235071
-5.43373e-05
-0.00223616
-0.00204646
-5.07105e-05
-1.39075e-06
-0.000638048
-3.04494e-06
-0.000815271
-5.10556e-06
-0.000944006
-7.50719e-06
-0.00105076
-1.01925e-05
-0.00114964
-1.31235e-05
-0.00124586
-1.62693e-05
-0.00134209
-1.96073e-05
-0.00143998
-2.31132e-05
-0.00153908
-2.66814e-05
-0.00163941
-3.05266e-05
-0.00174087
-3.43798e-05
-0.00184233
-3.82862e-05
-0.0019426
-4.22071e-05
-0.00204037
-4.60939e-05
-0.00213342
-4.98886e-05
-0.00221957
-5.35143e-05
-0.00229547
-5.69302e-05
-0.0023576
-5.9837e-05
-0.00240121
-6.22093e-05
-0.00242005
-6.36653e-05
-0.00240669
-6.39375e-05
-0.00235044
-6.24832e-05
-0.00223761
-0.00204964
-5.92962e-05
-1.36015e-06
-0.000636689
-3.06865e-06
-0.000813563
-5.19562e-06
-0.000941879
-7.67437e-06
-0.00104828
-1.04468e-05
-0.00114687
-1.3474e-05
-0.00124283
-1.67248e-05
-0.00133884
-2.01766e-05
-0.00143653
-2.38034e-05
-0.00153545
-2.75819e-05
-0.00163563
-3.14078e-05
-0.00173704
-3.54877e-05
-0.00183825
-3.94842e-05
-0.0019386
-4.36595e-05
-0.00203619
-4.77559e-05
-0.00212932
-5.17351e-05
-0.0022156
-5.57309e-05
-0.00229147
-5.94806e-05
-0.00235385
-6.2891e-05
-0.0023978
-6.59304e-05
-0.00241701
-6.83618e-05
-0.00240426
-6.9708e-05
-0.00234909
-6.9605e-05
-0.00223772
-0.00205126
-6.79906e-05
-1.31743e-06
-0.000635372
-3.05063e-06
-0.000811831
-5.30418e-06
-0.000939626
-7.75387e-06
-0.00104583
-1.0683e-05
-0.00114394
-1.37898e-05
-0.00123972
-1.7129e-05
-0.0013355
-2.06768e-05
-0.00143298
-2.44059e-05
-0.00153172
-2.8292e-05
-0.00163174
-3.23087e-05
-0.00173302
-3.63518e-05
-0.00183421
-4.06165e-05
-0.00193434
-4.48448e-05
-0.00203196
-4.90736e-05
-0.00212509
-5.32626e-05
-0.00221141
-5.73615e-05
-0.00228737
-6.13095e-05
-0.0023499
-6.51246e-05
-0.00239398
-6.83633e-05
-0.00241377
-7.10981e-05
-0.00240152
-7.2851e-05
-0.00234734
-7.29298e-05
-0.00223764
-0.00205618
-6.80072e-05
-1.41064e-06
-0.000633962
-3.17042e-06
-0.000810072
-5.29571e-06
-0.000937501
-7.97456e-06
-0.00104315
-1.08831e-05
-0.00114103
-1.39797e-05
-0.00123663
-1.74027e-05
-0.00133208
-2.10402e-05
-0.00142934
-2.49458e-05
-0.00152781
-2.89285e-05
-0.00162776
-3.30425e-05
-0.00172891
-3.72579e-05
-0.00182999
-4.1541e-05
-0.00193005
-4.57863e-05
-0.00202772
-5.01649e-05
-0.00212072
-5.44271e-05
-0.00220715
-5.85327e-05
-0.00228327
-6.26102e-05
-0.00234583
-6.6411e-05
-0.00239018
-6.98995e-05
-0.00241028
-7.29486e-05
-0.00239847
-7.53549e-05
-0.00234493
-7.6743e-05
-0.00223625
-0.00205543
-7.74919e-05
-1.43098e-06
-0.000632532
-3.21601e-06
-0.000808288
-5.46639e-06
-0.000935251
-8.11113e-06
-0.00104051
-1.09962e-05
-0.00113814
-1.4337e-05
-0.00123329
-1.78383e-05
-0.00132858
-2.15598e-05
-0.00142562
-2.53894e-05
-0.00152399
-2.94635e-05
-0.00162369
-3.37467e-05
-0.00172463
-3.80487e-05
-0.00182569
-4.24106e-05
-0.00192569
-4.67932e-05
-0.00202334
-5.10831e-05
-0.00211643
-5.54318e-05
-0.0022028
-5.95825e-05
-0.00227912
-6.34753e-05
-0.00234193
-6.71884e-05
-0.00238647
-7.04169e-05
-0.00240705
-7.29953e-05
-0.00239589
-7.45621e-05
-0.00234337
-7.46651e-05
-0.00223615
-0.00205682
-7.328e-05
-1.48205e-06
-0.000631051
-3.27578e-06
-0.000806495
-5.55845e-06
-0.000932969
-8.25247e-06
-0.00103782
-1.12871e-05
-0.00113511
-1.46146e-05
-0.00122996
-1.81971e-05
-0.001325
-2.20066e-05
-0.00142182
-2.60112e-05
-0.00151998
-3.0181e-05
-0.00161952
-3.44047e-05
-0.0017204
-3.88776e-05
-0.00182122
-4.3255e-05
-0.00192132
-4.77855e-05
-0.00201881
-5.22017e-05
-0.00211201
-5.65185e-05
-0.00219848
-6.06687e-05
-0.00227497
-6.45741e-05
-0.00233803
-6.81315e-05
-0.00238291
-7.11944e-05
-0.00240399
-7.35023e-05
-0.00239359
-7.48877e-05
-0.00234198
-7.47668e-05
-0.00223627
-0.00205956
-7.20242e-05
-1.43047e-06
-0.000629621
-3.18133e-06
-0.000804746
-5.60061e-06
-0.00093055
-8.2769e-06
-0.00103514
-1.14769e-05
-0.00113191
-1.48927e-05
-0.00122655
-1.85714e-05
-0.00132132
-2.24833e-05
-0.0014179
-2.65945e-05
-0.00151587
-3.08742e-05
-0.00161524
-3.52875e-05
-0.00171599
-3.97949e-05
-0.00181671
-4.43523e-05
-0.00191676
-4.89098e-05
-0.00201425
-5.34108e-05
-0.00210751
-5.77278e-05
-0.00219416
-6.19759e-05
-0.00227072
-6.58771e-05
-0.00233413
-6.93242e-05
-0.00237946
-7.22586e-05
-0.00240106
-7.44099e-05
-0.00239144
-7.52355e-05
-0.00234116
-7.42517e-05
-0.00223725
-0.00206309
-7.07234e-05
-1.38353e-06
-0.000628239
-3.31808e-06
-0.000802812
-5.61669e-06
-0.000928251
-8.53114e-06
-0.00103223
-1.17256e-05
-0.00112872
-1.51486e-05
-0.00122312
-1.89297e-05
-0.00131754
-2.30351e-05
-0.0014138
-2.74324e-05
-0.00151147
-3.16697e-05
-0.001611
-3.62112e-05
-0.00171145
-4.07751e-05
-0.00181215
-4.55383e-05
-0.001912
-5.0156e-05
-0.00200963
-5.48494e-05
-0.00210282
-5.93446e-05
-0.00218967
-6.36299e-05
-0.00226643
-6.76149e-05
-0.00233014
-7.1186e-05
-0.00237589
-7.41897e-05
-0.00239805
-7.64015e-05
-0.00238922
-7.74832e-05
-0.00234007
-7.69035e-05
-0.00223783
-0.00206577
-7.42171e-05
-1.48991e-06
-0.00062675
-3.38405e-06
-0.000800919
-5.82723e-06
-0.000925808
-8.73303e-06
-0.00102932
-1.20184e-05
-0.00112543
-1.56298e-05
-0.00121951
-1.95239e-05
-0.00131364
-2.35866e-05
-0.00140974
-2.79478e-05
-0.00150711
-3.25714e-05
-0.00160638
-3.72607e-05
-0.00170676
-4.20535e-05
-0.00180735
-4.69013e-05
-0.00190715
-5.17501e-05
-0.00200478
-5.64692e-05
-0.0020981
-6.11869e-05
-0.00218495
-6.55616e-05
-0.00226206
-6.97451e-05
-0.00232596
-7.34457e-05
-0.00237219
-7.65739e-05
-0.00239492
-7.89191e-05
-0.00238688
-8.01853e-05
-0.00233881
-7.99631e-05
-0.00223805
-0.00206928
-7.64561e-05
-1.55421e-06
-0.000625197
-3.48026e-06
-0.000798994
-5.98338e-06
-0.000923306
-8.97063e-06
-0.00102633
-1.2269e-05
-0.00112213
-1.62551e-05
-0.00121553
-2.00973e-05
-0.0013098
-2.43789e-05
-0.00140546
-2.8887e-05
-0.0015026
-3.35099e-05
-0.00160176
-3.84442e-05
-0.00170182
-4.34136e-05
-0.00180239
-4.84467e-05
-0.00190212
-5.34883e-05
-0.00199974
-5.84728e-05
-0.00209311
-6.3327e-05
-0.0021801
-6.79641e-05
-0.00225742
-7.22306e-05
-0.0023217
-7.61835e-05
-0.00236824
-7.95259e-05
-0.00239158
-8.2121e-05
-0.00238429
-8.39415e-05
-0.00233699
-8.46752e-05
-0.00223732
-0.00206868
-8.52759e-05
-1.52575e-06
-0.000623672
-3.51528e-06
-0.000797005
-6.10511e-06
-0.000920716
-9.19733e-06
-0.00102324
-1.27014e-05
-0.00111863
-1.65569e-05
-0.00121167
-2.07202e-05
-0.00130564
-2.51572e-05
-0.00140102
-2.9831e-05
-0.00149793
-3.47101e-05
-0.00159688
-3.96782e-05
-0.00169686
-4.4923e-05
-0.00179714
-5.00958e-05
-0.00189694
-5.54311e-05
-0.00199441
-6.06493e-05
-0.0020879
-6.56816e-05
-0.00217507
-7.06241e-05
-0.00225248
-7.5181e-05
-0.00231714
-7.92785e-05
-0.00236414
-8.26873e-05
-0.00238817
-8.52965e-05
-0.00238168
-8.65942e-05
-0.00233569
-8.64646e-05
-0.00223745
-0.00207099
-8.41577e-05
-1.49977e-06
-0.000622173
-3.53972e-06
-0.000794967
-6.29218e-06
-0.000917964
-9.40379e-06
-0.00102013
-1.31148e-05
-0.00111492
-1.71078e-05
-0.00120768
-2.14231e-05
-0.00130132
-2.60248e-05
-0.00139642
-3.08762e-05
-0.00149308
-3.59454e-05
-0.00159181
-4.11941e-05
-0.00169161
-4.65072e-05
-0.00179183
-5.20587e-05
-0.00189139
-5.75746e-05
-0.00198889
-6.30639e-05
-0.00208241
-6.84537e-05
-0.00216968
-7.36543e-05
-0.00224728
-7.85614e-05
-0.00231223
-8.29914e-05
-0.00235971
-8.69336e-05
-0.00238423
-9.00062e-05
-0.0023786
-9.19458e-05
-0.00233375
-9.23408e-05
-0.00223706
-0.00207037
-9.29587e-05
-1.61926e-06
-0.000620554
-3.7248e-06
-0.000792862
-6.40518e-06
-0.000915284
-9.80295e-06
-0.00101674
-1.35637e-05
-0.00111116
-1.76234e-05
-0.00120362
-2.21035e-05
-0.00129684
-2.68835e-05
-0.00139164
-3.20065e-05
-0.00148796
-3.72801e-05
-0.00158654
-4.27465e-05
-0.00168614
-4.83665e-05
-0.00178621
-5.40934e-05
-0.00188566
-5.98068e-05
-0.00198318
-6.56513e-05
-0.00207656
-7.13534e-05
-0.00216398
-7.68349e-05
-0.0022418
-8.21734e-05
-0.00230689
-8.70583e-05
-0.00235483
-9.13522e-05
-0.00237994
-9.47331e-05
-0.00237522
-9.66799e-05
-0.0023318
-9.62547e-05
-0.00223748
-0.00207772
-8.8903e-05
-1.67663e-06
-0.000618879
-3.85708e-06
-0.000790683
-6.72388e-06
-0.000912418
-1.01621e-05
-0.0010133
-1.39814e-05
-0.00110734
-1.83673e-05
-0.00119924
-2.30199e-05
-0.00129219
-2.79863e-05
-0.00138667
-3.31497e-05
-0.00148279
-3.87168e-05
-0.00158097
-4.44129e-05
-0.00168045
-5.02772e-05
-0.00178035
-5.62648e-05
-0.00187968
-6.23269e-05
-0.00197712
-6.8339e-05
-0.00207055
-7.4435e-05
-0.00215788
-8.03449e-05
-0.00223589
-8.60514e-05
-0.00230119
-9.14585e-05
-0.00234942
-9.645e-05
-0.00237495
-0.000100874
-0.0023708
-0.000104499
-0.00232818
-0.000106891
-0.00223509
-0.00207623
-0.000108384
-1.76523e-06
-0.000617115
-4.01092e-06
-0.000788438
-6.97979e-06
-0.000909449
-1.05463e-05
-0.00100973
-1.45996e-05
-0.00110328
-1.90683e-05
-0.00119477
-2.3904e-05
-0.00128735
-2.90688e-05
-0.00138151
-3.45255e-05
-0.00147734
-4.01646e-05
-0.00157533
-4.61042e-05
-0.00167451
-5.22998e-05
-0.00177415
-5.8487e-05
-0.00187349
-6.49028e-05
-0.0019707
-7.12784e-05
-0.00206417
-7.76204e-05
-0.00215154
-8.38533e-05
-0.00222966
-8.98371e-05
-0.0022952
-9.5637e-05
-0.00234362
-0.000100952
-0.00236963
-0.000105585
-0.00236617
-0.000109343
-0.00232442
-0.000111647
-0.00223279
-0.0020758
-0.00011208
-1.73389e-06
-0.000615383
-4.07232e-06
-0.000786101
-7.16902e-06
-0.000906353
-1.0806e-05
-0.0010061
-1.51165e-05
-0.00109897
-1.97753e-05
-0.00119011
-2.48166e-05
-0.00128231
-3.02013e-05
-0.00137613
-3.58917e-05
-0.00147165
-4.18563e-05
-0.00156937
-4.80573e-05
-0.00166831
-5.44548e-05
-0.00176775
-6.10044e-05
-0.00186694
-6.76555e-05
-0.00196405
-7.43504e-05
-0.00205748
-8.09632e-05
-0.00214493
-8.76054e-05
-0.00222301
-9.40108e-05
-0.0022888
-0.000100092
-0.00233754
-0.000105833
-0.00236389
-0.000111051
-0.00236095
-0.000115362
-0.00232011
-0.00011855
-0.0022296
-0.00207414
-0.000120207
-1.64395e-06
-0.00061374
-4.09145e-06
-0.000783655
-7.32711e-06
-0.000903118
-1.12944e-05
-0.00100213
-1.57033e-05
-0.00109457
-2.04786e-05
-0.00118534
-2.57346e-05
-0.00127706
-3.14297e-05
-0.00137043
-3.73648e-05
-0.00146571
-4.35896e-05
-0.00156314
-5.00663e-05
-0.00166183
-5.66831e-05
-0.00176114
-6.36129e-05
-0.00186001
-7.05887e-05
-0.00195708
-7.76235e-05
-0.00205045
-8.46523e-05
-0.0021379
-9.15976e-05
-0.00221607
-9.8376e-05
-0.00228202
-0.000104889
-0.00233103
-0.000111017
-0.00235776
-0.000116592
-0.00235537
-0.00012138
-0.00231532
-0.000125009
-0.00222597
-0.0020726
-0.000126545
-1.91091e-06
-0.00061183
-4.4342e-06
-0.000781133
-7.78741e-06
-0.000899765
-1.18199e-05
-0.000998099
-1.64018e-05
-0.00108998
-2.14541e-05
-0.00118028
-2.69232e-05
-0.00127159
-3.26891e-05
-0.00136467
-3.89535e-05
-0.00145945
-4.54475e-05
-0.00155665
-5.22125e-05
-0.00165506
-5.92106e-05
-0.00175414
-6.63972e-05
-0.00185283
-7.36543e-05
-0.00194982
-8.11249e-05
-0.00204298
-8.85414e-05
-0.00213048
-9.58302e-05
-0.00220878
-0.000103081
-0.00227477
-0.000110015
-0.0023241
-0.000116567
-0.00235121
-0.000122572
-0.00234937
-0.000127799
-0.0023101
-0.000131935
-0.00222183
-0.00206978
-0.000134757
-1.99329e-06
-0.000609838
-4.62981e-06
-0.000778497
-8.13089e-06
-0.000896264
-1.23369e-05
-0.000993893
-1.70308e-05
-0.00108529
-2.23785e-05
-0.00117494
-2.80786e-05
-0.00126589
-3.4174e-05
-0.00135857
-4.05484e-05
-0.00145307
-4.73293e-05
-0.00154987
-5.44761e-05
-0.00164792
-6.18019e-05
-0.00174682
-6.93391e-05
-0.00184529
-7.70401e-05
-0.00194212
-8.47803e-05
-0.00203524
-9.26872e-05
-0.00212258
-0.000100486
-0.00220098
-0.000108093
-0.00226716
-0.000115563
-0.00231663
-0.000122597
-0.00234418
-0.000129026
-0.00234294
-0.000134731
-0.00230439
-0.000139227
-0.00221734
-0.00206703
-0.00014198
-2.11549e-06
-0.000607724
-4.85456e-06
-0.000775759
-8.50206e-06
-0.000892617
-1.28851e-05
-0.000989511
-1.78633e-05
-0.00108031
-2.33506e-05
-0.00116945
-2.92923e-05
-0.00125995
-3.56478e-05
-0.00135222
-4.23799e-05
-0.00144634
-4.94595e-05
-0.00154279
-5.6777e-05
-0.0016406
-6.45197e-05
-0.00173907
-7.2357e-05
-0.00183745
-8.05249e-05
-0.00193395
-8.8761e-05
-0.002027
-9.70707e-05
-0.00211427
-0.000105374
-0.00219268
-0.000113579
-0.00225896
-0.000121573
-0.00230863
-0.000129167
-0.00233658
-0.000136314
-0.00233579
-0.00014262
-0.00229809
-0.000147885
-0.00221207
-0.0020628
-0.00015211
-2.13521e-06
-0.000605589
-4.93065e-06
-0.000772965
-8.82819e-06
-0.00088872
-1.33278e-05
-0.000985012
-1.86082e-05
-0.00107503
-2.43357e-05
-0.00116372
-3.05362e-05
-0.00125375
-3.71688e-05
-0.00134558
-4.41958e-05
-0.00143931
-5.15889e-05
-0.0015354
-5.93151e-05
-0.00163287
-6.73415e-05
-0.00173105
-7.56318e-05
-0.00182916
-8.41443e-05
-0.00192544
-9.28298e-05
-0.00201831
-0.000101569
-0.00210553
-0.000110474
-0.00218377
-0.000119278
-0.00225016
-0.00012788
-0.00230003
-0.000136297
-0.00232817
-0.000144184
-0.00232791
-0.00015128
-0.00229099
-0.000157277
-0.00220608
-0.00205783
-0.000162248
-2.12878e-06
-0.000603461
-5.19235e-06
-0.000769902
-9.09477e-06
-0.000884818
-1.39588e-05
-0.000980149
-1.93851e-05
-0.00106961
-2.52823e-05
-0.00115783
-3.17537e-05
-0.00124727
-3.86758e-05
-0.00133866
-4.60874e-05
-0.0014319
-5.38058e-05
-0.00152768
-6.18761e-05
-0.0016248
-7.0196e-05
-0.00172273
-7.89451e-05
-0.00182041
-8.78075e-05
-0.00191658
-9.70098e-05
-0.00200911
-0.00010642
-0.00209612
-0.000115644
-0.00217455
-0.000125122
-0.00224068
-0.000134476
-0.00229068
-0.000143633
-0.00231901
-0.000152384
-0.00231916
-0.000160398
-0.00228298
-0.000167017
-0.00219946
-0.00205535
-0.000169503
-2.18046e-06
-0.000601281
-5.33913e-06
-0.000766744
-9.52705e-06
-0.00088063
-1.45382e-05
-0.000975138
-2.01322e-05
-0.00106401
-2.64579e-05
-0.0011515
-3.32124e-05
-0.00124052
-4.04339e-05
-0.00133144
-4.80069e-05
-0.00142433
-5.61335e-05
-0.00151955
-6.45533e-05
-0.00161638
-7.33123e-05
-0.00171397
-8.23785e-05
-0.00181135
-9.17193e-05
-0.00190724
-0.000101232
-0.0019996
-0.000111069
-0.00208628
-0.000120994
-0.00216463
-0.000131022
-0.00223065
-0.000141096
-0.0022806
-0.000151153
-0.00230896
-0.000161106
-0.0023092
-0.000170821
-0.00227326
-0.00018028
-0.00219
-0.00204468
-0.000190947
-2.4288e-06
-0.000598853
-5.61175e-06
-0.000763562
-1.01125e-05
-0.00087613
-1.53187e-05
-0.000969933
-2.12202e-05
-0.00105811
-2.77164e-05
-0.00114501
-3.47451e-05
-0.00123349
-4.22618e-05
-0.00132393
-5.02268e-05
-0.00141636
-5.85365e-05
-0.00151124
-6.73808e-05
-0.00160754
-7.65072e-05
-0.00170484
-8.59563e-05
-0.0018019
-9.56954e-05
-0.0018975
-0.000105687
-0.00198961
-0.000115893
-0.00207608
-0.000126272
-0.00215425
-0.000136724
-0.0022202
-0.000147365
-0.00226996
-0.000157984
-0.00229834
-0.000168531
-0.00229866
-0.000179055
-0.00226274
-0.000189153
-0.0021799
-0.00203522
-0.000198612
-2.54156e-06
-0.000596312
-6.12454e-06
-0.00075998
-1.06694e-05
-0.000871585
-1.60389e-05
-0.000964564
-2.22089e-05
-0.00105194
-2.89946e-05
-0.00113822
-3.63325e-05
-0.00122615
-4.41765e-05
-0.00131608
-5.24859e-05
-0.00140805
-6.12312e-05
-0.0015025
-7.0305e-05
-0.00159847
-7.98917e-05
-0.00169526
-8.96732e-05
-0.00179212
-9.98887e-05
-0.00188728
-0.000110296
-0.0019792
-0.000120859
-0.00206551
-0.000131713
-0.00214339
-0.000142624
-0.00220929
-0.000153535
-0.00225905
-0.00016446
-0.00228741
-0.000175241
-0.00228788
-0.000185527
-0.00225246
-0.000195031
-0.0021704
-0.00202965
-0.000200601
-2.66624e-06
-0.000593647
-6.26058e-06
-0.000756386
-1.10374e-05
-0.000866808
-1.65875e-05
-0.000959014
-2.32837e-05
-0.00104524
-3.03795e-05
-0.00113113
-3.80489e-05
-0.00121848
-4.62443e-05
-0.00130789
-5.49234e-05
-0.00139937
-6.40557e-05
-0.00149337
-7.36057e-05
-0.00158892
-8.34688e-05
-0.0016854
-9.38175e-05
-0.00178177
-0.000104405
-0.0018767
-0.000115257
-0.00196835
-0.000126328
-0.00205444
-0.00013757
-0.00213215
-0.000148924
-0.00219794
-0.000160328
-0.00224765
-0.000171705
-0.00227604
-0.000182929
-0.00227665
-0.00019373
-0.00224166
-0.000203808
-0.00216032
-0.0020159
-0.000217562
-2.80348e-06
-0.000590844
-6.58715e-06
-0.000752603
-1.1607e-05
-0.000861789
-1.76003e-05
-0.000953021
-2.46845e-05
-0.00103816
-3.18035e-05
-0.00112401
-3.9833e-05
-0.00121045
-4.84102e-05
-0.00129931
-5.75666e-05
-0.00139022
-6.71206e-05
-0.00148381
-7.71103e-05
-0.00157893
-8.75e-05
-0.00167501
-9.82499e-05
-0.00177102
-0.000109253
-0.00186569
-0.000120656
-0.00195695
-0.000132215
-0.00204288
-0.00014388
-0.00212049
-0.000155755
-0.00218606
-0.000167597
-0.00223581
-0.000179355
-0.00226428
-0.000190872
-0.00226514
-0.000201949
-0.00223058
-0.000212026
-0.00215024
-0.00201359
-0.000214336
-2.96733e-06
-0.000587877
-6.96344e-06
-0.000748608
-1.22477e-05
-0.000856505
-1.85483e-05
-0.000946721
-2.56515e-05
-0.00103106
-3.36839e-05
-0.00111598
-4.19474e-05
-0.00120219
-5.09368e-05
-0.00129032
-6.03792e-05
-0.00138078
-7.03934e-05
-0.0014738
-8.09369e-05
-0.00156838
-9.18293e-05
-0.00166411
-0.0001031
-0.00175975
-0.000114706
-0.00185409
-0.000126532
-0.00194512
-0.000138707
-0.00203071
-0.000150989
-0.0021082
-0.000163315
-0.00217374
-0.00017578
-0.00222334
-0.000188159
-0.0022519
-0.000200383
-0.00225291
-0.000212428
-0.00221853
-0.000224128
-0.00213854
-0.0019973
-0.000240418
-3.17263e-06
-0.000584705
-8.118e-06
-0.000743663
-1.29277e-05
-0.000851695
-1.95662e-05
-0.000940083
-2.70378e-05
-0.00102358
-3.52338e-05
-0.00110778
-4.37732e-05
-0.00119365
-5.35916e-05
-0.0012805
-6.35873e-05
-0.00137078
-7.41062e-05
-0.00146328
-8.50374e-05
-0.00155745
-9.65547e-05
-0.0016526
-0.000108338
-0.00174796
-0.000120606
-0.00184182
-0.000133106
-0.00193262
-0.000145839
-0.00201798
-0.000158734
-0.00209531
-0.000171706
-0.00216076
-0.000184658
-0.00221039
-0.000197465
-0.00223909
-0.000209943
-0.00224044
-0.000221812
-0.00220666
-0.000232394
-0.00212796
-0.00199245
-0.00023724
-3.93851e-06
-0.000580768
-7.68788e-06
-0.000739915
-1.36155e-05
-0.000845768
-2.14096e-05
-0.00093229
-2.85191e-05
-0.00101647
-3.7154e-05
-0.00109915
-4.72244e-05
-0.00118358
-5.67793e-05
-0.00127095
-6.70019e-05
-0.00136056
-7.80719e-05
-0.00145221
-8.9791e-05
-0.00154573
-0.000101719
-0.00164067
-0.000114212
-0.00173547
-0.000127087
-0.00182895
-0.000140287
-0.00191942
-0.000153686
-0.00200458
-0.000167386
-0.00208161
-0.000181126
-0.00214703
-0.000194817
-0.0021967
-0.000208451
-0.00222546
-0.000221871
-0.00222702
-0.000234741
-0.0021938
-0.00024691
-0.00211579
-0.00198098
-0.000258382
-3.40178e-06
-0.000577366
-8.16097e-06
-0.000735156
-1.44435e-05
-0.000839485
-2.18558e-05
-0.000924878
-3.01792e-05
-0.00100815
-3.92805e-05
-0.00109004
-4.9085e-05
-0.00117378
-5.95493e-05
-0.00126049
-7.07065e-05
-0.0013494
-8.23752e-05
-0.00144054
-9.45906e-05
-0.00153352
-0.000107253
-0.00162801
-0.000120516
-0.00172221
-0.000134068
-0.00181539
-0.000148104
-0.00190539
-0.000162371
-0.00199031
-0.000176857
-0.00206712
-0.000191473
-0.00213241
-0.000206131
-0.00218204
-0.000220743
-0.00221085
-0.000235221
-0.00221254
-0.000249488
-0.00217953
-0.000263547
-0.00210173
-0.00196544
-0.000279092
-3.51872e-06
-0.000573848
-8.56771e-06
-0.000730107
-1.52427e-05
-0.00083281
-2.30927e-05
-0.000917029
-3.18951e-05
-0.000999349
-4.15096e-05
-0.00108043
-5.18626e-05
-0.00116342
-6.30569e-05
-0.00124929
-7.46134e-05
-0.00133784
-8.70041e-05
-0.00142815
-9.99077e-05
-0.00152062
-0.000113364
-0.00161455
-0.000127324
-0.00170825
-0.000141742
-0.00180098
-0.000156496
-0.00189063
-0.000171701
-0.00197511
-0.000187043
-0.00205178
-0.000202655
-0.0021168
-0.000218273
-0.00216642
-0.000233836
-0.00219529
-0.000249193
-0.00219718
-0.000264153
-0.00216457
-0.000278455
-0.00208743
-0.00195286
-0.000291029
-3.37984e-06
-0.000570468
-8.7121e-06
-0.000724775
-1.6778e-05
-0.000824744
-2.43918e-05
-0.000909415
-3.37381e-05
-0.000990002
-4.39229e-05
-0.00107025
-5.48749e-05
-0.00115247
-6.64079e-05
-0.00123776
-7.89171e-05
-0.00132534
-9.22871e-05
-0.00141478
-0.000105524
-0.00150738
-0.000119952
-0.00160013
-0.000134666
-0.00169353
-0.000150007
-0.00178564
-0.000165725
-0.00187492
-0.000181665
-0.00195917
-0.000198203
-0.00203525
-0.000214744
-0.00210026
-0.000231446
-0.00214972
-0.000248139
-0.00217859
-0.000264674
-0.00218065
-0.000280833
-0.00214841
-0.00029617
-0.00207209
-0.00193945
-0.000309585
-3.90772e-06
-0.000566562
-9.87752e-06
-0.000718807
-1.72969e-05
-0.000817325
-2.61438e-05
-0.000900569
-3.60034e-05
-0.000980143
-4.67414e-05
-0.00105951
-5.82878e-05
-0.00114092
-7.06037e-05
-0.00122544
-8.36501e-05
-0.00131229
-9.73923e-05
-0.00140104
-0.000112013
-0.00149276
-0.000126864
-0.00158527
-0.000142573
-0.00167782
-0.000158702
-0.00176951
-0.000175381
-0.00185824
-0.000192632
-0.00194192
-0.000209931
-0.00201795
-0.00022763
-0.00208256
-0.000245541
-0.00213181
-0.000263472
-0.00216066
-0.000281328
-0.00216279
-0.00029909
-0.00213065
-0.000316361
-0.00205482
-0.00192194
-0.000333872
-4.2178e-06
-0.000562344
-1.04673e-05
-0.000712557
-1.85453e-05
-0.000809248
-2.79317e-05
-0.000891183
-3.83669e-05
-0.000969708
-4.97183e-05
-0.00104816
-6.1918e-05
-0.00112872
-7.4929e-05
-0.00121243
-8.87139e-05
-0.0012985
-0.000103241
-0.00138652
-0.000118611
-0.00147739
-0.000134483
-0.0015694
-0.000150988
-0.00166132
-0.000168212
-0.00175228
-0.000185906
-0.00184054
-0.000204006
-0.00192382
-0.000222601
-0.00199935
-0.000241427
-0.00206373
-0.000260389
-0.00211285
-0.000279475
-0.00214158
-0.000298557
-0.00214371
-0.000317429
-0.00211178
-0.000336068
-0.00203618
-0.00190615
-0.000351859
-4.44757e-06
-0.000557897
-1.11934e-05
-0.000705812
-1.98311e-05
-0.00080061
-2.98116e-05
-0.000881203
-4.08776e-05
-0.000958642
-5.2898e-05
-0.00103614
-6.58075e-05
-0.00111582
-7.97095e-05
-0.00119853
-9.41569e-05
-0.00128406
-0.000109528
-0.00137115
-0.000125664
-0.00146125
-0.000142535
-0.00155253
-0.000160156
-0.0016437
-0.000178293
-0.00173415
-0.000197129
-0.00182171
-0.000216414
-0.00190453
-0.000236122
-0.00197964
-0.000256151
-0.0020437
-0.000276391
-0.00209261
-0.000296732
-0.00212124
-0.000317057
-0.00212338
-0.000337251
-0.00209158
-0.000357371
-0.00201606
-0.00188326
-0.000380264
-4.70537e-06
-0.000553192
-1.19879e-05
-0.00069853
-2.12234e-05
-0.000791375
-3.18391e-05
-0.000870587
-4.35813e-05
-0.0009469
-5.70345e-05
-0.00102268
-6.99994e-05
-0.00110285
-8.45729e-05
-0.00118396
-0.000100016
-0.00126861
-0.000116294
-0.00135487
-0.000133387
-0.00144416
-0.000151377
-0.00153454
-0.000169942
-0.00162513
-0.000189244
-0.00171485
-0.000209113
-0.00180184
-0.00022965
-0.001884
-0.000250541
-0.00195875
-0.000271889
-0.00202236
-0.000293418
-0.00207108
-0.000315053
-0.0020996
-0.00033667
-0.00210177
-0.000358187
-0.00207007
-0.000379474
-0.00199478
-0.00186291
-0.000399818
-5.02086e-06
-0.000548173
-1.28789e-05
-0.000690673
-2.27529e-05
-0.000781502
-3.405e-05
-0.000859291
-4.72312e-05
-0.000933719
-6.00287e-05
-0.00100989
-7.45358e-05
-0.00108834
-8.99839e-05
-0.00116851
-0.000107028
-0.00125157
-0.000123614
-0.00133828
-0.000141735
-0.00142604
-0.000160579
-0.0015157
-0.000180306
-0.00160541
-0.000200964
-0.00169419
-0.000222113
-0.00178069
-0.000243853
-0.00186226
-0.000266091
-0.00193651
-0.000288654
-0.00199979
-0.000311549
-0.00204818
-0.000334453
-0.0020767
-0.000357138
-0.00207908
-0.000379405
-0.0020478
-0.000400672
-0.00197351
-0.00184475
-0.000418836
-5.41347e-06
-0.00054276
-1.38878e-05
-0.000682199
-2.44461e-05
-0.000770944
-3.64788e-05
-0.000847258
-4.97266e-05
-0.000920471
-6.40817e-05
-0.000995533
-7.9484e-05
-0.00107294
-9.58792e-05
-0.00115212
-0.00011324
-0.00123421
-0.000131557
-0.00131997
-0.000150786
-0.00140681
-0.000171008
-0.00149548
-0.000191856
-0.00158456
-0.000213647
-0.0016724
-0.000236093
-0.00175824
-0.000259172
-0.00183918
-0.000282786
-0.0019129
-0.000306811
-0.00197577
-0.00033111
-0.00202388
-0.000355524
-0.00205228
-0.000379862
-0.00205475
-0.000403856
-0.00202381
-0.000427153
-0.00195021
-0.00182085
-0.000451051
-5.89688e-06
-0.000536864
-1.5038e-05
-0.000673059
-2.64743e-05
-0.000759508
-3.91612e-05
-0.000834572
-5.34018e-05
-0.000906231
-6.85313e-05
-0.000980403
-8.49026e-05
-0.00105657
-0.000102325
-0.00113469
-0.000120773
-0.00121576
-0.000140236
-0.0013005
-0.000160665
-0.00138638
-0.00018203
-0.00147411
-0.000204378
-0.00156221
-0.000227532
-0.00164924
-0.000251241
-0.00173453
-0.000275668
-0.00181475
-0.000300753
-0.00188782
-0.0003262
-0.00195032
-0.00035187
-0.00199821
-0.000377718
-0.00202644
-0.000403444
-0.00202902
-0.000428778
-0.00199847
-0.000453261
-0.00192573
-0.00179867
-0.00047544
-6.47959e-06
-0.000530384
-1.69851e-05
-0.000662553
-2.84056e-05
-0.000748087
-4.21114e-05
-0.000820866
-5.71454e-05
-0.000891197
-7.34138e-05
-0.000964135
-9.08476e-05
-0.00103914
-0.000109395
-0.00111615
-0.000129034
-0.00119612
-0.000149751
-0.00127979
-0.000171494
-0.00136464
-0.000194228
-0.00145138
-0.000217895
-0.00153854
-0.000242424
-0.00162472
-0.000267734
-0.00170922
-0.000293764
-0.00178872
-0.000320233
-0.00186135
-0.000347193
-0.00192336
-0.000374329
-0.00197108
-0.000401493
-0.00199927
-0.000428476
-0.00200204
-0.000455045
-0.0019719
-0.00048089
-0.00189989
-0.00177608
-0.000503484
-7.62361e-06
-0.000522762
-1.76352e-05
-0.000652542
-3.05128e-05
-0.00073521
-4.53295e-05
-0.00080605
-6.14007e-05
-0.000875126
-7.87739e-05
-0.000946762
-9.80352e-05
-0.00101987
-0.000117822
-0.00109636
-0.000138133
-0.00117581
-0.000160231
-0.00125769
-0.000183419
-0.00134145
-0.000208255
-0.00142654
-0.000233385
-0.00151342
-0.000259024
-0.00159908
-0.000285898
-0.00168235
-0.000313603
-0.00176102
-0.000341725
-0.00183322
-0.000370189
-0.0018949
-0.000398806
-0.00194246
-0.000427369
-0.00197071
-0.000455691
-0.00197372
-0.00048353
-0.00194406
-0.000510886
-0.00187253
-0.00174412
-0.000542847
-7.67754e-06
-0.000515084
-1.9229e-05
-0.000640991
-3.33623e-05
-0.000721077
-4.96201e-05
-0.000789792
-6.617e-05
-0.000858576
-8.47538e-05
-0.000928178
-0.000104637
-0.000999992
-0.000125795
-0.0010752
-0.000148205
-0.0011534
-0.000171831
-0.00123406
-0.000196621
-0.00131666
-0.00022252
-0.00140064
-0.000249558
-0.00148638
-0.000277382
-0.00157125
-0.000306106
-0.00165363
-0.000335544
-0.00173158
-0.000365415
-0.00180335
-0.00039549
-0.00186482
-0.000425654
-0.0019123
-0.000455455
-0.00194091
-0.000484563
-0.00194461
-0.000512736
-0.00191589
-0.000539298
-0.00184597
-0.00172593
-0.000557485
-8.48198e-06
-0.000506602
-2.10184e-05
-0.000628454
-3.61029e-05
-0.000705992
-5.29967e-05
-0.000772898
-7.14651e-05
-0.000840108
-9.13833e-05
-0.00090826
-0.000112688
-0.000978687
-0.000135358
-0.00105253
-0.000159368
-0.00112939
-0.000184682
-0.00120875
-0.000211834
-0.00128951
-0.000239006
-0.00137347
-0.000267885
-0.0014575
-0.000297774
-0.00154136
-0.000328514
-0.00162289
-0.000360177
-0.00169992
-0.00039185
-0.00177168
-0.000423909
-0.00183276
-0.000455808
-0.0018804
-0.000487289
-0.00190943
-0.000517979
-0.00191392
-0.000547305
-0.00188656
-0.000575059
-0.00181822
-0.00169535
-0.000605638
-9.35805e-06
-0.000497243
-2.30001e-05
-0.000614812
-3.92956e-05
-0.000689696
-5.74848e-05
-0.000754709
-7.73387e-05
-0.000820254
-9.87342e-05
-0.000886865
-0.000121612
-0.000955809
-0.000145953
-0.00102819
-0.000171736
-0.00110361
-0.000198922
-0.00118156
-0.000227441
-0.00126099
-0.000257266
-0.00134365
-0.000288286
-0.00142648
-0.000320383
-0.00150927
-0.000353375
-0.00158989
-0.000387049
-0.00166624
-0.000421226
-0.0017375
-0.000455471
-0.00179852
-0.000489472
-0.0018464
-0.000522787
-0.00187611
-0.000554916
-0.00188179
-0.000585265
-0.00185622
-0.000613062
-0.00179042
-0.00167471
-0.0006337
-1.02723e-05
-0.000486973
-2.51292e-05
-0.000599956
-4.33728e-05
-0.000671453
-6.23923e-05
-0.00073569
-8.37893e-05
-0.000798857
-0.000106831
-0.000863824
-0.000131459
-0.000931181
-0.000157659
-0.00100199
-0.000185411
-0.00107586
-0.000215248
-0.00115173
-0.000245383
-0.00123085
-0.000277491
-0.00131154
-0.000310882
-0.00139309
-0.000345483
-0.00147467
-0.000381429
-0.00155395
-0.000417138
-0.00163053
-0.000453801
-0.00170084
-0.000490597
-0.00176172
-0.000527049
-0.00180995
-0.000562763
-0.0018404
-0.000597299
-0.00184725
-0.000630186
-0.00182333
-0.000660982
-0.00175962
-0.00164528
-0.000690413
-1.1092e-05
-0.000475881
-2.74073e-05
-0.00058364
-4.65666e-05
-0.000652294
-6.78457e-05
-0.000714411
-9.09724e-05
-0.00077573
-0.000115848
-0.000838948
-0.000142421
-0.000904608
-0.00017068
-0.000973734
-0.000200609
-0.00104593
-0.000232151
-0.00112018
-0.000265272
-0.00119773
-0.000299893
-0.00127692
-0.00033589
-0.00135709
-0.000373111
-0.00143745
-0.000411333
-0.00151573
-0.000450303
-0.00159156
-0.000489926
-0.00166122
-0.000529107
-0.00172254
-0.00056812
-0.00177093
-0.000606134
-0.00180239
-0.00064261
-0.00181078
-0.000677061
-0.00178888
-0.00070894
-0.00172774
-0.00161608
-0.000738147
-1.28256e-05
-0.000463056
-3.05817e-05
-0.000565884
-5.13244e-05
-0.000631552
-7.43171e-05
-0.000691418
-9.92838e-05
-0.000750764
-0.000126129
-0.000812103
-0.000154805
-0.000875932
-0.000185303
-0.000943236
-0.000217606
-0.00101362
-0.000251655
-0.00108614
-0.000287411
-0.00116198
-0.00032478
-0.00123955
-0.000363627
-0.00131824
-0.000403776
-0.0013973
-0.000444977
-0.00147452
-0.000486938
-0.0015496
-0.000529283
-0.00161887
-0.000571601
-0.00168022
-0.000613278
-0.00172926
-0.000653732
-0.00176193
-0.00069246
-0.00177205
-0.000728662
-0.00175268
-0.000761924
-0.00169448
-0.00158568
-0.00079232
-1.42814e-05
-0.000448774
-3.37646e-05
-0.000546401
-5.63604e-05
-0.000608956
-8.13288e-05
-0.000666449
-0.000108398
-0.000723694
-0.000137481
-0.00078302
-0.000168531
-0.000844882
-0.000201545
-0.000910222
-0.000236506
-0.000978661
-0.000273348
-0.00104929
-0.000312025
-0.0011233
-0.000352432
-0.00119914
-0.000394412
-0.00127626
-0.000437762
-0.00135395
-0.000482198
-0.00143009
-0.000527384
-0.00150442
-0.00057289
-0.00157337
-0.000618235
-0.00163488
-0.000662689
-0.0016848
-0.000705721
-0.0017189
-0.000746459
-0.00173131
-0.0007841
-0.00171503
-0.000817905
-0.00166068
-0.00155678
-0.000846804
-1.59535e-05
-0.000432821
-3.73709e-05
-0.000524983
-6.20404e-05
-0.000584287
-8.92213e-05
-0.000639269
-0.000118646
-0.00069427
-0.00015076
-0.000750906
-0.00018394
-0.000811702
-0.000219764
-0.000874399
-0.000257686
-0.000940739
-0.000297633
-0.00100935
-0.000339548
-0.00108138
-0.000383306
-0.00115538
-0.000428725
-0.00123084
-0.000476038
-0.00130663
-0.000523515
-0.00138261
-0.000572165
-0.00145577
-0.000621036
-0.00152449
-0.000669535
-0.00158638
-0.000717019
-0.00163732
-0.00076263
-0.00167329
-0.000805568
-0.00168837
-0.00084486
-0.00167574
-0.000879441
-0.0016261
-0.00152736
-0.00090886
-1.78522e-05
-0.000414968
-4.14546e-05
-0.000501381
-6.84628e-05
-0.000557278
-9.8137e-05
-0.000609594
-0.000130722
-0.000661685
-0.000164598
-0.000717029
-0.000201314
-0.000774986
-0.000240295
-0.000835418
-0.000282031
-0.000899003
-0.00032496
-0.000966417
-0.000370478
-0.00103587
-0.000417948
-0.00110791
-0.00046715
-0.00118164
-0.000517789
-0.001256
-0.000569528
-0.00133087
-0.000621871
-0.00140342
-0.000674273
-0.00147209
-0.000726061
-0.00153459
-0.000776512
-0.00158687
-0.000824686
-0.00162512
-0.000869632
-0.00164342
-0.000910545
-0.00163483
-0.000946011
-0.00159063
-0.00150269
-0.000970682
-2.00334e-05
-0.000394934
-4.61235e-05
-0.00047529
-7.5788e-05
-0.000527614
-0.000108292
-0.000577089
-0.000143354
-0.000626624
-0.000180957
-0.000679426
-0.000221062
-0.000734881
-0.000263612
-0.000792867
-0.000308579
-0.000854036
-0.00035592
-0.000919075
-0.000405471
-0.000986315
-0.000457068
-0.00105632
-0.000510442
-0.00112827
-0.000565239
-0.0012012
-0.000621055
-0.00127505
-0.000677306
-0.00134717
-0.000733361
-0.00141604
-0.00078846
-0.00147949
-0.000841798
-0.00153353
-0.000892387
-0.00157453
-0.000939281
-0.00159653
-0.000981543
-0.00159257
-0.00101803
-0.00155415
-0.00147064
-0.00105008
-2.26195e-05
-0.000372314
-5.14891e-05
-0.00044642
-8.41991e-05
-0.000494903
-0.000119943
-0.000541345
-0.000158445
-0.000588121
-0.000199703
-0.000638168
-0.000243673
-0.000690911
-0.00029029
-0.000746249
-0.000339512
-0.000804815
-0.000391302
-0.000867284
-0.000445362
-0.000932255
-0.00050157
-0.00100011
-0.000559562
-0.00107027
-0.000618903
-0.00114186
-0.000679098
-0.00121486
-0.000739451
-0.00128682
-0.000799222
-0.00135627
-0.000857529
-0.00142119
-0.000913347
-0.00147771
-0.000965885
-0.00152199
-0.00101395
-0.00154847
-0.0010565
-0.00155001
-0.00109292
-0.00151772
-0.00143759
-0.00112597
-2.54488e-05
-0.000346866
-5.81448e-05
-0.000413724
-9.39522e-05
-0.000459097
-0.000133432
-0.000501865
-0.000175902
-0.000545652
-0.000221372
-0.000592698
-0.000269793
-0.00064249
-0.000321084
-0.000694959
-0.000375177
-0.000750722
-0.00043196
-0.0008105
-0.000491203
-0.000873012
-0.000552591
-0.00093872
-0.000615715
-0.00100715
-0.000680033
-0.00107754
-0.000744935
-0.00114996
-0.000809587
-0.00122217
-0.000873048
-0.0012928
-0.000934477
-0.00135976
-0.0009926
-0.00141959
-0.00104637
-0.00146821
-0.00109463
-0.00150021
-0.00113641
-0.00150823
-0.00117075
-0.00148339
-0.00141639
-0.00119195
-2.91675e-05
-0.000317699
-6.49369e-05
-0.000377954
-0.000105302
-0.000418731
-0.000149147
-0.000458021
-0.000196251
-0.000498548
-0.000246635
-0.000542314
-0.000300625
-0.0005885
-0.00035734
-0.000638244
-0.000416675
-0.000691387
-0.000479236
-0.000747939
-0.000544332
-0.000807916
-0.000611935
-0.000871116
-0.000680758
-0.000938326
-0.000750132
-0.00100816
-0.000820056
-0.00108003
-0.00088916
-0.00115306
-0.000956394
-0.00122557
-0.00102063
-0.00129552
-0.0010806
-0.00135961
-0.00113513
-0.00141369
-0.00118298
-0.00145236
-0.00122315
-0.00146806
-0.00125495
-0.00145159
-0.00138994
-0.00128141
-3.28401e-05
-0.000284859
-7.36007e-05
-0.000337194
-0.000118797
-0.000373536
-0.000168125
-0.000408692
-0.000220345
-0.000446328
-0.000276516
-0.000486143
-0.00033617
-0.000528846
-0.000399227
-0.000575186
-0.000465521
-0.000625093
-0.000534738
-0.000678723
-0.000606499
-0.000736155
-0.000680237
-0.000797378
-0.000755336
-0.000863228
-0.000830949
-0.000932551
-0.000906105
-0.00100488
-0.000979656
-0.00107951
-0.00105039
-0.00115483
-0.00111739
-0.00122852
-0.00117826
-0.00129875
-0.00123274
-0.0013592
-0.00127909
-0.00140601
-0.00131636
-0.00143079
-0.00134336
-0.00142458
-0.00137563
-0.00135766
-3.79881e-05
-0.000246871
-8.4235e-05
-0.000290946
-0.000135217
-0.000322554
-0.000190313
-0.000353596
-0.000249458
-0.000387183
-0.000312538
-0.000423063
-0.000379423
-0.00046196
-0.000449966
-0.000504644
-0.000523903
-0.000551156
-0.000600788
-0.000601837
-0.000680416
-0.000656526
-0.000761076
-0.000716718
-0.000842928
-0.000781375
-0.000924604
-0.000850875
-0.00100494
-0.000924543
-0.00108294
-0.00100151
-0.00115629
-0.00108149
-0.00122461
-0.0011602
-0.00128655
-0.00123681
-0.00133988
-0.00130588
-0.00138453
-0.00136136
-0.00141925
-0.00139607
-0.00144355
-0.00140028
-0.00136153
-0.00145765
-4.41039e-05
-0.000202768
-9.70214e-05
-0.000238029
-0.000155181
-0.000264394
-0.000217943
-0.000290834
-0.000285216
-0.00031991
-0.000356819
-0.00035146
-0.000432523
-0.000386256
-0.000512055
-0.000425112
-0.000594996
-0.000468216
-0.0006807
-0.000516132
-0.000768396
-0.000568831
-0.000857201
-0.000627913
-0.00094598
-0.000692596
-0.0010335
-0.000763359
-0.0011184
-0.000839643
-0.00119919
-0.000920711
-0.00127453
-0.00100615
-0.00134299
-0.00109173
-0.0014033
-0.0011765
-0.00145437
-0.00125481
-0.00149535
-0.00132038
-0.00152556
-0.00136586
-0.00154465
-0.00138119
-0.0013535
-0.00155269
-5.14128e-05
-0.000151355
-0.00011276
-0.000176681
-0.000180324
-0.00019683
-0.000252791
-0.000218367
-0.000330518
-0.000242183
-0.000412964
-0.000269013
-0.000499685
-0.000299535
-0.000590166
-0.000334631
-0.000683721
-0.000374661
-0.000779645
-0.000420208
-0.000876167
-0.000472309
-0.000972843
-0.000531236
-0.00106805
-0.000597391
-0.00116035
-0.000671059
-0.00124855
-0.000751442
-0.00133026
-0.000839
-0.00140533
-0.000931086
-0.00147129
-0.00102577
-0.00152797
-0.00111982
-0.00157422
-0.00120856
-0.00160949
-0.0012851
-0.00163339
-0.00134196
-0.00164575
-0.00136882
-0.00135256
-0.00164669
-6.60003e-05
-8.53552e-05
-0.000139676
-0.000103006
-0.000219353
-0.000117153
-0.000304864
-0.000132856
-0.000395736
-0.000151311
-0.000491445
-0.000173304
-0.000591216
-0.000199764
-0.000694168
-0.000231679
-0.000799231
-0.000269597
-0.000905026
-0.000314413
-0.00101029
-0.000367045
-0.00111344
-0.000428082
-0.00121296
-0.000497873
-0.00130734
-0.000576683
-0.00139512
-0.000663659
-0.00147499
-0.000759126
-0.00154582
-0.000860263
-0.00160669
-0.000964902
-0.00165681
-0.00106969
-0.00169571
-0.00116966
-0.00172313
-0.00125768
-0.00173892
-0.00132617
-0.00174308
-0.00136467
-0.00136068
-0.00173496
-7.54167e-05
-9.93812e-06
-0.000168173
-1.02489e-05
-0.000270614
-1.47117e-05
-0.000379438
-2.40323e-05
-0.000492437
-3.83118e-05
-0.000608087
-5.76539e-05
-0.000725008
-8.28437e-05
-0.000841988
-0.000114699
-0.000957842
-0.000153743
-0.00107117
-0.000201086
-0.0011808
-0.000257415
-0.00128533
-0.000323552
-0.00138351
-0.000399691
-0.00147419
-0.000486002
-0.00155632
-0.000581532
-0.00162898
-0.000686462
-0.00169146
-0.000797791
-0.00174322
-0.000913138
-0.00178386
-0.00102906
-0.00181321
-0.00114031
-0.00183129
-0.0012396
-0.00183824
-0.00131922
-0.00183422
-0.00136869
-0.00137421
-0.00182069
-7.16181e-05
6.16811e-05
-0.000191742
0.000109876
-0.000327217
0.000120764
-0.000468402
0.000117153
-0.000610733
0.000104019
-0.000751793
8.34063e-05
-0.000889592
5.49563e-05
-0.00102253
1.8244e-05
-0.00114917
-2.71117e-05
-0.00126799
-8.22637e-05
-0.00137812
-0.000147285
-0.00147874
-0.00022293
-0.00156943
-0.000309001
-0.00164997
-0.000405461
-0.00172026
-0.000511244
-0.00178026
-0.000626462
-0.00182998
-0.00074807
-0.00186945
-0.000873668
-0.00189861
-0.000999894
-0.00191747
-0.00112144
-0.00192609
-0.00123099
-0.00192454
-0.00132078
-0.00191275
-0.00138048
-0.00139821
-0.00188875
-0.000374228
-0.0006318
-0.000822796
-0.000974478
-0.00110167
-0.00121178
-0.00130972
-0.00139887
-0.00148043
-0.00155566
-0.0016254
-0.00169001
-0.00174966
-0.0018044
-0.00185305
-0.00189636
-0.00193271
-0.00196138
-0.00198215
-0.00199447
-0.00199752
-0.00199152
-0.00197664
-0.00195353
-0.00082603
0.000268847
-0.00133385
0.000239862
-0.00174769
0.000310805
-0.00211396
0.00040569
-0.00244393
0.000513935
-0.00274223
0.000632847
-0.00300844
0.00076434
-0.00324154
0.000910503
-0.00344097
0.00107346
-0.00360558
0.00125709
-0.003736
0.00146324
-0.00383334
0.00169641
-0.00389955
0.00195897
-0.00393808
0.00225456
-0.00395254
0.00258602
-0.0039469
0.00295757
-0.00392579
0.00337201
-0.0038929
0.0038327
-0.00385144
0.00434507
-0.00380438
0.00491317
-0.00375357
0.00554212
-0.00370059
0.0062384
-0.00364703
0.0070096
0.00786308
-0.0035935
-0.000117373
0.000386234
-0.000475878
0.000598398
-0.000857761
0.000692685
-0.00121997
0.000767897
-0.00155165
0.000845619
-0.00185135
0.000932542
-0.00211923
0.00103223
-0.00235666
0.00114793
-0.00256533
0.00128214
-0.00274684
0.0014386
-0.00290312
0.00161953
-0.0030355
0.00182879
-0.00314569
0.00206916
-0.0032353
0.00234417
-0.00330596
0.00265668
-0.00335916
0.00301076
-0.0033964
0.00340926
-0.00342026
0.00385656
-0.00343191
0.00435671
-0.00343324
0.0049145
-0.00342624
0.00553513
-0.00341279
0.00622494
-0.00339456
0.00699137
0.00784414
-0.00337563
-0.000323711
0.000709917
-0.000541445
0.00081614
-0.000734643
0.000885864
-0.000921029
0.000954283
-0.00110521
0.00102978
-0.00128881
0.00111615
-0.00147181
0.00121522
-0.00165323
0.00132935
-0.00183196
0.00146086
-0.00200553
0.00161217
-0.00217194
0.00178593
-0.00232866
0.00198551
-0.00247353
0.00221403
-0.00260476
0.0024754
-0.00272103
0.00277295
-0.00282183
0.00311157
-0.00290687
0.0034943
-0.0029769
0.00392659
-0.00303253
0.00441235
-0.00307502
0.00495698
-0.00310561
0.00556572
-0.00312547
0.0062448
-0.00313507
0.00700097
0.00783682
-0.00312775
-0.000129891
0.000839793
-0.000254098
0.000940347
-0.000383187
0.00101494
-0.000519988
0.00109109
-0.000664944
0.00117473
-0.000817225
0.00126843
-0.000975783
0.00137377
-0.00113899
0.00149256
-0.00130498
0.00162684
-0.00147164
0.00177884
-0.001637
0.00195129
-0.00179859
0.0021471
-0.00195451
0.00236995
-0.00210226
0.00262315
-0.00224039
0.00291108
-0.00236691
0.00323809
-0.00248091
0.00360829
-0.00258159
0.00402727
-0.00266879
0.00449955
-0.0027427
0.00503089
-0.00280381
0.00562683
-0.00285268
0.00629367
-0.00288984
0.00703813
0.0078652
-0.00291822
-5.97753e-05
0.000899579
-0.000139448
0.00102002
-0.000232967
0.00110847
-0.000337912
0.00119604
-0.000452645
0.00128947
-0.000576031
0.00139182
-0.000706956
0.0015047
-0.000844304
0.00162991
-0.000986962
0.0017695
-0.00113356
0.00192544
-0.00128254
0.00210027
-0.00143233
0.00229689
-0.00158111
0.00251873
-0.00172697
0.00276901
-0.00186806
0.00305217
-0.00200236
0.00337239
-0.00212865
0.00373458
-0.00224513
0.00414375
-0.00235092
0.00460534
-0.00244525
0.00512522
-0.00252772
0.0057093
-0.00259804
0.00636399
-0.00265612
0.00709622
0.00791142
-0.00270234
-4.81261e-05
0.000947707
-0.000110875
0.00108277
-0.000183377
0.00118098
-0.000264276
0.00127694
-0.000353159
0.00137835
-0.000449852
0.00148851
-0.000554083
0.00160893
-0.000665483
0.00174131
-0.000783589
0.00188761
-0.000907565
0.00204941
-0.00103665
0.00222936
-0.00116976
0.00243
-0.00130519
0.00265415
-0.00144177
0.00290559
-0.00157751
0.00318792
-0.00171065
0.00350553
-0.00183949
0.00386343
-0.00196225
0.0042665
-0.00207751
0.00472061
-0.0021839
0.00523161
-0.00228029
0.0058057
-0.00236616
0.00644986
-0.00244077
0.00717082
0.00797499
-0.00250435
-3.52689e-05
0.000982977
-8.44495e-05
0.00113194
-0.000142534
0.00123907
-0.000207882
0.00134229
-0.000280065
0.00145054
-0.000359439
0.00156789
-0.000445668
0.00169516
-0.000538696
0.00183433
-0.000638619
0.00198753
-0.000745103
0.0021559
-0.000857413
0.00234167
-0.000975009
0.0025476
-0.00109695
0.00277609
-0.0012221
0.00303074
-0.00134903
0.00331485
-0.0014765
0.003633
-0.00160258
0.00398951
-0.00172581
0.00438973
-0.00184448
0.00483928
-0.0019571
0.00534423
-0.00206248
0.00591107
-0.00215961
0.00654699
-0.00224822
0.00725943
0.00805564
-0.00232887
-2.485e-05
0.00100783
-6.37767e-05
0.00117086
-0.000111339
0.00128663
-0.000165964
0.00139691
-0.000226768
0.00151134
-0.000293721
0.00163484
-0.000367077
0.00176852
-0.000446889
0.00191415
-0.000532984
0.00207363
-0.000625377
0.00224829
-0.000723834
0.00244013
-0.000827921
0.00265169
-0.000937404
0.00288557
-0.00105109
0.00314442
-0.00116847
0.00343223
-0.00128801
0.00375254
-0.00140852
0.00411002
-0.00152854
0.00450975
-0.00164654
0.00495728
-0.00176101
0.00545871
-0.00187064
0.00602069
-0.00197417
0.00665053
-0.00207066
0.00735591
0.00814458
-0.00215959
-1.91731e-05
0.001027
-5.09468e-05
0.00120263
-9.12602e-05
0.00132695
-0.000137548
0.0014432
-0.000189699
0.0015635
-0.000247313
0.00169246
-0.000310575
0.00183178
-0.000379612
0.00198318
-0.000454561
0.00214858
-0.000535476
0.0023292
-0.00062231
0.00252696
-0.000714949
0.00274432
-0.000813097
0.00298372
-0.000916284
0.00324761
-0.00102388
0.00353983
-0.00113487
0.00386353
-0.00124857
0.00422373
-0.00136346
0.00462464
-0.00147828
0.0050721
-0.00159161
0.00557204
-0.0017021
0.00613118
-0.00180808
0.00675651
-0.0019085
0.00745634
0.00823821
-0.00200213
-1.53274e-05
0.00104233
-4.20322e-05
0.00122933
-7.65078e-05
0.00136143
-0.000116657
0.00148334
-0.000161889
0.00160873
-0.000212137
0.0017427
-0.00026748
0.00188713
-0.000328073
0.00204378
-0.000394103
0.00221461
-0.000465701
0.0024008
-0.000542813
0.00260407
-0.000625822
0.00282733
-0.000714134
0.00307203
-0.000807967
0.00334144
-0.000906568
0.00363843
-0.00100944
0.0039664
-0.00111576
0.00433004
-0.00122462
0.0047335
-0.0013349
0.00518238
-0.00144528
0.00568242
-0.00155437
0.00624026
-0.00166102
0.00686316
-0.00176357
0.00755889
0.00833554
-0.0018609
-1.20882e-05
0.00105442
-3.46629e-05
0.0012519
-6.46054e-05
0.00139137
-9.98308e-05
0.00151857
-0.000139594
0.00164849
-0.000184173
0.00178728
-0.00023326
0.00193621
-0.000287136
0.00209765
-0.000345879
0.00227335
-0.000409907
0.00246483
-0.000479348
0.00267351
-0.000554075
0.00290206
-0.000634202
0.00315216
-0.000719785
0.00342702
-0.000810013
0.00372866
-0.000905267
0.00406166
-0.00100455
0.00442933
-0.00110719
0.00483614
-0.00121227
0.00528745
-0.00131873
0.00578887
-0.00142542
0.00634696
-0.00153101
0.00696874
-0.00163454
0.00766243
0.00843674
-0.00173575
-9.60838e-06
0.00106403
-2.88518e-05
0.00127114
-5.51219e-05
0.00141764
-8.63584e-05
0.0015498
-0.000121916
0.00168405
-0.000161673
0.00182704
-0.000205674
0.00198022
-0.000253939
0.00214592
-0.000307048
0.00232646
-0.000364816
0.0025226
-0.000427534
0.00273623
-0.000495366
0.00296989
-0.000568385
0.00322518
-0.00064632
0.00350496
-0.000729945
0.00381228
-0.000818031
0.00414974
-0.000910664
0.00452196
-0.00100722
0.0049327
-0.00110698
0.00538721
-0.00120908
0.00589098
-0.00131256
0.00645044
-0.00141632
0.00707251
-0.00151948
0.00776559
0.00853895
-0.00162169
-7.57279e-06
0.0010716
-2.41279e-05
0.0012877
-4.73887e-05
0.0014409
-7.53381e-05
0.00157775
-0.00010745
0.00171616
-0.000143188
0.00186278
-0.000182969
0.00202
-0.000226927
0.00218988
-0.000275003
0.00237454
-0.00032752
0.00257511
-0.000384663
0.00279337
-0.000446499
0.00303173
-0.000513536
0.00329222
-0.00058565
0.00357707
-0.000662382
0.00388901
-0.000744228
0.00423159
-0.000830724
0.00460846
-0.00092148
0.00502345
-0.00101598
0.00548171
-0.00111355
0.00598854
-0.00121329
0.00655018
-0.00131422
0.00717343
-0.00141528
0.00786665
0.00863906
-0.00151539
-6.17165e-06
0.00107777
-2.05031e-05
0.00130203
-4.12519e-05
0.00146165
-6.64525e-05
0.00160295
-9.54419e-05
0.00174515
-0.000128048
0.00189538
-0.000164288
0.00205624
-0.000204283
0.00222987
-0.000248218
0.00241847
-0.000296287
0.00262318
-0.000348684
0.00284577
-0.000405618
0.00308866
-0.000467253
0.00335385
-0.00053372
0.00364354
-0.00060504
0.00396033
-0.000681214
0.00430777
-0.000762142
0.00468939
-0.000847533
0.00510884
-0.000937024
0.0055712
-0.00102998
0.0060815
-0.00112611
0.00664631
-0.00122402
0.00727135
-0.00132304
0.00796566
0.00873958
-0.00142356
-5.1737e-06
0.00108294
-1.75473e-05
0.0013144
-3.61102e-05
0.00148021
-5.89533e-05
0.0016258
-8.53851e-05
0.00177159
-0.000115211
0.00192521
-0.000148432
0.00208946
-0.000185154
0.00226659
-0.000225551
0.00245887
-0.00026981
0.00266744
-0.000317997
0.00289396
-0.000370721
0.00314139
-0.000427642
0.00341077
-0.000489421
0.00370532
-0.000555805
0.00402672
-0.000626954
0.00437891
-0.000702845
0.00476528
-0.000783314
0.00518931
-0.000868143
0.00565603
-0.000957002
0.00617036
-0.00104931
0.00673862
-0.00114501
0.00736704
-0.0012433
0.00806396
0.00883976
-0.00134349
-4.40303e-06
0.00108735
-1.5069e-05
0.00132507
-3.20089e-05
0.00149715
-5.25454e-05
0.00164633
-7.66538e-05
0.00179569
-0.000104237
0.00195279
-0.000134872
0.00212009
-0.000168648
0.00230037
-0.000206
0.00249622
-0.000246971
0.00270841
-0.000291889
0.00293887
-0.000340708
0.00319021
-0.000393977
0.00346404
-0.000451186
0.00376253
-0.000513168
0.0040887
-0.000579804
0.00444555
-0.000651124
0.0048366
-0.000727057
0.00526524
-0.000807501
0.00573648
-0.00089217
0.00625503
-0.000980746
0.00682719
-0.00107277
0.00745907
-0.00116763
0.00815881
0.00893493
-0.0012628
-3.79612e-06
0.00109114
-1.30878e-05
0.00133436
-2.79006e-05
0.00151196
-4.70748e-05
0.00166551
-6.96919e-05
0.00181831
-9.46488e-05
0.00197775
-0.000123034
0.00214848
-0.000154638
0.00233197
-0.00018934
0.00253092
-0.000227445
0.00274652
-0.000269144
0.00298057
-0.000314518
0.00323558
-0.000364152
0.00351368
-0.000417859
0.00381623
-0.000475944
0.00414678
-0.000538526
0.00450813
-0.000605686
0.00490376
-0.000677421
0.00533698
-0.000753705
0.00581276
-0.000834432
0.00633575
-0.000918858
0.00691162
-0.00100708
0.00754729
-0.0010979
0.00824964
0.00902646
-0.00118943
-3.53363e-06
0.00109468
-1.13141e-05
0.00134214
-2.49003e-05
0.00152555
-4.22263e-05
0.00168283
-6.30241e-05
0.00183911
-8.65808e-05
0.00200131
-0.000112994
0.00217489
-0.000142321
0.0023613
-0.000174697
0.0025633
-0.000210285
0.00278211
-0.000249267
0.00301955
-0.000291882
0.0032782
-0.000338232
0.00356003
-0.000388636
0.00386664
-0.000443231
0.00420138
-0.000502173
0.00456707
-0.000565554
0.00496714
-0.000633465
0.00540489
-0.000705734
0.00588503
-0.000782646
0.00641267
-0.000863566
0.00699254
-0.000948115
0.00763184
-0.00103596
0.00833748
0.00911602
-0.00112552
-3.176e-06
0.00109785
-1.00627e-05
0.00134902
-2.22063e-05
0.00153769
-3.82766e-05
0.0016989
-5.74469e-05
0.00185828
-7.93984e-05
0.00202326
-0.000104071
0.00219956
-0.000131506
0.00238874
-0.000161829
0.00259362
-0.000195191
0.00281547
-0.000231698
0.00305606
-0.00027175
0.00331825
-0.000315375
0.00360365
-0.000362818
0.00391408
-0.000414268
0.00425283
-0.0004699
0.00462271
-0.000529882
0.00502712
-0.000594291
0.0054693
-0.000663056
0.00595379
-0.000736055
0.00648567
-0.000813423
0.00706991
-0.000894116
0.00771254
-0.000977675
0.00842104
0.00920045
-0.00106211
-2.91366e-06
0.00110077
-8.93316e-06
0.00135504
-1.9923e-05
0.00154868
-3.47426e-05
0.00171372
-5.24332e-05
0.00187597
-7.30905e-05
0.00204391
-9.62087e-05
0.00222268
-0.000121959
0.00241449
-0.000150453
0.00262211
-0.000181691
0.00284671
-0.000216221
0.00309059
-0.000253906
0.00335593
-0.000295046
0.00364479
-0.000339834
0.00395887
-0.000388485
0.00430148
-0.00044115
0.00467537
-0.000498007
0.00508398
-0.000559045
0.00553034
-0.000624681
0.00601943
-0.000694499
0.00655548
-0.000768339
0.00714375
-0.000846509
0.00779071
-0.000927968
0.00850249
0.00928575
-0.00101327
-2.48479e-06
0.00110325
-7.80973e-06
0.00136037
-1.76802e-05
0.00155855
-3.15527e-05
0.0017276
-4.8207e-05
0.00189262
-6.73072e-05
0.00206302
-8.9047e-05
0.00224442
-0.000113588
0.00243903
-0.000140167
0.00264869
-0.000169934
0.00287647
-0.000202395
0.00312305
-0.000238275
0.00339181
-0.000276921
0.00368344
-0.000319322
0.00400127
-0.000365395
0.00434755
-0.000415364
0.00472534
-0.000469343
0.00513795
-0.00052763
0.00558863
-0.000590067
0.00608187
-0.00065674
0.00662216
-0.000727501
0.00721451
-0.000802034
0.00786524
-0.00087975
0.00858021
0.00936601
-0.000960006
-2.00158e-06
0.00110525
-6.84532e-06
0.00136521
-1.59831e-05
0.00156769
-2.8731e-05
0.00174034
-4.43227e-05
0.00190821
-6.24196e-05
0.00208111
-8.29188e-05
0.00226492
-0.000105538
0.00246165
-0.000131244
0.0026744
-0.000159238
0.00290447
-0.000190034
0.00315385
-0.00022379
0.00342557
-0.000260687
0.00372034
-0.000300927
0.00404151
-0.000344712
0.00439134
-0.000392231
0.00477286
-0.000443679
0.0051894
-0.000499163
0.00564411
-0.000558797
0.0061415
-0.000622607
0.00668597
-0.000690519
0.00728242
-0.0007624
0.00793712
-0.000838135
0.00865595
0.00944558
-0.00091771
-1.68238e-06
0.00110693
-5.93553e-06
0.00136947
-1.42099e-05
0.00157597
-2.60587e-05
0.00175219
-4.07229e-05
0.00192288
-5.79722e-05
0.00209836
-7.73233e-05
0.00228427
-9.91348e-05
0.00248346
-0.000123101
0.00269836
-0.00014956
0.00293093
-0.000178997
0.00318328
-0.000210805
0.00345738
-0.000245903
0.00375543
-0.000284226
0.00407983
-0.000325993
0.0044331
-0.000371281
0.00481815
-0.000420385
0.00523851
-0.000473396
0.00569712
-0.000530327
0.00619843
-0.000591535
0.00674718
-0.000657027
0.00734791
-0.000726335
0.00800643
-0.000799748
0.00872936
0.00952313
-0.000877299
-1.66093e-06
0.00110859
-5.43155e-06
0.00137324
-1.30548e-05
0.00158359
-2.4087e-05
0.00176323
-3.76599e-05
0.00193645
-5.39531e-05
0.00211466
-7.22758e-05
0.00230259
-9.28441e-05
0.00250403
-0.000115677
0.00272119
-0.000141001
0.00295625
-0.000168797
0.00321108
-0.000199347
0.00348793
-0.000232773
0.00378886
-0.000269236
0.00411629
-0.000309038
0.00447291
-0.000352359
0.00486147
-0.000399199
0.00528535
-0.000449835
0.00574776
-0.000504697
0.00625329
-0.000563349
0.00680583
-0.000626106
0.00741067
-0.000693195
0.00807352
-0.000764226
0.00880039
0.00959785
-0.00083894
-1.45772e-06
0.00111005
-4.90749e-06
0.00137669
-1.18498e-05
0.00159053
-2.21115e-05
0.00177349
-3.50883e-05
0.00194943
-5.03123e-05
0.00212988
-6.76752e-05
0.00231996
-8.72781e-05
0.00252363
-0.000109059
0.00274298
-0.000133149
0.00298034
-0.000159682
0.00323761
-0.000188816
0.00351706
-0.000220721
0.00382077
-0.000255588
0.00415116
-0.000293622
0.00451094
-0.000335003
0.00490285
-0.000379759
0.0053301
-0.000428508
0.00579651
-0.000480959
0.00630575
-0.000537348
0.00686222
-0.00059769
0.00747101
-0.000661876
0.0081377
-0.000729474
0.00886799
0.00966784
-0.000799464
-1.23475e-06
0.00111129
-4.5333e-06
0.00137998
-1.06913e-05
0.00159669
-2.03737e-05
0.00178317
-3.25722e-05
0.00196163
-4.69302e-05
0.00214424
-6.35913e-05
0.00233662
-8.22123e-05
0.00254225
-0.000103038
0.0027638
-0.000126011
0.00300332
-0.000151389
0.00326299
-0.000179211
0.00354488
-0.000209737
0.00385129
-0.000243133
0.00418456
-0.000279484
0.00454729
-0.000319206
0.00494257
-0.000362259
0.00537316
-0.000408905
0.00584315
-0.000459269
0.00635611
-0.000513515
0.00691646
-0.000571702
0.0075292
-0.00063381
0.00819981
-0.000700013
0.00893419
0.00973874
-0.000770919
-1.33193e-06
0.00111262
-4.07944e-06
0.00138273
-9.96232e-06
0.00160257
-1.87133e-05
0.00179192
-3.03065e-05
0.00197322
-4.40368e-05
0.00215797
-5.98237e-05
0.0023524
-7.76281e-05
0.00256006
-9.74755e-05
0.00278365
-0.000119481
0.00302532
-0.000143756
0.00328726
-0.000170457
0.00357159
-0.000199675
0.00388051
-0.000231683
0.00421657
-0.000266637
0.00458225
-0.000304535
0.00498047
-0.000346037
0.00541466
-0.00039088
0.005888
-0.000439227
0.00640446
-0.000491512
0.00696875
-0.00054785
0.00758553
-0.000607899
0.00825986
-0.000672169
0.00899846
0.00980751
-0.000740931
-1.23827e-06
0.00111386
-3.94795e-06
0.00138544
-9.1964e-06
0.00160782
-1.74556e-05
0.00180018
-2.83049e-05
0.00198407
-4.13572e-05
0.00217102
-5.6388e-05
0.00236743
-7.34425e-05
0.00257711
-9.24429e-05
0.00280265
-0.000113555
0.00304643
-0.000136804
0.00331051
-0.000162399
0.00359718
-0.000190502
0.00390861
-0.000221182
0.00424725
-0.000254779
0.00461584
-0.000291323
0.00501701
-0.000331097
0.00545443
-0.000374254
0.00593115
-0.00042098
0.00645118
-0.000471363
0.00701913
-0.000525508
0.00763968
-0.000583498
0.00831785
-0.000645216
0.00906018
0.00987244
-0.00071015
-1.30707e-06
0.00111516
-3.7399e-06
0.00138788
-8.51712e-06
0.0016126
-1.62651e-05
0.00180793
-2.64925e-05
0.00199429
-3.89083e-05
0.00218344
-5.33246e-05
0.00238185
-6.95741e-05
0.00259336
-8.78373e-05
0.00282091
-0.000108048
0.00306665
-0.000130422
0.00333289
-0.000154986
0.00362174
-0.000181976
0.0039356
-0.000211598
0.00427687
-0.000243855
0.0046481
-0.000279085
0.00505224
-0.000317388
0.00549273
-0.000358819
0.00597258
-0.000403959
0.00649632
-0.000452549
0.00706772
-0.000504678
0.00769181
-0.000560763
0.00837393
-0.00062034
0.00911976
0.00993622
-0.000684121
-1.1087e-06
0.00111627
-3.40785e-06
0.00139017
-7.86333e-06
0.00161705
-1.50424e-05
0.00181511
-2.47694e-05
0.00200402
-3.66133e-05
0.00219528
-5.03843e-05
0.00239562
-6.60601e-05
0.00260904
-8.3529e-05
0.00283838
-0.000102987
0.0030861
-0.000124489
0.00335439
-0.000148192
0.00364545
-0.000174195
0.0039616
-0.000202509
0.00430518
-0.00023365
0.00467924
-0.00026771
0.0050863
-0.000304504
0.00552953
-0.000344781
0.00601286
-0.000388256
0.0065398
-0.000435222
0.00711469
-0.0004858
0.00774239
-0.000540115
0.00842825
-0.000598403
0.00917805
0.00999847
-0.000660655
-1.0519e-06
0.00111732
-3.12094e-06
0.00139224
-7.20985e-06
0.00162114
-1.40199e-05
0.00182192
-2.32439e-05
0.00201325
-3.45483e-05
0.00220659
-4.77475e-05
0.00240882
-6.27625e-05
0.00262405
-7.96176e-05
0.00285524
-9.83503e-05
0.00310484
-0.000119067
0.0033751
-0.000141886
0.00366827
-0.000166964
0.00398668
-0.000194424
0.00433264
-0.000224451
0.00470927
-0.00025722
0.00511907
-0.000292909
0.00556522
-0.0003317
0.00605165
-0.000373766
0.00658187
-0.000419274
0.0071602
-0.000468392
0.0077915
-0.000521301
0.00848116
-0.000578162
0.00923491
0.0100593
-0.00063898
-9.19218e-07
0.00111824
-2.82643e-06
0.00139415
-6.69879e-06
0.00162501
-1.30532e-05
0.00182827
-2.18228e-05
0.00202201
-3.26334e-05
0.0022174
-4.52919e-05
0.00242148
-5.97343e-05
0.0026385
-7.59581e-05
0.00287146
-9.40029e-05
0.00312288
-0.000114004
0.00339511
-0.000136
0.00369026
-0.000160264
0.00401095
-0.000186791
0.00435917
-0.000215809
0.00473829
-0.000247336
0.0051506
-0.000282008
0.00559989
-0.000319549
0.00608919
-0.000360136
0.00662245
-0.000404246
0.00720431
-0.000452044
0.0078393
-0.000503224
0.00853234
-0.000558302
0.00928998
0.0101178
-0.000616828
-8.27356e-07
0.00111907
-2.56868e-06
0.00139589
-6.1508e-06
0.00162859
-1.22035e-05
0.00183433
-2.05486e-05
0.00203036
-3.08891e-05
0.00222774
-4.30514e-05
0.00243364
-5.6926e-05
0.00265237
-7.25867e-05
0.00288712
-9.00345e-05
0.00314033
-0.000109324
0.0034144
-0.000130642
0.00371158
-0.000153887
0.00403419
-0.000179728
0.00438501
-0.000207774
0.00476633
-0.000238466
0.00518129
-0.000271892
0.00563332
-0.000308109
0.00612541
-0.000347757
0.0066621
-0.000390561
0.00724711
-0.000436709
0.00788545
-0.000486851
0.00858248
-0.00054085
0.00934398
0.010177
-0.000600044
-7.45128e-07
0.00111982
-2.3527e-06
0.0013975
-5.71569e-06
0.00163196
-1.1368e-05
0.00183998
-1.93477e-05
0.00203834
-2.92678e-05
0.00223766
-4.09319e-05
0.0024453
-5.43679e-05
0.00266581
-6.94392e-05
0.00290219
-8.63182e-05
0.00315721
-0.000104972
0.00343305
-0.0001256
0.00373221
-0.000148249
0.00405684
-0.000173094
0.00440986
-0.000200134
0.00479337
-0.000229999
0.00521115
-0.000262371
0.00566569
-0.000297641
0.00616068
-0.000335992
0.00670045
-0.000377551
0.00728867
-0.000422529
0.00793043
-0.000471081
0.00863103
-0.000523346
0.00939625
0.0102323
-0.00057867
-6.59765e-07
0.00112048
-2.14657e-06
0.00139899
-5.30979e-06
0.00163512
-1.07108e-05
0.00184538
-1.82364e-05
0.00204586
-2.77431e-05
0.00224716
-3.90373e-05
0.0024566
-5.19377e-05
0.00267871
-6.65817e-05
0.00291683
-8.28313e-05
0.00317346
-0.000100952
0.00345117
-0.000120746
0.003752
-0.000142849
0.00407894
-0.000166776
0.00443378
-0.000193298
0.00481989
-0.000222115
0.00523997
-0.000253426
0.005697
-0.000287813
0.00619507
-0.000324997
0.00673764
-0.00036537
0.00732904
-0.000409077
0.00797413
-0.000456286
0.00867824
-0.000506966
0.00944693
0.0102863
-0.000560887
-6.22417e-07
0.0011211
-2.03621e-06
0.0014004
-4.99691e-06
0.00163808
-1.00425e-05
0.00185042
-1.7252e-05
0.00205307
-2.63775e-05
0.00225629
-3.72301e-05
0.00246745
-4.97233e-05
0.0026912
-6.3844e-05
0.00293095
-7.96582e-05
0.00318927
-9.71737e-05
0.00346869
-0.000116548
0.00377138
-0.000137805
0.0041002
-0.000161171
0.00445715
-0.000186794
0.00484552
-0.000214586
0.00526776
-0.000245273
0.00572769
-0.000278536
0.00622833
-0.00031456
0.00677366
-0.000353998
0.00736848
-0.000396582
0.00801672
-0.000442669
0.00872433
-0.000492497
0.00949676
0.0103404
-0.00054668
-5.91033e-07
0.00112169
-1.91505e-06
0.00140173
-4.76558e-06
0.00164093
-9.49333e-06
0.00185515
-1.63563e-05
0.00205994
-2.51188e-05
0.00226505
-3.55707e-05
0.0024779
-4.76686e-05
0.0027033
-6.1373e-05
0.00294466
-7.66813e-05
0.00320458
-9.35069e-05
0.00348551
-0.000112428
0.0037903
-0.000132965
0.00412074
-0.0001558
0.00447998
-0.000180647
0.00487036
-0.000207852
0.00529497
-0.00023751
0.00575734
-0.000269883
0.0062607
-0.000305073
0.00680885
-0.000343142
0.00740655
-0.000384588
0.00805816
-0.00042943
0.00876917
-0.000477793
0.00954512
0.0103927
-0.000530089
-5.94047e-07
0.00112228
-1.86546e-06
0.001403
-4.53025e-06
0.0016436
-9.01999e-06
0.00185964
-1.55338e-05
0.00206645
-2.3948e-05
0.00227347
-3.40429e-05
0.002488
-4.57964e-05
0.00271505
-5.88547e-05
0.00295772
-7.3699e-05
0.00321943
-9.03536e-05
0.00350217
-0.000108588
0.00380853
-0.000128673
0.00414082
-0.000150737
0.00450205
-0.000174754
0.00489438
-0.000201348
0.00532156
-0.000230233
0.00578623
-0.000261517
0.00629199
-0.000295921
0.00684325
-0.000333107
0.00744373
-0.000373405
0.00809846
-0.00041696
0.00881273
-0.000463929
0.00959209
0.0104431
-0.000514299
-5.93487e-07
0.00112288
-1.84545e-06
0.00140425
-4.3668e-06
0.00164612
-8.57881e-06
0.00186385
-1.47888e-05
0.00207266
-2.28508e-05
0.00228153
-3.25412e-05
0.00249769
-4.38066e-05
0.00272632
-5.68222e-05
0.00297073
-7.1234e-05
0.00323384
-8.72676e-05
0.0035182
-0.000104839
0.0038261
-0.000124536
0.00416052
-0.000145839
0.00452335
-0.000169524
0.00491807
-0.000195266
0.0053473
-0.000223215
0.00581418
-0.000254013
0.00632278
-0.000287353
0.00687659
-0.000323566
0.00747995
-0.000362802
0.0081377
-0.000405204
0.00885513
-0.000450932
0.00963782
0.0104926
-0.000500406
-6.28449e-07
0.0011235
-1.83226e-06
0.00140545
-4.18475e-06
0.00164847
-8.17254e-06
0.00186784
-1.40786e-05
0.00207857
-2.18299e-05
0.00228928
-3.13304e-05
0.00250719
-4.23115e-05
0.0027373
-5.47746e-05
0.0029832
-6.87742e-05
0.00324784
-8.43711e-05
0.0035338
-0.000101641
0.00384337
-0.00012067
0.00417955
-0.000141558
0.00454424
-0.000164494
0.004941
-0.000189556
0.00537237
-0.000216956
0.00584158
-0.000246827
0.00635265
-0.000279187
0.00690895
-0.000314661
0.00751542
-0.000352946
0.00817598
-0.00039434
0.00889652
-0.000439028
0.0096825
0.0105406
-0.000487028
-5.82457e-07
0.00112409
-1.74264e-06
0.00140661
-4.02852e-06
0.00165076
-7.79052e-06
0.0018716
-1.34984e-05
0.00208427
-2.09645e-05
0.00229675
-3.00463e-05
0.00251627
-4.06864e-05
0.00274794
-5.28147e-05
0.00299532
-6.64784e-05
0.0032615
-8.16612e-05
0.00354898
-9.84399e-05
0.00386015
-0.000116979
0.00419809
-0.000137392
0.00456465
-0.000159712
0.00496332
-0.000184049
0.0053967
-0.000210908
0.00586844
-0.000240064
0.00638181
-0.000271836
0.00694073
-0.000306198
0.00754978
-0.000343803
0.00821359
-0.000384155
0.00893687
-0.00042781
0.00972616
0.0105875
-0.000474709
-6.20814e-07
0.00112471
-1.7346e-06
0.00140773
-3.87245e-06
0.00165289
-7.44936e-06
0.00187518
-1.28946e-05
0.00208972
-2.01376e-05
0.00230399
-2.89609e-05
0.00252509
-3.92897e-05
0.00275827
-5.10847e-05
0.00300712
-6.41944e-05
0.00327461
-7.89564e-05
0.00356374
-9.55423e-05
0.00387674
-0.000113465
0.00421601
-0.00013348
0.00458467
-0.00015533
0.00498517
-0.000179186
0.00542056
-0.000205328
0.00589458
-0.000233666
0.00641015
-0.000264881
0.00697194
-0.000298655
0.00758356
-0.000335261
0.00825019
-0.000375452
0.00897706
-0.00041918
0.00976989
0.0106356
-0.000467278
-5.9633e-07
0.0011253
-1.66388e-06
0.00140879
-3.7395e-06
0.00165497
-7.1645e-06
0.00187861
-1.21952e-05
0.00209475
-1.92743e-05
0.00231107
-2.78548e-05
0.00253367
-3.78542e-05
0.00276827
-4.92045e-05
0.00301847
-6.22649e-05
0.00328767
-7.67268e-05
0.0035782
-9.2689e-05
0.0038927
-0.000110342
0.00423366
-0.000129796
0.00460412
-0.000150916
0.00500629
-0.000174452
0.00544409
-0.000199977
0.0059201
-0.000227846
0.00643802
-0.000258209
0.0070023
-0.000291351
0.0076167
-0.000327409
0.00828625
-0.00036668
0.00901633
-0.000409448
0.00981266
0.010682
-0.0004559
-6.15416e-07
0.00112592
-1.68134e-06
0.00140986
-3.4226e-06
0.00165671
-6.85396e-06
0.00188204
-1.18392e-05
0.00209973
-1.83915e-05
0.00231762
-2.66791e-05
0.00254196
-3.64346e-05
0.00277802
-4.77786e-05
0.00302981
-6.03896e-05
0.00330028
-7.44711e-05
0.00359228
-9.01234e-05
0.00390835
-0.000107335
0.00425088
-0.000126151
0.00462294
-0.000147177
0.00502732
-0.000169966
0.00546688
-0.000194763
0.0059449
-0.000222177
0.00646543
-0.000251898
0.00703203
-0.000284265
0.00764907
-0.000319457
0.00832144
-0.00035762
0.0090545
-0.000398744
0.00985378
0.0107256
-0.000442309
-4.69823e-07
0.00112639
-1.39821e-06
0.00141079
-3.40723e-06
0.00165872
-6.39866e-06
0.00188503
-1.13544e-05
0.00210469
-1.78435e-05
0.00232411
-2.58875e-05
0.00255
-3.54154e-05
0.00278755
-4.62807e-05
0.00304068
-5.85878e-05
0.00331259
-7.23407e-05
0.00360604
-8.74401e-05
0.00392345
-0.000104494
0.00426793
-0.000123018
0.00464146
-0.000143392
0.00504769
-0.000165716
0.00548921
-0.000190133
0.00596932
-0.000216801
0.0064921
-0.000245884
0.00706111
-0.000277556
0.00768074
-0.00031199
0.00835588
-0.000349344
0.00909185
-0.000389792
0.00989423
0.0107697
-0.000433886
-5.25463e-07
0.00112691
-1.47612e-06
0.00141174
-3.30219e-06
0.00166055
-6.3022e-06
0.00188803
-1.09172e-05
0.00210931
-1.72234e-05
0.00233042
-2.49994e-05
0.00255778
-3.42429e-05
0.00279679
-4.48736e-05
0.00305131
-5.69255e-05
0.00332464
-7.01674e-05
0.00361928
-8.52548e-05
0.00393854
-0.000101582
0.00428426
-0.000119903
0.00465978
-0.000139844
0.00506763
-0.000161535
0.0055109
-0.000185606
0.00599339
-0.000211723
0.00651822
-0.000240083
0.00708947
-0.000271089
0.00771175
-0.000305008
0.0083898
-0.000341503
0.00912835
-0.000381258
0.00993398
0.010813
-0.00042458
-6.15547e-07
0.00112753
-1.51476e-06
0.00141264
-3.23156e-06
0.00166226
-6.14439e-06
0.00189094
-1.06036e-05
0.00211376
-1.66187e-05
0.00233643
-2.41964e-05
0.00256536
-3.31943e-05
0.00280579
-4.35638e-05
0.00306168
-5.51373e-05
0.00333621
-6.84753e-05
0.00363262
-8.30412e-05
0.00395311
-9.9181e-05
0.0043004
-0.000116992
0.00467759
-0.000136489
0.00508713
-0.000157929
0.00553234
-0.000181324
0.00601679
-0.000206761
0.00654365
-0.00023486
0.00711757
-0.000265341
0.00774223
-0.000298336
0.00842279
-0.000334566
0.00916458
-0.000373966
0.00997338
0.0108564
-0.000417386
-5.35236e-07
0.00112807
-1.43171e-06
0.00141354
-3.1106e-06
0.00166394
-5.93506e-06
0.00189377
-1.00373e-05
0.00211787
-1.60511e-05
0.00234244
-2.34172e-05
0.00257272
-3.21895e-05
0.00281456
-4.21512e-05
0.00307164
-5.37934e-05
0.00334786
-6.66508e-05
0.00364547
-8.09445e-05
0.0039674
-9.67523e-05
0.0043162
-0.00011417
0.00469501
-0.000133145
0.0051061
-0.000154293
0.00555349
-0.00017726
0.00603975
-0.000202361
0.00656875
-0.000229758
0.00714496
-0.000259622
0.00777209
-0.000292135
0.00845531
-0.000327494
0.00919993
-0.000365873
0.0100118
0.0108976
-0.000407074
-3.82589e-07
0.00112845
-1.3991e-06
0.00141455
-2.87755e-06
0.00166542
-5.79536e-06
0.00189668
-9.86263e-06
0.00212193
-1.53551e-05
0.00234794
-2.25508e-05
0.00257992
-3.10719e-05
0.00282309
-4.11687e-05
0.00308174
-5.23633e-05
0.00335905
-6.49528e-05
0.00365806
-7.87904e-05
0.00398124
-9.44487e-05
0.00433186
-0.000111359
0.00471192
-0.00013029
0.00512503
-0.000150871
0.00557407
-0.000173268
0.00606215
-0.000198057
0.00659354
-0.000224908
0.00717181
-0.000254217
0.0078014
-0.000286136
0.00848723
-0.000320902
0.0092347
-0.000358714
0.0100496
0.0109388
-0.000399873
-5.2608e-07
0.00112897
-1.2352e-06
0.00141526
-2.97904e-06
0.00166716
-5.45864e-06
0.00189916
-9.57002e-06
0.00212604
-1.504e-05
0.00235341
-2.2003e-05
0.00258688
-3.03502e-05
0.00283143
-4.00248e-05
0.00309141
-5.10159e-05
0.00337004
-6.33487e-05
0.0036704
-7.71083e-05
0.003995
-9.22667e-05
0.00434702
-0.000109016
0.00472867
-0.000127428
0.00514345
-0.000147459
0.0055941
-0.000169737
0.00608443
-0.000193914
0.00661772
-0.00022015
0.00719805
-0.00024911
0.00783036
-0.000280494
0.00851861
-0.000314519
0.00926873
-0.000351884
0.0100869
0.0109791
-0.00039218
-6.24849e-07
0.0011296
-1.51029e-06
0.00141615
-3.0171e-06
0.00166867
-5.54942e-06
0.0019017
-9.34459e-06
0.00212984
-1.46285e-05
0.00235869
-2.13936e-05
0.00259365
-2.95344e-05
0.00283957
-3.89917e-05
0.00310087
-4.97518e-05
0.0033808
-6.16703e-05
0.00368231
-7.52964e-05
0.00400862
-9.00685e-05
0.00436179
-0.000106638
0.00474524
-0.000124746
0.00516155
-0.000144543
0.0056139
-0.00016626
0.00610615
-0.000190009
0.00664147
-0.000215947
0.00722399
-0.000244085
0.0078585
-0.000275109
0.00854963
-0.000308733
0.00930235
-0.000345139
0.0101233
0.0110188
-0.000384827
-5.67455e-07
0.00113017
-1.44114e-06
0.00141702
-2.95443e-06
0.00167018
-5.41127e-06
0.00190415
-8.91932e-06
0.00213335
-1.42085e-05
0.00236398
-2.07967e-05
0.00260023
-2.87487e-05
0.00284753
-3.80047e-05
0.00311012
-4.83812e-05
0.00339118
-6.04009e-05
0.00369433
-7.36088e-05
0.00402183
-8.824e-05
0.00437642
-0.000104381
0.00476138
-0.000122134
0.00517931
-0.000141614
0.00563338
-0.000162952
0.00612748
-0.000186124
0.00666464
-0.000211782
0.00724965
-0.000239602
0.00788632
-0.000269767
0.0085798
-0.000302957
0.00933554
-0.000338805
0.0101592
0.0110574
-0.00037741
-4.16692e-07
0.00113058
-1.41663e-06
0.00141802
-2.86986e-06
0.00167164
-5.42358e-06
0.00190671
-8.80968e-06
0.00213673
-1.38248e-05
0.002369
-2.02145e-05
0.00260662
-2.78584e-05
0.00285517
-3.68909e-05
0.00311916
-4.74354e-05
0.00340172
-5.90341e-05
0.00370593
-7.20044e-05
0.0040348
-8.63771e-05
0.0043908
-0.00010207
0.00477707
-0.000119517
0.00519675
-0.00013883
0.00565269
-0.000159638
0.00614829
-0.000182746
0.00668775
-0.000207841
0.00727474
-0.000235154
0.00791363
-0.000264954
0.0086096
-0.000297365
0.00936795
-0.000332486
0.0101943
0.0110951
-0.000370251
-4.23409e-07
0.00113101
-1.42995e-06
0.00141903
-2.7178e-06
0.00167292
-5.17826e-06
0.00190917
-8.61642e-06
0.00214017
-1.33868e-05
0.00237377
-1.97157e-05
0.00261295
-2.73059e-05
0.00286276
-3.6328e-05
0.00312818
-4.62244e-05
0.00341162
-5.77855e-05
0.00371749
-7.03229e-05
0.00404734
-8.45814e-05
0.00440506
-0.000100172
0.00479267
-0.000117191
0.00521377
-0.000136257
0.00567175
-0.00015672
0.00616875
-0.000179388
0.00671042
-0.000204044
0.0072994
-0.000230983
0.00794057
-0.00026028
0.0086389
-0.000292215
0.00939988
-0.000327024
0.0102291
0.0111336
-0.000365444
-5.66078e-07
0.00113157
-1.29735e-06
0.00141976
-2.86218e-06
0.00167449
-4.94153e-06
0.00191125
-8.44198e-06
0.00214367
-1.31388e-05
0.00237846
-1.9243e-05
0.00261906
-2.66748e-05
0.00287019
-3.53775e-05
0.00313688
-4.53291e-05
0.00342157
-5.65459e-05
0.00372871
-6.90662e-05
0.00405986
-8.29537e-05
0.00441894
-9.82871e-05
0.004808
-0.000115503
0.00523099
-0.000133523
0.00568978
-0.000153991
0.00618922
-0.000176367
0.00673279
-0.00020043
0.00732346
-0.00022674
0.00796688
-0.000255706
0.00866786
-0.00028693
0.00943111
-0.000320895
0.0102631
0.0111705
-0.000357869
-6.8976e-07
0.00113226
-1.53725e-06
0.00142061
-2.90872e-06
0.00167586
-5.07389e-06
0.00191341
-8.30891e-06
0.00214691
-1.28716e-05
0.00238303
-1.88232e-05
0.00262501
-2.60918e-05
0.00287746
-3.46217e-05
0.00314541
-4.439e-05
0.00343134
-5.52416e-05
0.00373956
-6.77217e-05
0.00407234
-8.12139e-05
0.00443244
-9.64724e-05
0.00482326
-0.000113085
0.0052476
-0.000131326
0.00570802
-0.000151317
0.00620921
-0.000173193
0.00675467
-0.000197094
0.00734736
-0.000223171
0.00799296
-0.000251411
0.0086961
-0.000282479
0.00946218
-0.000316097
0.0102967
0.0112073
-0.000352841
-6.19575e-07
0.00113288
-1.48484e-06
0.00142147
-2.84467e-06
0.00167722
-4.96819e-06
0.00191554
-7.96565e-06
0.0021499
-1.25837e-05
0.00238764
-1.8401e-05
0.00263083
-2.55229e-05
0.00288458
-3.37248e-05
0.00315361
-4.33233e-05
0.00344094
-5.43317e-05
0.00375057
-6.64458e-05
0.00408445
-7.98941e-05
0.00444588
-9.4754e-05
0.00483812
-0.000110949
0.0052638
-0.00012909
0.00572616
-0.000148793
0.00622892
-0.000170192
0.00677607
-0.000193934
0.0073711
-0.000219675
0.0080187
-0.000247757
0.00872419
-0.000278382
0.0094928
-0.000311747
0.0103301
0.0112431
-0.000347599
-6.07229e-07
0.00113349
-1.45931e-06
0.00142232
-2.64152e-06
0.0016784
-4.87777e-06
0.00191777
-7.96648e-06
0.00215299
-1.21428e-05
0.00239182
-1.78294e-05
0.00263651
-2.48109e-05
0.00289156
-3.32025e-05
0.003162
-4.26403e-05
0.00345038
-5.33062e-05
0.00376124
-6.52341e-05
0.00409638
-7.84811e-05
0.00445913
-9.2953e-05
0.00485259
-0.000109251
0.0052801
-0.00012697
0.00574388
-0.00014623
0.00624818
-0.000167675
0.00679751
-0.000190943
0.00739437
-0.000216365
0.00804412
-0.000244129
0.00875195
-0.000274442
0.00952312
-0.000307459
0.0103631
0.0112787
-0.000343015
-4.72025e-07
0.00113396
-1.31683e-06
0.00142317
-2.78479e-06
0.00167987
-4.66386e-06
0.00191965
-7.84855e-06
0.00215618
-1.20836e-05
0.00239606
-1.76404e-05
0.00264207
-2.44838e-05
0.00289841
-3.25589e-05
0.00317008
-4.18403e-05
0.00345966
-5.23389e-05
0.00377173
-6.39159e-05
0.00410796
-7.714e-05
0.00447235
-9.15721e-05
0.00486702
-0.000107474
0.005296
-0.000124948
0.00576135
-0.000144113
0.00626734
-0.000165105
0.0068185
-0.000187899
0.00741717
-0.000213167
0.00806939
-0.000240587
0.00877937
-0.000270532
0.00955306
-0.000303234
0.0103958
0.0113144
-0.000338969
-5.85515e-07
0.00113455
-1.44137e-06
0.00142402
-2.75604e-06
0.00168118
-4.76907e-06
0.00192166
-7.73469e-06
0.00215914
-1.1871e-05
0.00240019
-1.73051e-05
0.0026475
-2.40173e-05
0.00290512
-3.19527e-05
0.00317801
-4.10849e-05
0.00346879
-5.12515e-05
0.0037819
-6.29979e-05
0.00411971
-7.56938e-05
0.00448505
-9.00951e-05
0.00488142
-0.000105778
0.00531168
-0.000122844
0.00577842
-0.000141921
0.00628642
-0.000162633
0.00683921
-0.000185292
0.00743982
-0.000209893
0.00809399
-0.000237128
0.0088066
-0.000266523
0.00958246
-0.00029885
0.0104281
0.0113506
-0.000335036
-6.97517e-07
0.00113524
-1.53207e-06
0.00142486
-2.81971e-06
0.00168247
-4.79021e-06
0.00192363
-7.68475e-06
0.00216204
-1.17127e-05
0.00240422
-1.70185e-05
0.00265281
-2.35966e-05
0.0029117
-3.13924e-05
0.00318581
-4.02056e-05
0.0034776
-5.05591e-05
0.00379225
-6.19671e-05
0.00413111
-7.46533e-05
0.00449774
-8.86888e-05
0.00489546
-0.00010416
0.00532715
-0.000121165
0.00579542
-0.000139821
0.00630507
-0.000160085
0.00685948
-0.000182607
0.00746235
-0.000207033
0.00811841
-0.000233532
0.0088331
-0.000262801
0.00961173
-0.00029456
0.0104599
0.0113846
-0.000328563
-6.3671e-07
0.00113588
-1.49599e-06
0.00142572
-2.79132e-06
0.00168377
-4.74639e-06
0.00192559
-7.42819e-06
0.00216472
-1.15363e-05
0.00240833
-1.67303e-05
0.002658
-2.30161e-05
0.00291798
-3.06836e-05
0.00319348
-3.97038e-05
0.00348662
-4.97388e-05
0.00380229
-6.09882e-05
0.00414236
-7.35029e-05
0.00451025
-8.73522e-05
0.00490931
-0.000102449
0.00534225
-0.000119404
0.00581238
-0.000137645
0.00632332
-0.000157981
0.00687982
-0.000180033
0.0074844
-0.000204116
0.0081425
-0.000230376
0.00885936
-0.000258943
0.00964029
-0.000289896
0.0104908
0.0114182
-0.000323496
-4.97684e-07
0.00113638
-1.4996e-06
0.00142672
-2.63496e-06
0.0016849
-4.72398e-06
0.00192768
-7.51713e-06
0.00216751
-1.12038e-05
0.00241201
-1.62903e-05
0.00266309
-2.28031e-05
0.0029245
-3.03486e-05
0.00320102
-3.90672e-05
0.00349534
-4.8963e-05
0.00381218
-5.98896e-05
0.00415329
-7.24146e-05
0.00452278
-8.5915e-05
0.00492281
-0.000101163
0.0053575
-0.000117738
0.00582895
-0.000135921
0.0063415
-0.000155835
0.00689973
-0.00017761
0.00750617
-0.000201381
0.00816627
-0.000227288
0.00888527
-0.000255468
0.00966847
-0.000286017
0.0105214
0.0114504
-0.000318204
-6.21387e-07
0.001137
-1.36083e-06
0.00142746
-2.80569e-06
0.00168635
-4.55599e-06
0.00192943
-7.46467e-06
0.00217042
-1.12394e-05
0.00241579
-1.62248e-05
0.00266807
-2.24549e-05
0.00293073
-2.98823e-05
0.00320845
-3.84758e-05
0.00350394
-4.82382e-05
0.00382195
-5.9194e-05
0.00416425
-7.13924e-05
0.00453497
-8.4898e-05
0.00493631
-9.97939e-05
0.00537239
-0.000116001
0.00584516
-0.000134145
0.00635964
-0.000153833
0.00691942
-0.000175196
0.00752754
-0.000198722
0.00818979
-0.000224568
0.00891112
-0.000252388
0.00969629
-0.000282867
0.0105519
0.0114838
-0.000316228
-7.51644e-07
0.00113775
-1.6262e-06
0.00142833
-2.90548e-06
0.00168763
-4.78168e-06
0.00193131
-7.46583e-06
0.00217311
-1.11554e-05
0.00241948
-1.60374e-05
0.00267296
-2.2155e-05
0.00293684
-2.94645e-05
0.00321576
-3.79349e-05
0.00351241
-4.73936e-05
0.00383141
-5.83852e-05
0.00417524
-7.02624e-05
0.00454685
-8.37828e-05
0.00494983
-9.8508e-05
0.00538712
-0.000114703
0.00586135
-0.000132479
0.00637742
-0.000151957
0.0069389
-0.000173273
0.00754885
-0.000196579
0.0082131
-0.000222053
0.00893659
-0.000249905
0.00972414
-0.000280547
0.0105825
0.0115167
-0.000313456
-6.97592e-07
0.00113845
-1.60915e-06
0.00142925
-2.90283e-06
0.00168892
-4.76938e-06
0.00193317
-7.25075e-06
0.00217559
-1.10455e-05
0.00242327
-1.58425e-05
0.00267775
-2.18624e-05
0.00294286
-2.88925e-05
0.00322279
-3.725e-05
0.00352076
-4.69357e-05
0.00384109
-5.76245e-05
0.00418593
-6.95354e-05
0.00455876
-8.27324e-05
0.00496303
-9.71212e-05
0.00540151
-0.000113314
0.00587755
-0.000131247
0.00639535
-0.000149998
0.00695765
-0.000171263
0.00757012
-0.000194324
0.00823616
-0.000219348
0.00896161
-0.000247021
0.00975182
-0.000276785
0.0106123
0.0115505
-0.000310595
-6.96555e-07
0.00113915
-1.62079e-06
0.00143017
-2.75917e-06
0.00169006
-4.76808e-06
0.00193518
-7.37589e-06
0.00217819
-1.07719e-05
0.00242667
-1.56598e-05
0.00268264
-2.14137e-05
0.00294862
-2.86915e-05
0.00323007
-3.69429e-05
0.00352902
-4.63412e-05
0.00385049
-5.6908e-05
0.00419649
-6.8687e-05
0.00457054
-8.15666e-05
0.00497591
-9.61474e-05
0.00541609
-0.000111998
0.0058934
-0.000129224
0.00641258
-0.000148464
0.00697689
-0.000169327
0.00759098
-0.000192124
0.00825896
-0.000216995
0.00898649
-0.000244053
0.00977888
-0.000273144
0.0106414
0.011582
-0.000304699
-8.73893e-07
0.00114002
-1.51444e-06
0.00143081
-2.9625e-06
0.00169151
-4.7955e-06
0.00193701
-7.36533e-06
0.00218076
-1.08724e-05
0.00243018
-1.53393e-05
0.00268711
-2.13493e-05
0.00295463
-2.83562e-05
0.00323707
-3.65041e-05
0.00353716
-4.57924e-05
0.00385978
-5.60666e-05
0.00420677
-6.78945e-05
0.00458237
-8.08117e-05
0.00498883
-9.5071e-05
0.00543035
-0.000110761
0.00590909
-0.000127985
0.0064298
-0.00014686
0.00699576
-0.000167512
0.00761163
-0.000190075
0.00828152
-0.000214687
0.0090111
-0.000241483
0.00980567
-0.000270464
0.0106703
0.0116137
-0.000302086
-7.50902e-07
0.00114077
-1.70621e-06
0.00143177
-3.00894e-06
0.00169281
-4.66733e-06
0.00193867
-7.36976e-06
0.00218347
-1.08245e-05
0.00243363
-1.53905e-05
0.00269167
-2.11421e-05
0.00296038
-2.80561e-05
0.00324399
-3.61051e-05
0.00354521
-4.52884e-05
0.00386896
-5.56254e-05
0.0042171
-6.69835e-05
0.00459373
-7.99473e-05
0.00500179
-9.40678e-05
0.00544447
-0.000109433
0.00592445
-0.00012667
0.00644704
-0.00014537
0.00701446
-0.000165658
0.00763192
-0.000188015
0.00830388
-0.000212573
0.00903566
-0.000238926
0.00983203
-0.000267709
0.0106991
0.0116453
-0.00029938
-8.53307e-07
0.00114162
-1.80712e-06
0.00143272
-3.10214e-06
0.0016941
-4.90178e-06
0.00194047
-7.40248e-06
0.00218597
-1.08039e-05
0.00243703
-1.52978e-05
0.00269617
-2.09649e-05
0.00296605
-2.77885e-05
0.00325081
-3.55665e-05
0.00355299
-4.46495e-05
0.00387804
-5.50561e-05
0.00422751
-6.64759e-05
0.00460515
-7.91437e-05
0.00501446
-9.31339e-05
0.00545846
-0.000108533
0.00593985
-0.000125446
0.00646395
-0.000143808
0.00703283
-0.00016427
0.00765238
-0.000186437
0.00832605
-0.000210445
0.00905966
-0.000236782
0.00985836
-0.000265445
0.0107278
0.0116762
-0.000296365
-7.84196e-07
0.00114241
-1.77208e-06
0.00143371
-3.0871e-06
0.00169542
-4.89208e-06
0.00194228
-7.21347e-06
0.00218829
-1.07524e-05
0.00244057
-1.51896e-05
0.00270061
-2.07851e-05
0.00297164
-2.73543e-05
0.00325738
-3.57678e-05
0.0035614
-4.43904e-05
0.00388667
-5.45239e-05
0.00423764
-6.58388e-05
0.00461646
-7.83937e-05
0.00502701
-9.20867e-05
0.00547215
-0.000107531
0.0059553
-0.000124305
0.00648073
-0.000142694
0.00705121
-0.000162829
0.00767252
-0.000184847
0.00834806
-0.000208908
0.00908373
-0.000235035
0.00988449
-0.000263879
0.0107566
0.0117084
-0.000295987
-7.86181e-07
0.00114319
-1.77824e-06
0.0014347
-2.94261e-06
0.00169658
-4.90413e-06
0.00194424
-7.3755e-06
0.00219076
-1.05415e-05
0.00244374
-1.49222e-05
0.00270499
-2.04472e-05
0.00297717
-2.72918e-05
0.00326423
-3.50813e-05
0.00356919
-4.39863e-05
0.00389557
-5.38509e-05
0.00424751
-6.52437e-05
0.00462785
-7.75158e-05
0.00503929
-9.14462e-05
0.00548608
-0.000106592
0.00597044
-0.000123057
0.00649719
-0.000141481
0.00706964
-0.000161465
0.0076925
-0.000183326
0.00836992
-0.000207567
0.00910797
-0.000233188
0.00991011
-0.000261781
0.0107852
0.0117393
-0.000292702
-6.5566e-07
0.00114385
-1.65959e-06
0.0014357
-3.14109e-06
0.00169807
-4.78063e-06
0.00194588
-7.4048e-06
0.00219338
-1.07099e-05
0.00244704
-1.50354e-05
0.00270931
-2.04908e-05
0.00298262
-2.70854e-05
0.00327082
-3.4796e-05
0.0035769
-4.36175e-05
0.00390439
-5.35695e-05
0.00425746
-6.4691e-05
0.00463898
-7.7037e-05
0.00505163
-9.0681e-05
0.00549972
-0.000105531
0.00598529
-0.000122218
0.00651388
-0.000140323
0.00708774
-0.000159972
0.00771215
-0.000181829
0.00839178
-0.000205516
0.00913165
-0.000231177
0.00993577
-0.000260994
0.010815
0.0117682
-0.00028987
-8.91327e-07
0.00114474
-1.89795e-06
0.00143671
-3.22921e-06
0.0016994
-5.02545e-06
0.00194767
-7.46624e-06
0.00219582
-1.0737e-05
0.00245031
-1.50052e-05
0.00271358
-2.03898e-05
0.00298801
-2.691e-05
0.00327734
-3.45431e-05
0.00358454
-4.31059e-05
0.00391296
-5.31497e-05
0.0042675
-6.40021e-05
0.00464983
-7.64274e-05
0.00506406
-8.99655e-05
0.00551326
-0.000104876
0.0060002
-0.000121261
0.00653026
-0.000139227
0.00710571
-0.000158895
0.00773182
-0.000180219
0.0084131
-0.00020298
0.00915441
-0.000229244
0.00996204
-0.000257026
0.0108428
0.0117976
-0.000286512
-8.33614e-07
0.00114557
-1.87342e-06
0.00143775
-3.2301e-06
0.00170075
-5.04261e-06
0.00194949
-7.31654e-06
0.0021981
-1.07391e-05
0.00245374
-1.49635e-05
0.0027178
-2.02885e-05
0.00299333
-2.67434e-05
0.0032838
-3.41295e-05
0.00359192
-4.29734e-05
0.0039218
-5.2761e-05
0.00427729
-6.37056e-05
0.00466077
-7.58623e-05
0.00507621
-8.93015e-05
0.0055267
-0.000104105
0.00601501
-0.000120374
0.00654653
-0.000138037
0.00712337
-0.000157747
0.00775153
-0.000179104
0.00843446
-0.000204011
0.00917932
-0.000229436
0.00998746
-0.000255378
0.0108688
0.011828
-0.000285765
-8.39103e-07
0.00114641
-1.89111e-06
0.0014388
-3.26006e-06
0.00170212
-5.08008e-06
0.00195131
-7.51865e-06
0.00220054
-1.07497e-05
0.00245697
-1.49308e-05
0.00272198
-2.00227e-05
0.00299842
-2.64158e-05
0.00329019
-3.4092e-05
0.0035996
-4.26898e-05
0.0039304
-5.24039e-05
0.00428701
-6.32696e-05
0.00467164
-7.53413e-05
0.00508829
-8.85107e-05
0.00553987
-0.000103394
0.00602989
-0.000119378
0.00656251
-0.000137281
0.00714128
-0.000156696
0.00777094
-0.000177932
0.0084557
-0.000200968
0.00920236
-0.000226315
0.0100128
-0.000253992
0.0108964
0.0118582
-0.000284133
-7.22268e-07
0.00114714
-1.9326e-06
0.00144001
-3.16074e-06
0.00170335
-5.1491e-06
0.0019533
-7.582e-06
0.00220297
-1.06178e-05
0.00246
-1.47551e-05
0.00272612
-2.0143e-05
0.00300381
-2.6475e-05
0.00329652
-3.39097e-05
0.00360703
-4.24403e-05
0.00393893
-5.19046e-05
0.00429647
-6.28735e-05
0.00468261
-7.46855e-05
0.0051001
-8.81239e-05
0.00555331
-0.000102735
0.0060445
-0.000118795
0.00657857
-0.000136411
0.00715889
-0.000155705
0.00779024
-0.000175923
0.00847592
-0.000199695
0.00922613
-0.000224853
0.010038
-0.000252211
0.0109238
0.0118878
-0.00028186
-8.52858e-07
0.00114799
-1.80699e-06
0.00144097
-3.36792e-06
0.00170491
-5.04799e-06
0.00195498
-7.64928e-06
0.00220557
-1.08397e-05
0.00246319
-1.49418e-05
0.00273022
-2.01041e-05
0.00300897
-2.63796e-05
0.0033028
-3.37542e-05
0.00361441
-4.22213e-05
0.0039474
-5.17966e-05
0.00430605
-6.25153e-05
0.00469333
-7.44284e-05
0.00511201
-8.76052e-05
0.00556649
-0.000101948
0.00605884
-0.000118088
0.00659471
-0.000135596
0.0071764
-0.000154594
0.00780923
-0.000177343
0.00849866
-0.00019848
0.00924727
-0.000223476
0.010063
-0.000250738
0.0109511
0.0119176
-0.000280569
-9.87769e-07
0.00114898
-2.08644e-06
0.00144207
-3.4991e-06
0.00170632
-5.34036e-06
0.00195682
-7.76171e-06
0.00220799
-1.0925e-05
0.00246636
-1.49859e-05
0.00273429
-2.00958e-05
0.00301408
-2.63136e-05
0.00330901
-3.36283e-05
0.00362172
-4.18539e-05
0.00395562
-5.15441e-05
0.00431574
-6.20147e-05
0.0047038
-7.44046e-05
0.0051244
-8.71327e-05
0.00557921
-0.000101568
0.00607328
-0.000117437
0.00661058
-0.000134844
0.00719381
-0.000153908
0.0078283
-0.00017458
0.00851934
-0.000197353
0.00927004
-0.000222191
0.0100878
-0.000249247
0.0109781
0.0119489
-0.000280547
-9.35503e-07
0.00114991
-2.08112e-06
0.00144321
-3.52781e-06
0.00170777
-5.39224e-06
0.00195868
-7.6536e-06
0.00221025
-1.09796e-05
0.00246968
-1.50142e-05
0.00273832
-2.00842e-05
0.00301915
-2.60758e-05
0.00331501
-3.33386e-05
0.00362899
-4.1868e-05
0.00396415
-5.13204e-05
0.00432519
-6.19075e-05
0.00471438
-7.36815e-05
0.00513618
-8.65263e-05
0.00559206
-0.000101062
0.00608781
-0.000116845
0.00662637
-0.000133978
0.00721094
-0.000153114
0.00784743
-0.000173666
0.00853989
-0.000196295
0.00929267
-0.000220957
0.0101125
-0.000247782
0.0110049
0.0119781
-0.0002769
-9.45759e-07
0.00115086
-2.10798e-06
0.00144437
-3.4166e-06
0.00170908
-5.45524e-06
0.00196072
-7.88736e-06
0.00221269
-1.0859e-05
0.00247265
-1.48694e-05
0.00274233
-1.99034e-05
0.00302419
-2.62093e-05
0.00332131
-3.34257e-05
0.0036362
-4.1726e-05
0.00397245
-5.11253e-05
0.00433459
-6.16554e-05
0.00472491
-7.31877e-05
0.00514771
-8.63256e-05
0.0056052
-0.00010061
0.0061021
-0.000116134
0.00664189
-0.000133539
0.00722835
-0.000152043
0.00786594
-0.000172846
0.00856069
-0.00019536
0.00931518
-0.000219905
0.010137
-0.000246651
0.0110317
0.0120073
-0.000275922
-8.33177e-07
0.00115169
-2.01782e-06
0.00144556
-3.657e-06
0.00171072
-5.38383e-06
0.00196245
-7.98584e-06
0.00221529
-1.11191e-05
0.00247579
-1.51071e-05
0.00274632
-2.0107e-05
0.00302919
-2.61928e-05
0.0033274
-3.33637e-05
0.00364337
-4.16161e-05
0.0039807
-5.07842e-05
0.00434376
-6.14418e-05
0.00473557
-7.30971e-05
0.00515936
-8.59942e-05
0.00561809
-0.000100213
0.00611632
-0.000115845
0.00665752
-0.000132993
0.00724549
-0.000151593
0.00788454
-0.000172128
0.00858123
-0.000194549
0.0093376
-0.000219002
0.0101615
-0.000245663
0.0110583
0.0120364
-0.000274708
-9.72805e-07
0.00115266
-2.1967e-06
0.00144678
-3.7151e-06
0.00171224
-5.62726e-06
0.00196436
-8.07261e-06
0.00221773
-1.12036e-05
0.00247892
-1.51762e-05
0.00275029
-2.01477e-05
0.00303416
-2.61968e-05
0.00333345
-3.33268e-05
0.0036505
-4.13545e-05
0.00398873
-5.08379e-05
0.00435324
-6.14608e-05
0.0047462
-7.28694e-05
0.00517077
-8.57108e-05
0.00563094
-9.96888e-05
0.00613029
-0.000115438
0.00667327
-0.000132517
0.00726257
-0.000151042
0.00790306
-0.000171498
0.00860168
-0.000193835
0.00935994
-0.000218192
0.0101858
-0.000244713
0.0110849
0.0120652
-0.000273549
-1.10682e-06
0.00115377
-2.33297e-06
0.00144801
-3.85831e-06
0.00171376
-5.77543e-06
0.00196628
-8.21444e-06
0.00222017
-1.1331e-05
0.00248204
-1.52814e-05
0.00275424
-2.02202e-05
0.0030391
-2.62303e-05
0.00333946
-3.31383e-05
0.00365741
-4.14855e-05
0.00399708
-5.07444e-05
0.0043625
-6.11275e-05
0.00475658
-7.26822e-05
0.00518233
-8.54728e-05
0.00564373
-9.95772e-05
0.0061444
-0.000115088
0.00668878
-0.000131384
0.00727887
-0.000150567
0.00792224
-0.000170962
0.00862208
-0.000193246
0.00938223
-0.000217587
0.0102102
-0.000244205
0.0111115
0.0120944
-0.000273375
-1.06347e-06
0.00115483
-2.33674e-06
0.00144928
-4.23281e-06
0.00171566
-5.83475e-06
0.00196788
-8.12552e-06
0.00222246
-1.14236e-05
0.00248533
-1.53678e-05
0.00275819
-2.01077e-05
0.00304384
-2.60886e-05
0.00334544
-3.33253e-05
0.00366465
-4.1456e-05
0.00400521
-5.06768e-05
0.00437172
-6.10196e-05
0.00476692
-7.25315e-05
0.00519384
-8.50944e-05
0.00565629
-9.93318e-05
0.00615864
-0.000114609
0.00670406
-0.000131571
0.00729583
-0.000150157
0.00794083
-0.000170497
0.00864242
-0.000192735
0.00940446
-0.000217051
0.0102345
-0.000243661
0.0111381
0.0121235
-0.000272738
-9.32856e-07
0.00115577
-2.36655e-06
0.00145071
-3.79504e-06
0.00171709
-5.91943e-06
0.00197
-8.75239e-06
0.0022253
-1.13428e-05
0.00248792
-1.52827e-05
0.00276213
-2.03631e-05
0.00304892
-2.63191e-05
0.00335139
-3.33466e-05
0.00367168
-4.14463e-05
0.00401331
-5.04515e-05
0.00438072
-6.09411e-05
0.00477741
-7.22322e-05
0.00520513
-8.51173e-05
0.00566917
-9.91281e-05
0.00617265
-0.000115083
0.00672001
-0.000133081
0.00731383
-0.000151608
0.00795936
-0.00017043
0.00866124
-0.000192245
0.00942628
-0.000216491
0.0102587
-0.000244822
0.0111664
0.0121506
-0.000271974
-1.06617e-06
0.00115683
-2.24662e-06
0.00145189
-4.01476e-06
0.00171885
-5.83847e-06
0.00197183
-8.49901e-06
0.00222796
-1.16367e-05
0.00249106
-1.55754e-05
0.00276606
-2.04616e-05
0.00305381
-2.6393e-05
0.00335732
-3.33934e-05
0.00367868
-4.1464e-05
0.00402138
-5.06204e-05
0.00438988
-6.08951e-05
0.00478769
-7.23329e-05
0.00521657
-8.49976e-05
0.00568184
-9.87837e-05
0.00618643
-0.000114147
0.00673538
-0.000131006
0.00733069
-0.000149473
0.00797782
-0.000169677
0.00868144
-0.000191764
0.00944837
-0.000216247
0.0102832
-0.000242245
0.0111924
0.0121793
-0.000270963
-1.20375e-06
0.00115804
-2.53353e-06
0.00145322
-4.15893e-06
0.00172048
-6.15828e-06
0.00197383
-8.65651e-06
0.00223045
-1.17959e-05
0.0024942
-1.5728e-05
0.00277
-2.05949e-05
0.00305867
-2.64997e-05
0.00336323
-3.3472e-05
0.00368565
-4.13314e-05
0.00402924
-5.06418e-05
0.00439919
-6.07028e-05
0.00479775
-7.22915e-05
0.00522816
-8.49213e-05
0.00569447
-9.88507e-05
0.00620036
-0.000113988
0.00675051
-0.000130796
0.0073475
-0.000149204
0.00799623
-0.000169335
0.00870158
-0.000193148
0.00947218
-0.000217154
0.0103072
-0.000241864
0.0112171
0.0122075
-0.000270041
-1.15117e-06
0.00115919
-2.53078e-06
0.0014546
-4.1976e-06
0.00172215
-6.23382e-06
0.00197586
-8.59146e-06
0.00223281
-1.19256e-05
0.00249753
-1.58665e-05
0.00277394
-2.07261e-05
0.00306353
-2.64323e-05
0.00336894
-3.33849e-05
0.0036926
-4.15887e-05
0.00403744
-5.10761e-05
0.00440868
-6.0913e-05
0.00480758
-7.22923e-05
0.00523953
-8.47092e-05
0.00570689
-9.91557e-05
0.00621481
-0.000113888
0.00676525
-0.000130652
0.00736426
-0.000149007
0.00801459
-0.000169074
0.00872164
-0.000190988
0.00949409
-0.000214879
0.0103311
-0.000240911
0.0112432
0.012236
-0.000269404
-1.16173e-06
0.00116035
-2.5611e-06
0.001456
-4.09726e-06
0.00172368
-6.32624e-06
0.00197809
-8.88084e-06
0.00223537
-1.20613e-05
0.00250072
-1.60114e-05
0.00277789
-2.0687e-05
0.00306821
-2.67447e-05
0.00337499
-3.36835e-05
0.00369954
-4.16895e-05
0.00404545
-5.0779e-05
0.00441777
-6.09795e-05
0.00481778
-7.21549e-05
0.00525071
-8.49167e-05
0.00571965
-9.86057e-05
0.0062285
-0.000113858
0.0067805
-0.000130588
0.00738099
-0.000148903
0.0080329
-0.000168919
0.00874166
-0.00019077
0.00951594
-0.000214574
0.0103549
-0.000240446
0.011269
0.0122642
-0.000268598
-1.05002e-06
0.0011614
-2.47676e-06
0.00145743
-4.35669e-06
0.00172556
-6.45236e-06
0.00198019
-9.03255e-06
0.00223795
-1.20566e-05
0.00250374
-1.60147e-05
0.00278185
-2.14282e-05
0.00307362
-2.69099e-05
0.00338047
-3.38361e-05
0.00370647
-4.18292e-05
0.00405344
-5.07213e-05
0.00442666
-6.10929e-05
0.00482816
-7.24379e-05
0.00526206
-8.48168e-05
0.00573203
-9.86724e-05
0.00624235
-0.000113905
0.00679573
-0.000130614
0.0073977
-0.000148905
0.00805119
-0.000170726
0.00876348
-0.000190711
0.00953593
-0.000214484
0.0103787
-0.00024034
0.0112949
0.0122941
-0.000270322
-1.1926e-06
0.00116259
-2.6643e-06
0.0014589
-4.43376e-06
0.00172733
-6.40408e-06
0.00198216
-9.18892e-06
0.00224073
-1.24145e-05
0.00250696
-1.63891e-05
0.00278582
-2.12457e-05
0.00307848
-2.71044e-05
0.00338633
-3.40226e-05
0.00371338
-4.20077e-05
0.00406143
-5.10758e-05
0.00443573
-6.12557e-05
0.00483834
-7.25928e-05
0.00527339
-8.4963e-05
0.0057444
-9.88108e-05
0.0062562
-0.000114036
0.00681096
-0.000130737
0.0074144
-0.000149019
0.00806948
-0.000169006
0.00878347
-0.000190819
0.00955774
-0.000214611
0.0104025
-0.000240573
0.0113209
0.0123227
-0.000269084
-1.33512e-06
0.00116393
-2.81823e-06
0.00146039
-4.60649e-06
0.00172912
-6.76427e-06
0.00198431
-9.40031e-06
0.00224337
-1.2642e-05
0.00251021
-1.66257e-05
0.0027898
-2.14819e-05
0.00308333
-2.7335e-05
0.00339219
-3.42465e-05
0.0037203
-4.24275e-05
0.00406961
-5.129e-05
0.00444459
-6.1282e-05
0.00484833
-7.35435e-05
0.00528565
-8.51717e-05
0.00575602
-9.90199e-05
0.00627005
-0.000114247
0.00682618
-0.000130951
0.0074311
-0.000149239
0.00808776
-0.000169233
0.00880346
-0.000191054
0.00957956
-0.000214843
0.0104263
-0.000240726
0.0113467
0.0123507
-0.00026881
-1.29127e-06
0.00116522
-2.83416e-06
0.00146193
-4.67575e-06
0.00173096
-6.88365e-06
0.00198652
-9.39269e-06
0.00224588
-1.2844e-05
0.00251366
-1.6851e-05
0.00279381
-2.17196e-05
0.0030882
-2.73944e-05
0.00339786
-3.43079e-05
0.00372721
-4.2475e-05
0.00407777
-5.15415e-05
0.00445366
-6.17222e-05
0.00485851
-7.28795e-05
0.00529681
-8.54383e-05
0.00576858
-9.92951e-05
0.00628391
-0.000114533
0.00684142
-0.000131251
0.00744782
-0.000149558
0.00810607
-0.000169576
0.00882348
-0.00019143
0.00960142
-0.000215267
0.0104501
-0.000241244
0.0113727
0.0123788
-0.000269321
-1.31442e-06
0.00116653
-2.88747e-06
0.0014635
-4.60838e-06
0.00173268
-7.02057e-06
0.00198893
-9.73916e-06
0.0022486
-1.28734e-05
0.00251679
-1.69047e-05
0.00279784
-2.17891e-05
0.00309309
-2.78402e-05
0.00340391
-3.47617e-05
0.00373413
-4.27522e-05
0.00408577
-5.16418e-05
0.00446255
-6.18326e-05
0.0048687
-7.31868e-05
0.00530817
-8.57594e-05
0.00578116
-9.96327e-05
0.00629778
-0.00011489
0.00685668
-0.000131635
0.00746457
-0.00014998
0.00812441
-0.000170058
0.00884356
-0.00019202
0.00962338
-0.00021607
0.0104741
-0.000242471
0.0113991
0.012408
-0.000271625
-1.20165e-06
0.00116773
-2.81767e-06
0.00146512
-4.89971e-06
0.00173477
-7.02395e-06
0.00199106
-9.95111e-06
0.00225152
-1.32929e-05
0.00252013
-1.73499e-05
0.0028019
-2.22524e-05
0.00309799
-2.81325e-05
0.00340979
-3.50636e-05
0.00374106
-4.30641e-05
0.00409377
-5.21508e-05
0.00447163
-6.21691e-05
0.00487872
-7.35393e-05
0.00531954
-8.61301e-05
0.00579375
-0.000100025
0.00631167
-0.000117168
0.00687382
-0.000132083
0.00747948
-0.000150464
0.0081428
-0.000170593
0.00886368
-0.000192626
0.00964541
-0.000216777
0.0104983
-0.000243287
0.0114256
0.0124366
-0.000271969
-1.46923e-06
0.0011692
-3.43117e-06
0.00146708
-5.06424e-06
0.0017364
-7.3926e-06
0.00199339
-1.01856e-05
0.00225432
-1.35584e-05
0.00252351
-1.76399e-05
0.00280598
-2.25607e-05
0.00310291
-2.84541e-05
0.00341569
-3.53967e-05
0.003748
-4.32233e-05
0.00410159
-5.19511e-05
0.00448036
-6.25451e-05
0.00488931
-7.39342e-05
0.00533092
-8.84133e-05
0.00580823
-0.000100464
0.00632372
-0.000115775
0.00688913
-0.00013257
0.00749628
-0.000150973
0.0081612
-0.000171114
0.00888382
-0.00019313
0.00966743
-0.000217178
0.0105223
-0.000243419
0.0114519
0.0124652
-0.00027192
-1.43065e-06
0.00117063
-3.14182e-06
0.00146879
-5.15842e-06
0.00173841
-7.54129e-06
0.00199577
-1.03836e-05
0.00225716
-1.37998e-05
0.00252692
-1.79182e-05
0.0028101
-2.28685e-05
0.00310786
-2.87845e-05
0.0034216
-3.55609e-05
0.00375478
-4.37795e-05
0.00410981
-5.27136e-05
0.0044893
-6.29573e-05
0.00489955
-7.43704e-05
0.00534234
-8.70121e-05
0.00582087
-0.000102822
0.00633953
-0.000116291
0.0069026
-0.000133111
0.0075131
-0.0001534
0.00818149
-0.000171689
0.00890211
-0.000193696
0.00968944
-0.000217693
0.0105463
-0.000245653
0.0114798
0.0124918
-0.000272338
-1.46059e-06
0.00117209
-3.20882e-06
0.00147054
-5.2712e-06
0.00174048
-7.70121e-06
0.0019982
-1.04176e-05
0.00225987
-1.40519e-05
0.00253056
-1.82068e-05
0.00281425
-2.30059e-05
0.00311266
-2.89485e-05
0.00342754
-3.61209e-05
0.00376195
-4.4926e-05
0.00411862
-5.31372e-05
0.00449751
-6.34093e-05
0.00490983
-7.48526e-05
0.00535378
-8.75266e-05
0.00583354
-0.000101505
0.00635351
-0.000116875
0.00691797
-0.000135603
0.00753183
-0.000152199
0.00819808
-0.00017238
0.00892229
-0.000194411
0.00971147
-0.000218413
0.0105703
-0.000244475
0.0115059
0.01252
-0.000272676
-1.36355e-06
0.00117346
-3.29911e-06
0.00147247
-5.24976e-06
0.00174243
-7.89246e-06
0.00200084
-1.08271e-05
0.00226281
-1.41517e-05
0.00253388
-1.83444e-05
0.00281845
-2.35431e-05
0.00311786
-2.95156e-05
0.00343352
-3.69029e-05
0.00376934
-4.44286e-05
0.00412614
-5.54809e-05
0.00450856
-6.39077e-05
0.00491825
-7.53875e-05
0.00536526
-8.81013e-05
0.00584626
-0.000102506
0.00636792
-0.00011754
0.006933
-0.000134453
0.00754874
-0.00015297
0.0082166
-0.000173213
0.00894254
-0.000195309
0.00973357
-0.000219378
0.0105944
-0.000245488
0.011532
0.0125486
-0.000274055
-1.51836e-06
0.00117498
-3.21707e-06
0.00147417
-5.53987e-06
0.00174475
-7.90717e-06
0.00200321
-1.10675e-05
0.00226597
-1.46191e-05
0.00253743
-1.88582e-05
0.00282269
-2.39153e-05
0.00312292
-2.9922e-05
0.00343952
-3.67818e-05
0.0037762
-4.49001e-05
0.00413426
-5.41149e-05
0.00451777
-6.63382e-05
0.00493048
-7.59768e-05
0.0053749
-8.87374e-05
0.00585902
-0.000102812
0.00638199
-0.000118285
0.00694848
-0.000135262
0.00756572
-0.000153851
0.00823519
-0.000174173
0.00896286
-0.000198234
0.00975763
-0.00022242
0.0106186
-0.000246873
0.0115564
0.012577
-0.000275279
-1.67076e-06
0.00117665
-3.54008e-06
0.00147604
-5.74244e-06
0.00174695
-8.31649e-06
0.00200578
-1.13466e-05
0.002269
-1.49396e-05
0.00254103
-1.92195e-05
0.00282697
-2.43158e-05
0.00312801
-2.96137e-05
0.00344482
-3.72535e-05
0.00378384
-4.54082e-05
0.00414241
-5.46629e-05
0.00452703
-6.50515e-05
0.00494087
-7.66184e-05
0.00538647
-8.94329e-05
0.00587183
-0.000103567
0.00639613
-0.000119107
0.00696402
-0.000136159
0.00758277
-0.000154838
0.00825387
-0.000175274
0.00898329
-0.000197627
0.00977998
-0.000222089
0.0106431
-0.000248984
0.0115833
0.012607
-0.000278953
-1.64222e-06
0.00117829
-3.57731e-06
0.00147798
-5.843e-06
0.00174922
-8.48175e-06
0.00200842
-1.14025e-05
0.00227192
-1.52324e-05
0.00254486
-1.9569e-05
0.0028313
-2.50869e-05
0.00313353
-3.06186e-05
0.00345035
-3.77453e-05
0.00379097
-4.59453e-05
0.00415061
-5.52476e-05
0.00453633
-6.56872e-05
0.0049513
-7.73096e-05
0.00539809
-9.01843e-05
0.00588471
-0.000104384
0.00641033
-0.000119996
0.00697963
-0.000137128
0.0075999
-0.000155896
0.00827264
-0.000178319
0.00900572
-0.000198914
0.00980057
-0.000223526
0.0106677
-0.000250555
0.0116104
0.0126365
-0.0002801
-1.44032e-06
0.00117973
-3.46297e-06
0.00148
-5.6591e-06
0.00175141
-8.55299e-06
0.00201132
-1.1733e-05
0.0022751
-1.52943e-05
0.00254842
-2.00737e-05
0.00283608
-2.49247e-05
0.00313838
-3.29405e-05
0.00345837
-3.82487e-05
0.00379628
-4.65056e-05
0.00415887
-5.58653e-05
0.00454569
-6.63641e-05
0.0049618
-7.80488e-05
0.00540977
-9.09891e-05
0.00589765
-0.000105258
0.00642459
-0.000120943
0.00699531
-0.000138151
0.00761711
-0.000156995
0.00829148
-0.00017761
0.00902633
-0.000200136
0.0098231
-0.000224733
0.0106923
-0.000251506
0.0116371
0.0126676
-0.00028256
-1.5218e-06
0.00118125
-3.54782e-06
0.00148203
-6.08555e-06
0.00175395
-8.68117e-06
0.00201391
-1.2079e-05
0.0022785
-1.67597e-05
0.0025531
-2.01349e-05
0.00283946
-2.54004e-05
0.00314365
-3.15986e-05
0.00346457
-3.88226e-05
0.0038035
-4.71285e-05
0.00416718
-5.65425e-05
0.0045551
-6.71005e-05
0.00497236
-8.07497e-05
0.00542342
-9.18579e-05
0.00590875
-0.000106199
0.00643894
-0.00012196
0.00701107
-0.000139245
0.00763439
-0.000158163
0.0083104
-0.000178838
0.00904701
-0.000201392
0.00984566
-0.000225958
0.0107168
-0.00025264
0.0116638
0.0126958
-0.000280904
-1.73829e-06
0.00118299
-3.8436e-06
0.00148413
-6.30111e-06
0.00175641
-9.13605e-06
0.00201675
-1.29511e-05
0.00228231
-1.60898e-05
0.00255624
-2.06091e-05
0.00284398
-2.59306e-05
0.00314897
-3.21789e-05
0.00347082
-3.94527e-05
0.00381077
-4.78113e-05
0.00417554
-5.72824e-05
0.00456458
-6.79027e-05
0.00498298
-7.97238e-05
0.00543524
-9.28022e-05
0.00592183
-0.000107223
0.00645336
-0.000123069
0.00702692
-0.000140445
0.00765177
-0.000159458
0.00832941
-0.000180236
0.00906779
-0.000202904
0.00986832
-0.0002276
0.0107415
-0.000254475
0.0116907
0.0127253
-0.000283957
-1.91102e-06
0.0011849
-4.05365e-06
0.00148627
-6.54671e-06
0.0017589
-9.25862e-06
0.00201946
-1.26078e-05
0.00228566
-1.65156e-05
0.00256015
-2.1098e-05
0.00284856
-2.64817e-05
0.00315435
-3.27877e-05
0.00347712
-4.01186e-05
0.0038181
-4.85378e-05
0.00418396
-5.80746e-05
0.00457411
-6.87662e-05
0.00499367
-8.06646e-05
0.00544714
-9.38271e-05
0.00593499
-0.000108339
0.00646787
-0.000124284
0.00704287
-0.000141767
0.00766925
-0.000160898
0.00834855
-0.000181807
0.00908869
-0.000204628
0.00989114
-0.000229518
0.0107664
-0.000256635
0.0117178
0.0127547
-0.000286002
-1.87455e-06
0.00118678
-4.08574e-06
0.00148848
-5.8637e-06
0.00176068
-9.49928e-06
0.00202309
-1.29259e-05
0.00228909
-1.69121e-05
0.00256413
-2.15722e-05
0.00285322
-2.70308e-05
0.00315981
-3.34068e-05
0.0034835
-4.08084e-05
0.00382551
-4.93007e-05
0.00419245
-5.8914e-05
0.00458373
-6.96877e-05
0.00500445
-8.1674e-05
0.00545913
-9.49313e-05
0.00594825
-0.000109546
0.00648248
-0.0001256
0.00705892
-0.000143201
0.00768685
-0.000162457
0.0083678
-0.000183494
0.00910973
-0.000206436
0.00991409
-0.000231398
0.0107914
-0.000258383
0.0117448
0.0127836
-0.000287299
-1.81456e-06
0.00118859
-3.92565e-06
0.0014906
-8.33941e-06
0.00176509
-9.71968e-06
0.00202448
-1.32329e-05
0.0022926
-1.73066e-05
0.0025682
-2.20539e-05
0.00285797
-2.75972e-05
0.00316535
-3.40544e-05
0.00348995
-4.34337e-05
0.00383488
-5.01045e-05
0.00419912
-5.9805e-05
0.00459343
-7.06712e-05
0.00501531
-8.27561e-05
0.00547121
-9.80365e-05
0.00596353
-0.000110846
0.00649529
-0.000128938
0.00707701
-0.000144752
0.00770267
-0.000164147
0.0083872
-0.000185331
0.00913092
-0.000208428
0.00993718
-0.000233562
0.0108165
-0.00026083
0.0117721
0.0128131
-0.00029036
-1.24001e-06
0.00118983
-3.92146e-06
0.00149328
-6.69801e-06
0.00176787
-9.85821e-06
0.00202764
-1.34863e-05
0.00229623
-1.7673e-05
0.00257239
-2.25284e-05
0.00286282
-2.81736e-05
0.003171
-3.47255e-05
0.00349651
-4.23016e-05
0.00384246
-5.09642e-05
0.00420778
-6.07606e-05
0.00460322
-7.17275e-05
0.00502628
-8.39199e-05
0.00548341
-9.7402e-05
0.00597701
-0.000112248
0.00651014
-0.000128562
0.00709332
-0.000146433
0.00772054
-0.000165986
0.00840675
-0.000187346
0.00915228
-0.000210641
0.00996048
-0.000236007
0.0108419
-0.000263563
0.0117996
0.012843
-0.000293426
-1.89548e-06
0.00119173
-4.28506e-06
0.00149567
-7.08432e-06
0.00177067
-1.02884e-05
0.00203084
-1.39732e-05
0.00229991
-1.82262e-05
0.00257664
-2.31533e-05
0.00286775
-2.88732e-05
0.00317672
-3.5503e-05
0.00350314
-4.31603e-05
0.00385012
-5.38266e-05
0.00421845
-6.17999e-05
0.0046112
-7.28709e-05
0.00503735
-8.51759e-05
0.00549571
-9.87802e-05
0.00599062
-0.000115685
0.00652704
-0.000130217
0.00710786
-0.000148243
0.00773856
-0.000169888
0.00842839
-0.000189515
0.0091719
-0.000213016
0.00998398
-0.000238612
0.0108675
-0.000268354
0.0118294
0.0128712
-0.000296576
-2.00097e-06
0.00119373
-4.49555e-06
0.00149816
-7.37904e-06
0.00177355
-1.06859e-05
0.00203415
-1.44704e-05
0.0023037
-1.88114e-05
0.00258099
-2.38297e-05
0.00287277
-2.9642e-05
0.00318253
-3.63575e-05
0.00350985
-4.40982e-05
0.00385786
-5.29423e-05
0.00422729
-6.29274e-05
0.00462118
-7.41052e-05
0.00504853
-8.65273e-05
0.00550813
-0.000100259
0.00600435
-0.000115382
0.00654217
-0.000131987
0.00712446
-0.000152106
0.00775868
-0.000170084
0.00844637
-0.000191817
0.00919364
-0.000215522
0.0100077
-0.000241336
0.0108933
-0.000269413
0.0118574
0.0129017
-0.00029985
-3.50367e-06
0.00119723
-4.64289e-06
0.0014993
-7.64351e-06
0.00177655
-1.27593e-05
0.00203926
-1.49085e-05
0.00230585
-1.93662e-05
0.00258544
-2.63482e-05
0.00287975
-3.22802e-05
0.00318846
-3.72135e-05
0.00351479
-4.50625e-05
0.00386571
-5.40158e-05
0.00423624
-6.60451e-05
0.00463321
-7.54126e-05
0.0050579
-8.79645e-05
0.00552068
-0.000101836
0.00601822
-0.000117109
0.00655744
-0.000133874
0.00714123
-0.000152243
0.00777705
-0.000172329
0.00846646
-0.000194257
0.00921557
-0.000220091
0.0100335
-0.000244188
0.0109174
-0.000272476
0.0118857
0.0129323
-0.000303152
-2.37148e-06
0.0011996
-6.52611e-06
0.00150346
-7.98878e-06
0.00177802
-1.14783e-05
0.00204275
-1.54473e-05
0.00230982
-2.03733e-05
0.00259037
-2.52118e-05
0.00288459
-3.12262e-05
0.00319448
-3.81425e-05
0.0035217
-4.6094e-05
0.00387366
-5.51569e-05
0.00424531
-6.53797e-05
0.00464343
-7.87405e-05
0.00507126
-8.94925e-05
0.00553144
-0.000103514
0.00603224
-0.000118948
0.00657287
-0.000135886
0.00715817
-0.000154438
0.0077956
-0.000174718
0.00848674
-0.000196848
0.0092377
-0.000220966
0.0100576
-0.000249117
0.0109455
-0.000275668
0.0119123
0.0129633
-0.00030666
-2.34985e-06
0.00120195
-5.11156e-06
0.00150622
-8.26536e-06
0.00178117
-1.18588e-05
0.00204634
-1.59406e-05
0.0023139
-2.06016e-05
0.00259503
-2.59422e-05
0.00288993
-3.20722e-05
0.00320061
-3.95052e-05
0.00352913
-4.71742e-05
0.00388133
-5.63607e-05
0.00425449
-6.6714e-05
0.00465379
-7.82819e-05
0.00508283
-9.11185e-05
0.00554427
-0.000105302
0.00604643
-0.00012091
0.00658848
-0.000138034
0.00717529
-0.000156783
0.00781435
-0.00017727
0.00850722
-0.000199613
0.00926004
-0.000223946
0.010082
-0.00025038
0.010972
-0.000279047
0.011941
0.0129945
-0.00031021
-2.39403e-06
0.00120435
-5.23622e-06
0.00150906
-8.497e-06
0.00178443
-1.22026e-05
0.00205005
-1.64133e-05
0.00231811
-2.12041e-05
0.00259982
-2.66697e-05
0.00289539
-3.29267e-05
0.00320686
-4.00946e-05
0.0035363
-4.82988e-05
0.00388953
-5.76233e-05
0.00426382
-6.81223e-05
0.00466429
-7.98452e-05
0.00509455
-9.28478e-05
0.00555728
-0.000107209
0.00606079
-0.000123006
0.00660428
-0.000140332
0.00719262
-0.000159296
0.00783332
-0.000180007
0.00852793
-0.000204525
0.00928456
-0.000227145
0.0101046
-0.000253795
0.0109986
-0.000282657
0.0119698
0.0130259
-0.000314062
-2.47269e-06
0.00120682
-5.40758e-06
0.00151199
-8.77797e-06
0.0017878
-1.2601e-05
0.00205387
-1.87111e-05
0.00232422
-2.18275e-05
0.00260294
-2.74341e-05
0.002901
-3.38293e-05
0.00321326
-4.3052e-05
0.00354553
-4.94774e-05
0.00389596
-5.8954e-05
0.0042733
-6.96131e-05
0.00467494
-8.15063e-05
0.00510644
-9.46908e-05
0.00557046
-0.000109246
0.00607534
-0.000125251
0.00662028
-0.000142799
0.00721016
-0.000161999
0.00785252
-0.00018296
0.0085489
-0.000205803
0.0093074
-0.000230641
0.0101294
-0.000257597
0.0110256
-0.000286791
0.011999
0.01306
-0.00032085
-2.53359e-06
0.00120935
-5.55937e-06
0.00151502
-9.03925e-06
0.00179128
-1.29817e-05
0.00205782
-1.74459e-05
0.00232868
-2.4328e-05
0.00260982
-2.82197e-05
0.00290489
-3.47626e-05
0.0032198
-4.22271e-05
0.00355299
-5.0728e-05
0.00390446
-6.03682e-05
0.00428294
-7.12013e-05
0.00468578
-8.32799e-05
0.00511852
-9.86207e-05
0.0055858
-0.000111429
0.00608815
-0.000127661
0.00663652
-0.000145451
0.00722795
-0.00016491
0.00787198
-0.000186148
0.00857013
-0.000209288
0.00933054
-0.000234451
0.0101546
-0.000261778
0.0110529
-0.000291401
0.0120286
0.0130921
-0.000323558
-2.66347e-06
0.00121202
-5.76318e-06
0.00151812
-9.34067e-06
0.00179486
-1.33995e-05
0.00206187
-1.79884e-05
0.00233327
-2.31819e-05
0.00261501
-2.90672e-05
0.00291078
-3.57644e-05
0.0032265
-4.33901e-05
0.00356062
-5.20605e-05
0.00391313
-6.18789e-05
0.00429275
-7.29004e-05
0.0046968
-8.51795e-05
0.0051308
-9.87811e-05
0.0055994
-0.000113772
0.00610314
-0.000130249
0.00665299
-0.000148301
0.00724601
-0.000168039
0.00789171
-0.000189575
0.00859167
-0.000213034
0.009354
-0.000238535
0.0101801
-0.000266224
0.0110806
-0.000296266
0.0120587
0.0131246
-0.000328776
-1.91161e-06
0.00121393
-5.29025e-06
0.0015215
-9.12647e-06
0.0017987
-1.34335e-05
0.00206618
-1.82629e-05
0.0023381
-2.33018e-05
0.00262005
-2.98073e-05
0.00291728
-3.6724e-05
0.00323342
-4.41603e-05
0.00356805
-5.34453e-05
0.00392241
-6.34736e-05
0.00430278
-7.471e-05
0.00470804
-8.72125e-05
0.0051433
-0.000101049
0.00561324
-0.000116288
0.00611838
-0.000133028
0.00666973
-0.00015136
0.00726434
-0.000171397
0.00791175
-0.000193251
0.00861352
-0.000217049
0.0093778
-0.000242911
0.010206
-0.00027098
0.0111087
-0.000301412
0.0120891
0.0131572
-0.000333954
-2.41498e-06
0.00121634
-5.78729e-06
0.00152487
-9.69335e-06
0.0018026
-1.4098e-05
0.00207059
-1.90358e-05
0.00234304
-2.49753e-05
0.00262599
-3.0844e-05
0.00292315
-3.79241e-05
0.0032405
-4.59385e-05
0.00357607
-5.50107e-05
0.00393149
-6.52404e-05
0.00431301
-7.669e-05
0.00471948
-8.94201e-05
0.00515603
-0.000103499
0.00562732
-0.000118999
0.00613388
-0.000136018
0.00668675
-0.000154648
0.00728297
-0.000175003
0.00793211
-0.000197198
0.00863572
-0.000221363
0.00940196
-0.000247628
0.0102322
-0.000276158
0.0111372
-0.000307161
0.0121201
0.0131908
-0.000340759
-2.87617e-06
0.00121922
-6.37662e-06
0.00152837
-1.20662e-05
0.00180829
-1.48984e-05
0.00207342
-1.99807e-05
0.00234812
-2.56829e-05
0.00263169
-3.20973e-05
0.00292957
-3.93405e-05
0.00324774
-4.79328e-05
0.00358466
-5.87343e-05
0.00394229
-6.72019e-05
0.00432148
-7.88653e-05
0.00473115
-9.1827e-05
0.00516899
-0.000106157
0.00564165
-0.000123907
0.00615163
-0.000139239
0.00670208
-0.000160161
0.00730389
-0.000178874
0.00795082
-0.000201428
0.00865827
-0.000225975
0.00942651
-0.000252653
0.0102589
-0.000281633
0.0111662
-0.000313123
0.0121516
0.0132249
-0.000347222
-3.06945e-06
0.00122229
-6.70927e-06
0.00153201
-1.09046e-05
0.00181249
-1.55992e-05
0.00207811
-2.08549e-05
0.00235338
-2.67419e-05
0.00263758
-3.3349e-05
0.00293617
-4.07915e-05
0.00325518
-4.91874e-05
0.00359305
-5.86596e-05
0.00395176
-6.93043e-05
0.00433212
-8.12039e-05
0.00474305
-9.44176e-05
0.00518221
-0.000109018
0.00565625
-0.000125085
0.0061677
-0.000142701
0.0067197
-0.000161983
0.00732317
-0.000183021
0.00797186
-0.000206335
0.00868159
-0.000230881
0.00945105
-0.000257955
0.010286
-0.000287319
0.0111955
-0.000319132
0.0121834
0.0132596
-0.000353897
-3.15301e-06
0.00122544
-6.96847e-06
0.00153583
-1.13266e-05
0.00181684
-1.62225e-05
0.00208301
-2.16897e-05
0.00235885
-2.77861e-05
0.00264368
-3.46166e-05
0.002943
-4.2289e-05
0.00326285
-5.09185e-05
0.00360168
-6.06324e-05
0.00396147
-7.35032e-05
0.00434499
-8.36908e-05
0.00475324
-9.7186e-05
0.0051957
-0.000112085
0.00567115
-0.000128468
0.00618408
-0.000148411
0.00673964
-0.00016606
0.00734082
-0.000187473
0.00799327
-0.000212776
0.00870689
-0.000236127
0.0094744
-0.0002636
0.0103134
-0.000293339
0.0112253
-0.000327446
0.0122175
0.0132924
-0.000360171
-4.7547e-06
0.00123019
-7.26435e-06
0.00153834
-1.18308e-05
0.00182141
-1.86756e-05
0.00208985
-2.257e-05
0.00236274
-2.88971e-05
0.00265
-3.78615e-05
0.00295197
-4.38687e-05
0.00326886
-5.27582e-05
0.00361057
-6.27357e-05
0.00397145
-7.39124e-05
0.00435617
-8.83473e-05
0.00476767
-0.000100159
0.00520751
-0.000115382
0.00568637
-0.00013211
0.00620081
-0.000150435
0.00675797
-0.000170454
0.00736084
-0.000194268
0.00801709
-0.000216022
0.00872864
-0.000241787
0.00950017
-0.000269689
0.0103413
-0.000299812
0.0112554
-0.000332235
0.0122499
0.0133273
-0.000367147
-3.66885e-06
0.00123386
-9.364e-06
0.00154403
-1.2453e-05
0.0018245
-1.77435e-05
0.00209514
-2.36216e-05
0.00236862
-3.01642e-05
0.00265655
-3.74704e-05
0.00295927
-4.75658e-05
0.00327896
-5.4769e-05
0.00361778
-6.50226e-05
0.00398171
-7.64892e-05
0.00436764
-8.92517e-05
0.00478043
-0.000105372
0.00522363
-0.000118947
0.00569995
-0.000136048
0.00621791
-0.00015477
0.00677669
-0.000175211
0.00738128
-0.000197484
0.00803936
-0.000221693
0.00875285
-0.000247949
0.00952642
-0.000278353
0.0103717
-0.000308995
0.011286
-0.000339828
0.0122808
0.0133623
-0.000374817
-3.7312e-06
0.00123759
-8.09649e-06
0.0015484
-1.30305e-05
0.00182943
-1.89186e-05
0.00210103
-2.46646e-05
0.00237436
-3.14694e-05
0.00266335
-3.94437e-05
0.00296725
-4.7491e-05
0.003287
-5.69276e-05
0.00362721
-6.74855e-05
0.00399226
-7.92709e-05
0.00437942
-9.23699e-05
0.00479353
-0.000106857
0.00523812
-0.000122806
0.0057159
-0.000140718
0.00623582
-0.000159469
0.00679544
-0.000180372
0.00740218
-0.00020353
0.00806252
-0.000227869
0.00877719
-0.000254688
0.00955324
-0.000283731
0.0104008
-0.000315138
0.0113175
-0.000349094
0.0123147
0.0133989
-0.000385744
-3.87233e-06
0.00124147
-8.43029e-06
0.00155295
-1.35961e-05
0.0018346
-1.93635e-05
0.0021068
-2.57502e-05
0.00238075
-3.28356e-05
0.00267044
-4.07089e-05
0.00297512
-4.94674e-05
0.00329576
-5.92286e-05
0.00363697
-7.01246e-05
0.00400316
-8.22636e-05
0.00439156
-9.57347e-05
0.004807
-0.000110615
0.005253
-0.000126982
0.00573226
-0.000144935
0.00625377
-0.000164561
0.00681507
-0.000185964
0.00742359
-0.000209258
0.00808581
-0.000234553
0.00880249
-0.000261967
0.00958066
-0.000291636
0.0104305
-0.000323691
0.0113495
-0.000358273
0.0123493
0.0134358
-0.00039515
-4.05293e-06
0.00124552
-8.82507e-06
0.00155773
-1.4236e-05
0.00184001
-2.02655e-05
0.00211283
-2.69441e-05
0.00238743
-3.43355e-05
0.00267783
-4.25228e-05
0.00298331
-5.16125e-05
0.00330485
-6.17248e-05
0.00364709
-7.29876e-05
0.00401442
-8.55088e-05
0.00440408
-9.93836e-05
0.00482088
-0.000114692
0.00526831
-0.000131512
0.00574908
-0.000149946
0.00627221
-0.000170082
0.0068352
-0.000192022
0.00744553
-0.00021588
0.00810967
-0.000241762
0.00882837
-0.000271793
0.00961069
-0.000300057
0.0104587
-0.000332684
0.0113821
-0.000367784
0.0123844
0.0134754
-0.000407397
-4.25995e-06
0.00124978
-9.27181e-06
0.00156274
-1.49525e-05
0.00184569
-2.12735e-05
0.00211915
-3.00937e-05
0.00239625
-3.59544e-05
0.00268369
-4.44965e-05
0.00299185
-5.39518e-05
0.00331431
-6.64228e-05
0.00365956
-7.60969e-05
0.0040241
-8.90373e-05
0.00441702
-0.000103353
0.00483519
-0.000119128
0.00528408
-0.000136442
0.0057664
-0.000155398
0.00629116
-0.000176085
0.00685589
-0.000198605
0.00746805
-0.000223068
0.00813413
-0.000249575
0.00885488
-0.000278238
0.00963935
-0.000309145
0.0104896
-0.000342377
0.0114154
-0.000378
0.01242
0.0135136
-0.000416232
-4.48711e-06
0.00125427
-9.75729e-06
0.00156801
-1.57256e-05
0.00185166
-2.23576e-05
0.00212578
-2.96834e-05
0.00240358
-3.9642e-05
0.00269365
-4.6642e-05
0.00299885
-5.64929e-05
0.00332416
-6.74078e-05
0.00367047
-7.94969e-05
0.00403618
-9.28932e-05
0.00443042
-0.000107691
0.00484999
-0.000123975
0.00530037
-0.000143858
0.00578628
-0.000161353
0.00630866
-0.00018264
0.00687718
-0.000205788
0.0074912
-0.000230906
0.00815925
-0.00025809
0.00888206
-0.00028744
0.0096687
-0.000319032
0.0105212
-0.000352916
0.0114492
-0.000389074
0.0124562
0.0135524
-0.000427878
-4.70244e-06
0.00125897
-1.02475e-05
0.00157355
-1.65284e-05
0.00185794
-2.35026e-05
0.00213276
-3.11906e-05
0.00241126
-3.96562e-05
0.00270211
-4.89758e-05
0.00300817
-5.92629e-05
0.00333444
-7.06365e-05
0.00368185
-8.32083e-05
0.00404876
-9.7111e-05
0.00444432
-0.000112441
0.00486532
-0.000129287
0.00531721
-0.000147739
0.00580473
-0.000167882
0.0063288
-0.000189825
0.00689912
-0.00021366
0.00751503
-0.000239494
0.00818508
-0.000267419
0.00890998
-0.000297536
0.00969882
-0.000329932
0.0105536
-0.000364714
0.011484
-0.000401982
0.0124935
0.0135928
-0.000442364
-5.03235e-06
0.001264
-1.08559e-05
0.00157938
-1.7458e-05
0.00186454
-2.47938e-05
0.00214009
-3.28778e-05
0.00241935
-4.17675e-05
0.002711
-5.15421e-05
0.00301794
-6.23114e-05
0.00334521
-7.41918e-05
0.00369373
-8.72952e-05
0.00406186
-0.000101756
0.00445878
-0.000117674
0.00488124
-0.000135138
0.00533468
-0.000154241
0.00582384
-0.000175068
0.00634963
-0.000197727
0.00692178
-0.00022231
0.00753961
-0.000248918
0.00821169
-0.000277637
0.0089387
-0.000308553
0.00972973
-0.000341725
0.0105868
-0.000377207
0.0115195
-0.00041497
0.0125312
0.0136315
-0.000453643
-4.18912e-06
0.00126819
-1.05897e-05
0.00158578
-1.77805e-05
0.00187173
-2.57004e-05
0.00214801
-3.43589e-05
0.00242801
-4.38274e-05
0.00272047
-5.4189e-05
0.00302831
-6.5555e-05
0.00335658
-7.80434e-05
0.00370622
-9.17713e-05
0.00407559
-0.000106874
0.00447389
-0.000123453
0.00489782
-0.000141606
0.00535283
-0.000161429
0.00584366
-0.000183007
0.00637121
-0.000206451
0.00694522
-0.000231847
0.00756501
-0.000259292
0.00823914
-0.000288867
0.00896828
-0.000320649
0.00976152
-0.000354685
0.0106208
-0.000391015
0.0115558
-0.00042971
0.0125699
0.0136726
-0.000470821
-5.39788e-06
0.00127359
-1.19729e-05
0.00159235
-2.11608e-05
0.00188092
-2.76538e-05
0.0021545
-3.67224e-05
0.00243707
-4.66513e-05
0.0027304
-5.75211e-05
0.00303918
-6.94399e-05
0.0033685
-8.25227e-05
0.0037193
-9.89101e-05
0.00409198
-0.000112647
0.00448762
-0.000129934
0.00491511
-0.000148831
0.00537173
-0.000169436
0.00586426
-0.000193892
0.00639566
-0.000216129
0.00696746
-0.000244468
0.00759335
-0.000270765
0.00826543
-0.000301269
0.00899878
-0.000333997
0.00979424
-0.000368999
0.0106558
-0.000406327
0.0115932
-0.000446014
0.0126096
0.0137143
-0.0004877
-6.00609e-06
0.0012796
-1.30624e-05
0.00159941
-2.10381e-05
0.0018889
-2.98059e-05
0.00216327
-3.94075e-05
0.00244668
-4.98979e-05
0.00274089
-6.13571e-05
0.00305064
-7.38961e-05
0.00338104
-8.76334e-05
0.00373304
-0.000102692
0.00410703
-0.000121232
0.00450616
-0.000137233
0.00493111
-0.000156939
0.00539143
-0.000178396
0.00588572
-0.000201692
0.00641896
-0.000226908
0.00699268
-0.000254154
0.00762059
-0.000283482
0.00829476
-0.000314977
0.00903028
-0.000348692
0.00982796
-0.000384656
0.0106918
-0.000422871
0.0116314
-0.000463196
0.0126499
0.0137562
-0.000505156
-6.40655e-06
0.001286
-1.39878e-05
0.00160699
-2.25131e-05
0.00189742
-3.18992e-05
0.00217266
-4.21555e-05
0.00245693
-5.33231e-05
0.00275206
-6.54969e-05
0.00306281
-7.8786e-05
0.00339433
-9.32996e-05
0.00374755
-0.000109161
0.00412289
-0.000126498
0.0045235
-0.000145417
0.00495003
-0.000166035
0.00541205
-0.000188441
0.00590813
-0.000212723
0.00644324
-0.000241032
0.00702098
-0.000267642
0.00764721
-0.000297623
0.00832474
-0.00033224
0.00906489
-0.000364915
0.00986064
-0.000401863
0.0107287
-0.000440993
0.0116705
-0.00048421
0.0126931
0.0137969
-0.000524845
-8.43635e-06
0.00129444
-1.50528e-05
0.00161361
-2.42324e-05
0.0019066
-3.61235e-05
0.00218455
-4.52355e-05
0.00246605
-5.71716e-05
0.00276399
-7.21294e-05
0.00307777
-8.62739e-05
0.00340847
-9.96471e-05
0.00376092
-0.00011643
0.00413968
-0.000134723
0.00454179
-0.000156709
0.00497201
-0.00017628
0.00543162
-0.000199751
0.0059316
-0.000225129
0.00646862
-0.000252492
0.00704835
-0.000281906
0.00767662
-0.000315505
0.00835834
-0.0003471
0.00909649
-0.000382924
0.00989646
-0.0004209
0.0107667
-0.00046098
0.0117106
-0.000503106
0.0127353
0.0138404
-0.000546636
-8.05519e-06
0.00130249
-1.8155e-05
0.00162371
-2.6301e-05
0.00191475
-3.71201e-05
0.00219537
-4.88784e-05
0.0024778
-6.16518e-05
0.00277677
-7.55258e-05
0.00309164
-9.05887e-05
0.00342353
-0.000106953
0.00377729
-0.00012476
0.00415748
-0.000144121
0.00456116
-0.000165151
0.00499304
-0.000190027
0.0054565
-0.000212593
0.00595416
-0.000239186
0.00649521
-0.000267781
0.00707694
-0.00029843
0.00770727
-0.000331177
0.00839109
-0.000366029
0.00913134
-0.000402975
0.00993341
-0.000444055
0.0108078
-0.000484973
0.0117515
-0.000525533
0.0127758
0.013885
-0.000570108
-8.33848e-06
0.00131083
-1.79367e-05
0.0016333
-2.86216e-05
0.00192543
-4.03259e-05
0.00220707
-5.30277e-05
0.00249051
-6.67966e-05
0.00279054
-8.17124e-05
0.00310656
-9.7865e-05
0.00343969
-0.000115368
0.00379479
-0.000134776
0.00417689
-0.000154939
0.00458132
-0.00017723
0.00501533
-0.000201324
0.00548059
-0.000227298
0.00598014
-0.000255237
0.00652315
-0.000285183
0.00710689
-0.00031717
0.00773926
-0.000351218
0.00842513
-0.000387309
0.00916743
-0.000425402
0.0099715
-0.000465804
0.0108482
-0.000507249
0.011793
-0.000550823
0.0128194
0.0139307
-0.000596561
-9.07065e-06
0.0013199
-1.95684e-05
0.0016438
-3.12452e-05
0.00193711
-4.4001e-05
0.00221983
-5.78115e-05
0.00250432
-7.27478e-05
0.00280547
-8.88872e-05
0.0031227
-0.000106316
0.00345712
-0.000125145
0.00381362
-0.000145509
0.00419726
-0.000167505
0.00460331
-0.000191243
0.00503907
-0.000216813
0.00550616
-0.000244279
0.0060076
-0.000273714
0.00655259
-0.000305141
0.00713832
-0.000338569
0.00777268
-0.000373993
0.00846056
-0.000411364
0.0092048
-0.000450613
0.0100107
-0.000491651
0.0108892
-0.00053431
0.0118356
-0.000578386
0.0128635
0.0139776
-0.000625293
-1.00027e-05
0.0013299
-2.15692e-05
0.00165537
-3.44116e-05
0.00194995
-4.84049e-05
0.00223382
-6.35295e-05
0.00251944
-7.98435e-05
0.00282179
-9.74164e-05
0.00314027
-0.000116339
0.00347604
-0.00013672
0.003834
-0.000158683
0.00421922
-0.000182313
0.00462694
-0.000207711
0.00506447
-0.000234957
0.00553341
-0.000264098
0.00603675
-0.000295187
0.00658367
-0.000328222
0.00717135
-0.00036318
0.00780764
-0.000400027
0.0084974
-0.000438676
0.00924345
-0.000481131
0.0100532
-0.000520921
0.010929
-0.000564196
0.0118789
-0.000608627
0.0129079
0.0140243
-0.000655319
-1.11662e-05
0.00134107
-2.40436e-05
0.00166825
-3.83038e-05
0.00196421
-5.37992e-05
0.00224932
-7.24402e-05
0.00253808
-8.8436e-05
0.00283778
-0.000107737
0.00315957
-0.000128445
0.00349675
-0.00015275
0.00385831
-0.000174494
0.00424096
-0.000200029
0.00465248
-0.000227342
0.00509178
-0.000256491
0.00556256
-0.000287503
0.00606776
-0.000320403
0.00661657
-0.000355156
0.0072061
-0.000391705
0.00784419
-0.000429979
0.00853568
-0.00046986
0.00928333
-0.000511216
0.0100946
-0.000553859
0.0109717
-0.000597623
0.0119227
-0.000642338
0.0129526
0.0140703
-0.000688353
-1.26255e-05
0.0013537
-2.71358e-05
0.00168276
-4.31505e-05
0.00198023
-6.04978e-05
0.00226666
-7.91501e-05
0.00255673
-0.000101129
0.00285976
-0.000120493
0.00317893
-0.000143361
0.00351961
-0.000167798
0.00388274
-0.000193856
0.00426702
-0.000221621
0.00468024
-0.000251137
0.0051213
-0.000282436
0.00559386
-0.000317659
0.00610298
-0.000350354
0.00664927
-0.000386889
0.00724264
-0.000425024
0.00788232
-0.000464655
0.00857531
-0.000505637
0.00932432
-0.000547823
0.0101367
-0.000591033
0.0110149
-0.000635168
0.0119668
-0.000680175
0.0129976
0.0141157
-0.000725583
-1.44872e-05
0.00136818
-3.10949e-05
0.00169936
-4.93503e-05
0.00199848
-6.90508e-05
0.00228637
-9.01496e-05
0.00257783
-0.000112675
0.00288229
-0.000136664
0.00320292
-0.000162195
0.00354514
-0.000189319
0.00390987
-0.000218052
0.00429575
-0.00024844
0.00471063
-0.000280486
0.00515334
-0.000314181
0.00562755
-0.000349492
0.00613829
-0.000386326
0.0066861
-0.000424613
0.00728093
-0.000464208
0.00792192
-0.000504985
0.00861609
-0.00054678
0.00936611
-0.000589443
0.0101794
-0.000632796
0.0110582
-0.000676725
0.0120107
-0.000721188
0.0130421
0.0141608
-0.000766257
-1.70068e-05
0.00138519
-3.63675e-05
0.00171872
-5.75861e-05
0.0020197
-8.04093e-05
0.00230919
-0.00010475
0.00260217
-0.0001306
0.00290814
-0.000157965
0.00323029
-0.000186876
0.00357406
-0.000217328
0.00394032
-0.000249274
0.0043277
-0.000282703
0.00474406
-0.000317565
0.0051882
-0.000353805
0.00566379
-0.000391745
0.00617623
-0.00043006
0.00672442
-0.000469851
0.00732072
-0.000510554
0.00796262
-0.000552037
0.00865757
-0.000594139
0.00940821
-0.000636724
0.010222
-0.000679634
0.0111011
-0.000722759
0.0120538
-0.000765904
0.0130852
0.0142039
-0.000809029
-1.99255e-05
0.00140512
-4.36796e-05
0.00174248
-6.92899e-05
0.00204531
-9.65216e-05
0.00233642
-0.000125283
0.00263093
-0.000155543
0.0029384
-0.000187259
0.00326201
-0.000220402
0.0036072
-0.000254887
0.0039748
-0.000290584
0.0043634
-0.000327404
0.00478088
-0.00036523
0.00522603
-0.000403963
0.00570252
-0.000443488
0.00621576
-0.000483673
0.0067646
-0.000524413
0.00736146
-0.00056556
0.00800377
-0.000607016
0.00869902
-0.000648659
0.00944985
-0.000690405
0.0102637
-0.000732157
0.0111429
-0.00077391
0.0120956
-0.000815626
0.013127
0.0142457
-0.000857416
-2.3109e-05
0.00142822
-5.23725e-05
0.00177174
-8.67636e-05
0.0020797
-0.000119205
0.00236886
-0.000155058
0.00266679
-0.000192125
0.00297546
-0.000230191
0.00330007
-0.000269069
0.00364608
-0.00030854
0.00401427
-0.000350567
0.00440542
-0.000388463
0.00481878
-0.000428713
0.00526628
-0.000469079
0.00574289
-0.000509513
0.00625619
-0.000552165
0.00680726
-0.000590395
0.00739969
-0.000632926
0.0080463
-0.000670959
0.00873706
-0.000711012
0.00948991
-0.000750878
0.0103036
-0.000790524
0.0111825
-0.000830002
0.0121351
-0.000869352
0.0131663
0.0142853
-0.000908923
-4.9643e-05
0.00147787
-9.29441e-05
0.00181504
-0.000133934
0.00212069
-0.000174746
0.00240967
-0.000216768
0.00270881
-0.000259314
0.00301801
-0.000302154
0.00334291
-0.000345093
0.00368901
-0.000387863
0.00405704
-0.000430193
0.00444775
-0.000471859
0.00486045
-0.000512826
0.00530725
-0.000553452
0.00578352
-0.000592625
0.00629536
-0.000631553
0.00684618
-0.000669887
0.00743802
-0.000707722
0.00808414
-0.000745095
0.00877443
-0.000782076
0.00952689
-0.000818709
0.0103402
-0.000855016
0.0112188
-0.000891074
0.0121711
-0.00092669
0.0132019
0.0143199
-0.000961344
-4.68737e-06
-7.85737e-05
-0.000158521
-0.00023116
-0.000297881
-0.000358007
-0.000413099
-0.000463598
-0.000508798
-0.000550477
-0.000591317
-0.000625852
-0.000660412
-0.00069443
-0.000727875
-0.000763171
-0.000793789
-0.000826444
-0.00086116
-0.000891668
-0.000923583
-0.000956176
-0.00099086
-0.0010209
-0.0472159
0.0230764
0.036615
-0.0124755
0.00174997
-0.00914958
-0.00603334
0.0134329
1.18913
0.0441339
0.470942
-1.7042
0.0158027
-0.00714444
-0.0205733
0.011915
-0.141046
-0.631376
0.114813
0.657608
0.0357257
0.0427041
-0.0496856
-0.0287443
0.0570345
0.0293605
-0.0419788
-0.0444162
-0.0329754
-0.0148824
0.00423913
0.0436186
0.0271395
-0.0022406
-0.000645004
-0.0242539
0.0696753
-0.00120051
0.00767589
-0.0761507
0.00067887
-0.00084543
-0.00115455
0.00132111
0.0580679
0.170461
-0.000131475
-0.228398
-0.00603423
0.0249933
0.00158792
-0.0205469
-0.244521
-0.296234
0.414517
0.126239
0.00142853
-0.000724489
-0.0150876
0.0143836
0.00534461
0.00128288
-0.005263
-0.00136449
-0.0178955
0.018885
-0.00832089
0.00733141
-0.00275554
0.00259069
-0.00306544
0.00323029
-0.0542133
-0.0228042
0.0263385
0.050679
-0.890146
0.733224
0.590228
-0.433305
-0.0114843
-0.0252188
0.0227322
0.0139709
0.0350819
0.0440088
-0.043365
0.0408735
0.270817
-0.101001
-0.210689
-0.0168172
0.0149444
-0.0118875
0.0137603
-0.00019796
-4.84624e-05
0.00175086
-0.00150444
0.0278545
-0.0119936
-0.0236243
0.00776341
0.884195
1.08933
-0.756492
-1.21703
0.0154183
0.000492637
-0.0165993
0.0122869
-0.0149299
0.0129416
-0.0102987
0.352934
-0.342687
-0.293294
0.283047
0.001673
-0.00202725
-3.97602e-05
0.000394012
0.56875
-0.619931
0.419168
-0.367987
-1.32707
0.611694
-0.681528
1.3969
0.193071
0.134863
-0.260704
-0.0672303
-1.41712
1.13831
0.548024
-0.269221
0.604688
-0.523207
-0.220564
0.139084
0.00207905
-0.00144264
-0.0017757
0.00113929
0.0775059
-0.0336044
0.0321643
-0.0760657
0.000695291
-0.000928104
-0.00027213
0.000504942
-0.448014
0.621504
0.69147
-0.86496
-0.00101551
0.000294479
-0.000149334
0.000870369
0.0530348
0.0393496
-0.037937
-0.0544474
-1.7991
-0.701781
0.510227
0.089253
-0.0490454
0.0368541
-0.0770617
-0.894818
0.683214
0.894371
-0.682767
-0.000495666
0.00183306
0.000358103
-0.0016955
0.0221592
-0.112571
0.0979258
-0.00751386
-1.27356
0.0107608
1.2628
1.53615
0.556615
-1.42404
-0.668728
-0.000971167
0.000589308
0.000756721
-0.000374863
-0.00167331
-0.000569516
0.00200558
-0.0288095
0.0281186
-0.00591165
0.0066025
-0.0852785
-0.0778372
-0.518767
0.681883
0.0272829
-0.0365065
0.0174007
-0.00817699
0.0367325
-0.0404947
0.0310451
0.491944
-0.328759
-0.135591
-0.0275934
0.952089
1.10403
-1.57498
-0.481139
-0.0107169
0.0113316
-0.0114983
0.0108835
0.000144958
-0.000148718
-0.00192541
0.00192916
0.0429092
-0.0317925
0.159635
-0.170752
0.01386
0.00815675
-0.0153628
-0.0066539
-1.1463
-1.53565
1.61907
1.06288
0.587771
0.231503
-0.563188
-0.256086
-0.00947948
-0.0030621
0.00719764
0.106821
0.0393336
-0.101777
-0.0443775
-0.000433347
-0.00149834
0.0691792
-0.034752
0.0326569
-0.0670841
-0.428119
1.39197
-1.54376
0.579911
0.00147455
-0.000548889
-0.000636183
-0.000289479
0.000727151
-0.000386275
-0.000490547
0.000149672
-1.28858
1.29717
-1.23718
1.22859
0.00414941
-0.00425091
0.00101219
-0.00091069
0.0145216
0.00317036
-0.00166848
-0.0160235
0.000859879
-0.000662495
0.000648669
-0.000846053
0.0148811
2.57147e-05
0.000836183
-0.015743
-0.000641221
0.000969193
0.000455453
-0.000783425
-0.28695
-0.085522
0.246928
0.125544
-1.79129
0.122536
2.85468
-1.18593
0.245111
0.0978859
-0.14984
-0.193157
0.274369
-0.21351
-0.0199858
0.0044451
0.0025442
-0.00164469
0.00992154
-0.0109965
-0.00707072
0.00814563
-0.00896454
0.00472637
0.0124787
-0.00824057
-0.0322636
0.0276142
0.0821552
-0.0262818
0.00828651
-0.00152739
0.0195227
-0.0172758
0.0340846
0.00167471
-0.0184835
0.0486003
-0.0148375
0.0409005
-0.0746632
-0.282197
1.07894
0.419096
-1.21584
0.00977099
0.0191454
-0.00482112
-0.0240952
1.62918
0.247642
-1.22418
-0.652648
0.298326
0.740629
-0.81318
-0.225775
0.0150407
-0.00555567
0.00243807
-0.0119231
0.298397
-0.272755
0.000268436
-0.0259109
-0.00107443
0.0135714
-0.0127663
0.0021769
0.0125158
-0.0180036
0.279279
-0.322393
0.0611176
1.73691
0.263089
-0.00150363
0.0150966
-0.0139601
-0.0230076
0.189681
-0.133521
-0.0331523
-0.0107185
0.00377636
0.0190368
-0.0120946
0.0261943
-0.00698292
0.029648
-0.0488594
0.0142335
-0.014992
-0.0398069
0.0405653
-0.0537761
-1.62409
1.00792
0.66995
-0.026441
0.00465075
0.0428758
-0.0210856
1.08089
0.405896
-0.282943
-1.20384
0.129552
-0.0562605
-0.122656
0.0493642
0.0136937
0.00535747
0.0431471
-0.0621983
-0.0215294
0.0109518
-0.00994936
0.0205269
-0.0140237
0.0163644
-0.01019
0.00784922
-0.0142364
0.0137269
0.00342768
-0.00291818
0.813092
-1.09552
-1.61973
-1.28872
1.28136
0.348154
-0.340798
-0.0152617
-0.00572379
0.011122
0.00986345
1.97324
-0.754229
0.317142
-0.00883425
-0.0531644
0.0329142
0.0290845
-0.634113
0.672341
0.392843
-0.43107
-0.000396607
0.0293927
-0.0334584
0.00446234
-1.20463
-0.323249
1.15753
0.370349
0.00196645
0.0019881
-0.00147489
-0.00247966
0.00046802
-0.000431554
-3.15975e-05
-4.86781e-06
0.00816143
0.0118327
-0.0115547
-0.00843947
0.0116152
-0.0910761
0.122229
-0.0427685
-2.02746
1.7943
-0.290832
0.524001
-0.0404628
0.0219943
0.00698415
0.000433709
-0.0007738
0.000442983
-0.000102892
-0.00149637
0.00234457
-0.000171491
-0.000676717
-0.124455
-0.0461392
0.036026
0.134568
0.00418777
-0.00337565
-0.00372991
-0.00964064
-0.00210104
0.00575779
0.00598389
-0.0056773
-0.00384468
0.00409597
0.005426
-0.115915
-0.124578
0.115187
0.125306
0.00810351
-0.0157366
-0.00308529
0.0107184
0.0906602
-0.045655
0.036615
-0.0816202
-0.452844
0.36978
-0.220893
0.303958
0.0436305
0.198924
-0.0709658
-0.171588
-0.00919835
0.00846478
0.0060082
-0.00527463
0.0191571
0.0123819
-0.014895
-0.016644
-0.516692
1.12735
0.182263
-0.792917
0.0227818
0.0156824
-0.0260566
-0.0124076
-0.0763925
-0.0396503
0.0641664
0.0518764
1.59816
-1.25927
-0.0695591
-0.269327
1.68858
0.0307701
-0.197434
-1.52191
-1.45144
0.114671
-0.0720013
1.40877
0.0322488
-0.0392892
-0.0311746
0.038215
-2.36495
1.64619
-0.569824
0.0527228
-0.0479799
0.0194332
-0.0241762
-0.0262298
0.0292659
0.0229347
-0.0259707
-0.0108039
-0.00100293
-0.00288785
0.0146947
0.0603548
-0.24823
0.0476249
0.14025
0.0339375
0.0012373
0.000388982
-0.0355638
0.0374147
0.0285251
-0.033691
-0.437128
-0.0128105
0.11752
0.332418
0.00100502
-0.000872859
0.000568462
-0.000700625
-0.299649
0.0197425
0.325896
-0.0459893
-0.0187137
-0.0302672
0.0233404
0.0256405
-0.00167187
-0.0149032
0.00327287
0.0133022
-0.000987891
0.0119866
-0.0112721
-0.0057499
0.0257656
-0.0260499
0.0538281
-0.0634534
-0.0308222
0.0404476
-0.00593232
0.0224302
-0.00972911
-0.00676878
-0.00380853
0.00059872
0.000413706
0.0027961
-0.16591
-0.163085
0.14751
0.181485
-0.517171
0.775235
-0.774756
-0.000806303
9.38114e-05
0.00150298
-0.000790491
0.00364056
-0.00566819
0.00706679
-0.00503915
0.0287653
-0.0098341
-0.0171441
-0.0017871
1.34381
-1.18828
-0.994289
0.838765
-0.00154709
-8.3323e-05
0.00245549
-0.000825074
-0.000100362
0.00161054
0.000162823
0.109877
0.035592
-0.102559
-0.0241343
0.0245445
-0.00616015
-0.000774995
0.00125424
-0.00136751
0.000888268
0.0322902
-0.032275
0.037765
-0.0377802
1.69681
0.249585
-0.63373
-1.31267
-0.000798352
-0.00422731
-0.00650972
0.0115354
0.727188
-0.508285
-0.0162116
-0.202691
-1.07864
0.744647
0.921477
-0.587487
-0.00474408
0.0119597
-0.00967091
0.00245527
-0.0407677
0.0142131
-0.0948951
0.12145
0.0300019
-0.0317694
0.049568
-0.0478006
0.00503146
-0.011347
0.00673506
-0.000419502
-0.0145302
-0.0542749
0.0157345
0.0530706
1.99714
-0.828462
-1.62643
0.457755
0.0250953
0.0566142
-0.0517681
-0.0299414
-0.000248782
0.00144651
-0.000996414
-0.000201316
0.197645
-0.214827
0.227831
-0.21065
0.022789
-0.0124533
0.00195125
0.462767
-0.259755
0.204966
-0.407978
-0.000627307
0.00755794
0.0127779
-0.0197086
-0.0365369
-0.00524803
0.0169066
0.0248784
-0.0170613
0.0198967
-0.0191352
0.0162998
0.744116
-0.743415
-0.0629869
0.0622857
0.00245693
0.00176831
-0.0038747
-0.000350539
0.396395
0.177866
-0.261086
-0.313175
0.0119493
-0.00111726
-0.0111455
-0.0148925
-0.00664413
-0.0805186
0.102055
0.0162732
0.0113903
-0.0217015
-0.00596206
0.296763
-0.03633
-0.985399
0.724966
0.0518894
-0.116994
-0.102582
0.167687
7.40503e-05
-0.000365479
-0.000248529
0.000539957
0.458445
-0.260713
-0.288333
0.0906006
-0.00136722
-0.000116447
0.000350877
0.00113279
-0.00284152
0.00305368
-0.0155664
0.0153543
-0.0473038
0.33183
-0.302529
-0.00873114
0.00501097
-0.0031887
0.00690887
-0.0305231
-0.00271872
0.00398771
0.0292541
0.00790343
0.00560634
-0.0080296
-0.00548017
0.00138857
-0.00217873
0.00184378
-0.00105363
-0.00156529
-0.000634302
0.00150918
-0.00261072
0.0126035
-0.0104798
0.307076
-0.141683
-0.278657
0.113264
0.116903
0.111489
-0.12409
-0.104303
-0.0101783
0.00659574
-0.00569336
0.00927592
-0.0166048
0.00110902
0.0200252
-0.00452938
0.00146659
-0.00206236
0.00160079
0.0153427
-0.0135494
-0.00207224
-0.00341166
-0.00840563
0.0101956
-0.010111
0.0052616
0.00539976
-0.000550392
0.00139707
0.000291203
-0.0010939
-0.000594376
0.00182752
-0.00146793
-0.000558197
-0.00526535
0.00169693
0.00480434
-0.00123592
-0.00202179
0.00219634
0.00115087
-0.00132541
0.0128289
0.0974439
0.0145094
-0.124782
-0.00182547
0.189681
-0.624184
0.436329
-0.301151
0.151732
-0.188271
0.33769
-0.00730766
-0.0423502
0.0318284
0.0178295
-0.00135094
-0.000285534
0.0007324
0.000904074
5.28031e-05
-0.00153709
0.00143357
-1.2796
-0.148825
1.24766
0.180766
-0.00138485
0.00245113
-0.00187258
-0.05331
1.73846
-2.11327
-0.0601542
-0.0970625
0.098375
0.0588417
-0.0679117
0.0560718
-0.112615
0.00134008
-0.00111021
-0.00234478
0.00211491
-0.561849
1.07806
1.11297
-0.231007
1.25762
-0.299428
0.699161
1.20583
-0.216415
-0.0168158
0.00454912
0.0149679
-0.00270119
-0.00615304
0.0047067
-0.0172934
0.0187397
0.812163
-0.209042
-0.534366
-0.0687548
-0.013248
-0.000742689
0.0136766
0.0349231
-0.0314449
0.0118037
-0.0152819
0.0573197
-0.0501351
0.0295479
-0.0138728
0.0125975
-0.00576904
0.00704434
-0.00472425
0.00530296
-0.0174282
0.0168495
-0.000691656
0.000172259
0.00100059
-0.00122615
0.0128649
0.0652277
-0.127085
-0.0786154
0.140472
0.00341546
-0.00498077
0.00159544
-3.01205e-05
-0.0241376
0.0185243
0.0405364
-0.552917
0.739469
0.306153
-0.492705
-0.0100997
-0.00837969
0.0102355
0.00824391
-0.00321425
-0.00123957
0.00425586
-0.0380443
0.0389323
0.0303566
-0.0312446
0.701433
0.949817
-0.0194885
0.00448176
-0.00371202
0.0187187
-0.0334188
0.00149342
0.0321476
-0.000222184
0.0183034
-0.0290877
-0.0605265
0.0713108
-0.00123215
-0.0039967
0.00236008
0.00286876
0.00148731
-0.000454469
-0.00145167
-0.0422136
0.0109659
0.00210735
0.0291404
-0.0545143
-0.0178013
0.0556997
0.0166159
0.00311288
-0.0042839
-0.0322478
0.000835726
-0.000112559
0.000457308
-0.00118047
0.00167774
-0.00077383
-0.0048499
0.003946
0.014965
-1.28026
0.481311
0.783984
0.0131564
0.00106098
-0.0136643
-0.000553093
0.00423526
0.00411639
-0.00577581
-0.00257584
0.0275389
-0.0616275
0.0508291
-0.0167404
0.0111627
0.0142287
-0.0104711
-0.0149203
0.0129164
0.0152012
-0.0206848
-0.0074328
-0.102954
0.104986
-0.0877155
0.085683
-0.0174641
0.012032
-0.0122343
0.0176663
0.000535284
0.0020228
-0.00101159
-0.00154649
-0.250943
0.280301
-0.27388
-0.0215108
0.00623231
-0.0810396
0.096318
-1.61674
-0.0371877
1.09579
0.558139
-0.0274765
0.424999
0.00172847
-0.399251
0.187453
-0.045626
0.0432427
-0.18507
-0.0079692
0.0115047
-0.0511859
0.0476503
-0.203662
0.110222
-0.0678312
0.161271
0.00674352
-0.0125096
-0.00296505
-0.069275
0.0529145
0.167634
-0.151273
0.12048
0.0657289
-0.113587
-0.0726211
0.0122459
-0.0158999
-0.00664052
0.0102946
0.0129698
-0.0059707
-0.0117234
0.000243252
-0.000577444
0.000135023
0.000199169
-1.03294
0.195811
0.144708
0.692423
-1.26258
-0.115173
0.117055
1.26069
-0.539757
1.24298
0.377668
-0.00689412
0.0173534
0.00299814
-0.0134574
-0.00895379
-0.00725987
0.00177934
0.0144343
-0.000266877
-0.000661894
0.000691498
0.000237272
-0.00886821
0.0210111
-0.0142783
0.00213539
-0.710806
-0.802626
0.967644
0.545789
-0.017703
0.0191066
0.00519194
-0.00659562
0.10307
0.103973
-0.132231
-0.0748122
-0.121261
1.51195
0.207468
0.10399
0.184636
-0.0892486
-0.199377
0.0774512
-0.103202
-0.0359803
0.061731
-0.0168172
0.0212742
-0.0116373
0.00718026
0.462067
0.503045
-0.396362
-0.0585449
0.0698546
0.0661415
0.196203
0.477171
-0.0376803
-0.635694
0.00722866
-0.00741282
-0.00549314
0.0194484
-0.0184359
0.0454524
-0.0464649
0.015064
-0.012245
-0.0151466
0.0123276
-0.142359
0.0682072
-0.0740103
0.148162
1.21132
-1.26463
-0.00197326
0.00139115
-0.000448767
0.00103088
0.00163561
-0.000410824
0.0255662
-0.0016793
-0.0238783
-8.63318e-06
0.857199
0.370769
-0.769171
-0.458797
0.00148797
-0.00119788
0.000962743
-0.00125283
2.18137
-0.100511
-2.00343
-0.0774242
-0.0464199
0.0164136
0.0483097
-0.813776
0.517796
-0.209987
0.505968
-1.14239
1.09991
0.535307
-0.492824
0.0104311
0.214189
-0.789751
0.565131
-0.00458112
-0.011619
0.0103153
0.00588484
-0.0989132
0.315675
0.179633
-0.0815493
0.109796
0.157959
-0.186205
-0.100235
0.0435522
0.103282
-0.0465988
-0.154772
0.0992117
-0.0378157
-0.00718347
0.0262855
-0.143485
0.305408
-0.0624218
-0.0995003
-0.0011968
0.00146102
-0.00216109
0.00189686
-0.0181579
-0.0179011
0.0136156
0.0224433
0.0161955
-0.014438
-0.00230414
0.207309
-0.218331
0.115012
0.0481195
-0.147483
0.157431
-0.000144775
0.000297661
0.000370192
-0.000523078
0.0114653
-0.00196389
0.0601739
0.000513276
-0.000606086
-0.0002809
0.000373708
0.00250389
-0.00253986
0.00140131
-0.00136535
-0.0418
0.0034086
0.0398848
-0.00654627
-0.00515904
0.0113977
0.000307628
-0.166736
-0.218816
0.184971
0.20058
-0.108189
0.133011
0.16825
-1.16483
-0.375166
0.631384
0.908611
0.00196417
-0.00278643
-0.00149192
0.00231419
-0.203401
0.00401619
0.24617
-0.0467846
-0.0594333
0.378014
0.146531
-0.465112
0.162808
-0.205141
-0.258818
0.0796471
0.107717
-0.0196134
-0.16775
-0.0524727
0.160113
0.0796744
-0.187315
-0.0014999
-0.000438942
0.000587905
0.00261245
-0.00339041
0.0024557
0.0096706
0.0187053
-0.0184781
-0.0098978
-0.0608604
1.17762
-1.1018
0.0326459
-0.0378177
0.0191131
-0.0151594
-0.0108479
-0.000102887
0.0107749
-0.0101505
-0.000521526
0.0246065
-0.0111713
0.142616
0.153484
-0.173714
-0.122386
0.390407
0.00262415
-0.155808
0.145342
-0.151799
0.0781993
-0.0717426
-0.000828156
0.000893651
-0.000706717
0.0245481
-0.0140827
0.017763
-0.0282284
-0.634489
-0.466562
0.48112
-0.00764761
-0.00262612
0.00776939
0.0169309
-0.0940074
0.0549039
0.0221727
-0.0138827
0.0176291
-0.0110563
0.00730984
-0.0239157
0.0510798
-0.0507853
0.0236211
0.0238023
0.00423276
-0.0286897
0.000654597
-0.0533097
0.0092633
-0.0591555
-0.0363657
0.0258612
-0.0105827
0.0210872
0.0441143
0.0355939
-0.047418
-0.654507
-0.473067
0.0946312
-0.0489254
-1.6816
1.2548
0.47573
-0.029307
-0.057055
0.0610207
0.0253413
-0.0477302
0.0405142
0.22532
-0.218104
2.18696e-05
-0.0010454
4.26188e-05
0.000980907
-0.422914
-0.169611
0.432717
0.159807
1.0387
-0.924787
-1.1248
1.01089
-0.278158
0.307935
0.185495
-0.215272
0.0111183
-0.0124052
0.000990995
-0.0222994
-0.0172286
-0.00981097
0.00528826
-0.0100251
0.0145478
-0.623993
0.259044
-6.63145e-05
-0.000235971
-0.000246447
0.000548732
-0.0061091
-0.0763531
0.0490271
0.0334351
0.255565
-0.158511
-1.37665
0.944345
0.647746
-0.753909
-0.838181
-0.0172351
0.00666905
0.00993877
-0.214103
2.03921
0.174891
-0.0111449
0.0122764
-0.00149694
-0.00612469
0.0198791
0.00337744
-0.0171319
0.00980179
0.0205829
-0.0338198
0.00343517
0.0758274
0.0449015
-0.0143582
-0.106371
0.0451226
-0.0383606
-0.0244471
0.0176851
0.0606
0.0136449
-0.0291223
-0.147936
0.198702
0.500245
-0.551011
-1.33989
0.577161
0.170871
0.591855
0.110569
-0.101514
0.0938717
-0.102927
-0.017719
0.0247332
-0.00390046
-0.00311366
-0.0117251
-0.00161464
-0.00031264
0.0136523
-0.0172642
0.0136018
0.00929862
-0.00563627
0.00495176
7.81894e-05
-0.000584848
0.020577
-0.058938
-0.0158524
0.00101889
-0.000321914
0.000938635
-1.42172
0.148161
0.041937
-0.173264
-0.0461834
0.177511
-0.0670299
0.0278212
0.0529024
0.00222002
-0.00273744
0.00196264
-0.00144522
0.418741
0.158468
-0.150452
-0.426758
0.00185599
-0.00215222
0.000255308
4.09227e-05
-1.41652
0.739073
2.02125
0.905872
-0.839433
-0.777246
-0.0577465
-0.0592425
0.0839974
0.0329916
0.250547
-0.367114
0.36818
-0.251613
-0.0744579
-0.0491767
0.0874705
0.0361642
-0.0847683
-0.0740116
0.040298
0.138377
-0.155334
-0.0233419
0.000427465
0.000461634
-0.000614552
-0.000274548
-0.0365186
0.0140476
0.0606724
-0.0382014
-0.000160037
0.00141724
-0.00130567
0.0399266
0.0049555
-0.00654211
-0.03834
0.250331
0.0158273
-0.0787057
0.00481211
-0.00546222
-0.0146595
0.0153096
-0.00947482
-0.0067242
0.0039044
0.0122946
0.0125119
-0.0124331
0.00484634
0.0288542
-0.0181576
-0.00758374
-0.31846
0.108848
0.411676
-0.202065
0.0798378
0.233703
-0.253145
-0.0603957
-0.0105381
-0.0168039
0.00581254
0.0794119
0.0225087
-0.134967
0.0330462
0.00756743
-0.0103827
-0.0072845
0.00159706
0.00161058
-0.000987627
0.044696
-0.0736661
-0.047215
0.0761851
-0.00419751
-0.00393597
0.00779307
0.000340406
-0.0082712
0.0507929
-0.0493672
0.00684557
0.559842
-0.690522
0.561639
-0.430959
-0.0252471
-0.0680064
0.0566189
0.0366345
-0.0371842
-0.0074294
0.0372927
0.00732089
-0.0567621
0.330776
-0.351109
0.0770952
0.0196672
-0.00616588
0.00741831
-0.0209196
-0.00749708
-0.00455254
0.00270071
0.00934891
-0.000474351
0.00161818
0.000712159
-0.257598
-0.84453
0.282249
0.819879
-0.00541663
-0.0155231
0.0189661
0.00197365
-0.00984533
-0.0128714
0.00590093
-0.00748556
0.00603179
0.00568903
0.000498379
-0.00110948
0.00269015
-0.000100234
0.000631292
-0.000128217
0.950385
-1.18592
-0.212483
0.0257728
-0.00622058
-0.0189178
-0.000634423
-0.375765
0.394921
-0.909303
-0.088301
-0.049823
0.0803776
-0.27656
-0.00647643
-0.0166131
0.0133469
-0.0133017
0.00606745
-0.00611263
-0.000415137
-0.000251752
0.000200902
0.000465987
0.217944
0.296983
-0.937841
-0.0655397
-0.0880835
-0.23669
0.390313
0.0293304
-0.0313532
0.0262266
-0.0242038
1.2662
-1.79285
-0.750109
1.27675
-0.180231
0.122419
-0.0969601
0.53634
-0.28021
-0.536762
0.280632
0.121659
-0.0660805
-0.0890696
0.0334915
-0.453826
-0.428001
0.483984
0.397842
0.000576132
-0.00102056
3.36075e-05
-0.0517581
0.0371649
-0.0118478
0.00760186
-0.00737962
0.0163023
-0.0165246
0.00922309
-0.00885321
-0.00111081
0.00429889
0.000178147
-0.0130827
0.00860563
-0.726345
0.461572
-1.78711
-0.0207357
0.0161965
0.0142098
0.0131475
-0.000451496
0.00347692
-0.0161729
0.000580367
-0.000541512
-0.000664429
0.000625573
0.434757
0.50834
-0.618424
-0.324673
0.0367902
-0.0327645
-0.0363007
0.0119498
0.0110958
-0.0518694
0.0288238
-0.00343071
-0.0205892
0.00754652
0.0164734
2.95285e-05
-0.00174869
0.00160708
0.0289296
-0.0423095
0.0546832
-0.0413032
0.0355394
-0.0186424
-0.0209641
0.00406702
-0.547871
-0.187816
0.202142
0.533545
-0.0294225
0.0247207
-0.00123737
0.0059392
0.0958548
-0.0879794
-0.0631459
0.0552706
0.0169382
-0.0121775
-0.00639148
0.00163079
-0.000436022
0.000265863
0.000499599
0.000120292
-0.00177102
0.00157324
-0.00507956
0.00279666
-0.00735773
0.00386276
-0.00515339
-0.00146277
0.0027534
0.00670577
0.0262939
-0.0214593
-0.0115403
0.917097
0.813163
-0.631681
-1.09858
0.423203
-1.84492
0.0374557
0.047304
-0.0794022
0.0031226
0.0302255
-0.00757534
-0.00134125
0.00405104
-0.0233228
0.020613
-0.000540676
-0.00350653
0.000908118
0.00313909
-0.00788914
0.00897112
-0.130596
0.129514
-1.39573
0.605807
-0.349941
1.13986
0.847087
-0.902588
0.982338
-0.926837
0.964452
0.46768
-0.500576
-0.931556
1.45145
-1.80438
0.243599
0.109332
-0.0225902
-0.0175438
0.00715862
0.792198
-0.495398
0.488942
-0.785741
-0.0024354
-0.000571825
0.00200444
0.00100279
-0.00053195
0.00039736
-0.0335778
0.0685151
-0.0642443
-0.0332425
-0.0335656
0.0458013
0.0210068
0.000893548
-0.000449345
0.000481425
-0.000925628
0.00690421
-1.32549
1.31859
-0.167285
0.113122
0.140791
-0.0866284
0.107036
0.0338474
-0.118725
9.47113e-05
-0.0135136
0.0131462
-0.0172313
0.0385371
0.0228085
-0.871201
0.63594
-0.28191
-0.000150346
0.000570935
0.00106845
-0.0118595
0.0182872
-0.0074962
-0.000525809
0.000327567
0.000651316
-0.000453074
-0.00420532
0.0368077
0.0104453
-0.0430477
0.039001
-0.0629239
0.169265
0.0716728
0.29381
0.0249233
-0.000739622
0.0342888
-0.0312119
-0.00233721
0.241073
-0.58852
0.529991
-0.182544
0.00735004
0.0149895
-0.0179089
-0.00443064
0.00701371
0.0077672
-0.0120314
-0.00274953
0.00546288
-0.00414402
0.0137218
-0.16444
-0.104824
0.157114
0.112149
-0.0027885
0.00182489
-0.000421236
-0.0044435
-0.0179655
0.0111066
0.0113025
-0.0136072
-0.00862664
-0.677119
0.0770157
0.663152
-0.0630486
-0.351743
0.467541
0.34402
-0.459819
-1.5539
1.61914
-1.21154
-0.155907
0.195573
0.167643
-1.2936
0.279002
1.27016
0.0882445
-0.0821858
0.00224034
-0.00829908
0.0283529
-0.0223423
-0.00784993
0.00183932
0.000635044
5.78164e-06
-0.000201262
-0.00187771
0.0046762
0.0013179
1.04744
-0.910639
0.747393
0.00195018
-0.00376077
-0.00326897
5.60232e-05
0.00141791
-0.00138332
7.69025e-05
-0.000223398
-0.000120381
-0.0881436
-0.943126
0.773672
-0.00122955
0.000719152
0.000360051
0.00771257
-0.00954854
0.0459217
-0.0440857
-1.24042
0.200306
-0.181335
1.22145
0.000572081
-0.000371021
-0.000179191
0.054549
0.0145405
-0.0416426
-0.0274469
-1.76768
0.439545
1.32813
0.00198206
-0.00235908
8.73086e-06
0.000368291
-0.331102
-1.43657
-0.00113088
-2.74465e-05
0.00038333
0.113798
-0.0626971
-0.042008
-0.00909266
0.0266935
-0.0224225
-0.0216418
0.0173708
-1.65673
0.0203308
-0.0757119
1.71211
0.00164913
-0.000793208
-0.00138175
0.000525828
0.0121049
-0.0154028
-0.00345368
0.00675163
-0.892289
1.1796
0.541247
-0.828557
0.0414283
-0.0128524
-0.0358835
-0.0260828
-0.00931927
0.0290261
0.00637604
0.00052381
-0.000351693
0.00016008
-0.000332197
0.0079334
-0.0193977
0.00170757
0.00975672
-0.0178061
0.020298
-0.017092
0.0146001
-0.0171254
0.0132366
-0.0111002
0.0149891
0.370304
-0.537021
0.675308
-0.508591
0.000322858
-0.00362843
-0.000502953
-0.00502968
0.00512488
-0.0173594
-0.1762
-0.0388153
0.587058
-0.708757
-0.332127
0.159482
-0.00377083
0.0147499
-0.433002
-0.386058
0.184947
-0.00525731
0.00494236
-0.00388256
0.655899
0.157111
-0.27667
0.197632
-0.0469478
-1.06477
0.91409
0.655512
-0.614853
0.421408
0.0196793
-0.0251967
-0.00502068
-0.0189203
0.00501264
0.0177571
-0.00384944
-0.00048792
0.000281434
4.64495e-05
0.00404104
0.0200144
-0.0213671
-0.00268827
-0.684524
0.745154
1.25333
-1.31396
0.00382832
-0.0141098
0.00965615
-0.380236
0.508523
-0.537141
0.408854
0.0809816
1.79864e-05
5.37364e-05
0.000176287
-0.00024801
-0.00423541
0.0117153
-0.00778198
0.00460519
-0.00513963
0.00867982
-0.00814538
0.00174791
-0.008717
0.0112353
-0.00426623
0.000685275
-0.0153982
0.0142252
-0.0229209
0.0172442
0.0296544
-0.0239776
-0.0152494
0.00816323
-0.00618422
0.0132704
0.0335836
-0.0310818
-0.00864957
0.00614776
-0.0091349
-0.00572375
0.0149233
-6.46298e-05
-0.0572577
-0.167724
0.179356
-0.00117011
-0.000738787
0.00169456
-0.000151825
-0.00102318
0.00124269
-6.76888e-05
0.11694
-0.101872
-0.0982297
0.0831614
0.00601889
0.00706183
-0.00864424
-0.00443649
-0.0147297
0.000198414
0.0144607
7.05965e-05
-0.0746697
-0.0178296
0.0176066
0.0748926
0.00889307
-0.0191913
-0.00258934
0.0128876
-0.0110573
-0.0101412
0.0117194
0.00947913
-0.0467345
0.0516886
-0.00559719
-0.00770356
0.00478148
0.00851926
-0.000609055
0.00119349
-0.000833216
-0.357138
0.255379
-0.31927
0.421029
0.00201282
-0.0014876
-0.0080223
-0.449818
0.452916
-1.37959
1.37649
0.00544833
0.0153029
-0.0148838
-0.00586742
0.0277133
-0.0284981
-0.0120911
0.0128759
-0.0108268
0.00828705
-0.010983
0.0020004
0.00861968
0.000362969
-0.00973004
-0.00361193
0.00876085
0.040627
-0.0871578
0.0750079
-0.0284771
1.21133
-0.666611
-1.11561
0.570887
-0.00997708
0.00661132
0.00261532
0.122487
-0.287776
0.21119
-0.182461
0.185928
-0.095946
-0.0176206
0.010122
0.0058267
-1.22365
1.59374
0.926744
-1.29683
0.00099733
-0.000354955
-0.00261564
-0.01708
0.0105129
-0.00836276
-0.00394721
0.0144341
-0.0108345
-0.0109517
-0.0212964
0.00282552
0.0326393
-0.0219184
-0.030478
0.0197571
-0.28986
-2.05075
0.280859
-0.0115343
-0.422706
0.267505
-1.54182
-0.4028
1.82335
0.226325
-0.25379
0.0396458
0.132986
-0.132333
-0.0116175
-0.0129064
0.0135723
0.0253594
-0.00562546
-0.019117
-0.000616898
0.00089149
-0.0026853
0.00520926
0.000134171
0.009014
-0.00838985
-0.000758319
0.00432058
-0.00277225
-0.00987884
0.00833051
-0.497233
0.469473
-0.231462
0.259222
0.033619
-0.0352172
0.0393631
0.683545
0.0150676
0.06542
-0.764033
0.0357498
0.00240396
0.00327454
0.0216144
-0.015037
-0.0243834
-0.000932419
-0.00023833
0.000688546
0.000482202
-0.14715
0.103457
-0.0137797
0.0574727
0.4585
0.330002
-0.228661
0.000254512
-0.0013583
5.83872e-05
0.028895
-0.0209143
0.00396916
-1.41479
1.52992
0.684194
-0.799316
0.0440537
-0.05478
-0.0207186
-0.0266085
-0.0276286
0.0177002
0.00378648
-0.00601487
-0.0027377
0.000718507
0.00324767
-0.00122848
1.02737
-0.625272
-1.14913
0.747034
0.968476
-0.472824
0.361547
-0.000141894
0.000185352
0.000807068
-0.000850526
-0.868242
0.976415
1.189
-0.0185108
-0.0129125
0.0161616
1.0104
-0.354694
-0.98118
0.325477
0.0425317
-0.0301491
0.0250321
0.163026
-0.140332
-0.090606
-0.00261393
0.000602585
9.41705e-05
0.00191718
0.00299352
0.0323153
0.0192402
0.00124731
-0.000942796
0.00165965
0.145353
0.0849276
0.897066
-0.558166
0.502754
-1.12599
1.1814
-0.00131002
0.000950487
-0.00094735
0.00130688
0.806594
-0.905549
0.0206314
-0.0112388
0.00231549
-0.0117081
-0.00305038
0.00297975
-0.00491014
0.0127479
0.00231471
0.056557
-0.0387849
0.00976674
0.0526899
1.21237
-0.200679
-1.06439
-0.164844
-0.107785
0.102132
-0.0613492
-0.0917725
0.0509899
-0.0786962
0.0132865
0.0793099
-0.0139002
0.0841279
-0.0809371
-0.0367953
0.0138652
0.0195887
-0.0222912
-0.131178
-0.311395
0.329024
0.113549
-0.156448
0.83433
0.0768475
-0.754729
-0.0146016
0.00377547
-0.00244544
0.0132715
-0.00285027
0.00116631
0.0283189
-0.0266349
0.00141845
0.000798604
-0.00133041
-0.000886651
-0.00256109
0.0197766
0.0111374
0.0205691
0.0216754
-0.0245368
-0.0177077
0.000377177
0.0132881
-0.00906006
0.00779143
0.00424807
-0.0147022
0.00266268
0.000603336
0.0219864
-0.00243048
-0.0201592
-0.000476275
0.00026405
0.000446278
-0.000234053
-0.00894668
0.0202175
0.00723547
-0.0185063
-0.00341105
-4.78512e-05
0.000964964
0.00249393
0.071298
-0.22347
0.192686
0.693229
0.466241
-0.656425
-0.00548167
0.00075829
0.0125148
-0.46643
0.776023
0.31736
-0.882241
-0.211143
0.886936
0.460045
-1.09991
-0.24707
0.245582
0.168583
-0.236299
0.00344304
0.000598312
-0.00260906
-0.00143229
-0.0823232
0.860269
0.0144919
-0.0186012
-0.00485518
-0.018155
0.0116979
-0.00954894
0.016006
0.0488119
0.208186
-0.16603
-0.0909673
0.0018946
-0.00194867
-0.0112286
-0.0495008
0.0435699
0.0171595
0.935248
-1.13226
1.98554
-1.78852
0.0191282
-0.0111692
-0.0126939
0.00473492
0.0880581
-0.0491278
-0.0235839
0.0203896
-0.00791296
0.0111073
0.0887713
0.174398
-0.186647
-0.0765221
-0.000644983
-0.000244701
0.000525029
0.000364653
-0.00646031
0.0136495
-0.0229315
0.0157423
0.221917
-0.391492
-0.464914
-0.00504868
-0.0166736
0.0247317
-0.00300943
-0.195982
-0.294569
0.229466
-0.39785
-0.500768
0.465615
0.00803314
0.0181033
-0.00666572
-0.0194707
0.0124259
0.00350329
-0.00821107
-0.0077181
0.0280779
0.081673
-0.0650548
-0.0185563
0.000349382
0.0161251
0.00208181
0.0867234
0.0457032
-0.0186289
0.0530752
0.0116979
-0.0582248
-0.00654833
-0.0380961
0.00775302
0.0867313
-0.0563882
0.00258441
0.38867
-0.339409
-0.0518448
0.00106803
0.000967051
-0.00133979
0.00625883
-0.00118852
-0.0116166
0.000721718
-0.000370047
-0.219137
0.0429039
0.0738474
0.0381894
-0.0881953
-0.0238415
0.109571
-0.93835
1.10402
-0.275242
-0.0173757
0.0155558
-0.0154636
0.0172834
-0.0477373
0.0467539
-0.0185715
0.0195549
-0.00644188
0.0062898
-0.00313342
0.00328549
0.00347191
-0.00637902
-0.00735749
0.0102646
0.200898
-0.409015
-0.152628
0.360745
0.0119802
0.000365914
-0.0145126
0.00216647
-0.0216284
0.00575124
-0.00825713
0.00216499
0.0558153
0.0026197
0.00395911
-0.00401734
-0.000864241
0.000922467
0.14006
0.0543288
-1.61151
1.0251
1.44799
-1.43079
-1.04229
0.000495605
-0.000606894
0.0234103
-0.0333958
0.0287047
-0.0187192
-0.0179617
0.0156418
0.0201251
-0.0178052
0.310101
-0.104883
-0.0110142
-0.194203
-0.0616213
-0.0718336
0.0274563
0.105999
0.00967393
-0.00465403
-0.00862862
0.00360873
0.0634789
-0.0666254
-0.000435898
0.00358233
-0.00501736
0.00209404
-0.00805973
-0.0174017
0.017675
-0.00489054
-0.000364044
-0.0734416
0.00292644
0.00615363
-3.57857e-05
-0.00904429
0.0331869
0.00783749
-0.00241518
-0.0386092
-0.0438959
0.00955364
0.00144707
0.0328952
0.195477
-0.156469
-0.174452
0.135445
-0.0163236
0.0320352
0.06258
-0.0782917
0.0146776
-0.0150244
0.000651886
-0.000305014
0.0112444
-0.00041885
-0.0901826
0.0615241
-0.0450077
-0.182003
0.758886
0.0278045
0.00014699
9.06492e-05
-0.000163589
0.00929368
-0.00078074
-0.0218261
0.0164391
0.0755872
-0.0702002
-0.00222206
0.00134916
0.00221298
-0.0104224
0.0058649
-0.00575524
0.0103128
-0.000483945
-0.000258895
0.000788477
-4.56373e-05
-0.0224784
0.0134315
-0.862084
1.04994
0.112538
0.0317965
-0.0550817
-0.00969979
0.00257204
-0.00497589
0.0121036
-0.0227666
0.00418458
0.022623
0.122282
-0.428122
0.676143
0.728398
0.760767
-0.753425
-0.73574
-0.0114908
0.0155121
-0.00398518
-3.61168e-05
0.82454
0.483412
-1.1626
0.0583104
0.115508
-0.108591
0.257358
-0.586201
0.645239
-0.316397
-0.00573891
0.0374596
-0.0324603
-0.000475341
-0.000310438
0.000259969
-0.467844
-0.279355
0.610292
0.136907
0.324735
0.0559652
-0.217891
0.0322461
-0.0285758
0.0180732
-0.0217435
-0.022197
-0.0237056
0.0280072
-0.511817
-0.000296588
-0.000669669
0.0393847
-0.0384185
-0.00553719
0.00942465
0.0216787
-0.0100358
0.0084181
0.013721
-0.0121033
0.00192695
0.00129372
-0.000608211
-0.130635
-1.08967
-0.0389665
-1.9805
0.0582304
0.337612
1.58466
0.385659
-0.419487
0.377214
-0.343385
-0.0227607
-0.0144623
0.0303353
0.00688771
-0.000222235
0.000232823
-0.000943007
0.01615
-0.00998929
0.0129675
0.0824054
-0.290136
0.38592
-0.178189
-0.153963
0.151024
-0.0668651
0.0698045
0.423408
-1.30224
1.48033
-0.60149
-0.00886423
-0.0105462
0.00974609
0.00966437
0.992259
1.43031
-1.45118
-0.971391
-0.0332027
-0.0130629
0.0341488
0.0121168
-0.0025658
0.0188562
-0.00161283
-1.28753
1.30366
0.540477
-0.0436069
0.0291997
0.0338557
-0.00172332
0.00523763
0.011985
-0.0154993
0.0160421
-0.00841395
-0.0169292
0.00930108
-0.00794394
0.00965128
0.00982385
-0.0115312
-0.00227052
0.00178604
-0.000870989
0.00135547
0.000642416
-0.000143953
2.53463e-05
0.00984708
-0.00458612
-0.0158358
0.0105749
-0.00139436
0.0116539
-0.0105401
0.0337098
0.0355032
0.0254494
-0.0279949
0.0328187
-0.0302731
-0.00572955
0.00380438
0.00610816
-0.00418298
0.00050104
-0.0465849
0.0443635
0.631948
-0.454395
0.00761542
-0.0157884
-0.00425816
0.0124311
-1.08125
1.24224
-1.15528
-0.0188689
0.0153952
0.011804
-0.00833031
0.00311798
-0.00646103
-0.0019223
0.446538
-0.29787
0.121453
-0.270121
0.000518213
-0.000440014
-0.00103604
0.322893
-0.297142
0.361696
-0.387447
-0.000213412
0.000505456
0.000135422
-0.0108224
-0.0114274
0.00683022
0.0154196
-0.00437132
0.00762223
-0.00796151
0.0047106
0.0140095
-0.00911827
0.0204682
0.222107
-0.286142
0.249299
-0.185264
-0.116475
-0.0385055
0.0957379
-0.000107477
-4.55424e-05
-0.000212459
0.0788217
-0.0962825
-0.0698841
0.0873448
0.0196081
-0.0189135
-0.0068476
0.00255303
-0.0202048
-0.000509205
0.018161
-0.0100593
0.00451654
-0.013869
0.0194118
-0.00180216
0.000500157
0.00131217
-0.00145008
0.0124261
-0.0112664
0.0986822
-0.101193
-0.00822161
0.0107324
-0.00168941
0.0136898
-0.00215326
0.0199795
-0.0104271
-0.0184991
-0.00602584
-0.0184395
0.0281698
-0.00370445
-0.0236487
-0.0876426
0.0162102
0.0950811
-0.00500833
0.0224861
-0.0227687
0.00529092
0.044818
-0.0589843
0.058881
-0.0447147
0.110683
0.159811
-0.140877
-0.129616
-0.0319432
0.0246033
0.0191808
-0.0118409
0.0148192
-0.00622589
-0.0224662
-0.0460024
0.0300691
-0.0206576
0.0365908
-0.00132879
0.000306723
6.55334e-06
-0.0083718
-0.00450677
0.00384875
0.00902982
-0.0601006
-0.127555
0.0010377
-0.00127
-0.000429593
0.0136246
-0.00435914
-0.0245149
-0.428423
-0.433536
0.479691
0.382268
0.00101514
0.000257584
-0.001103
0.428138
-0.520165
2.31636
-2.22434
1.07278
-0.972813
-0.00983649
-0.00404456
0.00885022
0.00503082
0.0175914
-0.0321177
-0.0342851
0.0488114
0.000810815
-0.000403639
0.000971232
-0.00137841
0.0134965
-0.00964731
0.0104664
-0.0143155
0.44521
0.161745
-0.329847
-0.277108
0.0179896
-0.0189462
0.00474797
-0.00143523
0.000836675
0.257264
-0.660861
-0.279226
0.682824
-0.00456798
0.00300908
0.0223357
-0.0207768
0.0113002
0.00438619
-0.00980955
-0.00587687
-0.000528737
0.000809122
-0.00160918
-0.0213273
-0.0138919
0.444816
-1.51851
-0.341102
-0.0125192
0.00609626
0.0214869
0.00608458
-0.00205733
0.00654022
-0.0105675
0.204941
-1.62468
1.41974
-0.00763367
-0.0138429
0.0103074
2.43969
-1.06369
0.0283855
-0.389532
0.306832
0.0543143
0.00188529
0.00365707
-0.00158325
-0.00272667
0.0158449
-0.0177043
0.0116368
-0.0159786
-0.00138193
0.24152
0.427421
-0.450998
-0.00210595
-0.00162424
0.00129479
0.269325
-0.44871
0.991548
-0.107479
0.0052448
0.0905452
0.0116885
-0.000399917
-0.00139553
-0.0102579
0.0231439
0.011662
-0.262839
0.0133205
-0.0288636
-0.0147605
0.0303036
0.0319862
-0.0770252
0.0528974
-0.00785842
-0.000304573
0.000155353
-0.0174424
-0.00481997
0.0195509
-0.0233436
-0.01171
0.0155028
0.591878
0.253251
-0.0236392
-0.00350912
0.0122304
0.014918
-0.752466
2.35311
0.0154413
-0.0239866
-0.0168194
0.0253647
0.26287
-0.00918783
-0.00335071
0.0123075
-0.0199906
0.0105321
-0.00284894
-0.359833
0.270585
0.396324
0.00322985
-0.00321447
-0.0452917
0.0452763
0.0727708
0.0252914
-0.0532441
0.032166
-0.0411461
0.0323904
0.0557944
-0.0406063
-0.00064759
-0.0240105
0.0161771
-0.0183956
0.026229
0.0212563
0.0114122
-3.99018e-05
-0.0326286
0.011864
-0.0267284
0.0337701
-0.0189057
0.0104993
0.00267408
-0.0138282
0.0146478
-0.00385873
0.00303914
1.20146
0.290861
-1.60989
0.117563
-0.0168494
0.0159746
-0.0106005
0.0114753
-0.000963708
0.000350797
-0.576647
0.27592
0.53223
-0.0459871
-0.0746184
0.0355196
0.0850859
0.0356566
0.189581
-0.061481
-0.163756
-0.00289853
-0.011727
0.010657
0.0039686
-0.00526451
0.00262097
-0.0567905
-0.0157297
0.053369
0.0191511
0.00932437
-0.0598297
-0.00718638
0.0576917
-1.40085
0.29486
-0.187608
0.0184981
-0.018694
-0.000158601
0.000354464
0.840663
-0.586411
-0.374238
0.119986
0.00378771
0.00154837
-0.00351744
-0.00181864
-0.234556
0.166316
0.0466154
-0.0102569
-0.0616056
0.0159693
-0.0195978
-0.013497
0.242741
-1.30176
-0.494883
0.000334731
-0.00127576
0.0015897
0.03571
-0.0167289
0.0144993
-0.0334803
0.326323
-0.379645
0.292973
-0.239651
0.144522
0.0252455
-0.14001
-0.0297573
-0.0195652
0.00460204
-0.00862078
0.0132926
-0.00905441
0.0245271
0.446598
-0.405416
-0.432673
0.0969238
-0.0364223
-0.131126
0.0706247
0.107055
-0.146227
-0.114791
0.453441
0.141963
0.0316914
-0.627096
-0.284432
-0.426896
0.258484
-0.0201792
-0.0065246
0.0155682
0.0111355
-0.00871619
0.005527
0.00987865
-0.455249
-0.163481
0.150886
1.0029
-1.08746
-0.0487259
0.0343025
-0.0219423
-0.000160595
0.00109432
0.000174126
-0.00110785
-0.00729091
0.0100333
-0.00308877
0.00238118
0.00230465
0.0529801
-0.00883555
-0.0179502
-0.000514057
-0.00287143
0.00201976
0.00136573
0.0329256
0.00158043
-0.0264729
-0.00767057
0.0067408
0.02411
-0.0231802
-0.0300512
-0.00704587
0.0120276
0.0250695
-0.00127068
-0.000682702
0.00117399
0.000779387
0.789786
-1.08129
-0.393023
0.0202693
0.0018566
0.00248066
-0.869774
-0.0104008
-0.00281894
-0.0289938
-0.00712427
-0.101025
-0.0473143
0.0372178
0.0253986
-0.0153021
-0.764971
0.565427
-0.308741
0.000457347
-0.000189949
0.0149042
-0.0151716
0.134251
-0.188632
-0.00486565
0.00448838
0.00500909
-0.00463182
0.00206323
-0.0139765
-0.00348958
-0.0135013
-0.000481215
0.0136827
1.06091
1.02439
-0.946994
0.0158041
-0.0134843
0.0349914
-0.0373112
-0.00466503
0.00710101
-0.00811638
0.00453042
-0.00155366
-0.015876
0.0192342
0.0190197
-0.0223779
-0.00084228
0.021031
-0.00139623
-0.0187925
0.0105325
-0.000724748
-0.00155596
-0.00825175
0.748132
0.932932
-0.775192
0.460364
-0.255798
-0.335744
0.417521
0.931221
1.09906
-1.50299
0.366741
0.00609432
-0.00426672
-0.0162191
0.0143915
-1.22706
0.958508
0.759071
-0.490516
0.012675
0.30297
-0.226874
-0.0302318
0.0309145
-0.0010793
0.00897262
0.0284194
-0.0219507
0.113253
-0.106569
0.0329617
1.32598
-1.21702
-0.838501
0.729548
0.000559186
-0.00029525
-8.54372e-05
-0.000178499
-0.000357225
-0.000687327
0.000353026
0.000691527
-0.122289
-0.882845
1.07196
-0.0668258
-0.000840439
-0.00144872
0.000649004
0.00164015
0.0132108
-0.0194198
-0.00849166
0.0147007
-0.0102595
0.00600808
-0.00126893
0.000476981
0.000441448
0.000350506
-0.00705025
-0.846659
0.983596
-0.129886
0.0302996
-0.0674588
-0.0161505
-0.00108624
0.0201362
-0.0198922
-0.0431157
0.0486912
0.0102286
-0.0118963
0.0257794
0.0019197
0.0589316
-0.0298623
0.0172646
-0.0463339
-1.67978
0.215596
-0.516316
-0.00483383
0.00711927
-0.0124637
0.0876677
0.0243329
-0.0284298
-0.0835708
0.0117301
-0.00693328
0.0113532
-0.0362694
0.0379912
-0.0245261
0.230533
0.178772
-0.213829
-0.268219
-1.34316
-0.232469
1.47268
-0.103173
-1.13703
-0.0565012
0.0706258
0.0397034
0.0133847
0.015968
-0.00353903
-0.00690181
0.00153424
0.00117239
-0.00069249
-0.00201414
0.345087
0.0978564
-0.246981
-0.195962
-0.116999
0.365776
-0.260312
-0.0346222
0.00335175
0.0559095
-0.0246391
0.0306674
-0.00676683
-0.00140128
-0.0224992
-0.634361
-0.00463043
-0.00399524
0.004683
-0.016785
-0.011167
0.0030354
-0.018109
-0.0163104
0.0313839
-0.0129902
-0.000567991
0.0119729
0.0295312
0.0151102
0.00108732
0.020341
-0.0124575
-0.00897083
0.255182
1.80143
-1.26682
-0.00151161
-0.00984665
-0.0264575
-0.00218644
0.000732829
0.00217533
0.0134462
-0.0168124
-0.0528937
0.106269
0.0427446
-0.0961196
0.0214971
0.0641427
-0.00465822
0.0204079
-0.00345528
0.00118156
-0.00128721
0.000526414
-0.000420762
0.0743199
0.0962403
-0.0606837
-0.00339175
-0.00134315
0.00134449
0.00319916
2.22313
0.00193527
-0.00263571
0.00169776
0.00208076
-0.00154885
-0.00203181
0.00798822
-0.00968666
0.0033295
-0.00163106
0.0130994
-0.0094749
-0.00464857
-0.0215357
0.0169123
-0.152332
0.168191
0.126405
-0.142264
-0.00468274
0.0611404
-0.0652855
0.00882785
1.94671
-1.22566
-1.12385
-0.00343799
0.000451133
-0.00124045
0.00471099
-0.00504618
-0.00492213
-0.0157297
-0.0661189
0.0193951
0.0624534
-0.0762161
-0.0154
0.104445
-0.00139861
-0.000600773
-0.000222685
-0.779301
0.401131
0.647495
-0.00763135
-0.0138935
0.0104675
0.00127643
-0.000774986
0.00328626
0.445987
-0.577386
0.551138
-0.419738
-0.0107899
-0.00072531
-0.000234515
0.00568993
-0.00962174
-0.000723132
0.00465494
-0.264324
0.229138
0.115023
0.0309148
-0.0108721
0.133106
0.299547
-0.235007
0.00628059
-0.00664513
-0.00295102
0.00331556
0.00822238
-0.0271695
0.0167747
0.00217244
9.61661e-05
0.000259364
-2.79643e-05
0.0133461
0.0518992
0.116065
-0.181311
-0.01182
-0.00933695
0.0149838
0.00617318
-0.0337642
0.0689178
0.023778
-0.970265
1.42607
-0.905622
0.0441774
-0.160956
-0.0634517
-0.000483745
-0.00323188
-0.00585942
-0.000467524
0.00487098
0.00145597
0.00359966
0.0251672
0.0063633
-0.013546
-0.0200947
-0.00510753
0.00842949
0.0167728
-0.00953759
0.00514423
0.0117748
0.00423433
-0.0109324
-0.00507679
-0.00041268
-0.0215015
0.0026854
0.0192288
0.0214951
-0.200526
0.031409
0.147622
0.00226994
-0.010917
-0.00897349
-0.00712
0.00580501
0.000541165
0.0147715
-0.0396958
-0.0152969
0.0402212
-0.0252604
-0.00354117
-0.00763715
0.00821833
-0.00819976
0.00761858
-2.14587
-0.624985
0.00897675
0.0108449
-0.0130781
1.14636
-1.05975
0.471146
-0.557754
-0.0184328
-0.0247516
0.0188558
0.0243285
0.518222
-0.207713
0.227918
0.0577354
-0.0417938
-0.0541112
0.0643386
0.0315664
-0.000207069
-9.60806e-05
0.000396961
-0.013578
0.000281116
-0.0164844
0.0183444
-0.001506
-0.000353948
1.02993
-0.364023
-0.822352
0.138728
0.379443
-0.342394
-0.175777
-0.548909
-0.773177
0.51946
0.000786802
-0.000448959
-0.00615206
0.00527366
-0.00448597
0.00536436
-0.00241212
0.0291172
-0.00314581
0.00224783
0.00221985
-0.00132188
-0.0835208
-0.0614258
0.0884455
-0.00386143
-0.027075
0.0261331
0.00480338
-0.0133651
-0.00909413
0.021525
0.000934189
0.0216417
-0.00890106
-0.0136678
0.000927161
-0.0141153
0.0022028
-0.0427682
0.0439923
-0.0034269
0.083223
-0.144854
0.125464
-0.0638327
-0.831048
-0.364347
0.819631
-0.00178336
-0.000752794
0.00114858
0.00138758
-0.0226317
0.0207495
0.115117
-0.0441485
-0.0120776
0.0115558
-0.00182121
0.00234298
0.0198791
0.00355444
-0.00717797
-0.0162556
0.0213244
-0.0227427
0.00398296
-0.00256467
0.0185525
0.0651574
-0.0226366
-0.0610733
0.411793
-0.31248
0.851073
-0.108174
0.122839
0.0418381
-0.0565032
0.0231483
-0.023099
-0.018011
-0.24921
0.852569
0.0410509
-0.64441
-0.57395
0.0765977
0.412074
0.0382194
-0.0450096
-0.0389537
0.0457439
-0.014292
0.0480068
-0.0189434
0.0076647
-0.0132714
-0.00423866
-0.00678684
0.0271461
-0.034442
0.174137
0.0572222
-0.187728
-0.00231974
-0.00266985
0.000785041
0.00420455
3.04382e-05
0.000310301
0.00164132
-0.0129651
-0.00443578
-2.73192e-05
-0.0481233
0.0496334
-0.0102583
0.00874814
-0.00237027
0.000878151
-0.000291239
0.333324
-0.319314
0.00573207
0.00136431
-0.00108942
-0.000608766
0.000964747
-0.00155677
0.000220732
0.000371293
-0.000623987
0.00119649
-0.0132731
0.0235691
0.00342467
0.00182068
-0.00224741
-0.00299794
-0.0166638
0.0196531
-0.00589149
0.00290216
0.968778
-0.112663
-0.863165
-0.0039438
-0.00182918
0.000508468
-0.0197907
0.0199073
0.265833
0.228749
-0.229951
-0.264631
-0.826383
0.48867
0.803954
-0.00106087
0.00607518
0.00297391
0.745477
-0.943296
0.807662
-0.609843
-0.00277944
0.00260792
-0.0120267
0.0121982
-0.000771577
0.000342391
0.00182626
-0.0234984
-0.00352467
0.00572671
-0.273257
0.606137
-0.612235
-0.00664253
-0.00480373
0.00650025
0.004167
-0.0010182
-0.00896754
0.00581874
-0.0612077
0.0329886
0.0724358
-0.0442167
0.0112543
0.0181736
0.227762
-0.541212
-0.465851
0.0328499
-0.0298307
0.0263112
-0.00283415
0.0153463
-0.016596
0.00408392
0.0101044
0.00789632
0.0202133
0.017078
-0.0240712
-0.01322
0.0462188
-0.0376134
-0.0216682
0.000302957
-8.62187e-07
0.000165924
0.00442081
-0.0143348
-0.00560916
0.0211598
-0.0191787
-0.028573
0.026592
-0.0276662
-0.0332383
0.0276621
0.701403
-0.332702
-1.02481
0.910546
0.310075
0.0556203
0.0905138
-0.0470427
-0.0990914
-0.093204
-0.376427
0.273648
-0.0191402
-0.206807
-0.00712873
0.233076
0.00284381
0.013058
-0.0140242
-0.00187767
0.48225
-0.440056
0.208353
-0.0115038
0.0066043
0.00248336
-0.00554786
0.00831293
-0.00524843
0.0535221
-0.0449027
-0.0141441
0.00552465
0.00385457
-0.00091181
-0.00187204
-1.36703
-0.120327
1.51812
-0.0087958
0.377005
2.05138
-0.731576
0.000286567
-0.00222871
0.00144648
-0.0204514
0.0092422
0.022305
-0.0959649
-0.0392162
0.0664233
0.0687578
0.0209296
0.00566428
-0.00698582
-0.0476913
-0.00497129
-0.0143673
0.00997978
0.00214756
-0.0149261
0.0158313
-0.000656118
-0.000249093
4.50938e-05
0.000823825
-0.000589924
-0.000278995
0.00557532
-0.00693391
0.00680535
-0.00733093
0.0122118
-0.0116862
0.0174798
0.0084552
-0.0060011
-0.0199339
1.79458
0.208614
-0.00381826
0.00544944
0.00181186
0.00329558
-0.0148811
-0.00534662
0.0169321
-0.0333213
0.0428743
-0.0169824
-0.377974
-0.128264
0.361653
0.144585
0.00512493
0.00567309
-0.00739577
-0.00340225
0.0637479
0.0168549
0.0748528
-0.0880587
0.0816736
-0.0684677
0.00980398
0.0237808
-0.0540362
0.240562
-0.153965
0.646626
0.00318147
-0.0184946
-0.023522
0.0301573
-0.0277372
0.0211019
-0.0142131
-0.0115713
-0.372242
0.788103
0.0167454
-0.000783853
0.00393517
-0.127258
0.0167771
0.0745105
0.0359707
0.00642255
-0.00693461
0.00300194
0.026485
-0.00915821
0.00155817
0.000291168
0.000723902
-0.000777115
-0.000705179
0.000200079
-0.00137262
0.00187772
-0.525676
-0.419084
0.976407
-0.0316474
-0.000848694
0.00247368
-0.00273519
0.0711615
0.477497
-0.231099
-0.31756
-0.00548635
0.000692735
-0.00106581
-0.00417557
0.00566626
-0.0541868
0.0526962
0.233913
-0.409665
0.37665
-0.0698681
-0.0167138
0.0231284
-0.801034
0.642892
-0.17178
0.329921
0.0826147
-0.159252
1.20322
-1.12658
-0.0310302
0.00490703
0.0328572
-0.0067341
0.0960269
0.0869045
0.916126
0.00424582
0.00671414
-0.00249518
-0.244947
0.230407
0.280374
-0.11921
-1.54644
-0.00321726
0.000562506
-0.000491054
0.0125154
-0.0068399
0.00926891
-0.0184566
0.0452535
-0.0248498
-0.00194713
0.387218
-1.54554
1.29838
0.816498
-0.42196
-0.57654
0.0522187
0.00545863
0.011446
0.0330506
-0.058947
-0.04211
-0.0195279
-0.0913294
0.0412662
-1.61934
-0.221028
-0.054817
-0.0172421
0.0247448
0.00201528
0.00776684
-0.00701102
-0.0027711
-0.00181258
-5.9319e-05
0.00139754
-0.000856785
-0.00359158
0.00369823
0.000750131
0.000519153
0.000152909
0.000395968
-1.07007
-0.716749
1.00309
0.783731
0.0669291
-0.0141594
-0.0690932
-0.0144056
0.0255323
0.00216597
-0.366383
0.398939
0.127915
-0.160471
-0.00512114
0.00476349
0.0199529
-0.183163
0.0771948
-0.108859
-1.84435
-0.428253
-0.000151468
-8.28878e-05
0.00120355
0.0118851
0.00210344
-0.00926215
0.00478086
-0.00362941
-0.0039469
0.00279545
0.364485
-0.343482
0.364656
-0.000359626
0.00144712
1.86413
0.669983
-1.39612
-1.138
0.0398565
-0.0740054
0.0409727
-0.0368696
-0.0081093
0.00400619
-0.0190012
-0.0467517
0.0252581
0.0114843
-0.0649861
0.144411
-0.0909097
0.00794157
-0.0193943
0.0204349
-0.00898216
0.245665
1.7859
-0.0106026
-0.173882
0.0467184
0.137766
-0.00142562
8.79244e-05
-0.0303924
0.000641128
-0.00048059
-0.0107226
0.0119018
0.0179779
0.187746
-0.261192
-0.171502
-0.00242651
-0.000740083
0.00148916
0.00167743
1.15128
-1.06133
1.52918
0.142955
-0.0183517
-0.161104
0.0365007
-0.0318891
-0.00240736
-0.022494
1.31932
-1.14717
0.00896611
-0.00447102
0.00285223
-0.00734732
-0.0698166
-0.146675
0.174236
0.0422558
-0.0770925
-0.35704
0.210877
0.223255
0.0054441
-0.00591636
-0.000489487
9.69217e-05
-0.00163469
0.0132427
-0.00164034
-0.0143291
-0.00758663
0.0490107
-0.00413133
-0.000611605
0.000365738
-0.0167586
0.00738357
0.00997841
0.0178982
-0.0232217
-0.0131092
0.000308591
-0.000163966
-0.000366861
-0.272475
0.0684219
-0.0539833
0.00897895
-0.0117601
0.208715
-0.183003
-0.10547
0.0797575
-1.27094
-1.33752
-2.06283
2.31959
-0.0071739
-1.01054
0.958764
-0.00359433
0.000959239
-0.0146837
0.0173188
0.0331583
0.00421854
-0.0349729
0.0109033
-5.19003e-05
-0.00755578
-0.0333774
0.0389664
0.0822407
-0.0878296
0.0126679
0.0180866
-0.0114852
0.00700032
-0.00731284
-0.0158457
0.00649481
-0.65709
0.448307
-0.816027
-0.272965
0.247955
0.000682661
0.000889757
-0.112147
0.144423
-0.0552837
0.0183223
-0.0103633
0.00795216
-0.0159112
0.00882301
0.0051647
0.0370916
0.0709739
-0.0398107
-0.0682547
0.0067812
-0.0252276
0.0171343
-0.058382
0.0462032
0.0254525
-0.0234226
-1.06175
-0.0986177
0.144176
0.0818914
-0.12745
0.0148824
-0.0191099
0.00111468
-0.00182534
0.000615215
9.54525e-05
-0.171741
0.250465
-0.0325304
-0.0461929
-0.0173491
0.0223188
-0.0284917
-0.00951935
-0.0104522
0.0040716
0.0305468
-0.050466
0.152905
1.06953
-0.0222009
0.139088
-0.0116752
0.0103814
-0.018303
0.0195969
0.0125331
-0.0458379
0.0622344
0.134709
-0.0817918
-0.0414328
-1.66896
1.76273
0.329437
-0.0409088
0.097021
-0.066357
0.0102448
-0.000454158
0.000227216
-0.000204613
-0.0221417
0.0308147
0.00476793
-0.0134409
0.0956686
-0.149068
-0.233998
0.0792221
-1.1078
-0.00438344
0.0151886
0.00667463
-0.0859266
-0.0218251
0.138594
-0.0308422
0.00973423
-0.00520183
-0.0161514
-0.335151
0.41235
-0.233405
0.156206
-0.000181228
-0.00162419
0.00095999
-0.00666272
-0.00371127
0.00419184
0.00618215
-0.0692988
0.0259471
-0.00192529
-0.000634301
0.00018932
0.0329744
-0.00791706
0.0159154
0.196484
-0.384778
0.0239447
0.119855
-0.0073503
-0.0165836
-0.00983238
0.00499563
0.00781606
-0.00297932
0.00580411
-0.00983042
-0.000345013
0.0686312
-0.0138624
-0.000704803
-0.054064
0.828372
0.887404
0.0183842
-0.019745
-0.00320721
0.010536
-0.00600821
0.00105827
0.000250203
-0.00145994
-0.0241391
-0.00452331
0.00632287
0.0223395
0.00755769
-0.00728704
-0.00671253
-0.0121891
0.0111611
-0.00450981
0.00553783
0.190372
0.286094
-0.7043
0.628177
0.0160222
-0.00464394
0.00298849
-0.00560382
0.00725928
-0.00224748
0.00615886
0.0335421
-0.0374534
0.00462037
-0.00409447
0.0435639
0.027324
-0.0728518
-0.0298587
0.0224418
-0.0110398
0.00514211
-0.00666967
-0.0206142
-0.00889406
-0.0101774
0.00619997
0.0634507
-0.151376
0.0201124
0.0678129
-1.86909
1.56835
1.23598
0.0160232
0.0106454
-0.194323
0.167654
-0.431885
0.456024
-1.10542
-0.704333
-0.684009
0.0383236
0.00471714
1.9093e-05
0.000222923
-8.42874e-07
-0.000241173
0.0184113
-0.0664517
0.0419314
-0.0162379
0.0155359
-0.00856154
0.00926355
-0.00139218
0.00927506
0.509664
0.179086
-0.454836
-0.258763
0.239839
0.10737
-0.0884465
0.00966286
-0.045749
-0.0103089
0.046395
0.0262084
-0.0255272
-0.00219283
-0.00501385
-0.00475665
0.00213335
1.15153
-1.08066
0.00558064
-0.00988241
0.00839805
-0.00409628
0.00800488
0.00736369
-1.03734
0.915659
-0.418073
0.2265
-0.140362
0.283641
-0.146558
0.152915
-0.230241
0.223885
-0.0169986
0.000757842
0.0145281
0.00171265
0.020312
-0.0635051
-0.064981
-1.75553
0.237173
0.013294
-0.0185579
0.00475562
-0.00335165
-0.0249024
-0.000280149
0.000333005
9.65069e-05
-0.000149363
-0.00478104
-0.0151608
0.0157377
0.0042041
-0.00303054
-0.0160882
-0.155916
0.0490114
0.148841
-2.25528
-0.291642
1.57666
-0.00197115
-0.00129605
0.000884125
0.00238307
0.0888962
0.00547555
0.00261659
-0.00776929
0.191267
0.0183878
-0.157765
-0.00040332
-0.000271657
-0.393585
0.494732
0.0975558
-0.00185814
-0.00312578
0.00224649
0.0531962
-0.0359244
0.0694515
-0.0118339
-0.00804162
0.00238971
0.00193077
-0.00223973
0.223733
-0.141098
-0.126709
0.0440747
0.0062447
0.00978243
-0.00305732
-0.00121505
-0.000933151
0.00122009
-0.620106
0.241087
-0.00258307
-0.000719681
0.0114307
0.00169233
-0.00754244
0.0149811
0.00468371
-0.0137639
0.0799609
-0.9279
0.524588
0.32335
-0.0332595
0.280144
-1.00291
0.992371
-0.262573
0.273108
0.0112444
-0.0191268
-0.0245719
0.00707183
0.0279512
-0.0104511
0.188453
0.137206
-0.166559
-0.1591
-0.0243994
0.0407209
-0.0913223
0.123169
0.0469753
-0.200027
-0.333048
0.22168
-0.0207137
0.183341
-0.184828
-0.00254352
0.00928816
-0.00289789
-0.00940175
0.0083171
0.104541
-0.1067
0.0118358
0.0132231
-0.00307255
0.0138523
-0.0157999
0.00526957
-0.00332193
0.0272388
-0.0311546
0.0175653
0.00746118
0.0302948
-0.0318134
-0.00594252
0.00437551
-0.00387705
-0.0053641
0.0399432
-0.00431264
-0.0983276
0.0329564
-0.0285296
-0.0164204
0.075627
0.0856583
-0.126011
-0.0352746
0.0465412
-0.0131568
0.0176653
-0.0510498
-0.000394687
-0.00026654
-0.965857
-1.65411
0.940186
-0.151207
0.165825
-0.0106017
-0.00530337
0.00073114
0.00584866
0.00728669
-0.0308209
0.0282898
-1.64247
0.0439736
-0.017734
0.0140215
0.159388
-0.147323
-0.00876905
0.0479857
0.730107
-0.769323
-0.14578
1.03422
-1.3662
0.477757
0.0368854
-0.0230639
0.0134173
0.77744
0.505472
-0.516381
-0.766531
-0.408424
0.419114
0.0354815
-0.046171
-0.259147
0.427789
0.647856
0.0744657
-0.105665
0.13574
0.251529
-0.338866
0.440271
5.84219e-06
0.000352818
-0.000660858
0.00174419
0.000667523
0.00208119
-0.000960986
-0.00189179
0.0180795
-0.0160484
-0.0142761
0.279304
-0.395426
-0.000185008
-0.000176557
0.0137826
-0.0136724
0.0713521
0.0299914
0.00981435
0.140055
-0.137018
-0.0128512
0.00803248
-0.275021
0.0537183
0.21327
0.653039
-1.14602
1.05151
-0.558534
-0.000887382
-0.0138225
0.0096315
0.00507842
-0.510968
0.251957
-0.883379
0.000242274
-0.0132605
0.0131347
-0.000116441
0.000282445
0.000841407
0.000410387
0.0252385
-0.0140626
-0.0741391
0.0629632
0.00574287
-0.00118801
-0.00757343
-0.0243316
0.0282106
0.0036944
-0.0101092
-0.000306282
0.0107926
-0.0774547
0.0860197
0.0330241
-0.0415891
0.0378082
0.0162831
-0.0385141
-0.0155771
-0.00918094
0.00631865
-0.0107449
0.00188871
-0.0028811
0.00740779
-0.0253921
0.0360554
-0.0363223
0.025659
0.010169
-0.0376832
0.0348009
-0.00282571
0.0112991
-0.00131024
-0.00810352
0.0165003
-0.000109326
-0.0214985
-0.00457115
-0.0204034
0.00223189
-0.00203351
-0.00298802
0.0281007
-0.00204164
-0.00153502
-0.0245241
0.0030005
0.000637513
0.019151
0.0446361
-0.0281834
-0.0579812
0.0415285
0.0219772
0.000178484
-0.00152429
0.0059119
-0.00702261
0.00670089
0.00272268
-0.000140759
-0.00325401
0.000672097
0.072204
-0.0577359
0.0636564
-0.0781245
-0.00294758
0.00109301
-0.0230056
0.0248602
0.0115831
0.0326578
0.685684
0.795539
-0.402285
0.53527
0.400679
-0.695387
-0.0269997
0.00470085
0.0579439
-0.0981741
-0.0295864
0.00897159
-0.00771293
0.00255739
-0.00381605
-0.00397818
0.00219362
0.00542512
0.0434095
-0.0213302
0.0559383
-0.0780175
-1.23116
0.972591
0.197707
0.00122054
0.000883638
0.0010012
0.00105356
-0.000861276
0.014576
-0.0135336
0.532001
-0.571137
0.00543036
-0.00363006
0.00354994
-0.00535024
0.00365672
-0.00514132
0.00636338
-0.00087579
-0.00193029
-0.00355731
-0.0871389
0.0471996
0.150162
-1.92357
0.770082
-0.0017518
-0.00189424
-0.0448314
-0.00662913
0.0365782
-0.00369998
-0.00336375
-0.00969491
-0.922915
0.253048
0.680298
0.00701226
0.000855415
-0.00259674
-0.000437405
0.00721056
-0.0430427
-0.00618297
0.0420151
0.000304416
-0.00118278
0.000931168
-0.0172876
0.00942351
-0.0360317
0.000955583
-0.000972572
0.00107526
0.0669582
0.0170231
-0.0174805
-0.0665008
0.0125428
-0.0117188
-0.0026001
0.00177609
1.74542
-1.23183
0.075765
-0.589356
-0.074038
-0.0760683
0.108256
0.0418502
-0.0104759
-0.0315658
0.0390112
0.00106896
-0.000696393
-0.00751794
0.0183542
-0.0101938
-0.000642483
0.0131001
0.010166
-0.00162444
0.0558424
-0.0457502
-0.0272325
0.0171403
0.048563
0.237282
-0.0308915
-0.254954
0.000136374
0.00040031
-0.000245516
0.934092
-0.432677
1.80922
-1.31754
-0.0264428
0.0186333
0.0220752
-0.019964
-0.000116853
0.00190192
-0.00185709
0.026182
-0.0203173
0.00824931
-0.0149995
-0.0143693
-0.00889309
0.00715218
0.0161102
0.00532518
-0.0313062
0.0304944
-0.00451333
0.776482
-0.380791
-0.00937183
0.00626586
-0.00314381
-0.0117767
-0.0287938
0.0232214
-0.000324426
-0.000384491
-0.00139698
0.00140129
0.000107927
0.0561385
1.25118
-0.772386
0.764183
-0.00213354
0.0168713
0.019551
-0.495244
-0.356871
0.454266
-0.0168607
0.00909726
-0.00396165
-0.027367
-0.0125619
0.0255734
0.0143555
0.0114138
-0.0165758
-0.101614
-0.0801464
0.103188
0.0785718
0.0030801
-0.0107109
0.000968094
0.010752
-0.0242171
-0.0154571
0.0637429
-0.6397
-1.69424
1.4048
0.929133
0.000554469
0.000682265
-0.000552211
-0.000684523
-0.070707
-0.286821
0.447784
0.106517
-0.093936
-0.00230984
-0.0324129
0.0305174
-1.03773
-0.00258989
-0.000827584
-0.0066935
0.225818
0.164767
-0.119769
0.000509111
-0.000235636
0.00163544
-0.0374353
0.0121606
0.0432898
0.0390886
-0.0277769
-0.0546015
-0.323138
0.321645
-1.09042
1.41682
0.520681
-0.00117028
5.73835e-05
-0.00119613
0.00150033
-0.00075867
0.0784416
0.22656
-0.0668497
0.182509
-0.189751
-0.0452311
-0.0216494
-0.000828585
0.0314506
0.00419877
-0.0330211
0.0343977
-0.0304539
-0.0369677
-1.34109
0.331369
0.0371883
-0.148634
0.164642
0.0659206
-0.0466409
0.0472825
-0.0665622
0.146604
-0.073711
0.0566591
-0.187092
0.0440127
0.152894
0.0249089
0.000550697
-0.0130777
0.00276381
-0.0228308
0.0184523
0.0134784
0.000201708
-0.0121404
-0.00153977
-0.000719156
0.00251359
0.000228364
-1.7941
-0.62003
1.31725
1.09689
1.34557
-0.0253123
8.03009e-05
0.0127946
-0.00897041
0.0150265
-0.0188507
-0.0110025
0.0101596
-0.00811091
0.0223393
0.0390357
-0.00576012
0.00861595
-9.03651e-06
0.000687735
-0.00100312
0.164672
-0.289535
0.0263266
-0.0224462
0.452635
1.03717
-0.00209095
0.00286597
-0.00110465
-0.000277223
0.00137284
0.0182116
-0.0114735
-0.0119918
0.0052538
-0.0329359
-0.00767633
-0.00167811
0.0013623
0.000198951
-0.0001487
0.000206956
0.00810978
-0.00801543
1.37164
-0.993919
-1.34358
0.011178
-0.0206623
-3.50127e-05
0.731352
0.61348
-0.434286
0.0093504
-0.000874241
-0.00933446
-0.000119389
-0.0181819
-0.0110049
-0.00405733
0.00577222
0.00929004
0.226763
0.653321
-0.937162
0.0570773
-0.00157729
0.000820446
-0.00111707
0.00187391
-2.16277e-05
-0.00297822
0.000136369
0.00286348
1.54677
0.841252
-0.206651
-0.00157249
0.00124763
-0.000592932
0.000917787
0.172821
-0.00680377
-0.0009084
-0.000620712
0.0010327
0.000496408
-0.00832173
0.54591
-0.0740486
-0.333133
-0.00174611
-0.000116137
0.00134819
0.0158721
-0.0199314
-0.0220002
0.0260595
0.0276008
0.0305339
-0.0438834
-0.0142513
0.00584974
0.0611798
-0.0204883
-0.00561771
0.00609738
0.00708775
-0.00359506
0.00230964
0.00383458
-0.00484368
0.14232
-0.168352
0.01185
-0.00937707
0.0106563
-0.0131292
-0.0162098
0.0833983
0.0204791
-0.00765646
0.00810457
-0.00260769
-0.00832537
0.0247235
-0.0366085
0.0395641
0.0810417
-0.0204671
0.000518759
0.0155049
0.000974334
-0.000919174
-0.0012756
0.0158511
-0.0197657
0.00519018
-0.000394941
-0.000240829
0.555069
0.0422563
-0.191943
-0.405382
-0.000211058
0.00189165
-0.00233004
0.000649449
0.402482
0.494897
-0.496701
0.0520015
0.0304376
-0.049214
-0.0332252
0.184135
0.0658837
-0.0749799
-0.175039
-0.00579053
0.00369383
0.0023727
-0.000276004
-0.0203147
-0.00384307
-0.00138819
0.00421255
-0.0252255
-0.00914404
0.0188681
0.0155014
-0.00419008
-0.000640019
0.000886303
0.00137274
0.0143882
0.00334771
-0.00360577
-0.862882
0.879418
-0.453211
0.436676
-0.00968916
0.00344035
0.00679
0.015037
-0.0105727
0.000546117
0.00045952
-0.000701222
-0.16138
0.240638
-0.0983977
0.00737233
0.0108119
-0.00768496
0.274295
-0.173214
-0.218081
-0.0121717
0.0186363
0.00703191
-0.319942
0.315892
1.15041
-0.331142
-0.704509
0.0327447
0.0138722
-0.0130929
-0.0146484
-0.0183683
0.0195223
0.0142059
-0.0153598
-0.491793
-0.256512
0.124121
-0.0124302
-0.000259595
0.0124151
-0.00419349
0.0181138
-0.0118267
-0.00209361
-0.205051
0.756092
0.242178
-0.79322
0.0104255
-0.00344081
-0.00734027
0.000355593
0.938128
-0.525295
-0.0692713
-0.343561
0.00596388
-0.00438933
-0.00535172
-1.27567
-0.689284
0.170851
-0.0104216
0.010459
-0.00596974
-0.000219048
0.000750015
0.000406067
-0.000452973
-0.00042937
-0.00828347
0.0745037
-0.0637151
-0.00250521
0.0291422
0.00418496
-0.0251646
-0.00816254
0.111695
0.0667648
-0.0207279
0.00141615
0.0373014
0.0625634
-0.02068
-0.057613
0.00105157
-0.00159017
0.0520395
-0.0436824
0.000160086
-0.00137204
0.00134174
-0.104028
0.106195
-0.0623211
-0.00162982
-0.0148118
0.00141723
0.04139
0.0603319
-0.054418
-0.0536348
0.0789576
0.0568596
-0.0821824
0.0526055
0.181642
-0.00185029
0.00084715
-0.000553634
0.753968
-0.0749873
-0.0120803
0.0123181
-0.000514769
0.0543457
0.0261364
-0.0108345
-0.0213202
0.00601823
-0.160401
0.0893788
0.230833
0.00383067
-9.7376e-06
0.0129245
-0.0138111
0.0205813
0.0134431
-0.00280596
-0.0100869
0.0101134
-0.000297158
0.00033635
-0.00837632
0.0143028
-0.00764923
0.00492989
-0.00293661
-0.00651776
0.00686448
0.00301749
-0.0100049
0.0195029
0.00152911
0.0682736
-0.0489462
0.0534434
0.382963
-0.702149
0.736707
0.0782764
-0.0527811
0.030347
0.660899
-0.726645
-0.0193741
0.00861863
-0.00112799
0.0118834
-0.0010148
0.0177756
-0.0489416
0.0145882
-0.00528737
-0.0142991
0.00499825
-0.896289
1.65799
-0.00605743
-0.00249175
0.00295051
0.00559866
0.0015252
0.00180122
0.0160331
-0.0229254
0.00338323
-0.000796872
0.000758515
-0.000197614
-0.0132461
-0.000551846
0.000230394
2.38236e-05
0.0019048
-0.00314927
-0.0064826
0.00772708
0.692751
-0.896444
0.578953
-0.545391
-0.0115839
0.0233341
0.00104438
-0.0211923
-0.00487462
-0.00724737
0.00511851
0.00700348
-0.0181282
-0.00969685
0.122591
-0.00257645
-0.00831946
-0.121643
0.121552
0.0253364
0.000240974
-0.000710987
0.000809918
-0.000339904
0.00533964
0.0200268
0.00680677
-0.0321732
0.00813057
-0.0482267
0.0384077
0.00168846
0.0865275
-0.0346632
-0.000783181
-0.00243153
-0.000120522
-0.000776554
0.000113651
-0.0285415
-0.0831519
0.76137
-0.742481
-1.00279
-0.377714
0.0125497
-0.0125794
-0.0133059
0.016207
0.00675017
0.499546
0.399558
-0.0507411
1.12157
0.520002
-0.966708
0.743469
0.0146947
-0.0134475
-0.012486
-1.3195
0.0550741
-0.0553819
0.0255463
0.00457282
0.000558801
0.00156359
-0.00101072
-0.00102831
-0.028021
0.0109252
0.0247112
-0.00296295
0.00175624
0.00435988
-0.00557838
0.000387971
0.0128873
-0.00473988
-0.00853542
-0.00727503
-0.0066975
-0.0775953
0.0809646
0.028156
0.0164627
0.0799193
-0.061644
0.00501347
0.0269658
-0.00386063
2.59234
-0.333294
0.0117127
-0.00153163
-0.0107277
-0.0128195
0.00269825
-0.131028
0.500085
0.131187
0.0014242
0.000821795
-0.000150884
-0.000844956
0.000174045
0.113701
-0.126554
0.00572826
0.290552
-0.119161
-0.218695
-0.00352458
0.0392734
0.0022841
0.00145814
-0.000394535
0.00444792
-0.0024603
1.37232
0.497553
-0.00996171
-0.0011369
-0.00141099
-0.135714
0.0971677
-0.0596055
0.0981518
-0.0306106
-0.0652528
0.211062
-0.0175468
0.0291393
-0.0288802
0.00120039
-0.00694865
0.00783982
-0.00209157
0.00337765
-0.00371749
0.00242103
-0.193789
0.116526
-0.0396781
0.744401
-0.638445
0.442368
-0.548324
0.474839
-0.470576
0.00874376
-0.00171202
0.000160606
-0.00150271
0.348445
-0.831672
0.337959
-0.905562
-0.678467
0.658502
-0.0340523
-0.182157
0.0891245
0.494962
-0.673111
-0.0218888
0.000420034
-0.00326623
0.024735
-0.00447739
0.00697537
0.0140023
-0.0225015
0.0857394
0.109583
0.0591503
-0.0484219
0.182148
-0.192877
-0.000989418
0.0025219
-0.0028752
0.0109907
-0.00818251
0.0110518
0.0196294
0.0695788
0.0061121
0.0759174
0.311452
-0.0968176
0.44867
-0.891986
0.769174
-0.325859
0.0670499
-0.0112712
0.00303078
-0.0158491
0.0217089
-0.00889059
0.0033001
-0.00287335
0.0030584
-0.00348515
-0.0172689
-0.00136519
0.239903
-0.495184
0.891761
0.508748
-0.85472
-0.188179
-0.399745
0.121494
-0.198887
0.26547
-0.0183683
-0.14558
-0.0043247
0.0045027
0.0061118
-0.0274175
0.00457522
0.00522445
-0.00529411
-0.00103362
0.00110327
-0.0240557
0.0189857
-0.000314736
2.41693e-05
3.16709e-05
-0.135607
-0.0761119
-0.555254
0.62914
-1.74285
-0.00203085
-0.00041978
-0.00156671
0.0123633
-0.006803
0.000874757
-0.00106734
-0.00254512
1.0402
0.0134521
-0.0211488
-0.0221619
-0.00138015
0.00963715
0.00216849
-0.00320917
0.00280449
-0.000983508
0.00192765
-0.000912489
0.00370164
0.00664038
-0.000668087
0.00586118
0.0391554
-0.0394722
0.00680133
0.320162
-0.197955
0.000549767
-0.00022465
-0.000639853
0.82906
-0.041678
0.00213242
-0.00374491
0.00610255
-0.00449006
-0.0915264
-0.0117952
0.436646
-0.00103027
0.00157541
-0.000671645
0.000126499
0.198178
-0.0135444
-0.184765
0.0866789
0.10561
-0.0328067
0.124147
-0.0234924
-0.0882989
-0.0123561
-0.0120587
0.00040477
0.00760934
-0.000344383
0.000122105
-0.00766901
-3.46801e-06
-0.000174856
-0.00188821
0.00161429
0.0122918
-0.00764478
-0.00522574
-0.00629116
-0.145493
-0.269765
-0.630262
1.04552
0.00629348
0.0041688
-0.000759058
-0.0158318
0.012422
0.0126359
0.0169682
-0.0192198
-0.0103842
-0.0373398
-0.031881
0.0187967
-0.000208923
0.000965306
-0.0632497
-0.414586
0.139545
0.338291
0.00177921
-0.00229874
0.000844092
-0.000324563
0.00695534
1.53509e-05
-0.00201893
0.000411113
-0.0115485
0.0106231
-0.0646216
0.114514
-0.0308397
-0.00243792
-0.0220602
0.0289199
0.039359
-0.0257583
0.0225008
0.0745719
-0.0713144
0.0121727
-0.00130457
-0.0385593
0.0217718
-0.00765711
-0.0207166
0.0192555
0.000637713
-0.00248094
0.0312359
0.00849045
-0.00302404
0.0114549
0.00179498
-0.00901552
-0.186278
0.588957
0.589692
0.0721485
-0.0675663
-0.000139406
-0.00444281
-0.0262625
0.0142399
-0.00238295
0.00197433
0.014244
0.0188581
-0.0103595
-0.00957308
-0.001332
0.000160356
-0.000405649
-0.000171384
0.00178838
-0.00177924
0.944777
-1.52439
0.57961
-1.03541
0.710701
-0.0326474
-0.0404104
0.0511393
0.0100308
-0.00873786
-0.0122955
-0.0181024
-0.0204156
0.00347456
0.00255344
-0.00649553
0.00696036
-0.0246982
0.0028198
-0.00394594
-1.28985
-0.0043426
0.0456415
-0.0350081
-0.00493102
-0.00570241
0.0127749
-0.00474313
-0.0110125
0.00298072
0.116278
0.0573392
-0.0521957
-0.121422
0.62829
0.266565
0.0110959
0.00997636
-0.012182
-0.00889022
-0.0318824
0.0439765
0.0445248
0.00642142
-0.0148591
0.0151754
0.0276792
0.0712871
0.00267819
0.0089488
0.00114794
0.343842
-1.03805
1.14288
0.146816
0.00169015
-0.0111106
-0.0139232
-0.00641099
0.00614092
0.00749873
-0.0178634
-0.0863075
0.0670722
0.0370986
-0.960456
-0.0576016
0.000179037
-7.39062e-05
-0.000442428
0.000337297
-0.00223696
0.0281711
-0.0404015
0.0144674
9.95381e-05
-0.0738804
0.274178
-0.687139
-0.579382
0.751609
0.514911
0.462857
-0.515357
0.498487
-0.0363037
-0.00035309
-0.00112719
0.037784
-0.0324038
-0.00652616
-0.0222778
0.0564718
-0.0515238
-0.0414665
0.0126156
0.00093499
-0.00938181
0.0382193
-0.0312412
0.0548887
-0.0618669
0.0882352
-1.75648
0.04911
-0.0780122
-0.106705
-0.0501764
0.00964933
0.00379566
0.0367314
0.0237376
-0.023943
0.0187402
-0.0185348
0.00403377
-0.0369749
0.00172917
0.357716
-0.865423
-0.00221785
0.0121146
0.0148349
1.0925
-1.02764
-0.419545
0.00900841
0.00222077
-0.00865173
-0.00257745
0.00122422
-0.00106826
0.0227163
-0.0255666
0.0548518
0.0150123
0.0182034
-0.00432074
0.0525729
-0.0810151
-0.0628801
0.0711727
0.110725
-0.0758142
-0.106084
-0.0175876
0.0128033
-0.0136553
-0.0194524
0.0273834
-0.354271
0.00244673
0.0117307
-0.0167386
-0.00182231
0.0296526
-0.0260578
0.0194362
-0.0103855
-0.0105543
-0.0226324
-0.047601
0.077946
-0.904297
0.918478
0.660265
-0.674446
-0.000546879
0.000105504
0.000169245
0.000703324
-0.00123948
0.00115541
2.09475
-2.53908
0.939289
0.00153454
-0.00139147
0.000111439
0.00625228
-0.00710202
-0.00211531
0.192604
2.42411
-1.59162
0.00142255
-0.000739845
0.000666461
-0.418557
0.234842
-0.13408
0.317795
-0.786743
-1.62242
0.00181487
-0.000143829
-0.00179759
0.00768718
-0.0104147
-0.0164077
0.00231134
-0.00284871
0.00307913
-0.00254176
0.0554613
-0.056738
-0.030841
0.0178265
-0.0211307
-0.0102737
0.0135779
-0.0221811
-0.806644
0.687779
0.022935
-0.0165601
-0.000821244
-0.0118561
-0.0242889
0.0219689
0.000605898
-0.00103829
-0.000774535
0.00120693
0.394914
-0.337335
-0.0908382
0.00122759
-0.00115453
0.00650237
-0.142135
0.153978
-0.152721
0.00422536
0.00224623
0.0138891
0.0103097
0.00147644
-0.0010736
0.000177531
0.0436913
-0.275325
-0.342316
1.59749
-1.698
0.000655099
0.00135667
-0.000593317
0.0394504
-0.415914
0.313214
-0.00311404
0.0149314
-0.00699598
-0.00482134
-0.0401919
-0.0304765
0.454518
-0.451635
0.0211624
-0.0144968
0.0318714
0.0205731
-0.019966
0.00215671
-0.0590211
0.0183306
0.321427
-0.280737
-0.00972877
0.00931564
-0.00446149
9.32712e-06
0.0019258
-0.589855
0.373243
0.765424
-0.548811
-0.00127949
-0.00665307
-0.000183826
0.0216519
-0.0344083
0.0284389
-0.552453
-0.489484
-0.726106
-0.599387
0.638803
-0.503042
0.0130838
-0.00791013
-0.00546021
1.42688
0.77487
0.0190913
-0.0168553
0.00290616
0.444737
-1.53238
-0.716739
0.00455513
-0.00727231
-0.0182881
0.0210053
0.011348
-0.00670766
-0.00530104
-0.000387001
0.00780693
0.00387913
-0.011815
0.0215291
-0.000525348
-0.000417879
0.0207469
0.00792019
-0.00618101
0.0326052
-0.0326706
0.0518093
-0.476977
-0.261971
0.0105463
-0.0202718
-0.000140814
0.000722252
0.454916
-1.08642
1.28454
0.00770388
-0.0104726
-0.0116005
-0.00173964
0.00122246
0.000113857
-0.0347219
-0.0921155
0.0134041
0.00810708
-0.018833
-0.086631
0.0596291
-0.0412744
0.0364978
0.0352143
-0.00569535
0.00460549
-1.49793
1.2573
-1.20445
1.31155
-0.947557
0.840459
-0.10039
0.0910878
0.0851295
-0.0290047
0.0211639
0.0188773
-0.0110365
-0.0149447
0.0112925
0.00476122
0.0136538
0.00132196
-0.274979
-0.88781
-0.00204104
-0.0134318
0.0641599
0.0127507
-0.00163968
0.00245872
-0.0186255
-0.000271545
-0.0184785
0.0559896
-0.00595114
0.000754428
0.242833
1.63809
0.0231361
0.0314499
-0.0597244
-0.0287806
-0.0336978
0.0146549
0.000674592
0.00129775
-0.547606
-1.06604
0.40543
1.20821
0.00839562
0.0728615
0.0211759
0.0533134
-0.0311995
3.95614e-08
-0.0415416
0.0356299
-1.76852
0.00392979
1.71567
0.0156695
0.0198256
0.00184528
-0.0147625
-0.0013192
-0.00319346
0.0310267
0.148199
-0.0847774
0.011044
0.00399183
-0.00136943
0.00211613
-0.00290715
-0.000169973
-0.779214
-0.148767
1.01291
-1.5979
-1.14771
1.84932
-0.0266056
0.0566011
0.055082
-0.00985411
-0.030202
0.0227803
0.0494545
-0.0337117
0.158394
0.013749
-0.014913
0.00105465
0.034343
-0.0197455
0.0124043
0.00915134
0.000120305
-0.0013211
0.263939
-0.933044
0.646923
-0.134084
0.0261441
-0.0791522
0.105432
-0.161401
-0.148182
0.204152
-0.00224559
0.00664366
-0.00753149
-0.00535663
-0.0259489
-0.0214503
0.0131352
0.0172082
0.871465
-0.0650317
-0.0352028
0.697442
0.810797
-1.31128
-0.196959
0.00367884
-0.00484451
-0.00348836
0.00183625
-0.000241522
-0.00166894
-0.0647363
-0.0465125
0.0414764
0.0109066
-0.042579
-0.0137678
0.00816906
0.00244951
0.0367664
-0.0121072
-0.2532
-0.24369
0.245947
-0.00508562
-0.00124105
0.00247698
-0.0244452
0.388611
-0.00216226
-0.00575557
-0.16452
0.1753
0.00275742
0.00181161
-0.00119138
0.0641433
0.0829136
0.00201839
0.00349542
-0.00409471
0.00115435
0.00661782
-0.00208224
-0.00228644
-0.000146232
0.00068656
-0.00123236
0.018956
0.000620703
-0.275289
0.0283427
0.209735
-0.011549
-0.226529
-0.0416585
0.0362939
0.0248494
-0.0253307
0.0154187
-0.0120068
0.00582493
-0.00493281
0.0147169
-0.015609
0.01199
-0.0149446
0.042617
0.00162366
-0.0238627
-0.0180321
0.00968756
0.0322073
0.566349
-0.311555
-0.924057
0.669263
0.0573573
-0.00309972
-0.00861603
0.972246
0.78661
-0.0109429
0.0211766
-0.0245256
-0.00902584
0.00650468
-0.0338043
0.311751
-0.0474138
0.00404317
-0.00446364
0.0188047
-0.0389416
-0.181127
0.169442
0.0506273
-0.0258454
0.0239116
0.0312194
-0.0292856
-0.0211016
0.0298662
0.0238406
0.801952
0.36973
-0.426206
-0.00188169
-0.0133293
-0.0141302
0.0264847
0.0662887
-0.0786431
-0.000967977
0.00696299
0.00662061
0.00484414
-0.019668
0.0215647
0.0217795
-0.0133998
0.00584903
-0.00422321
-0.0147618
-0.0195767
-0.0231888
-0.0199956
0.0206003
0.000561238
0.000342158
-0.000241567
-0.00066183
-0.969415
1.63717
-0.212836
0.00119424
-0.00218908
0.0162154
0.0467319
-0.0466436
-0.0163037
0.014505
-0.0151209
-0.00690606
0.00752202
4.83658e-05
0.00128618
-0.0014504
0.00138927
0.000935892
-0.0609168
0.000132572
-0.000246867
0.00161728
-0.020466
0.0156025
-0.0149276
0.00451404
-0.00119417
-0.000537132
0.0983033
-0.0276892
0.309084
-0.32656
-0.38794
0.00988935
-0.0184747
0.0170405
-0.0409723
0.00326679
0.033861
0.00384449
0.00138872
-0.00980299
0.00129427
0.170364
0.472883
-0.198123
-0.445124
-0.00111743
-0.000499341
0.00070837
-0.340536
0.256075
-0.0514525
0.135914
-0.0173123
0.0323798
-0.0135507
-0.0134834
0.000651688
-0.00107586
-0.000587422
-0.00158716
0.00163086
-0.262387
-0.531989
0.115909
0.865864
-1.07272
-0.00332058
0.0048766
-0.00492154
-0.0106412
-0.15754
0.151117
-0.465752
0.519028
1.0851
-0.0411745
-0.00955931
0.00307689
-0.00393916
0.150094
-0.0918921
0.0116024
-0.737013
0.792769
0.00216843
0.00834497
-0.00258977
-0.00792362
0.165446
1.45635
0.378205
0.0572598
0.040647
-0.0027202
-0.0277506
0.0184912
0.0119796
-0.00417811
0.00571589
-0.0088842
0.0146554
-0.00605209
-0.811221
-0.112293
-0.0993488
-0.291141
0.122851
0.267639
0.266495
-0.562085
0.000351126
0.165976
-0.22895
0.0626231
-0.00223148
0.00190898
-0.00153565
0.00582639
0.079776
0.000910674
-0.00195414
0.00184743
-0.000139588
0.000669122
-0.0184437
0.0155435
-0.00367881
-1.54545
1.06496
-0.746578
1.4237
0.50543
-0.740007
0.175694
-0.542538
-0.264532
-0.0284079
-0.00645993
0.0230911
-0.0351183
0.0346791
0.0429417
0.143559
-0.0490021
-0.137499
0.00830989
-0.0140379
-0.00124731
0.00697527
-0.0209167
0.0384309
0.0947243
-0.165002
0.00677383
0.0235439
0.00802401
-0.00259104
-0.00174731
0.00218977
-0.00204396
0.00390258
-0.00395254
-0.00168165
0.00120274
-0.000444283
0.000923193
0.00157585
0.0184738
-0.00366417
-0.0163855
-0.354078
0.316436
-0.191794
0.131913
-0.130312
0.190193
-0.0286157
-0.0441847
-0.00034642
0.00241531
-0.00436673
0.00229784
0.0105943
-0.0128814
0.0167921
-0.0103177
-0.113348
0.00194604
-0.00178459
-0.0018382
-0.00952824
0.0105275
-0.00386479
-0.00648516
-0.0353482
0.0281299
0.0124546
-0.00523628
0.000292932
-0.00992062
0.0154583
-0.00583056
-0.00168649
-0.0083232
0.00814879
-0.026222
0.0210751
-0.00406499
-0.0760893
-0.00604861
0.0199013
0.0622366
0.00405079
-0.0330818
0.00588601
0.023145
0.001578
-0.000693702
-0.00157679
9.17979e-05
0.00510205
-0.00447019
-0.000723655
0.0376068
-0.00231914
1.76767
-1.76303
0.00612224
0.0202149
0.00624519
0.00211133
-0.012802
0.277466
-1.70434
-0.0259863
0.0230954
-0.0129852
-0.0186503
0.0257581
0.00552808
-0.389593
-0.498516
-0.635204
0.596716
-0.551368
-0.016561
0.0189942
0.266194
0.50534
0.530264
-0.473706
0.309261
-0.194908
-0.00406387
-0.110289
-0.0188195
-0.00633289
0.0128466
0.0123059
-1.38012
0.581313
-0.000308995
-0.000680312
0.000917916
7.13914e-05
0.000516727
-0.00685928
-0.0153069
-0.0456104
-0.0370518
0.0494577
0.0332045
0.000792057
-0.00103781
0.000851653
-0.0844884
0.017852
0.103415
-0.0367789
9.1566e-05
-0.00133596
-0.757685
0.699643
-0.006143
-0.000615973
0.719081
0.519131
-0.177298
0.00366525
0.0269954
-0.0124491
0.0239647
-0.0278827
-0.0219274
-0.970417
0.415858
0.0129497
-0.0115487
-0.00167298
0.000259533
0.000934828
0.041814
-0.0177497
0.00546685
0.00124764
-0.00105339
-3.36486e-05
0.000818535
0.0124842
-0.0398153
-0.0199069
0.0206069
0.0391152
0.0179181
-0.0120878
0.015444
-0.0187931
-0.0301455
-0.0321345
0.0159953
-0.00693836
-0.0116228
0.32586
-0.00494666
-0.0225166
-0.710967
0.68976
-1.06521
-0.209342
0.213201
-0.103208
0.228641
-0.10591
-0.0439773
0.108753
0.0165437
-0.00957475
0.00315311
0.000703841
0.00653155
0.0137956
0.0039051
-0.00267158
-0.00384258
-0.0724354
-0.0179086
-0.623705
-0.481578
0.834504
0.270779
0.0127395
0.388721
-0.46765
-0.00135695
0.000161486
-0.000241143
0.00143661
0.00122507
0.00116375
0.0131201
0.0187771
0.697293
-0.731625
-0.511059
0.0307243
-0.0103107
-0.0338979
-0.00709355
0.00840557
-0.00011162
-0.000337657
0.000115658
0.000465251
0.00182983
-0.347433
0.00630405
-0.00427782
0.00627657
-0.00912265
-0.00582461
0.00867069
-0.0186345
0.0149775
0.0137467
-0.0100897
0.00116388
-0.00195074
0.0140568
-0.0154882
-0.0207656
0.0365064
0.0285115
-0.0299992
0.00247174
0.0122501
0.0298325
-0.00139895
-0.0391687
0.0512511
-0.223717
0.202034
-0.345431
0.00166314
-0.00168276
0.000250056
-0.000648494
0.178443
0.0694165
-0.13729
-0.0192629
0.0259795
0.00958353
0.00465555
-0.00384874
-0.0103903
0.00472938
0.0100934
-0.00430744
-0.0105153
0.0157926
0.0156553
-0.0158061
-0.0870628
0.00278633
0.0129063
0.0713702
0.0164921
0.0267431
-0.0310049
-0.518621
0.85201
0.565664
-0.899053
0.0100535
-0.0874045
0.00393786
0.0167909
-0.0102698
-0.0243473
-0.00897909
0.00530541
-0.00935242
0.0117071
-0.0021916
0.0169056
0.0228929
-0.0455514
-0.0543878
-0.0142396
0.0134738
-0.000207202
0.00026369
0.000122549
0.0370111
0.0116778
-0.0076617
-0.0179133
0.0138972
0.0253616
-0.0111442
-0.00517204
0.0046446
-0.00520211
0.0358683
-0.0480384
0.118991
0.00141672
1.53564e-05
-0.00052415
-0.00090793
0.0108067
-0.0213489
-0.0224507
-0.0163945
0.029977
-0.0105142
-0.00395603
0.00927876
0.00519143
0.0143389
-0.0103608
-0.000828044
0.00106348
5.57704e-05
-0.0539849
0.0462911
-0.0755026
0.0637632
-0.0196443
0.0274908
-0.0289481
0.0138582
0.0011833
-0.00324016
-0.0118014
-0.0128904
-0.00284106
0.376247
-0.349371
1.45091
-1.47778
-0.0787845
0.0812913
0.00190185
-0.000543941
0.0107298
-0.0105707
0.496666
-0.579482
0.114507
-0.00224698
-0.000189015
0.000933283
-0.706864
0.586212
-0.994954
-0.00643624
-0.00139305
-0.0279441
0.0252894
-0.0130882
0.00929114
0.00345806
6.2156e-06
-0.000355481
-0.00101997
0.039744
-0.0243457
-0.00287387
0.0125524
-0.12225
0.652888
-0.483492
0.311915
0.0189287
-0.00975787
0.0110984
-0.0125981
-0.0447991
0.0520724
0.0053248
0.0256006
0.00906636
-0.0288404
-0.00582655
3.57172e-05
-0.00239519
-0.114755
0.0357812
-0.00504786
-0.00096338
0.00412985
-0.0825687
-0.0398641
0.0214053
-0.0105459
0.0175375
-0.0115827
-0.00640845
0.00164834
-0.00164206
-0.0563064
0.0139696
-0.0121775
-0.0122439
-0.000792448
-0.0175078
0.0186501
-0.00716737
0.00602513
0.0177935
-0.0996018
0.0649577
-0.0396478
0.0742918
0.044972
-0.0246326
-0.0423996
-0.0134972
-0.000823147
-0.000453307
0.000347557
-0.000488838
0.000594587
-0.00121264
-5.67053e-05
9.90712e-05
-0.000762607
0.000341068
-0.000271831
0.00069337
0.00106679
-0.000110184
0.00029103
-0.00574358
0.0255613
-0.0174914
-0.00232636
-0.847202
-0.0126061
0.0120835
-0.161502
0.172385
-0.167835
0.156952
-0.0454696
-0.026817
0.0369379
0.0386905
0.0225561
0.0146072
0.000599691
0.0632888
-0.00719707
0.0664989
0.00727736
-0.0127003
-0.000308587
0.00139871
-0.00140579
6.14898e-05
0.00175535
-0.00250069
-0.0013115
-0.0178764
-0.0118811
-0.0849375
0.112738
0.152776
-0.180576
-0.0171031
0.0175302
-0.0183283
0.00610338
-0.0115367
-0.000570602
0.00600388
-0.0236441
0.0419999
0.0167891
0.0184714
-0.0183482
0.0775772
-0.0127873
-0.0074326
0.0462152
-0.0106
0.114427
0.297761
-0.00149483
0.00187565
-0.000123427
0.0131711
-0.364648
0.974286
-0.884617
-0.00221553
-0.0158431
0.00343388
0.0146247
0.000680239
0.000901541
-0.0445532
-0.0130634
0.00213129
-0.000813251
0.0010014
-0.00231944
0.000575883
4.57962e-05
-4.95991e-05
0.0156877
-0.00941736
0.000347259
-0.00896564
0.0135624
-0.00494399
-1.83424
1.56836
0.000812714
-0.00137576
0.000313055
0.000663249
-0.016083
0.425585
0.00400056
0.00526201
-0.00645975
-0.0204307
6.05245e-05
-0.000280522
6.58511e-06
0.0658844
-0.0888009
-0.627482
0.247648
-0.208686
-0.202485
0.127298
-0.183576
0.0633511
0.0193417
-0.0201294
0.0232839
-0.0311802
0.0651165
-0.0572201
-0.89243
0.619259
0.590531
-0.0395152
-0.0444452
0.0368222
0.0471382
0.075281
0.0338845
-0.072531
0.0222537
-0.0479811
-0.000113408
4.04786e-05
0.000313903
-0.35365
-0.301669
0.399522
-0.0123844
-0.00564413
0.0215393
-0.0176753
0.0250792
0.0176149
-0.0174208
0.0221246
-0.0297312
0.0025118
0.00680184
0.0204175
-0.127561
0.00090226
0.000257977
-0.000807211
-0.363441
-0.693949
-0.00143272
0.0303969
-0.0206392
-0.00832498
0.0247421
-0.0236852
-0.00400447
-0.00219058
-0.00277767
0.00273677
-0.0301401
-0.0342456
-0.00784571
0.0113196
-0.0102601
0.000357083
0.00161381
0.0402018
-0.0890594
0.0736501
-0.0908132
0.0391642
-0.0531266
0.0526456
-0.0523001
-0.114446
-1.32423
0.030794
-0.00521924
-0.0537582
-0.00231448
-0.0100832
-0.0212757
0.0107969
0.0269709
-0.00909464
0.0651007
-0.0650319
-7.22645e-05
0.467399
-0.444848
0.0182507
0.00436651
-0.00662187
-1.52166
-0.00292446
-0.000300624
0.0196515
-0.0361695
-0.0247564
0.0132228
-0.010252
-0.00375156
0.0130132
-0.0116095
0.00868787
-0.0100916
0.179643
-0.014492
0.0158767
0.00255317
0.00115861
0.00103701
-0.000585037
-0.0022032
0.0030212
-0.0018542
0.0010362
-0.0121992
0.00641142
0.00354218
0.276808
-0.142244
0.169394
0.0217716
-0.0441419
0.00160151
0.0516415
-0.0167452
-0.0715327
0.00180488
0.0759601
0.00884005
-0.0221073
-0.022081
0.00377508
0.00251351
0.0141721
-0.00885844
0.000223551
0.00156071
0.0321532
-0.00601887
-0.0998077
0.146454
0.066469
0.0120126
-0.00687804
0.0299483
-5.76142e-05
-7.491e-05
0.0917228
0.0287094
-0.0381346
-0.01237
0.0117215
0.00158355
0.000135594
0.00161805
0.238641
-0.233228
0.194986
-0.200399
0.0566566
-0.050044
0.0317005
-0.0238664
-0.0146009
-0.00924311
-0.0090169
0.000991058
-0.000753375
1.01245
-0.452568
0.422219
-0.982104
0.027609
-0.00051438
-0.000309837
-1.6222e-05
0.00529359
-0.228027
0.448399
-0.518242
-0.0387412
0.0504284
0.0341141
0.000710767
0.00037312
-0.000364735
0.000878512
-0.00365268
-0.0114725
0.0142467
-0.0132682
-0.00802776
-1.06003
0.0297784
-0.144248
0.0613029
-0.195213
-0.844313
0.675117
0.433136
-0.426582
0.0016895
-0.0145947
0.00290339
-0.064398
0.147858
-0.377171
0.221341
0.199621
0.508033
0.16452
-0.170738
0.148833
-0.0125402
-0.011771
0.0109462
0.00900841
-0.00577586
-0.00612978
-0.00168095
0.00303097
0.489723
-0.381425
0.00757719
0.00587989
0.128268
-0.25779
-0.011391
0.0102934
-0.00902966
0.0101273
0.0808873
0.863889
0.00951315
-0.00908584
0.000727038
-0.00112131
0.0011388
0.00967532
0.00463014
0.00870495
-0.00985327
-0.0352293
0.0258149
0.0279388
-0.018226
0.0227369
-0.0231282
0.0186173
0.13965
0.168824
-1.90637
0.103398
0.119217
-0.0760117
0.120055
-1.5351
-0.172501
-0.0397345
0.0447395
-0.0303971
0.177907
0.184788
0.0222391
-0.0094748
-0.0163054
0.30102
0.124742
-0.343356
-0.107789
0.108713
0.207548
-0.000972833
0.000119993
-0.0294763
0.0447639
-0.178745
0.163457
-0.00143077
9.41761e-05
-0.00233734
2.40535
0.00111597
-0.00177085
-0.0184551
0.00948076
0.0320953
-0.023121
0.0113568
-0.0192659
0.0067012
0.0505663
-0.0567665
-0.130778
0.142966
0.000565541
-0.000407593
-0.00368472
0.000697758
0.00578363
0.0022501
-0.000976261
0.0155171
0.00640369
-0.0100806
0.045299
0.00776438
-0.0394185
0.671127
-1.76228
-0.321295
-0.0269547
-0.000676632
-0.0336235
0.00131554
-0.378901
1.16576
1.01457
0.00939475
0.00969627
-0.622837
0.652165
-1.26922
1.22805
-0.00175197
0.00977113
-0.0156259
-0.000869452
-0.0295615
0.0248396
0.0126876
0.00930597
0.00998308
0.00620213
-0.010177
0.00439035
0.962783
0.13098
-0.117628
0.0747067
-1.43119
1.64354
0.23247
2.1778
-0.372458
-1.78501
0.000970472
-0.00694086
-0.110852
0.0148243
-0.000521216
0.0519474
-0.0662504
0.107944
0.454222
-0.525223
-0.0369435
-0.79484
0.103739
0.768117
0.00437082
-0.788517
-0.1199
0.833429
0.309229
0.850702
-0.390756
-0.0117761
0.00596641
0.00318353
-0.0523721
0.0409058
-0.25305
-1.49652
-0.00543598
-0.00954471
0.0114846
0.00566192
-0.000461117
0.000429843
0.00540974
-0.00444428
0.00785756
-0.0120669
5.26878e-05
-0.00165309
-0.00048424
0.0948387
0.000615015
-0.0654518
-0.0112599
-0.00349121
-0.087069
0.181268
-1.86272
0.000334986
-0.000382483
-5.13603e-05
1.49089
0.255932
-1.06361
0.313567
0.568143
-0.37337
-0.0842424
-0.457153
0.402464
0.138931
0.175254
-0.976199
-0.0858876
0.886832
-0.0191806
-0.00699216
0.013424
0.0127488
0.00777204
0.186814
0.227864
-0.135399
-0.0570615
0.102543
-0.0140987
-0.00162202
-0.00249753
-0.0997195
-0.0652251
-0.0233113
0.000747482
-0.000696731
0.00159837
-0.0326835
-1.75323
-0.534201
1.95633
-0.0119613
0.00493488
-0.0421689
-0.0140944
0.00168028
0.000532432
-0.000732806
-0.00107539
-0.0049303
0.00762862
-0.0129147
0.00656641
-0.00864374
0.00429811
0.31905
-0.00822623
0.108733
0.380243
-0.110963
-0.505762
0.291528
-0.106497
0.0890024
-0.0771877
0.0946824
-0.014932
-0.525416
-0.781923
0.384424
0.000119642
-0.00874859
0.0125397
-0.044147
0.0102536
0.668912
1.71383
0.248221
-0.149905
0.131648
-0.229964
0.00316748
0.00517806
-0.213948
-0.0225378
0.0755296
-0.244413
-0.109832
0.171083
0.000873367
-0.000245683
0.00111651
-0.0406345
0.0116741
0.0582056
0.00448513
0.101258
-0.00551006
-0.00170738
-0.00727458
3.03502e-05
-0.000342984
0.00950957
-0.24594
-1.00599
1.18018
0.071753
0.00138544
7.32585e-05
-0.304028
-0.391033
-0.000632131
0.00101956
0.000484222
-0.000522845
0.000296207
1.10705
-1.09005
-0.526555
0.509557
0.0293495
0.00822449
-0.000276787
-0.00317429
0.00737129
0.0354371
-0.012131
-0.0306774
-0.00128106
-0.0173461
0.0130944
-0.0156364
-0.0203829
0.0079886
-0.00221594
-0.0051013
0.00518814
0.711714
-0.423627
-0.674145
0.0151137
-0.0117564
-0.133733
-0.00862792
-0.00242458
0.00234293
-0.00175883
0.0058982
0.0376992
-0.0168319
0.0151881
0.00362203
-0.00856761
-0.0108902
-0.0168915
-0.0161891
0.016342
0.0270852
-0.0248657
0.0167092
-0.0304648
0.0297617
0.071677
-0.0450828
0.0121181
-0.0250165
0.102016
0.0136519
0.0040406
0.995896
-1.03682
0.0819707
-0.0364368
0.0308362
-0.0341338
-5.40209e-05
0.00576792
-0.00467477
-0.00921572
-0.000286448
0.00633562
0.0022793
0.00813376
0.0131047
-0.011475
-0.00976344
7.74606e-05
0.000774147
-0.182032
0.134019
0.0190023
-0.00156172
0.00105752
0.0419527
0.159548
0.154589
-0.35609
0.00529543
-0.00677606
-0.0160549
0.0852306
-0.140818
0.0716419
0.00383924
-0.0022207
0.103538
-0.0358325
0.0144494
-0.0104405
0.00970826
-0.00409221
0.0201274
-0.0955601
0.112774
-0.1007
0.0834857
0.832036
0.0197006
0.00508197
-0.198428
0.0892354
0.158647
-0.0364678
0.280886
0.540997
0.425413
0.207882
0.00113859
0.000630845
-0.0012207
0.046377
0.00966271
-0.0463904
-0.0820763
-0.0923205
0.03943
-0.0392584
0.0778914
0.0568184
-0.0954514
0.174578
-0.179114
5.58522e-05
0.00144318
-7.64868e-05
-0.0136665
-0.0570557
0.049392
0.000426611
-0.000355713
-0.000503927
0.315429
0.0147256
-0.00263122
0.456995
0.307883
-0.26401
-0.500868
0.00840881
-0.0183268
-0.00701121
-0.00870973
0.0158367
0.478271
-0.350898
-0.13797
0.114021
0.121182
-0.0972325
0.0145816
-0.00410068
-0.0180586
0.0400092
-0.0212
-0.0114379
0.0112621
0.00723361
-0.0101767
-0.00140429
4.08829e-05
-0.00356028
0.00492368
-0.00296398
0.0195186
-0.0203721
-0.00645935
-0.3838
-0.0850321
0.000119965
0.456028
-0.404871
0.189935
-0.241092
1.37521
0.0213363
0.181363
0.00870517
-0.010466
-0.00804871
0.0137415
-0.00533452
0.00400676
0.00414757
-0.00305085
0.0365238
0.00491607
-0.00556538
0.00802164
-0.116377
0.0654232
-0.240187
-0.0113618
0.0548836
0.0011999
-0.00169606
9.25187e-05
0.000242323
-0.00165058
-0.00118592
-0.000676394
0.00146453
0.000397791
0.213745
0.221235
-0.248165
-0.0117534
0.0132406
0.000901289
-0.000961671
-0.0060591
-0.00686828
0.00677532
0.00762359
0.0208122
-0.000987037
-0.00123939
-0.519874
-0.266081
0.00107911
-0.00122481
0.00213122
-0.0116657
-0.0101387
-0.00997803
-0.0302399
0.00154496
0.000266811
-0.00119173
-0.000620037
-0.00629194
0.0126104
-0.0184269
-0.0487592
0.0521075
0.0439342
-0.0110478
0.024178
0.0108482
0.011207
-0.00747359
0.0120453
0.0263129
0.359318
-0.357246
-0.0139029
1.27078
-0.0993478
0.570502
0.415544
0.125162
-0.0363417
-0.00603538
-0.000883347
0.00563924
0.0127734
-0.0139141
0.001842
-0.00145315
-0.145598
0.185484
0.00896937
-0.00675783
0.00335539
-0.00996041
-0.0133232
0.0109162
-0.931879
-0.00918835
-0.00223557
0.00727991
0.0460719
-0.00813834
-0.0339274
-0.00260114
0.00317271
-0.006629
0.685076
-1.59779
-0.741399
-0.132736
-0.289365
0.334018
0.00306684
-0.00143012
-0.436445
0.782781
0.0578772
-0.085616
-0.0388235
0.000706289
-0.127419
-1.71343
1.54921
-0.0121496
-0.00801513
0.0107929
0.0500781
-0.0651607
0.0667712
-0.256995
-0.149343
-1.11558
0.320987
-0.151277
0.0836259
-0.0256497
-0.0755181
0.0770614
-0.0404805
-0.172295
0.0123664
-0.0108858
0.000572982
0.000352078
0.091219
-0.0915702
0.0396848
-0.0403601
0.00914907
0.000272113
-0.0091727
-0.000315128
-0.0162941
-0.00148189
0.0149014
0.00287463
-0.00582849
-0.0668872
0.00514936
0.400834
0.0324808
-0.310972
-0.122343
0.0220996
-0.00649951
0.0284087
0.0146049
0.00192059
0.000770565
-0.000512629
0.000774768
-0.000706911
-0.0138419
0.0088444
0.00361738
0.0477251
0.233445
-0.286342
0.281646
-0.011308
0.0154738
0.0541689
0.0729183
-0.138727
0.513501
1.35494
0.0134642
0.00881807
-0.00111339
0.0121282
-0.0118214
0.0301158
-0.00100374
0.000720431
-0.00550004
0.0568024
0.00690333
0.0036409
-0.0050765
0.00626447
-0.0504686
-0.0190488
-0.00249235
0.0135739
0.00796721
-0.0173177
0.0267273
0.00949065
0.0126485
-0.00283546
-0.0193037
-0.0173056
0.0158068
-0.0101764
0.30252
-0.00409503
-0.0281774
-0.0285376
0.0329173
0.00324802
-0.00762775
0.00407913
-0.0942824
0.110359
-0.122777
-0.000737886
0.00219367
-0.0163819
-0.0180033
0.0138471
0.0144637
-0.0108723
-0.00899261
0.0108945
0.0293315
-0.0282915
0.0300051
0.00465322
0.00854772
-0.00229768
0.0054879
0.0956725
-0.00371646
-0.0413825
0.112614
-0.133553
-0.0128388
-0.00288646
0.0140019
0.0117108
-0.00927922
-0.00783256
0.0084209
0.0282261
0.0305618
0.0186974
3.47772e-05
0.0578157
-0.199022
-0.750904
0.717644
0.0111294
-0.00311297
0.0873233
-0.0722254
0.0852328
-0.0430383
-0.0210186
-0.00701903
-0.00740306
0.0084821
0.00613739
0.184285
-0.17676
-0.131929
0.124405
-0.000865503
-6.84857e-05
-0.0169966
0.0182996
-0.0127894
0.0063178
-0.00735093
0.113901
0.225607
-0.171317
-0.00602227
-0.00876408
0.000534939
0.0216962
-0.0189816
0.0112123
0.00882051
-0.0162021
-0.0143199
0.00044992
-0.000760072
0.000961467
-0.0347279
-0.0558922
-0.366492
0.00254717
-0.00826531
-0.0762946
-0.105828
0.000656023
-0.000833563
0.00207939
-0.0117962
0.0149912
-0.397858
0.41879
1.15548
0.025237
0.309737
-0.408855
0.00448685
-0.00491833
-0.0164292
-0.0179865
0.0464935
-0.00267239
0.00402524
-0.224182
0.106625
-0.288931
2.06638
0.0169476
-0.00555185
-0.0126282
-0.00976683
0.00319651
0.00704104
-0.000470714
0.00147612
0.00206009
-0.0674481
0.0604361
-0.0149745
1.66184e-05
0.00640853
-0.0393978
-0.00737081
-0.0156797
-0.0139194
0.335592
0.698227
-0.00338415
0.00259575
-0.31281
-0.439374
0.000837897
-0.000240891
0.000650637
-0.00269652
0.00222319
-0.00866895
-0.00504453
0.00932415
-0.00176789
-0.00111393
0.00100664
-0.000292
0.000399294
-0.00785659
0.0019164
-0.00518092
0.0111211
0.0124398
-0.0161298
-0.848638
0.897909
1.23527
0.00143333
-0.0391402
0.0122187
-0.0345753
-0.0455587
0.0408448
-4.63115e-05
0.00153547
0.0141236
0.0836713
-0.299914
0.182438
0.000216759
-0.000556034
-0.00231867
-0.000911713
0.0014304
0.00179998
0.160197
1.1298
0.00464663
-0.00222792
-0.00180043
0.0018206
-0.284119
1.11226
-0.0305132
-0.000413978
-0.0121885
0.0121754
-0.00778413
-0.00146486
0.00168891
0.00124442
-0.0015166
0.0312841
-0.0206235
-0.004987
-0.00151484
-0.0112172
0.00358109
0.00341223
0.0014062
-0.00488876
0.00493672
-0.00408075
0.00419288
0.000810249
-0.00222482
-0.0119497
0.0119566
-0.805362
0.235235
-0.474873
1.045
-0.191219
0.125167
-0.115458
-0.014087
0.0142586
-0.024571
0.036134
-0.0673843
-0.0189618
0.0502121
0.0168317
-0.0203838
-0.601062
1.15886
-1.07642
-0.0208415
0.0799874
-0.0447697
-0.0685951
0.0160583
-0.0241305
-0.0069648
0.254755
-0.0824244
0.00145106
-0.00486144
0.00613306
0.0409757
0.0204898
-0.0989148
-0.00702457
0.01796
0.0362558
-0.0450264
-0.0621856
0.0709562
-0.00135386
0.00109843
0.00150273
-0.955111
0.60105
0.837473
0.088885
0.0300007
-0.00682615
-0.00199724
0.00867691
0.000146484
-0.0190836
0.644422
-0.55847
-0.906177
-0.250617
1.48422
0.000823303
0.0214658
-0.0374719
-0.00153767
-9.40723e-05
0.0582441
-0.0887057
0.0249998
-0.000285057
0.000407127
0.00490746
-0.00467198
-0.000296454
0.000910981
0.00121467
0.000175414
-0.000803873
0.000742546
-0.000114087
0.0237741
0.0549136
0.00111731
-1.35556
0.00919491
-0.0108295
0.00620928
-0.00457469
-0.00237066
-0.0175312
0.0130238
-0.116704
0.13941
0.0123281
-0.000201929
0.000803073
0.000620431
-0.00163731
-0.00183184
-0.240064
0.774123
-0.00143841
0.0535089
-0.0108525
0.0109156
-0.0070173
0.0051242
-0.00144987
0.00301202
0.0354489
-0.154487
0.136458
9.87225e-05
-0.0234604
-0.00197676
0.000388003
6.14253e-05
0.358856
-0.922369
-0.110568
0.426358
-0.443363
-0.00408492
-0.00483625
0.0595321
0.36404
-0.325924
-0.368702
0.330586
-0.00387287
0.00364153
0.00322222
-0.00299088
-0.0878946
0.123676
0.00245126
-0.00615161
0.0143012
0.0484749
-0.00596078
0.021222
0.0498962
0.00632192
-0.00402679
-0.00442057
0.00212544
0.0020345
-0.00431351
0.00948034
-0.00720132
-0.00345703
0.0149292
-0.225974
0.169257
0.812809
-0.00542774
-0.038274
-0.0136462
0.0106942
-0.0111033
0.0200684
0.0141303
0.0228998
0.00112352
-0.00613662
0.8073
0.380996
-0.739988
-0.0414872
0.00447113
0.0303869
0.00358916
0.00219022
-0.00235471
-1.30525
1.42779
0.000515949
0.000818182
-0.00152097
-0.0031336
-0.354502
-1.67774
-0.0185043
-0.21332
-0.00970798
-0.0209158
-0.00935594
1.76436
-0.409202
-0.0427183
0.0727709
0.429087
-0.347926
-0.416311
0.0208238
-0.0224954
-0.0422921
-0.0115063
0.00982767
0.0439708
-0.000543976
0.868473
-1.73921
-0.560057
0.00193988
-0.00184877
-0.369461
0.384996
0.492988
-0.000945599
0.000208569
0.00041611
0.00381405
0.00527941
-0.370825
0.212947
-0.00652021
-0.0290554
0.00861631
-0.00863981
0.00219193
0.000281492
-0.00119763
0.000165564
0.0163542
-0.00801271
-0.0131626
0.000405098
0.0115135
-0.00758599
-0.00433259
0.245843
0.0291904
-0.274682
-0.0148487
0.0117401
-0.0583921
-0.00900771
0.00860023
-0.00696399
0.00737147
0.53292
0.00127039
0.0150245
-0.00748362
-0.0184515
0.0019675
-1.27096
-0.296562
1.33352
-0.0493488
-0.0110695
-0.000842587
0.0026997
-0.00265628
0.000799171
0.00997686
-0.00220388
0.499411
-0.367742
0.117315
-0.248984
0.0301163
-0.00904817
-0.019004
-0.00206416
0.0145451
-0.00207094
0.00141496
-0.00137136
-0.000206125
-0.371047
0.239182
-0.0101793
0.538325
-2.46034
-0.00126672
-0.00209954
0.00422209
0.0214172
-0.00100322
-1.59266
1.50559
0.0266104
-0.00363648
-0.00196282
0.108897
-0.444411
-0.481326
0.270192
0.407369
-0.196235
0.00191203
0.0135492
0.00148641
0.0334957
-0.021401
-0.0224054
0.0210528
0.00717703
-0.0254044
-0.403046
-0.0645156
0.0140962
0.0865534
0.00539542
0.0111218
0.0019874
-0.0133193
0.000865854
0.00119683
0.000225721
-0.001279
-0.00179775
-0.000165136
0.00182091
0.957337
-0.534315
0.305376
-0.00289026
0.0036939
-0.0195416
-6.67532e-05
0.000170153
0.304275
-0.484499
0.00213886
0.00174503
-0.00192945
-0.00163627
0.0066998
-0.00273828
0.00438863
-0.0071367
0.00644904
-0.0368093
-0.0259083
-0.688531
-0.0147703
0.0562241
0.0482231
-0.0896769
0.00364924
-0.012163
-0.00290119
-0.00973208
0.0388089
-0.0002527
-0.00429778
-0.0342584
-0.00661761
0.00606172
-0.00449534
0.00324686
-0.00172597
0.137729
0.00108478
0.00112371
-0.00105991
-0.00859873
0.0165501
-0.0188473
0.00532794
-1.22681
0.00621244
-0.00853755
-0.00146834
0.00898077
0.00453286
0.0167307
-0.00571885
-0.0230787
0.0431159
-0.0529463
0.00469143
-0.00353414
-0.0361654
0.144253
-0.189475
-0.533301
-0.169573
-0.349798
0.0966169
-0.0145985
0.000393576
0.00361302
-0.00781649
0.726351
0.556396
-0.47195
0.000674787
-0.000183105
-0.000566592
0.109078
-0.023166
-0.00242305
-0.000522508
-0.000414524
0.00165072
0.000691451
0.0953666
-0.0679936
-0.00389014
0.000135134
0.0828448
-0.02039
-0.0547018
-0.494404
0.509151
0.0151065
-0.0120011
0.0857702
-0.0724557
0.162498
-0.243993
-0.236965
-0.0167721
0.0045576
-0.0237564
-0.174117
0.00720736
-0.0160562
0.0180437
-0.0402024
-0.0076136
0.000564528
0.0017408
-0.00205002
0.00242172
-0.0486828
-0.00918919
0.0547723
-0.00142021
0.00277717
-0.0039339
0.00257694
0.149532
0.124498
-0.0905054
0.0371797
-0.00091663
-0.000222688
-1.25941
0.00138945
0.000945072
-0.00162363
-0.00691149
0.00452724
-0.00295026
0.00218938
0.0984727
0.0221552
0.000137488
-0.00136885
0.0078298
-0.00680368
-0.000606605
-0.000419521
0.00425607
0.000530736
-0.849716
0.316994
-0.0867244
-0.000985751
0.0236084
0.00213637
0.00466864
0.00468291
-0.00686491
-0.00602907
-0.00355027
0.00194892
-0.00431508
-0.00068712
-0.0465828
0.00311992
-0.00299357
-0.00375577
-0.0178173
-0.0145879
0.0312182
-0.0471346
0.00867415
-0.031172
-0.036799
-0.00715525
0.0100564
-0.444054
0.473375
-0.00150108
-0.00881443
-0.00139668
0.00321513
0.00660829
0.101542
0.139234
0.00418195
-0.00537496
0.00499739
0.174102
-0.226764
-0.0322755
6.87093e-05
0.00167231
-0.000676117
-0.0010649
0.0151412
-0.00798284
0.112697
-0.0275569
0.562889
-0.00516118
-0.00568745
-0.018541
-0.00122345
0.00178127
0.045106
-0.0090417
0.00682969
-0.0155563
-0.00406281
0.0151941
0.0088144
-0.0161641
-0.00689488
-0.0309536
-1.10723
0.463923
-0.627651
0.00810099
0.00184927
-0.00160529
0.0283201
-0.00478303
0.0164721
-0.0342203
-0.00477822
-0.0952497
-0.243768
0.236736
0.102282
-0.117004
-0.251016
0.322702
0.163155
-0.220014
0.122688
-0.0469218
-0.00545197
0.022519
0.00849432
0.434262
-0.564893
0.499797
-1.27279
0.845516
-0.0725241
-0.0122699
-0.31352
0.36855
-0.13418
0.00654928
0.000195534
0.0774396
-0.0582932
-0.0579313
-0.00088861
-0.0138583
0.018369
-0.0446149
-0.0155178
0.0145362
-0.00193407
0.000562287
-0.000967492
0.149146
-0.179056
0.408851
-0.00821933
0.00379174
0.00168194
-4.53648e-05
-0.0117944
-0.0318627
0.00246611
-0.003044
0.00052119
-0.0341218
0.0261019
-0.279228
-0.0300894
0.263328
-0.00642647
-0.00618411
-0.0390318
-0.0477014
0.01038
-0.0670268
0.0568507
-0.029339
0.0219292
-0.00900934
-0.0801537
0.0674778
0.0955895
-0.0653212
0.0131995
-0.00354714
0.00504403
-0.0319508
0.0397856
-0.0857971
-0.00616397
0.00890594
-0.001611
-0.00151948
0.00167283
-0.0156844
0.0220844
-0.0206762
-0.00417717
-0.00383492
0.00533969
-0.00371979
-0.0170237
0.00125836
0.0191364
-0.0754251
0.011785
0.00953048
-0.00577956
0.458794
-0.263479
-0.0255027
-0.0839461
-0.0405007
-0.06526
-0.0131662
0.00689344
0.00220043
0.00232103
0.000287333
-0.00212451
0.00161071
-0.595485
-0.0414884
0.0612407
-0.217198
-0.0313139
0.0184415
-0.000342358
-0.0126124
-0.237681
0.464162
-0.0124874
0.00531813
-0.00164517
-0.00815139
0.0123281
0.0142649
-0.0155689
0.010309
-0.0116116
-0.00545712
-0.000134119
0.000405303
-0.00158244
0.00151155
0.00117403
-0.00138559
-0.0013
0.383261
-0.250893
-0.337509
-0.0451676
-0.00750286
0.0390243
-0.0129487
0.17576
0.221168
-0.0851767
0.000429386
0.000402419
0.00100126
-0.741674
0.908037
-0.883112
0.0871675
-0.000239037
0.0195584
0.012917
-0.00653949
-0.353623
0.0131026
-0.0148909
0.00514347
-0.000829454
0.000660467
-0.00819234
0.00199259
0.0128776
0.0241458
0.00259971
-0.0237364
-0.204064
0.234016
0.0679047
-0.137271
-0.0841772
0.125888
0.00617114
0.0505458
0.0466983
-0.00130322
-0.000602401
-0.0172866
-0.0140775
0.0106905
-0.016868
0.0120025
0.0197153
-0.00126611
0.021171
0.119985
-0.0369741
-0.0208136
0.0229542
-0.0127818
-0.0183619
-0.00355004
0.00427278
-0.0032645
-0.00328158
0.103203
-0.206967
0.215561
0.05035
-0.0589439
0.00537711
0.0103543
0.00346992
-0.0192013
-0.0155983
-0.00615355
0.0106363
-0.00623405
0.0215322
0.00666305
-0.0219612
0.019601
-0.00219662
-0.0148513
0.000724593
-0.000518433
-0.000772727
0.00991133
-0.00158545
-0.00878178
-0.000515183
0.415626
0.4938
-0.429736
-0.0633803
0.00207059
-0.000818964
-0.00505609
-0.0525171
-0.0195784
0.00166836
0.012141
0.000333604
0.0103755
-0.00013848
0.0574628
0.0785004
-0.121454
-0.00126029
0.00119187
0.00543414
0.00197413
0.0560716
0.000359856
0.00194556
-0.0300878
0.0349776
-0.00816457
-0.0738782
-0.518015
0.682998
-0.734136
0.569152
0.0673987
-0.027058
0.209168
-0.201246
-0.0534674
0.0841474
0.00612531
-0.00509714
0.000316352
-0.000482213
-0.0225686
0.0127721
0.00551043
-0.00713798
-0.0013205
0.00294806
-0.0032294
0.0152695
0.27157
-0.0205115
0.00517979
0.0114678
0.00386398
-0.0257613
0.0219725
0.00818153
0.0740298
-0.0656771
-0.0540077
0.59182
0.0465962
-0.0803351
1.81858
-1.85187
-0.122443
0.154176
-0.118458
-0.031218
-0.00199836
0.0334399
0.231987
-0.131249
0.00996563
-0.0435984
0.0427818
0.519063
0.106089
-0.137623
-0.487529
-0.00107385
0.00025696
-0.0015368
0.00122614
-0.0110039
0.0033056
-0.0163729
0.144218
1.52295
-0.107835
-0.140348
-0.635454
-0.0152309
0.00020779
-0.00013753
0.032915
0.0213665
0.00519536
-0.0131469
0.00623497
-0.0190403
-1.25007
1.04791
0.71566
-0.000435733
-0.000249858
0.000282318
0.000403273
0.00641632
-0.0021379
-0.00823097
-0.78999
1.09035
-0.00754913
-0.0202503
0.00138225
1.35257
-1.10518
-0.535168
0.590247
-0.000524447
0.00045698
-0.00304246
0.0114381
-0.0144691
0.00122797
0.413649
-0.650791
0.00521016
-0.00427872
-0.00382121
-0.171055
-1.28864
-0.00582262
-0.012172
0.00617455
0.138979
0.0146816
-0.0619064
0.0114913
0.0108762
-0.0054965
-0.00629746
-0.418423
0.594924
-0.11108
0.00343948
-0.00152747
-4.62488e-05
0.00148844
0.195133
-1.18306
-1.29867
1.16805
0.29081
0.00914108
0.00899266
-0.139452
0.193482
-0.0251906
-0.0288396
0.00925666
-0.04504
0.104599
-0.240996
0.140322
0.026683
-0.156955
-0.0340075
0.0908055
0.134469
0.0140565
0.0023986
-0.008286
-0.0125157
0.00730251
0.00429928
0.00213914
-0.00389493
-0.00254349
-0.183843
0.313329
0.0926812
0.0410363
0.0113725
-0.01018
0.0100198
0.0122796
0.0137113
-0.01185
0.0442107
-0.991687
-0.193256
0.00131785
0.0113787
-0.0150886
0.0373856
-0.0249565
-0.0205674
0.00198508
0.00996615
0.326599
0.00184526
-0.0764893
0.0652592
-0.00816682
0.00693756
-0.0102559
0.0325748
-0.0644788
-0.336399
0.186908
-0.433976
0.00427736
-0.0134295
0.00928627
0.00118991
0.000146577
0.0967221
0.0204348
-0.0021286
0.00245861
0.00801267
-0.0126282
0.0227965
0.00836212
0.0467944
0.0143608
-0.000733729
-0.0219754
-0.0296805
0.0334299
0.098231
0.089422
0.0024102
-0.00779648
0.0100395
0.000750051
0.0428891
0.00037948
-0.000395843
0.000363919
-0.000155931
0.00383463
-0.00810961
0.0103784
-0.0019165
0.00391508
0.00308338
0.0114932
0.00190823
-0.00224036
-0.000252099
0.000414689
-0.000275999
0.00407946
0.00585252
-0.00624232
0.00606775
-0.168515
0.17599
0.169167
-0.176642
0.00214403
-1.50868
1.54156
0.000948372
0.000658492
0.249112
-0.385329
-0.108197
0.010285
0.0147132
0.00760074
0.00348448
-0.00405526
-0.000938637
0.00250972
0.0153526
-0.0140577
0.00199267
-0.0032876
-1.17097
-0.297917
-8.6737e-05
0.000943706
0.00020982
-0.000783513
-0.0017828
-0.00309314
-0.843269
0.867185
0.466328
-0.490244
0.0307229
-0.0206572
-0.284211
0.468534
-0.00607537
0.0146499
-0.0117662
-0.00138441
0.00174415
0.00133802
0.00156524
0.126445
-1.2764
0.00598891
-0.0147923
0.0507501
-0.0382879
0.014083
1.19997
-0.000360705
-0.00611971
0.00230325
0.00107745
0.00670701
0.000308021
-0.0192327
-0.312025
0.321753
0.00959317
0.0458157
0.0102183
-0.0376603
-0.0161649
0.480819
1.75449
-0.000329047
0.000858165
0.000308778
0.233908
0.244067
0.16368
1.11701
-0.0081581
-0.324826
0.125204
0.00301914
0.196603
0.0864788
0.129233
-0.000131605
0.00011941
0.000255172
0.184976
-0.00185074
0.00695837
0.0138589
-0.00603837
0.00750388
-0.0153244
0.00270904
0.00507973
-0.0011484
-0.00684797
-0.0280632
0.418285
-0.000872258
-0.0275991
0.0867286
0.0107385
0.00135624
-0.0341854
-0.0192515
-0.097938
0.0341077
-0.029316
0.0931463
0.00371727
-0.0159235
0.0213667
-0.0966613
-0.158013
0.00138767
-0.00147816
-0.00342695
-0.00135587
0.00254397
-0.0103826
-0.0181319
-0.00303599
-0.00544119
0.084488
-0.00521656
-0.165198
-0.00598368
0.00711581
0.00250876
-0.0123592
0.00533912
-0.00317669
0.00129849
-0.00251873
-0.110481
-0.0617544
0.070622
0.00133048
0.0001248
-0.0508008
-0.0280841
-0.0199929
-0.790067
0.000412529
0.000591139
-0.000292901
0.00815228
-0.00223275
0.0149219
0.00831279
0.00853658
0.0155177
-0.0190416
-0.00453448
-0.0074579
-0.0207002
0.0257271
-0.0292307
-0.00641439
-0.00320974
-1.51907
-0.773771
0.00079573
0.000349918
-0.000794772
0.268241
-0.0888625
0.0664644
-0.0205122
-0.0110853
0.0148136
0.0167838
0.0278869
-0.0395994
-0.0754453
0.00536793
0.00871209
-0.0230249
-0.00627087
-0.0101012
0.0095459
0.0112213
0.00112425
-0.0210015
0.0317191
0.0258092
-0.0218902
0.0476604
0.000715152
-0.00137737
0.000895042
0.0111836
0.00109557
-0.000848408
0.0141858
0.109703
0.148888
-0.100633
0.526285
0.208369
0.106426
-0.246373
-0.00126254
0.0123264
-0.0135093
0.0433104
-0.122392
0.00504393
0.107157
0.0322043
0.00399491
0.00558528
0.047255
0.531446
-0.336124
0.267445
-0.0293117
-0.00298159
0.307848
0.0136362
-0.0131548
0.00100104
0.50586
-0.302984
-0.011627
-0.0863722
-0.0620954
0.0646636
-0.027434
0.0361396
0.000618344
0.573895
0.197669
-0.0211481
0.00195271
-0.000696758
0.0105708
1.32913
-0.817929
0.0368205
-0.00657591
0.00629744
0.0177041
-0.0174256
-0.0742771
-0.0713058
-0.419289
-0.272651
0.338289
-0.116886
0.00129081
0.499665
-0.51839
1.03118
0.000758149
-0.0137565
-0.010399
-0.00292902
-0.000126166
0.0432066
0.0293504
-0.0325892
-0.0399678
-0.00117104
-0.183208
-0.000841263
0.000285728
-0.00137155
-0.0113353
-0.000971127
-0.0192205
-0.0340763
0.0383612
-0.0269173
-0.0257645
0.0215521
-0.00160922
-0.00472892
-4.24935e-05
-6.01676e-05
-0.00236323
0.00274643
-0.0137332
-0.0356677
0.0193131
0.0625714
-0.0639147
0.122697
0.0964211
0.0314441
-0.0897242
0.00505092
-0.00250152
0.29396
0.29068
-0.121967
-0.302793
0.011907
0.00138052
-0.0347138
0.48783
0.0108961
-0.0112619
0.00499593
-0.0137019
0.00620297
-0.185087
0.0635429
0.000564811
0.000379244
0.0722558
-0.0578838
-0.014736
0.0035084
-0.00154143
-0.0347729
0.0854679
-0.819262
-0.300219
-0.248364
-0.00010924
0.0132035
0.0394434
-0.0067353
-0.00264369
-0.00223299
-0.00851225
-0.686205
-0.0186185
-0.0262904
-0.0639904
0.00397326
0.000595059
-0.00629365
0.699135
0.317083
-0.0786265
0.00542558
-0.00338175
-0.00226273
0.237311
0.0989956
-0.00109971
-0.000568828
0.0185865
-0.671107
-0.534697
-0.237398
0.353672
0.0170064
-0.0849853
-0.0484177
0.0874159
-0.136149
-0.142869
-0.0892365
0.155811
0.30157
-0.361927
0.00219256
1.0413
-0.525393
-0.203283
0.00128127
0.0260165
-0.00282146
-0.00329766
-0.0184645
0.00954393
0.0175098
-0.0085893
-0.00037552
0.000280776
0.000597683
-0.00117907
0.00487611
-0.00361085
-0.0103521
-0.20245
0.131687
0.51323
-0.442467
-0.017849
-0.94879
0.83566
-0.881862
-0.390242
0.697937
0.981905
-0.008546
-0.000731494
0.00650525
0.00826583
-0.0134557
0.0143286
0.00279842
0.0018353
-0.0120345
0.00740076
0.0530509
-0.00322486
0.00233121
-0.0016795
0.00257316
-0.0464843
-0.0204391
-0.000763339
0.0397629
0.00937429
-0.0538199
-0.00859104
0.0222329
0.00321183
0.0116922
0.000516245
-0.0161701
0.0485583
-0.0525064
0.33218
-0.859234
-0.292208
0.00816549
-0.00551241
-0.00178792
0.850541
-0.0177308
0.000103132
0.000536043
-0.10116
-0.0186027
-0.286466
0.142457
-0.0174931
-0.0147048
-1.54138
1.5128
0.0346953
0.049173
-0.0373394
-0.0573924
-0.0115527
0.019576
-0.0144831
0.0584077
-0.00495241
0.00416314
-0.00170247
0.0288267
0.440248
-0.0430615
-0.135902
0.00620272
-0.0254744
-0.12018
0.0576392
0.197598
0.300218
-0.165399
-0.000970931
0.00142658
-0.00123063
0.0321732
0.0132274
0.0797609
-0.133028
0.548581
0.00991401
0.00651663
-0.00811836
-0.00831227
0.14159
-0.000990305
-0.0031573
0.00448404
0.845715
0.22271
0.00548404
-0.00914944
0.00866103
-0.00133889
-0.00208507
0.0137064
0.212381
-0.084896
0.199578
-0.278714
-0.189295
-0.20076
0.16021
0.308188
-0.043491
-1.6064
1.94385
-0.00675999
0.00514904
0.0103767
0.0178392
-0.0747326
-0.0939721
0.0343367
-0.0159726
0.00547644
-0.0183418
0.117796
0.0852663
-0.0196931
0.0138227
0.0183672
-0.0124967
-0.0287959
0.204393
-0.157528
-0.0180694
0.00627265
-0.00262951
0.000613974
0.00885504
-6.84315e-05
0.015318
-0.0735941
-0.0264911
0.0941243
-0.0140095
-0.00675336
0.0816101
0.275856
-0.259766
0.466719
0.00389323
-0.00568467
0.00763394
0.00493951
-0.00475739
-0.135209
0.062761
0.191665
-0.0432541
0.00462287
-0.00409959
-0.00536695
0.00362208
0.0132246
-0.000339137
0.1651
-0.181585
-0.0584952
-0.00156638
0.000148676
0.000874858
-0.647551
-0.990471
-0.000870422
-0.0195752
-0.0148162
0.0239154
0.203916
-0.291457
0.0828647
0.219478
-0.0341016
-0.0860451
-0.035552
0.0649304
-0.850534
0.0241897
-0.015386
0.00179366
-0.145015
-0.0211407
0.0789508
0.0872047
-0.144152
-0.256529
0.000962336
-0.00143081
-0.317354
-0.0343911
0.151346
-0.00842445
0.0547959
-0.0376035
0.118069
0.192943
-0.00933811
-0.00302716
0.0026506
0.00561967
-0.00584923
0.0276823
-0.0279926
-0.452363
0.128326
-0.221037
0.175964
0.013893
-0.0133057
-0.195524
0.0819183
-0.00624121
0.00203857
-0.000654199
0.325396
-0.0161007
-0.00408831
0.0162038
-0.000219701
0.000656158
0.0964121
-0.0465617
-0.00160294
0.000593079
0.000984303
0.017149
-0.0477713
0.0339043
0.189186
-0.0238768
-0.199213
-0.0427484
0.0194305
0.0684239
-0.00334944
0.0119497
-0.000699152
-0.677395
-0.00851281
-0.00531184
0.00198628
0.000307942
-0.00139248
-0.00288871
0.00194315
0.00216154
-0.268003
0.107281
-0.175677
0.0133538
0.430435
-0.439159
-9.94685e-05
-0.00020416
-0.0694577
0.0803244
-0.0110062
0.0589831
0.0127492
-0.0440499
-0.149473
0.124774
0.928145
-1.34435
0.0117571
-0.0066918
-0.0053939
0.000135522
-0.00255456
-0.0421959
0.0108038
-0.000729761
-0.00106008
0.212321
0.151218
0.0190343
-0.0216076
0.000930396
0.501538
-0.183148
0.033333
-0.102937
0.0942663
0.0332079
-0.030226
0.0544826
0.0314032
-0.0288294
-0.00242373
0.00273823
-0.00895874
0.0109566
-0.000316916
0.0432288
0.0319019
-0.034286
0.000546624
-0.0283126
-0.00150759
0.00293061
0.0141257
0.000256959
-0.00944026
0.0214523
-0.0185934
0.140941
0.0458075
-0.200427
0.0136783
0.000903184
0.000790859
-0.0539832
0.00696702
-7.33547e-05
-0.00814456
0.00125089
-0.0403073
0.317235
-1.33478
-0.00642072
-1.80757
0.852499
-0.00115961
0.00302788
-0.600699
-0.000549025
0.000796808
0.225439
-0.323437
0.278532
-0.180534
0.22177
0.00165908
0.00138279
-0.00142368
-0.40976
0.00919804
0.00701903
-0.364249
0.00663871
0.0326404
0.0091099
0.0331776
-0.0486083
0.00632088
-0.0176198
-0.0375203
-0.480384
0.0764882
-0.0257373
-0.0203529
0.0456297
-0.0252978
0.0252531
0.000221427
-1.79854e-05
-0.000483591
-0.0342677
0.0307839
-0.0242534
0.0168993
-0.0104513
-0.0460631
-0.049063
0.00136737
0.000963512
-0.000537221
-0.00235268
-0.331202
0.00649224
-0.00197641
0.000284361
-0.000199082
-0.0151729
-0.00768109
0.231486
0.164865
0.209686
0.00373147
0.0455769
-0.0520075
0.0287133
0.00564343
0.00392327
0.00323953
-0.00502366
-0.000437449
-0.00986731
0.0954099
-0.00125246
-0.0266117
7.18639e-05
-0.100815
0.0659707
-0.0462579
-0.0512786
0.0134006
0.0481809
0.00331364
-0.00303992
-0.0106403
0.112099
-0.0105908
-0.0105307
0.00147117
-1.67183
0.01253
0.000588029
-0.230769
0.230572
-0.176564
-0.000122791
0.00940038
0.00622498
-0.00267397
-0.00781052
-0.00556884
-0.0660444
-0.00156317
0.000190769
-1.04705
0.257452
-0.214041
0.0292862
-0.00965896
0.0406616
-0.000489007
-1.94488e-05
0.00833566
-0.0122059
0.0139636
-0.00156248
-0.0134003
-0.000586533
0.000524367
0.00763597
0.00428258
-1.41533
1.65525
-0.283411
-0.0121021
0.01244
-0.00196952
0.00139579
-0.0113997
0.00181926
-0.0163748
0.0350212
0.301806
-0.307637
-0.0010065
0.00101044
-0.00133594
0.0358619
-0.0172104
-0.0927673
-0.0271534
0.00469633
0.0139516
-0.0126648
-0.00598309
0.0030444
-0.0303497
0.00933315
-0.0047956
-0.00566306
-0.491715
-0.0032069
-0.00777911
-0.00492249
0.022931
-0.0291737
-0.0725418
0.0446461
0.0110327
-0.000286757
0.0015801
-0.00369641
0.00951726
0.0019019
0.0142256
-0.0540639
-0.0114403
0.00396665
0.00194743
-0.0102643
0.00325728
-0.00571019
-0.01526
0.517681
-0.374407
0.814484
1.15011
-0.79654
0.00166915
-0.00121799
-0.00415206
-0.0347766
0.0133981
-0.00365593
-0.0131992
0.0441833
0.602834
-0.0461912
0.18209
-0.0150496
0.00979782
0.220506
-0.223054
-0.0180422
-0.0212222
-0.115584
-0.00939583
-0.00701386
0.00922735
-0.0323101
0.0574249
0.0390944
-0.0233801
0.0174777
0.0347291
-0.0244491
0.014347
0.99499
0.537428
0.000374868
-0.000181072
0.000279634
0.000589984
0.339299
-0.607465
-0.022484
0.0122278
0.0827412
0.241918
-0.220061
0.355086
0.25374
1.39117
0.508575
-0.0578888
-0.134971
0.298966
0.204342
-0.00248028
-0.0120147
0.0229398
0.123317
0.847596
0.921423
-0.0309932
0.0718099
-0.0743945
-0.00165214
-0.0283079
-0.0423966
0.0226455
-0.0131746
0.489149
-0.0439516
0.000956369
0.000378829
0.201674
-0.00106375
0.00580224
0.0754086
-0.123038
-0.183139
0.0266033
-0.102291
-0.0366054
0.0469502
-0.0162475
0.0140822
0.017174
-0.0382833
-0.00538112
0.0194882
0.0266641
-0.000752342
-0.373162
0.715948
0.318113
-0.0129319
0.0066627
-0.00865366
0.0121168
-0.0109588
0.0215788
-0.00697147
0.00868577
0.0116898
0.0557049
0.0517556
-0.0336132
0.00664479
0.0176327
-0.615713
0.500674
-0.00136332
-0.00304889
-0.00813518
-3.04826e-05
-0.000893559
-0.000521943
-0.00971177
0.00993875
-0.0106981
0.354775
-0.334089
-0.0509473
0.0353071
0.0290408
-0.00843022
-0.0124563
0.015007
0.0224412
-0.0220406
-0.0121717
-0.000881373
0.000239811
-0.0165705
-0.00212452
0.0025077
0.0161874
-0.00141372
0.00856725
0.00697213
-0.0692035
0.106683
0.0185924
0.0040221
-0.00689291
0.00228428
-0.000160638
-0.0109939
0.000228809
0.000350609
-0.00162968
0.0185674
-0.0534846
0.0520662
0.272534
0.141754
-0.000373709
-0.0291322
0.00303486
0.000359989
-0.0140372
-0.159919
0.185917
-0.398678
0.0576432
-0.00591229
-0.00475182
0.268726
-0.599056
-0.216311
0.533456
-0.0165359
-0.00204954
0.00031539
0.0170337
0.00109778
1.05978
0.695857
0.0815715
-0.0447808
-0.0840057
0.00478146
-0.00379849
-0.396225
0.693204
1.27231
-1.56929
-1.40965
1.19272
0.53416
0.0306163
0.0380754
-0.0474697
0.00217707
-0.0217622
0.0221797
0.000203268
0.0199169
-0.00604787
0.0443706
0.0927658
-0.0548957
-0.00146251
-0.00154291
-0.0343969
0.0314813
0.0779486
-0.0750331
0.449591
-0.370666
1.4014
-0.00378805
0.0178936
-0.0120984
0.00665945
-0.175734
0.119216
0.0020017
-0.0016321
-0.00949951
0.0421673
0.0151717
-0.602681
-0.788302
0.918159
-0.114301
0.00380287
-0.0435002
0.0294404
0.00164177
1.26596
-1.36282
-1.13496
1.07394
0.00463278
0.112508
-6.9281e-05
-0.00111634
-1.05069e-05
-0.00415379
-0.242488
-0.103913
0.0104006
0.00816245
0.00212002
0.00908204
-0.00604212
0.00182328
0.0472496
-4.22099e-06
-0.000446178
-0.0363283
0.0465818
-0.0234103
-0.0161461
0.233107
-0.0125922
0.00417167
0.000210431
0.128677
-0.227279
0.482609
0.0138061
-0.0168317
-0.118006
0.233653
0.0371299
0.0184303
-0.000265777
-0.00636888
0.087637
-0.0915858
-0.0304579
0.0378887
0.00736741
-0.00361694
-0.0736748
-0.00051867
0.00173905
-0.0600389
-0.162844
0.462784
-0.81178
0.0231896
0.0286819
0.453509
-0.0376525
0.0407585
-0.0539069
0.005579
0.0785381
1.09595
-0.104958
0.0475438
-0.0445804
0.0536377
0.00111993
-0.100637
-0.000682385
-0.00439846
0.00139713
-0.0966571
0.517904
1.1915
0.00144876
0.0326628
0.00147443
0.000800441
-0.0141968
-0.00327593
0.0241354
-0.0114677
0.00905186
0.0240581
-0.0118226
0.00694523
0.019155
0.000900019
0.011594
0.0278745
-0.0172348
-0.0154075
0.0229421
-0.0272561
-0.0131286
0.00242941
-0.000636127
0.00406838
-0.0133786
-0.0325235
-0.214461
-0.000149442
-0.000102071
0.000285121
0.674287
-0.406733
-0.792969
0.00759844
-0.320129
0.779467
-1.11013
1.15795
0.832575
-0.278416
0.0110278
0.00663969
0.105281
-0.00931854
-0.102987
0.0308244
0.0792362
0.011916
-0.0074939
-0.0195431
0.0282149
0.0368948
-0.482969
-1.57007
-0.00705008
0.000809074
-0.0806856
0.0834545
0.103069
-0.0124172
0.0167472
-0.00272785
-0.0124314
0.0132831
-0.0106853
0.00728617
-0.0265659
0.0314256
-0.871834
1.5072
-1.42543
-0.0107456
-0.000517445
-0.00419921
0.00508166
0.00259465
-0.0175348
-0.00755914
-0.0118062
-0.148322
-5.57708e-05
-0.011832
0.0148216
0.0303339
0.0167254
-0.0163364
-0.821512
-0.00422345
0.00149705
-0.0120612
0.00125972
-0.000917296
0.0171035
-0.0118064
-0.0133998
-0.00103255
0.923187
-0.0010821
-0.0237834
-0.00533741
-0.508536
0.361958
0.00602908
-0.00506664
-0.045619
0.00842918
-0.0116236
0.00730727
0.000378397
0.492401
-0.335299
0.00510792
0.0231994
-0.00176355
0.00640859
0.0480511
0.00625267
-0.0359982
0.201268
0.0806901
-0.155553
-0.0340333
-0.00961462
0.00683757
0.00769312
-0.0197816
0.00225568
0.226979
-0.16554
0.0278392
-0.0211462
-0.0015495
0.0411883
-0.0573404
0.0387089
-0.0125488
0.0319593
-0.0848003
-0.0452316
0.0980725
0.100624
0.104467
1.28976
0.273126
-0.158086
-0.0134737
0.0147519
-0.00284063
0.00173441
0.00403573
0.00776865
1.15731
1.21004
0.00551349
0.537719
0.0130261
0.0017157
-0.00387908
0.071614
0.000403675
-0.000803726
0.00219052
-0.0762449
-0.0364996
0.018391
0.0235521
0.000226979
-0.000876551
-0.0095752
-0.00482114
-0.0235525
0.0263188
-0.00966112
0.0219205
0.000628395
-0.000251097
1.37605
-1.05569
-0.000402656
-0.00019149
-0.00387628
-0.0871509
0.0287465
0.306648
-0.000309938
0.00304815
-0.0875375
-0.124184
0.0295645
-0.036188
0.0166216
0.0183906
-0.00196849
-0.924598
0.503426
0.00995989
0.953013
-0.843379
0.0936562
1.28328
-1.83428
0.00739972
0.0213022
0.0100256
0.0746146
-0.0385732
-0.174301
0.0190691
0.00228131
0.0298186
-0.0813139
-0.014393
1.01005
0.905134
-0.260074
0.233106
0.0044111
-0.0042223
-0.00572738
-0.0096529
0.00225172
-0.000322995
0.167953
0.00116159
-0.00261091
0.00634639
-0.0136465
0.00991099
-0.0123556
0.0098846
0.411948
-0.186957
-0.427441
0.0448266
0.0163603
-1.07494
1.03077
0.235201
0.0341028
-0.0537433
-2.0093
0.022957
-0.152399
-0.0174146
0.0200292
0.00974872
0.0557003
-0.0506737
-0.0127568
0.0177614
0.0260772
0.0206084
-0.0194272
-0.00292553
-0.0157554
0.0287284
0.00754809
-0.0241596
1.48874
-1.28167
0.0023194
0.00156853
-0.00468981
0.000596741
0.000129277
-0.000966909
0.12317
0.456891
-0.00662407
0.00435836
-0.00860665
0.0168666
0.101559
0.00132345
-0.00704101
-0.00631383
0.212757
0.204859
-0.0866209
0.101783
2.95413
0.328691
0.000102416
0.0445196
0.0122395
-0.000622225
0.00165535
-0.00211151
0.00699278
-0.000975074
-0.00445757
0.00037729
-0.0673441
0.00255339
-0.00458003
0.00015721
-0.187568
-0.149448
0.170457
-0.0192674
0.00801033
-0.0126343
0.018435
0.359111
-0.371217
-0.0605658
0.00191006
-9.36516e-05
0.000646554
-0.000178149
-0.066396
-0.0183905
-0.0071413
0.000473714
-0.000575223
-0.0114372
-0.0444238
0.0350637
0.0198163
-0.0104563
0.0635314
-0.0441929
0.0658018
-0.0736507
-0.0771364
-0.285399
-0.000586898
0.00312588
-0.041447
0.0525761
0.000328046
-0.0188062
-1.39084
1.40519
-0.0817209
0.0825216
0.0128511
0.00873052
-0.00889911
-0.00922723
0.0431485
-0.0643901
0.00802788
-0.00500967
0.00404858
0.0518543
-0.0239466
-0.00407166
-0.00473493
-0.00389202
-0.105778
-0.233095
-0.00152966
-0.147025
0.188893
0.425852
-0.424809
-0.0224238
-0.0128052
-0.00040295
-0.0513308
-0.0114228
-0.0228174
-0.00476679
-0.011228
0.0101702
-0.00282802
0.0366772
-0.00236779
0.000494502
0.0120518
-0.00873711
-0.0340467
0.0295929
0.00975603
0.0156349
0.0109864
0.930874
-0.31952
1.17304
0.036699
-0.0156169
0.0169092
0.0464114
0.0641271
-0.00848327
0.00062531
0.760874
-0.77075
0.328411
-0.019644
0.527332
0.0265402
0.00569405
-0.00480982
0.0131015
0.0667945
-0.00162049
-0.0024409
0.000263072
-0.0302721
0.0193813
-0.317699
0.000335194
-0.000157033
-0.0125776
0.00572548
0.0131699
-1.04298
-0.660157
0.00133724
0.00944545
0.00112436
0.0940608
0.0973904
0.0806289
-0.000567128
0.613224
-0.00457168
0.000651258
-0.000623304
0.0987423
0.130378
1.29383
0.000282052
-0.000207327
-1.19735
0.0916251
-0.0822168
-0.226187
0.000191704
-0.00266319
-0.210578
0.000128718
0.014914
-0.0117397
0.0230586
-0.0136002
0.253255
0.0162621
-0.0633541
0.285632
-0.00147363
0.277096
-0.22513
0.721706
-0.0416615
0.000872126
0.0192206
-0.00167182
0.0467491
-0.0168482
0.0172536
-0.00679442
-0.0271446
-0.00139161
0.0120217
0.112242
-0.00621102
0.167361
-0.116705
0.199808
-0.844415
0.680449
0.00474973
0.00665577
0.00923548
-0.0179733
0.0338644
0.0144427
-0.141971
0.00249392
0.00354192
1.00006
-0.965979
-0.020146
-0.0138266
0.00046679
0.0112372
0.0122923
0.00138387
0.014297
-0.00638999
0.00851693
-0.035169
-0.00650468
-0.0771263
0.0431162
-0.00872123
0.343693
-0.0806111
0.000240823
0.00687322
0.0022016
-0.0167574
-0.030907
-0.00175095
-0.000954461
-0.00544757
0.0054659
-0.00524927
-0.0457225
0.0161492
-0.223257
0.823868
0.0264555
1.50952
0.00598113
0.0713209
-0.100565
-0.000479632
0.00139021
0.00608401
-0.00498808
-1.72133
0.040432
1.19793
0.14251
-0.2225
-0.00146349
-0.00290969
-0.152654
0.137663
0.0162413
0.021636
-0.0202081
-0.0176692
-0.000551695
-0.0571895
-0.00472067
-0.00120927
0.00318485
0.235531
0.891902
0.294704
-0.0455334
-0.00636082
0.00378778
0.0157645
0.00435932
-0.255912
0.811078
-0.457508
-0.334427
-0.000114557
-0.000219203
0.0251384
0.53416
1.07249
-1.02044
0.000702329
0.0936972
-0.000139084
0.147968
-0.0067384
0.0170423
-0.405641
-1.22791
-0.017248
0.26929
-0.473157
0.025804
-0.0531158
0.00010426
-0.137589
-0.0697363
0.0435693
-0.00396924
0.00199291
0.0266315
-0.00156286
0.00114112
-0.269378
0.198898
0.0783588
-0.0632398
-0.00530595
0.004771
-0.00687145
-0.00413988
-0.00587827
0.0963649
-1.18519
0.00113805
5.90049e-05
0.49601
-0.465485
-0.000875552
-0.121092
-0.0199159
0.0128014
-0.0124271
-0.00355138
-0.075296
-0.139756
-0.00362224
0.00259242
0.00312025
0.00273798
-0.00471395
0.00632007
-0.035879
-0.919985
-0.000858317
0.00292949
-0.00510716
0.74194
0.716407
-0.92304
0.00595381
-0.175681
-0.318869
0.898171
-0.207337
0.000319709
0.183795
-0.106682
-0.185757
0.142607
-0.137426
0.0110623
-0.00693028
1.03847
-0.00841215
-0.530986
0.00521043
-0.0278477
0.0540974
0.214963
-0.0576358
-0.211424
0.0234732
-0.040116
0.0478375
-0.0134239
0.000747943
0.453926
0.219468
0.0541081
0.00277452
-0.000632298
0.00108582
0.00175946
0.0384165
-0.0613515
0.0119409
-0.0189394
0.06835
0.000261866
1.52132
0.0538504
0.00322849
-0.00555333
0.00870862
-0.348579
0.00946306
-0.00935916
0.014668
-0.0214092
0.00155161
-0.0026439
0.00515014
0.0163038
-0.000272362
0.00363681
-0.45329
-0.962689
0.477855
0.0178885
0.000200345
-0.0399678
0.0417082
0.0876717
-0.633305
0.856424
1.22972
0.041416
0.031478
0.0244559
1.19025
-0.185416
0.00844035
0.37516
-0.0925071
0.0992758
-0.0147281
0.0144641
-0.00157908
-0.0153885
-0.000850799
-0.000590476
-0.112052
0.0909867
-0.00064822
1.12917
-1.40398
-0.236153
-0.125448
0.0892493
0.0563106
-0.0274629
-0.0279989
-0.0162572
0.0347966
0.0390998
-0.0121322
-0.110637
-0.0285306
0.0349633
0.194502
0.771116
-0.000782149
-0.00126411
-0.0142039
-0.0166424
0.0123716
0.00463318
-0.0104964
0.0119328
0.605458
0.502204
0.00680593
-0.0342241
-0.0265108
0.00754555
0.00674675
-0.0259322
-0.0696981
0.00931183
-0.0102643
0.00868202
1.78455
-0.834725
0.0671545
0.00155856
-0.0211693
-0.0520241
-0.257853
0.200774
-0.268846
-0.000521093
0.00059292
-0.0109576
-0.00685408
-0.00017119
0.00744138
-0.00795814
0.036621
0.619464
0.0259979
-0.00428504
0.00106688
-0.0062268
-0.00884222
0.0193954
-0.0185852
-0.00668559
-0.0167638
-0.0382903
0.0408842
0.00325588
-0.0240214
0.0176899
0.0029113
0.00768829
0.000186163
0.0103605
0.134146
-0.144086
0.166291
0.0920682
-0.120686
0.00452929
0.000373791
-0.000400384
-0.31652
0.0126103
0.00839788
-0.00841769
0.403432
0.112793
0.0430057
0.000181011
-0.916656
0.0251306
0.0688444
0.425265
0.625242
-0.905799
0.0168041
-0.0156172
-0.00682345
0.0159813
0.0108972
-0.000378047
-0.0125111
0.0159783
-1.13113
1.07428
0.871342
0.00876858
-0.0085222
0.0145465
-0.00502513
-0.0109323
0.0657182
-0.0398098
-0.0093574
0.0361236
0.00430269
0.000206128
-0.00704738
0.00253856
0.00266734
0.00726182
0.284541
0.705258
-0.574673
-0.000303605
0.00921944
-0.00197986
-0.000821447
-0.00648574
0.22878
-0.566506
0.0301726
-0.00977086
-0.00213316
0.252675
-0.208366
-0.00214246
0.00645425
-0.00793403
0.000906065
0.00154689
-0.000500377
0.00593875
0.00997496
0.0106116
-0.0109484
0.000577553
0.00215268
-0.0189779
-0.0231425
0.0275817
0.036912
-0.508313
0.0287712
-1.13337
1.41523
0.173926
-1.23465
1.1965
-1.18782
0.0109967
0.00367733
-0.000158582
-0.00486648
-0.00249773
0.119227
-0.000143707
0.000217332
-0.00025673
0.000910439
-0.0119321
0.72355
-0.358341
-0.000276271
0.000331589
-0.000494433
1.3989
-0.153138
0.157008
0.131416
-0.757175
-0.00211351
0.00244061
0.186056
0.372684
-0.00470973
0.00651631
0.0576903
0.349996
-0.220771
-0.000666659
0.00067937
-0.000596973
-0.409611
-0.0136065
0.00174912
-0.00208714
0.0164948
0.0280666
-0.00969533
0.0111615
-0.20138
0.00632995
-0.0171061
0.02032
0.00672727
-0.00736366
-0.000582634
-0.0381882
0.0423406
0.0720327
1.39792
0.10398
0.000148228
-0.0531012
-0.161605
0.44387
-0.024138
0.0878645
0.012501
-0.140372
0.180545
0.290278
0.0100304
-1.05707
-0.517387
0.493793
0.00244453
-0.00936155
-0.00792119
0.0075653
0.00649494
0.00164934
0.00126747
0.177138
0.0121567
-0.000362305
-0.00174639
-0.0130147
0.21402
0.238739
0.0232373
-0.0308019
-0.00013236
-0.0100221
-0.263425
1.61846
-0.0468108
0.127669
-0.115591
-0.00160352
0.00400628
0.00434399
-0.927814
-0.185586
-0.000581789
0.000165365
0.00110831
-0.00069189
-0.000813957
-0.00110514
-0.00111429
1.00694
0.350687
-0.886477
-0.470846
0.202222
-0.00310077
0.0349476
-0.0878415
-0.049397
0.0287336
-0.00133108
0.02533
-0.00175618
0.00109487
7.91105e-05
0.00274463
-0.00247294
0.0237618
-0.0364802
0.627159
0.000254104
0.0594056
0.345648
-6.40429e-05
-9.46664e-05
-0.159368
0.159153
0.00686803
0.00725909
0.00348021
-0.0238732
0.0131339
0.265412
-0.00494293
0.00811723
0.00809599
0.00930963
-0.00841296
0.0126355
-0.0141249
-0.00204694
-0.0205961
0.0146503
-0.00351347
0.00432843
0.355717
-1.34234
-0.000230337
-0.00258002
0.211036
-0.319088
0.33695
-0.228898
-0.00480647
-0.00309692
0.0108202
-0.0127053
0.00102774
-0.105264
0.000243337
0.026167
0.000293265
0.000122081
0.000468111
-0.056486
0.0674767
-0.00285193
-0.0151489
0.00477032
-0.00546759
0.00145324
0.0462236
0.0319617
-0.0473105
0.00471626
-0.008053
0.0112677
0.027548
-0.00485249
0.0688546
0.399295
-0.0920984
0.334627
-0.588938
-0.620982
0.762716
-0.00303858
0.0188815
-0.0179179
0.0123617
0.109798
-0.0286442
-0.000155523
0.000144465
-0.462385
0.335496
-0.0213746
0.000404543
0.0233323
-0.00554554
-0.00269929
0.00127149
-0.0934905
0.193643
-0.0063239
0.00244658
0.00678863
1.41689
-0.0105287
0.00106939
0.00594574
0.00470635
0.00415737
0.00116112
0.0704446
0.00132374
0.000949511
-0.0107328
0.07433
-0.0700779
-0.00126335
-0.00266656
-0.0907784
0.0950713
-0.0527106
-0.00443397
0.0151867
-0.252712
0.175855
-0.446351
-1.1507
1.11106
0.0228789
0.490485
0.00440225
0.0236008
0.0131223
-0.0128019
-0.0012113
0.75469
-0.0341517
0.0586585
-0.00442033
0.000627341
-0.00356356
-0.246626
-0.00282754
1.44344
-0.0327166
0.00857486
-0.00893601
-4.59215e-05
0.0993116
0.0595006
0.00984056
0.00960675
0.0649652
-0.018307
0.00511976
0.0233073
0.0190732
0.0772846
-0.0108925
-0.00455264
0.0104355
-0.00108909
0.0194132
0.0245275
-0.0117609
-0.00331103
-0.00116665
0.000973372
0.00515402
0.135076
0.079237
-0.00167162
0.376161
-0.461843
-1.4033
-0.0288604
0.0284608
1.01709
0.163128
-0.0403666
0.0306327
0.0135368
-0.0168533
-0.00231283
0.0187884
-0.00246238
0.000783776
-0.000457936
-0.000310483
0.00714188
-0.00723281
-0.00927063
0.0121163
0.0111874
0.024127
-0.0127954
0.0100085
-0.000417324
-0.00187797
-0.0220439
0.015091
0.000881718
-0.000884996
0.00310724
-0.0111149
-0.000910724
-0.0207371
0.0205533
-0.0367544
0.0369382
-0.127643
-0.0100152
-0.0192376
-0.0906026
0.000390248
-0.0594445
-0.0465452
0.000301955
-0.000289336
0.0111915
0.0790035
-0.0152157
0.0115901
0.014926
0.0218599
0.0217458
0.0119244
-0.00902971
-0.00243634
0.31269
0.0274054
0.0311941
0.00681189
-0.0185928
0.408081
0.399335
-0.42242
-0.0713306
-0.102637
0.0513117
-0.0819706
-0.799142
-0.000417898
-0.835852
1.26319
-0.000899779
-0.000996803
0.0309882
-0.0177686
-0.00511383
0.620997
0.858931
-1.21356
-0.136291
0.000383846
-0.000430918
0.0141992
0.0163265
-0.00551351
-0.00540488
0.0760647
0.261084
0.00534642
-0.0336839
-0.024718
-0.000731109
-0.0728417
-0.301982
0.0513866
-0.00876075
0.000462697
-0.00943611
-0.00582631
-0.280009
1.27871
-0.00365081
0.67386
-0.392567
-0.00518596
0.0141803
-0.011835
-0.00116738
-0.197784
-0.0997707
0.176242
0.051842
-0.165324
-0.00588536
0.0025474
0.00545332
1.36779
-0.0336955
-0.00785293
-0.0422575
0.0189717
0.00798224
0.00315066
-0.0292081
0.00896047
-0.00807212
0.00949476
0.0015621
-0.00455178
-0.178355
-0.0108775
-1.00421
0.724555
-0.000459566
-0.016698
-0.0104706
0.0122736
-0.758325
-0.0108741
0.507678
0.63376
0.033027
-0.00119275
-0.00016731
-0.011631
0.005649
-0.00130527
0.00421559
-0.0126873
-0.00944883
-0.00624415
-0.0114685
0.00342148
-0.514142
-0.00349888
-0.0271288
-0.0161371
0.000278643
-0.00519739
0.0247122
0.208032
-0.0106754
0.00480747
-0.0197253
0.000139468
0.0171087
-0.0129806
0.668626
0.00247891
-0.00282557
-0.00543047
0.0623328
-0.133191
0.23571
0.0145606
-0.00136973
0.0107737
-0.000943042
-0.0133671
-0.000142775
-0.109227
0.000238608
-0.00021189
-0.000566205
-0.00223644
-0.0347745
0.068822
-0.00338586
0.120141
0.125238
-0.0193298
0.00690844
-0.0150112
0.0113734
-0.213707
-0.00414656
0.00621795
0.00204846
0.0616287
-0.190339
0.144367
0.319209
0.298396
0.0050632
-0.00463267
0.045905
0.0370865
-1.01492
-0.000855301
0.000514897
0.463198
0.0282397
0.0080697
0.00410226
-0.0145161
0.199876
0.00134555
-0.00022262
-0.00126761
0.515363
-2.37371e-05
0.0136062
0.794914
-0.550072
-0.0101767
-0.000505032
-0.011261
0.201028
0.00342667
0.0163593
-0.0270148
0.00974595
-0.0119159
0.182201
-0.139752
0.814444
-1.48013
0.875231
-0.00809648
0.00559401
0.322445
-1.24127
-0.000677468
0.000693001
-0.000592129
-0.00964776
0.0086797
-0.00383593
5.6491e-05
-9.50034e-05
9.83265e-05
-0.0630726
-0.000387436
-0.0127731
-0.00803253
0.0666942
0.0234559
0.00576543
-0.00244564
0.139544
0.462448
0.0857876
0.0244748
-0.0153302
0.00365644
-0.013806
0.0218839
-0.015668
-0.000197672
-0.00765839
0.0811133
0.00854844
-0.0291734
-0.0572917
0.00866966
0.0130129
-0.0133419
0.00378674
0.00251716
0.00130101
-0.488467
0.511675
0.0151536
0.00861213
-0.0339529
0.0116185
-0.0157913
-0.13141
-0.00624191
-0.000721319
0.0125594
-0.00285626
0.00351859
-0.0014172
-0.00561411
0.000335067
-0.000840669
-0.000112927
-0.00023832
-0.487614
-0.0120301
-0.00417966
-0.00774726
-0.000386869
0.000173539
-0.0118456
0.0106518
0.00672078
0.00123618
-0.019841
0.00502277
0.00636894
0.000322082
-0.00122685
0.175946
0.0245468
-0.00656796
-0.00151628
-0.000114979
0.0145227
0.0042131
0.00744788
0.106202
0.00158473
0.00325315
-0.0785389
-0.163486
-0.0961359
0.012991
0.0385056
-0.0198515
-0.0257985
0.00695456
0.000725214
-0.00737321
0.00187392
-0.00858917
-0.00111305
0.000476305
-0.00674764
1.22148
-0.00811429
-0.00540727
0.000779734
0.0401045
-0.0275469
-0.404009
-0.0134801
-0.00592911
0.0232136
-0.374156
0.354374
0.000229812
0.00687529
0.000196001
0.0122312
-0.00903993
0.0110316
-0.139979
-0.000955516
0.000532903
6.46532e-05
-0.00850413
-0.00598569
-0.00571979
-0.03122
0.591766
0.00331585
-0.14188
0.0194145
-0.155186
-0.0461129
0.806168
0.0124368
0.00125063
-0.0129652
-0.00177159
-0.000392092
-0.0134412
-0.824518
0.00220886
0.0114179
-0.000529171
0.00168968
-0.000601704
-0.00667803
-0.00799829
0.0117926
0.0501076
-0.00604618
0.00011275
-0.0441742
0.126794
0.0105921
-0.108769
-0.0900647
-0.0117137
0.00915552
-0.000175767
0.000438722
-9.46098e-05
-0.0598704
0.0108308
1.91185
-0.00209636
0.00776473
-0.00124121
0.0435841
0.492521
-0.410789
0.0207774
-0.00215934
0.00192097
-0.000618497
-0.00214534
0.0447822
0.821788
-0.0124274
0.0122264
-0.00623516
-0.024908
0.0211279
0.0158845
-0.0671154
-0.100007
-0.000265867
-0.000371801
0.02174
-0.000832503
-0.0622969
0.138064
-0.134509
0.0431633
0.00269185
-0.00168615
-0.00171011
-0.00821984
0.0522011
0.359091
-0.0293037
-0.00157383
-0.0109608
0.0122244
0.00788766
0.000952278
-0.00358298
0.00866961
0.00837359
-0.013936
0.044181
-0.0172253
0.0207132
0.0119073
-0.00978686
-0.0137791
0.0125871
-0.0355179
-0.0215655
0.0558194
0.070749
-0.0536203
-0.00245216
0.00189322
0.332021
0.111274
0.0190288
-1.33778
-0.00192933
-0.00554797
0.00490745
0.24907
1.92582
0.0310608
-0.00851843
-0.16028
-0.0134975
0.0012475
0.00520896
-0.016475
-0.0225431
0.0296849
0.0310846
0.00634291
-0.0103896
-0.00377731
-0.00527927
0.00663285
-0.000566692
-0.197505
0.214172
-0.00444192
-0.00666647
-0.00840718
-0.0122632
0.0112933
0.529654
0.0938252
0.101068
-1.26263
0.00324532
-0.198109
0.0511692
-0.0242879
0.0189212
-0.00830099
0.290777
0.916963
-0.00444778
0.00635869
-0.188943
-0.0182508
-0.0135241
0.0134354
-0.071463
0.0718359
-0.442875
-0.00654918
0.00101009
0.0180417
0.00154874
-0.00974992
0.00180462
0.0168709
-0.0169147
-0.000878991
0.15189
-0.0930664
-0.00160752
-0.00867221
0.00467547
0.0111822
-0.00920484
0.0104968
-0.0423947
-0.937894
0.0102502
-0.0115455
0.911817
-0.70569
-0.000498325
0.000445756
0.00547925
-0.0100859
-0.556136
0.21349
0.0965976
-0.00976852
0.0239592
-0.0213041
-0.116915
-0.01668
0.00860704
1.07654
-0.000793653
0.0871066
-0.0102917
0.117234
-0.0374588
0.0313343
0.187266
-0.0297412
-0.000330772
-0.481207
-0.796382
0.904833
-0.882707
0.609258
0.0187727
0.000857718
0.102519
-0.470683
0.0106632
0.0107415
0.0066569
-0.00776129
-0.000193277
0.0116846
-0.0131787
0.0162753
0.0254604
-0.0227969
0.0161466
-0.00264624
0.0586477
0.0564244
0.0367618
-0.0013678
0.000473038
0.0522887
-0.040235
-0.00883386
-0.0164129
-0.00385425
0.00376785
-0.156291
-0.0104652
-0.00149067
-0.056235
0.000417583
0.172755
0.0929581
0.117725
0.00683195
0.0344281
-0.0239871
-0.0259588
0.0354681
-0.0323754
-0.111644
-0.00693858
-0.669555
-0.635457
-0.584565
0.08936
0.0449959
-0.00883914
-0.0240782
-0.00312801
0.00422838
-0.00283243
0.00090494
0.00610125
-0.0469449
0.446613
-0.541385
0.00166241
0.00738882
-0.0327721
0.0382279
-0.0161886
-0.00487287
-0.0096539
0.0087994
0.0500787
-0.0147348
0.0100742
0.17196
-0.369297
0.569343
0.815231
-0.0706788
0.00551314
0.0143434
0.00125366
-0.0519331
-0.0458568
-0.000537675
0.188011
-5.03775e-05
0.0468468
-0.0354889
0.986755
-0.00539883
-0.005908
0.00107215
0.008829
0.00327673
-0.0419775
-0.0085494
0.00835101
0.0180357
0.0128629
0.00578167
-0.423165
0.0511182
0.00787483
0.00631798
-0.0110232
-0.00648316
-0.00549399
0.0115335
-0.0209358
0.000413385
-0.00518803
-0.0782504
0.00204213
-0.0106968
0.0136456
-0.0383265
-0.00433744
0.00371828
0.00101027
-0.0476966
-0.00081285
-3.12609e-05
-0.0272891
0.0888151
-0.0454317
-0.0128518
0.0360651
0.0247676
-0.0480835
0.00816936
0.034727
0.00064664
0.00569617
0.022137
0.0222297
0.0434787
-0.0389653
-0.000313749
0.000624371
-0.928016
-0.604571
-0.00615815
0.00205324
0.512008
-0.447955
-0.0818042
-0.00282802
-0.0120522
-0.00625668
0.0203642
0.000678499
-0.00400588
0.00320121
-0.010921
-0.00732085
0.0600232
-0.0181599
-0.00358298
0.00307688
-0.0870276
0.144993
-0.18215
0.0138762
-0.0177835
-0.167066
0.342152
-1.0627
0.0116619
0.0132286
0.000210299
0.000829576
0.00489888
0.0161525
0.00800865
-0.000998567
0.00150918
0.00831478
0.0215299
-0.0338781
0.221327
-0.28358
0.00172563
-0.00456913
-0.00286112
-0.385046
0.0116058
0.0508469
-0.580634
0.395087
0.677947
-0.00184426
0.700844
-0.284411
0.340272
0.00997867
0.016804
0.067592
0.245164
-0.175979
-0.17678
0.0111055
0.0213335
-0.0149292
-0.000807286
-0.00491527
0.0110832
0.0140372
-0.0381703
0.000216052
0.152966
-0.163647
0.00329578
0.0234006
-0.00329788
0.0300917
-0.00205153
0.0123206
0.0510769
0.0475866
-0.00144279
0.171067
-0.252441
0.00593728
0.020271
0.0183632
-0.00446627
0.233975
-0.18909
0.00500255
-0.0264592
0.0652051
0.0229851
-0.00410304
0.288662
-0.468637
0.0142347
0.00583268
-0.00962673
-0.00864703
0.539486
-1.0778
1.03838
-0.500066
0.0263947
0.0208971
0.0101348
0.000282148
0.0481606
0.00370669
-0.146172
0.0125611
0.0125264
0.0438272
-0.0264965
-0.00171687
0.0292477
0.0108128
-0.619131
-0.0145488
-0.197113
0.0666128
0.00521505
0.0201338
-0.0240849
-0.284119
-0.00844819
0.144367
0.113457
-0.0491501
0.00125839
-0.00188956
0.123174
-0.368685
0.0131702
0.101424
0.830322
0.031104
-0.00733779
0.132817
-0.0235512
-0.0731877
-0.32525
-0.0258258
0.0305689
-0.0058474
-0.011988
-0.19496
0.0923901
0.0107633
-0.606193
-0.00092555
0.0340563
-0.0488326
-0.00389356
0.00897355
-0.00114377
-0.0594838
-0.00386041
0.00323524
0.0106744
0.604765
-0.391174
-0.014464
-0.0182015
-0.397412
0.00296108
-0.000266913
0.0240624
0.00780322
0.00552946
-0.00328232
0.00766412
0.0078437
-0.434011
-0.14804
1.36639
0.000921162
-0.026316
0.0397671
0.0963779
0.000656938
0.0813117
-0.159608
-0.937069
0.00855916
0.00465492
0.00715963
-0.0136443
-0.0280117
-0.139429
-0.0348672
-0.116992
0.151071
0.794432
-0.0573591
0.0158017
0.00775668
-1.27827
-0.505221
-0.00619897
-0.00625393
0.0285671
0.00230348
-0.145408
-0.13221
0.00795364
0.00399495
-0.199685
0.189531
0.00209143
-0.822184
-0.00917322
-0.00402437
0.0022643
-0.013767
0.0184572
-0.322818
0.00693344
0.130291
-0.791979
-0.000711635
0.0112737
0.130577
0.208396
0.00993486
-0.870527
-0.00227955
0.000442563
0.0124821
-0.123844
-0.0402541
0.0848333
0.100134
-0.091214
0.0498196
0.0149373
0.00802914
0.0181323
-0.500052
0.00747095
-0.0347423
-0.210539
0.0872356
0.0100851
-0.0159394
-0.00496535
0.0197781
-0.0117882
0.0709703
0.118289
-0.0213789
0.040814
0.0109016
-0.00522453
0.141011
0.151012
0.0270196
-0.000440253
-0.0111631
-0.00487122
0.140783
-0.00372185
-0.0119461
-0.0026052
0.0100285
0.000141988
0.00346117
-0.182446
0.0275721
-0.0082662
-0.527895
-0.011522
-0.0128959
-0.00146461
-0.0324628
0.0289321
-0.0201274
0.752543
0.975068
-0.829758
0.00667245
0.913672
0.307725
0.0329831
-1.25438
-0.0969979
-0.3087
-0.00270495
-0.0115878
-0.000235494
-0.000618742
-0.100471
-0.0031026
0.152371
0.0498472
-1.91578
-0.197629
-0.020733
-0.195366
-0.000300469
-0.0216009
-0.00330696
-0.00910029
-0.00297206
-0.00715532
0.628878
-0.0462859
-0.0457073
0.72974
-0.00159022
-0.0871789
0.0815721
0.00956002
0.00594298
-0.0765813
0.153985
0.802663
-0.00411132
0.0324285
0.0749783
-0.00213795
-0.000409576
0.00981408
-0.00814611
-0.00852143
0.285429
0.390427
-0.367572
0.420199
0.143466
0.0018201
0.0163244
-0.0333846
-0.022795
-0.497434
0.482203
-0.00709203
0.000125771
-0.0114663
-0.0222227
0.0730656
-0.0294583
-0.890403
-0.0878197
0.0157771
-0.00610383
-0.0311982
1.46401
0.000355236
-0.342572
-0.012129
-0.0180994
-0.0868819
-0.0227234
-0.00852099
0.0376485
-0.0058614
0.00307781
-0.00304271
0.00425389
-0.0107519
-0.139962
-0.0524735
0.00133374
-0.031455
-0.00515169
-0.00908633
-0.00653505
0.00591268
-0.00409607
0.00927736
0.00811555
-0.0414751
0.00476428
0.0124827
-0.155467
-0.603287
0.749511
-0.113793
0.00990832
-0.00155172
-0.127271
-0.00675748
-9.09897e-05
0.142372
0.0384976
-0.038022
0.0198215
-0.0173044
-0.0210675
0.0773331
-0.453795
0.00834859
-0.794602
-0.0857637
0.000136167
-0.0398659
0.173029
0.0124023
-0.0636778
0.0295196
0.00259029
0.0124376
0.0138145
-0.0437482
-0.042533
-0.0467341
-0.0442124
-0.0415399
1.04899
-0.000818235
-0.00430038
-0.0252632
0.0106436
0.0116868
-0.0159164
0.422287
0.0991996
0.433467
-0.353023
-0.0143302
-0.00272364
1.06727
0.00184183
-0.0693693
-0.0151541
0.00192856
0.0253441
0.290747
0.564114
-0.359064
-0.000563992
-0.114558
-0.0782833
0.760324
0.00464971
0.569733
0.00518842
-0.0145045
0.0997362
-0.07841
0.0383028
0.381766
0.0167976
0.0124088
0.00115319
0.118328
-0.0059453
-0.00373848
-0.0161409
-0.0149989
-0.00351595
-0.10371
-0.007667
0.0318779
0.0561968
0.0631807
-0.00965945
-0.0171354
-0.118726
0.955449
0.030465
0.94124
-0.00247332
0.00829063
-0.00143024
-0.00261937
1.22948
-0.0330327
0.0120158
-0.46982
0.120706
-0.186836
1.28964
0.568264
-1.19835
0.112319
-0.00224063
0.00370342
0.00730442
0.00135054
-0.00873681
-0.00878887
0.966811
0.958705
0.201278
-0.0445448
0.0620182
0.0504137
1.35699
-0.146707
-0.00430214
0.0613102
0.00084624
-0.0463133
-1.22769
-0.627671
0.676441
0.0242591
-0.0844571
-0.876503
0.534032
-0.0187712
-0.124214
-0.000521719
0.0016153
0.00530176
1.15949
0.353785
0.0421372
0.0217087
-0.101195
0.0012782
-0.0130765
-0.0736282
0.0309646
-0.00756665
-0.000645953
-0.00060559
-0.133252
-0.018869
-0.000291563
1.36652
0.0150502
-0.0130087
1.36635
-1.4853
-0.0713952
0.195475
-0.00787352
-0.202732
0.462371
0.0251799
0.291727
-0.429716
0.355397
0.0272632
0.15715
-0.000733006
-0.0261426
0.152556
-0.496693
)
;
boundaryField
{
wings
{
type calculated;
value uniform 0;
}
outlet
{
type calculated;
value nonuniform List<scalar>
20
(
1.99066
1.90217
2.05188
2.05975
2.04451
2.12722
1.98275
1.90667
2.02858
1.96658
1.66824
2.28996
1.99336
2.0363
2.20287
2.25562
2.05746
1.46191
1.98218
1.99133
)
;
}
tunnel
{
type calculated;
value uniform 0;
}
inlet
{
type calculated;
value nonuniform List<scalar>
20
(
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
-2
)
;
}
defaultFaces
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| [
"rlee32@gatech.edu"
] | rlee32@gatech.edu | |
4ab9cf7040c6fdb282286c4a759e86a86c836332 | 19a0bb9ba76357ee3e3fec3368676872ba0fe52f | /media/audio/audio_debug_file_writer_unittest.cc | 805b1d8879012aa1d69f8ce5800c183f0473f569 | [
"BSD-3-Clause"
] | permissive | C351/chromium | f2cf547e5a3bd7dfe85090189a811f8afdce2519 | efb6eca4dfa14ea18a449c2f0c3c659dd1d5ce01 | refs/heads/master | 2023-02-26T14:46:38.518313 | 2018-02-25T03:16:38 | 2018-02-25T03:16:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,867 | 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 <stdint.h>
#include <limits>
#include <utility>
#include "base/bind.h"
#include "base/files/file_util.h"
#include "base/memory/ptr_util.h"
#include "base/synchronization/waitable_event.h"
#include "base/sys_byteorder.h"
#include "base/test/scoped_task_environment.h"
#include "base/threading/thread.h"
#include "media/audio/audio_debug_file_writer.h"
#include "media/base/audio_bus.h"
#include "media/base/audio_sample_types.h"
#include "media/base/test_helpers.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
namespace {
static const uint16_t kBytesPerSample = sizeof(uint16_t);
static const uint16_t kPcmEncoding = 1;
static const size_t kWavHeaderSize = 44;
uint16_t ReadLE2(const char* buf) {
return static_cast<uint8_t>(buf[0]) | (static_cast<uint8_t>(buf[1]) << 8);
}
uint32_t ReadLE4(const char* buf) {
return static_cast<uint8_t>(buf[0]) | (static_cast<uint8_t>(buf[1]) << 8) |
(static_cast<uint8_t>(buf[2]) << 16) |
(static_cast<uint8_t>(buf[3]) << 24);
}
base::File OpenFile(const base::FilePath& file_path) {
return base::File(file_path, base::File::FLAG_OPEN | base::File::FLAG_WRITE);
}
} // namespace
// <channel layout, sample rate, frames per buffer, number of buffer writes
typedef std::tr1::tuple<ChannelLayout, int, int, int>
AudioDebugFileWriterTestData;
class AudioDebugFileWriterTest
: public testing::TestWithParam<AudioDebugFileWriterTestData> {
public:
explicit AudioDebugFileWriterTest(
base::test::ScopedTaskEnvironment::ExecutionMode execution_mode)
: scoped_task_environment_(
base::test::ScopedTaskEnvironment::MainThreadType::DEFAULT,
execution_mode),
params_(AudioParameters::Format::AUDIO_PCM_LINEAR,
std::tr1::get<0>(GetParam()),
std::tr1::get<1>(GetParam()),
kBytesPerSample * 8,
std::tr1::get<2>(GetParam())),
writes_(std::tr1::get<3>(GetParam())),
source_samples_(params_.frames_per_buffer() * params_.channels() *
writes_),
source_interleaved_(source_samples_ ? new int16_t[source_samples_]
: nullptr) {
InitSourceInterleaved(source_interleaved_.get(), source_samples_);
}
AudioDebugFileWriterTest()
: AudioDebugFileWriterTest(
base::test::ScopedTaskEnvironment::ExecutionMode::ASYNC) {}
protected:
virtual ~AudioDebugFileWriterTest() = default;
static void InitSourceInterleaved(int16_t* source_interleaved,
int source_samples) {
if (source_samples) {
// equal steps to cover int16_t range of values
int16_t step = 0xffff / source_samples;
int16_t val = std::numeric_limits<int16_t>::min();
for (int i = 0; i < source_samples; ++i, val += step)
source_interleaved[i] = val;
}
}
static void VerifyHeader(const char (&wav_header)[kWavHeaderSize],
const AudioParameters& params,
int writes,
int64_t file_length) {
uint32_t block_align = params.channels() * kBytesPerSample;
uint32_t data_size =
static_cast<uint32_t>(params.frames_per_buffer() * params.channels() *
writes * kBytesPerSample);
// Offset Length Content
// 0 4 "RIFF"
EXPECT_EQ(0, strncmp(wav_header, "RIFF", 4));
// 4 4 <file length - 8>
ASSERT_GT(file_length, 8);
EXPECT_EQ(static_cast<uint64_t>(file_length - 8), ReadLE4(wav_header + 4));
EXPECT_EQ(static_cast<uint32_t>(data_size + kWavHeaderSize - 8),
ReadLE4(wav_header + 4));
// 8 4 "WAVE"
// 12 4 "fmt "
EXPECT_EQ(0, strncmp(wav_header + 8, "WAVEfmt ", 8));
// 16 4 <length of the fmt data> (=16)
EXPECT_EQ(16U, ReadLE4(wav_header + 16));
// 20 2 <WAVE file encoding tag>
EXPECT_EQ(kPcmEncoding, ReadLE2(wav_header + 20));
// 22 2 <channels>
EXPECT_EQ(params.channels(), ReadLE2(wav_header + 22));
// 24 4 <sample rate>
EXPECT_EQ(static_cast<uint32_t>(params.sample_rate()),
ReadLE4(wav_header + 24));
// 28 4 <bytes per second> (sample rate * block align)
EXPECT_EQ(static_cast<uint32_t>(params.sample_rate()) * block_align,
ReadLE4(wav_header + 28));
// 32 2 <block align> (channels * bits per sample / 8)
EXPECT_EQ(block_align, ReadLE2(wav_header + 32));
// 34 2 <bits per sample>
EXPECT_EQ(kBytesPerSample * 8, ReadLE2(wav_header + 34));
// 36 4 "data"
EXPECT_EQ(0, strncmp(wav_header + 36, "data", 4));
// 40 4 <sample data size(n)>
EXPECT_EQ(data_size, ReadLE4(wav_header + 40));
}
// |result_interleaved| is expected to be little-endian.
static void VerifyDataRecording(const int16_t* source_interleaved,
const int16_t* result_interleaved,
int16_t source_samples) {
// Allow mismatch by 1 due to rounding error in int->float->int
// calculations.
for (int i = 0; i < source_samples; ++i)
EXPECT_LE(std::abs(static_cast<int16_t>(
base::ByteSwapToLE16(source_interleaved[i])) -
result_interleaved[i]),
1)
<< "i = " << i << " source " << source_interleaved[i] << " result "
<< result_interleaved[i];
}
void VerifyRecording(const base::FilePath& file_path) {
base::File file(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
ASSERT_TRUE(file.IsValid());
char wav_header[kWavHeaderSize];
EXPECT_EQ(file.Read(0, wav_header, kWavHeaderSize),
static_cast<int>(kWavHeaderSize));
VerifyHeader(wav_header, params_, writes_, file.GetLength());
if (source_samples_ > 0) {
std::unique_ptr<int16_t[]> result_interleaved(
new int16_t[source_samples_]);
memset(result_interleaved.get(), 0, source_samples_ * kBytesPerSample);
// Recording is read from file as a byte sequence, so it stored as
// little-endian.
int read = file.Read(kWavHeaderSize,
reinterpret_cast<char*>(result_interleaved.get()),
source_samples_ * kBytesPerSample);
EXPECT_EQ(static_cast<int>(file.GetLength() - kWavHeaderSize), read);
VerifyDataRecording(source_interleaved_.get(), result_interleaved.get(),
source_samples_);
}
}
void DoDebugRecording() {
for (int i = 0; i < writes_; ++i) {
std::unique_ptr<AudioBus> bus =
AudioBus::Create(params_.channels(), params_.frames_per_buffer());
bus->FromInterleaved<media::SignedInt16SampleTypeTraits>(
source_interleaved_.get() +
i * params_.channels() * params_.frames_per_buffer(),
params_.frames_per_buffer());
debug_writer_->Write(std::move(bus));
}
}
void RecordAndVerifyOnce() {
base::FilePath file_path;
ASSERT_TRUE(base::CreateTemporaryFile(&file_path));
base::File file = OpenFile(file_path);
ASSERT_TRUE(file.IsValid());
debug_writer_->Start(std::move(file));
DoDebugRecording();
debug_writer_->Stop();
scoped_task_environment_.RunUntilIdle();
VerifyRecording(file_path);
if (::testing::Test::HasFailure()) {
LOG(ERROR) << "Test failed; keeping recording(s) at ["
<< file_path.value().c_str() << "].";
} else {
ASSERT_TRUE(base::DeleteFile(file_path, false));
}
}
protected:
// The test task environment.
base::test::ScopedTaskEnvironment scoped_task_environment_;
// Writer under test.
std::unique_ptr<AudioDebugFileWriter> debug_writer_;
// AudioBus parameters.
AudioParameters params_;
// Number of times to write AudioBus to the file.
int writes_;
// Number of samples in the source data.
int source_samples_;
// Source data.
std::unique_ptr<int16_t[]> source_interleaved_;
private:
DISALLOW_COPY_AND_ASSIGN(AudioDebugFileWriterTest);
};
class AudioDebugFileWriterBehavioralTest : public AudioDebugFileWriterTest {};
class AudioDebugFileWriterSingleThreadTest : public AudioDebugFileWriterTest {
public:
AudioDebugFileWriterSingleThreadTest()
: AudioDebugFileWriterTest(
base::test::ScopedTaskEnvironment::ExecutionMode::QUEUED) {}
};
TEST_P(AudioDebugFileWriterTest, WaveRecordingTest) {
debug_writer_.reset(new AudioDebugFileWriter(params_));
RecordAndVerifyOnce();
}
TEST_P(AudioDebugFileWriterTest, GetFileExtension) {
debug_writer_.reset(new AudioDebugFileWriter(params_));
EXPECT_EQ(FILE_PATH_LITERAL("wav"),
base::FilePath::StringType(debug_writer_->GetFileExtension()));
}
TEST_P(AudioDebugFileWriterSingleThreadTest,
DeletedBeforeRecordingFinishedOnFileThread) {
debug_writer_.reset(new AudioDebugFileWriter(params_));
base::FilePath file_path;
ASSERT_TRUE(base::CreateTemporaryFile(&file_path));
base::File file = OpenFile(file_path);
ASSERT_TRUE(file.IsValid());
debug_writer_->Start(std::move(file));
DoDebugRecording();
debug_writer_.reset();
scoped_task_environment_.RunUntilIdle();
VerifyRecording(file_path);
if (::testing::Test::HasFailure()) {
LOG(ERROR) << "Test failed; keeping recording(s) at ["
<< file_path.value().c_str() << "].";
} else {
ASSERT_TRUE(base::DeleteFile(file_path, false));
}
}
TEST_P(AudioDebugFileWriterBehavioralTest, StartWithInvalidFile) {
debug_writer_.reset(new AudioDebugFileWriter(params_));
base::File file; // Invalid file, recording should not crash
debug_writer_->Start(std::move(file));
DoDebugRecording();
}
TEST_P(AudioDebugFileWriterBehavioralTest, StartStopStartStop) {
debug_writer_.reset(new AudioDebugFileWriter(params_));
RecordAndVerifyOnce();
RecordAndVerifyOnce();
}
TEST_P(AudioDebugFileWriterBehavioralTest, DestroyNotStarted) {
debug_writer_.reset(new AudioDebugFileWriter(params_));
debug_writer_.reset();
}
TEST_P(AudioDebugFileWriterBehavioralTest, DestroyStarted) {
debug_writer_.reset(new AudioDebugFileWriter(params_));
base::FilePath file_path;
ASSERT_TRUE(base::CreateTemporaryFile(&file_path));
base::File file = OpenFile(file_path);
ASSERT_TRUE(file.IsValid());
debug_writer_->Start(std::move(file));
debug_writer_.reset();
}
INSTANTIATE_TEST_CASE_P(
AudioDebugFileWriterTest,
AudioDebugFileWriterTest,
// Using 10ms frames per buffer everywhere.
testing::Values(
// No writes.
std::tr1::make_tuple(ChannelLayout::CHANNEL_LAYOUT_MONO,
44100,
44100 / 100,
0),
// 1 write of mono.
std::tr1::make_tuple(ChannelLayout::CHANNEL_LAYOUT_MONO,
44100,
44100 / 100,
1),
// 1 second of mono.
std::tr1::make_tuple(ChannelLayout::CHANNEL_LAYOUT_MONO,
44100,
44100 / 100,
100),
// 1 second of mono, higher rate.
std::tr1::make_tuple(ChannelLayout::CHANNEL_LAYOUT_MONO,
48000,
48000 / 100,
100),
// 1 second of stereo.
std::tr1::make_tuple(ChannelLayout::CHANNEL_LAYOUT_STEREO,
44100,
44100 / 100,
100),
// 15 seconds of stereo, higher rate.
std::tr1::make_tuple(ChannelLayout::CHANNEL_LAYOUT_STEREO,
48000,
48000 / 100,
1500)));
INSTANTIATE_TEST_CASE_P(
AudioDebugFileWriterBehavioralTest,
AudioDebugFileWriterBehavioralTest,
// Using 10ms frames per buffer everywhere.
testing::Values(
// No writes.
std::tr1::make_tuple(ChannelLayout::CHANNEL_LAYOUT_MONO,
44100,
44100 / 100,
100)));
INSTANTIATE_TEST_CASE_P(
AudioDebugFileWriterSingleThreadTest,
AudioDebugFileWriterSingleThreadTest,
// Using 10ms frames per buffer everywhere.
testing::Values(
// No writes.
std::tr1::make_tuple(ChannelLayout::CHANNEL_LAYOUT_MONO,
44100,
44100 / 100,
100)));
} // namespace media
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
6247cae06572e413a5bf15494b43c43ece304e87 | 094f09117e0d6f24c1da7b8e95f100b81b607727 | /src/main/cpp/btree_symmetry.cpp | 8ad3297a76934a1c58b805a3c76f198a64d0b06f | [] | no_license | novelinux/algorithm | 0f330913ce82f8484d3956b4645c8e4db108a91b | fb4018f6023ec2a85b7f0030ebc220c912c5a6f4 | refs/heads/master | 2020-07-03T01:38:31.911871 | 2019-10-14T02:22:34 | 2019-10-14T02:22:34 | 201,744,244 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,380 | cpp | /*给定一个二叉树,检查它是否是镜像对称的。
例如,二叉树 [1,2,2,3,4,4,3] 是对称的。
1
/ \
2 2
/ \ / \
3 4 4 3
但是下面这个 [1,2,2,null,3,null,3] 则不是镜像对称的:
1
/ \
2 2
\ \
3 3
*/
#include <stdio.h>
struct btree_node {
int val;
struct btree_node *left;
struct btree_node *right;
};
static void print_btree(struct btree_node *root) {
if (root != NULL) {
printf("%d ", root->val);
print_btree(root->left);
print_btree(root->right);
}
}
bool compare(struct btree_node *left, struct btree_node *right) {
if (left == NULL && right == NULL) { return true; }
if (left == NULL || right == NULL) { return false; }
return left->val == right->val &&
compare(left->right, right->left) &&
compare(left->left, right->right);
}
bool symmetry(struct btree_node *root) {
if (root == NULL) {
return true;
}
return compare(root->left, root->right);
}
int main(int argc, char *argv[]) {
struct btree_node nl3 = {3, NULL, NULL};
struct btree_node nr3 = {3, NULL, NULL};
struct btree_node nl2 = {2, NULL, &nl3};
struct btree_node nr2 = {2, NULL, &nr3};
struct btree_node n1 = {1, &nl2, &nr2};
print_btree(&n1);
printf("\n");
printf("%d\n", symmetry(&n1));
return 0;
}
| [
"liminghao@xiaomi.com"
] | liminghao@xiaomi.com |
2e56baa01efca4296e3d6cacbdc3a38da2d832c9 | 27da58458e8f4a70adcb0c1d8a7ed84e8342367f | /Libs/BaseLib/DxLib/vectormath/boolInVec.h | 03bf1c9255abcea3db0c8e69a8ba29d9591a1c1b | [] | no_license | WiZFramework/BaseCross | f5c5d41abb1bfc8c5e7e0fc397a522318c95a7d2 | 3166d3870e818c947c2b598ff9d629c58780168d | refs/heads/master | 2020-05-22T02:44:26.650636 | 2019-09-17T17:46:08 | 2019-09-17T17:46:08 | 64,080,808 | 16 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 5,511 | h | /*
Copyright (C) 2006-2010 Sony Computer Entertainment Inc.
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 Sony Computer Entertainment Inc nor the names
of its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "stdafx.h"
#include <math.h>
namespace Vectormath {
class floatInVec;
//--------------------------------------------------------------------------------------------------
// boolInVec class
//
class boolInVec
{
private:
unsigned int mData;
public:
// Default constructor; does no initialization
//
inline boolInVec( ) { };
// Construct from a value converted from float
//
inline boolInVec(floatInVec vec);
// Explicit cast from bool
//
explicit inline boolInVec(bool scalar);
// Explicit cast to bool
//
inline bool getAsBool() const;
#ifndef _VECTORMATH_NO_SCALAR_CAST
// Implicit cast to bool
//
inline operator bool() const;
#endif
// Boolean negation operator
//
inline const boolInVec operator ! () const;
// Assignment operator
//
inline boolInVec& operator = (boolInVec vec);
// Boolean and assignment operator
//
inline boolInVec& operator &= (boolInVec vec);
// Boolean exclusive or assignment operator
//
inline boolInVec& operator ^= (boolInVec vec);
// Boolean or assignment operator
//
inline boolInVec& operator |= (boolInVec vec);
};
// Equal operator
//
inline const boolInVec operator == (boolInVec vec0, boolInVec vec1);
// Not equal operator
//
inline const boolInVec operator != (boolInVec vec0, boolInVec vec1);
// And operator
//
inline const boolInVec operator & (boolInVec vec0, boolInVec vec1);
// Exclusive or operator
//
inline const boolInVec operator ^ (boolInVec vec0, boolInVec vec1);
// Or operator
//
inline const boolInVec operator | (boolInVec vec0, boolInVec vec1);
// Conditionally select between two values
//
inline const boolInVec select(boolInVec vec0, boolInVec vec1, boolInVec select_vec1);
} // namespace Vectormath
//--------------------------------------------------------------------------------------------------
// boolInVec implementation
//
#include "floatInVec.h"
namespace Vectormath {
inline
boolInVec::boolInVec(floatInVec vec)
{
*this = (vec != floatInVec(0.0f));
}
inline
boolInVec::boolInVec(bool scalar)
{
mData = -(int)scalar;
}
inline
bool
boolInVec::getAsBool() const
{
return (mData > 0);
}
#ifndef _VECTORMATH_NO_SCALAR_CAST
inline
boolInVec::operator bool() const
{
return getAsBool();
}
#endif
inline
const boolInVec
boolInVec::operator ! () const
{
return boolInVec(!mData);
}
inline
boolInVec&
boolInVec::operator = (boolInVec vec)
{
mData = vec.mData;
return *this;
}
inline
boolInVec&
boolInVec::operator &= (boolInVec vec)
{
*this = *this & vec;
return *this;
}
inline
boolInVec&
boolInVec::operator ^= (boolInVec vec)
{
*this = *this ^ vec;
return *this;
}
inline
boolInVec&
boolInVec::operator |= (boolInVec vec)
{
*this = *this | vec;
return *this;
}
inline
const boolInVec
operator == (boolInVec vec0, boolInVec vec1)
{
return boolInVec(vec0.getAsBool() == vec1.getAsBool());
}
inline
const boolInVec
operator != (boolInVec vec0, boolInVec vec1)
{
return !(vec0 == vec1);
}
inline
const boolInVec
operator & (boolInVec vec0, boolInVec vec1)
{
return boolInVec(vec0.getAsBool() & vec1.getAsBool());
}
inline
const boolInVec
operator | (boolInVec vec0, boolInVec vec1)
{
return boolInVec(vec0.getAsBool() | vec1.getAsBool());
}
inline
const boolInVec
operator ^ (boolInVec vec0, boolInVec vec1)
{
return boolInVec(vec0.getAsBool() ^ vec1.getAsBool());
}
inline
const boolInVec
select(boolInVec vec0, boolInVec vec1, boolInVec select_vec1)
{
return (select_vec1.getAsBool() == 0) ? vec0 : vec1;
}
} // namespace Vectormath
| [
"wiz.yamanoi@wiz.ac.jp"
] | wiz.yamanoi@wiz.ac.jp |
e0c977ad88af85dbddc65564863a7128aea56491 | 48cc483245c51c6f67f51eb3ba555ce8b36cb84f | /htmlThief.h | b9b218c42dd1210f2920b5906b64e4648e31a905 | [] | no_license | ViNN280801/CourseWork2 | 71511084ea31b4fb90315ceab3cf2e0fad3e69f4 | 8c294caca63693b1eb85cd8b9ddb1f8f9bc5b1ee | refs/heads/main | 2023-01-30T03:01:46.230611 | 2020-12-13T10:11:53 | 2020-12-13T10:11:53 | 319,993,634 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,471 | h | #ifndef HTMLTHIEF_H
#define HTMLTHIEF_H
#include <c++/10/curl/curl.h>
#include <istream>
#include <cstdlib>
static size_t writeData(void* ptr, size_t size, size_t nmemb, void* stream){
size_t written = fwrite(ptr, size, nmemb, (FILE*)stream);
return written;
}
int htmlThief(int argc, char* argv[]){
CURL* curlHandle;
const char* pageFileName = "weather.html";
FILE* pageFile;
if(argc < 2){
printf("Usage: %s<URL>\n", argv[0]);
return EXIT_FAILURE;
}
curl_global_init(CURL_GLOBAL_ALL); // flag CURL_GLOBAL_ALL -
// initializing everything is possible (http, ssl, etc.)
curlHandle = curl_easy_init(); //initializing the curl session
curl_easy_setopt(curlHandle, CURLOPT_URL, argv[1]); //setting up the URL
curl_easy_setopt(curlHandle, CURLOPT_VERBOSE, 1L); //switch on full protocol/debug output while test
curl_easy_setopt(curlHandle, CURLOPT_NOPROGRESS, 0L); //enable progress bar
curl_easy_setopt(curlHandle, CURLOPT_WRITEFUNCTION, writeData);
if((pageFile = (fopen(pageFileName, "wb"))) != NULL){
curl_easy_setopt(curlHandle, CURLOPT_WRITEDATA, pageFile);
curl_easy_perform(curlHandle); //perform the transfer as descripted in options
fclose(pageFile);
}
else
perror("Error write data in file");
curl_easy_cleanup(curlHandle);
curl_global_cleanup();
return EXIT_SUCCESS;
}
#endif // HTMLTHIEF_H
| [
"vladislav@localhost.localdomain"
] | vladislav@localhost.localdomain |
55decd6d7939352ab7b06bacbbcad72fbf8b1b45 | 5ed52fbab39d7fd6a44443ec7b086eed0397c605 | /CPlusTest/CPlusTest/worker0.cpp | 41d5d53b02cad08f8cacfd15702e1f19a39affbe | [] | no_license | JerryXu008/CGContextDrawLinearGradient | 92888db0c7e9134cd3d2dbf53df85830441174dd | d2afb7cdb4945769f04e88f9c74deb4c89520528 | refs/heads/master | 2021-01-17T17:37:30.237534 | 2016-08-16T06:52:26 | 2016-08-16T06:52:26 | 65,795,024 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 574 | cpp | //
// worker0.cpp
// CPlusTest
//
// Created by song on 15/3/6.
// Copyright (c) 2015年 song. All rights reserved.
//
#include "worker0.h"
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
Worker::~Worker(){}
void Worker::Set(){
}
void Worker::Show() const{
}
void Waiter::Set(){
Worker::Set();
}
void Waiter::Show() const{
Worker::Show();
}
char * Singer::pv[] = {"other", "alto", "contralto",
"soprano", "bass", "baritone", "tenor"};
void Singer::Set(){
Worker::Set();
}
void Singer::Show() const{
Worker::Show();
} | [
"song@song-Mac-mini.local"
] | song@song-Mac-mini.local |
f90129914255e822a3f20b1b56cae164de7a150f | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_patch_hunk_4793.cpp | a1cdc576b117e4953e9269c8324065d2ee3d8910 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,107 | cpp | sizeof(szPath));
if ((rv = exists_and_readable(szPath, p, NULL))
!= APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s, APLOGNO(02201)
"Init: Can't open server certificate file %s",
szPath);
- ssl_die();
+ ssl_die(s);
}
if ((pX509Cert = SSL_read_X509(szPath, NULL, NULL)) == NULL) {
ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO(02241)
"Init: Unable to read server certificate from"
" file %s", szPath);
ssl_log_ssl_error(SSLLOG_MARK, APLOG_EMERG, s);
- ssl_die();
+ ssl_die(s);
}
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO(02202)
"Init: Read server certificate from '%s'",
szPath);
}
/*
| [
"993273596@qq.com"
] | 993273596@qq.com |
f0ab0e7c0cdd758eac998a7c0bf67151d71c7ae9 | 6590343427073ed8cf41b17cb88274ea89cb369f | /CamelCase.cpp | e16196cd79da225e6e4bc23f3f41a1e9c45fb505 | [] | no_license | delta7-138/Hacker_Rank_Sols | fd79275e923b9f2e35dd2fc205aeb542b9f2990d | 281208cc72bbfc63c9af134449d0ec821e4d0d07 | refs/heads/master | 2020-08-06T06:20:46.273215 | 2019-12-18T11:23:35 | 2019-12-18T11:23:35 | 212,869,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 299 | cpp | #include <iostream>
#include <string>
using namespace std;
int number_of_words(string str)
{
int count = 0;
for(int i = 0; i<str.length(); i++)
{
if(str[i]>='A' && str[i]<='Z')
count++;
}
return (count+1);
}
int main()
{
string str;
cin>>str;
cout<<number_of_words(str);
return 0;
}
| [
"sharmakrishna9501@gmail.com"
] | sharmakrishna9501@gmail.com |
56a6d3027ac5d009ee4c83c6c65eb0e8a91d7bcd | 31b5a64c02c3797d1e5c2202dde3d47710cf906f | /ProjectSource/include/ui_MainWindow.h | b248b63654492160abb4d11c58ee2cdf23bd9ad6 | [] | no_license | majorpr13/SwarmingVehicles | b23f027a7f03bc9f275c06ea6cdc67ad186cea5b | 9ab78f1819743f612683f5c4e484a752f41f517b | refs/heads/master | 2020-04-05T22:56:13.842358 | 2014-10-20T18:23:28 | 2014-10-20T18:23:28 | 24,241,480 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 17,370 | h | /********************************************************************************
** Form generated from reading UI file 'MainWindow.ui'
**
** Created by: Qt User Interface Compiler version 5.2.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_MAINWINDOW_H
#define UI_MAINWINDOW_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QDoubleSpinBox>
#include <QtWidgets/QFrame>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QSplitter>
#include <QtWidgets/QWidget>
#include "WidgetPFD.h"
#include "WidgetSix.h"
QT_BEGIN_NAMESPACE
class Ui_MainWindow
{
public:
QWidget *centralWidget;
QGridLayout *gridLayout_5;
QSplitter *splitter;
QFrame *frame;
QGridLayout *gridLayout_3;
QGridLayout *gridLayout;
QLabel *label_3;
QDoubleSpinBox *spinBoxRoll;
QLabel *label;
QDoubleSpinBox *spinBoxHead;
QLabel *label_10;
QDoubleSpinBox *spinBoxPitch;
QDoubleSpinBox *spinBoxAlt;
QLabel *label_4;
QLabel *label_2;
QLabel *label_6;
QLabel *label_11;
QDoubleSpinBox *spinBoxDevH;
QDoubleSpinBox *spinBoxSpeed;
QDoubleSpinBox *spinBoxDevV;
QLabel *label_7;
QDoubleSpinBox *spinBoxMach;
QDoubleSpinBox *spinBoxTurn;
QFrame *line;
QLabel *label_12;
QDoubleSpinBox *spinBoxPress;
QLabel *label_13;
QLabel *label_8;
QDoubleSpinBox *spinBoxClimb;
QLabel *label_5;
QLabel *label_9;
QDoubleSpinBox *spinBoxSlip;
QPushButton *pushButtonAuto;
QLabel *label_14;
QDoubleSpinBox *spinBoxAlpha;
QDoubleSpinBox *spinBoxBeta;
QFrame *frame_2;
QGridLayout *gridLayout_4;
QGridLayout *gridLayout_2;
WidgetPFD *widgetPFD;
WidgetSix *widgetSix;
void setupUi(QMainWindow *MainWindow)
{
if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QStringLiteral("MainWindow"));
MainWindow->resize(734, 492);
centralWidget = new QWidget(MainWindow);
centralWidget->setObjectName(QStringLiteral("centralWidget"));
gridLayout_5 = new QGridLayout(centralWidget);
gridLayout_5->setSpacing(6);
gridLayout_5->setContentsMargins(11, 11, 11, 11);
gridLayout_5->setObjectName(QStringLiteral("gridLayout_5"));
splitter = new QSplitter(centralWidget);
splitter->setObjectName(QStringLiteral("splitter"));
splitter->setOrientation(Qt::Horizontal);
frame = new QFrame(splitter);
frame->setObjectName(QStringLiteral("frame"));
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
sizePolicy.setHeightForWidth(frame->sizePolicy().hasHeightForWidth());
frame->setSizePolicy(sizePolicy);
frame->setFrameShape(QFrame::StyledPanel);
frame->setFrameShadow(QFrame::Raised);
gridLayout_3 = new QGridLayout(frame);
gridLayout_3->setSpacing(6);
gridLayout_3->setContentsMargins(11, 11, 11, 11);
gridLayout_3->setObjectName(QStringLiteral("gridLayout_3"));
gridLayout = new QGridLayout();
gridLayout->setSpacing(6);
gridLayout->setObjectName(QStringLiteral("gridLayout"));
label_3 = new QLabel(frame);
label_3->setObjectName(QStringLiteral("label_3"));
label_3->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_3, 4, 0, 1, 1);
spinBoxRoll = new QDoubleSpinBox(frame);
spinBoxRoll->setObjectName(QStringLiteral("spinBoxRoll"));
spinBoxRoll->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxRoll->setMinimum(-180);
spinBoxRoll->setMaximum(180);
gridLayout->addWidget(spinBoxRoll, 2, 1, 1, 1);
label = new QLabel(frame);
label->setObjectName(QStringLiteral("label"));
label->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label, 2, 0, 1, 1);
spinBoxHead = new QDoubleSpinBox(frame);
spinBoxHead->setObjectName(QStringLiteral("spinBoxHead"));
spinBoxHead->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxHead->setMinimum(-360);
spinBoxHead->setMaximum(360);
gridLayout->addWidget(spinBoxHead, 4, 1, 1, 1);
label_10 = new QLabel(frame);
label_10->setObjectName(QStringLiteral("label_10"));
label_10->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_10, 13, 0, 1, 1);
spinBoxPitch = new QDoubleSpinBox(frame);
spinBoxPitch->setObjectName(QStringLiteral("spinBoxPitch"));
spinBoxPitch->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxPitch->setMinimum(-90);
spinBoxPitch->setMaximum(90);
gridLayout->addWidget(spinBoxPitch, 3, 1, 1, 1);
spinBoxAlt = new QDoubleSpinBox(frame);
spinBoxAlt->setObjectName(QStringLiteral("spinBoxAlt"));
spinBoxAlt->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxAlt->setMinimum(-1000);
spinBoxAlt->setMaximum(99999);
spinBoxAlt->setSingleStep(10);
gridLayout->addWidget(spinBoxAlt, 11, 1, 1, 1);
label_4 = new QLabel(frame);
label_4->setObjectName(QStringLiteral("label_4"));
label_4->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_4, 5, 0, 1, 1);
label_2 = new QLabel(frame);
label_2->setObjectName(QStringLiteral("label_2"));
label_2->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_2, 3, 0, 1, 1);
label_6 = new QLabel(frame);
label_6->setObjectName(QStringLiteral("label_6"));
label_6->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_6, 7, 0, 1, 1);
label_11 = new QLabel(frame);
label_11->setObjectName(QStringLiteral("label_11"));
label_11->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_11, 10, 0, 1, 1);
spinBoxDevH = new QDoubleSpinBox(frame);
spinBoxDevH->setObjectName(QStringLiteral("spinBoxDevH"));
spinBoxDevH->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxDevH->setMinimum(-1);
spinBoxDevH->setMaximum(1);
spinBoxDevH->setSingleStep(0.05);
gridLayout->addWidget(spinBoxDevH, 7, 1, 1, 1);
spinBoxSpeed = new QDoubleSpinBox(frame);
spinBoxSpeed->setObjectName(QStringLiteral("spinBoxSpeed"));
spinBoxSpeed->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxSpeed->setMaximum(9999);
gridLayout->addWidget(spinBoxSpeed, 9, 1, 1, 1);
spinBoxDevV = new QDoubleSpinBox(frame);
spinBoxDevV->setObjectName(QStringLiteral("spinBoxDevV"));
spinBoxDevV->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxDevV->setMinimum(-1);
spinBoxDevV->setMaximum(1);
spinBoxDevV->setSingleStep(0.05);
gridLayout->addWidget(spinBoxDevV, 8, 1, 1, 1);
label_7 = new QLabel(frame);
label_7->setObjectName(QStringLiteral("label_7"));
label_7->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_7, 8, 0, 1, 1);
spinBoxMach = new QDoubleSpinBox(frame);
spinBoxMach->setObjectName(QStringLiteral("spinBoxMach"));
spinBoxMach->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxMach->setMaximum(20);
gridLayout->addWidget(spinBoxMach, 10, 1, 1, 1);
spinBoxTurn = new QDoubleSpinBox(frame);
spinBoxTurn->setObjectName(QStringLiteral("spinBoxTurn"));
spinBoxTurn->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxTurn->setMinimum(-7);
spinBoxTurn->setMaximum(7);
spinBoxTurn->setSingleStep(0.1);
gridLayout->addWidget(spinBoxTurn, 6, 1, 1, 1);
line = new QFrame(frame);
line->setObjectName(QStringLiteral("line"));
line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken);
gridLayout->addWidget(line, 14, 0, 1, 3);
label_12 = new QLabel(frame);
label_12->setObjectName(QStringLiteral("label_12"));
label_12->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_12, 12, 0, 1, 1);
spinBoxPress = new QDoubleSpinBox(frame);
spinBoxPress->setObjectName(QStringLiteral("spinBoxPress"));
spinBoxPress->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxPress->setMinimum(28);
spinBoxPress->setMaximum(31.5);
gridLayout->addWidget(spinBoxPress, 12, 1, 1, 1);
label_13 = new QLabel(frame);
label_13->setObjectName(QStringLiteral("label_13"));
label_13->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_13, 0, 0, 1, 1);
label_8 = new QLabel(frame);
label_8->setObjectName(QStringLiteral("label_8"));
label_8->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_8, 9, 0, 1, 1);
spinBoxClimb = new QDoubleSpinBox(frame);
spinBoxClimb->setObjectName(QStringLiteral("spinBoxClimb"));
spinBoxClimb->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxClimb->setMinimum(-650);
spinBoxClimb->setMaximum(650);
spinBoxClimb->setSingleStep(5);
gridLayout->addWidget(spinBoxClimb, 13, 1, 1, 1);
label_5 = new QLabel(frame);
label_5->setObjectName(QStringLiteral("label_5"));
label_5->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_5, 6, 0, 1, 1);
label_9 = new QLabel(frame);
label_9->setObjectName(QStringLiteral("label_9"));
label_9->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_9, 11, 0, 1, 1);
spinBoxSlip = new QDoubleSpinBox(frame);
spinBoxSlip->setObjectName(QStringLiteral("spinBoxSlip"));
spinBoxSlip->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxSlip->setMinimum(-1);
spinBoxSlip->setMaximum(1);
spinBoxSlip->setSingleStep(0.05);
gridLayout->addWidget(spinBoxSlip, 5, 1, 1, 1);
pushButtonAuto = new QPushButton(frame);
pushButtonAuto->setObjectName(QStringLiteral("pushButtonAuto"));
pushButtonAuto->setCheckable(true);
gridLayout->addWidget(pushButtonAuto, 15, 0, 1, 3);
label_14 = new QLabel(frame);
label_14->setObjectName(QStringLiteral("label_14"));
label_14->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_14, 1, 0, 1, 1);
spinBoxAlpha = new QDoubleSpinBox(frame);
spinBoxAlpha->setObjectName(QStringLiteral("spinBoxAlpha"));
spinBoxAlpha->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxAlpha->setMinimum(-20);
spinBoxAlpha->setMaximum(20);
gridLayout->addWidget(spinBoxAlpha, 0, 1, 1, 1);
spinBoxBeta = new QDoubleSpinBox(frame);
spinBoxBeta->setObjectName(QStringLiteral("spinBoxBeta"));
spinBoxBeta->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
spinBoxBeta->setMinimum(-15);
spinBoxBeta->setMaximum(15);
gridLayout->addWidget(spinBoxBeta, 1, 1, 1, 1);
gridLayout_3->addLayout(gridLayout, 0, 0, 1, 1);
splitter->addWidget(frame);
frame_2 = new QFrame(splitter);
frame_2->setObjectName(QStringLiteral("frame_2"));
frame_2->setFrameShape(QFrame::StyledPanel);
frame_2->setFrameShadow(QFrame::Raised);
gridLayout_4 = new QGridLayout(frame_2);
gridLayout_4->setSpacing(6);
gridLayout_4->setContentsMargins(11, 11, 11, 11);
gridLayout_4->setObjectName(QStringLiteral("gridLayout_4"));
gridLayout_2 = new QGridLayout();
gridLayout_2->setSpacing(6);
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2"));
widgetPFD = new WidgetPFD(frame_2);
widgetPFD->setObjectName(QStringLiteral("widgetPFD"));
QSizePolicy sizePolicy1(QSizePolicy::Preferred, QSizePolicy::Preferred);
sizePolicy1.setHorizontalStretch(2);
sizePolicy1.setVerticalStretch(0);
sizePolicy1.setHeightForWidth(widgetPFD->sizePolicy().hasHeightForWidth());
widgetPFD->setSizePolicy(sizePolicy1);
gridLayout_2->addWidget(widgetPFD, 0, 0, 1, 1);
widgetSix = new WidgetSix(frame_2);
widgetSix->setObjectName(QStringLiteral("widgetSix"));
QSizePolicy sizePolicy2(QSizePolicy::Preferred, QSizePolicy::Preferred);
sizePolicy2.setHorizontalStretch(3);
sizePolicy2.setVerticalStretch(0);
sizePolicy2.setHeightForWidth(widgetSix->sizePolicy().hasHeightForWidth());
widgetSix->setSizePolicy(sizePolicy2);
gridLayout_2->addWidget(widgetSix, 0, 1, 1, 1);
gridLayout_4->addLayout(gridLayout_2, 0, 0, 1, 1);
splitter->addWidget(frame_2);
gridLayout_5->addWidget(splitter, 0, 0, 1, 1);
MainWindow->setCentralWidget(centralWidget);
#ifndef QT_NO_SHORTCUT
label_3->setBuddy(spinBoxHead);
label->setBuddy(spinBoxRoll);
label_10->setBuddy(spinBoxClimb);
label_4->setBuddy(spinBoxSlip);
label_2->setBuddy(spinBoxPitch);
label_6->setBuddy(spinBoxDevH);
label_11->setBuddy(spinBoxMach);
label_7->setBuddy(spinBoxDevV);
label_12->setBuddy(spinBoxPress);
label_8->setBuddy(spinBoxSpeed);
label_5->setBuddy(spinBoxTurn);
label_9->setBuddy(spinBoxAlt);
#endif // QT_NO_SHORTCUT
QWidget::setTabOrder(spinBoxRoll, spinBoxPitch);
QWidget::setTabOrder(spinBoxPitch, spinBoxHead);
QWidget::setTabOrder(spinBoxHead, spinBoxSlip);
QWidget::setTabOrder(spinBoxSlip, spinBoxTurn);
QWidget::setTabOrder(spinBoxTurn, spinBoxDevH);
QWidget::setTabOrder(spinBoxDevH, spinBoxDevV);
QWidget::setTabOrder(spinBoxDevV, spinBoxSpeed);
QWidget::setTabOrder(spinBoxSpeed, spinBoxMach);
QWidget::setTabOrder(spinBoxMach, spinBoxAlt);
QWidget::setTabOrder(spinBoxAlt, spinBoxPress);
QWidget::setTabOrder(spinBoxPress, spinBoxClimb);
QWidget::setTabOrder(spinBoxClimb, pushButtonAuto);
retranslateUi(MainWindow);
QMetaObject::connectSlotsByName(MainWindow);
} // setupUi
void retranslateUi(QMainWindow *MainWindow)
{
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "QFlightInstruments Example", 0));
label_3->setText(QApplication::translate("MainWindow", "Heading [deg]:", 0));
label->setText(QApplication::translate("MainWindow", "Roll [deg]:", 0));
label_10->setText(QApplication::translate("MainWindow", "Climb Rate [ft/min]:", 0));
label_4->setText(QApplication::translate("MainWindow", "Sideslip [-]:", 0));
label_2->setText(QApplication::translate("MainWindow", "Pitch [deg]:", 0));
label_6->setText(QApplication::translate("MainWindow", "Horizontal Deviation [-]:", 0));
label_11->setText(QApplication::translate("MainWindow", "Mach Number [-]:", 0));
label_7->setText(QApplication::translate("MainWindow", "Vertical Deviation [-]:", 0));
label_12->setText(QApplication::translate("MainWindow", "Pressure [inHg]:", 0));
label_13->setText(QApplication::translate("MainWindow", "Angle of Attack [deg]:", 0));
label_8->setText(QApplication::translate("MainWindow", "Airspeed [kts]:", 0));
label_5->setText(QApplication::translate("MainWindow", "Turn Rate [deg/s]:", 0));
label_9->setText(QApplication::translate("MainWindow", "Altitude [ft]:", 0));
pushButtonAuto->setText(QApplication::translate("MainWindow", "AUTO", 0));
label_14->setText(QApplication::translate("MainWindow", "Angle of Sideslip [deg]:", 0));
} // retranslateUi
};
namespace Ui {
class MainWindow: public Ui_MainWindow {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_MAINWINDOW_H
| [
"dempsy@dodo.(none)"
] | dempsy@dodo.(none) |
cbe045269cab2752568414d141a9b900faa15050 | e65a4dbfbfb0e54e59787ba7741efee12f7687f3 | /science/salome-kernel/files/patch-src_SALOMEDSImpl_SALOMEDSImpl__Study.cxx | 240b4bbc288b64b461c582c2ff59fef8c8895d53 | [
"BSD-2-Clause"
] | permissive | freebsd/freebsd-ports | 86f2e89d43913412c4f6b2be3e255bc0945eac12 | 605a2983f245ac63f5420e023e7dce56898ad801 | refs/heads/main | 2023-08-30T21:46:28.720924 | 2023-08-30T19:33:44 | 2023-08-30T19:33:44 | 1,803,961 | 916 | 918 | NOASSERTION | 2023-09-08T04:06:26 | 2011-05-26T11:15:35 | null | UTF-8 | C++ | false | false | 781 | cxx | --- src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx.orig 2023-07-03 21:36:43 UTC
+++ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx
@@ -212,7 +212,7 @@ bool SALOMEDSImpl_Study::Open(const std::string& aUrl)
isASCII = true;
char* aResultPath = HDFascii::ConvertFromASCIIToHDF(aUrl.c_str());
if ( !aResultPath )
- return NULL;
+ return false;
aC_HDFUrl = new char[strlen(aResultPath) + 19];
sprintf(aC_HDFUrl, "%shdf_from_ascii.hdf", aResultPath);
delete [] (aResultPath);
@@ -234,7 +234,7 @@ bool SALOMEDSImpl_Study::Open(const std::string& aUrl)
sprintf(eStr,"Can't open file %s",aUrl.c_str());
delete [] eStr;
_errorCode = std::string(eStr);
- return NULL;
+ return false;
}
// Assign the value of the URL in the study object
| [
"yuri@FreeBSD.org"
] | yuri@FreeBSD.org |
3165d2dd01e0fc7d50d73089d1bb69006e3f6a81 | 9f9660f318732124b8a5154e6670e1cfc372acc4 | /Case_save/Case30/case9/300/nut | c6f59b3db6d9c87363dbefbefdb8da0f2a7b85ed | [] | no_license | mamitsu2/aircond5 | 9a6857f4190caec15823cb3f975cdddb7cfec80b | 20a6408fb10c3ba7081923b61e44454a8f09e2be | refs/heads/master | 2020-04-10T22:41:47.782141 | 2019-09-02T03:42:37 | 2019-09-02T03:42:37 | 161,329,638 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,998 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "300";
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -1 0 0 0 0];
internalField nonuniform List<scalar>
459
(
0.00108052
0.00117821
0.00119579
0.00125211
0.00130442
0.0013533
0.00140111
0.00144739
0.00147913
0.00149077
0.00147719
0.00143514
0.00136474
0.00127241
0.00117399
0.000459071
0.000554907
0.000618946
0.000613591
0.000592176
0.00056457
0.000529683
0.000495008
0.000463452
0.000435395
0.000410543
0.000388606
0.000369148
0.000351662
0.000335605
0.00032022
0.000304605
0.000300172
0.000278722
0.00148441
0.00361808
0.00345094
0.00401386
0.00455821
0.00510213
0.00558038
0.00594015
0.00626247
0.00651947
0.00667323
0.00667902
0.00647248
0.00589534
0.00437423
0.00118448
0.000714404
0.000498941
0.0010114
0.00139561
0.0016874
0.00185355
0.00185944
0.00150484
0.00130522
0.00116159
0.00105051
0.00096146
0.000886771
0.000821352
0.000762137
0.000706919
0.000658402
0.000613617
0.000760933
0.000386849
0.00181935
0.00494627
0.00426364
0.00537544
0.00590462
0.00629289
0.00659536
0.00683788
0.00709893
0.00736699
0.00760875
0.00777105
0.00780085
0.00763069
0.0070731
0.00542276
0.00117709
0.000982366
0.00139536
0.00177418
0.00213428
0.00239702
0.00233893
0.000760657
0.000671686
0.000601062
0.000544558
0.000498782
0.000461213
0.000430061
0.000404174
0.000383181
0.000418508
0.000488457
0.000869509
0.000459594
0.00213936
0.0063376
0.00427558
0.00568965
0.00615948
0.00631262
0.00641605
0.00654307
0.00675226
0.00702799
0.00734079
0.00761737
0.00780213
0.00784587
0.00767568
0.00707538
0.00522907
0.00140132
0.00174208
0.00224411
0.00273232
0.00313516
0.00339765
0.00317565
0.000865352
0.000792027
0.000742625
0.000706902
0.000676747
0.00064561
0.000615325
0.000582726
0.000543807
0.000512258
0.000529697
0.00104829
0.000510073
0.00246334
0.00811047
0.00470999
0.00548047
0.00611034
0.00614649
0.00610164
0.00616795
0.00635303
0.00663026
0.00698699
0.00731748
0.00754874
0.0076223
0.00752561
0.00723122
0.00659452
0.00540927
0.00499563
0.00487121
0.0048552
0.00487513
0.00487365
0.00471112
0.00397336
0.0036465
0.0034637
0.00331938
0.00316281
0.00296195
0.00262664
0.0022085
0.0017483
0.00130664
0.000973728
0.00100607
0.000717416
0.000623775
0.000744248
0.000838892
0.00280441
0.0100276
0.0064752
0.00544339
0.00593791
0.00615279
0.00600977
0.00605851
0.00619823
0.00645168
0.00680189
0.00716279
0.00741985
0.00748849
0.0073547
0.00707386
0.00673453
0.00640358
0.00623226
0.00613159
0.00603506
0.0059274
0.0057881
0.00557223
0.00522102
0.00490437
0.00462512
0.00436367
0.00410867
0.00385308
0.00355352
0.00315207
0.00265362
0.00209622
0.00159797
0.00118327
0.000972519
0.00085323
0.00121143
0.00088456
0.0031145
0.0113712
0.00908195
0.00695939
0.00657573
0.00653247
0.00632568
0.00618793
0.00622552
0.00646219
0.00684074
0.00723671
0.00750352
0.00754024
0.00733922
0.00700196
0.00671755
0.00662347
0.0066553
0.00663499
0.0065007
0.00626985
0.00595734
0.00558053
0.00517708
0.00480047
0.00446994
0.00418213
0.00393535
0.0037299
0.00356187
0.00335991
0.00301579
0.00255273
0.00209482
0.00168143
0.00142864
0.00140579
0.00147765
0.00105252
0.00317393
0.0101482
0.00898168
0.00824353
0.00767933
0.00699472
0.00642333
0.00617127
0.00626462
0.00662723
0.00711879
0.00756166
0.00778769
0.00771446
0.00737838
0.00694413
0.00667986
0.00670477
0.00674886
0.00658017
0.00623834
0.00578347
0.00527471
0.00477877
0.00434969
0.00400654
0.00374189
0.00354523
0.00340987
0.00333236
0.00331137
0.00332893
0.00325546
0.00298957
0.00277337
0.00273636
0.0030204
0.00357876
0.00422697
0.00157053
0.00308843
0.00366193
0.0040775
0.00420485
0.00427525
0.00446953
0.00488694
0.00553774
0.00634343
0.00715956
0.00783067
0.00820526
0.0081723
0.00776589
0.00716063
0.00669714
0.00647526
0.00635272
0.00612199
0.00570784
0.00515829
0.00456581
0.00402274
0.00359021
0.00327864
0.00306465
0.00291855
0.00281691
0.00274231
0.00268161
0.00262553
0.00256941
0.00252519
0.00249565
0.00249347
0.00250195
0.00245528
0.00230866
0.00212779
0.00144849
0.00157821
0.00318305
0.0049589
0.00643979
0.00759461
0.00847602
0.00902902
0.00923846
0.00913363
0.00868777
0.00794563
0.0070174
0.00621034
0.00573209
0.00544636
0.00511696
0.0046488
0.00408528
0.00353243
0.00306898
0.00272883
0.00251253
0.00238891
0.00232588
0.00230051
0.00229819
0.00230992
0.00233105
0.00236063
0.00240537
0.00245485
0.00250205
0.00253686
0.00253099
0.00244454
0.00227716
0.00202955
0.00118361
0.00206444
0.00512579
0.00767662
0.00849917
0.00889242
0.00896944
0.00869057
0.0081114
0.00733552
0.00646011
0.00562378
0.00488273
0.00432516
0.00393238
0.00355536
0.0031185
0.00266024
0.00226073
0.00197303
0.00179981
0.00171435
0.00168222
0.00169262
0.00173348
0.00179752
0.00187983
0.00197576
0.00207892
0.00218751
0.00230632
0.00243117
0.00255229
0.00265112
0.00271875
0.0026881
0.00268203
0.00254166
0.00120144
0.00182882
0.00193465
0.00201135
0.0021501
0.00205755
0.00193861
0.00185759
0.0017637
0.0016417
0.00149532
0.0013324
0.00116202
0.000993643
0.000844418
0.000728289
0.000644243
0.000584796
0.000544058
0.000518944
0.000507496
0.000507536
0.000516736
0.000533267
0.000555624
0.000582093
0.000612387
0.000646474
0.000684587
0.000727373
0.000776206
0.000832123
0.000893672
0.000961222
0.0010351
0.00111491
0.00121485
0.00123301
0.00119336
0.00111718
0.00103004
)
;
boundaryField
{
floor
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar>
29
(
0.000140998
5.44556e-05
6.6686e-05
7.47129e-05
7.40472e-05
7.13729e-05
6.79074e-05
6.34976e-05
5.90786e-05
5.50237e-05
5.13893e-05
4.81454e-05
4.52612e-05
4.26855e-05
4.0356e-05
3.82036e-05
3.61287e-05
3.40094e-05
3.34047e-05
3.04634e-05
3.04633e-05
4.50262e-05
5.45216e-05
6.09982e-05
0.000140998
5.44555e-05
5.95772e-05
0.000118642
0.000167001
)
;
}
ceiling
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar>
43
(
0.000214548
0.000226139
0.000234499
0.000249633
0.000239648
0.000226707
0.000217842
0.000207509
0.000193985
0.000177611
0.000159175
0.000139622
0.000119977
0.000102245
8.81941e-05
7.78592e-05
7.04509e-05
6.53205e-05
6.21335e-05
6.06735e-05
6.0677e-05
6.18481e-05
6.39473e-05
6.67743e-05
7.01037e-05
7.38918e-05
7.81273e-05
8.28315e-05
8.80755e-05
9.40161e-05
0.000100765
0.000108132
0.000116151
0.000124846
0.000134161
0.000145719
0.000147807
0.000143242
0.000134425
0.000124253
0.000349335
0.000408532
0.000240142
)
;
}
sWall
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0.000214608;
}
nWall
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar> 6(0.00010158 0.000107049 0.000126893 0.000142129 0.000144186 0.00012426);
}
sideWalls
{
type empty;
}
glass1
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar> 9(0.000130265 0.000176613 0.000213965 0.000248952 0.000283804 0.000319975 0.000352464 0.000358663 0.000349773);
}
glass2
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar> 2(0.000186131 0.000172411);
}
sun
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar>
14
(
0.000130162
0.000141495
0.000143524
0.000150001
0.000155986
0.000161557
0.000166983
0.000172215
0.000175793
0.000177102
0.000175572
0.000170828
0.000162851
0.00015232
)
;
}
heatsource1
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar> 3(7.53131e-05 9.0135e-05 0.000101578);
}
heatsource2
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar> 4(0.000142207 8.64849e-05 8.64849e-05 0.000141362);
}
Table_master
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar> 9(9.21366e-05 8.12507e-05 7.24866e-05 6.5385e-05 5.95654e-05 5.47399e-05 5.07013e-05 4.73173e-05 4.45529e-05);
}
Table_slave
{
type nutkWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar> 9(0.000104756 9.59379e-05 8.99426e-05 8.55777e-05 8.18727e-05 7.80263e-05 7.42638e-05 7.01886e-05 6.52868e-05);
}
inlet
{
type calculated;
value uniform 0.000100623;
}
outlet
{
type calculated;
value nonuniform List<scalar> 2(0.00182882 0.00193465);
}
}
// ************************************************************************* //
| [
"mitsuaki.makino@tryeting.jp"
] | mitsuaki.makino@tryeting.jp | |
40e9f2ca3c97d142d4ea2cb9cd74765cdb54efab | 977c82ec23f2f8f2b0da5c57984826e16a22787d | /src/IceRay/render/0scanner/adaptive.hpp | 03eb189b14dc06e0eac725fbb9b9448059188d80 | [
"MIT-0"
] | permissive | dmilos/IceRay | 47ce08e2920171bc20dbcd6edcf9a6393461c33e | 84fe8d90110c5190c7f58c4b2ec3cdae8c7d86ae | refs/heads/master | 2023-04-27T10:14:04.743094 | 2023-04-20T14:33:45 | 2023-04-20T15:07:18 | 247,471,987 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 42 | hpp | ///renderu evry n-th then calc dispersion. | [
"dmilos@gmail.com"
] | dmilos@gmail.com |
0c296b36f4ae2940ff1081a612fd77ae64961a9a | c47d35768ccf61ac69076d13d50f4a02afe1cfc1 | /src/Memory/BinarySegregatorAllocator.hpp | 58591144c05d3d3762c11f6da3b8fb9cbe0462b4 | [
"MIT"
] | permissive | epicbrownie/Epic | 8eaecc7624739bd91ec86d1cf830cebded068c3c | c54159616b899bb24c6d59325d582e73f2803ab6 | refs/heads/master | 2020-04-12T06:43:21.216759 | 2018-04-15T20:33:49 | 2018-04-15T20:33:49 | 64,624,266 | 0 | 0 | MIT | 2018-04-20T13:25:18 | 2016-08-01T00:59:25 | C++ | UTF-8 | C++ | false | false | 4,243 | hpp | //////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2016 Ronnie Brohn (EpicBrownie)
//
// Distributed under The MIT License (MIT).
// (See accompanying file License.txt or copy at
// https://opensource.org/licenses/MIT)
//
// Please report any bugs, typos, or suggestions to
// https://github.com/epicbrownie/Epic/issues
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
#include <Epic/Memory/SegregatorAllocator.hpp>
#include <Epic/Memory/SegBucket.hpp>
#include <Epic/TMP/List.hpp>
#include <Epic/TMP/Utility.hpp>
#include <tuple>
#include <utility>
#include <type_traits>
//////////////////////////////////////////////////////////////////////////////
namespace Epic::detail
{
// Bucket List Filter
template<template<typename> class Pred, typename T, typename U>
using SegBucketListFilterHelper = typename std::conditional<Pred<U>::value, TMP::List<T>, TMP::List<>>::type;
template<template<typename> class Pred, typename Is, typename... Ts>
struct SegBucketListFilter;
template<template<typename> class Pred, typename... Is, typename... Ts>
struct SegBucketListFilter<Pred, TMP::List<Is...>, Ts...>
{
using Type = typename TMP::Concat<SegBucketListFilterHelper<Pred, Ts, Is>...>::Type;
};
// Bucket List Filter Predicates
template<size_t N>
struct SegBucketIndexLess
{
template<typename I>
struct Predicate
{
static constexpr bool value{ I::value < N };
};
};
template<size_t N>
struct SegBucketIndexGreater
{
template<typename I>
struct Predicate
{
static constexpr bool value{ I::value > N };
};
};
// SegregatorAllocator Builder
template<typename... Args>
struct BinarySegregatorAllocatorBuilder;
template<typename... Buckets>
struct BinarySegregatorAllocatorBuilder<TMP::List<Buckets...>>
{
static constexpr size_t N{ ((sizeof...(Buckets)) - 1) / 2 };
using Center = std::tuple_element_t<N, std::tuple<Buckets...>>;
using Left = typename SegBucketListFilter<
SegBucketIndexLess<N>::Predicate,
TMP::IndexListFor<Buckets...>,
Buckets...>::Type;
using Right = typename SegBucketListFilter<
SegBucketIndexGreater<N>::Predicate,
TMP::IndexListFor<Buckets...>,
Buckets...>::Type;
using Type = typename BinarySegregatorAllocatorBuilder<Center, Left, Right, Buckets...>::Type;
};
template<size_t T, class A, typename... Ls, typename... Rs, typename... Buckets>
struct BinarySegregatorAllocatorBuilder<SegBucket<T, A>, TMP::List<Ls...>, TMP::List<Rs...>, Buckets...>
{
using Type = Epic::SegregatorAllocator<T,
typename BinarySegregatorAllocatorBuilder<typename TMP::Concat<TMP::List<Ls...>, TMP::List<A>>::Type>::Type,
typename BinarySegregatorAllocatorBuilder<TMP::List<Rs...>>::Type>;
};
template<class A>
struct BinarySegregatorAllocatorBuilder<TMP::List<A>>
{
using Type = A;
};
template<size_t T, class A, class B>
struct BinarySegregatorAllocatorBuilder<TMP::List<SegBucket<T, A>, B>>
{
using Type = Epic::SegregatorAllocator<T, A, B>;
};
// MakeSegBucketList
template<typename... Args>
struct MakeSegBucketList;
template<size_t T, class A, typename... Args>
struct MakeSegBucketList<SegBucket<T, A>, Args...>
{
using Type = typename TMP::Concat<
TMP::List<SegBucket<T, A>>,
typename MakeSegBucketList<Args...>::Type>::Type;
};
template<size_t T, class A, typename... Args>
struct MakeSegBucketList<TMP::Literal<size_t, T>, A, Args...>
{
using Type = typename TMP::Concat<
TMP::List<SegBucket<T, A>>,
typename MakeSegBucketList<Args...>::Type>::Type;
};
template<class A>
struct MakeSegBucketList<A>
{
using Type = TMP::List<A>;
};
// BinarySegregatorAllocatorBuilder Invoker
template<typename... Args>
using BinarySegregatorAllocatorBuilderInvoker =
typename BinarySegregatorAllocatorBuilder<typename MakeSegBucketList<Args...>::Type>::Type;
}
//////////////////////////////////////////////////////////////////////////////
namespace Epic
{
template<typename... Args>
using BinarySegregatorAllocator = typename Epic::detail::BinarySegregatorAllocatorBuilderInvoker<Args...>::Type;
}
| [
"epicbrownie@gmail.com"
] | epicbrownie@gmail.com |
e86428270cf95f386dedd5ebd2fdb627c8a6c9a8 | eed3cdaa263de8fced4b982bf3e92d0ab16fdbbf | /Switch/base64.h | 1f3d2794efd8c3b46c6f0e2cd93ec415592e77a3 | [
"Apache-2.0"
] | permissive | phaistos-networks/TANK | 4eeaf2e51b8397ff63705a9c63c28fa12b368fc3 | ecb7a2d23532bf6eb21c5f587490f71b7afdb859 | refs/heads/master | 2023-03-08T06:01:00.660937 | 2022-09-06T08:22:58 | 2022-09-06T08:22:58 | 62,232,843 | 1,022 | 82 | Apache-2.0 | 2020-02-01T07:12:34 | 2016-06-29T14:35:45 | C++ | UTF-8 | C++ | false | false | 477 | h | #pragma once
#include "switch.h"
#include "buffer.h"
static inline bool is_base64(const uint8_t c) noexcept {
return c == '+' || c == '/' || (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
}
namespace Base64 {
size_t decoded_repr_length(const str_view32 s);
uint32_t Encode(const uint8_t *in, size_t in_len, Buffer *out);
int32_t Decode(const uint8_t *in, const size_t in_len, Buffer *out);
} // namespace Base64
| [
"mpapadakis@phaistosnetworks.gr"
] | mpapadakis@phaistosnetworks.gr |
9acbc011dfc5e1198911d2986dfda9f505370a22 | baddcd5e125c92c5818190d1d9a5c6a207407ff7 | /day1/day1.cpp | 3e892c80681611fedb2cba2aec5d249b13abd539 | [] | no_license | mdeabreu/aoc2019 | 0afe64d41943029b72cfddc737e499db4121bdf7 | b4bec75a115c8335f18cad758b90eb4b4be3126a | refs/heads/master | 2020-11-25T06:37:56.528232 | 2020-01-13T18:43:50 | 2020-01-13T18:43:50 | 228,542,357 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,610 | cpp | #include <iostream>
#include <algorithm>
#include <numeric>
#include <cassert>
#include "day1.hpp"
// Fuel required to launch a given module is based on its mass.
// Specifically, to find the fuel required for a module, take its mass, divide
// by three, round down, and subtract 2.
// Fuel itself requires fuel just like a module - take its mass, divide by
// three, round down, and subtract 2. However, that fuel also requires fuel,
// and that fuel requires fuel, and so on. Any mass that would require negative
// fuel should instead be treated as if it requires zero fuel; the remaining
// mass, if any, is instead handled by wishing really hard, which has no mass
// and is outside the scope of this calculation.
int mass_to_fuel(const int& mass, const bool& include_fuel)
{
if (mass < 6)
{
return 0;
}
int fuel = ((mass / 3) - 2);
if (include_fuel)
{
return fuel + mass_to_fuel(fuel, true);
}
else
{
return fuel;
}
}
int part1(std::vector<int> input)
{
const bool include_fuel = false;
// For a mass of 12, divide by 3 and round down to get 4,
// then subtract 2 to get 2.
assert(2 == mass_to_fuel(12, include_fuel));
// For a mass of 14, dividing by 3 and rounding down still yields 4, so the
// fuel required is also 2.
assert(2 == mass_to_fuel(14, include_fuel));
// For a mass of 1969, the fuel required is 654.
assert(654 == mass_to_fuel(1969, include_fuel));
// For a mass of 100756, the fuel required is 33583.
assert(33583 == mass_to_fuel(100756, include_fuel));
// Transform the original mass into the fuel required
std::vector<int> fuel_counts;
std::transform(input.begin(), input.end(), std::back_inserter(fuel_counts),
[include_fuel](const int &n) { return mass_to_fuel(n, include_fuel); });
// Sum all the fuel counts for a total
return std::accumulate(fuel_counts.begin(), fuel_counts.end(), 0);
}
int part2(std::vector<int> input)
{
const bool include_fuel = true;
// A module of mass 14 requires 2 fuel. This fuel requires no further fuel
// (2 divided by 3 and rounded down is 0, which would call for a negative
// fuel), so the total fuel required is still just 2.
assert(2 == mass_to_fuel(14, include_fuel));
// At first, a module of mass 1969 requires 654 fuel. Then, this fuel
// requires 216 more fuel (654 / 3 - 2). 216 then requires 70 more fuel,
// which requires 21 fuel, which requires 5 fuel, which requires no further
// fuel. So, the total fuel required for a module of mass 1969 is
// 654 + 216 + 70 + 21 + 5 = 966.
assert(966 == mass_to_fuel(1969, include_fuel));
// The fuel required by a module of mass 100756 and its fuel is:
// 33583 + 11192 + 3728 + 1240 + 411 + 135 + 43 + 12 + 2 = 50346.
assert(50346 == mass_to_fuel(100756, include_fuel));
// Transform the original mass into the fuel required
std::vector<int> fuel_counts;
std::transform(input.begin(), input.end(), std::back_inserter(fuel_counts),
[include_fuel](const int &n) { return mass_to_fuel(n, include_fuel); });
// Sum all the fuel counts for a total
return std::accumulate(fuel_counts.begin(), fuel_counts.end(), 0);
}
int main()
{
int p1_total_fuel = part1(kInputs);
assert(3406432 == p1_total_fuel);
std::cout<< "Part 1: Total fuel required: " << p1_total_fuel << std::endl;
int p2_total_fuel = part2(kInputs);
assert(5106777 == p2_total_fuel);
std::cout<< "Part 2: Total fuel required: " << p2_total_fuel << std::endl;
} | [
"Matthew.DeAbreu@gmail.com"
] | Matthew.DeAbreu@gmail.com |
d18deb7cdd2b92940ad3fdf6ba7885ab093b0557 | 93294d148df93b4378f59ac815476919273d425f | /src/training/SetControlConstraintsAction.cpp | 7e51326fc5b0724d3bd9e8a351f2f2d144d8d190 | [
"MIT"
] | permissive | FreeAllegiance/Allegiance | f1addb3b26efb6b8518705a0b0300974820333c3 | 3856ebcd8c35a6d63dbf398a4bc7f0264d6c823c | refs/heads/master | 2023-07-06T17:53:24.363387 | 2023-06-29T00:24:26 | 2023-06-29T00:24:26 | 98,829,929 | 86 | 34 | MIT | 2023-06-28T03:57:34 | 2017-07-30T23:09:14 | C++ | UTF-8 | C++ | false | false | 3,837 | cpp | /*
** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
**
** File: setcontrolconstraintsaction.cpp
**
** Author:
**
** Description:
** Implementation of the training library "setcontrolconstraintsaction" interface.
**
** History:
*/
#include "pch.h"
#include "SetControlConstraintsAction.h"
namespace Training
{
//------------------------------------------------------------------------------
// global variabes
//------------------------------------------------------------------------------
extern ControlData g_allowableControlScalars; // yaw, pitch, roll, throttle
extern int g_iAllowableActionMask;
//------------------------------------------------------------------------------
// class methods
//------------------------------------------------------------------------------
/* void */ SetControlConstraintsAction::SetControlConstraintsAction (void)
{
// assign default values to the control masks
m_inputControls.jsValues[c_axisYaw] = NA;
m_inputControls.jsValues[c_axisPitch] = NA;
m_inputControls.jsValues[c_axisRoll] = NA;
m_inputControls.jsValues[c_axisThrottle] = NA;
m_iEnableActionsMask = 0;
m_iDisableActionsMask = 0;
}
//------------------------------------------------------------------------------
/* void */ SetControlConstraintsAction::~SetControlConstraintsAction (void)
{
}
//------------------------------------------------------------------------------
void SetControlConstraintsAction::Execute (void)
{
// Set the control values
if (m_inputControls.jsValues[c_axisYaw] != NA)
g_allowableControlScalars.jsValues[c_axisYaw] = m_inputControls.jsValues[c_axisYaw];
if (m_inputControls.jsValues[c_axisPitch] != NA)
g_allowableControlScalars.jsValues[c_axisPitch] = m_inputControls.jsValues[c_axisPitch];
if (m_inputControls.jsValues[c_axisRoll] != NA)
g_allowableControlScalars.jsValues[c_axisRoll] = m_inputControls.jsValues[c_axisRoll];
if (m_inputControls.jsValues[c_axisThrottle] != NA)
g_allowableControlScalars.jsValues[c_axisThrottle] = m_inputControls.jsValues[c_axisThrottle];
// Set the disabled control masks
for (int i = 0; i < 32; i++)
{
int action = m_iDisableActionsMask & (1 << i);
if (g_iAllowableActionMask & action)
g_iAllowableActionMask ^= action;
}
// Set the enabled control masks
g_iAllowableActionMask |= m_iEnableActionsMask;
}
//------------------------------------------------------------------------------
void SetControlConstraintsAction::EnableInputAction (int iInputAction)
{
m_iEnableActionsMask |= iInputAction;
for (int i = 0; i < 32; i++)
{
int action = m_iDisableActionsMask & (1 << i);
if (iInputAction & action)
m_iDisableActionsMask ^= action;
}
}
//------------------------------------------------------------------------------
void SetControlConstraintsAction::DisableInputAction (int iInputAction)
{
m_iDisableActionsMask |= iInputAction;
for (int i = 0; i < 32; i++)
{
int action = m_iEnableActionsMask & (1 << i);
if (iInputAction & action)
m_iEnableActionsMask ^= action;
}
}
//------------------------------------------------------------------------------
void SetControlConstraintsAction::ScaleInputControl (Axis axis, float fScalar)
{
m_inputControls.jsValues[axis] = fScalar;
}
//------------------------------------------------------------------------------
}
| [
"nick@zaphop.com"
] | nick@zaphop.com |
44c2a277cd0c590fd6ef966358c003047620c7e9 | 90ea5ed39310aa15afa1ffa502ea438545c3ebc6 | /decoratorPattern.cpp | 8b9b1448d8d7daff8f976c5524d1e897f08c8dcc | [] | no_license | miloudbelaabed/Design-Patterns | ec608707f90f5d068e34b52b828fc412c897af86 | 9bc5ba2171d76ffd23fd8691570d36cbd1ebd805 | refs/heads/master | 2022-12-15T02:23:14.217198 | 2020-08-30T14:46:17 | 2020-08-30T14:46:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,884 | cpp | #include <iostream>
using namespace std;
class Beverage {
public:
virtual int cost() = 0;
void discription() {
cout <<"this is a beverage " << endl;
}
};
class espreso : public Beverage {
public:
int cost() {
return 1;
}
};
class milk : public Beverage {
int cost() {
return 2;
}
};
class addOnDecorator: public Beverage {
Beverage* b;
public:
addOnDecorator(Beverage* b) {
this->b = b;
}
int cost() {
return this->b->cost();
}
};
class caramel : public addOnDecorator {
public:
caramel(Beverage *b):addOnDecorator(b) {};
int cost() {
return addOnDecorator::cost() + 2;
}
};
class chocklet : public addOnDecorator {
public:
chocklet(Beverage* b):addOnDecorator(b) {};
int cost() {
return addOnDecorator::cost() + 3;
}
};
int menu() {
int n;
cout << "chose your beverege from the list bellow : " << endl;
cout << "1- espresso 1 da" << endl;
cout << "2 - milk 2 da" << endl;
cin >> n ;
return n;
}
int main() {
int choix;
Beverage* beverage;
choix = menu();
switch (choix)
{
case 1:
beverage = new espreso();
break;
case 2:
beverage = new milk();
break;
default:
cout << "you are out of range ! " << endl;
break;
}
int addon=1;
while (addon == 1)
{
cout << "do you want to add something into your beverage ? "<< endl;
cout << "1: YES ! " << endl;
cout << "2: NO ! " << endl;
cin >> addon;
if (addon == 1)
{
int ans;
cout << "1: caramel 2 da" << endl;
cout << "2: chocklet 3 da" << endl;
cin >> ans;
switch (ans)
{
case 1:
beverage = new caramel(beverage);
break;
case 2:
beverage = new chocklet(beverage);
break;
default:
cout<< "its not in the list "<< endl;
break;
}
}else{
cout << "OK enjoy " << endl;
break;
}
}
cout <<"your cost : "<< beverage->cost();
return 0;
} | [
"unknown.dza@gmail.com"
] | unknown.dza@gmail.com |
55f9857e041cd32044dc88efa06cfaedcdc13b31 | fffcc3013b809d60ea8af4ddb437c9ae7cfbf1fb | /processor_pool.h | eca916a9a69bfa27654dc42510ba83b24e69de4f | [
"Apache-2.0"
] | permissive | skyformat99/coroutine-6 | b07143994835e8d15668bb2bff1c1c612fc9b94b | 42ec14eee0e19d2dff120cc30b4734d25b6f005b | refs/heads/master | 2020-03-31T17:32:21.408406 | 2018-10-06T13:02:55 | 2018-10-06T13:02:55 | 152,426,591 | 0 | 1 | NOASSERTION | 2018-10-10T13:17:16 | 2018-10-10T13:17:16 | null | UTF-8 | C++ | false | false | 3,884 | h | #pragma once
#include <iostream>
#include <thread>
#include <atomic>
#include "smallvector.h"
#include "spinlock.h"
#include "readwrite_queue.h"
#include "coroutine.h"
namespace coro {
using Task = std::function<void()>;
using TaskQueue = ReadWriteQueue<Task>;
class Processor {
private:
std::vector<routine_t> workers_;
TaskQueue& task_queue_;
Channel<Task> tasks_;
std::atomic<bool>& stop_;
uint64_t num_workers_;
public:
Processor(const uint64_t& num_workers, TaskQueue& task_queue,
std::atomic<bool>& stop):
num_workers_(num_workers), task_queue_(task_queue), stop_(stop) {
for (auto i = 0U; i < num_workers_; i++) {
const auto& worker = Create(std::bind(
&Processor::ConsumeTask, this));
workers_.push_back(worker);
}
}
~Processor() {
}
void ConsumeTask() {
do {
Task task;
if (tasks_.Pop(task)) {
task();
}
} while (!(stop_.load(std::memory_order_acquire) &&
tasks_.IsEmpty()));
}
void Run() {
bool work_done = false;
while (!work_done) {
work_done = true;
for (const auto& worker : workers_) {
Task task;
if (task_queue_.TryPop(task)) {
work_done = false;
tasks_.Push(task);
}
auto ret = Resume(worker);
if (ret != -2) {
work_done = false;
}
if (stop_.load(std::memory_order_acquire) && work_done) {
if (tasks_.IsEmpty())
tasks_.Close();
}
}
}
for (const auto& worker : workers_) {
Destroy(worker);
}
}
void Finalize() {
stop_.store(true, std::memory_order_release);
}
void AddTask(const Task& task) {
task_queue_.Push(task);
}
};
class ProcessorPool {
public:
ProcessorPool() = delete;
ProcessorPool(const uint64_t num_workers_per_core):
ProcessorPool(std::thread::hardware_concurrency(),
num_workers_per_core) {}
ProcessorPool(const uint64_t& num_cores, const uint64_t&
num_workers_per_core) : num_cores_(num_cores),
num_workers_per_core_(num_workers_per_core),
last_core_(0U) {
for (auto core = 0U; core < num_cores; core++) {
task_queues_.EmplaceBack(new TaskQueue);
threads_.PushBack(std::unique_ptr<std::thread>(
new std::thread([this, core]{
std::shared_ptr<Processor> processor(
new Processor(
num_workers_per_core_,
*task_queues_[core], stop_)
);
processors_.EmplaceBack(processor);
processor->Run();
}))
);
}
}
~ProcessorPool() {
Finalize();
}
void Finalize() {
stop_.store(true, std::memory_order_release);
for (const auto& thread : threads_) {
thread->join();
}
}
void AddTask(const Task& task) {
// add task in a round-robin manner
task_lock_.lock();
last_core_ = (last_core_ + 1) % num_cores_;
const auto last_core = last_core_;
task_lock_.unlock();
task_queues_[last_core]->Push(task);
}
private:
uint64_t num_cores_;
uint64_t num_workers_per_core_;
uint64_t last_core_;
SpinLock task_lock_;
std::atomic<bool> stop_;
SmallVector<std::unique_ptr<TaskQueue>> task_queues_;
SmallVector<std::unique_ptr<std::thread>> threads_;
SmallVector<std::shared_ptr<Processor>> processors_;
};
} // namespace coro
| [
"zhengankun@163.com"
] | zhengankun@163.com |
952e3404b0aae4fa6def07a036a988a74024e3f6 | 83bbe184d6ba3ee90b28312a79a5862e93c25f16 | /Ice Climber/Ice Climber/Topi.h | 3bc817928b9c5b2fdca74a9b755a2917a3f8f031 | [] | no_license | tmsao2/IceClimber | 5392f76203e3da97d48fda89802253629b66f05a | 60485564281e478d78eabf7d7d59b4b4022d3e31 | refs/heads/master | 2020-05-20T03:35:28.731076 | 2019-10-25T05:12:11 | 2019-10-25T05:12:11 | 185,362,160 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 725 | h | #pragma once
#include "Enemy.h"
class Player;
class EnemyFactory;
class Ground;
class Topi :
public Enemy
{
private:
Vector2f _vel;
int _wait;
int _grapH; //画像ハンドル
//メンバ関数ポインタ
void (Topi::*_updater)();
//状態(ステート)
//ニュートラル
void NeutralUpdate();
//歩く
void WalkUpdate();
//ダメージ
void DamageUpdate();
//死亡
void DieUpdate();
//復活
void RevivalUpdate();
friend EnemyFactory;
Topi(const Camera& c, const Player& p, const Ground& g);
Topi(const Topi&);//コピー禁止
void operator=(const Topi&);//代入禁止
Enemy* Clone();
public:
~Topi();
void Update();
void Draw();
void OnGround(int groundline);
void OnDamage();
};
| [
"1701377@PC65210"
] | 1701377@PC65210 |
be2ca1cbd388a62d4aeb3bca73244a7d4428b4b9 | 8f57ac1d0cd7d4f97d9084d4d9917e794f2a4ce5 | /Tree.hpp | 87d0f83733d6c381c46e6a81326d6dd1fb08d050 | [] | no_license | nizan153/cpp-BinaryTree | 5948d9199656a4aa644a55c65a49da467ad0de46 | aa5b6c0e607036e3b964472198f12ccaf7084a52 | refs/heads/master | 2020-04-30T02:46:52.798058 | 2019-03-31T15:01:12 | 2019-03-31T15:01:12 | 176,567,804 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,000 | hpp | #ifndef TREE_H
#define TREE_H
#include <iostream>
namespace ariel
{
class Node{
public:
Node *left;
Node *right;
int data;
Node(int i) : data(i), left(NULL), right(NULL) {}
};
class Tree
{
private:
Node *head;
int sizeOfTree;
void deleteTree(Node*);
Node* getNode(int);
void printPreorder(Node*);
void printPostorder(Node*);
void printInorder(Node*);
void insert(Node*, int);
Node* remove(Node*&, int);
Node* findMin(Node*);
public:
Tree();
Tree(int);
~Tree();
void insert(int);
void remove(int);
int size();
bool contains(int);
int root();
void print();
int left(int);
int parent(int);
int right(int);
};
}
#endif // TREE_H | [
"nizan153@gmail.com"
] | nizan153@gmail.com |
b2dc402f42e7384b11307906a1dddd2736c648fc | 47232a61bf588e82bd7b0003f6608c4714863d8b | /src/database.cpp | 3bd9f5123a780dad4ef910fd0759d398cde9c135 | [] | no_license | sidorplugin/HearDemoTrackEasy | ca091433d85352cabf618e73ce3b34d36ff3af36 | 517dc406ff0566719f5b8da5ac4c45c558c70c77 | refs/heads/master | 2021-01-18T18:46:54.204791 | 2018-09-19T20:01:01 | 2018-09-19T20:01:01 | 100,524,274 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,201 | cpp | #include "database.h"
Database* Database::m_self = NULL;
Database::Database()
{
// Создает БД и таблицы.
initialize();
m_model = new Model;
m_model->setTable("tracks");
m_model->setEditStrategy(QSqlTableModel::OnManualSubmit);
m_model->select();
// Создает заголовки модели.
for (int i = MediaInfo::Id_Track; i <= MediaInfo::Source; i++) {
m_model->setHeaderData(i, Qt::Horizontal, MediaInfo::name(i));
}
}
// Возвращает единственный экземпляр БД (создает если необходимо).
Database* Database::getInstance()
{
if (!m_self)
m_self = new Database;
return m_self;
}
// Инициализация базы данных.
void Database::initialize()
{
qDebug() << "Database::initialize()";
QSqlError error;
m_database = QSqlDatabase::addDatabase("QSQLITE");
m_database.setDatabaseName("database.db");
if (!m_database.open()) {
error = m_database.lastError();
qWarning() << error.text();
return;
}
if (m_database.tables().isEmpty()) {
error = createTracksTable();
if (error.type() != QSqlError::NoError) {
qWarning() << "Failure to create AlbumsTable in database " + error.text();
}
}
}
// Создает таблицу треков.
QSqlError Database::createTracksTable()
{
QSqlQuery query(m_database);
if (!query.exec(QLatin1String("CREATE TABLE tracks("
" id_track INTEGER NOT NULL PRIMARY KEY,"
" id_album INTEGER,"
" artist VARCHAR,"
" title_track VARCHAR,"
" title_album VARCHAR,"
" style VARCHAR,"
" catalog VARCHAR,"
" label VARCHAR,"
" date VARCHAR,"
" images VARCHAR,"
" link_track VARCHAR,"
" link_album VARCHAR,"
" source VARCHAR)")))
return query.lastError();
return QSqlError();
}
| [
"sidormax@mail.ru"
] | sidormax@mail.ru |
300bb85ba800f91eea00416a820ee09f834d720e | 666787219f3e004a3f0fc91e0c706d49c810eff0 | /module05/multipleInheritance/Navy.h | 360980f93f6c682104b96665cb2cab9e6e6e036f | [] | no_license | vallejos/rasmussen-advanced-cpp-programming-cop2350c | ebfbe14a1bb7ef3026a236935798cd79d52e0ff1 | 50becd279a90c2ed6e7f8c2de6e2724d4daf9a0b | refs/heads/master | 2020-12-02T11:30:26.665262 | 2017-08-08T23:08:54 | 2017-08-08T23:08:54 | 96,644,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 188 | h |
#ifndef NAVY_H
#define NAVY_H
#include "Soldier.h"
class Navy : public Soldier {
public:
Navy();
Navy(const Navy& orig);
virtual ~Navy();
private:
};
#endif /* NAVY_H */
| [
"vallejosfab@gmail.com"
] | vallejosfab@gmail.com |
13fa06a441ab3209d355236a9d02a1f7abba21b6 | be99bc1d4280e2a53f67c8b649566ae80f2ed642 | /Player.cpp | a9ca61ffa7239cf21a2c03f52c446d050c29b3a2 | [] | no_license | azshen23/pokemon-gen3 | 4007a52fdec5616210c345ec1c82b0ce65c0a917 | 4d23d33e29e162d8d02fd72bbab853333e441290 | refs/heads/master | 2021-10-10T07:59:37.375674 | 2021-10-05T20:57:44 | 2021-10-05T20:57:44 | 245,323,220 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 387 | cpp | #include <iostream>
#include <fstream>
#include <cstdlib>
#include <cassert>
#include <cstring>
#include <string>
#include <array>
#include <vector>
#include <sstream>
#include <cstdio>
class Player
{
public:
virtual int menu()
{
}
private:
};
class ComputerPlayer : public Player
{
};
class HumanPlayer : public Player
{
public:
virtual int menu()
{
}
}; | [
"55771349+azshen-umich@users.noreply.github.com"
] | 55771349+azshen-umich@users.noreply.github.com |
578afe76ecba44f7a75a587b075cb76333745d2e | 9c21a1f7caf0b889201414e5a97c5e2a3147d0cc | /CdS_Base/FunctionMapDrawer/include/VirtualModel.h | 4571411cb707d20e020a798a537bb232b3b7ae6b | [] | no_license | dlCdS/Dev | f95a2e41b71de2ea562c268e713e3879ac74e3b4 | 304ee4cbef803f98d1017927fddb3b036ffcf165 | refs/heads/master | 2022-01-13T00:33:19.449933 | 2021-10-25T14:40:08 | 2021-10-25T14:40:08 | 220,112,062 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 535 | h | #pragma once
#include <Common.h>
#include <SetColourWidget.h>
#define e(f, i, j) (f[i][j])
#define loop() for(ge_i i=0; i<_size.w; i++) for(ge_i j=0; j<_size.h; j++)
class VirtualModel
{
public:
VirtualModel();
virtual ~VirtualModel();
virtual void setColourWidget(SetColourWidget* scw);
void setSize(const ge_pi& size, const ge_i& zoom);
void cycle();
protected:
virtual void draw() = 0;
virtual void mainLoop() = 0;
void initWidget(SetColourWidget* widget);
SetColourWidget* _scw;
ge_pi _size;
ge_i _zoom;
};
| [
"francis.denis541@gmail.com"
] | francis.denis541@gmail.com |
5184e7b6d8868d0ab42082b96d68fba3611d3c1f | a63f168cf9580def12980a06ca8f6757e8cb440d | /practice/ufds/owl-fight.cpp | 2a33ce86798786b117d5bd5eed54d8ad42208df9 | [] | no_license | ajay-anand-verma/ds-algo | 6caf749d0c88d70830139d62826b0d43477217f5 | 305614fab61d80bdb169ea01feddb5862f74a173 | refs/heads/master | 2023-04-01T06:07:56.898661 | 2021-04-06T15:23:51 | 2021-04-06T15:23:51 | 293,047,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 747 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
vi p;
int findSet(int i) { return p[i] == i ? i : p[i] = findSet(p[i]); }
bool isSameSet(int i, int j) { return findSet(i) == findSet(j); }
void setUnion(int u, int v){
if(!isSameSet(u, v)){
int x = findSet(u), y = findSet(v);
if(x>y)
p[y] = x;
else
p[x] = y;
}
}
void winner(int u, int v){
if(isSameSet(u, v)) cout<<"TIE"<<endl;
else{
int x = findSet(u), y = findSet(v);
if(x>y)
cout<<u+1<<endl;
else
cout<<v+1<<endl;
}
}
int main(){
int N, M, Q, u, v;
cin>>N>>M;
p.assign(N, 0); for(int i=0; i<N; i++) p[i] = i;
while(M--){
cin>>u>>v;
setUnion(u-1, v-1);
}
cin>>Q;
while(Q--){
cin>>u>>v;
winner(u-1, v-1);
}
return 0;
}
| [
"ajay.codifer@gmail.com"
] | ajay.codifer@gmail.com |
cef62d998bf63b67c9014309d7f8338831b2f6cf | c8b2bb50a19f79556aa8760731a5b8b963087bd0 | /my3d/Sampler.h | ec29b30fc641b4ab354565687b12337a5972948c | [] | no_license | etyoshino/D3D | 6729ce46f3b256ebfaf1158e63049b48ebb75d92 | 2331c58600d6a3bce0a8b9ce3bae5f8b75fe8b0d | refs/heads/main | 2023-08-14T08:27:19.825669 | 2021-09-22T09:56:50 | 2021-09-22T09:56:50 | 376,202,354 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 215 | h | #pragma once
#include "Bindable.h"
class Sampler : public Bindable
{
public:
Sampler(Graphics& gfx);
void Bind(Graphics& gfx) noexcept override;
protected:
Microsoft::WRL::ComPtr<ID3D11SamplerState> pSampler;
};
| [
"etyoshino@163.com"
] | etyoshino@163.com |
f83043b2b751419b4c3d87ed9ef6a97a2f565ffc | 12faf41c596568f32785d5e841d930c67a7e0649 | /tests/testPsf.h | 630a3bc507abab8f0820870a2f55a37a69cc04b5 | [
"NCSA"
] | permissive | DarkEnergySurvey/LSSTmeasalgorithms | 086dad3e1ccf595eebb089346842558b0ef12f21 | 1d91d52849eff71238f90c4ae3f374458ed4e12d | refs/heads/master | 2023-03-12T04:26:49.887471 | 2021-03-03T21:19:27 | 2021-03-03T21:19:27 | 339,210,664 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,999 | h | // -*- LSST-C++ -*-
/*
* LSST Data Management System
* Copyright 2013 LSST Corporation.
*
* This product includes software developed by the
* LSST Project (http://www.lsst.org/).
*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the LSST License Statement and
* the GNU General Public License along with this program. If not,
* see <http://www.lsstcorp.org/LegalNotices/>.
*/
#ifndef LSST_MEAS_ALGORITHMS_TESTS_testPsf_h_INCLUDED
#define LSST_MEAS_ALGORITHMS_TESTS_testPsf_h_INCLUDED
#include <boost/make_shared.hpp>
#include "lsst/pex/exceptions.h"
#include "lsst/afw/math/Kernel.h"
#include "lsst/afw/geom/Box.h"
#include "lsst/afw/geom/Point.h"
#include "lsst/afw/geom/ellipses/Quadrupole.h"
#include "lsst/afw/image/Color.h"
#include "lsst/afw/image/Image.h"
#include "lsst/afw/detection/Psf.h"
namespace test {
namespace foo {
namespace bar {
/// A Psf for testing positions involved in calculations
///
/// The TestPsf ensures that all positions on which calculations are based
/// are within the bounding box of an image.
class TestPsf : public lsst::afw::detection::Psf
{
public:
template <typename ImageT>
explicit TestPsf(CONST_PTR(ImageT) image, double value=1.0)
: lsst::afw::detection::Psf(), _bbox(image->getBBox(lsst::afw::image::PARENT)), _value(value) {}
virtual ~TestPsf() {}
virtual PTR(lsst::afw::detection::Psf) clone() const {
return PTR(TestPsf)(new TestPsf(_bbox, _value));
}
virtual PTR(Image) doComputeImage(lsst::afw::geom::Point2D const& position,
lsst::afw::image::Color const&) const {
assertPosition(position);
return makeImage();
}
virtual PTR(Image) doComputeKernelImage(lsst::afw::geom::Point2D const& position,
lsst::afw::image::Color const&) const {
assertPosition(position);
return makeImage();
}
virtual double doComputeApertureFlux(double radius,
lsst::afw::geom::Point2D const& position,
lsst::afw::image::Color const&) const {
assertPosition(position);
return _value;
}
virtual lsst::afw::geom::ellipses::Quadrupole doComputeShape(lsst::afw::geom::Point2D const& position,
lsst::afw::image::Color const&) const {
assertPosition(position);
return lsst::afw::geom::ellipses::Quadrupole(0, 0, 0);
}
protected:
PTR(Image) makeImage() const {
PTR(Image) image = boost::make_shared<Image>(1, 1);
*image = _value;
return image;
}
void assertPosition(lsst::afw::geom::Point2D const& position) const {
if (!_bbox.contains(lsst::afw::geom::Point2I(position))) {
std::cout << "Position " << position << " outside bbox " << _bbox << std::endl;
throw LSST_EXCEPT(lsst::pex::exceptions::InvalidParameterException, "Position outside BBox");
}
}
explicit TestPsf(lsst::afw::geom::Box2I const& bbox, double value=1.0) :
lsst::afw::detection::Psf(), _bbox(bbox), _value(value) {}
private:
lsst::afw::geom::Box2I _bbox; ///< Bounds for PSF
double _value; ///< Value of PSF
};
template <typename ImageT>
PTR(TestPsf) makeTestPsf(CONST_PTR(ImageT) image, double value=1.0) {
return boost::make_shared<TestPsf>(image, value);
}
}}} // namespace test::foo::bar
#endif
| [
"felipe@illinois.edu"
] | felipe@illinois.edu |
ab3ec707c25b570b637976b3617089f93e1fe11c | 30c8f9dc6f24aafbbcad30c445fadb11efa2be83 | /os/ios/api/AppDelegate.inl | 2efdad12c64b9cb74d4022ae7d1dcd4045de5eca | [] | no_license | metabeast/app | 0083be89e3419a80162d556f5a18ecc249cd4503 | 357638c88d4fd999f6df17369477fdfcd963d798 | refs/heads/master | 2021-09-10T02:52:10.096577 | 2018-03-20T19:46:38 | 2018-03-20T19:46:38 | 126,073,961 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,836 | inl | #pragma once
namespace app::ios {
struct AppDelegate : NSObject {
static struct API {
objc::classid cls {
"AppDelegate","NSObject",
objc::method {
"application:didFinishLaunchingWithOptions:",
[](AppDelegate* self,objc::selector _cmd,NSObject*) {
puts(_cmd.name());
objc::autoreleasepool autoreleasepool;
// UIScreen* const screen {
// UIScreen::mainScreen()
// };
// CADisplayLink* const displayLink {
// screen->displayLink(self,"updateWithDisplayLink:")
// };
// displayLink->addToRunLoop(
// NSRunLoop::currentRunLoop(),
// NSDefaultRunLoopMode
// );
auto& viewController { AppViewController::root };
viewController = AppViewController::alloc()->init();
auto& window { AppWindow::main };
window = AppWindow::newWindow();
window->rootViewController(viewController);
window->makeKeyAndVisible();
self->performSelectorOnMainThread("main",self,false);
}
},
objc::method {
"applicationDidBecomeActive:",
[](AppDelegate*,objc::selector _cmd,UIApplication*) {
puts(_cmd.name());
auto* const window = (app::window*)AppWindow::main;
window->behavior()->activated(window);
}
},
objc::method {
"applicationDidEnterBackground:",
[](AppDelegate*,objc::selector _cmd,UIApplication*) {
puts(_cmd.name());
auto* const window = (app::window*)AppWindow::main;
window->behavior()->deactivated(window);
}
},
objc::method {
"main",
[](AppDelegate*,objc::selector _cmd,NSObject*) {
puts(_cmd.name());
objc::autoreleasepool autoreleasepool;
auto* const app = UIApplication::sharedApplication();
app::detail::subsystems subsystems;
const int status {app::main(argc,argv)};
app->terminate(status);
}
},
objc::method {
"updateWithDisplayLink:",
[](AppDelegate*,objc::selector _cmd,NSObject* displayLink) {
puts(_cmd.name());
}
},
};
objc::message<void(SEL,NSObject*,bool)>
performSelectorOnMainThread
{"performSelectorOnMainThread:withObject:waitUntilDone:"};
} api;
static int argc;
static char** argv;
static
AppDelegate*
alloc() { return NSObject::alloc<AppDelegate>(); }
AppDelegate*
init() { return NSObject::init<AppDelegate>(); }
void
performSelectorOnMainThread(
const objc::selector selector,
NSObject* const arg,
const bool wait
) { api.performSelectorOnMainThread(this,selector,arg,wait); }
};
AppDelegate::API AppDelegate::api {};
decltype(AppDelegate::argc) AppDelegate::argc {0};
decltype(AppDelegate::argv) AppDelegate::argv {nullptr};
} // namespace app::ios
| [
"garett.bass@king.com"
] | garett.bass@king.com |
08ea17b82df598013024f21d4ba6c1e1663048bd | 4ca41284a19cc0ccf681327dbbe47b81befd6d75 | /BackUp/SpaceObsession/Classes/popups/PurchaseView.cpp | 52fc82a73995b1c462ebd61ae5e29bf72d22b6b6 | [] | no_license | droidsde/SillyatomGames | 9e82c89a5390c4530f40a63cd7109e4aaeae6729 | 81e4c49fae9473b664f954bd0e8483ae4d404b2d | refs/heads/master | 2020-07-05T01:09:10.928828 | 2016-04-13T17:12:44 | 2016-04-13T17:12:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,779 | cpp | //
// PurchaseView.cpp
// MyCppGame
//
// Created by Sillyatom on 24/01/15.
//
//
#include "PurchaseView.h"
#include "../Constants.h"
#include "../Helper.h"
#include "../PlayerData.h"
#include "../lib/GameSaveData.h"
#include "../lib/Utility.h"
#include "GenericPopup.h"
#include "../lib/InAppHandler.h"
void PurchaseView::onExit()
{
if (_clearCallFunc)
{
_clearCallFunc->release();
_clearCallFunc = NULL;
}
CSBPopup::onExit();
}
void PurchaseView::construct(std::string fileName, CallFunc * clearCallFunc)
{
_purchaseContent["com.sillyatomgames.voidshots.removeads"] = 500000;
// _purchaseContent["com.sillyatomstudios.liteshots.mediumenergypack"] = 200000;
// _purchaseContent["com.sillyatomstudios.liteshots.smallenergypack"] = 50000;
CSBPopup::construct(fileName);
_clearCallFunc = clearCallFunc;
{
Button * btn = static_cast<Button*>(Helper::seekWidgetByName(_layout, "closebtn"));
btn->addTouchEventListener(CC_CALLBACK_2(PurchaseView::touchCallback, this));
}
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
InAppHandler::getProductsList(this);
#endif
}
void PurchaseView::initView()
{
Widget * itemView = Helper::seekWidgetByName(_layout, "noads");
for (int index = 1;;index++)
{
std::ostringstream oss;
oss<<"holder"<<index;
Widget * holder = Helper::seekWidgetByName(itemView, oss.str().c_str());
if (holder)
{
holder->setVisible(false);
}
else
{
break;
}
}
}
void PurchaseView::activate(bool val)
{
Widget * itemView = Helper::seekWidgetByName(_layout, "noads");
for (int index = 1;;index++)
{
std::ostringstream oss;
oss<<"holder"<<index;
Widget * holder = Helper::seekWidgetByName(itemView, oss.str().c_str());
if (holder)
{
oss<<"addbtn";
Button * addBtn = static_cast<Button*>(Helper::seekWidgetByName(holder, oss.str()));
addBtn->setEnabled(val);
addBtn->setBright(val);
{
Button * btn = static_cast<Button*>(Helper::seekWidgetByName(holder, oss.str()));
btn->addTouchEventListener(CC_CALLBACK_2(PurchaseView::touchCallback, this));
}
}
else
{
break;
}
}
{
Button * btn = static_cast<Button*>(Helper::seekWidgetByName(_layout, "closebtn"));
btn->setEnabled(val);
btn->setBright(val);
}
}
void PurchaseView::enable(bool val)
{
Widget * itemView = Helper::seekWidgetByName(_layout, "noads");
for (int index = 1;;index++)
{
std::ostringstream oss;
oss<<"holder"<<index;
Widget * holder = Helper::seekWidgetByName(itemView, oss.str().c_str());
if (holder)
{
holder->setVisible(val);
oss<<"addbtn";
Button * addBtn = static_cast<Button*>(Helper::seekWidgetByName(holder, oss.str()));
addBtn->setEnabled(val);
addBtn->setBright(val);
{
Button * btn = static_cast<Button*>(Helper::seekWidgetByName(holder, oss.str()));
btn->addTouchEventListener(CC_CALLBACK_2(PurchaseView::touchCallback, this));
}
}
else
{
break;
}
}
{
Button * btn = static_cast<Button*>(Helper::seekWidgetByName(_layout, "closebtn"));
btn->setEnabled(val);
btn->setBright(val);
}
}
void PurchaseView::touchCallback(cocos2d::Ref *pSender, Widget::TouchEventType event)
{
if (event == Widget::TouchEventType::ENDED)
{
Widget * selectedNode = dynamic_cast<Widget*>(pSender);
ClickEvent clickEvent(ClickEvent::CLICK);
clickEvent.setUserData(this);
clickEvent.tag = selectedNode->getTag();
clickEvent.isActive = (selectedNode->isBright());
clickEvent.nodeName = selectedNode->getName();
_eventDispatcher->dispatchEvent(&clickEvent);
}
}
void PurchaseView::updateHoldersView()
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
std::vector<ProductDetails*> list = InAppHandler::getInstance()->_productList;
Widget * itemView = Helper::seekWidgetByName(_layout, "noads");
int index = 1;
for (auto iter = list.begin(); iter != list.end(); iter++)
{
std::ostringstream oss; oss<<"holder"<<index;
Widget * holder = Helper::seekWidgetByName(itemView, oss.str().c_str());
if (holder)
{
{
ui::TextBMFont * desc = static_cast<ui::TextBMFont*>(Helper::seekWidgetByName(holder, "description"));
desc->setString((*iter)->desc);
}
{
ui::TextBMFont * cost = static_cast<ui::TextBMFont*>(Helper::seekWidgetByName(holder, "cost"));
std::ostringstream ossCost;
ossCost<<(*iter)->cost;
cost->setString(ossCost.str());
}
}
else
{
break;
}
index++;
}
#endif
}
void PurchaseView::onProductRequestSuccess()
{
updateHoldersView();
}
void PurchaseView::onProductRequestFailed()
{
}
void PurchaseView::onPurchaseSuccess(std::string identifier)
{
//TODO
//update save data
GameSaveData::getInstance()->unlockedAds = 1;
GameSaveData::getInstance()->saveData();
runAction(_clearCallFunc);
}
void PurchaseView::onPurchaseFailed()
{
activate(true);
GenericPopup * popup = GenericPopup::create();
popup->construct(std::string("ui/genericpopup.csb"), std::string("Purchase Failed!!!"), NULL, NULL);
getParent()->addChild(popup);
} | [
"sillyatom@Sillyatoms-iMac.local"
] | sillyatom@Sillyatoms-iMac.local |
2ac7be43889df9973f9fff6231741518fcc08b74 | ed0c22c7289ea36083d87d5538c72de004ebbd00 | /dyninst/cuda/Fatbin.cpp | 5b58a867e57d54d21b499060f857554498969cb3 | [] | no_license | HPCToolkit/hpctoolkit-tests | 42fa24875ae12226d392e9ea4e3013ec5b5ff3b5 | b290c0425bef02041a03d624d84e38f25f4c54e9 | refs/heads/master | 2022-07-18T11:45:35.701061 | 2022-07-07T18:41:54 | 2022-07-07T18:41:54 | 82,117,502 | 2 | 3 | null | 2022-07-07T17:44:39 | 2017-02-15T23:30:09 | C | UTF-8 | C++ | false | false | 7,825 | cpp | // * BeginRiceCopyright *****************************************************
//
// $HeadURL$
// $Id$
//
// --------------------------------------------------------------------------
// Part of HPCToolkit (hpctoolkit.org)
//
// Information about sources of support for research and development of
// HPCToolkit is at 'hpctoolkit.org' and in 'README.Acknowledgments'.
// --------------------------------------------------------------------------
//
// Copyright ((c)) 2002-2018, Rice University
// 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 Rice University (RICE) 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 RICE 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 RICE 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.
//
// ******************************************************* EndRiceCopyright *
//***************************************************************************
//
// File: Fatbin.cpp
//
// Purpose:
// unpack cuda fatbin
//
// Description:
//
//***************************************************************************
//******************************************************************************
// system includes
//******************************************************************************
#include <stdio.h>
#include <string.h>
//******************************************************************************
// local includes
//******************************************************************************
// #include <lib/support/StrUtil.hpp>
// #include <include/hpctoolkit-config.h>
#include <Elf_X.h>
#include "InputFile.hpp"
#include "ElfHelper.hpp"
//******************************************************************************
// macros
//******************************************************************************
#define CUDA_FATBIN_SECTION ".nvFatBinSegment"
#define CUDA_FATBIN_DATASECTION ".nv_fatbin"
#define CUDA_FATBIN_MAGIC 0x466243b1
#define CUDA_FATBIN_VERSION 1
//******************************************************************************
// type definitions
//******************************************************************************
typedef struct NvidiaFatBinHeader_s {
int32_t magicNumber;
int32_t version;
const unsigned long long* data;
void* unused;
} NvidiaFatBinHeader_t;
typedef std::vector<NvidiaFatBinHeader_t *> FatbinSectionVector;
//******************************************************************************
// local variables
//******************************************************************************
static FatbinSectionVector fatbinSectionVector;
//******************************************************************************
// private functions
//******************************************************************************
#ifdef DYNINST_USE_CUDA
static bool
isCubin(Elf *elf)
{
// open the header of the Elf object
GElf_Ehdr ehdr_v;
GElf_Ehdr *obj_ehdr = gelf_getehdr(elf, &ehdr_v);
// check the header of the Elf object to see if it is a Cubin
return (obj_ehdr && (obj_ehdr->e_machine == EM_CUDA));
}
static bool
recordIfNvFatbin
(
char *obj_ptr,
Elf *elf,
GElf_Ehdr *ehdr,
Elf_Scn *scn,
GElf_Shdr *shdr
)
{
#if 0
bool isFatbin = strcmp(elf_strptr(elf, ehdr->e_shstrndx, shdr->sh_name),
CUDA_FATBIN_DATASECTION) == 0;
if (isFatbin) {
NvidiaFatBinHeader_t *fatbin =
(NvidiaFatBinHeader_t *) elfSectionGetData(obj_ptr, shdr);
std::string empty;
ElfFile *elfFile = new ElfFile;
if (elfFile->open((char *) fatbin->data, (size_t) shdr->sh_size, empty)) {
fatbinSectionVector.push_back(fatbin);
}
}
return isFatbin;
#else
return false;
#endif
}
static bool
recordIfCubin
(
ElfFile *loadModule,
char *obj_ptr,
Elf *elf,
GElf_Ehdr *ehdr,
Elf_Scn *scn,
GElf_Shdr *shdr,
ElfFileVector *elfFileVector
)
{
char *sectionData = elfSectionGetData(obj_ptr, shdr);
char buf[20];
sprintf(buf, "0x%lx", shdr->sh_addr);
std::string filename = loadModule->getFileName() + "@" + buf;
ElfFile *elfFile = new ElfFile;
// check if section represents an Elf object
if (elfFile->open(sectionData, shdr->sh_size, filename)) {
// if the Elf file is a CUBIN, add it to the vector of load
// modules to be analyzed
if (isCubin(elfFile->getElf())) {
elfFileVector->push_back(elfFile);
return true;
} else {
delete elfFile;
}
}
return false;
}
#endif
// cubin text segments all start at offset 0 and are thus overlapping.
// relocate each text segment so that it begins at its offset in the
// cubin. when this function returns, text segments no longer overlap.
static bool
findCubinSections
(
ElfFile *elfFile,
char *obj_ptr,
Elf *elf,
ElfSectionVector *sections,
ElfFileVector *elfFileVector
)
{
int count = 0;
#ifdef DYNINST_USE_CUDA
GElf_Ehdr ehdr_v;
GElf_Ehdr *ehdr = gelf_getehdr(elf, &ehdr_v);
if (ehdr) {
for (auto si = sections->begin(); si != sections->end(); si++) {
Elf_Scn *scn = *si;
GElf_Shdr shdr_v;
GElf_Shdr *shdr = gelf_getshdr(scn, &shdr_v);
if (!shdr) continue;
if (recordIfNvFatbin(obj_ptr, elf, ehdr, scn, shdr)) {
count++;
} else if (recordIfCubin(elfFile, obj_ptr, elf, ehdr, scn,
shdr, elfFileVector)) {
count++;
}
}
}
#endif
return count > 0;
}
//******************************************************************************
// interface functions
//******************************************************************************
bool
findCubins
(
ElfFile *elfFile,
ElfFileVector *elfFileVector
)
{
bool success = false;
Elf *elf = elfFile->getElf();
ElfSectionVector *sections = elfGetSectionVector(elf);
if (sections) {
success = findCubinSections(elfFile, elfFile->getMemory(), elf,
sections, elfFileVector);
}
return success;
}
//******************************************************************************
// debugging support
//******************************************************************************
void
writeElfFile
(
ElfFile *elfFile,
const char *suffix
)
{
std::string filename = elfFile->getFileName() + suffix;
FILE *f = fopen(filename.c_str(), "w");
fwrite(elfFile->getMemory(), elfFile->getLength(), 1, f);
fclose(f);
}
#ifdef DYNINST_USE_CUDA
void
writeCubins(
ElfFileVector *elfFileVector
)
{
for(unsigned int i = 0; i < elfFileVector->size(); i++) {
ElfFile *elfFile = (*elfFileVector)[i];
if (isCubin(elfFile->getElf())) {
writeElfFile(elfFile, ".cubin");
}
}
}
#endif
| [
"krentel@rice.edu"
] | krentel@rice.edu |
af62e9efb063e6f0ab518ff5e6ced1560690f504 | 9cefee022eec34a27e4ad16e47bb615993ac99e6 | /Labview Software/Hardware Mfg/AlazarTech SDK/7.2.3/Samples_C/ATS9462/DualPort/NPT_Volts/ATS9462_NPT_Volts.cpp | 98cd88f5c1c33c5fa9406673864ba5bb47167839 | [] | no_license | BUNPC/SerialSectOCT | 8fb497012bbd98751fbf752fb8fa08d6ddc86ec5 | b3ddbe87595fc246dc3959cc0c81b453c27b0781 | refs/heads/master | 2023-08-17T23:51:09.781058 | 2023-08-05T15:28:08 | 2023-08-05T15:28:32 | 133,862,311 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 24,110 | cpp | //-------------------------------------------------------------------------------------------------
//
// Copyright (c) 2008-2016 AlazarTech, Inc.
//
// AlazarTech, Inc. licenses this software under specific terms and conditions. Use of any of the
// software or derivatives thereof in any product without an AlazarTech digitizer board is strictly
// prohibited.
//
// AlazarTech, Inc. provides this software AS IS, WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED,
// INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR
// PURPOSE. AlazarTech makes no guarantee or representations regarding the use of, or the results of
// the use of, the software and documentation in terms of correctness, accuracy, reliability,
// currentness, or otherwise; and you rely on the software, documentation and results solely at your
// own risk.
//
// IN NO EVENT SHALL ALAZARTECH BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS, LOSS OF PROFITS,
// INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OF ANY KIND. IN NO EVENT SHALL
// ALAZARTECH'S TOTAL LIABILITY EXCEED THE SUM PAID TO ALAZARTECH FOR THE PRODUCT LICENSED
// HEREUNDER.
//
//-------------------------------------------------------------------------------------------------
// AcqToDisk.cpp :
//
// This program demonstrates how to configure a ATS9462 to make a volts
// NPT acquisition.
//
#include <stdio.h>
#include <string.h>
#include "AlazarError.h"
#include "AlazarApi.h"
#include "AlazarCmd.h"
#ifdef _WIN32
#include <conio.h>
#else // ifndef _WIN32
#include <errno.h>
#include <math.h>
#include <signal.h>
#include <stdint.h>
#include <stdlib.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>
#define TRUE 1
#define FALSE 0
#define _snprintf snprintf
inline U32 GetTickCount(void);
inline void Sleep(U32 dwTime_ms);
inline int _kbhit (void);
inline int GetLastError();
#endif // ifndef _WIN32
// TODO: Select the number of DMA buffers to allocate.
#define BUFFER_COUNT 4
// Globals variables
U16 *BufferArray[BUFFER_COUNT] = { NULL };
double samplesPerSec = 0.0;
U32 InputRangeIds[2] = { 0 };
// Forward declarations
BOOL ConfigureBoard(HANDLE boardHandle);
BOOL AcquireData(HANDLE boardHandle);
double InputRangeIdToVolts(U32 inputRangeId);
//-------------------------------------------------------------------------------------------------
//
// Function : main
//
// Description : Program entry point
//
//-------------------------------------------------------------------------------------------------
int main(int argc, char *argv[])
{
// TODO: Select a board
U32 systemId = 1;
U32 boardId = 1;
// Get a handle to the board
HANDLE boardHandle = AlazarGetBoardBySystemID(systemId, boardId);
if (boardHandle == NULL)
{
printf("Error: Unable to open board system Id %u board Id %u\n", systemId, boardId);
return 1;
}
// Configure the board's sample rate, input, and trigger settings
if (!ConfigureBoard(boardHandle))
{
printf("Error: Configure board failed\n");
return 1;
}
// Make an acquisition, optionally saving sample data to a file
if (!AcquireData(boardHandle))
{
printf("Error: Acquisition failed\n");
return 1;
}
return 0;
}
//-------------------------------------------------------------------------------------------------
//
// Function : ConfigureBoard
//
// Description : Configure sample rate, input, and trigger settings
//
//-------------------------------------------------------------------------------------------------
BOOL ConfigureBoard(HANDLE boardHandle)
{
RETURN_CODE retCode;
// TODO: Specify the sample rate (see sample rate id below)
samplesPerSec = 180000000.0;
// TODO: Select clock parameters as required to generate this sample rate.
//
// For example: if samplesPerSec is 100.e6 (100 MS/s), then:
// - select clock source INTERNAL_CLOCK and sample rate SAMPLE_RATE_100MSPS
// - select clock source FAST_EXTERNAL_CLOCK, sample rate SAMPLE_RATE_USER_DEF, and connect a
// 100 MHz signal to the EXT CLK BNC connector.
retCode = AlazarSetCaptureClock(boardHandle,
INTERNAL_CLOCK,
SAMPLE_RATE_180MSPS,
CLOCK_EDGE_RISING,
0);
if (retCode != ApiSuccess)
{
printf("Error: AlazarSetCaptureClock failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
InputRangeIds['A' - 'A'] = INPUT_RANGE_PM_400_MV;
// TODO: Select channel A input parameters as required
retCode =
AlazarInputControlEx(boardHandle,
CHANNEL_A,
DC_COUPLING,
InputRangeIds['A' - 'A'],
IMPEDANCE_50_OHM);
if (retCode != ApiSuccess)
{
printf("Error: AlazarInputControlEx failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
// TODO: Select channel A bandwidth limit as required
retCode = AlazarSetBWLimit(boardHandle,
CHANNEL_A,
0);
if (retCode != ApiSuccess)
{
printf("Error: AlazarSetBWLimit failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
InputRangeIds['B' - 'A'] = INPUT_RANGE_PM_400_MV;
// TODO: Select channel B input parameters as required
retCode =
AlazarInputControlEx(boardHandle,
CHANNEL_B,
DC_COUPLING,
InputRangeIds['B' - 'A'],
IMPEDANCE_50_OHM);
if (retCode != ApiSuccess)
{
printf("Error: AlazarInputControlEx failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
// TODO: Select channel B bandwidth limit as required
retCode = AlazarSetBWLimit(boardHandle,
CHANNEL_B,
0);
if (retCode != ApiSuccess)
{
printf("Error: AlazarSetBWLimit failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
// TODO: Select trigger inputs and levels as required
retCode = AlazarSetTriggerOperation(boardHandle,
TRIG_ENGINE_OP_J,
TRIG_ENGINE_J,
TRIG_CHAN_A,
TRIGGER_SLOPE_POSITIVE,
150,
TRIG_ENGINE_K,
TRIG_DISABLE,
TRIGGER_SLOPE_POSITIVE,
128);
if (retCode != ApiSuccess)
{
printf("Error: AlazarSetTriggerOperation failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
// TODO: Select external trigger parameters as required
retCode = AlazarSetExternalTrigger(boardHandle,
DC_COUPLING,
ETR_5V);
// TODO: Set trigger delay as required.
double triggerDelay_sec = 0;
U32 triggerDelay_samples = (U32)(triggerDelay_sec * samplesPerSec + 0.5);
retCode = AlazarSetTriggerDelay(boardHandle, triggerDelay_samples);
if (retCode != ApiSuccess)
{
printf("Error: AlazarSetTriggerDelay failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
// TODO: Set trigger timeout as required.
// NOTE:
// The board will wait for a for this amount of time for a trigger event. If a trigger event
// does not arrive, then
// the board will automatically trigger. Set the trigger timeout value to 0 to force the board
// to wait forever for a
// trigger event.
//
// IMPORTANT:
// The trigger timeout value should be set to zero after appropriate trigger parameters have
// been determined,
// otherwise the board may trigger if the timeout interval expires before a hardware trigger
// event arrives.
double triggerTimeout_sec = 0;
U32 triggerTimeout_clocks = (U32)(triggerTimeout_sec / 10.e-6 + 0.5);
retCode = AlazarSetTriggerTimeOut(boardHandle, triggerTimeout_clocks);
if (retCode != ApiSuccess)
{
printf("Error: AlazarSetTriggerTimeOut failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
// TODO: Configure AUX I/O connector as required
retCode = AlazarConfigureAuxIO(boardHandle, AUX_OUT_TRIGGER, 0);
if (retCode != ApiSuccess)
{
printf("Error: AlazarConfigureAuxIO failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
return TRUE;
}
//-------------------------------------------------------------------------------------------------
//
// Function : AcquireData
//
// Description : Perform an acquisition, optionally saving data to file.
//
//-------------------------------------------------------------------------------------------------
BOOL AcquireData(HANDLE boardHandle)
{
// There are no pre-trigger samples in NPT mode
U32 preTriggerSamples = 0;
// TODO: Select the number of post-trigger samples per record
U32 postTriggerSamples = 2048;
// TODO: Specify the number of records per DMA buffer
U32 recordsPerBuffer = 10;
// TODO: Specify the total number of buffers to capture
U32 buffersPerAcquisition = 1;
// TODO: Select which channels to capture (A, B, or both)
U32 channelMask = CHANNEL_A | CHANNEL_B;
// TODO: Select if you wish to save the sample data to a file
BOOL saveData = false;
// Calculate the number of enabled channels from the channel mask
int channelCount = 0;
int channelsPerBoard = 2;
for (int channel = 0; channel < channelsPerBoard; channel++)
{
U32 channelId = 1U << channel;
if (channelMask & channelId)
channelCount++;
}
// Get the sample size in bits, and the on-board memory size in samples per channel
U8 bitsPerSample;
U32 maxSamplesPerChannel;
RETURN_CODE retCode = AlazarGetChannelInfo(boardHandle, &maxSamplesPerChannel, &bitsPerSample);
if (retCode != ApiSuccess)
{
printf("Error: AlazarGetChannelInfo failed -- %s\n", AlazarErrorToText(retCode));
return FALSE;
}
// Calculate the size of each DMA buffer in bytes
float bytesPerSample = (float) ((bitsPerSample + 7) / 8);
U32 samplesPerRecord = preTriggerSamples + postTriggerSamples;
U32 bytesPerRecord = (U32)(bytesPerSample * samplesPerRecord +
0.5); // 0.5 compensates for double to integer conversion
U32 bytesPerBuffer = bytesPerRecord * recordsPerBuffer * channelCount;
// Create a data file if required
FILE *fpData = NULL;
if (saveData)
{
fpData = fopen("data.bin", "wb");
if (fpData == NULL)
{
printf("Error: Unable to create data file -- %u\n", GetLastError());
return FALSE;
}
}
// Allocate memory for DMA buffers
BOOL success = TRUE;
U32 bufferIndex;
for (bufferIndex = 0; (bufferIndex < BUFFER_COUNT) && success; bufferIndex++)
{
// Allocate page aligned memory
BufferArray[bufferIndex] =
(U16 *)AlazarAllocBufferU16(boardHandle, bytesPerBuffer);
if (BufferArray[bufferIndex] == NULL)
{
printf("Error: Alloc %u bytes failed\n", bytesPerBuffer);
success = FALSE;
}
}
// Configure the record size
if (success)
{
retCode = AlazarSetRecordSize(boardHandle, preTriggerSamples, postTriggerSamples);
if (retCode != ApiSuccess)
{
printf("Error: AlazarSetRecordSize failed -- %s\n", AlazarErrorToText(retCode));
success = FALSE;
}
}
// Configure the board to make an NPT AutoDMA acquisition
if (success)
{
U32 recordsPerAcquisition = recordsPerBuffer * buffersPerAcquisition;
U32 admaFlags = ADMA_EXTERNAL_STARTCAPTURE | ADMA_NPT;
retCode = AlazarBeforeAsyncRead(boardHandle, channelMask, -(long)preTriggerSamples,
samplesPerRecord, recordsPerBuffer, recordsPerAcquisition,
admaFlags);
if (retCode != ApiSuccess)
{
printf("Error: AlazarBeforeAsyncRead failed -- %s\n", AlazarErrorToText(retCode));
success = FALSE;
}
}
// Add the buffers to a list of buffers available to be filled by the board
for (bufferIndex = 0; (bufferIndex < BUFFER_COUNT) && success; bufferIndex++)
{
U16 *pBuffer = BufferArray[bufferIndex];
retCode = AlazarPostAsyncBuffer(boardHandle, pBuffer, bytesPerBuffer);
if (retCode != ApiSuccess)
{
printf("Error: AlazarPostAsyncBuffer %u failed -- %s\n", bufferIndex,
AlazarErrorToText(retCode));
success = FALSE;
}
}
// Arm the board system to wait for a trigger event to begin the acquisition
if (success)
{
retCode = AlazarStartCapture(boardHandle);
if (retCode != ApiSuccess)
{
printf("Error: AlazarStartCapture failed -- %s\n", AlazarErrorToText(retCode));
success = FALSE;
}
}
// Wait for each buffer to be filled, process the buffer, and re-post it to
// the board.
if (success)
{
printf("Capturing %d buffers ... press any key to abort\n", buffersPerAcquisition);
U32 startTickCount = GetTickCount();
U32 buffersCompleted = 0;
INT64 bytesTransferred = 0;
while (buffersCompleted < buffersPerAcquisition)
{
// TODO: Set a buffer timeout that is longer than the time
// required to capture all the records in one buffer.
U32 timeout_ms = 5000;
// Wait for the buffer at the head of the list of available buffers
// to be filled by the board.
bufferIndex = buffersCompleted % BUFFER_COUNT;
U16 *pBuffer = BufferArray[bufferIndex];
retCode = AlazarWaitAsyncBufferComplete(boardHandle, pBuffer, timeout_ms);
if (retCode != ApiSuccess)
{
printf("Error: AlazarWaitAsyncBufferComplete failed -- %s\n",
AlazarErrorToText(retCode));
success = FALSE;
}
if (success)
{
// The buffer is full and has been removed from the list
// of buffers available for the board
buffersCompleted++;
bytesTransferred += bytesPerBuffer;
// TODO: Process sample data in this buffer.
// NOTE:
//
// While you are processing this buffer, the board is already filling the next
// available buffer(s).
//
// You MUST finish processing this buffer and post it back to the board before
// the board fills all of its available DMA buffers and on-board memory.
//
// Records are arranged in the buffer as follows: R0A, R0B, ..., R1A, R1B, ...
// with RXY the record number X of channel Y.
//
// Sample codes are unsigned by default. As a result:
// - a sample code of 0x0000 represents a negative full scale input signal.
// - a sample code of 0x8000 represents a ~0V signal.
// - a sample code of 0xFFFF represents a positive full scale input signal.
void *pvBuffer = (void*) pBuffer;
for (int channel = 0; (channel < channelCount) && (success == TRUE); channel++)
{
for (U32 record = 0; (record < recordsPerBuffer) && (success == TRUE);
record++)
{
if (saveData)
{
// Get name of current channel
char tempLetter = 'A' - 1;
int tempCount = 0;
while (tempCount <= channel)
{
tempLetter += 1;
U32 tempId = CHANNEL_A << (tempLetter - 'A');
if (channelMask & tempId)
{
tempCount += 1;
}
}
char channelLetter = tempLetter;
// Get input range from ID
double inputRange_volts =
InputRangeIdToVolts(InputRangeIds[channelLetter - 'A']);
// AlazarTech boards are calibrated as follows
double codeZero = (1 << (bitsPerSample - 1)) - 0.5;
double codeRange = (1 << (bitsPerSample - 1)) - 0.5;
// Convert sample values to volts and write to file
for (U32 sample = 0;
(sample < samplesPerRecord) && (success == TRUE); sample++)
{
// Convert code to volts
double volts = 0.;
int sampleBitShift =
(int) (8 * bytesPerSample - bitsPerSample + 0.5);
U16 sampleValue = ((U16*)pvBuffer)[channel * recordsPerBuffer * samplesPerRecord
+ record * samplesPerRecord
+ sample];
U16 sampleCode = sampleValue >> sampleBitShift;
volts = inputRange_volts *
((double)(sampleCode - codeZero) / codeRange);
// write value in volts to file
size_t samplesWritten = fwrite(&volts, sizeof(double), 1, fpData);
if (samplesWritten != 1)
{
printf("Error: Write sample failed -- %u\n",
GetLastError());
success = FALSE;
}
}
}
}
}
}
// Add the buffer to the end of the list of available buffers.
if (success)
{
retCode = AlazarPostAsyncBuffer(boardHandle, pBuffer, bytesPerBuffer);
if (retCode != ApiSuccess)
{
printf("Error: AlazarPostAsyncBuffer failed -- %s\n",
AlazarErrorToText(retCode));
success = FALSE;
}
}
// If the acquisition failed, exit the acquisition loop
if (!success)
break;
// If a key was pressed, exit the acquisition loop
if (_kbhit())
{
printf("Aborted...\n");
break;
}
// Display progress
printf("Completed %u buffers\r", buffersCompleted);
}
// Display results
double transferTime_sec = (GetTickCount() - startTickCount) / 1000.;
printf("Capture completed in %.2lf sec\n", transferTime_sec);
double buffersPerSec;
double bytesPerSec;
double recordsPerSec;
U32 recordsTransferred = recordsPerBuffer * buffersCompleted;
if (transferTime_sec > 0.)
{
buffersPerSec = buffersCompleted / transferTime_sec;
bytesPerSec = bytesTransferred / transferTime_sec;
recordsPerSec = recordsTransferred / transferTime_sec;
}
else
{
buffersPerSec = 0.;
bytesPerSec = 0.;
recordsPerSec = 0.;
}
printf("Captured %u buffers (%.4g buffers per sec)\n", buffersCompleted, buffersPerSec);
printf("Captured %u records (%.4g records per sec)\n", recordsTransferred, recordsPerSec);
printf("Transferred %I64d bytes (%.4g bytes per sec)\n", bytesTransferred, bytesPerSec);
}
// Abort the acquisition
retCode = AlazarAbortAsyncRead(boardHandle);
if (retCode != ApiSuccess)
{
printf("Error: AlazarAbortAsyncRead failed -- %s\n", AlazarErrorToText(retCode));
success = FALSE;
}
// Free all memory allocated
for (bufferIndex = 0; bufferIndex < BUFFER_COUNT; bufferIndex++)
{
if (BufferArray[bufferIndex] != NULL)
{
AlazarFreeBufferU16(boardHandle, BufferArray[bufferIndex]);
}
}
// Close the data file
if (fpData != NULL)
fclose(fpData);
return success;
}
//-------------------------------------------------------------------------------------------------
//
// Function : InputRangeIdToVolts
//
// Description : Convert input range identifier to volts
//
//-------------------------------------------------------------------------------------------------
double InputRangeIdToVolts(U32 inputRangeId)
{
double inputRange_volts;
switch (inputRangeId)
{
case INPUT_RANGE_PM_20_MV:
inputRange_volts = 20.e-3;
break;
case INPUT_RANGE_PM_40_MV:
inputRange_volts = 40.e-3;
break;
case INPUT_RANGE_PM_50_MV:
inputRange_volts = 50.e-3;
break;
case INPUT_RANGE_PM_80_MV:
inputRange_volts = 80.e-3;
break;
case INPUT_RANGE_PM_100_MV:
inputRange_volts = 100.e-3;
break;
case INPUT_RANGE_PM_200_MV:
inputRange_volts = 200.e-3;
break;
case INPUT_RANGE_PM_400_MV:
inputRange_volts = 400.e-3;
break;
case INPUT_RANGE_PM_500_MV:
inputRange_volts = 500.e-3;
break;
case INPUT_RANGE_PM_800_MV:
inputRange_volts = 800.e-3;
break;
case INPUT_RANGE_PM_1_V:
inputRange_volts = 1.;
break;
case INPUT_RANGE_PM_2_V:
inputRange_volts = 2.;
break;
case INPUT_RANGE_PM_4_V:
inputRange_volts = 4.;
break;
case INPUT_RANGE_PM_5_V:
inputRange_volts = 5.;
break;
case INPUT_RANGE_PM_8_V:
inputRange_volts = 8.;
break;
case INPUT_RANGE_PM_10_V:
inputRange_volts = 10.;
break;
case INPUT_RANGE_PM_20_V:
inputRange_volts = 20.;
break;
case INPUT_RANGE_PM_40_V:
inputRange_volts = 40.;
break;
case INPUT_RANGE_PM_16_V:
inputRange_volts = 16.;
break;
case INPUT_RANGE_HIFI:
inputRange_volts = 0.525;
break;
default:
printf("Error: Invalid input range %u\n", inputRangeId);
inputRange_volts = -1.;
break;
}
return inputRange_volts;
}
#ifndef WIN32
inline U32 GetTickCount(void)
{
struct timeval tv;
if (gettimeofday(&tv, NULL) != 0)
return 0;
return (tv.tv_sec * 1000) + (tv.tv_usec / 1000);
}
inline void Sleep(U32 dwTime_ms)
{
usleep(dwTime_ms * 1000);
}
inline int _kbhit (void)
{
struct timeval tv;
fd_set rdfs;
tv.tv_sec = 0;
tv.tv_usec = 0;
FD_ZERO(&rdfs);
FD_SET (STDIN_FILENO, &rdfs);
select(STDIN_FILENO+1, &rdfs, NULL, NULL, &tv);
return FD_ISSET(STDIN_FILENO, &rdfs);
}
inline int GetLastError()
{
return errno;
}
#endif | [
"Shuaibin@bu.edu"
] | Shuaibin@bu.edu |
38d00a9107cf5414f6592e7d734b3bf2f564f3cf | 9d74b8a8d42a217669e27534132787b522829e03 | /FastVideoPro/FastVideov1/VideoDownloader/loginedserverprotect.h | fd072aa9194169627e1cd790ffdec5030f6f1522 | [] | no_license | TommyZhang936/TChallaOld | c8450880135d1ff2392236e288c515ccb799216e | 6d980b31f40fc7e6b789b862e2e7f408296dadfc | refs/heads/master | 2020-07-01T08:15:02.259552 | 2016-11-10T01:32:59 | 2016-11-10T01:32:59 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,053 | h | #ifndef LOGINEDSERVERPROTECT_H
#define LOGINEDSERVERPROTECT_H
#include <QString>
#include <map>
#include <mutex>
#include <memory>
class IVideoServer;
class videoserver;
class videoserverFactory;
class LoginServerInfo;
class LoginedServerProtect
{
static std::recursive_mutex sMutexEvent;
static std::map<QString, std::shared_ptr<LoginedServerProtect> > sLoginedServers;
public:
LoginedServerProtect();
static bool isLogined(videoserver* p);
static bool set(videoserver* p);
static bool add(videoserver* p);
static void release(videoserver* p);
//用于删除厂商时,清除登录记录
static void remove(videoserver* p);
IVideoServer* getServer()
{
return mpIServer;
}
videoserverFactory* getFactory()
{
return mpFactory;
}
protected:
static QString getServerTag(std::shared_ptr<LoginServerInfo> p);
videoserver* mpvsServer;
videoserverFactory* mpFactory;
IVideoServer* mpIServer;
std::map<qint32, std::string> m_channels;
};
#endif // LOGINEDSERVERPROTECT_H
| [
"janyboo@gmail.com"
] | janyboo@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.