blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ce40f300580f9748017622266a7f0fdb66a53d94
|
d6ab38714f7a5f0dc6d7446ec20626f8f539406a
|
/backend/collecting/collectedFiles/C++/edited/dolphin-emudolphinblob4c004b6dc978d7585bf0765e22351ef1edd39a3aExternalsglslangglslangMachineIndependentparseVersions.h
|
da18bc46d7ccbe2f94713d19da3384634184f8c1
|
[
"BSL-1.0"
] |
permissive
|
haditabatabaei/webproject
|
8db7178affaca835b5d66daa7d47c28443b53c3d
|
86b3f253e894f4368a517711bbfbe257be0259fd
|
refs/heads/master
| 2020-04-10T09:26:25.819406
| 2018-12-08T12:21:52
| 2018-12-08T12:21:52
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,813
|
h
|
dolphin-emudolphinblob4c004b6dc978d7585bf0765e22351ef1edd39a3aExternalsglslangglslangMachineIndependentparseVersions.h
|
#ifndef _PARSE_VERSIONS_INCLUDED_
#define _PARSE_VERSIONS_INCLUDED_
#include "../Public/ShaderLang.h"
#include "../Include/InfoSink.h"
#include "Scan.h"
#include <map>
namespace glslang {
class TParseVersions {
public:
TParseVersions(TIntermediate& interm, int version, EProfile profile,
const SpvVersion& spvVersion, EShLanguage language, TInfoSink& infoSink,
bool forwardCompatible, EShMessages messages)
: infoSink(infoSink), version(version), profile(profile), language(language),
spvVersion(spvVersion), forwardCompatible(forwardCompatible),
intermediate(interm), messages(messages), numErrors(0), currentScanner(0) { }
virtual ~TParseVersions() { }
virtual void initializeExtensionBehavior();
virtual void requireProfile(const TSourceLoc&, int queryProfiles, const char* featureDesc);
virtual void profileRequires(const TSourceLoc&, int queryProfiles, int minVersion, int numExtensions, const char* const extensions[], const char* featureDesc);
virtual void profileRequires(const TSourceLoc&, int queryProfiles, int minVersion, const char* const extension, const char* featureDesc);
virtual void requireStage(const TSourceLoc&, EShLanguageMask, const char* featureDesc);
virtual void requireStage(const TSourceLoc&, EShLanguage, const char* featureDesc);
virtual void checkDeprecated(const TSourceLoc&, int queryProfiles, int depVersion, const char* featureDesc);
virtual void requireNotRemoved(const TSourceLoc&, int queryProfiles, int removedVersion, const char* featureDesc);
virtual void requireExtensions(const TSourceLoc&, int numExtensions, const char* const extensions[], const char* featureDesc);
virtual void ppRequireExtensions(const TSourceLoc&, int numExtensions, const char* const extensions[], const char* featureDesc);
virtual TExtensionBehavior getExtensionBehavior(const char*);
virtual bool extensionTurnedOn(const char* const extension);
virtual bool extensionsTurnedOn(int numExtensions, const char* const extensions[]);
virtual void updateExtensionBehavior(int line, const char* const extension, const char* behavior);
virtual void fullIntegerCheck(const TSourceLoc&, const char* op);
virtual void doubleCheck(const TSourceLoc&, const char* op);
virtual void int64Check(const TSourceLoc&, const char* op, bool builtIn = false);
virtual void spvRemoved(const TSourceLoc&, const char* op);
virtual void vulkanRemoved(const TSourceLoc&, const char* op);
virtual void requireVulkan(const TSourceLoc&, const char* op);
virtual void requireSpv(const TSourceLoc&, const char* op);
virtual bool checkExtensionsRequested(const TSourceLoc&, int numExtensions, const char* const extensions[], const char* featureDesc);
virtual void updateExtensionBehavior(const char* const extension, TExtensionBehavior);
virtual void C_DECL error(const TSourceLoc&, const char* szReason, const char* szToken,
const char* szExtraInfoFormat, ...) = 0;
virtual void C_DECL warn(const TSourceLoc&, const char* szReason, const char* szToken,
const char* szExtraInfoFormat, ...) = 0;
virtual void C_DECL ppError(const TSourceLoc&, const char* szReason, const char* szToken,
const char* szExtraInfoFormat, ...) = 0;
virtual void C_DECL ppWarn(const TSourceLoc&, const char* szReason, const char* szToken,
const char* szExtraInfoFormat, ...) = 0;
void addError() { ++numErrors; }
int getNumErrors() const { return numErrors; }
void setScanner(TInputScanner* scanner) { currentScanner = scanner; }
TInputScanner* getScanner() const { return currentScanner; }
const TSourceLoc& getCurrentLoc() const { return currentScanner->getSourceLoc(); }
void setCurrentLine(int line) { currentScanner->setLine(line); }
void setCurrentColumn(int col) { currentScanner->setColumn(col); }
void setCurrentSourceName(const char* name) { currentScanner->setFile(name); }
void setCurrentString(int string) { currentScanner->setString(string); }
void getPreamble(std::string&);
bool relaxedErrors() const { return (messages & EShMsgRelaxedErrors) != 0; }
bool suppressWarnings() const { return (messages & EShMsgSuppressWarnings) != 0; }
TInfoSink& infoSink;
int version; EProfile profile; EShLanguage language; SpvVersion spvVersion;
bool forwardCompatible; TIntermediate& intermediate;
protected:
EShMessages messages; int numErrors; TInputScanner* currentScanner;
private:
TMap<TString, TExtensionBehavior> extensionBehavior; explicit TParseVersions(const TParseVersions&);
TParseVersions& operator=(const TParseVersions&);
};
}
#endif
|
2bef38a34332be70a3042da309707b69571495a3
|
d347554c4bc24b7e159551007f5683cac8fa97d0
|
/3rdparty/asn/asn1/BERDecoder.cxx
|
0490d0ec449d92c8f12c062ef7f177542c14e533
|
[] |
no_license
|
ansartnl/ALPHA
|
892065b1476ec9c35e834a3158592332cda4c5f5
|
138ddd981ed5bac882c29f28a065171e51d680cf
|
refs/heads/main
| 2022-12-27T16:15:28.721053
| 2020-10-16T08:58:41
| 2020-10-16T08:58:41
| 304,633,537
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,792
|
cxx
|
BERDecoder.cxx
|
/*
* BERDecoder.cxx
*
* Abstract Syntax Notation 1 Encoding Rules
*
* Copyright (c) 1993-1998 Equivalence Pty. Ltd.
*
* Copyright (c) 2001 Institute for Information Industry, Taiwan, Republic of China
* (http://www.iii.org.tw/iiia/ewelcome.htm)
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Portions are Copyright (C) 1993 Free Software Foundation, Inc.
* All Rights Reserved.
*
* Contributor(s): Huang-Ming Huang
*
* The code is adapted from asner.cxx of PWLib, but the dependancy on PWLib has
* been removed.
*
* $Log: BERDecoder.cxx,v $
* Revision 1.4 2002/07/02 04:45:13 mangelo
* Modify for VC.Net and GCC 3.1
*
* Revision 1.3 2001/10/05 19:09:27 mangelo
* Added Log
*
* 2001/07/16 Huang-Ming Huang
* Optional components of SEQUENCE is now created on demand.
*
* 2001/06/26 Huang-Ming Huang
* Version 2.1 Reimplemented to minimize the code size.
*
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <boost/cast.hpp>
#include "asn1.h"
namespace ASN1 {
extern unsigned CountBits(unsigned range);
bool CHOICE::setID(unsigned tagVal, unsigned tagClass) {
bool result = true;
unsigned tag = tagClass << 16 | tagVal;
if (info()->tags == NULL)
choiceID = tagVal;
else {
unsigned* tagInfo = std::lower_bound(info()->tags, info()->tags + info()->numChoices, tag);
choiceID = tagInfo - info()->tags;
result = (choiceID != (int)info()->numChoices) && (*tagInfo == tag);
}
if (result) {
if (!createSelection())
return false;
} else if (info()->tags[0] == 0) {
choiceID = 0;
createSelection();
CHOICE* obj = boost::polymorphic_downcast<CHOICE*>(choice.get());
if (obj->setID(tagVal, tagClass))
result = true;
if (!result)
choiceID = unknownSelection_;
}
return result;
}
inline bool BERDecoder::atEnd() {
return beginPosition >= endPosition;
}
inline unsigned char BERDecoder::decodeByte() {
assert(!atEnd());
return *beginPosition++;
}
bool BERDecoder::do_visit(Null& value) {
unsigned len;
if (!decodeHeader(value, len))
return false;
beginPosition += len;
return true;
}
bool BERDecoder::do_visit(BOOLEAN& value) {
unsigned len;
if (!decodeHeader(value, len))
return false;
while (len-- > 0) {
if (atEnd())
return false;
value = (decodeByte() != 0);
}
return true;
}
bool BERDecoder::do_visit(INTEGER& value) {
unsigned len;
if (!decodeHeader(value, len) || len == 0 || atEnd())
return false;
int accumulator = static_cast<signed char>(decodeByte()); // sign extended first byte
while (--len > 0) {
if (atEnd())
return false;
accumulator = (accumulator << 8) | decodeByte();
}
value = accumulator;
return true;
}
bool BERDecoder::do_visit(ENUMERATED& value) {
unsigned len;
if (!decodeHeader(value, len) || len == 0 || atEnd())
return false;
unsigned val = 0;
while (len-- > 0) {
if (atEnd())
return false;
val = (val << 8) | decodeByte();
}
value.setFromInt(val);
return true;
}
bool BERDecoder::do_visit(OBJECT_IDENTIFIER& value) {
unsigned len;
if (!decodeHeader(value, len))
return false;
beginPosition += len;
if (atEnd()) return false;
return value.decodeCommon(beginPosition - len, len);
}
bool BERDecoder::do_visit(BIT_STRING& value) {
unsigned len;
if (!decodeHeader(value, len) || len == 0 || atEnd())
return false;
value.totalBits = (len - 1) * 8 - decodeByte();
unsigned nBytes = (value.totalBits + 7) / 8;
value.bitData.resize(nBytes);
return decodeBlock(&*value.bitData.begin(), nBytes) == nBytes;
}
bool BERDecoder::do_visit(OCTET_STRING& value) {
unsigned len;
if (!decodeHeader(value, len))
return false;
value.resize(len);
return decodeBlock(&*value.begin(), len) == len;
}
bool BERDecoder::do_visit(AbstractString& value) {
unsigned len;
if (!decodeHeader(value, len))
return false;
value.resize(len);
return decodeBlock(&*value.begin(), len) == len;
}
bool BERDecoder::do_visit(BMPString& value) {
unsigned len;
if (!decodeHeader(value, len))
return false;
value.resize(len / 2);
if ((beginPosition + len) >= endPosition)
return false;
for (unsigned i = 0; i < len / 2; ++i)
value[i] = (decodeByte() << 8) | decodeByte();
return true;
}
bool BERDecoder::decodeChoicePreamle(CHOICE& value, memento_type& nextPosition) {
const char* savedPosition = beginPosition;
unsigned tag;
bool primitive;
unsigned entryLen;
if (!decodeHeader(tag, primitive, entryLen))
return false;
if (dontCheckTag || value.getTag() != 0) {
savedPosition = beginPosition;
if (!decodeHeader(tag, primitive, entryLen))
return false;
}
nextPosition = beginPosition + entryLen;
beginPosition = savedPosition;
if (value.setID(tag & 0xffff, tag >> 16)) {
if (value.getSelectionTag() != 0)
dontCheckTag = 1;
return true;
}
return false;
}
bool BERDecoder::do_visit(CHOICE& value) {
memento_type memento;
if (decodeChoicePreamle(value, memento)) {
if (!value.isUnknownSelection() &&
!value.getSelection()->accept(*this))
return false;
rollback(memento);
return true;
}
return false;
}
bool BERDecoder::do_visit(SEQUENCE_OF_Base& value) {
value.clear();
unsigned len;
if (!decodeHeader(value, len))
return false;
const char* endPos = beginPosition + len;
if (endPos > endPosition) return false;
SEQUENCE_OF_Base::iterator it = value.begin(), last = value.end();
while (beginPosition < endPos && it != last) {
if (!(*it)->accept(*this)) {
value.erase(it, last);
return false;
}
++it;
}
if (it != last)
value.erase(it, last);
while (beginPosition < endPos) {
std::unique_ptr<AbstractData> obj(value.createElement());
if (!obj->accept(*this))
return false;
value.push_back(obj.release());
}
beginPosition = endPos;
return true;
}
bool BERDecoder::do_visit(OpenData& value) {
const char* savedPosition = beginPosition;
unsigned tag;
bool primitive;
unsigned entryLen;
if (!decodeHeader(tag, primitive, entryLen))
return false;
if (value.getTag() == 0)
beginPosition = savedPosition;
if (!value.has_buf())
value.grab(new OpenBuf);
value.get_buf().resize(entryLen);
decodeBlock(&*value.get_buf().begin(), entryLen);
return true;
}
bool BERDecoder::do_revisit(OpenData& value) {
if (!value.has_buf() || !value.has_data())
return false;
BERDecoder decoder(&*value.get_buf().begin(), &*value.get_buf().end(), get_env());
return value.get_data().accept(decoder);
}
bool BERDecoder::do_visit(TypeConstrainedOpenData& value) {
assert(value.has_data());
const char* savedPosition = beginPosition;
unsigned tag;
bool primitive;
unsigned entryLen;
if (!decodeHeader(tag, primitive, entryLen))
return false;
if (value.getTag() == 0)
beginPosition = savedPosition;
return value.get_data().accept(*this);
}
bool BERDecoder::do_visit(GeneralizedTime& value) {
unsigned len;
if (!decodeHeader(value, len))
return false;
std::vector<char> block(len);
if (decodeBlock(&*block.begin(), len) == len) {
value.set(&*block.begin());
return true;
}
return false;
}
Visitor::VISIT_SEQ_RESULT BERDecoder::preVisitExtensionRoots(SEQUENCE& value) {
unsigned len;
if (!decodeHeader(value, len))
return FAIL;
endSEQUENCEPositions.push_back(beginPosition + len);
return !atEnd() ? CONTINUE : FAIL;
}
Visitor::VISIT_SEQ_RESULT BERDecoder::visitExtensionRoot(SEQUENCE& value, int index, int optional_id) {
if (atEnd()) {
if (optional_id == -1)
return FAIL;
else
return CONTINUE;
}
const char* savedPosition = beginPosition;
if ((endSEQUENCEPositions.back() == savedPosition && optional_id == -1) ||
(endSEQUENCEPositions.back() < savedPosition))
return FAIL;
unsigned tag;
bool primitive;
unsigned entryLen;
if (!decodeHeader(tag, primitive, entryLen))
return FAIL;
beginPosition = savedPosition;
unsigned fieldTag = value.getFieldTag(index);
if ((fieldTag == tag) || (fieldTag == 0)) {
if (optional_id != -1)
value.includeOptionalField(optional_id, index);
AbstractData* field = value.getField(index);
if (field) {
if (value.tagMode() != SEQUENCE::IMPLICIT_TAG)
dontCheckTag = 1;
if (field->accept(*this))
return CONTINUE;
if (optional_id != -1) {
value.removeOptionalField(optional_id);
if (fieldTag == 0)
return CONTINUE;
}
return FAIL;
}
return optional_id != -1 ? CONTINUE : FAIL;
}
return CONTINUE;
}
Visitor::VISIT_SEQ_RESULT BERDecoder::visitKnownExtension(SEQUENCE& value, int index, int optional_id) {
return visitExtensionRoot(value, index, optional_id);
}
bool BERDecoder::visitUnknownExtensions(SEQUENCE&) {
beginPosition = endSEQUENCEPositions.back();
endSEQUENCEPositions.pop_back();
return true;
}
bool BERDecoder::decodeHeader(unsigned& tag,
bool& primitive,
unsigned& len) {
unsigned tagVal, tagClass;
unsigned char ident = decodeByte();
tagClass = ident & 0xC0;
primitive = (ident & 0x20) == 0;
tagVal = ident & 31;
if (tagVal == 31) {
unsigned char b;
tagVal = 0;
do {
if (atEnd())
return false;
b = decodeByte();
tagVal = (tagVal << 7) | (b & 0x7f);
} while ((b & 0x80) != 0);
}
tag = tagVal | (tagClass << 16);
if (atEnd())
return false;
unsigned char len_len = decodeByte();
if ((len_len & 0x80) == 0) {
len = len_len;
return true;
}
len_len &= 0x7f;
len = 0;
while (len_len-- > 0) {
if (atEnd())
return false;
len = (len << 8) | decodeByte();
}
return true;
}
bool BERDecoder::decodeHeader(AbstractData& obj, unsigned& len) {
const char* pos = beginPosition;
unsigned tag;
bool primitive;
if (decodeHeader(tag, primitive, len) &&
(tag == obj.getTag() || dontCheckTag--))
return true;
beginPosition = pos;
return false;
}
unsigned BERDecoder::decodeBlock(char* bufptr, unsigned nBytes) {
if (beginPosition + nBytes > endPosition)
nBytes = endPosition - beginPosition;
if (nBytes == 0)
return 0;
memcpy(bufptr, beginPosition, nBytes);
beginPosition += nBytes;
return nBytes;
}
}
|
755858e5c1dc7cf169e47140ee3931ae90f7bb55
|
d9741ceb7bd16c80cf07e46019b249eff008ab59
|
/library/src/backend.cpp
|
6800790b95e5580a4d027b9a0b7dd7b81135bb24
|
[
"MIT"
] |
permissive
|
fagan2888/ROC_SHMEM
|
4af3f5f37d976332708585c8c065534f041f8dd5
|
6795dee38f89216629625b38acbe0520144caff4
|
refs/heads/master
| 2022-11-23T17:59:47.049806
| 2020-07-28T16:20:38
| 2020-07-28T16:34:23
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,239
|
cpp
|
backend.cpp
|
/******************************************************************************
* Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved.
*
* 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 "context.hpp"
#include "backend.hpp"
#include "wg_state.hpp"
#include "util.hpp"
Backend::Backend(unsigned num_wgs)
{
int num_cus;
if (hipDeviceGetAttribute(&num_cus,
hipDeviceAttributeMultiprocessorCount, 0)) {
exit(-ROC_SHMEM_UNKNOWN_ERROR);
}
int max_num_wgs = num_cus * 32;
if (num_wgs > max_num_wgs || num_wgs == 0)
num_wgs = max_num_wgs;
/**
* Hack to support the default context.
* This works because we allocate enough queues to cover num_wgs contexts,
* so this ensures we always have enough extra ones for the default
* context. This is bad because it also over allocates any buffers that
* are dependent on num_wgs but not actually related to contexts.
*/
num_wgs++;
CHECK_HIP(hipMalloc((void**) &bufferTokens,
sizeof(unsigned int) * num_wgs));
for (int i = 0; i < num_wgs; i++) {
bufferTokens[i] = 0;
}
num_wg = num_wgs;
CHECK_HIP(hipMalloc(&print_lock, sizeof(*print_lock)));
*print_lock = 0;
hipMemcpyToSymbol(HIP_SYMBOL(print_lock), &print_lock,
sizeof(print_lock), 0, hipMemcpyHostToDevice);
Backend* this_addr = this;
hipMemcpyToSymbol(HIP_SYMBOL(gpu_handle), &this_addr,
sizeof(this), 0, hipMemcpyHostToDevice);
}
roc_shmem_status_t
Backend::dump_stats()
{
const auto &stats = globalStats;
uint64_t total = 0;
for (int i = 0; i < NUM_STATS; i++)
total += stats.getStat(i);
fprintf(stdout, "PE %d: Puts (Blocking/P/Nbi) %llu/%llu/%llu Gets "
"(Blocking/G/Nbi) %llu/%llu/%llu Fences %llu Quiets %llu ToAll "
"%llu BarrierAll %llu Wait Until %llu Finalizes %llu Coalesced "
"%llu Atomic_FAdd %llu Atomic_FCswap %llu Atomic_FInc %llu "
"Atomic_Fetch %llu Atomic_Add %llu Atomic_Cswap %llu "
"Atomic_Inc %llu Tests %llu SyncAll %llu Total %lu\n",
my_pe, stats.getStat(NUM_PUT), stats.getStat(NUM_P),
stats.getStat(NUM_PUT_NBI), stats.getStat(NUM_GET),
stats.getStat(NUM_G),
stats.getStat(NUM_GET_NBI), stats.getStat(NUM_FENCE),
stats.getStat(NUM_QUIET), stats.getStat(NUM_TO_ALL),
stats.getStat(NUM_BARRIER_ALL), stats.getStat(NUM_WAIT_UNTIL),
stats.getStat(NUM_FINALIZE), stats.getStat(NUM_MSG_COAL),
stats.getStat(NUM_ATOMIC_FADD), stats.getStat(NUM_ATOMIC_FCSWAP),
stats.getStat(NUM_ATOMIC_FINC), stats.getStat(NUM_ATOMIC_FETCH),
stats.getStat(NUM_ATOMIC_ADD), stats.getStat(NUM_ATOMIC_CSWAP),
stats.getStat(NUM_ATOMIC_INC), stats.getStat(NUM_TEST),
stats.getStat(NUM_SYNC_ALL), total);
return dump_backend_stats();
}
roc_shmem_status_t
Backend::reset_stats()
{
globalStats.resetStats();
return reset_backend_stats();
}
Backend::~Backend()
{
CHECK_HIP(hipFree(bufferTokens));
}
__device__ void
Backend::create_wg_state()
{
WGState::create();
__syncthreads();
/*
* We preallocate a single wg_private context for this WG and bind it to
* the WG state.
*/
Context *ctx = nullptr;
switch (type) {
case RO_BACKEND:
ctx = (Context *) WGState::instance()->
allocateDynamicShared(sizeof(ROContext));
new (ctx) ROContext(*this, SHMEM_CTX_WG_PRIVATE);
break;
case GPU_IB_BACKEND:
ctx = (Context *) WGState::instance()->
allocateDynamicShared(sizeof(GPUIBContext));
new (ctx) GPUIBContext(*this, SHMEM_CTX_WG_PRIVATE);
break;
default:
assert(false);
}
__syncthreads();
if (is_thread_zero_in_block())
WGState::instance()->set_private_ctx(ctx);
__syncthreads();
}
__device__ void
Backend::finalize_wg_state()
{
WGState::instance()->return_buffers();
}
|
cee55f7e12c9adf8adc9622d1cec36f5f7d5189c
|
1e949d5d634ce37309945d96c13b5c9e9680ca8d
|
/ObjC/Generic.h
|
7d83cc0c6880b4f7b01948bb1271853ebcb19389
|
[] |
no_license
|
Satachito/JMP
|
d591da19d586c8c9c23b929ba1e0cbba076e5b51
|
c93dde592ed06435bb1b3e3a0c0a5b576a92422a
|
refs/heads/master
| 2022-07-02T12:33:25.084451
| 2022-06-17T12:09:27
| 2022-06-17T12:09:27
| 27,325,458
| 5
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,145
|
h
|
Generic.h
|
#pragma once
// https://github.com/Satachito/JpMooParaiso.git
// Written by Satoru Ogura Tokyo, Japan.
#include <cassert>
#include <dispatch/dispatch.h>
#ifdef __MACH__
#include <mach/mach_time.h>
#endif
namespace
JpMooParaiso
{
#ifdef __MACH__
struct
Timer
{ uint64_t u;
mach_timebase_info_data_t uTB;
Timer()
{ mach_timebase_info( &uTB );
u = mach_absolute_time();
}
uint64_t
Nano() const
{ return ( mach_absolute_time() - u ) * uTB.numer / uTB.denom;
}
uint64_t
Micro() const
{ return ( mach_absolute_time() - u ) * uTB.numer / ( uTB.denom * 1000 );
}
uint64_t
Milli() const
{ return ( mach_absolute_time() - u ) * uTB.numer / ( uTB.denom * 1000000 );
}
uint64_t
Second() const
{ return ( mach_absolute_time() - u ) * uTB.numer / ( uTB.denom * 1000000000 );
}
};
#endif
template <typename T> int
Compare( T const& pL, T const& pR )
{ return pL == pR ? 0 : pL < pR ? -1 : 1;
}
template <typename T> int
Sign( T const& p )
{ return p == 0 ? 0 : p < 0 ? -1 : 1;
}
struct
BinarySearchResult
{ int uMatchMode;
size_t u;
};
// Data 1 3 5 7 9
// Search mMatchMode Data[u](u)
// 0 -> < 1(0)
// 1 -> = 1(0)
// 2 -> > or 1(0)
// -> < 3(1)
// 3 -> = 3(1)
// :
// 7 -> = 7(3)
// 8 -> > or 7(3)
// -> < 9(4)
// 9 -> = 9(4)
// 10 -> > 9(4)
template <typename T, typename F> BinarySearchResult
BinarySearch( T* p, size_t pSize, F pCB ) // pCB must return TriState
{ assert( pSize ); // Can't search empty array.
BinarySearchResult v;
size_t wL = 0;
size_t wH = pSize;
do
{ v.u = ( wL + wH ) / 2;
v.uMatchMode = pCB( p[ v.u ] );
//printf( "L:%zu H:%zu u:%zu Mode:%d\n", wL, wH, v.u, v.uMatchMode );
switch ( v.uMatchMode )
{
case 0:
return v;
case -1:
if ( wH == v.u ) return v;
wH = v.u;
break;
case 1:
if ( wL == v.u ) return v;
wL = v.u;
break;
}
}
while ( true );
return v;
}
template <typename T> void
Copy( const T* pSrc, T* pDst, size_t pSize )
{ memcpy( pDst, pSrc, pSize * sizeof( T ) );
}
template <typename T> void
Zero( T* p, size_t pSize )
{ bzero( p, pSize * sizeof( T ) );
}
template <typename T> void
Move( T* pSrc, T* pDst, size_t p )
{ memmove( pDst, pSrc, p * sizeof( T ) );
}
template <typename T> void
Fill( T* pDst, T const& p, size_t pSize )
{ while ( pSize-- ) pDst[ pSize ] = p;
}
template <typename F> void
Loop( size_t p, F pCB )
{ while ( p-- ) pCB();
}
template <typename F> void
LoopAsync( size_t p, F pCB )
{ dispatch_queue_t wQ = ::dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0 );
while ( p-- ) ::dispatch_async( wQ, ^{ pCB(); } );
}
template <typename F> void
LoopAsyncWait( size_t p, F pCB )
{ dispatch_queue_t wQ = ::dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0 );
dispatch_apply( p, wQ, ^(size_t) { pCB(); } );
}
template <typename F> void
For( size_t p, F pCB )
{ while ( p-- ) pCB( p );
}
template <typename F> void
ForAsync( size_t p, F pCB )
{ dispatch_queue_t wQ = ::dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0 );
while ( p-- ) ::dispatch_async( wQ, ^{ pCB( p ); } );
}
template <typename F> void
ForAsyncWait( size_t p, F pCB )
{ dispatch_queue_t wQ = ::dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0 );
dispatch_apply( p, wQ, ^(size_t p) { pCB( p ); } );
}
template <typename T> struct
iStream
{ virtual bool Avail() = 0;
virtual operator T() const = 0;
};
template <typename T, typename F> void
For( iStream<T>& pStream, F pCB )
{ while ( pStream.Avail() ) pCB( (T)pStream );
}
template <typename T, typename F> void
ForAsync( iStream<T>& pStream, F pCB )
{ dispatch_queue_t wQ = ::dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0 );
while ( pStream.Avail() )
{ T w = pStream;
dispatch_async( wQ, ^{ pCB( w ); } );
}
}
template <typename T, typename F> void
ForAsyncWait( iStream<T>& pStream, F pCB )
{ dispatch_group_t wG = ::dispatch_group_create();
dispatch_queue_t wQ = ::dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0 );
while ( pStream.Avail() )
{ T w = pStream;
dispatch_group_async( wG, wQ, ^{ pCB( w ); } );
}
dispatch_group_wait( wG, DISPATCH_TIME_FOREVER );
#if !OS_OBJECT_USE_OBJC
dispatch_release( wG );
#endif
}
template <typename T> struct
Array
{
size_t uCapacity;
T* u;
size_t uSize;
virtual
~ Array()
{ delete[] u; // delete[] is null-safe
}
Array( size_t pCapacity = 0, bool pInfrate = false )
: uCapacity( pCapacity )
, u( new T[ pCapacity ] )
, uSize( pInfrate ? pCapacity : 0 )
{
}
Array( T* p, size_t pCapacity )
: uCapacity( pCapacity )
, u( new T[ pCapacity ] )
, uSize( pCapacity )
{ Copy( p, u, uSize );
}
Array( Array<T> const& p )
: uCapacity( p.uCapacity )
, u( new T[ uCapacity ] )
, uSize( p.uSize )
{ Copy( p.u, u, uSize );
}
Array( Array<T>&& p )
: uCapacity( p.uCapacity )
, u( p.u )
, uSize( p.uSize )
{ p.u = nullptr;
}
Array<T> const& operator
=( Array<T> const& p )
{ if ( this != &p )
{ delete[] u;
uCapacity = p.uCapacity;
u = new T[ uCapacity ];
uSize = p.uSize;
Copy( p.u, u, uSize );
}
return p;
}
Array<T> const& operator
=( Array<T>&& p )
{ if ( this != &p )
{ delete[] u;
uCapacity = p.uCapacity;
u = p.u;
uSize = p.uSize;
p.u = nullptr;
}
return *this;
}
void
Inflate( size_t p )
{ assert( p > uCapacity );
uCapacity = p;
T* w = new T[ uCapacity ];
Copy( u, w, uSize );
delete[] u;
u = w;
}
void
Size( size_t p )
{ if ( p > uCapacity ) Inflate( p );
uSize = p;
}
void
Insert( size_t pIndex, T const& p )
{ assert( pIndex <= uSize );
if ( uSize == uCapacity ) Inflate( uCapacity ? uCapacity * 2 : 1 );
Move( u + pIndex, u + pIndex + 1, uSize - pIndex );
u[ pIndex ] = p;
uSize++;
}
void
Append( T const& p )
{ if ( uSize == uCapacity ) Inflate( uCapacity ? uCapacity * 2 : 1 );
u[ uSize++ ] = p;
}
void
RemoveAtIndex( size_t pIndex )
{ assert( pIndex < uSize );
Move( u + pIndex + 1, u + pIndex, --uSize - pIndex);
}
void
Remove( T const& p )
{ size_t i = uSize;
while ( i-- ) if ( u[ i ] == p ) RemoveAtIndex( i );
}
template <typename F> void
RunInOrder( F pCB ) const
{ for ( size_t i = 0; i < uSize; i++ ) pCB( u[ i ] );
}
template <typename F> Array<size_t>
Indices( F pCB ) const
{ Array<size_t> v;
for ( size_t i = 0; i < uSize; i++ ) if ( pCB( u[ i ] ) ) v.Append( i );;
return v;
}
bool
Contains( T const& p ) const
{ for ( size_t i = 0; i < uSize; i++ ) if ( u[ i ] == p ) return true;
return false;
}
};
template <typename T> Array<T> operator
+( T const& p, Array<T> const& pArray )
{ Array<T> v( 1 + pArray.uSize );
v.u[ 0 ] = 0;
for ( int i = 0; i < pArray.uSize; i++ ) v.u[ i + 1 ] = pArray.u[ i ];
v.uSize = pArray.uSize + 1;
return v;
}
template <typename T> Array<T> operator
+( Array<T> const& pArray, T const& p )
{ Array<T> v( pArray.uSize + 1 );
for ( int i = 0; i < pArray.uSize; i++ ) v.u[ i ] = pArray.u[ i ];
v.u[ pArray.uSize ] = p;
v.uSize = pArray.uSize + 1;
return v;
}
template <typename T> Array<T> operator
+( Array<T> const& p1, Array<T> const& p2 )
{ Array<T> v( p1.uSize + p2.uSize );
for ( int i = 0; i < p1.uSize; i++ ) v.u[ i ] = p1.u[ i ];
for ( int i = 0; i < p2.uSize; i++ ) v.u[ i + p1.uSize ] = p2.u[ i ];
v.uSize = p1.uSize + p2.uSize;
return v;
}
template <typename T> struct
List
{ struct
E
{ T u;
E* uNext;
E( T const& p, E* pNext )
: u( p )
, uNext( pNext )
{
}
};
E* u;
void
Clear( E* p )
{ if ( p )
{ Clear( p->uNext );
delete p;
}
}
void
Copy( E* p )
{ if ( p )
{ Copy( p->uNext );
u = new E( p->u, u );
}
}
virtual
~ List()
{ Clear( u );
}
List()
: u( nullptr )
{
}
List( List<T> const& p )
: u( nullptr )
{ Copy( p.u );
}
List( List<T>&& p )
: u( p.m )
{ p.u = nullptr;
}
List<T> const& operator
=( List<T> const& p )
{ Clear( u );
u = nullptr;
Copy( p.u );
return p;
}
List<T> const& operator
=( List<T>&& p )
{ Clear( u );
u = p.u;
p.u = nullptr;
return *this;
}
size_t
Count() const
{ size_t v = 0;
for ( E* w = u; w; w = w->mNext ) v++;
return v;
}
template <typename F> void
RunInOrder( F pCB ) const
{ for ( E* w = u; w; w = w->uNext ) pCB( w->u );
}
template <typename F> void
Insert( T const& p, F pCB )
{ E** w = &u;
while ( *w && pCB( (*w)->u ) ) w = &(*w)->uNext;
*w = new E( p, *w );
}
void
Prepend( T const& p )
{ u = new E( p, u );
}
void
Append( T const& p )
{ E** w = &u;
while ( *w ) w = &(*w)->uNext;
*w = new E( p, *w );
}
bool
Contains( T const& p ) const
{ for ( E* w = u; w; w = w->uNext ) if ( w->u == p ) return true;
return false;
}
};
template <typename F> struct
Managed
{ void (^uDisposer)( F p );
Managed const* uParent;
JpMooParaiso::Array<Managed*>* uChildren;
Managed( void (^pDisposer)( F p ) )
: uDisposer( pDisposer )
, uParent( nullptr )
, uChildren( new JpMooParaiso::Array<Managed*>() )
{
}
static void
Adopt( Managed<F> const* pParent, Managed<F>* pChild )
{ pParent->uChildren->Append( pChild );
pChild->uParent = pParent;
}
virtual
~ Managed()
{ if ( uParent )
{ uParent->uChildren->Remove( this );
uChildren->RunInOrder( ^( Managed* p ) { Adopt( uParent, p ); } );
}
else
{ if ( uChildren->uSize )
{ Managed* w1st = uChildren->u[ 0 ];
w1st->uParent = nullptr;
for ( size_t i = 1; i < uChildren->uSize; i++ ) Adopt( w1st, uChildren->u[ i ] );
}
else
{ uDisposer( (F)this );
}
}
delete uChildren;
}
Managed( Managed<F> const& p )
: uDisposer( p.uDisposer )
, uParent( &p )
, uChildren( new JpMooParaiso::Array<Managed*>() )
{ p.uChildren->Append( this );
}
Managed<F> const& operator
=( Managed<F> const& p )
{ assert( false );
}
};
}
|
c2d6e15d5f455625838cc8620e70d647949d2e28
|
cb84d30a962790ab0c449be14c966d1b128329b6
|
/math/math_theory/Euler_sieve.cpp
|
bf949591fc1a32d88a199597e85d1e78a87e3469
|
[] |
no_license
|
ShaoChenHeng/codeOfACM
|
2c608858078c8d889874c3d345e8c1c97afcbf7c
|
cdc513b29628767a7b4649788578e5cae8a0e1dd
|
refs/heads/master
| 2020-08-21T18:46:07.111481
| 2020-02-05T16:18:36
| 2020-02-05T16:18:36
| 216,220,940
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 556
|
cpp
|
Euler_sieve.cpp
|
#include <bits/stdc++.h>
using namespace std;
const int N = 100000;
int vis[N], prim[N], xu[N], cnt,n;
void work(int n)
{
for (int i = 2; i <= n; i++)
{
if ( !vis[i] ) prim[++cnt] = i;
for ( int j = 1; j <= cnt; j++ )
{
if ( i * prim[j] > n ) break;
vis[i*prim[j]] = 1;
xu[i*prim[j]] = i;
if( i % prim[j] == 0 )break;
}
}
}
int main()
{
cnt = 0;
scanf("%d",&n);
work(n);
for(int i = 0; i < n; i++)
{
if ( !vis[i] ) printf("%d ", i);
}
}
|
0f32eb25f1af1e4120783924a0f2c355d739e0ad
|
508fe87d1d5e2b1b76f96561b58ce497e908e9ef
|
/shifter.cc
|
6ed724faefe24193aca8be52d7c0f2808a9a89e0
|
[] |
no_license
|
cosmin/mpegtsShifter
|
09bd000f32f8261647fd05eb5d59a8453b07c0d0
|
5882cb494cd3c01a02c12a456adacfb6e57695f4
|
refs/heads/master
| 2021-01-25T09:20:46.815967
| 2018-02-03T08:10:56
| 2018-02-03T08:10:56
| 93,817,409
| 0
| 0
| null | 2018-02-03T08:10:56
| 2017-06-09T04:02:37
|
C++
|
UTF-8
|
C++
| false
| false
| 13,240
|
cc
|
shifter.cc
|
#include <cstdlib>
#include <iostream>
#include <string>
#include <sstream>
#include <iomanip>
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavformat/avio.h>
#include <libavutil/avutil.h>
}
using namespace std;
static AVStream *addStream(AVFormatContext *pFormatCtx, AVStream *pInStream, AVCodecContext **pOutCodecCtx) {
AVCodecParameters *pInCodecPar = NULL;
AVCodecContext *pInCodecCtx = NULL;
AVCodec *input_codec = NULL;
AVCodec *output_codec = NULL;
AVStream *pOutStream = NULL;
AVDictionary *pOptionsDict = NULL;
pOutStream = avformat_new_stream(pFormatCtx, 0);
if (!pOutStream) {
cout << "Could not allocate stream" << endl;
exit(1);
}
// Get a pointer to the codec parameters for the video stream
pInCodecPar = pInStream->codecpar;
input_codec = avcodec_find_decoder(pInCodecPar->codec_id);
if (input_codec == NULL) {
cout << "Unsupported codec (" << pInCodecPar->codec_id << ")" << endl;
exit(1);
}
pInCodecCtx = avcodec_alloc_context3(input_codec);
if (!pInCodecCtx) {
fprintf(stderr, "Could not allocate a decoding context\n");
exit(1);
}
if (avcodec_parameters_to_context(pInCodecCtx, pInStream->codecpar) < 0) {
fprintf(stderr, "Could not initialize a decoding context\n");
avcodec_free_context(&pInCodecCtx);
exit(1);
}
// Open codec
if (avcodec_open2(pInCodecCtx, input_codec, &pOptionsDict) < 0) {
cout << "Unable to open codec (" << pInCodecPar->codec_id << ")" << endl;
exit(1);
}
output_codec = avcodec_find_decoder(pInCodecPar->codec_id);
*pOutCodecCtx = avcodec_alloc_context3(output_codec);
if (!*pOutCodecCtx) {
cout << "Unable to allocate output codec context" << endl;
exit(1);
}
// surprised there's not a codec context copy function
(*pOutCodecCtx)->codec_id = pInCodecPar->codec_id;
(*pOutCodecCtx)->codec_type = pInCodecPar->codec_type;
(*pOutCodecCtx)->codec_tag = pInCodecPar->codec_tag;
(*pOutCodecCtx)->bit_rate = pInCodecPar->bit_rate;
(*pOutCodecCtx)->extradata = pInCodecPar->extradata;
(*pOutCodecCtx)->extradata_size = pInCodecPar->extradata_size;
(*pOutCodecCtx)->width = pInCodecCtx->width;
(*pOutCodecCtx)->height = pInCodecCtx->height;
if (av_q2d(pInCodecCtx->time_base) * pInCodecCtx->ticks_per_frame > av_q2d(pInStream->time_base) &&
av_q2d(pInStream->time_base) < 1.0 / 1000) {
(*pOutCodecCtx)->time_base = pInCodecCtx->time_base;
(*pOutCodecCtx)->time_base.num *= pInCodecCtx->ticks_per_frame;
} else {
(*pOutCodecCtx)->time_base = pInStream->time_base;
}
// cout << "addStream 5" << endl;
switch (pInCodecCtx->codec_type) {
case AVMEDIA_TYPE_AUDIO:
// cout << "AUDIO CODEC" << endl;
(*pOutCodecCtx)->channel_layout = pInCodecCtx->channel_layout;
(*pOutCodecCtx)->sample_rate = pInCodecCtx->sample_rate;
(*pOutCodecCtx)->channels = pInCodecCtx->channels;
(*pOutCodecCtx)->frame_size = pInCodecCtx->frame_size;
if ((pInCodecCtx->block_align == 1 && pInCodecCtx->codec_id == AV_CODEC_ID_MP3) ||
pInCodecCtx->codec_id == AV_CODEC_ID_AC3) {
(*pOutCodecCtx)->block_align = 0;
} else {
(*pOutCodecCtx)->block_align = pInCodecCtx->block_align;
}
break;
case AVMEDIA_TYPE_VIDEO:
// cout << "VIDEO CODEC" << endl;
(*pOutCodecCtx)->pix_fmt = pInCodecCtx->pix_fmt;
(*pOutCodecCtx)->width = pInCodecCtx->width;
(*pOutCodecCtx)->height = pInCodecCtx->height;
(*pOutCodecCtx)->has_b_frames = pInCodecCtx->has_b_frames;
if (pFormatCtx->oformat->flags & AVFMT_GLOBALHEADER) {
(*pOutCodecCtx)->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
}
break;
default:
break;
}
avcodec_parameters_from_context(pOutStream->codecpar, *pOutCodecCtx);
return pOutStream;
}
int main(int argc, char **argv) {
string input;
string outputPrefix;
AVInputFormat *pInFormat = NULL;
AVOutputFormat *pOutFormat = NULL;
AVFormatContext *pInFormatCtx = NULL;
AVFormatContext *pOutFormatCtx = NULL;
AVStream *pVideoStream = NULL;
AVCodecContext *pVideoCodecContext = NULL;
AVCodecContext *pAudioCodecContext = NULL;
AVCodec *pCodec = NULL;
int videoIndex;
int audioIndex;
int decodeDone;
int ret;
unsigned int i;
if (argc != 4) {
cout << "Usage: " << argv[0] << " <input MPEG-TS file> <offset time> <output MPEG-TS file>" << endl;
exit(1);
}
// cout << "start" << endl;
av_register_all();
input = argv[1];
if (!strcmp(input.c_str(), "-")) {
input = "pipe:";
}
double offsetTime = atof(argv[2]);
unsigned int tsShift = offsetTime * 90000; // h264 defined sample rate is 90khz
string outFile = argv[3];
// cout << "0" << endl;
pInFormat = av_find_input_format("mpegts");
if (!pInFormat) {
cout << "Could not find MPEG-TS demuxer" << endl;
exit(1);
}
// cout << "0.5" << endl;
ret = avformat_open_input(&pInFormatCtx, input.c_str(), pInFormat, NULL);
if (ret != 0) {
cout << "Could not open input file, make sure it is an mpegts file: " << ret << endl;
exit(1);
}
//pInFormatCtx->max_analyze_duration = 1000000;
// cout << "0.6" << endl;
if (avformat_find_stream_info(pInFormatCtx, NULL) < 0) {
cout << "Could not read stream information" << endl;
exit(1);
}
// cout << "0.7" << endl;
av_dump_format(pInFormatCtx, 0, argv[1], 0);
// cout << "0.75" << endl;
pOutFormat = av_guess_format("mpegts", NULL, NULL);
if (!pOutFormat) {
cout << "Could not find MPEG-TS muxer" << endl;
exit(1);
}
// cout << "0.8" << endl;
pOutFormatCtx = avformat_alloc_context();
if (!pOutFormatCtx) {
cout << "Could not allocated output context" << endl;
exit(1);
}
// cout << "0.9" << endl;
pOutFormatCtx->oformat = pOutFormat;
videoIndex = -1;
audioIndex = -1;
// cout << "pInFormatCtx->nb_streams " << pInFormatCtx->nb_streams << endl;
for (i = 0; i < pInFormatCtx->nb_streams && (videoIndex < 0 || audioIndex < 0); i++) {
// skipping bad streams again again
if (pInFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
int64_t durationInt = pInFormatCtx->duration;
double durationSeconds = (double) durationInt / AV_TIME_BASE;
double fps = av_q2d(pInFormatCtx->streams[i]->avg_frame_rate);
unsigned int frameCount = 0;
if (pInFormatCtx->streams[i]->nb_frames > 0) {
frameCount = pInFormatCtx->streams[i]->nb_frames;
} else {
frameCount = floor(durationSeconds * fps);
}
if (frameCount <= 0) continue;
}
switch (pInFormatCtx->streams[i]->codecpar->codec_type) {
case AVMEDIA_TYPE_VIDEO:
cout << "Initial for loop adding VIDEO CODEC" << endl;
videoIndex = i;
pInFormatCtx->streams[i]->discard = AVDISCARD_NONE;
pVideoStream = addStream(pOutFormatCtx, pInFormatCtx->streams[i], &pVideoCodecContext);
break;
case AVMEDIA_TYPE_AUDIO:
cout << "Initial for loop adding AUDIO CODEC" << endl;
audioIndex = i;
pInFormatCtx->streams[i]->discard = AVDISCARD_NONE;
if (!pInFormatCtx->streams[i]->codecpar->channels) {
cout << "WARNING: No channels found (skipping) audio stream " << i << endl;
} else {
addStream(pOutFormatCtx, pInFormatCtx->streams[i], &pAudioCodecContext);
}
break;
default:
// cout << "Initial for loop AVDISCARD_ALL" << endl;
pInFormatCtx->streams[i]->discard = AVDISCARD_ALL;
break;
}
}
pCodec = avcodec_find_decoder(pVideoStream->codecpar->codec_id);
if (!pCodec) {
cout << "Could not find video decoder, key frames will not be honored" << endl;
}
if (avcodec_open2(pVideoCodecContext, pCodec, NULL) < 0) {
cout << "Could not open video decoder, key frames will not be honored" << endl;
}
if (avio_open(&pOutFormatCtx->pb, outFile.c_str(), AVIO_FLAG_WRITE) < 0) {
cout << "Could not open " << outFile << endl;
exit(1);
}
if (avformat_write_header(pOutFormatCtx, NULL)) {
cout << "Could not write mpegts header to first output file" << endl;
exit(1);
}
const unsigned long MAX_PACKETS = 1000000;
unsigned long iPacket = 0;
bool initZeros = true;
int64_t dtsZero = 0;
int64_t ptsZero = 0;
double firstDtsTime = 0;
bool initFirstDTSTime = true;
int firstPacketStreamIndex = videoIndex;
// find first video packet time
do {
// double segmentTime;
AVPacket packet;
av_init_packet(&packet);
decodeDone = av_read_frame(pInFormatCtx, &packet);
if (decodeDone < 0) {
break;
}
if (initFirstDTSTime) {
firstDtsTime = packet.dts;
initFirstDTSTime = false;
firstPacketStreamIndex = packet.stream_index;
}
int iStreamIndex = packet.stream_index;
int isVideo = iStreamIndex == videoIndex;
if (initZeros && isVideo) {
initZeros = false;
ptsZero = packet.pts;
dtsZero = packet.dts;
if (dtsZero < ptsZero) dtsZero = ptsZero;
}
av_packet_unref(&packet);
if (iPacket++ >= MAX_PACKETS) break;
} while (initZeros);
// int isFirstAudio = firstPacketStreamIndex == audioIndex;
// int isFirstVideo = firstPacketStreamIndex == videoIndex;
// cout << "found ptsZero and dtsZero " << ptsZero/90000 << " " << dtsZero/90000;
// cout << " first packet dts time " << firstDtsTime/90000 << ", is first stream index audio: " << isFirstAudio;
// cout << " video: " << isFirstVideo << endl;
// flush buffers before seek
avcodec_flush_buffers(pVideoCodecContext);
// seek beginning of file
av_seek_frame(pInFormatCtx, firstPacketStreamIndex, firstDtsTime, AVSEEK_FLAG_BACKWARD);
// cout << "rewound file to beginning" << endl;
do {
// double segmentTime;
AVPacket input_packet;
AVPacket output_packet;
av_init_packet(&input_packet);
decodeDone = av_read_frame(pInFormatCtx, &input_packet);
if (decodeDone < 0) {
break;
}
if (av_packet_ref(&output_packet, &input_packet) < 0) {
cout << "Could not duplicate packet" << endl;
av_packet_unref(&input_packet);
break;
}
int iStreamIndex = input_packet.stream_index;
int isAudio = iStreamIndex == audioIndex;
int isVideo = iStreamIndex == videoIndex;
// cout << "A/V type " << isAudio << "/" << isVideo << " before input_packet pts dts " << (double)input_packet.pts/90000 << " " << (double)input_packet.dts/90000;
if (isVideo) {
output_packet.pts = input_packet.pts - ptsZero + tsShift;
output_packet.dts = input_packet.dts - dtsZero + tsShift;
} else if (isAudio) {
if ((input_packet.pts - dtsZero + tsShift) > 0.0 && (input_packet.dts - dtsZero + tsShift) > 0.0) {
output_packet.pts = input_packet.pts - ptsZero + tsShift;
output_packet.dts = input_packet.dts - dtsZero + tsShift;
} else {
cout << "audio pts or dts would be negative, skipping pts,dts " << input_packet.pts - ptsZero + tsShift;
cout << "," << input_packet.dts - dtsZero + tsShift << endl;
av_packet_unref(&input_packet);
continue;
}
}
// cout << " after input_packet pts dts " << (double)input_packet.pts/90000 << " " << (double)input_packet.dts/90000 << endl;
ret = av_interleaved_write_frame(pOutFormatCtx, &output_packet);
if (ret < 0) {
cout << "Warning: Could not write frame of stream" << endl;
} else if (ret > 0) {
//cout << "End of stream requested" << endl;
av_packet_unref(&input_packet);
av_packet_unref(&output_packet);
break;
}
av_packet_unref(&input_packet);
av_packet_unref(&output_packet);
if (iPacket++ >= MAX_PACKETS) break;
} while (!decodeDone);
av_write_trailer(pOutFormatCtx);
avcodec_close(pVideoCodecContext);
for (i = 0; i < pOutFormatCtx->nb_streams; i++) {
// av_freep(&pOutFormatCtx->streams[i]->codec);
av_freep(&pOutFormatCtx->streams[i]);
}
avio_close(pOutFormatCtx->pb);
av_free(pOutFormatCtx);
return 0;
}
|
aea1749ed9466d9e675dfbb569d48339d292e445
|
e28904bcedc4c610b3dab2c0fa687188c569212d
|
/Source/Collision/Collision.h
|
a5e17a38f03bf83824cd093dae736fe142de4c8c
|
[] |
no_license
|
YuukiReiya/Yuuki-no-kuseniNamaikida-
|
c65ce94989593e6a27156b0bbcd523c30a770cea
|
da56954760a72965c12bf03d32b7d3f9a11d5326
|
refs/heads/master
| 2020-03-21T07:12:19.193380
| 2018-06-22T07:00:25
| 2018-06-22T07:00:25
| 138,266,771
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 103
|
h
|
Collision.h
|
#pragma once
#include "../Common/Common.h"
class Collision
{
public:
Collision();
~Collision();
};
|
3b28ddbc94bd12d4ca91c7aac7f780b6dfa04e86
|
a23d00b01ac1af188c9481f38fb0f12c3ee935a4
|
/CF991/C.cpp
|
415b99394437850172d8602f188ed83739658e21
|
[] |
no_license
|
FwP-IDN/competitive_programming
|
fedecac8dc73e0af6769b63f40b115331354e83d
|
5566678d4fd8d43abb15cb84984c390c7cf5ff9c
|
refs/heads/master
| 2021-10-11T07:18:31.611566
| 2019-01-23T06:23:14
| 2019-01-23T06:23:14
| 105,432,410
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 462
|
cpp
|
C.cpp
|
#include <bits/stdc++.h>
using namespace std;
long long N, le, ri, mid;
bool solve() {
long long n = N;
long long A = 0;
while(n > 0) {
A += min(n, mid);
n = max(n - mid, (long long)0);
n -= (n / (long long)10);
}
return A * (long long)2 >= N;
}
int main(int argc, char** argv) {
cin >> N;
le = 1, ri = N;
while(le < ri) {
mid = (le + ri) / (long long)2;
if(solve()) {
ri = mid;
}
else {
le = mid + 1;
}
}
cout << le << "\n";
}
|
4979cda75a5ef49edb867426b0f7602501141e13
|
f074a0042c8f82b912be9c21651fce237cc0a8e4
|
/src/socks4.h
|
bbae1a86a8f3d83bfc316e3da7483b991b515b94
|
[
"MIT"
] |
permissive
|
daskol/socks-proxy
|
3f9c6257179cd493b778e88e050bf2da25dde2bc
|
3736bde188f45644601ce7327fabaeaf687b9e18
|
refs/heads/master
| 2020-03-10T12:47:45.106836
| 2018-10-07T21:32:25
| 2018-10-07T21:32:25
| 129,385,439
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,960
|
h
|
socks4.h
|
/**
* \file socks4.h
*/
#pragma once
#include <cstdint>
#ifdef NDEBUG
#define BOOST_ASIO_ENABLE_HANDLER_TRACKING
#endif
#include <boost/asio.hpp>
#include <glog/logging.h>
#include <common.h>
#pragma pack(push, 1)
struct Hello {
uint8_t version;
uint8_t command;
uint16_t dst_port;
uint32_t dst_ip;
};
#pragma pack(pop)
struct ProxyParams {
boost::asio::ip::tcp::endpoint endpoint;
std::string user;
};
void Socks4Handshake(boost::asio::ip::tcp::socket& conn,
const boost::asio::ip::tcp::endpoint& addr,
const std::string& user);
void ConnectProxyChain(boost::asio::ip::tcp::socket& socket,
const std::vector<ProxyParams>& proxy_chain,
boost::asio::ip::tcp::endpoint destination);
class Session : public std::enable_shared_from_this<Session> {
static constexpr size_t m_buffer_size = 4_kb;
public:
Session(boost::asio::ip::tcp::socket socket,
boost::posix_time::time_duration timeout)
: m_src(std::move(socket))
, m_dst(m_src.get_io_service())
, m_timeout(timeout)
, m_cli_timer(m_src.get_io_service())
, m_srv_timer(m_src.get_io_service())
, m_cli2srv{new uint8_t[4_kb]}
, m_srv2cli{new uint8_t[4_kb]} {}
void init(void) noexcept;
private:
void doConnect(size_t size) noexcept;
void doRecvHello(void) noexcept;
void doSendHello(uint8_t command) noexcept;
void doRecvUserID(size_t size) noexcept;
void doRecvFromClient(void) noexcept;
void doSendToClient(size_t size) noexcept;
void doRecvFromServer(void) noexcept;
void doSendToServer(size_t size) noexcept;
void onTimeout(boost::system::error_code ec, bool client) noexcept;
void setupClientTimeout(void) noexcept;
void setupServerTimeout(void) noexcept;
void moveMemory(uint8_t* begin, uint8_t* end) noexcept;
uint8_t* findUserID(uint8_t* begin, uint8_t* end) noexcept;
private:
boost::asio::ip::tcp::socket m_src;
boost::asio::ip::tcp::socket m_dst;
boost::posix_time::time_duration m_timeout;
boost::asio::deadline_timer m_cli_timer;
boost::asio::deadline_timer m_srv_timer;
std::unique_ptr<uint8_t[]> m_cli2srv; // cli -> proxy -> srv
std::unique_ptr<uint8_t[]> m_srv2cli; // srv -> proxy -> cli
std::string m_user_id;
Hello m_hello;
};
class Socks4Proxy : public std::enable_shared_from_this<Socks4Proxy> {
public:
Socks4Proxy(boost::asio::io_service& io_service,
boost::asio::ip::tcp::endpoint at,
boost::posix_time::time_duration timeout)
: m_acceptor(io_service, at)
, m_timeout(timeout) {}
~Socks4Proxy() {
m_acceptor.get_io_service().stop();
}
void run(void) noexcept;
void startAccept(void) noexcept;
private:
boost::asio::ip::tcp::acceptor m_acceptor;
boost::posix_time::time_duration m_timeout;
};
|
2c8c874490bef34a10b108ae6d16b9f5cc975ec1
|
d1859fd90e0cae3269159ec3e3b92c15e46fee38
|
/src/libmqtt-to-influxdb/config/topic.hpp
|
c2cb561a2fa21527564afc72af2c536e62f95419
|
[
"MIT"
] |
permissive
|
DavidHamburg/mqtt-to-influxdb
|
b712ef9c97e89ef951a6c47663bccccc1124262f
|
5a306f1186433c7ee426959a53ea575c03d9a4a1
|
refs/heads/master
| 2023-03-28T04:19:41.140851
| 2021-03-31T07:08:27
| 2021-03-31T07:08:52
| 352,259,227
| 1
| 0
| null | 2021-03-29T17:41:21
| 2021-03-28T06:36:52
|
C++
|
UTF-8
|
C++
| false
| false
| 1,345
|
hpp
|
topic.hpp
|
#pragma once
#include <string>
#include <yaml-cpp/yaml.h>
#include <vector>
#include <spdlog/spdlog.h>
#include <libmqtt-to-influxdb/config/measurement.hpp>
#include <libmqtt-to-influxdb/stringhelper.hpp>
struct topic {
std::string name{};
std::vector<measurement> measurements{};
};
namespace YAML {
template<>
struct convert<topic> {
static Node encode(const topic& rhs) {
Node node;
node["topic"] = rhs.name;
node["measurements"] = rhs.measurements;
return node;
}
static bool decode(const Node& node, topic& rhs) {
if (!node["topic"].IsDefined()) {
spdlog::error("Missing topic (line: {})", node.Mark().line);
return false;
}
if (!node["measurements"].IsDefined()) {
spdlog::error("Missing measurements (line: {})", node.Mark().line);
return false;
}
rhs.name = node["topic"].as<std::string>();
if (stringhelper::is_empty_or_whitespace(rhs.name)) {
spdlog::error("Topic name must not be empty (line: {})", node.Mark().line);
return false;
}
rhs.measurements = node["measurements"].as<std::vector<measurement>>();
return true;
}
};
}
|
3170a8ef1dfe4c064997f5cc6aa23d69b749e979
|
6ceb8242304b569651edec69612e690b228ac684
|
/LGE_GameEngine/LittleGameEngine/src/GraphicsSystem/MeshRegistry.h
|
c7e98b5189856508218d20800df9ce791dfff592
|
[
"MIT"
] |
permissive
|
JISyed/LGE-Game-Engine
|
c6f59526c216279ab42d0be09bce730c69691a1c
|
43ed9ef71c33417ba80c4efe51039a2f6f42f8ba
|
refs/heads/master
| 2021-01-11T12:26:51.717005
| 2016-12-22T18:04:50
| 2016-12-22T18:04:50
| 76,658,829
| 3
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,592
|
h
|
MeshRegistry.h
|
#ifndef LGE_MESH_MANAGER_H
#define LGE_MESH_MANAGER_H
#include "..\EngineFoundation\ResourseRegistry.h"
#include "..\AbstractDataTypes\GenericList.h"
#include "Mesh.h"
namespace lge
{
// Serves as a container for every Mesh loaded into the game
class MeshRegistry final : public ResourceRegistry
{
public:
//
// Ctor / Dtor
//
MeshRegistry();
~MeshRegistry();
//
// Contracts
//
virtual void Load() override;
virtual void Unload() override;
virtual void Update() override;
//
// Static Methods
//
// Find any Mesh
static Mesh& Find(MeshName name);
// Factory for Meshes. Automatically added
static Mesh* const Create(MeshName name, const char * const filePath);
static Mesh* const Create(UseUnpacker_t useUnpacker, MeshName name, const char* const nameInPackage);
// Create a camera fustrum mesh, given the camera
//static Mesh* const Create(Camera * const camera, MeshName newName);
private:
//
// Data
//
GenericList<Mesh> meshList;
//
// Static Data
//
static MeshRegistry* singletonInstance;
//
// Private Routines
//
// Must be dynamically allocated, for it will be deleted by this manager later
static void Add(Mesh* newObject);
//
// Deleted Methods
//
// No copy ctor
MeshRegistry(const MeshRegistry& other) = delete;
// No copy assignment
MeshRegistry& operator=(const MeshRegistry& other) = delete;
// No move ctor
MeshRegistry(MeshRegistry&& other) = delete;
// No move assignment
MeshRegistry& operator=(MeshRegistry&& other) = delete;
};
}
#endif
|
1d1bb367dc5259f507c9f8ac41f5944d92027b82
|
faa88598362c8c8b01f99aad42ceea192be2d4d6
|
/views/pilelistview.hpp
|
f53ea7dcdf78e1d16348f89943c995d3d3e76460
|
[] |
no_license
|
JoseManuelAR/klondike
|
869ec90ef5b0df3d4c481b97eab9f4adce80dc7b
|
9fef47f847be187683cc9079b31cf21c21ce4920
|
refs/heads/master
| 2021-09-04T17:21:46.669506
| 2017-11-16T09:54:24
| 2017-11-16T09:54:24
| 109,601,989
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 188
|
hpp
|
pilelistview.hpp
|
#ifndef __PILELISTVIEW_HPP__
#define __PILELISTVIEW_HPP__
class PileList;
class PileListView {
public:
void draw(const PileList& thePileList) const;
};
#endif //__AREALISTVIEW_HPP__
|
bb60e31f8befbe4cd421b315ac942fd13f0de2e6
|
8e6aeaeeac63896828e573af21a8e9bc4536ed64
|
/23 nov/static func.cpp
|
cef15cb562a3a32be789e0f1cb0cd50adc4a8f85
|
[] |
no_license
|
MarcosPara/PGJQP_MARCOS_SUBHO
|
cd34c8b418432534ada9c71dc35d4493fd1c4a45
|
245b4948784936564b2f05f4c8cc3ae12d1f2744
|
refs/heads/main
| 2023-03-01T17:02:50.482474
| 2021-02-08T12:48:23
| 2021-02-08T12:48:23
| 311,673,647
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 531
|
cpp
|
static func.cpp
|
#include<iostream>
using namespace std;
class Example
{
static int Num;
int n;
public: void set_n()
{
n = ++Num;
}
void show_n()
{
cout<<"value of n = "<<n<<endl;
}
static void show_Num()
{
cout<<"value of Number = "<<Num<<endl;
}
};
int Example:: Num;
int main()
{
Example example1, example2;
example1.set_n();
example2.set_n();
example1.show_n();
example2.show_n();
Example::show_Num();
return 0;
}
|
94f93c64976411593d9810846ca95ec90d80d9b0
|
cc0d94e4d9d6eb430c28860f01f392f37b0910a9
|
/my_memory.cpp
|
adc357eab45c264be8bd3ff83cb1b69a95f63942
|
[] |
no_license
|
enistahiraj/softwareDesignIII
|
ef15b94fbd697fa38abc35a489d1e455efe92f38
|
ba533aa64845b02c2c95bf1f93bfc3bcf1e1292f
|
refs/heads/master
| 2020-08-05T18:46:17.183698
| 2019-10-03T19:29:50
| 2019-10-03T19:29:50
| 212,662,377
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 168
|
cpp
|
my_memory.cpp
|
//Enis Tahiraj
#include <iostream>
#include <string>
#include <utility>
#include "my_memory.h"
template <typename T>
my_unique_ptr::my_unique_ptr():uPtr(nullptr){}
|
681b172bf6e5319b535739eaff80fa2701378d7d
|
1dc05c3cb3a57aea5f64052f329eaf458f73c832
|
/topic/LeetCode/0506findRelativeRanks.cpp
|
defc43b27fff7e1ed6588157132047d2cd77ec3a
|
[] |
no_license
|
ITShadow/practiceCode
|
0b1fcbb6b150a1ee91283e8ac7a8d928b4751eda
|
4b407ad98e3abc0be5eadc97ff32165f9f367104
|
refs/heads/master
| 2023-04-08T05:53:21.734166
| 2021-04-26T03:45:46
| 2021-04-26T03:45:46
| 295,429,631
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,475
|
cpp
|
0506findRelativeRanks.cpp
|
/* 给出 N 名运动员的成绩,找出他们的相对名次并授予前三名对应的奖牌。前三名运动员将会被分别授予 “金牌”,“银牌” 和“ 铜牌”("Gold Medal", "Silver Medal", "Bronze Medal")。
(注:分数越高的选手,排名越靠前。)
示例 1:
输入: [5, 4, 3, 2, 1]
输出: ["Gold Medal", "Silver Medal", "Bronze Medal", "4", "5"]
解释: 前三名运动员的成绩为前三高的,因此将会分别被授予 “金牌”,“银牌”和“铜牌” ("Gold Medal", "Silver Medal" and "Bronze Medal").
余下的两名运动员,我们只需要通过他们的成绩计算将其相对名次即可。
提示:
N 是一个正整数并且不会超过 10000。
所有运动员的成绩都不相同。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/relative-ranks
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution {
public:
string to_str(int n)
{
if(n==1) return "Gold Medal";
if(n==2) return "Silver Medal";
if(n==3) return "Bronze Medal";
return to_string(n);
}
vector<string> findRelativeRanks(vector<int>& nums) {
int n=nums.size();
vector<string> res(n);
map<int,int> mp;
for(int i=0;i<nums.size();i++) mp[nums[i]]=i;
for(auto it:mp)
res[it.second]=to_str(n--);
return res;
}
}; */
/* 不要想得太复杂 */
|
10f7388b500f83ba87485316b45c3e854f2f1892
|
6aa76d098a8fce91604385bc942ac4095fc58ffd
|
/fonctons.h
|
e7ebcfac0e3b4f06c7b02855a27a0668c1a693a9
|
[] |
no_license
|
BluntBlowin/Parallel-Convolution
|
496e2ef83e3758ddbf49004badd90b589ddd6a18
|
cbddac121101b9f3b7b23ca1c8f410581ad13931
|
refs/heads/master
| 2020-06-09T16:33:20.410345
| 2019-06-24T08:58:02
| 2019-06-24T08:58:02
| 193,468,963
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 424
|
h
|
fonctons.h
|
#include <omp.h>
#include <iostream>
#include <ctime>
#include <cmath>
#include <stdio.h>
#include <stdlib.h>
void afficher(int **matrix,int rows,int cols);
int **convolute(int **matrix,int rows,int cols,int **mask,int rowConvol,int colConvol);
void sequentialConvolutionSinglePass();
void parallelConvolutionFirstVersion();
void criticalSection();
int finalParallelVersion();
int firstVersion();
|
bbfafdd7305aa4cb709ab89a2f02fcfb21b104e7
|
271a57344dcb49a80feae682ecc1d39f991eec81
|
/src/provider/OW_NamespaceProviderIFC.hpp
|
e88e8911e73f9da9082d480b0cf17b68177ec9a2
|
[
"BSD-3-Clause"
] |
permissive
|
kkaempf/openwbem
|
b16f7b8f0db6c1dbe1ee0467f7ab1b543253ea35
|
b923c1fffd0e7f5489843c8c3b3850c50880ab9b
|
refs/heads/main
| 2023-03-16T00:41:34.967003
| 2023-02-21T06:59:50
| 2023-02-21T06:59:50
| 5,981,070
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,937
|
hpp
|
OW_NamespaceProviderIFC.hpp
|
/*******************************************************************************
* Copyright (C) 2001-2004 Novell, 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 Novell, 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 Novell, Inc. OR THE 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 OW_NAMESPACEPROVIDER_IFC_HPP_INCLUDE_GUARD_
#define OW_NAMESPACEPROVIDER_IFC_HPP_INCLUDE_GUARD_
#include "OW_config.h"
#include "OW_ProviderBaseIFC.hpp"
#include "OW_ProviderFwd.hpp"
#include "OW_CommonFwd.hpp"
#include "OW_IfcsFwd.hpp"
#include "OW_WBEMFlags.hpp"
namespace OW_NAMESPACE
{
class OW_PROVIDER_API NamespaceProviderIFC: public ProviderBaseIFC
{
public:
virtual ~NamespaceProviderIFC();
/**
* Called after construction
*/
void init(const ProviderEnvironmentIFCRef& env);
/**
* Called during cimom shutdown.
*/
virtual void shutdown(const ProviderEnvironmentIFCRef& env);
virtual CIMQualifierType getQualifierType(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const String& qualifierName) = 0;
#ifndef OW_DISABLE_QUALIFIER_DECLARATION
virtual void enumQualifierTypes(
const ProviderEnvironmentIFCRef& env,
const String& ns,
CIMQualifierTypeResultHandlerIFC& result) = 0;
virtual void deleteQualifierType(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const String& qualName) = 0;
virtual void setQualifierType(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMQualifierType& qt) = 0;
#endif // #ifndef OW_DISABLE_QUALIFIER_DECLARATION
virtual CIMClass getClass(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const String& className,
WBEMFlags::ELocalOnlyFlag localOnly,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
WBEMFlags::EIncludeClassOriginFlag includeClassOrigin,
const StringArray* propertyList) = 0;
#ifndef OW_DISABLE_SCHEMA_MANIPULATION
virtual CIMClass deleteClass(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const String& className) = 0;
virtual void createClass(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMClass& cimClass) = 0;
virtual CIMClass modifyClass(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMClass& cc) = 0;
#endif // #ifndef OW_DISABLE_SCHEMA_MANIPULATION
virtual void enumClasses(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const String& className,
CIMClassResultHandlerIFC& result,
WBEMFlags::EDeepFlag deep,
WBEMFlags::ELocalOnlyFlag localOnly,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
WBEMFlags::EIncludeClassOriginFlag includeClassOrigin) = 0;
virtual void enumClassNames(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const String& className,
StringResultHandlerIFC& result,
WBEMFlags::EDeepFlag deep) = 0;
virtual void enumInstances(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const String& className,
CIMInstanceResultHandlerIFC& result,
WBEMFlags::EDeepFlag deep,
WBEMFlags::ELocalOnlyFlag localOnly,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
WBEMFlags::EIncludeClassOriginFlag includeClassOrigin,
const StringArray* propertyList,
WBEMFlags::EEnumSubclassesFlag enumSubclasses) = 0;
virtual void enumInstanceNames(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const String& className,
CIMObjectPathResultHandlerIFC& result,
WBEMFlags::EDeepFlag deep) = 0;
virtual CIMInstance getInstance(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& instanceName,
WBEMFlags::ELocalOnlyFlag localOnly,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
WBEMFlags::EIncludeClassOriginFlag includeClassOrigin,
const StringArray* propertyList) = 0;
#ifndef OW_DISABLE_INSTANCE_MANIPULATION
virtual CIMInstance deleteInstance(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& cop) = 0;
virtual CIMObjectPath createInstance(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMInstance& ci) = 0;
virtual CIMInstance modifyInstance(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMInstance& modifiedInstance,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
const StringArray* propertyList) = 0;
#if !defined(OW_DISABLE_PROPERTY_OPERATIONS)
virtual void setProperty(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& name,
const String& propertyName,
const CIMValue& cv) = 0;
#endif // #if !defined(OW_DISABLE_PROPERTY_OPERATIONS)
#endif // #ifndef OW_DISABLE_INSTANCE_MANIPULATION
#if !defined(OW_DISABLE_PROPERTY_OPERATIONS)
virtual CIMValue getProperty(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& name,
const String& propertyName) = 0;
#endif // #if !defined(OW_DISABLE_PROPERTY_OPERATIONS)
virtual CIMValue invokeMethod(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& path,
const String& methodName,
const CIMParamValueArray& inParams,
CIMParamValueArray& outParams) = 0;
#ifndef OW_DISABLE_ASSOCIATION_TRAVERSAL
virtual void associatorNames(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& path,
CIMObjectPathResultHandlerIFC& result,
const String& assocClass,
const String& resultClass,
const String& role,
const String& resultRole) = 0;
virtual void associators(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& path,
CIMInstanceResultHandlerIFC& result,
const String& assocClass,
const String& resultClass,
const String& role,
const String& resultRole,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
WBEMFlags::EIncludeClassOriginFlag includeClassOrigin,
const StringArray* propertyList) = 0;
virtual void associatorsClasses(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& path,
CIMClassResultHandlerIFC& result,
const String& assocClass,
const String& resultClass,
const String& role,
const String& resultRole,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
WBEMFlags::EIncludeClassOriginFlag includeClassOrigin,
const StringArray* propertyList) = 0;
virtual void referenceNames(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& path,
CIMObjectPathResultHandlerIFC& result,
const String& resultClass,
const String& role) = 0;
virtual void references(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& path,
CIMInstanceResultHandlerIFC& result,
const String& resultClass,
const String& role,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
WBEMFlags::EIncludeClassOriginFlag includeClassOrigin,
const StringArray* propertyList) = 0;
virtual void referencesClasses(
const ProviderEnvironmentIFCRef& env,
const String& ns,
const CIMObjectPath& path,
CIMClassResultHandlerIFC& result,
const String& resultClass,
const String& role,
WBEMFlags::EIncludeQualifiersFlag includeQualifiers,
WBEMFlags::EIncludeClassOriginFlag includeClassOrigin,
const StringArray* propertyList) = 0;
#endif // #ifndef OW_DISABLE_ASSOCIATION_TRAVERSAL
virtual void execQuery(
const ProviderEnvironmentIFCRef& env,
const String& ns,
CIMInstanceResultHandlerIFC& result,
const String &query,
const String& queryLanguage) = 0;
};
} // end namespace OW_NAMESPACE
#endif // OW_NAMESPACEPROVIDER_IFC_HPP_INCLUDE_GUARD_
|
d1b089d9a1d193a342d2f0c9df8a762fc9016a10
|
e20087104206b48e86cdf135145cd8d2f3c665e3
|
/__drivers/gv_gameplay3d_driver/gv_hook_gameplay3d_rendering.hpp
|
32af8c08ba5db7574b256e07ca9cae19386e3f33
|
[
"MIT"
] |
permissive
|
dragonsn/gv_game_engine
|
5929ecdadf0403ac68b74130ecf9f72b62ddd624
|
92595a63148d15a989859c93223a55168a1861b5
|
refs/heads/master
| 2022-11-19T01:48:46.783547
| 2022-11-08T10:24:45
| 2022-11-08T10:24:45
| 159,043,827
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 20,805
|
hpp
|
gv_hook_gameplay3d_rendering.hpp
|
#include "gv_framework/renderer/gv_shader.h"
namespace gv
{
bool gv_hook_gameplay3d::drawSceneNode(Node* node)
{
GV_PROFILE_EVENT(gv_hook_gameplay3d_drawSceneNode, 0);
gv_com_graphic* com =
gvt_cast< gv_com_graphic >((gv_object*)node->getUserPointer());
// terrain?
if (node->getTerrain() && !m_hide_terrain)
{
node->getTerrain()->draw();
return true;
}
// draw the model
Model* model = node->getModel();
if (!model)
return false;
if (com)
{
com->set_visible(true);
updateMaterials(com, model);
};
model->draw();
return true;
}
void gv_hook_gameplay3d::updateCamera(gv_com_camera* c)
{
static bool not_override_camera = true;
m_current_camera = c;
if (c && _camera && not_override_camera)
{
_camera->setNearPlane(c->get_near_clip());
_camera->setFarPlane(c->get_far_clip());
_camera->setAspectRatio(c->get_ratio());
_camera->setFieldOfView(c->get_fov());
gv_matrix44 m;
gv_vector3 pos;
m = c->get_world_rotation();
pos = c->get_world_position();
_cameraNode->set(Vector3(1, 1, 1), gv_gp_helper::to_gp(m),
gv_gp_helper::to_gp(pos));
// gv_string_tmp s;
// s<<"camera pos: "<<pos;
// s<<"-----camera rotation:"<< m;
// gv_global::debug_draw->draw_string(*s, gv_vector2i(20,140),
// gv_color::BLUE_B());
if (_sky)
{
_sky->setTranslationX(_cameraNode->getTranslationX());
_sky->setTranslationZ(_cameraNode->getTranslationZ());
}
};
};
template < class type_of_vector >
void gv_gp_add_vertex(gvt_array< gv_float >& vertices, const type_of_vector& v)
{
for (int i = 0; i < type_of_vector::vector_size; i++)
{
vertices.push_back((gv_float)v[i]);
}
};
bool gv_hook_gameplay3d::updateMaterialParam(gv_material* mat_gv,
Material* material)
{
// material->getParameter("u_ambientColor")->setValue(Vector3(2, 0, 0));
gv_bool is_editor = gv_global::framework_config.is_editor;
for (int i = 0; i < mat_gv->m_material_float_params.size(); i++)
{
gv_material_param_float4& param = mat_gv->m_material_float_params[i];
if ((is_editor || !param.m_synced) && param.m_count &&
!param.m_id.is_empty())
{
param.m_synced = true;
MaterialParameter* param_gp = material->getParameter(*param.m_id);
if (!param_gp)
{
GVM_WARNING("failed to find parameter " << param.m_id);
}
else
{
switch (param.m_count)
{
case 1:
param_gp->setValue(param.m_data.x);
break;
case 2:
param_gp->setValue(Vector2(param.m_data.x, param.m_data.y));
break;
case 3:
param_gp->setValue(
Vector3(param.m_data.x, param.m_data.y, param.m_data.z));
break;
case 4:
param_gp->setValue(Vector4(param.m_data.x, param.m_data.y,
param.m_data.z, param.m_data.w));
break;
default:
GV_ASSERT(0);
break;
}
}
}
}
for (int i = 0; i < mat_gv->m_material_textures.size(); i++)
{
Texture::Sampler* sampler;
gv_material_tex& tex = mat_gv->m_material_textures[i];
gv_string_tmp tex_file;
tex_file = tex.m_file_name;
if (tex.m_texture)
tex_file = *tex.m_texture->get_file_name();
if ((is_editor || !tex.m_synced) && !tex_file.is_empty_string())
{
tex.m_synced = true;
MaterialParameter* param_gp = material->getParameter(*tex.m_id);
if (!param_gp)
{
GVM_WARNING("failed to find sample " << tex.m_id);
}
else
{
sampler = param_gp->setValue(*getCachedTextureName(tex_file), true);
if (tex.m_use_tiling)
sampler->setWrapMode(Texture::REPEAT, Texture::REPEAT);
else
sampler->setWrapMode(Texture::CLAMP, Texture::CLAMP);
sampler->setFilterMode(Texture::LINEAR, Texture::LINEAR);
}
}
}
return true;
};
bool gv_hook_gameplay3d::precacheMaterial(gv_material* material_gv,
Material*& material)
{
// Create the material for the cube model and assign it to the first mesh
// part.
GV_PROFILE_EVENT(gv_hook_gameplay3d_precacheMaterial, 0);
gv_cache_material_gameplay* cache =
material_gv->get_hardware_cache< gv_cache_material_gameplay >();
if (cache)
{
material = cache->m_material_gp;
updateMaterialParam(material_gv, material);
return false;
}
if (material_gv->get_file_name().is_empty_string())
{
material_gv->set_file_name(
*gv_game_engine::static_get()->get_default_material()->get_file_name());
}
cache = material_gv->get_sandbox()
->create_nameless_object< gv_cache_material_gameplay >();
static int use_material_table = 1;
if (use_material_table)
{
Material** pparent_material =
_materialTable.find(material_gv->get_file_name());
Material* parent_material;
;
if (!pparent_material)
{
gv_string_tmp fn = *material_gv->get_file_name();
fn.replace_all("\\", "/");
parent_material = Material::create(*fn);
_materialTable.add(material_gv->get_file_name(), parent_material);
}
else
{
parent_material = *pparent_material;
}
// we only use the first effect.
Effect* peffect =
parent_material->getTechniqueByIndex(0)->getPassByIndex(0)->getEffect();
NodeCloneContext context;
material = parent_material->clone(context);
// material=Material::create(peffect);
// material->setParent(parent_material);
}
else
{
gv_string_tmp fn = *material_gv->get_file_name();
fn.replace_all("\\", "/");
material = Material::create(*fn);
}
cache->m_material_gp = material;
material_gv->set_hardware_cache(cache);
updateMaterialParam(material_gv, material);
return true;
};
Mesh* gv_hook_gameplay3d::precacheStaticMesh(gv_static_mesh* mesh_gv)
{
GV_PROFILE_EVENT(gv_hook_gameplay3d_precacheStaticMesh, 0);
gv_cache_mesh_gameplay* cache =
gvt_cast< gv_cache_mesh_gameplay >(mesh_gv->get_hardware_cache());
if (!cache)
cache = mesh_gv->get_sandbox()
->create_nameless_object< gv_cache_mesh_gameplay >();
else
return cache->m_mesh_gp;
int vertex_count = mesh_gv->get_nb_vertex();
GV_ASSERT(vertex_count && "empty mesh!!");
GV_ASSERT(vertex_count < 65535 && "gamplay3d don't support very big mesh !!");
gv_vertex_buffer* vb = mesh_gv->get_vb();
gvt_array_cached< VertexFormat::Element, 32 > elements;
gv_int vertex_size = 3;
elements.push_back(VertexFormat::Element(VertexFormat::POSITION, 3));
if (vb->m_raw_normal.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::NORMAL, 3));
vertex_size += 3;
}
if (vb->m_raw_binormal.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::BINORMAL, 3));
vertex_size += 3;
}
if (vb->m_raw_tangent.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TANGENT, 3));
vertex_size += 3;
}
if (vb->m_raw_texcoord0.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TEXCOORD0, 2));
vertex_size += 2;
}
if (vb->m_raw_texcoord1.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TEXCOORD1, 2));
vertex_size += 2;
}
if (vb->m_raw_texcoord2.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TEXCOORD2, 2));
vertex_size += 2;
}
if (vb->m_raw_texcoord3.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TEXCOORD3, 2));
vertex_size += 2;
}
if (vb->m_raw_texcoord4.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TEXCOORD4, 2));
vertex_size += 2;
}
if (vb->m_raw_texcoord5.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TEXCOORD5, 2));
vertex_size += 2;
}
if (vb->m_raw_texcoord6.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TEXCOORD6, 2));
vertex_size += 2;
}
if (vb->m_raw_texcoord7.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::TEXCOORD7, 2));
vertex_size += 2;
}
if (vb->m_raw_blend_index.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::BLENDINDICES, 4));
vertex_size += 4;
}
if (vb->m_raw_blend_weight.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::BLENDWEIGHTS, 4));
vertex_size += 4;
}
if (vb->m_raw_color.size())
{
elements.push_back(VertexFormat::Element(VertexFormat::COLOR, 3));
vertex_size += 3;
}
Mesh* mesh = Mesh::createMesh(
VertexFormat(elements.get_data(), (unsigned int)elements.size()),
vertex_count, false);
if (mesh == NULL)
{
GVM_ERROR("Failed to create mesh.");
return NULL;
}
// let us set the vertex buffer !
gvt_array< gv_float > big_vertices;
big_vertices.reserve(vertex_size * vertex_count);
for (int i = 0; i < vertex_count; i++)
{
gv_gp_add_vertex(big_vertices, vb->m_raw_pos[i]);
if (vb->m_raw_normal.size())
{
gv_gp_add_vertex(big_vertices, vb->m_raw_normal[i]);
}
if (vb->m_raw_binormal.size())
{
gv_gp_add_vertex(big_vertices, vb->m_raw_binormal[i]);
}
if (vb->m_raw_tangent.size())
{
gv_gp_add_vertex(big_vertices, vb->m_raw_tangent[i]);
}
if (vb->m_raw_texcoord0.size())
{
gv_vector2 v = vb->m_raw_texcoord0[i];
v.y = 1.f - v.y;
gv_gp_add_vertex(big_vertices, v);
}
if (vb->m_raw_texcoord1.size())
{
gv_vector2 v = vb->m_raw_texcoord1[i];
v.y = 1.f - v.y;
gv_gp_add_vertex(big_vertices, v);
}
if (vb->m_raw_texcoord2.size())
{
gv_vector2 v = vb->m_raw_texcoord2[i];
v.y = 1.f - v.y;
gv_gp_add_vertex(big_vertices, v);
}
if (vb->m_raw_texcoord3.size())
{
gv_vector2 v = vb->m_raw_texcoord3[i];
v.y = 1.f - v.y;
gv_gp_add_vertex(big_vertices, v);
}
if (vb->m_raw_texcoord4.size())
{
gv_vector2 v = vb->m_raw_texcoord4[i];
v.y = 1.f - v.y;
gv_gp_add_vertex(big_vertices, v);
}
if (vb->m_raw_texcoord5.size())
{
gv_vector2 v = vb->m_raw_texcoord5[i];
v.y = 1.f - v.y;
gv_gp_add_vertex(big_vertices, v);
}
if (vb->m_raw_texcoord6.size())
{
gv_vector2 v = vb->m_raw_texcoord6[i];
v.y = 1.f - v.y;
gv_gp_add_vertex(big_vertices, v);
}
if (vb->m_raw_texcoord7.size())
{
gv_vector2 v = vb->m_raw_texcoord7[i];
v.y = 1.f - v.y;
gv_gp_add_vertex(big_vertices, v);
}
if (vb->m_raw_blend_index.size())
{
gv_gp_add_vertex(big_vertices, vb->m_raw_blend_index[i]);
}
if (vb->m_raw_blend_weight.size())
{
gv_gp_add_vertex(big_vertices, vb->m_raw_blend_weight[i]);
}
if (vb->m_raw_color.size())
{
gv_gp_add_vertex(big_vertices, vb->m_raw_color[i]);
}
}
GV_ASSERT(big_vertices.size() == vertex_size * vertex_count);
mesh->setVertexData(big_vertices.get_data(), 0, vertex_count);
// let's set index buffer
gv_index_buffer* ib = mesh_gv->m_index_buffer;
gvt_array< gv_ushort > ib_16;
ib_16 = ib->m_raw_index_buffer;
if (mesh_gv->get_nb_segment())
{
for (int i = 0; i < mesh_gv->get_nb_segment(); i++)
{
gv_mesh_segment* seg = mesh_gv->get_segment(i);
MeshPart* meshPart =
mesh->addPart(Mesh::TRIANGLES, Mesh::INDEX16,
seg->m_index_size /*ib_16.size()*/, false);
meshPart->setIndexData(ib_16.get_data() + seg->m_start_index, 0,
seg->m_index_size);
}
}
else
{
MeshPart* meshPart =
mesh->addPart(Mesh::TRIANGLES, Mesh::INDEX16, ib_16.size(), false);
meshPart->setIndexData(ib_16.get_data(), 0, ib_16.size());
}
mesh->setBoundingBox(gv_gp_helper::to_gp(mesh_gv->get_bbox()));
mesh->setBoundingSphere(gv_gp_helper::to_gp(mesh_gv->get_bsphere()));
cache->m_mesh_gp = mesh;
mesh_gv->set_hardware_cache(cache);
return mesh;
}
gv_string_tmp gv_hook_gameplay3d::getCachedTextureName(gv_texture* tex)
{
return getCachedTextureName(gv_text(tex->get_file_name()));
};
gv_string_tmp gv_hook_gameplay3d::getCachedTextureName(const char* file_name)
{
gv_string_tmp name;
gv_sandbox* sandbox = gv_global::sandbox_mama->get_base_sandbox();
name = *gv_framework_config::get_texture_cache_path();;
name += sandbox->get_file_manager()->get_main_name(file_name);
name += ".dds";
name = sandbox->logical_resource_path_to_absolute_path(name);
return name;
};
void gv_hook_gameplay3d::precacheTerrain(class gv_com_terrain_roam* terrain)
{
GV_PROFILE_EVENT(gv_hook_gameplay3d_precacheTerrain, 0);
if (!terrain->build_static_mesh())
{
clearScene();
if (terrain->get_resource())
{
// Load scene
clearScene();
_scene = Scene::load(*terrain->get_resource()->get_file_name());
_terrain = _scene->findNode("terrain");
_sky = _scene->findNode("sky");
_terrain->setUserPointer(terrain);
terrain->set_user_data(_terrain);
Terrain* terrain_gp = _terrain->getTerrain();
if (terrain_gp)
{
gvt_array< gv_float > a;
HeightField* height_map = terrain_gp->_heightfield;
a.init(height_map->getArray(),
height_map->getColumnCount() * height_map->getRowCount());
a.for_each(gvf_mul_assign< gv_float >(terrain_gp->_localScale.y));
terrain->init(a, height_map->getRowCount(),
height_map->getColumnCount());
}
createCamera();
}
}
}
void gv_hook_gameplay3d::addRenderable(gv_component* in_com)
{
GV_ASSERT(in_com);
GV_PROFILE_EVENT(gv_hook_gameplay3d_addRenderable, (gv_int_ptr)in_com);
m_renderable_components.push_back(in_com);
if (!in_com->get_entity()->get_world())
{
return;
}
gv_com_graphic* com = gvt_cast< gv_com_graphic >(in_com);
gv_com_terrain_roam* terrain = gvt_cast< gv_com_terrain_roam >(in_com);
if (terrain)
{
precacheTerrain(terrain);
return;
}
gv_com_static_mesh* com_static_mesh = gvt_cast< gv_com_static_mesh >(com);
gv_com_skeletal_mesh* com_skeletal_mesh = gvt_cast< gv_com_skeletal_mesh >(com);
gv_static_mesh* mesh_gv = com->get_resource< gv_static_mesh >();
gv_skeletal_mesh* sk_mesh_gv = com->get_resource< gv_skeletal_mesh >();
if (!com->get_material())
{
return;
}
if (!mesh_gv && sk_mesh_gv)
mesh_gv = sk_mesh_gv->get_t_mesh();
if (!mesh_gv)
return;
// to support terrain later
if (sk_mesh_gv)
{
sk_mesh_gv->optimize_bones(GP_MAX_GPU_SKIN_BONE_NUMBER);
}
Mesh* mesh = precacheStaticMesh(mesh_gv);
Model* model = Model::create(mesh);
GV_ASSERT(model);
// to handle skeletal mesh
if (sk_mesh_gv)
{
gv_skeletal* skeletal = sk_mesh_gv->get_skeletal();
MeshSkin* skin = new MeshSkin();
if (!sk_mesh_gv->m_bone_mapping.size())
{
GV_ASSERT(skeletal->get_nb_bone() <= GP_MAX_GPU_SKIN_BONE_NUMBER);
skin->setJointCount(skeletal->get_nb_bone());
}
else
{
GV_ASSERT(sk_mesh_gv->m_nb_bone_after_map <= GP_MAX_GPU_SKIN_BONE_NUMBER);
skin->setJointCount(sk_mesh_gv->m_nb_bone_after_map);
}
model->setSkin(skin);
}
updateMaterials(com, model);
// create node for the entity .
gv_string_tmp node_name;
const gv_entity* entity = com->get_entity();
node_name << com->get_entity()->get_name();
Node* node = _scene->addNode(*node_name);
node->setModel(model);
node->setUserPointer(com);
gv_matrix44 tm = entity->get_tm();
gv_matrix44 m;
gv_vector3 pos;
tm.get_trans(pos);
tm.get_rotation(m);
node->set(gv_gp_helper::to_gp(entity->get_scale()), gv_gp_helper::to_gp(m),
gv_gp_helper::to_gp(pos));
com->set_user_data(node);
};
bool gv_hook_gameplay3d::updateMaterials(gv_com_graphic* com, Model* model)
{
GV_PROFILE_EVENT(gv_hook_gameplay3d_updateMaterials, 0);
Material* materialClone;
gv_static_mesh* mesh_gv = com->get_resource< gv_static_mesh >();
gv_skeletal_mesh* sk_mesh_gv = com->get_resource< gv_skeletal_mesh >();
if (sk_mesh_gv)
mesh_gv = sk_mesh_gv->get_t_mesh();
bool updated = precacheMaterial(com->get_material(), materialClone);
if (updated || (materialClone && model->getMaterial() != materialClone))
{
model->setMaterial(materialClone);
}
if (com->get_material() && com->get_material()->get_nb_sub_material())
{
for (int i = 0; i < com->get_material()->get_nb_sub_material(); ++i)
{
gv_material* material = com->get_sub_material(i);
if (material)
{
updated = precacheMaterial(material, materialClone);
if (updated ||
(materialClone && model->getMaterial(i) != materialClone))
model->setMaterial(materialClone, i);
}
}
}
else if (mesh_gv->get_nb_segment())
{
for (int i = 0; i < mesh_gv->get_nb_segment(); ++i)
{
gv_material* material = mesh_gv->get_segment(i)->m_material;
gv_mesh_segment* seg = mesh_gv->get_segment(i);
if (material)
{
updated = precacheMaterial(material, materialClone);
if (seg->m_is_hidden)
{
materialClone = NULL;
model->setMaterial(materialClone, i);
}
else if (updated ||
(materialClone && model->getMaterial(i) != materialClone))
model->setMaterial(materialClone, i);
}
}
}
return true;
};
void gv_hook_gameplay3d::removeRenderable(gv_component* component)
{
GV_PROFILE_EVENT(gv_hook_gameplay3d_removeRenderable, (gv_int_ptr)component);
Node* node = (Node*)component->get_user_data();
_scene->removeNode(node);
component->set_user_data(NULL);
m_renderable_components.remove(component);
};
void gv_hook_gameplay3d::render(float elapsedTime)
{
// Clear the color and depth buffers.
GV_PROFILE_EVENT(gv_gameplay_hook__render, 0);
clear(CLEAR_COLOR_DEPTH,
gv_gp_helper::to_gp(gv_colorf(gv_global::rnd_opt.m_clear_color).v),
1.0f, 0);
drawScene();
gvt_hash_map< gv_string, Form* >::iterator it;
it = _formTable.begin();
while (it != _formTable.end())
{
if (!it.is_empty())
{
Form* f = (*it);
if (f->isEnabled())
f->draw();
}
++it;
}
if (!gv_global::rnd_opt.m_no_debug_draw)
{
gv_debug_renderer_gameplay3d::static_get()->render();
}
}
void gv_hook_gameplay3d::drawScene()
{
GV_PROFILE_EVENT(gv_hook_gameplay3d_drawScene, 0);
if (_scene)
{
for (unsigned int i = 0; i < QUEUE_COUNT; ++i)
_renderQueues[i].clear();
_scene->visit(this, &gv_hook_gameplay3d::buildRenderQueues);
m_debug_string << "visible opaque:" << _renderQueues[QUEUE_OPAQUE].size();
for (unsigned int i = 0; i < QUEUE_COUNT; ++i)
{
std::vector< Node* >& queue = _renderQueues[i];
for (size_t j = 0, ncount = queue.size(); j < ncount; ++j)
{
drawSceneNode(queue[j]);
}
}
//_scene->visit(this, &gv_hook_gameplay3d::drawSceneNode);
gv_debug_renderer_gameplay3d::static_get()->set_view_projection_matrix_3d(
_camera->getViewProjectionMatrix());
}
}
void gv_hook_gameplay3d::reloadShaderCache()
{
Effect::clearShaderCache();
_materialTable.clear();
}
bool gv_hook_gameplay3d::buildRenderQueues(Node* node)
{
GV_PROFILE_EVENT(gv_hook_gameplay3d__buildRenderQueues, 0);
gv_com_graphic* com =
gvt_cast< gv_com_graphic >((gv_object*)node->getUserPointer());
// update matrix
if (com)
{
// make it rendered, so the animation & other controller get updated .
const gv_entity* entity = com->get_entity();
gv_matrix44 tm = entity->get_tm();
gv_matrix44 m;
gv_vector3 pos;
tm.get_trans(pos);
tm.get_rotation(m);
node->set(gv_gp_helper::to_gp(entity->get_scale()), gv_gp_helper::to_gp(m),
gv_gp_helper::to_gp(pos));
}
if (node->getTerrain())
{
_renderQueues[QUEUE_TERRAIN].push_back(node);
return true;
}
Model* model = node->getModel();
if (model)
{
// Perform view-frustum culling for this node
if (__viewFrustumCulling &&
!node->getBoundingSphere().intersects(
_scene->getActiveCamera()->getFrustum()))
return true;
// update bone matrices
if (model->getSkin() && com)
{
const gv_entity* entity = com->get_entity();
// gv_matrix44 root_tm=entity->get_tm();
gvt_array_cached< gv_vector4, 64 > matrix;
gv_com_skeletal_mesh* com_sk_mesh = gvt_cast< gv_com_skeletal_mesh >(
(gv_object*)model->getNode()->getUserPointer());
GV_ASSERT(com_sk_mesh);
gv_skeletal_mesh* skeletal_mesh = com_sk_mesh->get_skeletal_mesh();
gv_skeletal* skeletal = com_sk_mesh->get_render_skeletal();
if (!skeletal_mesh->m_bone_mapping.size())
{
GV_ASSERT(skeletal->get_nb_bone() <= GP_MAX_GPU_SKIN_BONE_NUMBER);
matrix.resize(skeletal->get_nb_bone() * 3);
for (int i = 0; i < skeletal->get_nb_bone(); i++)
{
gv_bone& bone = skeletal->m_bones[i];
gv_matrix44 m = bone.m_matrix_model_to_bone * bone.m_tm;
// m.set_identity();
// m*=gv_matrix44::get_rotation_by_z(gv_global::time->get_sec_from_start()*i);//test;
m.transpose_self();
matrix[i * 3 + 0] = m.av4[0];
matrix[i * 3 + 1] = m.av4[1];
matrix[i * 3 + 2] = m.av4[2];
}
}
else
{
GV_ASSERT(skeletal_mesh->m_nb_bone_after_map <=
GP_MAX_GPU_SKIN_BONE_NUMBER);
matrix.resize(skeletal_mesh->m_nb_bone_after_map * 3);
for (int i = 0; i < skeletal_mesh->m_nb_bone_after_map; i++)
{
gv_bone& bone =
skeletal->m_bones[skeletal_mesh->m_bone_inv_mapping[i]];
gv_matrix44 m = bone.m_matrix_model_to_bone * bone.m_tm;
m.transpose_self();
matrix[i * 3 + 0] = m.av4[0];
matrix[i * 3 + 1] = m.av4[1];
matrix[i * 3 + 2] = m.av4[2];
}
}
model->getSkin()->setMatrixPalette((gv_float*)matrix.get_data());
}
// Determine which render queue to insert the node into
std::vector< Node* >* queue;
if (node->hasTag("transparent"))
queue = &_renderQueues[QUEUE_TRANSPARENT];
else
queue = &_renderQueues[QUEUE_OPAQUE];
queue->push_back(node);
}
return true;
}
}
|
2de9434e5f0a68434ec5d65dc05091c568b948c7
|
ca6b8c02520075f6170b7ed94accec7d2f6825c5
|
/Test_Scores.cpp
|
68b85308a09e16844e1e2ca84ef8cb6a56313fce
|
[] |
no_license
|
Offram/File-Handling
|
832734daa4500fb7e1cd574caa00daacc34e0aa2
|
e79472e9500f383fdc3a3fb70ae1f8264e69ce8d
|
refs/heads/master
| 2020-03-17T09:45:01.361972
| 2016-09-24T04:00:23
| 2016-09-24T04:00:23
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,741
|
cpp
|
Test_Scores.cpp
|
//Input-Output File Handling
// Test Scores Program
//Author is Moses Arocha
#include<iostream>
#include<fstream>
#include<string>
#include<cstdlib>
using namespace std;
//Variables
string stars(string text);
//Declare Functions that will be used
void display_inventory();
void add_item();
void add_function();
//Display Input File Data
void display_inventory()
{
char input[800]; //creates a character array for input file
fstream inFile; //creates an input file object
inFile.open("Test_Scores.txt"); //Open the input file
if(inFile.fail())
{
cout << " File not found - exiting program" << endl;
system("PAUSE");
exit(1);
}
cout << "\t\t\t Northside Grade Book 2015 \n\n";
cout << "\t\First Last ID Test 1 Test 2 Test 3 Test 4 Test 5 \n";
cout << "\t\---------------------------------------------------------------\n";
while (!inFile.fail()) //reads data from file until file input fails (the end)
{
inFile.getline(input,800); //read one line at a time
cout << "\t" << input << "\n" << endl;
}
inFile.close(); //close the input file
cout << "\n\n Press [M or m] to return to Main Menu: ";
cin.ignore();
cin.get();
}
void display_total()
{
char input[800]; //creates a character array for input file
fstream inFile; //creates an input file object
inFile.open("TestScores.txt"); //Open the input file, the name of the file is within quotations
// each name variable coincides with the variable in the text files
int Test1;
int Test2;
int Test3;
int Test4;
int Test5;
int userID;
int fakeID = 1;
int TestAverage;
string firstName;
string lastName;
cout << "\t\ Holmes High School Grade Book \n\n";
cout << " First Last Test 1 Test 2 Test 3 Test 4 Test 5 Test Average\n";
cout << "---------------------------------------------------------------------------\n";
while (!inFile.fail()) //reads data from file until file input fails (the end)
{
inFile.getline(input,800); //read one line at a time
inFile >> firstName >> lastName >> userID >> Test1 >> Test2 >> Test3 >> Test4 >> Test5;
TestAverage = (Test1 + Test2 + Test3 + Test4 + Test5) /5;
if (userID == fakeID)
{
break;
}
cout << "\n " << firstName << "\t" << lastName << "\t" << Test1 << "\t" << Test2 << "\t" << Test3 << "\t" << Test4 << "\t" << Test5 << "\t" << TestAverage;
fakeID = userID;
if (TestAverage >= 94)
{
cout << "\n\t\t\t\t\t" << lastName << " has a GPA of 4.0 \n";
}
else if (TestAverage >= 84 && TestAverage < 94)
{
cout << "\n\t\t\t\t\t" <<lastName << " has a GPA of 3.0 \n";
}
else if (TestAverage >= 74 && TestAverage < 84)
{
cout << "\n\t\t\t\t\t" << lastName << " has a GPA of 2.0\n";
}
else
{
cout << "\n\t\t\t\t\t" << lastName << " has a GPA of 1.0\n";
}
}
inFile.close(); //close the input file
cout << "\n\n Press [M or m] to return to Main Menu: ";
cin.ignore();
cin.get();
}
//Add new items to Inventory
void add_Item()
{
// all of the names of the variables conincide with the text file variables
int Test1;
int Test2;
int Test3;
int Test4;
int Test5;
int userID;
string firstName;
string lastName;
cout << "\t\t Adding New Students Into The Grade Book: ";
cout << "\n\n\t Please Enter A New Student First Name: ";
cin >> firstName;
cin.ignore(800,'\n');
cout << "\n\t Enter Enter The Student's Last Name: ";
cin >> lastName;
cin.ignore(800,'\n');
cout << "\n\t Enter The identification Number : ";
cin >> userID;
cin.ignore(800,'\n');
cout << "\n\t Enter The First Test Grade : ";
cin >> Test1;
cin.ignore(800,'\n');
cout << "\n\t Enter The Second Test Grade : ";
cin >> Test2;
cin.ignore(800,'\n');
cout << "\n\t Enter The Third Test Grade : ";
cin >> Test3;
cin.ignore(800,'\n');
cout << "\n\t Enter The Fourth Test Grade : ";
cin >> Test4;
cin.ignore(800,'\n');
cout << "\n\t Enter The Fifth Test Grade : ";
cin >> Test5;
cin.ignore(800,'\n');
ofstream outFile; //Creates an output file object
outFile.open("TestScores.txt", ios::app); //Opens output file,
//include ios::app for adding to file
outFile << firstName << "\t" << lastName << "\t" << userID << "\t" << Test1 << "\t" << Test2 << "\t" << Test3 << "\t" << Test4 << "\t" << Test5 << "\n"; //committs data to file
outFile.close(); //closes
cout << "\n\n New Student '" << firstName << " " << lastName << "' Has Been Added To Grade Book. " << endl;
cout << "\n\n Please Press [M or m] To Return To Main Menu: ";
cin.ignore();
cin.get();
}
int main()
{
int choice; //User Menu Choice
int exit = 0; //Program Exit flag
while (exit == 0)
{
//Display the Inventory Item Menu
cout << "\n\t\t Northside Independent School District Grade Book ";
cout << "\n _____________________________________________________________________________ ";
cout << "\n\n\t\t [1] Display Students In The Database ";
cout << "\n\t\t [2] Add New Students To The Database ";
cout << "\n\t\t [3] Display Students Averages ";
cout << "\n\t\t [4] Exit ";
cout << "\n\n Please Enter Your choice: ";
cin >> choice;
//Check User Menu Choice
switch(choice)
{
case 1: //Display Inventory
system("cls"); //clear screen
display_inventory();
system("cls");
break;
case 2: //Add Item to Inventory
system("cls"); //clear screen
add_Item();
system("cls");
break;
case 3:
system("cls");
display_total();
system("cls");
break;
case 4: //Exit the Program
exit = 1;
cout << "\n";
break;
default:
cout << "\n\n\n Invalid Selection. Press A Key To Return To Main Menu. ";
cin.ignore();
cin.get();
system("cls");
}
if (exit == 1) //Exit flag is set-break the loop)
{ break; }
}
return 0;
}
|
ab274fe6e1fb7182dc984e848fe637f1b6359e14
|
f466b8de2b5179387c7865ab5b65a2b783315cdd
|
/c++ shooter/c++ shooter/WaveManager.cpp
|
be8f49398436f0253fd2fb8c26486f2cdeb32dab
|
[] |
no_license
|
Birmingham-City-Uni/C-Shooter-milestones-Callum-Slowley
|
3443127d66fcd606d04ad741d29f042d2ec16c1d
|
4a6f333c1a0befd4a4c0244c8a6b61e446bdb75b
|
refs/heads/master
| 2023-06-08T15:07:14.613843
| 2021-01-06T23:43:52
| 2021-01-06T23:43:52
| 300,237,996
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 361
|
cpp
|
WaveManager.cpp
|
#include "WaveManager.h"
WaveManager::WaveManager()
{
}
WaveManager::~WaveManager()
{
}
void WaveManager::Update()
{
if ((SDL_GetTicks() - timeSinceLastSpawn) > spawnTimes && nextWave)
{
currentWave++;
for (int i = 0; i < currentWave; i++) {
em->spawning();
nextWave = false;
}
timeSinceLastSpawn = SDL_GetTicks();
}
}
|
98615899e72b51906291159e0071c203e22d34fb
|
5f21f553666ec9b6916e3b68b2b123b4db374393
|
/pitzDaily_Reynolds_stress_R_manual/100/phi
|
3a4cec2093e2c837ede7e7f5caabba67aaa168f6
|
[] |
no_license
|
giacomodelbianco/software
|
9a4f732635adc5ca954eb1dbc3327e7e61a549c3
|
ca2f61c9833650b3d165260b3a445b4a6e29c409
|
refs/heads/master
| 2022-11-15T22:45:43.272727
| 2020-07-08T19:59:52
| 2020-07-08T19:59:52
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 299,664
|
phi
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "100";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
oriented oriented;
internalField nonuniform List<scalar>
24170
(
3.0837e-06
1.04701e-07
2.99001e-06
9.3684e-08
2.92693e-06
6.30706e-08
2.87533e-06
5.1573e-08
2.83221e-06
4.31132e-08
2.79648e-06
3.5703e-08
2.76715e-06
2.93365e-08
2.74354e-06
2.35927e-08
2.72542e-06
1.81159e-08
2.71289e-06
1.25298e-08
2.70592e-06
6.98028e-09
2.70431e-06
1.60318e-09
2.70738e-06
-3.05633e-09
2.71576e-06
-8.37149e-09
2.73118e-06
-1.54125e-08
2.75767e-06
-2.65178e-08
2.80663e-06
-4.9041e-08
-1.14577e-07
2.92114e-06
3.44267e-06
7.9277e-08
3.44425e-06
9.20936e-08
3.43324e-06
7.40687e-08
3.4208e-06
6.39955e-08
3.40777e-06
5.61381e-08
3.3952e-06
4.82614e-08
3.38371e-06
4.08282e-08
3.37343e-06
3.3866e-08
3.3645e-06
2.70565e-08
3.357e-06
2.00345e-08
3.35108e-06
1.29143e-08
3.34757e-06
5.13435e-09
3.34797e-06
-3.44913e-09
3.35352e-06
-1.39057e-08
3.36602e-06
-2.79103e-08
3.38849e-06
-4.90111e-08
3.42611e-06
-8.67375e-08
-1.60056e-07
3.4716e-06
3.67642e-06
6.53746e-08
3.67966e-06
8.88505e-08
3.67557e-06
7.81544e-08
3.67047e-06
6.90917e-08
3.66606e-06
6.05466e-08
3.66284e-06
5.1464e-08
3.661e-06
4.26704e-08
3.66054e-06
3.43106e-08
3.66157e-06
2.60288e-08
3.66412e-06
1.74703e-08
3.66851e-06
8.53012e-09
3.67504e-06
-1.39977e-09
3.68463e-06
-1.30447e-08
3.69807e-06
-2.73447e-08
3.71662e-06
-4.64556e-08
3.74183e-06
-7.42332e-08
3.77329e-06
-1.18232e-07
-1.9132e-07
3.80458e-06
3.93632e-06
5.44409e-08
3.94539e-06
7.97754e-08
3.94971e-06
7.38225e-08
3.95272e-06
6.60748e-08
3.95534e-06
5.79235e-08
3.95797e-06
4.88274e-08
3.96104e-06
3.95946e-08
3.96488e-06
3.04659e-08
3.9697e-06
2.11971e-08
3.97575e-06
1.14211e-08
3.9835e-06
7.78747e-10
3.99311e-06
-1.10179e-08
4.00517e-06
-2.5106e-08
4.02015e-06
-4.23274e-08
4.03878e-06
-6.50952e-08
4.06157e-06
-9.70381e-08
4.08736e-06
-1.44042e-07
-2.14654e-07
4.1107e-06
4.21868e-06
4.2885e-08
4.22963e-06
6.88314e-08
4.23582e-06
6.76295e-08
4.24019e-06
6.17061e-08
4.24415e-06
5.3963e-08
4.24825e-06
4.47216e-08
4.25289e-06
3.49517e-08
4.25839e-06
2.4958e-08
4.26498e-06
1.46114e-08
4.27281e-06
3.57712e-09
4.2823e-06
-8.71443e-09
4.29367e-06
-2.23863e-08
4.30729e-06
-3.87298e-08
4.32366e-06
-5.86995e-08
4.34294e-06
-8.43804e-08
4.36472e-06
-1.18822e-07
4.38602e-06
-1.65343e-07
-2.28829e-07
4.40022e-06
4.51705e-06
3.49255e-08
4.52668e-06
5.91969e-08
4.53426e-06
6.00439e-08
4.54107e-06
5.48864e-08
4.54782e-06
4.72033e-08
4.55473e-06
3.78048e-08
4.56203e-06
2.76447e-08
4.57001e-06
1.69642e-08
4.57895e-06
5.66719e-09
4.58885e-06
-6.33269e-09
4.59987e-06
-1.97449e-08
4.61222e-06
-3.4749e-08
4.62593e-06
-5.24524e-08
4.64111e-06
-7.38839e-08
4.65751e-06
-1.00788e-07
4.67411e-06
-1.35428e-07
4.68875e-06
-1.79986e-07
-2.36738e-07
4.69666e-06
4.84058e-06
2.70614e-08
4.85066e-06
4.91199e-08
4.85891e-06
5.17958e-08
4.8659e-06
4.78961e-08
4.87232e-06
4.07815e-08
4.87855e-06
3.15822e-08
4.88489e-06
2.12947e-08
4.89164e-06
1.02116e-08
4.89915e-06
-1.84536e-09
4.90766e-06
-1.48427e-08
4.91729e-06
-2.93778e-08
4.92828e-06
-4.5746e-08
4.94061e-06
-6.47799e-08
4.9541e-06
-8.73765e-08
4.9681e-06
-1.14789e-07
4.98117e-06
-1.48504e-07
4.99038e-06
-1.89197e-07
-2.3747e-07
4.99115e-06
5.18619e-06
2.04544e-08
5.19534e-06
3.99659e-08
5.2036e-06
4.35358e-08
5.21105e-06
4.04382e-08
5.21811e-06
3.37131e-08
5.22506e-06
2.46282e-08
5.23218e-06
1.41621e-08
5.23968e-06
2.71054e-09
5.24767e-06
-9.84663e-09
5.25631e-06
-2.34981e-08
5.26562e-06
-3.86965e-08
5.27567e-06
-5.58024e-08
5.28635e-06
-7.54722e-08
5.29737e-06
-9.83983e-08
5.30799e-06
-1.25416e-07
5.31682e-06
-1.57334e-07
5.32192e-06
-1.94277e-07
-2.35639e-07
5.3201e-06
5.5553e-06
1.6492e-08
5.56171e-06
3.35629e-08
5.56809e-06
3.7158e-08
5.57441e-06
3.41125e-08
5.58098e-06
2.71429e-08
5.58796e-06
1.76502e-08
5.5955e-06
6.62036e-09
5.60373e-06
-5.51916e-09
5.61269e-06
-1.88098e-08
5.62245e-06
-3.32564e-08
5.63294e-06
-4.91926e-08
5.64408e-06
-6.69399e-08
5.65559e-06
-8.69838e-08
5.66699e-06
-1.09803e-07
5.67739e-06
-1.35815e-07
5.68536e-06
-1.65294e-07
5.68852e-06
-1.97429e-07
-2.31572e-07
5.68448e-06
5.95406e-06
1.22114e-08
5.96208e-06
2.55344e-08
5.97139e-06
2.78513e-08
5.98132e-06
2.41767e-08
5.99156e-06
1.68957e-08
6.00187e-06
7.33667e-09
6.01216e-06
-3.67595e-09
6.02244e-06
-1.5807e-08
6.03273e-06
-2.91037e-08
6.0431e-06
-4.36311e-08
6.05355e-06
-5.96535e-08
6.06403e-06
-7.74164e-08
6.07426e-06
-9.72275e-08
6.08379e-06
-1.19329e-07
6.09178e-06
-1.43805e-07
6.09698e-06
-1.70491e-07
6.09788e-06
-1.98311e-07
-2.26653e-07
6.09296e-06
6.38255e-06
6.47158e-09
6.39439e-06
1.36971e-08
6.40814e-06
1.41046e-08
6.4213e-06
1.10181e-08
6.43316e-06
5.0374e-09
6.44385e-06
-3.35603e-09
6.45382e-06
-1.36421e-08
6.46349e-06
-2.54819e-08
6.47314e-06
-3.87601e-08
6.48292e-06
-5.34146e-08
6.4928e-06
-6.95344e-08
6.50259e-06
-8.72122e-08
6.51192e-06
-1.06557e-07
6.52016e-06
-1.27573e-07
6.52639e-06
-1.50031e-07
6.52931e-06
-1.73404e-07
6.52755e-06
-1.9654e-07
-2.19271e-07
6.52018e-06
5.7397e-06
7.60457e-09
5.73855e-06
1.48474e-08
5.73898e-06
1.36752e-08
5.74234e-06
7.66215e-09
5.74845e-06
-1.07685e-09
5.75644e-06
-1.13493e-08
5.76549e-06
-2.26928e-08
5.77505e-06
-3.50433e-08
5.7848e-06
-4.85142e-08
5.79458e-06
-6.3193e-08
5.80423e-06
-7.91898e-08
5.81355e-06
-9.65304e-08
5.8222e-06
-1.1521e-07
5.82965e-06
-1.35019e-07
5.83519e-06
-1.55564e-07
5.83796e-06
-1.76165e-07
5.83766e-06
-1.96232e-07
-2.15417e-07
5.83381e-06
7.00128e-06
4.48037e-09
7.00591e-06
1.02156e-08
7.00974e-06
9.84619e-09
7.01262e-06
4.7854e-09
7.01539e-06
-3.84722e-09
7.01884e-06
-1.48051e-08
7.02343e-06
-2.72844e-08
7.02927e-06
-4.08853e-08
7.03624e-06
-5.54884e-08
7.04411e-06
-7.1065e-08
7.05255e-06
-8.76265e-08
7.06115e-06
-1.05133e-07
7.06937e-06
-1.23421e-07
7.0765e-06
-1.42145e-07
7.08174e-06
-1.608e-07
7.08457e-06
-1.7899e-07
7.08466e-06
-1.96304e-07
-2.12254e-07
7.0815e-06
8.53484e-06
4.88871e-10
8.54465e-06
4.02507e-10
8.55704e-06
-2.5429e-09
8.56937e-06
-7.54756e-09
8.58036e-06
-1.48282e-08
8.58975e-06
-2.42035e-08
8.5979e-06
-3.54259e-08
8.60529e-06
-4.82781e-08
8.61237e-06
-6.25766e-08
8.61945e-06
-7.81372e-08
8.62659e-06
-9.47694e-08
8.63366e-06
-1.12193e-07
8.64025e-06
-1.30006e-07
8.64585e-06
-1.47738e-07
8.65009e-06
-1.65033e-07
8.65292e-06
-1.81818e-07
8.65346e-06
-1.96839e-07
-2.08466e-07
8.64968e-06
1.03999e-05
-1.96633e-10
1.04027e-05
-2.35272e-09
1.04079e-05
-7.78766e-09
1.0416e-05
-1.5668e-08
1.04266e-05
-2.54247e-08
1.0439e-05
-3.65578e-08
1.04524e-05
-4.88542e-08
1.04664e-05
-6.22232e-08
1.04804e-05
-7.66219e-08
1.04942e-05
-9.19399e-08
1.05075e-05
-1.08005e-07
1.05197e-05
-1.24455e-07
1.05306e-05
-1.40918e-07
1.054e-05
-1.57072e-07
1.05477e-05
-1.72781e-07
1.05531e-05
-1.8715e-07
1.05539e-05
-1.97678e-07
-2.04282e-07
1.05497e-05
1.26801e-05
-3.50913e-09
1.26883e-05
-1.05881e-08
1.26986e-05
-1.80875e-08
1.27086e-05
-2.56318e-08
1.2717e-05
-3.38027e-08
1.27236e-05
-4.32091e-08
1.27291e-05
-5.42627e-08
1.27339e-05
-6.70989e-08
1.27389e-05
-8.15715e-08
1.27443e-05
-9.73349e-08
1.27502e-05
-1.13884e-07
1.27564e-05
-1.30657e-07
1.27627e-05
-1.47231e-07
1.2769e-05
-1.63356e-07
1.27746e-05
-1.78367e-07
1.27778e-05
-1.90426e-07
1.27785e-05
-1.98361e-07
-2.0599e-07
1.27802e-05
1.54545e-05
-4.86657e-09
1.54586e-05
-1.46961e-08
1.54659e-05
-2.53326e-08
1.54768e-05
-3.64962e-08
1.5491e-05
-4.79848e-08
1.55075e-05
-5.97872e-08
1.55253e-05
-7.20155e-08
1.5543e-05
-8.47789e-08
1.55595e-05
-9.80982e-08
1.55741e-05
-1.11892e-07
1.55861e-05
-1.25944e-07
1.55955e-05
-1.40013e-07
1.56022e-05
-1.53963e-07
1.56064e-05
-1.67566e-07
1.56079e-05
-1.79819e-07
1.56066e-05
-1.89183e-07
1.5605e-05
-1.96723e-07
-2.06252e-07
1.56052e-05
1.88398e-05
-6.99573e-09
1.88453e-05
-2.02745e-08
1.88523e-05
-3.22664e-08
1.88592e-05
-4.3446e-08
1.8866e-05
-5.4732e-08
1.88729e-05
-6.67402e-08
1.88806e-05
-7.96409e-08
1.88891e-05
-9.33439e-08
1.88987e-05
-1.0767e-07
1.89092e-05
-1.22437e-07
1.89207e-05
-1.3742e-07
1.89331e-05
-1.52391e-07
1.89464e-05
-1.67243e-07
1.89607e-05
-1.81887e-07
1.89765e-05
-1.95658e-07
1.89944e-05
-2.07101e-07
1.90138e-05
-2.16153e-07
-2.25745e-07
1.90333e-05
2.29661e-05
-9.7345e-09
2.29728e-05
-2.7011e-08
2.29833e-05
-4.27891e-08
2.29969e-05
-5.70641e-08
2.30115e-05
-6.92783e-08
2.30242e-05
-7.94162e-08
2.30327e-05
-8.81962e-08
2.30361e-05
-9.66792e-08
2.30342e-05
-1.0586e-07
2.30283e-05
-1.16442e-07
2.30196e-05
-1.28736e-07
2.30099e-05
-1.42698e-07
2.30007e-05
-1.58076e-07
2.29935e-05
-1.74651e-07
2.29898e-05
-1.91983e-07
2.29916e-05
-2.08905e-07
2.29991e-05
-2.23708e-07
-2.36472e-07
2.30098e-05
1.6811e-05
-1.00362e-08
1.68127e-05
-2.87258e-08
1.68147e-05
-4.47435e-08
1.68168e-05
-5.91675e-08
1.68197e-05
-7.22577e-08
1.68241e-05
-8.37729e-08
1.68295e-05
-9.35793e-08
1.68347e-05
-1.01904e-07
1.68382e-05
-1.09331e-07
1.68383e-05
-1.1661e-07
1.68341e-05
-1.24484e-07
1.68249e-05
-1.33529e-07
1.6811e-05
-1.44107e-07
1.67927e-05
-1.5639e-07
1.67711e-05
-1.70374e-07
1.6748e-05
-1.85787e-07
1.67259e-05
-2.01626e-07
-2.16021e-07
1.67054e-05
1.46381e-05
-1.35298e-08
1.46443e-05
-3.49525e-08
1.46504e-05
-5.08779e-08
1.4655e-05
-6.37289e-08
1.46576e-05
-7.48962e-08
1.46587e-05
-8.49152e-08
1.46591e-05
-9.39604e-08
1.46592e-05
-1.02059e-07
1.46592e-05
-1.09286e-07
1.46584e-05
-1.15868e-07
1.46562e-05
-1.22221e-07
1.46515e-05
-1.28866e-07
1.46437e-05
-1.36273e-07
1.46322e-05
-1.44872e-07
1.46167e-05
-1.54942e-07
1.45975e-05
-1.6659e-07
1.45757e-05
-1.79837e-07
-1.91676e-07
1.45514e-05
1.2741e-05
-1.44399e-08
1.27448e-05
-3.87486e-08
1.27492e-05
-5.52104e-08
1.27521e-05
-6.66753e-08
1.27525e-05
-7.52778e-08
1.27498e-05
-8.22891e-08
1.27444e-05
-8.85717e-08
1.27369e-05
-9.45179e-08
1.27278e-05
-1.00231e-07
1.27177e-05
-1.05792e-07
1.27068e-05
-1.11302e-07
1.26948e-05
-1.1691e-07
1.26815e-05
-1.2293e-07
1.26664e-05
-1.29819e-07
1.26495e-05
-1.38029e-07
1.26308e-05
-1.47862e-07
1.26104e-05
-1.59494e-07
-1.71298e-07
1.259e-05
1.10958e-05
-1.92974e-08
1.11033e-05
-4.63056e-08
1.11103e-05
-6.22085e-08
1.11159e-05
-7.22525e-08
1.11197e-05
-7.90337e-08
1.11211e-05
-8.37894e-08
1.11201e-05
-8.75284e-08
1.11164e-05
-9.08404e-08
1.11101e-05
-9.39669e-08
1.11014e-05
-9.70766e-08
1.10903e-05
-1.00257e-07
1.1077e-05
-1.03648e-07
1.10616e-05
-1.07474e-07
1.10438e-05
-1.12016e-07
1.10237e-05
-1.17927e-07
1.10016e-05
-1.25793e-07
1.09784e-05
-1.36331e-07
-1.47226e-07
1.09544e-05
9.65906e-06
-2.3142e-08
9.66575e-06
-5.29937e-08
9.67102e-06
-6.74828e-08
9.67394e-06
-7.51818e-08
9.67464e-06
-7.97347e-08
9.67324e-06
-8.23952e-08
9.66987e-06
-8.41655e-08
9.66458e-06
-8.55597e-08
9.65737e-06
-8.67643e-08
9.64812e-06
-8.78471e-08
9.63658e-06
-8.87191e-08
9.62236e-06
-8.94489e-08
9.60484e-06
-8.99585e-08
9.58329e-06
-9.04788e-08
9.55677e-06
-9.14252e-08
9.52456e-06
-9.35863e-08
9.4863e-06
-9.80926e-08
-1.05798e-07
9.44487e-06
8.41289e-06
-3.06808e-08
8.42265e-06
-6.27543e-08
8.42987e-06
-7.46991e-08
8.43461e-06
-7.99303e-08
8.43732e-06
-8.24464e-08
8.43804e-06
-8.31259e-08
8.43689e-06
-8.30216e-08
8.43406e-06
-8.27338e-08
8.42965e-06
-8.2355e-08
8.42363e-06
-8.18237e-08
8.41607e-06
-8.11593e-08
8.40689e-06
-8.02723e-08
8.39585e-06
-7.89251e-08
8.38245e-06
-7.70844e-08
8.36588e-06
-7.4861e-08
8.34495e-06
-7.26693e-08
8.31915e-06
-7.22841e-08
-7.44159e-08
8.28775e-06
7.3273e-06
-4.06931e-08
7.33756e-06
-7.30227e-08
7.34176e-06
-7.89048e-08
7.34164e-06
-7.9807e-08
7.33888e-06
-7.96915e-08
7.33425e-06
-7.85001e-08
7.32832e-06
-7.70899e-08
7.32145e-06
-7.58739e-08
7.31385e-06
-7.47414e-08
7.30555e-06
-7.35298e-08
7.29651e-06
-7.21087e-08
7.28663e-06
-7.03933e-08
7.27597e-06
-6.826e-08
7.26418e-06
-6.52871e-08
7.25047e-06
-6.11472e-08
7.2333e-06
-5.54842e-08
7.20871e-06
-4.76928e-08
-3.9296e-08
7.17361e-06
6.38076e-06
-5.13868e-08
6.39121e-06
-8.34708e-08
6.39572e-06
-8.34147e-08
6.39686e-06
-8.09726e-08
6.39553e-06
-7.83524e-08
6.39201e-06
-7.49827e-08
6.38679e-06
-7.18695e-08
6.38028e-06
-6.93607e-08
6.37277e-06
-6.72248e-08
6.36447e-06
-6.52188e-08
6.35557e-06
-6.32305e-08
6.34627e-06
-6.106e-08
6.33659e-06
-5.85715e-08
6.32677e-06
-5.54485e-08
6.31741e-06
-5.17728e-08
6.30892e-06
-4.69878e-08
6.30301e-06
-4.17649e-08
-3.68957e-08
6.30064e-06
5.56256e-06
-6.8482e-08
5.56745e-06
-8.83646e-08
5.56115e-06
-7.71177e-08
5.55116e-06
-7.10122e-08
5.54026e-06
-6.74494e-08
5.52916e-06
-6.38731e-08
5.51811e-06
-6.08156e-08
5.5071e-06
-5.83381e-08
5.49605e-06
-5.61662e-08
5.48493e-06
-5.41116e-08
5.47376e-06
-5.20637e-08
5.46264e-06
-4.99118e-08
5.45159e-06
-4.74893e-08
5.44082e-06
-4.46574e-08
5.43029e-06
-4.12233e-08
5.42038e-06
-3.70764e-08
5.41007e-06
-3.14229e-08
-2.2862e-08
5.39606e-06
4.85314e-06
-9.40169e-08
4.8587e-06
-9.39211e-08
4.8484e-06
-6.68413e-08
4.83661e-06
-5.92552e-08
4.82342e-06
-5.42508e-08
4.80993e-06
-5.03718e-08
4.7966e-06
-4.74726e-08
4.78351e-06
-4.52451e-08
4.77066e-06
-4.33024e-08
4.75798e-06
-4.14421e-08
4.74546e-06
-3.95456e-08
4.73312e-06
-3.75248e-08
4.72096e-06
-3.52943e-08
4.70907e-06
-3.27343e-08
4.69756e-06
-2.96941e-08
4.68666e-06
-2.61594e-08
4.67816e-06
-2.28961e-08
-2.06876e-08
4.67603e-06
4.10866e-06
4.01474e-06
3.94789e-06
3.88864e-06
3.83439e-06
3.78402e-06
3.73655e-06
3.6913e-06
3.648e-06
3.60656e-06
3.56702e-06
3.5295e-06
3.49421e-06
3.46148e-06
3.43179e-06
3.40564e-06
3.38275e-06
3.36207e-06
-1.34492e-07
1.3507e-07
-4.28836e-07
2.9462e-07
-7.28072e-07
2.99441e-07
-1.02653e-06
2.98375e-07
-1.30712e-06
2.8078e-07
-1.56776e-06
2.60466e-07
-1.8015e-06
2.34003e-07
-2.00685e-06
2.05182e-07
-2.18109e-06
1.74555e-07
-2.3249e-06
1.43671e-07
-2.43777e-06
1.13202e-07
-2.52178e-06
8.39061e-08
-2.57762e-06
5.61643e-08
-2.60797e-06
3.02975e-08
-2.61441e-06
6.76046e-09
-2.60071e-06
-1.37044e-08
-2.57002e-06
-3.03988e-08
-2.52569e-06
-4.42715e-08
-2.46953e-06
-5.5878e-08
-2.4034e-06
-6.60065e-08
-2.32811e-06
-7.50493e-08
-2.24468e-06
-8.322e-08
-2.15415e-06
-9.02978e-08
-2.05753e-06
-9.63192e-08
-1.95536e-06
-1.01953e-07
-1.84809e-06
-1.06879e-07
-1.73679e-06
-1.11102e-07
-1.6214e-06
-1.1493e-07
-1.5031e-06
-1.18124e-07
-1.38185e-06
-1.20751e-07
-1.25918e-06
-1.22566e-07
-1.13459e-06
-1.24078e-07
-1.00922e-06
-1.25341e-07
-8.82717e-07
-1.25977e-07
-7.56129e-07
-1.26695e-07
-6.28791e-07
-1.26837e-07
-5.02328e-07
-1.26683e-07
-3.75984e-07
-1.25905e-07
-2.51577e-07
-1.24737e-07
-1.28944e-07
-1.2224e-07
-1.22443e-08
-1.17084e-07
1.05263e-07
-1.17155e-07
2.2719e-07
-1.2229e-07
3.51077e-07
-1.23625e-07
4.7372e-07
-1.2298e-07
5.94978e-07
-1.21078e-07
7.13333e-07
-1.18655e-07
8.29358e-07
-1.15893e-07
9.42214e-07
-1.13113e-07
1.05262e-06
-1.10299e-07
1.16003e-06
-1.07611e-07
1.26511e-06
-1.04977e-07
1.36744e-06
-1.02487e-07
1.46757e-06
-1.00059e-07
1.56517e-06
-9.775e-08
1.66069e-06
-9.54917e-08
1.75388e-06
-9.33376e-08
1.84512e-06
-9.12373e-08
1.93419e-06
-8.92271e-08
2.02141e-06
-8.72506e-08
2.10661e-06
-8.53461e-08
2.19005e-06
-8.34763e-08
2.27156e-06
-8.16615e-08
2.35135e-06
-7.98509e-08
2.42926e-06
-7.80595e-08
2.50545e-06
-7.62551e-08
2.57979e-06
-7.44618e-08
2.65237e-06
-7.26448e-08
2.72307e-06
-7.08081e-08
2.79196e-06
-6.89397e-08
2.85895e-06
-6.70858e-08
2.92414e-06
-6.52471e-08
2.98746e-06
-6.34058e-08
3.04898e-06
-6.1571e-08
3.10863e-06
-5.97336e-08
3.16659e-06
-5.80144e-08
3.22292e-06
-5.64082e-08
3.27762e-06
-5.47715e-08
3.33061e-06
-5.3073e-08
3.382e-06
-5.14687e-08
3.4318e-06
-4.98934e-08
3.48021e-06
-4.84916e-08
3.52734e-06
-4.72093e-08
3.57323e-06
-4.59775e-08
3.61793e-06
-4.47737e-08
3.66144e-06
-4.35829e-08
3.70381e-06
-4.24501e-08
3.74512e-06
-4.13772e-08
3.78545e-06
-4.03822e-08
3.82485e-06
-3.94381e-08
3.86336e-06
-3.85539e-08
3.90104e-06
-3.77084e-08
3.9379e-06
-3.68841e-08
3.9739e-06
-3.60191e-08
4.009e-06
-3.51029e-08
4.04318e-06
-3.4175e-08
4.07648e-06
-3.32939e-08
4.10898e-06
-3.2488e-08
4.14084e-06
-3.18553e-08
4.17218e-06
-3.13245e-08
4.20307e-06
-3.08772e-08
4.23379e-06
-3.06982e-08
4.26442e-06
-3.06197e-08
4.29497e-06
-3.05411e-08
4.32525e-06
-3.02708e-08
4.35487e-06
-2.9604e-08
4.38365e-06
-2.87695e-08
4.4117e-06
-2.80421e-08
4.43919e-06
-2.74792e-08
4.46608e-06
-2.6878e-08
4.49225e-06
-2.61552e-08
4.51762e-06
-2.53576e-08
4.54219e-06
-2.4552e-08
4.56598e-06
-2.37768e-08
4.58901e-06
-2.30248e-08
4.61134e-06
-2.23214e-08
4.63304e-06
-2.16918e-08
4.6542e-06
-2.11622e-08
4.67491e-06
-2.07032e-08
4.69519e-06
-2.02767e-08
4.71505e-06
-1.98573e-08
4.73448e-06
-1.94244e-08
4.75344e-06
-1.89661e-08
4.7719e-06
-1.84604e-08
4.78978e-06
-1.78802e-08
4.807e-06
-1.72205e-08
4.82349e-06
-1.64923e-08
4.8392e-06
-1.57142e-08
4.85411e-06
-1.49003e-08
4.8682e-06
-1.40779e-08
4.88148e-06
-1.32773e-08
4.89401e-06
-1.25094e-08
4.90579e-06
-1.17714e-08
4.91688e-06
-1.10717e-08
4.92729e-06
-1.03865e-08
4.93698e-06
-9.67366e-09
4.946e-06
-8.99132e-09
4.9544e-06
-8.36578e-09
4.96223e-06
-7.79082e-09
4.96953e-06
-7.25303e-09
4.97632e-06
-6.74299e-09
4.98262e-06
-6.24443e-09
4.98844e-06
-5.76972e-09
4.9938e-06
-5.30839e-09
4.99872e-06
-4.86871e-09
5.0032e-06
-4.41832e-09
5.00722e-06
-3.96134e-09
5.01077e-06
-3.48415e-09
5.01382e-06
-2.99418e-09
5.0164e-06
-2.51315e-09
5.01849e-06
-2.0315e-09
5.02015e-06
-1.59931e-09
5.02133e-06
-1.1254e-09
5.02158e-06
-1.88389e-10
5.0204e-06
1.24271e-09
5.01759e-06
2.86873e-09
5.01306e-06
4.6026e-09
5.00672e-06
6.40788e-09
4.99859e-06
8.2055e-09
4.98873e-06
9.92835e-09
4.97728e-06
1.15177e-08
4.96439e-06
1.29668e-08
4.95016e-06
1.42904e-08
4.93468e-06
1.55374e-08
4.91797e-06
1.67562e-08
4.90001e-06
1.80055e-08
4.88071e-06
1.93374e-08
4.85994e-06
2.0811e-08
4.83749e-06
2.24812e-08
4.81312e-06
2.44166e-08
4.78646e-06
2.66967e-08
4.75702e-06
2.94902e-08
4.72401e-06
3.30632e-08
4.68605e-06
3.80189e-08
4.64088e-06
4.52393e-08
4.58412e-06
5.6832e-08
4.50785e-06
7.63416e-08
4.39744e-06
1.10488e-07
4.21262e-06
1.8489e-07
2.65926e-07
3.94676e-06
-3.09252e-07
4.44562e-07
-5.74237e-07
5.59712e-07
-8.27982e-07
5.53279e-07
-1.06706e-06
5.37454e-07
-1.2782e-06
4.92006e-07
-1.45819e-06
4.4042e-07
-1.60283e-06
3.7875e-07
-1.71586e-06
3.18181e-07
-1.80023e-06
2.59053e-07
-1.86244e-06
2.05854e-07
-1.90728e-06
1.58175e-07
-1.93972e-06
1.16345e-07
-1.96251e-06
7.90916e-08
-1.97816e-06
4.59709e-08
-1.98706e-06
1.5793e-08
-1.98801e-06
-1.27102e-08
-1.97896e-06
-3.93258e-08
-1.95923e-06
-6.39422e-08
-1.9284e-06
-8.65965e-08
-1.88695e-06
-1.07362e-07
-1.83552e-06
-1.26382e-07
-1.77493e-06
-1.43711e-07
-1.70599e-06
-1.59138e-07
-1.62967e-06
-1.72507e-07
-1.54716e-06
-1.84363e-07
-1.45893e-06
-1.94971e-07
-1.36577e-06
-2.04164e-07
-1.26844e-06
-2.12113e-07
-1.16764e-06
-2.1883e-07
-1.06382e-06
-2.24431e-07
-9.57297e-07
-2.29011e-07
-8.48593e-07
-2.32658e-07
-7.38405e-07
-2.35471e-07
-6.26783e-07
-2.375e-07
-5.14404e-07
-2.39042e-07
-4.00997e-07
-2.40176e-07
-2.86437e-07
-2.41233e-07
-1.69822e-07
-2.42481e-07
-5.03447e-08
-2.44222e-07
7.27406e-08
-2.453e-07
1.99759e-07
-2.44119e-07
3.24041e-07
-2.41414e-07
4.39914e-07
-2.38186e-07
5.50658e-07
-2.34353e-07
6.57807e-07
-2.3016e-07
7.62404e-07
-2.25671e-07
8.64777e-07
-2.21065e-07
9.65291e-07
-2.16406e-07
1.06394e-06
-2.11804e-07
1.1609e-06
-2.0726e-07
1.25609e-06
-2.02832e-07
1.34961e-06
-1.98492e-07
1.44135e-06
-1.94259e-07
1.53138e-06
-1.90094e-07
1.61963e-06
-1.86027e-07
1.70617e-06
-1.82047e-07
1.79098e-06
-1.78189e-07
1.87416e-06
-1.7444e-07
1.9557e-06
-1.7081e-07
2.03568e-06
-1.6726e-07
2.11409e-06
-1.63798e-07
2.19098e-06
-1.60399e-07
2.26633e-06
-1.57065e-07
2.3402e-06
-1.53759e-07
2.41255e-06
-1.5047e-07
2.48343e-06
-1.47168e-07
2.55276e-06
-1.43844e-07
2.62053e-06
-1.40452e-07
2.68665e-06
-1.36971e-07
2.75107e-06
-1.33396e-07
2.81369e-06
-1.29755e-07
2.87446e-06
-1.26047e-07
2.93325e-06
-1.22239e-07
2.99002e-06
-1.1837e-07
3.04464e-06
-1.14393e-07
3.09695e-06
-1.10363e-07
3.14676e-06
-1.06267e-07
3.19399e-06
-1.02034e-07
3.23837e-06
-9.75059e-08
3.27955e-06
-9.26907e-08
3.31729e-06
-8.76826e-08
3.35117e-06
-8.24156e-08
3.38099e-06
-7.70836e-08
3.40657e-06
-7.16052e-08
3.42783e-06
-6.6082e-08
3.44459e-06
-6.03889e-08
3.45678e-06
-5.46865e-08
3.46438e-06
-4.90096e-08
3.46752e-06
-4.35535e-08
3.46644e-06
-3.83812e-08
3.46158e-06
-3.37069e-08
3.45349e-06
-2.96373e-08
3.44299e-06
-2.63943e-08
3.43104e-06
-2.40923e-08
3.41886e-06
-2.29322e-08
3.40767e-06
-2.29919e-08
3.3987e-06
-2.43303e-08
3.393e-06
-2.67985e-08
3.39127e-06
-3.01301e-08
3.39395e-06
-3.40097e-08
3.40111e-06
-3.80366e-08
3.4122e-06
-4.17931e-08
3.42656e-06
-4.49782e-08
3.44341e-06
-4.7387e-08
3.46207e-06
-4.89368e-08
3.4822e-06
-4.97366e-08
3.50382e-06
-5.03838e-08
3.52675e-06
-5.09739e-08
3.55058e-06
-5.13098e-08
3.57506e-06
-5.13597e-08
3.60016e-06
-5.12598e-08
3.62595e-06
-5.11462e-08
3.65248e-06
-5.10778e-08
3.67975e-06
-5.10451e-08
3.70768e-06
-5.09543e-08
3.73604e-06
-5.06835e-08
3.76453e-06
-5.01844e-08
3.79275e-06
-4.93853e-08
3.82023e-06
-4.81845e-08
3.84649e-06
-4.65415e-08
3.87112e-06
-4.44895e-08
3.89374e-06
-4.20467e-08
3.91398e-06
-3.92123e-08
3.93154e-06
-3.60239e-08
3.94623e-06
-3.25798e-08
3.958e-06
-2.90007e-08
3.96691e-06
-2.54013e-08
3.97307e-06
-2.18755e-08
3.97667e-06
-1.84983e-08
3.97792e-06
-1.53321e-08
3.97705e-06
-1.24048e-08
3.97424e-06
-9.6882e-09
3.9696e-06
-7.1277e-09
3.96323e-06
-4.69369e-09
3.95529e-06
-2.43314e-09
3.94612e-06
-4.90073e-10
3.93601e-06
1.13239e-09
3.92513e-06
2.53897e-09
3.91363e-06
3.73786e-09
3.90163e-06
4.77297e-09
3.88922e-06
5.69133e-09
3.87653e-06
6.47822e-09
3.86369e-06
7.09428e-09
3.85092e-06
7.50076e-09
3.83837e-06
7.70707e-09
3.82628e-06
7.70743e-09
3.81478e-06
7.57344e-09
3.80396e-06
7.37037e-09
3.79385e-06
7.15455e-09
3.7844e-06
6.96664e-09
3.77558e-06
6.82608e-09
3.76725e-06
6.76562e-09
3.75948e-06
6.68433e-09
3.75286e-06
6.46467e-09
3.748e-06
6.14583e-09
3.74505e-06
5.8638e-09
3.74405e-06
5.64659e-09
3.74499e-06
5.51673e-09
3.74775e-06
5.49146e-09
3.75216e-06
5.57301e-09
3.75799e-06
5.74352e-09
3.76502e-06
5.98734e-09
3.77305e-06
6.30793e-09
3.78188e-06
6.74088e-09
3.79133e-06
7.35048e-09
3.80114e-06
8.22423e-09
3.81105e-06
9.45817e-09
3.82074e-06
1.11504e-08
3.82987e-06
1.33851e-08
3.83807e-06
1.62413e-08
3.84505e-06
1.97614e-08
3.85057e-06
2.40071e-08
3.85468e-06
2.90069e-08
3.85777e-06
3.49759e-08
3.86078e-06
4.22904e-08
3.86569e-06
5.19786e-08
3.87478e-06
6.73128e-08
3.89418e-06
9.11448e-08
3.92642e-06
1.52696e-07
2.57124e-07
3.93527e-06
-3.22758e-07
7.67494e-07
-5.68465e-07
8.05494e-07
-7.91486e-07
7.76384e-07
-9.85075e-07
7.31063e-07
-1.14351e-06
6.50517e-07
-1.27419e-06
5.71101e-07
-1.38188e-06
4.86521e-07
-1.4742e-06
4.10496e-07
-1.55126e-06
3.36194e-07
-1.61432e-06
2.68913e-07
-1.66094e-06
2.04879e-07
-1.69078e-06
1.46196e-07
-1.70281e-06
9.11964e-08
-1.69759e-06
4.07732e-08
-1.6761e-06
-5.61695e-09
-1.64127e-06
-4.75106e-08
-1.59466e-06
-8.58719e-08
-1.53779e-06
-1.20775e-07
-1.47183e-06
-1.5249e-07
-1.39791e-06
-1.81237e-07
-1.31697e-06
-2.07262e-07
-1.22996e-06
-2.30671e-07
-1.13757e-06
-2.51475e-07
-1.0402e-06
-2.6981e-07
-9.38489e-07
-2.86023e-07
-8.33122e-07
-3.00272e-07
-7.24605e-07
-3.12631e-07
-6.134e-07
-3.23249e-07
-4.99987e-07
-3.32196e-07
-3.84763e-07
-3.39591e-07
-2.68184e-07
-3.45551e-07
-1.50591e-07
-3.50195e-07
-3.23835e-08
-3.53649e-07
8.61185e-08
-3.55958e-07
2.04314e-07
-3.5722e-07
3.21621e-07
-3.57454e-07
4.37201e-07
-3.56806e-07
5.50155e-07
-3.55415e-07
6.59388e-07
-3.53455e-07
7.64917e-07
-3.50818e-07
8.68222e-07
-3.47425e-07
9.703e-07
-3.43482e-07
1.07118e-06
-3.39067e-07
1.17095e-06
-3.34123e-07
1.26955e-06
-3.28764e-07
1.36697e-06
-3.2309e-07
1.46313e-06
-3.17235e-07
1.558e-06
-3.11283e-07
1.6515e-06
-3.05313e-07
1.74359e-06
-2.99355e-07
1.83419e-06
-2.93451e-07
1.92332e-06
-2.87618e-07
2.01093e-06
-2.81883e-07
2.09709e-06
-2.76261e-07
2.18183e-06
-2.70786e-07
2.26526e-06
-2.6548e-07
2.34742e-06
-2.60363e-07
2.42838e-06
-2.55419e-07
2.50817e-06
-2.50619e-07
2.58681e-06
-2.4591e-07
2.66424e-06
-2.41251e-07
2.74041e-06
-2.36592e-07
2.81522e-06
-2.31893e-07
2.88854e-06
-2.27101e-07
2.96022e-06
-2.2217e-07
3.03008e-06
-2.17048e-07
3.09793e-06
-2.1172e-07
3.16362e-06
-2.06164e-07
3.22702e-06
-2.00385e-07
3.28801e-06
-1.94406e-07
3.34649e-06
-1.8826e-07
3.40239e-06
-1.81964e-07
3.45563e-06
-1.75508e-07
3.50618e-06
-1.6894e-07
3.55406e-06
-1.62297e-07
3.59928e-06
-1.55599e-07
3.64194e-06
-1.48955e-07
3.6823e-06
-1.42411e-07
3.72069e-06
-1.3593e-07
3.75746e-06
-1.2948e-07
3.79285e-06
-1.23106e-07
3.82717e-06
-1.16765e-07
3.86059e-06
-1.10531e-07
3.89332e-06
-1.04356e-07
3.92549e-06
-9.82854e-08
3.95741e-06
-9.23405e-08
3.98934e-06
-8.664e-08
4.02161e-06
-8.12986e-08
4.05451e-06
-7.64688e-08
4.08838e-06
-7.2265e-08
4.12348e-06
-6.88189e-08
4.16005e-06
-6.62235e-08
4.19821e-06
-6.45773e-08
4.23802e-06
-6.39236e-08
4.27935e-06
-6.42808e-08
4.32193e-06
-6.55879e-08
4.36531e-06
-6.77317e-08
4.40899e-06
-7.04938e-08
4.45243e-06
-7.35902e-08
4.49513e-06
-7.67256e-08
4.53667e-06
-7.95872e-08
4.57672e-06
-8.18585e-08
4.61502e-06
-8.32926e-08
4.65142e-06
-8.37906e-08
4.68606e-06
-8.3592e-08
4.71944e-06
-8.31261e-08
4.75165e-06
-8.26068e-08
4.78251e-06
-8.18396e-08
4.81192e-06
-8.07263e-08
4.84003e-06
-7.9483e-08
4.86708e-06
-7.83217e-08
4.89327e-06
-7.73448e-08
4.91876e-06
-7.65717e-08
4.94365e-06
-7.5951e-08
4.96808e-06
-7.53892e-08
4.99217e-06
-7.47822e-08
5.016e-06
-7.40242e-08
5.03962e-06
-7.30079e-08
5.0631e-06
-7.16683e-08
5.08652e-06
-6.99799e-08
5.10995e-06
-6.79216e-08
5.13335e-06
-6.54615e-08
5.15669e-06
-6.25671e-08
5.1799e-06
-5.92439e-08
5.20287e-06
-5.55627e-08
5.2255e-06
-5.16468e-08
5.24773e-06
-4.76435e-08
5.26953e-06
-4.36878e-08
5.29091e-06
-3.98897e-08
5.31191e-06
-3.63394e-08
5.33258e-06
-3.30869e-08
5.353e-06
-3.01177e-08
5.37326e-06
-2.73958e-08
5.39345e-06
-2.48933e-08
5.4136e-06
-2.25854e-08
5.43353e-06
-2.04271e-08
5.45302e-06
-1.83603e-08
5.47192e-06
-1.63671e-08
5.49009e-06
-1.44283e-08
5.50739e-06
-1.25377e-08
5.52378e-06
-1.06996e-08
5.53924e-06
-8.98501e-09
5.55383e-06
-7.5029e-09
5.56763e-06
-6.30499e-09
5.5807e-06
-5.37462e-09
5.59304e-06
-4.63437e-09
5.6046e-06
-3.99171e-09
5.61533e-06
-3.36417e-09
5.62517e-06
-2.6959e-09
5.63409e-06
-1.96486e-09
5.6421e-06
-1.18811e-09
5.64913e-06
-2.79173e-10
5.65499e-06
8.20265e-10
5.65949e-06
1.95822e-09
5.66254e-06
3.08839e-09
5.66406e-06
4.34401e-09
5.66386e-06
5.8431e-09
5.66172e-06
7.64321e-09
5.65748e-06
9.73186e-09
5.65102e-06
1.20236e-08
5.64235e-06
1.44152e-08
5.6315e-06
1.68224e-08
5.61859e-06
1.9217e-08
5.6037e-06
2.16238e-08
5.58692e-06
2.41257e-08
5.5683e-06
2.68417e-08
5.54784e-06
2.99161e-08
5.52549e-06
3.3497e-08
5.50115e-06
3.77256e-08
5.47466e-06
4.27301e-08
5.44583e-06
4.85971e-08
5.41439e-06
5.54546e-08
5.37993e-06
6.34714e-08
5.34174e-06
7.31618e-08
5.29866e-06
8.53702e-08
5.24862e-06
1.02015e-07
5.18826e-06
1.27665e-07
5.11208e-06
1.67314e-07
5.0145e-06
2.50266e-07
3.63202e-07
4.90841e-06
-2.35129e-07
1.0028e-06
-3.99249e-07
9.69681e-07
-5.48046e-07
9.2528e-07
-6.7052e-07
8.53576e-07
-7.69654e-07
7.49734e-07
-8.57407e-07
6.58877e-07
-9.33217e-07
5.62407e-07
-9.95999e-07
4.73293e-07
-1.04239e-06
3.82656e-07
-1.07201e-06
2.98548e-07
-1.08299e-06
2.15918e-07
-1.07701e-06
1.40234e-07
-1.05506e-06
6.9303e-08
-1.01914e-06
4.86928e-09
-9.70555e-07
-5.41511e-08
-9.10979e-07
-1.07063e-07
-8.42356e-07
-1.54449e-07
-7.66279e-07
-1.96825e-07
-6.8389e-07
-2.34838e-07
-5.96122e-07
-2.68973e-07
-5.03724e-07
-2.99623e-07
-4.07308e-07
-3.27052e-07
-3.07304e-07
-3.51447e-07
-2.04071e-07
-3.73004e-07
-9.81223e-08
-3.91942e-07
1.00419e-08
-4.08398e-07
1.19913e-07
-4.22475e-07
2.31026e-07
-4.34324e-07
3.42931e-07
-4.44077e-07
4.55248e-07
-4.51873e-07
5.67602e-07
-4.57885e-07
6.79713e-07
-4.62276e-07
7.91241e-07
-4.65161e-07
9.01928e-07
-4.6662e-07
1.0115e-06
-4.66784e-07
1.11985e-06
-4.65778e-07
1.22679e-06
-4.63742e-07
1.33218e-06
-4.60795e-07
1.43574e-06
-4.57014e-07
1.53731e-06
-4.52377e-07
1.63679e-06
-4.46904e-07
1.73407e-06
-4.40748e-07
1.82908e-06
-4.34082e-07
1.92199e-06
-4.27029e-07
2.01293e-06
-4.19704e-07
2.10204e-06
-4.12201e-07
2.18941e-06
-4.04608e-07
2.2751e-06
-3.96984e-07
2.35916e-06
-3.89379e-07
2.44163e-06
-3.81825e-07
2.52252e-06
-3.74354e-07
2.60189e-06
-3.66997e-07
2.6798e-06
-3.59796e-07
2.75632e-06
-3.52788e-07
2.83152e-06
-3.45999e-07
2.90545e-06
-3.39412e-07
2.97804e-06
-3.32971e-07
3.04921e-06
-3.26588e-07
3.11874e-06
-3.20169e-07
3.18646e-06
-3.13635e-07
3.25213e-06
-3.06931e-07
3.31553e-06
-2.99996e-07
3.37638e-06
-2.9276e-07
3.43442e-06
-2.85148e-07
3.48935e-06
-2.7711e-07
3.54092e-06
-2.68635e-07
3.58896e-06
-2.59771e-07
3.63338e-06
-2.50595e-07
3.67418e-06
-2.412e-07
3.71143e-06
-2.31674e-07
3.74527e-06
-2.22109e-07
3.77588e-06
-2.12591e-07
3.80353e-06
-2.03171e-07
3.82844e-06
-1.93866e-07
3.85086e-06
-1.84728e-07
3.87103e-06
-1.75788e-07
3.88922e-06
-1.67164e-07
3.90571e-06
-1.5891e-07
3.92081e-06
-1.51055e-07
3.93489e-06
-1.43579e-07
3.94824e-06
-1.36469e-07
3.96114e-06
-1.29688e-07
3.97383e-06
-1.23236e-07
3.98654e-06
-1.17082e-07
3.99946e-06
-1.11226e-07
4.01277e-06
-1.05677e-07
4.02661e-06
-1.00488e-07
4.04103e-06
-9.57349e-08
4.05607e-06
-9.1524e-08
4.07175e-06
-8.79551e-08
4.08803e-06
-8.51173e-08
4.10485e-06
-8.30591e-08
4.12207e-06
-8.18169e-08
4.13952e-06
-8.1398e-08
4.15699e-06
-8.17835e-08
4.17427e-06
-8.28889e-08
4.19108e-06
-8.45679e-08
4.20717e-06
-8.66043e-08
4.2223e-06
-8.87464e-08
4.2363e-06
-9.07519e-08
4.24911e-06
-9.24178e-08
4.26083e-06
-9.35999e-08
4.27171e-06
-9.41843e-08
4.28205e-06
-9.41498e-08
4.29217e-06
-9.37321e-08
4.30227e-06
-9.32416e-08
4.31252e-06
-9.28667e-08
4.32313e-06
-9.24642e-08
4.33424e-06
-9.18614e-08
4.34585e-06
-9.11057e-08
4.35778e-06
-9.02645e-08
4.36977e-06
-8.93559e-08
4.38156e-06
-8.83753e-08
4.39292e-06
-8.73204e-08
4.4037e-06
-8.61825e-08
4.41383e-06
-8.49266e-08
4.42329e-06
-8.3494e-08
4.43207e-06
-8.1796e-08
4.44012e-06
-7.97345e-08
4.44737e-06
-7.72433e-08
4.45369e-06
-7.42562e-08
4.45893e-06
-7.07181e-08
4.46298e-06
-6.6636e-08
4.46581e-06
-6.20992e-08
4.46746e-06
-5.7229e-08
4.46797e-06
-5.21733e-08
4.46741e-06
-4.71022e-08
4.46588e-06
-4.21793e-08
4.46346e-06
-3.74919e-08
4.46015e-06
-3.30476e-08
4.45589e-06
-2.88406e-08
4.45062e-06
-2.4866e-08
4.44433e-06
-2.1119e-08
4.43705e-06
-1.7626e-08
4.42882e-06
-1.43701e-08
4.41969e-06
-1.13112e-08
4.40982e-06
-8.50366e-09
4.39949e-06
-6.05041e-09
4.38905e-06
-4.00104e-09
4.37883e-06
-2.32533e-09
4.36911e-06
-1.00022e-09
4.36012e-06
-1.66124e-11
4.35192e-06
6.73097e-10
4.34441e-06
1.18782e-09
4.33736e-06
1.65008e-09
4.33057e-06
2.13283e-09
4.32392e-06
2.63356e-09
4.31744e-06
3.09944e-09
4.31122e-06
3.49274e-09
4.30539e-06
3.84755e-09
4.29997e-06
4.20266e-09
4.29515e-06
4.5217e-09
4.29116e-06
4.78045e-09
4.28801e-06
5.08944e-09
4.28549e-06
5.58886e-09
4.28347e-06
6.33739e-09
4.28206e-06
7.23718e-09
4.28159e-06
8.09669e-09
4.28256e-06
8.74002e-09
4.28545e-06
9.11396e-09
4.29053e-06
9.31671e-09
4.29777e-06
9.56863e-09
4.30683e-06
1.01341e-08
4.31717e-06
1.1267e-08
4.32811e-06
1.31665e-08
4.33897e-06
1.59755e-08
4.3491e-06
1.97694e-08
4.35802e-06
2.45743e-08
4.36539e-06
3.03457e-08
4.37111e-06
3.70098e-08
4.37527e-06
4.44393e-08
4.37815e-06
5.25767e-08
4.38023e-06
6.13885e-08
4.38218e-06
7.12041e-08
4.38476e-06
8.27906e-08
4.38858e-06
9.8181e-08
4.39497e-06
1.21258e-07
4.40292e-06
1.59348e-07
4.4247e-06
2.28458e-07
3.52995e-07
4.43489e-06
-1.73539e-07
1.17652e-06
-2.80141e-07
1.07636e-06
-3.88772e-07
1.03402e-06
-4.88309e-07
9.53163e-07
-5.83037e-07
8.44553e-07
-6.71774e-07
7.47652e-07
-7.40899e-07
6.31608e-07
-7.83227e-07
5.15647e-07
-7.96231e-07
3.95724e-07
-7.82029e-07
2.84365e-07
-7.44839e-07
1.78782e-07
-6.89341e-07
8.47527e-08
-6.19715e-07
-2.77669e-10
-5.40246e-07
-7.45835e-08
-4.53942e-07
-1.40416e-07
-3.62229e-07
-1.98757e-07
-2.65917e-07
-2.50727e-07
-1.65669e-07
-2.97053e-07
-6.20646e-08
-3.38413e-07
4.43407e-08
-3.75356e-07
1.53032e-07
-4.08289e-07
2.63536e-07
-4.37532e-07
3.75459e-07
-4.63348e-07
4.88473e-07
-4.85995e-07
6.02235e-07
-5.05684e-07
7.16443e-07
-5.22582e-07
8.30821e-07
-5.36837e-07
9.4511e-07
-5.4859e-07
1.05903e-06
-5.57984e-07
1.17237e-06
-5.65189e-07
1.28488e-06
-5.70384e-07
1.39635e-06
-5.73729e-07
1.50657e-06
-5.75367e-07
1.61539e-06
-5.75426e-07
1.72266e-06
-5.74043e-07
1.82825e-06
-5.71352e-07
1.93201e-06
-5.67499e-07
2.03385e-06
-5.62621e-07
2.13368e-06
-5.56838e-07
2.23156e-06
-5.50249e-07
2.32762e-06
-5.42964e-07
2.42198e-06
-5.35104e-07
2.51467e-06
-5.26775e-07
2.60572e-06
-5.18071e-07
2.6951e-06
-5.09089e-07
2.78282e-06
-4.9992e-07
2.86886e-06
-4.90651e-07
2.95322e-06
-4.81352e-07
3.03592e-06
-4.72081e-07
3.11696e-06
-4.6287e-07
3.19633e-06
-4.53732e-07
3.274e-06
-4.44673e-07
3.34992e-06
-4.35721e-07
3.42404e-06
-4.26919e-07
3.49633e-06
-4.18292e-07
3.56672e-06
-4.09808e-07
3.63512e-06
-4.01375e-07
3.70138e-06
-3.92858e-07
3.76534e-06
-3.84137e-07
3.82684e-06
-3.75133e-07
3.88571e-06
-3.6581e-07
3.94186e-06
-3.56149e-07
3.99521e-06
-3.46118e-07
4.04573e-06
-3.35678e-07
4.09341e-06
-3.24793e-07
4.13823e-06
-3.13466e-07
4.18022e-06
-3.01761e-07
4.2194e-06
-2.89785e-07
4.25584e-06
-2.77649e-07
4.28963e-06
-2.65472e-07
4.3209e-06
-2.53389e-07
4.34983e-06
-2.41536e-07
4.37666e-06
-2.30009e-07
4.40165e-06
-2.18867e-07
4.42508e-06
-2.08164e-07
4.44723e-06
-1.97955e-07
4.46836e-06
-1.88304e-07
4.48868e-06
-1.79241e-07
4.50837e-06
-1.70761e-07
4.52763e-06
-1.62845e-07
4.54662e-06
-1.55473e-07
4.56554e-06
-1.48622e-07
4.58456e-06
-1.42274e-07
4.60386e-06
-1.36395e-07
4.62358e-06
-1.30958e-07
4.64383e-06
-1.25941e-07
4.66467e-06
-1.21343e-07
4.6861e-06
-1.17169e-07
4.70802e-06
-1.13455e-07
4.73032e-06
-1.10264e-07
4.75286e-06
-1.07673e-07
4.77551e-06
-1.05734e-07
4.79813e-06
-1.04451e-07
4.82048e-06
-1.03779e-07
4.84231e-06
-1.0363e-07
4.86328e-06
-1.03886e-07
4.88309e-06
-1.04408e-07
4.90151e-06
-1.05051e-07
4.91842e-06
-1.05681e-07
4.93384e-06
-1.06189e-07
4.9479e-06
-1.06503e-07
4.96089e-06
-1.06605e-07
4.97319e-06
-1.06509e-07
4.9853e-06
-1.06277e-07
4.99758e-06
-1.06024e-07
5.01005e-06
-1.05729e-07
5.0226e-06
-1.05432e-07
5.03513e-06
-1.0501e-07
5.04756e-06
-1.04311e-07
5.05974e-06
-1.03304e-07
5.07146e-06
-1.01994e-07
5.08253e-06
-1.00439e-07
5.09291e-06
-9.87671e-08
5.10271e-06
-9.71329e-08
5.11216e-06
-9.56464e-08
5.12155e-06
-9.43263e-08
5.13112e-06
-9.30786e-08
5.14103e-06
-9.17192e-08
5.1513e-06
-9.00188e-08
5.16181e-06
-8.77742e-08
5.17241e-06
-8.48739e-08
5.18295e-06
-8.12785e-08
5.1933e-06
-7.70047e-08
5.20333e-06
-7.2147e-08
5.21296e-06
-6.68752e-08
5.22214e-06
-6.13728e-08
5.2308e-06
-5.57873e-08
5.23881e-06
-5.0204e-08
5.24595e-06
-4.46562e-08
5.25204e-06
-3.91503e-08
5.25687e-06
-3.36905e-08
5.26032e-06
-2.83297e-08
5.26236e-06
-2.3184e-08
5.2631e-06
-1.83748e-08
5.26269e-06
-1.39797e-08
5.2614e-06
-1.00351e-08
5.25946e-06
-6.58473e-09
5.25705e-06
-3.65464e-09
5.25426e-06
-1.2306e-09
5.25122e-06
6.97429e-10
5.24803e-06
2.16512e-09
5.24471e-06
3.27691e-09
5.24117e-06
4.18266e-09
5.23729e-06
5.03209e-09
5.23298e-06
5.93275e-09
5.22816e-06
6.91627e-09
5.2228e-06
7.96969e-09
5.21678e-06
9.08444e-09
5.20998e-06
1.02654e-08
5.20226e-06
1.15279e-08
5.19357e-06
1.28584e-08
5.1839e-06
1.41635e-08
5.17331e-06
1.53431e-08
5.16192e-06
1.64422e-08
5.14988e-06
1.76012e-08
5.13726e-06
1.89272e-08
5.12406e-06
2.04124e-08
5.11016e-06
2.19581e-08
5.09543e-06
2.34406e-08
5.07971e-06
2.48034e-08
5.06289e-06
2.6102e-08
5.04493e-06
2.7501e-08
5.02582e-06
2.92149e-08
5.00561e-06
3.14591e-08
4.98434e-06
3.44099e-08
4.9621e-06
3.82034e-08
4.93892e-06
4.29353e-08
4.91479e-06
4.86864e-08
4.88963e-06
5.54955e-08
4.86325e-06
6.33795e-08
4.83539e-06
7.22848e-08
4.80574e-06
8.22052e-08
4.77397e-06
9.31395e-08
4.73963e-06
1.05524e-07
4.70201e-06
1.20396e-07
4.66029e-06
1.39874e-07
4.61366e-06
1.67855e-07
4.56267e-06
2.10309e-07
4.51184e-06
2.79261e-07
3.88025e-07
4.47679e-06
-1.14828e-07
1.29155e-06
-1.74177e-07
1.13579e-06
-2.5694e-07
1.1169e-06
-3.44415e-07
1.0407e-06
-4.29875e-07
9.30108e-07
-4.97321e-07
8.15148e-07
-5.35544e-07
6.6991e-07
-5.45455e-07
5.25594e-07
-5.29859e-07
3.80189e-07
-4.9241e-07
2.46939e-07
-4.37561e-07
1.23981e-07
-3.68045e-07
1.5252e-08
-2.86551e-07
-8.17354e-08
-1.94872e-07
-1.66249e-07
-9.5014e-08
-2.40245e-07
1.10393e-08
-3.04797e-07
1.21682e-07
-3.61345e-07
2.35674e-07
-4.11029e-07
3.52068e-07
-4.54785e-07
4.70116e-07
-4.93387e-07
5.89255e-07
-5.2741e-07
7.09053e-07
-5.57312e-07
8.29165e-07
-5.83445e-07
9.49302e-07
-6.06114e-07
1.06919e-06
-6.25556e-07
1.18858e-06
-6.41961e-07
1.30726e-06
-6.55502e-07
1.42503e-06
-6.66345e-07
1.54172e-06
-6.74662e-07
1.65718e-06
-6.80636e-07
1.77125e-06
-6.84447e-07
1.8838e-06
-6.86265e-07
1.99469e-06
-6.86254e-07
2.10385e-06
-6.84571e-07
2.21119e-06
-6.81374e-07
2.31667e-06
-6.76821e-07
2.42024e-06
-6.71065e-07
2.52188e-06
-6.64253e-07
2.62156e-06
-6.56515e-07
2.71929e-06
-6.47968e-07
2.81506e-06
-6.38731e-07
2.90889e-06
-6.28925e-07
3.00077e-06
-6.18663e-07
3.09075e-06
-6.08044e-07
3.17882e-06
-5.97164e-07
3.26501e-06
-5.86107e-07
3.3493e-06
-5.74953e-07
3.43172e-06
-5.63768e-07
3.51224e-06
-5.52611e-07
3.59088e-06
-5.41511e-07
3.66761e-06
-5.30471e-07
3.74241e-06
-5.19478e-07
3.81521e-06
-5.08521e-07
3.88589e-06
-4.97606e-07
3.95433e-06
-4.86738e-07
4.02041e-06
-4.75894e-07
4.08404e-06
-4.65004e-07
4.14514e-06
-4.53964e-07
4.20367e-06
-4.42677e-07
4.25961e-06
-4.31076e-07
4.31294e-06
-4.19144e-07
4.36368e-06
-4.06891e-07
4.41189e-06
-3.94325e-07
4.45766e-06
-3.81456e-07
4.50115e-06
-3.68284e-07
4.5425e-06
-3.54825e-07
4.58187e-06
-3.4113e-07
4.61937e-06
-3.27292e-07
4.65513e-06
-3.13413e-07
4.68926e-06
-2.99608e-07
4.72186e-06
-2.86002e-07
4.75303e-06
-2.72717e-07
4.78288e-06
-2.59857e-07
4.81151e-06
-2.47509e-07
4.83908e-06
-2.35747e-07
4.86575e-06
-2.24629e-07
4.89163e-06
-2.14197e-07
4.91685e-06
-2.04464e-07
4.9415e-06
-1.9542e-07
4.96568e-06
-1.87038e-07
4.98949e-06
-1.79287e-07
5.01298e-06
-1.72129e-07
5.03623e-06
-1.65532e-07
5.05929e-06
-1.59459e-07
5.08219e-06
-1.53875e-07
5.10499e-06
-1.48746e-07
5.12768e-06
-1.44046e-07
5.15025e-06
-1.3975e-07
5.17263e-06
-1.35844e-07
5.19468e-06
-1.3232e-07
5.21619e-06
-1.29194e-07
5.23693e-06
-1.26495e-07
5.25671e-06
-1.24247e-07
5.27536e-06
-1.22449e-07
5.29277e-06
-1.21065e-07
5.30889e-06
-1.20026e-07
5.3237e-06
-1.1924e-07
5.33724e-06
-1.18612e-07
5.34959e-06
-1.1805e-07
5.36086e-06
-1.17483e-07
5.3712e-06
-1.16865e-07
5.38077e-06
-1.16185e-07
5.3897e-06
-1.1546e-07
5.39816e-06
-1.14752e-07
5.40624e-06
-1.14117e-07
5.41393e-06
-1.13439e-07
5.42115e-06
-1.12667e-07
5.42785e-06
-1.11715e-07
5.434e-06
-1.10481e-07
5.43965e-06
-1.08968e-07
5.44487e-06
-1.07232e-07
5.44979e-06
-1.05362e-07
5.45448e-06
-1.03473e-07
5.459e-06
-1.01666e-07
5.46333e-06
-9.99826e-08
5.46736e-06
-9.83751e-08
5.47099e-06
-9.67148e-08
5.47406e-06
-9.48113e-08
5.47649e-06
-9.24565e-08
5.47819e-06
-8.94976e-08
5.47919e-06
-8.58857e-08
5.47955e-06
-8.16595e-08
5.47942e-06
-7.689e-08
5.47892e-06
-7.16646e-08
5.47812e-06
-6.61019e-08
5.47707e-06
-6.03371e-08
5.47574e-06
-5.44788e-08
5.4741e-06
-4.85909e-08
5.47212e-06
-4.26874e-08
5.4697e-06
-3.67536e-08
5.46679e-06
-3.08026e-08
5.46336e-06
-2.4913e-08
5.45937e-06
-1.92124e-08
5.45483e-06
-1.38506e-08
5.44977e-06
-8.94021e-09
5.44427e-06
-4.55222e-09
5.4384e-06
-7.34024e-10
5.43224e-06
2.48509e-09
5.42587e-06
5.11696e-09
5.41932e-06
7.21991e-09
5.41256e-06
8.89592e-09
5.40555e-06
1.02581e-08
5.39828e-06
1.14178e-08
5.39078e-06
1.24982e-08
5.38305e-06
1.3636e-08
5.37501e-06
1.49169e-08
5.36659e-06
1.63534e-08
5.35772e-06
1.7923e-08
5.34835e-06
1.9593e-08
5.33855e-06
2.12945e-08
5.32844e-06
2.29334e-08
5.31814e-06
2.44268e-08
5.30766e-06
2.57858e-08
5.29691e-06
2.71635e-08
5.28571e-06
2.87591e-08
5.27396e-06
3.06452e-08
5.26161e-06
3.27214e-08
5.24874e-06
3.47987e-08
5.23539e-06
3.67485e-08
5.22157e-06
3.85892e-08
5.20715e-06
4.04884e-08
5.19194e-06
4.26784e-08
5.17575e-06
4.53739e-08
5.15845e-06
4.87246e-08
5.14001e-06
5.28215e-08
5.12048e-06
5.77131e-08
5.09997e-06
6.34212e-08
5.07867e-06
6.99718e-08
5.05674e-06
7.74043e-08
5.03428e-06
8.58253e-08
5.0112e-06
9.53477e-08
4.98719e-06
1.06193e-07
4.96163e-06
1.18673e-07
4.93362e-06
1.33506e-07
4.90204e-06
1.51951e-07
4.8658e-06
1.76084e-07
4.82358e-06
2.10041e-07
4.77577e-06
2.58085e-07
4.72135e-06
3.33648e-07
4.308e-07
4.67854e-06
-8.83691e-08
1.38017e-06
-1.36415e-07
1.18394e-06
-2.33287e-07
1.21391e-06
-3.36715e-07
1.1442e-06
-4.26e-07
1.0195e-06
-4.83524e-07
8.72732e-07
-5.08063e-07
6.9453e-07
-5.02245e-07
5.19815e-07
-4.69548e-07
3.47553e-07
-4.12226e-07
1.89636e-07
-3.34531e-07
4.63265e-08
-2.41066e-07
-7.82043e-08
-1.36363e-07
-1.86412e-07
-2.30876e-08
-2.79518e-07
9.66543e-08
-3.59965e-07
2.21148e-07
-4.29281e-07
3.4905e-07
-4.89228e-07
4.79235e-07
-5.41203e-07
6.10804e-07
-5.86335e-07
7.43018e-07
-6.25587e-07
8.75296e-07
-6.59672e-07
1.00717e-06
-6.89168e-07
1.13826e-06
-7.1452e-07
1.26824e-06
-7.36088e-07
1.39685e-06
-7.54155e-07
1.52387e-06
-7.68968e-07
1.64912e-06
-7.80744e-07
1.77248e-06
-7.89688e-07
1.89383e-06
-7.96001e-07
2.01308e-06
-7.99881e-07
2.13016e-06
-8.01521e-07
2.24502e-06
-8.01109e-07
2.3576e-06
-7.98827e-07
2.46789e-06
-7.94852e-07
2.57587e-06
-7.89358e-07
2.68157e-06
-7.82511e-07
2.78499e-06
-7.74473e-07
2.88614e-06
-7.65397e-07
2.98505e-06
-7.55426e-07
3.08178e-06
-7.44691e-07
3.17637e-06
-7.33316e-07
3.26887e-06
-7.21418e-07
3.3593e-06
-7.091e-07
3.44771e-06
-6.96454e-07
3.53411e-06
-6.83565e-07
3.61851e-06
-6.70506e-07
3.7009e-06
-6.57347e-07
3.78128e-06
-6.44147e-07
3.85962e-06
-6.30956e-07
3.93591e-06
-6.17802e-07
4.01013e-06
-6.04693e-07
4.08226e-06
-5.91618e-07
4.15229e-06
-5.78554e-07
4.22016e-06
-5.65475e-07
4.28577e-06
-5.52361e-07
4.34906e-06
-5.39181e-07
4.40994e-06
-5.25889e-07
4.4684e-06
-5.12422e-07
4.52443e-06
-4.98718e-07
4.57809e-06
-4.84733e-07
4.6294e-06
-4.70458e-07
4.67843e-06
-4.55917e-07
4.72525e-06
-4.41149e-07
4.76999e-06
-4.26197e-07
4.8128e-06
-4.11095e-07
4.85386e-06
-3.95884e-07
4.89334e-06
-3.80621e-07
4.93143e-06
-3.65383e-07
4.96827e-06
-3.50258e-07
5.004e-06
-3.35344e-07
5.03873e-06
-3.20739e-07
5.07254e-06
-3.06534e-07
5.10549e-06
-2.92811e-07
5.13761e-06
-2.79639e-07
5.16894e-06
-2.6708e-07
5.19949e-06
-2.55181e-07
5.22925e-06
-2.43966e-07
5.25822e-06
-2.33442e-07
5.2864e-06
-2.23602e-07
5.31378e-06
-2.14432e-07
5.3404e-06
-2.05907e-07
5.36626e-06
-1.97997e-07
5.39138e-06
-1.90667e-07
5.4158e-06
-1.83883e-07
5.43953e-06
-1.7761e-07
5.46259e-06
-1.71818e-07
5.48501e-06
-1.66473e-07
5.5068e-06
-1.61541e-07
5.52794e-06
-1.5699e-07
5.5484e-06
-1.52791e-07
5.56811e-06
-1.48921e-07
5.58697e-06
-1.45366e-07
5.60483e-06
-1.42122e-07
5.62155e-06
-1.39186e-07
5.63701e-06
-1.36545e-07
5.65114e-06
-1.34169e-07
5.6639e-06
-1.32018e-07
5.67532e-06
-1.30056e-07
5.68551e-06
-1.28255e-07
5.69461e-06
-1.26593e-07
5.70276e-06
-1.25039e-07
5.71013e-06
-1.23563e-07
5.7168e-06
-1.22146e-07
5.72285e-06
-1.20815e-07
5.72833e-06
-1.1961e-07
5.73335e-06
-1.18471e-07
5.73799e-06
-1.17312e-07
5.74232e-06
-1.16062e-07
5.74643e-06
-1.14596e-07
5.75031e-06
-1.1286e-07
5.75395e-06
-1.1088e-07
5.7573e-06
-1.08725e-07
5.7603e-06
-1.06482e-07
5.76283e-06
-1.04209e-07
5.76475e-06
-1.01908e-07
5.76587e-06
-9.95086e-08
5.76603e-06
-9.68864e-08
5.76512e-06
-9.39049e-08
5.76309e-06
-9.04444e-08
5.76001e-06
-8.64283e-08
5.75596e-06
-8.18484e-08
5.75105e-06
-7.67632e-08
5.74541e-06
-7.1271e-08
5.73921e-06
-6.54821e-08
5.7326e-06
-5.95036e-08
5.72567e-06
-5.34234e-08
5.71848e-06
-4.73081e-08
5.71108e-06
-4.12049e-08
5.70352e-06
-3.51374e-08
5.69585e-06
-2.91018e-08
5.68813e-06
-2.30983e-08
5.68038e-06
-1.7179e-08
5.67262e-06
-1.14612e-08
5.66483e-06
-6.08221e-09
5.65703e-06
-1.15447e-09
5.64922e-06
3.247e-09
5.64138e-06
7.08872e-09
5.63348e-06
1.03698e-08
5.62546e-06
1.31166e-08
5.61726e-06
1.54064e-08
5.60877e-06
1.7367e-08
5.59985e-06
1.91462e-08
5.59037e-06
2.08741e-08
5.58021e-06
2.26319e-08
5.56934e-06
2.44681e-08
5.55781e-06
2.64176e-08
5.54566e-06
2.84782e-08
5.53295e-06
3.06013e-08
5.51979e-06
3.27201e-08
5.5063e-06
3.47618e-08
5.49255e-06
3.66524e-08
5.47861e-06
3.83406e-08
5.4645e-06
3.98594e-08
5.45027e-06
4.13692e-08
5.43593e-06
4.30716e-08
5.42148e-06
4.50691e-08
5.40685e-06
4.73214e-08
5.39188e-06
4.97351e-08
5.37632e-06
5.22804e-08
5.35985e-06
5.50343e-08
5.34217e-06
5.81347e-08
5.32312e-06
6.17069e-08
5.30266e-06
6.58088e-08
5.28093e-06
7.0432e-08
5.25821e-06
7.55261e-08
5.23486e-06
8.10457e-08
5.21128e-06
8.69854e-08
5.1878e-06
9.34373e-08
5.1646e-06
1.00596e-07
5.14161e-06
1.08793e-07
5.11858e-06
1.18363e-07
5.09505e-06
1.29707e-07
5.07042e-06
1.43282e-07
5.04397e-06
1.59936e-07
5.01487e-06
1.81027e-07
4.98253e-06
2.08402e-07
4.94645e-06
2.46095e-07
4.90782e-06
2.9669e-07
4.86801e-06
3.73436e-07
4.65037e-07
4.83376e-06
-7.30024e-08
1.45339e-06
-1.30248e-07
1.2413e-06
-2.45566e-07
1.32935e-06
-3.51773e-07
1.2505e-06
-4.28777e-07
1.0966e-06
-4.67019e-07
9.1104e-07
-4.74001e-07
7.01596e-07
-4.48295e-07
4.94151e-07
-3.93314e-07
2.92629e-07
-3.15846e-07
1.12184e-07
-2.26047e-07
-4.34368e-08
-1.26811e-07
-1.77438e-07
-1.87055e-08
-2.94495e-07
9.84117e-08
-3.96634e-07
2.23758e-07
-4.85293e-07
3.55879e-07
-5.61395e-07
4.93011e-07
-6.26342e-07
6.33416e-07
-6.81596e-07
7.75694e-07
-7.28597e-07
9.18709e-07
-7.68589e-07
1.06157e-06
-8.02516e-07
1.20357e-06
-8.31158e-07
1.34418e-06
-8.55118e-07
1.48298e-06
-8.74873e-07
1.61964e-06
-8.9081e-07
1.75394e-06
-9.03249e-07
1.88567e-06
-9.12473e-07
2.01473e-06
-9.18736e-07
2.14102e-06
-9.22282e-07
2.26449e-06
-9.23341e-07
2.38511e-06
-9.22135e-07
2.50288e-06
-9.18873e-07
2.61782e-06
-9.13757e-07
2.72995e-06
-9.0698e-07
2.83933e-06
-8.9873e-07
2.94601e-06
-8.89181e-07
3.05004e-06
-8.785e-07
3.15149e-06
-8.6684e-07
3.25041e-06
-8.54344e-07
3.34687e-06
-8.41143e-07
3.44091e-06
-8.27357e-07
3.53259e-06
-8.13098e-07
3.62196e-06
-7.98466e-07
3.70905e-06
-7.83548e-07
3.79391e-06
-7.68421e-07
3.87655e-06
-7.53151e-07
3.957e-06
-7.37797e-07
4.03526e-06
-7.22409e-07
4.11133e-06
-7.07022e-07
4.18518e-06
-6.91659e-07
4.25681e-06
-6.76328e-07
4.32622e-06
-6.61025e-07
4.39339e-06
-6.45735e-07
4.45835e-06
-6.30435e-07
4.52109e-06
-6.15098e-07
4.5816e-06
-5.99694e-07
4.63989e-06
-5.84188e-07
4.69601e-06
-5.68542e-07
4.75001e-06
-5.52724e-07
4.80199e-06
-5.36712e-07
4.85204e-06
-5.20508e-07
4.90026e-06
-5.04136e-07
4.94674e-06
-4.8763e-07
4.99157e-06
-4.71031e-07
5.03486e-06
-4.54383e-07
5.07672e-06
-4.37742e-07
5.11727e-06
-4.21172e-07
5.15662e-06
-4.04744e-07
5.1949e-06
-3.88538e-07
5.23219e-06
-3.72635e-07
5.26856e-06
-3.57116e-07
5.30408e-06
-3.42056e-07
5.33878e-06
-3.27518e-07
5.37269e-06
-3.13556e-07
5.40582e-06
-3.00216e-07
5.43817e-06
-2.87529e-07
5.46971e-06
-2.75509e-07
5.50041e-06
-2.64156e-07
5.53026e-06
-2.53457e-07
5.55922e-06
-2.43396e-07
5.58727e-06
-2.33954e-07
5.61437e-06
-2.25105e-07
5.64051e-06
-2.16817e-07
5.66568e-06
-2.09059e-07
5.68987e-06
-2.01804e-07
5.71307e-06
-1.95025e-07
5.73529e-06
-1.88695e-07
5.75653e-06
-1.82784e-07
5.77679e-06
-1.77257e-07
5.79607e-06
-1.72077e-07
5.81435e-06
-1.67215e-07
5.83162e-06
-1.62647e-07
5.84785e-06
-1.58362e-07
5.86301e-06
-1.54355e-07
5.87707e-06
-1.50617e-07
5.89001e-06
-1.47127e-07
5.90185e-06
-1.43866e-07
5.9126e-06
-1.40822e-07
5.92232e-06
-1.37981e-07
5.93103e-06
-1.35318e-07
5.93877e-06
-1.32792e-07
5.94557e-06
-1.30366e-07
5.95144e-06
-1.28028e-07
5.95643e-06
-1.25812e-07
5.96058e-06
-1.23776e-07
5.96403e-06
-1.21924e-07
5.9669e-06
-1.20194e-07
5.96937e-06
-1.18535e-07
5.97161e-06
-1.16847e-07
5.97377e-06
-1.15025e-07
5.97588e-06
-1.12995e-07
5.97787e-06
-1.10724e-07
5.97958e-06
-1.08202e-07
5.98079e-06
-1.05424e-07
5.98124e-06
-1.02369e-07
5.98072e-06
-9.89899e-08
5.97904e-06
-9.52222e-08
5.97614e-06
-9.10131e-08
5.97203e-06
-8.63382e-08
5.96679e-06
-8.12076e-08
5.96061e-06
-7.56718e-08
5.95365e-06
-6.98146e-08
5.94609e-06
-6.37275e-08
5.93808e-06
-5.74854e-08
5.9297e-06
-5.11375e-08
5.92098e-06
-4.47171e-08
5.91192e-06
-3.82627e-08
5.90254e-06
-3.18312e-08
5.89287e-06
-2.54864e-08
5.88303e-06
-1.92717e-08
5.87312e-06
-1.3204e-08
5.86323e-06
-7.30609e-09
5.8534e-06
-1.64425e-09
5.84362e-06
3.68665e-09
5.83386e-06
8.59521e-09
5.82407e-06
1.30283e-08
5.81416e-06
1.69789e-08
5.80405e-06
2.04638e-08
5.79365e-06
2.35092e-08
5.78286e-06
2.61725e-08
5.77166e-06
2.85531e-08
5.76e-06
3.07865e-08
5.74785e-06
3.29921e-08
5.73523e-06
3.52307e-08
5.72216e-06
3.7509e-08
5.70873e-06
3.98245e-08
5.69501e-06
4.21725e-08
5.68105e-06
4.45405e-08
5.66682e-06
4.69139e-08
5.65226e-06
4.9304e-08
5.63716e-06
5.17174e-08
5.62134e-06
5.41346e-08
5.60465e-06
5.65257e-08
5.58707e-06
5.89223e-08
5.5687e-06
6.14172e-08
5.54963e-06
6.41056e-08
5.5299e-06
6.70209e-08
5.50945e-06
7.01585e-08
5.48818e-06
7.35242e-08
5.46601e-06
7.71802e-08
5.44289e-06
8.12194e-08
5.41886e-06
8.57174e-08
5.39398e-06
9.06678e-08
5.3684e-06
9.59912e-08
5.34233e-06
1.01569e-07
5.31603e-06
1.07332e-07
5.28969e-06
1.13304e-07
5.26345e-06
1.19663e-07
5.2373e-06
1.26732e-07
5.21108e-06
1.34987e-07
5.18452e-06
1.44906e-07
5.15719e-06
1.57013e-07
5.12862e-06
1.71826e-07
5.09829e-06
1.90239e-07
5.06562e-06
2.13674e-07
5.03013e-06
2.43864e-07
4.99185e-06
2.84351e-07
4.9516e-06
3.36917e-07
4.91335e-06
4.11659e-07
4.9784e-07
4.88052e-06
-7.97376e-08
1.53331e-06
-1.75123e-07
1.33676e-06
-3.14692e-07
1.46903e-06
-4.30108e-07
1.36598e-06
-5.14745e-07
1.18133e-06
-5.6172e-07
9.58087e-07
-5.71372e-07
7.11321e-07
-5.32415e-07
4.55244e-07
-4.54927e-07
2.15195e-07
-3.55639e-07
1.29157e-08
-2.47978e-07
-1.51066e-07
-1.32876e-07
-2.92539e-07
-1.06211e-08
-4.16726e-07
1.19929e-07
-5.27185e-07
2.58768e-07
-6.24112e-07
4.04938e-07
-7.07561e-07
5.56713e-07
-7.78099e-07
7.12098e-07
-8.36973e-07
8.69321e-07
-8.85803e-07
1.02686e-06
-9.26114e-07
1.18357e-06
-9.59211e-07
1.33854e-06
-9.86116e-07
1.4911e-06
-1.00767e-06
1.64076e-06
-1.02452e-06
1.78714e-06
-1.03719e-06
1.93002e-06
-1.04611e-06
2.06922e-06
-1.05167e-06
2.20467e-06
-1.05418e-06
2.33633e-06
-1.05394e-06
2.46422e-06
-1.05123e-06
2.58839e-06
-1.0463e-06
2.70893e-06
-1.0394e-06
2.82592e-06
-1.03074e-06
2.93947e-06
-1.02053e-06
3.0497e-06
-1.00896e-06
3.15674e-06
-9.96207e-07
3.26068e-06
-9.82443e-07
3.36166e-06
-9.67817e-07
3.45979e-06
-9.52466e-07
3.55517e-06
-9.36515e-07
3.64789e-06
-9.20076e-07
3.73804e-06
-9.03251e-07
3.82571e-06
-8.86129e-07
3.91095e-06
-8.68788e-07
3.99382e-06
-8.51295e-07
4.07438e-06
-8.33706e-07
4.15265e-06
-8.16071e-07
4.22867e-06
-7.98429e-07
4.30245e-06
-7.80809e-07
4.37402e-06
-7.63228e-07
4.44338e-06
-7.45691e-07
4.51054e-06
-7.28194e-07
4.57553e-06
-7.10726e-07
4.63836e-06
-6.93268e-07
4.69906e-06
-6.758e-07
4.75766e-06
-6.58299e-07
4.81421e-06
-6.4074e-07
4.86877e-06
-6.23098e-07
4.9214e-06
-6.05357e-07
4.9722e-06
-5.87513e-07
5.02128e-06
-5.69583e-07
5.06874e-06
-5.51595e-07
5.11468e-06
-5.33579e-07
5.15922e-06
-5.15568e-07
5.20244e-06
-4.97603e-07
5.24444e-06
-4.7974e-07
5.2853e-06
-4.62038e-07
5.32512e-06
-4.44563e-07
5.36396e-06
-4.27381e-07
5.40188e-06
-4.10561e-07
5.43893e-06
-3.94164e-07
5.47512e-06
-3.78251e-07
5.51047e-06
-3.6287e-07
5.54497e-06
-3.48064e-07
5.57862e-06
-3.33865e-07
5.61138e-06
-3.20294e-07
5.64323e-06
-3.07364e-07
5.67414e-06
-2.95073e-07
5.70409e-06
-2.83412e-07
5.73306e-06
-2.72367e-07
5.76102e-06
-2.61918e-07
5.78796e-06
-2.52042e-07
5.81385e-06
-2.42715e-07
5.83869e-06
-2.33909e-07
5.86248e-06
-2.25596e-07
5.88521e-06
-2.17753e-07
5.90686e-06
-2.10351e-07
5.92743e-06
-2.03362e-07
5.94693e-06
-1.96757e-07
5.96535e-06
-1.90508e-07
5.98272e-06
-1.84588e-07
5.99904e-06
-1.78977e-07
6.01433e-06
-1.73659e-07
6.02859e-06
-1.68624e-07
6.04182e-06
-1.63862e-07
6.05405e-06
-1.59366e-07
6.0653e-06
-1.55122e-07
6.07558e-06
-1.51109e-07
6.08489e-06
-1.47299e-07
6.09324e-06
-1.43674e-07
6.10067e-06
-1.40227e-07
6.10726e-06
-1.36961e-07
6.1131e-06
-1.33874e-07
6.11825e-06
-1.30965e-07
6.1227e-06
-1.28235e-07
6.12645e-06
-1.25674e-07
6.12948e-06
-1.23238e-07
6.13182e-06
-1.20873e-07
6.13349e-06
-1.18526e-07
6.13457e-06
-1.16109e-07
6.1351e-06
-1.13531e-07
6.13509e-06
-1.10716e-07
6.13449e-06
-1.07612e-07
6.13324e-06
-1.04178e-07
6.13124e-06
-1.00373e-07
6.12839e-06
-9.61503e-08
6.12464e-06
-9.14712e-08
6.11994e-06
-8.6324e-08
6.11433e-06
-8.07321e-08
6.10787e-06
-7.47517e-08
6.10065e-06
-6.84613e-08
6.09277e-06
-6.19456e-08
6.08432e-06
-5.52824e-08
6.07536e-06
-4.85375e-08
6.06598e-06
-4.17626e-08
6.05625e-06
-3.49969e-08
6.04625e-06
-2.82756e-08
6.03606e-06
-2.16423e-08
6.02571e-06
-1.51453e-08
6.01524e-06
-8.81725e-09
6.00469e-06
-2.66106e-09
5.99406e-06
3.31425e-09
5.98336e-06
9.05512e-09
5.97257e-06
1.44622e-08
5.96173e-06
1.94322e-08
5.95083e-06
2.39196e-08
5.93985e-06
2.79518e-08
5.92871e-06
3.15927e-08
5.91731e-06
3.49032e-08
5.90555e-06
3.79274e-08
5.89337e-06
4.07167e-08
5.88079e-06
4.33546e-08
5.86781e-06
4.59555e-08
5.8544e-06
4.86207e-08
5.84049e-06
5.14049e-08
5.82598e-06
5.43193e-08
5.81079e-06
5.73486e-08
5.79484e-06
6.04656e-08
5.77809e-06
6.36554e-08
5.76045e-06
6.69271e-08
5.74186e-06
7.02859e-08
5.72229e-06
7.36885e-08
5.70174e-06
7.70599e-08
5.68028e-06
8.03682e-08
5.65801e-06
8.36696e-08
5.63503e-06
8.70719e-08
5.61136e-06
9.06686e-08
5.587e-06
9.45083e-08
5.56189e-06
9.86193e-08
5.53601e-06
1.03037e-07
5.50942e-06
1.07799e-07
5.48221e-06
1.12913e-07
5.45454e-06
1.18327e-07
5.42657e-06
1.23952e-07
5.39844e-06
1.29688e-07
5.37025e-06
1.35515e-07
5.34202e-06
1.41527e-07
5.31369e-06
1.47982e-07
5.28514e-06
1.55271e-07
5.25621e-06
1.63906e-07
5.22669e-06
1.74421e-07
5.19629e-06
1.87393e-07
5.16469e-06
2.03419e-07
5.13147e-06
2.23439e-07
5.09626e-06
2.48876e-07
5.05878e-06
2.81332e-07
5.01917e-06
3.23947e-07
4.97792e-06
3.78154e-07
4.93819e-06
4.51382e-07
5.35126e-07
4.9009e-06
-1.06031e-07
1.63931e-06
-2.55374e-07
1.48606e-06
-4.22606e-07
1.63629e-06
-5.6212e-07
1.50553e-06
-6.73696e-07
1.29293e-06
-7.46004e-07
1.03044e-06
-7.78625e-07
7.43978e-07
-7.78599e-07
4.55245e-07
-7.52313e-07
1.88946e-07
-6.83703e-07
-5.56937e-08
-5.60534e-07
-2.74202e-07
-3.90506e-07
-4.62575e-07
-1.96458e-07
-6.1075e-07
2.0415e-09
-7.25692e-07
1.95585e-07
-8.17638e-07
3.8321e-07
-8.9519e-07
5.66525e-07
-9.61401e-07
7.46907e-07
-1.01735e-06
9.24914e-07
-1.0638e-06
1.10037e-06
-1.10156e-06
1.27284e-06
-1.13166e-06
1.44178e-06
-1.15505e-06
1.60674e-06
-1.17262e-06
1.76733e-06
-1.18509e-06
1.92328e-06
-1.19313e-06
2.07444e-06
-1.19726e-06
2.22071e-06
-1.19794e-06
2.36212e-06
-1.19557e-06
2.4987e-06
-1.19051e-06
2.63057e-06
-1.18309e-06
2.75786e-06
-1.17359e-06
2.88075e-06
-1.16228e-06
2.99941e-06
-1.1494e-06
3.11404e-06
-1.13515e-06
3.22481e-06
-1.11973e-06
3.33192e-06
-1.10331e-06
3.43554e-06
-1.08606e-06
3.53584e-06
-1.06811e-06
3.63298e-06
-1.0496e-06
3.7271e-06
-1.03063e-06
3.81834e-06
-1.01131e-06
3.9068e-06
-9.91714e-07
3.9926e-06
-9.71927e-07
4.07583e-06
-9.52013e-07
4.15656e-06
-9.32027e-07
4.23487e-06
-9.12015e-07
4.31081e-06
-8.92015e-07
4.38444e-06
-8.72058e-07
4.45579e-06
-8.52165e-07
4.52491e-06
-8.3235e-07
4.59184e-06
-8.12618e-07
4.65661e-06
-7.92965e-07
4.71926e-06
-7.73383e-07
4.77985e-06
-7.53858e-07
4.83843e-06
-7.34376e-07
4.89504e-06
-7.14919e-07
4.94978e-06
-6.95473e-07
5.0027e-06
-6.76023e-07
5.0539e-06
-6.56559e-07
5.10347e-06
-6.37081e-07
5.1515e-06
-6.17607e-07
5.19807e-06
-5.98166e-07
5.24328e-06
-5.78788e-07
5.28721e-06
-5.59498e-07
5.32994e-06
-5.40332e-07
5.37153e-06
-5.21339e-07
5.41207e-06
-5.02573e-07
5.4516e-06
-4.84092e-07
5.49017e-06
-4.65954e-07
5.52782e-06
-4.48214e-07
5.56458e-06
-4.30923e-07
5.60045e-06
-4.14127e-07
5.63544e-06
-3.97865e-07
5.66954e-06
-3.8217e-07
5.70274e-06
-3.67068e-07
5.73502e-06
-3.52573e-07
5.76635e-06
-3.38694e-07
5.7967e-06
-3.25431e-07
5.82606e-06
-3.12774e-07
5.8544e-06
-3.00712e-07
5.88171e-06
-2.89227e-07
5.90796e-06
-2.78299e-07
5.93315e-06
-2.67907e-07
5.95727e-06
-2.58029e-07
5.98031e-06
-2.48644e-07
6.00228e-06
-2.39727e-07
6.02318e-06
-2.31248e-07
6.04299e-06
-2.23178e-07
6.06173e-06
-2.15495e-07
6.0794e-06
-2.0818e-07
6.09602e-06
-2.01216e-07
6.11162e-06
-1.94585e-07
6.12623e-06
-1.8827e-07
6.13986e-06
-1.8226e-07
6.15254e-06
-1.76547e-07
6.16428e-06
-1.71118e-07
6.1751e-06
-1.65938e-07
6.18495e-06
-1.60971e-07
6.19386e-06
-1.56208e-07
6.20185e-06
-1.51668e-07
6.209e-06
-1.47375e-07
6.21537e-06
-1.43336e-07
6.22102e-06
-1.3953e-07
6.22598e-06
-1.35932e-07
6.23026e-06
-1.32516e-07
6.23384e-06
-1.29256e-07
6.2367e-06
-1.26098e-07
6.23879e-06
-1.22965e-07
6.24007e-06
-1.19808e-07
6.24054e-06
-1.16581e-07
6.24022e-06
-1.13219e-07
6.23915e-06
-1.09649e-07
6.23734e-06
-1.05802e-07
6.23477e-06
-1.01616e-07
6.23143e-06
-9.70358e-08
6.2273e-06
-9.20172e-08
6.22236e-06
-8.65381e-08
6.21664e-06
-8.06133e-08
6.2102e-06
-7.42909e-08
6.20308e-06
-6.76387e-08
6.19535e-06
-6.07365e-08
6.18707e-06
-5.36707e-08
6.17831e-06
-4.65294e-08
6.16916e-06
-3.93878e-08
6.15968e-06
-3.22952e-08
6.14996e-06
-2.52742e-08
6.14001e-06
-1.83356e-08
6.12986e-06
-1.14981e-08
6.1195e-06
-4.7962e-09
6.10895e-06
1.72764e-09
6.09825e-06
8.03444e-09
6.08748e-06
1.40835e-08
6.0767e-06
1.9828e-08
6.06593e-06
2.52187e-08
6.05513e-06
3.02268e-08
6.04418e-06
3.48658e-08
6.03294e-06
3.91883e-08
6.02127e-06
4.32625e-08
6.00901e-06
4.71539e-08
5.99602e-06
5.09105e-08
5.98216e-06
5.45686e-08
5.96735e-06
5.81586e-08
5.95158e-06
6.17147e-08
5.93492e-06
6.52666e-08
5.91748e-06
6.8835e-08
5.89936e-06
7.24291e-08
5.88063e-06
7.60594e-08
5.86134e-06
7.97511e-08
5.84142e-06
8.3557e-08
5.82081e-06
8.75298e-08
5.79941e-06
9.16708e-08
5.77719e-06
9.58942e-08
5.75415e-06
1.00082e-07
5.73033e-06
1.0418e-07
5.70574e-06
1.08247e-07
5.6804e-06
1.12402e-07
5.65431e-06
1.1674e-07
5.62752e-06
1.21287e-07
5.60008e-06
1.2604e-07
5.57209e-06
1.31014e-07
5.54365e-06
1.36234e-07
5.51485e-06
1.41698e-07
5.48582e-06
1.47351e-07
5.45663e-06
1.53127e-07
5.42733e-06
1.5898e-07
5.39788e-06
1.6496e-07
5.36817e-06
1.71224e-07
5.33806e-06
1.78081e-07
5.30738e-06
1.85942e-07
5.27598e-06
1.95301e-07
5.2437e-06
2.06682e-07
5.21041e-06
2.20673e-07
5.17588e-06
2.37932e-07
5.13985e-06
2.59456e-07
5.10205e-06
2.86659e-07
5.06236e-06
3.2101e-07
5.02105e-06
3.65238e-07
4.97863e-06
4.20566e-07
4.93775e-06
4.92243e-07
5.73406e-07
4.89946e-06
-1.50887e-07
1.7901e-06
-3.59512e-07
1.69449e-06
-5.68669e-07
1.84547e-06
-7.67324e-07
1.70407e-06
-9.6542e-07
1.491e-06
-1.17238e-06
1.23733e-06
-1.39609e-06
9.67603e-07
-1.61271e-06
6.71833e-07
-1.75933e-06
3.35501e-07
-1.77315e-06
-4.1898e-08
-1.62695e-06
-4.20391e-07
-1.33549e-06
-7.54063e-07
-9.46868e-07
-9.99335e-07
-5.31543e-07
-1.14104e-06
-1.48542e-07
-1.20062e-06
1.79886e-07
-1.22363e-06
4.59792e-07
-1.2413e-06
7.05518e-07
-1.26308e-06
9.29048e-07
-1.28732e-06
1.13789e-06
-1.3104e-06
1.33608e-06
-1.32984e-06
1.5256e-06
-1.34456e-06
1.70737e-06
-1.35437e-06
1.88183e-06
-1.35954e-06
2.04924e-06
-1.36054e-06
2.20982e-06
-1.35782e-06
2.36374e-06
-1.35185e-06
2.51124e-06
-1.34306e-06
2.65257e-06
-1.33183e-06
2.788e-06
-1.31852e-06
2.91783e-06
-1.30342e-06
3.04237e-06
-1.28681e-06
3.16191e-06
-1.26893e-06
3.27676e-06
-1.24999e-06
3.38719e-06
-1.23016e-06
3.4935e-06
-1.20961e-06
3.59592e-06
-1.18848e-06
3.69469e-06
-1.16688e-06
3.79003e-06
-1.14494e-06
3.88213e-06
-1.12273e-06
3.97117e-06
-1.10034e-06
4.0573e-06
-1.07784e-06
4.14066e-06
-1.05529e-06
4.22138e-06
-1.03272e-06
4.29955e-06
-1.0102e-06
4.37526e-06
-9.87732e-07
4.44861e-06
-9.65362e-07
4.51966e-06
-9.43105e-07
4.58847e-06
-9.20978e-07
4.6551e-06
-8.98986e-07
4.71961e-06
-8.77132e-07
4.78206e-06
-8.55409e-07
4.84248e-06
-8.33809e-07
4.90094e-06
-8.12321e-07
4.9575e-06
-7.90933e-07
5.01221e-06
-7.69635e-07
5.06515e-06
-7.48415e-07
5.1164e-06
-7.27269e-07
5.16603e-06
-7.06192e-07
5.21414e-06
-6.85187e-07
5.2608e-06
-6.6427e-07
5.3061e-06
-6.43464e-07
5.35011e-06
-6.22797e-07
5.39291e-06
-6.02297e-07
5.43457e-06
-5.81994e-07
5.47516e-06
-5.61928e-07
5.51474e-06
-5.42148e-07
5.55335e-06
-5.22701e-07
5.59102e-06
-5.03633e-07
5.62779e-06
-4.84985e-07
5.66367e-06
-4.66799e-07
5.69865e-06
-4.49109e-07
5.73273e-06
-4.31949e-07
5.7659e-06
-4.15343e-07
5.79814e-06
-3.99314e-07
5.82944e-06
-3.83874e-07
5.85978e-06
-3.6903e-07
5.88913e-06
-3.54784e-07
5.91748e-06
-3.41129e-07
5.94482e-06
-3.28054e-07
5.97114e-06
-3.15545e-07
5.99642e-06
-3.03586e-07
6.02067e-06
-2.92159e-07
6.04388e-06
-2.81244e-07
6.06605e-06
-2.70813e-07
6.08716e-06
-2.60835e-07
6.10719e-06
-2.51287e-07
6.12617e-06
-2.42155e-07
6.1441e-06
-2.33432e-07
6.16103e-06
-2.25107e-07
6.17696e-06
-2.17159e-07
6.19194e-06
-2.09564e-07
6.20597e-06
-2.02307e-07
6.21909e-06
-1.95373e-07
6.23127e-06
-1.8874e-07
6.24253e-06
-1.82374e-07
6.25284e-06
-1.7625e-07
6.26224e-06
-1.70376e-07
6.27081e-06
-1.64779e-07
6.27862e-06
-1.59475e-07
6.2857e-06
-1.54455e-07
6.29205e-06
-1.49686e-07
6.29764e-06
-1.45127e-07
6.30245e-06
-1.40743e-07
6.30644e-06
-1.36505e-07
6.30957e-06
-1.32384e-07
6.31181e-06
-1.28345e-07
6.31318e-06
-1.24341e-07
6.31371e-06
-1.20334e-07
6.31341e-06
-1.16285e-07
6.31232e-06
-1.12129e-07
6.31045e-06
-1.07784e-07
6.30782e-06
-1.03168e-07
6.30441e-06
-9.82089e-08
6.30022e-06
-9.28547e-08
6.29528e-06
-8.70769e-08
6.28962e-06
-8.08786e-08
6.2833e-06
-7.42937e-08
6.27638e-06
-6.73773e-08
6.26894e-06
-6.01999e-08
6.26105e-06
-5.28479e-08
6.2528e-06
-4.54182e-08
6.24426e-06
-3.79939e-08
6.23549e-06
-3.06205e-08
6.22649e-06
-2.3306e-08
6.21726e-06
-1.60423e-08
6.20775e-06
-8.82872e-09
6.19793e-06
-1.68365e-09
6.18778e-06
5.34981e-09
6.17728e-06
1.22213e-08
6.16642e-06
1.88939e-08
6.15515e-06
2.53499e-08
6.14341e-06
3.15725e-08
6.13109e-06
3.75296e-08
6.11814e-06
4.31832e-08
6.10448e-06
4.85186e-08
6.09012e-06
5.35497e-08
6.07507e-06
5.83086e-08
6.0594e-06
6.28302e-08
6.04315e-06
6.71571e-08
6.02637e-06
7.13451e-08
6.00905e-06
7.54713e-08
5.99114e-06
7.96178e-08
5.97257e-06
8.38355e-08
5.95328e-06
8.81172e-08
5.93329e-06
9.24149e-08
5.91266e-06
9.66895e-08
5.89144e-06
1.00967e-07
5.86964e-06
1.05344e-07
5.84724e-06
1.0993e-07
5.82415e-06
1.14752e-07
5.80033e-06
1.19711e-07
5.77576e-06
1.24649e-07
5.75046e-06
1.29471e-07
5.72449e-06
1.34217e-07
5.69787e-06
1.39018e-07
5.67062e-06
1.43979e-07
5.64278e-06
1.49127e-07
5.61438e-06
1.54433e-07
5.58551e-06
1.5988e-07
5.55627e-06
1.6547e-07
5.52676e-06
1.71204e-07
5.49706e-06
1.7705e-07
5.4672e-06
1.82986e-07
5.43716e-06
1.89025e-07
5.40684e-06
1.95277e-07
5.37612e-06
2.01938e-07
5.34486e-06
2.09337e-07
5.31293e-06
2.17876e-07
5.28019e-06
2.28033e-07
5.24656e-06
2.40307e-07
5.21194e-06
2.55291e-07
5.17622e-06
2.73651e-07
5.13926e-06
2.9641e-07
5.10093e-06
3.24989e-07
5.06122e-06
3.60717e-07
5.0204e-06
4.06053e-07
4.97911e-06
4.61861e-07
4.93901e-06
5.32343e-07
6.11848e-07
4.90057e-06
-2.12242e-07
2.00216e-06
-4.77001e-07
1.95886e-06
-7.4945e-07
2.11788e-06
-1.05913e-06
2.0134e-06
-1.43444e-06
1.8662e-06
-1.88628e-06
1.68878e-06
-2.36878e-06
1.44991e-06
-2.78985e-06
1.0926e-06
-3.0685e-06
6.1394e-07
-3.17139e-06
6.08921e-08
-3.0857e-06
-5.06163e-07
-2.79583e-06
-1.04391e-06
-2.29565e-06
-1.49949e-06
-1.63399e-06
-1.80268e-06
-9.31895e-07
-1.90267e-06
-3.12231e-07
-1.84329e-06
1.81743e-07
-1.73524e-06
5.69141e-07
-1.65048e-06
8.83589e-07
-1.60176e-06
1.15169e-06
-1.57849e-06
1.39006e-06
-1.5682e-06
1.60805e-06
-1.56254e-06
1.81075e-06
-1.55706e-06
2.00099e-06
-1.54977e-06
2.18043e-06
-1.53997e-06
2.35017e-06
-1.52755e-06
2.51102e-06
-1.51269e-06
2.66364e-06
-1.49567e-06
2.80861e-06
-1.47679e-06
2.94645e-06
-1.45635e-06
3.07767e-06
-1.43463e-06
3.20275e-06
-1.41188e-06
3.32213e-06
-1.38831e-06
3.43624e-06
-1.36409e-06
3.54545e-06
-1.33937e-06
3.65014e-06
-1.31429e-06
3.75063e-06
-1.28896e-06
3.84721e-06
-1.26346e-06
3.94015e-06
-1.23788e-06
4.0297e-06
-1.21227e-06
4.11605e-06
-1.1867e-06
4.19941e-06
-1.16119e-06
4.27992e-06
-1.1358e-06
4.35774e-06
-1.11054e-06
4.43298e-06
-1.08544e-06
4.50577e-06
-1.06052e-06
4.57619e-06
-1.03579e-06
4.64435e-06
-1.01126e-06
4.71031e-06
-9.86938e-07
4.77415e-06
-9.62831e-07
4.83594e-06
-9.38928e-07
4.89575e-06
-9.1522e-07
4.95364e-06
-8.91698e-07
5.00967e-06
-8.6835e-07
5.0639e-06
-8.45167e-07
5.11641e-06
-8.22142e-07
5.16726e-06
-7.99268e-07
5.21653e-06
-7.76541e-07
5.2643e-06
-7.5396e-07
5.31065e-06
-7.31532e-07
5.35565e-06
-7.09269e-07
5.39937e-06
-6.87185e-07
5.44187e-06
-6.65296e-07
5.4832e-06
-6.43633e-07
5.52345e-06
-6.22234e-07
5.56265e-06
-6.01134e-07
5.60088e-06
-5.80371e-07
5.63815e-06
-5.5998e-07
5.67452e-06
-5.39994e-07
5.70997e-06
-5.20444e-07
5.74454e-06
-5.01363e-07
5.77821e-06
-4.82781e-07
5.81098e-06
-4.64724e-07
5.84285e-06
-4.47215e-07
5.87381e-06
-4.30271e-07
5.90383e-06
-4.13903e-07
5.93292e-06
-3.98116e-07
5.96104e-06
-3.82912e-07
5.9882e-06
-3.68285e-07
6.01437e-06
-3.54226e-07
6.03954e-06
-3.40723e-07
6.06372e-06
-3.27763e-07
6.08689e-06
-3.15328e-07
6.10904e-06
-3.03397e-07
6.13017e-06
-2.91945e-07
6.15029e-06
-2.80958e-07
6.16943e-06
-2.70428e-07
6.18762e-06
-2.60345e-07
6.20487e-06
-2.5069e-07
6.2212e-06
-2.41438e-07
6.23661e-06
-2.32565e-07
6.25109e-06
-2.24049e-07
6.26466e-06
-2.15873e-07
6.27729e-06
-2.08011e-07
6.28898e-06
-2.00434e-07
6.29975e-06
-1.93138e-07
6.30964e-06
-1.86144e-07
6.31874e-06
-1.79476e-07
6.3271e-06
-1.73135e-07
6.33472e-06
-1.67094e-07
6.34158e-06
-1.61312e-07
6.34764e-06
-1.55748e-07
6.35288e-06
-1.50369e-07
6.35729e-06
-1.4515e-07
6.36085e-06
-1.4007e-07
6.36358e-06
-1.3511e-07
6.36549e-06
-1.30253e-07
6.36661e-06
-1.25463e-07
6.36696e-06
-1.20683e-07
6.36652e-06
-1.15845e-07
6.36526e-06
-1.10877e-07
6.36318e-06
-1.05702e-07
6.36026e-06
-1.00248e-07
6.35651e-06
-9.44619e-08
6.35197e-06
-8.83149e-08
6.34669e-06
-8.17995e-08
6.34074e-06
-7.49301e-08
6.33419e-06
-6.77395e-08
6.32709e-06
-6.02796e-08
6.3195e-06
-5.26101e-08
6.31143e-06
-4.47828e-08
6.30285e-06
-3.68406e-08
6.29369e-06
-2.88293e-08
6.28387e-06
-2.08014e-08
6.27336e-06
-1.28064e-08
6.26221e-06
-4.88623e-09
6.25045e-06
2.92484e-09
6.23817e-06
1.05977e-08
6.22542e-06
1.81002e-08
6.21225e-06
2.53866e-08
6.19874e-06
3.24054e-08
6.18495e-06
3.91298e-08
6.17095e-06
4.55733e-08
6.15671e-06
5.17719e-08
6.14214e-06
5.77572e-08
6.1271e-06
6.35534e-08
6.11147e-06
6.91762e-08
6.09517e-06
7.46177e-08
6.07816e-06
7.98428e-08
6.06049e-06
8.48243e-08
6.04225e-06
8.9584e-08
6.02351e-06
9.421e-08
6.00429e-06
9.88327e-08
5.98456e-06
1.03571e-07
5.9642e-06
1.08468e-07
5.94314e-06
1.13472e-07
5.92134e-06
1.18488e-07
5.89884e-06
1.2347e-07
5.87571e-06
1.28469e-07
5.85204e-06
1.33599e-07
5.82786e-06
1.38929e-07
5.80315e-06
1.44422e-07
5.77784e-06
1.49953e-07
5.75189e-06
1.55422e-07
5.72528e-06
1.60824e-07
5.69805e-06
1.66244e-07
5.67026e-06
1.71766e-07
5.64196e-06
1.77422e-07
5.6132e-06
1.8319e-07
5.58404e-06
1.89044e-07
5.55453e-06
1.94977e-07
5.52474e-06
2.00993e-07
5.4947e-06
2.07086e-07
5.46441e-06
2.13277e-07
5.4338e-06
2.19625e-07
5.4028e-06
2.2628e-07
5.37128e-06
2.33461e-07
5.33912e-06
2.41494e-07
5.30624e-06
2.50751e-07
5.27257e-06
2.61701e-07
5.23806e-06
2.74815e-07
5.20263e-06
2.90708e-07
5.16626e-06
3.10019e-07
5.12892e-06
3.33744e-07
5.0906e-06
3.633e-07
5.05146e-06
3.99853e-07
5.0119e-06
4.45613e-07
4.97273e-06
5.01024e-07
4.93551e-06
5.6956e-07
6.46142e-07
4.90121e-06
-2.14137e-07
2.21595e-06
-4.61158e-07
2.20552e-06
-7.4053e-07
2.39704e-06
-1.08864e-06
2.36104e-06
-1.52352e-06
2.3008e-06
-2.0156e-06
2.18023e-06
-2.48135e-06
1.9153e-06
-2.85615e-06
1.46677e-06
-3.1248e-06
8.82308e-07
-3.29366e-06
2.29422e-07
-3.36547e-06
-4.34494e-07
-3.34146e-06
-1.06791e-06
-3.15723e-06
-1.68373e-06
-2.6956e-06
-2.26417e-06
-1.92822e-06
-2.66993e-06
-1.04726e-06
-2.72413e-06
-2.77254e-07
-2.50515e-06
3.18626e-07
-2.24632e-06
7.72151e-07
-2.05525e-06
1.12982e-06
-1.93616e-06
1.42648e-06
-1.86485e-06
1.68348e-06
-1.81954e-06
1.91307e-06
-1.78663e-06
2.12225e-06
-1.75894e-06
2.31518e-06
-1.73288e-06
2.49451e-06
-1.70686e-06
2.66203e-06
-1.68021e-06
2.81913e-06
-1.65276e-06
2.96688e-06
-1.62453e-06
3.1062e-06
-1.59566e-06
3.23785e-06
-1.56628e-06
3.36255e-06
-1.53657e-06
3.4809e-06
-1.50666e-06
3.59347e-06
-1.47665e-06
3.70076e-06
-1.44665e-06
3.80321e-06
-1.41674e-06
3.90122e-06
-1.38697e-06
3.99515e-06
-1.35739e-06
4.08532e-06
-1.32804e-06
4.172e-06
-1.29895e-06
4.25543e-06
-1.27013e-06
4.33583e-06
-1.24159e-06
4.41337e-06
-1.21334e-06
4.48822e-06
-1.18539e-06
4.56051e-06
-1.15774e-06
4.63038e-06
-1.13038e-06
4.69792e-06
-1.10334e-06
4.76326e-06
-1.07659e-06
4.82647e-06
-1.05015e-06
4.88764e-06
-1.024e-06
4.94684e-06
-9.98126e-07
5.00413e-06
-9.7251e-07
5.05957e-06
-9.47143e-07
5.11324e-06
-9.22015e-07
5.16519e-06
-8.97118e-07
5.21549e-06
-8.72445e-07
5.26421e-06
-8.47991e-07
5.31142e-06
-8.23751e-07
5.35719e-06
-7.99728e-07
5.40159e-06
-7.75929e-07
5.44468e-06
-7.52363e-07
5.48654e-06
-7.29039e-07
5.52721e-06
-7.05973e-07
5.56678e-06
-6.832e-07
5.60531e-06
-6.60757e-07
5.64284e-06
-6.3867e-07
5.67943e-06
-6.16959e-07
5.7151e-06
-5.95644e-07
5.74985e-06
-5.74753e-07
5.78372e-06
-5.54311e-07
5.8167e-06
-5.34347e-07
5.84881e-06
-5.14888e-07
5.88004e-06
-4.95957e-07
5.91039e-06
-4.7757e-07
5.93986e-06
-4.59743e-07
5.96844e-06
-4.42484e-07
5.99612e-06
-4.25797e-07
6.02289e-06
-4.09683e-07
6.04875e-06
-3.94138e-07
6.07367e-06
-3.79153e-07
6.09766e-06
-3.64718e-07
6.12072e-06
-3.50821e-07
6.14284e-06
-3.37445e-07
6.16401e-06
-3.24573e-07
6.18426e-06
-3.1219e-07
6.20358e-06
-3.00287e-07
6.22201e-06
-2.88852e-07
6.23952e-06
-2.77863e-07
6.25612e-06
-2.67293e-07
6.2718e-06
-2.57121e-07
6.28656e-06
-2.47325e-07
6.3004e-06
-2.37887e-07
6.31331e-06
-2.28784e-07
6.3253e-06
-2.20002e-07
6.33642e-06
-2.11551e-07
6.34674e-06
-2.03456e-07
6.35632e-06
-1.95725e-07
6.36518e-06
-1.88336e-07
6.3733e-06
-1.81247e-07
6.38062e-06
-1.74414e-07
6.38711e-06
-1.67801e-07
6.39275e-06
-1.61381e-07
6.39751e-06
-1.55131e-07
6.4014e-06
-1.49037e-07
6.40441e-06
-1.43085e-07
6.40655e-06
-1.37253e-07
6.40779e-06
-1.3149e-07
6.40806e-06
-1.2573e-07
6.40729e-06
-1.19917e-07
6.40546e-06
-1.14013e-07
6.40256e-06
-1.07979e-07
6.39863e-06
-1.01766e-07
6.39371e-06
-9.53283e-08
6.38787e-06
-8.86287e-08
6.3812e-06
-8.16468e-08
6.37378e-06
-7.43796e-08
6.36569e-06
-6.68405e-08
6.35701e-06
-5.90555e-08
6.34779e-06
-5.10622e-08
6.3381e-06
-4.29177e-08
6.32801e-06
-3.46873e-08
6.31758e-06
-2.64179e-08
6.30688e-06
-1.8126e-08
6.29589e-06
-9.81111e-09
6.28456e-06
-1.47932e-09
6.27283e-06
6.84132e-09
6.26065e-06
1.5101e-08
6.24801e-06
2.32454e-08
6.23487e-06
3.12327e-08
6.22124e-06
3.90178e-08
6.20712e-06
4.65313e-08
6.19254e-06
5.37038e-08
6.17759e-06
6.0523e-08
6.16232e-06
6.70462e-08
6.14672e-06
7.33597e-08
6.13074e-06
7.95314e-08
6.11432e-06
8.56032e-08
6.09735e-06
9.1589e-08
6.07974e-06
9.7459e-08
6.06142e-06
1.0315e-07
6.04239e-06
1.08618e-07
6.0227e-06
1.13894e-07
6.00246e-06
1.19082e-07
5.98171e-06
1.24315e-07
5.96049e-06
1.29687e-07
5.93876e-06
1.35205e-07
5.91644e-06
1.40809e-07
5.89348e-06
1.46437e-07
5.86986e-06
1.52088e-07
5.84564e-06
1.57819e-07
5.82088e-06
1.63684e-07
5.79563e-06
1.69673e-07
5.76988e-06
1.75712e-07
5.74358e-06
1.81725e-07
5.7167e-06
1.87698e-07
5.68927e-06
1.93675e-07
5.66133e-06
1.99714e-07
5.63292e-06
2.05837e-07
5.60408e-06
2.12031e-07
5.57485e-06
2.18275e-07
5.54527e-06
2.2456e-07
5.51537e-06
2.30897e-07
5.48515e-06
2.37304e-07
5.4546e-06
2.43833e-07
5.42365e-06
2.50575e-07
5.39224e-06
2.57701e-07
5.36026e-06
2.65435e-07
5.32767e-06
2.7409e-07
5.29441e-06
2.84016e-07
5.26044e-06
2.95666e-07
5.22577e-06
3.0949e-07
5.19037e-06
3.26111e-07
5.15425e-06
3.46135e-07
5.1175e-06
3.70497e-07
5.08022e-06
4.00589e-07
5.04266e-06
4.3741e-07
5.00533e-06
4.8295e-07
4.96915e-06
5.3721e-07
4.93535e-06
6.03363e-07
6.764e-07
4.9051e-06
-7.66416e-08
2.29212e-06
-2.25406e-07
2.35398e-06
-3.91391e-07
2.56266e-06
-6.23588e-07
2.59264e-06
-9.14817e-07
2.5916e-06
-1.22913e-06
2.49365e-06
-1.50504e-06
2.19071e-06
-1.70253e-06
1.66342e-06
-1.80067e-06
9.80099e-07
-1.81338e-06
2.41559e-07
-1.82125e-06
-4.26789e-07
-1.88169e-06
-1.00765e-06
-2.06467e-06
-1.50074e-06
-2.29016e-06
-2.03844e-06
-2.16269e-06
-2.79712e-06
-1.4946e-06
-3.39194e-06
-6.36781e-07
-3.36279e-06
1.04005e-07
-2.98704e-06
6.74357e-07
-2.62557e-06
1.11203e-06
-2.37383e-06
1.46139e-06
-2.21421e-06
1.75317e-06
-2.11132e-06
2.00594e-06
-2.0394e-06
2.2306e-06
-1.98359e-06
2.43375e-06
-1.93602e-06
2.61961e-06
-1.8927e-06
2.79104e-06
-1.85163e-06
2.95013e-06
-1.81185e-06
3.0985e-06
-1.7729e-06
3.23745e-06
-1.7346e-06
3.36805e-06
-1.69688e-06
3.49121e-06
-1.65973e-06
3.6077e-06
-1.62314e-06
3.7182e-06
-1.58714e-06
3.82328e-06
-1.55173e-06
3.92345e-06
-1.51691e-06
4.01917e-06
-1.48268e-06
4.11081e-06
-1.44903e-06
4.19871e-06
-1.41594e-06
4.28316e-06
-1.3834e-06
4.36441e-06
-1.35137e-06
4.44267e-06
-1.31984e-06
4.51813e-06
-1.2888e-06
4.59095e-06
-1.25821e-06
4.66129e-06
-1.22807e-06
4.72926e-06
-1.19835e-06
4.79498e-06
-1.16906e-06
4.85855e-06
-1.14016e-06
4.92005e-06
-1.11166e-06
4.97956e-06
-1.08351e-06
5.03715e-06
-1.05571e-06
5.09287e-06
-1.02823e-06
5.14679e-06
-1.00107e-06
5.19898e-06
-9.74208e-07
5.24951e-06
-9.47645e-07
5.29844e-06
-9.21371e-07
5.34583e-06
-8.95381e-07
5.39174e-06
-8.69669e-07
5.43625e-06
-8.44238e-07
5.47942e-06
-8.19094e-07
5.5213e-06
-7.94245e-07
5.56197e-06
-7.69702e-07
5.60148e-06
-7.45483e-07
5.63989e-06
-7.21606e-07
5.67723e-06
-6.98096e-07
5.71353e-06
-6.7497e-07
5.74882e-06
-6.52245e-07
5.78312e-06
-6.29945e-07
5.81646e-06
-6.08098e-07
5.84888e-06
-5.86728e-07
5.88039e-06
-5.6586e-07
5.91102e-06
-5.45515e-07
5.94077e-06
-5.2571e-07
5.96966e-06
-5.06458e-07
5.99768e-06
-4.87768e-07
6.02484e-06
-4.69644e-07
6.05113e-06
-4.5209e-07
6.07655e-06
-4.35103e-07
6.10109e-06
-4.18679e-07
6.12475e-06
-4.02809e-07
6.14752e-06
-3.87486e-07
6.16939e-06
-3.72693e-07
6.19036e-06
-3.58419e-07
6.21044e-06
-3.44652e-07
6.22962e-06
-3.31372e-07
6.24788e-06
-3.18548e-07
6.26518e-06
-3.06151e-07
6.28148e-06
-2.94164e-07
6.29676e-06
-2.82581e-07
6.31104e-06
-2.71395e-07
6.32431e-06
-2.60595e-07
6.33659e-06
-2.50171e-07
6.34793e-06
-2.40122e-07
6.35839e-06
-2.30464e-07
6.36805e-06
-2.21203e-07
6.37692e-06
-2.12324e-07
6.38498e-06
-2.03788e-07
6.3922e-06
-1.95551e-07
6.39853e-06
-1.87576e-07
6.40396e-06
-1.79837e-07
6.40848e-06
-1.72316e-07
6.4121e-06
-1.64998e-07
6.41484e-06
-1.5787e-07
6.41671e-06
-1.50913e-07
6.41774e-06
-1.44108e-07
6.41792e-06
-1.3744e-07
6.41731e-06
-1.30877e-07
6.41594e-06
-1.24359e-07
6.41383e-06
-1.1781e-07
6.41097e-06
-1.1115e-07
6.40731e-06
-1.0432e-07
6.40283e-06
-9.7284e-08
6.39752e-06
-9.0022e-08
6.39142e-06
-8.25275e-08
6.38457e-06
-7.47976e-08
6.37703e-06
-6.68353e-08
6.36884e-06
-5.86559e-08
6.36007e-06
-5.02818e-08
6.35075e-06
-4.17366e-08
6.34089e-06
-3.30585e-08
6.33052e-06
-2.43149e-08
6.31968e-06
-1.55801e-08
6.30845e-06
-6.8921e-09
6.29687e-06
1.76109e-09
6.28498e-06
1.04109e-08
6.27276e-06
1.9066e-08
6.26017e-06
2.76935e-08
6.24718e-06
3.62307e-08
6.23379e-06
4.46189e-08
6.21999e-06
5.28239e-08
6.20571e-06
6.08103e-08
6.1909e-06
6.85196e-08
6.17552e-06
7.58988e-08
6.15961e-06
8.2953e-08
6.14323e-06
8.97492e-08
6.12639e-06
9.63718e-08
6.10911e-06
1.02882e-07
6.0914e-06
1.09312e-07
6.0732e-06
1.15656e-07
6.05448e-06
1.21881e-07
6.03515e-06
1.27949e-07
6.01519e-06
1.33859e-07
5.9946e-06
1.39675e-07
5.97342e-06
1.45499e-07
5.95168e-06
1.5142e-07
5.92942e-06
1.5747e-07
5.90662e-06
1.63617e-07
5.88324e-06
1.69812e-07
5.8593e-06
1.76037e-07
5.8348e-06
1.82314e-07
5.80981e-06
1.88681e-07
5.78434e-06
1.95141e-07
5.7584e-06
2.01655e-07
5.73196e-06
2.08168e-07
5.705e-06
2.1466e-07
5.67753e-06
2.21151e-07
5.64957e-06
2.27672e-07
5.62117e-06
2.34241e-07
5.59236e-06
2.40851e-07
5.56314e-06
2.47491e-07
5.53355e-06
2.54156e-07
5.50358e-06
2.60864e-07
5.47324e-06
2.6765e-07
5.44249e-06
2.74588e-07
5.41128e-06
2.81784e-07
5.37957e-06
2.89419e-07
5.3473e-06
2.97708e-07
5.31444e-06
3.0695e-07
5.28098e-06
3.17476e-07
5.24693e-06
3.29718e-07
5.2123e-06
3.44115e-07
5.17714e-06
3.61268e-07
5.14152e-06
3.81755e-07
5.10559e-06
4.06432e-07
5.06956e-06
4.36619e-07
5.03382e-06
4.73146e-07
4.999e-06
5.17774e-07
4.9661e-06
5.70106e-07
4.93633e-06
6.33133e-07
7.01485e-07
4.91125e-06
1.97657e-07
2.09396e-06
1.59894e-07
2.39133e-06
1.65801e-07
2.55637e-06
1.33372e-07
2.6242e-06
6.09607e-08
2.66357e-06
-4.07064e-08
2.59403e-06
-1.57197e-07
2.3067e-06
-2.67688e-07
1.77276e-06
-3.48333e-07
1.06048e-06
-3.98939e-07
2.91337e-07
-4.08496e-07
-4.17316e-07
-3.37337e-07
-1.07936e-06
-2.59057e-07
-1.5789e-06
-5.02815e-07
-1.79439e-06
-1.08842e-06
-2.21108e-06
-1.19061e-06
-3.28933e-06
-6.12245e-07
-3.94095e-06
9.71142e-08
-3.69631e-06
6.88846e-07
-3.21729e-06
1.14884e-06
-2.83383e-06
1.51394e-06
-2.57933e-06
1.81568e-06
-2.41307e-06
2.07407e-06
-2.29779e-06
2.30115e-06
-2.21066e-06
2.50435e-06
-2.13922e-06
2.68853e-06
-2.07688e-06
2.85707e-06
-2.02016e-06
3.01246e-06
-1.96722e-06
3.15662e-06
-1.91705e-06
3.29112e-06
-1.86908e-06
3.41721e-06
-1.82296e-06
3.53595e-06
-1.77846e-06
3.64821e-06
-1.7354e-06
3.75473e-06
-1.69366e-06
3.85613e-06
-1.65313e-06
3.95296e-06
-1.61372e-06
4.04564e-06
-1.57536e-06
4.13458e-06
-1.53796e-06
4.22009e-06
-1.50145e-06
4.30245e-06
-1.46575e-06
4.38189e-06
-1.43081e-06
4.45863e-06
-1.39658e-06
4.53283e-06
-1.363e-06
4.60467e-06
-1.33004e-06
4.67426e-06
-1.29766e-06
4.74173e-06
-1.26582e-06
4.80717e-06
-1.23449e-06
4.87065e-06
-1.20364e-06
4.93221e-06
-1.17322e-06
4.99193e-06
-1.14323e-06
5.04985e-06
-1.11363e-06
5.10603e-06
-1.08442e-06
5.16053e-06
-1.05557e-06
5.2134e-06
-1.02708e-06
5.26469e-06
-9.98939e-07
5.31446e-06
-9.71138e-07
5.36275e-06
-9.4367e-07
5.40961e-06
-9.1653e-07
5.45509e-06
-8.89719e-07
5.49924e-06
-8.63243e-07
5.54211e-06
-8.3711e-07
5.58375e-06
-8.11337e-07
5.6242e-06
-7.85932e-07
5.66349e-06
-7.60897e-07
5.70164e-06
-7.36242e-07
5.73865e-06
-7.11984e-07
5.77455e-06
-6.88149e-07
5.80937e-06
-6.64765e-07
5.84314e-06
-6.41859e-07
5.87586e-06
-6.19457e-07
5.90758e-06
-5.97578e-07
5.9383e-06
-5.76239e-07
5.96805e-06
-5.55453e-07
5.99682e-06
-5.35228e-07
6.02462e-06
-5.1557e-07
6.05145e-06
-4.96481e-07
6.07733e-06
-4.77963e-07
6.10224e-06
-4.60012e-07
6.12618e-06
-4.42625e-07
6.14916e-06
-4.25793e-07
6.17119e-06
-4.09508e-07
6.19225e-06
-3.93757e-07
6.21236e-06
-3.78525e-07
6.23151e-06
-3.63804e-07
6.24972e-06
-3.49588e-07
6.26703e-06
-3.35858e-07
6.28346e-06
-3.22581e-07
6.29901e-06
-3.09723e-07
6.31369e-06
-2.97259e-07
6.32747e-06
-2.85181e-07
6.34037e-06
-2.73495e-07
6.35242e-06
-2.62213e-07
6.36364e-06
-2.51345e-07
6.37406e-06
-2.40881e-07
6.38365e-06
-2.30791e-07
6.39237e-06
-2.21038e-07
6.40017e-06
-2.11587e-07
6.40704e-06
-2.02416e-07
6.41297e-06
-1.93507e-07
6.41799e-06
-1.84847e-07
6.4221e-06
-1.76424e-07
6.42532e-06
-1.68224e-07
6.42769e-06
-1.60232e-07
6.4292e-06
-1.52423e-07
6.42985e-06
-1.44763e-07
6.42964e-06
-1.37228e-07
6.42857e-06
-1.29807e-07
6.42668e-06
-1.22468e-07
6.42401e-06
-1.1514e-07
6.4206e-06
-1.07731e-07
6.41644e-06
-1.00163e-07
6.41155e-06
-9.23901e-08
6.40592e-06
-8.43978e-08
6.39958e-06
-7.6191e-08
6.39257e-06
-6.77787e-08
6.3849e-06
-5.91724e-08
6.37664e-06
-5.03916e-08
6.36782e-06
-4.14619e-08
6.3585e-06
-3.24065e-08
6.34868e-06
-2.32433e-08
6.33837e-06
-1.40016e-08
6.32752e-06
-4.73517e-09
6.31614e-06
4.49727e-09
6.30423e-06
1.36629e-08
6.29188e-06
2.27642e-08
6.27913e-06
3.18188e-08
6.266e-06
4.08239e-08
6.25249e-06
4.97439e-08
6.23858e-06
5.85263e-08
6.22428e-06
6.71269e-08
6.20957e-06
7.55146e-08
6.19444e-06
8.3658e-08
6.17881e-06
9.15256e-08
6.16266e-06
9.91106e-08
6.14596e-06
1.06446e-07
6.12874e-06
1.13595e-07
6.11101e-06
1.20613e-07
6.09279e-06
1.27542e-07
6.07406e-06
1.34392e-07
6.05479e-06
1.41149e-07
6.03496e-06
1.47786e-07
6.01453e-06
1.54297e-07
5.99349e-06
1.60718e-07
5.97187e-06
1.67121e-07
5.94971e-06
1.73579e-07
5.92705e-06
1.80137e-07
5.90388e-06
1.86792e-07
5.88018e-06
1.93515e-07
5.85594e-06
2.0028e-07
5.83116e-06
2.07091e-07
5.80589e-06
2.13962e-07
5.78013e-06
2.20898e-07
5.75392e-06
2.27875e-07
5.72723e-06
2.34862e-07
5.70005e-06
2.41842e-07
5.67238e-06
2.48823e-07
5.64424e-06
2.55819e-07
5.61565e-06
2.62841e-07
5.58662e-06
2.69883e-07
5.55717e-06
2.76942e-07
5.52732e-06
2.84019e-07
5.49704e-06
2.91142e-07
5.46634e-06
2.98355e-07
5.43519e-06
3.05745e-07
5.40356e-06
3.13422e-07
5.37141e-06
3.21566e-07
5.33874e-06
3.30379e-07
5.30555e-06
3.40151e-07
5.27184e-06
3.51186e-07
5.23766e-06
3.639e-07
5.20307e-06
3.78709e-07
5.16816e-06
3.96184e-07
5.13305e-06
4.16871e-07
5.09794e-06
4.41544e-07
5.06316e-06
4.71408e-07
5.02917e-06
5.07141e-07
4.99668e-06
5.5027e-07
4.96671e-06
6.00083e-07
4.94039e-06
6.59456e-07
7.22461e-07
4.91942e-06
5.68296e-07
1.52515e-06
7.50658e-07
2.20856e-06
9.17935e-07
2.38871e-06
1.08917e-06
2.45196e-06
1.25673e-06
2.49567e-06
1.39619e-06
2.45314e-06
1.47413e-06
2.22839e-06
1.46528e-06
1.78039e-06
1.36534e-06
1.16034e-06
1.18852e-06
4.67119e-07
1.00307e-06
-2.31736e-07
8.38312e-07
-9.15484e-07
8.41095e-07
-1.58134e-06
9.73435e-07
-1.92654e-06
5.77093e-07
-1.8142e-06
-1.80183e-07
-2.53158e-06
-1.496e-07
-3.97133e-06
4.01498e-07
-4.2473e-06
9.47673e-07
-3.76345e-06
1.3856e-06
-3.27176e-06
1.7362e-06
-2.92995e-06
2.02742e-06
-2.70429e-06
2.27741e-06
-2.54778e-06
2.49709e-06
-2.43033e-06
2.69327e-06
-2.33539e-06
2.87054e-06
-2.25414e-06
3.03222e-06
-2.18183e-06
3.18084e-06
-2.11583e-06
3.3184e-06
-2.05461e-06
3.44656e-06
-1.99723e-06
3.56664e-06
-1.94305e-06
3.67978e-06
-1.89158e-06
3.78686e-06
-1.84249e-06
3.88868e-06
-1.79547e-06
3.98587e-06
-1.75031e-06
4.07895e-06
-1.7068e-06
4.16834e-06
-1.66476e-06
4.25442e-06
-1.62403e-06
4.33746e-06
-1.5845e-06
4.41776e-06
-1.54604e-06
4.49551e-06
-1.50856e-06
4.57092e-06
-1.47199e-06
4.64415e-06
-1.43623e-06
4.71534e-06
-1.40123e-06
4.78461e-06
-1.36693e-06
4.85205e-06
-1.33326e-06
4.91774e-06
-1.30019e-06
4.98174e-06
-1.26764e-06
5.04412e-06
-1.2356e-06
5.10491e-06
-1.20402e-06
5.16417e-06
-1.17289e-06
5.22194e-06
-1.14219e-06
5.27826e-06
-1.11189e-06
5.33316e-06
-1.08198e-06
5.38668e-06
-1.05246e-06
5.43884e-06
-1.0233e-06
5.48969e-06
-9.94516e-07
5.53925e-06
-9.6609e-07
5.58756e-06
-9.38027e-07
5.63465e-06
-9.10327e-07
5.68054e-06
-8.82999e-07
5.72526e-06
-8.56058e-07
5.76885e-06
-8.29519e-07
5.81135e-06
-8.03392e-07
5.85279e-06
-7.77683e-07
5.89321e-06
-7.52397e-07
5.93261e-06
-7.27549e-07
5.971e-06
-7.03158e-07
6.00839e-06
-6.79246e-07
6.04477e-06
-6.55836e-07
6.08014e-06
-6.3295e-07
6.1145e-06
-6.106e-07
6.14785e-06
-5.888e-07
6.18017e-06
-5.67556e-07
6.21148e-06
-5.46871e-07
6.24174e-06
-5.2675e-07
6.27097e-06
-5.0719e-07
6.29915e-06
-4.88191e-07
6.32627e-06
-4.69748e-07
6.35233e-06
-4.51854e-07
6.37732e-06
-4.34501e-07
6.40124e-06
-4.17678e-07
6.42408e-06
-4.01369e-07
6.44584e-06
-3.85559e-07
6.46649e-06
-3.70245e-07
6.48606e-06
-3.55425e-07
6.50456e-06
-3.41089e-07
6.52205e-06
-3.27211e-07
6.53855e-06
-3.13765e-07
6.5541e-06
-3.00735e-07
6.56872e-06
-2.88111e-07
6.58239e-06
-2.75877e-07
6.59506e-06
-2.64014e-07
6.60668e-06
-2.52502e-07
6.61722e-06
-2.41327e-07
6.62666e-06
-2.30477e-07
6.63502e-06
-2.1994e-07
6.64231e-06
-2.09701e-07
6.64855e-06
-1.99748e-07
6.65378e-06
-1.90067e-07
6.658e-06
-1.80648e-07
6.66126e-06
-1.71477e-07
6.66356e-06
-1.62533e-07
6.66493e-06
-1.53792e-07
6.66538e-06
-1.45215e-07
6.66491e-06
-1.36757e-07
6.66348e-06
-1.28378e-07
6.66106e-06
-1.20045e-07
6.65764e-06
-1.1172e-07
6.65326e-06
-1.03349e-07
6.64796e-06
-9.4868e-08
6.6418e-06
-8.62236e-08
6.63479e-06
-7.73908e-08
6.62697e-06
-6.83688e-08
6.61836e-06
-5.91672e-08
6.60899e-06
-4.98026e-08
6.59889e-06
-4.02954e-08
6.5881e-06
-3.06697e-08
6.57665e-06
-2.09497e-08
6.56457e-06
-1.11591e-08
6.55189e-06
-1.32502e-09
6.53864e-06
8.51557e-09
6.52482e-06
1.83217e-08
6.51042e-06
2.80613e-08
6.49546e-06
3.77215e-08
6.47998e-06
4.73036e-08
6.464e-06
5.68042e-08
6.44754e-06
6.62017e-08
6.43061e-06
7.54599e-08
6.41319e-06
8.45445e-08
6.39527e-06
9.3431e-08
6.37684e-06
1.02098e-07
6.35784e-06
1.10524e-07
6.33825e-06
1.18698e-07
6.31807e-06
1.26637e-07
6.29729e-06
1.3438e-07
6.27593e-06
1.4197e-07
6.25404e-06
1.49444e-07
6.23161e-06
1.56825e-07
6.20865e-06
1.64118e-07
6.18512e-06
1.71319e-07
6.16099e-06
1.78432e-07
6.13623e-06
1.85477e-07
6.11085e-06
1.92502e-07
6.08488e-06
1.99557e-07
6.05834e-06
2.06678e-07
6.03127e-06
2.13872e-07
6.00366e-06
2.21126e-07
5.97552e-06
2.28426e-07
5.94684e-06
2.3577e-07
5.91764e-06
2.43163e-07
5.88793e-06
2.50609e-07
5.85772e-06
2.58092e-07
5.82699e-06
2.65592e-07
5.79575e-06
2.73092e-07
5.76398e-06
2.80592e-07
5.73171e-06
2.88098e-07
5.69894e-06
2.95614e-07
5.66569e-06
3.03136e-07
5.63197e-06
3.10665e-07
5.59778e-06
3.18209e-07
5.56313e-06
3.258e-07
5.528e-06
3.33488e-07
5.49239e-06
3.41362e-07
5.45628e-06
3.49531e-07
5.41968e-06
3.5817e-07
5.3826e-06
3.67466e-07
5.34506e-06
3.77695e-07
5.3071e-06
3.8914e-07
5.26881e-06
4.02193e-07
5.23028e-06
4.17247e-07
5.19162e-06
4.34841e-07
5.15302e-06
4.55471e-07
5.11473e-06
4.79838e-07
5.07713e-06
5.09008e-07
5.04076e-06
5.43517e-07
5.00637e-06
5.84657e-07
4.97493e-06
6.31531e-07
4.94762e-06
6.86764e-07
7.44261e-07
4.92583e-06
7.00787e-07
8.23885e-07
1.17676e-06
1.73216e-06
1.47252e-06
2.09265e-06
1.72413e-06
2.19956e-06
1.99418e-06
2.22531e-06
2.26594e-06
2.18036e-06
2.48874e-06
2.00527e-06
2.61328e-06
1.65498e-06
2.6305e-06
1.14299e-06
2.56421e-06
5.32755e-07
2.4259e-06
-9.34692e-08
2.1775e-06
-6.67513e-07
1.84726e-06
-1.25103e-06
1.68875e-06
-1.76792e-06
1.58719e-06
-1.71245e-06
9.58601e-07
-1.90266e-06
5.59687e-07
-3.57223e-06
8.18178e-07
-4.50564e-06
1.19506e-06
-4.14026e-06
1.51004e-06
-3.5867e-06
1.76537e-06
-3.18526e-06
1.98003e-06
-2.91893e-06
2.1662e-06
-2.73394e-06
2.33096e-06
-2.59508e-06
2.47875e-06
-2.48317e-06
2.61269e-06
-2.38806e-06
2.73513e-06
-2.30425e-06
2.84794e-06
-2.22863e-06
2.95265e-06
-2.15932e-06
3.05053e-06
-2.0951e-06
3.14259e-06
-2.03511e-06
3.2297e-06
-1.97869e-06
3.31257e-06
-1.92535e-06
3.39176e-06
-1.87466e-06
3.46774e-06
-1.82629e-06
3.54089e-06
-1.77994e-06
3.6115e-06
-1.73537e-06
3.67984e-06
-1.69237e-06
3.74611e-06
-1.65077e-06
3.81049e-06
-1.61042e-06
3.87313e-06
-1.57121e-06
3.93416e-06
-1.53301e-06
3.99368e-06
-1.49575e-06
4.05177e-06
-1.45933e-06
4.10852e-06
-1.42368e-06
4.16399e-06
-1.38873e-06
4.21825e-06
-1.35444e-06
4.27135e-06
-1.32074e-06
4.32335e-06
-1.28759e-06
4.37428e-06
-1.25495e-06
4.42417e-06
-1.22279e-06
4.47306e-06
-1.19108e-06
4.52097e-06
-1.1598e-06
4.56792e-06
-1.12893e-06
4.61393e-06
-1.09847e-06
4.65903e-06
-1.06839e-06
4.70322e-06
-1.03871e-06
4.74653e-06
-1.0094e-06
4.78898e-06
-9.80478e-07
4.83059e-06
-9.51938e-07
4.87138e-06
-9.23786e-07
4.91136e-06
-8.96032e-07
4.95053e-06
-8.68692e-07
4.98892e-06
-8.41784e-07
5.02656e-06
-8.15315e-07
5.06345e-06
-7.89294e-07
5.09963e-06
-7.63724e-07
5.13509e-06
-7.38621e-07
5.16985e-06
-7.13999e-07
5.20389e-06
-6.89879e-07
5.23721e-06
-6.66275e-07
5.26982e-06
-6.43204e-07
5.30169e-06
-6.20672e-07
5.33282e-06
-5.98689e-07
5.3632e-06
-5.77257e-07
5.39283e-06
-5.56377e-07
5.42169e-06
-5.3605e-07
5.44977e-06
-5.16274e-07
5.47707e-06
-4.97048e-07
5.50357e-06
-4.7836e-07
5.52928e-06
-4.60204e-07
5.55417e-06
-4.42571e-07
5.57825e-06
-4.25449e-07
5.60151e-06
-4.08827e-07
5.62396e-06
-3.92694e-07
5.64558e-06
-3.77046e-07
5.66636e-06
-3.6188e-07
5.68633e-06
-3.47185e-07
5.7055e-06
-3.32932e-07
5.72385e-06
-3.1909e-07
5.74137e-06
-3.0563e-07
5.75803e-06
-2.92531e-07
5.7738e-06
-2.79781e-07
5.78868e-06
-2.67381e-07
5.80269e-06
-2.55331e-07
5.81585e-06
-2.43627e-07
5.82816e-06
-2.32255e-07
5.83966e-06
-2.21198e-07
5.85036e-06
-2.1044e-07
5.86026e-06
-1.99969e-07
5.86939e-06
-1.89773e-07
5.87775e-06
-1.79834e-07
5.88535e-06
-1.7013e-07
5.89219e-06
-1.60635e-07
5.89829e-06
-1.51314e-07
5.90366e-06
-1.42127e-07
5.90831e-06
-1.33032e-07
5.91226e-06
-1.23992e-07
5.91551e-06
-1.14966e-07
5.91807e-06
-1.05907e-07
5.91996e-06
-9.67603e-08
5.92121e-06
-8.7479e-08
5.92186e-06
-7.8038e-08
5.92192e-06
-6.84321e-08
5.92143e-06
-5.86689e-08
5.92039e-06
-4.87637e-08
5.91883e-06
-3.87342e-08
5.91676e-06
-2.86009e-08
5.9142e-06
-1.83849e-08
5.91115e-06
-8.10682e-09
5.90761e-06
2.21055e-09
5.90359e-06
1.25386e-08
5.89907e-06
2.28423e-08
5.89404e-06
3.30881e-08
5.88851e-06
4.32529e-08
5.88249e-06
5.33252e-08
5.876e-06
6.32957e-08
5.86906e-06
7.31473e-08
5.86166e-06
8.28522e-08
5.85383e-06
9.23804e-08
5.84555e-06
1.01709e-07
5.83683e-06
1.10825e-07
5.82763e-06
1.1972e-07
5.81794e-06
1.2839e-07
5.80773e-06
1.36846e-07
5.797e-06
1.45112e-07
5.78576e-06
1.53221e-07
5.77401e-06
1.61201e-07
5.76176e-06
1.69074e-07
5.74903e-06
1.76853e-07
5.73581e-06
1.84543e-07
5.72209e-06
1.92156e-07
5.70786e-06
1.99711e-07
5.69312e-06
2.07245e-07
5.67788e-06
2.148e-07
5.66216e-06
2.22407e-07
5.64595e-06
2.3008e-07
5.62926e-06
2.37817e-07
5.61208e-06
2.4561e-07
5.5944e-06
2.53456e-07
5.57621e-06
2.61354e-07
5.55752e-06
2.69304e-07
5.53833e-06
2.77293e-07
5.51862e-06
2.85305e-07
5.49839e-06
2.93326e-07
5.47763e-06
3.01351e-07
5.45636e-06
3.09376e-07
5.43458e-06
3.17401e-07
5.4123e-06
3.25422e-07
5.38952e-06
3.33442e-07
5.36627e-06
3.41471e-07
5.34253e-06
3.49543e-07
5.31831e-06
3.57708e-07
5.29362e-06
3.66055e-07
5.26847e-06
3.74688e-07
5.24287e-06
3.83771e-07
5.21686e-06
3.93481e-07
5.19048e-06
4.04078e-07
5.1638e-06
4.15824e-07
5.13691e-06
4.29092e-07
5.10991e-06
4.44245e-07
5.08296e-06
4.61793e-07
5.05626e-06
4.82177e-07
5.03007e-06
5.06038e-07
5.00478e-06
5.34296e-07
4.98093e-06
5.67374e-07
4.95926e-06
6.06333e-07
4.94055e-06
6.50245e-07
4.92606e-06
7.01261e-07
7.54021e-07
4.91631e-06
5.78246e-07
2.44983e-07
1.2276e-06
1.08237e-06
1.68047e-06
1.63949e-06
1.98731e-06
1.89208e-06
2.25331e-06
1.95902e-06
2.51943e-06
1.9135e-06
2.76381e-06
1.76061e-06
2.93909e-06
1.47905e-06
3.0162e-06
1.06571e-06
2.99175e-06
5.56756e-07
2.87804e-06
2.01508e-08
2.68346e-06
-4.7317e-07
2.39196e-06
-9.59629e-07
2.06301e-06
-1.43905e-06
1.85536e-06
-1.50481e-06
1.51135e-06
-1.55845e-06
1.09574e-06
-3.15634e-06
1.16141e-06
-4.57104e-06
1.39807e-06
-4.37677e-06
1.60491e-06
-3.79348e-06
1.77497e-06
-3.35528e-06
1.92057e-06
-3.06453e-06
2.04898e-06
-2.86234e-06
2.16412e-06
-2.71022e-06
2.26851e-06
-2.58756e-06
2.36402e-06
-2.48356e-06
2.45215e-06
-2.39237e-06
2.53414e-06
-2.31062e-06
2.61104e-06
-2.2362e-06
2.68366e-06
-2.16772e-06
2.75269e-06
-2.10413e-06
2.81868e-06
-2.04468e-06
2.88208e-06
-1.98874e-06
2.94323e-06
-1.93581e-06
3.00241e-06
-1.88547e-06
3.05985e-06
-1.83737e-06
3.11571e-06
-1.79123e-06
3.17014e-06
-1.7468e-06
3.22326e-06
-1.70388e-06
3.27516e-06
-1.66231e-06
3.3259e-06
-1.62195e-06
3.37556e-06
-1.58267e-06
3.42419e-06
-1.54438e-06
3.47184e-06
-1.50698e-06
3.51855e-06
-1.47039e-06
3.56436e-06
-1.43454e-06
3.60929e-06
-1.39937e-06
3.65338e-06
-1.36483e-06
3.69665e-06
-1.33087e-06
3.73915e-06
-1.29744e-06
3.78087e-06
-1.26452e-06
3.82186e-06
-1.23207e-06
3.86212e-06
-1.20006e-06
3.90168e-06
-1.16849e-06
3.94055e-06
-1.13734e-06
3.97874e-06
-1.10659e-06
4.01627e-06
-1.07624e-06
4.05316e-06
-1.04629e-06
4.08942e-06
-1.01674e-06
4.12506e-06
-9.87583e-07
4.16011e-06
-9.58833e-07
4.19458e-06
-9.30495e-07
4.22846e-06
-9.02579e-07
4.26178e-06
-8.75096e-07
4.29452e-06
-8.48063e-07
4.32672e-06
-8.21487e-07
4.35837e-06
-7.95378e-07
4.38949e-06
-7.69746e-07
4.4201e-06
-7.44605e-07
4.45018e-06
-7.19968e-07
4.47976e-06
-6.95849e-07
4.50881e-06
-6.72258e-07
4.53734e-06
-6.49204e-07
4.56534e-06
-6.26692e-07
4.59281e-06
-6.04725e-07
4.61973e-06
-5.833e-07
4.6461e-06
-5.6242e-07
4.67191e-06
-5.42086e-07
4.69716e-06
-5.22294e-07
4.72183e-06
-5.03035e-07
4.74593e-06
-4.84304e-07
4.76946e-06
-4.66096e-07
4.7924e-06
-4.48398e-07
4.81478e-06
-4.31201e-07
4.83658e-06
-4.145e-07
4.85781e-06
-3.98272e-07
4.87843e-06
-3.825e-07
4.89841e-06
-3.67168e-07
4.91773e-06
-3.52253e-07
4.93637e-06
-3.37734e-07
4.95434e-06
-3.23599e-07
4.97166e-06
-3.09845e-07
4.98835e-06
-2.96465e-07
5.00442e-06
-2.83452e-07
5.01989e-06
-2.70799e-07
5.03477e-06
-2.58498e-07
5.04906e-06
-2.46538e-07
5.06276e-06
-2.34903e-07
5.07591e-06
-2.23579e-07
5.08849e-06
-2.12551e-07
5.10053e-06
-2.01807e-07
5.11202e-06
-1.91326e-07
5.12297e-06
-1.81083e-07
5.13339e-06
-1.71051e-07
5.14327e-06
-1.61195e-07
5.15262e-06
-1.51476e-07
5.16145e-06
-1.41858e-07
5.16976e-06
-1.32306e-07
5.17758e-06
-1.22785e-07
5.18492e-06
-1.13251e-07
5.19181e-06
-1.03652e-07
5.19828e-06
-9.39462e-08
5.20435e-06
-8.41064e-08
5.21004e-06
-7.41243e-08
5.21538e-06
-6.40045e-08
5.22037e-06
-5.37568e-08
5.22504e-06
-4.33952e-08
5.22937e-06
-3.29373e-08
5.23339e-06
-2.24029e-08
5.2371e-06
-1.18121e-08
5.24049e-06
-1.18545e-09
5.24358e-06
9.45455e-09
5.24634e-06
2.00796e-08
5.24877e-06
3.06605e-08
5.25085e-06
4.11709e-08
5.25259e-06
5.15909e-08
5.25398e-06
6.19033e-08
5.25504e-06
7.20893e-08
5.25577e-06
8.21245e-08
5.25616e-06
9.19843e-08
5.25623e-06
1.01648e-07
5.25595e-06
1.11103e-07
5.25533e-06
1.20343e-07
5.25435e-06
1.2937e-07
5.25301e-06
1.38192e-07
5.2513e-06
1.46828e-07
5.24922e-06
1.55301e-07
5.24679e-06
1.63634e-07
5.24402e-06
1.71847e-07
5.24092e-06
1.7996e-07
5.23748e-06
1.87985e-07
5.2337e-06
1.95941e-07
5.22956e-06
2.03851e-07
5.22507e-06
2.11744e-07
5.22021e-06
2.19657e-07
5.21501e-06
2.27617e-07
5.20945e-06
2.35641e-07
5.20353e-06
2.43736e-07
5.19725e-06
2.51898e-07
5.19057e-06
2.60129e-07
5.18351e-06
2.68426e-07
5.17603e-06
2.76785e-07
5.16813e-06
2.85194e-07
5.1598e-06
2.93638e-07
5.15103e-06
3.021e-07
5.14181e-06
3.1057e-07
5.13215e-06
3.1904e-07
5.12205e-06
3.27505e-07
5.11152e-06
3.35959e-07
5.10056e-06
3.44405e-07
5.08918e-06
3.52852e-07
5.07739e-06
3.61334e-07
5.06521e-06
3.69898e-07
5.05264e-06
3.78628e-07
5.03971e-06
3.87622e-07
5.02645e-06
3.97036e-07
5.0129e-06
4.07031e-07
4.99913e-06
4.17855e-07
4.98521e-06
4.29747e-07
4.97124e-06
4.43062e-07
4.95735e-06
4.5813e-07
4.94371e-06
4.75435e-07
4.93054e-06
4.95355e-07
4.9181e-06
5.18482e-07
4.90681e-06
5.45587e-07
4.89716e-06
5.77024e-07
4.88988e-06
6.13612e-07
4.88559e-06
6.54539e-07
4.88555e-06
7.01302e-07
7.49923e-07
4.88965e-06
3.19902e-07
-7.57784e-08
9.15057e-07
4.86745e-07
1.47387e-06
1.0804e-06
1.88212e-06
1.48335e-06
2.17558e-06
1.66528e-06
2.41641e-06
1.67215e-06
2.62829e-06
1.54847e-06
2.79418e-06
1.3127e-06
2.88762e-06
9.72091e-07
2.89261e-06
5.51481e-07
2.80178e-06
1.1093e-07
2.6288e-06
-3.00406e-07
2.3897e-06
-7.2064e-07
2.08765e-06
-1.13721e-06
1.84234e-06
-1.2595e-06
1.6818e-06
-1.39753e-06
1.44996e-06
-2.92403e-06
1.42406e-06
-4.54471e-06
1.54199e-06
-4.49447e-06
1.6526e-06
-3.90401e-06
1.74725e-06
-3.44991e-06
1.83228e-06
-3.14956e-06
1.91035e-06
-2.94042e-06
1.98262e-06
-2.78249e-06
2.0499e-06
-2.65484e-06
2.11297e-06
-2.54662e-06
2.17253e-06
-2.45193e-06
2.22922e-06
-2.3673e-06
2.28355e-06
-2.29053e-06
2.33593e-06
-2.2201e-06
2.38668e-06
-2.15489e-06
2.43605e-06
-2.09405e-06
2.48421e-06
-2.0369e-06
2.5313e-06
-1.9829e-06
2.57744e-06
-1.93161e-06
2.62271e-06
-1.88264e-06
2.66717e-06
-1.83569e-06
2.71085e-06
-1.79049e-06
2.7538e-06
-1.74683e-06
2.79602e-06
-1.70454e-06
2.83755e-06
-1.66348e-06
2.8784e-06
-1.62352e-06
2.9186e-06
-1.58457e-06
2.95816e-06
-1.54654e-06
2.9971e-06
-1.50932e-06
3.03543e-06
-1.47287e-06
3.07315e-06
-1.4371e-06
3.11029e-06
-1.40197e-06
3.14685e-06
-1.36743e-06
3.18285e-06
-1.33344e-06
3.21829e-06
-1.29996e-06
3.25318e-06
-1.26696e-06
3.28754e-06
-1.23443e-06
3.32138e-06
-1.20233e-06
3.3547e-06
-1.17066e-06
3.38751e-06
-1.1394e-06
3.41983e-06
-1.10856e-06
3.45166e-06
-1.07812e-06
3.48302e-06
-1.04809e-06
3.51391e-06
-1.01847e-06
3.54434e-06
-9.89266e-07
3.57433e-06
-9.60484e-07
3.60388e-06
-9.32134e-07
3.63301e-06
-9.04228e-07
3.66173e-06
-8.76778e-07
3.69003e-06
-8.49791e-07
3.71793e-06
-8.23279e-07
3.74544e-06
-7.97252e-07
3.77256e-06
-7.71724e-07
3.79929e-06
-7.46703e-07
3.82564e-06
-7.222e-07
3.85161e-06
-6.98227e-07
3.8772e-06
-6.74792e-07
3.9024e-06
-6.51897e-07
3.92722e-06
-6.2954e-07
3.95164e-06
-6.07723e-07
3.97567e-06
-5.86452e-07
3.99931e-06
-5.65727e-07
4.02256e-06
-5.45539e-07
4.0454e-06
-5.25881e-07
4.06785e-06
-5.06747e-07
4.08988e-06
-4.88131e-07
4.1115e-06
-4.70019e-07
4.13269e-06
-4.52387e-07
4.15341e-06
-4.35225e-07
4.17367e-06
-4.18527e-07
4.19344e-06
-4.0227e-07
4.21271e-06
-3.86447e-07
4.23152e-06
-3.71054e-07
4.24986e-06
-3.56079e-07
4.26777e-06
-3.41509e-07
4.28526e-06
-3.27332e-07
4.30234e-06
-3.13536e-07
4.319e-06
-3.00112e-07
4.33526e-06
-2.87053e-07
4.35112e-06
-2.74352e-07
4.36658e-06
-2.61995e-07
4.38165e-06
-2.49971e-07
4.39634e-06
-2.38265e-07
4.41065e-06
-2.26864e-07
4.4246e-06
-2.15751e-07
4.43818e-06
-2.04904e-07
4.45139e-06
-1.94298e-07
4.46425e-06
-1.83905e-07
4.47674e-06
-1.73694e-07
4.48889e-06
-1.63626e-07
4.5007e-06
-1.53664e-07
4.51218e-06
-1.43782e-07
4.52334e-06
-1.33949e-07
4.53421e-06
-1.24118e-07
4.5448e-06
-1.1424e-07
4.55513e-06
-1.04274e-07
4.56521e-06
-9.41939e-08
4.57508e-06
-8.39911e-08
4.58474e-06
-7.36664e-08
4.59421e-06
-6.32262e-08
4.6035e-06
-5.26812e-08
4.61261e-06
-4.20454e-08
4.62154e-06
-3.13353e-08
4.6303e-06
-2.05677e-08
4.63888e-06
-9.76096e-09
4.64727e-06
1.06334e-09
4.65547e-06
1.18781e-08
4.66348e-06
2.26551e-08
4.67128e-06
3.33671e-08
4.67888e-06
4.39907e-08
4.68628e-06
5.45043e-08
4.69348e-06
6.48866e-08
4.70049e-06
7.51135e-08
4.70731e-06
8.51626e-08
4.71395e-06
9.50149e-08
4.72039e-06
1.0466e-07
4.72664e-06
1.14095e-07
4.73269e-06
1.23323e-07
4.73853e-06
1.32354e-07
4.74416e-06
1.41202e-07
4.74958e-06
1.49884e-07
4.75479e-06
1.5842e-07
4.75982e-06
1.66826e-07
4.76466e-06
1.75124e-07
4.76931e-06
1.83332e-07
4.77379e-06
1.91471e-07
4.77807e-06
1.99568e-07
4.78217e-06
2.07654e-07
4.78606e-06
2.15761e-07
4.78976e-06
2.23919e-07
4.79326e-06
2.32147e-07
4.79654e-06
2.40456e-07
4.79959e-06
2.48849e-07
4.8024e-06
2.57327e-07
4.80494e-06
2.65886e-07
4.80721e-06
2.74522e-07
4.80919e-06
2.8322e-07
4.81086e-06
2.91966e-07
4.81222e-06
3.0074e-07
4.81327e-06
3.0953e-07
4.81399e-06
3.1832e-07
4.8144e-06
3.27104e-07
4.81449e-06
3.35871e-07
4.81427e-06
3.44622e-07
4.81376e-06
3.53364e-07
4.81297e-06
3.6213e-07
4.81191e-06
3.70959e-07
4.81061e-06
3.79933e-07
4.8091e-06
3.8914e-07
4.80741e-06
3.98727e-07
4.8056e-06
4.08841e-07
4.80374e-06
4.19718e-07
4.80192e-06
4.31571e-07
4.80025e-06
4.44739e-07
4.79887e-06
4.59513e-07
4.79795e-06
4.76354e-07
4.79774e-06
4.95574e-07
4.7985e-06
5.17726e-07
4.80067e-06
5.43421e-07
4.8047e-06
5.72993e-07
4.81131e-06
6.07009e-07
4.82099e-06
6.44869e-07
4.83494e-06
6.87356e-07
7.32028e-07
4.85284e-06
1.3628e-07
-2.12733e-07
4.9059e-07
1.3195e-07
9.94932e-07
5.75799e-07
1.45222e-06
1.02564e-06
1.80536e-06
1.31192e-06
2.0712e-06
1.40593e-06
2.2786e-06
1.34087e-06
2.43443e-06
1.15651e-06
2.52902e-06
8.77408e-07
2.55281e-06
5.27463e-07
2.50233e-06
1.61371e-07
2.39194e-06
-1.90227e-07
2.21952e-06
-5.48272e-07
1.95039e-06
-8.68337e-07
1.72603e-06
-1.03484e-06
1.7386e-06
-1.40967e-06
1.70737e-06
-2.89211e-06
1.63571e-06
-4.47252e-06
1.64278e-06
-4.50131e-06
1.6647e-06
-3.92584e-06
1.69262e-06
-3.47783e-06
1.72541e-06
-3.18236e-06
1.76084e-06
-2.97587e-06
1.79734e-06
-2.81899e-06
1.83413e-06
-2.69162e-06
1.87088e-06
-2.58338e-06
1.90753e-06
-2.48859e-06
1.9441e-06
-2.40386e-06
1.98059e-06
-2.32702e-06
2.01703e-06
-2.25653e-06
2.05339e-06
-2.19125e-06
2.08967e-06
-2.13032e-06
2.12582e-06
-2.07305e-06
2.1618e-06
-2.01889e-06
2.1976e-06
-1.9674e-06
2.23319e-06
-1.91823e-06
2.26855e-06
-1.87104e-06
2.30364e-06
-1.82558e-06
2.33845e-06
-1.78163e-06
2.37293e-06
-1.73902e-06
2.40708e-06
-1.69763e-06
2.44088e-06
-1.65732e-06
2.47431e-06
-1.61801e-06
2.50737e-06
-1.5796e-06
2.54007e-06
-1.54202e-06
2.57239e-06
-1.50519e-06
2.60433e-06
-1.46905e-06
2.63589e-06
-1.43354e-06
2.66707e-06
-1.39862e-06
2.69786e-06
-1.36424e-06
2.72828e-06
-1.33038e-06
2.75831e-06
-1.297e-06
2.78796e-06
-1.26408e-06
2.81724e-06
-1.23161e-06
2.84615e-06
-1.19957e-06
2.87469e-06
-1.16795e-06
2.90287e-06
-1.13674e-06
2.93069e-06
-1.10594e-06
2.95816e-06
-1.07556e-06
2.98529e-06
-1.0456e-06
3.01208e-06
-1.01605e-06
3.03854e-06
-9.86941e-07
3.06467e-06
-9.58268e-07
3.09048e-06
-9.30044e-07
3.11599e-06
-9.02284e-07
3.14119e-06
-8.74994e-07
3.1661e-06
-8.48185e-07
3.19072e-06
-8.21867e-07
3.21505e-06
-7.96054e-07
3.2391e-06
-7.70752e-07
3.26287e-06
-7.45974e-07
3.28637e-06
-7.21731e-07
3.30961e-06
-6.98026e-07
3.33257e-06
-6.74859e-07
3.35526e-06
-6.52229e-07
3.37767e-06
-6.30141e-07
3.39982e-06
-6.08595e-07
3.42168e-06
-5.87591e-07
3.44326e-06
-5.67123e-07
3.46456e-06
-5.47175e-07
3.48554e-06
-5.27732e-07
3.50621e-06
-5.08795e-07
3.52655e-06
-4.90363e-07
3.54657e-06
-4.72412e-07
3.56628e-06
-4.54929e-07
3.58566e-06
-4.37912e-07
3.60475e-06
-4.21359e-07
3.62355e-06
-4.05248e-07
3.64207e-06
-3.8957e-07
3.66031e-06
-3.74313e-07
3.67826e-06
-3.59463e-07
3.69594e-06
-3.45009e-07
3.71335e-06
-3.30943e-07
3.7305e-06
-3.17256e-07
3.74739e-06
-3.0394e-07
3.76402e-06
-2.90986e-07
3.78041e-06
-2.78381e-07
3.79656e-06
-2.66115e-07
3.81247e-06
-2.54173e-07
3.82815e-06
-2.42542e-07
3.8436e-06
-2.31203e-07
3.85883e-06
-2.20134e-07
3.87384e-06
-2.09309e-07
3.88864e-06
-1.98699e-07
3.90322e-06
-1.88275e-07
3.91759e-06
-1.78e-07
3.93176e-06
-1.67836e-07
3.94574e-06
-1.5776e-07
3.95954e-06
-1.47752e-07
3.97319e-06
-1.37766e-07
3.9867e-06
-1.27749e-07
4.00008e-06
-1.17657e-07
4.01335e-06
-1.07464e-07
4.02653e-06
-9.71617e-08
4.03961e-06
-8.67495e-08
4.05262e-06
-7.62319e-08
4.06555e-06
-6.56161e-08
4.07842e-06
-5.49133e-08
4.09122e-06
-4.41377e-08
4.10396e-06
-3.33052e-08
4.11663e-06
-2.24324e-08
4.12924e-06
-1.15402e-08
4.14177e-06
-6.53608e-10
4.15422e-06
1.02e-08
4.1666e-06
2.09932e-08
4.17889e-06
3.17001e-08
4.1911e-06
4.22961e-08
4.20323e-06
5.27572e-08
4.21528e-06
6.30597e-08
4.22726e-06
7.31819e-08
4.23917e-06
8.3107e-08
4.25101e-06
9.28249e-08
4.26277e-06
1.02333e-07
4.27447e-06
1.11634e-07
4.28609e-06
1.20736e-07
4.29764e-06
1.29653e-07
4.30913e-06
1.38397e-07
4.32056e-06
1.46987e-07
4.33195e-06
1.55442e-07
4.3433e-06
1.63782e-07
4.3546e-06
1.72029e-07
4.36587e-06
1.8021e-07
4.37708e-06
1.88353e-07
4.38825e-06
1.96489e-07
4.39936e-06
2.04651e-07
4.41041e-06
2.12868e-07
4.4214e-06
2.21163e-07
4.43231e-06
2.2955e-07
4.44312e-06
2.38035e-07
4.45383e-06
2.46622e-07
4.46441e-06
2.55308e-07
4.47485e-06
2.64086e-07
4.48513e-06
2.72939e-07
4.49525e-06
2.81852e-07
4.50519e-06
2.90804e-07
4.51494e-06
2.99777e-07
4.52451e-06
3.08752e-07
4.5339e-06
3.17718e-07
4.54312e-06
3.2666e-07
4.55216e-06
3.35579e-07
4.56106e-06
3.44475e-07
4.56981e-06
3.53378e-07
4.57845e-06
3.62322e-07
4.587e-06
3.71383e-07
4.59551e-06
3.8064e-07
4.60401e-06
3.9023e-07
4.61256e-06
4.00285e-07
4.62126e-06
4.11028e-07
4.63018e-06
4.2265e-07
4.63945e-06
4.3547e-07
4.64923e-06
4.49737e-07
4.6597e-06
4.65891e-07
4.67109e-06
4.8418e-07
4.6837e-06
5.05119e-07
4.69797e-06
5.29154e-07
4.71432e-06
5.56642e-07
4.73344e-06
5.87893e-07
4.75575e-06
6.22567e-07
4.78234e-06
6.60767e-07
7.01414e-07
4.81295e-06
3.17734e-08
-2.45327e-07
1.72389e-07
-9.20697e-09
4.99987e-07
2.47765e-07
8.85122e-07
6.4011e-07
1.2499e-06
9.46905e-07
1.55188e-06
1.10366e-06
1.78995e-06
1.10261e-06
1.96894e-06
9.77417e-07
2.09076e-06
7.55258e-07
2.14903e-06
4.69141e-07
2.13951e-06
1.70456e-07
2.08399e-06
-1.34797e-07
1.96653e-06
-4.31524e-07
1.75456e-06
-6.56475e-07
1.6409e-06
-9.21613e-07
1.83291e-06
-1.60125e-06
1.9318e-06
-2.99058e-06
1.80979e-06
-4.35016e-06
1.70811e-06
-4.3994e-06
1.64897e-06
-3.86667e-06
1.61975e-06
-3.44859e-06
1.60946e-06
-3.17208e-06
1.61057e-06
-2.97698e-06
1.61878e-06
-2.82721e-06
1.63175e-06
-2.70458e-06
1.64814e-06
-2.59977e-06
1.66716e-06
-2.5076e-06
1.68826e-06
-2.42496e-06
1.71103e-06
-2.34979e-06
1.73514e-06
-2.28064e-06
1.76034e-06
-2.21645e-06
1.7864e-06
-2.15637e-06
1.81312e-06
-2.09977e-06
1.84035e-06
-2.04612e-06
1.86794e-06
-1.995e-06
1.89579e-06
-1.94608e-06
1.92382e-06
-1.89907e-06
1.95196e-06
-1.85373e-06
1.98015e-06
-1.80982e-06
2.00832e-06
-1.7672e-06
2.03643e-06
-1.72574e-06
2.06443e-06
-1.68532e-06
2.0923e-06
-1.64588e-06
2.12001e-06
-1.60731e-06
2.14755e-06
-1.56956e-06
2.17489e-06
-1.53253e-06
2.20203e-06
-1.49619e-06
2.22895e-06
-1.46046e-06
2.25565e-06
-1.42531e-06
2.28211e-06
-1.3907e-06
2.30832e-06
-1.3566e-06
2.33429e-06
-1.32297e-06
2.36002e-06
-1.28981e-06
2.38549e-06
-1.25709e-06
2.41071e-06
-1.22479e-06
2.43568e-06
-1.19292e-06
2.4604e-06
-1.16146e-06
2.48488e-06
-1.13041e-06
2.5091e-06
-1.09979e-06
2.53309e-06
-1.06958e-06
2.55683e-06
-1.0398e-06
2.58034e-06
-1.01045e-06
2.60363e-06
-9.81551e-07
2.62669e-06
-9.53109e-07
2.64954e-06
-9.25133e-07
2.67218e-06
-8.97632e-07
2.69462e-06
-8.70617e-07
2.71685e-06
-8.441e-07
2.73889e-06
-8.18093e-07
2.76074e-06
-7.92602e-07
2.78241e-06
-7.6764e-07
2.80389e-06
-7.43211e-07
2.82518e-06
-7.1932e-07
2.84629e-06
-6.95969e-07
2.86722e-06
-6.73161e-07
2.88797e-06
-6.50885e-07
2.90851e-06
-6.2914e-07
2.92885e-06
-6.07933e-07
2.949e-06
-5.87266e-07
2.96895e-06
-5.67125e-07
2.9887e-06
-5.47486e-07
3.00826e-06
-5.28349e-07
3.02762e-06
-5.09723e-07
3.0468e-06
-4.91594e-07
3.06581e-06
-4.73942e-07
3.08466e-06
-4.56758e-07
3.10333e-06
-4.40031e-07
3.12183e-06
-4.23751e-07
3.14017e-06
-4.07903e-07
3.15833e-06
-3.92479e-07
3.17634e-06
-3.77467e-07
3.19419e-06
-3.62858e-07
3.21189e-06
-3.48641e-07
3.22945e-06
-3.34808e-07
3.24686e-06
-3.21349e-07
3.26413e-06
-3.08257e-07
3.28127e-06
-2.9552e-07
3.29829e-06
-2.83126e-07
3.31518e-06
-2.71062e-07
3.33195e-06
-2.59315e-07
3.34861e-06
-2.47863e-07
3.36516e-06
-2.36685e-07
3.38161e-06
-2.25755e-07
3.39796e-06
-2.15045e-07
3.41421e-06
-2.04527e-07
3.43038e-06
-1.94169e-07
3.44647e-06
-1.83929e-07
3.46249e-06
-1.7378e-07
3.47844e-06
-1.63703e-07
3.49434e-06
-1.53671e-07
3.51022e-06
-1.43629e-07
3.52609e-06
-1.33524e-07
3.54195e-06
-1.23325e-07
3.55782e-06
-1.13024e-07
3.57369e-06
-1.02619e-07
3.58957e-06
-9.21154e-08
3.60547e-06
-8.15186e-08
3.6214e-06
-7.08386e-08
3.63735e-06
-6.00862e-08
3.65332e-06
-4.92741e-08
3.66931e-06
-3.84195e-08
3.68531e-06
-2.75439e-08
3.70133e-06
-1.6673e-08
3.71736e-06
-5.83379e-09
3.73341e-06
4.94578e-09
3.74947e-06
1.56384e-08
3.76555e-06
2.62171e-08
3.78165e-06
3.66563e-08
3.79778e-06
4.69317e-08
3.81394e-06
5.70227e-08
3.83013e-06
6.69135e-08
3.84636e-06
7.6595e-08
3.86263e-06
8.6064e-08
3.87894e-06
9.53237e-08
3.8953e-06
1.0438e-07
3.91171e-06
1.13245e-07
3.92818e-06
1.21932e-07
3.94471e-06
1.30458e-07
3.96131e-06
1.3884e-07
3.97799e-06
1.47103e-07
3.99475e-06
1.5527e-07
4.0116e-06
1.63369e-07
4.02852e-06
1.71432e-07
4.04552e-06
1.79492e-07
4.06259e-06
1.87583e-07
4.07972e-06
1.95735e-07
4.09691e-06
2.03974e-07
4.11415e-06
2.12318e-07
4.13141e-06
2.20774e-07
4.14868e-06
2.29349e-07
4.16595e-06
2.38038e-07
4.18321e-06
2.46833e-07
4.20043e-06
2.55716e-07
4.21762e-06
2.64669e-07
4.23476e-06
2.7367e-07
4.25184e-06
2.82695e-07
4.26887e-06
2.91724e-07
4.28585e-06
3.00738e-07
4.3028e-06
3.09721e-07
4.31971e-06
3.18669e-07
4.33661e-06
3.27578e-07
4.35352e-06
3.36473e-07
4.37046e-06
3.45381e-07
4.38747e-06
3.54373e-07
4.4046e-06
3.63517e-07
4.42189e-06
3.72942e-07
4.43941e-06
3.82763e-07
4.45725e-06
3.93191e-07
4.47551e-06
4.04393e-07
4.49431e-06
4.16669e-07
4.51383e-06
4.30226e-07
4.53424e-06
4.4548e-07
4.5558e-06
4.62622e-07
4.5788e-06
4.82126e-07
4.60368e-06
5.04275e-07
4.63084e-06
5.29484e-07
4.66093e-06
5.57807e-07
4.69433e-06
5.89171e-07
4.73202e-06
6.2309e-07
6.59563e-07
4.77387e-06
-2.26994e-08
-2.23216e-07
5.17393e-09
-3.78372e-08
1.35613e-07
1.16752e-07
3.87152e-07
3.88289e-07
6.92693e-07
6.40957e-07
9.90869e-07
8.05438e-07
1.25435e-06
8.38961e-07
1.46897e-06
7.62606e-07
1.62978e-06
5.94411e-07
1.72968e-06
3.68673e-07
1.77997e-06
1.19933e-07
1.78624e-06
-1.41979e-07
1.72016e-06
-3.65863e-07
1.62437e-06
-5.61796e-07
1.72569e-06
-1.02319e-06
2.04905e-06
-1.92492e-06
2.14652e-06
-3.08797e-06
1.94009e-06
-4.14352e-06
1.73789e-06
-4.19714e-06
1.61132e-06
-3.74003e-06
1.53734e-06
-3.37459e-06
1.49428e-06
-3.129e-06
1.46966e-06
-2.95236e-06
1.45686e-06
-2.81439e-06
1.4522e-06
-2.69993e-06
1.45354e-06
-2.60111e-06
1.45947e-06
-2.51353e-06
1.469e-06
-2.4345e-06
1.48141e-06
-2.3622e-06
1.49614e-06
-2.29537e-06
1.51271e-06
-2.23303e-06
1.53077e-06
-2.17444e-06
1.55002e-06
-2.11902e-06
1.57022e-06
-2.06632e-06
1.59117e-06
-2.01595e-06
1.6127e-06
-1.96761e-06
1.63468e-06
-1.92106e-06
1.65703e-06
-1.87607e-06
1.67965e-06
-1.83245e-06
1.70249e-06
-1.79003e-06
1.72546e-06
-1.74871e-06
1.74851e-06
-1.70838e-06
1.77161e-06
-1.66898e-06
1.79472e-06
-1.63042e-06
1.81781e-06
-1.59265e-06
1.84086e-06
-1.55559e-06
1.86385e-06
-1.51918e-06
1.88675e-06
-1.48337e-06
1.90956e-06
-1.44812e-06
1.93225e-06
-1.4134e-06
1.95482e-06
-1.37917e-06
1.97726e-06
-1.34542e-06
1.99957e-06
-1.31211e-06
2.02172e-06
-1.27925e-06
2.04373e-06
-1.2468e-06
2.06559e-06
-1.21478e-06
2.0873e-06
-1.18316e-06
2.10885e-06
-1.15197e-06
2.13025e-06
-1.12119e-06
2.1515e-06
-1.09083e-06
2.1726e-06
-1.0609e-06
2.19355e-06
-1.0314e-06
2.21436e-06
-1.00236e-06
2.23503e-06
-9.73776e-07
2.25556e-06
-9.45662e-07
2.27596e-06
-9.18027e-07
2.29623e-06
-8.90884e-07
2.31637e-06
-8.64246e-07
2.3364e-06
-8.38125e-07
2.35633e-06
-8.12524e-07
2.37613e-06
-7.87444e-07
2.39581e-06
-7.62893e-07
2.41537e-06
-7.38882e-07
2.43483e-06
-7.15422e-07
2.45418e-06
-6.9251e-07
2.47343e-06
-6.70135e-07
2.49257e-06
-6.48287e-07
2.51161e-06
-6.26974e-07
2.53055e-06
-6.06205e-07
2.5494e-06
-5.85973e-07
2.56817e-06
-5.66257e-07
2.58687e-06
-5.47044e-07
2.60548e-06
-5.28334e-07
2.62401e-06
-5.10123e-07
2.64246e-06
-4.92394e-07
2.66083e-06
-4.75133e-07
2.67913e-06
-4.5833e-07
2.69736e-06
-4.41976e-07
2.71551e-06
-4.26058e-07
2.7336e-06
-4.10566e-07
2.75162e-06
-3.95489e-07
2.76959e-06
-3.80818e-07
2.78749e-06
-3.66544e-07
2.80534e-06
-3.52658e-07
2.82315e-06
-3.39152e-07
2.84091e-06
-3.26016e-07
2.85863e-06
-3.1324e-07
2.87632e-06
-3.00812e-07
2.89398e-06
-2.8872e-07
2.91161e-06
-2.76949e-07
2.92923e-06
-2.65479e-07
2.94683e-06
-2.54286e-07
2.96442e-06
-2.43346e-07
2.98201e-06
-2.32633e-07
2.9996e-06
-2.22119e-07
3.01721e-06
-2.11773e-07
3.03483e-06
-2.01557e-07
3.05249e-06
-1.91434e-07
3.07017e-06
-1.81381e-07
3.08787e-06
-1.71377e-07
3.10563e-06
-1.61386e-07
3.12346e-06
-1.51356e-07
3.14138e-06
-1.41248e-07
3.1594e-06
-1.31039e-07
3.17751e-06
-1.20725e-07
3.1957e-06
-1.10312e-07
3.214e-06
-9.98094e-08
3.23238e-06
-8.92243e-08
3.25086e-06
-7.8565e-08
3.26943e-06
-6.78444e-08
3.28809e-06
-5.70818e-08
3.30685e-06
-4.62989e-08
3.3257e-06
-3.55207e-08
3.34464e-06
-2.47735e-08
3.36367e-06
-1.40863e-08
3.38279e-06
-3.48827e-09
3.40202e-06
6.99148e-09
3.42135e-06
1.73265e-08
3.44079e-06
2.74918e-08
3.46035e-06
3.74676e-08
3.48003e-06
4.72377e-08
3.49983e-06
5.6794e-08
3.51976e-06
6.6132e-08
3.53983e-06
7.52541e-08
3.56005e-06
8.41649e-08
3.58042e-06
9.28756e-08
3.60096e-06
1.01399e-07
3.62166e-06
1.09753e-07
3.64255e-06
1.17958e-07
3.66362e-06
1.26037e-07
3.68487e-06
1.34017e-07
3.70631e-06
1.41928e-07
3.72794e-06
1.49804e-07
3.74976e-06
1.57681e-07
3.77175e-06
1.65592e-07
3.79391e-06
1.73572e-07
3.81624e-06
1.81647e-07
3.83872e-06
1.89839e-07
3.86134e-06
1.98157e-07
3.88408e-06
2.06609e-07
3.90693e-06
2.1519e-07
3.92987e-06
2.2389e-07
3.9529e-06
2.3269e-07
3.976e-06
2.41569e-07
3.99917e-06
2.50501e-07
4.02241e-06
2.5946e-07
4.04572e-06
2.68419e-07
4.0691e-06
2.77358e-07
4.09257e-06
2.86255e-07
4.11614e-06
2.95102e-07
4.13983e-06
3.0389e-07
4.16367e-06
3.12639e-07
4.18768e-06
3.21368e-07
4.21192e-06
3.30142e-07
4.23642e-06
3.39019e-07
4.26124e-06
3.48118e-07
4.28647e-06
3.57538e-07
4.31218e-06
3.67479e-07
4.3385e-06
3.78081e-07
4.36554e-06
3.89628e-07
4.39349e-06
4.02281e-07
4.42253e-06
4.1644e-07
4.45292e-06
4.32231e-07
4.48496e-06
4.50091e-07
4.51908e-06
4.70158e-07
4.55565e-06
4.92919e-07
4.59528e-06
5.18172e-07
4.63834e-06
5.46114e-07
4.68568e-06
5.7576e-07
6.07924e-07
4.73732e-06
-8.60282e-08
-1.38869e-07
-1.30335e-07
5.59274e-09
-9.8892e-08
8.49467e-08
4.07392e-08
2.48122e-07
2.59706e-07
4.21952e-07
5.18276e-07
5.46557e-07
7.80976e-07
5.76372e-07
1.02184e-06
5.21591e-07
1.22843e-06
3.87593e-07
1.39435e-06
2.02465e-07
1.51021e-06
3.61965e-09
1.56213e-06
-1.94247e-07
1.58566e-06
-3.89863e-07
1.71491e-06
-6.91301e-07
2.04168e-06
-1.35019e-06
2.35873e-06
-2.24191e-06
2.32245e-06
-3.05155e-06
2.00896e-06
-3.82988e-06
1.73015e-06
-3.91823e-06
1.55783e-06
-3.56768e-06
1.45436e-06
-3.27111e-06
1.38951e-06
-3.06416e-06
1.34757e-06
-2.91041e-06
1.32039e-06
-2.78724e-06
1.3035e-06
-2.68306e-06
1.29419e-06
-2.5918e-06
1.29065e-06
-2.51e-06
1.29164e-06
-2.43549e-06
1.2962e-06
-2.36678e-06
1.30363e-06
-2.3028e-06
1.31336e-06
-2.24276e-06
1.32496e-06
-2.18604e-06
1.33806e-06
-2.13213e-06
1.35239e-06
-2.08064e-06
1.36771e-06
-2.03127e-06
1.38383e-06
-1.98374e-06
1.40061e-06
-1.93784e-06
1.41791e-06
-1.89338e-06
1.43567e-06
-1.85021e-06
1.45381e-06
-1.80816e-06
1.47223e-06
-1.76713e-06
1.49089e-06
-1.72704e-06
1.50974e-06
-1.68782e-06
1.52873e-06
-1.64942e-06
1.54783e-06
-1.61175e-06
1.56702e-06
-1.57477e-06
1.58626e-06
-1.53842e-06
1.60554e-06
-1.50264e-06
1.62482e-06
-1.46741e-06
1.6441e-06
-1.43268e-06
1.66337e-06
-1.39844e-06
1.6826e-06
-1.36465e-06
1.70179e-06
-1.3313e-06
1.72092e-06
-1.29838e-06
1.74001e-06
-1.26588e-06
1.75903e-06
-1.2338e-06
1.77798e-06
-1.20212e-06
1.79687e-06
-1.17085e-06
1.81569e-06
-1.14e-06
1.83443e-06
-1.10957e-06
1.85311e-06
-1.07957e-06
1.87172e-06
-1.05001e-06
1.89027e-06
-1.0209e-06
1.90874e-06
-9.92247e-07
1.92713e-06
-9.6406e-07
1.94547e-06
-9.3636e-07
1.96375e-06
-9.0916e-07
1.98197e-06
-8.82471e-07
2.00015e-06
-8.56304e-07
2.01829e-06
-8.30662e-07
2.03639e-06
-8.05541e-07
2.05444e-06
-7.8095e-07
2.07246e-06
-7.56903e-07
2.09045e-06
-7.33409e-07
2.10841e-06
-7.10471e-07
2.12636e-06
-6.88079e-07
2.14429e-06
-6.66225e-07
2.16223e-06
-6.44905e-07
2.18014e-06
-6.24123e-07
2.19805e-06
-6.03877e-07
2.21594e-06
-5.84154e-07
2.23384e-06
-5.6494e-07
2.25173e-06
-5.46228e-07
2.26962e-06
-5.28012e-07
2.28751e-06
-5.10281e-07
2.3054e-06
-4.93024e-07
2.32329e-06
-4.76225e-07
2.34119e-06
-4.59877e-07
2.35911e-06
-4.43968e-07
2.37703e-06
-4.28487e-07
2.39497e-06
-4.13426e-07
2.41292e-06
-3.98774e-07
2.4309e-06
-3.84522e-07
2.44891e-06
-3.70661e-07
2.46695e-06
-3.57185e-07
2.48501e-06
-3.44082e-07
2.50312e-06
-3.31344e-07
2.52127e-06
-3.1896e-07
2.53947e-06
-3.06917e-07
2.55772e-06
-2.952e-07
2.57603e-06
-2.83788e-07
2.5944e-06
-2.7266e-07
2.61285e-06
-2.61791e-07
2.63137e-06
-2.51156e-07
2.64998e-06
-2.40728e-07
2.66868e-06
-2.30474e-07
2.68748e-06
-2.20361e-07
2.7064e-06
-2.1035e-07
2.72542e-06
-2.00408e-07
2.74456e-06
-1.90509e-07
2.7638e-06
-1.80626e-07
2.78317e-06
-1.70727e-07
2.80269e-06
-1.60771e-07
2.82238e-06
-1.50727e-07
2.84224e-06
-1.40582e-07
2.86226e-06
-1.30337e-07
2.88245e-06
-1.19997e-07
2.90279e-06
-1.09565e-07
2.92329e-06
-9.90562e-08
2.94393e-06
-8.84866e-08
2.96472e-06
-7.78765e-08
2.98567e-06
-6.72464e-08
3.00677e-06
-5.66205e-08
3.02802e-06
-4.6027e-08
3.04943e-06
-3.54973e-08
3.07101e-06
-2.50621e-08
3.09275e-06
-1.47513e-08
3.11467e-06
-4.59136e-09
3.13677e-06
5.39227e-09
3.15905e-06
1.51785e-08
3.18154e-06
2.47514e-08
3.20423e-06
3.41023e-08
3.22714e-06
4.32267e-08
3.25027e-06
5.2126e-08
3.27363e-06
6.08046e-08
3.29723e-06
6.92735e-08
3.32109e-06
7.7546e-08
3.3452e-06
8.56408e-08
3.36958e-06
9.35782e-08
3.39424e-06
1.01384e-07
3.41917e-06
1.09085e-07
3.44438e-06
1.16715e-07
3.46988e-06
1.24309e-07
3.49566e-06
1.31905e-07
3.52171e-06
1.39541e-07
3.54803e-06
1.47253e-07
3.57461e-06
1.55069e-07
3.60143e-06
1.63012e-07
3.62849e-06
1.71097e-07
3.65578e-06
1.79329e-07
3.68326e-06
1.87704e-07
3.71094e-06
1.9621e-07
3.73881e-06
2.04825e-07
3.76686e-06
2.13527e-07
3.79508e-06
2.22283e-07
3.82347e-06
2.31068e-07
3.85204e-06
2.39848e-07
3.8808e-06
2.48598e-07
3.90977e-06
2.57293e-07
3.93895e-06
2.65919e-07
3.96838e-06
2.74465e-07
3.99808e-06
2.82939e-07
4.02809e-06
2.91357e-07
4.05846e-06
2.99774e-07
4.08924e-06
3.08242e-07
4.1205e-06
3.16866e-07
4.1523e-06
3.25731e-07
4.18476e-06
3.35023e-07
4.21799e-06
3.4486e-07
4.25211e-06
3.55507e-07
4.28731e-06
3.67084e-07
4.32378e-06
3.79974e-07
4.36179e-06
3.94222e-07
4.40162e-06
4.10257e-07
4.4437e-06
4.28085e-07
4.48837e-06
4.48252e-07
4.53623e-06
4.70318e-07
4.58761e-06
4.94737e-07
4.64326e-06
5.20122e-07
5.47906e-07
4.70328e-06
-1.34875e-07
-4.41232e-09
-2.27639e-07
9.80112e-08
-2.19393e-07
7.63977e-08
-1.39415e-07
1.67951e-07
2.1047e-08
2.6126e-07
2.41101e-07
3.26503e-07
4.89641e-07
3.27665e-07
7.48194e-07
2.63151e-07
9.9448e-07
1.41176e-07
1.20587e-06
-9.18186e-09
1.37929e-06
-1.69967e-07
1.54945e-06
-3.64426e-07
1.79088e-06
-6.31135e-07
2.1493e-06
-1.04947e-06
2.51655e-06
-1.71712e-06
2.64881e-06
-2.37387e-06
2.40932e-06
-2.81183e-06
2.00659e-06
-3.42702e-06
1.69073e-06
-3.60232e-06
1.49893e-06
-3.37585e-06
1.38165e-06
-3.15383e-06
1.30536e-06
-2.98788e-06
1.25347e-06
-2.85854e-06
1.21749e-06
-2.75127e-06
1.19265e-06
-2.65824e-06
1.17603e-06
-2.5752e-06
1.16569e-06
-2.49968e-06
1.16026e-06
-2.43006e-06
1.15871e-06
-2.36524e-06
1.16029e-06
-2.30438e-06
1.16439e-06
-2.24687e-06
1.17054e-06
-2.19219e-06
1.17837e-06
-2.13996e-06
1.18759e-06
-2.08986e-06
1.19795e-06
-2.04163e-06
1.20926e-06
-1.99505e-06
1.22136e-06
-1.94994e-06
1.23413e-06
-1.90614e-06
1.24746e-06
-1.86354e-06
1.26128e-06
-1.82198e-06
1.27551e-06
-1.78137e-06
1.29011e-06
-1.74163e-06
1.305e-06
-1.70272e-06
1.32016e-06
-1.66458e-06
1.33554e-06
-1.62713e-06
1.3511e-06
-1.59034e-06
1.36683e-06
-1.55414e-06
1.38268e-06
-1.5185e-06
1.39864e-06
-1.48337e-06
1.4147e-06
-1.44874e-06
1.43082e-06
-1.41457e-06
1.44701e-06
-1.38084e-06
1.46324e-06
-1.34753e-06
1.4795e-06
-1.31465e-06
1.4958e-06
-1.28218e-06
1.51211e-06
-1.25011e-06
1.52844e-06
-1.21845e-06
1.54478e-06
-1.18719e-06
1.56113e-06
-1.15635e-06
1.57748e-06
-1.12592e-06
1.59383e-06
-1.09593e-06
1.61019e-06
-1.06637e-06
1.62656e-06
-1.03726e-06
1.64292e-06
-1.00861e-06
1.65929e-06
-9.80432e-07
1.67568e-06
-9.52741e-07
1.69207e-06
-9.25554e-07
1.70848e-06
-8.98881e-07
1.72491e-06
-8.72732e-07
1.74136e-06
-8.47115e-07
1.75785e-06
-8.22031e-07
1.77438e-06
-7.97482e-07
1.79096e-06
-7.73477e-07
1.80757e-06
-7.50024e-07
1.82423e-06
-7.27127e-07
1.84093e-06
-7.04782e-07
1.85769e-06
-6.82981e-07
1.8745e-06
-6.61719e-07
1.89137e-06
-6.40995e-07
1.9083e-06
-6.20805e-07
1.92529e-06
-6.01141e-07
1.94234e-06
-5.81991e-07
1.95946e-06
-5.63347e-07
1.97665e-06
-5.45199e-07
1.9939e-06
-5.27539e-07
2.01123e-06
-5.10352e-07
2.02864e-06
-4.9363e-07
2.04612e-06
-4.77359e-07
2.06368e-06
-4.61528e-07
2.08132e-06
-4.46129e-07
2.09905e-06
-4.31151e-07
2.11686e-06
-4.16585e-07
2.13476e-06
-4.02422e-07
2.15276e-06
-3.88654e-07
2.17085e-06
-3.75273e-07
2.18904e-06
-3.62271e-07
2.20733e-06
-3.49638e-07
2.22574e-06
-3.37364e-07
2.24426e-06
-3.25436e-07
2.2629e-06
-3.13839e-07
2.28166e-06
-3.02553e-07
2.30056e-06
-2.91557e-07
2.31959e-06
-2.80828e-07
2.33877e-06
-2.70339e-07
2.35811e-06
-2.60063e-07
2.3776e-06
-2.49969e-07
2.39726e-06
-2.40022e-07
2.4171e-06
-2.30186e-07
2.43712e-06
-2.20426e-07
2.45732e-06
-2.10709e-07
2.4777e-06
-2.01005e-07
2.49825e-06
-1.91284e-07
2.519e-06
-1.81519e-07
2.53996e-06
-1.71683e-07
2.56114e-06
-1.61759e-07
2.58253e-06
-1.51735e-07
2.60415e-06
-1.41612e-07
2.62598e-06
-1.31399e-07
2.64803e-06
-1.21104e-07
2.67029e-06
-1.10745e-07
2.69275e-06
-1.00341e-07
2.71542e-06
-8.99126e-08
2.73829e-06
-7.94892e-08
2.76137e-06
-6.91036e-08
2.78466e-06
-5.87878e-08
2.80817e-06
-4.85732e-08
2.83191e-06
-3.84885e-08
2.85588e-06
-2.85613e-08
2.88009e-06
-1.88195e-08
2.90455e-06
-9.28634e-09
2.92928e-06
2.32015e-11
2.95429e-06
9.10111e-09
2.97957e-06
1.79426e-08
3.00515e-06
2.65471e-08
3.03104e-06
3.49197e-08
3.05724e-06
4.30713e-08
3.08377e-06
5.10165e-08
3.11064e-06
5.87741e-08
3.13786e-06
6.63659e-08
3.16542e-06
7.3818e-08
3.19335e-06
8.116e-08
3.22164e-06
8.84276e-08
3.25029e-06
9.56583e-08
3.2793e-06
1.02893e-07
3.30868e-06
1.1017e-07
3.3384e-06
1.17529e-07
3.36847e-06
1.25001e-07
3.39887e-06
1.32613e-07
3.42959e-06
1.40379e-07
3.46061e-06
1.48306e-07
3.49193e-06
1.56388e-07
3.52352e-06
1.64613e-07
3.55539e-06
1.72956e-07
3.58753e-06
1.81389e-07
3.61994e-06
1.89879e-07
3.65262e-06
1.98393e-07
3.68557e-06
2.06896e-07
3.71881e-06
2.15356e-07
3.75236e-06
2.23745e-07
3.78624e-06
2.32045e-07
3.82047e-06
2.40236e-07
3.85509e-06
2.48321e-07
3.89014e-06
2.56308e-07
3.92568e-06
2.64245e-07
3.96175e-06
2.72173e-07
3.99843e-06
2.80188e-07
4.0358e-06
2.88359e-07
4.07396e-06
2.9686e-07
4.11304e-06
3.05784e-07
4.15317e-06
3.15383e-07
4.19452e-06
3.25731e-07
4.2373e-06
3.37193e-07
4.28179e-06
3.49736e-07
4.32825e-06
3.63803e-07
4.37708e-06
3.79258e-07
4.42862e-06
3.96709e-07
4.48344e-06
4.15504e-07
4.54186e-06
4.36314e-07
4.60451e-06
4.57475e-07
4.80853e-07
4.67157e-06
-9.35532e-08
8.84371e-08
-1.44856e-07
1.49085e-07
-1.63965e-07
9.5239e-08
-1.2776e-07
1.3143e-07
-3.5869e-09
1.36833e-07
1.96921e-07
1.25753e-07
4.53475e-07
7.11962e-08
7.51408e-07
-3.49504e-08
1.06649e-06
-1.73965e-07
1.38341e-06
-3.26162e-07
1.70803e-06
-4.94532e-07
2.05239e-06
-7.08499e-07
2.41733e-06
-9.95577e-07
2.748e-06
-1.37958e-06
2.91836e-06
-1.8869e-06
2.79381e-06
-2.24889e-06
2.38618e-06
-2.40388e-06
1.94831e-06
-2.98898e-06
1.63725e-06
-3.29122e-06
1.44851e-06
-3.1871e-06
1.33006e-06
-3.03539e-06
1.25044e-06
-2.90827e-06
1.19428e-06
-2.8024e-06
1.15363e-06
-2.71065e-06
1.12399e-06
-2.62862e-06
1.10251e-06
-2.55375e-06
1.0873e-06
-2.48449e-06
1.07701e-06
-2.41979e-06
1.07065e-06
-2.35888e-06
1.06744e-06
-2.30119e-06
1.06682e-06
-2.24625e-06
1.06831e-06
-2.19369e-06
1.07156e-06
-2.14322e-06
1.07628e-06
-2.09458e-06
1.08222e-06
-2.04758e-06
1.08921e-06
-2.00204e-06
1.09707e-06
-1.9578e-06
1.10569e-06
-1.91476e-06
1.11495e-06
-1.8728e-06
1.12479e-06
-1.83182e-06
1.13514e-06
-1.79172e-06
1.14595e-06
-1.75244e-06
1.15715e-06
-1.71392e-06
1.1687e-06
-1.67613e-06
1.18056e-06
-1.63899e-06
1.1927e-06
-1.60247e-06
1.20507e-06
-1.56651e-06
1.21766e-06
-1.53109e-06
1.23045e-06
-1.49615e-06
1.2434e-06
-1.46169e-06
1.25651e-06
-1.42768e-06
1.26976e-06
-1.39409e-06
1.28314e-06
-1.36091e-06
1.29663e-06
-1.32814e-06
1.31023e-06
-1.29578e-06
1.32392e-06
-1.2638e-06
1.33771e-06
-1.23223e-06
1.35157e-06
-1.20106e-06
1.36551e-06
-1.17029e-06
1.37952e-06
-1.13994e-06
1.39361e-06
-1.11001e-06
1.40777e-06
-1.08053e-06
1.422e-06
-1.05149e-06
1.4363e-06
-1.02292e-06
1.45069e-06
-9.94817e-07
1.46516e-06
-9.67205e-07
1.4797e-06
-9.40097e-07
1.49432e-06
-9.13505e-07
1.50903e-06
-8.87439e-07
1.52382e-06
-8.61909e-07
1.53871e-06
-8.36917e-07
1.5537e-06
-8.12469e-07
1.56879e-06
-7.88568e-07
1.58399e-06
-7.65221e-07
1.59929e-06
-7.4243e-07
1.6147e-06
-7.20193e-07
1.63022e-06
-6.98506e-07
1.64587e-06
-6.77363e-07
1.66163e-06
-6.5676e-07
1.67752e-06
-6.36693e-07
1.69353e-06
-6.17153e-07
1.70967e-06
-5.9813e-07
1.72594e-06
-5.79615e-07
1.74234e-06
-5.61598e-07
1.75887e-06
-5.4407e-07
1.77553e-06
-5.2702e-07
1.79234e-06
-5.10433e-07
1.80928e-06
-4.94301e-07
1.82636e-06
-4.78612e-07
1.84359e-06
-4.63355e-07
1.86096e-06
-4.48521e-07
1.87848e-06
-4.34102e-07
1.89615e-06
-4.20088e-07
1.91397e-06
-4.06472e-07
1.93195e-06
-3.93247e-07
1.95008e-06
-3.80405e-07
1.96838e-06
-3.67936e-07
1.98685e-06
-3.55831e-07
2.00549e-06
-3.44077e-07
2.02431e-06
-3.32659e-07
2.04331e-06
-3.21558e-07
2.06251e-06
-3.10754e-07
2.0819e-06
-3.00223e-07
2.1015e-06
-2.8994e-07
2.12131e-06
-2.79875e-07
2.14134e-06
-2.69998e-07
2.1616e-06
-2.60275e-07
2.18208e-06
-2.50669e-07
2.2028e-06
-2.41145e-07
2.22376e-06
-2.31668e-07
2.24496e-06
-2.22204e-07
2.2664e-06
-2.12723e-07
2.28808e-06
-2.03199e-07
2.31e-06
-1.93608e-07
2.33218e-06
-1.83934e-07
2.35461e-06
-1.74165e-07
2.3773e-06
-1.643e-07
2.40025e-06
-1.54348e-07
2.42346e-06
-1.44314e-07
2.44692e-06
-1.34211e-07
2.47064e-06
-1.2406e-07
2.49462e-06
-1.13888e-07
2.51885e-06
-1.03725e-07
2.54335e-06
-9.36012e-08
2.56811e-06
-8.35514e-08
2.59314e-06
-7.36054e-08
2.61845e-06
-6.37933e-08
2.64404e-06
-5.41496e-08
2.66992e-06
-4.47063e-08
2.69612e-06
-3.54839e-08
2.72264e-06
-2.64947e-08
2.74949e-06
-1.77472e-08
2.77668e-06
-9.24949e-09
2.80423e-06
-1.00224e-09
2.83215e-06
7.00047e-09
2.86045e-06
1.47712e-08
2.88914e-06
2.23252e-08
2.91823e-06
2.96816e-08
2.94774e-06
3.68622e-08
2.97766e-06
4.38939e-08
3.00801e-06
5.08089e-08
3.0388e-06
5.76458e-08
3.07001e-06
6.44438e-08
3.10166e-06
7.12456e-08
3.13373e-06
7.80933e-08
3.16623e-06
8.50293e-08
3.19915e-06
9.20879e-08
3.23246e-06
9.9298e-08
3.26617e-06
1.06675e-07
3.30025e-06
1.14227e-07
3.33469e-06
1.21946e-07
3.36948e-06
1.29818e-07
3.40463e-06
1.37813e-07
3.44012e-06
1.45903e-07
3.47595e-06
1.54048e-07
3.51213e-06
1.62212e-07
3.54868e-06
1.70353e-07
3.5856e-06
1.78439e-07
3.62291e-06
1.86434e-07
3.66064e-06
1.94316e-07
3.69882e-06
2.02058e-07
3.73748e-06
2.09657e-07
3.77668e-06
2.17112e-07
3.81646e-06
2.24464e-07
3.85689e-06
2.31747e-07
3.89804e-06
2.39042e-07
3.93999e-06
2.46409e-07
3.98285e-06
2.54003e-07
4.02673e-06
2.61899e-07
4.07179e-06
2.70331e-07
4.11819e-06
2.79332e-07
4.16614e-06
2.89245e-07
4.21591e-06
2.99969e-07
4.26774e-06
3.11967e-07
4.32206e-06
3.24948e-07
4.37917e-06
3.39599e-07
4.43961e-06
3.55065e-07
4.50375e-06
3.72184e-07
4.57204e-06
3.89191e-07
4.08028e-07
4.64486e-06
-2.00277e-07
2.89032e-07
-1.42895e-07
9.17099e-08
-6.52078e-08
1.7427e-08
1.34953e-07
-6.88914e-08
4.08664e-07
-1.36999e-07
7.55447e-07
-2.21026e-07
1.14641e-06
-3.19803e-07
1.54109e-06
-4.29367e-07
1.90915e-06
-5.42046e-07
2.24291e-06
-6.59906e-07
2.54454e-06
-7.96029e-07
2.81104e-06
-9.74635e-07
3.02046e-06
-1.20446e-06
3.12222e-06
-1.48069e-06
3.05423e-06
-1.8183e-06
2.7566e-06
-1.95065e-06
2.28759e-06
-1.93446e-06
1.87151e-06
-2.57274e-06
1.59127e-06
-3.01093e-06
1.41881e-06
-3.01463e-06
1.30711e-06
-2.92371e-06
1.22951e-06
-2.83069e-06
1.17296e-06
-2.74588e-06
1.1306e-06
-2.66833e-06
1.09845e-06
-2.59649e-06
1.07397e-06
-2.52929e-06
1.05544e-06
-2.46597e-06
1.04161e-06
-2.40597e-06
1.03156e-06
-2.34884e-06
1.02459e-06
-2.29422e-06
1.02015e-06
-2.24181e-06
1.01782e-06
-2.19136e-06
1.01726e-06
-2.14265e-06
1.01817e-06
-2.0955e-06
1.02036e-06
-2.04976e-06
1.02362e-06
-2.0053e-06
1.02782e-06
-1.962e-06
1.03283e-06
-1.91977e-06
1.03854e-06
-1.87852e-06
1.04488e-06
-1.83816e-06
1.0518e-06
-1.79864e-06
1.05923e-06
-1.75987e-06
1.06714e-06
-1.72183e-06
1.07546e-06
-1.68445e-06
1.08416e-06
-1.64769e-06
1.0932e-06
-1.61151e-06
1.10254e-06
-1.57586e-06
1.11217e-06
-1.54071e-06
1.12205e-06
-1.50604e-06
1.13218e-06
-1.47182e-06
1.14253e-06
-1.43803e-06
1.15308e-06
-1.40465e-06
1.16383e-06
-1.37166e-06
1.17476e-06
-1.33907e-06
1.18586e-06
-1.30687e-06
1.19711e-06
-1.27506e-06
1.20852e-06
-1.24363e-06
1.22007e-06
-1.2126e-06
1.23176e-06
-1.18198e-06
1.24358e-06
-1.15176e-06
1.25553e-06
-1.12197e-06
1.26762e-06
-1.09261e-06
1.27984e-06
-1.06371e-06
1.29219e-06
-1.03527e-06
1.30467e-06
-1.0073e-06
1.31729e-06
-9.79825e-07
1.33005e-06
-9.52854e-07
1.34294e-06
-9.26401e-07
1.35598e-06
-9.00477e-07
1.36916e-06
-8.75091e-07
1.38249e-06
-8.5025e-07
1.39598e-06
-8.25956e-07
1.40963e-06
-8.02216e-07
1.42344e-06
-7.79031e-07
1.43741e-06
-7.56406e-07
1.45156e-06
-7.34338e-07
1.46587e-06
-7.12821e-07
1.48036e-06
-6.91853e-07
1.49503e-06
-6.71429e-07
1.50988e-06
-6.51541e-07
1.52491e-06
-6.32184e-07
1.54013e-06
-6.13346e-07
1.55553e-06
-5.95018e-07
1.57112e-06
-5.77192e-07
1.58691e-06
-5.59855e-07
1.60289e-06
-5.42997e-07
1.61906e-06
-5.26608e-07
1.63543e-06
-5.10674e-07
1.652e-06
-4.95183e-07
1.66877e-06
-4.80127e-07
1.68575e-06
-4.65494e-07
1.70293e-06
-4.51278e-07
1.72031e-06
-4.3747e-07
1.7379e-06
-4.24063e-07
1.75571e-06
-4.1105e-07
1.77373e-06
-3.98424e-07
1.79197e-06
-3.86175e-07
1.81043e-06
-3.74294e-07
1.82912e-06
-3.6277e-07
1.84805e-06
-3.51586e-07
1.86722e-06
-3.40726e-07
1.88663e-06
-3.30169e-07
1.9063e-06
-3.19891e-07
1.92622e-06
-3.09866e-07
1.94641e-06
-3.00065e-07
1.96687e-06
-2.90457e-07
1.9876e-06
-2.81007e-07
2.00861e-06
-2.71679e-07
2.0299e-06
-2.62437e-07
2.05148e-06
-2.53244e-07
2.07334e-06
-2.44067e-07
2.09549e-06
-2.34874e-07
2.11793e-06
-2.25636e-07
2.14066e-06
-2.16333e-07
2.16367e-06
-2.06948e-07
2.18698e-06
-1.97471e-07
2.21057e-06
-1.87897e-07
2.23446e-06
-1.78233e-07
2.25863e-06
-1.68489e-07
2.2831e-06
-1.58679e-07
2.30787e-06
-1.48824e-07
2.33293e-06
-1.38953e-07
2.3583e-06
-1.29096e-07
2.38398e-06
-1.19281e-07
2.40997e-06
-1.09543e-07
2.43628e-06
-9.99168e-08
2.46293e-06
-9.04392e-08
2.48992e-06
-8.1143e-08
2.51727e-06
-7.20572e-08
2.54499e-06
-6.31979e-08
2.57308e-06
-5.458e-08
2.60155e-06
-4.62181e-08
2.63042e-06
-3.81221e-08
2.65971e-06
-3.0289e-08
2.68942e-06
-2.27111e-08
2.71957e-06
-1.5375e-08
2.75016e-06
-8.26676e-09
2.78121e-06
-1.3666e-09
2.81273e-06
5.34657e-09
2.84472e-06
1.19024e-08
2.8772e-06
1.83357e-08
2.91016e-06
2.4687e-08
2.9436e-06
3.09964e-08
2.97754e-06
3.73098e-08
3.01196e-06
4.36726e-08
3.04686e-06
5.01304e-08
3.08223e-06
5.67209e-08
3.11805e-06
6.34752e-08
3.15431e-06
7.04109e-08
3.19101e-06
7.75347e-08
3.22811e-06
8.48379e-08
3.26563e-06
9.23022e-08
3.30355e-06
9.98961e-08
3.34187e-06
1.07585e-07
3.38059e-06
1.15327e-07
3.41972e-06
1.23079e-07
3.45928e-06
1.30796e-07
3.49928e-06
1.38442e-07
3.53974e-06
1.45979e-07
3.58068e-06
1.53376e-07
3.62214e-06
1.60602e-07
3.66415e-06
1.67644e-07
3.70677e-06
1.74496e-07
3.75005e-06
1.8119e-07
3.79404e-06
1.87753e-07
3.83883e-06
1.94255e-07
3.8845e-06
2.00742e-07
3.93115e-06
2.07355e-07
3.9789e-06
2.14152e-07
4.02789e-06
2.21343e-07
4.0783e-06
2.28926e-07
4.13032e-06
2.37226e-07
4.18422e-06
2.46071e-07
4.24025e-06
2.55936e-07
4.29882e-06
2.66381e-07
4.36025e-06
2.78174e-07
4.42507e-06
2.90247e-07
4.49368e-06
3.0357e-07
4.56643e-06
3.16448e-07
3.30133e-07
4.64433e-06
4.7167e-07
-1.82486e-07
8.15265e-07
-2.51805e-07
1.17926e-06
-3.46592e-07
1.52094e-06
-4.1066e-07
1.84965e-06
-4.65791e-07
2.15689e-06
-5.28314e-07
2.43213e-06
-5.94924e-07
2.66598e-06
-6.633e-07
2.85738e-06
-7.33329e-07
3.00929e-06
-8.11739e-07
3.12343e-06
-9.09966e-07
3.19552e-06
-1.04635e-06
3.20536e-06
-1.21376e-06
3.12575e-06
-1.40049e-06
2.93933e-06
-1.63132e-06
2.60739e-06
-1.61827e-06
2.17486e-06
-1.50163e-06
1.81004e-06
-2.2078e-06
1.56727e-06
-2.76814e-06
1.41509e-06
-2.86245e-06
1.31333e-06
-2.82196e-06
1.24032e-06
-2.7577e-06
1.18548e-06
-2.69106e-06
1.14318e-06
-2.62605e-06
1.11007e-06
-2.56341e-06
1.08399e-06
-2.50323e-06
1.06341e-06
-2.44542e-06
1.04725e-06
-2.38982e-06
1.03467e-06
-2.33627e-06
1.02503e-06
-2.28459e-06
1.01785e-06
-2.23463e-06
1.01271e-06
-2.18623e-06
1.00931e-06
-2.13925e-06
1.00738e-06
-2.09358e-06
1.00673e-06
-2.04911e-06
1.00717e-06
-2.00575e-06
1.00857e-06
-1.9634e-06
1.01081e-06
-1.92201e-06
1.0138e-06
-1.8815e-06
1.01746e-06
-1.84182e-06
1.02172e-06
-1.8029e-06
1.02655e-06
-1.7647e-06
1.03189e-06
-1.72717e-06
1.03771e-06
-1.69026e-06
1.04394e-06
-1.65393e-06
1.05056e-06
-1.61813e-06
1.05755e-06
-1.58284e-06
1.06486e-06
-1.54803e-06
1.07249e-06
-1.51367e-06
1.08041e-06
-1.47974e-06
1.08861e-06
-1.44622e-06
1.09706e-06
-1.4131e-06
1.10576e-06
-1.38036e-06
1.11469e-06
-1.34801e-06
1.12385e-06
-1.31603e-06
1.13321e-06
-1.28442e-06
1.14278e-06
-1.2532e-06
1.15255e-06
-1.22237e-06
1.16251e-06
-1.19194e-06
1.17265e-06
-1.16191e-06
1.18298e-06
-1.1323e-06
1.1935e-06
-1.10313e-06
1.2042e-06
-1.07441e-06
1.21508e-06
-1.04615e-06
1.22615e-06
-1.01837e-06
1.23741e-06
-9.91082e-07
1.24885e-06
-9.64302e-07
1.2605e-06
-9.38042e-07
1.27233e-06
-9.12314e-07
1.28437e-06
-8.87128e-07
1.29661e-06
-8.62491e-07
1.30906e-06
-8.38408e-07
1.32173e-06
-8.14881e-07
1.33461e-06
-7.91915e-07
1.34771e-06
-7.6951e-07
1.36104e-06
-7.47665e-07
1.3746e-06
-7.26378e-07
1.38838e-06
-7.05642e-07
1.40241e-06
-6.85452e-07
1.41667e-06
-6.65802e-07
1.43117e-06
-6.46685e-07
1.44591e-06
-6.2809e-07
1.4609e-06
-6.10009e-07
1.47614e-06
-5.9243e-07
1.49163e-06
-5.75344e-07
1.50737e-06
-5.5874e-07
1.52336e-06
-5.42604e-07
1.53962e-06
-5.26925e-07
1.55613e-06
-5.11693e-07
1.5729e-06
-4.96895e-07
1.58993e-06
-4.82524e-07
1.60722e-06
-4.6857e-07
1.62478e-06
-4.55027e-07
1.64261e-06
-4.41888e-07
1.66071e-06
-4.29146e-07
1.67908e-06
-4.16795e-07
1.69773e-06
-4.04825e-07
1.71666e-06
-3.93229e-07
1.73589e-06
-3.81993e-07
1.7554e-06
-3.71104e-07
1.77522e-06
-3.60543e-07
1.79534e-06
-3.50291e-07
1.81577e-06
-3.40323e-07
1.83651e-06
-3.30613e-07
1.85758e-06
-3.21133e-07
1.87897e-06
-3.11849e-07
1.90069e-06
-3.02726e-07
1.92274e-06
-2.93729e-07
1.94512e-06
-2.84818e-07
1.96784e-06
-2.75959e-07
1.99088e-06
-2.67114e-07
2.01426e-06
-2.58253e-07
2.03798e-06
-2.49348e-07
2.06202e-06
-2.40376e-07
2.0864e-06
-2.31321e-07
2.1111e-06
-2.22174e-07
2.13613e-06
-2.12931e-07
2.1615e-06
-2.03597e-07
2.18719e-06
-1.94183e-07
2.21322e-06
-1.84705e-07
2.23958e-06
-1.75185e-07
2.26628e-06
-1.6565e-07
2.29332e-06
-1.56134e-07
2.3207e-06
-1.4667e-07
2.34845e-06
-1.37293e-07
2.37658e-06
-1.2804e-07
2.40509e-06
-1.18956e-07
2.43402e-06
-1.10069e-07
2.46336e-06
-1.01402e-07
2.49314e-06
-9.29759e-08
2.52337e-06
-8.48083e-08
2.55406e-06
-7.69102e-08
2.58522e-06
-6.92861e-08
2.61687e-06
-6.19318e-08
2.649e-06
-5.48407e-08
2.68162e-06
-4.80019e-08
2.71476e-06
-4.14014e-08
2.74841e-06
-3.50195e-08
2.78259e-06
-2.88333e-08
2.8173e-06
-2.28097e-08
2.85255e-06
-1.69131e-08
2.88835e-06
-1.11048e-08
2.92468e-06
-5.34265e-09
2.96157e-06
4.24188e-10
2.999e-06
6.2461e-09
3.03695e-06
1.21716e-08
3.07543e-06
1.82417e-08
3.11442e-06
2.449e-08
3.15389e-06
3.09356e-08
3.19384e-06
3.7585e-08
3.23425e-06
4.44265e-08
3.27512e-06
5.14382e-08
3.31643e-06
5.85841e-08
3.35819e-06
6.58255e-08
3.40041e-06
7.31143e-08
3.44308e-06
8.04041e-08
3.48623e-06
8.76475e-08
3.52987e-06
9.48059e-08
3.57402e-06
1.01835e-07
3.6187e-06
1.08697e-07
3.66395e-06
1.15354e-07
3.7098e-06
1.21788e-07
3.75631e-06
1.27986e-07
3.80353e-06
1.33973e-07
3.85152e-06
1.39767e-07
3.90035e-06
1.45427e-07
3.9501e-06
1.5099e-07
4.00088e-06
1.56582e-07
4.05279e-06
1.62242e-07
4.10597e-06
1.68159e-07
4.16061e-06
1.74297e-07
4.21688e-06
1.80952e-07
4.27507e-06
1.87882e-07
4.33545e-06
1.95565e-07
4.39843e-06
2.03403e-07
4.46437e-06
2.12239e-07
4.53387e-06
2.20741e-07
4.60741e-06
2.30043e-07
4.6855e-06
2.38354e-07
2.46177e-07
4.76946e-06
2.95779e-06
-2.18985e-07
3.00225e-06
-2.96168e-07
3.02627e-06
-3.70574e-07
3.05075e-06
-4.35121e-07
3.07936e-06
-4.94387e-07
3.10763e-06
-5.56519e-07
3.13248e-06
-6.1973e-07
3.15157e-06
-6.82149e-07
3.16427e-06
-7.45962e-07
3.16924e-06
-8.16618e-07
3.16356e-06
-9.04073e-07
3.13762e-06
-1.02008e-06
3.06824e-06
-1.14394e-06
2.9409e-06
-1.27266e-06
2.75438e-06
-1.44433e-06
2.47501e-06
-1.33843e-06
2.11879e-06
-1.14509e-06
1.80487e-06
-1.89375e-06
1.59383e-06
-2.55705e-06
1.45985e-06
-2.72848e-06
1.36794e-06
-2.73006e-06
1.30028e-06
-2.69006e-06
1.24836e-06
-2.63916e-06
1.20759e-06
-2.58532e-06
1.17522e-06
-2.53106e-06
1.14939e-06
-2.47742e-06
1.12878e-06
-2.42481e-06
1.11239e-06
-2.37344e-06
1.09948e-06
-2.32336e-06
1.08945e-06
-2.27457e-06
1.08184e-06
-2.22702e-06
1.07628e-06
-2.18066e-06
1.07245e-06
-2.13543e-06
1.07013e-06
-2.09126e-06
1.06911e-06
-2.04809e-06
1.06923e-06
-2.00586e-06
1.07034e-06
-1.96452e-06
1.07235e-06
-1.92402e-06
1.07516e-06
-1.88431e-06
1.07868e-06
-1.84534e-06
1.08288e-06
-1.8071e-06
1.0877e-06
-1.76952e-06
1.09309e-06
-1.73256e-06
1.099e-06
-1.69618e-06
1.10541e-06
-1.66034e-06
1.11227e-06
-1.625e-06
1.11957e-06
-1.59014e-06
1.12727e-06
-1.55573e-06
1.13535e-06
-1.52175e-06
1.1438e-06
-1.48819e-06
1.15259e-06
-1.45502e-06
1.16172e-06
-1.42223e-06
1.17118e-06
-1.38982e-06
1.18094e-06
-1.35777e-06
1.19101e-06
-1.32609e-06
1.20137e-06
-1.29478e-06
1.21202e-06
-1.26385e-06
1.22294e-06
-1.2333e-06
1.23415e-06
-1.20314e-06
1.24563e-06
-1.17338e-06
1.25738e-06
-1.14405e-06
1.2694e-06
-1.11515e-06
1.2817e-06
-1.0867e-06
1.29427e-06
-1.05872e-06
1.30713e-06
-1.03123e-06
1.32027e-06
-1.00423e-06
1.33371e-06
-9.77735e-07
1.34744e-06
-9.5177e-07
1.36146e-06
-9.26343e-07
1.3758e-06
-9.01463e-07
1.39045e-06
-8.77139e-07
1.40541e-06
-8.53375e-07
1.42071e-06
-8.30176e-07
1.43634e-06
-8.07543e-07
1.4523e-06
-7.85477e-07
1.46861e-06
-7.63977e-07
1.48528e-06
-7.43039e-07
1.50229e-06
-7.22659e-07
1.51967e-06
-7.0283e-07
1.53742e-06
-6.83547e-07
1.55553e-06
-6.64801e-07
1.57402e-06
-6.46582e-07
1.59289e-06
-6.28881e-07
1.61215e-06
-6.11687e-07
1.6318e-06
-5.9499e-07
1.65183e-06
-5.78776e-07
1.67226e-06
-5.63038e-07
1.6931e-06
-5.47759e-07
1.71433e-06
-5.32929e-07
1.73597e-06
-5.18536e-07
1.75802e-06
-5.04571e-07
1.78048e-06
-4.91029e-07
1.80336e-06
-4.779e-07
1.82665e-06
-4.65181e-07
1.85037e-06
-4.52863e-07
1.87452e-06
-4.40942e-07
1.8991e-06
-4.29409e-07
1.92413e-06
-4.18256e-07
1.94961e-06
-4.07471e-07
1.97554e-06
-3.9704e-07
2.00194e-06
-3.86946e-07
2.02882e-06
-3.77168e-07
2.05618e-06
-3.67683e-07
2.08403e-06
-3.58464e-07
2.11237e-06
-3.49481e-07
2.14123e-06
-3.40701e-07
2.17059e-06
-3.32087e-07
2.20046e-06
-3.23603e-07
2.23085e-06
-3.15209e-07
2.26176e-06
-3.06867e-07
2.29319e-06
-2.98542e-07
2.32513e-06
-2.90201e-07
2.3576e-06
-2.81815e-07
2.39059e-06
-2.73363e-07
2.4241e-06
-2.64826e-07
2.45812e-06
-2.56197e-07
2.49266e-06
-2.47473e-07
2.52772e-06
-2.38657e-07
2.5633e-06
-2.29762e-07
2.5994e-06
-2.20806e-07
2.63603e-06
-2.11812e-07
2.67319e-06
-2.0281e-07
2.71089e-06
-1.93833e-07
2.74913e-06
-1.84919e-07
2.78795e-06
-1.76105e-07
2.82733e-06
-1.67427e-07
2.8673e-06
-1.58924e-07
2.90786e-06
-1.50632e-07
2.94904e-06
-1.42579e-07
2.99085e-06
-1.3479e-07
3.03333e-06
-1.27283e-07
3.07648e-06
-1.20065e-07
3.12034e-06
-1.13138e-07
3.1649e-06
-1.06497e-07
3.2102e-06
-1.00137e-07
3.25625e-06
-9.40462e-08
3.30306e-06
-8.82099e-08
3.35065e-06
-8.26079e-08
3.39903e-06
-7.72152e-08
3.44822e-06
-7.20002e-08
3.49823e-06
-6.69268e-08
3.54908e-06
-6.19526e-08
3.60077e-06
-5.70296e-08
3.6533e-06
-5.21034e-08
3.70666e-06
-4.71196e-08
3.76086e-06
-4.20235e-08
3.81587e-06
-3.67685e-08
3.87167e-06
-3.13164e-08
3.92825e-06
-2.56466e-08
3.98559e-06
-1.97529e-08
4.04367e-06
-1.36508e-08
4.10247e-06
-7.36716e-09
4.162e-06
-9.43815e-10
4.22226e-06
5.57309e-09
4.28324e-06
1.21305e-08
4.34497e-06
1.86795e-08
4.40745e-06
2.5171e-08
4.4707e-06
3.15557e-08
4.53476e-06
3.77796e-08
4.59966e-06
4.37969e-08
4.66545e-06
4.95661e-08
4.73218e-06
5.50619e-08
4.7999e-06
6.02653e-08
4.86869e-06
6.51884e-08
4.93861e-06
6.98418e-08
5.00977e-06
7.42719e-08
5.08226e-06
7.85057e-08
5.15619e-06
8.26515e-08
5.2317e-06
8.67306e-08
5.30896e-06
9.09053e-08
5.38817e-06
9.50949e-08
5.46956e-06
9.9561e-08
5.55347e-06
1.03976e-07
5.64022e-06
1.08812e-07
5.73036e-06
1.13263e-07
5.82435e-06
1.1826e-07
5.92304e-06
1.22048e-07
6.02687e-06
1.26213e-07
6.13726e-06
1.27966e-07
1.29197e-07
6.25425e-06
3.48745e-06
-2.34728e-07
3.50196e-06
-3.10592e-07
3.50784e-06
-3.76395e-07
3.51123e-06
-4.38473e-07
3.51523e-06
-4.98336e-07
3.51733e-06
-5.58552e-07
3.51599e-06
-6.18228e-07
3.51038e-06
-6.76506e-07
3.49986e-06
-7.35313e-07
3.48204e-06
-7.9866e-07
3.45138e-06
-8.73216e-07
3.39722e-06
-9.6561e-07
3.30253e-06
-1.04886e-06
3.16086e-06
-1.13058e-06
2.97607e-06
-1.25916e-06
2.72269e-06
-1.08473e-06
2.39893e-06
-8.2112e-07
2.08996e-06
-1.58469e-06
1.87379e-06
-2.34086e-06
1.73263e-06
-2.58732e-06
1.63229e-06
-2.62974e-06
1.55589e-06
-2.61368e-06
1.49555e-06
-2.57885e-06
1.447e-06
-2.53678e-06
1.40755e-06
-2.49164e-06
1.37534e-06
-2.44522e-06
1.34897e-06
-2.39846e-06
1.3274e-06
-2.35188e-06
1.30979e-06
-2.30576e-06
1.29548e-06
-2.26026e-06
1.28394e-06
-2.21549e-06
1.27476e-06
-2.17148e-06
1.26759e-06
-2.12826e-06
1.26215e-06
-2.08582e-06
1.2582e-06
-2.04415e-06
1.25557e-06
-2.00323e-06
1.25408e-06
-1.96303e-06
1.25361e-06
-1.92356e-06
1.25406e-06
-1.88476e-06
1.25535e-06
-1.84663e-06
1.25739e-06
-1.80914e-06
1.26014e-06
-1.77226e-06
1.26353e-06
-1.73595e-06
1.26751e-06
-1.70016e-06
1.27205e-06
-1.66487e-06
1.27711e-06
-1.63005e-06
1.28265e-06
-1.59568e-06
1.28864e-06
-1.56172e-06
1.29507e-06
-1.52818e-06
1.3019e-06
-1.49502e-06
1.30913e-06
-1.46224e-06
1.31672e-06
-1.42983e-06
1.32468e-06
-1.39778e-06
1.33299e-06
-1.36608e-06
1.34162e-06
-1.33473e-06
1.35059e-06
-1.30375e-06
1.35987e-06
-1.27313e-06
1.36946e-06
-1.24289e-06
1.37936e-06
-1.21304e-06
1.38956e-06
-1.18359e-06
1.40007e-06
-1.15456e-06
1.41088e-06
-1.12596e-06
1.422e-06
-1.09782e-06
1.43343e-06
-1.07015e-06
1.44517e-06
-1.04297e-06
1.45724e-06
-1.01629e-06
1.46963e-06
-9.90126e-07
1.48235e-06
-9.64493e-07
1.49541e-06
-9.39405e-07
1.50882e-06
-9.14872e-07
1.52259e-06
-8.90903e-07
1.53671e-06
-8.67502e-07
1.55121e-06
-8.44673e-07
1.56608e-06
-8.22418e-07
1.58134e-06
-8.00737e-07
1.59699e-06
-7.79628e-07
1.61304e-06
-7.59088e-07
1.6295e-06
-7.39113e-07
1.64636e-06
-7.19694e-07
1.66364e-06
-7.00827e-07
1.68134e-06
-6.82501e-07
1.69947e-06
-6.64709e-07
1.71802e-06
-6.47438e-07
1.73701e-06
-6.30679e-07
1.75644e-06
-6.1442e-07
1.77631e-06
-5.9865e-07
1.79663e-06
-5.83355e-07
1.81739e-06
-5.68523e-07
1.83861e-06
-5.54143e-07
1.86028e-06
-5.40202e-07
1.8824e-06
-5.26692e-07
1.90498e-06
-5.13606e-07
1.92802e-06
-5.00938e-07
1.95152e-06
-4.88683e-07
1.9755e-06
-4.76835e-07
1.99994e-06
-4.65389e-07
2.02487e-06
-4.54337e-07
2.05028e-06
-4.43672e-07
2.07619e-06
-4.33383e-07
2.10261e-06
-4.23456e-07
2.12954e-06
-4.13875e-07
2.15699e-06
-4.0462e-07
2.18497e-06
-3.95666e-07
2.21349e-06
-3.86987e-07
2.24256e-06
-3.78552e-07
2.27218e-06
-3.70325e-07
2.30236e-06
-3.6227e-07
2.33311e-06
-3.54348e-07
2.36442e-06
-3.4652e-07
2.3963e-06
-3.38744e-07
2.42874e-06
-3.30986e-07
2.46175e-06
-3.2321e-07
2.49533e-06
-3.15388e-07
2.52946e-06
-3.07497e-07
2.56416e-06
-2.9952e-07
2.59941e-06
-2.91447e-07
2.63521e-06
-2.83275e-07
2.67157e-06
-2.7501e-07
2.70847e-06
-2.66664e-07
2.74592e-06
-2.58257e-07
2.78392e-06
-2.49815e-07
2.82248e-06
-2.4137e-07
2.86161e-06
-2.32957e-07
2.9013e-06
-2.24618e-07
2.94159e-06
-2.16392e-07
2.98248e-06
-2.0832e-07
3.024e-06
-2.00439e-07
3.06615e-06
-1.92785e-07
3.10896e-06
-1.85391e-07
3.15245e-06
-1.78279e-07
3.19663e-06
-1.71467e-07
3.24153e-06
-1.64968e-07
3.28718e-06
-1.58785e-07
3.3336e-06
-1.52913e-07
3.3808e-06
-1.47345e-07
3.42883e-06
-1.4207e-07
3.47769e-06
-1.37069e-07
3.5274e-06
-1.32324e-07
3.578e-06
-1.27806e-07
3.62948e-06
-1.23486e-07
3.68188e-06
-1.19328e-07
3.73521e-06
-1.15284e-07
3.78949e-06
-1.11301e-07
3.8447e-06
-1.07319e-07
3.90086e-06
-1.03276e-07
3.95795e-06
-9.91118e-08
4.01595e-06
-9.47716e-08
4.07484e-06
-9.02123e-08
4.13461e-06
-8.54101e-08
4.19521e-06
-8.03599e-08
4.25664e-06
-7.50803e-08
4.31888e-06
-6.96042e-08
4.38191e-06
-6.39801e-08
4.44575e-06
-5.82624e-08
4.51039e-06
-5.25114e-08
4.57586e-06
-4.6784e-08
4.64217e-06
-4.11381e-08
4.70936e-06
-3.56289e-08
4.77745e-06
-3.03137e-08
4.84649e-06
-2.52437e-08
4.91653e-06
-2.04681e-08
4.98762e-06
-1.60229e-08
5.05982e-06
-1.19384e-08
5.13323e-06
-8.21439e-09
5.20792e-06
-4.85033e-09
5.284e-06
-1.80857e-09
5.36158e-06
9.28493e-10
5.44078e-06
3.45695e-09
5.52173e-06
5.78403e-09
5.60458e-06
8.0582e-09
5.68951e-06
1.01618e-08
5.77673e-06
1.23448e-08
5.86651e-06
1.4201e-08
5.9591e-06
1.62201e-08
6.05499e-06
1.73828e-08
6.15448e-06
1.87736e-08
6.25835e-06
1.81805e-08
6.36672e-06
1.78465e-08
6.48111e-06
1.3581e-08
9.76774e-09
6.60054e-06
3.8326e-06
-2.62674e-07
3.85016e-06
-3.28087e-07
3.86118e-06
-3.87362e-07
3.86641e-06
-4.43645e-07
3.86702e-06
-4.9888e-07
3.86214e-06
-5.5357e-07
3.8511e-06
-6.07111e-07
3.83382e-06
-6.59026e-07
3.80922e-06
-7.10601e-07
3.77363e-06
-7.62935e-07
3.72215e-06
-8.21547e-07
3.64756e-06
-8.90732e-07
3.53722e-06
-9.38204e-07
3.38809e-06
-9.81104e-07
3.20756e-06
-1.07832e-06
2.9807e-06
-8.57571e-07
2.69726e-06
-5.37475e-07
2.40246e-06
-1.2898e-06
2.18202e-06
-2.12039e-06
2.03257e-06
-2.43787e-06
1.92304e-06
-2.52021e-06
1.83734e-06
-2.52799e-06
1.76805e-06
-2.50957e-06
1.71117e-06
-2.47993e-06
1.66411e-06
-2.4446e-06
1.62501e-06
-2.40614e-06
1.59244e-06
-2.3659e-06
1.56527e-06
-2.32471e-06
1.54259e-06
-2.28308e-06
1.52368e-06
-2.24136e-06
1.50796e-06
-2.19976e-06
1.49493e-06
-2.15845e-06
1.4842e-06
-2.11754e-06
1.47547e-06
-2.07708e-06
1.46845e-06
-2.03713e-06
1.46294e-06
-1.99771e-06
1.45875e-06
-1.95884e-06
1.45573e-06
-1.92053e-06
1.45377e-06
-1.88279e-06
1.45275e-06
-1.84561e-06
1.4526e-06
-1.80899e-06
1.45325e-06
-1.77291e-06
1.45462e-06
-1.73732e-06
1.45666e-06
-1.7022e-06
1.45932e-06
-1.66754e-06
1.46256e-06
-1.63329e-06
1.46634e-06
-1.59946e-06
1.47063e-06
-1.56601e-06
1.4754e-06
-1.53295e-06
1.48062e-06
-1.50024e-06
1.48626e-06
-1.46789e-06
1.49232e-06
-1.43589e-06
1.49876e-06
-1.40422e-06
1.50558e-06
-1.37289e-06
1.51276e-06
-1.34191e-06
1.52028e-06
-1.31127e-06
1.52815e-06
-1.28099e-06
1.53634e-06
-1.25108e-06
1.54486e-06
-1.22156e-06
1.55371e-06
-1.19243e-06
1.56287e-06
-1.16372e-06
1.57236e-06
-1.13545e-06
1.58217e-06
-1.10763e-06
1.5923e-06
-1.08029e-06
1.60278e-06
-1.05344e-06
1.61359e-06
-1.02711e-06
1.62476e-06
-1.00129e-06
1.63628e-06
-9.76013e-07
1.64816e-06
-9.51288e-07
1.66042e-06
-9.27127e-07
1.67305e-06
-9.03538e-07
1.68607e-06
-8.80527e-07
1.6995e-06
-8.58096e-07
1.71333e-06
-8.36248e-07
1.72757e-06
-8.14981e-07
1.74224e-06
-7.94294e-07
1.75733e-06
-7.74183e-07
1.77286e-06
-7.54642e-07
1.78883e-06
-7.35665e-07
1.80525e-06
-7.17245e-07
1.82212e-06
-6.99372e-07
1.83944e-06
-6.82037e-07
1.85723e-06
-6.65228e-07
1.87549e-06
-6.48934e-07
1.89421e-06
-6.33144e-07
1.9134e-06
-6.17843e-07
1.93307e-06
-6.03023e-07
1.95321e-06
-5.88667e-07
1.97383e-06
-5.74763e-07
1.99493e-06
-5.613e-07
2.01651e-06
-5.48269e-07
2.03857e-06
-5.35663e-07
2.06111e-06
-5.23479e-07
2.08413e-06
-5.11709e-07
2.10765e-06
-5.00351e-07
2.13166e-06
-4.894e-07
2.15617e-06
-4.7885e-07
2.18119e-06
-4.68693e-07
2.20673e-06
-4.5892e-07
2.23279e-06
-4.49519e-07
2.25938e-06
-4.40473e-07
2.28652e-06
-4.31762e-07
2.31422e-06
-4.23362e-07
2.34247e-06
-4.15246e-07
2.3713e-06
-4.07381e-07
2.40071e-06
-3.99731e-07
2.43069e-06
-3.92258e-07
2.46127e-06
-3.84922e-07
2.49243e-06
-3.77679e-07
2.52417e-06
-3.70491e-07
2.5565e-06
-3.63316e-07
2.58942e-06
-3.56122e-07
2.6229e-06
-3.48877e-07
2.65697e-06
-3.41557e-07
2.69159e-06
-3.34145e-07
2.72678e-06
-3.26631e-07
2.76251e-06
-3.19013e-07
2.7988e-06
-3.11295e-07
2.83563e-06
-3.03493e-07
2.873e-06
-2.95625e-07
2.9109e-06
-2.87723e-07
2.94935e-06
-2.79819e-07
2.98835e-06
-2.71954e-07
3.0279e-06
-2.64171e-07
3.06802e-06
-2.56515e-07
3.10873e-06
-2.49029e-07
3.15004e-06
-2.41755e-07
3.19199e-06
-2.34731e-07
3.23459e-06
-2.2799e-07
3.27786e-06
-2.21556e-07
3.32184e-06
-2.15447e-07
3.36655e-06
-2.09673e-07
3.412e-06
-2.0424e-07
3.45823e-06
-1.99142e-07
3.50526e-06
-1.94373e-07
3.55311e-06
-1.8992e-07
3.60181e-06
-1.85766e-07
3.65138e-06
-1.81889e-07
3.70183e-06
-1.78263e-07
3.7532e-06
-1.74853e-07
3.8055e-06
-1.71622e-07
3.85874e-06
-1.68523e-07
3.91293e-06
-1.65499e-07
3.9681e-06
-1.62485e-07
4.02424e-06
-1.59412e-07
4.08133e-06
-1.56208e-07
4.13937e-06
-1.52809e-07
4.19832e-06
-1.49165e-07
4.25816e-06
-1.45248e-07
4.31884e-06
-1.4105e-07
4.38036e-06
-1.36595e-07
4.44268e-06
-1.31923e-07
4.50579e-06
-1.27092e-07
4.56969e-06
-1.22165e-07
4.63439e-06
-1.17213e-07
4.69991e-06
-1.12298e-07
4.76627e-06
-1.0749e-07
4.83349e-06
-1.02849e-07
4.90161e-06
-9.84364e-08
4.97068e-06
-9.43094e-08
5.04074e-06
-9.05279e-08
5.11187e-06
-8.7142e-08
5.18412e-06
-8.4194e-08
5.25761e-06
-8.16964e-08
5.33242e-06
-7.96596e-08
5.40867e-06
-7.80539e-08
5.48647e-06
-7.68682e-08
5.56594e-06
-7.60154e-08
5.64723e-06
-7.54968e-08
5.73046e-06
-7.51715e-08
5.8158e-06
-7.51813e-08
5.90344e-06
-7.52853e-08
5.99361e-06
-7.59661e-08
6.08653e-06
-7.6703e-08
6.18262e-06
-7.87031e-08
6.28209e-06
-8.06944e-08
6.3856e-06
-8.53246e-08
6.49318e-06
-8.97352e-08
6.60597e-06
-9.91985e-08
-1.0799e-07
6.72372e-06
4.13223e-06
-2.84153e-07
4.14359e-06
-3.39388e-07
4.14861e-06
-3.9232e-07
4.14892e-06
-4.43882e-07
4.14497e-06
-4.94853e-07
4.13584e-06
-5.44334e-07
4.12009e-06
-5.91196e-07
4.09678e-06
-6.35625e-07
4.06444e-06
-6.78115e-07
4.01959e-06
-7.17949e-07
3.95859e-06
-7.60342e-07
3.87528e-06
-8.07165e-07
3.75962e-06
-8.22236e-07
3.61293e-06
-8.34109e-07
3.44521e-06
-9.10318e-07
3.24864e-06
-6.60769e-07
3.00954e-06
-2.98212e-07
2.73715e-06
-1.01733e-06
2.51535e-06
-1.89857e-06
2.35787e-06
-2.28038e-06
2.23931e-06
-2.40166e-06
2.14452e-06
-2.43322e-06
2.06643e-06
-2.43151e-06
2.00125e-06
-2.41475e-06
1.94649e-06
-2.38986e-06
1.90032e-06
-2.35999e-06
1.86131e-06
-2.3269e-06
1.82826e-06
-2.29168e-06
1.80023e-06
-2.25506e-06
1.77643e-06
-2.21756e-06
1.75621e-06
-2.17954e-06
1.73904e-06
-2.14128e-06
1.72448e-06
-2.10298e-06
1.71218e-06
-2.06478e-06
1.70183e-06
-2.02678e-06
1.69319e-06
-1.98907e-06
1.68605e-06
-1.9517e-06
1.68023e-06
-1.91473e-06
1.67562e-06
-1.87817e-06
1.67209e-06
-1.84208e-06
1.66954e-06
-1.80644e-06
1.66787e-06
-1.77124e-06
1.66702e-06
-1.73647e-06
1.66693e-06
-1.70211e-06
1.66754e-06
-1.66814e-06
1.66879e-06
-1.63454e-06
1.67064e-06
-1.60131e-06
1.67307e-06
-1.56844e-06
1.67602e-06
-1.5359e-06
1.67946e-06
-1.50369e-06
1.68338e-06
-1.47181e-06
1.68774e-06
-1.44025e-06
1.69253e-06
-1.40901e-06
1.69772e-06
-1.37808e-06
1.70329e-06
-1.34749e-06
1.70924e-06
-1.31722e-06
1.71555e-06
-1.2873e-06
1.72221e-06
-1.25774e-06
1.72921e-06
-1.22856e-06
1.73656e-06
-1.19977e-06
1.74424e-06
-1.1714e-06
1.75226e-06
-1.14347e-06
1.76062e-06
-1.11599e-06
1.76933e-06
-1.089e-06
1.77839e-06
-1.0625e-06
1.78781e-06
-1.03653e-06
1.7976e-06
-1.01108e-06
1.80777e-06
-9.8618e-07
1.81832e-06
-9.6184e-07
1.82927e-06
-9.38074e-07
1.84062e-06
-9.1489e-07
1.85238e-06
-8.92294e-07
1.86457e-06
-8.70287e-07
1.8772e-06
-8.48871e-07
1.89026e-06
-8.28046e-07
1.90377e-06
-8.07807e-07
1.91774e-06
-7.88152e-07
1.93217e-06
-7.69075e-07
1.94708e-06
-7.50567e-07
1.96245e-06
-7.32622e-07
1.97831e-06
-7.15229e-07
1.99465e-06
-6.98377e-07
2.01148e-06
-6.82057e-07
2.0288e-06
-6.66254e-07
2.04661e-06
-6.50956e-07
2.06492e-06
-6.36153e-07
2.08372e-06
-6.21826e-07
2.10302e-06
-6.07966e-07
2.12281e-06
-5.94558e-07
2.14311e-06
-5.81591e-07
2.1639e-06
-5.69056e-07
2.18518e-06
-5.56947e-07
2.20697e-06
-5.4526e-07
2.22925e-06
-5.3399e-07
2.25203e-06
-5.23134e-07
2.27532e-06
-5.12689e-07
2.29912e-06
-5.02651e-07
2.32344e-06
-4.93014e-07
2.34829e-06
-4.8377e-07
2.37367e-06
-4.74906e-07
2.3996e-06
-4.66407e-07
2.42609e-06
-4.58254e-07
2.45315e-06
-4.50423e-07
2.48079e-06
-4.42884e-07
2.50901e-06
-4.35604e-07
2.53782e-06
-4.28547e-07
2.56723e-06
-4.2167e-07
2.59724e-06
-4.14931e-07
2.62785e-06
-4.08287e-07
2.65905e-06
-4.01693e-07
2.69085e-06
-3.9511e-07
2.72323e-06
-3.885e-07
2.75619e-06
-3.81832e-07
2.78971e-06
-3.7508e-07
2.82379e-06
-3.68227e-07
2.85842e-06
-3.61261e-07
2.89359e-06
-3.5418e-07
2.92929e-06
-3.46991e-07
2.9655e-06
-3.39708e-07
3.00223e-06
-3.32354e-07
3.03947e-06
-3.24962e-07
3.07722e-06
-3.17568e-07
3.11548e-06
-3.10217e-07
3.15427e-06
-3.02957e-07
3.19359e-06
-2.95836e-07
3.23346e-06
-2.88901e-07
3.2739e-06
-2.822e-07
3.31494e-06
-2.75772e-07
3.3566e-06
-2.69655e-07
3.39892e-06
-2.63874e-07
3.44192e-06
-2.58447e-07
3.48563e-06
-2.53383e-07
3.53007e-06
-2.48686e-07
3.57528e-06
-2.44351e-07
3.62128e-06
-2.40369e-07
3.66808e-06
-2.36727e-07
3.71573e-06
-2.33408e-07
3.76423e-06
-2.3039e-07
3.81361e-06
-2.27648e-07
3.86391e-06
-2.25146e-07
3.91513e-06
-2.22845e-07
3.9673e-06
-2.20693e-07
4.02043e-06
-2.1863e-07
4.07453e-06
-2.16586e-07
4.1296e-06
-2.1448e-07
4.18562e-06
-2.1223e-07
4.24257e-06
-2.09761e-07
4.30042e-06
-2.07014e-07
4.35912e-06
-2.03952e-07
4.41864e-06
-2.00569e-07
4.47894e-06
-1.96894e-07
4.53999e-06
-1.92975e-07
4.60178e-06
-1.88883e-07
4.66431e-06
-1.84694e-07
4.72759e-06
-1.80485e-07
4.79162e-06
-1.76324e-07
4.85641e-06
-1.72283e-07
4.922e-06
-1.68432e-07
4.98841e-06
-1.64844e-07
5.05569e-06
-1.61589e-07
5.1239e-06
-1.5874e-07
5.19312e-06
-1.56359e-07
5.26343e-06
-1.54501e-07
5.33493e-06
-1.53192e-07
5.40772e-06
-1.52451e-07
5.48193e-06
-1.52258e-07
5.55767e-06
-1.52605e-07
5.63506e-06
-1.53411e-07
5.71425e-06
-1.5468e-07
5.79535e-06
-1.56275e-07
5.87853e-06
-1.58352e-07
5.96393e-06
-1.60682e-07
6.05178e-06
-1.63812e-07
6.14227e-06
-1.67194e-07
6.23578e-06
-1.72209e-07
6.33248e-06
-1.7739e-07
6.433e-06
-1.85836e-07
6.53729e-06
-1.94025e-07
6.64638e-06
-2.08287e-07
-2.21645e-07
6.76004e-06
4.4216e-06
-3.05498e-07
4.43504e-06
-3.52778e-07
4.44194e-06
-3.9917e-07
4.44206e-06
-4.43937e-07
4.43463e-06
-4.87343e-07
4.41888e-06
-5.28477e-07
4.39443e-06
-5.66637e-07
4.36128e-06
-6.02325e-07
4.31823e-06
-6.34949e-07
4.26276e-06
-6.62327e-07
4.19305e-06
-6.90439e-07
4.10439e-06
-7.18257e-07
3.98918e-06
-7.06755e-07
3.85176e-06
-6.96434e-07
3.7006e-06
-7.58923e-07
3.53175e-06
-4.91718e-07
3.33557e-06
-1.01906e-07
3.09234e-06
-7.74036e-07
2.87359e-06
-1.67979e-06
2.70937e-06
-2.11614e-06
2.58248e-06
-2.27477e-06
2.47926e-06
-2.33001e-06
2.39294e-06
-2.34518e-06
2.31984e-06
-2.34168e-06
2.25762e-06
-2.32765e-06
2.2045e-06
-2.30687e-06
2.15904e-06
-2.28144e-06
2.12005e-06
-2.25269e-06
2.08654e-06
-2.22155e-06
2.05768e-06
-2.18869e-06
2.03277e-06
-2.15463e-06
2.01125e-06
-2.11976e-06
1.99264e-06
-2.08437e-06
1.97655e-06
-2.04868e-06
1.96264e-06
-2.01287e-06
1.95064e-06
-1.97707e-06
1.94033e-06
-1.94139e-06
1.93152e-06
-1.9059e-06
1.92404e-06
-1.8707e-06
1.91778e-06
-1.83581e-06
1.91261e-06
-1.80127e-06
1.90844e-06
-1.76707e-06
1.90518e-06
-1.73321e-06
1.90275e-06
-1.69968e-06
1.9011e-06
-1.66649e-06
1.90017e-06
-1.63361e-06
1.8999e-06
-1.60105e-06
1.90026e-06
-1.56879e-06
1.90119e-06
-1.53683e-06
1.90267e-06
-1.50517e-06
1.90465e-06
-1.47379e-06
1.90711e-06
-1.44271e-06
1.91003e-06
-1.41192e-06
1.91338e-06
-1.38143e-06
1.91714e-06
-1.35124e-06
1.9213e-06
-1.32137e-06
1.92583e-06
-1.29183e-06
1.93074e-06
-1.26264e-06
1.936e-06
-1.23382e-06
1.94162e-06
-1.20539e-06
1.9476e-06
-1.17737e-06
1.95392e-06
-1.1498e-06
1.96061e-06
-1.12268e-06
1.96766e-06
-1.09605e-06
1.97508e-06
-1.06993e-06
1.98289e-06
-1.04433e-06
1.99108e-06
-1.01927e-06
1.99968e-06
-9.94775e-07
2.00868e-06
-9.70847e-07
2.01811e-06
-9.47503e-07
2.02797e-06
-9.24752e-07
2.03828e-06
-9.02599e-07
2.04903e-06
-8.81046e-07
2.06026e-06
-8.60093e-07
2.07195e-06
-8.39739e-07
2.08412e-06
-8.19982e-07
2.09678e-06
-8.00814e-07
2.10994e-06
-7.8223e-07
2.12359e-06
-7.64223e-07
2.13775e-06
-7.46783e-07
2.15243e-06
-7.299e-07
2.16761e-06
-7.13563e-07
2.18331e-06
-6.9776e-07
2.19953e-06
-6.82476e-07
2.21627e-06
-6.677e-07
2.23354e-06
-6.53413e-07
2.25132e-06
-6.39609e-07
2.26962e-06
-6.26268e-07
2.28844e-06
-6.13377e-07
2.30777e-06
-6.00925e-07
2.32762e-06
-5.88903e-07
2.34798e-06
-5.77306e-07
2.36885e-06
-5.66129e-07
2.39023e-06
-5.5537e-07
2.41212e-06
-5.45027e-07
2.43453e-06
-5.35099e-07
2.45746e-06
-5.25583e-07
2.48092e-06
-5.16476e-07
2.50492e-06
-5.0777e-07
2.52946e-06
-4.99455e-07
2.55457e-06
-4.91516e-07
2.58025e-06
-4.83934e-07
2.6065e-06
-4.76684e-07
2.63335e-06
-4.69737e-07
2.6608e-06
-4.63057e-07
2.68886e-06
-4.56605e-07
2.71753e-06
-4.50338e-07
2.74681e-06
-4.44209e-07
2.77669e-06
-4.38173e-07
2.80718e-06
-4.32183e-07
2.83827e-06
-4.26196e-07
2.86994e-06
-4.20171e-07
2.90219e-06
-4.14076e-07
2.93499e-06
-4.07885e-07
2.96834e-06
-4.01578e-07
3.00223e-06
-3.95143e-07
3.03663e-06
-3.88578e-07
3.07153e-06
-3.81891e-07
3.10691e-06
-3.75097e-07
3.14278e-06
-3.68223e-07
3.17912e-06
-3.61303e-07
3.21593e-06
-3.54378e-07
3.25321e-06
-3.47498e-07
3.29096e-06
-3.40715e-07
3.32921e-06
-3.34083e-07
3.36796e-06
-3.27656e-07
3.40725e-06
-3.21484e-07
3.44708e-06
-3.15614e-07
3.48751e-06
-3.10083e-07
3.52856e-06
-3.04921e-07
3.57025e-06
-3.00144e-07
3.61263e-06
-2.95763e-07
3.65572e-06
-2.91777e-07
3.69955e-06
-2.88182e-07
3.74415e-06
-2.84965e-07
3.78954e-06
-2.82114e-07
3.83574e-06
-2.7961e-07
3.88278e-06
-2.77433e-07
3.93069e-06
-2.75556e-07
3.97949e-06
-2.73946e-07
4.02921e-06
-2.72563e-07
4.07987e-06
-2.71351e-07
4.13149e-06
-2.70245e-07
4.18407e-06
-2.69164e-07
4.2376e-06
-2.68018e-07
4.29208e-06
-2.66709e-07
4.34747e-06
-2.65148e-07
4.40371e-06
-2.63263e-07
4.46077e-06
-2.61011e-07
4.51859e-06
-2.58386e-07
4.57711e-06
-2.55422e-07
4.63632e-06
-2.52181e-07
4.69618e-06
-2.48748e-07
4.7567e-06
-2.45213e-07
4.81789e-06
-2.41665e-07
4.87975e-06
-2.38181e-07
4.9423e-06
-2.34833e-07
5.00557e-06
-2.31697e-07
5.06958e-06
-2.28853e-07
5.13438e-06
-2.26387e-07
5.20003e-06
-2.24386e-07
5.26661e-06
-2.22933e-07
5.3342e-06
-2.22094e-07
5.40292e-06
-2.21909e-07
5.47288e-06
-2.22405e-07
5.5442e-06
-2.23575e-07
5.61701e-06
-2.25411e-07
5.69143e-06
-2.27834e-07
5.7676e-06
-2.30842e-07
5.84563e-06
-2.34303e-07
5.92566e-06
-2.38379e-07
6.00782e-06
-2.42847e-07
6.09231e-06
-2.48297e-07
6.17929e-06
-2.54164e-07
6.26908e-06
-2.62e-07
6.36185e-06
-2.70153e-07
6.4582e-06
-2.82188e-07
6.55802e-06
-2.93841e-07
6.66241e-06
-3.12676e-07
-3.29932e-07
6.7707e-06
4.71016e-06
-3.1896e-07
4.7156e-06
-3.58172e-07
4.71365e-06
-3.97174e-07
4.70514e-06
-4.35355e-07
4.69016e-06
-4.72284e-07
4.66844e-06
-5.06649e-07
4.63981e-06
-5.37899e-07
4.60393e-06
-5.66323e-07
4.55904e-06
-5.89923e-07
4.50297e-06
-6.061e-07
4.43501e-06
-6.22285e-07
4.35075e-06
-6.33747e-07
4.24412e-06
-5.99844e-07
4.12221e-06
-5.74275e-07
3.98951e-06
-6.25987e-07
3.84059e-06
-3.42642e-07
3.67758e-06
6.1225e-08
3.46466e-06
-5.61061e-07
3.2532e-06
-1.4683e-06
3.08448e-06
-1.94742e-06
2.95069e-06
-2.14098e-06
2.84026e-06
-2.21958e-06
2.74674e-06
-2.25168e-06
2.66661e-06
-2.26154e-06
2.59758e-06
-2.25862e-06
2.53794e-06
-2.24724e-06
2.48631e-06
-2.22981e-06
2.44151e-06
-2.20788e-06
2.40254e-06
-2.18257e-06
2.36856e-06
-2.15471e-06
2.33886e-06
-2.12493e-06
2.31284e-06
-2.09374e-06
2.29e-06
-2.06153e-06
2.26993e-06
-2.02861e-06
2.25227e-06
-1.9952e-06
2.23671e-06
-1.96152e-06
2.22303e-06
-1.9277e-06
2.21101e-06
-1.89389e-06
2.20049e-06
-1.86018e-06
2.19132e-06
-1.82664e-06
2.18337e-06
-1.79332e-06
2.17653e-06
-1.76023e-06
2.17071e-06
-1.72738e-06
2.16581e-06
-1.69479e-06
2.16178e-06
-1.66245e-06
2.15853e-06
-1.63037e-06
2.15602e-06
-1.59854e-06
2.15419e-06
-1.56696e-06
2.153e-06
-1.53563e-06
2.15238e-06
-1.50455e-06
2.15232e-06
-1.47373e-06
2.15276e-06
-1.44316e-06
2.15369e-06
-1.41285e-06
2.15507e-06
-1.38281e-06
2.15688e-06
-1.35305e-06
2.15909e-06
-1.32359e-06
2.1617e-06
-1.29444e-06
2.16469e-06
-1.26563e-06
2.16805e-06
-1.23718e-06
2.17177e-06
-1.20911e-06
2.17585e-06
-1.18146e-06
2.18029e-06
-1.15424e-06
2.18511e-06
-1.12749e-06
2.19029e-06
-1.10124e-06
2.19587e-06
-1.0755e-06
2.20184e-06
-1.0503e-06
2.20822e-06
-1.02566e-06
2.21503e-06
-1.00158e-06
2.22227e-06
-9.78088e-07
2.22996e-06
-9.55192e-07
2.23811e-06
-9.32902e-07
2.24673e-06
-9.11222e-07
2.25584e-06
-8.90154e-07
2.26544e-06
-8.69697e-07
2.27555e-06
-8.49848e-07
2.28617e-06
-8.30604e-07
2.29731e-06
-8.11957e-07
2.30899e-06
-7.93903e-07
2.32119e-06
-7.7643e-07
2.33394e-06
-7.59531e-07
2.34723e-06
-7.43192e-07
2.36107e-06
-7.27403e-07
2.37546e-06
-7.1215e-07
2.3904e-06
-6.97418e-07
2.40589e-06
-6.83192e-07
2.42193e-06
-6.69459e-07
2.43852e-06
-6.56199e-07
2.45566e-06
-6.43402e-07
2.47333e-06
-6.31051e-07
2.49155e-06
-6.19136e-07
2.51029e-06
-6.07647e-07
2.52957e-06
-5.96579e-07
2.54937e-06
-5.85928e-07
2.56969e-06
-5.75694e-07
2.59054e-06
-5.65877e-07
2.61192e-06
-5.56477e-07
2.63383e-06
-5.47495e-07
2.65628e-06
-5.38929e-07
2.67928e-06
-5.30773e-07
2.70284e-06
-5.2302e-07
2.72698e-06
-5.15655e-07
2.7517e-06
-5.08659e-07
2.77702e-06
-5.02008e-07
2.80295e-06
-4.9567e-07
2.8295e-06
-4.89608e-07
2.85667e-06
-4.83779e-07
2.88447e-06
-4.78138e-07
2.91289e-06
-4.72635e-07
2.94194e-06
-4.67219e-07
2.9716e-06
-4.61842e-07
3.00186e-06
-4.56455e-07
3.03271e-06
-4.51017e-07
3.06413e-06
-4.45492e-07
3.0961e-06
-4.39853e-07
3.1286e-06
-4.34077e-07
3.16161e-06
-4.28154e-07
3.19511e-06
-4.2208e-07
3.22909e-06
-4.15865e-07
3.26351e-06
-4.09525e-07
3.29838e-06
-4.0309e-07
3.33367e-06
-3.96597e-07
3.36939e-06
-3.90094e-07
3.40553e-06
-3.83635e-07
3.44209e-06
-3.77278e-07
3.47909e-06
-3.71085e-07
3.51654e-06
-3.65113e-07
3.55447e-06
-3.5942e-07
3.59292e-06
-3.54059e-07
3.6319e-06
-3.49071e-07
3.67147e-06
-3.44488e-07
3.71165e-06
-3.40326e-07
3.75248e-06
-3.36593e-07
3.79399e-06
-3.33289e-07
3.83621e-06
-3.30405e-07
3.87917e-06
-3.27928e-07
3.9229e-06
-3.25841e-07
3.96742e-06
-3.24126e-07
4.01275e-06
-3.22764e-07
4.05892e-06
-3.2173e-07
4.10597e-06
-3.20991e-07
4.15391e-06
-3.20507e-07
4.20278e-06
-3.20222e-07
4.2526e-06
-3.20062e-07
4.30337e-06
-3.19936e-07
4.3551e-06
-3.1974e-07
4.40774e-06
-3.19356e-07
4.46127e-06
-3.18678e-07
4.51563e-06
-3.17618e-07
4.57073e-06
-3.16122e-07
4.62653e-06
-3.14183e-07
4.68296e-06
-3.11848e-07
4.73997e-06
-3.09194e-07
4.79755e-06
-3.06324e-07
4.85568e-06
-3.03347e-07
4.91438e-06
-3.00363e-07
4.97366e-06
-2.97457e-07
5.03353e-06
-2.94706e-07
5.09403e-06
-2.92187e-07
5.15516e-06
-2.89988e-07
5.21699e-06
-2.88208e-07
5.27956e-06
-2.86955e-07
5.34296e-06
-2.8633e-07
5.40728e-06
-2.86415e-07
5.47264e-06
-2.87263e-07
5.53915e-06
-2.88917e-07
5.60696e-06
-2.91384e-07
5.6762e-06
-2.94646e-07
5.747e-06
-2.98628e-07
5.81947e-06
-3.03312e-07
5.89373e-06
-3.08566e-07
5.9699e-06
-3.14546e-07
6.04811e-06
-3.21046e-07
6.1285e-06
-3.28687e-07
6.21124e-06
-3.36899e-07
6.29662e-06
-3.47375e-07
6.38476e-06
-3.58291e-07
6.47627e-06
-3.73696e-07
6.57092e-06
-3.88488e-07
6.66997e-06
-4.11728e-07
-4.32243e-07
6.77229e-06
5.00241e-06
-3.30183e-07
5.00755e-06
-3.63272e-07
5.00657e-06
-3.96136e-07
4.99928e-06
-4.28014e-07
4.9851e-06
-4.58004e-07
4.9635e-06
-4.84994e-07
4.93458e-06
-5.08856e-07
4.89809e-06
-5.29708e-07
4.85232e-06
-5.44024e-07
4.79607e-06
-5.49688e-07
4.7298e-06
-5.55846e-07
4.64909e-06
-5.52801e-07
4.54898e-06
-4.99551e-07
4.44003e-06
-4.6509e-07
4.32206e-06
-5.0791e-07
4.18315e-06
-2.0361e-07
4.04024e-06
2.04211e-07
3.85286e-06
-3.73646e-07
3.65051e-06
-1.26594e-06
3.47958e-06
-1.77648e-06
3.34073e-06
-2.00212e-06
3.22479e-06
-2.10364e-06
3.12563e-06
-2.1525e-06
3.03974e-06
-2.17566e-06
2.96494e-06
-2.1838e-06
2.89958e-06
-2.18187e-06
2.84233e-06
-2.17256e-06
2.79209e-06
-2.15763e-06
2.74788e-06
-2.13836e-06
2.70888e-06
-2.1157e-06
2.67438e-06
-2.09043e-06
2.64379e-06
-2.06315e-06
2.61661e-06
-2.03434e-06
2.59239e-06
-2.00439e-06
2.57078e-06
-1.97359e-06
2.55147e-06
-1.9422e-06
2.53419e-06
-1.91043e-06
2.51876e-06
-1.87845e-06
2.50499e-06
-1.8464e-06
2.4927e-06
-1.81435e-06
2.48177e-06
-1.78238e-06
2.47208e-06
-1.75053e-06
2.46351e-06
-1.71881e-06
2.45598e-06
-1.68725e-06
2.4494e-06
-1.65587e-06
2.4437e-06
-1.62466e-06
2.4388e-06
-1.59364e-06
2.43466e-06
-1.56281e-06
2.4312e-06
-1.53217e-06
2.42839e-06
-1.50173e-06
2.42616e-06
-1.4715e-06
2.42448e-06
-1.44148e-06
2.42331e-06
-1.41168e-06
2.42261e-06
-1.38211e-06
2.42237e-06
-1.3528e-06
2.42255e-06
-1.32376e-06
2.42313e-06
-1.29502e-06
2.4241e-06
-1.26659e-06
2.42544e-06
-1.23852e-06
2.42715e-06
-1.21082e-06
2.42923e-06
-1.18353e-06
2.43168e-06
-1.15669e-06
2.43451e-06
-1.13032e-06
2.43771e-06
-1.10444e-06
2.44132e-06
-1.0791e-06
2.44534e-06
-1.05432e-06
2.44978e-06
-1.0301e-06
2.45467e-06
-1.00647e-06
2.46001e-06
-9.83433e-07
2.46583e-06
-9.61009e-07
2.47213e-06
-9.39207e-07
2.47894e-06
-9.18028e-07
2.48626e-06
-8.97474e-07
2.4941e-06
-8.77543e-07
2.50249e-06
-8.58231e-07
2.51142e-06
-8.39533e-07
2.5209e-06
-8.21443e-07
2.53095e-06
-8.0395e-07
2.54156e-06
-7.87047e-07
2.55275e-06
-7.70721e-07
2.56452e-06
-7.54962e-07
2.57687e-06
-7.39755e-07
2.5898e-06
-7.25086e-07
2.60332e-06
-7.10938e-07
2.61742e-06
-6.97296e-07
2.6321e-06
-6.84139e-07
2.64736e-06
-6.71458e-07
2.66319e-06
-6.59232e-07
2.67959e-06
-6.47446e-07
2.69654e-06
-6.36089e-07
2.71405e-06
-6.25152e-07
2.7321e-06
-6.14629e-07
2.7507e-06
-6.04521e-07
2.76982e-06
-5.94824e-07
2.78949e-06
-5.85545e-07
2.8097e-06
-5.76684e-07
2.83044e-06
-5.68246e-07
2.85174e-06
-5.60232e-07
2.87361e-06
-5.5264e-07
2.89605e-06
-5.45462e-07
2.91907e-06
-5.38686e-07
2.94271e-06
-5.32295e-07
2.96696e-06
-5.26261e-07
2.99184e-06
-5.20553e-07
3.01736e-06
-5.1513e-07
3.04352e-06
-5.09947e-07
3.07034e-06
-5.04952e-07
3.09779e-06
-5.00093e-07
3.12589e-06
-4.95314e-07
3.15461e-06
-4.90561e-07
3.18394e-06
-4.85784e-07
3.21386e-06
-4.80935e-07
3.24435e-06
-4.75978e-07
3.27538e-06
-4.70881e-07
3.30692e-06
-4.65623e-07
3.33896e-06
-4.6019e-07
3.37146e-06
-4.5458e-07
3.4044e-06
-4.48803e-07
3.43775e-06
-4.42878e-07
3.47149e-06
-4.36837e-07
3.50562e-06
-4.30722e-07
3.54011e-06
-4.24585e-07
3.57496e-06
-4.18488e-07
3.61017e-06
-4.12497e-07
3.64577e-06
-4.0668e-07
3.68175e-06
-4.01102e-07
3.71816e-06
-3.9583e-07
3.75502e-06
-3.90923e-07
3.79238e-06
-3.86426e-07
3.83026e-06
-3.82373e-07
3.86871e-06
-3.78782e-07
3.90778e-06
-3.75658e-07
3.94749e-06
-3.73e-07
3.98787e-06
-3.70792e-07
4.02897e-06
-3.69021e-07
4.07079e-06
-3.67666e-07
4.11338e-06
-3.66711e-07
4.15675e-06
-3.66133e-07
4.20093e-06
-3.65914e-07
4.24597e-06
-3.66021e-07
4.29188e-06
-3.66418e-07
4.3387e-06
-3.67045e-07
4.38647e-06
-3.67824e-07
4.43518e-06
-3.6865e-07
4.48484e-06
-3.69399e-07
4.53541e-06
-3.69932e-07
4.58685e-06
-3.70113e-07
4.63907e-06
-3.69837e-07
4.69198e-06
-3.69035e-07
4.74549e-06
-3.677e-07
4.79953e-06
-3.65892e-07
4.85405e-06
-3.63713e-07
4.90902e-06
-3.61292e-07
4.96444e-06
-3.58758e-07
5.02031e-06
-3.56228e-07
5.07664e-06
-3.53789e-07
5.13346e-06
-3.51519e-07
5.19077e-06
-3.49498e-07
5.24861e-06
-3.47821e-07
5.30701e-06
-3.46604e-07
5.36603e-06
-3.45978e-07
5.42577e-06
-3.46062e-07
5.4863e-06
-3.46947e-07
5.54776e-06
-3.4872e-07
5.61029e-06
-3.51443e-07
5.67404e-06
-3.5513e-07
5.73915e-06
-3.59753e-07
5.80576e-06
-3.65232e-07
5.87397e-06
-3.71524e-07
5.9439e-06
-3.78495e-07
6.01564e-06
-3.86275e-07
6.08927e-06
-3.94682e-07
6.16494e-06
-4.0435e-07
6.24278e-06
-4.14731e-07
6.32304e-06
-4.27633e-07
6.40583e-06
-4.4108e-07
6.49175e-06
-4.59617e-07
6.58047e-06
-4.77202e-07
6.67345e-06
-5.04705e-07
-5.27716e-07
6.76892e-06
5.32734e-06
-3.37403e-07
5.32868e-06
-3.64566e-07
5.32435e-06
-3.91767e-07
5.31436e-06
-4.1796e-07
5.29829e-06
-4.41897e-07
5.27607e-06
-4.62696e-07
5.24806e-06
-4.80759e-07
5.21371e-06
-4.95277e-07
5.17085e-06
-5.01035e-07
5.11894e-06
-4.97705e-07
5.05942e-06
-4.96169e-07
4.98669e-06
-4.80034e-07
4.89646e-06
-4.09148e-07
4.80404e-06
-3.72677e-07
4.70342e-06
-4.07217e-07
4.56879e-06
-6.89411e-08
4.4327e-06
3.403e-07
4.26208e-06
-2.03003e-07
4.06877e-06
-1.07262e-06
3.89797e-06
-1.60567e-06
3.75631e-06
-1.86046e-06
3.63684e-06
-1.98415e-06
3.53372e-06
-2.04939e-06
3.44349e-06
-2.08541e-06
3.36395e-06
-2.10426e-06
3.29358e-06
-2.11148e-06
3.23114e-06
-2.11011e-06
3.17563e-06
-2.1021e-06
3.12615e-06
-2.08886e-06
3.08195e-06
-2.07149e-06
3.04237e-06
-2.05084e-06
3.00685e-06
-2.02761e-06
2.97489e-06
-2.00238e-06
2.94607e-06
-1.97557e-06
2.92004e-06
-1.94755e-06
2.89649e-06
-1.91864e-06
2.87517e-06
-1.8891e-06
2.85587e-06
-1.85915e-06
2.8384e-06
-1.82892e-06
2.8226e-06
-1.79855e-06
2.8083e-06
-1.76809e-06
2.7954e-06
-1.73762e-06
2.78375e-06
-1.70717e-06
2.77328e-06
-1.67677e-06
2.76387e-06
-1.64646e-06
2.75545e-06
-1.61624e-06
2.74793e-06
-1.58612e-06
2.74125e-06
-1.55613e-06
2.73534e-06
-1.52625e-06
2.73012e-06
-1.49652e-06
2.72555e-06
-1.46693e-06
2.72158e-06
-1.4375e-06
2.71815e-06
-1.40825e-06
2.71523e-06
-1.37919e-06
2.71278e-06
-1.35035e-06
2.71078e-06
-1.32176e-06
2.70919e-06
-1.29343e-06
2.70799e-06
-1.2654e-06
2.70718e-06
-1.23771e-06
2.70675e-06
-1.21039e-06
2.70669e-06
-1.18347e-06
2.70701e-06
-1.157e-06
2.70771e-06
-1.13101e-06
2.7088e-06
-1.10554e-06
2.71031e-06
-1.08061e-06
2.71224e-06
-1.05625e-06
2.71462e-06
-1.03248e-06
2.71747e-06
-1.00931e-06
2.72079e-06
-9.8676e-07
2.72462e-06
-9.64838e-07
2.72896e-06
-9.43553e-07
2.73384e-06
-9.22907e-07
2.73927e-06
-9.029e-07
2.74525e-06
-8.83529e-07
2.75181e-06
-8.6479e-07
2.75895e-06
-8.46674e-07
2.76668e-06
-8.29174e-07
2.77501e-06
-8.12281e-07
2.78395e-06
-7.95983e-07
2.79349e-06
-7.80269e-07
2.80366e-06
-7.65125e-07
2.81443e-06
-7.50536e-07
2.82583e-06
-7.36486e-07
2.83785e-06
-7.22957e-07
2.85048e-06
-7.0993e-07
2.86373e-06
-6.97388e-07
2.87758e-06
-6.85309e-07
2.89203e-06
-6.73679e-07
2.90707e-06
-6.62481e-07
2.92268e-06
-6.51703e-07
2.93887e-06
-6.41334e-07
2.95561e-06
-6.31372e-07
2.97291e-06
-6.21816e-07
2.99075e-06
-6.12667e-07
3.00914e-06
-6.03932e-07
3.02807e-06
-5.95618e-07
3.04755e-06
-5.87731e-07
3.0676e-06
-5.80278e-07
3.08821e-06
-5.73259e-07
3.10942e-06
-5.6667e-07
3.13122e-06
-5.60499e-07
3.15365e-06
-5.54729e-07
3.17672e-06
-5.49334e-07
3.20045e-06
-5.44279e-07
3.22484e-06
-5.3952e-07
3.2499e-06
-5.35008e-07
3.27563e-06
-5.30684e-07
3.30203e-06
-5.26492e-07
3.32908e-06
-5.2237e-07
3.35678e-06
-5.18258e-07
3.3851e-06
-5.141e-07
3.41401e-06
-5.09846e-07
3.44349e-06
-5.05455e-07
3.4735e-06
-5.00893e-07
3.50402e-06
-4.96135e-07
3.535e-06
-4.91169e-07
3.56641e-06
-4.85994e-07
3.59823e-06
-4.80617e-07
3.63041e-06
-4.75062e-07
3.66294e-06
-4.69363e-07
3.69578e-06
-4.63568e-07
3.72893e-06
-4.57734e-07
3.76237e-06
-4.51932e-07
3.7961e-06
-4.46234e-07
3.83014e-06
-4.40719e-07
3.8645e-06
-4.35463e-07
3.89921e-06
-4.3054e-07
3.9343e-06
-4.26018e-07
3.96982e-06
-4.2195e-07
4.00582e-06
-4.18369e-07
4.04233e-06
-4.15295e-07
4.0794e-06
-4.12731e-07
4.11707e-06
-4.10674e-07
4.15538e-06
-4.09102e-07
4.19436e-06
-4.07996e-07
4.23403e-06
-4.07335e-07
4.27441e-06
-4.07099e-07
4.31555e-06
-4.0727e-07
4.35747e-06
-4.07832e-07
4.40021e-06
-4.08757e-07
4.44381e-06
-4.10014e-07
4.48831e-06
-4.11542e-07
4.53374e-06
-4.13256e-07
4.58013e-06
-4.15038e-07
4.62747e-06
-4.16739e-07
4.67572e-06
-4.18187e-07
4.72482e-06
-4.19212e-07
4.77466e-06
-4.19679e-07
4.82512e-06
-4.19501e-07
4.8761e-06
-4.18672e-07
4.92748e-06
-4.17272e-07
4.9792e-06
-4.15435e-07
5.03123e-06
-4.13325e-07
5.08358e-06
-4.11101e-07
5.13625e-06
-4.08895e-07
5.18926e-06
-4.06798e-07
5.24263e-06
-4.04881e-07
5.29635e-06
-4.0322e-07
5.35045e-06
-4.01917e-07
5.40496e-06
-4.01115e-07
5.45995e-06
-4.00965e-07
5.51549e-06
-4.01593e-07
5.57167e-06
-4.03127e-07
5.62865e-06
-4.05698e-07
5.68659e-06
-4.09382e-07
5.74566e-06
-4.14196e-07
5.80601e-06
-4.20104e-07
5.8678e-06
-4.27014e-07
5.93112e-06
-4.34847e-07
5.99609e-06
-4.43458e-07
6.06275e-06
-4.52937e-07
6.13119e-06
-4.63121e-07
6.20148e-06
-4.74635e-07
6.27373e-06
-4.86981e-07
6.34816e-06
-5.02055e-07
6.42485e-06
-5.17773e-07
6.50441e-06
-5.39169e-07
6.58639e-06
-5.59184e-07
6.67252e-06
-5.90834e-07
-6.15437e-07
6.76025e-06
5.69236e-06
-3.45264e-07
5.69581e-06
-3.68e-07
5.69457e-06
-3.905e-07
5.68803e-06
-4.11395e-07
5.6756e-06
-4.29438e-07
5.65735e-06
-4.44405e-07
5.63356e-06
-4.56935e-07
5.60299e-06
-4.64611e-07
5.56339e-06
-4.61419e-07
5.51653e-06
-4.50748e-07
5.46468e-06
-4.44345e-07
5.39897e-06
-4.14246e-07
5.31595e-06
-3.26192e-07
5.24078e-06
-2.97522e-07
5.15554e-06
-3.21954e-07
5.01345e-06
7.3149e-08
4.87123e-06
4.82584e-07
4.71205e-06
-4.383e-08
4.53031e-06
-8.90867e-07
4.36376e-06
-1.4391e-06
4.22241e-06
-1.7191e-06
4.10156e-06
-1.86329e-06
3.99598e-06
-1.94378e-06
3.90227e-06
-1.99169e-06
3.81837e-06
-2.02033e-06
3.74288e-06
-2.03596e-06
3.67474e-06
-2.04195e-06
3.61312e-06
-2.04046e-06
3.55729e-06
-2.03301e-06
3.50661e-06
-2.0208e-06
3.46054e-06
-2.00475e-06
3.41857e-06
-1.98564e-06
3.38029e-06
-1.96408e-06
3.34529e-06
-1.94056e-06
3.31325e-06
-1.91551e-06
3.28392e-06
-1.88929e-06
3.25704e-06
-1.86223e-06
3.23243e-06
-1.83453e-06
3.20988e-06
-1.80637e-06
3.18923e-06
-1.77789e-06
3.17032e-06
-1.74917e-06
3.15301e-06
-1.7203e-06
3.13718e-06
-1.69133e-06
3.12271e-06
-1.6623e-06
3.1095e-06
-1.63324e-06
3.09745e-06
-1.60418e-06
3.08646e-06
-1.57513e-06
3.07645e-06
-1.54611e-06
3.06734e-06
-1.51714e-06
3.05905e-06
-1.48823e-06
3.05151e-06
-1.45939e-06
3.04465e-06
-1.43065e-06
3.03843e-06
-1.40202e-06
3.03278e-06
-1.37354e-06
3.02766e-06
-1.34523e-06
3.02304e-06
-1.31713e-06
3.01887e-06
-1.28926e-06
3.01514e-06
-1.26167e-06
3.01182e-06
-1.23439e-06
3.00891e-06
-1.20747e-06
3.0064e-06
-1.18096e-06
3.00429e-06
-1.15489e-06
3.00258e-06
-1.12931e-06
3.0013e-06
-1.10425e-06
3.00046e-06
-1.07977e-06
3.00008e-06
-1.05587e-06
3.00018e-06
-1.03258e-06
3.00078e-06
-1.00991e-06
3.00191e-06
-9.87884e-07
3.00357e-06
-9.66503e-07
3.00579e-06
-9.45776e-07
3.00859e-06
-9.25706e-07
3.01198e-06
-9.0629e-07
3.01597e-06
-8.87523e-07
3.02058e-06
-8.694e-07
3.02581e-06
-8.5191e-07
3.03168e-06
-8.35046e-07
3.0382e-06
-8.18794e-07
3.04536e-06
-8.03146e-07
3.05317e-06
-7.88085e-07
3.06164e-06
-7.73598e-07
3.07077e-06
-7.59669e-07
3.08057e-06
-7.46279e-07
3.09101e-06
-7.33408e-07
3.10211e-06
-7.21035e-07
3.11386e-06
-7.09136e-07
3.12625e-06
-6.97695e-07
3.13926e-06
-6.86691e-07
3.15289e-06
-6.76105e-07
3.16711e-06
-6.65926e-07
3.18192e-06
-6.56142e-07
3.1973e-06
-6.46752e-07
3.21325e-06
-6.37756e-07
3.22974e-06
-6.2916e-07
3.24678e-06
-6.20974e-07
3.26437e-06
-6.13208e-07
3.28251e-06
-6.05876e-07
3.30122e-06
-5.98988e-07
3.3205e-06
-5.9255e-07
3.34039e-06
-5.86559e-07
3.36089e-06
-5.81008e-07
3.38204e-06
-5.75879e-07
3.40385e-06
-5.71147e-07
3.42634e-06
-5.66771e-07
3.44953e-06
-5.62707e-07
3.47341e-06
-5.58894e-07
3.498e-06
-5.55273e-07
3.52328e-06
-5.51777e-07
3.54925e-06
-5.48337e-07
3.57588e-06
-5.44886e-07
3.60314e-06
-5.41364e-07
3.63101e-06
-5.37713e-07
3.65945e-06
-5.33888e-07
3.68841e-06
-5.29853e-07
3.71786e-06
-5.25582e-07
3.74775e-06
-5.2106e-07
3.77804e-06
-5.16284e-07
3.80869e-06
-5.11267e-07
3.83966e-06
-5.0603e-07
3.87091e-06
-5.00614e-07
3.90241e-06
-4.9507e-07
3.93413e-06
-4.89465e-07
3.96607e-06
-4.83874e-07
3.99822e-06
-4.78383e-07
4.03058e-06
-4.73081e-07
4.06317e-06
-4.68056e-07
4.09602e-06
-4.63394e-07
4.12918e-06
-4.59173e-07
4.16268e-06
-4.55452e-07
4.19658e-06
-4.52269e-07
4.23092e-06
-4.49643e-07
4.26577e-06
-4.47577e-07
4.30116e-06
-4.46063e-07
4.33713e-06
-4.45074e-07
4.37372e-06
-4.44583e-07
4.41095e-06
-4.44569e-07
4.44886e-06
-4.45005e-07
4.48748e-06
-4.45881e-07
4.52683e-06
-4.47182e-07
4.56697e-06
-4.48894e-07
4.60794e-06
-4.50988e-07
4.64981e-06
-4.5341e-07
4.69262e-06
-4.56067e-07
4.73641e-06
-4.58824e-07
4.78117e-06
-4.61503e-07
4.82687e-06
-4.63883e-07
4.8734e-06
-4.65751e-07
4.92065e-06
-4.66927e-07
4.96844e-06
-4.67297e-07
5.01663e-06
-4.66855e-07
5.06507e-06
-4.65714e-07
5.11369e-06
-4.64054e-07
5.16245e-06
-4.62087e-07
5.21137e-06
-4.60014e-07
5.26047e-06
-4.57987e-07
5.30976e-06
-4.5609e-07
5.35926e-06
-4.54378e-07
5.40897e-06
-4.52919e-07
5.45888e-06
-4.51823e-07
5.50902e-06
-4.51259e-07
5.55944e-06
-4.51374e-07
5.61018e-06
-4.52334e-07
5.66139e-06
-4.54335e-07
5.71324e-06
-4.57545e-07
5.76591e-06
-4.62048e-07
5.81959e-06
-4.67876e-07
5.87447e-06
-4.74979e-07
5.9307e-06
-4.83247e-07
5.98841e-06
-4.92554e-07
6.04769e-06
-5.02733e-07
6.10856e-06
-5.13813e-07
6.17109e-06
-5.25645e-07
6.23527e-06
-5.38817e-07
6.3012e-06
-5.52907e-07
6.36902e-06
-5.69873e-07
6.43884e-06
-5.87585e-07
6.5112e-06
-6.11535e-07
6.58564e-06
-6.33622e-07
6.66414e-06
-6.69328e-07
-6.94589e-07
6.74329e-06
6.0984e-06
-3.50691e-07
6.09981e-06
-3.69409e-07
6.09689e-06
-3.87571e-07
6.08904e-06
-4.03539e-07
6.07591e-06
-4.16292e-07
6.0581e-06
-4.26588e-07
6.03591e-06
-4.34708e-07
6.00736e-06
-4.36032e-07
5.97136e-06
-4.25369e-07
5.93243e-06
-4.11799e-07
5.8907e-06
-4.02605e-07
5.83132e-06
-3.54888e-07
5.76175e-06
-2.56693e-07
5.72199e-06
-2.57641e-07
5.6603e-06
-2.60201e-07
5.50867e-06
2.24975e-07
5.37141e-06
6.19903e-07
5.24117e-06
8.64783e-08
5.08581e-06
-7.3548e-07
4.93355e-06
-1.28681e-06
4.7985e-06
-1.58402e-06
4.67964e-06
-1.7444e-06
4.57328e-06
-1.8374e-06
4.47668e-06
-1.89504e-06
4.3881e-06
-1.93171e-06
4.30645e-06
-1.95428e-06
4.23101e-06
-1.96649e-06
4.16121e-06
-1.97063e-06
4.09657e-06
-1.96835e-06
4.03668e-06
-1.96088e-06
3.98114e-06
-1.9492e-06
3.92962e-06
-1.9341e-06
3.88175e-06
-1.9162e-06
3.83725e-06
-1.89604e-06
3.79587e-06
-1.87412e-06
3.75741e-06
-1.85083e-06
3.72168e-06
-1.82648e-06
3.68847e-06
-1.80132e-06
3.65762e-06
-1.77552e-06
3.62897e-06
-1.74923e-06
3.60236e-06
-1.72256e-06
3.57766e-06
-1.69559e-06
3.55473e-06
-1.6684e-06
3.53346e-06
-1.64103e-06
3.51373e-06
-1.61351e-06
3.49543e-06
-1.58588e-06
3.47845e-06
-1.55815e-06
3.46271e-06
-1.53036e-06
3.44809e-06
-1.50252e-06
3.43451e-06
-1.47465e-06
3.42189e-06
-1.44677e-06
3.41015e-06
-1.4189e-06
3.39922e-06
-1.39109e-06
3.38902e-06
-1.36335e-06
3.37951e-06
-1.33572e-06
3.37064e-06
-1.30825e-06
3.36235e-06
-1.28097e-06
3.35462e-06
-1.25393e-06
3.34741e-06
-1.22718e-06
3.34072e-06
-1.20078e-06
3.33453e-06
-1.17476e-06
3.32883e-06
-1.14919e-06
3.32364e-06
-1.12412e-06
3.31896e-06
-1.09958e-06
3.31482e-06
-1.07562e-06
3.31123e-06
-1.05228e-06
3.30821e-06
-1.02956e-06
3.30579e-06
-1.00749e-06
3.30398e-06
-9.86075e-07
3.3028e-06
-9.65325e-07
3.30227e-06
-9.45246e-07
3.3024e-06
-9.25838e-07
3.30321e-06
-9.07097e-07
3.3047e-06
-8.89017e-07
3.30689e-06
-8.7159e-07
3.30979e-06
-8.54806e-07
3.31339e-06
-8.38652e-07
3.31771e-06
-8.23118e-07
3.32276e-06
-8.0819e-07
3.32852e-06
-7.93854e-07
3.33502e-06
-7.80093e-07
3.34223e-06
-7.66889e-07
3.35017e-06
-7.54222e-07
3.35883e-06
-7.4207e-07
3.3682e-06
-7.30406e-07
3.37827e-06
-7.1921e-07
3.38903e-06
-7.08453e-07
3.40046e-06
-6.98117e-07
3.41254e-06
-6.88182e-07
3.42525e-06
-6.7863e-07
3.43857e-06
-6.69456e-07
3.45247e-06
-6.60655e-07
3.46695e-06
-6.52234e-07
3.48199e-06
-6.442e-07
3.49759e-06
-6.36567e-07
3.51373e-06
-6.29354e-07
3.53043e-06
-6.22581e-07
3.5477e-06
-6.16264e-07
3.56556e-06
-6.10414e-07
3.58404e-06
-6.05036e-07
3.60315e-06
-6.00124e-07
3.62293e-06
-5.95663e-07
3.64341e-06
-5.91623e-07
3.6646e-06
-5.87965e-07
3.68652e-06
-5.84632e-07
3.70918e-06
-5.81563e-07
3.73259e-06
-5.78685e-07
3.75674e-06
-5.75923e-07
3.78161e-06
-5.73201e-07
3.80716e-06
-5.70442e-07
3.83338e-06
-5.67577e-07
3.86021e-06
-5.64543e-07
3.88762e-06
-5.61291e-07
3.91555e-06
-5.57778e-07
3.94394e-06
-5.53979e-07
3.97276e-06
-5.49875e-07
4.00194e-06
-5.45465e-07
4.03143e-06
-5.40759e-07
4.06119e-06
-5.35784e-07
4.09115e-06
-5.30582e-07
4.1213e-06
-5.25212e-07
4.15158e-06
-5.19747e-07
4.18197e-06
-5.14273e-07
4.21247e-06
-5.08888e-07
4.24309e-06
-5.03695e-07
4.27382e-06
-4.98795e-07
4.30472e-06
-4.9429e-07
4.33581e-06
-4.90267e-07
4.36715e-06
-4.86794e-07
4.3988e-06
-4.83916e-07
4.4308e-06
-4.81652e-07
4.46323e-06
-4.80003e-07
4.49613e-06
-4.78959e-07
4.52954e-06
-4.78483e-07
4.5635e-06
-4.78544e-07
4.59804e-06
-4.79112e-07
4.6332e-06
-4.8016e-07
4.66901e-06
-4.81681e-07
4.7055e-06
-4.8367e-07
4.74274e-06
-4.86124e-07
4.78078e-06
-4.89029e-07
4.81971e-06
-4.92341e-07
4.85961e-06
-4.95959e-07
4.90052e-06
-4.99734e-07
4.94246e-06
-5.03444e-07
4.98538e-06
-5.06809e-07
5.02917e-06
-5.09543e-07
5.07365e-06
-5.11403e-07
5.11858e-06
-5.12236e-07
5.16377e-06
-5.12038e-07
5.20902e-06
-5.10965e-07
5.25423e-06
-5.09268e-07
5.29939e-06
-5.07236e-07
5.3445e-06
-5.05125e-07
5.38962e-06
-5.03106e-07
5.43479e-06
-5.01252e-07
5.48e-06
-4.9959e-07
5.52525e-06
-4.98163e-07
5.57051e-06
-4.97081e-07
5.61577e-06
-4.96508e-07
5.66101e-06
-4.96614e-07
5.70633e-06
-4.97657e-07
5.7519e-06
-4.99897e-07
5.79789e-06
-5.03529e-07
5.8445e-06
-5.08664e-07
5.89198e-06
-5.15355e-07
5.94054e-06
-5.23536e-07
5.99038e-06
-5.33077e-07
6.04162e-06
-5.43793e-07
6.09436e-06
-5.55481e-07
6.14863e-06
-5.6808e-07
6.20443e-06
-5.81438e-07
6.26168e-06
-5.96072e-07
6.32044e-06
-6.11664e-07
6.38078e-06
-6.30208e-07
6.44281e-06
-6.49614e-07
6.50705e-06
-6.75773e-07
6.573e-06
-6.99571e-07
6.64288e-06
-7.39205e-07
-7.64065e-07
6.71235e-06
6.52463e-06
-3.55135e-07
6.52594e-06
-3.70718e-07
6.52297e-06
-3.84603e-07
6.51504e-06
-3.95611e-07
6.50286e-06
-4.04102e-07
6.48784e-06
-4.11569e-07
6.46959e-06
-4.16435e-07
6.44526e-06
-4.11687e-07
6.41569e-06
-3.95759e-07
6.38706e-06
-3.83137e-07
6.35473e-06
-3.70264e-07
6.30458e-06
-3.04788e-07
6.26196e-06
-2.13914e-07
6.25484e-06
-2.50476e-07
6.18658e-06
-1.91712e-07
6.03765e-06
3.74058e-07
5.96298e-06
6.94682e-07
5.90704e-06
1.42469e-07
5.80423e-06
-6.32634e-07
5.68191e-06
-1.16445e-06
5.5626e-06
-1.46468e-06
5.45133e-06
-1.6331e-06
5.3474e-06
-1.73343e-06
5.24946e-06
-1.79708e-06
5.15665e-06
-1.83886e-06
5.06848e-06
-1.86609e-06
4.9847e-06
-1.88269e-06
4.90517e-06
-1.89108e-06
4.82974e-06
-1.89291e-06
4.75828e-06
-1.88941e-06
4.69062e-06
-1.88153e-06
4.62656e-06
-1.87003e-06
4.56592e-06
-1.85555e-06
4.50855e-06
-1.83866e-06
4.45432e-06
-1.81988e-06
4.40311e-06
-1.79958e-06
4.35474e-06
-1.7781e-06
4.30908e-06
-1.75564e-06
4.26599e-06
-1.73241e-06
4.22532e-06
-1.70855e-06
4.18695e-06
-1.68417e-06
4.15074e-06
-1.65937e-06
4.11657e-06
-1.63422e-06
4.08432e-06
-1.60877e-06
4.05389e-06
-1.58306e-06
4.02515e-06
-1.55713e-06
3.998e-06
-1.53099e-06
3.97233e-06
-1.50469e-06
3.94806e-06
-1.47824e-06
3.92507e-06
-1.45166e-06
3.90329e-06
-1.42498e-06
3.88263e-06
-1.39825e-06
3.86302e-06
-1.37147e-06
3.84439e-06
-1.34471e-06
3.82667e-06
-1.318e-06
3.80981e-06
-1.29138e-06
3.79377e-06
-1.26491e-06
3.77849e-06
-1.23865e-06
3.76396e-06
-1.21265e-06
3.75015e-06
-1.18696e-06
3.73705e-06
-1.16166e-06
3.72466e-06
-1.1368e-06
3.71299e-06
-1.11244e-06
3.70204e-06
-1.08862e-06
3.69183e-06
-1.06541e-06
3.68238e-06
-1.04282e-06
3.6737e-06
-1.02089e-06
3.66582e-06
-9.99614e-07
3.65876e-06
-9.79009e-07
3.65252e-06
-9.59087e-07
3.64712e-06
-9.39845e-07
3.64256e-06
-9.21285e-07
3.63886e-06
-9.03399e-07
3.63603e-06
-8.86182e-07
3.63405e-06
-8.69621e-07
3.63295e-06
-8.53704e-07
3.63272e-06
-8.38424e-07
3.63336e-06
-8.23762e-07
3.63488e-06
-8.09707e-07
3.63727e-06
-7.96243e-07
3.64052e-06
-7.83351e-07
3.64465e-06
-7.71013e-07
3.64963e-06
-7.59205e-07
3.65546e-06
-7.47903e-07
3.66213e-06
-7.37077e-07
3.66962e-06
-7.26698e-07
3.67791e-06
-7.16741e-07
3.68697e-06
-7.07178e-07
3.69678e-06
-6.97985e-07
3.7073e-06
-6.89148e-07
3.7185e-06
-6.80656e-07
3.73036e-06
-6.72511e-07
3.74285e-06
-6.64719e-07
3.75594e-06
-6.57293e-07
3.76963e-06
-6.50256e-07
3.78391e-06
-6.43633e-07
3.79878e-06
-6.37453e-07
3.81425e-06
-6.31742e-07
3.83036e-06
-6.2652e-07
3.84711e-06
-6.21797e-07
3.86456e-06
-6.17572e-07
3.88273e-06
-6.13832e-07
3.90165e-06
-6.10545e-07
3.92135e-06
-6.07667e-07
3.94184e-06
-6.05134e-07
3.96315e-06
-6.02875e-07
3.98527e-06
-6.00805e-07
4.00819e-06
-5.98839e-07
4.03187e-06
-5.96887e-07
4.0563e-06
-5.94864e-07
4.08141e-06
-5.9269e-07
4.10717e-06
-5.90296e-07
4.1335e-06
-5.87624e-07
4.16036e-06
-5.84631e-07
4.18767e-06
-5.81286e-07
4.21537e-06
-5.77571e-07
4.24339e-06
-5.73485e-07
4.27167e-06
-5.69037e-07
4.30014e-06
-5.6426e-07
4.32876e-06
-5.59199e-07
4.35747e-06
-5.53922e-07
4.38623e-06
-5.4851e-07
4.41502e-06
-5.43063e-07
4.44382e-06
-5.3769e-07
4.47263e-06
-5.32508e-07
4.50147e-06
-5.27634e-07
4.53036e-06
-5.23182e-07
4.55934e-06
-5.19252e-07
4.58847e-06
-5.15921e-07
4.61779e-06
-5.13238e-07
4.64737e-06
-5.11227e-07
4.67726e-06
-5.09891e-07
4.70752e-06
-5.09219e-07
4.73821e-06
-5.09167e-07
4.76937e-06
-5.09696e-07
4.80103e-06
-5.10763e-07
4.83322e-06
-5.12344e-07
4.86597e-06
-5.14427e-07
4.89934e-06
-5.17025e-07
4.93337e-06
-5.20149e-07
4.96816e-06
-5.23815e-07
5.00382e-06
-5.27993e-07
5.04045e-06
-5.32589e-07
5.07814e-06
-5.37434e-07
5.11695e-06
-5.42256e-07
5.15682e-06
-5.46687e-07
5.19761e-06
-5.50335e-07
5.23906e-06
-5.52859e-07
5.28086e-06
-5.54039e-07
5.3227e-06
-5.53877e-07
5.36434e-06
-5.52603e-07
5.40565e-06
-5.50571e-07
5.44661e-06
-5.48189e-07
5.48729e-06
-5.45795e-07
5.52777e-06
-5.43589e-07
5.56814e-06
-5.41614e-07
5.6084e-06
-5.39847e-07
5.64852e-06
-5.38275e-07
5.68841e-06
-5.36963e-07
5.72797e-06
-5.36068e-07
5.76721e-06
-5.35855e-07
5.80624e-06
-5.3668e-07
5.84519e-06
-5.38842e-07
5.88426e-06
-5.42594e-07
5.92369e-06
-5.48096e-07
5.96377e-06
-5.55432e-07
6.00476e-06
-5.64527e-07
6.04691e-06
-5.75228e-07
6.09039e-06
-5.87283e-07
6.13535e-06
-6.0044e-07
6.18178e-06
-6.14512e-07
6.22965e-06
-6.29309e-07
6.27881e-06
-6.45227e-07
6.32921e-06
-6.6207e-07
6.38085e-06
-6.8185e-07
6.43387e-06
-7.02629e-07
6.4887e-06
-7.30606e-07
6.54488e-06
-7.55754e-07
6.60487e-06
-7.99199e-07
-8.22117e-07
6.66292e-06
5.84187e-06
-3.63183e-07
5.8468e-06
-3.75655e-07
5.84795e-06
-3.85745e-07
5.84586e-06
-3.93525e-07
5.84245e-06
-4.00698e-07
5.83869e-06
-4.07817e-07
5.83217e-06
-4.09918e-07
5.81989e-06
-3.99407e-07
5.80564e-06
-3.81482e-07
5.79602e-06
-3.73506e-07
5.78313e-06
-3.57397e-07
5.75776e-06
-2.79361e-07
5.74919e-06
-2.05403e-07
5.76683e-06
-2.68094e-07
5.73284e-06
-1.57678e-07
5.68322e-06
4.23629e-07
5.71345e-06
6.64505e-07
5.73255e-06
1.23319e-07
5.69279e-06
-5.92812e-07
5.62319e-06
-1.09485e-06
5.54595e-06
-1.38738e-06
5.46794e-06
-1.55506e-06
5.39051e-06
-1.65597e-06
5.31392e-06
-1.72044e-06
5.2384e-06
-1.76332e-06
5.16433e-06
-1.79199e-06
5.09207e-06
-1.81042e-06
5.02194e-06
-1.82093e-06
4.95415e-06
-1.82511e-06
4.88885e-06
-1.8241e-06
4.82608e-06
-1.81875e-06
4.76584e-06
-1.80978e-06
4.70814e-06
-1.79783e-06
4.65298e-06
-1.78349e-06
4.60033e-06
-1.7672e-06
4.55011e-06
-1.74935e-06
4.50225e-06
-1.73021e-06
4.45666e-06
-1.71003e-06
4.41324e-06
-1.68897e-06
4.3719e-06
-1.66717e-06
4.33254e-06
-1.64479e-06
4.29506e-06
-1.62186e-06
4.25934e-06
-1.5985e-06
4.22532e-06
-1.57471e-06
4.19286e-06
-1.5506e-06
4.1619e-06
-1.52613e-06
4.1323e-06
-1.5014e-06
4.10402e-06
-1.47639e-06
4.07694e-06
-1.45116e-06
4.051e-06
-1.4257e-06
4.02611e-06
-1.4001e-06
4.00223e-06
-1.37435e-06
3.97928e-06
-1.34852e-06
3.95722e-06
-1.32264e-06
3.936e-06
-1.29677e-06
3.91559e-06
-1.27096e-06
3.89595e-06
-1.24527e-06
3.87707e-06
-1.21976e-06
3.85893e-06
-1.19451e-06
3.84154e-06
-1.16956e-06
3.82489e-06
-1.14501e-06
3.80899e-06
-1.12091e-06
3.79388e-06
-1.09732e-06
3.77956e-06
-1.0743e-06
3.76607e-06
-1.05192e-06
3.75343e-06
-1.03018e-06
3.74167e-06
-1.00912e-06
3.7308e-06
-9.88744e-07
3.72086e-06
-9.69065e-07
3.71184e-06
-9.50076e-07
3.70378e-06
-9.31783e-07
3.69667e-06
-9.14179e-07
3.69053e-06
-8.97258e-07
3.68536e-06
-8.81011e-07
3.68116e-06
-8.65426e-07
3.67794e-06
-8.50491e-07
3.67571e-06
-8.36191e-07
3.67446e-06
-8.22516e-07
3.6742e-06
-8.09451e-07
3.67493e-06
-7.96974e-07
3.67665e-06
-7.85074e-07
3.67935e-06
-7.7372e-07
3.68304e-06
-7.62899e-07
3.68771e-06
-7.52568e-07
3.69333e-06
-7.42705e-07
3.69991e-06
-7.33271e-07
3.7074e-06
-7.24234e-07
3.71579e-06
-7.15564e-07
3.72504e-06
-7.07229e-07
3.73511e-06
-6.99213e-07
3.74596e-06
-6.91506e-07
3.75756e-06
-6.84108e-07
3.76987e-06
-6.77031e-07
3.78287e-06
-6.70292e-07
3.79654e-06
-6.63925e-07
3.81087e-06
-6.57962e-07
3.82586e-06
-6.52444e-07
3.84152e-06
-6.47406e-07
3.85788e-06
-6.4288e-07
3.87496e-06
-6.38883e-07
3.89281e-06
-6.35422e-07
3.91146e-06
-6.32482e-07
3.93095e-06
-6.30033e-07
3.9513e-06
-6.2802e-07
3.97253e-06
-6.26374e-07
3.99466e-06
-6.25009e-07
4.01768e-06
-6.23827e-07
4.04157e-06
-6.22729e-07
4.06629e-06
-6.2161e-07
4.09181e-06
-6.20374e-07
4.11805e-06
-6.18931e-07
4.14496e-06
-6.17202e-07
4.17246e-06
-6.15125e-07
4.20049e-06
-6.12652e-07
4.22895e-06
-6.0975e-07
4.25779e-06
-6.06405e-07
4.28692e-06
-6.02612e-07
4.31627e-06
-5.98391e-07
4.34579e-06
-5.93776e-07
4.37541e-06
-5.88825e-07
4.40511e-06
-5.83616e-07
4.43483e-06
-5.78241e-07
4.46458e-06
-5.72811e-07
4.49434e-06
-5.67446e-07
4.5241e-06
-5.62273e-07
4.55388e-06
-5.57415e-07
4.5837e-06
-5.52997e-07
4.61357e-06
-5.49127e-07
4.64354e-06
-5.45888e-07
4.67364e-06
-5.43334e-07
4.70391e-06
-5.41494e-07
4.7344e-06
-5.40382e-07
4.76518e-06
-5.39989e-07
4.79629e-06
-5.40272e-07
4.82777e-06
-5.41175e-07
4.85967e-06
-5.42649e-07
4.892e-06
-5.4466e-07
4.92478e-06
-5.47195e-07
4.95805e-06
-5.50281e-07
4.99187e-06
-5.53961e-07
5.02635e-06
-5.58286e-07
5.06163e-06
-5.63264e-07
5.09787e-06
-5.68824e-07
5.13522e-06
-5.74783e-07
5.17377e-06
-5.80816e-07
5.21352e-06
-5.86436e-07
5.25427e-06
-5.91093e-07
5.29569e-06
-5.94286e-07
5.33736e-06
-5.95703e-07
5.37883e-06
-5.95348e-07
5.41976e-06
-5.93538e-07
5.46e-06
-5.90804e-07
5.49956e-06
-5.8774e-07
5.53858e-06
-5.8481e-07
5.57725e-06
-5.82251e-07
5.61569e-06
-5.80048e-07
5.65392e-06
-5.78075e-07
5.69187e-06
-5.76218e-07
5.72936e-06
-5.7445e-07
5.76625e-06
-5.72959e-07
5.80254e-06
-5.72133e-07
5.83825e-06
-5.72383e-07
5.87347e-06
-5.74067e-07
5.90843e-06
-5.77544e-07
5.94338e-06
-5.8305e-07
5.97866e-06
-5.90707e-07
6.01459e-06
-6.00453e-07
6.05148e-06
-6.12123e-07
6.08961e-06
-6.25414e-07
6.12918e-06
-6.40008e-07
6.17024e-06
-6.55572e-07
6.21273e-06
-6.71802e-07
6.25641e-06
-6.88901e-07
6.30111e-06
-7.06773e-07
6.34669e-06
-7.27433e-07
6.39329e-06
-7.49219e-07
6.44118e-06
-7.78498e-07
6.48998e-06
-8.0456e-07
6.54215e-06
-8.5137e-07
-8.70255e-07
6.59029e-06
7.08751e-06
-3.69191e-07
7.09013e-06
-3.78274e-07
7.08987e-06
-3.8549e-07
7.08899e-06
-3.92657e-07
7.08917e-06
-4.00882e-07
7.0882e-06
-4.06876e-07
7.08095e-06
-4.02672e-07
7.06766e-06
-3.86139e-07
7.05882e-06
-3.72605e-07
7.05942e-06
-3.74147e-07
7.05348e-06
-3.51422e-07
7.03603e-06
-2.62016e-07
7.04616e-06
-2.15627e-07
7.08462e-06
-3.06621e-07
7.09569e-06
-1.69042e-07
7.14716e-06
3.72184e-07
7.26787e-06
5.43592e-07
7.33865e-06
5.2642e-08
7.33068e-06
-5.84898e-07
7.2817e-06
-1.04577e-06
7.21621e-06
-1.32185e-06
7.14283e-06
-1.48161e-06
7.06427e-06
-1.57734e-06
6.982e-06
-1.63814e-06
6.89741e-06
-1.67868e-06
6.81175e-06
-1.70631e-06
6.72615e-06
-1.72479e-06
6.64148e-06
-1.73625e-06
6.55838e-06
-1.74201e-06
6.47728e-06
-1.74299e-06
6.39848e-06
-1.73995e-06
6.32223e-06
-1.73351e-06
6.24866e-06
-1.72426e-06
6.17787e-06
-1.71268e-06
6.10986e-06
-1.69918e-06
6.04463e-06
-1.68408e-06
5.98209e-06
-1.66765e-06
5.92221e-06
-1.65011e-06
5.86488e-06
-1.63159e-06
5.81e-06
-1.61227e-06
5.75748e-06
-1.59221e-06
5.70716e-06
-1.57152e-06
5.65894e-06
-1.55022e-06
5.61265e-06
-1.52841e-06
5.56818e-06
-1.50608e-06
5.52535e-06
-1.48331e-06
5.48406e-06
-1.46007e-06
5.44413e-06
-1.43647e-06
5.40548e-06
-1.41248e-06
5.36796e-06
-1.38819e-06
5.33148e-06
-1.36361e-06
5.29594e-06
-1.33882e-06
5.26127e-06
-1.31385e-06
5.2274e-06
-1.28877e-06
5.19427e-06
-1.26364e-06
5.16185e-06
-1.23854e-06
5.13012e-06
-1.21353e-06
5.09906e-06
-1.18871e-06
5.06868e-06
-1.16413e-06
5.03901e-06
-1.13989e-06
5.01007e-06
-1.11606e-06
4.9819e-06
-1.09274e-06
4.95456e-06
-1.06997e-06
4.92809e-06
-1.04784e-06
4.90255e-06
-1.02637e-06
4.878e-06
-1.00562e-06
4.85447e-06
-9.85589e-07
4.83203e-06
-9.66297e-07
4.8107e-06
-9.47733e-07
4.79051e-06
-9.29893e-07
4.77149e-06
-9.12762e-07
4.75365e-06
-8.9634e-07
4.73699e-06
-8.80607e-07
4.72154e-06
-8.65563e-07
4.7073e-06
-8.51185e-07
4.69427e-06
-8.37465e-07
4.68246e-06
-8.24388e-07
4.67188e-06
-8.11941e-07
4.66253e-06
-8.00106e-07
4.65441e-06
-7.8887e-07
4.64754e-06
-7.78206e-07
4.64191e-06
-7.68098e-07
4.63752e-06
-7.58509e-07
4.63436e-06
-7.49409e-07
4.63241e-06
-7.40757e-07
4.63165e-06
-7.3251e-07
4.63205e-06
-7.24628e-07
4.63356e-06
-7.17068e-07
4.63613e-06
-7.09792e-07
4.6397e-06
-7.0278e-07
4.64422e-06
-6.9601e-07
4.64961e-06
-6.89498e-07
4.65583e-06
-6.83242e-07
4.66282e-06
-6.77292e-07
4.67057e-06
-6.7167e-07
4.67905e-06
-6.66444e-07
4.68826e-06
-6.61653e-07
4.69821e-06
-6.57362e-07
4.70894e-06
-6.5361e-07
4.72048e-06
-6.50431e-07
4.73289e-06
-6.4784e-07
4.74623e-06
-6.45822e-07
4.76054e-06
-6.44344e-07
4.77585e-06
-6.43344e-07
4.79221e-06
-6.42739e-07
4.80962e-06
-6.4242e-07
4.82806e-06
-6.42275e-07
4.84751e-06
-6.42176e-07
4.86791e-06
-6.42003e-07
4.88917e-06
-6.4164e-07
4.91123e-06
-6.40983e-07
4.93398e-06
-6.39945e-07
4.95731e-06
-6.38453e-07
4.98112e-06
-6.3646e-07
5.00531e-06
-6.3393e-07
5.02975e-06
-6.3085e-07
5.05437e-06
-6.27222e-07
5.07905e-06
-6.2307e-07
5.10371e-06
-6.18441e-07
5.12829e-06
-6.13407e-07
5.15274e-06
-6.08062e-07
5.17702e-06
-6.02518e-07
5.2011e-06
-5.96896e-07
5.22499e-06
-5.91332e-07
5.24867e-06
-5.85954e-07
5.27215e-06
-5.80893e-07
5.29543e-06
-5.76273e-07
5.31851e-06
-5.72206e-07
5.3414e-06
-5.68775e-07
5.36411e-06
-5.66045e-07
5.38667e-06
-5.64053e-07
5.40913e-06
-5.62835e-07
5.43154e-06
-5.62394e-07
5.45397e-06
-5.62692e-07
5.47648e-06
-5.63662e-07
5.49909e-06
-5.65248e-07
5.52184e-06
-5.67385e-07
5.54474e-06
-5.7006e-07
5.56779e-06
-5.733e-07
5.59106e-06
-5.77203e-07
5.61468e-06
-5.81875e-07
5.63884e-06
-5.87408e-07
5.66381e-06
-5.93784e-07
5.68987e-06
-6.00838e-07
5.71722e-06
-6.08186e-07
5.74594e-06
-6.15165e-07
5.7758e-06
-6.20973e-07
5.80633e-06
-6.24832e-07
5.83686e-06
-6.26248e-07
5.86671e-06
-6.25201e-07
5.89533e-06
-6.22156e-07
5.92248e-06
-6.17945e-07
5.94823e-06
-6.13475e-07
5.97286e-06
-6.09433e-07
5.99673e-06
-6.06103e-07
6.02004e-06
-6.03353e-07
6.04284e-06
-6.00873e-07
6.065e-06
-5.98368e-07
6.08626e-06
-5.957e-07
6.10642e-06
-5.93111e-07
6.12534e-06
-5.91048e-07
6.14294e-06
-5.89969e-07
6.15923e-06
-5.90353e-07
6.17442e-06
-5.92727e-07
6.18882e-06
-5.97441e-07
6.20281e-06
-6.04697e-07
6.21682e-06
-6.14466e-07
6.23128e-06
-6.26591e-07
6.2466e-06
-6.40737e-07
6.26311e-06
-6.56524e-07
6.28098e-06
-6.73443e-07
6.30014e-06
-6.90968e-07
6.32022e-06
-7.08988e-07
6.34085e-06
-7.27408e-07
6.36168e-06
-7.48268e-07
6.38275e-06
-7.70289e-07
6.40411e-06
-7.99866e-07
6.42576e-06
-8.26221e-07
6.44926e-06
-8.74875e-07
-8.90308e-07
6.46931e-06
8.65069e-06
-3.70207e-07
8.65015e-06
-3.77741e-07
8.65078e-06
-3.86135e-07
8.6536e-06
-3.9549e-07
8.65513e-06
-4.0244e-07
8.64921e-06
-4.00972e-07
8.63572e-06
-3.89235e-07
8.62724e-06
-3.7762e-07
8.63539e-06
-3.80829e-07
8.6461e-06
-3.8478e-07
8.63486e-06
-3.40263e-07
8.62986e-06
-2.57101e-07
8.68192e-06
-2.67769e-07
8.73327e-06
-3.58339e-07
8.73678e-06
-1.72575e-07
8.83272e-06
2.75887e-07
9.02604e-06
3.5038e-07
9.1617e-06
-8.31488e-08
9.20096e-06
-6.24026e-07
9.18193e-06
-1.02669e-06
9.13453e-06
-1.27435e-06
9.07114e-06
-1.41813e-06
8.9965e-06
-1.50264e-06
8.91327e-06
-1.55483e-06
8.82363e-06
-1.58901e-06
8.72968e-06
-1.61233e-06
8.63322e-06
-1.62833e-06
8.53577e-06
-1.6388e-06
8.43851e-06
-1.64475e-06
8.34236e-06
-1.64686e-06
8.24806e-06
-1.64564e-06
8.15612e-06
-1.64158e-06
8.06697e-06
-1.63509e-06
7.98082e-06
-1.62652e-06
7.89787e-06
-1.61619e-06
7.81816e-06
-1.60435e-06
7.74176e-06
-1.59121e-06
7.66863e-06
-1.57693e-06
7.59873e-06
-1.56166e-06
7.53198e-06
-1.54546e-06
7.46822e-06
-1.52842e-06
7.40734e-06
-1.51058e-06
7.34913e-06
-1.49199e-06
7.29342e-06
-1.47266e-06
7.23997e-06
-1.45262e-06
7.18861e-06
-1.4319e-06
7.13906e-06
-1.41052e-06
7.09114e-06
-1.38853e-06
7.0446e-06
-1.36595e-06
6.99927e-06
-1.34285e-06
6.95493e-06
-1.31928e-06
6.91142e-06
-1.29531e-06
6.86859e-06
-1.27102e-06
6.82633e-06
-1.2465e-06
6.78451e-06
-1.22182e-06
6.74309e-06
-1.19711e-06
6.702e-06
-1.17244e-06
6.66123e-06
-1.14794e-06
6.6208e-06
-1.1237e-06
6.58074e-06
-1.09983e-06
6.54113e-06
-1.07644e-06
6.50203e-06
-1.05364e-06
6.46355e-06
-1.03149e-06
6.4258e-06
-1.01007e-06
6.38887e-06
-9.89431e-07
6.35286e-06
-9.69605e-07
6.31788e-06
-9.506e-07
6.284e-06
-9.32421e-07
6.25131e-06
-9.15042e-07
6.21986e-06
-8.98441e-07
6.18968e-06
-8.82594e-07
6.16082e-06
-8.67472e-07
6.13328e-06
-8.53072e-07
6.10708e-06
-8.39366e-07
6.08223e-06
-8.26348e-07
6.05876e-06
-8.13999e-07
6.03667e-06
-8.02309e-07
6.01598e-06
-7.91263e-07
5.9967e-06
-7.80845e-07
5.97886e-06
-7.71039e-07
5.96246e-06
-7.61821e-07
5.94753e-06
-7.53167e-07
5.93405e-06
-7.45037e-07
5.92203e-06
-7.37391e-07
5.91145e-06
-7.30176e-07
5.90228e-06
-7.23334e-07
5.89447e-06
-7.16809e-07
5.88795e-06
-7.10538e-07
5.88265e-06
-7.04476e-07
5.87846e-06
-6.98573e-07
5.87527e-06
-6.92825e-07
5.87301e-06
-6.87217e-07
5.87155e-06
-6.81792e-07
5.87085e-06
-6.76576e-07
5.87081e-06
-6.71647e-07
5.87144e-06
-6.67067e-07
5.8727e-06
-6.62927e-07
5.87463e-06
-6.59305e-07
5.87728e-06
-6.56274e-07
5.88073e-06
-6.53889e-07
5.88506e-06
-6.52178e-07
5.89036e-06
-6.51134e-07
5.89673e-06
-6.5072e-07
5.90424e-06
-6.50863e-07
5.91295e-06
-6.51454e-07
5.92288e-06
-6.52362e-07
5.93404e-06
-6.53429e-07
5.94636e-06
-6.54504e-07
5.95979e-06
-6.55425e-07
5.9742e-06
-6.56053e-07
5.98949e-06
-6.56263e-07
6.0055e-06
-6.55954e-07
6.02211e-06
-6.5505e-07
6.03915e-06
-6.53494e-07
6.05648e-06
-6.51257e-07
6.07395e-06
-6.48321e-07
6.09143e-06
-6.44699e-07
6.10878e-06
-6.40419e-07
6.12588e-06
-6.35543e-07
6.14264e-06
-6.30161e-07
6.15897e-06
-6.24394e-07
6.17483e-06
-6.18376e-07
6.19018e-06
-6.12246e-07
6.205e-06
-6.06146e-07
6.21926e-06
-6.00209e-07
6.23293e-06
-5.94558e-07
6.24597e-06
-5.89311e-07
6.25834e-06
-5.84573e-07
6.26999e-06
-5.80431e-07
6.28091e-06
-5.76959e-07
6.29108e-06
-5.74223e-07
6.30055e-06
-5.7229e-07
6.30937e-06
-5.71205e-07
6.31763e-06
-5.70938e-07
6.32541e-06
-5.71423e-07
6.33276e-06
-5.72567e-07
6.33968e-06
-5.74271e-07
6.34615e-06
-5.76486e-07
6.35215e-06
-5.79257e-07
6.35773e-06
-5.82738e-07
6.36305e-06
-5.87154e-07
6.3684e-06
-5.92736e-07
6.37425e-06
-5.99608e-07
6.38111e-06
-6.07702e-07
6.38953e-06
-6.16607e-07
6.39978e-06
-6.2543e-07
6.41172e-06
-6.32934e-07
6.42472e-06
-6.37851e-07
6.43775e-06
-6.39291e-07
6.44969e-06
-6.37139e-07
6.45964e-06
-6.321e-07
6.46717e-06
-6.25473e-07
6.47241e-06
-6.187e-07
6.47584e-06
-6.1285e-07
6.47804e-06
-6.08298e-07
6.47942e-06
-6.04722e-07
6.48007e-06
-6.01516e-07
6.47982e-06
-5.98102e-07
6.47833e-06
-5.94201e-07
6.47524e-06
-5.90017e-07
6.47018e-06
-5.85981e-07
6.46286e-06
-5.82639e-07
6.45318e-06
-5.80659e-07
6.44126e-06
-5.80801e-07
6.42742e-06
-5.83588e-07
6.41208e-06
-5.89357e-07
6.39578e-06
-5.98159e-07
6.37908e-06
-6.09896e-07
6.36261e-06
-6.24267e-07
6.34697e-06
-6.40879e-07
6.33256e-06
-6.59031e-07
6.3194e-06
-6.77812e-07
6.30703e-06
-6.96613e-07
6.29476e-06
-7.15146e-07
6.282e-06
-7.35503e-07
6.26851e-06
-7.56803e-07
6.25394e-06
-7.85294e-07
6.23917e-06
-8.11458e-07
6.22293e-06
-8.58637e-07
-8.77073e-07
6.20969e-06
1.05489e-05
-3.69443e-07
1.05508e-05
-3.79614e-07
1.05543e-05
-3.89609e-07
1.05542e-05
-3.95472e-07
1.05455e-05
-3.93781e-07
1.05308e-05
-3.86315e-07
1.05243e-05
-3.82718e-07
1.0539e-05
-3.92415e-07
1.05639e-05
-4.05684e-07
1.05672e-05
-3.88127e-07
1.05539e-05
-3.27082e-07
1.05917e-05
-2.94912e-07
1.06938e-05
-3.70119e-07
1.07507e-05
-4.15356e-07
1.07675e-05
-1.89604e-07
1.09142e-05
1.29061e-07
1.11584e-05
1.06076e-07
1.13414e-05
-2.66122e-07
1.1421e-05
-7.0355e-07
1.14309e-05
-1.03651e-06
1.14025e-05
-1.24581e-06
1.13508e-05
-1.36638e-06
1.12822e-05
-1.43393e-06
1.11999e-05
-1.47245e-06
1.11065e-05
-1.49559e-06
1.10046e-05
-1.51043e-06
1.08967e-05
-1.5204e-06
1.0785e-05
-1.52707e-06
1.06713e-05
-1.53111e-06
1.05573e-05
-1.5329e-06
1.04443e-05
-1.5326e-06
1.03332e-05
-1.53046e-06
1.02247e-05
-1.52657e-06
1.01193e-05
-1.52117e-06
1.00175e-05
-1.51437e-06
9.91955e-06
-1.50634e-06
9.82558e-06
-1.49718e-06
9.73568e-06
-1.48699e-06
9.64992e-06
-1.47584e-06
9.56825e-06
-1.46373e-06
9.4906e-06
-1.45073e-06
9.41684e-06
-1.43676e-06
9.34675e-06
-1.42188e-06
9.28015e-06
-1.406e-06
9.21672e-06
-1.38919e-06
9.1562e-06
-1.37134e-06
9.09823e-06
-1.35257e-06
9.04253e-06
-1.33279e-06
8.98869e-06
-1.31214e-06
8.93645e-06
-1.29058e-06
8.88542e-06
-1.26827e-06
8.83535e-06
-1.24523e-06
8.78592e-06
-1.22161e-06
8.73692e-06
-1.19748e-06
8.6881e-06
-1.17302e-06
8.63933e-06
-1.14832e-06
8.59045e-06
-1.12358e-06
8.54143e-06
-1.09891e-06
8.49222e-06
-1.07449e-06
8.44288e-06
-1.05048e-06
8.39347e-06
-1.02703e-06
8.34412e-06
-1.00428e-06
8.29496e-06
-9.82333e-07
8.24617e-06
-9.61272e-07
8.19792e-06
-9.41176e-07
8.15038e-06
-9.22049e-07
8.1037e-06
-9.0392e-07
8.05803e-06
-8.86746e-07
8.01349e-06
-8.70508e-07
7.97019e-06
-8.55141e-07
7.9282e-06
-8.40602e-07
7.88757e-06
-8.26849e-07
7.84835e-06
-8.13847e-07
7.81054e-06
-8.01573e-07
7.77419e-06
-7.90009e-07
7.73931e-06
-7.79141e-07
7.70595e-06
-7.68959e-07
7.67412e-06
-7.59452e-07
7.64386e-06
-7.50607e-07
7.61521e-06
-7.42409e-07
7.58821e-06
-7.34834e-07
7.56288e-06
-7.27854e-07
7.53926e-06
-7.21421e-07
7.51735e-06
-7.15481e-07
7.49714e-06
-7.09956e-07
7.47858e-06
-7.04764e-07
7.4616e-06
-6.99812e-07
7.44608e-06
-6.95006e-07
7.43189e-06
-6.9026e-07
7.41884e-06
-6.85509e-07
7.40676e-06
-6.80719e-07
7.39543e-06
-6.75888e-07
7.3847e-06
-6.71051e-07
7.3744e-06
-6.66279e-07
7.36442e-06
-6.61669e-07
7.35468e-06
-6.57345e-07
7.34518e-06
-6.53438e-07
7.33594e-06
-6.50088e-07
7.32706e-06
-6.47417e-07
7.31867e-06
-6.45527e-07
7.31095e-06
-6.44473e-07
7.30407e-06
-6.44268e-07
7.29821e-06
-6.44875e-07
7.29352e-06
-6.46188e-07
7.29014e-06
-6.48083e-07
7.28813e-06
-6.50354e-07
7.28751e-06
-6.52818e-07
7.28825e-06
-6.5524e-07
7.29025e-06
-6.57424e-07
7.29337e-06
-6.59173e-07
7.29745e-06
-6.60335e-07
7.30229e-06
-6.60792e-07
7.3077e-06
-6.60452e-07
7.31348e-06
-6.59274e-07
7.31945e-06
-6.57212e-07
7.3254e-06
-6.54279e-07
7.33118e-06
-6.50471e-07
7.3366e-06
-6.45847e-07
7.34153e-06
-6.40466e-07
7.34582e-06
-6.34455e-07
7.34938e-06
-6.27955e-07
7.35215e-06
-6.21136e-07
7.35407e-06
-6.14162e-07
7.35512e-06
-6.07188e-07
7.35525e-06
-6.00344e-07
7.35442e-06
-5.93725e-07
7.35253e-06
-5.87415e-07
7.34944e-06
-5.8148e-07
7.345e-06
-5.75986e-07
7.33906e-06
-5.71013e-07
7.33151e-06
-5.66671e-07
7.32232e-06
-5.63088e-07
7.31151e-06
-5.60385e-07
7.29918e-06
-5.58579e-07
7.28539e-06
-5.5761e-07
7.27019e-06
-5.57335e-07
7.25356e-06
-5.57594e-07
7.23541e-06
-5.58278e-07
7.21565e-06
-5.5944e-07
7.19428e-06
-5.61298e-07
7.17145e-06
-5.64259e-07
7.14759e-06
-5.68807e-07
7.1234e-06
-5.75383e-07
7.09991e-06
-5.84192e-07
7.07824e-06
-5.94929e-07
7.0592e-06
-6.06411e-07
7.04297e-06
-6.16744e-07
7.02891e-06
-6.23818e-07
7.01562e-06
-6.26032e-07
7.00147e-06
-6.23008e-07
6.98508e-06
-6.15709e-07
6.96568e-06
-6.06061e-07
6.94328e-06
-5.96279e-07
6.91846e-06
-5.88014e-07
6.892e-06
-5.81815e-07
6.86446e-06
-5.77169e-07
6.83612e-06
-5.73159e-07
6.8069e-06
-5.68872e-07
6.77647e-06
-5.63767e-07
6.74431e-06
-5.57842e-07
6.70977e-06
-5.51427e-07
6.67229e-06
-5.45141e-07
6.63147e-06
-5.39818e-07
6.58719e-06
-5.36509e-07
6.53963e-06
-5.36006e-07
6.48919e-06
-5.3891e-07
6.4365e-06
-5.45462e-07
6.38229e-06
-5.55683e-07
6.32739e-06
-5.69374e-07
6.27269e-06
-5.86184e-07
6.21894e-06
-6.0529e-07
6.16641e-06
-6.25286e-07
6.11472e-06
-6.44931e-07
6.06302e-06
-6.63446e-07
6.01046e-06
-6.82949e-07
5.95653e-06
-7.02879e-07
5.90041e-06
-7.29188e-07
5.84416e-06
-7.55204e-07
5.7834e-06
-7.97888e-07
-8.27891e-07
5.73421e-06
1.27774e-05
-3.66639e-07
1.27745e-05
-3.76805e-07
1.27673e-05
-3.82355e-07
1.27539e-05
-3.82235e-07
1.27402e-05
-3.80097e-07
1.27376e-05
-3.83748e-07
1.27536e-05
-3.98712e-07
1.27789e-05
-4.17922e-07
1.27924e-05
-4.19098e-07
1.27914e-05
-3.87353e-07
1.2817e-05
-3.5263e-07
1.29022e-05
-3.80219e-07
1.29991e-05
-4.67213e-07
1.30593e-05
-4.75627e-07
1.31816e-05
-3.12345e-07
1.34588e-05
-1.47941e-07
1.37753e-05
-2.10784e-07
1.39925e-05
-4.83175e-07
1.40916e-05
-8.02682e-07
1.41136e-05
-1.05838e-06
1.40929e-05
-1.22507e-06
1.40464e-05
-1.31977e-06
1.39804e-05
-1.36782e-06
1.38975e-05
-1.38952e-06
1.37999e-05
-1.39795e-06
1.36899e-05
-1.40041e-06
1.357e-05
-1.4005e-06
1.34426e-05
-1.3997e-06
1.331e-05
-1.39852e-06
1.31741e-05
-1.39701e-06
1.30366e-05
-1.39518e-06
1.28992e-05
-1.39295e-06
1.27629e-05
-1.39035e-06
1.26291e-05
-1.38735e-06
1.24987e-05
-1.38394e-06
1.23725e-05
-1.38009e-06
1.22511e-05
-1.37572e-06
1.21349e-05
-1.37077e-06
1.20243e-05
-1.36508e-06
1.19192e-05
-1.35859e-06
1.18197e-05
-1.35112e-06
1.17255e-05
-1.34261e-06
1.16366e-05
-1.33288e-06
1.15525e-05
-1.32192e-06
1.1473e-05
-1.30957e-06
1.13975e-05
-1.29588e-06
1.13257e-05
-1.28074e-06
1.12571e-05
-1.26424e-06
1.11913e-05
-1.24633e-06
1.11278e-05
-1.22711e-06
1.10662e-05
-1.20663e-06
1.10059e-05
-1.185e-06
1.09466e-05
-1.16231e-06
1.08879e-05
-1.13873e-06
1.08293e-05
-1.11441e-06
1.07705e-05
-1.08954e-06
1.07112e-05
-1.06433e-06
1.06513e-05
-1.03901e-06
1.05906e-05
-1.0138e-06
1.05291e-05
-9.88959e-07
1.04668e-05
-9.64696e-07
1.04037e-05
-9.41235e-07
1.03402e-05
-9.18739e-07
1.02762e-05
-8.97364e-07
1.02123e-05
-8.77183e-07
1.01485e-05
-8.58253e-07
1.00851e-05
-8.40558e-07
1.00224e-05
-8.24065e-07
9.96064e-06
-8.087e-07
9.89988e-06
-7.94377e-07
9.84029e-06
-7.81011e-07
9.78196e-06
-7.68522e-07
9.72495e-06
-7.56853e-07
9.66932e-06
-7.45959e-07
9.61511e-06
-7.35822e-07
9.56237e-06
-7.26427e-07
9.51116e-06
-7.17776e-07
9.46155e-06
-7.09865e-07
9.4136e-06
-7.02692e-07
9.36742e-06
-6.9625e-07
9.32309e-06
-6.90522e-07
9.2807e-06
-6.85481e-07
9.24034e-06
-6.81069e-07
9.20207e-06
-6.77213e-07
9.16592e-06
-6.73796e-07
9.13187e-06
-6.70687e-07
9.0998e-06
-6.67725e-07
9.06957e-06
-6.64743e-07
9.04092e-06
-6.61584e-07
9.01355e-06
-6.58115e-07
8.98711e-06
-6.54258e-07
8.96122e-06
-6.4998e-07
8.9355e-06
-6.45327e-07
8.90961e-06
-6.40392e-07
8.88326e-06
-6.35337e-07
8.85626e-06
-6.30358e-07
8.82848e-06
-6.25689e-07
8.79992e-06
-6.21569e-07
8.77069e-06
-6.18226e-07
8.74098e-06
-6.15856e-07
8.71107e-06
-6.14586e-07
8.68125e-06
-6.1449e-07
8.65188e-06
-6.15518e-07
8.62324e-06
-6.17587e-07
8.59563e-06
-6.20475e-07
8.56922e-06
-6.23963e-07
8.54413e-06
-6.27732e-07
8.52038e-06
-6.3149e-07
8.49789e-06
-6.34925e-07
8.47649e-06
-6.37771e-07
8.45599e-06
-6.39826e-07
8.43614e-06
-6.40932e-07
8.41671e-06
-6.41019e-07
8.39747e-06
-6.40025e-07
8.3782e-06
-6.37951e-07
8.35871e-06
-6.34775e-07
8.33875e-06
-6.30528e-07
8.31815e-06
-6.25243e-07
8.2967e-06
-6.19026e-07
8.27428e-06
-6.12035e-07
8.25081e-06
-6.04493e-07
8.22632e-06
-5.96637e-07
8.20087e-06
-5.887e-07
8.17456e-06
-5.80872e-07
8.14749e-06
-5.73266e-07
8.11969e-06
-5.65919e-07
8.0911e-06
-5.58817e-07
8.06155e-06
-5.51932e-07
8.03082e-06
-5.45251e-07
7.99864e-06
-5.38828e-07
7.96478e-06
-5.32796e-07
7.92904e-06
-5.27344e-07
7.89132e-06
-5.22641e-07
7.85151e-06
-5.18758e-07
7.80955e-06
-5.15613e-07
7.76526e-06
-5.13007e-07
7.71839e-06
-5.10669e-07
7.6686e-06
-5.08428e-07
7.61554e-06
-5.06298e-07
7.5589e-06
-5.04583e-07
7.49859e-06
-5.03866e-07
7.43486e-06
-5.05013e-07
7.36853e-06
-5.09013e-07
7.30106e-06
-5.16692e-07
7.23433e-06
-5.28197e-07
7.17019e-06
-5.42279e-07
7.10978e-06
-5.56363e-07
7.05325e-06
-5.67308e-07
6.99974e-06
-5.72542e-07
6.94783e-06
-5.71108e-07
6.89599e-06
-5.63865e-07
6.84297e-06
-5.53027e-07
6.78799e-06
-5.41293e-07
6.73084e-06
-5.30844e-07
6.67168e-06
-5.22646e-07
6.61102e-06
-5.16493e-07
6.54941e-06
-5.11546e-07
6.48734e-06
-5.06785e-07
6.42494e-06
-5.01359e-07
6.36194e-06
-4.94834e-07
6.29769e-06
-4.87159e-07
6.23136e-06
-4.78796e-07
6.16214e-06
-4.70586e-07
6.08943e-06
-4.6378e-07
6.01293e-06
-4.59489e-07
5.9327e-06
-4.58673e-07
5.84906e-06
-4.61816e-07
5.76257e-06
-4.69176e-07
5.67397e-06
-4.80764e-07
5.58424e-06
-4.96456e-07
5.49448e-06
-5.15522e-07
5.40547e-06
-5.36267e-07
5.31745e-06
-5.56905e-07
5.2301e-06
-5.761e-07
5.14269e-06
-5.95529e-07
5.05451e-06
-6.14698e-07
4.96422e-06
-6.38895e-07
4.87393e-06
-6.64914e-07
4.77867e-06
-7.02625e-07
-7.4456e-07
4.69533e-06
1.55897e-05
-3.51226e-07
1.55722e-05
-3.59292e-07
1.55532e-05
-3.63388e-07
1.55375e-05
-3.66559e-07
1.55312e-05
-3.73871e-07
1.55362e-05
-3.88777e-07
1.55465e-05
-4.09137e-07
1.55546e-05
-4.2607e-07
1.55649e-05
-4.29545e-07
1.55981e-05
-4.20539e-07
1.56646e-05
-4.19238e-07
1.57353e-05
-4.50951e-07
1.57775e-05
-5.09447e-07
1.58451e-05
-5.43549e-07
1.60519e-05
-5.1912e-07
1.63936e-05
-4.90003e-07
1.67259e-05
-5.42995e-07
1.6936e-05
-6.93504e-07
1.70223e-05
-8.88772e-07
1.70342e-05
-1.07029e-06
1.70158e-05
-1.20653e-06
1.69878e-05
-1.29174e-06
1.69543e-05
-1.33419e-06
1.69112e-05
-1.34646e-06
1.68534e-05
-1.34011e-06
1.67769e-05
-1.32384e-06
1.66799e-05
-1.30357e-06
1.65632e-05
-1.28295e-06
1.64288e-05
-1.26426e-06
1.62805e-05
-1.24866e-06
1.6122e-05
-1.23674e-06
1.59574e-05
-1.22842e-06
1.57904e-05
-1.2234e-06
1.56241e-05
-1.22103e-06
1.54609e-05
-1.22063e-06
1.53023e-05
-1.22144e-06
1.51494e-05
-1.22279e-06
1.50029e-05
-1.22417e-06
1.48631e-05
-1.22509e-06
1.47299e-05
-1.22532e-06
1.46034e-05
-1.22455e-06
1.44836e-05
-1.22268e-06
1.43702e-05
-1.21944e-06
1.42631e-05
-1.21476e-06
1.41619e-05
-1.20843e-06
1.40664e-05
-1.20039e-06
1.39762e-05
-1.1905e-06
1.38907e-05
-1.17876e-06
1.38095e-05
-1.16511e-06
1.3732e-05
-1.14962e-06
1.36576e-05
-1.13231e-06
1.35859e-05
-1.11329e-06
1.35162e-05
-1.09264e-06
1.3448e-05
-1.07051e-06
1.33806e-05
-1.04704e-06
1.33135e-05
-1.02244e-06
1.32461e-05
-9.96922e-07
1.31778e-05
-9.70754e-07
1.31083e-05
-9.44238e-07
1.3037e-05
-9.17711e-07
1.29638e-05
-8.91525e-07
1.28887e-05
-8.66029e-07
1.28115e-05
-8.41542e-07
1.27325e-05
-8.18345e-07
1.26519e-05
-7.96617e-07
1.25701e-05
-7.76467e-07
1.24875e-05
-7.57883e-07
1.24042e-05
-7.40826e-07
1.23207e-05
-7.25169e-07
1.22371e-05
-7.10795e-07
1.21537e-05
-6.97547e-07
1.20705e-05
-6.85323e-07
1.19876e-05
-6.74031e-07
1.19053e-05
-6.63645e-07
1.18236e-05
-6.5416e-07
1.17427e-05
-6.45589e-07
1.16628e-05
-6.37952e-07
1.15842e-05
-6.31259e-07
1.1507e-05
-6.25533e-07
1.14315e-05
-6.20789e-07
1.1358e-05
-6.17048e-07
1.12868e-05
-6.14306e-07
1.12182e-05
-6.12521e-07
1.11526e-05
-6.11598e-07
1.10902e-05
-6.11369e-07
1.10312e-05
-6.1161e-07
1.09755e-05
-6.12029e-07
1.09231e-05
-6.12286e-07
1.08736e-05
-6.12034e-07
1.08264e-05
-6.10949e-07
1.0781e-05
-6.08793e-07
1.07365e-05
-6.05414e-07
1.06919e-05
-6.00794e-07
1.06466e-05
-5.9502e-07
1.05995e-05
-5.88315e-07
1.05501e-05
-5.80995e-07
1.04978e-05
-5.73469e-07
1.04424e-05
-5.66185e-07
1.03837e-05
-5.59607e-07
1.0322e-05
-5.54158e-07
1.02575e-05
-5.50186e-07
1.01909e-05
-5.47911e-07
1.01227e-05
-5.47413e-07
1.00537e-05
-5.48607e-07
9.98448e-06
-5.5128e-07
9.9156e-06
-5.55086e-07
9.84746e-06
-5.596e-07
9.78033e-06
-5.64352e-07
9.71431e-06
-5.68887e-07
9.64937e-06
-5.7282e-07
9.58541e-06
-5.75845e-07
9.52225e-06
-5.7777e-07
9.45972e-06
-5.78475e-07
9.3976e-06
-5.77895e-07
9.33566e-06
-5.76009e-07
9.27366e-06
-5.72785e-07
9.21138e-06
-5.68252e-07
9.14859e-06
-5.6246e-07
9.08512e-06
-5.55572e-07
9.0209e-06
-5.47819e-07
8.95591e-06
-5.39512e-07
8.89026e-06
-5.30977e-07
8.8241e-06
-5.22535e-07
8.75771e-06
-5.14466e-07
8.69137e-06
-5.0692e-07
8.62539e-06
-4.99925e-07
8.55998e-06
-4.93403e-07
8.49528e-06
-4.87225e-07
8.4313e-06
-4.81255e-07
8.36791e-06
-4.75432e-07
8.3049e-06
-4.69775e-07
8.24194e-06
-4.64373e-07
8.17863e-06
-4.59314e-07
8.11449e-06
-4.54601e-07
8.04898e-06
-4.50075e-07
7.98147e-06
-4.45457e-07
7.91121e-06
-4.40366e-07
7.83737e-06
-4.34535e-07
7.75899e-06
-4.27856e-07
7.67503e-06
-4.20546e-07
7.58451e-06
-4.13269e-07
7.48687e-06
-4.07298e-07
7.38233e-06
-4.04406e-07
7.27218e-06
-4.06495e-07
7.15871e-06
-4.14696e-07
7.04476e-06
-4.28309e-07
6.93315e-06
-4.4476e-07
6.82643e-06
-4.60609e-07
6.72653e-06
-4.7266e-07
6.63432e-06
-4.78909e-07
6.54932e-06
-4.78862e-07
6.46959e-06
-4.73298e-07
6.39227e-06
-4.63949e-07
6.3145e-06
-4.53054e-07
6.23456e-06
-4.42686e-07
6.15223e-06
-4.34148e-07
6.06842e-06
-4.27718e-07
5.98457e-06
-4.22923e-07
5.90187e-06
-4.18647e-07
5.82074e-06
-4.13695e-07
5.74075e-06
-4.07155e-07
5.66088e-06
-3.98898e-07
5.5797e-06
-3.89388e-07
5.4958e-06
-3.79852e-07
5.40807e-06
-3.7174e-07
5.31595e-06
-3.66525e-07
5.21932e-06
-3.65172e-07
5.1185e-06
-3.68337e-07
5.01397e-06
-3.76224e-07
4.90647e-06
-3.88936e-07
4.79706e-06
-4.06109e-07
4.68706e-06
-4.26265e-07
4.57769e-06
-4.4753e-07
4.46934e-06
-4.67744e-07
4.36134e-06
-4.87528e-07
4.25294e-06
-5.06291e-07
4.14279e-06
-5.28755e-07
4.03255e-06
-5.54672e-07
3.91873e-06
-5.88803e-07
-6.40706e-07
3.81488e-06
1.90217e-05
-3.396e-07
1.90142e-05
-3.51831e-07
1.90125e-05
-3.61761e-07
1.9016e-05
-3.69997e-07
1.90204e-05
-3.78417e-07
1.90209e-05
-3.8929e-07
1.90157e-05
-4.03987e-07
1.90112e-05
-4.21539e-07
1.90202e-05
-4.38588e-07
1.90517e-05
-4.52035e-07
1.90963e-05
-4.63874e-07
1.91281e-05
-4.82848e-07
1.91359e-05
-5.17156e-07
1.91554e-05
-5.63319e-07
1.92451e-05
-6.08754e-07
1.94046e-05
-6.49813e-07
1.95602e-05
-6.98564e-07
1.96345e-05
-7.679e-07
1.96035e-05
-8.57606e-07
1.94891e-05
-9.55844e-07
1.93322e-05
-1.04953e-06
1.91718e-05
-1.13122e-06
1.90368e-05
-1.19925e-06
1.89443e-05
-1.25401e-06
1.88993e-05
-1.29518e-06
1.88964e-05
-1.32105e-06
1.89224e-05
-1.32962e-06
1.89594e-05
-1.32021e-06
1.89898e-05
-1.29462e-06
1.89982e-05
-1.25735e-06
1.8976e-05
-1.21441e-06
1.89193e-05
-1.17195e-06
1.88307e-05
-1.13455e-06
1.87144e-05
-1.10479e-06
1.85772e-05
-1.08317e-06
1.84249e-05
-1.06899e-06
1.82632e-05
-1.06096e-06
1.8097e-05
-1.05772e-06
1.793e-05
-1.05808e-06
1.77658e-05
-1.0609e-06
1.76065e-05
-1.06521e-06
1.7454e-05
-1.07e-06
1.73089e-05
-1.07437e-06
1.71717e-05
-1.07751e-06
1.7042e-05
-1.07878e-06
1.69194e-05
-1.07776e-06
1.68031e-05
-1.07422e-06
1.66925e-05
-1.06812e-06
1.65869e-05
-1.05951e-06
1.64858e-05
-1.04853e-06
1.63888e-05
-1.03535e-06
1.62957e-05
-1.02015e-06
1.62061e-05
-1.00312e-06
1.612e-05
-9.84444e-07
1.60372e-05
-9.64264e-07
1.59575e-05
-9.42712e-07
1.58805e-05
-9.19886e-07
1.58056e-05
-8.95898e-07
1.57322e-05
-8.70871e-07
1.56595e-05
-8.44986e-07
1.55865e-05
-8.18473e-07
1.55121e-05
-7.91644e-07
1.54354e-05
-7.64859e-07
1.53556e-05
-7.38551e-07
1.52721e-05
-7.13095e-07
1.51845e-05
-6.88802e-07
1.50925e-05
-6.6585e-07
1.4996e-05
-6.44338e-07
1.48951e-05
-6.24263e-07
1.47899e-05
-6.05591e-07
1.46806e-05
-5.88231e-07
1.45673e-05
-5.7209e-07
1.44504e-05
-5.57125e-07
1.433e-05
-5.43337e-07
1.42066e-05
-5.30764e-07
1.40803e-05
-5.19407e-07
1.39516e-05
-5.09325e-07
1.38209e-05
-5.00543e-07
1.36884e-05
-4.93198e-07
1.3555e-05
-4.87404e-07
1.34213e-05
-4.8338e-07
1.32882e-05
-4.8129e-07
1.31569e-05
-4.81274e-07
1.30287e-05
-4.83372e-07
1.29048e-05
-4.87451e-07
1.27865e-05
-4.93279e-07
1.26749e-05
-5.00353e-07
1.25708e-05
-5.08089e-07
1.24745e-05
-5.1567e-07
1.2386e-05
-5.22319e-07
1.23045e-05
-5.27247e-07
1.22289e-05
-5.29818e-07
1.21577e-05
-5.29586e-07
1.20889e-05
-5.26277e-07
1.20205e-05
-5.19945e-07
1.19503e-05
-5.10808e-07
1.18762e-05
-4.99451e-07
1.17964e-05
-4.86548e-07
1.17097e-05
-4.73001e-07
1.16152e-05
-4.59682e-07
1.15124e-05
-4.47475e-07
1.14015e-05
-4.37112e-07
1.12832e-05
-4.29155e-07
1.11584e-05
-4.23942e-07
1.10287e-05
-4.21546e-07
1.08954e-05
-4.21794e-07
1.076e-05
-4.24226e-07
1.06239e-05
-4.2823e-07
1.04881e-05
-4.33075e-07
1.03534e-05
-4.381e-07
1.02203e-05
-4.42731e-07
1.00892e-05
-4.46589e-07
9.96012e-06
-4.49409e-07
9.83328e-06
-4.51066e-07
9.7087e-06
-4.51409e-07
9.58625e-06
-4.50352e-07
9.46577e-06
-4.47768e-07
9.34695e-06
-4.43657e-07
9.22944e-06
-4.38071e-07
9.11282e-06
-4.31218e-07
8.99673e-06
-4.23422e-07
8.88088e-06
-4.15124e-07
8.7652e-06
-4.06844e-07
8.64983e-06
-3.9908e-07
8.53514e-06
-3.92228e-07
8.42177e-06
-3.86538e-07
8.3105e-06
-3.8212e-07
8.20221e-06
-3.78927e-07
8.09774e-06
-3.76771e-07
7.99768e-06
-3.75366e-07
7.90235e-06
-3.7443e-07
7.81172e-06
-3.73739e-07
7.72558e-06
-3.73165e-07
7.64357e-06
-3.72578e-07
7.56527e-06
-3.71769e-07
7.49023e-06
-3.70405e-07
7.41791e-06
-3.68025e-07
7.34741e-06
-3.6401e-07
7.27718e-06
-3.57603e-07
7.20477e-06
-3.48092e-07
7.12674e-06
-3.35195e-07
7.0391e-06
-3.1961e-07
6.93803e-06
-3.0329e-07
6.8209e-06
-2.89326e-07
6.68721e-06
-2.80969e-07
6.53934e-06
-2.8041e-07
6.38312e-06
-2.88528e-07
6.22737e-06
-3.04848e-07
6.08156e-06
-3.26835e-07
5.95278e-06
-3.50122e-07
5.84351e-06
-3.69591e-07
5.75091e-06
-3.80683e-07
5.66833e-06
-3.81366e-07
5.58856e-06
-3.73273e-07
5.50673e-06
-3.60859e-07
5.42144e-06
-3.48846e-07
5.3339e-06
-3.40171e-07
5.2466e-06
-3.35627e-07
5.16193e-06
-3.33969e-07
5.08134e-06
-3.33098e-07
5.00502e-06
-3.30828e-07
4.932e-06
-3.25873e-07
4.86034e-06
-3.17726e-07
4.78777e-06
-3.07268e-07
4.71208e-06
-2.96031e-07
4.63159e-06
-2.86023e-07
4.5452e-06
-2.78771e-07
4.45245e-06
-2.75567e-07
4.35322e-06
-2.76981e-07
4.24797e-06
-2.83668e-07
4.13795e-06
-2.96073e-07
4.02534e-06
-3.13636e-07
3.91231e-06
-3.34494e-07
3.79974e-06
-3.55157e-07
3.68708e-06
-3.74864e-07
3.57363e-06
-3.92829e-07
3.45798e-06
-4.13096e-07
3.3413e-06
-4.37989e-07
3.22083e-06
-4.68335e-07
-5.29615e-07
3.10974e-06
2.29785e-05
-3.08311e-07
2.29517e-05
-3.25021e-07
2.29308e-05
-3.4094e-07
2.29159e-05
-3.551e-07
2.29051e-05
-3.67635e-07
2.28951e-05
-3.79366e-07
2.28825e-05
-3.9141e-07
2.28657e-05
-4.04708e-07
2.28468e-05
-4.19694e-07
2.2831e-05
-4.36288e-07
2.28214e-05
-4.54314e-07
2.28126e-05
-4.74145e-07
2.27923e-05
-4.96789e-07
2.27519e-05
-5.23171e-07
2.26969e-05
-5.53607e-07
2.26346e-05
-5.8807e-07
2.2562e-05
-6.2582e-07
2.24588e-05
-6.65305e-07
2.23062e-05
-7.04884e-07
2.2094e-05
-7.44096e-07
2.18285e-05
-7.83907e-07
2.15229e-05
-8.2587e-07
2.11945e-05
-8.70777e-07
2.0858e-05
-9.17468e-07
2.0526e-05
-9.63101e-07
2.02091e-05
-1.00407e-06
1.99167e-05
-1.0371e-06
1.96568e-05
-1.06022e-06
1.94361e-05
-1.07374e-06
1.9259e-05
-1.08026e-06
1.91288e-05
-1.08391e-06
1.90456e-05
-1.08888e-06
1.9009e-05
-1.0977e-06
1.90146e-05
-1.11039e-06
1.90559e-05
-1.12435e-06
1.91225e-05
-1.13552e-06
1.92015e-05
-1.13983e-06
1.92788e-05
-1.13487e-06
1.93417e-05
-1.12086e-06
1.93812e-05
-1.10016e-06
1.93922e-05
-1.07613e-06
1.9374e-05
-1.05154e-06
1.93279e-05
-1.02823e-06
1.92578e-05
-1.00715e-06
1.91676e-05
-9.886e-07
1.90625e-05
-9.72444e-07
1.89463e-05
-9.58055e-07
1.88228e-05
-9.44466e-07
1.86939e-05
-9.3065e-07
1.85614e-05
-9.1595e-07
1.84259e-05
-8.9994e-07
1.82884e-05
-8.82595e-07
1.81492e-05
-8.63983e-07
1.80092e-05
-8.44408e-07
1.7869e-05
-8.24084e-07
1.77296e-05
-8.033e-07
1.75919e-05
-7.82183e-07
1.74569e-05
-7.61012e-07
1.73261e-05
-7.40037e-07
1.72007e-05
-7.19583e-07
1.70821e-05
-6.99884e-07
1.69716e-05
-6.8115e-07
1.68701e-05
-6.63354e-07
1.6778e-05
-6.4643e-07
1.66951e-05
-6.30181e-07
1.66205e-05
-6.1424e-07
1.65527e-05
-5.98041e-07
1.64896e-05
-5.81135e-07
1.64284e-05
-5.63141e-07
1.63666e-05
-5.43737e-07
1.63008e-05
-5.22442e-07
1.62277e-05
-4.99044e-07
1.61442e-05
-4.73569e-07
1.60473e-05
-4.46591e-07
1.59353e-05
-4.18812e-07
1.5807e-05
-3.91212e-07
1.56621e-05
-3.64482e-07
1.55005e-05
-3.39121e-07
1.53225e-05
-3.15406e-07
1.51287e-05
-2.93709e-07
1.49199e-05
-2.74743e-07
1.46978e-05
-2.59237e-07
1.44647e-05
-2.4827e-07
1.42238e-05
-2.42439e-07
1.39788e-05
-2.4247e-07
1.37342e-05
-2.48435e-07
1.34943e-05
-2.60445e-07
1.32643e-05
-2.77832e-07
1.30482e-05
-2.9945e-07
1.28499e-05
-3.23889e-07
1.26722e-05
-3.4933e-07
1.25164e-05
-3.7412e-07
1.2383e-05
-3.96038e-07
1.22701e-05
-4.13519e-07
1.2175e-05
-4.24744e-07
1.20929e-05
-4.28939e-07
1.20188e-05
-4.25442e-07
1.19467e-05
-4.14629e-07
1.18707e-05
-3.97176e-07
1.17853e-05
-3.74495e-07
1.16862e-05
-3.4846e-07
1.15702e-05
-3.21261e-07
1.14361e-05
-2.95189e-07
1.12843e-05
-2.72192e-07
1.11166e-05
-2.53886e-07
1.0936e-05
-2.4112e-07
1.07458e-05
-2.34077e-07
1.05498e-05
-2.32159e-07
1.03511e-05
-2.34378e-07
1.01525e-05
-2.39507e-07
9.95621e-06
-2.46435e-07
9.76376e-06
-2.54112e-07
9.57609e-06
-2.61743e-07
9.39375e-06
-2.68703e-07
9.21697e-06
-2.74642e-07
9.04603e-06
-2.79398e-07
8.88122e-06
-2.82966e-07
8.72279e-06
-2.85221e-07
8.5706e-06
-2.85894e-07
8.42399e-06
-2.84621e-07
8.28174e-06
-2.81166e-07
8.14224e-06
-2.75629e-07
8.00404e-06
-2.68621e-07
7.8661e-06
-2.61125e-07
7.7281e-06
-2.54212e-07
7.59039e-06
-2.48806e-07
7.45383e-06
-2.45533e-07
7.31953e-06
-2.44605e-07
7.18871e-06
-2.45935e-07
7.06256e-06
-2.49193e-07
6.94207e-06
-2.53929e-07
6.82796e-06
-2.59625e-07
6.72064e-06
-2.65847e-07
6.62039e-06
-2.72339e-07
6.52767e-06
-2.79054e-07
6.44341e-06
-2.86157e-07
6.369e-06
-2.93625e-07
6.30557e-06
-3.00596e-07
6.25308e-06
-3.05111e-07
6.20931e-06
-3.04323e-07
6.1692e-06
-2.95067e-07
6.12509e-06
-2.75464e-07
6.0678e-06
-2.45954e-07
5.98884e-06
-2.10297e-07
5.8829e-06
-1.74958e-07
5.75043e-06
-1.47858e-07
5.59835e-06
-1.36387e-07
5.43849e-06
-1.44939e-07
5.28419e-06
-1.72503e-07
5.14588e-06
-2.11795e-07
5.0282e-06
-2.51895e-07
4.92945e-06
-2.81925e-07
4.84371e-06
-2.95603e-07
4.76398e-06
-2.93532e-07
4.68499e-06
-2.81852e-07
4.60443e-06
-2.68263e-07
4.52255e-06
-2.58276e-07
4.44111e-06
-2.54175e-07
4.36225e-06
-2.55092e-07
4.28777e-06
-2.58609e-07
4.21858e-06
-2.61625e-07
4.15446e-06
-2.61735e-07
4.09394e-06
-2.57188e-07
4.03478e-06
-2.48081e-07
3.97425e-06
-2.35484e-07
3.91021e-06
-2.21951e-07
3.84108e-06
-2.09616e-07
3.76597e-06
-2.00426e-07
3.68409e-06
-1.95065e-07
3.59509e-06
-1.94633e-07
3.49957e-06
-2.00527e-07
3.39948e-06
-2.1352e-07
3.29692e-06
-2.31924e-07
3.19282e-06
-2.51034e-07
3.08697e-06
-2.69003e-07
2.97919e-06
-2.85029e-07
2.86834e-06
-3.02235e-07
2.75594e-06
-3.25577e-07
2.64008e-06
-3.52456e-07
-4.21779e-07
2.53226e-06
1.66679e-05
-2.70815e-07
1.66305e-05
-2.87615e-07
1.6594e-05
-3.04467e-07
1.65599e-05
-3.20906e-07
1.65289e-05
-3.36664e-07
1.65012e-05
-3.51649e-07
1.64758e-05
-3.65962e-07
1.64509e-05
-3.79887e-07
1.64251e-05
-3.93767e-07
1.63967e-05
-4.07985e-07
1.63653e-05
-4.22811e-07
1.63297e-05
-4.38615e-07
1.62887e-05
-4.55688e-07
1.62398e-05
-4.74422e-07
1.61813e-05
-4.9492e-07
1.61105e-05
-5.17665e-07
1.60277e-05
-5.42828e-07
1.59325e-05
-5.70553e-07
1.58278e-05
-5.99924e-07
1.57133e-05
-6.29961e-07
1.55889e-05
-6.59174e-07
1.54494e-05
-6.86699e-07
1.52905e-05
-7.11406e-07
1.51058e-05
-7.32993e-07
1.48948e-05
-7.51726e-07
1.46591e-05
-7.68384e-07
1.44054e-05
-7.83121e-07
1.41416e-05
-7.96403e-07
1.38767e-05
-8.08573e-07
1.36164e-05
-8.20128e-07
1.33642e-05
-8.31487e-07
1.31184e-05
-8.43226e-07
1.28764e-05
-8.55574e-07
1.26346e-05
-8.68525e-07
1.2392e-05
-8.81621e-07
1.21512e-05
-8.94551e-07
1.1919e-05
-9.07461e-07
1.17059e-05
-9.21595e-07
1.15242e-05
-9.39001e-07
1.13858e-05
-9.61552e-07
1.12993e-05
-9.89525e-07
1.12684e-05
-1.02026e-06
1.12888e-05
-1.04862e-06
1.13497e-05
-1.06751e-06
1.14324e-05
-1.07152e-06
1.15194e-05
-1.05898e-06
1.15949e-05
-1.03374e-06
1.16515e-05
-1.00067e-06
1.16851e-05
-9.64446e-07
1.16967e-05
-9.27203e-07
1.16867e-05
-8.90252e-07
1.16579e-05
-8.53543e-07
1.16112e-05
-8.17504e-07
1.1549e-05
-7.82009e-07
1.14722e-05
-7.47503e-07
1.13829e-05
-7.13915e-07
1.12821e-05
-6.81536e-07
1.11716e-05
-6.50379e-07
1.10522e-05
-6.20835e-07
1.09257e-05
-5.9303e-07
1.07932e-05
-5.67516e-07
1.06568e-05
-5.44627e-07
1.05181e-05
-5.24806e-07
1.03801e-05
-5.08311e-07
1.02452e-05
-4.95316e-07
1.01163e-05
-4.85191e-07
9.99522e-06
-4.77076e-07
9.88439e-06
-4.70128e-07
9.78601e-06
-4.64887e-07
9.70443e-06
-4.61957e-07
9.64362e-06
-4.61797e-07
9.60793e-06
-4.63192e-07
9.59809e-06
-4.63913e-07
9.61186e-06
-4.60296e-07
9.64236e-06
-4.49503e-07
9.6809e-06
-4.29825e-07
9.71782e-06
-4.01558e-07
9.74458e-06
-3.6613e-07
9.75439e-06
-3.25277e-07
9.74145e-06
-2.81173e-07
9.70254e-06
-2.3577e-07
9.63478e-06
-1.91897e-07
9.53835e-06
-1.51643e-07
9.41338e-06
-1.17746e-07
9.26298e-06
-9.17982e-08
9.09037e-06
-7.57989e-08
8.90083e-06
-7.06713e-08
8.69993e-06
-7.66238e-08
8.49351e-06
-9.29531e-08
8.28823e-06
-1.18197e-07
8.08966e-06
-1.50869e-07
7.90423e-06
-1.88325e-07
7.7362e-06
-2.28246e-07
7.59019e-06
-2.67293e-07
7.46798e-06
-3.02814e-07
7.37081e-06
-3.31731e-07
7.29711e-06
-3.51976e-07
7.24413e-06
-3.61783e-07
7.20723e-06
-3.60455e-07
7.18073e-06
-3.48198e-07
7.15835e-06
-3.26207e-07
7.1336e-06
-2.96695e-07
7.10089e-06
-2.62551e-07
7.05585e-06
-2.27268e-07
6.99629e-06
-1.94349e-07
6.9219e-06
-1.66798e-07
6.83423e-06
-1.4641e-07
6.73584e-06
-1.33795e-07
6.62984e-06
-1.28356e-07
6.51909e-06
-1.28764e-07
6.40592e-06
-1.33253e-07
6.29195e-06
-1.40139e-07
6.17838e-06
-1.48158e-07
6.06629e-06
-1.56608e-07
5.95694e-06
-1.65276e-07
5.85171e-06
-1.74159e-07
5.75191e-06
-1.83149e-07
5.6583e-06
-1.91606e-07
5.57073e-06
-1.98326e-07
5.48827e-06
-2.02167e-07
5.40965e-06
-2.02547e-07
5.33357e-06
-1.9956e-07
5.259e-06
-1.94044e-07
5.18519e-06
-1.87308e-07
5.11176e-06
-1.80775e-07
5.03852e-06
-1.75553e-07
4.96537e-06
-1.72368e-07
4.89238e-06
-1.71596e-07
4.81976e-06
-1.73311e-07
4.74782e-06
-1.77244e-07
4.67676e-06
-1.82865e-07
4.60659e-06
-1.89472e-07
4.53727e-06
-1.96537e-07
4.469e-06
-2.04098e-07
4.40278e-06
-2.12859e-07
4.3404e-06
-2.23829e-07
4.28418e-06
-2.3745e-07
4.2363e-06
-2.5277e-07
4.19823e-06
-2.67093e-07
4.17017e-06
-2.76309e-07
4.15034e-06
-2.75278e-07
4.13493e-06
-2.60073e-07
4.11833e-06
-2.29355e-07
4.09448e-06
-1.86426e-07
4.05839e-06
-1.38828e-07
4.00787e-06
-9.72884e-08
3.94401e-06
-7.24617e-08
3.87048e-06
-7.13749e-08
3.79249e-06
-9.44766e-08
3.71511e-06
-1.34398e-07
3.6422e-06
-1.78973e-07
3.5756e-06
-2.15318e-07
3.51509e-06
-2.35103e-07
3.45896e-06
-2.37414e-07
3.4051e-06
-2.28001e-07
3.3521e-06
-2.15268e-07
3.29934e-06
-2.05524e-07
3.24679e-06
-2.01631e-07
3.19478e-06
-2.03083e-07
3.14414e-06
-2.07977e-07
3.09596e-06
-2.13461e-07
3.05122e-06
-2.16995e-07
3.01004e-06
-2.16012e-07
2.97196e-06
-2.10011e-07
2.9359e-06
-1.99422e-07
2.90063e-06
-1.86674e-07
2.86448e-06
-1.73456e-07
2.82585e-06
-1.61783e-07
2.7832e-06
-1.52397e-07
2.73571e-06
-1.47122e-07
2.68327e-06
-1.48071e-07
2.62675e-06
-1.56988e-07
2.56718e-06
-1.72337e-07
2.50561e-06
-1.89446e-07
2.44206e-06
-2.05443e-07
2.37672e-06
-2.19684e-07
2.30787e-06
-2.33373e-07
2.23656e-06
-2.54264e-07
2.16222e-06
-2.78116e-07
-3.50445e-07
2.09088e-06
1.45083e-05
-2.27731e-07
1.44622e-05
-2.4159e-07
1.44141e-05
-2.56334e-07
1.43644e-05
-2.71255e-07
1.43138e-05
-2.86049e-07
1.42627e-05
-3.00535e-07
1.42113e-05
-3.14627e-07
1.41597e-05
-3.2828e-07
1.41075e-05
-3.41572e-07
1.40541e-05
-3.546e-07
1.39988e-05
-3.67581e-07
1.39409e-05
-3.80702e-07
1.38793e-05
-3.94274e-07
1.38135e-05
-4.08477e-07
1.37418e-05
-4.23556e-07
1.36638e-05
-4.39536e-07
1.35772e-05
-4.56563e-07
1.34814e-05
-4.74524e-07
1.33746e-05
-4.93463e-07
1.3258e-05
-5.13126e-07
1.3132e-05
-5.3353e-07
1.29999e-05
-5.54288e-07
1.28634e-05
-5.75002e-07
1.27259e-05
-5.95207e-07
1.25889e-05
-6.14671e-07
1.24532e-05
-6.32345e-07
1.23178e-05
-6.47618e-07
1.2182e-05
-6.60357e-07
1.20442e-05
-6.7063e-07
1.19028e-05
-6.78581e-07
1.17559e-05
-6.84519e-07
1.16016e-05
-6.88815e-07
1.14378e-05
-6.91867e-07
1.12634e-05
-6.94017e-07
1.10774e-05
-6.95664e-07
1.08804e-05
-6.97308e-07
1.06726e-05
-6.99715e-07
1.0455e-05
-7.03796e-07
1.02266e-05
-7.10414e-07
9.98532e-06
-7.20041e-07
9.72903e-06
-7.32801e-07
9.45833e-06
-7.49419e-07
9.18199e-06
-7.71664e-07
8.91661e-06
-8.02107e-07
8.68672e-06
-8.40984e-07
8.51169e-06
-8.84034e-07
8.40024e-06
-9.21771e-07
8.34444e-06
-9.45055e-07
8.33e-06
-9.49618e-07
8.33968e-06
-9.37096e-07
8.36105e-06
-9.11362e-07
8.3839e-06
-8.76602e-07
8.40245e-06
-8.3589e-07
8.412e-06
-7.91743e-07
8.41059e-06
-7.4601e-07
8.39652e-06
-7.00009e-07
8.36956e-06
-6.54545e-07
8.32944e-06
-6.10392e-07
8.27679e-06
-5.68182e-07
8.21202e-06
-5.28358e-07
8.13588e-06
-4.91355e-07
8.04857e-06
-4.57384e-07
7.95035e-06
-4.2651e-07
7.84092e-06
-3.98914e-07
7.72027e-06
-3.74543e-07
7.58796e-06
-3.52912e-07
7.44386e-06
-3.32832e-07
7.28755e-06
-3.13868e-07
7.12005e-06
-2.97219e-07
6.94417e-06
-2.86145e-07
6.76772e-06
-2.85192e-07
6.6033e-06
-2.98888e-07
6.46754e-06
-3.28071e-07
6.3756e-06
-3.68546e-07
6.3378e-06
-4.11743e-07
6.35558e-06
-4.47803e-07
6.42224e-06
-4.68424e-07
6.52481e-06
-4.68879e-07
6.64703e-06
-4.47869e-07
6.77227e-06
-4.06503e-07
6.88444e-06
-3.48383e-07
6.97121e-06
-2.78625e-07
7.02323e-06
-2.03997e-07
7.03656e-06
-1.30888e-07
7.0103e-06
-6.56075e-08
6.94752e-06
-1.27424e-08
6.85258e-06
2.4451e-08
6.73115e-06
4.50202e-08
6.58949e-06
4.89894e-08
6.43409e-06
3.72916e-08
6.27171e-06
1.17364e-08
6.1087e-06
-2.53387e-08
5.95168e-06
-7.10995e-08
5.80666e-06
-1.22371e-07
5.67902e-06
-1.7516e-07
5.5726e-06
-2.25436e-07
5.48963e-06
-2.69087e-07
5.43002e-06
-3.02287e-07
5.39125e-06
-3.21866e-07
5.36875e-06
-3.25852e-07
5.35663e-06
-3.14219e-07
5.34871e-06
-2.88875e-07
5.33941e-06
-2.53343e-07
5.32451e-06
-2.1243e-07
5.30149e-06
-1.71379e-07
5.26946e-06
-1.34792e-07
5.22871e-06
-1.05684e-07
5.18021e-06
-8.52955e-08
5.12543e-06
-7.35872e-08
5.06608e-06
-6.93789e-08
5.00352e-06
-7.06915e-08
4.93878e-06
-7.53807e-08
4.87259e-06
-8.1945e-08
4.80565e-06
-8.96532e-08
4.73884e-06
-9.84387e-08
4.67312e-06
-1.08425e-07
4.60954e-06
-1.19548e-07
4.54894e-06
-1.30992e-07
4.49192e-06
-1.41311e-07
4.43865e-06
-1.489e-07
4.38881e-06
-1.52715e-07
4.3418e-06
-1.52565e-07
4.29697e-06
-1.49208e-07
4.25355e-06
-1.43883e-07
4.2108e-06
-1.38015e-07
4.16816e-06
-1.32899e-07
4.12536e-06
-1.29553e-07
4.08228e-06
-1.28488e-07
4.03878e-06
-1.29793e-07
3.99463e-06
-1.33086e-07
3.94951e-06
-1.3774e-07
3.90301e-06
-1.42975e-07
3.85479e-06
-1.48343e-07
3.80461e-06
-1.53953e-07
3.75244e-06
-1.60725e-07
3.69852e-06
-1.69964e-07
3.64365e-06
-1.82643e-07
3.58929e-06
-1.9848e-07
3.53738e-06
-2.15254e-07
3.49011e-06
-2.29108e-07
3.44932e-06
-2.3455e-07
3.41603e-06
-2.26828e-07
3.38948e-06
-2.02814e-07
3.36735e-06
-1.6428e-07
3.3462e-06
-1.17622e-07
3.32272e-06
-7.37283e-08
3.29427e-06
-4.39256e-08
3.25915e-06
-3.61542e-08
3.21701e-06
-5.22784e-08
3.16882e-06
-8.61583e-08
3.11664e-06
-1.26772e-07
3.06281e-06
-1.61486e-07
3.00971e-06
-1.81987e-07
2.95911e-06
-1.86817e-07
2.91162e-06
-1.80503e-07
2.86654e-06
-1.70189e-07
2.8224e-06
-1.61375e-07
2.77792e-06
-1.57135e-07
2.73252e-06
-1.57682e-07
2.68644e-06
-1.61883e-07
2.64024e-06
-1.67262e-07
2.59477e-06
-1.71523e-07
2.55072e-06
-1.71967e-07
2.50875e-06
-1.68028e-07
2.46899e-06
-1.59662e-07
2.43152e-06
-1.49186e-07
2.39576e-06
-1.37682e-07
2.36091e-06
-1.26903e-07
2.32561e-06
-1.17069e-07
2.28855e-06
-1.10023e-07
2.24845e-06
-1.07945e-07
2.20478e-06
-1.13283e-07
2.1575e-06
-1.25046e-07
2.10755e-06
-1.39465e-07
2.05525e-06
-1.53128e-07
2.00172e-06
-1.6613e-07
1.94584e-06
-1.77487e-07
1.88879e-06
-1.97184e-07
1.83079e-06
-2.20106e-07
-2.89766e-07
1.77015e-06
1.25604e-05
-1.98094e-07
1.25295e-05
-2.10693e-07
1.24964e-05
-2.23311e-07
1.24611e-05
-2.35914e-07
1.24233e-05
-2.48327e-07
1.23831e-05
-2.60285e-07
1.234e-05
-2.71616e-07
1.2294e-05
-2.82247e-07
1.22446e-05
-2.92255e-07
1.21918e-05
-3.01772e-07
1.21352e-05
-3.11046e-07
1.20748e-05
-3.20307e-07
1.20103e-05
-3.29858e-07
1.19417e-05
-3.39899e-07
1.18688e-05
-3.50654e-07
1.17913e-05
-3.62199e-07
1.17094e-05
-3.7463e-07
1.16226e-05
-3.87815e-07
1.15307e-05
-4.01595e-07
1.14332e-05
-4.15681e-07
1.13298e-05
-4.30029e-07
1.12199e-05
-4.4448e-07
1.11038e-05
-4.58794e-07
1.09815e-05
-4.72769e-07
1.08531e-05
-4.86131e-07
1.07192e-05
-4.98343e-07
1.05811e-05
-5.0936e-07
1.04401e-05
-5.19232e-07
1.02977e-05
-5.28124e-07
1.01554e-05
-5.36165e-07
1.00146e-05
-5.43707e-07
9.87684e-06
-5.50979e-07
9.74329e-06
-5.58293e-07
9.615e-06
-5.65623e-07
9.4923e-06
-5.7292e-07
9.37503e-06
-5.79892e-07
9.26185e-06
-5.86441e-07
9.1507e-06
-5.92461e-07
9.03817e-06
-5.97728e-07
8.91964e-06
-6.01294e-07
8.7883e-06
-6.01228e-07
8.63485e-06
-5.95696e-07
8.44853e-06
-5.8506e-07
8.22095e-06
-5.74228e-07
7.95194e-06
-5.71676e-07
7.65436e-06
-5.86218e-07
7.35332e-06
-6.20496e-07
7.07734e-06
-6.68975e-07
6.84794e-06
-7.20032e-07
6.67333e-06
-7.62509e-07
6.55109e-06
-7.88964e-07
6.4721e-06
-7.97714e-07
6.42599e-06
-7.89661e-07
6.40212e-06
-7.6802e-07
6.39217e-06
-7.35985e-07
6.38913e-06
-6.97152e-07
6.38837e-06
-6.53766e-07
6.38586e-06
-6.08047e-07
6.37918e-06
-5.61518e-07
6.36648e-06
-5.15784e-07
6.34672e-06
-4.71608e-07
6.31849e-06
-4.29179e-07
6.28012e-06
-3.88095e-07
6.22964e-06
-3.48379e-07
6.16605e-06
-3.10878e-07
6.09059e-06
-2.77378e-07
6.00681e-06
-2.48976e-07
5.91788e-06
-2.24855e-07
5.82307e-06
-2.02335e-07
5.71608e-06
-1.79089e-07
5.58718e-06
-1.56242e-07
5.42913e-06
-1.40836e-07
5.24431e-06
-1.43319e-07
5.04773e-06
-1.72024e-07
4.86324e-06
-2.27407e-07
4.71568e-06
-3.00402e-07
4.62285e-06
-3.75788e-07
4.59149e-06
-4.37772e-07
4.61789e-06
-4.74474e-07
4.69065e-06
-4.79571e-07
4.79421e-06
-4.52106e-07
4.91102e-06
-3.95706e-07
5.02464e-06
-3.17659e-07
5.12125e-06
-2.27595e-07
5.19137e-06
-1.35604e-07
5.2295e-06
-5.07919e-08
5.23407e-06
2.00609e-08
5.20679e-06
7.2491e-08
5.15142e-06
1.04525e-07
5.07281e-06
1.16042e-07
4.97647e-06
1.08173e-07
4.86817e-06
8.3054e-08
4.75377e-06
4.33432e-08
4.63912e-06
-7.69004e-09
4.52989e-06
-6.59466e-08
4.43119e-06
-1.26753e-07
4.34689e-06
-1.84814e-07
4.27935e-06
-2.34849e-07
4.22947e-06
-2.72042e-07
4.19635e-06
-2.9286e-07
4.17752e-06
-2.95495e-07
4.16922e-06
-2.80672e-07
4.16705e-06
-2.51255e-07
4.16654e-06
-2.11995e-07
4.16393e-06
-1.68814e-07
4.15667e-06
-1.2758e-07
4.14381e-06
-9.28501e-08
4.12559e-06
-6.7103e-08
4.10264e-06
-5.06392e-08
4.07532e-06
-4.20749e-08
4.04392e-06
-3.92682e-08
4.00895e-06
-4.03955e-08
3.97148e-06
-4.44527e-08
3.93288e-06
-5.10359e-08
3.89445e-06
-5.99932e-08
3.85679e-06
-7.07504e-08
3.81957e-06
-8.23217e-08
3.78183e-06
-9.32447e-08
3.74292e-06
-1.02412e-07
3.7032e-06
-1.09191e-07
3.66385e-06
-1.1339e-07
3.62607e-06
-1.14799e-07
3.59043e-06
-1.13587e-07
3.55689e-06
-1.10362e-07
3.52515e-06
-1.06281e-07
3.49476e-06
-1.02519e-07
3.46524e-06
-1.00036e-07
3.43598e-06
-9.9232e-08
3.40644e-06
-1.00264e-07
3.37632e-06
-1.02973e-07
3.34566e-06
-1.07103e-07
3.31462e-06
-1.11959e-07
3.28312e-06
-1.16875e-07
3.25065e-06
-1.21527e-07
3.21648e-06
-1.26606e-07
3.17979e-06
-1.33339e-07
3.13996e-06
-1.42875e-07
3.09687e-06
-1.55475e-07
3.05125e-06
-1.69721e-07
3.00478e-06
-1.82711e-07
2.95978e-06
-1.89631e-07
2.91927e-06
-1.8637e-07
2.88579e-06
-1.69391e-07
2.86083e-06
-1.39332e-07
2.84335e-06
-1.00141e-07
2.8303e-06
-6.06551e-08
2.81738e-06
-3.09677e-08
2.80051e-06
-1.92633e-08
2.77703e-06
-2.87699e-08
2.74593e-06
-5.50506e-08
2.70821e-06
-8.90419e-08
2.66617e-06
-1.19447e-07
2.62285e-06
-1.38692e-07
2.58078e-06
-1.44757e-07
2.54109e-06
-1.40842e-07
2.50363e-06
-1.3275e-07
2.46732e-06
-1.25083e-07
2.43092e-06
-1.20751e-07
2.39333e-06
-1.20106e-07
2.35416e-06
-1.22726e-07
2.31374e-06
-1.26857e-07
2.27303e-06
-1.30828e-07
2.23299e-06
-1.31939e-07
2.19457e-06
-1.29624e-07
2.15802e-06
-1.23118e-07
2.12325e-06
-1.1442e-07
2.08976e-06
-1.04202e-07
2.0574e-06
-9.45323e-08
2.02553e-06
-8.51977e-08
1.99334e-06
-7.78191e-08
1.95943e-06
-7.40195e-08
1.92281e-06
-7.66583e-08
1.88301e-06
-8.52325e-08
1.84099e-06
-9.74384e-08
1.79696e-06
-1.09084e-07
1.75181e-06
-1.20972e-07
1.70429e-06
-1.29959e-07
1.65514e-06
-1.48036e-07
1.60706e-06
-1.7203e-07
-2.37457e-07
1.55475e-06
1.09173e-05
-1.61024e-07
1.08776e-05
-1.71067e-07
1.08361e-05
-1.81807e-07
1.07928e-05
-1.92621e-07
1.07475e-05
-2.03042e-07
1.07e-05
-2.12821e-07
1.06502e-05
-2.21806e-07
1.05979e-05
-2.30016e-07
1.05432e-05
-2.37519e-07
1.04859e-05
-2.44556e-07
1.04263e-05
-2.51328e-07
1.0364e-05
-2.58158e-07
1.02995e-05
-2.65239e-07
1.02323e-05
-2.7285e-07
1.01628e-05
-2.8107e-07
1.00905e-05
-2.90057e-07
1.00157e-05
-2.9974e-07
9.93792e-06
-3.10149e-07
9.85753e-06
-3.21105e-07
9.77434e-06
-3.32593e-07
9.6889e-06
-3.4446e-07
9.60096e-06
-3.56605e-07
9.51096e-06
-3.6865e-07
9.41863e-06
-3.8046e-07
9.3244e-06
-3.91749e-07
9.22843e-06
-4.02373e-07
9.13137e-06
-4.12143e-07
9.03314e-06
-4.21039e-07
8.93403e-06
-4.28874e-07
8.83341e-06
-4.35598e-07
8.73089e-06
-4.41066e-07
8.62519e-06
-4.45341e-07
8.51555e-06
-4.4853e-07
8.40089e-06
-4.50967e-07
8.28119e-06
-4.53072e-07
8.15682e-06
-4.55452e-07
8.02939e-06
-4.58855e-07
7.90121e-06
-4.64118e-07
7.77541e-06
-4.71802e-07
7.6557e-06
-4.81339e-07
7.54484e-06
-4.90268e-07
7.44337e-06
-4.93905e-07
7.34591e-06
-4.87537e-07
7.2415e-06
-4.69426e-07
7.11413e-06
-4.443e-07
6.95123e-06
-4.22923e-07
6.74842e-06
-4.17742e-07
6.51532e-06
-4.355e-07
6.26965e-06
-4.74562e-07
6.03306e-06
-5.25547e-07
5.82135e-06
-5.77511e-07
5.64475e-06
-6.20829e-07
5.50497e-06
-6.50171e-07
5.40016e-06
-6.63029e-07
5.32428e-06
-6.60408e-07
5.27148e-06
-6.44283e-07
5.23504e-06
-6.17616e-07
5.2098e-06
-5.82817e-07
5.19058e-06
-5.4253e-07
5.17359e-06
-4.98828e-07
5.15536e-06
-4.53494e-07
5.13341e-06
-4.07215e-07
5.10546e-06
-3.60135e-07
5.06985e-06
-3.12679e-07
5.02627e-06
-2.67239e-07
4.97764e-06
-2.28653e-07
4.93016e-06
-2.01427e-07
4.89102e-06
-1.85621e-07
4.86396e-06
-1.75232e-07
4.84518e-06
-1.60224e-07
4.82174e-06
-1.32799e-07
4.77511e-06
-9.41729e-08
4.68897e-06
-5.72219e-08
4.55819e-06
-4.13202e-08
4.39245e-06
-6.17519e-08
4.21283e-06
-1.20891e-07
4.04399e-06
-2.07068e-07
3.90682e-06
-3.00744e-07
3.81405e-06
-3.81865e-07
3.76945e-06
-4.35132e-07
3.76912e-06
-4.51952e-07
3.80371e-06
-4.30419e-07
3.86063e-06
-3.74676e-07
3.92656e-06
-2.93526e-07
3.98989e-06
-1.9889e-07
4.04233e-06
-1.03137e-07
4.07897e-06
-1.64504e-08
4.09777e-06
5.38104e-08
4.0988e-06
1.03614e-07
4.0835e-06
1.31447e-07
4.05385e-06
1.37926e-07
4.01159e-06
1.25425e-07
3.95826e-06
9.67664e-08
3.89552e-06
5.51381e-08
3.82605e-06
3.57091e-09
3.7532e-06
-5.38705e-08
3.68049e-06
-1.1212e-07
3.61151e-06
-1.65885e-07
3.54922e-06
-2.09886e-07
3.49562e-06
-2.39321e-07
3.45152e-06
-2.51468e-07
3.4171e-06
-2.46294e-07
3.39187e-06
-2.2606e-07
3.37452e-06
-1.9467e-07
3.36297e-06
-1.57275e-07
3.35474e-06
-1.19351e-07
3.34729e-06
-8.53932e-08
3.33842e-06
-5.822e-08
3.32684e-06
-3.90424e-08
3.31253e-06
-2.77355e-08
3.29618e-06
-2.2905e-08
3.27825e-06
-2.24539e-08
3.25864e-06
-2.48247e-08
3.23682e-06
-2.9187e-08
3.21252e-06
-3.56813e-08
3.186e-06
-4.42101e-08
3.15812e-06
-5.44273e-08
3.13024e-06
-6.53651e-08
3.10373e-06
-7.59148e-08
3.07894e-06
-8.4417e-08
3.05508e-06
-8.9561e-08
3.03114e-06
-9.08962e-08
3.00677e-06
-8.92364e-08
2.98222e-06
-8.58465e-08
2.95806e-06
-8.21409e-08
2.93466e-06
-7.91322e-08
2.91215e-06
-7.75332e-08
2.89029e-06
-7.73696e-08
2.86846e-06
-7.84414e-08
2.8456e-06
-8.01252e-08
2.82057e-06
-8.20915e-08
2.7926e-06
-8.40156e-08
2.76189e-06
-8.62149e-08
2.72948e-06
-8.91643e-08
2.69666e-06
-9.38624e-08
2.6642e-06
-1.00953e-07
2.63194e-06
-1.10718e-07
2.59894e-06
-1.22577e-07
2.56407e-06
-1.34954e-07
2.52712e-06
-1.45872e-07
2.48917e-06
-1.51785e-07
2.45276e-06
-1.5005e-07
2.42065e-06
-1.37348e-07
2.39554e-06
-1.1427e-07
2.37818e-06
-8.27881e-08
2.36726e-06
-4.97053e-08
2.35937e-06
-2.30537e-08
2.35033e-06
-1.01568e-08
2.33647e-06
-1.48764e-08
2.31555e-06
-3.41071e-08
2.28807e-06
-6.15616e-08
2.25636e-06
-8.77516e-08
2.22346e-06
-1.05813e-07
2.19142e-06
-1.12751e-07
2.16096e-06
-1.10401e-07
2.13212e-06
-1.03936e-07
2.10445e-06
-9.74425e-08
2.07723e-06
-9.35453e-08
2.04955e-06
-9.24589e-08
2.02083e-06
-9.40289e-08
1.99073e-06
-9.67985e-08
1.9595e-06
-9.96225e-08
1.92771e-06
-1.00184e-07
1.89643e-06
-9.83707e-08
1.86649e-06
-9.32154e-08
1.83861e-06
-8.6558e-08
1.81259e-06
-7.81973e-08
1.78809e-06
-7.00338e-08
1.76447e-06
-6.15873e-08
1.74109e-06
-5.44225e-08
1.71647e-06
-4.94157e-08
1.68924e-06
-4.94104e-08
1.65848e-06
-5.44872e-08
1.62489e-06
-6.38337e-08
1.5887e-06
-7.29077e-08
1.55112e-06
-8.33839e-08
1.51145e-06
-9.03046e-08
1.47046e-06
-1.0704e-07
1.43029e-06
-1.31848e-07
-1.90091e-07
1.38294e-06
9.40849e-06
-1.2465e-07
9.37273e-06
-1.35319e-07
9.33663e-06
-1.4572e-07
9.29948e-06
-1.55483e-07
9.26084e-06
-1.6441e-07
9.22032e-06
-1.72313e-07
9.17762e-06
-1.79124e-07
9.13258e-06
-1.84991e-07
9.08518e-06
-1.90132e-07
9.03552e-06
-1.94919e-07
8.98386e-06
-1.99673e-07
8.93046e-06
-2.04776e-07
8.87562e-06
-2.10415e-07
8.81952e-06
-2.16773e-07
8.76223e-06
-2.23791e-07
8.70358e-06
-2.31428e-07
8.6433e-06
-2.39463e-07
8.58101e-06
-2.47879e-07
8.51642e-06
-2.56501e-07
8.44917e-06
-2.65334e-07
8.37902e-06
-2.74265e-07
8.30578e-06
-2.83325e-07
8.22966e-06
-2.92482e-07
8.1511e-06
-3.01843e-07
8.07074e-06
-3.11346e-07
7.98935e-06
-3.20937e-07
7.90777e-06
-3.30534e-07
7.8269e-06
-3.40154e-07
7.74766e-06
-3.49604e-07
7.67067e-06
-3.58647e-07
7.59632e-06
-3.66669e-07
7.52416e-06
-3.73234e-07
7.45339e-06
-3.77656e-07
7.38213e-06
-3.79649e-07
7.30813e-06
-3.78938e-07
7.22856e-06
-3.75793e-07
7.14071e-06
-3.70866e-07
7.04216e-06
-3.65459e-07
6.93174e-06
-3.61264e-07
6.81039e-06
-3.59867e-07
6.68202e-06
-3.61791e-07
6.55361e-06
-3.65349e-07
6.43287e-06
-3.66669e-07
6.32449e-06
-3.609e-07
6.22613e-06
-3.45829e-07
6.12782e-06
-3.24456e-07
6.01532e-06
-3.05151e-07
5.87731e-06
-2.97476e-07
5.71091e-06
-3.08044e-07
5.52276e-06
-3.37484e-07
5.32611e-06
-3.8074e-07
5.13483e-06
-4.2967e-07
4.9604e-06
-4.75703e-07
4.80948e-06
-5.12291e-07
4.68457e-06
-5.35541e-07
4.58436e-06
-5.44275e-07
4.50582e-06
-5.39175e-07
4.44493e-06
-5.22126e-07
4.39767e-06
-4.95382e-07
4.36002e-06
-4.61337e-07
4.32845e-06
-4.22008e-07
4.29982e-06
-3.78637e-07
4.27116e-06
-3.31479e-07
4.23936e-06
-2.80866e-07
4.20187e-06
-2.2972e-07
4.15836e-06
-1.8512e-07
4.11159e-06
-1.54628e-07
4.06721e-06
-1.41216e-07
4.03229e-06
-1.40282e-07
4.01199e-06
-1.39905e-07
4.00558e-06
-1.26372e-07
4.00415e-06
-9.27486e-08
3.99195e-06
-4.50401e-08
3.95232e-06
-1.71742e-09
3.87526e-06
1.52714e-08
3.76206e-06
-7.73776e-09
3.62512e-06
-7.0197e-08
3.48329e-06
-1.58974e-07
3.35536e-06
-2.54003e-07
3.25516e-06
-3.35008e-07
3.18943e-06
-3.86303e-07
3.15798e-06
-3.99075e-07
3.15537e-06
-3.72141e-07
3.17309e-06
-3.11306e-07
3.20214e-06
-2.27959e-07
3.2348e-06
-1.35786e-07
3.26554e-06
-4.71612e-08
3.29075e-06
2.86744e-08
3.30893e-06
8.55143e-08
3.31923e-06
1.2121e-07
3.32094e-06
1.36298e-07
3.31318e-06
1.33246e-07
3.29544e-06
1.14589e-07
3.26752e-06
8.31151e-08
3.23003e-06
4.11126e-08
3.18433e-06
-8.1462e-09
3.13309e-06
-6.08659e-08
3.07944e-06
-1.12248e-07
3.02639e-06
-1.56798e-07
2.97656e-06
-1.89557e-07
2.93216e-06
-2.07129e-07
2.89442e-06
-2.08608e-07
2.86341e-06
-1.95106e-07
2.83865e-06
-1.6997e-07
2.81975e-06
-1.38422e-07
2.80623e-06
-1.05873e-07
2.797e-06
-7.61893e-08
2.79044e-06
-5.16858e-08
2.78459e-06
-3.32079e-08
2.77742e-06
-2.05772e-08
2.76755e-06
-1.30175e-08
2.75495e-06
-9.84337e-09
2.74108e-06
-1.09396e-08
2.72733e-06
-1.54304e-08
2.71381e-06
-2.21566e-08
2.69927e-06
-2.96728e-08
2.68242e-06
-3.75816e-08
2.66263e-06
-4.55792e-08
2.64043e-06
-5.37284e-08
2.61736e-06
-6.1371e-08
2.59544e-06
-6.76724e-08
2.57583e-06
-7.1326e-08
2.55834e-06
-7.17802e-08
2.54168e-06
-6.92113e-08
2.52444e-06
-6.4933e-08
2.5058e-06
-6.05183e-08
2.48588e-06
-5.76443e-08
2.46542e-06
-5.693e-08
2.4452e-06
-5.825e-08
2.42558e-06
-6.05333e-08
2.40651e-06
-6.30466e-08
2.38746e-06
-6.49935e-08
2.3676e-06
-6.6389e-08
2.34586e-06
-6.74667e-08
2.32149e-06
-6.95405e-08
2.29433e-06
-7.38464e-08
2.26517e-06
-8.16248e-08
2.23538e-06
-9.28522e-08
2.20615e-06
-1.05798e-07
2.17793e-06
-1.17718e-07
2.15048e-06
-1.24401e-07
2.12404e-06
-1.23667e-07
2.09924e-06
-1.12604e-07
2.0777e-06
-9.27798e-08
2.06079e-06
-6.58943e-08
2.04948e-06
-3.84105e-08
2.04257e-06
-1.61417e-08
2.03674e-06
-4.33768e-09
2.02799e-06
-6.11177e-09
2.01355e-06
-1.96757e-08
1.99338e-06
-4.13947e-08
1.96882e-06
-6.31946e-08
1.94183e-06
-7.88494e-08
1.91413e-06
-8.50696e-08
1.88722e-06
-8.35119e-08
1.86209e-06
-7.88353e-08
1.83868e-06
-7.40453e-08
1.8161e-06
-7.09929e-08
1.79311e-06
-6.94868e-08
1.7691e-06
-7.00349e-08
1.74436e-06
-7.20777e-08
1.71984e-06
-7.51195e-08
1.69602e-06
-7.63717e-08
1.67284e-06
-7.52121e-08
1.64974e-06
-7.01231e-08
1.62691e-06
-6.37453e-08
1.60494e-06
-5.6227e-08
1.58452e-06
-4.96193e-08
1.56523e-06
-4.22975e-08
1.54626e-06
-3.5454e-08
1.52635e-06
-2.94911e-08
1.50487e-06
-2.79232e-08
1.48147e-06
-3.10749e-08
1.45654e-06
-3.89012e-08
1.42943e-06
-4.57945e-08
1.40055e-06
-5.44949e-08
1.369e-06
-5.8746e-08
1.33532e-06
-7.33618e-08
1.30384e-06
-1.0037e-07
-1.53873e-07
1.26762e-06
8.24569e-06
-8.25804e-08
8.19814e-06
-8.778e-08
8.14677e-06
-9.43581e-08
8.0929e-06
-1.01617e-07
8.03741e-06
-1.08941e-07
7.98117e-06
-1.16074e-07
7.92501e-06
-1.22995e-07
7.86976e-06
-1.29728e-07
7.81601e-06
-1.36425e-07
7.76432e-06
-1.43212e-07
7.71483e-06
-1.50229e-07
7.66752e-06
-1.57432e-07
7.62177e-06
-1.64728e-07
7.5769e-06
-1.71857e-07
7.53168e-06
-1.7864e-07
7.48522e-06
-1.84923e-07
7.43654e-06
-1.90843e-07
7.3853e-06
-1.96581e-07
7.33106e-06
-2.02313e-07
7.27401e-06
-2.08202e-07
7.21451e-06
-2.14785e-07
7.15378e-06
-2.22512e-07
7.09297e-06
-2.31656e-07
7.03331e-06
-2.42097e-07
6.97556e-06
-2.53583e-07
6.92034e-06
-2.65635e-07
6.86764e-06
-2.77854e-07
6.81736e-06
-2.89792e-07
6.7687e-06
-3.01012e-07
6.72082e-06
-3.1067e-07
6.6721e-06
-3.18045e-07
6.62136e-06
-3.22361e-07
6.56714e-06
-3.23409e-07
6.50876e-06
-3.211e-07
6.44571e-06
-3.15792e-07
6.37806e-06
-3.08016e-07
6.30572e-06
-2.98459e-07
6.22824e-06
-2.87914e-07
6.14449e-06
-2.77449e-07
6.05306e-06
-2.68401e-07
5.95337e-06
-2.62008e-07
5.84663e-06
-2.58586e-07
5.73667e-06
-2.56582e-07
5.62868e-06
-2.52896e-07
5.52726e-06
-2.4427e-07
5.43271e-06
-2.29903e-07
5.34037e-06
-2.12684e-07
5.24171e-06
-1.98815e-07
5.12863e-06
-1.94962e-07
4.99676e-06
-2.0557e-07
4.84706e-06
-2.31014e-07
4.68525e-06
-2.67836e-07
4.51983e-06
-3.10314e-07
4.35974e-06
-3.52242e-07
4.21226e-06
-3.88129e-07
4.08183e-06
-4.1391e-07
3.96992e-06
-4.2737e-07
3.87582e-06
-4.28114e-07
3.79746e-06
-4.17144e-07
3.73235e-06
-3.96317e-07
3.67803e-06
-3.67795e-07
3.63238e-06
-3.33057e-07
3.59339e-06
-2.92564e-07
3.55896e-06
-2.46465e-07
3.5266e-06
-1.97398e-07
3.49355e-06
-1.52096e-07
3.4578e-06
-1.18915e-07
3.42009e-06
-1.03526e-07
3.38456e-06
-1.04769e-07
3.35733e-06
-1.12678e-07
3.34331e-06
-1.1236e-07
3.3424e-06
-9.1833e-08
3.3471e-06
-4.97427e-08
3.34401e-06
1.35842e-09
3.3191e-06
4.01609e-08
3.26391e-06
4.74196e-08
3.17949e-06
1.41969e-08
3.0755e-06
-5.5009e-08
2.96582e-06
-1.44357e-07
2.86436e-06
-2.3358e-07
2.78161e-06
-3.03592e-07
2.72299e-06
-3.40494e-07
2.68888e-06
-3.38062e-07
2.67555e-06
-2.97992e-07
2.6776e-06
-2.29998e-07
2.68993e-06
-1.48084e-07
2.70845e-06
-6.56322e-08
2.72986e-06
7.29908e-09
2.75138e-06
6.40313e-08
2.77042e-06
1.02171e-07
2.78478e-06
1.21997e-07
2.79215e-06
1.25911e-07
2.79081e-06
1.16026e-07
2.77925e-06
9.47283e-08
2.75688e-06
6.35808e-08
2.72391e-06
2.48574e-08
2.68245e-06
-1.93671e-08
2.63528e-06
-6.50803e-08
2.58582e-06
-1.07403e-07
2.53714e-06
-1.40883e-07
2.49183e-06
-1.61844e-07
2.45212e-06
-1.68907e-07
2.41916e-06
-1.62154e-07
2.39286e-06
-1.43662e-07
2.3719e-06
-1.1746e-07
2.35489e-06
-8.88423e-08
2.34115e-06
-6.24317e-08
2.33089e-06
-4.13992e-08
2.32416e-06
-2.64553e-08
2.32034e-06
-1.67421e-08
2.31792e-06
-1.05838e-08
2.31421e-06
-6.14356e-09
2.30705e-06
-3.76475e-09
2.29603e-06
-4.42087e-09
2.28265e-06
-8.76057e-09
2.26868e-06
-1.57145e-08
2.25537e-06
-2.42602e-08
2.24253e-06
-3.27709e-08
2.22886e-06
-4.00647e-08
2.21229e-06
-4.48498e-08
2.19183e-06
-4.72446e-08
2.1686e-06
-4.81499e-08
2.14558e-06
-4.88039e-08
2.12547e-06
-4.91541e-08
2.10918e-06
-4.86811e-08
2.09551e-06
-4.68948e-08
2.08219e-06
-4.43616e-08
2.06715e-06
-4.19255e-08
2.04967e-06
-4.07913e-08
2.03015e-06
-4.10492e-08
2.00949e-06
-4.24157e-08
1.98842e-06
-4.39728e-08
1.96758e-06
-4.55921e-08
1.94714e-06
-4.70964e-08
1.92686e-06
-4.93168e-08
1.90583e-06
-5.2904e-08
1.88294e-06
-5.88269e-08
1.85718e-06
-6.71975e-08
1.82857e-06
-7.7303e-08
1.79859e-06
-8.78402e-08
1.76937e-06
-9.53072e-08
1.74309e-06
-9.7452e-08
1.7209e-06
-9.05471e-08
1.70389e-06
-7.58016e-08
1.69171e-06
-5.3792e-08
1.68351e-06
-3.02026e-08
1.6774e-06
-1.00452e-08
1.67152e-06
1.55825e-09
1.66423e-06
1.18865e-09
1.65432e-06
-9.78797e-09
1.64105e-06
-2.81328e-08
1.62397e-06
-4.61667e-08
1.60426e-06
-5.9178e-08
1.58418e-06
-6.50449e-08
1.56545e-06
-6.48374e-08
1.54805e-06
-6.14684e-08
1.53076e-06
-5.68064e-08
1.51299e-06
-5.32608e-08
1.49502e-06
-5.15671e-08
1.47725e-06
-5.23074e-08
1.45945e-06
-5.4337e-08
1.44133e-06
-5.70274e-08
1.42291e-06
-5.80233e-08
1.40505e-06
-5.7379e-08
1.38849e-06
-5.36382e-08
1.37372e-06
-4.89896e-08
1.36024e-06
-4.28039e-08
1.34807e-06
-3.74496e-08
1.33733e-06
-3.16056e-08
1.32783e-06
-2.59435e-08
1.31831e-06
-2.00055e-08
1.30798e-06
-1.75843e-08
1.29618e-06
-1.93074e-08
1.28271e-06
-2.54251e-08
1.26703e-06
-3.01492e-08
1.2498e-06
-3.72676e-08
1.23107e-06
-4.00351e-08
1.21163e-06
-5.3941e-08
1.19248e-06
-8.12152e-08
-1.23151e-07
1.16173e-06
7.14192e-06
-5.08925e-08
7.10763e-06
-5.34872e-08
7.07126e-06
-5.79964e-08
7.03327e-06
-6.36396e-08
6.99478e-06
-7.04558e-08
6.95689e-06
-7.81952e-08
6.92024e-06
-8.63503e-08
6.88496e-06
-9.44586e-08
6.85078e-06
-1.02249e-07
6.81705e-06
-1.0949e-07
6.78283e-06
-1.16015e-07
6.74699e-06
-1.21601e-07
6.70841e-06
-1.26157e-07
6.66618e-06
-1.2964e-07
6.61978e-06
-1.3225e-07
6.56918e-06
-1.34334e-07
6.51491e-06
-1.36605e-07
6.4581e-06
-1.39777e-07
6.4001e-06
-1.44313e-07
6.34231e-06
-1.50404e-07
6.28609e-06
-1.58523e-07
6.23273e-06
-1.69127e-07
6.18336e-06
-1.82237e-07
6.13875e-06
-1.9744e-07
6.0993e-06
-2.14076e-07
6.06503e-06
-2.31334e-07
6.03554e-06
-2.48314e-07
6.00981e-06
-2.64044e-07
5.98605e-06
-2.77205e-07
5.96158e-06
-2.86215e-07
5.93348e-06
-2.89883e-07
5.89904e-06
-2.87868e-07
5.85642e-06
-2.80672e-07
5.80479e-06
-2.69348e-07
5.74443e-06
-2.55308e-07
5.67649e-06
-2.40017e-07
5.6025e-06
-2.2439e-07
5.5237e-06
-2.09077e-07
5.44074e-06
-1.94441e-07
5.35372e-06
-1.81334e-07
5.26254e-06
-1.70785e-07
5.16754e-06
-1.63506e-07
5.07023e-06
-1.59224e-07
4.97364e-06
-1.56219e-07
4.88152e-06
-1.5211e-07
4.79645e-06
-1.44727e-07
4.7179e-06
-1.34108e-07
4.64163e-06
-1.22484e-07
4.56097e-06
-1.14242e-07
4.46921e-06
-1.13753e-07
4.36217e-06
-1.23905e-07
4.23954e-06
-1.45169e-07
4.10478e-06
-1.75523e-07
3.96369e-06
-2.1114e-07
3.82279e-06
-2.47229e-07
3.68788e-06
-2.79016e-07
3.56311e-06
-3.02624e-07
3.45066e-06
-3.15717e-07
3.35107e-06
-3.17625e-07
3.26384e-06
-3.09181e-07
3.18808e-06
-2.9212e-07
3.12302e-06
-2.68118e-07
3.06832e-06
-2.37925e-07
3.02354e-06
-2.01765e-07
2.98719e-06
-1.611e-07
2.9561e-06
-1.21063e-07
2.92608e-06
-8.894e-08
2.89402e-06
-7.15065e-08
2.86023e-06
-7.10017e-08
2.82925e-06
-8.17194e-08
2.80741e-06
-9.05252e-08
2.79895e-06
-8.33817e-08
2.80244e-06
-5.32472e-08
2.81e-06
-6.20311e-09
2.80984e-06
4.03024e-08
2.79095e-06
6.62864e-08
2.74728e-06
5.78307e-08
2.67981e-06
1.24366e-08
2.59605e-06
-6.06046e-08
2.50717e-06
-1.44687e-07
2.42411e-06
-2.20526e-07
2.35527e-06
-2.71649e-07
2.30536e-06
-2.88157e-07
2.2749e-06
-2.67539e-07
2.26162e-06
-2.16716e-07
2.26219e-06
-1.48643e-07
2.27308e-06
-7.65266e-08
2.29104e-06
-1.06356e-08
2.31287e-06
4.21886e-08
2.33559e-06
7.94959e-08
2.35673e-06
1.00824e-07
2.3741e-06
1.0859e-07
2.38595e-06
1.04153e-07
2.39018e-06
9.05483e-08
2.38529e-06
6.84597e-08
2.37046e-06
3.97326e-08
2.34648e-06
4.62257e-09
2.31512e-06
-3.36916e-08
2.27887e-06
-7.11126e-08
2.24021e-06
-1.02231e-07
2.20151e-06
-1.23155e-07
2.16488e-06
-1.32293e-07
2.13219e-06
-1.29473e-07
2.10529e-06
-1.16772e-07
2.08497e-06
-9.71507e-08
2.07042e-06
-7.42881e-08
2.05982e-06
-5.18285e-08
2.05117e-06
-3.27412e-08
2.04306e-06
-1.83502e-08
2.03502e-06
-8.69749e-09
2.02788e-06
-3.43797e-09
2.02296e-06
-1.21319e-09
2.0204e-06
-1.21969e-09
2.01805e-06
-2.05796e-09
2.0131e-06
-3.83068e-09
2.00384e-06
-6.45683e-09
1.9909e-06
-1.13412e-08
1.97615e-06
-1.80266e-08
1.96208e-06
-2.60285e-08
1.95054e-06
-3.33265e-08
1.94156e-06
-3.83047e-08
1.93268e-06
-3.92976e-08
1.92101e-06
-3.7174e-08
1.90573e-06
-3.39084e-08
1.88876e-06
-3.17556e-08
1.87307e-06
-3.12371e-08
1.86055e-06
-3.18806e-08
1.8507e-06
-3.21118e-08
1.84141e-06
-3.15303e-08
1.83075e-06
-3.04151e-08
1.81836e-06
-3.00583e-08
1.8044e-06
-3.00375e-08
1.78861e-06
-2.98362e-08
1.77042e-06
-2.89356e-08
1.75016e-06
-2.91041e-08
1.72894e-06
-3.17221e-08
1.70799e-06
-3.79297e-08
1.68743e-06
-4.66876e-08
1.66624e-06
-5.61658e-08
1.64312e-06
-6.47797e-08
1.61791e-06
-7.01233e-08
1.59261e-06
-7.22141e-08
1.57016e-06
-6.81241e-08
1.55367e-06
-5.93858e-08
1.54395e-06
-4.40665e-08
1.53997e-06
-2.62476e-08
1.53847e-06
-8.55996e-09
1.53648e-06
3.53786e-09
1.5323e-06
5.34725e-09
1.52455e-06
-2.03527e-09
1.51227e-06
-1.5876e-08
1.49559e-06
-2.94939e-08
1.47693e-06
-4.05388e-08
1.45875e-06
-4.68879e-08
1.44197e-06
-4.80753e-08
1.42615e-06
-4.56772e-08
1.41054e-06
-4.12095e-08
1.39489e-06
-3.76408e-08
1.37913e-06
-3.58237e-08
1.36331e-06
-3.64965e-08
1.34704e-06
-3.80793e-08
1.32985e-06
-3.9857e-08
1.31172e-06
-3.98982e-08
1.29392e-06
-3.95998e-08
1.27787e-06
-3.75959e-08
1.26472e-06
-3.58496e-08
1.25423e-06
-3.23179e-08
1.24552e-06
-2.87503e-08
1.23719e-06
-2.32633e-08
1.22956e-06
-1.83127e-08
1.2235e-06
-1.39286e-08
1.21836e-06
-1.24413e-08
1.21153e-06
-1.24629e-08
1.20164e-06
-1.55174e-08
1.18934e-06
-1.7843e-08
1.17659e-06
-2.4512e-08
1.16426e-06
-2.77082e-08
1.15217e-06
-4.18509e-08
1.13865e-06
-6.77076e-08
-9.46579e-08
1.11014e-06
6.28344e-06
-3.36918e-08
6.26175e-06
-3.17914e-08
6.23472e-06
-3.09653e-08
6.20315e-06
-3.20788e-08
6.1677e-06
-3.49991e-08
6.1289e-06
-3.94027e-08
6.08734e-06
-4.47829e-08
6.04345e-06
-5.05736e-08
5.99757e-06
-5.63686e-08
5.94995e-06
-6.18726e-08
5.90094e-06
-6.70118e-08
5.85107e-06
-7.17281e-08
5.80108e-06
-7.61841e-08
5.75192e-06
-8.04798e-08
5.70455e-06
-8.49136e-08
5.65985e-06
-8.96418e-08
5.61836e-06
-9.51513e-08
5.58051e-06
-1.01937e-07
5.54679e-06
-1.10605e-07
5.51773e-06
-1.21325e-07
5.4933e-06
-1.34067e-07
5.47281e-06
-1.48595e-07
5.45539e-06
-1.64793e-07
5.44035e-06
-1.82363e-07
5.42694e-06
-2.00643e-07
5.41429e-06
-2.1866e-07
5.40118e-06
-2.35183e-07
5.38592e-06
-2.48764e-07
5.36631e-06
-2.57592e-07
5.33989e-06
-2.59781e-07
5.3044e-06
-2.54369e-07
5.25834e-06
-2.41749e-07
5.20123e-06
-2.23489e-07
5.1336e-06
-2.01597e-07
5.05671e-06
-1.7845e-07
4.97257e-06
-1.55712e-07
4.88306e-06
-1.349e-07
4.79045e-06
-1.16331e-07
4.69683e-06
-1.00766e-07
4.60416e-06
-8.85928e-08
4.51362e-06
-8.01217e-08
4.42563e-06
-7.54988e-08
4.34066e-06
-7.40796e-08
4.25932e-06
-7.49085e-08
4.18301e-06
-7.56053e-08
4.11259e-06
-7.43624e-08
4.04823e-06
-6.95379e-08
3.98787e-06
-6.2172e-08
3.92826e-06
-5.46028e-08
3.86519e-06
-5.06013e-08
3.79472e-06
-5.33698e-08
3.71419e-06
-6.4594e-08
3.62268e-06
-8.39941e-08
3.52103e-06
-1.0948e-07
3.41162e-06
-1.37814e-07
3.29794e-06
-1.65338e-07
3.18399e-06
-1.88688e-07
3.07353e-06
-2.05289e-07
2.96956e-06
-2.13706e-07
2.87407e-06
-2.13754e-07
2.78819e-06
-2.06337e-07
2.71268e-06
-1.92585e-07
2.64818e-06
-1.73604e-07
2.59539e-06
-1.49015e-07
2.55367e-06
-1.19483e-07
2.52078e-06
-8.82274e-08
2.49264e-06
-6.0865e-08
2.46495e-06
-4.38409e-08
2.43513e-06
-4.1237e-08
2.40408e-06
-5.06527e-08
2.37635e-06
-6.28483e-08
2.35818e-06
-6.51841e-08
2.35356e-06
-4.86702e-08
2.36101e-06
-1.3665e-08
2.37272e-06
2.85778e-08
2.37774e-06
6.1247e-08
2.36656e-06
6.89884e-08
2.33389e-06
4.50962e-08
2.27933e-06
-6.03161e-09
2.20661e-06
-7.1946e-08
2.12295e-06
-1.36839e-07
2.03756e-06
-1.86223e-07
1.9597e-06
-2.10256e-07
1.8972e-06
-2.04991e-07
1.85456e-06
-1.74012e-07
1.83224e-06
-1.26282e-07
1.82778e-06
-7.20404e-08
1.83712e-06
-1.99894e-08
1.85544e-06
2.40309e-08
1.8779e-06
5.6854e-08
1.90091e-06
7.80765e-08
1.92089e-06
8.8318e-08
1.93597e-06
8.93513e-08
1.94441e-06
8.18366e-08
1.94618e-06
6.68994e-08
1.94078e-06
4.49674e-08
1.928e-06
1.75307e-08
1.90699e-06
-1.2753e-08
1.87795e-06
-4.20763e-08
1.84304e-06
-6.72853e-08
1.80566e-06
-8.5758e-08
1.76906e-06
-9.56701e-08
1.73578e-06
-9.6162e-08
1.7076e-06
-8.85607e-08
1.686e-06
-7.55254e-08
1.67149e-06
-5.97441e-08
1.6635e-06
-4.38101e-08
1.66038e-06
-2.95901e-08
1.66001e-06
-1.79654e-08
1.66049e-06
-9.18045e-09
1.66036e-06
-3.22026e-09
1.65911e-06
-4.60322e-11
1.65758e-06
3.86949e-10
1.65641e-06
-9.80252e-10
1.65564e-06
-2.96979e-09
1.65421e-06
-5.13072e-09
1.65094e-06
-7.99639e-09
1.64462e-06
-1.18133e-08
1.63547e-06
-1.68334e-08
1.62488e-06
-2.28355e-08
1.61546e-06
-2.88792e-08
1.60921e-06
-3.31257e-08
1.60629e-06
-3.42679e-08
1.60451e-06
-3.21889e-08
1.60108e-06
-2.83449e-08
1.59451e-06
-2.4727e-08
1.58545e-06
-2.2828e-08
1.57587e-06
-2.25979e-08
1.56754e-06
-2.31873e-08
1.56055e-06
-2.34985e-08
1.55396e-06
-2.34472e-08
1.54712e-06
-2.32739e-08
1.54049e-06
-2.31861e-08
1.53416e-06
-2.27036e-08
1.52728e-06
-2.22059e-08
1.51822e-06
-2.2763e-08
1.50627e-06
-2.60016e-08
1.49195e-06
-3.24582e-08
1.47683e-06
-4.11438e-08
1.4623e-06
-5.02681e-08
1.44892e-06
-5.6964e-08
1.43678e-06
-5.99661e-08
1.42539e-06
-5.70537e-08
1.41537e-06
-4.91556e-08
1.40723e-06
-3.61609e-08
1.40232e-06
-2.11399e-08
1.40029e-06
-6.52209e-09
1.39935e-06
4.44304e-09
1.39652e-06
8.32434e-09
1.38987e-06
4.44664e-09
1.38029e-06
-6.17063e-09
1.36857e-06
-1.79303e-08
1.35488e-06
-2.68796e-08
1.33914e-06
-3.11827e-08
1.32255e-06
-3.15806e-08
1.307e-06
-3.00906e-08
1.29327e-06
-2.75604e-08
1.28096e-06
-2.53057e-08
1.2689e-06
-2.38285e-08
1.25647e-06
-2.40459e-08
1.24386e-06
-2.55555e-08
1.2319e-06
-2.7858e-08
1.22068e-06
-2.882e-08
1.20976e-06
-2.85874e-08
1.19831e-06
-2.63025e-08
1.18653e-06
-2.39537e-08
1.17486e-06
-2.07901e-08
1.1645e-06
-1.82745e-08
1.15601e-06
-1.48665e-08
1.149e-06
-1.12073e-08
1.14191e-06
-6.88776e-09
1.1345e-06
-4.97984e-09
1.12742e-06
-5.39982e-09
1.12103e-06
-9.10241e-09
1.1138e-06
-1.06355e-08
1.10438e-06
-1.507e-08
1.09043e-06
-1.37367e-08
1.0711e-06
-2.25585e-08
1.04432e-06
-4.08201e-08
-6.20355e-08
1.01156e-06
5.38643e-06
-2.40447e-08
5.37636e-06
-2.17269e-08
5.36615e-06
-2.07556e-08
5.35422e-06
-2.01516e-08
5.33944e-06
-2.02098e-08
5.32127e-06
-2.12466e-08
5.29984e-06
-2.33352e-08
5.27571e-06
-2.64761e-08
5.2498e-06
-3.04173e-08
5.22288e-06
-3.50076e-08
5.19582e-06
-3.98888e-08
5.1691e-06
-4.50695e-08
5.14335e-06
-5.03658e-08
5.11882e-06
-5.60187e-08
5.09594e-06
-6.19596e-08
5.07472e-06
-6.84829e-08
5.05521e-06
-7.55635e-08
5.03687e-06
-8.36254e-08
5.01923e-06
-9.28932e-08
5.0016e-06
-1.03654e-07
4.98337e-06
-1.15776e-07
4.96374e-06
-1.28925e-07
4.94172e-06
-1.42748e-07
4.91626e-06
-1.56885e-07
4.88647e-06
-1.70843e-07
4.85177e-06
-1.83957e-07
4.81181e-06
-1.95219e-07
4.76597e-06
-2.02929e-07
4.71319e-06
-2.04812e-07
4.6527e-06
-1.99286e-07
4.58455e-06
-1.86206e-07
4.50952e-06
-1.66672e-07
4.42867e-06
-1.42534e-07
4.34303e-06
-1.16087e-07
4.25423e-06
-8.94986e-08
4.16364e-06
-6.51858e-08
4.07316e-06
-4.42034e-08
3.98434e-06
-2.74307e-08
3.8991e-06
-1.53281e-08
3.81879e-06
-8.07123e-09
3.74407e-06
-5.27566e-09
3.67492e-06
-6.08659e-09
3.61065e-06
-9.75953e-09
3.55097e-06
-1.49523e-08
3.49582e-06
-2.04632e-08
3.44628e-06
-2.45631e-08
3.40313e-06
-2.64137e-08
3.36681e-06
-2.5786e-08
3.33607e-06
-2.38724e-08
3.30803e-06
-2.24965e-08
3.27831e-06
-2.35833e-08
3.24219e-06
-2.84364e-08
3.19562e-06
-3.74096e-08
3.13597e-06
-4.98334e-08
3.06249e-06
-6.43382e-08
2.9764e-06
-7.92554e-08
2.88064e-06
-9.29342e-08
2.77927e-06
-1.03949e-07
2.67676e-06
-1.11239e-07
2.57722e-06
-1.14274e-07
2.48396e-06
-1.13041e-07
2.39934e-06
-1.0805e-07
2.32549e-06
-9.98395e-08
2.26468e-06
-8.83402e-08
2.21828e-06
-7.31695e-08
2.18535e-06
-5.53793e-08
2.1625e-06
-3.80453e-08
2.1445e-06
-2.58743e-08
2.12625e-06
-2.29968e-08
2.10509e-06
-2.95243e-08
2.08268e-06
-4.04575e-08
2.06463e-06
-4.7167e-08
2.05724e-06
-4.13389e-08
2.06412e-06
-2.0589e-08
2.08326e-06
9.41394e-09
2.1073e-06
3.72038e-08
2.12579e-06
5.04769e-08
2.12869e-06
4.21858e-08
2.10996e-06
1.27075e-08
2.06786e-06
-2.9818e-08
2.00535e-06
-7.42774e-08
1.92984e-06
-1.10641e-07
1.85139e-06
-1.31706e-07
1.78104e-06
-1.34527e-07
1.72714e-06
-1.19988e-07
1.69303e-06
-9.2083e-08
1.6782e-06
-5.71596e-08
1.68054e-06
-2.22261e-08
1.69676e-06
7.91268e-09
1.72252e-06
3.11238e-08
1.75328e-06
4.73556e-08
1.78464e-06
5.68155e-08
1.81328e-06
6.06815e-08
1.83591e-06
5.89981e-08
1.85049e-06
5.22863e-08
1.85517e-06
4.01627e-08
1.84952e-06
2.32242e-08
1.83386e-06
2.91147e-09
1.80928e-06
-1.74597e-08
1.77749e-06
-3.54378e-08
1.74103e-06
-4.92452e-08
1.70301e-06
-5.75978e-08
1.66683e-06
-5.9916e-08
1.6345e-06
-5.61594e-08
1.60678e-06
-4.77414e-08
1.58355e-06
-3.64417e-08
1.56451e-06
-2.47022e-08
1.54949e-06
-1.451e-08
1.53835e-06
-6.80321e-09
1.53081e-06
-1.60046e-09
1.52592e-06
1.76491e-09
1.52181e-06
4.01898e-09
1.51677e-06
5.46549e-09
1.50992e-06
5.80889e-09
1.50192e-06
5.07053e-09
1.49362e-06
3.07661e-09
1.48568e-06
-5.02069e-12
1.47744e-06
-3.67636e-09
1.46747e-06
-6.84621e-09
1.4535e-06
-8.96429e-09
1.43453e-06
-9.92612e-09
1.4118e-06
-1.04799e-08
1.38867e-06
-1.11689e-08
1.36841e-06
-1.19903e-08
1.35247e-06
-1.24404e-08
1.33996e-06
-1.22947e-08
1.32898e-06
-1.1865e-08
1.31792e-06
-1.1615e-08
1.30637e-06
-1.16524e-08
1.29446e-06
-1.16654e-08
1.28223e-06
-1.12156e-08
1.26914e-06
-1.02461e-08
1.25516e-06
-9.20238e-09
1.24106e-06
-8.67055e-09
1.22781e-06
-8.93697e-09
1.21509e-06
-1.01264e-08
1.20145e-06
-1.23814e-08
1.18494e-06
-1.60299e-08
1.16465e-06
-2.0955e-08
1.14121e-06
-2.68647e-08
1.1164e-06
-3.23576e-08
1.09265e-06
-3.61072e-08
1.07167e-06
-3.64159e-08
1.05543e-06
-3.26789e-08
1.04407e-06
-2.5021e-08
1.038e-06
-1.4782e-08
1.03626e-06
-4.75733e-09
1.03788e-06
2.83468e-09
1.04094e-06
5.41474e-09
1.04261e-06
2.58736e-09
1.04075e-06
-4.17159e-09
1.03477e-06
-1.2139e-08
1.02676e-06
-1.88841e-08
1.01831e-06
-2.27776e-08
1.00982e-06
-2.31911e-08
1.00122e-06
-2.14401e-08
9.92657e-07
-1.90834e-08
9.84697e-07
-1.72899e-08
9.77244e-07
-1.64345e-08
9.69736e-07
-1.64931e-08
9.61258e-07
-1.71582e-08
9.51805e-07
-1.83292e-08
9.42174e-07
-1.93301e-08
9.33709e-07
-1.99772e-08
9.26679e-07
-1.94465e-08
9.21133e-07
-1.82135e-08
9.1641e-07
-1.62183e-08
9.12571e-07
-1.4243e-08
9.09644e-07
-1.20274e-08
9.0855e-07
-9.93675e-09
9.0926e-07
-7.6161e-09
9.10554e-07
-6.15433e-09
9.10551e-07
-5.38898e-09
9.0875e-07
-7.21032e-09
9.06215e-07
-8.1024e-09
9.03974e-07
-1.27541e-08
9.02772e-07
-1.24761e-08
9.03098e-07
-2.29081e-08
9.0053e-07
-3.81006e-08
-5.24053e-08
8.90651e-07
4.66479e-06
-1.28096e-08
4.65555e-06
-1.24847e-08
4.64596e-06
-1.1175e-08
4.63634e-06
-1.05291e-08
4.62661e-06
-1.04973e-08
4.61639e-06
-1.10196e-08
4.60527e-06
-1.22569e-08
4.59318e-06
-1.43633e-08
4.58019e-06
-1.74749e-08
4.56665e-06
-2.14293e-08
4.55282e-06
-2.60964e-08
4.53899e-06
-3.11776e-08
4.52512e-06
-3.65183e-08
4.51103e-06
-4.18325e-08
4.4961e-06
-4.70271e-08
4.4796e-06
-5.18654e-08
4.4604e-06
-5.63029e-08
4.43726e-06
-6.03626e-08
4.40865e-06
-6.41852e-08
4.37296e-06
-6.78339e-08
4.32877e-06
-7.1477e-08
4.27525e-06
-7.53333e-08
4.21226e-06
-7.97188e-08
4.14035e-06
-8.4945e-08
4.06057e-06
-9.10495e-08
3.97438e-06
-9.77543e-08
3.88361e-06
-1.04452e-07
3.79066e-06
-1.09978e-07
3.69837e-06
-1.12515e-07
3.60987e-06
-1.10789e-07
3.52815e-06
-1.04437e-07
3.45515e-06
-9.35657e-08
3.39116e-06
-7.8574e-08
3.33565e-06
-6.05902e-08
3.28768e-06
-4.15478e-08
3.2459e-06
-2.32454e-08
3.20869e-06
-6.74045e-09
3.1745e-06
7.09113e-09
3.14217e-06
1.74126e-08
3.11062e-06
2.38739e-08
3.07876e-06
2.7015e-08
3.04554e-06
2.7493e-08
3.01018e-06
2.59607e-08
2.97241e-06
2.30805e-08
2.93274e-06
1.94771e-08
2.89253e-06
1.58673e-08
2.8536e-06
1.2661e-08
2.81781e-06
1.00279e-08
2.78635e-06
7.59262e-09
2.75936e-06
4.58518e-09
2.73536e-06
5.07211e-10
2.7111e-06
-4.12079e-09
2.68241e-06
-8.69796e-09
2.64565e-06
-1.30717e-08
2.59845e-06
-1.71479e-08
2.54002e-06
-2.08337e-08
2.47112e-06
-2.40537e-08
2.39387e-06
-2.67396e-08
2.31132e-06
-2.87589e-08
2.22693e-06
-2.99187e-08
2.14402e-06
-3.01189e-08
2.06517e-06
-2.92779e-08
1.99245e-06
-2.72859e-08
1.92831e-06
-2.43795e-08
1.87555e-06
-2.05478e-08
1.83562e-06
-1.55576e-08
1.80757e-06
-1.00444e-08
1.78713e-06
-5.47112e-09
1.7677e-06
-3.59447e-09
1.74327e-06
-5.13199e-09
1.71186e-06
-9.1073e-09
1.67778e-06
-1.31618e-08
1.6508e-06
-1.44692e-08
1.64117e-06
-1.10248e-08
1.65236e-06
-1.8095e-09
1.67882e-06
1.07287e-08
1.70924e-06
2.00258e-08
1.73175e-06
1.96612e-08
1.73641e-06
8.04231e-09
1.71567e-06
-9.03068e-09
1.66661e-06
-2.51335e-08
1.59388e-06
-3.77833e-08
1.50807e-06
-4.57215e-08
1.42256e-06
-4.88192e-08
1.34955e-06
-4.67627e-08
1.29686e-06
-3.92191e-08
1.26732e-06
-2.75013e-08
1.25981e-06
-1.45342e-08
1.26964e-06
-1.71415e-09
1.29058e-06
1.02066e-08
1.31766e-06
2.03423e-08
1.34698e-06
2.72036e-08
1.37613e-06
3.14304e-08
1.40246e-06
3.22825e-08
1.42432e-06
3.03318e-08
1.43985e-06
2.44384e-08
1.44824e-06
1.49021e-08
1.44793e-06
3.24399e-09
1.4374e-06
-6.86299e-09
1.41659e-06
-1.4526e-08
1.38755e-06
-2.01139e-08
1.35344e-06
-2.33841e-08
1.31822e-06
-2.45869e-08
1.28591e-06
-2.37164e-08
1.25956e-06
-2.1261e-08
1.2408e-06
-1.75561e-08
1.22949e-06
-1.32711e-08
1.22423e-06
-9.14224e-09
1.22313e-06
-5.64454e-09
1.22457e-06
-2.95691e-09
1.22762e-06
-1.11807e-09
1.2319e-06
-3.26634e-10
1.23759e-06
-1.65587e-10
1.24409e-06
-7.95969e-10
1.2505e-06
-1.28794e-09
1.25543e-06
-1.99135e-09
1.2582e-06
-2.7177e-09
1.25858e-06
-4.22449e-09
1.25762e-06
-5.87603e-09
1.25647e-06
-7.97513e-09
1.25614e-06
-9.63828e-09
1.25626e-06
-1.07482e-08
1.25578e-06
-1.07552e-08
1.25361e-06
-9.93728e-09
1.24966e-06
-8.55608e-09
1.24451e-06
-7.28582e-09
1.23896e-06
-6.36553e-09
1.23333e-06
-6.12658e-09
1.22782e-06
-6.18394e-09
1.22259e-06
-6.5643e-09
1.21817e-06
-6.79853e-09
1.21489e-06
-7.08425e-09
1.21267e-06
-6.96521e-09
1.21062e-06
-6.75051e-09
1.2079e-06
-6.18518e-09
1.20371e-06
-6.08098e-09
1.19771e-06
-6.40655e-09
1.18935e-06
-7.84416e-09
1.17816e-06
-9.94803e-09
1.16362e-06
-1.23909e-08
1.14565e-06
-1.47607e-08
1.12559e-06
-1.58721e-08
1.10507e-06
-1.65057e-08
1.08735e-06
-1.45475e-08
1.07419e-06
-1.22376e-08
1.06755e-06
-7.62878e-09
1.06657e-06
-3.68859e-09
1.06942e-06
6.68257e-12
1.07304e-06
2.07712e-09
1.07421e-06
1.08138e-09
1.07149e-06
-1.21013e-09
1.06376e-06
-4.75524e-09
1.05189e-06
-7.06371e-09
1.03758e-06
-8.55716e-09
1.02308e-06
-8.88884e-09
1.00995e-06
-8.21239e-09
9.9825e-07
-7.54349e-09
9.87675e-07
-6.61143e-09
9.77453e-07
-6.31956e-09
9.67266e-07
-6.22196e-09
9.56687e-07
-6.72695e-09
9.45603e-07
-7.10423e-09
9.33674e-07
-7.66379e-09
9.21373e-07
-7.40108e-09
9.08994e-07
-7.39073e-09
8.9759e-07
-6.43853e-09
8.87218e-07
-6.12416e-09
8.7835e-07
-5.00387e-09
8.70577e-07
-4.40687e-09
8.64124e-07
-3.13784e-09
8.58869e-07
-2.38082e-09
8.54874e-07
-1.91838e-09
8.51506e-07
-1.99365e-09
8.4752e-07
-3.03973e-09
8.42533e-07
-3.10944e-09
8.35411e-07
-5.4803e-09
8.27447e-07
-4.39021e-09
8.16972e-07
-1.2474e-08
7.99419e-07
-2.02509e-08
-3.12931e-08
7.77794e-07
3.34926e-06
3.33677e-06
3.32559e-06
3.31506e-06
3.30456e-06
3.29353e-06
3.28127e-06
3.26689e-06
3.24943e-06
3.22799e-06
3.20191e-06
3.17073e-06
3.13424e-06
3.09243e-06
3.04545e-06
2.99363e-06
2.93737e-06
2.87706e-06
2.81293e-06
2.74515e-06
2.67371e-06
2.5984e-06
2.51869e-06
2.43376e-06
2.34271e-06
2.24496e-06
2.14051e-06
2.03053e-06
1.91802e-06
1.80724e-06
1.70285e-06
1.60929e-06
1.53069e-06
1.4701e-06
1.4286e-06
1.40545e-06
1.39884e-06
1.40608e-06
1.42365e-06
1.44768e-06
1.47483e-06
1.50244e-06
1.52851e-06
1.55167e-06
1.57123e-06
1.58714e-06
1.59982e-06
1.60984e-06
1.61746e-06
1.62207e-06
1.6226e-06
1.61848e-06
1.60978e-06
1.59671e-06
1.57956e-06
1.55872e-06
1.53466e-06
1.5079e-06
1.47913e-06
1.44922e-06
1.41909e-06
1.38977e-06
1.36245e-06
1.33803e-06
1.31746e-06
1.30189e-06
1.29184e-06
1.28636e-06
1.28276e-06
1.27762e-06
1.2685e-06
1.25531e-06
1.24083e-06
1.2298e-06
1.22798e-06
1.23871e-06
1.25873e-06
1.27839e-06
1.28644e-06
1.27742e-06
1.25231e-06
1.21455e-06
1.16886e-06
1.12008e-06
1.07334e-06
1.03414e-06
1.00667e-06
9.92168e-07
9.90454e-07
1.00068e-06
1.02097e-06
1.04817e-06
1.07954e-06
1.11181e-06
1.14212e-06
1.16656e-06
1.18147e-06
1.18472e-06
1.17787e-06
1.16335e-06
1.14325e-06
1.11988e-06
1.09531e-06
1.0716e-06
1.05036e-06
1.03281e-06
1.01956e-06
1.01042e-06
1.00478e-06
1.00184e-06
1.00072e-06
1.0004e-06
1.00022e-06
9.99432e-07
9.9813e-07
9.96145e-07
9.93411e-07
9.89189e-07
9.83299e-07
9.7532e-07
9.6567e-07
9.54917e-07
9.44152e-07
9.3421e-07
9.25643e-07
9.18354e-07
9.11978e-07
9.05849e-07
8.99656e-07
8.93092e-07
8.86284e-07
8.79202e-07
8.72228e-07
8.6548e-07
8.59286e-07
8.53203e-07
8.46787e-07
8.38932e-07
8.28981e-07
8.16569e-07
8.01819e-07
7.85913e-07
7.6943e-07
7.54862e-07
7.4265e-07
7.35026e-07
7.31338e-07
7.31358e-07
7.3342e-07
7.34512e-07
7.33287e-07
7.2853e-07
7.21463e-07
7.12897e-07
7.04012e-07
6.95794e-07
6.88254e-07
6.81639e-07
6.75323e-07
6.69095e-07
6.62373e-07
6.5526e-07
6.47606e-07
6.40194e-07
6.32815e-07
6.26368e-07
6.20255e-07
6.15246e-07
6.10849e-07
6.0771e-07
6.05336e-07
6.03418e-07
6.01429e-07
5.98389e-07
5.95283e-07
5.89806e-07
5.85415e-07
5.72947e-07
5.52686e-07
5.2136e-07
4.13693e-06
-1.90121e-07
4.20395e-06
-6.69685e-08
4.26565e-06
-6.166e-08
4.31851e-06
-5.28242e-08
4.3501e-06
-3.15595e-08
4.3655e-06
-1.53548e-08
4.36877e-06
-3.24039e-09
4.35829e-06
1.05468e-08
4.3348e-06
2.3551e-08
4.30206e-06
3.28404e-08
4.26558e-06
3.65724e-08
4.22935e-06
3.62749e-08
4.19748e-06
3.18827e-08
4.17344e-06
2.40283e-08
4.16109e-06
1.23205e-08
4.15737e-06
3.62423e-09
4.16465e-06
-7.41758e-09
4.17611e-06
-1.16922e-08
4.20579e-06
-3.00167e-08
4.23956e-06
-3.40502e-08
4.30609e-06
-6.64202e-08
4.36005e-06
-5.36274e-08
4.43468e-06
-7.49215e-08
4.40268e-06
3.17766e-08
-1.03596e-07
4.09403e-06
-3.48841e-07
4.19583e-06
-1.68728e-07
4.25989e-06
-1.25668e-07
4.2998e-06
-9.26851e-08
4.31868e-06
-5.03944e-08
4.32065e-06
-1.7253e-08
4.31201e-06
5.43871e-09
4.29888e-06
2.37414e-08
4.28301e-06
3.9472e-08
4.26531e-06
5.06387e-08
4.24765e-06
5.43485e-08
4.23058e-06
5.34291e-08
4.21347e-06
4.90096e-08
4.19356e-06
4.39041e-08
4.17018e-06
3.56464e-08
4.14667e-06
2.71322e-08
4.13381e-06
5.48204e-09
4.13728e-06
-1.52528e-08
4.16767e-06
-6.06261e-08
4.21805e-06
-8.46121e-08
4.2982e-06
-1.46389e-07
4.36979e-06
-1.24677e-07
4.44964e-06
-1.5453e-07
4.48809e-06
-6.63122e-09
-1.4086e-07
4.8998e-06
-3.40241e-07
4.91116e-06
-1.80079e-07
4.91303e-06
-1.27525e-07
4.90653e-06
-8.61728e-08
4.89254e-06
-3.64008e-08
4.86922e-06
6.08928e-09
4.83632e-06
3.83489e-08
4.79738e-06
6.27334e-08
4.75674e-06
8.01424e-08
4.7169e-06
9.05235e-08
4.67745e-06
9.38276e-08
4.63821e-06
9.26766e-08
4.60505e-06
8.21896e-08
4.58723e-06
6.17669e-08
4.59117e-06
3.17255e-08
4.61245e-06
5.80923e-09
4.64222e-06
-2.43875e-08
4.66996e-06
-4.31355e-08
4.69947e-06
-9.02778e-08
4.73163e-06
-1.16904e-07
4.78202e-06
-1.96801e-07
4.84072e-06
-1.83458e-07
4.89887e-06
-2.12907e-07
4.91978e-06
-2.76531e-08
-1.31241e-07
4.44785e-06
-3.53213e-07
4.47535e-06
-2.07586e-07
4.49038e-06
-1.42545e-07
4.49553e-06
-9.1306e-08
4.49772e-06
-3.85762e-08
4.50047e-06
3.36552e-09
4.50377e-06
3.50596e-08
4.5045e-06
6.20448e-08
4.49979e-06
8.48834e-08
4.49159e-06
9.87571e-08
4.4865e-06
9.89544e-08
4.48956e-06
8.96283e-08
4.49533e-06
7.64391e-08
4.48601e-06
7.11164e-08
4.44877e-06
6.89933e-08
4.38985e-06
6.47358e-08
4.33454e-06
3.08755e-08
4.30625e-06
-1.49791e-08
4.31744e-06
-1.01648e-07
4.3621e-06
-1.61679e-07
4.43556e-06
-2.70102e-07
4.51157e-06
-2.5905e-07
4.57781e-06
-2.79002e-07
4.62715e-06
-7.70496e-08
-1.24359e-07
4.47942e-06
-3.55862e-07
4.50061e-06
-2.28773e-07
4.51512e-06
-1.57061e-07
4.52143e-06
-9.76033e-08
4.52221e-06
-3.93552e-08
4.5166e-06
8.98801e-09
4.50484e-06
4.68266e-08
4.49159e-06
7.53326e-08
4.48344e-06
9.30578e-08
4.4829e-06
9.93181e-08
4.48238e-06
9.94951e-08
4.47017e-06
1.01841e-07
4.44337e-06
1.03259e-07
4.412e-06
1.02516e-07
4.39174e-06
8.9273e-08
4.38982e-06
6.66186e-08
4.40528e-06
1.53407e-08
4.43428e-06
-4.40637e-08
4.47925e-06
-1.46705e-07
4.54224e-06
-2.24754e-07
4.62712e-06
-3.55089e-07
4.71554e-06
-3.47672e-07
4.7722e-06
-3.35909e-07
4.77768e-06
-8.25537e-08
-7.81515e-08
4.66026e-06
-3.37601e-07
4.65592e-06
-2.24448e-07
4.64653e-06
-1.47683e-07
4.62922e-06
-8.03035e-08
4.60413e-06
-1.4275e-08
4.5696e-06
4.35154e-08
4.52833e-06
8.80823e-08
4.48568e-06
1.17993e-07
4.4434e-06
1.35332e-07
4.39811e-06
1.44613e-07
4.34625e-06
1.51355e-07
4.29399e-06
1.541e-07
4.25528e-06
1.41985e-07
4.24085e-06
1.16973e-07
4.25267e-06
7.74674e-08
4.2842e-06
3.50518e-08
4.32876e-06
-2.93031e-08
4.38263e-06
-9.80905e-08
4.44843e-06
-2.12658e-07
4.52838e-06
-3.04832e-07
4.62582e-06
-4.52447e-07
4.72335e-06
-4.44975e-07
4.79462e-06
-4.07252e-07
4.7943e-06
-8.23634e-08
-5.35068e-09
4.802e-06
-3.05848e-07
4.77835e-06
-2.00799e-07
4.74784e-06
-1.17179e-07
4.70666e-06
-3.91235e-08
4.65835e-06
3.40405e-08
4.60689e-06
9.49873e-08
4.55334e-06
1.41645e-07
4.49399e-06
1.77367e-07
4.42501e-06
2.04334e-07
4.34878e-06
2.20863e-07
4.27726e-06
2.22893e-07
4.22791e-06
2.0346e-07
4.21109e-06
1.58814e-07
4.22463e-06
1.03452e-07
4.25963e-06
4.24678e-08
4.30716e-06
-1.25001e-08
4.36331e-06
-8.54832e-08
4.42856e-06
-1.6338e-07
4.50675e-06
-2.90898e-07
4.5991e-06
-3.97266e-07
4.70209e-06
-5.55569e-07
4.79469e-06
-5.3785e-07
4.85291e-06
-4.65647e-07
4.83291e-06
-6.23007e-08
8.34587e-08
4.83754e-06
-2.62881e-07
4.80166e-06
-1.64934e-07
4.76297e-06
-7.85057e-08
4.7169e-06
6.93238e-09
4.66217e-06
8.87543e-08
4.59921e-06
1.57934e-07
4.52914e-06
2.11703e-07
4.45385e-06
2.52649e-07
4.37953e-06
2.78651e-07
4.31655e-06
2.83843e-07
4.27703e-06
2.62406e-07
4.26718e-06
2.13319e-07
4.28229e-06
1.43712e-07
4.31235e-06
7.33972e-08
4.35026e-06
4.55146e-09
4.39497e-06
-5.72596e-08
4.44989e-06
-1.40497e-07
4.51913e-06
-2.32736e-07
4.60556e-06
-3.77488e-07
4.70804e-06
-4.99903e-07
4.81744e-06
-6.64976e-07
4.90491e-06
-6.25292e-07
4.94227e-06
-5.03221e-07
4.86203e-06
1.7836e-08
2.22605e-07
4.84508e-06
-2.07061e-07
4.79263e-06
-1.12492e-07
4.73931e-06
-2.51749e-08
4.68542e-06
6.08249e-08
4.63011e-06
1.44074e-07
4.57011e-06
2.17956e-07
4.50488e-06
2.76939e-07
4.44098e-06
3.16574e-07
4.39017e-06
3.29482e-07
4.36229e-06
3.11745e-07
4.36101e-06
2.63705e-07
4.38068e-06
1.93662e-07
4.41069e-06
1.1371e-07
4.44341e-06
4.06934e-08
4.47804e-06
-3.00821e-08
4.51915e-06
-9.83769e-08
4.57262e-06
-1.93965e-07
4.64295e-06
-3.0307e-07
4.73103e-06
-4.6559e-07
4.83419e-06
-6.03125e-07
4.94321e-06
-7.74144e-07
5.02996e-06
-7.12264e-07
5.04955e-06
-5.22905e-07
4.91351e-06
1.53983e-07
4.02659e-07
4.83975e-06
-1.47363e-07
4.78336e-06
-5.6108e-08
4.72661e-06
3.15624e-08
4.67001e-06
1.1742e-07
4.61457e-06
1.9951e-07
4.55992e-06
2.72598e-07
4.50813e-06
3.28722e-07
4.46683e-06
3.57883e-07
4.44528e-06
3.51028e-07
4.44754e-06
3.09499e-07
4.46985e-06
2.41405e-07
4.5018e-06
1.61713e-07
4.53382e-06
8.16959e-08
4.56295e-06
1.15683e-08
4.59304e-06
-6.01894e-08
4.63122e-06
-1.36594e-07
4.68359e-06
-2.46394e-07
4.75393e-06
-3.73513e-07
4.84186e-06
-5.5366e-07
4.94333e-06
-7.04785e-07
5.04648e-06
-8.77395e-07
5.12064e-06
-7.86523e-07
5.10818e-06
-5.10699e-07
4.91672e-06
3.454e-07
6.16463e-07
4.83906e-06
-8.58577e-08
4.78158e-06
1.3809e-09
4.72646e-06
8.6695e-08
4.67412e-06
1.69763e-07
4.62575e-06
2.47895e-07
4.58305e-06
3.15323e-07
4.54995e-06
3.61838e-07
4.53221e-06
3.75638e-07
4.53326e-06
3.49996e-07
4.55119e-06
2.91593e-07
4.57937e-06
2.13236e-07
4.60945e-06
1.31644e-07
4.63685e-06
5.43085e-08
4.66272e-06
-1.42895e-08
4.69215e-06
-8.96188e-08
4.73123e-06
-1.75654e-07
4.78413e-06
-2.99277e-07
4.85343e-06
-4.42798e-07
4.93771e-06
-6.37933e-07
5.03363e-06
-8.00742e-07
5.12791e-06
-9.71769e-07
5.18439e-06
-8.43175e-07
5.12964e-06
-4.55958e-07
4.90166e-06
5.7353e-07
8.37358e-07
4.84346e-06
-2.81109e-08
4.79033e-06
5.45082e-08
4.74091e-06
1.36118e-07
4.69581e-06
2.14861e-07
4.65654e-06
2.87171e-07
4.62587e-06
3.45991e-07
4.60797e-06
3.79745e-07
4.60594e-06
3.7768e-07
4.61882e-06
3.37131e-07
4.64164e-06
2.6879e-07
4.66781e-06
1.87079e-07
4.69232e-06
1.07146e-07
4.71457e-06
3.20648e-08
4.73799e-06
-3.77056e-08
4.76762e-06
-1.1925e-07
4.80801e-06
-2.16063e-07
4.8616e-06
-3.52901e-07
4.92988e-06
-5.11153e-07
5.0106e-06
-7.18789e-07
5.09994e-06
-8.90296e-07
5.18062e-06
-1.05261e-06
5.21089e-06
-8.73591e-07
5.11243e-06
-3.57726e-07
4.86768e-06
8.18293e-07
1.04928e-06
4.85159e-06
2.53982e-08
4.80384e-06
1.02267e-07
4.76124e-06
1.78729e-07
4.72413e-06
2.51984e-07
4.69391e-06
3.17412e-07
4.67353e-06
3.66389e-07
4.66631e-06
3.86978e-07
4.67292e-06
3.71088e-07
4.68991e-06
3.20155e-07
4.71164e-06
2.4707e-07
4.73325e-06
1.65488e-07
4.75288e-06
8.75152e-08
4.77235e-06
1.26061e-08
4.79561e-06
-6.09559e-08
4.82666e-06
-1.50289e-07
4.8685e-06
-2.5788e-07
4.92217e-06
-4.06543e-07
4.98852e-06
-5.77473e-07
5.0647e-06
-7.94938e-07
5.14698e-06
-9.72568e-07
5.21383e-06
-1.11951e-06
5.2179e-06
-8.77732e-07
5.08306e-06
-2.22824e-07
4.84019e-06
1.06129e-06
1.24038e-06
4.86289e-06
7.37534e-08
4.82065e-06
1.44511e-07
4.78386e-06
2.15525e-07
4.7528e-06
2.83054e-07
4.72904e-06
3.41178e-07
4.71548e-06
3.79957e-07
4.71429e-06
3.8818e-07
4.72438e-06
3.61013e-07
4.7414e-06
3.03153e-07
4.76034e-06
2.2815e-07
4.77815e-06
1.47686e-07
4.795e-06
7.06849e-08
4.81356e-06
-5.94199e-09
4.83753e-06
-8.49147e-08
4.86989e-06
-1.82635e-07
4.91259e-06
-3.00588e-07
4.96594e-06
-4.59907e-07
5.0304e-06
-6.41998e-07
5.10247e-06
-8.67134e-07
5.17753e-06
-1.04784e-06
5.22959e-06
-1.17175e-06
5.20916e-06
-8.57471e-07
5.05012e-06
-6.39681e-08
4.81992e-06
1.29156e-06
1.41008e-06
4.87485e-06
1.18326e-07
4.83624e-06
1.83129e-07
4.80296e-06
2.48825e-07
4.7756e-06
3.10417e-07
4.75614e-06
3.60657e-07
4.74711e-06
3.89001e-07
4.74938e-06
3.85915e-07
4.76061e-06
3.49794e-07
4.77633e-06
2.87448e-07
4.79263e-06
2.11855e-07
4.80809e-06
1.32238e-07
4.82397e-06
5.47991e-08
4.84309e-06
-2.50533e-08
4.8685e-06
-1.10313e-07
4.90221e-06
-2.1634e-07
4.94553e-06
-3.43882e-07
4.99829e-06
-5.1263e-07
5.06084e-06
-7.04506e-07
5.12918e-06
-9.35425e-07
5.19797e-06
-1.11658e-06
5.23722e-06
-1.21099e-06
5.19706e-06
-8.17302e-07
5.02423e-06
1.08966e-07
4.81021e-06
1.50569e-06
1.56173e-06
4.88313e-06
1.61022e-07
4.8461e-06
2.20161e-07
4.81468e-06
2.8025e-07
4.78995e-06
3.35161e-07
4.77388e-06
3.7674e-07
4.76824e-06
3.94647e-07
4.77266e-06
3.81509e-07
4.78407e-06
3.38398e-07
4.79841e-06
2.73125e-07
4.81296e-06
1.97328e-07
4.82737e-06
1.17838e-07
4.84344e-06
3.87524e-08
4.86365e-06
-4.52491e-08
4.89048e-06
-1.37126e-07
4.92527e-06
-2.51118e-07
4.969e-06
-3.87603e-07
5.02132e-06
-5.64959e-07
5.08253e-06
-7.65759e-07
5.14809e-06
-1.0011e-06
5.21166e-06
-1.18035e-06
5.23999e-06
-1.23952e-06
5.18486e-06
-7.62324e-07
5.0062e-06
2.87481e-07
4.80651e-06
1.7055e-06
1.70177e-06
4.87717e-06
2.00171e-07
4.8435e-06
2.53834e-07
4.81566e-06
3.08096e-07
4.79482e-06
3.56018e-07
4.78273e-06
3.88842e-07
4.7804e-06
3.9698e-07
4.78661e-06
3.75306e-07
4.79811e-06
3.26902e-07
4.81152e-06
2.59727e-07
4.82514e-06
1.83702e-07
4.83941e-06
1.03572e-07
4.85627e-06
2.18956e-08
4.87784e-06
-6.68138e-08
4.90609e-06
-1.65373e-07
4.94188e-06
-2.86898e-07
4.98604e-06
-4.31751e-07
5.03817e-06
-6.1705e-07
5.09859e-06
-8.26129e-07
5.1624e-06
-1.06484e-06
5.22244e-06
-1.24031e-06
5.24272e-06
-1.25971e-06
5.17697e-06
-6.96506e-07
4.99656e-06
4.68018e-07
4.80657e-06
1.89556e-06
1.83617e-06
4.85687e-06
2.32956e-07
4.82925e-06
2.81461e-07
4.80731e-06
3.3004e-07
4.79202e-06
3.71319e-07
4.78474e-06
3.96133e-07
4.78586e-06
3.95872e-07
4.79375e-06
3.67421e-07
4.80546e-06
3.15205e-07
4.81841e-06
2.46801e-07
4.83178e-06
1.70345e-07
4.84644e-06
8.8924e-08
4.86433e-06
4.02026e-09
4.88719e-06
-8.96536e-08
4.91665e-06
-1.94818e-07
4.95328e-06
-3.2351e-07
4.99796e-06
-4.76413e-07
5.05029e-06
-6.69384e-07
5.1107e-06
-8.8656e-07
5.17398e-06
-1.12822e-06
5.23218e-06
-1.29868e-06
5.24695e-06
-1.27466e-06
5.17391e-06
-6.23608e-07
4.99343e-06
6.48378e-07
4.8077e-06
2.08144e-06
1.97027e-06
4.82775e-06
2.58054e-07
4.80749e-06
3.01722e-07
4.79264e-06
3.449e-07
4.7838e-06
3.80168e-07
4.78179e-06
3.98149e-07
4.78647e-06
3.91201e-07
4.7961e-06
3.57794e-07
4.80823e-06
3.03078e-07
4.82109e-06
2.3394e-07
4.8346e-06
1.5683e-07
4.84991e-06
7.36119e-08
4.8689e-06
-1.49655e-08
4.89298e-06
-1.13733e-07
4.92356e-06
-2.25404e-07
4.96102e-06
-3.60967e-07
5.00636e-06
-5.21731e-07
5.05927e-06
-7.22265e-07
5.12034e-06
-9.4757e-07
5.18433e-06
-1.19212e-06
5.2426e-06
-1.35682e-06
5.25448e-06
-1.28642e-06
5.17652e-06
-5.45489e-07
4.99565e-06
8.29387e-07
4.8087e-06
2.26842e-06
2.10808e-06
4.79562e-06
2.75391e-07
4.7828e-06
3.1455e-07
4.77501e-06
3.52693e-07
4.77255e-06
3.82637e-07
4.77568e-06
3.95022e-07
4.78378e-06
3.83115e-07
4.79511e-06
3.46471e-07
4.8078e-06
2.90395e-07
4.82086e-06
2.20898e-07
4.83478e-06
1.42924e-07
4.85087e-06
5.75327e-08
4.87091e-06
-3.49929e-08
4.89607e-06
-1.3887e-07
4.92763e-06
-2.56948e-07
4.96589e-06
-3.99212e-07
5.01205e-06
-5.67869e-07
5.06598e-06
-7.76185e-07
5.12848e-06
-1.01008e-06
5.19441e-06
-1.25812e-06
5.25453e-06
-1.41707e-06
5.26578e-06
-1.2978e-06
5.18442e-06
-4.64242e-07
5.00193e-06
1.01176e-06
4.80899e-06
2.46152e-06
2.25286e-06
4.76365e-06
2.85622e-07
4.75762e-06
3.20585e-07
4.75628e-06
3.54034e-07
4.75968e-06
3.79242e-07
4.76757e-06
3.87145e-07
4.77883e-06
3.71858e-07
4.79177e-06
3.33526e-07
4.8051e-06
2.77075e-07
4.81848e-06
2.0751e-07
4.83293e-06
1.28482e-07
4.84984e-06
4.06129e-08
4.87093e-06
-5.60845e-08
4.89716e-06
-1.65102e-07
4.92975e-06
-2.89549e-07
4.96899e-06
-4.38446e-07
5.01628e-06
-6.15141e-07
5.07172e-06
-8.31598e-07
5.13643e-06
-1.07473e-06
5.20552e-06
-1.32711e-06
5.2692e-06
-1.48062e-06
5.28169e-06
-1.3101e-06
5.1977e-06
-3.80068e-07
5.0116e-06
1.19803e-06
4.80826e-06
2.66487e-06
2.4069e-06
4.73334e-06
2.89604e-07
4.73325e-06
3.20674e-07
4.73756e-06
3.49729e-07
4.74612e-06
3.70689e-07
4.75818e-06
3.75098e-07
4.77221e-06
3.57838e-07
4.7866e-06
3.19146e-07
4.80058e-06
2.63101e-07
4.81446e-06
1.93641e-07
4.82961e-06
1.13343e-07
4.84752e-06
2.2715e-08
4.86979e-06
-7.83405e-08
4.89725e-06
-1.92547e-07
4.93113e-06
-3.23415e-07
4.97176e-06
-4.79054e-07
5.02077e-06
-6.64129e-07
5.07852e-06
-8.89326e-07
5.14629e-06
-1.14249e-06
5.21952e-06
-1.40037e-06
5.28783e-06
-1.54899e-06
5.30266e-06
-1.325e-06
5.21602e-06
-2.93478e-07
5.02402e-06
1.38991e-06
4.80664e-06
2.88239e-06
2.57222e-06
4.7046e-06
2.88288e-07
4.70959e-06
3.15687e-07
4.71882e-06
3.40505e-07
4.73194e-06
3.57573e-07
4.74767e-06
3.59367e-07
4.76413e-06
3.41383e-07
4.77984e-06
3.03441e-07
4.79458e-06
2.48362e-07
4.80922e-06
1.79001e-07
4.82546e-06
9.70989e-08
4.84484e-06
3.32905e-09
4.8689e-06
-1.02407e-07
4.89839e-06
-2.22042e-07
4.93455e-06
-3.59576e-07
4.97776e-06
-5.22265e-07
5.02982e-06
-7.16172e-07
5.09123e-06
-9.50711e-07
5.16324e-06
-1.21444e-06
5.2413e-06
-1.47832e-06
5.31406e-06
-1.62161e-06
5.33047e-06
-1.34122e-06
5.23963e-06
-2.02397e-07
5.0387e-06
1.591e-06
4.80387e-06
3.11722e-06
2.75003e-06
4.67735e-06
2.82506e-07
4.68679e-06
3.06253e-07
4.70045e-06
3.26855e-07
4.71764e-06
3.40386e-07
4.73658e-06
3.40428e-07
4.75524e-06
3.22737e-07
4.77247e-06
2.86218e-07
4.78863e-06
2.32211e-07
4.80505e-06
1.62588e-07
4.82367e-06
7.84872e-08
4.84605e-06
-1.90399e-08
4.87366e-06
-1.30006e-07
4.90722e-06
-2.55593e-07
4.94801e-06
-4.00353e-07
4.99645e-06
-5.70693e-07
5.05427e-06
-7.73968e-07
5.12171e-06
-1.01812e-06
5.19906e-06
-1.29175e-06
5.28083e-06
-1.56007e-06
5.3543e-06
-1.69506e-06
5.36787e-06
-1.35471e-06
5.26903e-06
-1.0349e-07
5.0556e-06
1.80435e-06
4.80132e-06
3.37157e-06
2.94085e-06
4.65453e-06
2.72841e-07
4.66813e-06
2.92655e-07
4.68602e-06
3.08972e-07
4.70712e-06
3.19292e-07
4.72938e-06
3.18169e-07
4.75092e-06
3.01208e-07
4.77101e-06
2.66123e-07
4.79058e-06
2.12645e-07
4.81142e-06
1.4175e-07
4.83565e-06
5.42587e-08
4.86478e-06
-4.81717e-08
4.9002e-06
-1.65435e-07
4.94259e-06
-2.97983e-07
4.99313e-06
-4.50905e-07
5.05202e-06
-6.29583e-07
5.12041e-06
-8.42342e-07
5.19733e-06
-1.09501e-06
5.28067e-06
-1.37504e-06
5.36198e-06
-1.64128e-06
5.42596e-06
-1.75892e-06
5.42519e-06
-1.35376e-06
5.31e-06
1.19127e-08
5.07885e-06
2.03577e-06
4.805e-06
3.64545e-06
3.1428e-06
4.65779e-06
2.59377e-07
4.67566e-06
2.74792e-07
4.69778e-06
2.86861e-07
4.72302e-06
2.9405e-07
4.74971e-06
2.91485e-07
4.77655e-06
2.74382e-07
4.80348e-06
2.39199e-07
4.83196e-06
1.84168e-07
4.86392e-06
1.09796e-07
4.9013e-06
1.6888e-08
4.94519e-06
-9.20553e-08
4.99679e-06
-2.17032e-07
5.05643e-06
-3.57622e-07
5.1251e-06
-5.19557e-07
5.20198e-06
-7.06456e-07
5.28705e-06
-9.27382e-07
5.37621e-06
-1.18412e-06
5.46317e-06
-1.46193e-06
5.53282e-06
-1.71085e-06
5.56746e-06
-1.79344e-06
5.53208e-06
-1.31808e-06
5.38842e-06
1.55859e-07
5.13412e-06
2.29005e-06
4.84569e-06
3.93388e-06
3.34915e-06
4.78563e-06
2.43215e-07
4.8067e-06
2.53723e-07
4.83276e-06
2.608e-07
4.86347e-06
2.63354e-07
4.8979e-06
2.57053e-07
4.93541e-06
2.36878e-07
4.97628e-06
1.98338e-07
5.02181e-06
1.38636e-07
5.07325e-06
5.83604e-08
5.1317e-06
-4.15606e-08
5.19737e-06
-1.57729e-07
5.27103e-06
-2.90696e-07
5.35229e-06
-4.38891e-07
5.4414e-06
-6.08675e-07
5.53628e-06
-8.01334e-07
5.63541e-06
-1.0265e-06
5.73216e-06
-1.28084e-06
5.81839e-06
-1.5481e-06
5.87136e-06
-1.76374e-06
5.87173e-06
-1.7937e-06
5.79523e-06
-1.24143e-06
5.62095e-06
3.30324e-07
5.34071e-06
2.57056e-06
5.04062e-06
4.2341e-06
3.55349e-06
6.27315e-06
2.24313e-07
6.29781e-06
2.29066e-07
6.33038e-06
2.28231e-07
6.37194e-06
2.218e-07
6.42232e-06
2.06683e-07
6.47998e-06
1.79225e-07
6.54303e-06
1.35296e-07
6.61015e-06
7.15243e-08
6.68129e-06
-1.2775e-08
6.7574e-06
-1.17672e-07
6.83967e-06
-2.39993e-07
6.92834e-06
-3.7936e-07
7.02297e-06
-5.33515e-07
7.12225e-06
-7.07945e-07
7.22445e-06
-9.03508e-07
7.32658e-06
-1.1286e-06
7.42587e-06
-1.38006e-06
7.52041e-06
-1.64254e-06
7.5982e-06
-1.8414e-06
7.64434e-06
-1.83964e-06
7.61775e-06
-1.21431e-06
7.45582e-06
4.9294e-07
7.11879e-06
2.90769e-06
6.72052e-06
4.6324e-06
3.83486e-06
6.61562e-06
2.0923e-07
6.63453e-06
2.10162e-07
6.65937e-06
2.03397e-07
6.69153e-06
1.89643e-07
6.73158e-06
1.66648e-07
6.77848e-06
1.32333e-07
6.83054e-06
8.32393e-08
6.88643e-06
1.56422e-08
6.94582e-06
-7.21631e-08
7.00897e-06
-1.80827e-07
7.07634e-06
-3.07365e-07
7.14758e-06
-4.5061e-07
7.22155e-06
-6.0749e-07
7.29626e-06
-7.82654e-07
7.36941e-06
-9.76654e-07
7.43739e-06
-1.19657e-06
7.49872e-06
-1.44135e-06
7.55351e-06
-1.69727e-06
7.60629e-06
-1.8941e-06
7.70139e-06
-1.93467e-06
7.86848e-06
-1.38126e-06
7.95806e-06
4.03529e-07
7.75902e-06
3.10706e-06
7.30421e-06
5.08743e-06
4.20529e-06
6.73785e-06
1.95107e-07
6.75488e-06
1.93137e-07
6.77577e-06
1.82517e-07
6.80134e-06
1.64075e-07
6.83243e-06
1.35569e-07
6.86899e-06
9.57776e-08
6.91045e-06
4.17824e-08
6.95621e-06
-3.01173e-08
7.0059e-06
-1.21852e-07
7.05935e-06
-2.34267e-07
7.11638e-06
-3.64399e-07
7.17624e-06
-5.10461e-07
7.23709e-06
-6.68329e-07
7.29649e-06
-8.42039e-07
7.35139e-06
-1.03153e-06
7.39706e-06
-1.24219e-06
7.43013e-06
-1.47434e-06
7.44782e-06
-1.71483e-06
7.44155e-06
-1.88767e-06
7.47128e-06
-1.9642e-06
7.70389e-06
-1.61332e-06
8.05625e-06
5.22588e-08
8.10518e-06
3.05868e-06
7.657e-06
5.5357e-06
4.6499e-06
6.77193e-06
1.8321e-07
6.78654e-06
1.78534e-07
6.80445e-06
1.64613e-07
6.8261e-06
1.42434e-07
6.85215e-06
1.09528e-07
6.88288e-06
6.50521e-08
6.91818e-06
6.49157e-09
6.95782e-06
-6.97558e-08
7.00174e-06
-1.6577e-07
7.04991e-06
-2.82435e-07
7.10192e-06
-4.16421e-07
7.15658e-06
-5.6512e-07
7.21146e-06
-7.23219e-07
7.2635e-06
-8.94081e-07
7.30903e-06
-1.07706e-06
7.34193e-06
-1.27507e-06
7.35679e-06
-1.48916e-06
7.34987e-06
-1.70787e-06
7.29648e-06
-1.83424e-06
7.21225e-06
-1.87998e-06
7.34662e-06
-1.74757e-06
7.84227e-06
-4.43208e-07
8.18998e-06
2.7111e-06
7.84687e-06
5.87925e-06
5.12595e-06
6.77932e-06
1.74595e-07
6.79033e-06
1.67525e-07
6.80438e-06
1.50565e-07
6.82188e-06
1.24942e-07
6.84344e-06
8.79802e-08
6.86948e-06
3.90131e-08
6.90018e-06
-2.42035e-08
6.9356e-06
-1.05178e-07
6.97591e-06
-2.06078e-07
7.02115e-06
-3.27675e-07
7.07074e-06
-4.66011e-07
7.123e-06
-6.17368e-07
7.17486e-06
-7.75075e-07
7.22254e-06
-9.41737e-07
7.26179e-06
-1.11628e-06
7.28511e-06
-1.29834e-06
7.28473e-06
-1.48868e-06
7.25817e-06
-1.68117e-06
7.17898e-06
-1.75486e-06
7.00103e-06
-1.7019e-06
6.94261e-06
-1.68876e-06
7.41902e-06
-9.18464e-07
8.05644e-06
2.07536e-06
7.92314e-06
6.01275e-06
5.58265e-06
6.77746e-06
1.6942e-07
6.78451e-06
1.60478e-07
6.79405e-06
1.41033e-07
6.80665e-06
1.12351e-07
6.82319e-06
7.14455e-08
6.84441e-06
1.77989e-08
6.87063e-06
-5.04189e-08
6.90206e-06
-1.36601e-07
6.93904e-06
-2.43055e-07
6.98171e-06
-3.70351e-07
7.02936e-06
-5.13666e-07
7.07981e-06
-6.67821e-07
7.12927e-06
-8.2455e-07
7.17307e-06
-9.85534e-07
7.20636e-06
-1.14958e-06
7.22034e-06
-1.3123e-06
7.20441e-06
-1.47271e-06
7.15752e-06
-1.63424e-06
7.06669e-06
-1.66406e-06
6.8492e-06
-1.48451e-06
6.58711e-06
-1.42662e-06
6.876e-06
-1.20712e-06
7.721e-06
1.23026e-06
7.89639e-06
5.83777e-06
5.95442e-06
6.77038e-06
1.67965e-07
6.77337e-06
1.57493e-07
6.77831e-06
1.36097e-07
6.78568e-06
1.04983e-07
6.79653e-06
6.06052e-08
6.812e-06
2.32614e-09
6.83281e-06
-7.12256e-08
6.85944e-06
-1.63242e-07
6.89247e-06
-2.76085e-07
6.93212e-06
-4.10002e-07
6.97749e-06
-5.59032e-07
7.02584e-06
-7.16164e-07
7.07253e-06
-8.71229e-07
7.11188e-06
-1.02486e-06
7.13859e-06
-1.17625e-06
7.14295e-06
-1.3166e-06
7.11123e-06
-1.44089e-06
7.04131e-06
-1.56416e-06
6.94137e-06
-1.56392e-06
6.74807e-06
-1.29115e-06
6.3729e-06
-1.05131e-06
6.34922e-06
-1.18253e-06
7.21741e-06
3.65081e-07
7.75096e-06
5.30502e-06
6.16245e-06
6.75773e-06
1.70477e-07
6.75639e-06
1.58842e-07
6.75659e-06
1.35901e-07
6.75871e-06
1.02868e-07
6.76366e-06
5.5664e-08
6.77273e-06
-6.73671e-09
6.78699e-06
-8.54797e-08
6.80746e-06
-1.83709e-07
6.83519e-06
-3.03818e-07
6.87064e-06
-4.45459e-07
6.91275e-06
-6.01143e-07
6.95816e-06
-7.61586e-07
7.00127e-06
-9.14353e-07
7.03532e-06
-1.05892e-06
7.05463e-06
-1.19556e-06
7.04935e-06
-1.31132e-06
7.00339e-06
-1.39491e-06
6.90992e-06
-1.47069e-06
6.78955e-06
-1.44363e-06
6.64682e-06
-1.14864e-06
6.32372e-06
-7.28227e-07
6.01179e-06
-8.70405e-07
6.65548e-06
-2.78918e-07
7.47133e-06
4.48932e-06
6.13874e-06
6.73706e-06
1.76706e-07
6.73148e-06
1.6443e-07
6.72689e-06
1.405e-07
6.72365e-06
1.0611e-07
6.72244e-06
5.68746e-08
6.72441e-06
-8.71668e-09
6.73087e-06
-9.19408e-08
6.74351e-06
-1.96364e-07
6.76423e-06
-3.24547e-07
6.79394e-06
-4.75181e-07
6.83145e-06
-6.38655e-07
6.87268e-06
-8.02807e-07
6.91096e-06
-9.52616e-07
6.93846e-06
-1.0864e-06
6.94926e-06
-1.20631e-06
6.93419e-06
-1.29618e-06
6.87725e-06
-1.33785e-06
6.76616e-06
-1.35943e-06
6.61093e-06
-1.28817e-06
6.46759e-06
-1.00531e-06
6.28544e-06
-5.4616e-07
5.90553e-06
-4.9e-07
6.20044e-06
-5.70353e-07
7.07923e-06
3.61299e-06
5.87007e-06
6.70299e-06
1.86063e-07
6.69386e-06
1.73563e-07
6.68514e-06
1.4923e-07
6.67689e-06
1.14368e-07
6.66923e-06
6.45383e-08
6.6631e-06
-2.5821e-09
6.66021e-06
-8.90415e-08
6.66323e-06
-1.99391e-07
6.67511e-06
-3.36424e-07
6.69728e-06
-4.97351e-07
6.72834e-06
-6.69729e-07
6.76345e-06
-8.37932e-07
6.79496e-06
-9.84142e-07
6.81414e-06
-1.1056e-06
6.81484e-06
-1.20703e-06
6.78905e-06
-1.2704e-06
6.72396e-06
-1.27277e-06
6.60693e-06
-1.24242e-06
6.42539e-06
-1.1068e-06
6.21544e-06
-7.95626e-07
6.07872e-06
-4.09497e-07
5.82423e-06
-2.35436e-07
5.89098e-06
-6.38037e-07
6.64004e-06
2.86377e-06
5.43201e-06
6.65054e-06
1.98449e-07
6.63819e-06
1.85918e-07
6.6259e-06
1.61529e-07
6.61292e-06
1.27347e-07
6.59833e-06
7.91255e-08
6.58279e-06
1.2948e-08
6.56889e-06
-7.51548e-08
6.56069e-06
-1.91208e-07
6.56212e-06
-3.37878e-07
6.57483e-06
-5.10075e-07
6.59697e-06
-6.9188e-07
6.6229e-06
-8.6386e-07
6.6443e-06
-1.00553e-06
6.65191e-06
-1.1132e-06
6.63968e-06
-1.19476e-06
6.60076e-06
-1.23141e-06
6.52591e-06
-1.19781e-06
6.4082e-06
-1.12458e-06
6.22806e-06
-9.26414e-07
5.96827e-06
-5.3588e-07
5.76416e-06
-2.05611e-07
5.60374e-06
-7.4955e-08
5.61301e-06
-6.44357e-07
6.206e-06
2.27499e-06
4.92712e-06
6.57339e-06
2.1535e-07
6.55704e-06
2.02272e-07
6.54076e-06
1.7781e-07
6.5223e-06
1.45815e-07
6.49974e-06
1.01693e-07
6.47392e-06
3.87793e-08
6.44857e-06
-4.97981e-08
6.42876e-06
-1.71397e-07
6.41864e-06
-3.2776e-07
6.41928e-06
-5.10713e-07
6.42812e-06
-7.00734e-07
6.43907e-06
-8.74829e-07
6.44397e-06
-1.01046e-06
6.43358e-06
-1.10284e-06
6.40252e-06
-1.16373e-06
6.34564e-06
-1.17457e-06
6.25516e-06
-1.10735e-06
6.13019e-06
-9.99683e-07
5.96421e-06
-7.60636e-07
5.71304e-06
-2.85063e-07
5.45811e-06
4.92251e-08
5.31723e-06
6.58378e-08
5.33221e-06
-6.60664e-07
5.79645e-06
1.80975e-06
4.43911e-06
6.44926e-06
2.35404e-07
6.42913e-06
2.22399e-07
6.40812e-06
1.98829e-07
6.38346e-06
1.70482e-07
6.35377e-06
1.31391e-07
6.32042e-06
7.21203e-08
6.28706e-06
-1.64503e-08
6.25746e-06
-1.41814e-07
6.23408e-06
-3.04398e-07
6.21685e-06
-4.93509e-07
6.20325e-06
-6.87165e-07
6.18809e-06
-8.59686e-07
6.1648e-06
-9.87191e-07
6.12509e-06
-1.06314e-06
6.06547e-06
-1.10411e-06
5.98445e-06
-1.09353e-06
5.87532e-06
-9.98141e-07
5.7407e-06
-8.6497e-07
5.59001e-06
-6.09741e-07
5.37489e-06
-7.00738e-08
5.12508e-06
2.98781e-07
5.01091e-06
1.79769e-07
5.07074e-06
-7.18338e-07
5.42761e-06
1.45676e-06
4.01065e-06
6.19847e-06
2.46629e-07
6.18754e-06
2.33339e-07
6.17422e-06
2.12164e-07
6.15521e-06
1.895e-07
6.12998e-06
1.56636e-07
6.09888e-06
1.03231e-07
6.06291e-06
1.95337e-08
6.02267e-06
-1.01561e-07
5.97856e-06
-2.60275e-07
5.93054e-06
-4.45502e-07
5.87846e-06
-6.35097e-07
5.82092e-06
-8.0217e-07
5.75539e-06
-9.21702e-07
5.67585e-06
-9.83641e-07
5.58312e-06
-1.01143e-06
5.48176e-06
-9.92231e-07
5.36615e-06
-8.82607e-07
5.24141e-06
-7.40339e-07
5.12153e-06
-4.90159e-07
4.94817e-06
1.02944e-07
4.72661e-06
5.20277e-07
4.66346e-06
2.42695e-07
4.80968e-06
-8.66315e-07
5.09851e-06
1.16637e-06
3.65207e-06
5.73856e-06
2.42288e-07
5.74952e-06
2.22381e-07
5.76255e-06
1.99149e-07
5.7696e-06
1.82466e-07
5.76571e-06
1.60527e-07
5.74622e-06
1.22733e-07
5.70824e-06
5.75188e-08
5.65089e-06
-4.42143e-08
5.57581e-06
-1.85213e-07
5.48635e-06
-3.56063e-07
5.38788e-06
-5.36677e-07
5.28562e-06
-6.99966e-07
5.18255e-06
-8.18679e-07
5.07507e-06
-8.762e-07
4.96887e-06
-9.05286e-07
4.87207e-06
-8.95479e-07
4.77771e-06
-7.88233e-07
4.69334e-06
-6.55944e-07
4.62331e-06
-4.20023e-07
4.48968e-06
2.36309e-07
4.30123e-06
7.08531e-07
4.29599e-06
2.47644e-07
4.53134e-06
-1.10049e-06
4.78711e-06
9.12274e-07
3.34092e-06
4.69685e-06
2.40775e-07
4.70955e-06
2.0969e-07
4.72944e-06
1.79275e-07
4.74818e-06
1.63747e-07
4.75744e-06
1.5129e-07
4.74916e-06
1.3104e-07
4.71795e-06
8.87566e-08
4.66111e-06
1.26467e-08
4.57962e-06
-1.03715e-07
4.47928e-06
-2.55719e-07
4.37071e-06
-4.28115e-07
4.2649e-06
-5.94178e-07
4.16778e-06
-7.21591e-07
4.07682e-06
-7.85303e-07
3.99962e-06
-8.28146e-07
3.94009e-06
-8.36027e-07
3.88751e-06
-7.35746e-07
3.85154e-06
-6.20157e-07
3.81854e-06
-3.87321e-07
3.71337e-06
3.41195e-07
3.57319e-06
8.48652e-07
3.61109e-06
2.09433e-07
3.85644e-06
-1.34766e-06
4.08316e-06
6.83748e-07
3.08077e-06
3.80697e-06
2.48699e-07
3.80824e-06
2.08433e-07
3.81743e-06
1.70099e-07
3.82992e-06
1.51284e-07
3.83834e-06
1.4288e-07
3.83498e-06
1.34426e-07
3.81287e-06
1.10878e-07
3.76693e-06
5.86064e-08
3.6968e-06
-3.35743e-08
3.60871e-06
-1.67637e-07
3.51553e-06
-3.3498e-07
3.43033e-06
-5.09046e-07
3.35836e-06
-6.49705e-07
3.29806e-06
-7.25063e-07
3.25787e-06
-7.88028e-07
3.23311e-06
-8.1137e-07
3.20788e-06
-7.10568e-07
3.19171e-06
-6.0402e-07
3.15731e-06
-3.52978e-07
3.05418e-06
4.43876e-07
2.94986e-06
9.52879e-07
2.99662e-06
1.62457e-07
3.19182e-06
-1.54254e-06
3.39871e-06
4.76422e-07
2.83525e-06
3.10435e-06
2.5409e-07
3.1033e-06
2.09493e-07
3.10469e-06
1.68727e-07
3.10929e-06
1.46707e-07
3.11321e-06
1.38983e-07
3.11112e-06
1.36548e-07
3.0967e-06
1.25329e-07
3.06368e-06
9.16563e-08
3.00966e-06
2.04633e-08
2.93968e-06
-9.76483e-08
2.86626e-06
-2.61548e-07
2.80238e-06
-4.45175e-07
2.75207e-06
-5.99404e-07
2.7162e-06
-6.89228e-07
2.70359e-06
-7.75489e-07
2.69985e-06
-8.07716e-07
2.68491e-06
-6.95731e-07
2.66844e-06
-5.8773e-07
2.62122e-06
-3.06108e-07
2.5261e-06
5.38804e-07
2.4557e-06
1.02343e-06
2.48508e-06
1.32805e-07
2.59323e-06
-1.6527e-06
2.77837e-06
2.89759e-07
2.58734e-06
2.53603e-06
2.50346e-07
2.54184e-06
2.03706e-07
2.54578e-06
1.6481e-07
2.54952e-06
1.42991e-07
2.55159e-06
1.36931e-07
2.55041e-06
1.37758e-07
2.54163e-06
1.34142e-07
2.51953e-06
1.13791e-07
2.48146e-06
5.85527e-08
2.42999e-06
-4.61707e-08
2.3747e-06
-2.0629e-07
2.32679e-06
-3.97321e-07
2.29047e-06
-5.6317e-07
2.27003e-06
-6.68857e-07
2.27072e-06
-7.76269e-07
2.27223e-06
-8.09334e-07
2.2555e-06
-6.79104e-07
2.22726e-06
-5.59573e-07
2.17235e-06
-2.51405e-07
2.10254e-06
6.08003e-07
2.06505e-06
1.061e-06
2.06621e-06
1.31435e-07
2.07496e-06
-1.66163e-06
2.2341e-06
1.29244e-07
2.32424e-06
2.10073e-06
2.40489e-07
2.11158e-06
1.92869e-07
2.11821e-06
1.58201e-07
2.12466e-06
1.36569e-07
2.12938e-06
1.32229e-07
2.13164e-06
1.35533e-07
2.12969e-06
1.36129e-07
2.1194e-06
1.2411e-07
2.09639e-06
8.15788e-08
2.05924e-06
-9.01311e-09
2.01401e-06
-1.61046e-07
1.97101e-06
-3.54312e-07
1.93636e-06
-5.28508e-07
1.91756e-06
-6.50073e-07
1.91721e-06
-7.75982e-07
1.91473e-06
-8.06897e-07
1.89381e-06
-6.58295e-07
1.85417e-06
-5.20098e-07
1.79848e-06
-1.9607e-07
1.76242e-06
6.4419e-07
1.75515e-06
1.06855e-06
1.73097e-06
1.5505e-07
1.65305e-06
-1.58559e-06
1.7875e-06
-5.54551e-09
2.04958e-06
1.77497e-06
2.35704e-07
1.78507e-06
1.82787e-07
1.79348e-06
1.49821e-07
1.80196e-06
1.28119e-07
1.80922e-06
1.24986e-07
1.81578e-06
1.28998e-07
1.82018e-06
1.31762e-07
1.81953e-06
1.24802e-07
1.80936e-06
9.17748e-08
1.78411e-06
1.62446e-08
1.74562e-06
-1.22571e-07
1.70143e-06
-3.10159e-07
1.66045e-06
-4.87619e-07
1.6329e-06
-6.22633e-07
1.6198e-06
-7.63044e-07
1.60748e-06
-7.94709e-07
1.58285e-06
-6.33783e-07
1.53798e-06
-4.75328e-07
1.48675e-06
-1.45103e-07
1.48879e-06
6.41507e-07
1.51711e-06
1.04061e-06
1.4719e-06
2.00119e-07
1.31611e-06
-1.43017e-06
1.42826e-06
-1.19209e-07
1.75969e-06
1.55589e-06
2.34533e-07
1.56025e-06
1.78436e-07
1.5637e-06
1.46397e-07
1.57213e-06
1.19714e-07
1.58292e-06
1.14215e-07
1.59465e-06
1.173e-07
1.60644e-06
1.20013e-07
1.61562e-06
1.15652e-07
1.61588e-06
9.15418e-08
1.59838e-06
3.3745e-08
1.56068e-06
-8.48367e-08
1.50693e-06
-2.56399e-07
1.44986e-06
-4.30499e-07
1.40495e-06
-5.77734e-07
1.37476e-06
-7.32853e-07
1.35241e-06
-7.72344e-07
1.32354e-06
-6.04962e-07
1.27565e-06
-4.27535e-07
1.23669e-06
-1.06548e-07
1.27934e-06
5.9908e-07
1.34156e-06
9.78896e-07
1.28644e-06
2.54709e-07
1.07737e-06
-1.22307e-06
1.16956e-06
-2.11144e-07
1.46617e-06
1.38305e-06
2.34448e-07
1.39024e-06
1.71243e-07
1.39616e-06
1.40487e-07
1.40493e-06
1.10965e-07
1.4171e-06
1.02047e-07
1.4329e-06
1.01511e-07
1.44967e-06
1.03275e-07
1.46431e-06
1.0104e-07
1.47187e-06
8.4003e-08
1.46257e-06
4.30518e-08
1.42886e-06
-5.11161e-08
1.36857e-06
-1.96121e-07
1.29735e-06
-3.59332e-07
1.23206e-06
-5.12587e-07
1.17777e-06
-6.78859e-07
1.14168e-06
-7.36565e-07
1.10911e-06
-5.72599e-07
1.06106e-06
-3.79685e-07
1.0408e-06
-8.6729e-08
1.12352e-06
5.1586e-07
1.21679e-06
8.86585e-07
1.15801e-06
3.13652e-07
9.14545e-07
-9.80673e-07
9.83872e-07
-2.82172e-07
1.1807e-06
1.27339e-06
2.28649e-07
1.28118e-06
1.63442e-07
1.28558e-06
1.36108e-07
1.29572e-06
1.00857e-07
1.31122e-06
8.65653e-08
1.33058e-06
8.2182e-08
1.35196e-06
8.19523e-08
1.37213e-06
8.09259e-08
1.38653e-06
6.96166e-08
1.38559e-06
4.4014e-08
1.35686e-06
-2.23413e-08
1.29241e-06
-1.31642e-07
1.20705e-06
-2.73923e-07
1.11861e-06
-4.24121e-07
1.03951e-06
-5.99737e-07
9.85107e-07
-6.82092e-07
9.43186e-07
-5.30671e-07
8.96277e-07
-3.32777e-07
8.92343e-07
-8.30995e-08
1.00412e-06
4.0415e-07
1.12443e-06
7.66724e-07
1.07412e-06
3.63854e-07
8.29206e-07
-7.37288e-07
8.80156e-07
-3.3323e-07
9.23201e-07
1.16954e-06
2.20751e-07
1.18491e-06
1.48135e-07
1.19702e-06
1.23988e-07
1.2111e-06
8.68132e-08
1.22925e-06
6.83881e-08
1.25148e-06
5.99814e-08
1.27457e-06
5.89344e-08
1.29616e-06
5.93402e-08
1.31555e-06
5.03075e-08
1.32469e-06
3.4803e-08
1.30831e-06
-5.82113e-09
1.25339e-06
-7.6784e-08
1.16695e-06
-1.87382e-07
1.0611e-06
-3.18429e-07
9.53345e-07
-4.92259e-07
8.71088e-07
-6.00121e-07
8.14872e-07
-4.74645e-07
7.68582e-07
-2.86804e-07
7.73028e-07
-8.89476e-08
9.00555e-07
2.77327e-07
1.04437e-06
6.25621e-07
9.97614e-07
4.09209e-07
7.3348e-07
-4.77242e-07
7.69512e-07
-3.67762e-07
6.74059e-07
1.11687e-06
2.14035e-07
1.13072e-06
1.34242e-07
1.14604e-06
1.08728e-07
1.16631e-06
6.65952e-08
1.18704e-06
4.76891e-08
1.20686e-06
4.02132e-08
1.22809e-06
3.77765e-08
1.25139e-06
3.6142e-08
1.27354e-06
2.81346e-08
1.28722e-06
2.11554e-08
1.28133e-06
7.12834e-11
1.24228e-06
-3.76667e-08
1.166e-06
-1.11075e-07
1.05489e-06
-2.07256e-07
9.22257e-07
-3.59585e-07
8.04243e-07
-4.82051e-07
7.26534e-07
-3.96966e-07
6.75916e-07
-2.36195e-07
6.76519e-07
-8.94811e-08
8.03772e-07
1.50014e-07
9.74634e-07
4.54482e-07
9.81416e-07
4.02519e-07
7.44821e-07
-2.40866e-07
7.2588e-07
-3.4954e-07
4.80318e-07
1.03273e-06
1.92353e-07
1.06238e-06
1.05084e-07
1.0852e-06
8.58083e-08
1.10269e-06
4.92947e-08
1.11807e-06
3.22162e-08
1.13456e-06
2.38687e-08
1.15191e-06
2.0722e-08
1.16785e-06
2.00631e-08
1.18224e-06
1.4198e-08
1.19589e-06
7.05261e-09
1.20628e-06
-9.66673e-09
1.1969e-06
-2.88491e-08
1.15197e-06
-6.55308e-08
1.06055e-06
-1.16351e-07
9.20957e-07
-2.20223e-07
7.71455e-07
-3.32445e-07
6.6777e-07
-2.92944e-07
6.06688e-07
-1.7567e-07
5.92002e-07
-7.99925e-08
6.97412e-07
4.98666e-08
8.7206e-07
2.89767e-07
9.1187e-07
3.53306e-07
7.29911e-07
-7.43155e-08
7.00774e-07
-3.04744e-07
3.3075e-07
9.32608e-07
1.49675e-07
9.71641e-07
6.67449e-08
1.00305e-06
5.43803e-08
1.02849e-06
2.42258e-08
1.0486e-06
1.20573e-08
1.06511e-06
7.67516e-09
1.08092e-06
5.45648e-09
1.09688e-06
4.04563e-09
1.11157e-06
1.74194e-10
1.12231e-06
-4.35574e-09
1.12792e-06
-1.43056e-08
1.12178e-06
-2.35556e-08
1.09673e-06
-3.94708e-08
1.03926e-06
-5.96214e-08
9.24145e-07
-1.05171e-07
7.68107e-07
-1.75748e-07
6.45296e-07
-1.69264e-07
5.72379e-07
-1.03504e-07
5.37011e-07
-5.22061e-08
6.07529e-07
-1.21974e-08
7.82591e-07
1.28806e-07
8.64966e-07
2.55313e-07
7.09983e-07
5.71239e-08
6.53503e-07
-2.24003e-07
2.01916e-07
8.29951e-07
9.60853e-08
8.62145e-07
3.58837e-08
8.82769e-07
3.37591e-08
8.92175e-07
1.55197e-08
8.9682e-07
7.33755e-09
9.00424e-07
4.6637e-09
9.0377e-07
3.14094e-09
9.0686e-07
8.55937e-10
9.10494e-07
-2.24027e-09
9.12173e-07
-7.23666e-09
9.10236e-07
-1.05949e-08
9.01956e-07
-1.68389e-08
8.87349e-07
-2.29344e-08
8.62524e-07
-3.62547e-08
8.07981e-07
-5.07627e-08
7.04052e-07
-7.04349e-08
5.97473e-07
-6.07708e-08
5.21979e-07
-2.9745e-08
4.64703e-07
-1.18606e-08
4.73079e-07
-2.51495e-09
5.92719e-07
3.92944e-08
7.34345e-07
7.93346e-08
7.04962e-07
3.56637e-08
6.11273e-07
-8.19107e-08
1.31419e-07
6.17472e-07
6.53356e-07
6.87126e-07
7.02645e-07
7.0999e-07
7.14666e-07
7.17805e-07
7.18673e-07
7.16422e-07
7.092e-07
6.98594e-07
6.81767e-07
6.58824e-07
6.22569e-07
5.71813e-07
5.01386e-07
4.40608e-07
4.108e-07
3.98995e-07
3.96564e-07
4.35775e-07
5.15003e-07
5.50755e-07
4.68846e-07
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
30
(
-3.18841e-06
-3.41725e-06
-3.66252e-06
-3.92539e-06
-4.20713e-06
-4.50909e-06
-4.83272e-06
-5.17958e-06
-5.55134e-06
-5.94978e-06
-6.37681e-06
-5.74083e-06
-6.99816e-06
-8.53085e-06
-1.03992e-05
-1.26768e-05
-1.54532e-05
-1.88376e-05
-2.29633e-05
-1.68107e-05
-1.46346e-05
-1.27401e-05
-1.10909e-05
-9.65521e-06
-8.40535e-06
-7.31728e-06
-6.37007e-06
-5.54546e-06
-4.82761e-06
-4.20268e-06
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
57
(
4.50697e-06
4.52478e-06
4.91092e-06
4.61991e-06
4.73215e-06
4.72126e-06
4.74464e-06
4.72276e-06
4.7339e-06
4.7029e-06
4.68108e-06
4.6558e-06
4.64931e-06
4.65028e-06
4.65869e-06
4.66654e-06
4.67225e-06
4.67368e-06
4.6709e-06
4.66429e-06
4.65421e-06
4.64142e-06
4.62604e-06
4.6106e-06
4.60298e-06
4.63943e-06
4.83621e-06
6.43929e-06
6.93362e-06
7.21258e-06
7.37074e-06
7.46647e-06
7.52467e-06
7.54249e-06
7.49528e-06
7.34695e-06
7.07853e-06
6.70965e-06
6.28499e-06
5.85473e-06
5.45767e-06
5.0969e-06
4.34385e-06
3.64297e-06
3.02687e-06
2.49615e-06
2.0628e-06
1.71736e-06
1.46392e-06
1.2681e-06
1.13834e-06
1.01776e-06
9.20183e-07
8.50336e-07
7.83207e-07
6.83479e-07
6.00265e-07
)
;
}
upperWall
{
type calculated;
value uniform 0;
}
lowerWall
{
type calculated;
value uniform 0;
}
frontAndBack
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
|
|
8e5bb5b99f41f7a9495dbd0e2eb6ba9dec61c105
|
34abe05d74d7d93fe7d84ca3421b272b97d2c069
|
/CSysResource/ApicalCommonApi.h
|
131b3ff0dabfb4a340b278bc7a3e2b45b4b5ff4f
|
[] |
no_license
|
bluekite0/hSettings
|
c42a2e6e3e0ea304ce011b82da6799ac4882205f
|
7481cd3642801e6340a9dfe46a1e1e7f03ca81a0
|
refs/heads/master
| 2017-12-11T23:36:41.448792
| 2017-03-05T13:46:48
| 2017-03-05T13:46:48
| null | 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 5,136
|
h
|
ApicalCommonApi.h
|
#pragma once
#ifndef CAPICAL_COMMON
#define CAPICAL_COMMON __declspec(dllexport)
#endif
#ifndef CAPICAL_COMMON
#define CAPICAL_COMMON __declspec(dllimport)
#endif
class CAPICAL_COMMON CApicalCommonApi
{
public:
CApicalCommonApi(void);
~CApicalCommonApi(void);
public:
/**********************************************************
Description:画电池函数
Parameters:
(input)pDC:电池所画界面的DC
(input)strPicPath:(扩展用途)设置图片路径,暂时没有作用,设置为NULL
(input)m_rcBattery:电池所画位置
Return:void
Remarks:
**********************************************************/
void DrawBattery(CDC *pDC, CString strPicPath, CRect m_rcBattery);
/**********************************************************
Description:画时间函数
Parameters:
(input)pDC:时间所画界面的DC
(input)strPicPath:(扩展用途)设置图片路径,暂时没有作用,设置为NULL
(input)m_rcTime:时间所画位置
Return:void
Remarks:
**********************************************************/
void DrawTime(CDC *pDC, CString strPicPath, CRect m_rcTime);
/**********************************************************
Description:获取系统时间中的年月日e.g2011-09-25
Parameters:
(input)typeDisp:输入年月日之间的连接方式,是-,就传GetDay(_T("-"))
Return:
CString:返回2011-09-25
Remarks:
**********************************************************/
CString GetDay(CString typeDisp);
/**********************************************************
Description:获取系统时间中的时间e.g20:50
Parameters:
(input)typeDisp:输入时间的连接方式,是“:”,就传GetTime(_T(":"))
Return:
CString:返回2011-09-25
Remarks:
**********************************************************/
CString GetTime(CString typeDisp);
/**********************************************************
Description:注册表为DWORD类型的读
Parameters:
(output)wOutput:返回注册表的值
(input)hKey:标准项名
(input)strSubkey:子项的名字
(input)strValueName:注册表项的名字
Return:TRUE,成功 FALSE,失败
Remarks:
e.g我们获取开门方式的注册表值。
它的保存名字为:OpendoorIndex
保存位置为:HKEY_LOCAL_MACHINE\\SoftWare\\DialogType
那么对应的:hKey:HKEY_LOCAL_MACHINE
strSubkey:SoftWare\\DialogType
strValueName:OpendoorIndex
**********************************************************/
BOOL ReadRegistry(DWORD &wOutput,HKEY hKey,LPCTSTR strSubkey,LPCTSTR strValueName);
/**********************************************************
Description:注册表为DWORD类型的写
Parameters:
(input)wInput:注册表的值
(input)hKey:标准项名
(input)strSubkey:子项的名字
(input)strValueName:注册表项的名字
Return:TRUE,成功 FALSE,失败
Remarks:
**********************************************************/
BOOL WriteRegistry(DWORD wInput,HKEY hKey,LPCTSTR strSubkey,LPCTSTR strValueName);
/**********************************************************
Description:注册表为CString类型的读
Parameters:
Return:TRUE,成功 FALSE,失败
Remarks:同上,不做赘述
**********************************************************/
BOOL ReadRegistry(CString &strOutput,HKEY hKey,LPCTSTR strSubkey,LPCTSTR strValueName);
BOOL WriteRegistry(CString strInput,HKEY hKey,LPCTSTR strSubkey,LPCTSTR strValueName);
/**********************************************************
Description:注册表为自定义类型的读(如自定义的结构体等)
Parameters:
(input)wInlen:获取的内容长度
Return:TRUE,成功 FALSE,失败
Remarks:
**********************************************************/
BOOL ReadRegistry(CHAR * pOutput,DWORD wInlen,HKEY hKey,LPCTSTR strSubkey,LPCTSTR strValueName);
/**********************************************************
Description:注册表为自定义类型的读(如自定义的结构体等)
Parameters:
(input)wInlen:写入注册表的内容长度
Return:TRUE,成功 FALSE,失败
Remarks:
**********************************************************/
BOOL WriteRegistry(CHAR * pInput,DWORD wInlen,HKEY hKey,LPCTSTR strSubkey,LPCTSTR strValueName);
/**********************************************************
Description:获取某个控件的背景画刷
Parameters:
(input)hWnd:当前窗口句柄
(input)nID:控件ID
(input)hBmBk:当前背景图片
Return:HBRUSH,返回画刷
Remarks:通过该函数获取的画刷,大家一定要及时释放
**********************************************************/
HBRUSH GetBkBrush( HWND hWnd, UINT nID, HBITMAP hBmBk );
/**********************************************************
Description:获取当前屏幕的位图
Parameters:
(input)hWnd:当前窗口句柄
(output)nWidth:返回位图的宽
(output)nHeight:返回位图的高
Return:HBITMAP,返回位图
Remarks:通过该函数获取的位图,大家一定要及时释放
**********************************************************/
HBITMAP CopyScreenToBitmap(int &nWidth,int &nHeight);
};
|
6e013a5f963b87ba08ac952571f9c375ca4129a4
|
6581cff177dcd5d784ed637249c4a6629fb959d5
|
/cointoss/cointoss.cpp
|
9a9e27d64fb52df5026f43e2d27f3be665e777be
|
[] |
no_license
|
MohitYnwa/ETH-Algo-Lab
|
3b538a141a58482169d8413767f36261aefa72b6
|
f565821497498c872fd5fdd32bd4ebd2f1ed4040
|
refs/heads/master
| 2021-01-10T16:26:45.534710
| 2015-11-23T17:24:17
| 2015-11-23T17:24:17
| 46,734,551
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,150
|
cpp
|
cointoss.cpp
|
#include <iostream>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/push_relabel_max_flow.hpp>
#include <boost/tuple/tuple.hpp>
using namespace std;
using namespace boost;
typedef adjacency_list_traits<vecS, vecS, directedS> Traits;
typedef adjacency_list<vecS, vecS, directedS, no_property,
property<edge_capacity_t, long,
property<edge_residual_capacity_t, long,
property<edge_reverse_t, Traits::edge_descriptor> > > > Graph;
typedef property_map<Graph, edge_capacity_t>::type EdgeCapacityMap;
typedef property_map<Graph, edge_residual_capacity_t>::type ResidualCapacityMap;
typedef property_map<Graph, edge_reverse_t>::type ReverseEdgeMap;
typedef graph_traits<Graph>::edge_descriptor Edge;
typedef graph_traits<Graph>::vertex_descriptor Vertex;
struct EdgeAdder {
EdgeAdder(Graph &G, EdgeCapacityMap &capacity, ReverseEdgeMap &rev_edge) : G(G), capacity(capacity), rev_edge(rev_edge) {}
void addEdge(int u,int v, long c) {
Edge e,rev;
tie(e, tuples::ignore) = add_edge(u,v,G);
tie(rev, tuples::ignore) = add_edge(v,u,G);
capacity[e] = c;
capacity[rev] = 0;
rev_edge[e] = rev;
rev_edge[rev] = e;
}
Graph &G;
EdgeCapacityMap &capacity;
ReverseEdgeMap &rev_edge;
};
int main()
{
int t;
cin>>t;
while (t--)
{
int n,m;
cin>>n>>m;
int v = m + n + 2;
Graph G(v);
EdgeCapacityMap capacity = get(edge_capacity, G);
ReverseEdgeMap rev_edge = get(edge_reverse, G);
EdgeAdder edgeAdder(G, capacity, rev_edge);
//source sink m n
for (int i =0;i<m;i++)
{
int a,b,c;
cin>>a>>b>>c;
if (c!=0)
// edgeAdder.addEdge(0, c==1? i+2 + a : i+2+ b,1);
{
edgeAdder.addEdge(0, 2 + i, 1);
edgeAdder.addEdge( 2+i, c==1? 2 + m + a : 2 + m + b, 1);
}
else
{
edgeAdder.addEdge(0, 2 + i, 1);
edgeAdder.addEdge( 2+i, 2+m+a, 1);
edgeAdder.addEdge ( 2+i, 2+m+b, 1);
}
}
int sum = 0;
for (int i=0;i<n;i++)
{
int sc;
cin>>sc;
sum+=sc;
edgeAdder.addEdge( 2 + m + i, 1, sc);
}
if (sum!=m) { cout<<"no"<<endl; continue; }
long flow = push_relabel_max_flow(G, 0, 1);
if (flow != sum) cout<<"no"<<endl;
else cout<<"yes"<<endl;
}
return 0;
}
|
9a0674666fc8875847959d104a50c6eaa47997da
|
33de164e0d72e50f8c365bb102e6510c83785028
|
/other/polynomial.cpp
|
7f4620370828fe715dd91e9f0f0bf41774bb45c7
|
[] |
no_license
|
square1001/algorithm-contest-library
|
0763b2a4406382b00c9b675d8468ecb4f21e84f1
|
d923b15b42ffe2dd82ff778bcb131ee00ad6aaa5
|
refs/heads/master
| 2021-06-01T20:31:05.593745
| 2020-04-07T03:07:40
| 2020-04-07T03:07:40
| 148,795,399
| 6
| 0
| null | 2019-11-08T14:39:12
| 2018-09-14T13:51:39
|
C++
|
UTF-8
|
C++
| false
| false
| 4,673
|
cpp
|
polynomial.cpp
|
#ifndef CLASS_POLYNOMIAL
#define CLASS_POLYNOMIAL
#include <vector>
#include <complex>
#include <cstdint>
#include <algorithm>
class polynomial {
private:
using type = double;
const type epsilon = 1.0e-9;
std::size_t sz;
std::vector<type> a;
inline bool equivalent(type ra, type rb) const {
return (epsilon <= ra - rb && ra - rb <= epsilon);
}
void discrete_fourier_transform(std::vector<std::complex<type> >& v, bool rev) {
std::size_t n = v.size();
const type pi = acos(type(-1));
for (std::size_t i = 0, j = 1; j < n - 1; ++j) {
for (std::size_t k = n >> 1; k >(i ^= k); k >>= 1);
if (i > j) std::swap(v[i], v[j]);
}
for (std::size_t b = 1; b < n; b <<= 1) {
std::complex<type> wr = std::polar(type(1), (rev ? type(-1) : type(1)) * pi / b);
for (std::size_t i = 0; i < n; i += 2 * b) {
std::complex<type> w = type(1);
for (std::size_t j = 0; j < b; ++j) {
std::complex<type> v0 = v[i + j];
std::complex<type> v1 = w * v[i + j + b];
v[i + j] = v0 + v1;
v[i + j + b] = v0 - v1;
w *= wr;
}
}
}
if (!rev) return;
for (std::size_t i = 0; i < n; i++) v[i] /= n;
}
public:
explicit polynomial() : sz(1), a(std::vector<type>({ type() })) {};
explicit polynomial(std::size_t sz_) : sz(sz_), a(std::vector<type>(sz_, type())) {};
explicit polynomial(std::vector<type> a_) : sz(a_.size()), a(a_) {};
polynomial& operator=(const polynomial& p) {
sz = p.sz;
a = p.a;
return (*this);
}
std::size_t size() const { return sz; }
std::size_t degree() const { return sz - 1; }
type operator[](std::size_t idx) const {
return a[idx];
}
type& operator[](std::size_t idx) {
return a[idx];
}
bool operator==(const polynomial& p) const {
for (std::size_t i = 0; i < sz || i < p.sz; ++i) {
if (!equivalent(i < sz ? a[i] : type(0), i < p.sz ? p.a[i] : type(0))) {
return false;
}
}
return true;
}
bool operator!=(const polynomial& p) const {
return !(operator==(p));
}
polynomial resize_transform(std::size_t d) const {
// Resize polynomial to d: in other words, f(x) := f(x) mod x^d
polynomial ans(*this);
ans.sz = d;
ans.a.resize(d, type(0));
return ans;
}
polynomial star_transform() const {
// f*(x) = x^degree * f(1/x)
polynomial ans(*this);
reverse(ans.a.begin(), ans.a.end());
return ans;
}
polynomial inverse(std::size_t d) const {
// Find g(x) where g(x) * f(x) = 1 (mod x^d)
polynomial ans(std::vector<type>({ type(1) / a[0] }));
while (ans.size() < d) {
polynomial nxt;
nxt = -ans * resize_transform(ans.size() * 2);
nxt.a[0] += type(2);
nxt *= ans;
ans = nxt.resize_transform(ans.size() * 2);
}
ans = ans.resize_transform(d);
return ans;
}
polynomial& operator+=(const polynomial& p) {
sz = std::max(sz, p.sz);
a.resize(sz);
for (std::size_t i = 0; i < sz; ++i) a[i] += p.a[i];
return (*this);
}
polynomial& operator-=(const polynomial& p) {
sz = std::max(sz, p.sz);
a.resize(sz);
for (std::size_t i = 0; i < sz; ++i) a[i] -= p.a[i];
return (*this);
}
polynomial& operator*=(const polynomial& p) {
std::size_t n = 2;
while (n < sz * 2 || n < p.sz * 2) n <<= 1;
std::vector<std::complex<type> > v(n), pv(n);
for (std::size_t i = 0; i < sz; ++i) v[i] = a[i];
for (std::size_t i = 0; i < p.sz; ++i) pv[i] = p.a[i];
discrete_fourier_transform(v, false);
discrete_fourier_transform(pv, false);
for (std::size_t i = 0; i < n; ++i) v[i] *= pv[i];
discrete_fourier_transform(v, true);
sz += p.sz - 1;
a.resize(sz, type(0));
for (std::size_t i = 0; i < sz; ++i) a[i] = v[i].real();
return (*this);
}
polynomial& operator/=(const polynomial& p) {
std::size_t dn = degree(), dm = p.degree();
if (dn < dm) return polynomial();
polynomial gstar = p.star_transform().inverse(dn - dm + 1);
polynomial qstar = (gstar * (*this).star_transform()).resize_transform(dn - dm + 1);
(*this) = qstar.star_transform();
return (*this);
}
polynomial& operator%=(const polynomial& p) {
(*this) -= (*this) / p * p;
(*this) = (*this).resize_transform(p.size() - 1);
return (*this);
}
polynomial operator+() const {
return polynomial(*this);
}
polynomial operator-() const {
return polynomial() - polynomial(*this);
}
polynomial operator+(const polynomial& p) const {
return polynomial(*this) += p;
}
polynomial operator-(const polynomial& p) const {
return polynomial(*this) -= p;
}
polynomial operator*(const polynomial& p) const {
return polynomial(*this) *= p;
}
polynomial operator/(const polynomial& p) const {
return polynomial(*this) /= p;
}
polynomial operator%(const polynomial& p) const {
return polynomial(*this) %= p;
}
};
#endif
|
28b63658ef2ad1a4099cf814b252be1f8546e42d
|
65d44bfc313bd972c1436040f0907f85cf04ff66
|
/include/DataLine.h
|
61871c25a2ace7feca4ef04df48d7b26eebb3892
|
[] |
no_license
|
amberlauer/my_azure2
|
c4f5d6d917e1f50eb5f4678db1575df6c95a2a74
|
7f83675ec2f54efa3517d20a020adaaec9338e52
|
refs/heads/master
| 2020-05-30T09:23:15.888972
| 2019-05-31T19:46:58
| 2019-05-31T19:46:58
| 189,644,616
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 954
|
h
|
DataLine.h
|
#ifndef DATALINE_H
#define DATALINE_H
#include <fstream>
///A class to read and store a line from a data file.
/*!
* The DataLine class reads and stores a formatted line from a data file.
*/
class DataLine {
public:
/*!
* Constructor fills the DataLine object from an input stream.
*/
DataLine(std::ifstream &stream) {
stream >> energy_ >> angle_ >> crossSection_ >> error_;
};
/*!
* Returns the angle for the read in data point.
*/
double angle() const {return angle_;};
/*!
* Returns the energy for the read in data point.
*/
double energy() const {return energy_;};
/*!
* Returns the cross section for the read in data point.
*/
double crossSection() const {return crossSection_;};
/*!
* Returns the cross section error for the read in data point.
*/
double error() const {return error_;};
private:
double angle_;
double energy_;
double crossSection_;
double error_;
};
#endif
|
a512dd1ae3cd93ef8fa6539697c9cb682f59bbc4
|
c78c926155760aa63d24ad26b3356f6d19398f69
|
/NEUQOJ/大一上OJ作业/OJ第6周作业/快速幂.cpp
|
77331649c5fd6c3f88e9189b11b59267b4d360a4
|
[] |
no_license
|
fhyPayaso/ACM
|
34c26aff0697ef0e7956cd03e30f13739a286466
|
0c7f4bf298e9a164f8a5ae140f30f441ccc226dc
|
refs/heads/master
| 2021-08-30T05:04:53.518780
| 2017-12-16T03:39:10
| 2017-12-16T03:39:10
| 114,429,801
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 238
|
cpp
|
快速幂.cpp
|
#include<iostream>
using namespace std;
int main()
{
long long a,n;
const int m=100000007;
while(cin>>a>>n)
{
long long t=1;
while(n!=0)
{
if(n%2==1)
t=(t*a)%m;
a=(a*a)%m;
n/=2;
}
cout<<t<<endl;
}
return 0;
}
|
f6cddcb4b20c159289dca72b7f5023d0114afc46
|
7d0c6716470abfe81fb0d44d660a7e344eaf5d2a
|
/server/settings.router.ino
|
740353129b4621590739ddfc198801db78044159
|
[] |
no_license
|
do-Labs/MaterialSwitch
|
b24a60dbf7c82119f654a391ce74de5fd6656bc6
|
37a913fff0233994e3210aecffe6799a74a40e5e
|
refs/heads/master
| 2021-05-07T17:47:19.703374
| 2016-01-25T17:20:26
| 2016-01-25T17:20:26
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 179
|
ino
|
settings.router.ino
|
Router settingsRouter("/api/settings");
void SettingsRouter(WebApp &app) {
initSettingsController();
settingsRouter.get("/", &createSettings);
app.use(&settingsRouter);
}
|
dd1d18cc7bc2347acc09fff84fb1e6e4e1463ad2
|
b2a9478b9f69c9f6d0770eefcd00e1b47a9e73f9
|
/boards/breezy/breezy_board.h
|
da8d73c381ae11b94cc24d051f8115fdd15af3c7
|
[
"BSD-3-Clause"
] |
permissive
|
UAVs-at-Berkeley/berk_firmware
|
ea5a8686e34d89f71c15e75ee1db6ea89f47348b
|
523bb46f665c9b85e05afa3e3ae4341fda02332a
|
refs/heads/master
| 2020-04-23T12:27:22.122729
| 2019-02-11T18:17:42
| 2019-02-11T18:17:42
| 171,168,856
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,543
|
h
|
breezy_board.h
|
/*
* Copyright (c) 2017, James Jackson and Daniel Koch, BYU MAGICC Lab
*
* 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 copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef ROSFLIGHT_FIRMWARE_BREEZY_BOARD_H
#define ROSFLIGHT_FIRMWARE_BREEZY_BOARD_H
#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>
extern "C"
{
#include <breezystm32.h>
}
#include "board.h"
namespace rosflight_firmware
{
class BreezyBoard : public Board
{
private:
serialPort_t *Serial1;
std::function<void(void)> imu_callback_;
int _board_revision = 2;
float _accel_scale = 1.0;
float _gyro_scale = 1.0;
enum
{
SONAR_NONE,
SONAR_I2C,
SONAR_PWM
};
uint8_t sonar_type = SONAR_NONE;
rc_type_t rc_type_ = RC_TYPE_PPM;
uint32_t pwm_refresh_rate_ = 490;
uint16_t pwm_idle_pwm_ = 1000;
enum
{
BARO_NONE,
BARO_BMP280,
BARO_MS5611
};
uint8_t baro_type = BARO_NONE;
bool new_imu_data_;
uint64_t imu_time_us_;
public:
BreezyBoard();
// setup
void init_board() override;
void board_reset(bool bootloader) override;
// clock
uint32_t clock_millis() override;
uint64_t clock_micros() override;
void clock_delay(uint32_t milliseconds) override;
// serial
void serial_init(uint32_t baud_rate, uint32_t dev) override;
void serial_write(const uint8_t *src, size_t len) override;
uint16_t serial_bytes_available() override;
uint8_t serial_read() override;
void serial_flush() override;
// sensors
void sensors_init() override;
uint16_t num_sensor_errors() override;
bool new_imu_data() override;
bool imu_read(float accel[3], float* temperature, float gyro[3], uint64_t* time_us) override;
void imu_not_responding_error() override;
bool mag_present() override;
void mag_update() override;
void mag_read(float mag[3]) override;
bool baro_present() override;
void baro_update() override;
void baro_read(float *pressure, float *temperature) override;
bool diff_pressure_present() override;
void diff_pressure_update() override;
void diff_pressure_read(float *diff_pressure, float *temperature) override;
bool sonar_present() override;
void sonar_update() override;
float sonar_read() override;
// PWM
// TODO make these deal in normalized (-1 to 1 or 0 to 1) values (not pwm-specific)
void rc_init(rc_type_t rc_type) override;
bool rc_lost() override;
float rc_read(uint8_t channel) override;
void pwm_init(uint32_t refresh_rate, uint16_t idle_pwm) override;
void pwm_disable() override;
void pwm_write(uint8_t channel, float value) override;
// non-volatile memory
void memory_init() override;
bool memory_read(void * dest, size_t len) override;
bool memory_write(const void *src, size_t len) override;
// LEDs
void led0_on() override;
void led0_off() override;
void led0_toggle() override;
void led1_on() override;
void led1_off() override;
void led1_toggle() override;
// Backup memory
bool has_backup_data() override;
BackupData get_backup_data() override;
};
} // namespace rosflight_firmware
#endif // ROSFLIGHT_FIRMWARE_BREEZY_BOARD_H
|
ad53394900f25918ccba14a66c30c3c93aff0a1d
|
97da40df043f35ddf07047160c01da72ac711119
|
/319.BulbSwitcher.cpp
|
0c9de6a2a20b651c9fd988161c5d3dda17aa170e
|
[] |
no_license
|
w-mj/leetcode
|
851fdd58a5ced72f051701fbde2ec3f6d03ec840
|
09fa07d11725e568f1903872ac4e0a08a13c8712
|
refs/heads/master
| 2022-05-22T16:41:59.738640
| 2022-05-18T13:19:58
| 2022-05-18T13:19:58
| 152,947,501
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 378
|
cpp
|
319.BulbSwitcher.cpp
|
#include "defines.h"
class Solution {
public:
int bulbSwitch(int n) {
int ans = 0;
for (int i = 1; i * i <= n; i++) {
ans++;
}
return ans;
}
};
int main() {
Solution s;
cout << s.bulbSwitch(3) << endl;
cout << s.bulbSwitch(4) << endl;
cout << s.bulbSwitch(10) << endl;
cout << s.bulbSwitch(11) << endl;
}
|
024bb31168da0df51a56ce2740fcfda14e842ede
|
ba14343d3545ca1b33626ca6c2f5aa486c88ef23
|
/EstructuraExamen2-master/Evaluador.h
|
0f6ef64aa5563a31d7dd72325438febf78495e9e
|
[] |
no_license
|
Driem/Archivos
|
04c3473b7d9319f5e18133eedfb123d0018458c9
|
99ce30a714b2cce527f4019eee33782d2c0768e5
|
refs/heads/master
| 2021-01-20T08:14:43.465656
| 2014-09-22T20:52:55
| 2014-09-22T20:52:55
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 401
|
h
|
Evaluador.h
|
#ifndef EVALUADOR_H
#define EVALUADOR_H
//#include "NodoArbolBinario.h"
//#include "NodoArbolNArio.h"
#include <iostream> // std::cin, std::cout
#include <set> // std::cin, std::cout
using namespace std;
void evaluar();
//bool existeCamino(int grafo[5][5], int inicio, int destino);
//
//set<int> obtenerAdjacentes(int grafo[5][5], int inicio, int profundidad);
#endif // EVALUADOR_H
|
2590be2f729b00a658e91dd8df47867815764f6c
|
2e53c111bb22fffeda1e94361106b347870d15d8
|
/Compiler/Node.cpp
|
3b656728d0793bcef15bfea51658ec501b7adf21
|
[] |
no_license
|
yassmin96/Compilers
|
dab4f6ff4824c8a2c3d2d67b3d541d776946a69c
|
4aeda77b18a38604b1813b3495e71e2686858722
|
refs/heads/master
| 2020-03-29T11:57:26.020609
| 2018-09-22T15:16:02
| 2018-09-22T15:16:02
| 149,878,739
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 562
|
cpp
|
Node.cpp
|
//
// Created by Dalia on 16/03/2018.
//
#include "Node.h"
Node::Node(int count){
nodeCount = count;
final = false;
}
void Node::addToOutlist(Edge *edge){
out.push_back(edge);
}
void Node::setFinal(string type){
final = true;
tokenType = type;
}
void Node::setCopy(Node *node){
copy = node;
}
Node *Node::getCopy(){
return copy;
}
vector<Edge*> Node::getEdgeOutList(){
return out;
}
string Node::getFinalType(){
return tokenType;
}
bool Node::isFinal(){
return final;
}
int Node::getNodeCount(){
return nodeCount;
}
|
e961d7ad77336c00700b200e9b6a9476772c3e5a
|
41e9eaa410050fe1b1abc315ed044f4b29971796
|
/Borze.cpp
|
87925450c7f4525722781180b1d3e5b80a9cff35
|
[] |
no_license
|
Raisul191491/Noob_C-
|
32202ccf298de2915685b1a091fa5d7bf4cb80b3
|
3ce698ca763dab2a3d95f8dbfd1a755161e1857b
|
refs/heads/master
| 2023-02-26T11:18:19.107628
| 2021-02-01T18:24:01
| 2021-02-01T18:24:01
| 240,031,404
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 423
|
cpp
|
Borze.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
char x[200];
gets(x);
for(int i=0; i<strlen(x); i++)
{
if(x[i]=='.')
{
cout<< "0";
}
else if(x[i]=='-' && x[i+1]=='.')
{
cout<< "1";
i++;
}
else if(x[i]=='-' && x[i+1]=='-')
{
cout<< "2";
i++;
}
}
return 0;
}
|
eff47b19c3b732fda47bade8fd4513a313bae4df
|
307a78a98ba3e5344c6464036fa138511592a78c
|
/src/Engine/ui/ToolTipImpl.h
|
c05bc9a659099d18a57811f60977d1cd57af76db
|
[] |
no_license
|
cnsuhao/3dpanda
|
b0a2edb891aceee44bcf48e86038c0f222d7cee2
|
4c0cc31debe3b4e7d22f1eeab770b721f5816b2d
|
refs/heads/master
| 2021-08-23T13:42:20.770552
| 2016-01-19T15:23:36
| 2016-01-19T15:23:36
| null | 0
| 0
| null | null | null | null |
WINDOWS-1252
|
C++
| false
| false
| 483
|
h
|
ToolTipImpl.h
|
//
// Copyright(c) 1986-2100, TT, All Rights Reserved
// ×÷Õß: htz
// ÈÕÆÚ: 2014/3/11 9:54:53_
// ÃèÊö:
//
#ifndef _TOOLTIP_201431195453_
#define _TOOLTIP_201431195453_
#include "ControlImpl.h"
namespace panda
{
class ToolTipImpl:public ControlImpl
{
public:
ToolTipImpl(void);
virtual void SetText(const tstring& text);
virtual void OnRender(IGraph2D* graph);
void ShowTip(s32 x, s32 y);
};
}
#endif // _TOOLTIP_201431195453_
|
797b5e20758e64b041761912dcd2b606e20430a3
|
6d3b312a1629e62a5769ccc3caacaca7043a5ceb
|
/3dc/video/SmackerPlayback.h
|
59b53a276916cea3a7bb081db48853028e56fc18
|
[
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] |
permissive
|
Melanikus/AvP
|
f8c8d0bd70dc3efd962b0bcf1e08fa250dfef98f
|
334417e8b67f302ce6f7fcfa7dfa5b5f5ff271f7
|
refs/heads/main
| 2023-07-07T02:27:07.029050
| 2021-03-13T05:41:26
| 2021-03-13T05:41:26
| 338,442,307
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,019
|
h
|
SmackerPlayback.h
|
// Copyright (C) 2011 Barry Duncan. All Rights Reserved.
// The original author of this code can be contacted at: bduncan22@hotmail.com
// 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 ``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
// DEVELOPERS AND 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 _SmackerPlayback_h_
#define _SmackerPlayback_h_
#include "SmackerDecoder.h"
#include "RingBuffer.h"
#include "AudioStreaming.h"
#include "TextureManager.h"
#define HAVE_STRUCT_TIMESPEC
#include <pthread.h>
class SmackerPlayback
{
private:
std::string _fileName;
// thread handles
pthread_t _decodeThreadHandle;
pthread_t _audioThreadHandle;
bool _decodeThreadInited;
bool _audioThreadInited;
bool _frameCriticalSectionInited;
uint8_t _palette[768];
uint8_t *_frame;
uint32_t _frameWidth;
uint32_t _frameHeight;
public:
SmackerHandle _handle;
pthread_mutex_t _frameCriticalSection;
uint32_t _nAudioTracks;
AudioStream *_audioStream;
RingBuffer *_ringBuffer;
uint8_t *_audioData;
uint8_t *_audioDataBuffer;
uint32_t _audioDataBufferSize;
uint32_t _sampleRate;
uint32_t _currentFrame;
float _frameRate;
volatile bool _fmvPlaying;
bool _audioStarted;
volatile bool _frameReady;
bool _isLooped;
int Open(const std::string &fileName, bool isLooped = false);
void Close();
bool IsPlaying();
bool ConvertFrame(uint32_t width, uint32_t height, uint8_t *bufferPtr, uint32_t pitch);
~SmackerPlayback();
SmackerPlayback() :
_decodeThreadInited(false),
_audioThreadInited(false),
_frameCriticalSectionInited(false),
_fmvPlaying(false),
_audioStarted(false),
_frameReady(false),
_isLooped(false),
_nAudioTracks(0),
_audioStream(0),
_ringBuffer(0),
_audioData(0),
_frameRate(0),
_audioDataBuffer(0),
_currentFrame(0),
_audioDataBufferSize(0),
_sampleRate(0),
_frame(0)
{}
};
#endif
|
e0bf9c087c3c0dc3eed772637e99ec0f2b8a16b5
|
1323769581b1fc117a3b07c19abee62ea9c43996
|
/3DProj/3DProj/Terrain/QuadTree.cpp
|
b2cb126c8195ef477d47749c58ef223558c4bf13
|
[] |
no_license
|
Ceanze/3DProj
|
5c54b010a5d8a30a60dd6bcc05b5c15ac34b27d5
|
0984d0e3a360c580f040978fc6f41a1587c0d37a
|
refs/heads/master
| 2022-12-03T14:08:36.813886
| 2020-08-23T13:46:01
| 2020-08-23T13:46:01
| 113,999,332
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,893
|
cpp
|
QuadTree.cpp
|
#include "QuadTree.h"
#include "../Error.h"
QuadTree::QuadTree(const unsigned & recursionLevel, glm::vec3 corners[4], const float& height)
{
this->hasChildren = false;
this->inFrustum = false;
this->quadSize = glm::length((corners[1] - corners[0]));
for (int i = 0; i < 4; i++)
{
this->box.addPoint({ corners[i].x, corners[i].y, corners[i].z});
this->box.addPoint({ corners[i].x, corners[i].y + height, corners[i].z });
}
//Calculates quad corners for the children
if (recursionLevel > 0)
{
this->hasChildren = true;
this->children = new QuadTree*[4];
glm::vec3 v1 = { 0, 0, 0 }, v2 = { 0, 0, 0 };
v1 = (corners[1] - corners[0]) / 2.0f;
v2 = (corners[2] - corners[0]) / 2.0f;
glm::vec3 childCorners[4] = { corners[0], corners[0] + v1, corners[0] + v2, corners[0] + v1 + v2 };
this->children[0] = new QuadTree(recursionLevel - 1, childCorners, height);
childCorners[0] = corners[0] + v2;
childCorners[1] = corners[0] + v1 + v2;
childCorners[2] = corners[2];
childCorners[3] = corners[2] + v1;
this->children[1] = new QuadTree(recursionLevel - 1, childCorners, height);
childCorners[0] = corners[0] + v1;
childCorners[1] = corners[1];
childCorners[2] = corners[0] + v1 + v2;
childCorners[3] = corners[1] + v2;
this->children[2] = new QuadTree(recursionLevel - 1, childCorners, height);
childCorners[0] = corners[0] + v1 + v2;
childCorners[1] = corners[1] + v2;
childCorners[2] = corners[2] + v1;
childCorners[3] = corners[3];
this->children[3] = new QuadTree(recursionLevel - 1, childCorners, height);
}
}
QuadTree::~QuadTree()
{
if (this->hasChildren)
{
for (int i = 0; i < CHILDREN_AMOUNT; i++)
delete this->children[i];
delete[] this->children;
}
}
void QuadTree::init()
{
//Goes through the tree and sorts the triangles to the children depeding on positon
if (this->triangles.size() > 0 && this->hasChildren)
{
for (int i = 0; i < (int)this->triangles.size(); i++)
{
this->addTriangle(this->trianglePositions[i], this->triangles[i]);
}
this->triangles.clear();
this->trianglePositions.clear();
//Does the same for children
for (int i = 0; i < CHILDREN_AMOUNT; i++)
{
this->children[i]->init();
}
}
}
void QuadTree::addTriangleToRoot(const glm::vec2 pos, const Triangle triangle)
{
this->triangles.push_back(triangle);
this->trianglePositions.push_back(pos);
}
void QuadTree::addTriangle(const glm::vec2 & pos, const Triangle& triangle)
{
glm::vec3 center = this->box.getCenterPoint();
if (pos.x <= center.x && pos.y <= center.z)
{
this->children[0]->triangles.push_back(triangle);
this->children[0]->trianglePositions.push_back(pos);
}
else if (pos.x <= center.x && pos.y >= center.z)
{
this->children[1]->triangles.push_back(triangle);
this->children[1]->trianglePositions.push_back(pos);
}
else if (pos.x > center.x && pos.y < center.z)
{
this->children[2]->triangles.push_back(triangle);
this->children[2]->trianglePositions.push_back(pos);
}
else
{
this->children[3]->triangles.push_back(triangle);
this->children[3]->trianglePositions.push_back(pos);
}
}
void QuadTree::render()
{
for (int i = 0; i < CHILDREN_AMOUNT && this->hasChildren && this->inFrustum; i++)
this->children[i]->render();
if (this->triangles.size() > 0 && this->inFrustum && !this->hasChildren)
{
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->ebo);
glDrawElements(GL_TRIANGLES, this->triangles.size() * 3, GL_UNSIGNED_INT, 0);
}
}
bool QuadTree::statusFrustum(const Plane planes[6])
{
bool result = false;
this->setChildrenInFrustum(false);
//Checks which quads is in the frustum
for (int plane = 0; plane < 6; plane++)
{
bool in = false;
for (int pointBox = 0; pointBox < 8 && !in; pointBox++)
{
if (planes[plane].distance(this->box.getPoint(pointBox)) > 0)
{
in = true;
}
}
if (!in)
{
result = false;
return false;
}
else
result = true;
}
if(result)
{
this->inFrustum = true;
if (this->hasChildren)
{
for (int i = 0; i < CHILDREN_AMOUNT; i++)
{
this->children[i]->statusFrustum(planes);
}
}
}
return result;
}
void QuadTree::addEbo()
{
//Creates ebo for each leaf in the tree
if (this->triangles.size() > 0 && !this->hasChildren)
{
glGenBuffers(1, &this->ebo);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->ebo);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(GLuint)*this->triangles.size() * 3, &this->triangles[0], GL_STATIC_DRAW);
}
else if (this->hasChildren)
{
for (int i = 0; i < CHILDREN_AMOUNT; i++)
this->children[i]->addEbo();
}
}
AABox QuadTree::getBox() const
{
return this->box;
}
bool QuadTree::isInFrustum() const
{
return this->inFrustum;
}
void QuadTree::setChildrenInFrustum(bool state)
{
this->inFrustum = state;
if(this->hasChildren)
for (int i = 0; i < CHILDREN_AMOUNT; i++)
this->children[i]->setChildrenInFrustum(state);
}
|
29cce78ae49b0d022c3a7b217e5d938e884e8603
|
cce3cf98070ae9305f814c0013096d6c0b8a63d9
|
/сpp/HomeworkStep/lesson19/ConsoleApplication1/CircleInSquare.h
|
4c304478db8dfde6f20ad5960289ff536f72e0c4
|
[] |
no_license
|
ShaulovYevhen/-Examples
|
520db8ebdb6da3aedadfe39d5a6c8956955146a9
|
755bc1e62dd8f80f839d3c221061cd1a94e0535b
|
refs/heads/master
| 2022-12-10T05:49:04.658160
| 2021-02-14T16:52:12
| 2021-02-14T16:52:12
| 230,736,431
| 0
| 1
| null | 2022-12-08T02:43:55
| 2019-12-29T10:43:46
|
C++
|
UTF-8
|
C++
| false
| false
| 186
|
h
|
CircleInSquare.h
|
#pragma once
#include "Square.h"
#include "Circle.h"
class CircleInSquare : public Square, public Circle
{
public:
CircleInSquare(int radius) : Square(radius*2), Circle(radius) { }
};
|
879355b6e5793acfc271fee55f3dc67f42d17094
|
698d6ab133f0331021331c16a7a0d7252a1bdbcc
|
/cpp/LambdaInitCapture.cpp
|
f6c1501fb2450319fb478f3780e6cb8f46ca2cff
|
[] |
no_license
|
kambojankush/Mini-Projects
|
a23c66181e290f18293bb6220dbd690e9a128674
|
aec15f90ac3c212e11b1cca452931ec0cd1cf377
|
refs/heads/master
| 2023-04-28T15:38:01.019167
| 2022-02-06T02:09:13
| 2022-02-06T02:09:13
| 114,257,102
| 0
| 0
| null | 2023-04-21T22:01:42
| 2017-12-14T14:00:18
|
Python
|
UTF-8
|
C++
| false
| false
| 304
|
cpp
|
LambdaInitCapture.cpp
|
#include <iostream>
#include <memory>
int main()
{
std::unique_ptr<int> p = std::make_unique<int>(64);
auto lambda = [ptr = std::move(p)](){ std::cout << "Inside Lambda, value = " << *ptr << std::endl; };
lambda();
std::cout << "Outside Lambda, value = " << (p==nullptr) << std::endl;
return 0;
}
|
d0a0e8560866c3e8530fa2efada14e5b738cac0e
|
1b669073d3698149c7ad950e0b72a873db09684e
|
/ScrapWork/src/Buttons.h
|
e9bd8a99a37e394ac1635f33050c2b1033aae2f6
|
[] |
no_license
|
Neilsama/ScrapWork-Final
|
d9671cd6b1e364d16871defae62f5d86d6546aa3
|
693e112932c1580e64ed36378103af3eb505e2f3
|
refs/heads/develop
| 2021-01-20T03:23:51.276575
| 2017-05-11T00:42:46
| 2017-05-11T00:42:46
| 89,537,573
| 0
| 0
| null | 2017-05-11T00:59:00
| 2017-04-27T00:09:15
|
C++
|
UTF-8
|
C++
| false
| false
| 943
|
h
|
Buttons.h
|
#pragma once
#include "poNodeContainer.h"
#include "poImage.h"
using namespace ci;
using namespace ci::app;
using namespace std;
class Buttons;
typedef std::shared_ptr<Buttons> ButtonsRef;
typedef ci::signals::Signal<void(int number)> btnChangeState;
class Buttons
:public po::scene::NodeContainer
{
public:
static ButtonsRef create(gl::TextureRef btnImg, gl::TextureRef btnActiveImg);
btnChangeState& getbtnChangeStateSignal(){return btnStateChangeSignal;}
void setup(gl::TextureRef btnImg, gl::TextureRef btnActiveImg);
void mousedown(po::scene::MouseEvent &event);
void setToNormal();
void setID(int number){mID = number;}
btnChangeState btnStateChangeSignal;
bool btnIsActivated;
private:
po::scene::ImageRef mButton;
po::scene::ImageRef mButtonActive;
gl::TextureRef mButtonTexture;
gl::TextureRef mButtonActiveTexture;
int mID;
};
|
14b87f8ac63c87c30f470c70ed273b9e33f79770
|
9301d1bf2b428d9e56994665a6db0d5fda2812ce
|
/src/evoStream.cpp
|
61c0f75505ff24cc82e43c0584dd0c38c00ac789
|
[] |
no_license
|
mhahsler/stream
|
ae6ae385d1db3d68bcf7c56bac62edbf5df8ce26
|
0c83157635b48adb9a3401de601f81680d844968
|
refs/heads/master
| 2023-07-20T04:29:25.966443
| 2023-07-14T16:32:49
| 2023-07-14T16:32:49
| 45,126,788
| 39
| 5
| null | 2020-12-01T20:09:04
| 2015-10-28T16:37:22
|
C++
|
UTF-8
|
C++
| false
| false
| 19,416
|
cpp
|
evoStream.cpp
|
#include <Rcpp.h>
#include <limits>
#include <ctime>
#include <random>
#include <algorithm>
#define VERBOSE 0
using namespace Rcpp;
// Unused: C++11 now uses std::shuffle - MFH
// inline int randWrapper(const int n) { return floor(unif_rand()*n); }
class MC {
public:
Rcpp::NumericVector centroid;
int lastUpdate;
double weight;
MC(Rcpp::NumericVector centroid, int lastUpdate, double weight) {
this->centroid=centroid;
this->lastUpdate=lastUpdate;
this->weight=weight;
}
MC(Rcpp::NumericVector centroid, int lastUpdate) {
this->centroid=centroid;
this->lastUpdate=lastUpdate;
this->weight=1;
}
Rcpp::NumericVector getCentroid(){
return(centroid);
}
void merge(MC mc, int t, double lambda, double r) {
mc.fade(t, lambda);
this->fade(t, lambda);
// update statistics
this->weight += mc.weight;
// competetive learning
double d = this->distance(mc);
this->centroid += exp(-pow(d/r*3.0, 2.0) /2.0) * (mc.getCentroid() - this->getCentroid());
}
void fade(int t, double lambda){
// apply fading
this->weight *= pow(2,(-lambda * (t-this->lastUpdate)));
// update time
this-> lastUpdate = t;
}
double distance(MC mc){
return(sqrt(sum(pow(this->getCentroid() - mc.getCentroid(), 2))));
}
double distance(Rcpp::NumericVector x){
return(sqrt(sum(pow(this->getCentroid() - x, 2))));
}
};
class EvoStream {
public:
double r;
double lambda;
int tgap;
unsigned int k;
double crossoverRate;
double mutationRate;
unsigned int populationSize;
unsigned int initializeAfter;
int incrementalGenerations;
int reclusterGenerations;
double omega;
int t;
int init;
int upToDate;
double delay;
int initTime;
std::vector<MC> micro;
std::vector<Rcpp::NumericMatrix> macro;
Rcpp::NumericVector macroFitness;
// since exposed constructors have a limited number of parameters, we expose a setter function and use the default constructor
void setFields(double r, double lambda, int tgap, unsigned int k, double crossoverRate, double mutationRate, int populationSize, unsigned int initializeAfter, int incrementalGenerations, int reclusterGenerations){
this->r=r;
this->lambda=lambda;
this->tgap=tgap;
this->k=k;
this->crossoverRate=crossoverRate;
this->mutationRate=mutationRate;
this->populationSize=populationSize;
this->initializeAfter=initializeAfter;
this->incrementalGenerations = incrementalGenerations;
this->reclusterGenerations = reclusterGenerations;
this->macroFitness = Rcpp::NumericVector(this->populationSize);
this->omega = pow(2, (-1*lambda * tgap));
this->t=0;
this->upToDate=0;
}
// constructor for stand-alone offline component
void reclusterInitialize(Rcpp::NumericMatrix micro, Rcpp::NumericVector weights, unsigned int k, double crossoverRate, double mutationRate, int populationSize){
this->k=k;
this->crossoverRate=crossoverRate;
this->mutationRate=mutationRate;
this->populationSize=populationSize;
this->macroFitness = Rcpp::NumericVector(this->populationSize);
for(int i=0; i<micro.nrow(); i++){
MC mc(micro(i,_), 1, weights(i));
this->micro.push_back(mc);
}
this->initialize();
}
// RCpp Interface
Rcpp::NumericMatrix get_microclusters(){
int d = this->ndimensions();
Rcpp::NumericMatrix x(this->micro.size(),d);
for(unsigned int i=0; i<this->micro.size();i++){
Rcpp::NumericVector mc = this->micro[i].getCentroid();
for(int j=0; j<mc.size();j++){
x(i,j)=mc[j];
}
}
return(x);
}
Rcpp::NumericVector get_microweights(){
Rcpp::NumericVector x(this->micro.size());
for(unsigned int i=0; i<this->micro.size();i++){
x[i]=this->micro[i].weight;
}
return(x);
}
Rcpp::NumericMatrix get_macroclusters(){
if(!this->init){
return(Rcpp::NumericMatrix(0,this->ndimensions()));
}
if(this->reclusterGenerations!=0 && this->upToDate==0){
this->recluster(reclusterGenerations);
this->upToDate=1;
}
// find max fitness
int maxIdx=-1;
double max=-1*std::numeric_limits<double>::max();
for(unsigned int i=0; i<this->macroFitness.size(); i++){
if(this->macroFitness[i]>max){
max=this->macroFitness[i];
maxIdx = i;
}
}
return(this->macro[maxIdx]);
}
Rcpp::NumericVector get_macroweights(){
if(!this->init){
return(Rcpp::NumericVector(0));
}
if(reclusterGenerations!=0 && this->upToDate==0){
this->recluster(reclusterGenerations);
this->upToDate=1;
}
Rcpp::IntegerVector clusterAssignment = this->microToMacro();
Rcpp::NumericVector microWeights = this->get_microweights();
Rcpp::NumericVector macroWeights(this->k);
// for every cluster
for(int i=0; i<clusterAssignment.size(); i++){
macroWeights(clusterAssignment(i)) += microWeights[i];
}
return(macroWeights);
}
Rcpp::IntegerVector microToMacro(){
if(!this->macro.size()){
return(Rcpp::IntegerVector(0));
}
Rcpp::IntegerVector assignment = this->getAssignment(this->get_macroclusters());
return(assignment);
}
// Online component
void cluster(Rcpp::NumericMatrix data){
this->upToDate=0;
for(int i=0; i<data.nrow(); i++){
#if VERBOSE >= 1
std::cout << "--------------------------" << std::endl;
#endif
// increment time
this->t++;
// create temporary mc
MC mc(data(i,_), this->t);
// get distance to all other mcs
Rcpp::NumericVector distances = this->getDistanceVector(mc, this->micro);
// insert into closest or init new mc
this->insert(distances, mc);
// cleanup every tgap
if(this->t % this->tgap == 0){
this->cleanup();
}
// Incremental Reclustering part
if(this->init){
#if VERBOSE >= 2
std::cout << "Perform evolutionary steps" << std::endl;
#endif
// fixed number of generations
for(int i=0; i<incrementalGenerations; i++){
this->evolution();
Rcpp::checkUserInterrupt();
}
} else if(this->micro.size()==this->initializeAfter){
this->initialize();
}
#if VERBOSE >= 3
std::cout << "Current fitness:" << std::endl;
Rf_PrintValue(Rcpp::wrap(this->macroFitness));
#endif
}
}
void cleanup(){
#if VERBOSE >= 2
std::cout << "Cleanup" << std::endl;
#endif
this->updateWeights();
// merge close mcs
for(int i = this->micro.size()-1; i >=0; i--){
for(int j = i-1; j>=0; j--){
double d = this->micro[i].distance(this->micro[j]); // calc distance
if(d <= r){
#if VERBOSE >= 2
std::cout << "Merging cluster" << i << " into " << j << std::endl;
#endif
this->micro[j].merge(this->micro[i], this->t, this->lambda, this->r); //merge mc into the other
this->removeMicroCluster(i); // remove the old mc
break;
}
}
}
}
void updateWeights(){
// fade Clusters
for(int i=micro.size()-1; i>=0; i--){
this->micro[i].fade(this->t, this->lambda);
// remove insufficient weight
if( this->micro[i].weight <= this->omega){
this->removeMicroCluster(i);
}
}
}
void removeMicroCluster(int i){
#if VERBOSE >= 2
std::cout << "Remove Cluster " << i << std::endl;
#endif
this->micro.erase(this->micro.begin()+i);
}
void insert(Rcpp::NumericVector distances, MC mc){
// merge if within radius
bool merged = 0;
for(unsigned int i=0; i < micro.size(); i++){
if(distances[i] <= r){
#if VERBOSE >= 2
std::cout << "Merge observation " << t << " into Micro Cluster " << i << std::endl;
#endif
this->micro[i].merge(mc, this->t, this->lambda, r);
merged=1;
}
}
// if none close enough create new
if(!merged){
#if VERBOSE >= 2
std::cout << "Use observation " << t <<" to create new Micro Cluster" << std::endl;
#endif
this->micro.push_back(mc);
}
}
// Offline component
void evolution(){
if(!this->init) return;
this->calculateFitness();
// perform evolutionary step
std::vector<Rcpp::NumericMatrix> selected = this->selection(); // select parents
std::vector<Rcpp::NumericMatrix> offsprings = this->recombination(selected); // recombine parents
std::vector<Rcpp::NumericMatrix> mutants = this->mutation(offsprings); // mutate offspring
for(unsigned int i=0; i<mutants.size(); i++){
double fit = this->fitness(mutants[i]); // evaluate new solution
#if VERBOSE >= 1
std::cout << "Fitness of child: " << fit << std::endl;
#endif
// replace weakest solution so far
int minIdx = 0;
double min = std::numeric_limits<double>::max();
for(unsigned int j=0; j<this->macroFitness.size(); j++){
if(this->macroFitness[j] < min){
min = this->macroFitness[j];
minIdx = j;
}
}
if(min < fit){
#if VERBOSE >= 1
std::cout << "Use new solution to replace solution " << minIdx << " with fitness " << this->macroFitness[minIdx] << std::endl;
#endif
this->macro[minIdx] = mutants[i];
this->macroFitness[minIdx] = fit;
}
}
#if VERBOSE >= 1
std::cout << "Highest Fitness is " << this->getMaxFitness(); << std::endl;
#endif
}
void recluster(int generations){
if(!this->init) return;
// fixed number of generations
for(int i=0; i<generations; i++){
#if VERBOSE >= 1
std::cout << "Generation " << i << std::endl;
#endif
this->evolution();
Rcpp::checkUserInterrupt();
}
}
void calculateFitness(){
#if VERBOSE >= 3
std::cout << "Calcualte fitness:" << std::endl;
#endif
// for every solution
for(unsigned int i=0; i<this->macro.size(); i++){
this->macroFitness[i] = this->fitness(this->macro[i]);
}
#if VERBOSE >= 3
Rf_PrintValue(Rcpp::wrap(this->macroFitness));
#endif
}
double fitness(Rcpp::NumericMatrix centres){
double result=0.0;
Rcpp::IntegerVector assignment = this->getAssignment(centres);
// calc distance to centers
for(int i=0; i<assignment.size(); i++){
result += pow(this->micro[i].distance(centres(assignment[i],_)),2) * this->micro[i].weight;
}
return(1/result);
}
void initialize(){
#if VERBOSE >= 2
std::cout << "Initialize Solutions" << std::endl;
#endif
this->initTime = this->t;
// for entire population
for(unsigned int i=0; i<this->populationSize; i++){
//init
macro.push_back(Rcpp::NumericMatrix(this->k, this->ndimensions()));
// choose k centers
Rcpp::IntegerVector x = randomShuffle(Rcpp::seq(0, this->micro.size()-1)); // Todo: this is potentially large, depending on when called
for(unsigned int j=0; j<this->k; j++){
int l = j % this->micro.size();
macro[i](j,_) = this->micro[x[l]].getCentroid();
}
}
this->init=1;
}
std::vector<Rcpp::NumericMatrix> selection(){
// declare return value before rngscope http://gallery.rcpp.org/articles/random-number-generation/
std::vector<Rcpp::NumericMatrix> individuals;
individuals.reserve(2);
RNGScope rngScope;
// Select proportionally to fitness
double sum=0.0;
Rcpp::NumericVector probability(this->macroFitness.size());
for(unsigned int i=0; i<this->macroFitness.size(); i++){
sum += this->macroFitness[i];
probability[i] = this->macroFitness[i];
}
// sample two parents
Rcpp::IntegerVector selected(2);
for(int i=0; i<2; i++){
double rand = R::runif(0,1);
for(int j=0; j<probability.size(); j++){
double val = probability(j)/sum;
if(val > rand){
selected(i)=j;
sum -= probability(j);
probability.erase(j);
break;
}
rand -= val;
}
}
// since we deleted one element
if(selected(1) >= selected(0)){
selected(1)++;
}
#if VERBOSE >= 1
std::cout << "Select " << selected(0) << " and " << selected(1) << " with fitness " << this->macroFitness(selected(0)) << " and " << this->macroFitness(selected(1)) << " as parents" << std::endl;
#endif
individuals.push_back(clone(this->macro[selected(0)]));
individuals.push_back(clone(this->macro[selected(1)]));
#if VERBOSE >= 3
std::cout << "Parent1:" << individuals[0] << std::endl;
std::cout << "Parent2:" << individuals[1] << std::endl;
#endif
return(individuals);
}
// wrapper for easier change of recombination algorithm
std::vector<Rcpp::NumericMatrix> recombination(std::vector<Rcpp::NumericMatrix> individuals){
return(recombinationGAclust(individuals));
}
// wrapper for easier change of mutation algorithm
std::vector<Rcpp::NumericMatrix> mutation(std::vector<NumericMatrix> individuals){
return(mutationGAclust(individuals));
}
// GA Clustering recombination approach
std::vector<Rcpp::NumericMatrix> recombinationGAclust(std::vector<Rcpp::NumericMatrix> individuals){
RNGScope rngScope;
if(R::runif(0,1) < this->crossoverRate){
int size =individuals[0].nrow()*individuals[0].ncol();
int crossoverPoint = R::runif(0,1)*(size-1); // range 1 - length-1
#if VERBOSE >= 2
std::cout << "CrossoverPoint: " << crossoverPoint << std::endl;
#endif
for(int pos=0; pos < size; pos++){
if(pos>crossoverPoint){
double temp = individuals[0][pos];
individuals[0][pos] = individuals[1][pos];
individuals[1][pos] = temp;
}
}
}
#if VERBOSE >= 3
std::cout << "Offsprpring1:" << individuals[0] << std::endl;
std::cout << "Offsprpring2:" << individuals[1] << std::endl;
#endif
return(individuals);
}
// PESAII reclustering approach
std::vector<Rcpp::NumericMatrix> recombinationPESAII(std::vector<Rcpp::NumericMatrix> individuals){
RNGScope rngScope;
for(unsigned int i=0; i<individuals.size(); i++){
int size =individuals[0].nrow()*individuals[0].ncol();
for(int pos=0; pos < size; pos++){
if(R::runif(0,1) < this->crossoverRate){
double temp = individuals[0][pos];
individuals[0][pos] = individuals[1][pos];
individuals[1][pos] = temp;
}
}
}
#if VERBOSE >= 3
std::cout << "Offsprpring1:" << individuals[0] << std::endl;
std::cout << "Offsprpring2:" << individuals[1] << std::endl;
#endif
return(individuals);
}
// GA Clustering mutation approach
std::vector<Rcpp::NumericMatrix> mutationGAclust(std::vector<NumericMatrix> individuals){
RNGScope rngScope;
// for both individuals
for(unsigned int i=0; i<individuals.size(); i++){
int size=individuals[i].nrow() * individuals[i].ncol();
for(int pos=0; pos < size; pos++){
if(R::runif(0,1) < this->mutationRate){
double val=0.0;
if(individuals[i][pos]!=0){
val = 2 * R::runif(0,1) * individuals[i][pos];
} else{
val = 2 * R::runif(0,1);
}
// + or - with equal change
if(R::runif(0,1)>0.5){
individuals[i][pos] += val;
} else{
individuals[i][pos] -= val;
}
}
}
}
#if VERBOSE >= 3
std::cout << "Mutant1:" << individuals[0] << std::endl;
std::cout << "Mutant2:" << individuals[1] << std::endl;
#endif
return(individuals);
}
// PESAII mutation approach
std::vector<Rcpp::NumericMatrix> mutationPESAII(std::vector<NumericMatrix> individuals){
RNGScope rngScope;
// for both individuals
for(unsigned int i=0; i<individuals.size(); i++){
int size=individuals[i].nrow() * individuals[i].ncol();
for(int pos=0; pos < size; pos++){
if(R::runif(0,1) < this->mutationRate){
individuals[i][pos] += R::rnorm(0,.3);
}
}
}
#if VERBOSE >= 3
std::cout << "Mutant1:" << individuals[0] << std::endl;
std::cout << "Mutant2:" << individuals[1] << std::endl;
#endif
return(individuals);
}
// Helper
Rcpp::IntegerVector getAssignment(Rcpp::NumericMatrix centres){
Rcpp::IntegerVector assignment(this->micro.size());
// for every cluster
for(unsigned int i=0; i<this->micro.size(); i++){
double min=std::numeric_limits<double>::max();
// find closest centre
for(int j=0; j<centres.nrow(); j++){
double dist = this->micro[i].distance(centres(j,_));
if(dist < min){
min=dist;
assignment(i)=j;
}
}
}
return(assignment);
}
double getMaxFitness(){
// find max fitness
if(!this->init){
return(0);
}
double max=-1*std::numeric_limits<double>::max();
for(unsigned int i=0; i<this->macroFitness.size(); i++){
if(this->macroFitness[i]>max){
max=this->macroFitness[i];
}
}
return(max);
}
int ndimensions(){
if(!micro.size()){
return(0);
} else{
return(this->micro[0].getCentroid().size());
}
}
int sampleProportionally(Rcpp::NumericVector data){
// declare return value before rngScope http://gallery.rcpp.org/articles/random-number-generation/
int j=0;
RNGScope rngScope;
// sample proportionally to distance
double cumsum=0.0;
for(j=0; j<data.size(); j++){
cumsum += data(j);
if(cumsum >= R::runif(0,1)){
return(j);
}
}
return(-1);
}
Rcpp::NumericVector getDistanceVector(MC mc, std::vector<MC> cluster){
Rcpp::NumericVector distances(cluster.size());
for(unsigned int i=0; i < cluster.size(); i++){
distances(i) = mc.distance(cluster[i]);
}
return(distances);
}
// http://gallery.rcpp.org/articles/stl-random-shuffle/
Rcpp::IntegerVector randomShuffle(Rcpp::IntegerVector a) {
// clone a into b to leave a alone
Rcpp::IntegerVector b = Rcpp::clone(a);
// declare return value before rngscope http://gallery.rcpp.org/articles/random-number-generation/
RNGScope scope;
// C11 random_shuffle is now shuffle - MFH
//std::random_shuffle(b.begin(), b.end(), randWrapper);
std::random_device rd;
std::mt19937 g(rd());
std::shuffle(b.begin(), b.end(), rd);
return(b);
}
};
// Allows to return class objects to R
RCPP_EXPOSED_CLASS(EvoStream)
RCPP_EXPOSED_CLASS(MC)
// Expose class members and methods to R
RCPP_MODULE(MOD_evoStream){
using namespace Rcpp;
class_<EvoStream>("EvoStream")
.constructor()
.method("setFields", &EvoStream::setFields)
.method("get_microclusters", &EvoStream::get_microclusters)
.method("get_microweights", &EvoStream::get_microweights)
.method("get_macroclusters", &EvoStream::get_macroclusters)
.method("get_macroweights", &EvoStream::get_macroweights)
.method("microToMacro", &EvoStream::microToMacro)
.method("cluster", &EvoStream::cluster)
.method("recluster", &EvoStream::recluster)
.method("reclusterInitialize", &EvoStream::reclusterInitialize)
;
class_<MC>("MC")
.constructor<Rcpp::NumericVector, int, double>()
.constructor<Rcpp::NumericVector, int>()
.field("centroid", &MC::centroid)
.field("lastUpdate", &MC::lastUpdate)
.field("weight", &MC::weight)
.method("merge", &MC::merge)
.method("fade", &MC::fade)
;
}
|
7fd8ec2151e1fbe7ea68d6b3835c131bb17f99c7
|
4a37ff582517ffc2ad814ec2ff97bbbd876f37e6
|
/hw3 Binary Tree/lulu.cpp
|
82fecfd50d3025911631ea150feb50563af94e50
|
[] |
no_license
|
BaoHsuanHuang/Data-Structures
|
d5e99c04aece61f157e8ebcb9340255774de892c
|
bf99fdf39a16297478b9c5405ea98ffbc8a862ae
|
refs/heads/master
| 2021-03-21T08:22:46.134606
| 2020-03-14T13:14:31
| 2020-03-14T13:14:31
| 247,278,655
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,159
|
cpp
|
lulu.cpp
|
#include <iostream>
#include <cstring>
#include <cctype>
#include <algorithm>
#include <math.h>
using namespace std;
typedef struct _node{
int data;
struct _node *left;
struct _node *right;
}Node;
Node *newNode(int data)
{
Node *tmp = (Node *)malloc(sizeof(Node));
tmp->data = data;
tmp->left = NULL;
tmp->right = NULL;
return tmp;
}
string str;
int ind=0;
int flag=0;
int data2=0;
Node *construct()
{
Node *root = NULL;
while(1){
if(str[ind] == ')'){
return NULL;
}else if(str[ind]=='('){
ind++;
}else if(str[ind]=='-'){
ind++;
flag = 1;
}else if(isdigit(str[ind])){
data2 = str[ind] - '0';
ind++;
while(isdigit(str[ind])){
data2 = data2*10;
data2 += str[ind] - '0';
ind++;
}
if(flag==1){
data2 = (-1)*data2;
root = newNode(data2);
flag = 0;
}else{
root = newNode(data2);
}
break;
}
}
root->left = construct();
ind++;
root->right = construct();
ind++;
if(str[ind]==')') return root;
}
void preorder(Node *root)
{
if(root!=NULL){
printf("%d ", root->data);
preorder(root->left);
preorder(root->right);
}
}
void inorder(Node *root)
{
if(root!=NULL){
inorder(root->left);
printf("%d ", root->data);
inorder(root->right);
}
}
void postorder(Node *root)
{
if(root!=NULL){
postorder(root->left);
postorder(root->right);
printf("%d ", root->data);
}
}
int getMax(Node *root)
{
int left_height;
int right_height;
if(root==NULL) return 0;
else{
left_height = getMax(root->left);
right_height = getMax(root->right);
if(left_height >= right_height) return left_height+1;
else if(right_height > left_height) return right_height+1;
}
}
int countNode(Node *root)
{
if(root==NULL) return 0;
return ( 1 + countNode(root->left) + countNode(root->right) );
}
bool complete(Node *root, int index2, int total)
{
if(root==NULL) return true;
if(index2 >= total) return false;
return ( complete(root->left, 2*index2 + 1, total) &&
complete(root->right, 2*index2 + 2, total) );
}
/*
1) If tree is empty, then return true.
2) Convert the left subtree to its mirror image
mirror(root->left);
3) Check if the structure of left subtree and right subtree is same
and store the result.
res = isStructSame(root->left, root->right);
// isStructSame()
// recursively compares structures of two subtrees and returns
// true if structures are same
4) Revert the changes made in step (2) to get the original tree.
mirror(root->left);
5) Return result res stored in step 2.
*/
void mirror(Node *node)
{
if (node == NULL) return;
else {
Node *tmp;
/* do the subtrees */
mirror(node->left);
mirror(node->right);
/* swap the pointers in this node */
tmp = node->left;
node->left = node->right;
node->right = tmp;
}
}
bool isStructSame(Node *a, Node *b)
{
if(a == NULL && b == NULL) return true;
if(a != NULL && b != NULL && isStructSame(a->left, b->left) && isStructSame(a->right, b->right)) return true;
return false;
}
bool foldable(Node *root)
{
int result;
if(root==NULL) return true;
mirror(root->left);
result = isStructSame(root->left, root->right);
mirror(root->left);
return result;
}
long long int helper(Node* node, long long int& l, long long int& r) {
if (!node) return 0;
long long int ll = 0, lr = 0, rl = 0, rr = 0;
l = helper(node->left, ll, lr);
r = helper(node->right, rl, rr);
return max(node->data + ll + lr + rl + rr, l + r);
}
long long int QQ(Node* root) {
long long int l = 0, r = 0;
return helper(root, l, r);
}
Node *deleteLeaf(Node *root)
{
if(root == NULL) return NULL;
if(root->left==NULL && root->right==NULL){
delete root;
return NULL;
}
root->left = deleteLeaf(root->left);
root->right = deleteLeaf(root->right);
return root;
}
void freeTree(Node *root)
{
Node *tmp = root;
if(tmp!=NULL){
freeTree(tmp->left);
freeTree(tmp->right);
delete tmp;
}
}
int main(void)
{
// string str;
Node *root;
int ans1;
int ans2;
int total;
int height;
while(cin >> str){
//root = construct(str, 0, str.length()-1);
//root = construct(str);
ind = 0;
data2 = 0;
root = construct();
preorder(root);
cout << endl;
inorder(root);
cout << endl;
postorder(root);
cout << endl;
height = getMax(root);
cout << height << endl;
total = countNode(root);
ans1 = complete(root, 0, total);
if(ans1 == 1) cout << "Complete" << endl;
else cout << "Not complete" << endl;
ans2 = foldable(root);
if(ans2 == 1) cout << "Foldable" << endl;
else cout << "Not foldable" << endl;
cout << QQ(root) << endl;
root = deleteLeaf(root);
preorder(root);
cout << endl;
inorder(root);
cout << endl;
postorder(root);
cout << endl;
freeTree(root);
}
return 0;
}
|
9da69288093d49f8f2ac7b5aec15975855d37c69
|
f992370500a1876cd4c501d2345b1a07cc11722c
|
/Algorithm_code/2099.cpp
|
3bc90a42cf890016f8f2646ddfd522cf3e28a2cf
|
[] |
no_license
|
tinwoon/baekjoon_algorithm
|
6103dcb9c277167911217ab754ee45c8a09cf257
|
e2b04d5804e06eab12c2a31662ac32a1e7cd59e9
|
refs/heads/master
| 2023-08-06T19:59:49.332962
| 2023-07-29T08:16:35
| 2023-07-29T08:16:35
| 238,623,718
| 5
| 0
| null | null | null | null |
UHC
|
C++
| false
| false
| 1,236
|
cpp
|
2099.cpp
|
#pragma warning (disable : 4996)
#include <iostream>
#include <vector>
//2099 The game of death 문제
//전형적인 행렬 제곱의 최적화 알고리즘
//어려운 부분은 없었으므로, 생략 가능하다.
std::vector< std::vector<int> > connected;
int N, M, K;
std::vector< std::vector<int> > zegob(std::vector< std::vector<int> > a, std::vector< std::vector<int> > b) {
std::vector< std::vector<int> > ret(N, std::vector<int>(N, 0));
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
for (int k = 0; k < N; k++) {
ret[i][j] += a[i][k] * b[k][j];
}
}
}
return ret;
}
std::vector< std::vector<int> > calculate(int N) {
std::vector< std::vector<int> > ret;
if (N == 1) return ret = connected;
ret = calculate(N / 2);
ret = zegob(ret, ret);
if (N % 2 == 1) return ret = zegob(ret, connected);
return ret;
}
int main() {
scanf("%d %d %d", &N, &M, &K);
int a, b;
connected.assign(N, std::vector<int>(N, 0));
for (int k = 0; k < N; k++) {
scanf("%d %d", &a, &b);
connected[k][a - 1] = true;
connected[k][b - 1] = true;
}
connected = calculate(M);
while (K--) {
scanf("%d %d", &a, &b);
if (connected[a - 1][b - 1]) printf("death\n");
else printf("life\n");
}
}
|
46a1e4e0e5c5e05a3dc592f2e73745c32611eca7
|
abee8957333c4fb32af305f93dd62dc34cd0448e
|
/File using three file approach/function.cpp
|
a2f1f56dd0439f2ddd191b6df7137e45ea5c105f
|
[] |
no_license
|
agarwalmohit43/C-C-HTML-PLSQL-training
|
c3e88263493c15a2666b1bd6595829078a11c563
|
7f0a6876cfc5ec2534dca21944362840b056cc99
|
refs/heads/master
| 2021-01-19T17:31:42.826228
| 2017-08-22T14:44:55
| 2017-08-22T14:44:55
| 101,068,210
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,135
|
cpp
|
function.cpp
|
#include"header.h"
Student::Student()
{
roll=0;name="NULL";percentage=0;
}
Student::Student(int roll, std::string name, double per):roll(roll),name(name),percentage(per){}
void Student::display()
{
cout<<"\nRoll: "<<roll<<"\tName: "<<name<<"\tPercentage: "<<percentage<<endl;
}
int Student::getRoll(){return roll;}
string Student::getName(){return name;}
double Student::getPercentage(){return percentage;}
//file class implementation
void Fileoperation::writetofile(Student &s)
{
fileobject.open("d:\\file\\student.txt",ios::out|ios::app);
fileobject.write((char*)&s,sizeof(s));
cout<<"\n Data Recorded!!!!"<<endl;
fileobject.close();
}
void Fileoperation::readfromfile()
{
Student s;
fileobject.open("d:\\file\\student.txt");// ->ios::in is optional by default is invoked in read mode
cout<<"\n Reading Records!!!!"<<endl;
fileobject.seekp(0);//take the pointer to the position 48
while(fileobject.read((char*)&s,sizeof(s)))
{
s.display();
cout<<"\n File pointer is at: "<<fileobject.tellp();//return current position of the pointer
}
fileobject.close();
}
|
9b3a02ea9c530e6375dfdf5cc4db72c617bce8b8
|
270feb21b1f81e73c66b1aef06434a39b1bcc633
|
/Arrays/tempCodeRunnerFile.c++
|
568dd79a9338c67ff2e5c0097196023323cfdebe
|
[] |
no_license
|
hsahu615/Coding_Practice
|
c5660ca1f2b4a18d62057db8b29d0acde802341f
|
6e8488d3728ddda136f4aa94c37089ef591c4b40
|
refs/heads/master
| 2023-08-02T00:03:32.919456
| 2021-09-25T18:15:31
| 2021-09-25T18:15:31
| 379,199,565
| 0
| 0
| null | 2021-07-02T20:11:11
| 2021-06-22T08:39:05
|
C++
|
UTF-8
|
C++
| false
| false
| 32
|
tempCodeRunnerFile.c++
|
Naive Approach
// Two Traversal
|
|
d8da0b39bd4433712e827473da96829a052c2663
|
1130fcd0c626fe52c2e150d57f9af40263149cb7
|
/treeviewsimple/myqstyleditemdelegate.cpp
|
1163eeec51488a9853ba9febf203e33307ad2b56
|
[] |
no_license
|
Poofee/qtprojects
|
ea42b68a5c150a827e64da61eb1ae3eb7a3fc606
|
c3422b52d52d469ec5c0a72c431e3bd5041658a2
|
refs/heads/master
| 2021-07-17T06:34:00.735954
| 2020-05-31T05:20:50
| 2020-05-31T05:20:50
| 174,517,531
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,596
|
cpp
|
myqstyleditemdelegate.cpp
|
#include "myqstyleditemdelegate.h"
#include <QPainter>
MyQStyledItemDelegate::MyQStyledItemDelegate(QObject *parent)
:QStyledItemDelegate (parent)
{
}
MyQStyledItemDelegate::~MyQStyledItemDelegate()
{
}
void MyQStyledItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QStyleOptionViewItem itemOption(option);
bool bSelected = false;
if (itemOption.state & QStyle::State_HasFocus)
{
itemOption.state = itemOption.state ^ QStyle::State_HasFocus;
}
if (itemOption.state & QStyle::State_MouseOver)
{
itemOption.state = itemOption.state ^ QStyle::State_MouseOver;
}
if (itemOption.state & QStyle::State_Selected)
{
bSelected = true;
itemOption.state = itemOption.state ^ QStyle::State_Selected;
}
QStyledItemDelegate::paint(painter, itemOption, index);
//画选中的行的框
if(bSelected)
{
QRect rc = option.rect;
painter->setPen( QPen(QColor("#F0F000"),1,Qt::SolidLine) ); //#00BFFF
painter->drawLine(rc.topLeft(), rc.topRight()); //上下横线
painter->drawLine(rc.bottomLeft(), rc.bottomRight());
if( index.column() == 0 )
{
painter->drawLine(rc.topLeft(), rc.bottomLeft()); //左竖线
}
else
{
QModelIndex next = index.sibling(index.row(),index.column()+1); //右竖线
if(!next.isValid())
{
painter->drawLine(rc.topRight(), rc.bottomRight());
}
}
}
}
|
2e8bb241d9e817e6037f23c560668c1f89e2cd10
|
51ada1099f7271304b1ec113aef5dbe4a39d6b5c
|
/mainwindow.cpp
|
411c648439f5f524324a94d96498c162e20643d8
|
[] |
no_license
|
iwtfagp/QtExample_Lpms
|
81f616e3d6be95f876813a86eba0f0e36636aac2
|
737f87ea8074c73a239eb60ffe18bdd01a463c1f
|
refs/heads/master
| 2021-01-17T12:00:30.825172
| 2015-03-18T03:59:50
| 2015-03-18T03:59:50
| 32,397,133
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,066
|
cpp
|
mainwindow.cpp
|
#include "mainwindow.h"
#include "ui_mainwindow.h"
using namespace std;
LpmsSensorManagerI* manager;
LpmsSensorI* lpms;
ImuData d;
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
timer=new QTimer();
timer->setInterval(20);
timer->stop();
connect(timer,SIGNAL(timeout()), this, SLOT(getData()));
}
void MainWindow::getData()
{
cout<<"getData"<<endl;
// Checks, if conncted
if (lpms->getConnectionStatus() == SENSOR_CONNECTION_CONNECTED) {
// Reads quaternion data
d = lpms->getCurrentData();
ui->Dial->setValue(d.r[0]+180.0);
ui->Dial_2->setValue(d.r[1]+180.0);
ui->Dial_3->setValue(d.r[2]+180.0);
// Shows data
printf("qX=%f, qY=%f, qZ=%f\n", d.r[0]+180.0, d.r[1]+180.0, d.r[2]+180.0);
}
}
MainWindow::~MainWindow()
{
// Removes the initialized sensor
manager->removeSensor(lpms);
// Deletes LpmsSensorManager object
delete manager;
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
ui->Dial->setNeedle(new QwtDialSimpleNeedle( QwtDialSimpleNeedle::Arrow ,true , Qt::red ));
ui->Dial_2->setNeedle(new QwtDialSimpleNeedle( QwtDialSimpleNeedle::Arrow ,true , Qt::red ));
ui->Dial_3->setNeedle(new QwtDialSimpleNeedle( QwtDialSimpleNeedle::Arrow ,true , Qt::red ));
// Gets a LpmsSensorManager instance
manager = LpmsSensorManagerFactory();
cout<<"LpmsSensorManagerFactory"<<endl;
// Connects to LPMS-B sensor with address 00:11:22:33:44:55
QString bluetooth_mac = ui->lineEdit->text();
lpms = manager->addSensor(DEVICE_LPMS_B, bluetooth_mac.toStdString().c_str());
// lpms = manager->addSensor(DEVICE_LPMS_B, "00:06:66:4b:24:d2");
cout<<"addSensor"<<endl;
while(1)
{
if (lpms->getConnectionStatus() == SENSOR_CONNECTION_CONNECTED)
{
cout<<"get connection"<<endl;
break;
}
}
// Checks, if conncted
cout<<"timer start"<<endl;
timer->start();
}
|
37b3836d8fdc7779eaaa54c38b6183b02c108e13
|
94c213f4d2d35c94c87cef94b61acdf0bc86230f
|
/src/m_classes.h
|
2411b3eef15851ac9c273352bad7e5126554e6a2
|
[] |
no_license
|
libretro/ecwolf
|
4c2278a5bf0403ae4ba3e19cc20cd5a70b12f9fd
|
18eca17c2d634b154824e0782c6cbbe0a2c9ea76
|
refs/heads/master
| 2023-07-19T03:59:42.119149
| 2023-07-18T11:31:53
| 2023-07-18T11:31:53
| 242,578,709
| 27
| 20
| null | 2023-07-18T11:31:55
| 2020-02-23T19:36:17
|
C++
|
UTF-8
|
C++
| false
| false
| 7,507
|
h
|
m_classes.h
|
#ifndef __M_CLASSES_H__
#define __M_CLASSES_H__
#include "tarray.h"
#include "wl_def.h"
#include "v_font.h"
#include "zstring.h"
/*//////////////////////////////////////////////////////////////////////////////
// NEW MENU CODE
//
// The new menu code is an object oriented approach to the menu. Each option
// has its own object which function is determined by the class used. The base
// class, MenuItem, can be inherited for reusable types or controled through a
// listener which is a function whose prototype is produced with MENU_LISTENER.
//
// ABOUT LISTENERS
//
// A listener is a function which has a special prototype which is generated by
// MENU_LISTENER. Simply pass the name of the listener into the macro to begin
// your function. Pass the name of the listener into an object to use. The
// return type is bool so be sure to return true. (Return false when something
// is supposed to fail, but remember only some item types use the return value
// (read the docs to figure out when it is used.).)
//////////////////////////////////////////////////////////////////////////////*/
class FTexture;
class Menu;
#define MENU_LISTENER(name) bool name(int which)
#define MENU_LISTENER_PROTOTYPE(name) bool (*name)(int)
class MenuItem
{
protected:
MENU_LISTENER_PROTOTYPE(activateListener);
bool enabled;
int height;
uint8_t highlight; // Makes the font a different color, not to be confused with the item being selected.
FTexture *picture;
int pictureX;
int pictureY;
char string[80];
bool visible;
const Menu *menu;
FString activateSound;
EColorRange getTextColor() const;
public:
MenuItem(const char string[80], MENU_LISTENER_PROTOTYPE(activateListener)=NULL);
virtual ~MenuItem() {}
short getActive() const { return enabled ? (highlight + 1) : 0; }
int getHeight() const { return visible ? height : 0; }
const char *getString() const { return string; }
FString getActivateSound() const { return activateSound; }
bool isEnabled() const { return enabled && visible; }
bool isHighlighted() const { return highlight != 0; }
bool isSelected() const;
bool isVisible() const { return visible; }
void setActivateListener(MENU_LISTENER_PROTOTYPE(activateListener)) { this->activateListener = activateListener; }
void setActivateSound(FString sound) { activateSound = sound; }
void setEnabled(bool enabled=true) { this->enabled = enabled; }
void setHighlighted(int highlight=1) { this->highlight = highlight; }
void setMenu(const Menu *menu) { this->menu = menu; }
void setPicture(const char* picture, int x=-1, int y=-1);
void setText(const char string[80]);
void setVisible(bool visible=true) { this->visible = visible; }
#ifndef LIBRETRO
virtual void activate();
#endif
virtual void draw();
virtual void left() {}
virtual void right() {}
virtual bool playActivateSound() { return true; }
};
class LabelMenuItem : public MenuItem
{
public:
LabelMenuItem(const char string[36]);
void draw();
};
class BooleanMenuItem : public MenuItem
{
protected:
bool &value;
public:
BooleanMenuItem(const char string[36], bool &value, MENU_LISTENER_PROTOTYPE(activateListener)=NULL);
void activate();
void draw();
};
class MenuSwitcherMenuItem : public MenuItem
{
protected:
Menu &menu;
public:
/**
* @param activateListener Executes when activated. If returns false, menu will not switch.
*/
MenuSwitcherMenuItem(const char string[36], Menu &menu, MENU_LISTENER_PROTOTYPE(activateListener)=NULL);
void activate();
};
class SliderMenuItem : public MenuItem
{
protected:
char begString[36];
int &value;
const int width;
const int max;
public:
SliderMenuItem(int &value, int width, int max, const char begString[36]="", const char endString[36]="", MENU_LISTENER_PROTOTYPE(activateListener)=NULL);
void draw();
void left();
void right();
bool playActivateSound() { return false; }
};
class MultipleChoiceMenuItem : public MenuItem
{
protected:
int curOption;
const unsigned int numOptions;
char** options;
public:
/**
* @param options Name of the possible options. Use NULL to indicate a disabled option as to keep the positions correct.
*/
MultipleChoiceMenuItem(MENU_LISTENER_PROTOTYPE(changeListener), const char** options, unsigned int numOptions, int curOption=0);
~MultipleChoiceMenuItem();
void activate();
void draw();
void left();
void right();
};
class TextInputMenuItem : public MenuItem
{
protected:
bool clearFirst;
unsigned int max;
MENU_LISTENER_PROTOTYPE(preeditListener);
FString value;
public:
/**
* @param preeditListener Executed before editing the information, if returns false the field will not be edited.
* @param posteditListener Execued after editing the information.
*/
TextInputMenuItem(const FString &text, unsigned int max, MENU_LISTENER_PROTOTYPE(preeditListener)=NULL, MENU_LISTENER_PROTOTYPE(posteditListener)=NULL, bool clearFirst=false);
void activate();
void draw();
const char *getValue() const { return value; }
void setValue(const FString &text) { value = text; }
};
class ControlMenuItem : public MenuItem
{
protected:
ControlScheme &button;
static int column;
public:
ControlMenuItem(ControlScheme &button);
void activate();
void draw();
void left();
void right();
};
class Menu
{
protected:
MENU_LISTENER_PROTOTYPE(entryListener);
bool animating;
static bool close;
bool controlHeaders;
int curPos;
FTexture *headPicture;
char headText[36];
bool headTextInStripes;
bool headPictureIsAlternate;
int height;
const int indent;
TArray<MenuItem *> items;
const int x;
const int y;
const int w;
unsigned int itemOffset; // scrolling menus
static unsigned int lastIndexDrawn;
static FTexture *cursor;
void drawGunHalfStep(int x, int y);
void eraseGun(int x, int y);
virtual void handleDelete() {}
public:
Menu(int x, int y, int w, int indent, MENU_LISTENER_PROTOTYPE(entryListener)=NULL);
virtual ~Menu();
void addItem(MenuItem *item);
static bool areMenusClosed() { return close; }
void clear();
static void closeMenus(bool close=true);
unsigned int countItems() const;
void drawMenu() const;
virtual void draw() const;
int handle();
bool handleStep(struct wl_state_s *state, const struct wl_input_state_s *input);
void prepareMenu();
bool ClearMenu();
int getCurrentPosition() const { return curPos; }
/**
* @param position If not -1, returns the height to the specified position.
*/
int getHeight(int position=-1) const;
int getIndent() const { return indent; }
MenuItem *getIndex(int index) const;
int getNumItems() const { return items.Size(); }
int getWidth() const { return w; }
int getX() const { return x; }
int getY() const { return y; }
bool isAnimating() const { return animating; }
void setCurrentPosition(int position);
void setHeadPicture(const char* picture, bool isAlt=false);
void setHeadText(const char text[36], bool drawInStripes=false);
void show();
/**
* Should this menu show the Key, Mse. and Joy headers?
*/
void showControlHeaders(bool show) { controlHeaders = show; }
void validateCurPos();
MenuItem *operator[] (int index) { return getIndex(index); }
};
extern Menu mainMenu;
#endif /* __M_CLASSES_H__ */
|
41e3842380a1163b74a06c0f2d7b8aa7412e29bf
|
90285e8f7aeafbf3ddc61e7c503497c1390eefa1
|
/Physics_Interfaces/Interfaces/sSoftBodyDef.h
|
7f657af2285ce990524ef0aa42c005c036467fff
|
[] |
no_license
|
Remoh210/AI_Project_4
|
c05621af7be8058c4c2305ab624722a324fc3427
|
dde06349274c569bc22d0654eeeeafa9f35c50b1
|
refs/heads/master
| 2020-05-17T03:00:34.051673
| 2020-03-15T23:23:41
| 2020-03-15T23:23:41
| 183,466,578
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 394
|
h
|
sSoftBodyDef.h
|
#pragma once
#include <glm/glm.hpp>
#include <vector>
namespace nPhysics
{
struct sSoftBodyNodeDef
{
sSoftBodyNodeDef(const glm::vec3& position, float mass)
: Position(position)
, Mass(mass)
{
}
glm::vec3 Position;
float Mass;
};
struct sSoftBodyDef
{
float SpringConstant;
std::vector<sSoftBodyNodeDef> Nodes;
std::vector<std::pair<size_t, size_t>> Springs;
};
}
|
877316b5ba8259376e1c1ace3f7fdeaea89508cc
|
798f9e5893a8f57062449bae7ecc98fc765d7a08
|
/Player.cpp
|
9c4958d5a63eabf2bb153c3da2e0924a82d58c94
|
[] |
no_license
|
mixy9/Space-Invaders-3019
|
132f7043ee933e41c915bc0d3480383d87a0ec32
|
05fc8a1628e3627f68ca3a6a400d18598c4d12cb
|
refs/heads/master
| 2020-04-23T17:55:06.599080
| 2019-02-26T22:39:11
| 2019-02-26T22:39:11
| 171,348,789
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,887
|
cpp
|
Player.cpp
|
#include "stdafx.h"
#include "Player.h"
Player::Player() :
m_score(0),
m_seconds(0),
m_health(100)
{
m_sprite = std::make_unique<SpriteNode>(Filename::player, 1.7f, 1.2f, 3000.f, 2200.f);
m_sprite->setOrigin(125.f, 140.f);
}
sf::Vector2f Player::playerCenter()
{
return sf::Vector2f(m_sprite->getPosition().x, m_sprite->getPosition().y);
}
sf::Sprite& Player::setSprite()
{
return *m_sprite;
}
void Player::initialize()
{
m_crosshair = std::make_unique<SpriteNode>(Filename::crosshair, NULL, NULL, 3000.f, 1800.f);
m_crosshair->setOrigin(75.f, 72.f);
m_result = std::make_shared<TextNode>("", 34u, 36.f, 5.2f, sf::Color::White, Filename::font);
m_hudScore = std::make_shared<TextNode>("", 36u, 1.25f, 1.13f, sf::Color(51, 173, 255), Filename::font);
m_hudHealth = std::make_shared<TextNode>("", 36u, 45.f, 1.13f, sf::Color(51, 173, 255), Filename::font);
m_gameOver = std::make_shared<TextNode>(GAMEOVER, 17u, 34.f, 4.8f, sf::Color(51, 173, 255), Filename::font);
m_sprite->setPosition((float)Screen::screenWidth / 2.f, (float)Screen::screenHeight / 2.f);
}
void Player::resetScore()
{
m_score = 0;
m_health = 100;
}
void Player::drawResult()
{
Screen::window.draw(*m_result);
}
void Player::drawGameOver()
{
Screen::window.draw(*m_gameOver);
}
bool Player::win()
{
return m_score >= 20;
}
bool Player::lose()
{
return m_health == 0;
}
void Player::draw()
{
Screen::window.draw(*m_hudScore);
Screen::window.draw(*m_hudHealth);
Screen::window.draw(*m_crosshair);
Screen::window.draw(*m_sprite);
}
void Player::update(sf::Time& elapsedTime)
{
std::stringstream hudScoreStream, hudHealthStream, resultStream;
// Update HUD
hudHealthStream << "Health: " << m_health << "%";
hudScoreStream << "Score: " << m_score;
m_hudScore->setString(hudScoreStream.str());
m_hudHealth->setString(hudHealthStream.str());
// Update results
resultStream << "Congratulations,\nyou saved the Earth!\n\nYour score: " << m_score;
m_result->setString(resultStream.str());
m_updateTime = m_clock.restart().asMilliseconds();
// Player's movement and collision with window bounds
if (sf::Keyboard::isKeyPressed(sf::Keyboard::A) && m_sprite->getPosition().x > 70.f)
{
m_sprite->move(-m_distance * m_updateTime / 50.0, 0);
}
else if (sf::Keyboard::isKeyPressed(sf::Keyboard::D) && m_sprite->getPosition().x <= Screen::screenWidth - 70.f)
{
m_sprite->move(m_distance * m_updateTime / 50.0, 0);
}
else if (sf::Keyboard::isKeyPressed(sf::Keyboard::W) && m_sprite->getPosition().y > 70.f)
{
m_sprite->move(0, -m_distance * m_updateTime / 50.0);
}
else if (sf::Keyboard::isKeyPressed(sf::Keyboard::S) && m_sprite->getPosition().y <= Screen::screenHeight - 70.f)
{
m_sprite->move(0, m_distance * m_updateTime / 50.0);
}
}
Player::~Player()
{
}
|
68977a44ebe1e6c382c3851e1caf8116a1340b3b
|
809504e5b3e792ab171963d7e163c15402317e73
|
/millas a km y viceversa.cpp
|
29cc38a570c4dea405c3967bc148a5d9dbd6932f
|
[] |
no_license
|
LG-LuisGarcia/Mis-20-programas-en-c-y-menu
|
a1d5af33c3f548781319d55e19f8fae007b33064
|
5ee4cba04130e2cd488bcd8d9f9f6d7570686680
|
refs/heads/main
| 2023-08-05T05:27:45.369227
| 2021-09-12T07:12:34
| 2021-09-12T07:12:34
| 405,573,394
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 663
|
cpp
|
millas a km y viceversa.cpp
|
#include<stdio.h>
#include<conio.h>
#define km 0.6214
#define milla 1.6093
float km_mi(float cantidad){
return cantidad*km;
}
float mi_km(float cantidad){
return cantidad*milla;
}
main(){
int op;
float cantidad;
printf(" CONVERTIR\n 1.-Km a Millas\n 2.-Millas a Km\n Respuesta : ");
scanf("%d",&op);
printf("Poner aca la cantidad de millas a km: ");
scanf("%f", &cantidad);
switch (op){
case 1:
printf(" %.2f km es igual a %.2f millas", cantidad,km_mi(cantidad));
break;
case 2:
printf(" %.2f millas equivale a %.2f km",cantidad,mi_km(cantidad));
break;
default:
printf("la opcion no es correcta");
}
getch();
return 0;
}
|
6a375ab40e9c814f4c19f3a7c669b4019699cb21
|
1f2deccb512949f2e40b2ca0affceb13c1c9c8e4
|
/Pid_Bola/Pid_Bola.ino
|
b07a7fc7a41d54b84d1db618780a1f93ce1a21e1
|
[] |
no_license
|
f0bima/Maladi
|
b9f23801c6536fb352b22449962d5e1e33e967fc
|
c7cc9433060ffebc3ca886bcf579b24771d14276
|
refs/heads/master
| 2020-04-06T19:10:39.939149
| 2019-01-10T14:49:46
| 2019-01-10T14:49:46
| 157,728,433
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 894
|
ino
|
Pid_Bola.ino
|
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
String a;
int LPWM[] = {4, 3, 7};
int RPWM[] = {5, 2, 6};
int base = 100;
float last_degree;
String baca;
void setup(){
Serial.begin(9600);
lcd.begin();
lcd.backlight();
for(int i=0;i<3;i++){
pinMode(LPWM[i], OUTPUT);
pinMode(RPWM[i], OUTPUT);
}
}
void loop(){
lcd.clear();
if(Serial.available()>0){
baca = "";
while(Serial.available()){
char pyserial = ((byte)Serial.read());
baca += pyserial;
delay(5);
}
a = baca;
/*String perintah = a.substring(0,1);
String nilai = a.substring(1); */
if(a == "99999"){
lcd.print("Muter");
muter();
}
else{
last_degree = a.toFloat();
lcd.print(a.toFloat());
//pid(a.toFloat());
}
}
}
|
b445b264c900b86aafe4f7375a12a05a0fe59979
|
56e81445a02f40f5e897f361270a858d375732ee
|
/src/symbole/Terme.h
|
204c11915c9fee6175d58f1e4b1aea43b7c89440
|
[] |
no_license
|
IF-YASMAJJ/Grammaire-et-Langages
|
bafe4afff57bc15b34617cb1188a71858c13c528
|
e59680d12ba9d3ad8309b780bac8a6bd0c557193
|
refs/heads/master
| 2021-01-17T15:17:15.870619
| 2015-03-30T13:23:16
| 2015-03-30T13:23:16
| 31,675,143
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 326
|
h
|
Terme.h
|
#ifndef TERME_H
#define TERME_H
#include "Expression.h"
class Terme : public Expression
{
public:
Terme();
virtual ~Terme();
virtual void castUp(){ m_idSymbole = EXPRESSION; }
virtual int calculer(Automate *automate) = 0;
virtual int* evaluer(Automate *automate) = 0;
protected:
private:
};
#endif // TERME_H
|
2c71ecba5984cc828593827af7ed10074792974a
|
681e5578721dabbc517262463cdb48f3630b7c29
|
/src/programs/Utilities/hddm2root/DClassDef.h
|
933c52c28ab135291feac417ec6c8503d2f91e85
|
[] |
no_license
|
JeffersonLab/sim-recon
|
d7a76e03887cfee255e1309ade73edb5a4f3bd87
|
de076695f16956fe649366b53959c7582285001f
|
refs/heads/master
| 2020-04-12T09:00:00.639534
| 2018-07-30T20:26:51
| 2018-07-30T20:26:51
| 39,176,669
| 15
| 20
| null | 2018-07-30T20:26:52
| 2015-07-16T04:35:19
|
C++
|
UTF-8
|
C++
| false
| false
| 471
|
h
|
DClassDef.h
|
// $Id$
//
// File: DClassDef.h
// Created: Tue Oct 16 04:22:52 EDT 2012
// Creator: davidl (on Darwin harriet.local 11.4.2 i386)
//
#ifndef _DClassDef_
#define _DClassDef_
#include <map>
#include <set>
#include <string>
using namespace std;
class DClassDef{
public:
DClassDef();
virtual ~DClassDef();
string name;
map<string, string> members;
set<string> include_types;
unsigned int depth;
protected:
private:
};
#endif // _DClassDef_
|
274a47fefb5958f3978a13cdceaaae19858c0adf
|
05e5c9ac229cbd661357a4cc70868998f9f7b54d
|
/nav2_util/include/nav2_util/motion_model/motion_model.hpp
|
2b771be56811356dd8ad7d38ace59c53a0a48cc0
|
[] |
no_license
|
artivis/navigation2
|
d85a2f058ad6b8212a30f467f695a4c1707935b0
|
5c0dfbe7a49cdc91a0db893ae5e1fb0e1bc84e6d
|
refs/heads/master
| 2020-07-08T08:40:53.187483
| 2019-08-21T03:06:16
| 2019-08-21T03:06:16
| 203,621,873
| 1
| 0
| null | 2019-08-21T16:19:29
| 2019-08-21T16:19:28
| null |
UTF-8
|
C++
| false
| false
| 1,864
|
hpp
|
motion_model.hpp
|
// Copyright (c) 2018 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef NAV2_UTIL__MOTION_MODEL__MOTION_MODEL_HPP_
#define NAV2_UTIL__MOTION_MODEL__MOTION_MODEL_HPP_
#include <string>
#include "nav2_util/pf/pf.hpp"
#include "nav2_util/pf/pf_pdf.hpp"
namespace nav2_util
{
class MotionModel
{
public:
virtual ~MotionModel() = default;
virtual void odometryUpdate(pf_t * pf, const pf_vector_t & pose, const pf_vector_t & delta) = 0;
static MotionModel * createMotionModel(
std::string & type, double alpha1, double alpha2,
double alpha3, double alpha4, double alpha5);
};
class OmniMotionModel : public MotionModel
{
public:
OmniMotionModel(double alpha1, double alpha2, double alpha3, double alpha4, double alpha5);
void odometryUpdate(pf_t * pf, const pf_vector_t & pose, const pf_vector_t & delta);
private:
double alpha1_;
double alpha2_;
double alpha3_;
double alpha4_;
double alpha5_;
};
class DifferentialMotionModel : public MotionModel
{
public:
DifferentialMotionModel(double alpha1, double alpha2, double alpha3, double alpha4);
void odometryUpdate(pf_t * pf, const pf_vector_t & pose, const pf_vector_t & delta);
private:
double alpha1_;
double alpha2_;
double alpha3_;
double alpha4_;
};
} // namespace nav2_util
#endif // NAV2_UTIL__MOTION_MODEL__MOTION_MODEL_HPP_
|
49b7687fe2e4b480155f25d9bac6af48c7c95f8b
|
9ac084b847374e4752aa468a1eb87f7a293730cf
|
/main/main/Apteryx_owenii.h
|
825adf4f82b26d5b949a25cbdcf906cf5328c9bc
|
[] |
no_license
|
Bainbetova/Birds_OOP
|
bebf0697cb1d6108b00fd3c5e9bb5cf09944d122
|
7e49ad64d892d7183239510d9f3bf72e4d547ed3
|
refs/heads/master
| 2022-09-04T19:39:31.183623
| 2020-05-09T16:31:29
| 2020-05-09T16:31:29
| 262,611,627
| 0
| 0
| null | null | null | null |
WINDOWS-1251
|
C++
| false
| false
| 376
|
h
|
Apteryx_owenii.h
|
#ifndef Apteryx_owenii_h
#define Apteryx_owenii_h
#include "Apterygiformes.h"
class Apteryx_owenii : public Apterygiformes {
public:
/* Конструктор */
Apteryx_owenii() {}
/* Метод */
void voice();
/*Свойства*/
double get_weight() const;
double get_size_egg() const;
void print();
char * type() const;
};
#endif // Apteryx_owenii_h
|
fe6ecf1cc7895bbc6f1179df3a095ffaea3d8b31
|
a65ade13b64bd3b969aef229c2f5ae6162b2933f
|
/CoreSystem/GUI/CDXUTIconListBox.h
|
ccfecf8c1c1a2b8346c62683dafc03bbc19143dc
|
[] |
no_license
|
jiowchern/fdo
|
a29eb161ff2672801c9dc51a06d15687790c0f76
|
84cf1386bb8d238954013734b081f9ac8afc423f
|
refs/heads/master
| 2022-07-20T17:41:10.802133
| 2019-09-24T19:20:40
| 2019-09-24T19:20:40
| 210,220,229
| 0
| 0
| null | null | null | null |
BIG5
|
C++
| false
| false
| 6,931
|
h
|
CDXUTIconListBox.h
|
/*******************************************************************************
Copyright 2006 by DYNASTY international Co., Ltd.
All rights reserved.
This software is the confidential and proprietary information of
DYNASTY international Co., Ltd. ('Confidential Information').
You shall not disclose such Confidential Information and shall
use it only in accordance with the terms of the license agreement
you entered into with DYNASTY international Co., Ltd.
*******************************************************************************/
#ifndef CDXUT_ICON_LIST_BOX_H
#define CDXUT_ICON_LIST_BOX_H
#include "CDXUTButton.h"
#include "CDXUTListBox.h"
#include "ListBoxItem.h"
#include <vector>
//-----------------------------------------------------------------------------
// Image control
//-----------------------------------------------------------------------------
class CDXUTIconImage : public CDXUTButton
{
public:
CDXUTIconImage( CDXUTDialog *pDialog = NULL );
virtual bool HandleKeyboard( UINT uMsg, WPARAM wParam, LPARAM lParam );
virtual bool HandleMouse( UINT uMsg, POINT pt, WPARAM wParam, LPARAM lParam );
virtual void Render( IDirect3DDevice9* pd3dDevice, float fElapsedTime );
// 設定此Image的材質,作用與CDXUTControl的SetTexture相同
void SetImage( const string &FileName, RECT* prcTexture=0 ) //說明 ***
{ CDXUTControl::SetTexture( FileName, prcTexture ); }
void SetImage( const WCHAR *FileName, RECT* prcTexture=0 )
{ CDXUTControl::SetTexture( FileName, prcTexture ); }
void SetColor( D3DCOLOR color );
IDirect3DTexture9* GetTexture( int iTexture ); // 取得此Image的材質
};
//-----------------------------------------------------------------------------
// ImageListBox control
//-----------------------------------------------------------------------------
struct DXUTIconListBoxItem : public DXUTListBoxItem
{
auto_ptr<CDXUTIconImage> Image;
auto_ptr<CDXUTStatic> Static;
bool m_bStatic; // 是否顯示數量在Image右下方
bool m_Visible;
};
class CDXUTIconListBox : public CDXUTListBox
{
public:
CDXUTIconListBox( CDXUTDialog *pDialog = NULL );
virtual ~CDXUTIconListBox();
//virtual HRESULT OnInit() { return m_pDialog->InitControl( &m_ScrollBar ); }
//virtual bool CanHaveFocus() { return (m_bVisible && m_bEnabled); }
//virtual bool HandleKeyboard( UINT uMsg, WPARAM wParam, LPARAM lParam );
virtual bool HandleMouse( UINT uMsg, POINT pt, WPARAM wParam, LPARAM lParam );
virtual void Render( IDirect3DDevice9* pd3dDevice, float fElapsedTime );
virtual void RenderHint( IDirect3DDevice9* pd3dDevice, float fElapsedTime );
virtual void OnMouseEnter() ;
virtual void OnMouseLeave() ;
virtual void UpdateRects();
HRESULT AddItem( DXUTIconListBoxItem *pItem );
HRESULT AddItem( const WCHAR *ImageFile, void *pData, int Amount = 0, DWORD TextColor = 0xFF000000 );
HRESULT AddItem( const string &ImageFile, void *pData, int Amount = 0, DWORD TextColor = 0xFF000000 );
HRESULT InsertItem( int nIndex, const WCHAR *ImageFile, void *pData, int Amount = 0 );
void RemoveItem( const int &nIndex );
void RemoveItem( DXUTIconListBoxItem *pItem ) { RemoveItem( m_Items.IndexOf(pItem) ); }
void RemoveAllItems();
void RemoveItemPointer( const int &nIndex );
void RemoveItemPointer( DXUTIconListBoxItem *pItem ) { RemoveItemPointer( m_Items.IndexOf(pItem) ); }
int GetItemIndexByData( void *pData );
DXUTIconListBoxItem *GetItem( int nIndex );
DXUTIconListBoxItem *GetSelectedItem( int nPreviousSelected = -1 ) { return GetItem( GetSelectedIndex( nPreviousSelected ) ); }
DXUTIconListBoxItem *GetItemByData( void *pData ) { return GetItem( GetItemIndexByData(pData) ); }
// 設定可否拖曳
void SetDragIcon( bool bDragIcon ) { m_bDragIcon = bDragIcon; }
bool GetDragIcon() { return m_bDragIcon; }
// 設定元件參數
virtual void SetBorder( int nBorder , int nMargin ) { m_nBorder = nBorder ; m_nMargin = nMargin ; UpdateRects() ; }
virtual void SetSpace( int nSpace ) { m_nSpace = nSpace; UpdateRects() ; }// 設定Cell之間的間距
void SetRow( unsigned Row ) { m_iBoxRow = Row ; UpdateRects() ; }
void SetCol( unsigned Col ) { m_iBoxCol = Col ; UpdateRects() ; }
void SetItemWidth( int iWidth ) { m_iItemWidth = iWidth ; UpdateRects() ; }
void SetItemHeight( int iHeight ) { m_iItemHeight = iHeight; UpdateRects() ; }
void SetStaticWidth( int iWidth ) { m_iStaticWidth = iWidth; }
void SetDrawText( bool bDraw ) { m_bDrawText = bDraw; }
void SetDrawStaticZero( bool bStatue ) { m_bDrawStaticZero = bStatue ; } // 設定是否畫static當文字為0的時候
virtual int GetSize() const { return m_Items.GetSize() ; }
void TrackLast() ; // 設定ScrollBar移至List最後
inline int GetBoxRow() const {return m_iBoxRow ; }
inline int GetBoxCol() const {return m_iBoxCol ; }
inline int GetCellWidth() { return m_iItemWidth ; }
inline int GetCellHeight() { return m_iItemHeight ; }
inline int GetCheckCellIndex() { return m_Check - m_ScrollBar.GetTrackPos() * m_iBoxRow ; } //回傳目前滑鼠點選的是第幾個空格
int GetCheck() { return m_Check ; } //回傳滑鼠目前所選Item的Index
int GetLastCheck() { return m_LastCheck ; } //回傳滑鼠前一次所選Item的Index
void GetCellRect( int CellNum , RECT& Rect ) ; //取得空格的RECT
int GetMouseOnItemIndex( POINT& ptMouse ) ; //取得目前滑鼠指向Item Index
virtual void GetScreenOffset(POINT& ptOut,const POINT& ptScreen) ;
protected:
CGrowableArray< DXUTIconListBoxItem* > m_Items;
vector< RECT > m_CellsRect ;
int m_Check ;
int m_LastCheck ;
int m_ScrollBarTrackLastPos ;
int m_iItemWidth ; // Cell的寬度
int m_iItemHeight; // Cell的高度
int m_iBoxRow; // IconListBox Cell一列的格子數
int m_iBoxCol; // IconListBox Cell一行的格子數
int m_iStaticWidth; // Static的寬度
bool m_bDrawText; // 是否繪製文字
bool m_bDragIcon; // 可否拖曳
bool m_bDrawStaticZero ; // 是否畫static當文字為0的時候
};
//-----------------------------------------------------------------------------
// ImageBox control
//-----------------------------------------------------------------------------
class CDXUTIconImageBox : public CDXUTIconListBox
{
public:
CDXUTIconImageBox( CDXUTDialog *pDialog = NULL );
virtual ~CDXUTIconImageBox();
virtual void RenderHint( IDirect3DDevice9* pd3dDevice, float fElapsedTime ); // 畫出元件提示
virtual bool HandleMouse( UINT uMsg, POINT pt, WPARAM wParam, LPARAM lParam );
virtual void Render( IDirect3DDevice9* pd3dDevice, float fElapsedTime );
bool HasItem() { return ( m_Items.GetSize() > 0 ) ? true : false; }
protected:
virtual void UpdateRects();
};
#endif
|
83ec4600e97c58c9592d14abcb56dce7cea33fd0
|
bc6430c488a225a2796b50632cd4a88395777a76
|
/EagleEye/OptionDialog.h
|
b36b9a42bb4049badd661e36a2588a128ca339d8
|
[] |
no_license
|
shflyeagle/EagleEye
|
5f312eaaf9a8a4e2bf5786a38d4f3d6d690d71b7
|
98b3b802a572ad81bc346905dfdf8396a8189912
|
refs/heads/master
| 2020-05-07T08:33:53.684195
| 2019-04-10T07:53:56
| 2019-04-10T07:53:56
| 180,328,573
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,104
|
h
|
OptionDialog.h
|
#pragma once
#include "EeCommon.h"
#include "ui_EeOption.h"
enum
{
OPTION_ITEM_GEN,
OPTION_ITEM_OTHER,
OPTION_ITEM_MAX,
};
class OptionDialog : public QDialog, public Ui_optionDialog
{
Q_OBJECT;
public:
OptionDialog(QWidget *parent);
~OptionDialog();
public:
quint16 getStrucType() const;
quint16 getBw() const;
quint16 getTxAnt() const;
QMap<quint16, QString> getDisabledFeaturesMap() const;
private:
void setupUiCustomized();
void initListWidget();
void bindConnections();
void showGenContext();
void showOtherContext();
quint16 findKey(const QMap<quint16, QString>& lut, const QString& value) const;
private slots:
void changeStrucType(int strucType);
void changeOption(QListWidgetItem* item);
private:
//gen tab controls
QTabWidget *genTabWidget;
QWidget *genTab;
QWidget *tigerTab;
QWidget *ddtTab;
QComboBox *stComboBox;
QComboBox *bwComboBox;
QComboBox *antComboBox;
QTreeWidget *featureDisabledTreeWidget;
QLabel *strucTypeLabel;
QLabel *featureDisabledLabel;
QLabel *bwLabel;
QLabel *antLabel;
//other tab controls
QTabWidget *otherTabWidget;
};
|
27e63ac4671da10e290fcf334cd0e6d6dd581cb9
|
224644e64311e1d13fd63459c961192d48497fe4
|
/ProjectEuler/ProjectEuler/Utils/List.h
|
dcaa7742e88c1f89775ebaf4f09e3f2d8ca93b99
|
[] |
no_license
|
SirApropos/Projects
|
4347277f77eefe13e0eea1a8142fb91d7c9b0c50
|
6d8d6a473db24d6eb5b42ac84add8cb7e5b93246
|
refs/heads/master
| 2021-01-20T11:32:07.058965
| 2014-10-10T20:01:09
| 2014-10-10T20:01:09
| 1,198,583
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,673
|
h
|
List.h
|
#pragma once
#include <functional>
#include <iostream>
#include <string>
#ifndef ListDef
#define ListDef
template<class T>
class List
{
private:
T * contents;
int index;
int curSize;
void scaleUp(){
curSize = (int)(curSize * 1.5 + 1);
copyToScale();
}
void scaleDown(){
curSize = (int)((curSize - 1) * (2.0/3.0));
if(curSize < 10) curSize = 10;
copyToScale();
}
void copyToScale(){
T * copy = new T[curSize];
for(int i=0;i<index;i++){
copy[i] = contents[i];
}
contents = copy;
}
T*& sort(std::function<int(T first, T second)> fn, T*& data, int length){
T * result = new T[length];
if(length > 1){
int firstLength = length/2;
int secondLength = length-firstLength;
T * first = new T[firstLength];
T * second = new T[length - firstLength];
for(int i=0;i<(firstLength);i++){
first[i] = data[i];
}
for(int i=0;i<secondLength;i++){
second[i] = data[i+(firstLength)];
}
first = sort(fn, first, firstLength);
second = sort(fn, second, secondLength);
int firstIndex = 0;
int secondIndex = 0;
for(int i=0;i<length;i++){
if(firstIndex == firstLength || (secondLength != secondIndex && fn(first[firstIndex],second[secondIndex]) == 1)){
result[i] = second[secondIndex++];
}else{
result[i] = first[firstIndex++];
}
}
}else{
result = data;
}
return result;
}
public:
List(void){
contents = new T[10];
index=0;
curSize=10;
};
List(List<T>& other){
contents = new T[other.curSize];
index = other.index;
curSize = other.curSize;
for(int i=0;i<size();i++){
contents[i] = other.contents[i];
}
}
T first(){
return index > 0 ? contents[0] : NULL;
}
T last(){
return index > 0 ? contents[index-1] : NULL;
}
void scaleTo(int size){
if(size > curSize){
curSize = size;
copyToScale();
}
}
bool contains(T obj){
return (indexOf(obj) >= 0);
}
int indexOf(T obj, int offset=0){
int result = -1;
for(int i=offset;i<index;i++){
if(contents[i] == obj){
result = i;
break;
}
}
return result;
}
void add(T obj){
if(index == curSize){
scaleUp();
}
contents[index++] = obj;
}
void removeObj(T obj){
for(int i=0;i<index;i++){
if(contents[i] == obj){
remove(i);
break;
}
}
}
void remove(int index){
if(index < this->index){
for(int i = index; i<this->index;i++){
contents[i] = contents[i+1];
}
this->index--;
contents[this->index] = NULL;
if(curSize > 10 && (curSize - 1) * 0.5 < this->index){
scaleDown();
}
}
}
T get(int index){
return (index < this->index) ? contents[index] : NULL;
}
void set(int index, T obj){
if(index >= size()){
for(int i=size();i<index;i++){
add(NULL);
}
}
contents[index] = obj;
}
int size(){
return index;
}
bool containsAll(List<T> * &compare){
List<T> used;
bool result = true;
compare->foreach([&](T item){
int offset=0;
while(true){
offset = indexOf(item,offset);
if(offset == -1){
result = false;
return true;
}else if(!(&used)->contains(offset)){
(&used)->add(offset);
break;
}
offset++;
}
return false;
});
return result;
}
void addAll(List<T> * &list){
list->foreach([](T obj){
add(obj);
return false;
});
}
void vforeach(std::function<void(T obj)> fn){
for(int i=0;i<index;i++){
fn(contents[i]);
}
}
void foreach(std::function<bool(T obj)> fn){
for(int i=0;i<index;i++){
if(fn(contents[i])){
break;
}
}
}
void sort(std::function<int(T first, T second)> fn){
T * sorted = sort(fn, contents, size());
for(int i=0;i<index;i++){
contents[i] = sorted[i];
}
}
};
#endif
|
de5df9b7ad97a98c0841c9fa0eb298f153e2be98
|
b1f04c4f1e00f6efb78f2ce62b8735ee16bfb529
|
/A2OJ/A/059. Football.cpp
|
f3e5f23c2c302faf4fc69404380adc2dd3a9bdac
|
[] |
no_license
|
hardikhere/competitive-programming
|
b2843737837d6dbff7570f4f29ef9329472abe92
|
0af7a77dde5a6e60319ff8b55ecba662d643ebeb
|
refs/heads/master
| 2022-12-21T12:54:27.353378
| 2020-10-01T15:19:13
| 2020-10-01T15:19:13
| 300,214,588
| 3
| 1
| null | 2020-10-01T09:03:27
| 2020-10-01T09:03:26
| null |
UTF-8
|
C++
| false
| false
| 553
|
cpp
|
059. Football.cpp
|
#include <bits/stdc++.h>
#define lli long long int
#define endl "\n"
using namespace std;
int main()
{
int n;
cin>>n;
string data;
string t1,t2 = "kotahriji";
vector <string> v1;
for(int i=0; i<n; i++)
{
cin>>data;
if(i == 0)
t1 = data;
if(t1 != data)
t2 = data;
v1.push_back(data);
}
int ct1 = count(v1.begin(), v1.end(), t1);
int ct2 = count(v1.begin(), v1.end(), t2);
if(ct1 < ct2)
cout<<t2;
else
cout<<t1;
return 0;
}
|
a28e2c7d010e35240795bf10909f3d881906f9ab
|
0eeaf1e3aaab20e799bce4df7712d5a4ff7869e1
|
/theLoops_2.cpp
|
966d112b1d8ac689fe6b29a69a91e44ffeb141b6
|
[] |
no_license
|
roneetkumar/cpp-things
|
8ce277888a224d8b7b5ac055ace44fcebab172af
|
8e28505db80c526a6c72c7198dafda74f6f543ee
|
refs/heads/master
| 2020-04-25T06:00:56.566687
| 2019-12-12T03:39:37
| 2019-12-12T03:39:37
| 172,563,721
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,573
|
cpp
|
theLoops_2.cpp
|
#include <iostream>
using namespace std;
int main()
{
// variable declaration
short noOfStudent;
float grade = 0, total = 0, bestGrade = 0, worstGrade = 100;
// printing college name
cout << "\t\tCollege Lassale\n";
cout << "\t\t---------------\n";
// "do while" loop to enter no of students
do
{
cout << "Enter the number of students (max 20) : ";
cin >> noOfStudent;
} while (noOfStudent > 20 || noOfStudent <= 0);
// "for loop" to calculate total marks, best marks and worst marks of each student
for (short i = 1; i <= noOfStudent; i++)
{
// "while" loop to enter the marks fo each student
while (true)
{
cout << "Enter marks for student " << i << " : ";
cin >> grade;
if (grade <= 100 && grade >= 0)
{
break;
}
}
// calculating total marks of all the students
total += grade;
// calculating the best marks of the class
bestGrade = (grade > bestGrade) ? grade : bestGrade;
// calculating the worst marks of the class
worstGrade = (grade < worstGrade) ? grade : worstGrade;
}
// calculating and printing the average marks of the class
cout << "The class average is " << total / noOfStudent << "%" << endl;
// printing best marks of the class
cout << "The best marks is " << bestGrade << endl;
// printing worst marks of the class
cout << "The worst marks is " << worstGrade << endl;
system("pause");
}
|
9758dbf9964c8e586db92f1df7a61c4f979424bc
|
6ca0e27edfb1243e31fbca299cbfbe4f902edb65
|
/src/KinectConfig.h
|
4208af586df9771095e66137eb6a6bfc13fba4d7
|
[
"Apache-2.0"
] |
permissive
|
fusefactory/ofxDepthKinectV2Streaming
|
5a22a496c241c5b4cef1e7aaa148288009c7b300
|
9a479f10cc81e90d638ed9e014fe8d3ce2bcffc9
|
refs/heads/master
| 2020-05-01T00:28:09.645213
| 2020-02-18T10:37:10
| 2020-02-18T10:37:10
| 177,168,661
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 453
|
h
|
KinectConfig.h
|
//
// Header.h
// Dokk
//
// Created by Paolo Bonacini on 07/12/16.
//
//
#ifndef KinectConfig_h
#define KinectConfig_h
#include <stdio.h>
#include <string>
class KinectConfig {
public:
std::string serverAddress;
int port;
int minDistance, maxDistance;
int leftMargin, rightMargin, topMargin, bottomMargin;
ofVec2f position;
ofVec2f scale;
float vertCorrection;
float keystone;
};
#endif /* KinectConfig_h */
|
6a08ea867c5dc3453944afc9ae27dbce994d7adc
|
f9594069b146644f1f2657a8de4483db02799694
|
/Background.cpp
|
33bda8af77d88d39194425232017f1eed5f373b1
|
[] |
no_license
|
sugarfig/Wish-Solitaire-EC
|
1aaaf151a97069ea21b45ecbd80650f37562c443
|
d20c0f3c9dc2dbd55ce8a3baa4223a33c159cb09
|
refs/heads/main
| 2023-03-27T18:11:03.436970
| 2021-04-02T01:50:20
| 2021-04-02T01:50:20
| 353,874,130
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 197
|
cpp
|
Background.cpp
|
//
// Created by Erica on 9/24/2020.
//
#include "Background.h"
Background::Background()
{
setSize({150.f, 250.f});
//Author: Erica Carballo
setFillColor(sf::Color::White);
}
|
4d369c023a1e479a2e13ec36ed9fbb181e2ab1de
|
31a97191e9583f367d7b992aefd54a84417b6e89
|
/ctdl/bieuthucdungdainhat.cpp
|
1fd3621073b69d6c84e8b53ad0a06780e20b185b
|
[] |
no_license
|
Keybinhoainam/codecpp
|
97200e0f585d46724ac4a02b2647d16e7c305715
|
7f5c00cc4299b0122878c8550caa7a49d01ddcf9
|
refs/heads/main
| 2023-07-13T17:10:44.983890
| 2021-08-24T14:22:57
| 2021-08-24T14:22:57
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 533
|
cpp
|
bieuthucdungdainhat.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
int T;
cin>>T;
while(T--)
{
string s;
cin>>s;
int n=s.length();
stack<int>a;
a.push(-1);
for(int i=0;i<s.length();i++)
{
if(s[i]=='(')a.push(i);
if(s[i]==')')
{
if(a.top()<n&&a.top()!=-1)a.pop();
else
{
a.push(i+n);
}
}
}
// cout<<a.top()<<endl;
int t=n,kq=0;
while(!a.empty())
{
if(a.top()>=n)a.top()-=n;
// if(t>a.top()+1&&a.top()<n)
kq+=t-a.top()-1;
t=a.top();a.pop();
}
cout<<kq<<endl;
}
}
|
86ee18f96157548931c48163fc334ef77ae0c797
|
ac610d807abbb5df761803bf97da987ad4605e3b
|
/src/client.cpp
|
fbccaa196071bf71d8299b240cfd27fa30f15282
|
[
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
dnnr/herbstluftwm
|
4f2e20a1a79619333f3addf4454a5057ee15c015
|
3bed77ed53c11d0f07d591feb0ef29bb4e741b51
|
refs/heads/winterbreeze
| 2023-03-17T00:43:16.220514
| 2019-04-22T09:12:48
| 2019-04-22T09:12:48
| 56,521,901
| 1
| 0
|
NOASSERTION
| 2020-05-03T14:37:42
| 2016-04-18T15:59:59
|
C++
|
UTF-8
|
C++
| false
| false
| 22,343
|
cpp
|
client.cpp
|
#include "client.h"
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <sstream>
#include "clientmanager.h"
#include "decoration.h"
#include "ewmh.h"
#include "globals.h"
#include "hook.h"
#include "ipc-protocol.h"
#include "keymanager.h"
#include "layout.h"
#include "monitor.h"
#include "mouse.h"
#include "root.h"
#include "settings.h"
#include "stack.h"
#include "tag.h"
#include "utils.h"
#include "xconnection.h"
using std::string;
static int g_monitor_float_treshold = 24;
// atoms from dwm.c
// default atoms
enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast };
static Atom g_wmatom[WMLast];
static Client* lastfocus = nullptr;
Client::Client(Window window, bool visible_already, ClientManager& cm)
: window_(window)
, dec(this, *cm.settings)
, visible_(visible_already)
, urgent_(this, "urgent", false)
, fullscreen_(this, "fullscreen", false)
, title_(this, "title", "")
, window_id_str(this, "winid", "")
, keyMask_(this, "keymask", "")
, pseudotile_(this, "pseudotile", false)
, manager(cm)
, theme(*cm.theme)
, settings(*cm.settings)
{
std::stringstream tmp;
tmp << "0x" << std::hex << window;
window_id_str = tmp.str();
keyMask_.setWriteable();
for (auto i : {&fullscreen_, &pseudotile_}) {
i->setWriteable();
i->changed().connect([this](bool){ needsRelayout.emit(this->tag()); });
}
keyMask_.changed().connect([this] {
if (Root::get()->clients()->focus() == this) {
Root::get()->keys()->ensureKeyMask();
}
});
init_from_X();
}
void Client::init_from_X() {
// treat wanted coordinates as floating coords
float_size_ = Root::get()->X.windowSize(window_);
last_size_ = float_size_;
pid_ = Root::get()->X.windowPid(window_);
update_title();
update_wm_hints();
updatesizehints();
}
void Client::make_full_client() {
// setup decoration
XSetWindowBorderWidth(g_display, window_, 0);
// specify that the client window survives if hlwm dies, i.e. it will be
// reparented back to root
XChangeSaveSet(g_display, window_, SetModeInsert);
XReparentWindow(g_display, window_, dec.decorationWindow(), 40, 40);
// if this client is visible, then reparenting will make it invisible
// and will create a unmap notify event
if (visible_ == true) {
ignore_unmaps_++;
visible_ = false;
}
// get events from window
XSelectInput(g_display, dec.decorationWindow(), (EnterWindowMask | LeaveWindowMask |
ButtonPressMask | ButtonReleaseMask |
ExposureMask |
SubstructureRedirectMask | FocusChangeMask));
XSelectInput(g_display, window_, CLIENT_EVENT_MASK);
}
void clientlist_init() {
// init regex simple..
g_wmatom[WMProtocols] = XInternAtom(g_display, "WM_PROTOCOLS", False);
g_wmatom[WMDelete] = XInternAtom(g_display, "WM_DELETE_WINDOW", False);
g_wmatom[WMState] = XInternAtom(g_display, "WM_STATE", False);
g_wmatom[WMTakeFocus] = XInternAtom(g_display, "WM_TAKE_FOCUS", False);
// init actual client list
}
bool Client::ignore_unmapnotify() {
if (ignore_unmaps_ > 0) {
ignore_unmaps_--;
return true;
} else {
return false;
}
}
void reset_client_colors() {
all_monitors_apply_layout();
}
void clientlist_destroy() {
}
Client* get_client_from_window(Window window) {
return Root::get()->clients()->client(window);
}
// destroys a special client
Client::~Client() {
if (lastfocus == this) {
lastfocus = nullptr;
}
if (slice) {
delete slice;
}
}
bool Client::needs_minimal_dec() {
//if (!frame) {
// frame = this->tag()->frame->frameWithClient(this);
// HSAssert(frame != nullptr);
//}
if (this->pseudotile_()) return false;
if (this->is_client_floated()) return false;
//if (smart_window_surroundings_active(frame)) return true;
return false;
}
void Client::window_unfocus() {
grab_client_buttons(this, false);
}
void Client::window_unfocus_last() {
if (lastfocus) {
lastfocus->window_unfocus();
}
// give focus to root window
XSetInputFocus(g_display, g_root, RevertToPointerRoot, CurrentTime);
if (lastfocus) {
/* only emit the hook if the focus *really* changes */
hook_emit_list("focus_changed", "0x0", "", nullptr);
ewmh_update_active_window(None);
tag_update_each_focus_layer();
// Enable all keys in the root window
Root::get()->keys()->clearActiveKeyMask();
}
lastfocus = 0;
}
void Client::window_focus() {
// set keyboard focus
if (!this->neverfocus_) {
XSetInputFocus(g_display, this->window_, RevertToPointerRoot, CurrentTime);
}
else this->sendevent(g_wmatom[WMTakeFocus]);
if (this != lastfocus) {
/* FIXME: this is a workaround because window_focus always is called
* twice. see BUGS for more information
*
* only emit the hook if the focus *really* changes */
// unfocus last one
if (lastfocus) {
lastfocus->window_unfocus();
}
ewmh_update_active_window(this->window_);
tag_update_each_focus_layer();
const char* title = this->title_().c_str();
char winid_str[STRING_BUF_SIZE];
snprintf(winid_str, STRING_BUF_SIZE, "0x%x", (unsigned int)this->window_);
hook_emit_list("focus_changed", winid_str, title, nullptr);
}
// change window-colors
//HSDebug("window_focus ACTIVE: 0x%lx\n", client->window);
//client_setup_border(client, true);
lastfocus = this;
/* do some specials for the max layout */
bool is_max_layout = HSFrame::getGloballyFocusedFrame()->focusedClient() == this
&& HSFrame::getGloballyFocusedFrame()->getLayout() == LAYOUT_MAX
&& get_current_monitor()->tag->floating == false;
if (settings.raise_on_focus() || is_max_layout) {
this->raise();
}
tag_update_focus_layer(get_current_monitor()->tag);
grab_client_buttons(this, true);
// XXX: At this point, ClientManager does not yet know about the focus
// change. So as a workaround, we pass ourselves directly to KeyManager:
Root::get()->keys()->ensureKeyMask(this);
this->set_urgent(false);
}
const DecTriple& Client::getDecTriple() {
auto triple_idx = Theme::Type::Tiling;
if (fullscreen_()) triple_idx = Theme::Type::Fullscreen;
else if (is_client_floated()) triple_idx = Theme::Type::Floating;
else if (needs_minimal_dec()) triple_idx = Theme::Type::Minimal;
else triple_idx = Theme::Type::Tiling;
return theme[triple_idx];
}
void Client::setup_border(bool focused) {
dec.change_scheme(getDecTriple()(focused, urgent_()));
}
void Client::resize_fullscreen(Rectangle monitor_rect, bool isFocused) {
dec.resize_outline(monitor_rect, theme[Theme::Type::Fullscreen](isFocused,urgent_()));
}
void Client::raise() {
this->tag()->stack->raiseSlice(this->slice);
}
void Client::resize_tiling(Rectangle rect, bool isFocused) {
// apply border width
if (!this->pseudotile_ /* && !smart_window_surroundings_active(frame) */) {
// apply window gap
rect.width -= settings.window_gap();
rect.height -= settings.window_gap();
}
auto& scheme = theme[Theme::Type::Tiling](isFocused, urgent_());
if (this->pseudotile_) {
auto inner = this->float_size_;
applysizehints(&inner.width, &inner.height);
auto outline = scheme.inner_rect_to_outline(inner);
rect.x += std::max(0, (rect.width - outline.width)/2);
rect.y += std::max(0, (rect.height - outline.height)/2);
rect.width = std::min(outline.width, rect.width);
rect.height = std::min(outline.height, rect.height);
}
dec.resize_outline(rect, scheme);
}
// from dwm.c
bool Client::applysizehints(int *w, int *h) {
bool baseismin;
/* set minimum possible */
*w = std::max(1, *w);
*h = std::max(1, *h);
if(*h < WINDOW_MIN_HEIGHT)
*h = WINDOW_MIN_HEIGHT;
if(*w < WINDOW_MIN_WIDTH)
*w = WINDOW_MIN_WIDTH;
bool sizehints = (this->is_client_floated() || this->pseudotile_)
? this->sizehints_floating_
: this->sizehints_tiling_;
if (sizehints) {
/* see last two sentences in ICCCM 4.1.2.3 */
baseismin = this->basew_ == this->minw_ && this->baseh_ == this->minh_;
if(!baseismin) { /* temporarily remove base dimensions */
*w -= this->basew_;
*h -= this->baseh_;
}
/* adjust for aspect limits */
if(this->mina_ > 0 && this->maxa_ > 0) {
if(this->maxa_ < (float)*w / *h)
*w = *h * int(this->maxa_ + 0.5f);
else if(this->mina_ < (float)*h / *w)
*h = *w * int(this->mina_ + 0.5f);
}
if(baseismin) { /* increment calculation requires this */
*w -= this->basew_;
*h -= this->baseh_;
}
/* adjust for increment value */
if(this->incw_)
*w -= *w % this->incw_;
if(this->inch_)
*h -= *h % this->inch_;
/* restore base dimensions */
*w += this->basew_;
*h += this->baseh_;
*w = std::max(*w, this->minw_);
*h = std::max(*h, this->minh_);
if(this->maxw_)
*w = std::min(*w, this->maxw_);
if(this->maxh_)
*h = std::min(*h, this->maxh_);
}
return *w != this->last_size_.width || *h != this->last_size_.height;
}
bool Client::applysizehints_xy(int *x, int *y,
int *w, int *h) {
return applysizehints(w,h) || *x != this->last_size_.x
|| *y != this->last_size_.y;
}
// from dwm.c
void Client::updatesizehints() {
long msize;
XSizeHints size;
if(!XGetWMNormalHints(g_display, this->window_, &size, &msize))
/* size is uninitialized, ensure that size.flags aren't used */
size.flags = PSize;
if(size.flags & PBaseSize) {
this->basew_ = size.base_width;
this->baseh_ = size.base_height;
}
else if(size.flags & PMinSize) {
this->basew_ = size.min_width;
this->baseh_ = size.min_height;
} else {
this->basew_ = this->baseh_ = 0;
}
if(size.flags & PResizeInc) {
this->incw_ = size.width_inc;
this->inch_ = size.height_inc;
}
else
this->incw_ = this->inch_ = 0;
if(size.flags & PMaxSize) {
this->maxw_ = size.max_width;
this->maxh_ = size.max_height;
} else {
this->maxw_ = this->maxh_ = 0;
}
if(size.flags & PMinSize) {
this->minw_ = size.min_width;
this->minh_ = size.min_height;
}
else if(size.flags & PBaseSize) {
this->minw_ = size.base_width;
this->minh_ = size.base_height;
} else {
this->minw_ = this->minh_ = 0;
}
if(size.flags & PAspect) {
this->mina_ = (float)size.min_aspect.y / size.min_aspect.x;
this->maxa_ = (float)size.max_aspect.x / size.max_aspect.y;
} else {
this->maxa_ = this->mina_ = 0.0;
}
//this->isfixed = (this->maxw && this->minw && this->maxh && this->minh
// && this->maxw == this->minw && this->maxh == this->minh);
}
void Client::send_configure() {
auto last_inner_rect = dec.last_inner();
XConfigureEvent ce;
ce.type = ConfigureNotify;
ce.display = g_display;
ce.event = this->window_;
ce.window = this->window_;
ce.x = last_inner_rect.x;
ce.y = last_inner_rect.y;
ce.width = std::max(last_inner_rect.width, WINDOW_MIN_WIDTH);
ce.height = std::max(last_inner_rect.height, WINDOW_MIN_HEIGHT);
ce.border_width = 0;
ce.above = None;
ce.override_redirect = False;
XSendEvent(g_display, this->window_, False, StructureNotifyMask, (XEvent *)&ce);
}
void Client::resize_floating(Monitor* m, bool isFocused) {
if (!m) return;
auto rect = this->float_size_;
rect.x += m->rect.x;
rect.x += m->rect.y;
rect.x += m->pad_left();
rect.y += m->pad_up();
// ensure position is on monitor
int space = g_monitor_float_treshold;
rect.x =
CLAMP(rect.x,
m->rect.x + m->pad_left() - rect.width + space,
m->rect.x + m->rect.width - m->pad_left() - m->pad_right() - space);
rect.y =
CLAMP(rect.y,
m->rect.y + m->pad_up() - rect.height + space,
m->rect.y + m->rect.height - m->pad_up() - m->pad_down() - space);
dec.resize_inner(rect, theme[Theme::Type::Floating](isFocused,urgent_()));
}
Rectangle Client::outer_floating_rect() {
return dec.inner_to_outer(float_size_);
}
int close_command(Input input, Output) {
string winid = "";
input >> winid; // try to read, use "" otherwise
auto window = get_window(winid);
if (window != 0)
window_close(window);
else return HERBST_INVALID_ARGUMENT;
return 0;
}
bool Client::is_client_floated() {
auto t = tag();
if (!t) return false;
else return tag()->floating;
}
void window_close(Window window) {
XEvent ev;
ev.type = ClientMessage;
ev.xclient.window = window;
ev.xclient.message_type = g_wmatom[WMProtocols];
ev.xclient.format = 32;
ev.xclient.data.l[0] = g_wmatom[WMDelete];
ev.xclient.data.l[1] = CurrentTime;
XSendEvent(g_display, window, False, NoEventMask, &ev);
}
void window_set_visible(Window win, bool visible) {
static int (*action[])(Display*,Window) = {
XUnmapWindow,
XMapWindow,
};
unsigned long event_mask = CLIENT_EVENT_MASK;
XGrabServer(g_display);
XSelectInput(g_display, win, event_mask & ~StructureNotifyMask);
XSelectInput(g_display, g_root, ROOT_EVENT_MASK & ~SubstructureNotifyMask);
action[visible](g_display, win);
XSelectInput(g_display, win, event_mask);
XSelectInput(g_display, g_root, ROOT_EVENT_MASK);
XUngrabServer(g_display);
}
void Client::set_visible(bool visible) {
if (visible == this->visible_) return;
if (visible) {
/* Grab the server to make sure that the frame window is mapped before
the client gets its MapNotify, i.e. to make sure the client is
_visible_ when it gets MapNotify. */
XGrabServer(g_display);
window_update_wm_state(this->window_, WmStateNormalState);
XMapWindow(g_display, this->window_);
XMapWindow(g_display, this->dec.decorationWindow());
XUngrabServer(g_display);
} else {
/* we unmap the client itself so that we can get MapRequest
events, and because the ICCCM tells us to! */
XUnmapWindow(g_display, this->dec.decorationWindow());
XUnmapWindow(g_display, this->window_);
window_update_wm_state(this->window_, WmStateWithdrawnState);
this->ignore_unmaps_++;
}
this->visible_ = visible;
}
// heavily inspired by dwm.c
void Client::set_urgent(bool state) {
if (this->urgent_() == state) {
// nothing to do
return;
}
set_urgent_force(state);
}
void Client::set_urgent_force(bool state) {
char winid_str[STRING_BUF_SIZE];
snprintf(winid_str, STRING_BUF_SIZE, "0x%lx", this->window_);
hook_emit_list("urgent", state ? "on" : "off", winid_str, nullptr);
this->urgent_ = state;
setup_border(this == HSFrame::getGloballyFocusedFrame()->focusedClient());
XWMHints *wmh;
if(!(wmh = XGetWMHints(g_display, this->window_)))
return;
if (state) {
wmh->flags |= XUrgencyHint;
} else {
wmh->flags &= ~XUrgencyHint;
}
XSetWMHints(g_display, this->window_, wmh);
XFree(wmh);
// report changes to tags
tag_set_flags_dirty();
}
// heavily inspired by dwm.c
void Client::update_wm_hints() {
XWMHints* wmh = XGetWMHints(g_display, this->window_);
if (!wmh) {
return;
}
Client* focused_client = HSFrame::getGloballyFocusedFrame()->focusedClient();
if ((focused_client == this)
&& wmh->flags & XUrgencyHint) {
// remove urgency hint if window is focused
wmh->flags &= ~XUrgencyHint;
XSetWMHints(g_display, this->window_, wmh);
} else {
bool newval = (wmh->flags & XUrgencyHint) ? true : false;
if (newval != this->urgent_()) {
this->urgent_ = newval;
char winid_str[STRING_BUF_SIZE];
snprintf(winid_str, STRING_BUF_SIZE, "0x%lx", this->window_);
this->setup_border(focused_client == this);
hook_emit_list("urgent", this->urgent_() ? "on":"off", winid_str, nullptr);
tag_set_flags_dirty();
}
}
if (wmh->flags & InputHint) {
this->neverfocus_ = !wmh->input;
} else {
this->neverfocus_ = false;
}
XFree(wmh);
}
void Client::update_title() {
std::experimental::optional<string> newName =
Root::get()->X.getWindowProperty(this->window_, g_netatom[NetWmName]);
if (!newName.has_value()) {
char* ch_new_name = nullptr;
/* if EWMH name isn't set, then fall back to WM_NAME */
if (0 != XFetchName(g_display, this->window_, &ch_new_name)) {
newName = string(ch_new_name);
XFree(ch_new_name);
} else {
newName = string("");
HSDebug("no title for window %lx found, using \"\"\n",
this->window_);
}
}
bool changed = this->title_() != newName;
title_ = newName.value();
if (changed && get_current_client() == this) {
char buf[STRING_BUF_SIZE];
snprintf(buf, STRING_BUF_SIZE, "0x%lx", this->window_);
hook_emit_list("window_title_changed", buf, this->title_().c_str(), nullptr);
}
}
Client* get_current_client() {
return HSFrame::getGloballyFocusedFrame()->focusedClient();
}
void Client::set_fullscreen(bool state) {
if (fullscreen_() == state) return;
fullscreen_ = state;
if (this->ewmhnotify_) {
this->ewmhfullscreen_ = state;
}
auto stack = this->tag()->stack;
if (state) {
stack->sliceAddLayer(this->slice, LAYER_FULLSCREEN);
} else {
stack->sliceRemoveLayer( this->slice, LAYER_FULLSCREEN);
}
tag_update_focus_layer(this->tag());
auto m = find_monitor_with_tag(this->tag());
if (m) m->applyLayout();
char buf[STRING_BUF_SIZE];
snprintf(buf, STRING_BUF_SIZE, "0x%lx", this->window_);
ewmh_update_window_state(this);
hook_emit_list("fullscreen", state ? "on" : "off", buf, nullptr);
}
void Client::set_pseudotile(bool state) {
this->pseudotile_ = state;
auto m = find_monitor_with_tag(this->tag());
if (m) m->applyLayout();
}
/**
* \brief Resolve a window description to a client
*
* \param str Describes the window: "" means the focused one, "urgent"
* resolves to a arbitrary urgent window, "0x..." just
* resolves to the given window given its hexadecimal window id,
* a decimal number its decimal window id.
* \return Pointer to the resolved client, or null, if client not found
*/
Client* get_client(const char* str) {
if (!strcmp(str, "")) {
return get_current_client();
} else {
return Root::get()->clients()->client(str);
}
}
/**
* \brief Resolve a window description to a window
*
* \param str Describes the window: "" means the focused one, "urgent"
* resolves to a arbitrary urgent window, "0x..." just
* resolves to the given window given its hexadecimal window id,
* a decimal number its decimal window id.
* \return Window id, or 0, if unconvertable
*/
Window get_window(const string& str) {
// managed window?
auto client = get_client(str.c_str());
if (client)
return client->window_;
// unmanaged window? try to convert from base 16 or base 10 at the same time
try {
return std::stoul(str);
} catch (...) {
return 0;
}
}
// mainly from dwm.c
bool Client::sendevent(Atom proto) {
int n;
Atom *protocols;
bool exists = false;
XEvent ev;
if (XGetWMProtocols(g_display, this->window_, &protocols, &n)) {
while (!exists && n--)
exists = protocols[n] == proto;
XFree(protocols);
}
if (exists) {
ev.type = ClientMessage;
ev.xclient.window = this->window_;
ev.xclient.message_type = g_wmatom[WMProtocols];
ev.xclient.format = 32;
ev.xclient.data.l[0] = proto;
ev.xclient.data.l[1] = CurrentTime;
XSendEvent(g_display, this->window_, False, NoEventMask, &ev);
}
return exists;
}
void Client::set_dragged(bool drag_state) {
if (drag_state == dragged_) return;
dragged_ = drag_state;
}
void Client::fuzzy_fix_initial_position() {
// find out the top-left-most position of the decoration,
// considering the current settings of possible floating decorations
int extreme_x = float_size_.x;
int extreme_y = float_size_.y;
const auto& t = theme[Theme::Type::Floating];
auto r = t.active.inner_rect_to_outline(float_size_);
extreme_x = std::min(extreme_x, r.x);
extreme_y = std::min(extreme_y, r.y);
r = t.normal.inner_rect_to_outline(float_size_);
extreme_x = std::min(extreme_x, r.x);
extreme_y = std::min(extreme_y, r.y);
r = t.urgent.inner_rect_to_outline(float_size_);
extreme_x = std::min(extreme_x, r.x);
extreme_y = std::min(extreme_y, r.y);
// if top left corner might be outside of the monitor, move it accordingly
if (extreme_x < 0) { float_size_.x += abs(extreme_x); }
if (extreme_y < 0) { float_size_.y += abs(extreme_y); }
}
void Client::clear_properties() {
// delete ewmh-properties and ICCCM-Properties such that the client knows
// that he has been unmanaged and now the client is allowed to be mapped
// again (e.g. if it is some dialog)
ewmh_clear_client_properties(window_);
XDeleteProperty(g_display, window_, g_wmatom[WMState]);
}
|
1157ebf744ea4d20b5583a02ef75f563afe34f2f
|
c2432fecf3cc2a9a0412fcc9ec91a21fcd539d49
|
/Paint3D-master/torus_gl.h
|
35332e1af4eec8ae19d848c042a273c6beac61bd
|
[] |
no_license
|
buichidunggithub/Computer-Graphics-Lab
|
860231099e54ae7aaaf147c73aabc2ffb34bfdd4
|
5a5f235e2e6dfbea6b25b7fbf084f50a1b7e47c3
|
refs/heads/master
| 2022-12-21T14:49:34.026477
| 2020-09-21T07:01:08
| 2020-09-21T07:01:08
| 297,242,738
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 210
|
h
|
torus_gl.h
|
#ifndef TORUS_GL_H
#define TORUS_GL_H
#include "polygon_gl.h"
class TorusGL : public PolygonGL
{
private:
GLfloat innerR, outerR, slices, stacks;
public:
TorusGL();
~TorusGL();
void render();
};
#endif
|
b1ecbded1fe3f8bc95572fe84dbd8044b426cf06
|
887f3a72757ff8f691c1481618944b727d4d9ff5
|
/gears/base/common/png_utils.cc
|
12897b1c912c0c363eddc9cd0ee8eb11287686d8
|
[
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] |
permissive
|
zied-ellouze/gears
|
329f754f7f9e9baa3afbbd652e7893a82b5013d1
|
d3da1ed772ed5ae9b82f46f9ecafeb67070d6899
|
refs/heads/master
| 2020-04-05T08:27:05.806590
| 2015-09-03T13:07:39
| 2015-09-03T13:07:39
| 41,813,794
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 19,936
|
cc
|
png_utils.cc
|
// Copyright 2007, Google Inc.
//
// 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 name of Google 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 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.
// This code is based on nsPNGDecoder in Mozilla and PNGImageDecoder in WebKit.
#ifdef OS_ANDROID
// We do not need this on Android since the Desktop module is not supported.
#else
#include <assert.h>
#include "gears/base/common/png_utils.h"
#if defined(PNG_gAMA_SUPPORTED) && defined(PNG_READ_GAMMA_SUPPORTED)
// Gamma correction constants. Everyone uses these two constants -- 2.2 and
// 1/2.2 because that is what IE did back in the day and they want to be
// compatible. For the whole sad story, see:
// https://bugzilla.mozilla.org/show_bug.cgi?id=53597
// nsPNGDecoder.cpp in Mozilla
static const double kMaxGamma = 21474.83; // Maximum gamma accepted by png
// library.
static const double kDefaultGamma = 2.2;
static const double kInverseGamma = 1.0 / kDefaultGamma;
#endif
// Maximum pixel dimension we'll try to decode.
static const png_uint_32 kMaxSize = 4096;
static void ConvertBetweenBGRAandRGBA(const unsigned char* input,
int pixel_width, unsigned char* output) {
for (int x = 0; x < pixel_width; x++) {
const unsigned char* pixel_in = &input[x * 4];
unsigned char* pixel_out = &output[x * 4];
pixel_out[0] = pixel_in[2];
pixel_out[1] = pixel_in[1];
pixel_out[2] = pixel_in[0];
pixel_out[3] = pixel_in[3];
}
}
static void ConvertRGBAtoRGB(const unsigned char* rgba, int pixel_width,
unsigned char* rgb) {
for (int x = 0; x < pixel_width; x++) {
const unsigned char* pixel_in = &rgba[x * 4];
unsigned char* pixel_out = &rgb[x * 3];
pixel_out[0] = pixel_in[0];
pixel_out[1] = pixel_in[1];
pixel_out[2] = pixel_in[2];
}
}
static void ConvertRGBtoRGBA(const unsigned char* rgb, int pixel_width,
unsigned char* rgba) {
for (int x = 0; x < pixel_width; x++) {
const unsigned char* pixel_in = &rgb[x * 3];
unsigned char* pixel_out = &rgba[x * 4];
pixel_out[0] = pixel_in[0];
pixel_out[1] = pixel_in[1];
pixel_out[2] = pixel_in[2];
pixel_out[3] = 0xff;
}
}
#if defined(PNG_WRITE_SUPPORTED)
static void ConvertBGRAtoRGB(const unsigned char* bgra, int pixel_width,
unsigned char* rgb) {
for (int x = 0; x < pixel_width; x++) {
const unsigned char* pixel_in = &bgra[x * 4];
unsigned char* pixel_out = &rgb[x * 3];
pixel_out[0] = pixel_in[2];
pixel_out[1] = pixel_in[1];
pixel_out[2] = pixel_in[0];
}
}
#endif
static void ConvertRGBtoBGRA(const unsigned char* rgb, int pixel_width,
unsigned char* bgra) {
for (int x = 0; x < pixel_width; x++) {
const unsigned char* pixel_in = &rgb[x * 3];
unsigned char* pixel_out = &bgra[x * 4];
pixel_out[0] = pixel_in[2];
pixel_out[1] = pixel_in[1];
pixel_out[2] = pixel_in[0];
pixel_out[3] = 0xff;
}
}
#if defined(PNG_WRITE_SUPPORTED)
// Encoder
// TODO(cprince): Add additional PNG_WRITE_* checks inside this block (as we
// have in the Decoder) if/when we want to support minimal-code PNG writing.
// Passed around as the io_ptr in the png structs so our callbacks know where
// to write data.
struct PngEncodeState {
PngEncodeState(std::vector<unsigned char>* o) : out(o) {}
std::vector<unsigned char>* out;
};
// Called by libpng to flush its internal buffer to ours.
static void EncoderWriteCallback(png_structp png, png_bytep data,
png_size_t size) {
PngEncodeState* state = static_cast<PngEncodeState*>(png_get_io_ptr(png));
assert(state->out);
size_t old_size = state->out->size();
state->out->resize(old_size + size);
memcpy(&(*state->out)[old_size], data, size);
}
// Automatically destroys the given write structs on destruction to make
// cleanup and error handling code cleaner.
class PngWriteStructDestroyer {
public:
PngWriteStructDestroyer(png_struct** ps, png_info** pi) : ps_(ps), pi_(pi) {
}
~PngWriteStructDestroyer() {
png_destroy_write_struct(ps_, pi_);
}
private:
png_struct** ps_;
png_info** pi_;
DISALLOW_EVIL_CONSTRUCTORS(PngWriteStructDestroyer);
};
// static
bool PngUtils::Encode(const unsigned char* input, ColorFormat format,
int w, int h, int row_byte_width,
bool discard_transparency,
std::vector<unsigned char>* output) {
// Run to convert an input row into the output row format, NULL means no
// conversion is necessary.
void (*converter)(const unsigned char* in, int w, unsigned char* out) = NULL;
int input_color_components, output_color_components;
int png_output_color_type;
switch (format) {
case FORMAT_RGB:
input_color_components = 3;
output_color_components = 3;
png_output_color_type = PNG_COLOR_TYPE_RGB;
discard_transparency = false;
break;
case FORMAT_RGBA:
input_color_components = 4;
if (discard_transparency) {
output_color_components = 3;
png_output_color_type = PNG_COLOR_TYPE_RGB;
converter = ConvertRGBAtoRGB;
} else {
output_color_components = 4;
png_output_color_type = PNG_COLOR_TYPE_RGB_ALPHA;
converter = NULL;
}
break;
case FORMAT_BGRA:
input_color_components = 4;
if (discard_transparency) {
output_color_components = 3;
png_output_color_type = PNG_COLOR_TYPE_RGB;
converter = ConvertBGRAtoRGB;
} else {
output_color_components = 4;
png_output_color_type = PNG_COLOR_TYPE_RGB_ALPHA;
converter = ConvertBetweenBGRAandRGBA;
}
break;
default:
assert(false);
return false;
}
// Row stride should be at least as long as the length of the data.
assert(input_color_components * w <= row_byte_width);
png_struct* png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,
png_voidp_NULL,
png_error_ptr_NULL,
png_error_ptr_NULL);
if (!png_ptr)
return false;
png_info* info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
png_destroy_write_struct(&png_ptr, NULL);
return false;
}
PngWriteStructDestroyer destroyer(&png_ptr, &info_ptr);
if (setjmp(png_jmpbuf(png_ptr))) {
// The destroyer will ensure that the structures are cleaned up in this
// case, even though we may get here as a jump from random parts of the
// PNG library called below.
return false;
}
// Set our callback for libpng to give us the data.
PngEncodeState state(output);
png_set_write_fn(png_ptr, &state, EncoderWriteCallback, NULL);
png_set_IHDR(png_ptr, info_ptr, w, h, 8, png_output_color_type,
PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT,
PNG_FILTER_TYPE_DEFAULT);
png_write_info(png_ptr, info_ptr);
if (!converter) {
// No conversion needed, give the data directly to libpng.
for (int y = 0; y < h; y ++)
png_write_row(png_ptr,
const_cast<unsigned char*>(&input[y * row_byte_width]));
} else {
// Needs conversion using a separate buffer.
unsigned char* row = new unsigned char[w * output_color_components];
for (int y = 0; y < h; y ++) {
converter(&input[y * row_byte_width], w, row);
png_write_row(png_ptr, row);
}
delete[] row;
}
png_write_end(png_ptr, info_ptr);
return true;
}
#endif // defined(PNG_WRITE_SUPPORTED)
#if defined(PNG_READ_SUPPORTED)
// Decoder
class PngDecodeState {
public:
PngDecodeState(PngUtils::ColorFormat ofmt, std::vector<unsigned char>* o)
: output_format(ofmt),
output_channels(0),
output(o),
row_converter(NULL),
width(0),
height(0),
done(false) {
}
PngUtils::ColorFormat output_format;
int output_channels;
std::vector<unsigned char>* output;
// Called to convert a row from the library to the correct output format.
// When NULL, no conversion is necessary.
void (*row_converter)(const unsigned char* in, int w, unsigned char* out);
// Size of the image, set in the info callback.
int width;
int height;
// Set to true when we've found the end of the data.
bool done;
private:
DISALLOW_EVIL_CONSTRUCTORS(PngDecodeState);
};
// Called when the png header has been read.
static void DecodeInfoCallback(png_struct* png_ptr, png_info* info_ptr) {
PngDecodeState* state = static_cast<PngDecodeState*>(
png_get_progressive_ptr(png_ptr));
int bit_depth, color_type, interlace_type, compression_type;
int filter_type, channels;
png_uint_32 w, h;
png_get_IHDR(png_ptr, info_ptr, &w, &h, &bit_depth, &color_type,
&interlace_type, &compression_type, &filter_type);
// Bounds check. When the image is unreasonably big, we'll error out and
// end up back at the setjmp call when we set up decoding.
if (w > kMaxSize || h > kMaxSize)
longjmp(png_ptr->jmpbuf, 1);
state->width = static_cast<int>(w);
state->height = static_cast<int>(h);
// Expand to ensure we use 24-bit for RGB and 32-bit for RGBA.
if (color_type == PNG_COLOR_TYPE_PALETTE ||
(color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8))
#ifdef PNG_READ_EXPAND_SUPPORTED
png_set_expand(png_ptr);
#else
return;
#endif
// Transparency for paletted images.
#if defined(PNG_tRNS_SUPPORTED) && defined(PNG_READ_EXPAND_SUPPORTED)
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
png_set_expand(png_ptr);
#endif
// Convert 16-bit to 8-bit.
if (bit_depth == 16)
#ifdef PNG_READ_16_TO_8_SUPPORTED
png_set_strip_16(png_ptr);
#else
return;
#endif
// Expand grayscale to RGB.
if (color_type == PNG_COLOR_TYPE_GRAY ||
color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
png_set_gray_to_rgb(png_ptr);
#else
return;
#endif
#if defined(PNG_gAMA_SUPPORTED) && defined(PNG_READ_GAMMA_SUPPORTED)
// Deal with gamma and keep it under our control.
double gamma;
if (png_get_gAMA(png_ptr, info_ptr, &gamma)) {
if (gamma <= 0.0 || gamma > kMaxGamma) {
gamma = kInverseGamma;
png_set_gAMA(png_ptr, info_ptr, gamma);
}
png_set_gamma(png_ptr, kDefaultGamma, gamma);
} else {
png_set_gamma(png_ptr, kDefaultGamma, kInverseGamma);
}
#endif
// Tell libpng to send us rows for interlaced pngs.
if (interlace_type == PNG_INTERLACE_ADAM7)
#if defined(PNG_READ_INTERLACING_SUPPORTED)
png_set_interlace_handling(png_ptr);
#else
return;
#endif
// Update our info now
png_read_update_info(png_ptr, info_ptr);
channels = png_get_channels(png_ptr, info_ptr);
// Pick our row format converter necessary for this data.
if (channels == 3) {
switch (state->output_format) {
case PngUtils::FORMAT_RGB:
state->row_converter = NULL; // no conversion necessary
state->output_channels = 3;
break;
case PngUtils::FORMAT_RGBA:
state->row_converter = &ConvertRGBtoRGBA;
state->output_channels = 4;
break;
case PngUtils::FORMAT_BGRA:
state->row_converter = &ConvertRGBtoBGRA;
state->output_channels = 4;
break;
default:
assert(false);
break;
}
} else if (channels == 4) {
switch (state->output_format) {
case PngUtils::FORMAT_RGB:
state->row_converter = &ConvertRGBAtoRGB;
state->output_channels = 3;
break;
case PngUtils::FORMAT_RGBA:
state->row_converter = NULL; // no conversion necessary
state->output_channels = 4;
break;
case PngUtils::FORMAT_BGRA:
state->row_converter = &ConvertBetweenBGRAandRGBA;
state->output_channels = 4;
break;
default:
assert(false);
break;
}
} else {
assert(false);
longjmp(png_ptr->jmpbuf, 1);
}
size_t new_size = state->width * state->output_channels * state->height;
state->output->resize(new_size);
// sanity-check that we were able to allocate all the memory we asked for.
if (state->output->size() != new_size) {
longjmp(png_ptr->jmpbuf, 1);
}
}
static void DecodeRowCallback(png_struct* png_ptr, png_byte* new_row,
png_uint_32 row_num, int pass) {
PngDecodeState* state = static_cast<PngDecodeState*>(
png_get_progressive_ptr(png_ptr));
// libpng should not be giving us interlaced data since that option is turned
// off.
assert(pass == 0);
if (static_cast<int>(row_num) > state->height) {
assert(false);
return;
}
unsigned char* dest = &(*state->output)[
state->width * state->output_channels * row_num];
if (state->row_converter)
state->row_converter(new_row, state->width, dest);
else
memcpy(dest, new_row, state->width * state->output_channels);
}
static void DecodeEndCallback(png_struct* png_ptr, png_info* info) {
PngDecodeState* state = static_cast<PngDecodeState*>(
png_get_progressive_ptr(png_ptr));
// Mark the image as complete, this will tell the Decode function that we
// have successfully found the end of the data.
state->done = true;
}
// Automatically destroys the given read structs on destruction to make
// cleanup and error handling code cleaner.
class PngReadStructDestroyer {
public:
PngReadStructDestroyer(png_struct** ps, png_info** pi) : ps_(ps), pi_(pi) {
}
~PngReadStructDestroyer() {
png_destroy_read_struct(ps_, pi_, NULL);
}
private:
png_struct** ps_;
png_info** pi_;
};
// static
bool PngUtils::Decode(const unsigned char* input, size_t input_size,
ColorFormat format, std::vector<unsigned char>* output,
int* w, int* h) {
if (input_size < 8)
return false; // Input data too small to be a png
// Have libpng check the signature, it likes the first 8 bytes.
if (png_sig_cmp(const_cast<unsigned char*>(input), 0, 8) != 0)
return false;
png_struct* png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,
png_voidp_NULL,
png_error_ptr_NULL,
png_error_ptr_NULL);
if (!png_ptr)
return false;
png_info* info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
png_destroy_read_struct(&png_ptr, NULL, NULL);
return false;
}
PngReadStructDestroyer destroyer(&png_ptr, &info_ptr);
if (setjmp(png_jmpbuf(png_ptr))) {
// The destroyer will ensure that the structures are cleaned up in this
// case, even though we may get here as a jump from random parts of the
// PNG library called below.
return false;
}
PngDecodeState state(format, output);
png_set_progressive_read_fn(png_ptr, &state, &DecodeInfoCallback,
&DecodeRowCallback, &DecodeEndCallback);
png_process_data(png_ptr, info_ptr, const_cast<unsigned char*>(input),
input_size);
if (!state.done) {
// Fed it all the data but the library didn't think we got all the data, so
// this file must be truncated.
output->clear();
return false;
}
*w = state.width;
*h = state.height;
return true;
}
#endif // defined(PNG_READ_SUPPORTED)
// Divides a length of X units into Y spans. The numbers need not be evenly
// divisible. The class will return spans of length floor(X/Y) and ceil(X/Y),
// chosen to distribute any error evenly along the length.
//
// The computation is efficient, requiring only one division at initialization
// and no divisions per span. This makes it suitable for things like
// drawing lines using Bresenham, or shrinking images with a box filter.
class IntegralSplit {
public:
// 'length' is the total distance to split into spans.
IntegralSplit(int length, int num_spans)
: length_(length), num_spans_(num_spans) {
small_span_ = length / num_spans; // integer division
step_error_ = length % num_spans;
total_error_ = num_spans >> 1; // init to spans/2 to 'center' any error
}
// Returns the length of the next span.
int NextSpan() {
total_error_ += step_error_;
if (total_error_ >= num_spans_) {
total_error_ -= num_spans_;
return small_span_ + 1;
} else {
return small_span_;
}
}
private:
int length_; // total distance to split
int num_spans_;
int total_error_;
int step_error_; // amount to add at each step
int small_span_; // spans are always (small) or (small + 1)
};
void PngUtils::ShrinkImage(const unsigned char *input, int width, int height,
int new_width, int new_height,
std::vector<unsigned char> *output) {
assert(new_width <= width);
assert(new_height <= height);
output->reserve(new_width * new_height * 4);
IntegralSplit height_splitter(height, new_height);
int base_y = 0;
for (int i = 0; i < new_height; ++i) {
IntegralSplit width_splitter(width, new_width);
int local_height = height_splitter.NextSpan();
int base_x = 0;
for (int j = 0; j < new_width; ++j) {
int local_width = width_splitter.NextSpan();
unsigned int red = 0;
unsigned int green = 0;
unsigned int blue = 0;
unsigned int alpha = 0;
// A box of pixels with colours c1...cN and alpha a1...aN is averaged as
// colour (c1a1+...+cNaN)/N and alpha (a1+...+aN)/N.
for (int y = base_y; y < base_y + local_height; ++y) {
for (int x = base_x; x < base_x + local_width; ++x) {
int offset = ((y * width) + x) * 4;
// Colour values are scaled by the alpha, so that translucent pixels
// don't impact the final colour more than they should.
red += input[offset] * input[offset + 3];
green += input[offset + 1] * input[offset + 3];
blue += input[offset + 2] * input[offset + 3];
// Alpha is just the average value from the input area.
alpha += input[offset + 3];
}
}
output->push_back(red / (local_height * local_width * 0xFF));
output->push_back(green / (local_height * local_width * 0xFF));
output->push_back(blue / (local_height * local_width * 0xFF));
output->push_back(alpha / (local_height * local_width));
base_x += local_width;
}
base_y += local_height;
}
}
#endif // OS_ANDROID
|
8f208ba0d80ccac44cc0648b11940854446f455e
|
2751e1ce452366f1bd1e94444d0eb2c19d273770
|
/.src/engine.cpp
|
c8c378491a69d4fa1cfd997ba91b116ff123a926
|
[
"MIT"
] |
permissive
|
Danduriel/rocky2
|
09f0893038449f46b9d78d4ff09e49528f188789
|
1a4441957c00de5f0f457a452398b68a00c9bea4
|
refs/heads/master
| 2020-06-11T13:40:13.021229
| 2017-01-26T13:21:20
| 2017-01-26T13:21:20
| 75,654,017
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 494
|
cpp
|
engine.cpp
|
#include "engine.h"
#include <stdio.h>
engine::engine()
{
//ctor
}
engine::~engine()
{
//dtor
}
void engine::init(){}
void engine::cleanup()
{
while(!states.empty() )
{
states.back()->cleanup();
states.pop_back();
}
std::printf("debug: engine::cleanup");
}
void engine::changeState(gamestate* state)
{
}
void engine::pushState(gamestate* state){}
void engine::popState(){}
void engine::handleevents(){}
void engine::update(){}
void engine::draw(){}
|
50cc4552e6ad203754bd6e63b8fb271c686a4b59
|
f1d0f38a1a3f8e0b5265b731fd5aa9f1111630c2
|
/source/MLambertDiffuse.h
|
8e9705a194456a082b5d6f4a30d7e0da2877d95f
|
[
"MIT"
] |
permissive
|
Kair0z/Custom-Rasterizer
|
9c6fd06c5828145b41fcc04ddc8eaf7bf7678a7b
|
f83c636c29b85e12cc3c1c85b25a0bc2da2eaf84
|
refs/heads/main
| 2023-01-04T16:51:41.763195
| 2020-10-29T08:16:05
| 2020-10-29T08:16:05
| 304,494,660
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 599
|
h
|
MLambertDiffuse.h
|
#pragma once
#include "Material.h"
#include "Texture.h"
#include "Map.h"
class MLambertDiffuse : public Material
{
public:
MLambertDiffuse(
Texture* pDiffusemap,
NormalMap* pNormalmap);
virtual RGBColor Shade(
const Pixel_Info& pixelInfo,
const FPoint3& camPos,
const std::vector<Light*>& pLights)
const override final;
// ROF
MLambertDiffuse(const MLambertDiffuse&) = delete;
MLambertDiffuse(MLambertDiffuse&&) = delete;
MLambertDiffuse& operator=(const MLambertDiffuse&) = delete;
MLambertDiffuse& operator=(MLambertDiffuse&&) = delete;
~MLambertDiffuse();
private:
};
|
7488d53b3699bdab087f50cf68d65c6fc1c5e804
|
680ef2d2b5ca0660877f56ee33ae64bd08335d63
|
/main.cpp
|
405b39f9f882b421c8ffb3717991340cd1ff0004
|
[
"MIT"
] |
permissive
|
hnkr/Chat_Server
|
97d7245435d549f19d0dc1ebcc6aeea3d8c7ac08
|
8d4b57c62e5ab949512c3df0d534e595a9d17dec
|
refs/heads/master
| 2020-12-10T20:25:51.239327
| 2020-01-20T21:49:34
| 2020-01-20T21:49:34
| 233,702,289
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,027
|
cpp
|
main.cpp
|
/**
* main.cpp
* Hunkar Ciplak, hunkarciplak@hotmail.com
*/
#include "server_sock.hpp"
#include <iostream>
#include <thread>
int main(void)
{
std::cout << "TCP Server" << std::endl;
ServerSocket serv; //create the object
SERVER_SOCK_INFO_T server_config; //to configure the socket, if you don't want to use the default settings.
server_config.TCP_SOCKET = 1;
server_config.LISTEN_BACKLOG = 3;
server_config.MAX_CLIENT_COUNT = 5;
server_config.PORT_NO = 56789;
server_config.REUSE_ADDR = 1;
server_config.REUSE_PORT = 1;
server_config.BLOCKING = 1; //non-blocking not implemented yet.
serv.CreateSocket(&server_config); //create the socket with the configuration.
std::thread th_server_rx(&ServerSocket::StartServer, &serv); //start listening & accepting connection req. & receiving
std::thread th_server_tx(&ServerSocket::SendQueueToAllClients, &serv); //send the received data to all clients
th_server_rx.join();
th_server_tx.join();
return 0;
}
|
09e837934407ca5acf3c0f5affc80c6bded2afaa
|
30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a
|
/contest/1542574697.cpp
|
d7e0f4e85160f1722191542b47253e387a383a00
|
[] |
no_license
|
thegamer1907/Code_Analysis
|
0a2bb97a9fb5faf01d983c223d9715eb419b7519
|
48079e399321b585efc8a2c6a84c25e2e7a22a61
|
refs/heads/master
| 2020-05-27T01:20:55.921937
| 2019-11-20T11:15:11
| 2019-11-20T11:15:11
| 188,403,594
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,642
|
cpp
|
1542574697.cpp
|
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#include <cassert>
#include <queue>
#include <ctime>
#include <string>
#include <cstring>
#include <random>
#define mp make_pair
#define pb push_back
#define NAME ""
#define y1 y1_423
#define list lista
using namespace std;
typedef long long ll;
typedef long double ld;
template<typename T>
ostream& operator << (ostream& cout, const vector<T> &a) {
if ((int)a.size() == 0) {
return (cout << "()");
}
cout << "(" << a[0];
for (int i = 1; i < (int)a.size(); i++) {
cout << "; " << a[i];
}
return (cout << ")");
}
template<typename T>
ostream& operator << (ostream& cout, const set<T> &a) {
if ((int)a.size() == 0) {
return (cout << "{}");
}
auto it = a.begin();
cout << "{" << *it;
++it;
for (; it != a.end(); ++it) {
cout << "; " << *it;
}
return (cout << "}");
}
template<typename T>
ostream& operator << (ostream& cout, const multiset<T> &a) {
if ((int)a.size() == 0) {
return (cout << "{}");
}
auto it = a.begin();
cout << "{" << *it;
++it;
for (; it != a.end(); ++it) {
cout << "; " << *it;
}
return (cout << "}");
}
template<typename T1, typename T2>
ostream& operator << (ostream& cout, const pair<T1, T2> &a) {
return cout << "(" << a.first << "; " << a.second << ")";
}
random_device gen;
mt19937 rnd(gen());
const int nmax = 2000 * 1000;
const int inf = 2000 * 1000 * 1000;
const ll infl = 1000ll * 1000ll * 1000ll * 1000ll * 1000ll * 1000ll;
const int mod = 1000 * 1000 * 1000 + 7;
const ld pi = acos(-1.0);
vector<pair<ld, int> > a;
int main() {
//freopen("input.txt", "r", stdin);freopen("output.txt", "w", stdout);
//freopen(NAME".in", "r", stdin);freopen(NAME".out", "w", stdout);
ld h, m, s, t1, t2;
cin >> h >> m >> s >> t1 >> t2;
if (h == 12) h = 0;
if (t1 == 12) t1 = 0;
if (t2 == 12) t2 = 0;
ld eng1 = t1 * 360.0 / 12;
ld eng2 = t2 * 360.0 / 12;
ld h1 = h * 360.0 / 12 + m * 360.0 / 12 / 60 + s * 360.0 / 12 / 60 / 60;
ld m1 = m * 360.0 / 60 + s * 360.0 / 60 / 60;
ld s1 = s * 360.0 / 60;
a.pb({eng1, 1});
a.pb({eng2, 1});
a.pb({h1, 0});
a.pb({m1, 0});
a.pb({s1, 0});
sort(a.begin(), a.end());
for (int i = 0; i < 5; i++) {
a.pb({a[i].first + 360, a[i].second});
}
for (int i = 1; i < 10; i++) {
if (a[i].second == 1 && a[i - 1].second == 1) {
cout << "YES\n";
return 0;
}
}
cout << "NO\n";
return 0;
}
|
dce19c2809c85ac8c865c398493dbf472f2f17d8
|
f23e8f4986f9eb48ef50f47378ee1fa7dddf8992
|
/L's Meal/Solution.cpp
|
9d43139a416451943072b3ad7f8123be8a1959ed
|
[] |
no_license
|
rishup132/Problem-by-Me
|
2c13829e69ab79ea59c36e1675b40a6f1ecd0dc0
|
791cfff4222bbbfd805dbb9a65a547363a42cf1e
|
refs/heads/master
| 2020-04-24T15:34:47.076513
| 2019-02-22T18:21:49
| 2019-02-22T18:21:49
| 172,073,496
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 847
|
cpp
|
Solution.cpp
|
#include <bits/stdc++.h>
#define int long long
#define endl "\n"
using namespace std;
int32_t main()
{
string s;
cin >> s;
int n = s.size();
for(int i=0;i<n;i++)
assert(s[i] == 'p' || s[i] == 'c');
int c1,c2;
for(int i=0;i<n;i++)
{
if(s[i] == 'c')
{
c1 = i;
break;
}
}
for(int i=n-1;i>=0;i--)
{
if(s[i] == 'p')
{
c2 = i;
break;
}
}
if(c1 < c2)
swap(s[c1],s[c2]);
int cnt = 0;
int ans = 0;
for(int i=0;i<n;i++)
{
if(s[i] == 'c')
cnt++;
else
ans += cnt;
}
cnt = 0;
for(int i=n-1;i>=0;i--)
{
if(s[i] == 'p')
cnt++;
else
ans += cnt;
}
cout << ans << endl;
}
|
a3bf9ccba9001b962ce3681340c1f623b985b6fa
|
64349ee89256e1409b8e0bd54c9fe75ba29ecc00
|
/ballclepsydra.h
|
e64a5d02b6f0a408a6e262548877ab98547250e2
|
[] |
no_license
|
cristo92/Kulki
|
0672fc2b86423759332c30582d0da1d6d7332bc1
|
fc9436179100160d49c42b471bc9445dc7e95dc8
|
refs/heads/master
| 2020-05-16T01:06:07.450371
| 2013-09-26T01:09:54
| 2013-09-26T01:09:54
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,056
|
h
|
ballclepsydra.h
|
#ifndef BALLCLEPSYDRA_H
#define BALLCLEPSYDRA_H
#include <QtGui>
#include "ball.h"
class BallClepsydra : public Ball
{
Q_OBJECT
public:
explicit BallClepsydra(qreal x, qreal y, qreal w, qreal h, int myColor, int points = 0): Ball(x,y,w,h,myColor){index=5;}
~BallClepsydra(){}
bool compareColorWithoutRecursion(Ball *ball) {return myColor==ball->myColor;}
bool compareColor(Ball *ball) {
if(ball==NULL) return false;
return (myColor==ball->myColor) || ball->compareColorWithoutRecursion(this);
}
int sumPoints() {return points[index];}
int timesPoints() {return 1;}
void updateAfterMove() {
if(index) index--;
this->update();
}
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
Ball::paint(painter,option,widget);
painter->drawPixmap(QRect(0,0,RKULKI*2,RKULKI*2),*pixmaps[index],pixmaps[index]->rect());
}
static QPixmap *pixmaps[6];
static int points[6];
private:
int index;
};
#endif // BALLCLEPSYDRA_H
|
40ada76c92e6db3864c8dac5411cf820f848edf7
|
9147d996104c52695fbaacb7a50e4af6875ee714
|
/src/MetaOut.h
|
2d78cdf3e5ff95b432946b7d92837997ecfcf4c9
|
[] |
no_license
|
whatdoineed2do/audiotag
|
c0a90db70e33459bc1095ff2e2e939269fe32374
|
d7044daf86acd9544032aa88f09e73f70bdc0f9e
|
refs/heads/master
| 2023-07-21T16:07:27.513397
| 2023-07-11T13:32:28
| 2023-07-11T17:30:09
| 95,975,314
| 2
| 0
| null | 2018-07-04T17:17:20
| 2017-07-01T16:24:52
|
C++
|
UTF-8
|
C++
| false
| false
| 1,026
|
h
|
MetaOut.h
|
#ifndef AUDIOTAG_META_OUT_H
#define AUDIOTAG_META_OUT_H
#include "../config.h"
#include <iosfwd>
namespace TagLib
{
class Tag;
class String;
};
namespace AudioTag
{
class Meta;
class File;
/* different output formats
*/
class MetaOut
{
public:
MetaOut() = default;
virtual ~MetaOut() = default;
MetaOut(const MetaOut&) = default;
MetaOut& operator=(const MetaOut&) = default;
MetaOut(MetaOut&&) = default;
MetaOut& operator=(MetaOut&&) = default;
virtual std::ostream& out(std::ostream&, const File&);
static MetaOut* create(const char*);
};
struct MetaOutBasic : public MetaOut
{
std::ostream& out(std::ostream&, const File&) override;
};
struct MetaOutJson: public MetaOut
{
std::ostream& out(std::ostream&, const File&) override;
static const char* out(std::string& buf_, const TagLib::String& src_);
};
#ifdef HAVE_JSONC
struct MetaOutJsonC: public MetaOut
{
std::ostream& out(std::ostream&, const File&) override;
};
#endif
};
#endif
|
34abe34e1a9694cdffa3bc456ec41b51abd21b1a
|
b2f9dbe762d7e67982ffbfa826e64140f34974b0
|
/debug/moc_player.cpp
|
2ab8b43e617dde9f853431d811f7c0c7022101ea
|
[] |
no_license
|
feofan2004/motivator
|
03a46ad8aae6eecde86fcbd4a51d75027a3b9d23
|
ba4ae8eade415cc927d2e77d75fccbd282b15729
|
refs/heads/master
| 2021-09-01T05:44:22.065413
| 2017-12-25T05:58:27
| 2017-12-25T05:58:27
| 106,211,014
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,063
|
cpp
|
moc_player.cpp
|
/****************************************************************************
** Meta object code from reading C++ file 'player.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.2.1)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../player.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'player.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.2.1. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
struct qt_meta_stringdata_Player_t {
QByteArrayData data[15];
char stringdata[235];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
offsetof(qt_meta_stringdata_Player_t, stringdata) + ofs \
- idx * sizeof(QByteArrayData) \
)
static const qt_meta_stringdata_Player_t qt_meta_stringdata_Player = {
{
QT_MOC_LITERAL(0, 0, 6),
QT_MOC_LITERAL(1, 7, 27),
QT_MOC_LITERAL(2, 35, 0),
QT_MOC_LITERAL(3, 36, 1),
QT_MOC_LITERAL(4, 38, 30),
QT_MOC_LITERAL(5, 69, 25),
QT_MOC_LITERAL(6, 95, 25),
QT_MOC_LITERAL(7, 121, 19),
QT_MOC_LITERAL(8, 141, 7),
QT_MOC_LITERAL(9, 149, 18),
QT_MOC_LITERAL(10, 168, 11),
QT_MOC_LITERAL(11, 180, 12),
QT_MOC_LITERAL(12, 193, 14),
QT_MOC_LITERAL(13, 208, 12),
QT_MOC_LITERAL(14, 221, 12)
},
"Player\0setCurrentSongDurationLabel\0\0"
"a\0setCurrentSongCurrentTimeLabel\0"
"nextSongInPlaylistManager\0"
"prevSongInPlaylistManager\0openPlaylistsWidget\0"
"addSong\0addFuckingPlaylist\0delPlaylist\0"
"playThisSong\0deleteThisSong\0savePlaylist\0"
"loadPlaylist\0"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_Player[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
12, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: name, argc, parameters, tag, flags
1, 1, 74, 2, 0x0a,
4, 1, 77, 2, 0x0a,
5, 0, 80, 2, 0x0a,
6, 0, 81, 2, 0x0a,
7, 0, 82, 2, 0x0a,
8, 0, 83, 2, 0x0a,
9, 0, 84, 2, 0x0a,
10, 0, 85, 2, 0x0a,
11, 1, 86, 2, 0x0a,
12, 0, 89, 2, 0x0a,
13, 0, 90, 2, 0x0a,
14, 0, 91, 2, 0x0a,
// slots: parameters
QMetaType::Void, QMetaType::LongLong, 3,
QMetaType::Void, QMetaType::LongLong, 3,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void, QMetaType::QModelIndex, 3,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
0 // eod
};
void Player::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
Player *_t = static_cast<Player *>(_o);
switch (_id) {
case 0: _t->setCurrentSongDurationLabel((*reinterpret_cast< qint64(*)>(_a[1]))); break;
case 1: _t->setCurrentSongCurrentTimeLabel((*reinterpret_cast< qint64(*)>(_a[1]))); break;
case 2: _t->nextSongInPlaylistManager(); break;
case 3: _t->prevSongInPlaylistManager(); break;
case 4: _t->openPlaylistsWidget(); break;
case 5: _t->addSong(); break;
case 6: _t->addFuckingPlaylist(); break;
case 7: _t->delPlaylist(); break;
case 8: _t->playThisSong((*reinterpret_cast< QModelIndex(*)>(_a[1]))); break;
case 9: _t->deleteThisSong(); break;
case 10: _t->savePlaylist(); break;
case 11: _t->loadPlaylist(); break;
default: ;
}
}
}
const QMetaObject Player::staticMetaObject = {
{ &QObject::staticMetaObject, qt_meta_stringdata_Player.data,
qt_meta_data_Player, qt_static_metacall, 0, 0}
};
const QMetaObject *Player::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *Player::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_Player.stringdata))
return static_cast<void*>(const_cast< Player*>(this));
return QObject::qt_metacast(_clname);
}
int Player::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 12)
qt_static_metacall(this, _c, _id, _a);
_id -= 12;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 12)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 12;
}
return _id;
}
QT_END_MOC_NAMESPACE
|
7658a1fabc980a06669426aebfc7729ce091c024
|
167c6226bc77c5daaedab007dfdad4377f588ef4
|
/cpp/ql/test/library-tests/dataflow/smart-pointers-taint/test.cpp
|
8d0dd6b1220014ec6730b1e2234f34d9786833e2
|
[
"LicenseRef-scancode-public-domain",
"MIT"
] |
permissive
|
github/codeql
|
1eebb449a34f774db9e881b52cb8f7a1b1a53612
|
d109637e2d7ab3b819812eb960c05cb31d9d2168
|
refs/heads/main
| 2023-08-20T11:32:39.162059
| 2023-08-18T14:33:32
| 2023-08-18T14:33:32
| 143,040,428
| 5,987
| 1,363
|
MIT
| 2023-09-14T19:36:50
| 2018-07-31T16:35:51
|
CodeQL
|
UTF-8
|
C++
| false
| false
| 969
|
cpp
|
test.cpp
|
#include "memory.h"
int source();
void sink(int);
void test_unique_ptr_int() {
std::unique_ptr<int> p1(new int(source()));
std::unique_ptr<int> p2 = std::make_unique<int>(source());
sink(*p1); // $ ir MISSING: ast
sink(*p2); // $ ast ir
}
struct A {
int x, y;
A(int x, int y) : x(x), y(y) {}
};
void test_unique_ptr_struct() {
std::unique_ptr<A> p1(new A{source(), 0});
std::unique_ptr<A> p2 = std::make_unique<A>(source(), 0);
sink(p1->x); // $ ir MISSING: ast
sink(p1->y);
sink(p2->x); // $ ir MISSING: ast
sink(p2->y);
}
void test_shared_ptr_int() {
std::shared_ptr<int> p1(new int(source()));
std::shared_ptr<int> p2 = std::make_shared<int>(source());
sink(*p1); // $ ast,ir
sink(*p2); // $ ast ir
}
void test_shared_ptr_struct() {
std::shared_ptr<A> p1(new A{source(), 0});
std::shared_ptr<A> p2 = std::make_shared<A>(source(), 0);
sink(p1->x); // $ MISSING: ast,ir
sink(p1->y);
sink(p2->x); // $ MISSING: ast,ir
sink(p2->y);
}
|
11ec7acfcdf4f8f7af2f2a4298132796699fd97e
|
4ab5967ec7beee82c76943a47bdafb14df673ba0
|
/综合实验5/Dlgseek.cpp
|
6e7082f48c95015a437fce4f127464678fa3ea26
|
[] |
no_license
|
my697020/objProject
|
29556faf4669740d58b800262edf8ed4375885ef
|
b0c1f78dada5bfc8020f245ff3d893768c51439c
|
refs/heads/master
| 2022-11-18T01:33:21.399435
| 2020-07-10T11:32:34
| 2020-07-10T11:32:34
| 259,626,589
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 561
|
cpp
|
Dlgseek.cpp
|
// Dlgseek.cpp : 实现文件
//
#include "stdafx.h"
#include "综合总实验.h"
#include "Dlgseek.h"
#include "afxdialogex.h"
// Dlgseek 对话框
IMPLEMENT_DYNAMIC(Dlgseek, CDialogEx)
Dlgseek::Dlgseek(CWnd* pParent /*=NULL*/)
: CDialogEx(IDD_DIALOG2, pParent)
, seek(_T(""))
{
}
Dlgseek::~Dlgseek()
{
}
void Dlgseek::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_EDIT1, seek);
}
BEGIN_MESSAGE_MAP(Dlgseek, CDialogEx)
END_MESSAGE_MAP()
// Dlgseek 消息处理程序
|
3b448641fad535912e35bc0a4882204c3639a196
|
e029a0aeaad3ff2e00b7f1d918ad3e741173db27
|
/common/cpp/examples/p4ptracker_walkthrough.cpp
|
565e4fd9257d63e133429903214b3e05b7e1d261
|
[
"BSD-2-Clause",
"BSD-3-Clause"
] |
permissive
|
Yale-LANS/ALTO
|
dcb32b51f1f3160da611451570f8ae16ea90d511
|
63569ab160e825880c3e759cc2887b0ccbb3d3fb
|
refs/heads/master
| 2020-04-15T01:02:44.063295
| 2012-11-29T18:20:27
| 2012-11-29T18:20:27
| 6,914,067
| 1
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 21,599
|
cpp
|
p4ptracker_walkthrough.cpp
|
/*
* Copyright (c) 2008,2009, Yale Laboratory of Networked Systems
* 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 Yale University 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.
*/
/*
* P4P Tracker Walkthrough
*
* This is a small example program that walks through the basics of
* integrating P4P into an existing P2P tracker. Steps for integrating
* P4P are marked in comments with the text "*** STEP X ***".
*/
/* *** STEP 1 ***
* Include P4P header files and namespaces. There are two components
* of the P4P library:
* - Core classes that manage P4P information from ISPs
* - Application integration classes which encode common data structures
* and concepts used when integration P4P into applications.
*
* We use both components in this example.
*/
#include <p4p/p4p.h> /* P4P core includes */
#include <p4p/app/p4papp.h> /* P4P application includes */
using namespace p4p; /* Import P4P core namespace */
using namespace p4p::app; /* Import P4P application namespace */
#ifdef WIN32 /* Platform-dependent includes */
#include <windows.h>
#else
#include <pthread.h>
#endif
/* *** STEP 2a ***
* Extend your peer class from P4PPeerBase. In this walkthrough, we
* assume your peer class is named 'YourPeerClass'. This allows
* your peer class to be managed by the P4P Application library
* data structures, such as those that help with peer selection.
*/
class YourPeerClass : public P4PPeerBase
{
public:
/* Constructor */
YourPeerClass(const std::string& id, const std::string& addr, unsigned short port)
: m_id(id), m_addr(addr), m_port(port), m_downloading(true)
{}
/* Your accessor methods */
const std::string& getID() const { return m_id; }
const std::string& getAddr() const { return m_addr; }
unsigned short getPort() const { return m_port; }
bool isDownloading() const { return m_downloading; }
/* Your methods for updating peer state and statistics */
void setDownloading(bool value) { m_downloading = value; }
void setCapacityEstimates(float uploadcapacity, float downloadcapacity)
{
m_uploadcapacity = uploadcapacity;
m_downloadcapacity = downloadcapacity;
}
/* *** STEP 2b ***
* Provide additional methods in P4PPeerBase interface
*/
virtual IPAddress getIPAddress() const { return m_addr; }
virtual float getUploadCapacity() const { return m_uploadcapacity; }
virtual float getDownloadCapacity() const { return m_downloadcapacity; }
virtual bool isSeeder() const { return !m_downloading; }
private:
std::string m_id; /** Unique peer ID */
std::string m_addr; /** IP address */
unsigned short m_port; /** Port number */
bool m_downloading; /** True if peer is downloading (leeching), false if seeding */
float m_uploadcapacity; /** Estimated upload capacity (in Kbps) */
float m_downloadcapacity; /** Estimated download capacity (in Kbps) */
};
/*
* Data structure encapsulating a single swarm. In this walkthrough, we
* assume that your swarm data structure is named 'YourSwarmClass'.
*/
class YourSwarmClass
{
private:
/* *** STEP 3a ***
* Add data member for P4P peer selection manager. The PGMSelectionManager
* provides guidance using an Optimization Engine which influences the
* peer selection process.
*/
PGMSelectionManager* m_selection_mgr;
/* *** STEP 3b ***
* Add data member to store a reference to the P4P update manager, which
* handles updating of P4P guidance information.
*/
P4PUpdateManager* m_update_mgr;
public:
/* *** STEP 4a ***
* Extend swarm constructors to initialize the selection manager. Additional
* arguments are added for:
* - An ISPManager, which manages the global collection of P4P-capable ISPs.
* - An Update Manager, which handles updating P4P and guidance information
* - Address and port number of the Application Optimization Engine Server
* which provides peering guidance
*/
YourSwarmClass(const std::string& id,
const ISPManager& isp_mgr,
P4PUpdateManager* update_mgr)
: m_update_mgr(update_mgr), m_id(id)
{
/* Selection manager takes the ISPManager as a constructor argument. */
m_selection_mgr = new PGMSelectionManager(&isp_mgr);
/* Provide the update manager a reference to the selection manager we
* have just created. The update manager will handle updating peering
* guidance according to the configured options. */
m_update_mgr->addSelectionManager(m_selection_mgr);
}
/* This demo also illustrates a mode in which a swarm is configured to
* only perform its native peer selection without using P4P. In this case,
* the pointers to the selection manager and update manager are both set
* to NULL. */
YourSwarmClass(const std::string& id)
: m_selection_mgr(NULL), m_update_mgr(NULL), m_id(id)
{}
/* *** STEP 4b ***
* Provide methods to set options for computing peering guidance. In this
* walkthrough, we provide two methods for configuring options:
* - setDefaultGuidanceOptions(): Configures default peering guidance options
* across all ISPs.
* - setSpecificISPGuidanceOptions(): Allows peering guidance options to be
* overridden for particular ISPs.
*
* The peer selection guidance used for a peer is controlled by the options
* specified for its Home ISP. If the ISP's guidance options
* are not explicitly overridden, the default options are used.
*
* Finally, we provide an initGuidance() method that instructs the P4P selection
* manager to initialize its guidance matrices after all options have been
* configured.
*/
/* Provide a method for configuring default peering guidance options */
void setDefaultGuidanceOptions(const PeeringGuidanceMatrixOptions& options)
{
/* Configure default guidance matrix options. */
m_selection_mgr->setDefaultOptions(options);
}
/* Provide a method allowing guidance options to be overridden for specific ISPs. */
void setSpecificISPGuidanceOptions(const std::map<const ISP*, PeeringGuidanceMatrixOptions> specific_isp_options)
{
std::map<const ISP*, PeeringGuidanceMatrixOptions>::const_iterator isp_itr;
for(isp_itr = specific_isp_options.begin(); isp_itr != specific_isp_options.end(); isp_itr++)
{
const ISP* isp = isp_itr->first;
const PeeringGuidanceMatrixOptions& options = isp_itr->second;
m_selection_mgr->setISPOptions(isp, options);
}
}
/* Initialize the guidance matrices. In this example, we use a remote
* Optimization Engine server to provide peering guidance. */
void initGuidance(const std::string& optEngineAddr, unsigned short optEnginePort)
{
m_selection_mgr->initGuidance(optEngineAddr, optEnginePort);
}
/* Your accessor methods */
const std::string& getID() const { return m_id; }
/* Your peer management functions */
YourPeerClass* findPeer(const std::string& peerid)
{
/* Locate peer data structure with the given ID. Return NULL if not found */
PeerCollection::const_iterator peer_itr = m_peers.find(peerid);
if (peer_itr == m_peers.end())
return NULL;
else
return peer_itr->second;
}
void peerJoined(YourPeerClass* peer)
{
m_peers[peer->getID()] = peer;
/* *** STEP 5a ***
* Extend peer join event handler to add peer to selection manager
*/
if (m_selection_mgr)
m_selection_mgr->addPeer(peer);
}
void peerStatsChanged(const std::string& peerid, bool downloading, float uploadcapacity, float downloadcapacity)
{
YourPeerClass* peer = findPeer(peerid);
if (!peer)
return;
peer->setDownloading(downloading);
peer->setCapacityEstimates(uploadcapacity, downloadcapacity);
/* *** STEP 5b ***
* Extend peer statistics updated event to update stats in selection manager,
* notifying it that the peers statistics have changed.
*/
if (m_selection_mgr)
m_selection_mgr->updatePeerStats(peer);
}
void selectPeers(const std::string& peerid, std::vector<YourPeerClass*>& selected_peers)
{
YourPeerClass* peer = findPeer(peerid);
if (!peer)
return;
/* *** Step 5c ***
* Try peer selection through the P4P peer selection manager. If it
* is not available (e.g., if P4P information is currently being refreshed,
* ISP Portal servers are not avalable, etc), then continue with your
* native peer selection.
*
* P4P peer selection takes an argument indicating how many peers to
* select. The output parameter the peer selection is pointers to
* P4PPeerBase. These should be typecasted back to your peers.
*/
if (m_selection_mgr)
{
/* P4P-guided peer selection is enabled */
std::vector<const P4PPeerBase*> p4p_selected_peers;
if (m_selection_mgr->selectPeers(peer, 50, p4p_selected_peers) == 0)
{
/* Typecast P4PPeerBase pointers back to YourPeerClass */
for (unsigned int i = 0; i < p4p_selected_peers.size(); ++i)
selected_peers.push_back((YourPeerClass*)p4p_selected_peers[i]);
return;
}
}
/* One of three things happened:
* - Swarm was configured to perform native peer selection (e.g., not
* use P4P guidance)
* - No guidance is currently available
* - Some other error occurred.
*
* Now, continue with your native peer selection process
*/
/* Your native peer selection logic ... */
/* For simplicity in this walkthrough, we choose the first 50 peers
* in the peers collection.
*/
std::cout << "Using native peer selection algorithm" << std::endl;
unsigned int num_selected = 0;
for (PeerCollection::const_iterator itr = m_peers.begin();
num_selected < 50 && itr != m_peers.end();
++itr)
{
YourPeerClass* candidate = itr->second;
if (candidate == peer) /* Avoid selecting peer for itself */
continue;
selected_peers.push_back(candidate);
++num_selected;
}
/* Finished with native peer selection */
}
void peerDeparted(const std::string& peerid)
{
YourPeerClass* peer = findPeer(peerid);
if (!peer)
return;
/* *** STEP 5d ***
* Extend peer leave event handler to remove peer from selection manager
*/
if (m_selection_mgr)
m_selection_mgr->removePeer(peer);
delete peer;
m_peers.erase(peerid);
}
/* *** STEP 6 ***
* Extend swarm destructor to cleanup the selection manager
*/
~YourSwarmClass()
{
/* Notify the update manager that the selection manager will be destroyed, then
* free its resources. */
if (m_selection_mgr)
{
m_update_mgr->removeSelectionManager(m_selection_mgr);
delete m_selection_mgr;
}
/* Your normal destructor code ... */
}
private:
/* Mapping from peer ID to peer data structure */
typedef std::map<std::string, YourPeerClass*> PeerCollection;
std::string m_id; /* Swarm ID */
PeerCollection m_peers; /* Peers in the channel */
};
/* *** STEP 7 ***
* Provide a thread in which the P4P update manager may run. The update
* manager makes network connections to fetch information and may perform
* longer-running computations, so such operations should not block peer join/leave
* events, peer selection, etc.
*/
#ifdef WIN32
DWORD WINAPI
#else
void*
#endif
p4p_update_thread(void* arg)
{
P4PUpdateManager* update_mgr = (P4PUpdateManager*)arg;
update_mgr->run();
return NULL;
}
/* Utility method for printing a collection of selected peers. Peer ID and IP
* address are displayed for each selected peer. */
void printSelectedPeers(const std::string& peer, const std::vector<YourPeerClass*>& selected_peers)
{
std::cout << "Selected peers for " << peer << std::endl;
for (unsigned int i = 0; i < selected_peers.size(); ++i)
{
YourPeerClass* sel_peer = selected_peers[i];
std::cout << '\t' << sel_peer->getID() << " ( " << sel_peer->getAddr() << " )" << std::endl;
}
}
/* *** STEP 8 ***
* Read configuration options; these may be read from a configuration file, database,
* or command-line options. For simplicity, they are defined here as global
* variables.
*
* We have configuration options for:
* - The set of configured Portal Servers for P4P-capable ISPs
* - The address and port of the Application Optimization Engine Server we're using
*/
const std::string CTZJ_PORTAL_ADDR = "p4p-8.cs.yale.edu"; /* Portal server address for China Telecom Zhejiang */
const unsigned short CTZJ_PORTAL_PORT = 6671; /* Portal server port for China Telecom Zhejiang */
const std::string CTOUTZJ_PORTAL_ADDR = "p4p-8.cs.yale.edu"; /* Portal server address for China Telecom (out of Zhejiang) */
const unsigned short CTOUTZJ_PORTAL_PORT = 6771; /* Portal server port for China Telecom (out of Zhejiang) */
const std::string CNC_PORTAL_ADDR = "p4p-8.cs.yale.edu"; /* Portal server address for China NetCom */
const unsigned short CNC_PORTAL_PORT = 6681; /* Portal server port for China NetCom */
const std::string CERNET_PORTAL_ADDR = "p4p-8.cs.yale.edu"; /* Portal server address for China NetCom */
const unsigned short CERNET_PORTAL_PORT = 6691; /* Portal server port for China NetCom */
const std::string OPT_ENGINE_ADDR = "p4p-8.cs.yale.edu"; /* Optimization Engine server address */
const unsigned short OPT_ENGINE_PORT = 6673; /* Optimization Engine server port */
int main()
{
p4p::setLogLevel(LOG_DEBUG);
/* *** STEP 9a ***
* Create manager for P4P-capable ISPs, and configured ISPs
*/
ISPManager isp_manager;
isp_manager.addISP("ct-zj", CTZJ_PORTAL_ADDR, CTZJ_PORTAL_PORT);
isp_manager.addISP("ct-outzj", CTOUTZJ_PORTAL_ADDR, CTOUTZJ_PORTAL_PORT);
isp_manager.addISP("cnc", CNC_PORTAL_ADDR, CNC_PORTAL_PORT);
isp_manager.addISP("cernet", CERNET_PORTAL_ADDR, CERNET_PORTAL_PORT);
/* *** Step 9b ***
* Create P4P Update Manager and spawn update manager thread
*/
P4PUpdateManager p4p_update_manager(&isp_manager);
#ifdef WIN32
/* Create thread under Windows */
HANDLE p4p_update_thd = CreateThread(NULL, 0, p4p_update_thread, &p4p_update_manager, 0, NULL);
if (p4p_update_thd == NULL)
#else
/* Create thread using pthreads */
pthread_t p4p_update_thd;
if (pthread_create(&p4p_update_thd, NULL, p4p_update_thread, &p4p_update_manager) != 0)
#endif
{
std::cerr << "Failed to spawn P4P update thread" << std::endl;
exit(1);
}
/* For the purposes of this demo, sleep for a few seconds to let P4P
* information be refreshed. */
#ifdef WIN32
Sleep(3000);
#else
sleep(3);
#endif
/* *** Step 10 ***
* When creating swarms, you may choose to use either your native
* peer selection, or use P4P-guided peer selection. You may specify
* different peer selection algorithms for different ISPs.
*
* In this walkthrough, we will be configuring peer selection for
* peers within China Netcom and CERNET to use only network location
* information from P4P. Peer selection for peers within other ISPs
* (in this case, China Telecom Zhejiang) will use peering
* guidance from an Application Optimization Engine.
*/
/* As previously mentioned, peers in China Netcom and CERNET use
* only network location information for peering guidance in
* this walkthrough.
*
* The guidance options are configured such that
* for a peer outside Zhejiang but in China Telecom,
* or a peer in China Netcom, up to 90% of its neighbors will be selected
* from the same PID, and up to 95% of its neighbors will be selected
* from the same network (China Netcom). For a CERNET peer, up to 50%
* of its neighbors will be selected locally from the same PID,
* and up to 70% of its neighbors will be selected from CERNET.
*/
std::map<const ISP*, PeeringGuidanceMatrixOptions> isp_options;
isp_options[isp_manager.getISP("ct-outzj")] = PeeringGuidanceMatrixOptions::LocationOnly(0.9, 0.95);
isp_options[isp_manager.getISP("cnc")] = PeeringGuidanceMatrixOptions::LocationOnly(0.9, 0.95);
isp_options[isp_manager.getISP("cernet")] = PeeringGuidanceMatrixOptions::LocationOnly(0.5, 0.7);
/* Construct four swarms. In this example, we specify different
* default peering guidance options for each. These options
* will apply to all ISPs whose options have not been explicitly
* overridden (in this case, China Telecom Zhejiang). The different
* guidance options for China Telecom Zhejiang are:
* - Native peer selection behavior for the entire swarm
* - P4P-guided peer selection using swarm-independent guidance for
* filesharing
* - P4P-guided peer selection using swarm-dependent guidance for
* filesharing, where guidance will be tuned according to the current
* swarm information (e.g., number of peers, peer capacity estimates)
* - P4P-guided peer selection using swarm-dependent guidance for
* streaming.
*/
YourSwarmClass* swarms[4];
swarms[0] = new YourSwarmClass("native");
swarms[1] = new YourSwarmClass("p4p-filesharing-swarm-independent", isp_manager, &p4p_update_manager);
swarms[1]->setDefaultGuidanceOptions(PeeringGuidanceMatrixOptions::FilesharingGeneric());
swarms[1]->setSpecificISPGuidanceOptions(isp_options);
swarms[1]->initGuidance(OPT_ENGINE_ADDR, OPT_ENGINE_PORT);
swarms[2] = new YourSwarmClass("p4p-filesharing-swarm-dependent", isp_manager, &p4p_update_manager);
swarms[2]->setDefaultGuidanceOptions(PeeringGuidanceMatrixOptions::FilesharingSwarmDependent());
swarms[2]->setSpecificISPGuidanceOptions(isp_options);
swarms[2]->initGuidance(OPT_ENGINE_ADDR, OPT_ENGINE_PORT);
swarms[3] = new YourSwarmClass("p4p-streaming-swarm-dependent", isp_manager, &p4p_update_manager);
swarms[3]->setDefaultGuidanceOptions(PeeringGuidanceMatrixOptions::StreamingSwarmDependent(
50000 /* channel streaming rate (Byte per second) */,
PeeringGuidanceMatrixOptions::OPT_STREAMING_SSMCM));
swarms[3]->setSpecificISPGuidanceOptions(isp_options);
swarms[3]->initGuidance(OPT_ENGINE_ADDR, OPT_ENGINE_PORT);
/* Your code for constructing, adding, and removing peers. This demo
* simulates 3 peers joining and leaving each of the swarms. */
for (unsigned int i = 0; i < 4; ++i)
{
YourSwarmClass* swarm = swarms[i];
std::cout << "Simulating swarm " << swarm->getID() << std::endl;
/* Peer 1 joins swarm. Peer 1 is inside China Telecom Zhejiang. */
YourPeerClass* peer1 = new YourPeerClass("peer1", "202.75.218.179", 1234);
swarm->peerJoined(peer1);
std::cout << peer1->getID() << " joined with Home PID " << peer1->getHomePID() << std::endl;
/* Select peers for Peer 1. No peers should be selected since
* no other peers are currently in swarm) */
std::vector<YourPeerClass*> peer1_selected_peers;
swarm->selectPeers("peer1", peer1_selected_peers);
printSelectedPeers("peer1", peer1_selected_peers);
/* Peer 2 joins swarm. Peer 2 is inside CERNET. */
YourPeerClass* peer2 = new YourPeerClass("peer2", "59.66.122.38", 4321);
swarm->peerJoined(peer2);
std::cout << peer2->getID() << " joined with Home PID " << peer2->getHomePID() << std::endl;
/* Select peers for Peer 2. Native peer selection algorithm
* is used since it is not within a P4P-capable ISP. Only
* Peer 1 should be selected. */
std::vector<YourPeerClass*> peer2_selected_peers;
swarm->selectPeers("peer2", peer2_selected_peers);
printSelectedPeers("peer2", peer2_selected_peers);
/* Peer 3 joins swarm. Peer is inside China Telecom Zhejiang. */
YourPeerClass* peer3 = new YourPeerClass("peer3", "218.71.160.21", 5678);
swarm->peerJoined(peer3);
std::cout << peer3->getID() << " joined with Home PID " << peer3->getHomePID() << std::endl;
/* Select peers for Peer 3. Peers 1 and 2 should be selected,
* with Peer 1 first since it is also inside of China Telecom Zhejiang. */
std::vector<YourPeerClass*> peer3_selected_peers;
swarm->selectPeers("peer3", peer3_selected_peers);
printSelectedPeers("peer3", peer3_selected_peers);
/* Peers leave the swarm */
swarm->peerDeparted("peer1");
swarm->peerDeparted("peer2");
swarm->peerDeparted("peer3");
}
/* Cleanup resources for the swarms */
for (unsigned int i = 0; i < 4; ++i)
delete swarms[i];
/* *** Step 11 ***
* During system shutdown, stop the P4P update manager and wait
* for the thread to complete.
*/
p4p_update_manager.stop();
#ifdef WIN32
if (WaitForSingleObject(p4p_update_thd, INFINITE) != WAIT_OBJECT_0)
#else
if (pthread_join(p4p_update_thd, NULL) != 0)
#endif
{
std::cerr << "Failed to join P4P update thread" << std::endl;
exit(1);
}
}
|
f19da1f702b7ec0e860478df7cc9868b62b840f8
|
740dfb6555f56969422015c7729e89e5398bff9a
|
/stactiverecord/cud_property_register.h
|
8f68bdcdcc0172f3994f30eb374081a339e05a22
|
[
"MIT"
] |
permissive
|
janmejay/StactiveRecord
|
0bb6ecb26ad7b2a02ac39d54a06e4ad91aea238b
|
a0099167c55496d12a4c21ca2a13ef986352338b
|
refs/heads/master
| 2021-01-17T04:22:49.595686
| 2013-04-24T07:59:14
| 2013-04-24T07:59:14
| 9,642,322
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,905
|
h
|
cud_property_register.h
|
/*
Copyright (C) 2007 Butterfat, LLC (http://butterfat.net)
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.
Created by bmuller <bmuller@butterfat.net>
*/
namespace stactiverecord {
/** \class CUDPropertyRegister
* \brief An observer of sorts - keeps track of changes to extending classes
* \author bmuller <bmuller@butterfat.net>
*/
class CUDPropertyRegister {
private:
std::map<int, SarVector<std::string> > newprop;
std::map<int, SarVector<std::string> > changedprop;
std::map<int, SarVector<std::string> > deletedprop;
protected:
/** register new property */
void register_new(std::string key, coltype ct);
/** register changed property */
void register_change(std::string key, coltype ct);
/** register deleted property */
void register_delete(std::string key, coltype ct);
/** determine if a property has been registered new */
bool is_registered_new(std::string key, coltype ct);
/** determine if a property has been registered changed */
bool is_registered_changed(std::string key, coltype ct);
/** determine if a property has been registered deleted */
bool is_registered_deleted(std::string key, coltype ct);
/** unregister new property */
void unregister_new(std::string key, coltype ct);
/** unregister changed property */
void unregister_change(std::string key, coltype ct);
/** unregister deleted property */
void unregister_delete(std::string key, coltype ct);
/** get all new properties */
void get_new(SarVector<std::string>& v, coltype ct);
/** get all changed properties */
void get_changed(SarVector<std::string>& v, coltype ct);
/** get all deleted properties */
void get_deleted(SarVector<std::string>& v, coltype ct);
/** clear all records */
void clear_registers();
/** print the names of all new/changed/deleted properties */
void dump_registers();
};
};
|
4bb2d5e22f316e622f6d59b7bdfb96e71709e3ad
|
17f9fe697ccce6abc662b7a170ab9777dd600f3f
|
/GameObject.hpp
|
56f2bf8211b17e026a84bf840c3e09a1d2f781c4
|
[] |
no_license
|
mackowiakw/SnakeGame
|
bbb936ddb2ea64dda7c4d71c9d2d4463de5809cf
|
a53fa9db8bf09df4b11f11571223106c89e15558
|
refs/heads/master
| 2020-09-27T03:51:49.086665
| 2020-09-08T21:40:27
| 2020-09-08T21:40:27
| 225,241,453
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 387
|
hpp
|
GameObject.hpp
|
#pragma once
#include <SFML\Graphics.hpp>
#include "Game.hpp"
namespace wm
{
// pure virtual generic GameObject class
// contains virtual function:
// --void draw(sf::RenderWindow&) = 0
// --sf::Vector2i getPosition() const = 0
//
class GameObject : protected Game
{
public:
virtual void draw(sf::RenderWindow& window) = 0;
virtual CordsType getPosition() const = 0;
};
}
|
7a226892e3e058bb5739fdd5313283098d025e00
|
54e7f9d751a353aa759c8b1f51de2e882da3a604
|
/singlelightningrod.h
|
1ed90929e3f395a7594d2c2c8e79076377f9f79e
|
[] |
no_license
|
dani1chumaev/lightningProtection
|
80c5aa913cd7c588138adc2ff342d2063bd40440
|
fef5a199412a352bc3e126f12b3e68bbb2005852
|
refs/heads/master
| 2023-04-27T12:58:26.595622
| 2020-12-26T11:15:14
| 2020-12-26T11:15:14
| 320,047,439
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,200
|
h
|
singlelightningrod.h
|
#ifndef SINGLELIGHTNINGROD_H
#define SINGLELIGHTNINGROD_H
class singleLightningRod
{
public:
singleLightningRod();
// [h] полная высота молниеотвода для зоны A (не болше 150 м) м
double fullHeightA (double hx, double Rx);
// [h] полная высота молниеотвода для зоны B (не болше 150 м) м
double fullHeightB (double hx, double Rx);
// [h0] высота защиты для зоны A м
double protectionZoneHeightA (double h);
// [h0] высота защиты для зоны B м
double protectionZoneHeightB (double h);
// [R0] граница защиты для зоны A м
double protectionZoneBoundaryA (double h);
// [R0] граница защиты для зоны B м
double protectionZoneBoundaryB (double h);
// [Rx] радиус зоны защиты на высоте hх для зоны A м
//double protectionZoneRadiusAtHeigthHxA (double h, double hx);
// [Rx] радиус зоны защиты на высоте hх для зоны B м
//double protectionZoneRadiusAtHeigthHxB (double h, double hx);
// [Rx] радиус зоны защиты на высоте hx м
/*
* Входные параметры для одиночного молниеотвода
*
* hx - высота защищаемого здания м
* L - длина здания м
* S - ширина здания м
* l - расстояние от стены здания до молниеотвода (не менее 4 м) м
*/
double hx {};
double L {};
double S {};
double l {};
/*
* Вычисляемые параметры для одиночного молниеотвода
*
* h - высота молниеотвода м
* Rx - радиус зоны защиты на высоте hх м
* R0 - граница зоны защиты на уровне земли м
* h0 - высота зоны защиты м
*/
// double h {};
// double Rx {};
// double h0 {};
// double R0 {};
};
#endif // SINGLELIGHTNINGROD_H
|
fdb4713d68f042ee282896b040603bce4d7f25ef
|
fa27992aedbc12c291f688de6d4ebdb8da6c59a7
|
/OJ/1028/1028.cpp
|
9d4df7fe3481fc8332b37dac4b882d9ff208ca42
|
[] |
no_license
|
mooooonlight/HelloWord
|
e1f3863d3184b6dc85184b0ba9b472e022071c66
|
414969a8bd049290d9a915afdb53203669a324c6
|
refs/heads/master
| 2020-09-25T11:59:45.307506
| 2017-09-28T02:17:06
| 2017-09-28T02:17:06
| 66,868,584
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,708
|
cpp
|
1028.cpp
|
#include<iostream>
#include<cmath>
#include<string>
#include<sstream>
#include<stack>
using namespace std;
typedef unsigned int uint32_t;
int main()
{
string cur_str = "http://www.acm.org/";
string line_data;
string cmd;
string real_data;
stringstream ss;
stack<string> forward_stack;
stack<string> backward_stack;
while(getline(cin,line_data))
{
ss.str("");
ss.clear();
//cout<<"line_data:"<<line_data<<endl;
ss.str(line_data);
ss>>cmd;
//cout<<cmd<<endl;
if(cmd == "QUIT")
{
//cout<<"exit";
return 0;
}
else if("VISIT" == cmd )
{
ss>>real_data;
backward_stack.push(cur_str);
while(!forward_stack.empty())
{
forward_stack.pop();
}
cur_str = real_data;
cout<<cur_str<<endl;
}
else if("BACK" == cmd)
{
if(backward_stack.empty())
{
cout<<"Ignored"<<endl;
continue;
}
forward_stack.push(cur_str);
cur_str = backward_stack.top();
backward_stack.pop();
cout<<cur_str<<endl;
}
else if("FORWARD" == cmd)
{
if(forward_stack.empty())
{
cout<<"Ignored"<<endl;
continue;
}
backward_stack.push(cur_str);
cur_str = forward_stack.top();
forward_stack.pop();
cout<<cur_str<<endl;
}
else
{
cout<<"error."<<endl;
}
}
return 0;
}
|
57695086be0797d129ce4ae343cfd4e5c1cbd3ce
|
3821e537c0e03e602ba4ac770dcce0d741d026a7
|
/LightOJ/1168(Wishing Snake).cpp
|
3b6b0d9b9a5107fa1768eed3df8293cf2de329f0
|
[] |
no_license
|
msyashik/CPPS
|
6766992e40c30f112d959b5c57e1af5487d885a9
|
ae163a3a75dade8bc51f566ae529ea4f9075db97
|
refs/heads/master
| 2023-07-13T00:08:32.465275
| 2021-08-22T02:41:23
| 2021-08-22T02:41:23
| 161,633,625
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,569
|
cpp
|
1168(Wishing Snake).cpp
|
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define IOS ios_base :: sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define endl '\n'
//SCC
vector<int>v[10005], rev[10005], sg[10005];
stack<int>s;
bool vis[10005];
int comp[10005], val = 0, flag = 0, total = 0;
void dfs(int node)
{
vis[node] = 1;
int len = v[node].size();
for(int i = 0; i < len; i++)
{
int child = v[node][i];
if(!vis[child]) dfs(child);
}
s.push(node);
}
//making components
void dfs_rev(int node)
{
vis[node] = 1;
comp[node] = val;
int len = rev[node].size();
for(int i = 0; i < len; i++)
{
int child = rev[node][i];
if(!vis[child]) dfs_rev(child);
}
}
//building super graph
void sg_dfs(int node)
{
vis[node] = 1;
int len = v[node].size();
for(int i = 0; i < len; i++)
{
int child = v[node][i];
if(!vis[child])
{
int c1 = comp[node];
int c2 = comp[child];
if(c1!=c2) sg[c1].push_back(c2);
sg_dfs(child);
}
else
{
int c1 = comp[node];
int c2 = comp[child];
if(c1 != c2) sg[c1].push_back(c2);
}
}
}
void last_dfs(int node)
{
if(flag == 1) return;
total++;
vis[node] = 1;
int len = sg[node].size();
if(len >= 2)
{
flag = 1;
return;
}
for(int i = 0; i < len; i++)
{
int child = sg[node][i];
if(!vis[child])
{
last_dfs(child);
}
}
}
int main()
{
int t, n, m;
scanf("%d", &t);
for(int kase= 1; kase <= t; kase++)
{
scanf("%d", &n);
map<int,int>mp;
val = 0, flag = 0, total = 0;
for(int per = 1; per <= n; per++)
{
scanf("%d", &m);
mp[0]++;
for(int i = 1; i <= m; i++)
{
int a,b;
scanf("%d %d", &a, &b);
v[a].push_back(b);
rev[b].push_back(a);
mp[a]++;
mp[b]++;
}
}
for(auto it : mp)
{
if(!vis[it.first]) dfs(it.first);
}
memset(vis, 0, sizeof(vis));
while(!s.empty())
{
if(!vis[s.top()])
{
val++;
dfs_rev(s.top());
}
s.pop();
}
memset(vis, 0, sizeof(vis));
for(auto it : mp)
{
if(!vis[it.first]) sg_dfs(it.first);
}
memset(vis, 0, sizeof(vis));
last_dfs(comp[0]);
memset(vis, 0, sizeof(vis));
if(total != val) flag = 1;
printf("Case %d: ", kase);
if(flag) printf("NO\n");
else printf("YES\n");
for(auto it : mp)
{
v[it.first].clear();
rev[it.first].clear();
sg[it.first].clear();
comp[it.first] = -1;
}
for(int i = 1; i <= val; i++)
{
sg[i].clear();
}
mp.clear();
}
return 0;
}
|
ee1a7656fb4902ec839c94f8002d9b2871da6d5e
|
4bcde03c391660a530221d58752544a427d3c224
|
/examples/MonteCarlo.cpp
|
7257073dba829ca19f4dd00f081f4e34676a2767
|
[] |
no_license
|
Zandry/ParallelSTL
|
f18ad6a0c65169b2d8fbec3257549b12f132607c
|
364c54d57b8bac53e53689f4af0e106a2c9ad62b
|
refs/heads/master
| 2021-01-11T11:17:02.165206
| 2016-02-18T17:01:58
| 2016-02-18T17:01:58
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,525
|
cpp
|
MonteCarlo.cpp
|
#include <vector>
#include <random>
#include <limits>
#include <iostream>
#include <chrono>
#include <experimental/algorithm>
#include <experimental/numeric>
using namespace std;
double test_pi() {
thread_local static random_device rd;
constexpr unsigned samples = 10000;
mt19937_64 gen(rd());
uniform_real_distribution<double> dis(0,1);
unsigned sum = 0;
for(unsigned i = 0; i < samples; ++i){
const double x = dis(gen), y = dis(gen);
double dist = sqrtf(x*x + y*y);
if(dist <= 1.0f)
sum++;
}
sum *= 4;
return static_cast<double>(sum)/static_cast<double>(samples);
}
template<typename T>
auto extimate_pi(T && policy)
-> std::chrono::microseconds
{
using namespace std::experimental;
constexpr unsigned samples = 10000;
vector<double> estimates(samples);
auto start = chrono::high_resolution_clock::now();
parallel::generate(policy, begin(estimates), end(estimates), test_pi);
auto pi = parallel::reduce(policy, begin(estimates), end(estimates)) / double{samples};
auto finish = chrono::high_resolution_clock::now();
cout << "pi = " << pi << endl;
return chrono::duration_cast<chrono::microseconds>(finish-start);
}
int main(){
using namespace std::experimental;
cout << "Using seq: " << endl;
auto time_seq = extimate_pi(parallel::seq);
cout << "seq took " << time_seq.count() << " us" << endl;
cout << "Using par: " << endl;
auto time_par = extimate_pi(parallel::par);
cout << "seq took " << time_par.count() << " us" << endl;
}
|
93fdc8b706be1e890905722098178f6cee056fea
|
2f2ece30e6314a830a6f4583a3f3ed59fa8354ff
|
/sim/missions/sim_ObjectiveDefend.cpp
|
fe5d1a991d02c87b20835b35567fe75002614298
|
[
"MIT"
] |
permissive
|
radarEnforced/fsg
|
fdffc5cbaba96557cf04667a31d4bcad04f8cc2b
|
7825785bbf46a367b3daf1beb32b727c58e85e46
|
refs/heads/master
| 2020-09-22T07:06:04.372723
| 2019-11-30T06:31:30
| 2019-11-30T06:31:30
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,938
|
cpp
|
sim_ObjectiveDefend.cpp
|
/****************************************************************************//*
* Copyright (C) 2019 Marek M. Cel
*
* 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 <sim/missions/sim_ObjectiveDefend.h>
#include <sim/entities/sim_Entities.h>
#include <sim/utils/sim_String.h>
////////////////////////////////////////////////////////////////////////////////
using namespace sim;
////////////////////////////////////////////////////////////////////////////////
ObjectiveDefend* ObjectiveDefend::read( const XmlNode &node )
{
ObjectiveDefend *objective = new ObjectiveDefend();
if ( node.isValid() )
{
std::string minimum = node.getAttribute( "minimum" );
if ( minimum.length() )
{
objective->m_minimum = String::toInt( minimum );
}
XmlNode unitNode = node.getFirstChildElement( "unit" );
while ( unitNode.isValid() )
{
std::string unitName = unitNode.getAttribute( "name" );
if ( unitName.length() > 0 )
{
Unit *unit = Entities::instance()->getUnitByName( unitName );
if ( unit )
{
objective->m_unitsId.push_back( unit->getId() );
}
}
else
{
//////////////////////////////////
if ( objective ) delete objective;
objective = 0;
//////////////////////////////////
return 0;
}
unitNode = unitNode.getNextSiblingElement( "unit" );
}
if ( objective->m_minimum > objective->m_unitsId.size() )
{
objective->m_minimum = objective->m_unitsId.size();
}
return objective;
}
if ( objective ) delete objective;
objective = 0;
return objective;
}
////////////////////////////////////////////////////////////////////////////////
ObjectiveDefend::ObjectiveDefend() {}
////////////////////////////////////////////////////////////////////////////////
ObjectiveDefend::~ObjectiveDefend() {}
////////////////////////////////////////////////////////////////////////////////
void ObjectiveDefend::update()
{
m_status = Success;
// faillure if unit destroyed
if ( m_unitsId.size() > 0 )
{
UnitsId::iterator it = m_unitsId.begin();
unsigned int count = 0;
while ( it != m_unitsId.end() )
{
Unit *unit = dynamic_cast< Unit* >( Entities::instance()->getEntityById( *it ) );
if ( unit )
{
if ( unit->getHP() > 0 )
{
count++;
}
}
++it;
}
if ( count < m_minimum )
{
m_status = Failure;
}
}
}
|
da8a6ea2274a4963b27e20627b982694e3a794e2
|
7223462dfdefd0b125a5d51d8a29200a00bd7bf2
|
/src/libcsg/topology.cc
|
70b7506eb872e8ca513ea79d3011ea6be5dfc1d5
|
[
"Apache-2.0",
"BSD-3-Clause"
] |
permissive
|
jinghu32/csg
|
64d186b208872ee5424f21008438b08534aab50b
|
05f7d2a2f41d9fb95f55a81a56ceda218687b8ef
|
refs/heads/master
| 2020-04-08T01:51:26.151149
| 2018-11-02T11:59:56
| 2018-11-02T11:59:56
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,743
|
cc
|
topology.cc
|
/*
* Copyright 2009-2011 The VOTCA Development Team (http://www.votca.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <votca/csg/topology.h>
#include <votca/csg/interaction.h>
#include <votca/tools/rangeparser.h>
#include <stdexcept>
namespace votca { namespace csg {
Topology::~Topology()
{
Cleanup();
if(_bc)
delete (_bc);
_bc = NULL;
}
void Topology::Cleanup()
{
// cleanup beads
{
BeadContainer::iterator i;
for(i=_beads.begin();i<_beads.end();++i)
delete *i;
_beads.clear();
}
// cleanup molecules
{
MoleculeContainer::iterator i;
for(i=_molecules.begin();i<_molecules.end();++i)
delete *i;
_molecules.clear();
}
// cleanup residues
{
ResidueContainer::iterator i;
for(i=_residues.begin();i<_residues.end();++i)
delete (*i);
_residues.clear();
}
// cleanup interactions
{
InteractionContainer::iterator i;
for(i=_interactions.begin();i<_interactions.end();++i)
delete (*i);
_interactions.clear();
}
// cleanup _bc object
if(_bc)
delete (_bc);
_bc = new OpenBox();
}
/// \todo implement checking, only used in xml topology reader
void Topology::CreateMoleculesByRange(string name, int first, int nbeads, int nmolecules)
{
Molecule *mol = CreateMolecule(name);
int beadcount=0;
int res_offset=0;
BeadContainer::iterator bead;
for(bead=_beads.begin(); bead!=_beads.end(); ++bead) {
//xml numbering starts with 1
if(--first > 0) continue;
//This is not 100% correct, but let's assume for now that the resnr do increase
if ( beadcount == 0 ) {
res_offset = (*bead)->getResnr();
}
stringstream bname;
bname << (*bead)->getResnr() - res_offset + 1 << ":" << getResidue((*bead)->getResnr())->getName() << ":" << (*bead)->getName();
mol->AddBead((*bead), bname.str());
if(++beadcount == nbeads) {
if(--nmolecules <= 0) break;
mol = CreateMolecule(name);
beadcount = 0;
}
}
}
/// \todo clean up CreateMoleculesByResidue!
void Topology::CreateMoleculesByResidue()
{
// first create a molecule for each residue
ResidueContainer::iterator res;
for(res=_residues.begin(); res!=_residues.end(); ++res) {
CreateMolecule((*res)->getName());
}
// add the beads to the corresponding molecules based on their resid
BeadContainer::iterator bead;
for(bead=_beads.begin(); bead!=_beads.end(); ++bead) {
//MoleculeByIndex((*bead)->getResnr())->AddBead((*bead)->getId(), (*bead)->getName());
MoleculeByIndex((*bead)->getResnr())->AddBead((*bead), string("1:TRI:") + (*bead)->getName());
}
/// \todo sort beads in molecules that all beads are stored in the same order. This is needed for the mapping!
}
void Topology::CreateOneBigMolecule(string name)
{
Molecule *mi = CreateMolecule(name);
BeadContainer::iterator bead;
for(bead=_beads.begin(); bead!=_beads.end(); ++bead) {
stringstream n("");
n << (*bead)->getResnr() +1 << ":" << _residues[(*bead)->getResnr()]->getName() << ":" << (*bead)->getName();
//cout << n.str() << endl;
mi->AddBead((*bead), n.str());
}
}
void Topology::Add(Topology *top)
{
BeadContainer::iterator bead;
ResidueContainer::iterator res;
MoleculeContainer::iterator mol;
int res0=ResidueCount();
for(bead=top->_beads.begin(); bead!=top->_beads.end(); ++bead) {
Bead *bi = *bead;
BeadType *type = GetOrCreateBeadType(bi->getType()->getName());
CreateBead(bi->getSymmetry(), bi->getName(), type, bi->getResnr()+res0, bi->getMass(), bi->getQ());
}
for(res=top->_residues.begin();res!=top->_residues.end(); ++res) {
CreateResidue((*res)->getName());
}
// \todo beadnames in molecules!!
for(mol=top->_molecules.begin();mol!=top->_molecules.end(); ++mol) {
Molecule *mi = CreateMolecule((*mol)->getName());
for(int i=0; i<mi->BeadCount(); i++) {
mi->AddBead(mi->getBead(i), "invalid");
}
}
}
void Topology::CopyTopologyData(Topology *top)
{
BeadContainer::iterator it_bead;
ResidueContainer::iterator it_res;
MoleculeContainer::iterator it_mol;
_bc->setBox(top->getBox());
_time = top->_time;
_step = top->_step;
// cleanup old data
Cleanup();
// copy all residues
for(it_res=top->_residues.begin();it_res!=top->_residues.end(); ++it_res) {
CreateResidue((*it_res)->getName());
}
// create all beads
for(it_bead=top->_beads.begin(); it_bead!=top->_beads.end(); ++it_bead) {
Bead *bi = *it_bead;
BeadType *type = GetOrCreateBeadType(bi->getType()->getName());
Bead *bn = CreateBead(bi->getSymmetry(), bi->getName(), type, bi->getResnr(), bi->getMass(), bi->getQ());
bn->setOptions(bi->Options());
}
// copy all molecules
for(it_mol=top->_molecules.begin();it_mol!=top->_molecules.end(); ++it_mol) {
Molecule *mi = CreateMolecule((*it_mol)->getName());
for(int i=0; i<(*it_mol)->BeadCount(); i++) {
int beadid = (*it_mol)->getBead(i)->getId();
mi->AddBead(_beads[beadid], (*it_mol)->getBeadName(i));
}
}
// TODO: copy interactions
//InteractionContainer::iterator it_ia;
//for(it_ia=top->_interaction.begin();it_ia=top->_interactions.end();++it_ia) {
//}
}
void Topology::RenameMolecules(string range, string name)
{
RangeParser rp;
RangeParser::iterator i;
rp.Parse(range);
for(i=rp.begin();i!=rp.end();++i) {
if((unsigned int)*i > _molecules.size())
throw runtime_error(string("RenameMolecules: num molecules smaller than"));
getMolecule(*i-1)->setName(name);
}
}
void Topology::RenameBeadType(string name, string newname)
{
BeadContainer::iterator bead;
for(bead=_beads.begin(); bead!=_beads.end(); ++bead) {
BeadType *type = GetOrCreateBeadType((*bead)->getType()->getName());
if (wildcmp(name.c_str(),(*bead)->getType()->getName().c_str())) {
type->setName(newname);
}
}
}
void Topology::SetBeadTypeMass(string name, double value)
{
BeadContainer::iterator bead;
for(bead=_beads.begin(); bead!=_beads.end(); ++bead) {
if (wildcmp(name.c_str(),(*bead)->getType()->getName().c_str())) {
(*bead)->setMass(value);
}
}
}
void Topology::CheckMoleculeNaming(void)
{
map<string,int> nbeads;
for(MoleculeContainer::iterator iter = _molecules.begin(); iter!=_molecules.end(); ++iter) {
map<string,int>::iterator entry = nbeads.find((*iter)->getName());
if(entry != nbeads.end()) {
if(entry->second != (*iter)->BeadCount())
throw runtime_error("There are molecules which have the same name but different number of bead "
"please check the section manual topology handling in the votca manual");
continue;
}
nbeads[(*iter)->getName()] = (*iter)->BeadCount();
}
}
void Topology::AddBondedInteraction(Interaction *ic)
{
map<string,int>::iterator iter;
iter = _interaction_groups.find(ic->getGroup());
if(iter!=_interaction_groups.end())
ic->setGroupId((*iter).second);
else {
int i= _interaction_groups.size();
_interaction_groups[ic->getGroup()] = i;
ic->setGroupId(i);
}
_interactions.push_back(ic);
_interactions_by_group[ic->getGroup()].push_back(ic);
}
std::list<Interaction *> Topology::InteractionsInGroup(const string &group)
{
map<string, list<Interaction*> >::iterator iter;
iter = _interactions_by_group.find(group);
if(iter == _interactions_by_group.end())
return list<Interaction *>();
return iter->second;
}
BeadType *Topology::GetOrCreateBeadType(string name)
{
map<string, int>::iterator iter;
iter = _beadtype_map.find(name);
if(iter == _beadtype_map.end()) {
BeadType *bt = new BeadType(this, _beadtypes.size(), name);
_beadtypes.push_back(bt);
_beadtype_map[name] = bt->getId();
return bt;
}
else {
return _beadtypes[(*iter).second];
}
return NULL;
}
vec Topology::BCShortestConnection(const vec &r_i, const vec &r_j) const
{
return _bc->BCShortestConnection(r_i, r_j);
}
vec Topology::getDist(int bead1, int bead2) const
{
return BCShortestConnection(
getBead(bead1)->getPos(),
getBead(bead2)->getPos());
}
double Topology::BoxVolume()
{
return _bc->BoxVolume();
}
void Topology::RebuildExclusions()
{
_exclusions.CreateExclusions(this);
}
BoundaryCondition::eBoxtype Topology::autoDetectBoxType(const matrix &box) {
// set the box type to OpenBox in case "box" is the zero matrix,
// to OrthorhombicBox in case "box" is a diagonal matrix,
// or to TriclinicBox otherwise
if(box.get(0,0)==0 && box.get(0,1)==0 && box.get(0,2)==0 &&
box.get(1,0)==0 && box.get(1,1)==0 && box.get(1,2)==0 &&
box.get(2,0)==0 && box.get(2,1)==0 && box.get(2,2)==0) {
//cout << "box open\n";
return BoundaryCondition::typeOpen;
}
else
if(box.get(0,1)==0 && box.get(0,2)==0 &&
box.get(1,0)==0 && box.get(1,2)==0 &&
box.get(2,0)==0 && box.get(2,1)==0) {
//cout << "box orth\n";
return BoundaryCondition::typeOrthorhombic;
}
else {
//cout << "box tric\n";
return BoundaryCondition::typeTriclinic;
}
return BoundaryCondition::typeOpen;
}
double Topology::ShortestBoxSize()
{
vec _box_a = getBox().getCol(0);
vec _box_b = getBox().getCol(1);
vec _box_c = getBox().getCol(2);
// create plane normals
vec _norm_a = _box_b ^ _box_c;
vec _norm_b = _box_c ^ _box_a;
vec _norm_c = _box_a ^ _box_b;
_norm_a.normalize();
_norm_b.normalize();
_norm_c.normalize();
double la = _box_a * _norm_a;
double lb = _box_b * _norm_b;
double lc = _box_c * _norm_c;
return min(la, min(lb, lc));
}
}}
|
85b100be7d446b99cff0bbd292a43542136260ba
|
01a40324185e2ea33f90b1e577d74f065470e7fa
|
/ZEngine/ZEngine/Extract.cpp
|
b3b29f665d17ceea490fba3942488a9c9f85f423
|
[] |
no_license
|
zhaobolin/PDF
|
945db1265f3c6f20b2b8bf24924567b0f6e9195b
|
108896d30ada5705ec11cb1fd29d1ca4de699c35
|
refs/heads/master
| 2020-04-28T16:29:50.945240
| 2019-05-21T11:00:37
| 2019-05-21T11:00:37
| 175,413,322
| 0
| 1
| null | null | null | null |
GB18030
|
C++
| false
| false
| 3,604
|
cpp
|
Extract.cpp
|
#include "Extract.h"
Extract::Extract(void)
{
}
Extract::~Extract(void)
{
}
void Extract::GetStructureFromPDF(char* input)
{
fz_context *ctx;
fz_document *doc;
fz_page *page;
fz_rect rect;
fz_matrix ctm;
fz_device* dev;
fz_pixmap *pix;
struct zblrouteset *getline=(struct zblrouteset *)malloc(sizeof(struct zblrouteset));
ctx=fz_new_context(NULL,NULL,FZ_STORE_UNLIMITED);//初始化context
doc= fz_open_document(ctx,input);//读取PDF文件并提取出其中信息放入fz_document类的结构体中
page=fz_load_page(doc,0);//加载页面内容
rect=fz_bound_page(doc,page);//获取页面的rectangle对象
ctm.a=1;
ctm.b=0;
ctm.c=0;
ctm.d=1;
ctm.e=0;
ctm.f=0;
pix=fz_new_pixmap(ctx,fz_find_device_colorspace(ctx,"DeviceRGB"),rect.x1-rect.x0,rect.y1-rect.y0);
fz_clear_pixmap_with_value(ctx,pix,0xFF);//将背景设置为白色
dev=fz_new_draw_device(ctx,pix);//创建绘图设备
fz_run_page(doc,page,dev,ctm,0);//将页面绘制到pixmap生成的绘图设备上
//提取数据
fz_return_line(getline);
/*
打印出结构体获取的内容
printf("\n路径个数:%d\n",getline->count);
for (int z=0;z<getline->count;z++)
{
printf("第%d号路径,路径类型%d,点数%d\n",z,getline->set[z].type,getline->set[z].countpoint);
printf("绘制方法:%d 线宽:%.2f\n",getline->set[z].drawingmethord,getline->set[z].linewidth);
printf("色彩空间:%d\n",getline->set[z].colorspace);
printf("颜色:%.3f %.3f %.3f \n",getline->set[z].color[0],getline->set[z].color[1],getline->set[z].color[2]);
for (int j=0;j<getline->set[z].countpoint;j++)
{
printf("%.2f %.2f %.2f %.2f %.2f %.2f %.0f\n",getline->set[z].points[j][0],getline->set[z].points[j][1],getline->set[z].points[j][2],getline->set[z].points[j][3],getline->set[z].points[j][4],getline->set[z].points[j][5],getline->set[z].points[j][6]);
}
}
*/
this->vectorset=new VectorSet(getline);
}
VectorSet* Extract::getvectorset()
{
return this->vectorset;
}
void Extract::CreateDocument(char* filepath)
{
VectorSet* vectorset;
int vectorcount,i,j,k;
ofstream fout;
fout.open(filepath);
vectorset=this->getvectorset();
vectorcount=vectorset->getcount();
//printf("总路径数量:%d\n",vectorcount);
fout<<vectorcount<<endl;
for (i=0;i<vectorcount;i++)
{
//printf("第%d号路径点的个数:%d\n",i,vectorset->getvectorset()[i]->getcountpoint());
fout<<vectorset->getvectorset()[i]->getcountpoint()<<endl;
//printf("路径类型:%d",vectorset->getvectorset()[i]->gettype());
fout<<vectorset->getvectorset()[i]->gettype()<<endl;
//printf("线宽:%f\n",vectorset->getvectorset()[i]->getlinewidth());
fout<<vectorset->getvectorset()[i]->getlinewidth()<<endl;
//printf("颜色空间:%d\n",vectorset->getvectorset()[i]->getcolorspace());
fout<<vectorset->getvectorset()[i]->getcolorspace()<<endl;
//printf("颜色:%.2f %.2f %.2f\n",vectorset->getvectorset()[i]->getcolor()[0],vectorset->getvectorset()[i]->getcolor()[1],vectorset->getvectorset()[i]->getcolor()[2]);
fout<<vectorset->getvectorset()[i]->getcolor()[0]<<" "<<vectorset->getvectorset()[i]->getcolor()[1]<<" "<<vectorset->getvectorset()[i]->getcolor()[2]<<endl;
//printf("绘制方法:%d\n",vectorset->getvectorset()[i]->getdrawingmethord());
fout<<vectorset->getvectorset()[i]->getdrawingmethord()<<endl;
for(j=0;j<vectorset->getvectorset()[i]->getcountpoint();j++)
{
for(k=0;k<7;k++)
{
//printf("%.2f ",vectorset->getvectorset()[i]->getpoints()[j][k]);
fout<<vectorset->getvectorset()[i]->getpoints()[j][k]<<" ";
}
//printf("\n");
fout<<endl;
}
}
fout.close();
}
|
a1e742dda595611d535a9c69b9332eef7b859014
|
3d74f759ee48d383aa82eeff0a55864a93a001ba
|
/shell/common/display_manager.h
|
ae3e9d0a5607eac7f8992ef3c0f85249893c1050
|
[
"BSD-3-Clause"
] |
permissive
|
flutter/engine
|
78be5418a9b2f7730dda9ca9fcb25b7055f3da85
|
902ece7f89d7730cc69f35e098b223cbbf4e25f1
|
refs/heads/main
| 2023-09-04T06:12:34.462953
| 2023-09-04T05:33:32
| 2023-09-04T05:33:32
| 39,211,337
| 7,090
| 6,862
|
BSD-3-Clause
| 2023-09-14T21:58:17
| 2015-07-16T17:39:56
|
C++
|
UTF-8
|
C++
| false
| false
| 1,189
|
h
|
display_manager.h
|
// Copyright 2013 The Flutter 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 FLUTTER_SHELL_COMMON_DISPLAY_MANAGER_H_
#define FLUTTER_SHELL_COMMON_DISPLAY_MANAGER_H_
#include <mutex>
#include <vector>
#include "flutter/shell/common/display.h"
namespace flutter {
/// Manages lifecycle of the connected displays. This class is thread-safe.
class DisplayManager {
public:
DisplayManager();
~DisplayManager();
/// Returns the display refresh rate of the main display. In cases where there
/// is only one display connected, it will return that. We do not yet support
/// cases where there are multiple displays.
///
/// When there are no registered displays, it returns
/// `kUnknownDisplayRefreshRate`.
double GetMainDisplayRefreshRate() const;
/// Handles the display updates.
void HandleDisplayUpdates(std::vector<std::unique_ptr<Display>> displays);
private:
/// Guards `displays_` vector.
mutable std::mutex displays_mutex_;
std::vector<std::unique_ptr<Display>> displays_;
};
} // namespace flutter
#endif // FLUTTER_SHELL_COMMON_DISPLAY_MANAGER_H_
|
aded1af301d806d35b17b676fcb1ec908e8f9f1d
|
45716a35c9fa862145b20e68b47a3187bbfbfb81
|
/src/pks/flow/overland_pressure/overland_pressure_water_content_evaluator.cc
|
759c3697b2077b4d52aa3a4b29248ec9af44b3e7
|
[
"BSD-3-Clause"
] |
permissive
|
ddwivedi08/ats
|
3c5f3e69797ddcd07110a4c80c47581034c28a2f
|
932aba910b977e86121942cd24f2059f0b6bee65
|
refs/heads/master
| 2021-01-19T14:53:40.104447
| 2017-04-06T01:16:22
| 2017-04-06T01:16:22
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,865
|
cc
|
overland_pressure_water_content_evaluator.cc
|
/* -*- mode: c++; c-default-style: "google"; indent-tabs-mode: nil -*- */
/*
Evaluator for determining height( rho, head )
Authors: Ethan Coon (ecoon@lanl.gov)
*/
#include "overland_pressure_water_content_evaluator.hh"
namespace Amanzi {
namespace Flow {
namespace FlowRelations {
OverlandPressureWaterContentEvaluator::OverlandPressureWaterContentEvaluator(Teuchos::ParameterList& plist) :
SecondaryVariableFieldEvaluator(plist) {
M_ = plist_.get<double>("molar mass", 0.0180153);
bar_ = plist_.get<bool>("water content bar", false);
rollover_ = plist_.get<double>("water content rollover", 0.);
if (my_key_.empty()) {
my_key_ = "surface-water_content";
if (bar_) my_key_ += std::string("_bar");
my_key_ = plist_.get<std::string>("water content key", my_key_);
}
// my dependencies
pres_key_ = plist_.get<std::string>("pressure key", "surface-pressure");
dependencies_.insert(pres_key_);
// dependencies_.insert(std::string("surface-cell_volume"));
}
OverlandPressureWaterContentEvaluator::OverlandPressureWaterContentEvaluator(const OverlandPressureWaterContentEvaluator& other) :
SecondaryVariableFieldEvaluator(other),
pres_key_(other.pres_key_),
M_(other.M_),
bar_(other.bar_),
rollover_(other.rollover_)
{}
Teuchos::RCP<FieldEvaluator>
OverlandPressureWaterContentEvaluator::Clone() const {
return Teuchos::rcp(new OverlandPressureWaterContentEvaluator(*this));
}
void OverlandPressureWaterContentEvaluator::EvaluateField_(const Teuchos::Ptr<State>& S,
const Teuchos::Ptr<CompositeVector>& result) {
Epetra_MultiVector& res = *result->ViewComponent("cell",false);
const Epetra_MultiVector& pres = *S->GetFieldData(pres_key_)
->ViewComponent("cell",false);
const Epetra_MultiVector& cv = *S->GetFieldData("surface-cell_volume")
->ViewComponent("cell",false);
const double& p_atm = *S->GetScalarData("atmospheric_pressure");
const Epetra_Vector& gravity = *S->GetConstantVectorData("gravity");
double gz = -gravity[2]; // check this
int ncells = res.MyLength();
if (bar_) {
for (int c=0; c!=ncells; ++c) {
res[0][c] = cv[0][c] * (pres[0][c] - p_atm) / (gz * M_);
}
} else if (rollover_ > 0.) {
for (int c=0; c!=ncells; ++c) {
double dp = pres[0][c] - p_atm;
double dp_eff = dp < 0. ? 0. :
dp < rollover_ ?
dp*dp/(2*rollover_) :
dp - rollover_/2.;
res[0][c] = cv[0][c] * dp_eff / (gz * M_);
}
} else {
for (int c=0; c!=ncells; ++c) {
res[0][c] = pres[0][c] < p_atm ? 0. :
cv[0][c] * (pres[0][c] - p_atm) / (gz * M_);
}
}
}
void OverlandPressureWaterContentEvaluator::EvaluateFieldPartialDerivative_(const Teuchos::Ptr<State>& S,
Key wrt_key, const Teuchos::Ptr<CompositeVector>& result) {
ASSERT(wrt_key == pres_key_);
Epetra_MultiVector& res = *result->ViewComponent("cell",false);
const Epetra_MultiVector& pres = *S->GetFieldData(pres_key_)
->ViewComponent("cell",false);
const Epetra_MultiVector& cv = *S->GetFieldData("surface-cell_volume")
->ViewComponent("cell",false);
const double& p_atm = *S->GetScalarData("atmospheric_pressure");
const Epetra_Vector& gravity = *S->GetConstantVectorData("gravity");
double gz = -gravity[2]; // check this
int ncells = res.MyLength();
if (bar_) {
for (int c=0; c!=ncells; ++c) {
res[0][c] = cv[0][c] / (gz * M_);
}
} else if (rollover_ > 0.) {
for (int c=0; c!=ncells; ++c) {
double dp = pres[0][c] - p_atm;
double ddp_eff = dp < 0. ? 0. :
dp < rollover_ ? dp/rollover_ : 1.;
res[0][c] = cv[0][c] * ddp_eff / (gz * M_);
}
} else {
for (int c=0; c!=ncells; ++c) {
res[0][c] = pres[0][c] < p_atm ? 0. :
cv[0][c] / (gz * M_);
}
}
}
} //namespace
} //namespace
} //namespace
|
6e02d3544b8fec456633389f905de2792324456b
|
a0ad3fdf6600002200210f45fcbefab7a232ba70
|
/tests/test.cc
|
4c367aa69d6a1a593748fda5cbbf699bba055fe9
|
[] |
no_license
|
Noyce765103/chaos
|
e7cdad8fb06847829e03bd07aba3fb002d596191
|
5caa0766f4d5d54157fe0adbc5170ba681c4296b
|
refs/heads/master
| 2023-02-19T14:36:56.508327
| 2021-01-25T10:17:32
| 2021-01-25T10:17:32
| 332,372,610
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 558
|
cc
|
test.cc
|
#include <iostream>
#include "../chaos/log.h"
#include "../chaos/util.h"
int main(int argc, char** argv){
chaos::Logger::ptr logger(new chaos::Logger);
logger->addAppender(chaos::LogAppender::ptr(new chaos::StdoutLogAppender));
//chaos::LogEvent::ptr event(new chaos::LogEvent(logger, logger->getLevel(), __FILE__, __LINE__, 0, chaos::GetThreadId(), chaos::GetFiberId(), time(0)));
//logger->log(chaos::LogLevel::DEBUG, event);
CHAOS_LOG_INFO(logger) << "test macro";
CHAOS_LOG_ERROR(logger) << "test macro error";
return 0;
}
|
441e63262b7a2cfd49ea2a828af9677a720b0fbf
|
04d6b4e47a104c63b014fe726c576a1e06488696
|
/old/DesignDyn/femlib/include/Timer.hpp
|
090d3dfb392cd5c5295aca3018d3c33a987282ec
|
[] |
no_license
|
desaic/Thesis
|
6c2c001bbaa03096491ad5e2d416988cfd044502
|
014f5bb25359ab4d59f589fb3805d65fd155af18
|
refs/heads/master
| 2021-09-11T16:48:52.758386
| 2018-04-09T21:43:24
| 2018-04-09T21:43:24
| 10,670,588
| 7
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 261
|
hpp
|
Timer.hpp
|
#ifndef TIMER_HPP
#define TIMER_HPP
#include <ctime>
class Timer
{
public:
Timer();
void start();
///@return -1 if overflow happened
int end();
float getSeconds();
float getMilliseconds();
clock_t getClocks();
private:
clock_t t0, t1;
};
#endif
|
4dbc87a2378413584319e551ed7946ea691fef0a
|
da84991636b667bb4dc9990e662b776126159eff
|
/John Conway's Life/MySDLFunctions.h
|
e133abc1acc3ca025f19b06b26c8a83ad3c1c5f8
|
[] |
no_license
|
malstad/strogconwayslife
|
8884abf04d392ed781b517bbedeb5631dc6333e7
|
6e1a7e74856ee80d3ad4de95f728938e3a0fc562
|
refs/heads/master
| 2020-12-24T15:58:15.374592
| 2010-12-10T21:10:10
| 2010-12-10T21:10:10
| 32,192,090
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 351
|
h
|
MySDLFunctions.h
|
#ifndef MYSDLFUNCTIONS_H
#define MYSDLFUNCTIONS_H
#include <iostream>
#include "SDL.h"
#include "SDL_image.h"
bool initSDL();
SDL_Surface* loadImage(std::string sFileName, SDL_Color* key);
SDL_Surface* loadFile(std::string fileName);
void applySurface(int x, int y, SDL_Surface* source, SDL_Surface* destination, SDL_Rect* clip);
#endif
|
f920e199e2dabb540271037d3846d9a63f48d073
|
6e0bba1e526026505698c078d6a5e48395552b4e
|
/include/exceptions/IllegalStateException.h
|
b934721f78efd1e63eb7ad44a444731ba4f56d15
|
[] |
no_license
|
swbrenneis/CryptoKitty_macos
|
1731c4ebd9cac4d4ced37029c9af98582203b0eb
|
6552f97c9bee40189d4e34b18d52b2b4756a3b1b
|
refs/heads/master
| 2021-01-21T18:49:56.578170
| 2017-07-17T15:13:15
| 2017-07-17T15:13:15
| 92,084,898
| 2
| 1
| null | 2020-05-27T20:19:01
| 2017-05-22T18:15:23
|
C++
|
UTF-8
|
C++
| false
| false
| 607
|
h
|
IllegalStateException.h
|
#ifndef ILLEGALSTATEEXCEPTION_H_INCLUDED
#define ILLEGALSTATEEXCEPTION_H_INCLUDED
#include "Exception.h"
namespace CK {
class IllegalStateException : public Exception {
protected:
IllegalStateException() {}
public:
IllegalStateException(const std::string& msg) : Exception(msg) {}
IllegalStateException(const IllegalStateException& other)
: Exception(other) {}
private:
IllegalStateException& operator= (const IllegalStateException& other);
public:
~IllegalStateException() {}
};
}
#endif // ILLEGALSTATEEXCEPTION_H_INCLUDED
|
2241c3f93dcf44a68b1507b47c6a0819f57cb671
|
f0edb459c9cb293eaaabd679303a2234a640f3f8
|
/server/cpp/ChessGameManager.h
|
992564d5b6ebda1388369d3deaf3deb7300820fe
|
[] |
no_license
|
arasmussen/chess
|
ae4bd8b70b521ff3d76d3ee8baca6b7bcb43499f
|
f22875f412e38dc4ca90e2bd172d2f8c26518c71
|
refs/heads/master
| 2020-06-09T02:16:19.970125
| 2013-02-03T03:08:47
| 2013-02-03T03:15:50
| 5,801,207
| 0
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 443
|
h
|
ChessGameManager.h
|
#ifndef __CHESSGAME_MANAGER_H_
#define __CHESSGAME_MANAGER_H_
#include <vector>
#include <pthread.h>
#include <string>
using namespace std;
class ChessGame;
class ChessGameManager {
public:
ChessGameManager();
~ChessGameManager();
void startGame(const string & whiteAlgorithm,const string& blackAlgorithm);
void finish();
private:
vector<ChessGame *> activeGames;
vector<pthread_t *> activeThreads;
};
#endif
|
e279bee16e945e6a033ce7bd81fc251a610cc399
|
21c0a8588978cf4ecc31d827d4e5b778401f9eee
|
/uva/471.cpp
|
cc5dd82cfffab2594f55daa5d37c2b260117d263
|
[
"MIT"
] |
permissive
|
cosmicray001/Online_judge_Solutions
|
c082faa9cc8c9448fa7be8504a150a822d0d5b8a
|
5dc6f90d3848eb192e6edea8e8c731f41a1761dd
|
refs/heads/master
| 2022-03-01T12:35:28.985743
| 2022-02-07T10:29:16
| 2022-02-07T10:29:16
| 116,611,495
| 3
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 817
|
cpp
|
471.cpp
|
#include <bits/stdc++.h>
#define ll long long int
using namespace std;
bool f;
bool fnc(ll a, ll b){
int arr[12];
for(int i = 0; i < 12; arr[i] = 0, i++);
ll temp = a;
for(; temp > 0; temp /= 10){
int re = (int)(temp % 10);
arr[re]++;
if(arr[re] > 1) return false;
}
for(int i = 0; i < 12; arr[i] = 0, i++);
temp = b;
for(; temp > 0; temp /= 10){
int re = (int)(temp % 10);
arr[re]++;
if(arr[re] > 1) return false;
}
return true;
}
int main(){
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
ll n;
int t;
for(scanf("%d", &t); t--; ){
scanf("%lld", &n);
f = true;
for(ll i = 1; i * n < 9999999999 && f; i++){
if(fnc(i, i * n)) printf("%lld / %lld = %lld\n", n * i, i, n);
}
if(t) printf("\n");
}
return 0;
}
|
37fe244fcbb1d0f343e214dad388970d8bc2036a
|
6316b746cd04ad9651f7a6196e6ec6fabca84d62
|
/BaseCompiled/test_original.cpp
|
8c0fa41eec25f97194ca884f1f1eb2d5484ed8f6
|
[] |
no_license
|
kyriegorrin/TFG_Pi
|
5a857a8e37fade75c7fe5f57a27c620752b599a3
|
a995b4108f624bed736979c07ef40e539e471061
|
refs/heads/master
| 2020-05-06T14:01:18.298062
| 2019-09-22T15:47:08
| 2019-09-22T15:47:08
| 180,168,875
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,187
|
cpp
|
test_original.cpp
|
#include "OpenNI.h"
#include <iostream>
#include <fstream>
#include <cstdint>
#include <fstream>
using namespace openni;
int main(){
char buffer[320];
for (int i = 0; i < 320; ++i) buffer[i] = '*';
//......................INICIALITZAR...................//
//Inicialitzem dispositiu
Status rc = OpenNI::initialize();
if(rc != STATUS_OK) std::cout << "Error d'inicialitzacio\n\n" << OpenNI::getExtendedError();
else std::cout << "Inicialitzat correctament\n\n";
//Obrim dispositiu
Device device;
rc = device.open(ANY_DEVICE);
if(rc != STATUS_OK) std::cout << "Error obrint dispositiu\n\n" << OpenNI::getExtendedError();
else std::cout << "Device obert correctament\n\n";
//Creem video stream de profunditat
VideoStream depth;
if(device.getSensorInfo(SENSOR_DEPTH) != NULL){
rc = depth.create(device, SENSOR_DEPTH);
if(rc != STATUS_OK) std::cout << "No es pot crear el stream de profunditat\n\n" << OpenNI::getExtendedError();
else std::cout << "Stream de profunditat creat\n\n";
}
//Creem video stream d'imatge
VideoStream image;
if(device.getSensorInfo(SENSOR_COLOR) != NULL){
rc = image.create(device, SENSOR_COLOR);
if(rc != STATUS_OK) std::cout << "No es pot crear el stream d'imatge\n\n" << OpenNI::getExtendedError();
else std::cout << "Stream d'imatge creat\n\n";
}
//Comencem streams
rc = depth.start();
if(rc != STATUS_OK) std::cout << "No es pot començar el stream de profunditat\n\n" << OpenNI::getExtendedError();
else std::cout << "Comencem stream de profunditat\n\n";
rc = image.start();
if(rc != STATUS_OK) std::cout << "No es pot començar el stream d'imatge\n\n" << OpenNI::getExtendedError();
else std::cout << "Comencem stream d'imatge\n\n";
//......................FRAME PROCESSING...................//
//Capturem un sol frame d'informació 3D i imatge
VideoFrameRef frame, frameImage;
rc = depth.readFrame(&frame);
if(rc != STATUS_OK) std::cout << "No es pot fer la lectura del frame de profunditat\n\n" << OpenNI::getExtendedError();
else std::cout << "Frame de profunditat capturat\n\n";
rc = image.readFrame(&frameImage);
if(rc != STATUS_OK) std::cout << "No es pot fer la lectura del frame d'imatge\n\n" << OpenNI::getExtendedError();
else std::cout << "Frame d'imatge capturat\n\n";
//Mirem característiques del frame i càmera
int height, width, sizeInBytes, stride;
SensorType sensorType;
height = frame.getHeight();
width = frame.getWidth();
sizeInBytes = frame.getDataSize();
stride = frame.getStrideInBytes();
sensorType = frame.getSensorType();
std::cout << "-------CARACTERÍSTIQUES DEL FRAME DE PROFUNDITAT--------\n";
if(sensorType == SENSOR_IR) std::cout << "Tipus de sensor: Sensor IR\n";
else if(sensorType == SENSOR_COLOR) std::cout << "Tipus de sensor: Sensor de color\n";
else std::cout << "Tipus de sensor: Sensor de profunditat\n";
std::cout << "Altura: " << height << " pixels\n";
std::cout << "Amplada: " << width << " pixels\n";
std::cout << "Tamany del frame: " << sizeInBytes << " bytes\n";
std::cout << "Tamany del stride (fila): " << stride << " bytes\n";
std::cout << "Tamany de l'element: " << stride / width << " bytes\n";
std::cout << "--------------------------------------------------------\n\n";
height = frameImage.getHeight();
width = frameImage.getWidth();
sizeInBytes = frameImage.getDataSize();
stride = frameImage.getStrideInBytes();
sensorType = frameImage.getSensorType();
std::cout << "-------CARACTERÍSTIQUES DEL FRAME D'IMATGE--------------\n";
if(sensorType == SENSOR_IR) std::cout << "Tipus de sensor: Sensor IR\n";
else if(sensorType == SENSOR_COLOR) std::cout << "Tipus de sensor: Sensor de color\n";
else std::cout << "Tipus de sensor: Sensor de profunditat\n";
std::cout << "Altura: " << height << " pixels\n";
std::cout << "Amplada: " << width << " pixels\n";
std::cout << "Tamany del frame: " << sizeInBytes << " bytes\n";
std::cout << "Tamany del stride (fila): " << stride << " bytes\n";
std::cout << "Tamany de l'element: " << stride / width << " bytes\n";
std::cout << "--------------------------------------------------------\n\n";
//Obtenim matriu d'elements i la guardem en un format CSV
//Les dades són de 2 bytes, si fos un altre s'ha dutilitzar el uintX_t equivalen
uint16_t* dades = (uint16_t*)frame.getData();
std::ofstream file;
file.open("frame.csv");
for(int i = 0; i < height*width; ++i){
if((i % width) == (width-1)) file << dades[i] << "\n";
else file << dades[i] << ",";
}
file.close();
//......................SHUTDOWN...................//
//Tanquem dispositius i fem shutdown
std::cout << "Fent release del frame de profunditat\n\n";
frame.release();
std::cout << "Fent release del frame d'imatge\n\n";
frameImage.release();
std::cout << "Parant stream de profunditat\n\n";
depth.stop();
std::cout << "Parant stream d'imatge\n\n";
image.stop();
std::cout << "Eliminant stream object de profunditat\n\n";
depth.destroy();
std::cout << "Eliminant stream object d'imatge\n\n";
image.destroy();
std::cout << "Tancant dispositiu\n\n";
device.close();
std::cout << "Fent shutdown\n\n";
OpenNI::shutdown();
std::cout << "FINALITZAT\n\n";
return 0;
}
|
e64f8387d17dd3bb1d870ecefa05bed86613506b
|
0cc6f958f3b1562002edf57d7f5e308437248a7d
|
/src/game/entity/queen.cpp
|
d741e11289d062a88e4ccdfd49d5ddfb477946fe
|
[
"MIT"
] |
permissive
|
asunan9sha/chess
|
2cde158c356f4154981ef39739e3b53ca33651f9
|
8851b2d8b7f05e2e96eea67d8dc05cf31f8bd283
|
refs/heads/main
| 2023-03-15T16:57:45.881879
| 2021-03-27T10:25:38
| 2021-03-27T10:25:38
| 269,222,710
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,819
|
cpp
|
queen.cpp
|
#include "queen.hpp"
Queen::Queen(PieceType type)
: Piece(type, type == PieceType::whiteQueen ? sf::IntRect(200, 0, 200, 200) : sf::IntRect(200, 200, 200, 200)) {
isWhite_ = type == PieceType::whiteQueen;
}
std::vector<vec2> &Queen::getPossibleMoves() {
possibleMoves_.clear();
const float spacing = 100.0f;
float tempX = getPosition().x;
float tempY = getPosition().y;
while (tempX + spacing <= 700 && tempY + spacing <= 700) {
tempX += spacing;
tempY += spacing;
possibleMoves_.emplace_back(tempX, tempY);
}
tempX = getPosition().x;
tempY = getPosition().y;
while (tempX - spacing >= 0 && tempY - spacing >= 0) {
tempX -= spacing;
tempY -= spacing;
possibleMoves_.emplace_back(tempX, tempY);
}
tempX = getPosition().x;
tempY = getPosition().y;
while (tempX + spacing <= 700 && tempY - spacing >= 0) {
tempX += spacing;
tempY -= spacing;
possibleMoves_.emplace_back(tempX, tempY);
}
tempX = getPosition().x;
tempY = getPosition().y;
while (tempX - spacing >= 0 && tempY + spacing <= 700) {
tempX -= spacing;
tempY += spacing;
possibleMoves_.emplace_back(tempX, tempY);
}
const float x = getPosition().x;
const float y = getPosition().y;
float tempPos = getPosition().x;
while (tempPos + spacing <= 700){
tempPos+= spacing;
possibleMoves_.emplace_back(tempPos, y);
}
tempPos = getPosition().x;
while (tempPos - spacing >= 0){
tempPos-= spacing;
possibleMoves_.emplace_back(tempPos, y);
}
tempPos = getPosition().y;
while (tempPos + spacing <= 700){
tempPos+= spacing;
possibleMoves_.emplace_back(x, tempPos);
}
tempPos = getPosition().y;
while (tempPos - spacing >= 0){
tempPos-= spacing;
possibleMoves_.emplace_back(x, tempPos);
}
return possibleMoves_;
}
|
005d5ea61fc179e233181a66a537fd61c37e1c6e
|
000c3366a24f70d89d00d4c6331cda4e5ec9e95d
|
/include/Knight.h
|
4fb7e90e2dd470a206bbcb8158fcf1c916c01ac3
|
[] |
no_license
|
mikelambucki/chess
|
a57918bfd93b02e3773845d25a1bc5c51b3719b4
|
e82edd2de06ec9a5a1ed1e9203298adb14afa211
|
refs/heads/master
| 2022-11-06T20:23:24.315063
| 2020-06-29T16:58:02
| 2020-06-29T16:58:02
| 269,805,378
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 206
|
h
|
Knight.h
|
#ifndef KNIGHT_H
#define KNIGHT_H
#include "gamePiece.h"
class Knight : public gamePiece {
public:
Knight();
Knight(int x, int y);
virtual void move(int x, int y);
};
#endif
|
a45d4b0e0887cfcc59e9498db577ef1c4a7fdd50
|
994f30bdc35abf49ed9ba2e5b7ea99f31944e5c4
|
/sub.cpp
|
f1f5ced80e95834984709012bcead2672abcb0e5
|
[] |
no_license
|
dharmikpopat/SubArray
|
a4cf0410299c5f009817513e32652a83a519e45a
|
330cd40bf4fa2f7529cc07595b919298c80b8cda
|
refs/heads/master
| 2020-03-25T05:12:09.061038
| 2018-08-03T14:21:35
| 2018-08-03T14:21:35
| 143,434,763
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 441
|
cpp
|
sub.cpp
|
#include<stdio.h>
#include<iostream>
using namespace std;
int main(){
int a[]={1,2,3,4,5};
int s=sizeof(a);
int len=s/4;
int temp=len;
int x=0,times=0;
for(int i=0;i<=temp;i++){
if(x>=temp-1){
break;
}
else{
int j=0;
while(j<=i){
if (times==len && len>=0){
times=0;
len=len-1;
x++;
i=0;
}
printf("%d",a[j+x]);
j++;
}
times++;
printf("\n");
}
}
}
|
17cf2f4817d7a8a1b451298a791ad9d06f710629
|
360036b1009b24aff2524928f01910e166d96ba0
|
/cpp/prac2/main.cpp
|
2ea2715dc15f582fd41069814086d307a6ea47dc
|
[] |
no_license
|
rbkn99/itmo-code
|
46f560e886330df8bb059e5eea040305affd5fe1
|
15b96aae37333b47474af042292a2dcc77ac77f7
|
refs/heads/master
| 2021-04-15T16:36:54.140346
| 2018-09-29T12:25:52
| 2018-09-29T12:25:52
| 126,409,446
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,087
|
cpp
|
main.cpp
|
#include <iostream>
#include "vector.h"
#include <cassert>
typedef vector<int> vi;
std::string base_str = "7 7 7 ";
//test constructors
void test1() {
vi v1((size_t)3, 7);
assert(base_str == v1.to_str());
vi v2(v1);
assert(base_str == v2.to_str());
vi v3 = v1;
assert(base_str == v1.to_str());
}
//test basic methods such as push/pop etc
void test2() {
vi v1((size_t)3, 7);
v1.push_back(1);
v1.push_back(2);
assert(base_str + "1 2 " == v1.to_str());
v1.pop_back();
assert(base_str + "1 " == v1.to_str());
assert(v1.back() == 1);
assert(!v1.empty());
v1.pop_back();
v1.pop_back();
v1.pop_back();
v1.pop_back();
assert(v1.empty());
vi v2((size_t)3, 7);
v2.push_back(6);
assert(v2.size() == 4);
}
//reserve, resize etc
void test3() {
vi v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
assert(v.capacity() == 4);
v.reserve(1000);
assert(v.capacity() >= 1000);
v.clear();
assert(v.to_str().empty());
v.resize(5);
assert(v.to_str() == "0 0 0 0 0 ");
v.resize(1, -1);
assert(v.to_str() == "0 ");
v.resize(7, -1);
assert(v.to_str() == "0 -1 -1 -1 -1 -1 -1 ");
v.assign((size_t)5, 2);
assert(v.to_str() == "2 2 2 2 2 ");
}
//insert & erase
void test4() {
vi v;
v.insert(v.begin(), 4);
v.insert(v.begin(), 3);
v.insert(v.begin(), 2);
v.insert(v.begin(), 1);
assert(v.to_str() == "1 2 3 4 ");
v.erase(v.end());
assert(v.to_str() == "1 2 3 ");
v.erase(v.begin() + 1);
assert(v.to_str() == "1 3 ");
}
//test iterators
void test5() {
std::vector<int> sv;
sv.push_back(11);
sv.push_back(31);
sv.push_back(21);
vi v(sv.begin(), sv.end());
assert(v.to_str() == "11 31 21 ");
std::vector<int> sv1;
sv1.push_back(111);
sv1.push_back(311);
sv1.push_back(211);
vi v1;
v1.assign(sv1.begin(), sv1.end());
assert(v1.to_str() == "111 311 211 ");
}
int main() {
test1();
test2();
test3();
test4();
test5();
return 0;
}
|
67341d0ab32d6f1572ac896909d23343d29e22ca
|
66e6005fa69249ccbe66016610ade84f04a5b2f2
|
/99-Recover-Binary-Search-Tree.cpp
|
704d6f0b6162b099ae1ab36a8a098aed03164e36
|
[] |
no_license
|
Markz2z/Fuck-the-Leetcode
|
23479d72c928a19352378405f9026e2ca49f2ef0
|
bba3ed8c6f310b44500fcbb876d01c56e89292d3
|
refs/heads/master
| 2020-04-03T20:07:00.386124
| 2018-03-23T16:28:18
| 2018-03-23T16:28:18
| 42,315,226
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 957
|
cpp
|
99-Recover-Binary-Search-Tree.cpp
|
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
private TreeNode wrongNode1 = null;
private TreeNode wrongNode2 = null;
private TreeNode prevNode = null;
public void inorderTraverse(TreeNode root) {
if (root != null) {
inorderTraverse(root.left);
if (prevNode != null && prevNode.val > root.val) {
wrongNode1 = wrongNode1 == null ? prevNode : wrongNode1;
wrongNode2 = root;
}
prevNode = root;
inorderTraverse(root.right);
}
}
public void recoverTree(TreeNode root) {
inorderTraverse(root);
if (wrongNode1!=null) {
int tmp = wrongNode1.val;
wrongNode1.val = wrongNode2.val;
wrongNode2.val = tmp;
}
}
}
|
90e3c8f50ed4f73d274612532fceeff5a384eb5a
|
3d611b07ae7156a18ec332a7a4d48e63021b125e
|
/11228_Transportation_system.cpp
|
6ba668299bb2a13b412840bce95771c7dc5ec37d
|
[] |
no_license
|
mmhriyad/uva
|
33c66b7e9362a55e67988652d9f4bf02639a9226
|
15ff361413e28e06c362910e2b7db4febccfe1b1
|
refs/heads/master
| 2021-01-23T14:51:09.685055
| 2017-06-16T08:04:15
| 2017-06-16T08:04:15
| 42,101,253
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,807
|
cpp
|
11228_Transportation_system.cpp
|
#include "stdio.h"
#include "math.h"
#define MAX 1005
#define MAXVAL 200000
int n, r, states;
int points[MAX][2], taken_following_nodes[MAX];
double graph[MAX][MAX], min_edges[MAX];
double total_rail, total_roads;
bool taken[MAX];
int g_parent = -1, g_child = -1 ;
double g_min = MAXVAL;
void update_nodes(int parent, int child)
{
bool found_min = false;
int min_node = -1, i, j;
double min = MAXVAL;
if(parent >= 0)
{
i = parent;
min = MAXVAL;
min_node = -1;
for(j=0; j<n; j++)
{
if(graph[i][j]>0 && graph[i][j]<min && taken[j] == false)
{
min_node = j;
min = graph[i][j];
}
}
if(min < MAXVAL)
{
min_edges[i] = min;
taken_following_nodes[i] = min_node;
if(min <= g_min)
{
g_min = min;
g_child = min_node;
g_parent = i;
found_min = true;
}
}
else
{
min_edges[i] = -1;
taken_following_nodes[i] = -1;
}
}
if(child >= 0)
{
i = child;
min = MAXVAL;
min_node = -1;
for(j=0; j<n; j++)
{
if(graph[i][j]>0 && graph[i][j]<min && taken[j] == false)
{
min_node = j;
min = graph[i][j];
}
}
if(min < MAXVAL)
{
min_edges[i] = min;
taken_following_nodes[i] = min_node;
if(min <= g_min)
{
g_min = min;
g_child = min_node;
g_parent = i;
found_min = true;
}
}
else
{
min_edges[i] = -1;
taken_following_nodes[i] = -1;
}
}
if(found_min == false)
{
//printf("if(found_min == false), g_min=%f, g_child=%d\n", g_min, g_child);
g_min = MAXVAL;
g_child = -1;
for(i=0; i<n; i++)
{
if(taken[i])
{
min_node = -1;
min = MAXVAL;
for(j=0; j<n; j++)
{
if(graph[i][j]>0 && graph[i][j]<min && taken[j] == false)
{
min_node = j;
min = graph[i][j];
}
}
if(min < MAXVAL)
{
min_edges[i] = min;
taken_following_nodes[i] = min_node;
if(min <= g_min)
{
g_min = min;
g_child = min_node;
g_parent = i;
}
}
else
{
min_edges[i] = -1;
taken_following_nodes[i] = -1;
}
}
}
}
}
void countnshow()
{
int taken_count, i, j;
taken_count = 1;
taken[0] = true;
states = 1;
total_rail = total_roads = 0;
g_min = MAXVAL;
g_child = -1;
g_parent = 0;
//double min;
while(taken_count < n)
{
update_nodes(g_parent, g_child);
if(g_min < MAXVAL)
{
//printf("%d, ", (int)g_min); //remove this
taken_count++;
taken[g_child] = true;
if(g_min>r)
{
total_rail += g_min;
states++;
}
else total_roads += g_min;
graph[g_parent][g_child] = graph[g_child][g_parent] = 0;
}
}
printf("%d %d %d", states, (int)(total_roads+0.5), (int)(total_rail+0.5));
}
int main()
{
int T, i;
scanf("%d", &T);
//printf("%d\n", T);
///*
for(i=1; i<=T; i++)
{
int j, k, a, b, c;
scanf("%d %d", &n, &r);
states = total_rail = total_roads = 0;
///*
for(j=0; j<n; j++)
{
scanf("%d %d", &a, &b);
points[j][0] = a;
points[j][1] = b;
taken[j] = false;
min_edges[j] = -1;
taken_following_nodes[j] = -1;
graph[j][j] = 0;
for(k=j-1;k>=0;k--)
{
graph[k][j] = graph[j][k] = (hypot((double)(points[j][0]-points[k][0]), (double)(points[j][1]-points[k][1])));
}
}
//*/
//cut these codes start
/*
for(j=0; j<n; j++)
{
taken[j] = false;
min_edges[j] = -1;
taken_following_nodes[j] = -1;
graph[j][j] = 0;
}
for(j=0; j<r; j++)
{
scanf("%d %d %d", &a, &b, &c);
graph[a][b] = graph[b][a] = c;
//taken[j] = false;
}
*/
//cut these codes end
printf("Case #%d: ", i);
countnshow();
printf("\n");
}
//*/
return 0;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.