blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
201
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 7
100
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 260
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 11.4k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 17
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 80
values | src_encoding
stringclasses 28
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 8
9.86M
| extension
stringclasses 52
values | content
stringlengths 8
9.86M
| authors
sequencelengths 1
1
| author
stringlengths 0
119
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8f909f19ced2522a79a70030a1be7d300e037b7e | 9110a8231496bc7808da9f0f5e60319887b7a0d4 | /source/common/http/http1/codec_impl_legacy.cc | 82976e869ff4d958b3c1ab21843995c0933472cc | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ruimaranhao/envoy | 9439f9f1cb79b53d14eb01113233b47381c3af77 | 958745d658752f90f544296d9e75030519a9fb84 | refs/heads/master | 2022-11-28T11:51:47.267417 | 2020-07-22T23:00:44 | 2020-07-22T23:00:44 | 281,804,715 | 0 | 0 | Apache-2.0 | 2020-07-22T23:34:39 | 2020-07-22T23:34:38 | null | UTF-8 | C++ | false | false | 51,916 | cc | #include "common/http/http1/codec_impl_legacy.h"
#include <cstdint>
#include <memory>
#include <string>
#include "envoy/buffer/buffer.h"
#include "envoy/http/codec.h"
#include "envoy/http/header_map.h"
#include "envoy/network/connection.h"
#include "common/common/enum_to_int.h"
#include "common/common/utility.h"
#include "common/grpc/common.h"
#include "common/http/exception.h"
#include "common/http/header_utility.h"
#include "common/http/headers.h"
#include "common/http/http1/header_formatter.h"
#include "common/http/url_utility.h"
#include "common/http/utility.h"
#include "common/runtime/runtime_features.h"
#include "absl/container/fixed_array.h"
#include "absl/strings/ascii.h"
namespace Envoy {
namespace Http {
namespace Legacy {
namespace Http1 {
namespace {
struct Http1ResponseCodeDetailValues {
const absl::string_view TooManyHeaders = "http1.too_many_headers";
const absl::string_view HeadersTooLarge = "http1.headers_too_large";
const absl::string_view HttpCodecError = "http1.codec_error";
const absl::string_view InvalidCharacters = "http1.invalid_characters";
const absl::string_view ConnectionHeaderSanitization = "http1.connection_header_rejected";
const absl::string_view InvalidUrl = "http1.invalid_url";
const absl::string_view InvalidTransferEncoding = "http1.invalid_transfer_encoding";
const absl::string_view BodyDisallowed = "http1.body_disallowed";
const absl::string_view TransferEncodingNotAllowed = "http1.transfer_encoding_not_allowed";
const absl::string_view ContentLengthNotAllowed = "http1.content_length_not_allowed";
const absl::string_view InvalidUnderscore = "http1.unexpected_underscore";
};
struct Http1HeaderTypesValues {
const absl::string_view Headers = "headers";
const absl::string_view Trailers = "trailers";
};
using Http1ResponseCodeDetails = ConstSingleton<Http1ResponseCodeDetailValues>;
using Http1HeaderTypes = ConstSingleton<Http1HeaderTypesValues>;
using Http::Http1::CodecStats;
using Http::Http1::HeaderKeyFormatter;
using Http::Http1::HeaderKeyFormatterPtr;
using Http::Http1::ProperCaseHeaderKeyFormatter;
const StringUtil::CaseUnorderedSet& caseUnorderdSetContainingUpgradeAndHttp2Settings() {
CONSTRUCT_ON_FIRST_USE(StringUtil::CaseUnorderedSet,
Http::Headers::get().ConnectionValues.Upgrade,
Http::Headers::get().ConnectionValues.Http2Settings);
}
HeaderKeyFormatterPtr formatter(const Http::Http1Settings& settings) {
if (settings.header_key_format_ == Http1Settings::HeaderKeyFormat::ProperCase) {
return std::make_unique<ProperCaseHeaderKeyFormatter>();
}
return nullptr;
}
} // namespace
const std::string StreamEncoderImpl::CRLF = "\r\n";
// Last chunk as defined here https://tools.ietf.org/html/rfc7230#section-4.1
const std::string StreamEncoderImpl::LAST_CHUNK = "0\r\n";
StreamEncoderImpl::StreamEncoderImpl(ConnectionImpl& connection,
HeaderKeyFormatter* header_key_formatter)
: connection_(connection), disable_chunk_encoding_(false), chunk_encoding_(true),
is_response_to_head_request_(false), is_response_to_connect_request_(false),
header_key_formatter_(header_key_formatter) {
if (connection_.connection().aboveHighWatermark()) {
runHighWatermarkCallbacks();
}
}
void StreamEncoderImpl::encodeHeader(const char* key, uint32_t key_size, const char* value,
uint32_t value_size) {
ASSERT(key_size > 0);
connection_.copyToBuffer(key, key_size);
connection_.addCharToBuffer(':');
connection_.addCharToBuffer(' ');
connection_.copyToBuffer(value, value_size);
connection_.addToBuffer(CRLF);
}
void StreamEncoderImpl::encodeHeader(absl::string_view key, absl::string_view value) {
this->encodeHeader(key.data(), key.size(), value.data(), value.size());
}
void StreamEncoderImpl::encodeFormattedHeader(absl::string_view key, absl::string_view value) {
if (header_key_formatter_ != nullptr) {
encodeHeader(header_key_formatter_->format(key), value);
} else {
encodeHeader(key, value);
}
}
void ResponseEncoderImpl::encode100ContinueHeaders(const ResponseHeaderMap& headers) {
ASSERT(headers.Status()->value() == "100");
encodeHeaders(headers, false);
}
void StreamEncoderImpl::encodeHeadersBase(const RequestOrResponseHeaderMap& headers,
absl::optional<uint64_t> status, bool end_stream) {
bool saw_content_length = false;
headers.iterate([this](const HeaderEntry& header) -> HeaderMap::Iterate {
absl::string_view key_to_use = header.key().getStringView();
uint32_t key_size_to_use = header.key().size();
// Translate :authority -> host so that upper layers do not need to deal with this.
if (key_size_to_use > 1 && key_to_use[0] == ':' && key_to_use[1] == 'a') {
key_to_use = absl::string_view(Headers::get().HostLegacy.get());
key_size_to_use = Headers::get().HostLegacy.get().size();
}
// Skip all headers starting with ':' that make it here.
if (key_to_use[0] == ':') {
return HeaderMap::Iterate::Continue;
}
encodeFormattedHeader(key_to_use, header.value().getStringView());
return HeaderMap::Iterate::Continue;
});
if (headers.ContentLength()) {
saw_content_length = true;
}
ASSERT(!headers.TransferEncoding());
// Assume we are chunk encoding unless we are passed a content length or this is a header only
// response. Upper layers generally should strip transfer-encoding since it only applies to
// HTTP/1.1. The codec will infer it based on the type of response.
// for streaming (e.g. SSE stream sent to hystrix dashboard), we do not want
// chunk transfer encoding but we don't have a content-length so disable_chunk_encoding_ is
// consulted before enabling chunk encoding.
//
// Note that for HEAD requests Envoy does best-effort guessing when there is no
// content-length. If a client makes a HEAD request for an upstream resource
// with no bytes but the upstream response doesn't include "Content-length: 0",
// Envoy will incorrectly assume a subsequent response to GET will be chunk encoded.
if (saw_content_length || disable_chunk_encoding_) {
chunk_encoding_ = false;
} else {
if (status && *status == 100) {
// Make sure we don't serialize chunk information with 100-Continue headers.
chunk_encoding_ = false;
} else if (end_stream && !is_response_to_head_request_) {
// If this is a headers-only stream, append an explicit "Content-Length: 0" unless it's a
// response to a HEAD request.
// For 204s and 1xx where content length is disallowed, don't append the content length but
// also don't chunk encode.
if (!status || (*status >= 200 && *status != 204)) {
encodeFormattedHeader(Headers::get().ContentLength.get(), "0");
}
chunk_encoding_ = false;
} else if (connection_.protocol() == Protocol::Http10) {
chunk_encoding_ = false;
} else if (status && (*status < 200 || *status == 204) &&
connection_.strict1xxAnd204Headers()) {
// TODO(zuercher): when the "envoy.reloadable_features.strict_1xx_and_204_response_headers"
// feature flag is removed, this block can be coalesced with the 100 Continue logic above.
// For 1xx and 204 responses, do not send the chunked encoding header or enable chunked
// encoding: https://tools.ietf.org/html/rfc7230#section-3.3.1
chunk_encoding_ = false;
} else {
// For responses to connect requests, do not send the chunked encoding header:
// https://tools.ietf.org/html/rfc7231#section-4.3.6.
if (!is_response_to_connect_request_) {
encodeFormattedHeader(Headers::get().TransferEncoding.get(),
Headers::get().TransferEncodingValues.Chunked);
}
// We do not apply chunk encoding for HTTP upgrades, including CONNECT style upgrades.
// If there is a body in a response on the upgrade path, the chunks will be
// passed through via maybeDirectDispatch so we need to avoid appending
// extra chunk boundaries.
//
// When sending a response to a HEAD request Envoy may send an informational
// "Transfer-Encoding: chunked" header, but should not send a chunk encoded body.
chunk_encoding_ = !Utility::isUpgrade(headers) && !is_response_to_head_request_ &&
!is_response_to_connect_request_;
}
}
connection_.addToBuffer(CRLF);
if (end_stream) {
endEncode();
} else {
connection_.flushOutput();
}
}
void StreamEncoderImpl::encodeData(Buffer::Instance& data, bool end_stream) {
// end_stream may be indicated with a zero length data buffer. If that is the case, so not
// actually write the zero length buffer out.
if (data.length() > 0) {
if (chunk_encoding_) {
connection_.buffer().add(absl::StrCat(absl::Hex(data.length()), CRLF));
}
connection_.buffer().move(data);
if (chunk_encoding_) {
connection_.buffer().add(CRLF);
}
}
if (end_stream) {
endEncode();
} else {
connection_.flushOutput();
}
}
void StreamEncoderImpl::encodeTrailersBase(const HeaderMap& trailers) {
if (!connection_.enableTrailers()) {
return endEncode();
}
// Trailers only matter if it is a chunk transfer encoding
// https://tools.ietf.org/html/rfc7230#section-4.4
if (chunk_encoding_) {
// Finalize the body
connection_.buffer().add(LAST_CHUNK);
trailers.iterate([this](const HeaderEntry& header) -> HeaderMap::Iterate {
encodeFormattedHeader(header.key().getStringView(), header.value().getStringView());
return HeaderMap::Iterate::Continue;
});
connection_.flushOutput();
connection_.buffer().add(CRLF);
}
connection_.flushOutput();
connection_.onEncodeComplete();
}
void StreamEncoderImpl::encodeMetadata(const MetadataMapVector&) {
connection_.stats().metadata_not_supported_error_.inc();
}
void StreamEncoderImpl::endEncode() {
if (chunk_encoding_) {
connection_.buffer().add(LAST_CHUNK);
connection_.buffer().add(CRLF);
}
connection_.flushOutput(true);
connection_.onEncodeComplete();
}
void ServerConnectionImpl::maybeAddSentinelBufferFragment(Buffer::WatermarkBuffer& output_buffer) {
if (!flood_protection_) {
return;
}
// It's messy and complicated to try to tag the final write of an HTTP response for response
// tracking for flood protection. Instead, write an empty buffer fragment after the response,
// to allow for tracking.
// When the response is written out, the fragment will be deleted and the counter will be updated
// by ServerConnectionImpl::releaseOutboundResponse()
auto fragment =
Buffer::OwnedBufferFragmentImpl::create(absl::string_view("", 0), response_buffer_releasor_);
output_buffer.addBufferFragment(*fragment.release());
ASSERT(outbound_responses_ < max_outbound_responses_);
outbound_responses_++;
}
void ServerConnectionImpl::doFloodProtectionChecks() const {
if (!flood_protection_) {
return;
}
// Before processing another request, make sure that we are below the response flood protection
// threshold.
if (outbound_responses_ >= max_outbound_responses_) {
ENVOY_CONN_LOG(trace, "error accepting request: too many pending responses queued",
connection_);
stats_.response_flood_.inc();
throw FrameFloodException("Too many responses queued.");
}
}
void ConnectionImpl::flushOutput(bool end_encode) {
if (end_encode) {
// If this is an HTTP response in ServerConnectionImpl, track outbound responses for flood
// protection
maybeAddSentinelBufferFragment(output_buffer_);
}
connection().write(output_buffer_, false);
ASSERT(0UL == output_buffer_.length());
}
void ConnectionImpl::addToBuffer(absl::string_view data) { output_buffer_.add(data); }
void ConnectionImpl::addCharToBuffer(char c) { output_buffer_.add(&c, 1); }
void ConnectionImpl::addIntToBuffer(uint64_t i) { output_buffer_.add(absl::StrCat(i)); }
void ConnectionImpl::copyToBuffer(const char* data, uint64_t length) {
output_buffer_.add(data, length);
}
void StreamEncoderImpl::resetStream(StreamResetReason reason) {
connection_.onResetStreamBase(reason);
}
void StreamEncoderImpl::readDisable(bool disable) {
if (disable) {
++read_disable_calls_;
} else {
ASSERT(read_disable_calls_ != 0);
if (read_disable_calls_ != 0) {
--read_disable_calls_;
}
}
connection_.readDisable(disable);
}
uint32_t StreamEncoderImpl::bufferLimit() { return connection_.bufferLimit(); }
const Network::Address::InstanceConstSharedPtr& StreamEncoderImpl::connectionLocalAddress() {
return connection_.connection().localAddress();
}
static const char RESPONSE_PREFIX[] = "HTTP/1.1 ";
static const char HTTP_10_RESPONSE_PREFIX[] = "HTTP/1.0 ";
void ResponseEncoderImpl::encodeHeaders(const ResponseHeaderMap& headers, bool end_stream) {
started_response_ = true;
// The contract is that client codecs must ensure that :status is present.
ASSERT(headers.Status() != nullptr);
uint64_t numeric_status = Utility::getResponseStatus(headers);
if (connection_.protocol() == Protocol::Http10 && connection_.supportsHttp10()) {
connection_.copyToBuffer(HTTP_10_RESPONSE_PREFIX, sizeof(HTTP_10_RESPONSE_PREFIX) - 1);
} else {
connection_.copyToBuffer(RESPONSE_PREFIX, sizeof(RESPONSE_PREFIX) - 1);
}
connection_.addIntToBuffer(numeric_status);
connection_.addCharToBuffer(' ');
const char* status_string = CodeUtility::toString(static_cast<Code>(numeric_status));
uint32_t status_string_len = strlen(status_string);
connection_.copyToBuffer(status_string, status_string_len);
connection_.addCharToBuffer('\r');
connection_.addCharToBuffer('\n');
if (numeric_status >= 300) {
// Don't do special CONNECT logic if the CONNECT was rejected.
is_response_to_connect_request_ = false;
}
encodeHeadersBase(headers, absl::make_optional<uint64_t>(numeric_status), end_stream);
}
static const char REQUEST_POSTFIX[] = " HTTP/1.1\r\n";
void RequestEncoderImpl::encodeHeaders(const RequestHeaderMap& headers, bool end_stream) {
const HeaderEntry* method = headers.Method();
const HeaderEntry* path = headers.Path();
const HeaderEntry* host = headers.Host();
bool is_connect = HeaderUtility::isConnect(headers);
if (!method || (!path && !is_connect)) {
// TODO(#10878): This exception does not occur during dispatch and would not be triggered under
// normal circumstances since inputs would fail parsing at ingress. Replace with proper error
// handling when exceptions are removed. Include missing host header for CONNECT.
throw CodecClientException(":method and :path must be specified");
}
if (method->value() == Headers::get().MethodValues.Head) {
head_request_ = true;
} else if (method->value() == Headers::get().MethodValues.Connect) {
disableChunkEncoding();
connect_request_ = true;
}
if (Utility::isUpgrade(headers)) {
upgrade_request_ = true;
}
connection_.copyToBuffer(method->value().getStringView().data(), method->value().size());
connection_.addCharToBuffer(' ');
if (is_connect) {
connection_.copyToBuffer(host->value().getStringView().data(), host->value().size());
} else {
connection_.copyToBuffer(path->value().getStringView().data(), path->value().size());
}
connection_.copyToBuffer(REQUEST_POSTFIX, sizeof(REQUEST_POSTFIX) - 1);
encodeHeadersBase(headers, absl::nullopt, end_stream);
}
http_parser_settings ConnectionImpl::settings_{
[](http_parser* parser) -> int {
static_cast<ConnectionImpl*>(parser->data)->onMessageBeginBase();
return 0;
},
[](http_parser* parser, const char* at, size_t length) -> int {
static_cast<ConnectionImpl*>(parser->data)->onUrl(at, length);
return 0;
},
nullptr, // on_status
[](http_parser* parser, const char* at, size_t length) -> int {
static_cast<ConnectionImpl*>(parser->data)->onHeaderField(at, length);
return 0;
},
[](http_parser* parser, const char* at, size_t length) -> int {
static_cast<ConnectionImpl*>(parser->data)->onHeaderValue(at, length);
return 0;
},
[](http_parser* parser) -> int {
return static_cast<ConnectionImpl*>(parser->data)->onHeadersCompleteBase();
},
[](http_parser* parser, const char* at, size_t length) -> int {
static_cast<ConnectionImpl*>(parser->data)->bufferBody(at, length);
return 0;
},
[](http_parser* parser) -> int {
static_cast<ConnectionImpl*>(parser->data)->onMessageCompleteBase();
return 0;
},
[](http_parser* parser) -> int {
// A 0-byte chunk header is used to signal the end of the chunked body.
// When this function is called, http-parser holds the size of the chunk in
// parser->content_length. See
// https://github.com/nodejs/http-parser/blob/v2.9.3/http_parser.h#L336
const bool is_final_chunk = (parser->content_length == 0);
static_cast<ConnectionImpl*>(parser->data)->onChunkHeader(is_final_chunk);
return 0;
},
nullptr // on_chunk_complete
};
ConnectionImpl::ConnectionImpl(Network::Connection& connection, CodecStats& stats,
http_parser_type type, uint32_t max_headers_kb,
const uint32_t max_headers_count,
HeaderKeyFormatterPtr&& header_key_formatter, bool enable_trailers)
: connection_(connection), stats_(stats),
header_key_formatter_(std::move(header_key_formatter)), processing_trailers_(false),
handling_upgrade_(false), reset_stream_called_(false), deferred_end_stream_headers_(false),
connection_header_sanitization_(Runtime::runtimeFeatureEnabled(
"envoy.reloadable_features.connection_header_sanitization")),
enable_trailers_(enable_trailers),
strict_1xx_and_204_headers_(Runtime::runtimeFeatureEnabled(
"envoy.reloadable_features.strict_1xx_and_204_response_headers")),
output_buffer_([&]() -> void { this->onBelowLowWatermark(); },
[&]() -> void { this->onAboveHighWatermark(); },
[]() -> void { /* TODO(adisuissa): Handle overflow watermark */ }),
max_headers_kb_(max_headers_kb), max_headers_count_(max_headers_count) {
output_buffer_.setWatermarks(connection.bufferLimit());
http_parser_init(&parser_, type);
parser_.data = this;
}
void ConnectionImpl::completeLastHeader() {
ENVOY_CONN_LOG(trace, "completed header: key={} value={}", connection_,
current_header_field_.getStringView(), current_header_value_.getStringView());
checkHeaderNameForUnderscores();
auto& headers_or_trailers = headersOrTrailers();
if (!current_header_field_.empty()) {
current_header_field_.inlineTransform([](char c) { return absl::ascii_tolower(c); });
// Strip trailing whitespace of the current header value if any. Leading whitespace was trimmed
// in ConnectionImpl::onHeaderValue. http_parser does not strip leading or trailing whitespace
// as the spec requires: https://tools.ietf.org/html/rfc7230#section-3.2.4
current_header_value_.rtrim();
headers_or_trailers.addViaMove(std::move(current_header_field_),
std::move(current_header_value_));
}
// Check if the number of headers exceeds the limit.
if (headers_or_trailers.size() > max_headers_count_) {
error_code_ = Http::Code::RequestHeaderFieldsTooLarge;
sendProtocolError(Http1ResponseCodeDetails::get().TooManyHeaders);
const absl::string_view header_type =
processing_trailers_ ? Http1HeaderTypes::get().Trailers : Http1HeaderTypes::get().Headers;
throw CodecProtocolException(absl::StrCat(header_type, " size exceeds limit"));
}
header_parsing_state_ = HeaderParsingState::Field;
ASSERT(current_header_field_.empty());
ASSERT(current_header_value_.empty());
}
uint32_t ConnectionImpl::getHeadersSize() {
return current_header_field_.size() + current_header_value_.size() +
headersOrTrailers().byteSize();
}
void ConnectionImpl::checkMaxHeadersSize() {
const uint32_t total = getHeadersSize();
if (total > (max_headers_kb_ * 1024)) {
const absl::string_view header_type =
processing_trailers_ ? Http1HeaderTypes::get().Trailers : Http1HeaderTypes::get().Headers;
error_code_ = Http::Code::RequestHeaderFieldsTooLarge;
sendProtocolError(Http1ResponseCodeDetails::get().HeadersTooLarge);
throw CodecProtocolException(absl::StrCat(header_type, " size exceeds limit"));
}
}
bool ConnectionImpl::maybeDirectDispatch(Buffer::Instance& data) {
if (!handling_upgrade_) {
// Only direct dispatch for Upgrade requests.
return false;
}
ENVOY_CONN_LOG(trace, "direct-dispatched {} bytes", connection_, data.length());
onBody(data);
data.drain(data.length());
return true;
}
Http::Status ConnectionImpl::dispatch(Buffer::Instance& data) {
// TODO(#10878): Remove this wrapper when exception removal is complete. innerDispatch may either
// throw an exception or return an error status. The utility wrapper catches exceptions and
// converts them to error statuses.
return Utility::exceptionToStatus(
[&](Buffer::Instance& data) -> Http::Status { return innerDispatch(data); }, data);
}
Http::Status ConnectionImpl::innerDispatch(Buffer::Instance& data) {
ENVOY_CONN_LOG(trace, "parsing {} bytes", connection_, data.length());
ASSERT(buffered_body_.length() == 0);
if (maybeDirectDispatch(data)) {
return Http::okStatus();
}
// Always unpause before dispatch.
http_parser_pause(&parser_, 0);
ssize_t total_parsed = 0;
if (data.length() > 0) {
for (const Buffer::RawSlice& slice : data.getRawSlices()) {
total_parsed += dispatchSlice(static_cast<const char*>(slice.mem_), slice.len_);
if (HTTP_PARSER_ERRNO(&parser_) != HPE_OK) {
// Parse errors trigger an exception in dispatchSlice so we are guaranteed to be paused at
// this point.
ASSERT(HTTP_PARSER_ERRNO(&parser_) == HPE_PAUSED);
break;
}
}
dispatchBufferedBody();
} else {
dispatchSlice(nullptr, 0);
}
ASSERT(buffered_body_.length() == 0);
ENVOY_CONN_LOG(trace, "parsed {} bytes", connection_, total_parsed);
data.drain(total_parsed);
// If an upgrade has been handled and there is body data or early upgrade
// payload to send on, send it on.
maybeDirectDispatch(data);
return Http::okStatus();
}
size_t ConnectionImpl::dispatchSlice(const char* slice, size_t len) {
ssize_t rc = http_parser_execute(&parser_, &settings_, slice, len);
if (HTTP_PARSER_ERRNO(&parser_) != HPE_OK && HTTP_PARSER_ERRNO(&parser_) != HPE_PAUSED) {
sendProtocolError(Http1ResponseCodeDetails::get().HttpCodecError);
throw CodecProtocolException("http/1.1 protocol error: " +
std::string(http_errno_name(HTTP_PARSER_ERRNO(&parser_))));
}
return rc;
}
void ConnectionImpl::onHeaderField(const char* data, size_t length) {
// We previously already finished up the headers, these headers are
// now trailers.
if (header_parsing_state_ == HeaderParsingState::Done) {
if (!enable_trailers_) {
// Ignore trailers.
return;
}
processing_trailers_ = true;
header_parsing_state_ = HeaderParsingState::Field;
allocTrailers();
}
if (header_parsing_state_ == HeaderParsingState::Value) {
completeLastHeader();
}
current_header_field_.append(data, length);
checkMaxHeadersSize();
}
void ConnectionImpl::onHeaderValue(const char* data, size_t length) {
if (header_parsing_state_ == HeaderParsingState::Done && !enable_trailers_) {
// Ignore trailers.
return;
}
absl::string_view header_value{data, length};
if (!Http::HeaderUtility::headerValueIsValid(header_value)) {
ENVOY_CONN_LOG(debug, "invalid header value: {}", connection_, header_value);
error_code_ = Http::Code::BadRequest;
sendProtocolError(Http1ResponseCodeDetails::get().InvalidCharacters);
throw CodecProtocolException("http/1.1 protocol error: header value contains invalid chars");
}
header_parsing_state_ = HeaderParsingState::Value;
if (current_header_value_.empty()) {
// Strip leading whitespace if the current header value input contains the first bytes of the
// encoded header value. Trailing whitespace is stripped once the full header value is known in
// ConnectionImpl::completeLastHeader. http_parser does not strip leading or trailing whitespace
// as the spec requires: https://tools.ietf.org/html/rfc7230#section-3.2.4 .
header_value = StringUtil::ltrim(header_value);
}
current_header_value_.append(header_value.data(), header_value.length());
checkMaxHeadersSize();
}
int ConnectionImpl::onHeadersCompleteBase() {
ASSERT(!processing_trailers_);
ENVOY_CONN_LOG(trace, "onHeadersCompleteBase", connection_);
completeLastHeader();
if (!(parser_.http_major == 1 && parser_.http_minor == 1)) {
// This is not necessarily true, but it's good enough since higher layers only care if this is
// HTTP/1.1 or not.
protocol_ = Protocol::Http10;
}
RequestOrResponseHeaderMap& request_or_response_headers = requestOrResponseHeaders();
if (Utility::isUpgrade(request_or_response_headers) && upgradeAllowed()) {
// Ignore h2c upgrade requests until we support them.
// See https://github.com/envoyproxy/envoy/issues/7161 for details.
if (absl::EqualsIgnoreCase(request_or_response_headers.getUpgradeValue(),
Http::Headers::get().UpgradeValues.H2c)) {
ENVOY_CONN_LOG(trace, "removing unsupported h2c upgrade headers.", connection_);
request_or_response_headers.removeUpgrade();
if (request_or_response_headers.Connection()) {
const auto& tokens_to_remove = caseUnorderdSetContainingUpgradeAndHttp2Settings();
std::string new_value = StringUtil::removeTokens(
request_or_response_headers.getConnectionValue(), ",", tokens_to_remove, ",");
if (new_value.empty()) {
request_or_response_headers.removeConnection();
} else {
request_or_response_headers.setConnection(new_value);
}
}
request_or_response_headers.remove(Headers::get().Http2Settings);
} else {
ENVOY_CONN_LOG(trace, "codec entering upgrade mode.", connection_);
handling_upgrade_ = true;
}
}
if (parser_.method == HTTP_CONNECT) {
if (request_or_response_headers.ContentLength()) {
if (request_or_response_headers.getContentLengthValue() == "0") {
request_or_response_headers.removeContentLength();
} else {
// Per https://tools.ietf.org/html/rfc7231#section-4.3.6 a payload with a
// CONNECT request has no defined semantics, and may be rejected.
error_code_ = Http::Code::BadRequest;
sendProtocolError(Http1ResponseCodeDetails::get().BodyDisallowed);
throw CodecProtocolException("http/1.1 protocol error: unsupported content length");
}
}
ENVOY_CONN_LOG(trace, "codec entering upgrade mode for CONNECT request.", connection_);
handling_upgrade_ = true;
}
// Per https://tools.ietf.org/html/rfc7230#section-3.3.1 Envoy should reject
// transfer-codings it does not understand.
// Per https://tools.ietf.org/html/rfc7231#section-4.3.6 a payload with a
// CONNECT request has no defined semantics, and may be rejected.
if (request_or_response_headers.TransferEncoding()) {
const absl::string_view encoding = request_or_response_headers.getTransferEncodingValue();
if (!absl::EqualsIgnoreCase(encoding, Headers::get().TransferEncodingValues.Chunked) ||
parser_.method == HTTP_CONNECT) {
error_code_ = Http::Code::NotImplemented;
sendProtocolError(Http1ResponseCodeDetails::get().InvalidTransferEncoding);
throw CodecProtocolException("http/1.1 protocol error: unsupported transfer encoding");
}
}
int rc = onHeadersComplete();
header_parsing_state_ = HeaderParsingState::Done;
// Returning 2 informs http_parser to not expect a body or further data on this connection.
return handling_upgrade_ ? 2 : rc;
}
void ConnectionImpl::bufferBody(const char* data, size_t length) {
buffered_body_.add(data, length);
}
void ConnectionImpl::dispatchBufferedBody() {
ASSERT(HTTP_PARSER_ERRNO(&parser_) == HPE_OK || HTTP_PARSER_ERRNO(&parser_) == HPE_PAUSED);
if (buffered_body_.length() > 0) {
onBody(buffered_body_);
buffered_body_.drain(buffered_body_.length());
}
}
void ConnectionImpl::onChunkHeader(bool is_final_chunk) {
if (is_final_chunk) {
// Dispatch body before parsing trailers, so body ends up dispatched even if an error is found
// while processing trailers.
dispatchBufferedBody();
}
}
void ConnectionImpl::onMessageCompleteBase() {
ENVOY_CONN_LOG(trace, "message complete", connection_);
dispatchBufferedBody();
if (handling_upgrade_) {
// If this is an upgrade request, swallow the onMessageComplete. The
// upgrade payload will be treated as stream body.
ASSERT(!deferred_end_stream_headers_);
ENVOY_CONN_LOG(trace, "Pausing parser due to upgrade.", connection_);
http_parser_pause(&parser_, 1);
return;
}
// If true, this indicates we were processing trailers and must
// move the last header into current_header_map_
if (header_parsing_state_ == HeaderParsingState::Value) {
completeLastHeader();
}
onMessageComplete();
}
void ConnectionImpl::onMessageBeginBase() {
ENVOY_CONN_LOG(trace, "message begin", connection_);
// Make sure that if HTTP/1.0 and HTTP/1.1 requests share a connection Envoy correctly sets
// protocol for each request. Envoy defaults to 1.1 but sets the protocol to 1.0 where applicable
// in onHeadersCompleteBase
protocol_ = Protocol::Http11;
processing_trailers_ = false;
header_parsing_state_ = HeaderParsingState::Field;
allocHeaders();
onMessageBegin();
}
void ConnectionImpl::onResetStreamBase(StreamResetReason reason) {
ASSERT(!reset_stream_called_);
reset_stream_called_ = true;
onResetStream(reason);
}
ServerConnectionImpl::ServerConnectionImpl(
Network::Connection& connection, CodecStats& stats, ServerConnectionCallbacks& callbacks,
const Http1Settings& settings, uint32_t max_request_headers_kb,
const uint32_t max_request_headers_count,
envoy::config::core::v3::HttpProtocolOptions::HeadersWithUnderscoresAction
headers_with_underscores_action)
: ConnectionImpl(connection, stats, HTTP_REQUEST, max_request_headers_kb,
max_request_headers_count, formatter(settings), settings.enable_trailers_),
callbacks_(callbacks), codec_settings_(settings),
response_buffer_releasor_([this](const Buffer::OwnedBufferFragmentImpl* fragment) {
releaseOutboundResponse(fragment);
}),
// Pipelining is generally not well supported on the internet and has a series of dangerous
// overflow bugs. As such we are disabling it for now, and removing this temporary override if
// no one objects. If you use this integer to restore prior behavior, contact the
// maintainer team as it will otherwise be removed entirely soon.
max_outbound_responses_(
Runtime::getInteger("envoy.do_not_use_going_away_max_http2_outbound_responses", 2)),
flood_protection_(
Runtime::runtimeFeatureEnabled("envoy.reloadable_features.http1_flood_protection")),
headers_with_underscores_action_(headers_with_underscores_action) {}
uint32_t ServerConnectionImpl::getHeadersSize() {
// Add in the the size of the request URL if processing request headers.
const uint32_t url_size = (!processing_trailers_ && active_request_.has_value())
? active_request_.value().request_url_.size()
: 0;
return url_size + ConnectionImpl::getHeadersSize();
}
void ServerConnectionImpl::onEncodeComplete() {
if (active_request_.value().remote_complete_) {
// Only do this if remote is complete. If we are replying before the request is complete the
// only logical thing to do is for higher level code to reset() / close the connection so we
// leave the request around so that it can fire reset callbacks.
active_request_.reset();
}
}
void ServerConnectionImpl::handlePath(RequestHeaderMap& headers, unsigned int method) {
HeaderString path(Headers::get().Path);
bool is_connect = (method == HTTP_CONNECT);
// The url is relative or a wildcard when the method is OPTIONS. Nothing to do here.
auto& active_request = active_request_.value();
if (!is_connect && !active_request.request_url_.getStringView().empty() &&
(active_request.request_url_.getStringView()[0] == '/' ||
((method == HTTP_OPTIONS) && active_request.request_url_.getStringView()[0] == '*'))) {
headers.addViaMove(std::move(path), std::move(active_request.request_url_));
return;
}
// If absolute_urls and/or connect are not going be handled, copy the url and return.
// This forces the behavior to be backwards compatible with the old codec behavior.
// CONNECT "urls" are actually host:port so look like absolute URLs to the above checks.
// Absolute URLS in CONNECT requests will be rejected below by the URL class validation.
if (!codec_settings_.allow_absolute_url_ && !is_connect) {
headers.addViaMove(std::move(path), std::move(active_request.request_url_));
return;
}
Utility::Url absolute_url;
if (!absolute_url.initialize(active_request.request_url_.getStringView(), is_connect)) {
sendProtocolError(Http1ResponseCodeDetails::get().InvalidUrl);
throw CodecProtocolException("http/1.1 protocol error: invalid url in request line");
}
// RFC7230#5.7
// When a proxy receives a request with an absolute-form of
// request-target, the proxy MUST ignore the received Host header field
// (if any) and instead replace it with the host information of the
// request-target. A proxy that forwards such a request MUST generate a
// new Host field-value based on the received request-target rather than
// forward the received Host field-value.
headers.setHost(absolute_url.hostAndPort());
if (!absolute_url.pathAndQueryParams().empty()) {
headers.setPath(absolute_url.pathAndQueryParams());
}
active_request.request_url_.clear();
}
int ServerConnectionImpl::onHeadersComplete() {
// Handle the case where response happens prior to request complete. It's up to upper layer code
// to disconnect the connection but we shouldn't fire any more events since it doesn't make
// sense.
if (active_request_.has_value()) {
auto& active_request = active_request_.value();
auto& headers = absl::get<RequestHeaderMapPtr>(headers_or_trailers_);
ENVOY_CONN_LOG(trace, "Server: onHeadersComplete size={}", connection_, headers->size());
const char* method_string = http_method_str(static_cast<http_method>(parser_.method));
if (!handling_upgrade_ && connection_header_sanitization_ && headers->Connection()) {
// If we fail to sanitize the request, return a 400 to the client
if (!Utility::sanitizeConnectionHeader(*headers)) {
absl::string_view header_value = headers->getConnectionValue();
ENVOY_CONN_LOG(debug, "Invalid nominated headers in Connection: {}", connection_,
header_value);
error_code_ = Http::Code::BadRequest;
sendProtocolError(Http1ResponseCodeDetails::get().ConnectionHeaderSanitization);
throw CodecProtocolException("Invalid nominated headers in Connection.");
}
}
// Inform the response encoder about any HEAD method, so it can set content
// length and transfer encoding headers correctly.
active_request.response_encoder_.setIsResponseToHeadRequest(parser_.method == HTTP_HEAD);
active_request.response_encoder_.setIsResponseToConnectRequest(parser_.method == HTTP_CONNECT);
handlePath(*headers, parser_.method);
ASSERT(active_request.request_url_.empty());
headers->setMethod(method_string);
// Make sure the host is valid.
auto details = HeaderUtility::requestHeadersValid(*headers);
if (details.has_value()) {
sendProtocolError(details.value().get());
throw CodecProtocolException(
"http/1.1 protocol error: request headers failed spec compliance checks");
}
// Determine here whether we have a body or not. This uses the new RFC semantics where the
// presence of content-length or chunked transfer-encoding indicates a body vs. a particular
// method. If there is no body, we defer raising decodeHeaders() until the parser is flushed
// with message complete. This allows upper layers to behave like HTTP/2 and prevents a proxy
// scenario where the higher layers stream through and implicitly switch to chunked transfer
// encoding because end stream with zero body length has not yet been indicated.
if (parser_.flags & F_CHUNKED ||
(parser_.content_length > 0 && parser_.content_length != ULLONG_MAX) || handling_upgrade_) {
active_request.request_decoder_->decodeHeaders(std::move(headers), false);
// If the connection has been closed (or is closing) after decoding headers, pause the parser
// so we return control to the caller.
if (connection_.state() != Network::Connection::State::Open) {
http_parser_pause(&parser_, 1);
}
} else {
deferred_end_stream_headers_ = true;
}
}
return 0;
}
void ServerConnectionImpl::onMessageBegin() {
if (!resetStreamCalled()) {
ASSERT(!active_request_.has_value());
active_request_.emplace(*this, header_key_formatter_.get());
auto& active_request = active_request_.value();
active_request.request_decoder_ = &callbacks_.newStream(active_request.response_encoder_);
// Check for pipelined request flood as we prepare to accept a new request.
// Parse errors that happen prior to onMessageBegin result in stream termination, it is not
// possible to overflow output buffers with early parse errors.
doFloodProtectionChecks();
}
}
void ServerConnectionImpl::onUrl(const char* data, size_t length) {
if (active_request_.has_value()) {
active_request_.value().request_url_.append(data, length);
checkMaxHeadersSize();
}
}
void ServerConnectionImpl::onBody(Buffer::Instance& data) {
ASSERT(!deferred_end_stream_headers_);
if (active_request_.has_value()) {
ENVOY_CONN_LOG(trace, "body size={}", connection_, data.length());
active_request_.value().request_decoder_->decodeData(data, false);
}
}
void ServerConnectionImpl::onMessageComplete() {
ASSERT(!handling_upgrade_);
if (active_request_.has_value()) {
auto& active_request = active_request_.value();
if (active_request.request_decoder_) {
active_request.response_encoder_.readDisable(true);
}
active_request.remote_complete_ = true;
if (deferred_end_stream_headers_) {
active_request.request_decoder_->decodeHeaders(
std::move(absl::get<RequestHeaderMapPtr>(headers_or_trailers_)), true);
deferred_end_stream_headers_ = false;
} else if (processing_trailers_) {
active_request.request_decoder_->decodeTrailers(
std::move(absl::get<RequestTrailerMapPtr>(headers_or_trailers_)));
} else {
Buffer::OwnedImpl buffer;
active_request.request_decoder_->decodeData(buffer, true);
}
// Reset to ensure no information from one requests persists to the next.
headers_or_trailers_.emplace<RequestHeaderMapPtr>(nullptr);
}
// Always pause the parser so that the calling code can process 1 request at a time and apply
// back pressure. However this means that the calling code needs to detect if there is more data
// in the buffer and dispatch it again.
http_parser_pause(&parser_, 1);
}
void ServerConnectionImpl::onResetStream(StreamResetReason reason) {
active_request_.value().response_encoder_.runResetCallbacks(reason);
active_request_.reset();
}
void ServerConnectionImpl::sendProtocolErrorOld(absl::string_view details) {
if (active_request_.has_value()) {
active_request_.value().response_encoder_.setDetails(details);
}
// We do this here because we may get a protocol error before we have a logical stream. Higher
// layers can only operate on streams, so there is no coherent way to allow them to send an error
// "out of band." On one hand this is kind of a hack but on the other hand it normalizes HTTP/1.1
// to look more like HTTP/2 to higher layers.
if (!active_request_.has_value() ||
!active_request_.value().response_encoder_.startedResponse()) {
Buffer::OwnedImpl bad_request_response(
absl::StrCat("HTTP/1.1 ", error_code_, " ", CodeUtility::toString(error_code_),
"\r\ncontent-length: 0\r\nconnection: close\r\n\r\n"));
connection_.write(bad_request_response, false);
}
}
void ServerConnectionImpl::sendProtocolError(absl::string_view details) {
if (!Runtime::runtimeFeatureEnabled("envoy.reloadable_features.early_errors_via_hcm")) {
sendProtocolErrorOld(details);
return;
}
// We do this here because we may get a protocol error before we have a logical stream.
if (!active_request_.has_value()) {
onMessageBeginBase();
}
ASSERT(active_request_.has_value());
active_request_.value().response_encoder_.setDetails(details);
if (!active_request_.value().response_encoder_.startedResponse()) {
// Note that the correctness of is_grpc_request and is_head_request is best-effort.
// If headers have not been fully parsed they may not be inferred correctly.
bool is_grpc_request = false;
if (absl::holds_alternative<RequestHeaderMapPtr>(headers_or_trailers_) &&
absl::get<RequestHeaderMapPtr>(headers_or_trailers_) != nullptr) {
is_grpc_request =
Grpc::Common::isGrpcRequestHeaders(*absl::get<RequestHeaderMapPtr>(headers_or_trailers_));
}
const bool is_head_request = parser_.method == HTTP_HEAD;
active_request_->request_decoder_->sendLocalReply(is_grpc_request, error_code_,
CodeUtility::toString(error_code_), nullptr,
is_head_request, absl::nullopt, details);
return;
}
}
void ServerConnectionImpl::onAboveHighWatermark() {
if (active_request_.has_value()) {
active_request_.value().response_encoder_.runHighWatermarkCallbacks();
}
}
void ServerConnectionImpl::onBelowLowWatermark() {
if (active_request_.has_value()) {
active_request_.value().response_encoder_.runLowWatermarkCallbacks();
}
}
void ServerConnectionImpl::releaseOutboundResponse(
const Buffer::OwnedBufferFragmentImpl* fragment) {
ASSERT(outbound_responses_ >= 1);
--outbound_responses_;
delete fragment;
}
void ServerConnectionImpl::checkHeaderNameForUnderscores() {
if (headers_with_underscores_action_ != envoy::config::core::v3::HttpProtocolOptions::ALLOW &&
Http::HeaderUtility::headerNameContainsUnderscore(current_header_field_.getStringView())) {
if (headers_with_underscores_action_ ==
envoy::config::core::v3::HttpProtocolOptions::DROP_HEADER) {
ENVOY_CONN_LOG(debug, "Dropping header with invalid characters in its name: {}", connection_,
current_header_field_.getStringView());
stats_.dropped_headers_with_underscores_.inc();
current_header_field_.clear();
current_header_value_.clear();
} else {
ENVOY_CONN_LOG(debug, "Rejecting request due to header name with underscores: {}",
connection_, current_header_field_.getStringView());
error_code_ = Http::Code::BadRequest;
sendProtocolError(Http1ResponseCodeDetails::get().InvalidUnderscore);
stats_.requests_rejected_with_underscores_in_headers_.inc();
throw CodecProtocolException("http/1.1 protocol error: header name contains underscores");
}
}
}
ClientConnectionImpl::ClientConnectionImpl(Network::Connection& connection, CodecStats& stats,
ConnectionCallbacks&, const Http1Settings& settings,
const uint32_t max_response_headers_count)
: ConnectionImpl(connection, stats, HTTP_RESPONSE, MAX_RESPONSE_HEADERS_KB,
max_response_headers_count, formatter(settings), settings.enable_trailers_) {}
bool ClientConnectionImpl::cannotHaveBody() {
if (pending_response_.has_value() && pending_response_.value().encoder_.headRequest()) {
ASSERT(!pending_response_done_);
return true;
} else if (parser_.status_code == 204 || parser_.status_code == 304 ||
(parser_.status_code >= 200 && parser_.content_length == 0)) {
return true;
} else {
return false;
}
}
RequestEncoder& ClientConnectionImpl::newStream(ResponseDecoder& response_decoder) {
if (resetStreamCalled()) {
throw CodecClientException("cannot create new streams after calling reset");
}
// If reads were disabled due to flow control, we expect reads to always be enabled again before
// reusing this connection. This is done when the response is received.
ASSERT(connection_.readEnabled());
ASSERT(!pending_response_.has_value());
ASSERT(pending_response_done_);
pending_response_.emplace(*this, header_key_formatter_.get(), &response_decoder);
pending_response_done_ = false;
return pending_response_.value().encoder_;
}
int ClientConnectionImpl::onHeadersComplete() {
// Handle the case where the client is closing a kept alive connection (by sending a 408
// with a 'Connection: close' header). In this case we just let response flush out followed
// by the remote close.
if (!pending_response_.has_value() && !resetStreamCalled()) {
throw PrematureResponseException(static_cast<Http::Code>(parser_.status_code));
} else if (pending_response_.has_value()) {
ASSERT(!pending_response_done_);
auto& headers = absl::get<ResponseHeaderMapPtr>(headers_or_trailers_);
ENVOY_CONN_LOG(trace, "Client: onHeadersComplete size={}", connection_, headers->size());
headers->setStatus(parser_.status_code);
if (parser_.status_code >= 200 && parser_.status_code < 300 &&
pending_response_.value().encoder_.connectRequest()) {
ENVOY_CONN_LOG(trace, "codec entering upgrade mode for CONNECT response.", connection_);
handling_upgrade_ = true;
// For responses to connect requests, do not accept the chunked
// encoding header: https://tools.ietf.org/html/rfc7231#section-4.3.6
if (headers->TransferEncoding() &&
absl::EqualsIgnoreCase(headers->TransferEncoding()->value().getStringView(),
Headers::get().TransferEncodingValues.Chunked)) {
sendProtocolError(Http1ResponseCodeDetails::get().InvalidTransferEncoding);
throw CodecProtocolException("http/1.1 protocol error: unsupported transfer encoding");
}
}
if (strict_1xx_and_204_headers_ && (parser_.status_code < 200 || parser_.status_code == 204)) {
if (headers->TransferEncoding()) {
sendProtocolError(Http1ResponseCodeDetails::get().TransferEncodingNotAllowed);
throw CodecProtocolException(
"http/1.1 protocol error: transfer encoding not allowed in 1xx or 204");
}
if (headers->ContentLength()) {
// Report a protocol error for non-zero Content-Length, but paper over zero Content-Length.
if (headers->ContentLength()->value().getStringView() != "0") {
sendProtocolError(Http1ResponseCodeDetails::get().ContentLengthNotAllowed);
throw CodecProtocolException(
"http/1.1 protocol error: content length not allowed in 1xx or 204");
}
headers->removeContentLength();
}
}
if (parser_.status_code == 100) {
// http-parser treats 100 continue headers as their own complete response.
// Swallow the spurious onMessageComplete and continue processing.
ignore_message_complete_for_100_continue_ = true;
pending_response_.value().decoder_->decode100ContinueHeaders(std::move(headers));
// Reset to ensure no information from the continue headers is used for the response headers
// in case the callee does not move the headers out.
headers_or_trailers_.emplace<ResponseHeaderMapPtr>(nullptr);
} else if (cannotHaveBody() && !handling_upgrade_) {
deferred_end_stream_headers_ = true;
} else {
pending_response_.value().decoder_->decodeHeaders(std::move(headers), false);
}
}
// Here we deal with cases where the response cannot have a body, but http_parser does not deal
// with it for us.
return cannotHaveBody() ? 1 : 0;
}
bool ClientConnectionImpl::upgradeAllowed() const {
if (pending_response_.has_value()) {
return pending_response_->encoder_.upgradeRequest();
}
return false;
}
void ClientConnectionImpl::onBody(Buffer::Instance& data) {
ASSERT(!deferred_end_stream_headers_);
if (pending_response_.has_value()) {
ASSERT(!pending_response_done_);
pending_response_.value().decoder_->decodeData(data, false);
}
}
void ClientConnectionImpl::onMessageComplete() {
ENVOY_CONN_LOG(trace, "message complete", connection_);
if (ignore_message_complete_for_100_continue_) {
ignore_message_complete_for_100_continue_ = false;
return;
}
if (pending_response_.has_value()) {
ASSERT(!pending_response_done_);
// After calling decodeData() with end stream set to true, we should no longer be able to reset.
PendingResponse& response = pending_response_.value();
// Encoder is used as part of decode* calls later in this function so pending_response_ can not
// be reset just yet. Preserve the state in pending_response_done_ instead.
pending_response_done_ = true;
if (deferred_end_stream_headers_) {
response.decoder_->decodeHeaders(
std::move(absl::get<ResponseHeaderMapPtr>(headers_or_trailers_)), true);
deferred_end_stream_headers_ = false;
} else if (processing_trailers_) {
response.decoder_->decodeTrailers(
std::move(absl::get<ResponseTrailerMapPtr>(headers_or_trailers_)));
} else {
Buffer::OwnedImpl buffer;
response.decoder_->decodeData(buffer, true);
}
// Reset to ensure no information from one requests persists to the next.
pending_response_.reset();
headers_or_trailers_.emplace<ResponseHeaderMapPtr>(nullptr);
}
}
void ClientConnectionImpl::onResetStream(StreamResetReason reason) {
// Only raise reset if we did not already dispatch a complete response.
if (pending_response_.has_value() && !pending_response_done_) {
pending_response_.value().encoder_.runResetCallbacks(reason);
pending_response_done_ = true;
pending_response_.reset();
}
}
void ClientConnectionImpl::sendProtocolError(absl::string_view details) {
if (pending_response_.has_value()) {
ASSERT(!pending_response_done_);
pending_response_.value().encoder_.setDetails(details);
}
}
void ClientConnectionImpl::onAboveHighWatermark() {
// This should never happen without an active stream/request.
pending_response_.value().encoder_.runHighWatermarkCallbacks();
}
void ClientConnectionImpl::onBelowLowWatermark() {
// This can get called without an active stream/request when the response completion causes us to
// close the connection, but in doing so go below low watermark.
if (pending_response_.has_value() && !pending_response_done_) {
pending_response_.value().encoder_.runLowWatermarkCallbacks();
}
}
} // namespace Http1
} // namespace Legacy
} // namespace Http
} // namespace Envoy
| [
"[email protected]"
] | |
d040830a7beec156aaf73d0f9c192e1de5f0d9a4 | 17ccc1c1b2558ddf605621360ce7abe41595a0dc | /qprog/libs/cppitertools/test/test_permutations.cpp | 68fa24f9ac2ec264369e5b541a6489d6eff71aa6 | [
"BSD-2-Clause"
] | permissive | yoyonel/bablib | 43da5684eff58e78a79ce82e931a072e9addef0f | 89c532386160a5a23fd6f42b3b3bb8974a0d4005 | refs/heads/master | 2020-12-24T14:27:10.565023 | 2016-01-16T17:14:12 | 2016-01-16T17:14:12 | 37,137,759 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,599 | cpp | #include <permutations.hpp>
#include "helpers.hpp"
#include <vector>
#include <string>
#include <iterator>
#include "catch.hpp"
using iter::permutations;
using IntPermSet = std::multiset<std::vector<int>>;
TEST_CASE("permutations: basic test, 3 element sequence", "[permutations]") {
const std::vector<int> ns = {1, 7, 9};
auto p = permutations(ns);
IntPermSet v;
for (auto&& st : p) {
v.emplace(std::begin(st), std::end(st));
}
const IntPermSet vc = {
{1, 7, 9}, {1, 9, 7}, {7, 1, 9}, {7, 9, 1}, {9, 1, 7}, {9, 7, 1}};
REQUIRE(v == vc);
}
TEST_CASE(
"permutations: empty sequence has one empy permutation", "[permutations]") {
const std::vector<int> ns{};
auto p = permutations(ns);
auto it = std::begin(p);
REQUIRE((*it).empty());
it++;
REQUIRE(it == std::end(p));
}
TEST_CASE("permutations: iterators can be compared", "[permutations]") {
const std::vector<int> ns = {1, 2};
auto p = permutations(ns);
auto it = std::begin(p);
REQUIRE(it == std::begin(p));
REQUIRE_FALSE(it != std::begin(p));
REQUIRE(it != std::end(p));
REQUIRE_FALSE(it == std::end(p));
++it;
REQUIRE_FALSE(it == std::begin(p));
REQUIRE(it != std::begin(p));
REQUIRE_FALSE(it == std::end(p));
REQUIRE(it != std::end(p));
++it;
REQUIRE(it == std::end(p));
REQUIRE_FALSE(it != std::end(p));
}
TEST_CASE("permutations: binds to lvalues, moves rvalues", "[permutations]") {
itertest::BasicIterable<int> bi{1, 2};
SECTION("binds to lvalues") {
permutations(bi);
REQUIRE_FALSE(bi.was_moved_from());
}
SECTION("moves rvalues") {
permutations(std::move(bi));
REQUIRE(bi.was_moved_from());
}
}
namespace itertest {
bool operator<(const SolidInt& lhs, const SolidInt& rhs) {
return lhs.getint() < rhs.getint();
}
}
TEST_CASE("permutations doesn't move or copy elements of iterable",
"[permutations]") {
constexpr itertest::SolidInt arr[] = {{1}, {0}, {2}};
for (auto&& st : permutations(arr)) {
(void)st;
}
}
TEST_CASE("permutations: iterator meets requirements", "[permutations]") {
std::string s{"abc"};
auto c = permutations(s);
REQUIRE(itertest::IsIterator<decltype(std::begin(c))>::value);
auto&& row = *std::begin(c);
REQUIRE(itertest::IsIterator<decltype(std::begin(row))>::value);
}
template <typename T>
using ImpT = decltype(permutations(std::declval<T>()));
TEST_CASE("permutations: has correct ctor and assign ops", "[permutations]") {
REQUIRE(itertest::IsMoveConstructibleOnly<ImpT<std::string&>>::value);
REQUIRE(itertest::IsMoveConstructibleOnly<ImpT<std::string>>::value);
}
| [
"[email protected]"
] | |
9895f0174edeb0068030dbf0d4f52dac00b3e37d | 4ede9fb3478e7e4f3697a1996d9f961a5a1afda7 | /day03/ChineseChessTest/widget.h | 403bee74deb0adde3290c757e25e8f536a49ba29 | [
"MIT"
] | permissive | lvzl20/QtTest1 | b9ec6caf89bd94b92e2ca757f2ba45778bbf4703 | b5df4f93530763b3aeada3499b1b4695c49c0c04 | refs/heads/main | 2023-05-15T22:58:56.489823 | 2021-06-19T15:36:22 | 2021-06-19T15:36:22 | 372,178,626 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,095 | h | #ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QLabel>
#include "chess.h"
QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACE
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = nullptr);
~Widget();
protected:
// 绘图事件
void paintEvent(QPaintEvent *) override;
// 鼠标按下,移动事件
void mousePressEvent(QMouseEvent *event) override;
void mouseMoveEvent(QMouseEvent*)override;
private:
void init(); // 初始化棋子
bool getChess(int x, int y, int flag); // 在没有选择棋子的情况下,flag = 0得到当前坐标下的棋子传给curSelectChess,当前坐标不在棋子范围则返回false
// flag = 1 得到目标区域的棋子,如果目标区域没有棋子则返回false
// flag = 2 代表仅判断是否有棋子
bool moveTo(int x, int y); // 已经选择了棋子的情况下,将棋子移动, 返回true代表棋子移动一次
// 不同类型的棋子移动, 返回值为是否成功移动
bool moveArmyTo(int,int,bool);
bool movePaoTo(int,int,bool);
bool moveCarTo(int,int,bool);
bool moveHorseTo(int,int,bool);
bool moveXiangTo(int,int,bool);
bool moveShiTo(int,int,bool);
bool moveMasteTo(int,int,bool);
bool done(); // 判断是否游戏结束
// bool isWillDie();// 判断是否被将军
int areaBlong(int logicY); // 传入逻辑y值(单位为棋盘的格子)判断当前所在红方还是黑方区域
void reUpdate(); // 更新棋盘
//signals:
// void mysignal();
private:
Ui::Widget *ui;
QPoint point;
// 棋子大小 即 格子大小
int ChessSize;
int oldLogicX; // 记录棋子移动前的位置,用于显示光标
int oldLogicY;
int curToGo; // 当前行棋的是哪一方
// 32个棋子
Chess chess[32];
QLabel* label[32];
Chess* curSelectChess; // 当前点击的棋子
Chess* curToChess; // 将要覆盖掉的棋子
};
#endif // WIDGET_H
| [
"[email protected]"
] | |
2b5593dd811aa94178d90735554ffe174a8c5180 | 1caffa74a68ba8bbd2eb2476492f9b641cca110a | /gframework/bases/InterruptLock.hpp | 4239d1031cf747b5686bba04c42c83caa41b5435 | [] | no_license | gabrieloliveirabrito/GFramework-Arduino | fe4d89fc2f12eeb7292cf0a45756ef3b73e52857 | b23f991715ddcf3a5a3b9c801cd6ec1618de51b5 | refs/heads/master | 2023-07-13T12:34:17.170753 | 2021-08-23T15:21:55 | 2021-08-23T15:21:55 | 391,129,265 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 237 | hpp | #pragma once
class InterruptLock
{
public:
InterruptLock()
{
#if !defined(ARDUINO_ARCH_NRF52)
noInterrupts();
#endif
}
~InterruptLock()
{
#if !defined(ARDUINO_ARCH_NRF52)
interrupts();
#endif
}
}; | [
"[email protected]"
] | |
07664d4e7e26df5b2bcdc9d8e947bebeba1df1d7 | a4f9e159fd976daa151a3cb2635e6bdc70d7b733 | /escomm/escomm_ecc.cpp | 9f673613850b6bbe5f7e46c51c67e555835bf509 | [] | no_license | vgromov/esfwx | 6d77f9303de3b8391a26bbbc41d117de851bf64d | c727752378cad36d32cb344f916d87cd84ea0830 | refs/heads/master | 2021-07-08T03:08:17.442342 | 2020-07-30T10:01:58 | 2020-07-30T10:01:58 | 166,006,433 | 0 | 0 | null | 2020-07-30T10:01:59 | 2019-01-16T08:51:10 | C++ | UTF-8 | C++ | false | false | 310 | cpp | #include "escommpch.h"
#pragma hdrstop
#if ES_COMPILER_VENDOR != ES_COMPILER_VENDOR_BORLAND
# error This file must be used for Embarcadero projects only!
#endif
#pragma package(smart_init)
#include "autolink.cxx"
#pragma argsused
extern "C" int _libmain(unsigned long reason)
{
return 1;
}
| [
"[email protected]"
] | |
becdde2298a41bce3033166345470bca59dedc15 | 37354fbd8d7c457d58d0b634c673271efaf86872 | /ResourceManager.h | 2dccc07fc86ddd884b21fc05e5e99c9ff08e184f | [] | no_license | Emorgas/Tower-Defence | 9b4d131a002312c97a9f6843602cd679bd9d7e26 | 1d70a1db2ced835f0eab41676e15d79619fc133d | refs/heads/master | 2020-03-07T01:18:47.136418 | 2018-05-12T11:38:14 | 2018-05-12T11:38:14 | 126,077,978 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,073 | h | #pragma once
#include <map>
#include <SDL.h>
#include <SDL_image.h>
#include "TextureResource.h"
namespace Engine
{
class ResourceManager
{
public:
static ResourceManager& GetInstance();
ResourceManager(ResourceManager const&) = delete;
void operator=(ResourceManager const&) = delete;
void Init(SDL_Renderer * renderer);
void CleanupResources();
void LoadTexturesFromFile(const std::string &file, SDL_Renderer *renderer);
void LoadTextureAtlasFromJSON(const std::string &file, const std::string &imagePath, SDL_Renderer *renderer);
TextureResource* GetTextureResource(const std::string &resourceName);
private:
ResourceManager() { }
std::map<std::string, TextureResource*> _textures;
const std::string _defaultImagePath = "res\\images\\defaultImage.png";
const std::string _defaultImageName = "defaultImage";
void AddTextureResource(const std::string &file, const std::string &resourceName, SDL_Renderer *renderer, SDL_Rect *srcRect);
void AddTextureResource(SDL_Texture *tex, const std::string &resourceName, SDL_Rect *srcRect);
};
} | [
"[email protected]"
] | |
82a0a89e14c3a87b795aaf6ce6172ccb2cded8fd | 9792ac443f3bf57b660b2c35297da029b2ee8d46 | /mergesort and inversion count.cpp | e1e42b48864cf30adaf54acd45a27367613c42fd | [] | no_license | adarsh1github1/Competetive-codeforces-codechef- | 8a84f83b3711d251ece77af3900d24060086a383 | 63a12f255174211f279fabbda4c5ea54f3c46112 | refs/heads/master | 2022-11-11T17:04:12.482099 | 2020-07-06T15:49:18 | 2020-07-06T15:49:18 | 263,350,522 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,070 | cpp | #include <bits/stdc++.h>
using namespace std;
int merge(vector<int> A,int temp[],int l,int mid, int high)
{
int inv_count=0;
int i,j,k;
i=l;
j=mid;
k=l;
while(i <= mid-1 && j <= high)
{
if(A[i] <= A[j])
{
temp[k++] = A[i++];
}
else
{
temp[k++] = A[j++];
inv_count+= mid-i;
}
}
while(i<=mid-1)
temp[k++] = A[i++];
while(j<=high)
temp[k++] = A[j++];
for(i=l;i<=high;i++)
A[i] = temp[i];
return inv_count;
}
int _mergesort(vector<int> A,int temp[],int l,int h)
{
int count=0,mid;
if(l<h)
{
mid = (l+h)/2;
count+=_mergesort(A,temp, l,mid);
count+=_mergesort(A,temp,mid+1,h);
count+=merge(A,temp,l,mid+1,h);
}
return count;
}
int mergesort(vector<int> A)
{
int n = A.size();
int* temp = (int*)malloc(sizeof(int) * A.size());
return _mergesort(A,temp,0,n-1);
}
int main()
{
vector<int> A;
int n;
cin>>n;
for(int i=0;i<n;i++){
int x;
cin>>x;
A.push_back(x);
}
cout<<mergesort(A);
return 0;
}
| [
"[email protected]"
] | |
bac1f2b22b8602d410e7fb2b16ca219def59a1ac | cefd6c17774b5c94240d57adccef57d9bba4a2e9 | /Crypto/testsuite/src/RSATest.cpp | 556e9fd990791aa5308c13227b023045d19cd99f | [
"BSL-1.0"
] | permissive | adzhou/oragle | 9c054c25b24ff0a65cb9639bafd02aac2bcdce8b | 5442d418b87d0da161429ffa5cb83777e9b38e4d | refs/heads/master | 2022-11-01T05:04:59.368831 | 2014-03-12T15:50:08 | 2014-03-12T15:50:08 | 17,238,063 | 0 | 1 | BSL-1.0 | 2022-10-18T04:23:53 | 2014-02-27T05:39:44 | C++ | UTF-8 | C++ | false | false | 8,995 | cpp | //
// RSATest.cpp
//
// $Id: //poco/1.4/Crypto/testsuite/src/RSATest.cpp#1 $
//
// Copyright (c) 2008, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompanying documentation covered by
// this license (the "Software") to use, reproduce, display, distribute,
// execute, and transmit the Software, and to prepare derivative works of the
// Software, and to permit third-parties to whom the Software is furnished to
// do so, all subject to the following:
//
// The copyright notices in the Software and this entire statement, including
// the above license grant, this restriction and the following disclaimer,
// must be included in all copies of the Software, in whole or in part, and
// all derivative works of the Software, unless such copies or derivative
// works are solely in the form of machine-executable object code generated by
// a source language processor.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
#include "RSATest.h"
#include "CppUnit/TestCaller.h"
#include "CppUnit/TestSuite.h"
#include "Poco/Crypto/RSADigestEngine.h"
#include "Poco/Crypto/CipherFactory.h"
#include "Poco/Crypto/Cipher.h"
#include "Poco/Crypto/X509Certificate.h"
#include <sstream>
using namespace Poco::Crypto;
static const std::string anyPem(
"-----BEGIN CERTIFICATE-----\r\n"
"MIICaDCCAdECCQCzfxSsk7yaLjANBgkqhkiG9w0BAQUFADBzMQswCQYDVQQGEwJB\r\n"
"VDESMBAGA1UECBMJQ2FyaW50aGlhMRIwEAYDVQQHEwlTdC4gSmFrb2IxDzANBgNV\r\n"
"BAoTBkFwcEluZjEPMA0GA1UEAxMGQXBwSW5mMRowGAYJKoZIhvcNAQkBFgthcHBA\r\n"
"aW5mLmNvbTAeFw0wNjAzMDExMzA3MzFaFw0wNjAzMzExMzA3MzFaMH4xCzAJBgNV\r\n"
"BAYTAkFUMRIwEAYDVQQIEwlDYXJpbnRoaWExETAPBgNVBAcTCFN0IEpha29iMRww\r\n"
"GgYDVQQKExNBcHBsaWVkIEluZm9ybWF0aWNzMQowCAYDVQQDFAEqMR4wHAYJKoZI\r\n"
"hvcNAQkBFg9pbmZvQGFwcGluZi5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJ\r\n"
"AoGBAJHGyXDHyCYoWz+65ltNwwZbhwOGnxr9P1WMATuFJh0bPBZxKbZRdbTm9KhZ\r\n"
"OlvsEIsfgiYdsxURYIqXfEgISYLZcZY0pQwGEOmB+0NeC/+ENSfOlNSthx6zSVlc\r\n"
"zhJ7+dJOGwepHAiLr1fRuc5jogYLraE+lKTnqAAFfzwvti77AgMBAAEwDQYJKoZI\r\n"
"hvcNAQEFBQADgYEAY/ZoeY1ukkEJX7259NeoVM0oahlulWV0rlCqyaeosOiDORPT\r\n"
"m6X1w/5MTCf9VyaD1zukoSZ4QqNVjHFXcXidbB7Tgt3yRuZ5PC5LIFCDPv9mgPne\r\n"
"mUA70yfctNfza2z3ZiQ6NDkW3mZX+1tmxYIrJQIrkVeYeqf1Gh2nyZrUMcE=\r\n"
"-----END CERTIFICATE-----\r\n"
"-----BEGIN RSA PRIVATE KEY-----\r\n"
"Proc-Type: 4,ENCRYPTED\r\n"
"DEK-Info: DES-EDE3-CBC,E7AE93C9E49184EA\r\n"
"\r\n"
"A2IqzNcWs+I5vzV+i+woDk56+yr58eU0Onw8eEvXkLjnSc58JU4327IF7yUbKWdW\r\n"
"Q7BYGGOkVFiZ7ANOwviDg5SUhxRDWCcW8dS6/p1vfdQ1C3qj2OwJjkpg0aDBIzJn\r\n"
"FzgguT3MF3ama77vxv0S3kOfmCj62MLqPGpj5pQ0/1hefRFbL8oAX8bXUN7/rmGM\r\n"
"Zc0QyzFZv2iQ04dY/6TNclwKPB4H0On4K+8BMs3PRkWA0clCaQaFO2+iwnk3XZfe\r\n"
"+MsKUEbLCpAQeYspYv1cw38dCdWq1KTP5aJk+oXgwjfX5cAaPTz74NTqTIsCcaTD\r\n"
"3vy7ukJYFlDR9Kyo7z8rMazYrKJslhnuRH0BhK9st9McwL957j5tZmrKyraCcmCx\r\n"
"dMAGcsis1va3ayYZpIpFqA4EhYrTM+6N8ZRfUap20+b5IQwHfTQDejUhL6rBwy7j\r\n"
"Ti5yD83/itoOMyXq2sV/XWfVD5zk/P5iv22O1EAQMhhnPB9K/I/JhuSGQJfn3cNh\r\n"
"ykOUYT0+vDeSeEVa+FVEP1W35G0alTbKbNs5Tb8KxJ3iDJUxokM//SvPXZy9hOVX\r\n"
"Y05imB04J15DaGbAHlNzunhuJi7121WV/JRXZRW9diE6hwpD8rwqi3FMuRUmy7U9\r\n"
"aFA5poKRAYlo9YtZ3YpFyjGKB6MfCQcB2opuSnQ/gbugV41m67uQ4CDwWLaNRkTb\r\n"
"GlsMBNcHnidg15Bsat5HaB7l250ukrI13Uw1MYdDUzaS3gPfw9aC4F2w0p3U+DPH\r\n"
"80/zePxtroR7T4/+rI136Rl+aMXDMOEGCX1TVP8rjuZzuRyUSUKC8Q==\r\n"
"-----END RSA PRIVATE KEY-----\r\n"
"-----BEGIN CERTIFICATE-----\r\n"
"MIICXTCCAcYCCQC1Vk/N8qR4AjANBgkqhkiG9w0BAQUFADBzMQswCQYDVQQGEwJB\r\n"
"VDESMBAGA1UECBMJQ2FyaW50aGlhMRIwEAYDVQQHEwlTdC4gSmFrb2IxDzANBgNV\r\n"
"BAoTBkFwcEluZjEPMA0GA1UEAxMGQXBwSW5mMRowGAYJKoZIhvcNAQkBFgthcHBA\r\n"
"aW5mLmNvbTAeFw0wNjAyMjcxMzI3MThaFw0wNjAzMjkxMzI3MThaMHMxCzAJBgNV\r\n"
"BAYTAkFUMRIwEAYDVQQIEwlDYXJpbnRoaWExEjAQBgNVBAcTCVN0LiBKYWtvYjEP\r\n"
"MA0GA1UEChMGQXBwSW5mMQ8wDQYDVQQDEwZBcHBJbmYxGjAYBgkqhkiG9w0BCQEW\r\n"
"C2FwcEBpbmYuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCsFXiPuicN\r\n"
"Im4oJwF8NuaFN+lgYwcZ6dAO3ILIR3kLA2PxF8HSQLfF8J8a4odZhLhctIMAKTxm\r\n"
"k0w8TW5qhL8QLdGzY9vzvkgdKOkan2t3sMeXJAfrM1AphTsmgntAQazGZjOj5p4W\r\n"
"jDnxQ+VXAylqwjHh49eSBxM3wgoscF4iLQIDAQABMA0GCSqGSIb3DQEBBQUAA4GB\r\n"
"AIpfLdXiKchPvFMhQS8xTtXvrw5dVL3yImUMYs4GQi8RrjGmfGB3yMAR7B/b8v4a\r\n"
"+ztfusgWAWiUKuSGTk4S8YB0fsFlmOv0WDr+PyZ4Lui/a8opbyzGE7rqpnF/s0GO\r\n"
"M7uLCNNwIN7WhmxcWV0KZU1wTppoSWPJda1yTbBzF9XP\r\n"
"-----END CERTIFICATE-----\r\n"
);
RSATest::RSATest(const std::string& name): CppUnit::TestCase(name)
{
}
RSATest::~RSATest()
{
}
void RSATest::testNewKeys()
{
RSAKey key(RSAKey::KL_1024, RSAKey::EXP_SMALL);
std::ostringstream strPub;
std::ostringstream strPriv;
key.save(&strPub, &strPriv, "testpwd");
std::string pubKey = strPub.str();
std::string privKey = strPriv.str();
// now do the round trip
std::istringstream iPub(pubKey);
std::istringstream iPriv(privKey);
RSAKey key2(&iPub, &iPriv, "testpwd");
std::istringstream iPriv2(privKey);
RSAKey key3(0, &iPriv2, "testpwd");
std::ostringstream strPub3;
key3.save(&strPub3);
std::string pubFromPrivate = strPub3.str();
assert (pubFromPrivate == pubKey);
}
void RSATest::testSign()
{
std::string msg("Test this sign message");
RSAKey key(RSAKey::KL_2048, RSAKey::EXP_LARGE);
RSADigestEngine eng(key);
eng.update(msg.c_str(), static_cast<unsigned>(msg.length()));
const Poco::DigestEngine::Digest& sig = eng.signature();
std::string hexDig = Poco::DigestEngine::digestToHex(sig);
// verify
std::ostringstream strPub;
key.save(&strPub);
std::string pubKey = strPub.str();
std::istringstream iPub(pubKey);
RSAKey keyPub(&iPub);
RSADigestEngine eng2(key);
eng2.update(msg.c_str(), static_cast<unsigned>(msg.length()));
assert (eng2.verify(sig));
}
void RSATest::testSignManipulated()
{
std::string msg("Test this sign message");
std::string msgManip("Test that sign message");
RSAKey key(RSAKey::KL_2048, RSAKey::EXP_LARGE);
RSADigestEngine eng(key);
eng.update(msg.c_str(), static_cast<unsigned>(msg.length()));
const Poco::DigestEngine::Digest& sig = eng.signature();
std::string hexDig = Poco::DigestEngine::digestToHex(sig);
// verify
std::ostringstream strPub;
key.save(&strPub);
std::string pubKey = strPub.str();
std::istringstream iPub(pubKey);
RSAKey keyPub(&iPub);
RSADigestEngine eng2(key);
eng2.update(msgManip.c_str(), static_cast<unsigned>(msgManip.length()));
assert (!eng2.verify(sig));
}
void RSATest::testRSACipher()
{
Cipher::Ptr pCipher = CipherFactory::defaultFactory().createCipher(RSAKey(RSAKey::KL_1024, RSAKey::EXP_SMALL));
for (std::size_t n = 1; n <= 1200; n++)
{
std::string val(n, 'x');
std::string enc = pCipher->encryptString(val);
std::string dec = pCipher->decryptString(enc);
assert (dec == val);
}
}
void RSATest::testRSACipherLarge()
{
std::vector<std::size_t> sizes;
sizes.push_back (2047);
sizes.push_back (2048);
sizes.push_back (2049);
sizes.push_back (4095);
sizes.push_back (4096);
sizes.push_back (4097);
sizes.push_back (8191);
sizes.push_back (8192);
sizes.push_back (8193);
sizes.push_back (16383);
sizes.push_back (16384);
sizes.push_back (16385);
Cipher::Ptr pCipher = CipherFactory::defaultFactory().createCipher(RSAKey(RSAKey::KL_1024, RSAKey::EXP_SMALL));
for (std::vector<std::size_t>::const_iterator it = sizes.begin(); it != sizes.end(); ++it)
{
std::string val(*it, 'x');
std::string enc = pCipher->encryptString(val);
std::string dec = pCipher->decryptString(enc);
assert (dec == val);
}
}
void RSATest::testCertificate()
{
std::istringstream str(anyPem);
X509Certificate cert(str);
RSAKey publicKey(cert);
std::istringstream str2(anyPem);
RSAKey privateKey(0, &str2, "test");
Cipher::Ptr pCipher = CipherFactory::defaultFactory().createCipher(publicKey);
Cipher::Ptr pCipher2 = CipherFactory::defaultFactory().createCipher(privateKey);
std::string val("lets do some encryption");
std::string enc = pCipher->encryptString(val);
std::string dec = pCipher2->decryptString(enc);
assert (dec == val);
}
void RSATest::setUp()
{
}
void RSATest::tearDown()
{
}
CppUnit::Test* RSATest::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("RSATest");
CppUnit_addTest(pSuite, RSATest, testNewKeys);
CppUnit_addTest(pSuite, RSATest, testSign);
CppUnit_addTest(pSuite, RSATest, testSignManipulated);
CppUnit_addTest(pSuite, RSATest, testRSACipher);
CppUnit_addTest(pSuite, RSATest, testRSACipherLarge);
CppUnit_addTest(pSuite, RSATest, testCertificate);
return pSuite;
}
| [
"[email protected]"
] | |
b937a0cb61a04730349d0eed12570dbd97271550 | 0484f5f227abbf5dc3a7f6310f0d2cac26633e00 | /UVa/156 - Ananagrams.cpp | 853f88c989748b43e92f89c5647f21f43a84efe8 | [] | no_license | LiboMa/Competitive-Programming | 826d32bcc116acdb5993e842a5a17786ce27c528 | 016e9ad599276dc1549ef4fa389658b2126098eb | refs/heads/master | 2020-12-11T03:43:30.861873 | 2015-10-25T17:12:08 | 2015-10-25T17:12:08 | 45,236,810 | 0 | 1 | null | 2015-10-30T07:55:16 | 2015-10-30T07:55:16 | null | UTF-8 | C++ | false | false | 1,575 | cpp | /*
156 - Ananagrams
UVa Online Judge
Esteban Arango Medina
Solution.
Ad Hoc, I used a map (string, pair<string,int>) to count how many times appears one letter and then just print
those that appears once.
Note.
Didn't know how to convert a string to upper or lower case.
http://notfaq.wordpress.com/2007/08/04/cc-convert-string-to-upperlower-case/
*/
#include <algorithm>
#include <iostream>
#include <iterator>
#include <numeric>
#include <sstream>
#include <fstream>
#include <cassert>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cstdio>
#include <vector>
#include <cmath>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
using namespace std;
int main(){
map <string, pair<string,int> > words;
vector<string> result;
string word,wordSorted;cin>>word;
while(word != "#"){
wordSorted=word;
transform(wordSorted.begin(), wordSorted.end(),wordSorted.begin(),::toupper);
sort(wordSorted.begin(),wordSorted.end());
words[wordSorted].first=word;
words[wordSorted].second++;
cin>>word;
}
map<string, pair<string,int> >::const_iterator itr;
for(itr = words.begin(); itr != words.end(); ++itr){
if((*itr).second.second == 1)
result.push_back((*itr).second.first);
}
sort(result.begin(),result.end());
int total = result.size();
for (int i = 0; i < total; ++i)
{
cout<<result[i]<<endl;
}
return 0;
} | [
"[email protected]"
] | |
c72ef323c2886c809cdb51af14a23853c8b2b2f8 | 8fc07a2acf52daf6c68fa3e87be1d7d801467ac3 | /LongestImprovement.cpp | 933ede89191edd0bff65c7d03cf8bd631dcefabf | [] | no_license | nclandrei/ProgChallenges | cba1518e5576ac83b64788e044378f5a67338100 | 0a331bce4bf55a0c0b98ea5eab32597501d3c09b | refs/heads/master | 2020-06-01T15:04:59.107408 | 2014-10-28T16:31:21 | 2014-10-28T16:31:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 313 | cpp | #include <iostream>
#include <vector>
void longest_improvement(const vector<int> &grades) {
int max = 1,k=1;
for(int i=0;i<grades.size()-1;i++){
if(grades[i] <= grades[i+1])
k++;
else
k=1;
if(max<k)
max=k;}
std::cout << max << std::endl;
}
| [
"[email protected]"
] | |
cb10620aba1f70cac49bb6e675ada35b85c90ec1 | 1dbde8d4953e9e0aa6901d3f680d3cc838940da1 | /partie6/src/Stats/Stats.cpp | 996c648efc95ae91a0863cd23f07058527627889 | [] | no_license | Arturjssln/project_prog_wolf_sheep | c5cace75a2f8b090627a878fa26abf029040e197 | 1105ba33b0bfebce7768e62d73ad78c5e8ccebaa | refs/heads/master | 2020-09-15T23:32:57.535372 | 2019-11-23T12:24:05 | 2019-11-23T12:24:05 | 223,584,564 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,963 | cpp | #include "Stats.hpp"
#include "Application.hpp"
int Stats::getActive() const {
return activeIdentifier;
}
void Stats::setActive(int identifier) {
activeIdentifier = identifier;
}
void Stats::reset() {
for (auto& paire : graphs) {
paire.second->reset();
}
}
void Stats::addGraph(int activeId, std::string libelle, std::vector<std::string> const& series, double min, double max, Vec2d tailleGraphes) {
//Si il n'existe pas encore de paire avec cet identifiant, alors on en créé une dans libelles et dans graphs
if(libelles.count(activeId) == 0) {
libelles.insert(std::make_pair(activeId, libelle));
graphs.insert(std::make_pair(activeId, std::unique_ptr<Graph>(new Graph(series, tailleGraphes, min, max))));
} else {
//Sinon on reset le graph déja existant et on la remplace par un nouveau
libelles[activeId] = libelle;
graphs[activeId]->reset();
graphs[activeId] = std::unique_ptr<Graph>(new Graph(series, tailleGraphes, min, max));
}
setActive(activeId);
}
void Stats::update(sf::Time dt) {
if (refreshTime <= sf::Time::Zero) {
refreshTime = sf::seconds(getAppConfig().stats_refresh_rate);
for (auto& pair : graphs) {
//2e argument : On vérifie que le graph est actif pour mettre à jour ses données, sinon fetchData retournera une map vide
std::unordered_map<std::string, double> new_data(getAppEnv().fetchData(libelles[pair.first], activeIdentifier == pair.first));
if (!new_data.empty()) {
pair.second->updateData(refreshTime, new_data);
}
}
}
refreshTime -= dt;
}
void Stats::drawOn(sf::RenderTarget& targetWindow) {
//Si la clé (activeIdentifier) correspond bien à un graph, alors on le dessine
if(graphs.count(activeIdentifier) != 0 and activeIdentifier != -1) graphs[activeIdentifier]->drawOn(targetWindow);
}
void Stats::focusOn (std::string libelle) {
for (auto paire : libelles) {
if (paire.second == libelle) {
setActive(paire.first);
graphs[paire.first]->reset();
}
}
}
| [
"[email protected]"
] | |
caa3e7a4446413ad30083fd322fca0aedfa884f1 | c0376f9eb4eb1adf2db5aff3d25abc3576d0241b | /src/plugins/secman/interfaces/secman/istorageplugin.h | ba042974792f60f1d5279ebd6e09e7eb3edfe057 | [
"BSL-1.0"
] | permissive | ROOAARR/leechcraft | 0179e6f1e7c0b7afbfcce60cb810d61bd558b163 | 14bc859ca750598b77abdc8b2d5b9647c281d9b3 | refs/heads/master | 2021-01-17T22:08:16.273024 | 2013-08-05T12:28:45 | 2013-08-05T12:28:45 | 2,217,574 | 1 | 0 | null | 2013-01-19T15:32:47 | 2011-08-16T18:55:44 | C++ | UTF-8 | C++ | false | false | 2,833 | h | /**********************************************************************
* LeechCraft - modular cross-platform feature rich internet client.
* Copyright (C) 2006-2013 Georg Rudoy
*
* Boost Software License - Version 1.0 - August 17th, 2003
*
* Permission is hereby granted, free of charge, to any person or organization
* obtaining a copy of the software and accompanying documentation covered by
* this license (the "Software") to use, reproduce, display, distribute,
* execute, and transmit the Software, and to prepare derivative works of the
* Software, and to permit third-parties to whom the Software is furnished to
* do so, all subject to the following:
*
* The copyright notices in the Software and this entire statement, including
* the above license grant, this restriction and the following disclaimer,
* must be included in all copies of the Software, in whole or in part, and
* all derivative works of the Software, unless such copies or derivative
* works are solely in the form of machine-executable object code generated by
* a source language processor.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
* SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
* FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
**********************************************************************/
#ifndef PLUGINS_SECMAN_INTERFACES_ISTORAGEPLUGIN_H
#define PLUGINS_SECMAN_INTERFACES_ISTORAGEPLUGIN_H
#include <QtPlugin>
#include <QFlags>
namespace LeechCraft
{
namespace Plugins
{
namespace SecMan
{
class IStoragePlugin
{
public:
virtual ~IStoragePlugin () {}
enum StorageType
{
STInsecure,
STSecure
};
Q_DECLARE_FLAGS (StorageTypes, StorageType)
virtual StorageTypes GetStorageTypes () const = 0;
virtual QList<QByteArray> ListKeys (StorageType st = STInsecure) = 0;
virtual void Save (const QByteArray& key,
const QVariantList& value,
StorageType st = STInsecure,
bool overwrite = false) = 0;
virtual QVariantList Load (const QByteArray& key, StorageType st = STInsecure) = 0;
virtual void Save (const QList<QPair<QByteArray, QVariantList>>& keyValues,
StorageType st = STInsecure,
bool overwrite = false) = 0;
virtual QList<QVariantList> Load (const QList<QByteArray>& keys, StorageType st = STInsecure) = 0;
};
}
}
}
Q_DECLARE_INTERFACE (LeechCraft::Plugins::SecMan::IStoragePlugin,
"org.Deviant.LeechCraft.Plugins.SecMan.IStoragePlugin/1.0");
#endif
| [
"[email protected]"
] | |
469ffb44cd81209a595a4846abeef86d0958c4b5 | c1dd9f2b51fbaad9e7f3b485a977a2b7cd49545b | /motor-control/lib/rover5/rover5.h | 1f809fcd61d348e23deca6ec4df651420e8e6d2f | [] | no_license | punitsoni/rover | a3131d58cc80a73037de387a39e0849e3916c268 | a827c2359f97453338481be0b694204e310bb055 | refs/heads/master | 2020-04-06T16:17:46.797046 | 2017-05-22T07:22:58 | 2017-05-22T07:22:58 | 14,195,523 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 586 | h | #pragma once
#include "Arduino.h"
#include "motor.h"
const int NUM_WHEELS = 4;
enum wheel_type
{
WHEEL_FR = 0,
WHEEL_FL,
WHEEL_RR,
WHEEL_RL,
};
struct wheel_config
{
uint8_t pwm_pin;
uint8_t dir_pin;
uint8_t enc_pin;
};
struct rover_config
{
wheel_config wheels[NUM_WHEELS];
};
class rover5
{
public:
rover5(const rover_config *config);
void update();
private:
const rover_config *_config;
motor _motors[NUM_WHEELS];
static void enc0_isr();
static void enc1_isr();
static void enc2_isr();
static void enc3_isr();
};
| [
"[email protected]"
] | |
3d107b7967d94d77e217b23b1e0a1b994329b840 | 6c945f5861276389d565fc2326ddfd069f61e6a9 | /src/boost/spirit/home/classic/actor/typeof.hpp | 177f5303a24d20f543c3500a2fc523503149b583 | [] | no_license | Springhead/dependency | 3f78387d2a50439ce2edf7790a296026c6012fa3 | 05d4e6f9a3e9c21aae8db4b47573aa34058c4705 | refs/heads/master | 2023-04-23T23:40:13.402639 | 2021-05-08T05:55:22 | 2021-05-08T05:55:22 | 112,149,782 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,750 | hpp | /*=============================================================================
Copyright (c) 2006 Tobias Schwinger
http://spirit.sourceforge.net/
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#if !defined(BOOST_SPIRIT_ACTOR_TYPEOF_HPP)
#define BOOST_SPIRIT_ACTOR_TYPEOF_HPP
#include <boost/spirit/home/classic/namespace.hpp>
#include <boost/typeof/typeof.hpp>
namespace boost { namespace spirit {
BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
template<typename T, typename ActionT> class ref_actor;
template<typename T, typename ActionT> class ref_value_actor;
template<typename T, typename ValueT, typename ActionT>
class ref_const_ref_actor;
template<typename T, typename ValueT, typename ActionT>
class ref_const_ref_value_actor;
template<typename T, typename Value1T, typename Value2T, typename ActionT>
class ref_const_ref_const_ref_actor;
struct assign_action;
struct clear_action;
struct increment_action;
struct decrement_action;
struct push_back_action;
struct push_front_action;
struct insert_key_action;
struct insert_at_action;
struct assign_key_action;
template<typename T> class swap_actor;
BOOST_SPIRIT_CLASSIC_NAMESPACE_END
}} // namespace BOOST_SPIRIT_CLASSIC_NS
#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
BOOST_TYPEOF_REGISTER_TEMPLATE(BOOST_SPIRIT_CLASSIC_NS::ref_actor,2)
#if !defined(BOOST_SPIRIT_CORE_TYPEOF_HPP)
// this part also lives in the core master header and is deprecated there...
BOOST_TYPEOF_REGISTER_TEMPLATE(BOOST_SPIRIT_CLASSIC_NS::ref_value_actor,2)
BOOST_TYPEOF_REGISTER_TEMPLATE(BOOST_SPIRIT_CLASSIC_NS::ref_const_ref_actor,3)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::assign_action)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::push_back_action)
#endif
BOOST_TYPEOF_REGISTER_TEMPLATE(BOOST_SPIRIT_CLASSIC_NS::ref_const_ref_value_actor,3)
BOOST_TYPEOF_REGISTER_TEMPLATE(BOOST_SPIRIT_CLASSIC_NS::ref_const_ref_const_ref_actor,4)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::clear_action)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::increment_action)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::decrement_action)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::push_front_action)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::insert_key_action)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::insert_at_action)
BOOST_TYPEOF_REGISTER_TYPE(BOOST_SPIRIT_CLASSIC_NS::assign_key_action)
BOOST_TYPEOF_REGISTER_TEMPLATE(BOOST_SPIRIT_CLASSIC_NS::swap_actor,1)
#endif
| [
"[email protected]"
] | |
a63ad94630e1a26f8d21b47604cf4634693bad21 | 71de6d5cfbdd4283ae08625375de9452732948bc | /classes/graphics/backends/cairo/fontcairo.cpp | 173a1af377d6a722d395242da55d5eedede4eeb0 | [
"Artistic-1.0",
"Artistic-2.0"
] | permissive | masums/smooth | 1e036e56a5ae71570b87e034594e6b854870778b | 50dd4a9b6eee83efcf8bc4199573dbdef19a67c9 | refs/heads/master | 2023-06-14T09:10:20.991377 | 2021-07-09T19:52:11 | 2021-07-09T19:52:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,964 | cpp | /* The smooth Class Library
* Copyright (C) 1998-2021 Robert Kausch <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of "The Artistic License, Version 2.0".
*
* THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */
#include <smooth/graphics/backends/cairo/fontcairo.h>
#include <smooth/graphics/surface.h>
#include <smooth/files/file.h>
#include <smooth/foreach.h>
#include <smooth/init.h>
using namespace X11;
#include <cairo/cairo-xlib.h>
#include <pango/pangocairo.h>
#include <smooth/backends/xlib/backendxlib.h>
S::GUI::FontBackend *CreateFontCairo(const S::String &iFontName, S::Short iFontSize, S::Short iFontWeight, S::Short iFontStyle, const S::GUI::Color &iFontColor)
{
return new S::GUI::FontCairo(iFontName, iFontSize, iFontWeight, iFontStyle, iFontColor);
}
S::Int fontCairoTmp = S::GUI::FontBackend::SetBackend(&CreateFontCairo);
S::Int addFontCairoInitTmp = S::AddInitFunction(&S::GUI::FontCairo::Initialize);
S::Int S::GUI::FontCairo::Initialize()
{
Font::Default = "Helvetica";
String font = Backends::BackendXLib::QueryGSettings("org.gnome.desktop.interface", "font-name");
if (font != NIL)
{
Font::Default = font.SubString(1, font.FindLast(" ") - 1);
Setup::FontSize = font.SubString(font.FindLast(" ") + 1, font.Length() - font.FindLast(" ") - 2).ToFloat() / Font::DefaultSize;
}
return Success();
}
S::GUI::FontCairo::FontCairo(const String &iFontName, Short iFontSize, Short iFontWeight, Short iFontStyle, const Color &iFontColor) : FontBackend(iFontName, iFontSize, iFontWeight, iFontStyle, iFontColor)
{
type = FONT_CAIRO;
}
S::GUI::FontCairo::~FontCairo()
{
}
S::GUI::Size S::GUI::FontCairo::GetTextSize(const String &iText) const
{
if (iText == NIL) return Size();
String text = iText;
Int textLength = text.Length();
/* Set up Cairo font and calculate text size.
*/
Float dpi = Surface().GetSurfaceDPI();
cairo_surface_t *surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 0, 0);
cairo_t *context = cairo_create(surface);
PangoLayout *layout = pango_cairo_create_layout(context);
PangoFontDescription *desc = pango_font_description_from_string(String(fontName)
.Append(" ")
.Append(fontStyle & Font::Italic ? "Italic " : "")
.Append(fontWeight >= Font::Bold ? "Bold " : "")
.Append(String::FromInt(Math::Round(fontSize * dpi / 96.0))));
if (textLength > 0) pango_layout_set_text(layout, text.ConvertTo("UTF-8"), -1);
pango_layout_set_font_description(layout, desc);
pango_font_description_free(desc);
int x = 0;
int y = 0;
pango_layout_get_pixel_size(layout, &x, &y);
g_object_unref(layout);
cairo_destroy(context);
cairo_surface_destroy(surface);
return Size(x, y - 2);
}
| [
"[email protected]"
] | |
7f2212d8ad9eaac19b1fd0d2616f412f3eed2f99 | 1f63dde39fcc5f8be29f2acb947c41f1b6f1683e | /Boss2D/addon/_old/webrtc-qt5.11.2_for_boss/modules/video_capture/video_capture_defines.h | 638395c5579f331834b0a5304501fd5a03628759 | [
"MIT",
"LicenseRef-scancode-google-patent-license-webrtc",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"GPL-1.0-or-later",
"LicenseRef-scancode-takuya-ooura",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown",
"MS-LPL",
"LicenseRef-scancode-google-patent-license-webm"
] | permissive | koobonil/Boss2D | 09ca948823e0df5a5a53b64a10033c4f3665483a | e5eb355b57228a701495f2660f137bd05628c202 | refs/heads/master | 2022-10-20T09:02:51.341143 | 2019-07-18T02:13:44 | 2019-07-18T02:13:44 | 105,999,368 | 7 | 2 | MIT | 2022-10-04T23:31:12 | 2017-10-06T11:57:07 | C++ | UTF-8 | C++ | false | false | 2,556 | h | /*
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef MODULES_VIDEO_CAPTURE_VIDEO_CAPTURE_DEFINES_H_
#define MODULES_VIDEO_CAPTURE_VIDEO_CAPTURE_DEFINES_H_
#include BOSS_WEBRTC_U_api__video__video_frame_h //original-code:"api/video/video_frame.h"
#include BOSS_WEBRTC_U_modules__include__module_common_types_h //original-code:"modules/include/module_common_types.h"
#include BOSS_WEBRTC_U_typedefs_h //original-code:"typedefs.h" // NOLINT(build/include)
namespace webrtc
{
// Defines
#ifndef NULL
#define NULL 0
#endif
enum {kVideoCaptureUniqueNameLength =1024}; //Max unique capture device name lenght
enum {kVideoCaptureDeviceNameLength =256}; //Max capture device name lenght
enum {kVideoCaptureProductIdLength =128}; //Max product id length
struct VideoCaptureCapability
{
int32_t width;
int32_t height;
int32_t maxFPS;
VideoType videoType;
bool interlaced;
VideoCaptureCapability()
{
width = 0;
height = 0;
maxFPS = 0;
videoType = VideoType::kUnknown;
interlaced = false;
}
;
bool operator!=(const VideoCaptureCapability &other) const
{
if (width != other.width)
return true;
if (height != other.height)
return true;
if (maxFPS != other.maxFPS)
return true;
if (videoType != other.videoType)
return true;
if (interlaced != other.interlaced)
return true;
return false;
}
bool operator==(const VideoCaptureCapability &other) const
{
return !operator!=(other);
}
};
/* External Capture interface. Returned by Create
and implemented by the capture module.
*/
class VideoCaptureExternal
{
public:
// |capture_time| must be specified in the NTP time format in milliseconds.
virtual int32_t IncomingFrame(uint8_t* videoFrame,
size_t videoFrameLength,
const VideoCaptureCapability& frameInfo,
int64_t captureTime = 0) = 0;
protected:
~VideoCaptureExternal() {}
};
} // namespace webrtc
#endif // MODULES_VIDEO_CAPTURE_VIDEO_CAPTURE_DEFINES_H_
| [
"[email protected]"
] | |
745c00268e6601b6a53bcd05295b670c48393399 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /content/browser/permissions/permission_controller_impl.h | 3b9de91634714ba77230ba591e27c85869acd284 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 2,493 | h | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_PERMISSIONS_PERMISSION_CONTROLLER_IMPL_H_
#define CONTENT_BROWSER_PERMISSIONS_PERMISSION_CONTROLLER_IMPL_H_
#include "content/common/content_export.h"
#include "content/public/browser/permission_controller.h"
namespace content {
class BrowserContext;
// Implementation of the PermissionController interface. This
// is used by content/ layer to manage permissions.
// There is one instance of this class per BrowserContext.
class CONTENT_EXPORT PermissionControllerImpl : public PermissionController {
public:
explicit PermissionControllerImpl(BrowserContext* browser_context);
~PermissionControllerImpl() override;
static PermissionControllerImpl* FromBrowserContext(
BrowserContext* browser_context);
// PermissionController implementation.
blink::mojom::PermissionStatus GetPermissionStatus(
PermissionType permission,
const GURL& requesting_origin,
const GURL& embedding_origin) override;
blink::mojom::PermissionStatus GetPermissionStatusForFrame(
PermissionType permission,
RenderFrameHost* render_frame_host,
const GURL& requesting_origin) override;
int RequestPermission(
PermissionType permission,
RenderFrameHost* render_frame_host,
const GURL& requesting_origin,
bool user_gesture,
const base::Callback<void(blink::mojom::PermissionStatus)>& callback);
int RequestPermissions(
const std::vector<PermissionType>& permission,
RenderFrameHost* render_frame_host,
const GURL& requesting_origin,
bool user_gesture,
const base::Callback<
void(const std::vector<blink::mojom::PermissionStatus>&)>& callback);
void ResetPermission(PermissionType permission,
const GURL& requesting_origin,
const GURL& embedding_origin);
int SubscribePermissionStatusChange(
PermissionType permission,
RenderFrameHost* render_frame_host,
const GURL& requesting_origin,
const base::Callback<void(blink::mojom::PermissionStatus)>& callback);
void UnsubscribePermissionStatusChange(int subscription_id);
private:
BrowserContext* browser_context_;
DISALLOW_COPY_AND_ASSIGN(PermissionControllerImpl);
};
} // namespace content
#endif // CONTENT_BROWSER_PERMISSIONS_PERMISSION_CONTROLLER_IMPL_H_
| [
"[email protected]"
] | |
a385ba34fad18e4945c9139034838ffa8940b883 | c17cb8f229a6762cb88848a70e9b6505adbcbcdd | /c++/src/vs-2019/HelloWinUICppWinRT/HelloWinUICppWinRT/Generated Files/winrt/impl/Windows.System.Diagnostics.DevicePortal.1.h | f2d2d7a524877d8fa74555092c5ac5648d94f8cd | [] | no_license | awrznc/scribble | b1a49df8c66ffb0c63a01d0266a50277e3f2000a | cee07c2d6dc7960023673e3c3a31f1738da7a8e5 | refs/heads/master | 2023-08-18T22:31:01.852432 | 2023-06-12T12:16:42 | 2023-06-12T12:16:42 | 202,322,395 | 4 | 0 | null | 2023-09-13T13:12:44 | 2019-08-14T09:49:39 | C++ | UTF-8 | C++ | false | false | 3,008 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.200703.9
#ifndef WINRT_Windows_System_Diagnostics_DevicePortal_1_H
#define WINRT_Windows_System_Diagnostics_DevicePortal_1_H
#include "winrt/impl/Windows.System.Diagnostics.DevicePortal.0.h"
WINRT_EXPORT namespace winrt::Windows::System::Diagnostics::DevicePortal
{
struct __declspec(empty_bases) IDevicePortalConnection :
Windows::Foundation::IInspectable,
impl::consume_t<IDevicePortalConnection>
{
IDevicePortalConnection(std::nullptr_t = nullptr) noexcept {}
IDevicePortalConnection(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) IDevicePortalConnectionClosedEventArgs :
Windows::Foundation::IInspectable,
impl::consume_t<IDevicePortalConnectionClosedEventArgs>
{
IDevicePortalConnectionClosedEventArgs(std::nullptr_t = nullptr) noexcept {}
IDevicePortalConnectionClosedEventArgs(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) IDevicePortalConnectionRequestReceivedEventArgs :
Windows::Foundation::IInspectable,
impl::consume_t<IDevicePortalConnectionRequestReceivedEventArgs>
{
IDevicePortalConnectionRequestReceivedEventArgs(std::nullptr_t = nullptr) noexcept {}
IDevicePortalConnectionRequestReceivedEventArgs(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) IDevicePortalConnectionStatics :
Windows::Foundation::IInspectable,
impl::consume_t<IDevicePortalConnectionStatics>
{
IDevicePortalConnectionStatics(std::nullptr_t = nullptr) noexcept {}
IDevicePortalConnectionStatics(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) IDevicePortalWebSocketConnection :
Windows::Foundation::IInspectable,
impl::consume_t<IDevicePortalWebSocketConnection>
{
IDevicePortalWebSocketConnection(std::nullptr_t = nullptr) noexcept {}
IDevicePortalWebSocketConnection(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) IDevicePortalWebSocketConnectionRequestReceivedEventArgs :
Windows::Foundation::IInspectable,
impl::consume_t<IDevicePortalWebSocketConnectionRequestReceivedEventArgs>
{
IDevicePortalWebSocketConnectionRequestReceivedEventArgs(std::nullptr_t = nullptr) noexcept {}
IDevicePortalWebSocketConnectionRequestReceivedEventArgs(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {}
};
}
#endif
| [
"[email protected]"
] | |
f99bae25aaeb571345be6e92d8c50002b87d8495 | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE762_Mismatched_Memory_Management_Routines/s05/CWE762_Mismatched_Memory_Management_Routines__new_array_free_struct_84_bad.cpp | da66b8ff28d3de2c4b6e6ccfcc45915eaa7291b8 | [] | no_license | junxzm1990/ASAN-- | 0056a341b8537142e10373c8417f27d7825ad89b | ca96e46422407a55bed4aa551a6ad28ec1eeef4e | refs/heads/master | 2022-08-02T15:38:56.286555 | 2022-06-16T22:19:54 | 2022-06-16T22:19:54 | 408,238,453 | 74 | 13 | null | 2022-06-16T22:19:55 | 2021-09-19T21:14:59 | null | UTF-8 | C++ | false | false | 1,627 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE762_Mismatched_Memory_Management_Routines__new_array_free_struct_84_bad.cpp
Label Definition File: CWE762_Mismatched_Memory_Management_Routines__new_array_free.label.xml
Template File: sources-sinks-84_bad.tmpl.cpp
*/
/*
* @description
* CWE: 762 Mismatched Memory Management Routines
* BadSource: Allocate data using new []
* GoodSource: Allocate data using malloc()
* Sinks:
* GoodSink: Deallocate data using delete []
* BadSink : Deallocate data using free()
* Flow Variant: 84 Data flow: data passed to class constructor and destructor by declaring the class object on the heap and deleting it after use
*
* */
#ifndef OMITBAD
#include "std_testcase.h"
#include "CWE762_Mismatched_Memory_Management_Routines__new_array_free_struct_84.h"
namespace CWE762_Mismatched_Memory_Management_Routines__new_array_free_struct_84
{
CWE762_Mismatched_Memory_Management_Routines__new_array_free_struct_84_bad::CWE762_Mismatched_Memory_Management_Routines__new_array_free_struct_84_bad(twoIntsStruct * dataCopy)
{
data = dataCopy;
/* POTENTIAL FLAW: Allocate memory with a function that requires delete [] to free the memory */
data = new twoIntsStruct[100];
}
CWE762_Mismatched_Memory_Management_Routines__new_array_free_struct_84_bad::~CWE762_Mismatched_Memory_Management_Routines__new_array_free_struct_84_bad()
{
/* POTENTIAL FLAW: Deallocate memory using free() - the source memory allocation function may
* require a call to delete [] to deallocate the memory */
free(data);
}
}
#endif /* OMITBAD */
| [
"[email protected]"
] | |
7596ced25ab1cbb174444321f32ee0a11a5e8adf | 30d637c4c1333d7f52a9f3b74205dacb52b025bb | /MakeUnitOwnedByTeam/Исходный код.cpp | 98f60aa6d14580a3087d17f603e013b6c3d84536 | [
"Unlicense"
] | permissive | asdlei99/MakeUnitOwnedByTeam | ff6ecceba6a39208035dab7def8114cb81bc6571 | 741b19182f4ef03f5236f826def9e5471a084a2a | refs/heads/main | 2023-08-16T19:20:53.015647 | 2021-09-19T11:40:44 | 2021-09-19T11:40:44 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,300 | cpp | /*
1. Если юнит союзник и юнит из списка то он общий.
*/
#pragma region Headers
#define _WIN32_WINNT 0x0501
#define WINVER 0x0501
#define NTDDI_VERSION 0x05010000
//#define BOTDEBUG
#define WIN32_LEAN_AND_MEAN
#include <stdexcept>
#include <Windows.h>
#include <string>
#include <vector>
#include <sstream>
#include <algorithm>
#include <time.h>
#include <thread>
#pragma endregion
using namespace std;
int GameDll = 0;
typedef UINT( __cdecl * CreateUnit_p )( UINT id, int unitid, float *x, float *y, float *face );
CreateUnit_p CreateUnit_org;
CreateUnit_p CreateUnit_ptr;
UINT __cdecl CreateUnit_my( UINT id, int unitid, float *x, float *y, float *face )
{
UINT retval = CreateUnit_org( id, unitid, x, y, face );
return retval;
}
typedef int( __fastcall * GetUnitRealByHandle_p )( UINT unithandle, int unused );
GetUnitRealByHandle_p GetUnitRealByHandle_org;
GetUnitRealByHandle_p GetUnitRealByHandle_ptr;
int __fastcall GetUnitRealByHandle_my ( UINT unithandle, int unused )
{
int retval = GetUnitRealByHandle_org( unithandle, unused );
return retval;
}
BOOL WINAPI DllMain( HINSTANCE hDLL, UINT reason, LPVOID reserved )
{
if ( reason == DLL_PROCESS_ATTACH )
{
}
else if ( reason == DLL_PROCESS_DETACH )
{
}
return TRUE;
}
| [
"[email protected]"
] | |
cca657bef4e610e5f7f20135aa2a1c9b8ef70335 | 38bdbce6fae462163bab39ef916335042b2d128c | /src/qt/askpassphrasedialog.h | e15275e66e92c606a6262b5e46d05ed0eb0619fc | [
"MIT"
] | permissive | sharkcoin32/Sharkcoin | b976203cf04d19805af78f7dd0735593dde3970d | 0ef5bba96df4abe51436856e2d0b12be86cabf6b | refs/heads/master | 2022-12-24T09:22:26.186773 | 2020-10-01T14:08:22 | 2020-10-01T14:08:22 | 261,544,989 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,272 | h | // Copyright (c) 2011-2013 The Bitcoin developers
// Copyright (c) 2017-2018 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_ASKPASSPHRASEDIALOG_H
#define BITCOIN_QT_ASKPASSPHRASEDIALOG_H
#include <QDialog>
class WalletModel;
namespace Ui
{
class AskPassphraseDialog;
}
/** Multifunctional dialog to ask for passphrases. Used for encryption, unlocking, and changing the passphrase.
*/
class AskPassphraseDialog : public QDialog
{
Q_OBJECT
public:
enum class Mode {
Encrypt, /**< Ask passphrase twice and encrypt */
UnlockAnonymize, /**< Ask passphrase and unlock only for anonymization */
Unlock, /**< Ask passphrase and unlock */
ChangePass, /**< Ask old passphrase + new passphrase twice */
Decrypt /**< Ask passphrase and decrypt wallet */
};
// Context from where / for what the passphrase dialog was called to set the status of the checkbox
// Partly redundant to Mode above, but offers more flexibility for future enhancements
enum class Context {
Unlock_Menu, /** Unlock wallet from menu */
Unlock_Full, /** Wallet needs to be fully unlocked */
Encrypt, /** Encrypt unencrypted wallet */
ToggleLock, /** Toggle wallet lock state */
ChangePass, /** Change passphrase */
Send_SKN, /** Send SKN */
Send_zSKN, /** Send zSKN */
Mint_zSKN, /** Mint zSKN */
BIP_38, /** BIP38 menu */
Multi_Sig, /** Multi-Signature dialog */
Sign_Message, /** Sign/verify message dialog */
UI_Vote, /** Governance Tab UI Voting */
};
explicit AskPassphraseDialog(Mode mode, QWidget* parent, WalletModel* model, Context context);
~AskPassphraseDialog();
void accept();
private:
Ui::AskPassphraseDialog* ui;
Mode mode;
WalletModel* model;
Context context;
bool fCapsLock;
private slots:
void textChanged();
protected:
bool event(QEvent* event);
bool eventFilter(QObject* object, QEvent* event);
};
#endif // BITCOIN_QT_ASKPASSPHRASEDIALOG_H
| [
"Sharkcoin dev"
] | Sharkcoin dev |
4e2aae19031a5ff108c7ea1d935d3ca7f0cc811b | baf5c0828f2f17557a16fdba6e8303d5a33daebd | /kernel/BIOS.cc | 51bcc79251d09c67c92c7612e80b679d6a6b8db2 | [] | no_license | Nils1337/hhuos | 59ca452481579628c037659adbbb1b3d857bf40e | e53967daef04addb0a2e5a3ac4595e60d13b1c1c | refs/heads/master | 2020-04-18T20:02:21.316793 | 2019-01-29T14:47:08 | 2019-01-29T14:47:08 | 167,727,385 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,160 | cc | /*****************************************************************************
* *
* B I O S *
* *
*---------------------------------------------------------------------------*
* Beschreibung: BIOS-Schnittstelle *
* *
* Autor: Michael Schoettner, 19.9.2016 *
*****************************************************************************/
#include "kernel/Globals.h"
#include "kernel/BIOS.h"
// 16-Bit Code aufrufen, siehe Konstruktor und Aufruf in startup.asm
extern "C" { void bios_call(); }
// in startup.asm im GDT-Eintrag so festgeschrieben!
#define BIOS16_CODE_MEMORY_START 0x24000
// Parameter fuer BIOS-Aufrufe (Register)
#define BIOS16_PARAM_BASE 0x26000
// Zeiger auf Speichbereich fuer Parameter fuer BIOS-Aufruf (siehe BIOS.h)
struct BIOScall_params* BC_params = (struct BIOScall_params*)BIOS16_PARAM_BASE;
/*****************************************************************************
* Methode: BIOS::BIOS *
*---------------------------------------------------------------------------*
* Beschreibung: Konstruktor. Baut manuell ein 16-Bit Code Segment fuer *
* den BIOS-Aufruf. Startadresse dieser Funktion steht *
* im 4. GDT-Eintrag (siehe startup.asm). *
*****************************************************************************/
BIOS::BIOS() {
unsigned char *codeAddr = (unsigned char*)BIOS16_CODE_MEMORY_START;
// mov eax, 25000
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0xB8; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x50; codeAddr++;
*codeAddr = 0x02; codeAddr++;
*codeAddr = 0x00; codeAddr++;
// mov [eax], esp
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0x67; codeAddr++;
*codeAddr = 0x89; codeAddr++;
*codeAddr = 0x20; codeAddr++;
// mov eax,cr0
*codeAddr = 0x0F; codeAddr++;
*codeAddr = 0x20; codeAddr++;
*codeAddr = 0xC0; codeAddr++;
// and eax, 7FFEFFFE
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0x25; codeAddr++;
*codeAddr = 0xFE; codeAddr++;
*codeAddr = 0xFF; codeAddr++;
*codeAddr = 0xFE; codeAddr++;
*codeAddr = 0x7F; codeAddr++;
// mov cr0, eax
*codeAddr = 0x0F; codeAddr++;
*codeAddr = 0x22; codeAddr++;
*codeAddr = 0xC0; codeAddr++;
// jmp 2400:001B flush pipeline & switch decoding unit
// 2400:001B (2400<<4 = 24000 + 1B)
*codeAddr = 0xEA; codeAddr++;
*codeAddr = 0x1B; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x24; codeAddr++;
// mov dx,2400
*codeAddr = 0xBA; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x24; codeAddr++;
// mov ss,dx
*codeAddr = 0x8E; codeAddr++;
*codeAddr = 0xD2; codeAddr++;
// mov gs,dx
*codeAddr = 0x8E; codeAddr++;
*codeAddr = 0xEA; codeAddr++;
// mov esp,2000 -> BIOS16_PARAM_BASE 0x260000
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0xBC; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x20; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x00; codeAddr++;
// pop ds
*codeAddr = 0x1F; codeAddr++;
// pop es
*codeAddr = 0x07; codeAddr++;
// pop fs
*codeAddr = 0x0f; codeAddr++;
*codeAddr = 0xa1; codeAddr++;
// pop ax -> we have to pop something for symmetry
*codeAddr = 0x58; codeAddr++;
// popad
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0x61; codeAddr++;
// interrupt number (written here)
*codeAddr = 0xCD; codeAddr++;
*codeAddr = 0x00; codeAddr++;
// pushad
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0x60; codeAddr++;
// pushf
*codeAddr = 0x9C; codeAddr++;
// push fs
*codeAddr = 0x0f; codeAddr++;
*codeAddr = 0xa0; codeAddr++;
// push es
*codeAddr = 0x06; codeAddr++;
// push ds
*codeAddr = 0x1E; codeAddr++;
// mov eax,cr0
*codeAddr = 0x0F; codeAddr++;
*codeAddr = 0x20; codeAddr++;
*codeAddr = 0xC0; codeAddr++;
// or eax, 00010001 (protected mode without paging)
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0x0D; codeAddr++;
*codeAddr = 0x01; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x01; codeAddr++;
*codeAddr = 0x00; codeAddr++;
// mov cr0, eax
*codeAddr = 0x0F; codeAddr++;
*codeAddr = 0x22; codeAddr++;
*codeAddr = 0xC0; codeAddr++;
// jmp 0018:0049, flush pipeline & switch decoding
// 0018:0049
*codeAddr = 0xEA; codeAddr++;
*codeAddr = 0x49; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x18; codeAddr++;
*codeAddr = 0x00; codeAddr++;
// mov dx,0010
*codeAddr = 0xBA; codeAddr++;
*codeAddr = 0x10; codeAddr++;
*codeAddr = 0x00; codeAddr++;
// mov ds,dx
*codeAddr = 0x8E; codeAddr++;
*codeAddr = 0xDA; codeAddr++;
// mov es,dx
*codeAddr = 0x8E; codeAddr++;
*codeAddr = 0xC2; codeAddr++;
// mov es,dx
*codeAddr = 0x8E; codeAddr++;
*codeAddr = 0xE2; codeAddr++;
// mov fs,dx
*codeAddr = 0x8E; codeAddr++;
*codeAddr = 0xEA; codeAddr++;
// mov ss,dx
*codeAddr = 0x8E; codeAddr++;
*codeAddr = 0xD2; codeAddr++;
// mov eax, 25000
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0xB8; codeAddr++;
*codeAddr = 0x00; codeAddr++;
*codeAddr = 0x50; codeAddr++;
*codeAddr = 0x02; codeAddr++;
*codeAddr = 0x00; codeAddr++;
// mov esp, [eax]
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0x67; codeAddr++;
*codeAddr = 0x8B; codeAddr++;
*codeAddr = 0x20; codeAddr++;
// far ret
*codeAddr = 0x66; codeAddr++;
*codeAddr = 0xCB; codeAddr++;
}
/*****************************************************************************
* Methode: BIOS::Int *
*---------------------------------------------------------------------------*
* Beschreibung: Fuehrt einen BIOS-Aufruf per Software-Interrupt durch. *
*****************************************************************************/
void BIOS::Int(int inter) {
unsigned char *ptr = (unsigned char*)BIOS16_CODE_MEMORY_START;
// Interrupt-Nummer in 16-Bit Code-Segment schreiben (unschoen, aber ...)
*(ptr+48) = (unsigned char)inter;
cpu.disable_int (); // Interrupts abschalten
bios_call ();
cpu.enable_int ();
}
| [
"[email protected]"
] | |
ba1f1577c3af992acb18bef94e2cb5610c96d6de | a328c17ff42ba230a43186a50cbc292fd66ecd70 | /cdbjournalitem.h | f5911e10314c207f304aaecee9231526b73ad461 | [] | no_license | vlarry/emulator | cd072a6c7e5ee147fd20f9cd82d0c4a153ee0674 | bd84199ddfd3979d784d5e15eb968a45746daffd | refs/heads/master | 2020-03-29T07:45:48.455669 | 2019-03-01T09:29:52 | 2019-03-01T09:29:52 | 94,663,863 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 441 | h | #ifndef CDBJOURNALITEM_H
#define CDBJOURNALITEM_H
//-------------------------
#include <QTableWidgetItem>
#include <QDateTime>
//-------------------------------------------
class CDbJournalItem: public QTableWidgetItem
{
public:
explicit CDbJournalItem(const QString &text, int type = Type);
bool operator< (const QTableWidgetItem& other) const;
};
#endif // CDBJOURNALITEM_H
| [
"[email protected]"
] | |
0ee54cf88cd1e759ebf71dddffc918f2a0a80db7 | 944438a953b5a125aae48eeb578b80cc37e3577e | /ash/webui/eche_app_ui/system_info.cc | 6cc0af719c80403100a200083d8b2baa04f59778 | [
"BSD-3-Clause"
] | permissive | guhuaijian/chromium | 0dc346626cc2084bb9a786bb59911441a83d10e0 | 2b617d4be11c76220496be187d321325babb7cda | refs/heads/master | 2023-08-16T14:49:25.462662 | 2021-10-29T01:20:06 | 2021-10-29T01:20:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,113 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/webui/eche_app_ui/system_info.h"
#include "base/memory/ptr_util.h"
namespace chromeos {
namespace eche_app {
SystemInfo::Builder::Builder() = default;
SystemInfo::Builder::~Builder() = default;
std::unique_ptr<SystemInfo> SystemInfo::Builder::Build() {
return base::WrapUnique(new SystemInfo(device_name_, board_name_));
}
SystemInfo::Builder& SystemInfo::Builder::SetDeviceName(
const std::string& device_name) {
device_name_ = device_name;
return *this;
}
SystemInfo::Builder& SystemInfo::Builder::SetBoardName(
const std::string& board_name) {
board_name_ = board_name;
return *this;
}
SystemInfo::SystemInfo(const SystemInfo& other) = default;
SystemInfo::~SystemInfo() = default;
SystemInfo::SystemInfo(const std::string& device_name,
const std::string& board_name)
: device_name_(device_name), board_name_(board_name) {}
} // namespace eche_app
} // namespace chromeos
| [
"[email protected]"
] | |
dee7af35f3071ea6b6f469607b7d46e2d129d508 | 23be3225d101b3ecc03d8f324c77b396c9f405f1 | /src/ompl/geometric/planners/quotientspace/datastructures/components/SE2_R2.h | eebb50b2f5a42b6a00d6e48dcf565db4c8d3a235 | [
"BSD-3-Clause"
] | permissive | alexha98/ompl | 33dcccd8fc0c77a4cf03e9c9f0b3bac8eb5a2514 | e1a1ce690ea5d52eb12a9fd06c8fd8a04dcfeb9e | refs/heads/master | 2022-11-25T02:06:30.911713 | 2020-02-17T13:01:19 | 2020-02-17T13:01:19 | 275,031,082 | 0 | 0 | null | 2020-06-25T22:57:38 | 2020-06-25T22:57:37 | null | UTF-8 | C++ | false | false | 1,238 | h | #ifndef OMPL_GEOMETRIC_PLANNERS_BUNDLESPACE_BUNDLE_COMPONENT_SE2_R2__
#define OMPL_GEOMETRIC_PLANNERS_BUNDLESPACE_BUNDLE_COMPONENT_SE2_R2__
#include <ompl/geometric/planners/quotientspace/datastructures/BundleSpaceComponent.h>
namespace ompl
{
namespace geometric
{
class BundleSpaceComponent_SE2_R2: public BundleSpaceComponent
{
using BaseT = BundleSpaceComponent;
public:
BundleSpaceComponent_SE2_R2(
base::StateSpacePtr BundleSpace,
base::StateSpacePtr BaseSpace);
~BundleSpaceComponent_SE2_R2() override = default;
virtual void projectFiber(
const ompl::base::State *xBundle,
ompl::base::State *xFiber) const override;
virtual void projectBase(
const ompl::base::State *xBundle,
ompl::base::State *xBase) const override;
virtual void mergeStates(
const ompl::base::State *xBase,
const ompl::base::State *xFiber,
ompl::base::State *xBundle) const override;
protected:
ompl::base::StateSpacePtr computeFiberSpace() override;
};
}
}
#endif
| [
"[email protected]"
] | |
ac469ef9c66617050c4af9b58bcd0173189363a3 | 9a12150c1672fa7b304a728d86e5434aafeb5120 | /580B.cpp | 1334edd00a61cddee9909d276bc6229bb4111929 | [] | no_license | apurvparekh30/codeforces | 93b53f99d5d9e16f3d833f89418c8f7edfb63549 | c18384a62ddfc514e4d087007a9717276d02a350 | refs/heads/master | 2021-07-24T20:04:29.526385 | 2020-08-01T05:10:25 | 2020-08-01T05:10:25 | 204,581,591 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 720 | cpp | #include <stdio.h>
#include <algorithm>
#include <vector>
#include <iostream>
using namespace std;
vector<pair<long long,long long>> friends;
int n,d;
int main() {
cin >> n >> d;
for(int i=0;i<n;i++) {
pair<long long,long long> p;
cin >> p.first >> p.second;
friends.push_back(p);
}
sort(friends.begin(),friends.end());
long long curr = friends[0].second;
long long best = friends[0].second;
long long low = 0;
for(int i=1;i<n;) {
if(friends[i].first - friends[low].first >= d) {
curr = curr - friends[low].second;
low++;
}
else {
curr = curr + friends[i].second;
i++;
}
if(best < curr) {
best = curr;
}
}
cout << best << endl;
}
| [
"[email protected]"
] | |
7d6ef07c075100191fea5da4b4307f9c946fc160 | bc90e70ee2139b034c65a5755395ff55faac87d0 | /sprout/stateful/counter.hpp | 8af669b49990472893ca35c49dfdcd0320857817 | [
"BSL-1.0"
] | permissive | Manu343726/Sprout | 0a8e2d090dbede6f469f6b875d217716d0200bf7 | feac3f52c785deb0e5e6cd70c8b4960095b064be | refs/heads/master | 2021-01-21T07:20:16.742204 | 2015-05-28T04:11:39 | 2015-05-28T04:11:39 | 37,670,169 | 0 | 1 | null | 2015-06-18T16:09:41 | 2015-06-18T16:09:41 | null | UTF-8 | C++ | false | false | 2,774 | hpp | /*=============================================================================
Copyright (c) 2011-2015 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_STATEFUL_COUNTER_HPP
#define SPROUT_STATEFUL_COUNTER_HPP
#include <sprout/config.hpp>
#include <sprout/type_traits/integral_constant.hpp>
namespace sprout {
#ifndef SPROUT_CONFIG_DISABLE_CONSTEXPR
namespace counter_detail {
#if defined(__GNUC__) && !defined(__clang__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wnon-template-friend"
#endif
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wundefined-inline"
#endif
template<int N>
struct tag {
friend SPROUT_CONSTEXPR int adl_counter(sprout::counter_detail::tag<N>);
};
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
#if defined(__GNUC__) && !defined(__clang__)
# pragma GCC diagnostic pop
#endif
template<int N>
struct state
: public sprout::integral_constant<int, N>
{
friend SPROUT_CONSTEXPR int adl_counter(sprout::counter_detail::tag<N>) {
return N;
}
};
template<int N, int = adl_counter(sprout::counter_detail::tag<N>())>
inline SPROUT_CONSTEXPR bool check(int, sprout::counter_detail::tag<N>) {
return true;
}
template<int N>
inline SPROUT_CONSTEXPR bool check(long, sprout::counter_detail::tag<N>) {
return false;
}
template<int N>
inline SPROUT_CONSTEXPR bool check(bool R = sprout::counter_detail::check(0, sprout::counter_detail::tag<N>())) {
return R;
}
template<int N>
inline SPROUT_CONSTEXPR int counter(sprout::false_type, sprout::counter_detail::tag<N>) {
return 0;
}
template<int N>
inline SPROUT_CONSTEXPR int counter(
sprout::true_type, sprout::counter_detail::tag<N>,
int R = !sprout::counter_detail::check<N>() ? N
: counter(sprout::bool_constant<sprout::counter_detail::check<N>()>(), sprout::counter_detail::tag<N + 1>())
)
{
return R;
}
template<int N = 0>
inline SPROUT_CONSTEXPR int counter(int R = sprout::counter_detail::counter(sprout::true_type(), sprout::counter_detail::tag<N>())) {
return R;
}
} // namespace counter_detail
//
// counter
//
template<
int N = 1,
int R = sprout::counter_detail::state<
sprout::counter_detail::counter() + N - 1
>::value
>
inline SPROUT_CONSTEXPR int counter() {
return R;
}
#endif
} // namespace sprout
#endif // #ifndef SPROUT_STATEFUL_COUNTER_HPP
| [
"[email protected]"
] | |
209703034066288d2925defaea92eb881c7aa0d0 | 7ed3e6e692d1fde482ef457ef111b46abc30c351 | /Monte-Carlo Ray Tracer/BoundingBox.h | 717bb62e8a9a6de65fb0aa5e33526d05f1aadea4 | [] | no_license | seu-xh/MonteCarloPathTracing | adf837eb66b0eec85ec0bc29ac6b509e52e51871 | 00efb91cdcd8de9a70c7ef8c88fb8d585ccc2170 | refs/heads/master | 2020-04-26T19:43:03.839998 | 2019-03-12T02:49:38 | 2019-03-12T02:49:38 | 173,784,388 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 479 | h | #pragma
#include<vector>
#include"glm\glm.hpp"
#include"Vertex.h"
#include"Ray.h"
struct BBOX
{
glm::vec3 min, max;
void ComputeBBOX(const std::vector<Vertex>&v);
//void ComputeBBOX(const std::vector<Triangle*>&tri);
void IncludeVertex(Vertex v);
int GetLongestAxis();
//void ComputeSpanAlongDir(glm::vec3 Dir, const std::vector<Vertex>&vertices, double& min, double& max);
BBOX(glm::vec3 a, glm::vec3 b) :min(a), max(b) {};
BBOX() {};
bool IsIntersect(Ray ray);
};
| [
"[email protected]"
] | |
cd084b6df1922ff341ac8fc4ee8aa3ecf6bdecad | 41575c498b7197e97b12a8ce2a880047df363cc3 | /src/local/util/functional/cast.hpp | 8a6d898746eb994740a02c76a583faf8094e5c04 | [] | no_license | gongfuPanada/page | f00a6f9015b4aad79398f0df041613ab28be405b | fa2ccdef4b33480c2ac5f872d717323f45618a34 | refs/heads/master | 2021-01-15T22:09:34.836791 | 2013-03-23T18:54:13 | 2013-03-23T18:54:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,971 | hpp | /**
* @section license
*
* Copyright (c) 2006-2013 David Osborn
*
* Permission is granted to use and redistribute this software in source and
* binary form, with or without modification, subject to the following
* conditions:
*
* 1. Redistributions in source form 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, and in the same
* place and form as other copyright, license, and disclaimer information.
*
* As a special exception, distributions of derivative works in binary form may
* include an acknowledgement in place of the above copyright notice, this list
* of conditions, and the following disclaimer in the documentation and/or other
* materials provided with the distribution, and in the same place and form as
* other acknowledgements, similar in substance to the following:
*
* Portions of this software are based on the work of David Osborn.
*
* This software is provided "as is", without any express or implied warranty.
* In no event will the authors be liable for any damages arising out of the use
* of this software.
*/
#ifndef page_local_util_functional_cast_hpp
# define page_local_util_functional_cast_hpp
namespace page
{
namespace util
{
/**
* @defgroup functional-cast
*
* Function objects that wrap the type-cast operators.
*
* @{
*/
# define DEFINE_CAST_FUNCTION(TYPE) \
template <typename T, typename U> \
struct TYPE##_cast_function \
{ \
T operator ()(U x) const \
{ \
return TYPE##_cast<T>(x); \
} \
};
DEFINE_CAST_FUNCTION(const)
DEFINE_CAST_FUNCTION(dynamic)
DEFINE_CAST_FUNCTION(reinterpret)
DEFINE_CAST_FUNCTION(static)
# undef DEFINE_CAST_FUNCTION
///@}
}
}
#endif
| [
"[email protected]"
] | |
cde1680785afd75f41a8c4aeffe4f4dba60b3384 | 4357b36c493e28d6592c5a79d8f62f4795abfba6 | /main.cpp | 6f64fac5afc25e3165f3df1b562ea030851f71ab | [
"BSD-3-Clause"
] | permissive | fmorgner/dramatic | 210c3a3b2464cf8cf1d31995ba8953b0bb9a6596 | 1c355307c41d17936c589cc43198abb561dfc3c7 | refs/heads/master | 2022-12-04T07:57:33.677834 | 2020-08-26T22:46:05 | 2020-08-26T22:48:25 | 290,620,587 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 774 | cpp | #include "dramatic/dramatic.hpp"
#include <iostream>
auto main() -> int
{
// clang-format off
auto constexpr first_scene = drama::Scene{"1 + 1 equals 2"}
.Given(1)
.AsWellAs(1)
.Invoking(std::plus<>{})
.Yields(4);
auto result = first_scene.Perform();
std::cout << '\'' << first_scene.Name() << "' "
<< "returned '" << std::boolalpha << (result.first == drama::PerformanceResult::Success)
<< "' @ " << result.second.file_name() << ':' << result.second.line() << '\n';
// clang-format on
static_assert(drama::Scene{}.Given(2).AsWellAs(1).Invoking(std::plus<>{}).Yields(3));
} | [
"[email protected]"
] | |
d5992559077e6d9d59ce287ce2830374bb6e0214 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5662291475300352_0/C++/uran198/C.cpp | 414a09f66ab9792aa1c5db54b98943633966a6b1 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 818 | cpp | #include <iostream>
#include <algorithm>
#include <deque>
#include <string>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cstring>
#include <cstdio>
using namespace std;
const double EPS = 1e-8;
int main() {
int t;cin>>t;
for(int K=1; K <= t; ++K) {
int n;
cin>>n;
vector<pair<int,int> > v;
for(int i=0;i<n; ++i) {
int dd;cin>>dd;
int h;cin>>h;
int mm;cin>>mm;
while(h--){
v.push_back(make_pair(dd,-(mm++)));
}
}
int res = 0;
sort(v.begin(), v.end());
if (v.size() > 1) {
double v1 = -double(360) / v[0].second,
v2 = -double(360) / v[1].second;
int d1 = v[0].first, d2 = v[1].first;
if ((360+0.001-d1)/v1 > (360+360-d2)/v2 ||
(360+0.001-d2)/v2 > (360+360-d1)/v1) res = 1;
}
printf("Case #%d: %d\n", K, res);
}
return 0;
}
| [
"[email protected]"
] | |
87feb5a3b9620fdbf83ad7e5e680c5f08b470752 | 31beeddf858d56c759eb95edb5153412368244b9 | /Cubic Root of A Number/code_1.cpp | a9de273c1910b0cd83aa5742c57066dd9cdd7a38 | [
"MIT"
] | permissive | shoaibrayeen/Data-Structures-and-Algorithms | 0747d37ba5c061d81e92adcab789c7ad697c415a | 1320919a2693890beb7d3fa7f9235ed1e6d70cf3 | refs/heads/master | 2023-01-09T05:08:16.839757 | 2023-01-06T18:43:40 | 2023-01-06T18:43:40 | 147,175,708 | 38 | 34 | MIT | 2023-01-06T18:43:41 | 2018-09-03T08:37:02 | C++ | UTF-8 | C++ | false | false | 892 | cpp | //
// q5.cpp
// Algorithm
//
// Created by Mohd Shoaib Rayeen on 05/11/18.
// Copyright © 2018 Shoaib Rayeen. All rights reserved.
//
#include <bits/stdc++.h>
using namespace std;
double diff( double n , double mid ) {
if (n > (mid*mid*mid)) {
return (n-(mid*mid*mid));
}
else {
return ((mid*mid*mid) - n);
}
}
double cubicRoot(double n) {
double start = 0, end = n;
double e = 0.0000001;
while (true)
{
double mid = (start + end)/2;
double error = diff(n, mid);
if (error <= e) {
return mid;
}
if ((mid*mid*mid) > n) {
end = mid;
}
else {
start = mid;
}
}
}
int main() {
double num;
cout << "\nEnter Number\t:\t";
cin >> num;
cout << "\nCubic Root\t:\t" << cubicRoot(num);
return 0;
}
| [
"[email protected]"
] | |
01bf1bc8efa4fe5f477cdaab946afc4dfe926d2e | 5ba7994573cf9f39d201809e77161c6d54d4398b | /src/Commands/Arm/PIDJoystickSwitch.h | 882578d8f39e2ee2542ad085183824d3127bb7b6 | [] | no_license | FRC-4476-WAFFLES/Robot2018 | e567059fc9ff5ae9c22cc117e7ab72ca220b63e2 | 30c14dc594192b2cfd8636c9ca4d6bd8324cf861 | refs/heads/master | 2022-01-21T17:29:42.368942 | 2019-07-23T20:38:03 | 2019-07-23T20:38:03 | 117,171,674 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 249 | h | #pragma once
#include "CommandBase.h"
#include "Subsystems/ArmSubsystem.h"
class PIDJoystickSwitch : public CommandBase {
public:
PIDJoystickSwitch();
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
| [
"[email protected]"
] | |
b7b18fd35071018de05ddff066c1a830525cd206 | 4c25432a6d82aaebd82fd48e927317b15a6bf6ab | /data/dataset_2017/dataset_2017_8/sammyMaX/3264486_5736519012712448_sammyMaX.cpp | be0beedb84d3be5ed8252dfd0c475acbf0290b7d | [] | no_license | wzj1988tv/code-imitator | dca9fb7c2e7559007e5dbadbbc0d0f2deeb52933 | 07a461d43e5c440931b6519c8a3f62e771da2fc2 | refs/heads/master | 2020-12-09T05:33:21.473300 | 2020-01-09T15:29:24 | 2020-01-09T15:29:24 | 231,937,335 | 1 | 0 | null | 2020-01-05T15:28:38 | 2020-01-05T15:28:37 | null | UTF-8 | C++ | false | false | 717 | cpp | #include <bits/stdc++.h>
using namespace std;
ifstream fin("A-small-attempt1.in");
ofstream fout("A-small1.out");
void solve() {
string s;
int fsize;
fin >> s >> fsize;
int flips[1005] = {}, res = 0, i = 0;
for (char c : s) {
if (i >= fsize) res -= flips[i - fsize];
int now = (c == '+');
if (i <= s.size() - fsize && (now+res) % 2 == 0) flips[i] = 1;
res += flips[i];
i++;
if ((now+res) % 2 == 0) {
fout << "IMPOSSIBLE\n";
return;
}
}
res = 0;
for (int a : flips) res += a;
fout << res << '\n';
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int t;
fin >> t;
for (int i = 0; i < t; i++) fout << "Case #" << i+1 << ": ", solve();
}
| [
"[email protected]"
] | |
d717c3d52e125dd9d9806eab37590b0649be36fe | 77309531a6de95d615abd4a9df87e8f9e04a78a2 | /iptool/iptools/image/image.h | c64d02b618f55b805d3b3293840f459bb3c8f442 | [] | no_license | jeremyhernandezz/Image-Processing- | eaf35ced866ec70d7251c6531f7611f7f0758187 | af35606dd810aefa14f4763f5b3063e93fe56c7e | refs/heads/master | 2023-01-12T07:06:15.412999 | 2020-11-20T16:51:08 | 2020-11-20T16:51:08 | 314,599,325 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,583 | h | #ifndef IMAGE_H
#define IMAGE_H
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
using namespace std;
enum channel{RED, GREEN, BLUE, GREY=RED, GRAY=GREY};
//Createad a struct type called roi to store all the roi information
struct roi {
//Stores the start and end i and j values of the ROI
int i, j;
int iEnd, jEnd;
/////////////////////////////////////////
//int intensities[256] = { 0 };
};
/////////////////////////////////////////////////
struct imageData
{
vector<int> redChannel, greenChannel, blueChannel;
int numRows, numColumns;
};
class image
{
private:
imageData data;
int getint(FILE *fp);
public:
image();
image(image &img);
image(int rows, int columns);
~image();
void deleteImage();
void copyImage(image &img);
void resize (int numberOfRows, int numberOfColumns);
void setNumberOfRows(int rows);
void setNumberOfColumns(int columns);
void setPixel(const int row, const int col, const int value);
void setPixel(const int row, const int col, const int rgb, const int value);
int getPixel(const int row, const int col);
int getPixel(const int row, const int col, const int rgb);
int getNumberOfRows();
int getNumberOfColumns();
vector<int>* getChannel(int rgb);
bool setChannel(int rgb, vector<int> &channel);
bool save (char* file);
bool save (const char* file);
bool read (char* file);
bool isInbounds (const int row, const int col);
};
#endif
| [
"[email protected]"
] | |
79678983b131fde3db7b8a68cd96c9b8f044e8a1 | 5ebd5cee801215bc3302fca26dbe534e6992c086 | /blaze/math/constraints/MatMapExpr.h | e8e8b0d3ca95ec3fd0f5b2b471abf98e1b6bc334 | [
"BSD-3-Clause"
] | permissive | mhochsteger/blaze | c66d8cf179deeab4f5bd692001cc917fe23e1811 | fd397e60717c4870d942055496d5b484beac9f1a | refs/heads/master | 2020-09-17T01:56:48.483627 | 2019-11-20T05:40:29 | 2019-11-20T05:41:35 | 223,951,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,112 | h | //=================================================================================================
/*!
// \file blaze/math/constraints/MatMapExpr.h
// \brief Constraint on the data type
//
// Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redistribute it and/or modify it under
// the terms of the New (Revised) BSD License. Redistribution and use in source and binary
// forms, with or without modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
// 3. Neither the names of the Blaze development group nor the names of its contributors
// may be used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
// SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
*/
//=================================================================================================
#ifndef _BLAZE_MATH_CONSTRAINTS_MATMAPEXPR_H_
#define _BLAZE_MATH_CONSTRAINTS_MATMAPEXPR_H_
//*************************************************************************************************
// Includes
//*************************************************************************************************
#include <blaze/math/typetraits/IsMatMapExpr.h>
namespace blaze {
//=================================================================================================
//
// MUST_BE_MATMAPEXPR_TYPE CONSTRAINT
//
//=================================================================================================
//*************************************************************************************************
/*!\brief Constraint on the data type.
// \ingroup math_constraints
//
// In case the given data type \a T is not a unary matrix map expression (i.e. a type derived
// from the MatMapExpr base class), a compilation error is created.
*/
#define BLAZE_CONSTRAINT_MUST_BE_MATMAPEXPR_TYPE(T) \
static_assert( ::blaze::IsMatMapExpr_v<T>, "Non-unary matrix map expression type detected" )
//*************************************************************************************************
//=================================================================================================
//
// MUST_NOT_BE_MATMAPEXPR_TYPE CONSTRAINT
//
//=================================================================================================
//*************************************************************************************************
/*!\brief Constraint on the data type.
// \ingroup math_constraints
//
// In case the given data type \a T is a unary matrix map expression (i.e. a type derived from
// the MatMapExpr base class), a compilation error is created.
*/
#define BLAZE_CONSTRAINT_MUST_NOT_BE_MATMAPEXPR_TYPE(T) \
static_assert( !::blaze::IsMatMapExpr_v<T>, "Unary matrix map expression type detected" )
//*************************************************************************************************
} // namespace blaze
#endif
| [
"[email protected]"
] | |
4c1ec9f3799540f885e8cb4ff4a10bf10f453473 | 419899bcaab97207f31909491699b4c6cef8f18c | /main.cpp | 9d0daec6ee68c97c9fd7355794674e5249dc8132 | [
"MIT"
] | permissive | DiscreteTom/left-recursion-killer | de1fcaee335f1baafd89483842a9adffb3da918d | 0fd5f19a42ca09592ac0663b51329ab0c88b8825 | refs/heads/master | 2020-04-03T10:32:27.155043 | 2018-11-04T13:45:07 | 2018-11-04T13:45:07 | 155,195,899 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,306 | cpp | #include <iostream>
#include <string>
#include "gramma.h"
using namespace std;
void showDeveloper();
void showHelp();
int main(int argc, char **argv)
{
showDeveloper();
if (argc == 1)
{
showHelp();
//no file input
GrammaTable gt;
string str;
getline(cin, str);
while (str.length())
{
gt.insert(str);
getline(cin, str);
}
try
{
gt.start();
}
catch (string err)
{
cout << err;
}
}
else
{
for (int i = 1; i < argc; ++i)
{
cout << "============================ " << argv[i] << "==============================\n";
try
{
GrammaTable gt(argv[i]);
}
catch (string str)
{
cout << str;
}
}
}
system("pause");
}
void showDeveloper()
{
cout << "*************************************************************\n"
<< " Left-Recursion-Killer\n"
<< " Written By DiscreteTom\n"
<< " See source code and report BUG at\n"
<< " https://github.com/DiscreteTom/left-recursion-killer\n"
<< "*************************************************************\n\n";
}
void showHelp()
{
cout << "Drag file(s) on this exe to run.\n"
<< "Or run this exe then input.\n"
<< "Format: A -> xxx | xxx\n"
<< "Input '~' for epsilon\n"
<< "Input an empty line for end\n\n";
} | [
"[email protected]"
] | |
c4eed78e85ea6b61cff3e46aba8508d28ef2fa42 | fd7a379cb5ab6bacb88b088180f6ce6791b9ee98 | /Uva/Station balance.cpp | 5d425b82c7b54bfbac65f19967d9bc6ab222c0e8 | [] | no_license | heheh13/Programming | 504b0dbfca9b6c6ec9150a170e2f358037e99702 | f652d924504106aa6b7e654643cf527c8616d152 | refs/heads/master | 2021-07-17T15:33:20.862070 | 2020-06-23T20:11:19 | 2020-06-23T20:11:19 | 182,564,847 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,509 | cpp | #include<bits/stdc++.h>
#define read() freopen("C:\\Users\\Mehedi\\Desktop\\input.txt","r",stdin)
#define write() freopen("C:\\Users\\Mehedi\\Desktop\\output.txt","w",stdout)
#define debug(x) cout<< #x<<" = "<<x<<endl;
#define dbg(x,y) cout<<#x<<" = "<<x<<" , "<<#y<<" = "<<y<<endl;
#define optimizar ios_base::sync_with_stdio(0); cin.tie(0)
#define mx 200005
#define mod 6
void File_IO () {
#ifndef ONLINE_JUDGE
read();write();
#endif
}
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
int main(){
File_IO();
int n,m;
int ts = 1;
while(cin>>n>>m){
std::vector<int >mass(m);
double avg=0;
for(int i = 0;i<m;i++){
cin>>mass[i];
avg+=mass[i];
}
avg = avg/(n*1.0);
sort(mass.begin(),mass.end(),greater<int>());
priority_queue<int>pq;
int pos = 0;
std::vector<int> c[n];
for(int i = 0;i<n;i++){
if(pos<m){
c[i].push_back(mass[pos]);
}
/*else {
c[i].push_back(0);
}*/
pos++;
}
for(int i = n-1;i>=0;i--){
if(pos<m){
c[i].push_back(mass[pos]);
}
/*else {
c[i].push_back(0);
}*/
pos++;
}
cout<<"Set #"<<ts++<<endl;
double imbalance=0;
for(int i = 0;i<n;i++){
cout<<" "<<i<<":";
double sum =0;
for(auto x:c[i]){
cout<<" "<<x;
sum+=x;
}
imbalance += abs(avg-sum);
cout<<endl;
}
//printf("IMBALANCE = %.5lf\n",imbalance);
cout<<"IMBALANCE = "<<setprecision(5)<<imbalance<<endl;
cout<<endl;
}
} | [
"[email protected]"
] | |
dcf6e7c0fa3eaef4fd2e348b173a1e2dd5643cae | b475d6c2f875a149e0e8c722240af1c8d661c5ca | /moveZeroes.cc | 66dcbeee78593cdca0abee822833d3893c429b47 | [] | no_license | hankers/my_leetcode | 00139ae31d26460c8b01adde8f479243dabc121d | fa05cca504d8531726d65eaa1250a233812436cc | refs/heads/master | 2021-01-21T07:44:37.379144 | 2016-01-06T14:00:38 | 2016-01-06T14:00:38 | 27,265,616 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 844 | cc | // Source : https://leetcode.com/problems/move-zeroes/
// Author : hanker
// Date : 2015-12-10
/**********************************************************************************
* Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements.
*
* For example, given nums = [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0].
***********************************************************************************/
class Solution {
public:
void moveZeroes(vector<int>& nums) {
int pos = 0;
for (int i = 0; i < nums.size(); i ++) {
if (nums[i] != 0) {
nums[pos ++] = nums[i];
}
}
for (int i = pos; i < nums.size(); i ++) {
nums[i] = 0;
}
}
};
| [
"[email protected]"
] | |
2c6e7699963d6824f3667b2588a6854b7e0e1d24 | e00f0be7179fdfe87f87475984dfdc55acdab16a | /7zip_4_65/CPP/7zip/Archive/DllExports.cpp | bfb7ba295283f3965f13354bea6593ae56e2d9ff | [] | no_license | BIAINC/7Zip | 5ee647c9d3d02e127a6793bc47075848c97fd4be | aecbbd0bc9612fac8676ab8caf521be64575bd62 | refs/heads/master | 2021-01-01T05:51:58.730009 | 2014-09-04T23:40:09 | 2014-09-04T23:40:09 | 9,531,434 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,310 | cpp | // DLLExports.cpp
#include "StdAfx.h"
#include "../../Common/MyInitGuid.h"
#include "../../Common/ComTry.h"
#include "../../Common/Types.h"
#include "../../Windows/PropVariant.h"
#include "IArchive.h"
#include "../ICoder.h"
#include "../IPassword.h"
HINSTANCE g_hInstance;
#ifndef _UNICODE
bool g_IsNT = false;
static bool IsItWindowsNT()
{
OSVERSIONINFO versionInfo;
versionInfo.dwOSVersionInfoSize = sizeof(versionInfo);
if (!::GetVersionEx(&versionInfo))
return false;
return (versionInfo.dwPlatformId == VER_PLATFORM_WIN32_NT);
}
#endif
extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
g_hInstance = hInstance;
#ifndef _UNICODE
g_IsNT = IsItWindowsNT();
#endif
}
return TRUE;
}
DEFINE_GUID(CLSID_CArchiveHandler,
0x23170F69, 0x40C1, 0x278A, 0x10, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00);
STDAPI CreateArchiver(const GUID *classID, const GUID *iid, void **outObject);
STDAPI CreateObject(const GUID *clsid, const GUID *iid, void **outObject)
{
return CreateArchiver(clsid, iid, outObject);
}
STDAPI SetLargePageMode()
{
#if defined(_WIN32) && defined(_7ZIP_LARGE_PAGES)
SetLargePageSize();
#endif
return S_OK;
}
| [
"[email protected]"
] | |
94df531c891ae226ac4815140ec0ab750f99e36a | 7e40d6d74c748db2331187f802a980b72636bfff | /Source/Cross/Graphics/Direct3D11/D3D11Graphics.cpp | 38836641c3c551d1ac39e399e8e9a018e69ce70f | [
"Zlib",
"BSD-3-Clause",
"NTP",
"BSL-1.0",
"Apache-2.0",
"MIT",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-khronos"
] | permissive | joaovsq/Cross | 3c63c8c67c03e869073fe64b9dd2baf3ce8e418c | 7e952d9f9c6da5de60e539182a279942452d9591 | refs/heads/master | 2021-07-07T12:38:47.344618 | 2019-11-21T19:50:41 | 2019-11-21T19:50:41 | 211,865,491 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 86,326 | cpp | //
// Copyright (c) 2008-2017 the Urho3D project.
//
// 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 "../../Precompiled.h"
#include "../../Core/Context.h"
#include "../../Core/ProcessUtils.h"
#include "../../Core/Profiler.h"
#include "../../Graphics/ConstantBuffer.h"
#include "../../Graphics/Geometry.h"
#include "../../Graphics/Graphics.h"
#include "../../Graphics/GraphicsEvents.h"
#include "../../Graphics/GraphicsImpl.h"
#include "../../Graphics/IndexBuffer.h"
#include "../../Graphics/Renderer.h"
#include "../../Graphics/Shader.h"
#include "../../Graphics/ShaderPrecache.h"
#include "../../Graphics/ShaderProgram.h"
#include "../../Graphics/Texture2D.h"
#include "../../Graphics/TextureCube.h"
#include "../../Graphics/VertexBuffer.h"
#include "../../IO/File.h"
#include "../../IO/Log.h"
#include "../../Resource/ResourceCache.h"
// CROSS BEGIN
#include <SDL/include/SDL.h>
#include <SDL/include/SDL_syswm.h>
// CROSS END
#include "../../DebugNew.h"
#ifdef _MSC_VER
#pragma warning(disable:4355)
#endif
// Prefer the high-performance GPU on switchable GPU systems
extern "C"
{
__declspec(dllexport) DWORD NvOptimusEnablement = 1;
__declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
}
namespace Cross
{
static const D3D11_COMPARISON_FUNC d3dCmpFunc[] =
{
D3D11_COMPARISON_ALWAYS,
D3D11_COMPARISON_EQUAL,
D3D11_COMPARISON_NOT_EQUAL,
D3D11_COMPARISON_LESS,
D3D11_COMPARISON_LESS_EQUAL,
D3D11_COMPARISON_GREATER,
D3D11_COMPARISON_GREATER_EQUAL
};
static const DWORD d3dBlendEnable[] =
{
FALSE,
TRUE,
TRUE,
TRUE,
TRUE,
TRUE,
TRUE,
TRUE
};
static const D3D11_BLEND d3dSrcBlend[] =
{
D3D11_BLEND_ONE,
D3D11_BLEND_ONE,
D3D11_BLEND_DEST_COLOR,
D3D11_BLEND_SRC_ALPHA,
D3D11_BLEND_SRC_ALPHA,
D3D11_BLEND_ONE,
D3D11_BLEND_INV_DEST_ALPHA,
D3D11_BLEND_ONE,
D3D11_BLEND_SRC_ALPHA,
};
static const D3D11_BLEND d3dDestBlend[] =
{
D3D11_BLEND_ZERO,
D3D11_BLEND_ONE,
D3D11_BLEND_ZERO,
D3D11_BLEND_INV_SRC_ALPHA,
D3D11_BLEND_ONE,
D3D11_BLEND_INV_SRC_ALPHA,
D3D11_BLEND_DEST_ALPHA,
D3D11_BLEND_ONE,
D3D11_BLEND_ONE
};
static const D3D11_BLEND_OP d3dBlendOp[] =
{
D3D11_BLEND_OP_ADD,
D3D11_BLEND_OP_ADD,
D3D11_BLEND_OP_ADD,
D3D11_BLEND_OP_ADD,
D3D11_BLEND_OP_ADD,
D3D11_BLEND_OP_ADD,
D3D11_BLEND_OP_ADD,
D3D11_BLEND_OP_REV_SUBTRACT,
D3D11_BLEND_OP_REV_SUBTRACT
};
static const D3D11_STENCIL_OP d3dStencilOp[] =
{
D3D11_STENCIL_OP_KEEP,
D3D11_STENCIL_OP_ZERO,
D3D11_STENCIL_OP_REPLACE,
D3D11_STENCIL_OP_INCR,
D3D11_STENCIL_OP_DECR
};
static const D3D11_CULL_MODE d3dCullMode[] =
{
D3D11_CULL_NONE,
D3D11_CULL_BACK,
D3D11_CULL_FRONT
};
static const D3D11_FILL_MODE d3dFillMode[] =
{
D3D11_FILL_SOLID,
D3D11_FILL_WIREFRAME,
D3D11_FILL_WIREFRAME // Point fill mode not supported
};
static void GetD3DPrimitiveType(unsigned elementCount, PrimitiveType type, unsigned& primitiveCount,
D3D_PRIMITIVE_TOPOLOGY& d3dPrimitiveType)
{
switch (type)
{
case TRIANGLE_LIST:
primitiveCount = elementCount / 3;
d3dPrimitiveType = D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST;
break;
case LINE_LIST:
primitiveCount = elementCount / 2;
d3dPrimitiveType = D3D_PRIMITIVE_TOPOLOGY_LINELIST;
break;
case POINT_LIST:
primitiveCount = elementCount;
d3dPrimitiveType = D3D_PRIMITIVE_TOPOLOGY_POINTLIST;
break;
case TRIANGLE_STRIP:
primitiveCount = elementCount - 2;
d3dPrimitiveType = D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP;
break;
case LINE_STRIP:
primitiveCount = elementCount - 1;
d3dPrimitiveType = D3D_PRIMITIVE_TOPOLOGY_LINESTRIP;
break;
case TRIANGLE_FAN:
// Triangle fan is not supported on D3D11
primitiveCount = 0;
d3dPrimitiveType = D3D_PRIMITIVE_TOPOLOGY_UNDEFINED;
break;
}
}
static HWND GetWindowHandle(SDL_Window* window)
{
SDL_SysWMinfo sysInfo;
SDL_VERSION(&sysInfo.version);
SDL_GetWindowWMInfo(window, &sysInfo);
return sysInfo.info.win.window;
}
const Vector2 Graphics::pixelUVOffset(0.0f, 0.0f);
bool Graphics::gl3Support = false;
Graphics::Graphics(Context* context) :
Object(context),
impl_(new GraphicsImpl()),
window_(0),
externalWindow_(0),
width_(0),
height_(0),
position_(SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED),
multiSample_(1),
fullscreen_(false),
borderless_(false),
resizable_(false),
highDPI_(false),
vsync_(false),
monitor_(0),
refreshRate_(0),
tripleBuffer_(false),
flushGPU_(false),
forceGL2_(false),
sRGB_(false),
anisotropySupport_(false),
dxtTextureSupport_(false),
etcTextureSupport_(false),
pvrtcTextureSupport_(false),
hardwareShadowSupport_(false),
lightPrepassSupport_(false),
deferredSupport_(false),
instancingSupport_(false),
sRGBSupport_(false),
sRGBWriteSupport_(false),
numPrimitives_(0),
numBatches_(0),
maxScratchBufferRequest_(0),
defaultTextureFilterMode_(FILTER_TRILINEAR),
defaultTextureAnisotropy_(4),
shaderPath_("Shaders/HLSL/"),
shaderExtension_(".hlsl"),
orientations_("LandscapeLeft LandscapeRight"),
apiName_("D3D11")
{
SetTextureUnitMappings();
ResetCachedState();
context_->RequireSDL(SDL_INIT_VIDEO);
// Register Graphics library object factories
RegisterGraphicsLibrary(context_);
}
Graphics::~Graphics()
{
{
MutexLock lock(gpuObjectMutex_);
// Release all GPU objects that still exist
for (PODVector<GPUObject*>::Iterator i = gpuObjects_.Begin(); i != gpuObjects_.End(); ++i)
(*i)->Release();
gpuObjects_.Clear();
}
impl_->vertexDeclarations_.Clear();
impl_->allConstantBuffers_.Clear();
for (HashMap<unsigned, ID3D11BlendState*>::Iterator i = impl_->blendStates_.Begin(); i != impl_->blendStates_.End(); ++i)
{
CROSS_SAFE_RELEASE(i->second_);
}
impl_->blendStates_.Clear();
for (HashMap<unsigned, ID3D11DepthStencilState*>::Iterator i = impl_->depthStates_.Begin(); i != impl_->depthStates_.End(); ++i)
{
CROSS_SAFE_RELEASE(i->second_);
}
impl_->depthStates_.Clear();
for (HashMap<unsigned, ID3D11RasterizerState*>::Iterator i = impl_->rasterizerStates_.Begin();
i != impl_->rasterizerStates_.End(); ++i)
{
CROSS_SAFE_RELEASE(i->second_);
}
impl_->rasterizerStates_.Clear();
CROSS_SAFE_RELEASE(impl_->defaultRenderTargetView_);
CROSS_SAFE_RELEASE(impl_->defaultDepthStencilView_);
CROSS_SAFE_RELEASE(impl_->defaultDepthTexture_);
CROSS_SAFE_RELEASE(impl_->resolveTexture_);
CROSS_SAFE_RELEASE(impl_->swapChain_);
CROSS_SAFE_RELEASE(impl_->deviceContext_);
CROSS_SAFE_RELEASE(impl_->device_);
if (window_)
{
SDL_ShowCursor(SDL_TRUE);
SDL_DestroyWindow(window_);
window_ = 0;
}
delete impl_;
impl_ = 0;
context_->ReleaseSDL();
}
bool Graphics::SetMode(int width, int height, bool fullscreen, bool borderless, bool resizable, bool highDPI, bool vsync, bool tripleBuffer,
int multiSample, int monitor, int refreshRate)
{
CROSS_PROFILE(SetScreenMode);
highDPI = false; // SDL does not support High DPI mode on Windows platform yet, so always disable it for now
bool maximize = false;
// Make sure monitor index is not bigger than the currently detected monitors
int monitors = SDL_GetNumVideoDisplays();
if (monitor >= monitors || monitor < 0)
monitor = 0; // this monitor is not present, use first monitor
// Find out the full screen mode display format (match desktop color depth)
SDL_DisplayMode mode;
SDL_GetDesktopDisplayMode(monitor, &mode);
DXGI_FORMAT fullscreenFormat = SDL_BITSPERPIXEL(mode.format) == 16 ? DXGI_FORMAT_B5G6R5_UNORM : DXGI_FORMAT_R8G8B8A8_UNORM;
// If zero dimensions in windowed mode, set windowed mode to maximize and set a predefined default restored window size. If zero in fullscreen, use desktop mode
if (!width || !height)
{
if (fullscreen || borderless)
{
width = mode.w;
height = mode.h;
}
else
{
maximize = resizable;
width = 1024;
height = 768;
}
}
// Fullscreen or Borderless can not be resizable
if (fullscreen || borderless)
resizable = false;
// Borderless cannot be fullscreen, they are mutually exclusive
if (borderless)
fullscreen = false;
// If nothing changes, do not reset the device
if (width == width_ && height == height_ && fullscreen == fullscreen_ && borderless == borderless_ && resizable == resizable_ &&
vsync == vsync_ && tripleBuffer == tripleBuffer_ && multiSample == multiSample_)
return true;
SDL_SetHint(SDL_HINT_ORIENTATIONS, orientations_.CString());
if (!window_)
{
if (!OpenWindow(width, height, resizable, borderless))
return false;
}
// Check fullscreen mode validity. Use a closest match if not found
if (fullscreen)
{
PODVector<IntVector3> resolutions = GetResolutions(monitor);
if (resolutions.Size())
{
unsigned best = 0;
unsigned bestError = M_MAX_UNSIGNED;
for (unsigned i = 0; i < resolutions.Size(); ++i)
{
unsigned error = (unsigned)(Abs(resolutions[i].x_ - width) + Abs(resolutions[i].y_ - height));
if (error < bestError)
{
best = i;
bestError = error;
}
}
width = resolutions[best].x_;
height = resolutions[best].y_;
refreshRate = resolutions[best].z_;
}
}
AdjustWindow(width, height, fullscreen, borderless, monitor);
monitor_ = monitor;
refreshRate_ = refreshRate;
if (maximize)
{
Maximize();
SDL_GetWindowSize(window_, &width, &height);
}
if (!impl_->device_ || multiSample_ != multiSample)
CreateDevice(width, height, multiSample);
UpdateSwapChain(width, height);
fullscreen_ = fullscreen;
borderless_ = borderless;
resizable_ = resizable;
highDPI_ = highDPI;
vsync_ = vsync;
tripleBuffer_ = tripleBuffer;
// Clear the initial window contents to black
Clear(CLEAR_COLOR);
impl_->swapChain_->Present(0, 0);
#ifdef CROSS_LOGGING
String msg;
msg.AppendWithFormat("Set screen mode %dx%d %s monitor %d", width_, height_, (fullscreen_ ? "fullscreen" : "windowed"), monitor_);
if (borderless_)
msg.Append(" borderless");
if (resizable_)
msg.Append(" resizable");
if (multiSample > 1)
msg.AppendWithFormat(" multisample %d", multiSample);
CROSS_LOGINFO(msg);
#endif
using namespace ScreenMode;
VariantMap& eventData = GetEventDataMap();
eventData[P_WIDTH] = width_;
eventData[P_HEIGHT] = height_;
eventData[P_FULLSCREEN] = fullscreen_;
eventData[P_BORDERLESS] = borderless_;
eventData[P_RESIZABLE] = resizable_;
eventData[P_HIGHDPI] = highDPI_;
eventData[P_MONITOR] = monitor_;
eventData[P_REFRESHRATE] = refreshRate_;
SendEvent(E_SCREENMODE, eventData);
return true;
}
bool Graphics::SetMode(int width, int height)
{
return SetMode(width, height, fullscreen_, borderless_, resizable_, highDPI_, vsync_, tripleBuffer_, multiSample_, monitor_, refreshRate_);
}
void Graphics::SetSRGB(bool enable)
{
bool newEnable = enable && sRGBWriteSupport_;
if (newEnable != sRGB_)
{
sRGB_ = newEnable;
if (impl_->swapChain_)
{
// Recreate swap chain for the new backbuffer format
CreateDevice(width_, height_, multiSample_);
UpdateSwapChain(width_, height_);
}
}
}
void Graphics::SetDither(bool enable)
{
// No effect on Direct3D11
}
void Graphics::SetFlushGPU(bool enable)
{
flushGPU_ = enable;
if (impl_->device_)
{
IDXGIDevice1* dxgiDevice;
impl_->device_->QueryInterface(IID_IDXGIDevice1, (void**)&dxgiDevice);
if (dxgiDevice)
{
dxgiDevice->SetMaximumFrameLatency(enable ? 1 : 3);
dxgiDevice->Release();
}
}
}
void Graphics::SetForceGL2(bool enable)
{
// No effect on Direct3D11
}
void Graphics::Close()
{
if (window_)
{
SDL_ShowCursor(SDL_TRUE);
SDL_DestroyWindow(window_);
window_ = 0;
}
}
bool Graphics::TakeScreenShot(Image* destImage_)
{
CROSS_PROFILE(TakeScreenShot);
if (!impl_->device_)
return false;
// CROSS BEGIN
if (!destImage_)
return false;
Image& destImage = *destImage_;
// CROSS END
D3D11_TEXTURE2D_DESC textureDesc;
memset(&textureDesc, 0, sizeof textureDesc);
textureDesc.Width = (UINT)width_;
textureDesc.Height = (UINT)height_;
textureDesc.MipLevels = 1;
textureDesc.ArraySize = 1;
textureDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
textureDesc.SampleDesc.Count = 1;
textureDesc.SampleDesc.Quality = 0;
textureDesc.Usage = D3D11_USAGE_STAGING;
textureDesc.CPUAccessFlags = D3D11_CPU_ACCESS_READ;
ID3D11Texture2D* stagingTexture = 0;
HRESULT hr = impl_->device_->CreateTexture2D(&textureDesc, 0, &stagingTexture);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(stagingTexture);
CROSS_LOGD3DERROR("Could not create staging texture for screenshot", hr);
return false;
}
ID3D11Resource* source = 0;
impl_->defaultRenderTargetView_->GetResource(&source);
if (multiSample_ > 1)
{
// If backbuffer is multisampled, need another DEFAULT usage texture to resolve the data to first
CreateResolveTexture();
if (!impl_->resolveTexture_)
{
stagingTexture->Release();
source->Release();
return false;
}
impl_->deviceContext_->ResolveSubresource(impl_->resolveTexture_, 0, source, 0, DXGI_FORMAT_R8G8B8A8_UNORM);
impl_->deviceContext_->CopyResource(stagingTexture, impl_->resolveTexture_);
}
else
impl_->deviceContext_->CopyResource(stagingTexture, source);
source->Release();
D3D11_MAPPED_SUBRESOURCE mappedData;
mappedData.pData = 0;
hr = impl_->deviceContext_->Map(stagingTexture, 0, D3D11_MAP_READ, 0, &mappedData);
if (FAILED(hr) || !mappedData.pData)
{
CROSS_LOGD3DERROR("Could not map staging texture for screenshot", hr);
stagingTexture->Release();
return false;
}
destImage.SetSize(width_, height_, 3);
unsigned char* destData = destImage.GetData();
for (int y = 0; y < height_; ++y)
{
unsigned char* src = (unsigned char*)mappedData.pData + y * mappedData.RowPitch;
for (int x = 0; x < width_; ++x)
{
*destData++ = *src++;
*destData++ = *src++;
*destData++ = *src++;
++src;
}
}
impl_->deviceContext_->Unmap(stagingTexture, 0);
stagingTexture->Release();
return true;
}
bool Graphics::BeginFrame()
{
if (!IsInitialized())
return false;
// If using an external window, check it for size changes, and reset screen mode if necessary
if (externalWindow_)
{
int width, height;
SDL_GetWindowSize(window_, &width, &height);
if (width != width_ || height != height_)
SetMode(width, height);
}
else
{
// To prevent a loop of endless device loss and flicker, do not attempt to render when in fullscreen
// and the window is minimized
if (fullscreen_ && (SDL_GetWindowFlags(window_) & SDL_WINDOW_MINIMIZED))
return false;
}
// Set default rendertarget and depth buffer
ResetRenderTargets();
// Cleanup textures from previous frame
for (unsigned i = 0; i < MAX_TEXTURE_UNITS; ++i)
SetTexture(i, 0);
numPrimitives_ = 0;
numBatches_ = 0;
SendEvent(E_BEGINRENDERING);
return true;
}
void Graphics::EndFrame()
{
if (!IsInitialized())
return;
{
CROSS_PROFILE(Present);
SendEvent(E_ENDRENDERING);
impl_->swapChain_->Present(vsync_ ? 1 : 0, 0);
}
// Clean up too large scratch buffers
CleanupScratchBuffers();
}
void Graphics::Clear(unsigned flags, const Color& color, float depth, unsigned stencil)
{
IntVector2 rtSize = GetRenderTargetDimensions();
bool oldColorWrite = colorWrite_;
bool oldDepthWrite = depthWrite_;
// D3D11 clear always clears the whole target regardless of viewport or scissor test settings
// Emulate partial clear by rendering a quad
if (!viewport_.left_ && !viewport_.top_ && viewport_.right_ == rtSize.x_ && viewport_.bottom_ == rtSize.y_)
{
// Make sure we use the read-write version of the depth stencil
SetDepthWrite(true);
PrepareDraw();
if ((flags & CLEAR_COLOR) && impl_->renderTargetViews_[0])
impl_->deviceContext_->ClearRenderTargetView(impl_->renderTargetViews_[0], color.Data());
if ((flags & (CLEAR_DEPTH | CLEAR_STENCIL)) && impl_->depthStencilView_)
{
unsigned depthClearFlags = 0;
if (flags & CLEAR_DEPTH)
depthClearFlags |= D3D11_CLEAR_DEPTH;
if (flags & CLEAR_STENCIL)
depthClearFlags |= D3D11_CLEAR_STENCIL;
impl_->deviceContext_->ClearDepthStencilView(impl_->depthStencilView_, depthClearFlags, depth, (UINT8)stencil);
}
}
else
{
Renderer* renderer = GetSubsystem<Renderer>();
if (!renderer)
return;
Geometry* geometry = renderer->GetQuadGeometry();
Matrix3x4 model = Matrix3x4::IDENTITY;
Matrix4 projection = Matrix4::IDENTITY;
model.m23_ = Clamp(depth, 0.0f, 1.0f);
SetBlendMode(BLEND_REPLACE);
SetColorWrite((flags & CLEAR_COLOR) != 0);
SetCullMode(CULL_NONE);
SetDepthTest(CMP_ALWAYS);
SetDepthWrite((flags & CLEAR_DEPTH) != 0);
SetFillMode(FILL_SOLID);
SetScissorTest(false);
SetStencilTest((flags & CLEAR_STENCIL) != 0, CMP_ALWAYS, OP_REF, OP_KEEP, OP_KEEP, stencil);
SetShaders(GetShader(VS, "ClearFramebuffer"), GetShader(PS, "ClearFramebuffer"));
SetShaderParameter(VSP_MODEL, model);
SetShaderParameter(VSP_VIEWPROJ, projection);
SetShaderParameter(PSP_MATDIFFCOLOR, color);
geometry->Draw(this);
SetStencilTest(false);
ClearParameterSources();
}
// Restore color & depth write state now
SetColorWrite(oldColorWrite);
SetDepthWrite(oldDepthWrite);
}
bool Graphics::ResolveToTexture(Texture2D* destination, const IntRect& viewport)
{
if (!destination || !destination->GetRenderSurface())
return false;
CROSS_PROFILE(ResolveToTexture);
IntRect vpCopy = viewport;
if (vpCopy.right_ <= vpCopy.left_)
vpCopy.right_ = vpCopy.left_ + 1;
if (vpCopy.bottom_ <= vpCopy.top_)
vpCopy.bottom_ = vpCopy.top_ + 1;
D3D11_BOX srcBox;
srcBox.left = Clamp(vpCopy.left_, 0, width_);
srcBox.top = Clamp(vpCopy.top_, 0, height_);
srcBox.right = Clamp(vpCopy.right_, 0, width_);
srcBox.bottom = Clamp(vpCopy.bottom_, 0, height_);
srcBox.front = 0;
srcBox.back = 1;
ID3D11Resource* source = 0;
bool resolve = multiSample_ > 1;
impl_->defaultRenderTargetView_->GetResource(&source);
if (!resolve)
{
if (!srcBox.left && !srcBox.top && srcBox.right == width_ && srcBox.bottom == height_)
impl_->deviceContext_->CopyResource((ID3D11Resource*)destination->GetGPUObject(), source);
else
impl_->deviceContext_->CopySubresourceRegion((ID3D11Resource*)destination->GetGPUObject(), 0, 0, 0, 0, source, 0, &srcBox);
}
else
{
if (!srcBox.left && !srcBox.top && srcBox.right == width_ && srcBox.bottom == height_)
{
impl_->deviceContext_->ResolveSubresource((ID3D11Resource*)destination->GetGPUObject(), 0, source, 0, (DXGI_FORMAT)
destination->GetFormat());
}
else
{
CreateResolveTexture();
if (impl_->resolveTexture_)
{
impl_->deviceContext_->ResolveSubresource(impl_->resolveTexture_, 0, source, 0, DXGI_FORMAT_R8G8B8A8_UNORM);
impl_->deviceContext_->CopySubresourceRegion((ID3D11Resource*)destination->GetGPUObject(), 0, 0, 0, 0, impl_->resolveTexture_, 0, &srcBox);
}
}
}
source->Release();
return true;
}
bool Graphics::ResolveToTexture(Texture2D* texture)
{
if (!texture)
return false;
RenderSurface* surface = texture->GetRenderSurface();
if (!surface)
return false;
texture->SetResolveDirty(false);
surface->SetResolveDirty(false);
ID3D11Resource* source = (ID3D11Resource*)texture->GetGPUObject();
ID3D11Resource* dest = (ID3D11Resource*)texture->GetResolveTexture();
if (!source || !dest)
return false;
impl_->deviceContext_->ResolveSubresource(dest, 0, source, 0, (DXGI_FORMAT)texture->GetFormat());
return true;
}
bool Graphics::ResolveToTexture(TextureCube* texture)
{
if (!texture)
return false;
texture->SetResolveDirty(false);
ID3D11Resource* source = (ID3D11Resource*)texture->GetGPUObject();
ID3D11Resource* dest = (ID3D11Resource*)texture->GetResolveTexture();
if (!source || !dest)
return false;
for (unsigned i = 0; i < MAX_CUBEMAP_FACES; ++i)
{
// Resolve only the surface(s) that were actually rendered to
RenderSurface* surface = texture->GetRenderSurface((CubeMapFace)i);
if (!surface->IsResolveDirty())
continue;
surface->SetResolveDirty(false);
unsigned subResource = D3D11CalcSubresource(0, i, texture->GetLevels());
impl_->deviceContext_->ResolveSubresource(dest, subResource, source, subResource, (DXGI_FORMAT)texture->GetFormat());
}
return true;
}
void Graphics::Draw(PrimitiveType type, unsigned vertexStart, unsigned vertexCount)
{
if (!vertexCount || !impl_->shaderProgram_)
return;
PrepareDraw();
unsigned primitiveCount;
D3D_PRIMITIVE_TOPOLOGY d3dPrimitiveType;
if (fillMode_ == FILL_POINT)
type = POINT_LIST;
GetD3DPrimitiveType(vertexCount, type, primitiveCount, d3dPrimitiveType);
if (d3dPrimitiveType != primitiveType_)
{
impl_->deviceContext_->IASetPrimitiveTopology(d3dPrimitiveType);
primitiveType_ = d3dPrimitiveType;
}
impl_->deviceContext_->Draw(vertexCount, vertexStart);
numPrimitives_ += primitiveCount;
++numBatches_;
}
void Graphics::Draw(PrimitiveType type, unsigned indexStart, unsigned indexCount, unsigned minVertex, unsigned vertexCount)
{
if (!vertexCount || !impl_->shaderProgram_)
return;
PrepareDraw();
unsigned primitiveCount;
D3D_PRIMITIVE_TOPOLOGY d3dPrimitiveType;
if (fillMode_ == FILL_POINT)
type = POINT_LIST;
GetD3DPrimitiveType(indexCount, type, primitiveCount, d3dPrimitiveType);
if (d3dPrimitiveType != primitiveType_)
{
impl_->deviceContext_->IASetPrimitiveTopology(d3dPrimitiveType);
primitiveType_ = d3dPrimitiveType;
}
impl_->deviceContext_->DrawIndexed(indexCount, indexStart, 0);
numPrimitives_ += primitiveCount;
++numBatches_;
}
void Graphics::Draw(PrimitiveType type, unsigned indexStart, unsigned indexCount, unsigned baseVertexIndex, unsigned minVertex, unsigned vertexCount)
{
if (!vertexCount || !impl_->shaderProgram_)
return;
PrepareDraw();
unsigned primitiveCount;
D3D_PRIMITIVE_TOPOLOGY d3dPrimitiveType;
if (fillMode_ == FILL_POINT)
type = POINT_LIST;
GetD3DPrimitiveType(indexCount, type, primitiveCount, d3dPrimitiveType);
if (d3dPrimitiveType != primitiveType_)
{
impl_->deviceContext_->IASetPrimitiveTopology(d3dPrimitiveType);
primitiveType_ = d3dPrimitiveType;
}
impl_->deviceContext_->DrawIndexed(indexCount, indexStart, baseVertexIndex);
numPrimitives_ += primitiveCount;
++numBatches_;
}
void Graphics::DrawInstanced(PrimitiveType type, unsigned indexStart, unsigned indexCount, unsigned minVertex, unsigned vertexCount,
unsigned instanceCount)
{
if (!indexCount || !instanceCount || !impl_->shaderProgram_)
return;
PrepareDraw();
unsigned primitiveCount;
D3D_PRIMITIVE_TOPOLOGY d3dPrimitiveType;
if (fillMode_ == FILL_POINT)
type = POINT_LIST;
GetD3DPrimitiveType(indexCount, type, primitiveCount, d3dPrimitiveType);
if (d3dPrimitiveType != primitiveType_)
{
impl_->deviceContext_->IASetPrimitiveTopology(d3dPrimitiveType);
primitiveType_ = d3dPrimitiveType;
}
impl_->deviceContext_->DrawIndexedInstanced(indexCount, instanceCount, indexStart, 0, 0);
numPrimitives_ += instanceCount * primitiveCount;
++numBatches_;
}
void Graphics::DrawInstanced(PrimitiveType type, unsigned indexStart, unsigned indexCount, unsigned baseVertexIndex, unsigned minVertex, unsigned vertexCount,
unsigned instanceCount)
{
if (!indexCount || !instanceCount || !impl_->shaderProgram_)
return;
PrepareDraw();
unsigned primitiveCount;
D3D_PRIMITIVE_TOPOLOGY d3dPrimitiveType;
if (fillMode_ == FILL_POINT)
type = POINT_LIST;
GetD3DPrimitiveType(indexCount, type, primitiveCount, d3dPrimitiveType);
if (d3dPrimitiveType != primitiveType_)
{
impl_->deviceContext_->IASetPrimitiveTopology(d3dPrimitiveType);
primitiveType_ = d3dPrimitiveType;
}
impl_->deviceContext_->DrawIndexedInstanced(indexCount, instanceCount, indexStart, baseVertexIndex, 0);
numPrimitives_ += instanceCount * primitiveCount;
++numBatches_;
}
void Graphics::SetVertexBuffer(VertexBuffer* buffer)
{
// Note: this is not multi-instance safe
static PODVector<VertexBuffer*> vertexBuffers(1);
vertexBuffers[0] = buffer;
SetVertexBuffers(vertexBuffers);
}
bool Graphics::SetVertexBuffers(const PODVector<VertexBuffer*>& buffers, unsigned instanceOffset)
{
if (buffers.Size() > MAX_VERTEX_STREAMS)
{
CROSS_LOGERROR("Too many vertex buffers");
return false;
}
for (unsigned i = 0; i < MAX_VERTEX_STREAMS; ++i)
{
VertexBuffer* buffer = 0;
bool changed = false;
buffer = i < buffers.Size() ? buffers[i] : 0;
if (buffer)
{
const PODVector<VertexElement>& elements = buffer->GetElements();
// Check if buffer has per-instance data
bool hasInstanceData = elements.Size() && elements[0].perInstance_;
unsigned offset = hasInstanceData ? instanceOffset * buffer->GetVertexSize() : 0;
if (buffer != vertexBuffers_[i] || offset != impl_->vertexOffsets_[i])
{
vertexBuffers_[i] = buffer;
impl_->vertexBuffers_[i] = (ID3D11Buffer*)buffer->GetGPUObject();
impl_->vertexSizes_[i] = buffer->GetVertexSize();
impl_->vertexOffsets_[i] = offset;
changed = true;
}
}
else if (vertexBuffers_[i])
{
vertexBuffers_[i] = 0;
impl_->vertexBuffers_[i] = 0;
impl_->vertexSizes_[i] = 0;
impl_->vertexOffsets_[i] = 0;
changed = true;
}
if (changed)
{
impl_->vertexDeclarationDirty_ = true;
if (impl_->firstDirtyVB_ == M_MAX_UNSIGNED)
impl_->firstDirtyVB_ = impl_->lastDirtyVB_ = i;
else
{
if (i < impl_->firstDirtyVB_)
impl_->firstDirtyVB_ = i;
if (i > impl_->lastDirtyVB_)
impl_->lastDirtyVB_ = i;
}
}
}
return true;
}
bool Graphics::SetVertexBuffers(const Vector<SharedPtr<VertexBuffer> >& buffers, unsigned instanceOffset)
{
return SetVertexBuffers(reinterpret_cast<const PODVector<VertexBuffer*>&>(buffers), instanceOffset);
}
void Graphics::SetIndexBuffer(IndexBuffer* buffer)
{
if (buffer != indexBuffer_)
{
if (buffer)
impl_->deviceContext_->IASetIndexBuffer((ID3D11Buffer*)buffer->GetGPUObject(),
buffer->GetIndexSize() == sizeof(unsigned short) ? DXGI_FORMAT_R16_UINT : DXGI_FORMAT_R32_UINT, 0);
else
impl_->deviceContext_->IASetIndexBuffer(0, DXGI_FORMAT_UNKNOWN, 0);
indexBuffer_ = buffer;
}
}
void Graphics::SetShaders(ShaderVariation* vs, ShaderVariation* ps)
{
// Switch to the clip plane variations if necessary
if (useClipPlane_)
{
if (vs)
vs = vs->GetOwner()->GetVariation(VS, vs->GetDefinesClipPlane());
if (ps)
ps = ps->GetOwner()->GetVariation(PS, ps->GetDefinesClipPlane());
}
if (vs == vertexShader_ && ps == pixelShader_)
return;
if (vs != vertexShader_)
{
// Create the shader now if not yet created. If already attempted, do not retry
if (vs && !vs->GetGPUObject())
{
if (vs->GetCompilerOutput().Empty())
{
CROSS_PROFILE(CompileVertexShader);
bool success = vs->Create();
if (!success)
{
CROSS_LOGERROR("Failed to compile vertex shader " + vs->GetFullName() + ":\n" + vs->GetCompilerOutput());
vs = 0;
}
}
else
vs = 0;
}
impl_->deviceContext_->VSSetShader((ID3D11VertexShader*)(vs ? vs->GetGPUObject() : 0), 0, 0);
vertexShader_ = vs;
impl_->vertexDeclarationDirty_ = true;
}
if (ps != pixelShader_)
{
if (ps && !ps->GetGPUObject())
{
if (ps->GetCompilerOutput().Empty())
{
CROSS_PROFILE(CompilePixelShader);
bool success = ps->Create();
if (!success)
{
CROSS_LOGERROR("Failed to compile pixel shader " + ps->GetFullName() + ":\n" + ps->GetCompilerOutput());
ps = 0;
}
}
else
ps = 0;
}
impl_->deviceContext_->PSSetShader((ID3D11PixelShader*)(ps ? ps->GetGPUObject() : 0), 0, 0);
pixelShader_ = ps;
}
// Update current shader parameters & constant buffers
if (vertexShader_ && pixelShader_)
{
Pair<ShaderVariation*, ShaderVariation*> key = MakePair(vertexShader_, pixelShader_);
ShaderProgramMap::Iterator i = impl_->shaderPrograms_.Find(key);
if (i != impl_->shaderPrograms_.End())
impl_->shaderProgram_ = i->second_.Get();
else
{
ShaderProgram* newProgram = impl_->shaderPrograms_[key] = new ShaderProgram(this, vertexShader_, pixelShader_);
impl_->shaderProgram_ = newProgram;
}
bool vsBuffersChanged = false;
bool psBuffersChanged = false;
for (unsigned i = 0; i < MAX_SHADER_PARAMETER_GROUPS; ++i)
{
ID3D11Buffer* vsBuffer = impl_->shaderProgram_->vsConstantBuffers_[i] ? (ID3D11Buffer*)impl_->shaderProgram_->vsConstantBuffers_[i]->
GetGPUObject() : 0;
if (vsBuffer != impl_->constantBuffers_[VS][i])
{
impl_->constantBuffers_[VS][i] = vsBuffer;
shaderParameterSources_[i] = (const void*)M_MAX_UNSIGNED;
vsBuffersChanged = true;
}
ID3D11Buffer* psBuffer = impl_->shaderProgram_->psConstantBuffers_[i] ? (ID3D11Buffer*)impl_->shaderProgram_->psConstantBuffers_[i]->
GetGPUObject() : 0;
if (psBuffer != impl_->constantBuffers_[PS][i])
{
impl_->constantBuffers_[PS][i] = psBuffer;
shaderParameterSources_[i] = (const void*)M_MAX_UNSIGNED;
psBuffersChanged = true;
}
}
if (vsBuffersChanged)
impl_->deviceContext_->VSSetConstantBuffers(0, MAX_SHADER_PARAMETER_GROUPS, &impl_->constantBuffers_[VS][0]);
if (psBuffersChanged)
impl_->deviceContext_->PSSetConstantBuffers(0, MAX_SHADER_PARAMETER_GROUPS, &impl_->constantBuffers_[PS][0]);
}
else
impl_->shaderProgram_ = 0;
// Store shader combination if shader dumping in progress
if (shaderPrecache_)
shaderPrecache_->StoreShaders(vertexShader_, pixelShader_);
// Update clip plane parameter if necessary
if (useClipPlane_)
SetShaderParameter(VSP_CLIPPLANE, clipPlane_);
}
void Graphics::SetShaderParameter(StringHash param, const float* data, unsigned count)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, (unsigned)(count * sizeof(float)), data);
}
void Graphics::SetShaderParameter(StringHash param, float value)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(float), &value);
}
void Graphics::SetShaderParameter(StringHash param, int value)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(int), &value);
}
void Graphics::SetShaderParameter(StringHash param, bool value)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(bool), &value);
}
void Graphics::SetShaderParameter(StringHash param, const Color& color)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(Color), &color);
}
void Graphics::SetShaderParameter(StringHash param, const Vector2& vector)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(Vector2), &vector);
}
void Graphics::SetShaderParameter(StringHash param, const Matrix3& matrix)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetVector3ArrayParameter(i->second_.offset_, 3, &matrix);
}
void Graphics::SetShaderParameter(StringHash param, const Vector3& vector)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(Vector3), &vector);
}
void Graphics::SetShaderParameter(StringHash param, const Matrix4& matrix)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(Matrix4), &matrix);
}
void Graphics::SetShaderParameter(StringHash param, const Vector4& vector)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(Vector4), &vector);
}
void Graphics::SetShaderParameter(StringHash param, const Matrix3x4& matrix)
{
HashMap<StringHash, ShaderParameter>::Iterator i;
if (!impl_->shaderProgram_ || (i = impl_->shaderProgram_->parameters_.Find(param)) == impl_->shaderProgram_->parameters_.End())
return;
ConstantBuffer* buffer = i->second_.bufferPtr_;
if (!buffer->IsDirty())
impl_->dirtyConstantBuffers_.Push(buffer);
buffer->SetParameter(i->second_.offset_, sizeof(Matrix3x4), &matrix);
}
bool Graphics::NeedParameterUpdate(ShaderParameterGroup group, const void* source)
{
if ((unsigned)(size_t)shaderParameterSources_[group] == M_MAX_UNSIGNED || shaderParameterSources_[group] != source)
{
shaderParameterSources_[group] = source;
return true;
}
else
return false;
}
bool Graphics::HasShaderParameter(StringHash param)
{
return impl_->shaderProgram_ && impl_->shaderProgram_->parameters_.Find(param) != impl_->shaderProgram_->parameters_.End();
}
bool Graphics::HasTextureUnit(TextureUnit unit)
{
return (vertexShader_ && vertexShader_->HasTextureUnit(unit)) || (pixelShader_ && pixelShader_->HasTextureUnit(unit));
}
void Graphics::ClearParameterSource(ShaderParameterGroup group)
{
shaderParameterSources_[group] = (const void*)M_MAX_UNSIGNED;
}
void Graphics::ClearParameterSources()
{
for (unsigned i = 0; i < MAX_SHADER_PARAMETER_GROUPS; ++i)
shaderParameterSources_[i] = (const void*)M_MAX_UNSIGNED;
}
void Graphics::ClearTransformSources()
{
shaderParameterSources_[SP_CAMERA] = (const void*)M_MAX_UNSIGNED;
shaderParameterSources_[SP_OBJECT] = (const void*)M_MAX_UNSIGNED;
}
void Graphics::SetTexture(unsigned index, Texture* texture)
{
if (index >= MAX_TEXTURE_UNITS)
return;
// Check if texture is currently bound as a rendertarget. In that case, use its backup texture, or blank if not defined
if (texture)
{
if (renderTargets_[0] && renderTargets_[0]->GetParentTexture() == texture)
texture = texture->GetBackupTexture();
else
{
// Resolve multisampled texture now as necessary
if (texture->GetMultiSample() > 1 && texture->GetAutoResolve() && texture->IsResolveDirty())
{
if (texture->GetType() == Texture2D::GetTypeStatic())
ResolveToTexture(static_cast<Texture2D*>(texture));
if (texture->GetType() == TextureCube::GetTypeStatic())
ResolveToTexture(static_cast<TextureCube*>(texture));
}
}
if (texture->GetLevelsDirty())
texture->RegenerateLevels();
}
if (texture && texture->GetParametersDirty())
{
texture->UpdateParameters();
textures_[index] = 0; // Force reassign
}
if (texture != textures_[index])
{
if (impl_->firstDirtyTexture_ == M_MAX_UNSIGNED)
impl_->firstDirtyTexture_ = impl_->lastDirtyTexture_ = index;
else
{
if (index < impl_->firstDirtyTexture_)
impl_->firstDirtyTexture_ = index;
if (index > impl_->lastDirtyTexture_)
impl_->lastDirtyTexture_ = index;
}
textures_[index] = texture;
impl_->shaderResourceViews_[index] = texture ? (ID3D11ShaderResourceView*)texture->GetShaderResourceView() : 0;
impl_->samplers_[index] = texture ? (ID3D11SamplerState*)texture->GetSampler() : 0;
impl_->texturesDirty_ = true;
}
}
void SetTextureForUpdate(Texture* texture)
{
// No-op on Direct3D11
}
void Graphics::SetDefaultTextureFilterMode(TextureFilterMode mode)
{
if (mode != defaultTextureFilterMode_)
{
defaultTextureFilterMode_ = mode;
SetTextureParametersDirty();
}
}
void Graphics::SetDefaultTextureAnisotropy(unsigned level)
{
level = Max(level, 1U);
if (level != defaultTextureAnisotropy_)
{
defaultTextureAnisotropy_ = level;
SetTextureParametersDirty();
}
}
void Graphics::Restore()
{
// No-op on Direct3D11
}
void Graphics::SetTextureParametersDirty()
{
MutexLock lock(gpuObjectMutex_);
for (PODVector<GPUObject*>::Iterator i = gpuObjects_.Begin(); i != gpuObjects_.End(); ++i)
{
Texture* texture = dynamic_cast<Texture*>(*i);
if (texture)
texture->SetParametersDirty();
}
}
void Graphics::ResetRenderTargets()
{
for (unsigned i = 0; i < MAX_RENDERTARGETS; ++i)
SetRenderTarget(i, (RenderSurface*)0);
SetDepthStencil((RenderSurface*)0);
SetViewport(IntRect(0, 0, width_, height_));
}
void Graphics::ResetRenderTarget(unsigned index)
{
SetRenderTarget(index, (RenderSurface*)0);
}
void Graphics::ResetDepthStencil()
{
SetDepthStencil((RenderSurface*)0);
}
void Graphics::SetRenderTarget(unsigned index, RenderSurface* renderTarget)
{
if (index >= MAX_RENDERTARGETS)
return;
if (renderTarget != renderTargets_[index])
{
renderTargets_[index] = renderTarget;
impl_->renderTargetsDirty_ = true;
// If the rendertarget is also bound as a texture, replace with backup texture or null
if (renderTarget)
{
Texture* parentTexture = renderTarget->GetParentTexture();
for (unsigned i = 0; i < MAX_TEXTURE_UNITS; ++i)
{
if (textures_[i] == parentTexture)
SetTexture(i, textures_[i]->GetBackupTexture());
}
// If multisampled, mark the texture & surface needing resolve
if (parentTexture->GetMultiSample() > 1 && parentTexture->GetAutoResolve())
{
parentTexture->SetResolveDirty(true);
renderTarget->SetResolveDirty(true);
}
// If mipmapped, mark the levels needing regeneration
if (parentTexture->GetLevels() > 1)
parentTexture->SetLevelsDirty();
}
}
}
void Graphics::SetRenderTarget(unsigned index, Texture2D* texture)
{
RenderSurface* renderTarget = 0;
if (texture)
renderTarget = texture->GetRenderSurface();
SetRenderTarget(index, renderTarget);
}
void Graphics::SetDepthStencil(RenderSurface* depthStencil)
{
if (depthStencil != depthStencil_)
{
depthStencil_ = depthStencil;
impl_->renderTargetsDirty_ = true;
}
}
void Graphics::SetDepthStencil(Texture2D* texture)
{
RenderSurface* depthStencil = 0;
if (texture)
depthStencil = texture->GetRenderSurface();
SetDepthStencil(depthStencil);
// Constant depth bias depends on the bitdepth
impl_->rasterizerStateDirty_ = true;
}
void Graphics::SetViewport(const IntRect& rect)
{
IntVector2 size = GetRenderTargetDimensions();
IntRect rectCopy = rect;
if (rectCopy.right_ <= rectCopy.left_)
rectCopy.right_ = rectCopy.left_ + 1;
if (rectCopy.bottom_ <= rectCopy.top_)
rectCopy.bottom_ = rectCopy.top_ + 1;
rectCopy.left_ = Clamp(rectCopy.left_, 0, size.x_);
rectCopy.top_ = Clamp(rectCopy.top_, 0, size.y_);
rectCopy.right_ = Clamp(rectCopy.right_, 0, size.x_);
rectCopy.bottom_ = Clamp(rectCopy.bottom_, 0, size.y_);
static D3D11_VIEWPORT d3dViewport;
d3dViewport.TopLeftX = (float)rectCopy.left_;
d3dViewport.TopLeftY = (float)rectCopy.top_;
d3dViewport.Width = (float)(rectCopy.right_ - rectCopy.left_);
d3dViewport.Height = (float)(rectCopy.bottom_ - rectCopy.top_);
d3dViewport.MinDepth = 0.0f;
d3dViewport.MaxDepth = 1.0f;
impl_->deviceContext_->RSSetViewports(1, &d3dViewport);
viewport_ = rectCopy;
// Disable scissor test, needs to be re-enabled by the user
SetScissorTest(false);
}
void Graphics::SetBlendMode(BlendMode mode, bool alphaToCoverage)
{
if (mode != blendMode_ || alphaToCoverage != alphaToCoverage_)
{
blendMode_ = mode;
alphaToCoverage_ = alphaToCoverage;
impl_->blendStateDirty_ = true;
}
}
void Graphics::SetColorWrite(bool enable)
{
if (enable != colorWrite_)
{
colorWrite_ = enable;
impl_->blendStateDirty_ = true;
}
}
void Graphics::SetCullMode(CullMode mode)
{
if (mode != cullMode_)
{
cullMode_ = mode;
impl_->rasterizerStateDirty_ = true;
}
}
void Graphics::SetDepthBias(float constantBias, float slopeScaledBias)
{
if (constantBias != constantDepthBias_ || slopeScaledBias != slopeScaledDepthBias_)
{
constantDepthBias_ = constantBias;
slopeScaledDepthBias_ = slopeScaledBias;
impl_->rasterizerStateDirty_ = true;
}
}
void Graphics::SetDepthTest(CompareMode mode)
{
if (mode != depthTestMode_)
{
depthTestMode_ = mode;
impl_->depthStateDirty_ = true;
}
}
void Graphics::SetDepthWrite(bool enable)
{
if (enable != depthWrite_)
{
depthWrite_ = enable;
impl_->depthStateDirty_ = true;
// Also affects whether a read-only version of depth-stencil should be bound, to allow sampling
impl_->renderTargetsDirty_ = true;
}
}
void Graphics::SetFillMode(FillMode mode)
{
if (mode != fillMode_)
{
fillMode_ = mode;
impl_->rasterizerStateDirty_ = true;
}
}
void Graphics::SetLineAntiAlias(bool enable)
{
if (enable != lineAntiAlias_)
{
lineAntiAlias_ = enable;
impl_->rasterizerStateDirty_ = true;
}
}
void Graphics::SetScissorTest(bool enable, const Rect& rect, bool borderInclusive)
{
// During some light rendering loops, a full rect is toggled on/off repeatedly.
// Disable scissor in that case to reduce state changes
if (rect.min_.x_ <= 0.0f && rect.min_.y_ <= 0.0f && rect.max_.x_ >= 1.0f && rect.max_.y_ >= 1.0f)
enable = false;
if (enable)
{
IntVector2 rtSize(GetRenderTargetDimensions());
IntVector2 viewSize(viewport_.Size());
IntVector2 viewPos(viewport_.left_, viewport_.top_);
IntRect intRect;
int expand = borderInclusive ? 1 : 0;
intRect.left_ = Clamp((int)((rect.min_.x_ + 1.0f) * 0.5f * viewSize.x_) + viewPos.x_, 0, rtSize.x_ - 1);
intRect.top_ = Clamp((int)((-rect.max_.y_ + 1.0f) * 0.5f * viewSize.y_) + viewPos.y_, 0, rtSize.y_ - 1);
intRect.right_ = Clamp((int)((rect.max_.x_ + 1.0f) * 0.5f * viewSize.x_) + viewPos.x_ + expand, 0, rtSize.x_);
intRect.bottom_ = Clamp((int)((-rect.min_.y_ + 1.0f) * 0.5f * viewSize.y_) + viewPos.y_ + expand, 0, rtSize.y_);
if (intRect.right_ == intRect.left_)
intRect.right_++;
if (intRect.bottom_ == intRect.top_)
intRect.bottom_++;
if (intRect.right_ < intRect.left_ || intRect.bottom_ < intRect.top_)
enable = false;
if (enable && intRect != scissorRect_)
{
scissorRect_ = intRect;
impl_->scissorRectDirty_ = true;
}
}
if (enable != scissorTest_)
{
scissorTest_ = enable;
impl_->rasterizerStateDirty_ = true;
}
}
void Graphics::SetScissorTest(bool enable, const IntRect& rect)
{
IntVector2 rtSize(GetRenderTargetDimensions());
IntVector2 viewPos(viewport_.left_, viewport_.top_);
if (enable)
{
IntRect intRect;
intRect.left_ = Clamp(rect.left_ + viewPos.x_, 0, rtSize.x_ - 1);
intRect.top_ = Clamp(rect.top_ + viewPos.y_, 0, rtSize.y_ - 1);
intRect.right_ = Clamp(rect.right_ + viewPos.x_, 0, rtSize.x_);
intRect.bottom_ = Clamp(rect.bottom_ + viewPos.y_, 0, rtSize.y_);
if (intRect.right_ == intRect.left_)
intRect.right_++;
if (intRect.bottom_ == intRect.top_)
intRect.bottom_++;
if (intRect.right_ < intRect.left_ || intRect.bottom_ < intRect.top_)
enable = false;
if (enable && intRect != scissorRect_)
{
scissorRect_ = intRect;
impl_->scissorRectDirty_ = true;
}
}
if (enable != scissorTest_)
{
scissorTest_ = enable;
impl_->rasterizerStateDirty_ = true;
}
}
void Graphics::SetStencilTest(bool enable, CompareMode mode, StencilOp pass, StencilOp fail, StencilOp zFail, unsigned stencilRef,
unsigned compareMask, unsigned writeMask)
{
if (enable != stencilTest_)
{
stencilTest_ = enable;
impl_->depthStateDirty_ = true;
}
if (enable)
{
if (mode != stencilTestMode_)
{
stencilTestMode_ = mode;
impl_->depthStateDirty_ = true;
}
if (pass != stencilPass_)
{
stencilPass_ = pass;
impl_->depthStateDirty_ = true;
}
if (fail != stencilFail_)
{
stencilFail_ = fail;
impl_->depthStateDirty_ = true;
}
if (zFail != stencilZFail_)
{
stencilZFail_ = zFail;
impl_->depthStateDirty_ = true;
}
if (compareMask != stencilCompareMask_)
{
stencilCompareMask_ = compareMask;
impl_->depthStateDirty_ = true;
}
if (writeMask != stencilWriteMask_)
{
stencilWriteMask_ = writeMask;
impl_->depthStateDirty_ = true;
}
if (stencilRef != stencilRef_)
{
stencilRef_ = stencilRef;
impl_->stencilRefDirty_ = true;
impl_->depthStateDirty_ = true;
}
}
}
void Graphics::SetClipPlane(bool enable, const Plane& clipPlane, const Matrix3x4& view, const Matrix4& projection)
{
useClipPlane_ = enable;
if (enable)
{
Matrix4 viewProj = projection * view;
clipPlane_ = clipPlane.Transformed(viewProj).ToVector4();
SetShaderParameter(VSP_CLIPPLANE, clipPlane_);
}
}
bool Graphics::IsInitialized() const
{
return window_ != 0 && impl_->GetDevice() != 0;
}
PODVector<int> Graphics::GetMultiSampleLevels() const
{
PODVector<int> ret;
ret.Push(1);
if (impl_->device_)
{
for (unsigned i = 2; i <= 16; ++i)
{
if (impl_->CheckMultiSampleSupport(sRGB_ ? DXGI_FORMAT_R8G8B8A8_UNORM_SRGB : DXGI_FORMAT_R8G8B8A8_UNORM, i))
ret.Push(i);
}
}
return ret;
}
unsigned Graphics::GetFormat(CompressedFormat format) const
{
switch (format)
{
case CF_RGBA:
return DXGI_FORMAT_R8G8B8A8_UNORM;
case CF_DXT1:
return DXGI_FORMAT_BC1_UNORM;
case CF_DXT3:
return DXGI_FORMAT_BC2_UNORM;
case CF_DXT5:
return DXGI_FORMAT_BC3_UNORM;
default:
return 0;
}
}
ShaderVariation* Graphics::GetShader(ShaderType type, const String& name, const String& defines) const
{
return GetShader(type, name.CString(), defines.CString());
}
ShaderVariation* Graphics::GetShader(ShaderType type, const char* name, const char* defines) const
{
if (lastShaderName_ != name || !lastShader_)
{
ResourceCache* cache = GetSubsystem<ResourceCache>();
String fullShaderName = shaderPath_ + name + shaderExtension_;
// Try to reduce repeated error log prints because of missing shaders
if (lastShaderName_ == name && !cache->Exists(fullShaderName))
return 0;
lastShader_ = cache->GetResource<Shader>(fullShaderName);
lastShaderName_ = name;
}
return lastShader_ ? lastShader_->GetVariation(type, defines) : (ShaderVariation*)0;
}
VertexBuffer* Graphics::GetVertexBuffer(unsigned index) const
{
return index < MAX_VERTEX_STREAMS ? vertexBuffers_[index] : 0;
}
ShaderProgram* Graphics::GetShaderProgram() const
{
return impl_->shaderProgram_;
}
TextureUnit Graphics::GetTextureUnit(const String& name)
{
HashMap<String, TextureUnit>::Iterator i = textureUnits_.Find(name);
if (i != textureUnits_.End())
return i->second_;
else
return MAX_TEXTURE_UNITS;
}
const String& Graphics::GetTextureUnitName(TextureUnit unit)
{
for (HashMap<String, TextureUnit>::Iterator i = textureUnits_.Begin(); i != textureUnits_.End(); ++i)
{
if (i->second_ == unit)
return i->first_;
}
return String::EMPTY;
}
Texture* Graphics::GetTexture(unsigned index) const
{
return index < MAX_TEXTURE_UNITS ? textures_[index] : 0;
}
RenderSurface* Graphics::GetRenderTarget(unsigned index) const
{
return index < MAX_RENDERTARGETS ? renderTargets_[index] : 0;
}
IntVector2 Graphics::GetRenderTargetDimensions() const
{
int width, height;
if (renderTargets_[0])
{
width = renderTargets_[0]->GetWidth();
height = renderTargets_[0]->GetHeight();
}
else if (depthStencil_) // Depth-only rendering
{
width = depthStencil_->GetWidth();
height = depthStencil_->GetHeight();
}
else
{
width = width_;
height = height_;
}
return IntVector2(width, height);
}
bool Graphics::GetDither() const
{
return false;
}
bool Graphics::IsDeviceLost() const
{
// Direct3D11 graphics context is never considered lost
/// \todo The device could be lost in case of graphics adapters getting disabled during runtime. This is not currently handled
return false;
}
void Graphics::OnWindowResized()
{
if (!impl_->device_ || !window_)
return;
int newWidth, newHeight;
SDL_GetWindowSize(window_, &newWidth, &newHeight);
if (newWidth == width_ && newHeight == height_)
return;
UpdateSwapChain(newWidth, newHeight);
// Reset rendertargets and viewport for the new screen size
ResetRenderTargets();
CROSS_LOGDEBUGF("Window was resized to %dx%d", width_, height_);
using namespace ScreenMode;
VariantMap& eventData = GetEventDataMap();
eventData[P_WIDTH] = width_;
eventData[P_HEIGHT] = height_;
eventData[P_FULLSCREEN] = fullscreen_;
eventData[P_RESIZABLE] = resizable_;
eventData[P_BORDERLESS] = borderless_;
eventData[P_HIGHDPI] = highDPI_;
SendEvent(E_SCREENMODE, eventData);
}
void Graphics::OnWindowMoved()
{
if (!impl_->device_ || !window_ || fullscreen_)
return;
int newX, newY;
SDL_GetWindowPosition(window_, &newX, &newY);
if (newX == position_.x_ && newY == position_.y_)
return;
position_.x_ = newX;
position_.y_ = newY;
CROSS_LOGDEBUGF("Window was moved to %d,%d", position_.x_, position_.y_);
using namespace WindowPos;
VariantMap& eventData = GetEventDataMap();
eventData[P_X] = position_.x_;
eventData[P_Y] = position_.y_;
SendEvent(E_WINDOWPOS, eventData);
}
void Graphics::CleanupShaderPrograms(ShaderVariation* variation)
{
for (ShaderProgramMap::Iterator i = impl_->shaderPrograms_.Begin(); i != impl_->shaderPrograms_.End();)
{
if (i->first_.first_ == variation || i->first_.second_ == variation)
i = impl_->shaderPrograms_.Erase(i);
else
++i;
}
if (vertexShader_ == variation || pixelShader_ == variation)
impl_->shaderProgram_ = 0;
}
void Graphics::CleanupRenderSurface(RenderSurface* surface)
{
// No-op on Direct3D11
}
ConstantBuffer* Graphics::GetOrCreateConstantBuffer(ShaderType type, unsigned index, unsigned size)
{
// Ensure that different shader types and index slots get unique buffers, even if the size is same
unsigned key = type | (index << 1) | (size << 4);
ConstantBufferMap::Iterator i = impl_->allConstantBuffers_.Find(key);
if (i != impl_->allConstantBuffers_.End())
return i->second_.Get();
else
{
SharedPtr<ConstantBuffer> newConstantBuffer(new ConstantBuffer(context_));
newConstantBuffer->SetSize(size);
impl_->allConstantBuffers_[key] = newConstantBuffer;
return newConstantBuffer.Get();
}
}
unsigned Graphics::GetAlphaFormat()
{
return DXGI_FORMAT_A8_UNORM;
}
unsigned Graphics::GetLuminanceFormat()
{
// Note: not same sampling behavior as on D3D9; need to sample the R channel only
return DXGI_FORMAT_R8_UNORM;
}
unsigned Graphics::GetLuminanceAlphaFormat()
{
// Note: not same sampling behavior as on D3D9; need to sample the RG channels
return DXGI_FORMAT_R8G8_UNORM;
}
unsigned Graphics::GetRGBFormat()
{
return DXGI_FORMAT_R8G8B8A8_UNORM;
}
unsigned Graphics::GetRGBAFormat()
{
return DXGI_FORMAT_R8G8B8A8_UNORM;
}
unsigned Graphics::GetRGBA16Format()
{
return DXGI_FORMAT_R16G16B16A16_UNORM;
}
unsigned Graphics::GetRGBAFloat16Format()
{
return DXGI_FORMAT_R16G16B16A16_FLOAT;
}
unsigned Graphics::GetRGBAFloat32Format()
{
return DXGI_FORMAT_R32G32B32A32_FLOAT;
}
unsigned Graphics::GetRG16Format()
{
return DXGI_FORMAT_R16G16_UNORM;
}
unsigned Graphics::GetRGFloat16Format()
{
return DXGI_FORMAT_R16G16_FLOAT;
}
unsigned Graphics::GetRGFloat32Format()
{
return DXGI_FORMAT_R32G32_FLOAT;
}
unsigned Graphics::GetFloat16Format()
{
return DXGI_FORMAT_R16_FLOAT;
}
unsigned Graphics::GetFloat32Format()
{
return DXGI_FORMAT_R32_FLOAT;
}
unsigned Graphics::GetLinearDepthFormat()
{
return DXGI_FORMAT_R32_FLOAT;
}
unsigned Graphics::GetDepthStencilFormat()
{
return DXGI_FORMAT_R24G8_TYPELESS;
}
unsigned Graphics::GetReadableDepthFormat()
{
return DXGI_FORMAT_R24G8_TYPELESS;
}
unsigned Graphics::GetFormat(const String& formatName)
{
String nameLower = formatName.ToLower().Trimmed();
if (nameLower == "a")
return GetAlphaFormat();
if (nameLower == "l")
return GetLuminanceFormat();
if (nameLower == "la")
return GetLuminanceAlphaFormat();
if (nameLower == "rgb")
return GetRGBFormat();
if (nameLower == "rgba")
return GetRGBAFormat();
if (nameLower == "rgba16")
return GetRGBA16Format();
if (nameLower == "rgba16f")
return GetRGBAFloat16Format();
if (nameLower == "rgba32f")
return GetRGBAFloat32Format();
if (nameLower == "rg16")
return GetRG16Format();
if (nameLower == "rg16f")
return GetRGFloat16Format();
if (nameLower == "rg32f")
return GetRGFloat32Format();
if (nameLower == "r16f")
return GetFloat16Format();
if (nameLower == "r32f" || nameLower == "float")
return GetFloat32Format();
if (nameLower == "lineardepth" || nameLower == "depth")
return GetLinearDepthFormat();
if (nameLower == "d24s8")
return GetDepthStencilFormat();
if (nameLower == "readabledepth" || nameLower == "hwdepth")
return GetReadableDepthFormat();
return GetRGBFormat();
}
unsigned Graphics::GetMaxBones()
{
return 128;
}
bool Graphics::GetGL3Support()
{
return gl3Support;
}
bool Graphics::OpenWindow(int width, int height, bool resizable, bool borderless)
{
if (!externalWindow_)
{
unsigned flags = 0;
if (resizable)
flags |= SDL_WINDOW_RESIZABLE;
if (borderless)
flags |= SDL_WINDOW_BORDERLESS;
window_ = SDL_CreateWindow(windowTitle_.CString(), position_.x_, position_.y_, width, height, flags);
}
else
window_ = SDL_CreateWindowFrom(externalWindow_, 0);
if (!window_)
{
CROSS_LOGERRORF("Could not create window, root cause: '%s'", SDL_GetError());
return false;
}
SDL_GetWindowPosition(window_, &position_.x_, &position_.y_);
CreateWindowIcon();
return true;
}
void Graphics::AdjustWindow(int& newWidth, int& newHeight, bool& newFullscreen, bool& newBorderless, int& monitor)
{
if (!externalWindow_)
{
if (!newWidth || !newHeight)
{
SDL_MaximizeWindow(window_);
SDL_GetWindowSize(window_, &newWidth, &newHeight);
}
else
{
SDL_Rect display_rect;
SDL_GetDisplayBounds(monitor, &display_rect);
if (newFullscreen || (newBorderless && newWidth >= display_rect.w && newHeight >= display_rect.h))
{
// Reposition the window on the specified monitor if it's supposed to cover the entire monitor
SDL_SetWindowPosition(window_, display_rect.x, display_rect.y);
}
SDL_SetWindowSize(window_, newWidth, newHeight);
}
// Hack fix: on SDL 2.0.4 a fullscreen->windowed transition results in a maximized window when the D3D device is reset, so hide before
SDL_HideWindow(window_);
SDL_SetWindowFullscreen(window_, newFullscreen ? SDL_WINDOW_FULLSCREEN : 0);
SDL_SetWindowBordered(window_, newBorderless ? SDL_FALSE : SDL_TRUE);
SDL_ShowWindow(window_);
}
else
{
// If external window, must ask its dimensions instead of trying to set them
SDL_GetWindowSize(window_, &newWidth, &newHeight);
newFullscreen = false;
}
}
bool Graphics::CreateDevice(int width, int height, int multiSample)
{
// Device needs only to be created once
if (!impl_->device_)
{
HRESULT hr = D3D11CreateDevice(
0,
D3D_DRIVER_TYPE_HARDWARE,
0,
0,
0,
0,
D3D11_SDK_VERSION,
&impl_->device_,
0,
&impl_->deviceContext_
);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(impl_->device_);
CROSS_SAFE_RELEASE(impl_->deviceContext_);
CROSS_LOGD3DERROR("Failed to create D3D11 device", hr);
return false;
}
CheckFeatureSupport();
// Set the flush mode now as the device has been created
SetFlushGPU(flushGPU_);
}
// Check that multisample level is supported
PODVector<int> multiSampleLevels = GetMultiSampleLevels();
if (!multiSampleLevels.Contains(multiSample))
multiSample = 1;
// Create swap chain. Release old if necessary
if (impl_->swapChain_)
{
impl_->swapChain_->Release();
impl_->swapChain_ = 0;
}
DXGI_SWAP_CHAIN_DESC swapChainDesc;
memset(&swapChainDesc, 0, sizeof swapChainDesc);
swapChainDesc.BufferCount = 1;
swapChainDesc.BufferDesc.Width = (UINT)width;
swapChainDesc.BufferDesc.Height = (UINT)height;
swapChainDesc.BufferDesc.Format = sRGB_ ? DXGI_FORMAT_R8G8B8A8_UNORM_SRGB : DXGI_FORMAT_R8G8B8A8_UNORM;
swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
swapChainDesc.OutputWindow = GetWindowHandle(window_);
swapChainDesc.SampleDesc.Count = (UINT)multiSample;
swapChainDesc.SampleDesc.Quality = impl_->GetMultiSampleQuality(swapChainDesc.BufferDesc.Format, multiSample);
swapChainDesc.Windowed = TRUE;
swapChainDesc.Flags = DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH;
IDXGIDevice* dxgiDevice = 0;
impl_->device_->QueryInterface(IID_IDXGIDevice, (void**)&dxgiDevice);
IDXGIAdapter* dxgiAdapter = 0;
dxgiDevice->GetParent(IID_IDXGIAdapter, (void**)&dxgiAdapter);
IDXGIFactory* dxgiFactory = 0;
dxgiAdapter->GetParent(IID_IDXGIFactory, (void**)&dxgiFactory);
HRESULT hr = dxgiFactory->CreateSwapChain(impl_->device_, &swapChainDesc, &impl_->swapChain_);
// After creating the swap chain, disable automatic Alt-Enter fullscreen/windowed switching
// (the application will switch manually if it wants to)
dxgiFactory->MakeWindowAssociation(GetWindowHandle(window_), DXGI_MWA_NO_ALT_ENTER);
dxgiFactory->Release();
dxgiAdapter->Release();
dxgiDevice->Release();
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(impl_->swapChain_);
CROSS_LOGD3DERROR("Failed to create D3D11 swap chain", hr);
return false;
}
multiSample_ = multiSample;
return true;
}
bool Graphics::UpdateSwapChain(int width, int height)
{
bool success = true;
ID3D11RenderTargetView* nullView = 0;
impl_->deviceContext_->OMSetRenderTargets(1, &nullView, 0);
if (impl_->defaultRenderTargetView_)
{
impl_->defaultRenderTargetView_->Release();
impl_->defaultRenderTargetView_ = 0;
}
if (impl_->defaultDepthStencilView_)
{
impl_->defaultDepthStencilView_->Release();
impl_->defaultDepthStencilView_ = 0;
}
if (impl_->defaultDepthTexture_)
{
impl_->defaultDepthTexture_->Release();
impl_->defaultDepthTexture_ = 0;
}
if (impl_->resolveTexture_)
{
impl_->resolveTexture_->Release();
impl_->resolveTexture_ = 0;
}
impl_->depthStencilView_ = 0;
for (unsigned i = 0; i < MAX_RENDERTARGETS; ++i)
impl_->renderTargetViews_[i] = 0;
impl_->renderTargetsDirty_ = true;
impl_->swapChain_->ResizeBuffers(1, (UINT)width, (UINT)height, DXGI_FORMAT_UNKNOWN, DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH);
// Create default rendertarget view representing the backbuffer
ID3D11Texture2D* backbufferTexture;
HRESULT hr = impl_->swapChain_->GetBuffer(0, IID_ID3D11Texture2D, (void**)&backbufferTexture);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(backbufferTexture);
CROSS_LOGD3DERROR("Failed to get backbuffer texture", hr);
success = false;
}
else
{
hr = impl_->device_->CreateRenderTargetView(backbufferTexture, 0, &impl_->defaultRenderTargetView_);
backbufferTexture->Release();
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(impl_->defaultRenderTargetView_);
CROSS_LOGD3DERROR("Failed to create backbuffer rendertarget view", hr);
success = false;
}
}
// Create default depth-stencil texture and view
D3D11_TEXTURE2D_DESC depthDesc;
memset(&depthDesc, 0, sizeof depthDesc);
depthDesc.Width = (UINT)width;
depthDesc.Height = (UINT)height;
depthDesc.MipLevels = 1;
depthDesc.ArraySize = 1;
depthDesc.Format = DXGI_FORMAT_D24_UNORM_S8_UINT;
depthDesc.SampleDesc.Count = (UINT)multiSample_;
depthDesc.SampleDesc.Quality = impl_->GetMultiSampleQuality(depthDesc.Format, multiSample_);
depthDesc.Usage = D3D11_USAGE_DEFAULT;
depthDesc.BindFlags = D3D11_BIND_DEPTH_STENCIL;
depthDesc.CPUAccessFlags = 0;
depthDesc.MiscFlags = 0;
hr = impl_->device_->CreateTexture2D(&depthDesc, 0, &impl_->defaultDepthTexture_);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(impl_->defaultDepthTexture_);
CROSS_LOGD3DERROR("Failed to create backbuffer depth-stencil texture", hr);
success = false;
}
else
{
hr = impl_->device_->CreateDepthStencilView(impl_->defaultDepthTexture_, 0, &impl_->defaultDepthStencilView_);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(impl_->defaultDepthStencilView_);
CROSS_LOGD3DERROR("Failed to create backbuffer depth-stencil view", hr);
success = false;
}
}
// Update internally held backbuffer size
width_ = width;
height_ = height;
ResetRenderTargets();
return success;
}
void Graphics::CheckFeatureSupport()
{
anisotropySupport_ = true;
dxtTextureSupport_ = true;
lightPrepassSupport_ = true;
deferredSupport_ = true;
hardwareShadowSupport_ = true;
instancingSupport_ = true;
shadowMapFormat_ = DXGI_FORMAT_R16_TYPELESS;
hiresShadowMapFormat_ = DXGI_FORMAT_R32_TYPELESS;
dummyColorFormat_ = DXGI_FORMAT_UNKNOWN;
sRGBSupport_ = true;
sRGBWriteSupport_ = true;
}
void Graphics::ResetCachedState()
{
for (unsigned i = 0; i < MAX_VERTEX_STREAMS; ++i)
{
vertexBuffers_[i] = 0;
impl_->vertexBuffers_[i] = 0;
impl_->vertexSizes_[i] = 0;
impl_->vertexOffsets_[i] = 0;
}
for (unsigned i = 0; i < MAX_TEXTURE_UNITS; ++i)
{
textures_[i] = 0;
impl_->shaderResourceViews_[i] = 0;
impl_->samplers_[i] = 0;
}
for (unsigned i = 0; i < MAX_RENDERTARGETS; ++i)
{
renderTargets_[i] = 0;
impl_->renderTargetViews_[i] = 0;
}
for (unsigned i = 0; i < MAX_SHADER_PARAMETER_GROUPS; ++i)
{
impl_->constantBuffers_[VS][i] = 0;
impl_->constantBuffers_[PS][i] = 0;
}
depthStencil_ = 0;
impl_->depthStencilView_ = 0;
viewport_ = IntRect(0, 0, width_, height_);
indexBuffer_ = 0;
vertexDeclarationHash_ = 0;
primitiveType_ = 0;
vertexShader_ = 0;
pixelShader_ = 0;
blendMode_ = BLEND_REPLACE;
alphaToCoverage_ = false;
colorWrite_ = true;
cullMode_ = CULL_CCW;
constantDepthBias_ = 0.0f;
slopeScaledDepthBias_ = 0.0f;
depthTestMode_ = CMP_LESSEQUAL;
depthWrite_ = true;
fillMode_ = FILL_SOLID;
lineAntiAlias_ = false;
scissorTest_ = false;
scissorRect_ = IntRect::ZERO;
stencilTest_ = false;
stencilTestMode_ = CMP_ALWAYS;
stencilPass_ = OP_KEEP;
stencilFail_ = OP_KEEP;
stencilZFail_ = OP_KEEP;
stencilRef_ = 0;
stencilCompareMask_ = M_MAX_UNSIGNED;
stencilWriteMask_ = M_MAX_UNSIGNED;
useClipPlane_ = false;
impl_->shaderProgram_ = 0;
impl_->renderTargetsDirty_ = true;
impl_->texturesDirty_ = true;
impl_->vertexDeclarationDirty_ = true;
impl_->blendStateDirty_ = true;
impl_->depthStateDirty_ = true;
impl_->rasterizerStateDirty_ = true;
impl_->scissorRectDirty_ = true;
impl_->stencilRefDirty_ = true;
impl_->blendStateHash_ = M_MAX_UNSIGNED;
impl_->depthStateHash_ = M_MAX_UNSIGNED;
impl_->rasterizerStateHash_ = M_MAX_UNSIGNED;
impl_->firstDirtyTexture_ = impl_->lastDirtyTexture_ = M_MAX_UNSIGNED;
impl_->firstDirtyVB_ = impl_->lastDirtyVB_ = M_MAX_UNSIGNED;
impl_->dirtyConstantBuffers_.Clear();
}
void Graphics::PrepareDraw()
{
if (impl_->renderTargetsDirty_)
{
impl_->depthStencilView_ =
(depthStencil_ && depthStencil_->GetUsage() == TEXTURE_DEPTHSTENCIL) ?
(ID3D11DepthStencilView*)depthStencil_->GetRenderTargetView() : impl_->defaultDepthStencilView_;
// If possible, bind a read-only depth stencil view to allow reading depth in shader
if (!depthWrite_ && depthStencil_ && depthStencil_->GetReadOnlyView())
impl_->depthStencilView_ = (ID3D11DepthStencilView*)depthStencil_->GetReadOnlyView();
for (unsigned i = 0; i < MAX_RENDERTARGETS; ++i)
impl_->renderTargetViews_[i] =
(renderTargets_[i] && renderTargets_[i]->GetUsage() == TEXTURE_RENDERTARGET) ?
(ID3D11RenderTargetView*)renderTargets_[i]->GetRenderTargetView() : 0;
// If rendertarget 0 is null and not doing depth-only rendering, render to the backbuffer
// Special case: if rendertarget 0 is null and depth stencil has same size as backbuffer, assume the intention is to do
// backbuffer rendering with a custom depth stencil
if (!renderTargets_[0] &&
(!depthStencil_ || (depthStencil_ && depthStencil_->GetWidth() == width_ && depthStencil_->GetHeight() == height_)))
impl_->renderTargetViews_[0] = impl_->defaultRenderTargetView_;
impl_->deviceContext_->OMSetRenderTargets(MAX_RENDERTARGETS, &impl_->renderTargetViews_[0], impl_->depthStencilView_);
impl_->renderTargetsDirty_ = false;
}
if (impl_->texturesDirty_ && impl_->firstDirtyTexture_ < M_MAX_UNSIGNED)
{
// Set also VS textures to enable vertex texture fetch to work the same way as on OpenGL
impl_->deviceContext_->VSSetShaderResources(impl_->firstDirtyTexture_, impl_->lastDirtyTexture_ - impl_->firstDirtyTexture_ + 1,
&impl_->shaderResourceViews_[impl_->firstDirtyTexture_]);
impl_->deviceContext_->VSSetSamplers(impl_->firstDirtyTexture_, impl_->lastDirtyTexture_ - impl_->firstDirtyTexture_ + 1,
&impl_->samplers_[impl_->firstDirtyTexture_]);
impl_->deviceContext_->PSSetShaderResources(impl_->firstDirtyTexture_, impl_->lastDirtyTexture_ - impl_->firstDirtyTexture_ + 1,
&impl_->shaderResourceViews_[impl_->firstDirtyTexture_]);
impl_->deviceContext_->PSSetSamplers(impl_->firstDirtyTexture_, impl_->lastDirtyTexture_ - impl_->firstDirtyTexture_ + 1,
&impl_->samplers_[impl_->firstDirtyTexture_]);
impl_->firstDirtyTexture_ = impl_->lastDirtyTexture_ = M_MAX_UNSIGNED;
impl_->texturesDirty_ = false;
}
if (impl_->vertexDeclarationDirty_ && vertexShader_ && vertexShader_->GetByteCode().Size())
{
if (impl_->firstDirtyVB_ < M_MAX_UNSIGNED)
{
impl_->deviceContext_->IASetVertexBuffers(impl_->firstDirtyVB_, impl_->lastDirtyVB_ - impl_->firstDirtyVB_ + 1,
&impl_->vertexBuffers_[impl_->firstDirtyVB_], &impl_->vertexSizes_[impl_->firstDirtyVB_], &impl_->vertexOffsets_[impl_->firstDirtyVB_]);
impl_->firstDirtyVB_ = impl_->lastDirtyVB_ = M_MAX_UNSIGNED;
}
unsigned long long newVertexDeclarationHash = 0;
for (unsigned i = 0; i < MAX_VERTEX_STREAMS; ++i)
{
if (vertexBuffers_[i])
newVertexDeclarationHash |= vertexBuffers_[i]->GetBufferHash(i);
}
// Do not create input layout if no vertex buffers / elements
if (newVertexDeclarationHash)
{
/// \todo Using a 64bit total hash for vertex shader and vertex buffer elements hash may not guarantee uniqueness
newVertexDeclarationHash += vertexShader_->GetElementHash();
if (newVertexDeclarationHash != vertexDeclarationHash_)
{
VertexDeclarationMap::Iterator i =
impl_->vertexDeclarations_.Find(newVertexDeclarationHash);
if (i == impl_->vertexDeclarations_.End())
{
SharedPtr<VertexDeclaration> newVertexDeclaration(new VertexDeclaration(this, vertexShader_, vertexBuffers_));
i = impl_->vertexDeclarations_.Insert(MakePair(newVertexDeclarationHash, newVertexDeclaration));
}
impl_->deviceContext_->IASetInputLayout((ID3D11InputLayout*)i->second_->GetInputLayout());
vertexDeclarationHash_ = newVertexDeclarationHash;
}
}
impl_->vertexDeclarationDirty_ = false;
}
if (impl_->blendStateDirty_)
{
unsigned newBlendStateHash = (unsigned)((colorWrite_ ? 1 : 0) | (alphaToCoverage_ ? 2 : 0) | (blendMode_ << 2));
if (newBlendStateHash != impl_->blendStateHash_)
{
HashMap<unsigned, ID3D11BlendState*>::Iterator i = impl_->blendStates_.Find(newBlendStateHash);
if (i == impl_->blendStates_.End())
{
CROSS_PROFILE(CreateBlendState);
D3D11_BLEND_DESC stateDesc;
memset(&stateDesc, 0, sizeof stateDesc);
stateDesc.AlphaToCoverageEnable = alphaToCoverage_ ? TRUE : FALSE;
stateDesc.IndependentBlendEnable = false;
stateDesc.RenderTarget[0].BlendEnable = d3dBlendEnable[blendMode_];
stateDesc.RenderTarget[0].SrcBlend = d3dSrcBlend[blendMode_];
stateDesc.RenderTarget[0].DestBlend = d3dDestBlend[blendMode_];
stateDesc.RenderTarget[0].BlendOp = d3dBlendOp[blendMode_];
stateDesc.RenderTarget[0].SrcBlendAlpha = d3dSrcBlend[blendMode_];
stateDesc.RenderTarget[0].DestBlendAlpha = d3dDestBlend[blendMode_];
stateDesc.RenderTarget[0].BlendOpAlpha = d3dBlendOp[blendMode_];
stateDesc.RenderTarget[0].RenderTargetWriteMask = colorWrite_ ? D3D11_COLOR_WRITE_ENABLE_ALL : 0x0;
ID3D11BlendState* newBlendState = 0;
HRESULT hr = impl_->device_->CreateBlendState(&stateDesc, &newBlendState);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(newBlendState);
CROSS_LOGD3DERROR("Failed to create blend state", hr);
}
i = impl_->blendStates_.Insert(MakePair(newBlendStateHash, newBlendState));
}
impl_->deviceContext_->OMSetBlendState(i->second_, 0, M_MAX_UNSIGNED);
impl_->blendStateHash_ = newBlendStateHash;
}
impl_->blendStateDirty_ = false;
}
if (impl_->depthStateDirty_)
{
unsigned newDepthStateHash =
(depthWrite_ ? 1 : 0) | (stencilTest_ ? 2 : 0) | (depthTestMode_ << 2) | ((stencilCompareMask_ & 0xff) << 5) |
((stencilWriteMask_ & 0xff) << 13) | (stencilTestMode_ << 21) |
((stencilFail_ + stencilZFail_ * 5 + stencilPass_ * 25) << 24);
if (newDepthStateHash != impl_->depthStateHash_ || impl_->stencilRefDirty_)
{
HashMap<unsigned, ID3D11DepthStencilState*>::Iterator i = impl_->depthStates_.Find(newDepthStateHash);
if (i == impl_->depthStates_.End())
{
CROSS_PROFILE(CreateDepthState);
D3D11_DEPTH_STENCIL_DESC stateDesc;
memset(&stateDesc, 0, sizeof stateDesc);
stateDesc.DepthEnable = TRUE;
stateDesc.DepthWriteMask = depthWrite_ ? D3D11_DEPTH_WRITE_MASK_ALL : D3D11_DEPTH_WRITE_MASK_ZERO;
stateDesc.DepthFunc = d3dCmpFunc[depthTestMode_];
stateDesc.StencilEnable = stencilTest_ ? TRUE : FALSE;
stateDesc.StencilReadMask = (unsigned char)stencilCompareMask_;
stateDesc.StencilWriteMask = (unsigned char)stencilWriteMask_;
stateDesc.FrontFace.StencilFailOp = d3dStencilOp[stencilFail_];
stateDesc.FrontFace.StencilDepthFailOp = d3dStencilOp[stencilZFail_];
stateDesc.FrontFace.StencilPassOp = d3dStencilOp[stencilPass_];
stateDesc.FrontFace.StencilFunc = d3dCmpFunc[stencilTestMode_];
stateDesc.BackFace.StencilFailOp = d3dStencilOp[stencilFail_];
stateDesc.BackFace.StencilDepthFailOp = d3dStencilOp[stencilZFail_];
stateDesc.BackFace.StencilPassOp = d3dStencilOp[stencilPass_];
stateDesc.BackFace.StencilFunc = d3dCmpFunc[stencilTestMode_];
ID3D11DepthStencilState* newDepthState = 0;
HRESULT hr = impl_->device_->CreateDepthStencilState(&stateDesc, &newDepthState);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(newDepthState);
CROSS_LOGD3DERROR("Failed to create depth state", hr);
}
i = impl_->depthStates_.Insert(MakePair(newDepthStateHash, newDepthState));
}
impl_->deviceContext_->OMSetDepthStencilState(i->second_, stencilRef_);
impl_->depthStateHash_ = newDepthStateHash;
}
impl_->depthStateDirty_ = false;
impl_->stencilRefDirty_ = false;
}
if (impl_->rasterizerStateDirty_)
{
unsigned depthBits = 24;
if (depthStencil_ && depthStencil_->GetParentTexture()->GetFormat() == DXGI_FORMAT_R16_TYPELESS)
depthBits = 16;
int scaledDepthBias = (int)(constantDepthBias_ * (1 << depthBits));
unsigned newRasterizerStateHash =
(scissorTest_ ? 1 : 0) | (lineAntiAlias_ ? 2 : 0) | (fillMode_ << 2) | (cullMode_ << 4) |
((scaledDepthBias & 0x1fff) << 6) | (((int)(slopeScaledDepthBias_ * 100.0f) & 0x1fff) << 19);
if (newRasterizerStateHash != impl_->rasterizerStateHash_)
{
HashMap<unsigned, ID3D11RasterizerState*>::Iterator i = impl_->rasterizerStates_.Find(newRasterizerStateHash);
if (i == impl_->rasterizerStates_.End())
{
CROSS_PROFILE(CreateRasterizerState);
D3D11_RASTERIZER_DESC stateDesc;
memset(&stateDesc, 0, sizeof stateDesc);
stateDesc.FillMode = d3dFillMode[fillMode_];
stateDesc.CullMode = d3dCullMode[cullMode_];
stateDesc.FrontCounterClockwise = FALSE;
stateDesc.DepthBias = scaledDepthBias;
stateDesc.DepthBiasClamp = M_INFINITY;
stateDesc.SlopeScaledDepthBias = slopeScaledDepthBias_;
stateDesc.DepthClipEnable = TRUE;
stateDesc.ScissorEnable = scissorTest_ ? TRUE : FALSE;
stateDesc.MultisampleEnable = lineAntiAlias_ ? FALSE : TRUE;
stateDesc.AntialiasedLineEnable = lineAntiAlias_ ? TRUE : FALSE;
ID3D11RasterizerState* newRasterizerState = 0;
HRESULT hr = impl_->device_->CreateRasterizerState(&stateDesc, &newRasterizerState);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(newRasterizerState);
CROSS_LOGD3DERROR("Failed to create rasterizer state", hr);
}
i = impl_->rasterizerStates_.Insert(MakePair(newRasterizerStateHash, newRasterizerState));
}
impl_->deviceContext_->RSSetState(i->second_);
impl_->rasterizerStateHash_ = newRasterizerStateHash;
}
impl_->rasterizerStateDirty_ = false;
}
if (impl_->scissorRectDirty_)
{
D3D11_RECT d3dRect;
d3dRect.left = scissorRect_.left_;
d3dRect.top = scissorRect_.top_;
d3dRect.right = scissorRect_.right_;
d3dRect.bottom = scissorRect_.bottom_;
impl_->deviceContext_->RSSetScissorRects(1, &d3dRect);
impl_->scissorRectDirty_ = false;
}
for (unsigned i = 0; i < impl_->dirtyConstantBuffers_.Size(); ++i)
impl_->dirtyConstantBuffers_[i]->Apply();
impl_->dirtyConstantBuffers_.Clear();
}
void Graphics::CreateResolveTexture()
{
if (impl_->resolveTexture_)
return;
D3D11_TEXTURE2D_DESC textureDesc;
memset(&textureDesc, 0, sizeof textureDesc);
textureDesc.Width = (UINT)width_;
textureDesc.Height = (UINT)height_;
textureDesc.MipLevels = 1;
textureDesc.ArraySize = 1;
textureDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
textureDesc.SampleDesc.Count = 1;
textureDesc.SampleDesc.Quality = 0;
textureDesc.Usage = D3D11_USAGE_DEFAULT;
textureDesc.CPUAccessFlags = 0;
HRESULT hr = impl_->device_->CreateTexture2D(&textureDesc, 0, &impl_->resolveTexture_);
if (FAILED(hr))
{
CROSS_SAFE_RELEASE(impl_->resolveTexture_);
CROSS_LOGD3DERROR("Could not create resolve texture", hr);
}
}
void Graphics::SetTextureUnitMappings()
{
textureUnits_["DiffMap"] = TU_DIFFUSE;
textureUnits_["DiffCubeMap"] = TU_DIFFUSE;
textureUnits_["NormalMap"] = TU_NORMAL;
textureUnits_["SpecMap"] = TU_SPECULAR;
textureUnits_["EmissiveMap"] = TU_EMISSIVE;
textureUnits_["EnvMap"] = TU_ENVIRONMENT;
textureUnits_["EnvCubeMap"] = TU_ENVIRONMENT;
textureUnits_["LightRampMap"] = TU_LIGHTRAMP;
textureUnits_["LightSpotMap"] = TU_LIGHTSHAPE;
textureUnits_["LightCubeMap"] = TU_LIGHTSHAPE;
textureUnits_["ShadowMap"] = TU_SHADOWMAP;
textureUnits_["FaceSelectCubeMap"] = TU_FACESELECT;
textureUnits_["IndirectionCubeMap"] = TU_INDIRECTION;
textureUnits_["VolumeMap"] = TU_VOLUMEMAP;
textureUnits_["ZoneCubeMap"] = TU_ZONE;
textureUnits_["ZoneVolumeMap"] = TU_ZONE;
}
// CROSS BEGIN
// To satisfy script binding linking
void Graphics::SetTextureForUpdate(Texture* texture)
{
}
void Graphics::MarkFBODirty()
{
}
void Graphics::SetVBO(unsigned object)
{
}
void Graphics::SetUBO(unsigned object)
{
}
// CROSS END
}
| [
"[email protected]"
] | |
d21dfb9873e91155e3f79289435f02a9fb61fec8 | 864e42081eaaeb58a4e13033c0ec6e66cad813da | /src/main.cpp | 219d49d9f3d407b1612f8b9914b642b3560ea284 | [] | no_license | selavy/tictac | beca2e574625f82f3cb21f42b5de6bc9a9cb3c8f | 842c628d2a34c6fa2d9134e9e6cfc92422e51f02 | refs/heads/master | 2020-12-02T00:51:53.012465 | 2020-01-11T18:11:41 | 2020-01-11T18:11:41 | 230,836,056 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,346 | cpp | #include "tictac.h"
#include <assert.h>
#include <climits>
#include <iostream>
#include <readline/history.h>
#include <readline/readline.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <string>
void print(Board b) {
for (int y = 0; y < 3; ++y) {
for (int x = 0; x < 3; ++x) {
int i = 3 * y + x;
char c = b.xplayed(i) ? 'X' : b.oplayed(i) ? 'O' : /*' '*/ i + '1';
if (x != 2)
printf(" %c |", c);
else if (y != 2)
printf(" %c\n-----------\n", c);
else
printf(" %c\n", c);
}
}
}
int negamax(Board board, int color, int depth) {
if (board.xwin())
return color * 100;
else if (board.owin())
return color * -100;
else if (board.tie())
return color * -10;
int value = INT_MIN;
Moves moves = board.genmoves();
assert(moves.length() != 0);
for (auto move : moves) {
board.make_move(move);
value = std::max(value, -negamax(board, -color, depth - 1));
board.undo_move(move);
}
assert(value != INT_MIN);
return value;
}
int search(Board board) {
int mult = board.xtm() ? -1 : 1;
int bestscore = INT_MIN;
int bestmove = -1;
Moves moves = board.genmoves();
for (int i = 0; i < moves.length(); ++i) {
int move = moves[i];
board.make_move(move);
int score = -negamax(board, mult, 9);
board.undo_move(move);
if (score > bestscore) {
bestscore = score;
bestmove = move;
}
}
assert(bestmove != -1);
return bestmove;
}
int get_move(Board board) {
int x = -1;
char *input;
do {
if ((input = readline("Move? (1-9) ")) == NULL) {
exit(0);
}
x = input ? input[0] - '1' : -1;
free(input);
} while (!board.is_valid(x));
printf("\n");
return x;
}
bool check_win(Board board) {
if (board.xwin()) {
print(board);
std::cout << "\nX's win!\n";
return true;
} else if (board.owin()) {
print(board);
std::cout << "\nO's win!\n";
return true;
} else if (board.tie()) {
print(board);
std::cout << "\nCat's game!\n";
return true;
}
return false;
}
int main(int argc, char **argv) {
// max possible states is bounded by 9! = 362880, likely can reduce
// this upper bound because many states end early from a win.
// static Board stk[1 << 19];
bool human_is_x = true;
bool okay = false;
do {
char *input = readline("Play X's? [Y/n] ");
if (!input) {
exit(0);
} else if (input[0] == '\0' || input[0] == 'Y' || input[0] == 'y') {
human_is_x = true;
okay = true;
} else if (input[0] == 'N' || input[0] == 'n') {
human_is_x = false;
okay = true;
}
free(input);
} while (!okay);
printf("\n\n");
Board board;
int move;
for (;;) {
if (check_win(board))
break;
if (board.xtm() == human_is_x) {
print(board);
printf("\n");
move = get_move(board);
} else {
move = search(board);
}
board.make_move(move);
}
return 0;
}
| [
"[email protected]"
] | |
228b7a45a67ff352304e9b1c0cd7b112775f99e9 | e44620035d4d3ced29f50c48862b85c978415f42 | /Project3/Project3/Vampire.cpp | a1a35e6f204494b8b0b68f37f34050b008e72634 | [] | no_license | TuckerL-OSU/CS162 | 6338d34e10ae39f78cce7cb1aac94e72c2a589b9 | cab3d74fd643bf51accf65bdc9b2739a20c28c8f | refs/heads/master | 2020-09-05T09:08:16.289795 | 2019-11-06T17:23:47 | 2019-11-06T17:23:47 | 218,779,912 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | cpp | #include "Vampire.hpp"
Vampire::Vampire() {
name = "Vampire";
attack = 0;
defense = 0;
armor = 1;
strength_points = 18;
}
Vampire::Vampire(int att, int def) : Character("Vampire", att, def, 1, 18) {
this->attack = att;
this->defense = def;
}
Vampire::~Vampire() {
}
int Vampire::attackRoll() {
Die *roll = new Die(12, 1);
this->attack = roll->roll();
delete roll;
return this->attack;
}
int Vampire::defenseRoll() {
charm = (rand() % 10) + 0;
if (charm < 6) {
cout << "Vampires Charm was activated!" << endl;
}
else {
Die *roll = new Die(6, 1);
this->defense = roll->roll();
delete roll;
return this->defense;
}
} | [
"[email protected]"
] | |
7fdb7417c12963e73bee2797d8f19e6731fef377 | e30a92d3c06e8bf6d0c463f88016f988b1d1eb03 | /ex9_4b/main.cpp | c4064c0a5c7c0a3f9aa2f0f53ce129469c165198 | [] | no_license | surfmich/SoftwareProjects | 70c6793e4fa0c5d60eddc03f7728a10c3289c979 | 1de2f218a6b6581d4749adf434f0ed69c35b0e97 | refs/heads/master | 2022-01-10T16:31:31.080919 | 2019-05-30T13:13:02 | 2019-05-30T13:13:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,666 | cpp | #include <iostream>
#include <cstdint>
#include <assert.h>
/*A better solution would be to use a 16-bit signed integer to hold the non-fractional part of the number, and an 8-bit signed integer to hold the fractional component.
4b) Write a class named FixedPoint2 that implements the recommended solution from the previous question. If either (or both) of the non-fractional and fractional part of the number are negative, the number should be treated as negative. Provide the overloaded operators and constructors required for the following program to run:
*/
class FixedPoint2{
private:
int16_t m_number;
int8_t m_decimal;
public:
FixedPoint2(int16_t number = 0,int8_t decimal = 0):m_number(number),m_decimal(decimal) {
//assert(m_decimal < 99 && "decimal needs to be less than 99");
if (m_number > 0 && m_decimal < 0) {
m_number = -m_number;
} else if (m_number < 0 && m_decimal > 0) {
m_decimal = -m_decimal;
}
//friend std::ostream operator<<(std::ostream &out, const FixedPoint2 &point);
}
operator double() const{
return m_number + static_cast<double>(m_decimal)/100;
}
};
std::ostream& operator<<(std::ostream &out, const FixedPoint2 &point){
out << static_cast<double>(point);
return out;
}
int main()
{
FixedPoint2 a(34, 56);
std::cout << a << '\n';
FixedPoint2 b(-2, 8);
std::cout << b << '\n';
FixedPoint2 c(2, -8);
std::cout << c << '\n';
FixedPoint2 d(-2, -8);
std::cout << d << '\n';
FixedPoint2 e(0, -5);
std::cout << e << '\n';
std::cout << static_cast<double>(e) << '\n';
return 0;
} | [
"[email protected]"
] | |
6ba0df6d015cd0ef5baebe87362cf22473f7f7a8 | d9714160fd222bc49ef52a56edb7aeb82a591549 | /bench/lib/exp/scalar/bd2bd2bd2bd2ed2.cpp | f3ebd97b88657f7972edabfe4f620f40cd831656 | [
"MIT"
] | permissive | timocafe/poly | c2fb195a196f68c406fa10130c71e29d90bc125c | 3931892bcd04f9ebfc0fde202db34d50973bc73b | refs/heads/master | 2021-01-13T00:34:32.027241 | 2020-10-02T18:42:03 | 2020-10-02T18:42:03 | 41,051,374 | 0 | 0 | null | 2020-10-02T15:27:08 | 2015-08-19T18:08:26 | C++ | UTF-8 | C++ | false | false | 1,863 | cpp | //
// bd2bd2bd2bd2ed2_test.cpp
//
// Created by Ewart Timothée, 2/3/2016
// Copyright (c) Ewart Timothée. All rights reserved.
//
// This file is generated automatically, do not edit!
// TAG: bd2bd2bd2bd2ed2
// Helper:
// h = Horner, e = Estrin, b = BruteForce
// The number indicates the order for Horner
// e.g. h1h3 indicates a produce of polynomial with Horner order 1 and 3
//
#include <limits>
#include <string.h>
#include <cmath>
#include <iostream>
#include "poly/poly.h"
namespace poly {
inline double sse_floor(double a) {
double b;
#ifdef __x86_64__
asm ("roundsd $1,%1,%0 " :"=x"(b) :"x"(a));
#endif
#ifdef __PPC64__
asm ("frim %0,%1 " :"=d"(b) :"d"(a));
#endif
return b;
}
static inline uint64_t as_uint64(double x) {
uint64_t i;
memcpy(&i,&x,8);
return i;
}
static inline double as_double(uint64_t i) {
double x;
memcpy(&x,&i,8);
return x;
}
double exp(double x){
uint64_t mask1 = (fabs(x) > 700);
mask1 = (mask1-1);
uint64_t mask2 = (x < 700);
mask2 = ~(mask2-1);
uint64_t mask3 = as_uint64(std::numeric_limits<double>::infinity());
const long long int tmp((long long int)sse_floor(1.4426950408889634 * x));
const long long int twok = (1023 + tmp) << 52;
x -= ((double)(tmp))*6.93145751953125E-1;
x -= ((double)(tmp))*1.42860682030941723212E-6;
double y = poly::bruteforce<poly::coeffP2_1>(x)*poly::bruteforce<poly::coeffP2_2>(x)*poly::bruteforce<poly::coeffP2_3>(x)*poly::bruteforce<poly::coeffP2_4>(x)*poly::estrin<poly::coeffP2_5>(x)* (*(double *)(&twok));
uint64_t n = as_uint64(y);
n &= mask1;
mask3 &= ~mask2;
n |= mask3;
return as_double(n);
}
} //end namespace
| [
"[email protected]"
] | |
aa1cf1f3ed6f13e4a0b2271d4ec4ce1eb0756087 | b65288060f800ab1456f9f0183864742669dae15 | /source/Graphics/Shader.cpp | 861c7502d27de4049b2b1a3282c042eca402e230 | [] | no_license | lud99/FlappyBirdNX | 30f989c1258676b4d0c3b4e085d1094259ecfb79 | 6857cb7e2243ecefc3bebbcc2413124dd3018f04 | refs/heads/master | 2023-02-06T06:55:35.066964 | 2020-12-29T12:51:32 | 2020-12-29T12:51:32 | 325,091,697 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,944 | cpp | #include "Shader.h"
#include <glad/glad.h>
#include <glm/gtc/type_ptr.hpp>
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <sstream>
Shader::Shader()
{
}
Shader::Shader(unsigned int shaderProgramId) : m_id(shaderProgramId)
{
}
int Shader::GetUniformLocation(const std::string& name)
{
// Return it if it's already cached
if (m_UniformLocations.count(name) > 0)
return m_UniformLocations[name];
int location = glGetUniformLocation(m_id, name.c_str());
m_UniformLocations[name] = location;
return location;
}
void Shader::Bind()
{
glUseProgram(m_id);
}
void Shader::Unbind()
{
glUseProgram(0);
}
void Shader::SetUniform(const std::string& name, glm::vec2 vector)
{
glUniform2f(GetUniformLocation(name.c_str()), vector.x, vector.y);
}
void Shader::SetUniform(const std::string& name, glm::ivec2 vector)
{
glUniform2i(GetUniformLocation(name.c_str()), vector.x, vector.y);
}
void Shader::SetUniform(const std::string& name, glm::vec3 vector)
{
glUniform3f(GetUniformLocation(name.c_str()), vector.x, vector.y, vector.z);
}
void Shader::SetUniform(const std::string& name, glm::ivec3 vector)
{
glUniform3i(GetUniformLocation(name.c_str()), vector.x, vector.y, vector.z);
}
void Shader::SetUniform(const std::string& name, glm::mat4 matrix)
{
glUniformMatrix4fv(GetUniformLocation(name.c_str()), 1, GL_FALSE, glm::value_ptr(matrix));
}
void Shader::SetUniform(const std::string& name, float value)
{
glUniform1f(GetUniformLocation(name.c_str()), value);
}
void Shader::SetUniform(const std::string& name, int value)
{
glUniform1i(GetUniformLocation(name.c_str()), value);
}
void Shader::Delete()
{
glDeleteProgram(m_id);
printf("Shader delete");
}
Shader::~Shader()
{
}
std::string ShaderLoader::ParseShader(const std::string& filepath)
{
std::ifstream stream(filepath);
//assert(!stream.is_open() && "Invalid file specified");
std::string line;
std::stringstream shaderStringStream;
while (getline(stream, line)) {
shaderStringStream << line << "\n";
}
printf(shaderStringStream.str().c_str());
return shaderStringStream.str();
}
Shader ShaderLoader::CreateShader(const std::string& vertexPath, const std::string& fragmentPath)
{
unsigned int program = glCreateProgram();
unsigned int vertex = CompileShader(GL_VERTEX_SHADER, ParseShader(vertexPath));
unsigned int fragment = CompileShader(GL_FRAGMENT_SHADER, ParseShader(fragmentPath));
glAttachShader(program, vertex);
glAttachShader(program, fragment);
glLinkProgram(program);
glValidateProgram(program);
glDeleteShader(vertex);
glDeleteShader(fragment);
return Shader(program);
}
Shader ShaderLoader::CreateShaderFromSource(const std::string& vertexSource, const std::string& fragmentSource)
{
unsigned int program = glCreateProgram();
unsigned int vertex = CompileShader(GL_VERTEX_SHADER, vertexSource);
unsigned int fragment = CompileShader(GL_FRAGMENT_SHADER, fragmentSource);
glAttachShader(program, vertex);
glAttachShader(program, fragment);
glLinkProgram(program);
glValidateProgram(program);
glDeleteShader(vertex);
glDeleteShader(fragment);
return Shader(program);
}
Shader ShaderLoader::CreateShader()
{
return Shader(0);
}
unsigned int ShaderLoader::CompileShader(unsigned int type, const std::string& source)
{
unsigned int id = glCreateShader(type);
const char* src = source.c_str();
glShaderSource(id, 1, &src, nullptr);
glCompileShader(id);
// Get the compilation status
int result;
glGetShaderiv(id, GL_COMPILE_STATUS, &result);
// If the shader couldn't compile
if (result == GL_FALSE)
{
int length;
glGetShaderiv(id, GL_INFO_LOG_LENGTH, &length);
// Create char array
char* message = new char[length];
glGetShaderInfoLog(id, length, &length, message); // Get the actual message
std::cout << "Failed to compile shader " << source << std::endl;
std::cout << message << std::endl;
glDeleteShader(id);
return 0;
}
return id;
} | [
"[email protected]"
] | |
4565800e1876722962aa35ecd81ed6155fd3b2e9 | a66f43ebb6bebfe509f8aaeff3989c6153668de8 | /UVA/160 - Factors and Factorials.cpp | 73e54a4d62c7e99d36975ab4f24b4d1e5f43fc16 | [] | no_license | ShikariSohan/Problems-Solving | e6cbeaaa9a8a091364aee12cc28cce06165cf84d | 26809bddfcb357ca232be5e8016ef1e705a94f9a | refs/heads/master | 2023-02-24T08:05:27.161840 | 2021-01-26T12:44:55 | 2021-01-26T12:44:55 | 283,302,951 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,925 | cpp |
/*
"""Bismillahir Rahmanur Rahim"""
*/
#include<bits/stdc++.h>
using namespace std;
#define pi 2*acos(0.0)
#define ll long long int
#define pb push_back
#define pf push_front
const ll sz = 1000001;
#define mp make_pair
#define ses '\n'
#define stm istringstream
#define gcd __gcd
ll lcm(ll x,ll y){return (x*y)/gcd(x,y);}
#define tin ll T;cin>>T; for(ll o=1;o<=T;o++)
#define tout cout<<"Case "<<o<<": ";
int main()
{
//freopen ("input.txt","r",stdin);
//freopen ("output.txt","w",stdout);
while(1)
{
ll n,x,m=0;
ll a[100]={},ar[4]={2,3,5,7};
cin>>n;
if(n==0)
return 0;
for(ll i=2;i<=n;i++)
{
x=i;
for(ll j=0;j<4;j++)
{
if(x%ar[j]==0)
while(x%ar[j]==0)
{
x=x/ar[j];
a[ar[j]]++;
m=max(m,ar[j]);
}
}
if(x!=1)
{
a[x]++;m=max(m,x);
}
}
printf("%#3lld! =",n);
ll k=0;
for(ll i=2;i<100;i++)
{
if(a[i]!=0)
{
k++;
if(k==16)
{
cout<<ses;
cout<<" ";
k=0;
}
printf(" %#2lld",a[i]);
}
}
cout<<ses;
}
return 0;
}
/* --------------------
| ~SOHAN~ |
| ~Chandler68~ |
--------------------
|| VALAR MORGULIS||==|| ALL MEN MUST DIE ||
\\ Power Is Power//
|| I Can Do This All day ||
// We are on a Break \\ // How you doin'? \\
|| Say My Name || ~~ || I Am The Who Knocks ||
// I Am Ted Mosby Architect \\
|| It Is Legen --wait for it -- dary ,Legendary ||
\\ Penny - Penny - Penny // -- Bazinga
*/
| [
"[email protected]"
] | |
75415e9fe3a397fdd649f9a768b349a6f8551be7 | 1300358e915ec390bfd4eef88c1ead89b8bf3ba2 | /my-trader/trunk/src/MyExchange/qtm/src/qtm.cpp | 72f1b8998bceb289b867757f280ca666a454b32f | [] | no_license | 19199883/gangof4 | d04e7a5fb4b556a7ee29410e83b7761fb25fecbd | 24370d709056fae7ff7085581a4d72478ce6ad3e | refs/heads/master | 2020-05-21T19:15:21.073690 | 2019-10-30T10:26:25 | 2019-10-30T10:26:25 | 64,183,829 | 0 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 451 | cpp | #include "qtm.h"
void
qtm_init(int type)
{
}
void
set_criteria(const criteria_t *data)
{
}
void
acquire_quote_time_field(const char *name, const char *time_str){}
void
update_state(const char *name, int type, int status, const char *description){}
void
update_compliance(const char *name, int type, int status, const char *description){}
void
qtm_finish(){}
void
acquire_tca_order(const char *name, int action, long time_stamp, long seq_no){}
| [
"[email protected]"
] | |
c42ec167bff22e666fb905b02de7e15d5f9f8dc1 | bfa9f9fc43f1c70f71ebabd70324e14ca64cd862 | /gfx/font.hpp | ae4721c80a739ad49c36e59a050caf1b27341de2 | [] | no_license | someone235/liero | 7952097441ab709946f51929cc3ef846c695dc84 | 187e5ddb02d2aad22a0ff1b9b7185838eb209473 | refs/heads/master | 2020-12-24T19:12:44.850847 | 2016-10-25T18:09:31 | 2016-10-25T18:09:31 | 57,980,373 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,541 | hpp | #ifndef UUID_B06B65B783A849C7B4E509A9676180F8
#define UUID_B06B65B783A849C7B4E509A9676180F8
#include <vector>
#include <string>
#include <gvl/io/encoding.hpp>
struct Bitmap;
struct ReaderFile;
struct Font
{
struct Char
{
unsigned char data[8*7];
int width;
};
Font()
: chars(250)
{
}
void loadFromEXE(ReaderFile& exe);
void drawText(Bitmap& scr, char const* str, std::size_t len, int x, int y, int color);
int getDims(char const* str, std::size_t len, int* height = 0);
void drawChar(Bitmap& scr, unsigned char ch, int x, int y, int color);
void drawText(Bitmap& scr, std::string const& str, int x, int y, int color)
{
drawText(scr, str.data(), str.size(), x, y, color);
}
void drawText(Bitmap& scr, gvl::cell const& str, int x, int y, int color)
{
if (str.buffer.empty())
return;
if (str.text_placement != gvl::cell::left)
{
int w = getDims(
reinterpret_cast<char const*>(&str.buffer[0]),
str.buffer.size());
if (str.text_placement == gvl::cell::center)
x -= w / 2;
else if (str.text_placement == gvl::cell::right)
x -= w;
}
drawText(scr, reinterpret_cast<char const*>(&str.buffer[0]), str.buffer.size(), x, y, color);
}
int getDims(std::string const& str, int* height = 0)
{
return getDims(str.data(), str.size(), height);
}
void drawFramedText(Bitmap& scr, std::string const& text, int x, int y, int color);
std::vector<Char> chars;
};
#endif // UUID_B06B65B783A849C7B4E509A9676180F8
| [
"[email protected]"
] | |
06172048b38e0fc778f2bdb6f4b7531f5de31b6a | 82b5fba8225fad076e85855b7d5300011d1279ab | /PA7_AverageTemperature/PA7_AverageTemperature.cpp | 0685551bc12964e458b313cb0effdbf85e2a3b4e | [] | no_license | AndriiHura/CppBasics_WhiteBelt | 195e8cda0ffa625dda3cf3a76ba70b02fda5caf8 | e795a35a9dc3fae7bc79ccac8638fd6c7dd47e30 | refs/heads/master | 2022-11-27T02:38:21.979092 | 2020-08-01T16:56:45 | 2020-08-01T16:56:45 | 281,151,088 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,798 | cpp | // PA7_AverageTemperature.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <vector>
using namespace std;
vector<int> DayTemperatureInput() {
int DaysNumber;
cin >> DaysNumber;
vector<int> TemperatureEachDay(DaysNumber);
for (int& d : TemperatureEachDay) {
cin >> d;
}
return TemperatureEachDay;
}
int GetAverageSum(const vector<int>& vec) {
int TempSum = 0;
for (auto d : vec) {
TempSum += d;
}
int AverageTemp = TempSum / vec.size();
return AverageTemp;
}
void PrintVector(const vector<int>& vec) {
cout << vec.size() << endl;
for (auto n : vec) {
cout << n << " ";
}
}
vector<int> GetResultVector(const vector<int>& vec) {
vector<int> ResultDays;
for (int i = 0; i < vec.size(); ++i) {
if (vec[i] > GetAverageSum(vec)) {
ResultDays.push_back(i);
}
}
return ResultDays;
}
int main()
{
vector<int> Temperatures = DayTemperatureInput();
vector<int> ResultDays = GetResultVector(Temperatures);
PrintVector(ResultDays);
return 0;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu
// Tips for Getting Started:
// 1. Use the Solution Explorer window to add/manage files
// 2. Use the Team Explorer window to connect to source control
// 3. Use the Output window to see build output and other messages
// 4. Use the Error List window to view errors
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
| [
"[email protected]"
] | |
60eef25ea12e6649f7c231c4c727e8ace75cf232 | b768c60c17e6c93a4d32c93eeef073869d4f5fee | /src/include/bufferreadable.h | 142fbc663cd9837da37f2898794bdcbf9d2dcb3e | [] | no_license | ThatFatPat/CppConstruct | 09ea364e473fe8a631094cf539b86625cfa37cf9 | a2dba2ebe01a49485f1e4b10fcd0d52863733ba9 | refs/heads/main | 2023-06-01T07:58:05.084903 | 2021-06-12T18:38:58 | 2021-06-12T18:38:58 | 376,051,277 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 366 | h | #pragma once
#include <cstddef>
#include <span>
#include "ireadable.h"
class BufferReadable : public IReadable {
public:
BufferReadable(std::span<const std::byte> span)
: m_span(span), m_ptr(span.begin()) {}
void read(std::span<std::byte> buffer) override;
private:
std::span<const std::byte> m_span;
std::span<const std::byte>::iterator m_ptr;
}; | [
"[email protected]"
] | |
e263f6bfc54205b55a3a8d8f2545c76163fbc85c | 16a04a189c2f14d6d28a78d774a8c0ad8fb3bf28 | /LibCppSim - Cooperative Caching HPCS/applicationLayer/Replicator.cc | d38c996abeb39e324688fd6e8a13bd3a6646a8d9 | [] | no_license | F951/Models-HPCS | 7895b9d708df04f7b2fe70c9e14c46ac32dd3d67 | 64b24311499b8ffd7e86c3698389494f0f5a8787 | refs/heads/main | 2023-03-07T16:02:02.620133 | 2021-02-24T15:38:44 | 2021-02-24T15:38:44 | 341,332,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,917 | cc | #include "Replicator.h"
void Replicator::inner_body(void)
{
while(1)
{
//====================================================================
//====================================================================
passivate(); //DESACTIVAR ESTE REPLICADOR
//====================================================================
//====================================================================
if(ends){
passivate();
}
//cout<<"Replicator" <<endl; fflush(stdout);
//RESET
(*tlc)-> resetQueue();
(*tlc)-> inlinks.clear();
(*tlc)-> RCACHE->reset();
hold(DELTA_T);
//cout << "Replicator Check..."<< endl;
//fflush(stdout);
// overload = getQueueSize(tlc);
overload = (*tlc)->overloaded;
//Checks nodes load
if( isOverloaded(tlc) )
{ // Replication
// Sort Entries
// Select the most frequent
// Replicate based on strategy
//cout << "Peer Overloaded!!" << endl;
// Copy LocalCACHE and RCACHE entries to Vector entries
retrieveEntries(tlc);
// Sort by frequency
sort(entries.begin(), entries.end(), compare);
//Select strategy and replicate
replicate(Rep_Strategy);
}
}
}
double Replicator::getQueueSize(handle<TlcProtocol> *t)
{
double size;
// if(t == NULL)
//cout<<"*T ES NULL"<< endl;
size = ( ((*t)->avg_queue)/DELTA_T);
//cout << "REP - QUEUE SIZE: " << size << "-" << (*t)->avg_queue << " - " << DELTA_T << endl;
//fflush(stdout);
return size;
}
bool Replicator::isOverloaded(handle<TlcProtocol> *t)
{
//Si esta sobre cargado
//--> cola mayor a un tamano t
if (overload > OVERLOAD_THRESHOLD)
return true;
return false;
}
int Replicator::getAvailableCapacity(handle<TlcProtocol> *t)
{
if(getQueueSize(t) > OVERLOAD_THRESHOLD)
return 0;
return int (OVERLOAD_THRESHOLD - getQueueSize(t) );
}
void Replicator::retrieveEntries(handle<TlcProtocol> *t)
{
// Copy the entries from LocalCACHE and RCACHE to Vector entries
// to be sorted
//Inserting entries from RCACHE
entries = (*t)->RCACHE->getEntries();
//entries.insert(entries.end(), 0, (*t)->RCACHE->cache->getSize() );
//Inserting entries from LocalCACHE
//entries.insert(entries.end(), t->localCache->cache.begin(), t->localCache->cache.end());
}
void Replicator::replicate(int strategy)
{
//cout << "REPLICANDO..."<< endl;
switch (strategy)
{
//LEAFSET
case 0:
replicateLeafset();
break;
//BUBBLE
case 1:
replicateBubble();
break;
//TLC
case 2:
replicateTLC();
break;
}
}
void Replicator::replicateLeafset()
{
//Verificar linea
vector<NodeEntry*> ls = (*(*tlc)->pastry)->leafset->listAllNodes();
Entry *e = NULL;
int j = 0;
//Sort vector by Freq
sort(entries.begin(), entries.end(), compare);
//cout << "REP - SORTING"<< endl;
vector< Entry*>::iterator it;
it = entries.begin();
//cout <<"------------------------------------------------------"<< endl;
//while(it != entries.end())
//{
// cout << BN_bn2hex((*it) ->hashValue)<<" - " <<(*it)->frequency << endl;
// ++it;
//}
//Search for the first not replicated entry
if(entries.size()>0)
{
do
{
e = entries[j];
j++;
}while(entries.size() > (unsigned)j && e->isReplicated);
if(e->isReplicated){
//cout << "NO SE PUEDE REPLICAR MAS..."<< BN_bn2hex((*tlc)->pid) <<endl;
return;
}
}else
{
//cout << "ENTRIES VACIAS" << BN_bn2hex((*tlc)->pid) << endl;
return;
}
//cout << "REP- Entry " << BN_bn2hex(e->hashValue ) <<" - " << e->frequency<< endl;
for(int i = 0 ; (unsigned) i < ls.size(); i++)
{
if(!(*tlc)->isReplicated(ls[i]->getNodeID(), e->hashValue))
{
//Send Replication message to leafset node
//Entry e over nodes
// cout << "REP - FOR" << endl;
e->isReplicated = true;
//cout << "REP- Tracking Replica"<< endl;
//Guardamos quienes son las replicas?
(*tlc)->trackReplica(ls[i]->getNodeID(), e->hashValue);
//cout << "REP- Sending Replica"<<endl;
//Send Replication Message
(*tlc)->sendReplica( e->clone() , ls[i]);
}
}
}
void Replicator::replicateBubble()
{
// Sort vector entries by freq
sort(entries.begin(), entries.end(), compare);
vector< Entry*>::iterator it;
it = entries.begin();
//cout <<"----------------------ENTRIES------------------------------"<< endl;
// while(it != entries.end())
// {
// cout << BN_bn2hex((*it) ->hashValue)<<" - " <<(*it)->frequency << endl;
// ++it;
// }
//Most frequent query
//Search for the first not replicated entry
Entry *e = NULL;
int j = 0;
if(entries.size()>0)
{
do
{
e = entries[j];
j++;
}while(entries.size() > (unsigned) j && e->isReplicated);
if(e->isReplicated){
//cout << "NO SE PUEDE REPLICAR MAS..."<<endl;
return;
}
}else
{
//cout <<"ENTRIES VACIAS!!"<< endl;
return;
}
// if(e==NULL)
// cout << "ENTRY NULL!!" <<endl;
//Which inlinks forwards the entry e
// list ??? inlinks
vector<Inlink*> list;
map<BIGNUM*, Inlink*>::iterator it2;
it2 = (*tlc)->inlinks.begin();
//cout << "INLINK - Size: " << (*tlc)->inlinks.size() << endl ;
// cout << "Entry: " << BN_bn2hex( e->hashValue) << endl;
while(it2 != (*tlc)->inlinks.end())
{
// cout<< "Inlink : "<< BN_bn2hex(((it2->second)->getInlinkID())->getNodeID() )<< endl;
if(( it2-> second)->isKeyContained(e->hashValue) )
{
//terminar
//push inlink to list
// cout << "Entry Contained!!" << endl;
list.push_back(it2->second );
}
++it2;
}
sort( list.begin(), list.end(), sorter(e->hashValue));
//DEBUG
vector< Inlink*>::iterator it3;
it3 = list.begin();
// cout <<"----------------------INLINKS------------------------------"<< endl;
// while(it3 != list.end())
// {
// cout << BN_bn2hex( ((*it3)->getInlinkID())->getNodeID() )<< " - " <<(*it3)->getFrequency(e->hashValue) << endl;
// ++it3;
// }
unsigned int index = 0 ;
// cout << "REP - list Size " << list.size() << endl;
while(index < list.size())
{
if(!(*tlc)->isReplicated(list[index]->getInlinkID()->getNodeID(), e->hashValue)
&& list[index]->getFrequency(e->hashValue) > 0)
{
e->isReplicated = true;
//Guardamos quienes son las replicas
(*tlc)->trackReplica((list[index]->getInlinkID())->getNodeID(), e->hashValue);
// Replica Send
(*tlc)->sendReplica( e->clone() , list[index]->getInlinkID());
}
index++;
}
}
void Replicator::set_tlc(handle<TlcProtocol> *t)
{
tlc = t;
}
void Replicator::replicateTLC()
{
// Sort vector entries by freq
sort(entries.begin(), entries.end(), compare);
//Most frequent query
//Search for the first not replicated entry
Entry *e = NULL;
//int j = 0;
if(entries.size()>0)
{
e=entries[0];
// do
// {
// e = entries[j];
// j++;
// }while(entries.size() > (unsigned)j && e->isReplicated);
// if(e->isReplicated){
//cout << "NO SE PUEDE REPLICAR MAS..."<<endl;
// return;
// }
}else
{
//cout << "ENTRIES VACIAS" <<endl;
return;
}
//Which inlinks forwards the entry e
vector<Inlink*> list;
map<BIGNUM*, Inlink*>::iterator it;
it = (*tlc)->inlinks.begin();
while(it != (*tlc)->inlinks.end() )
{
if(( it-> second)->isKeyContained(e->hashValue) )
{
//terminar
//push inlink to list
list.push_back(it->second );
}
++it;
}
sort( list.begin(), list.end(), sorter(e->hashValue));
//int overload = getQueueSize(tlc);
//Overload limited to most frequent
if(overload > e->frequency)
overload = e->frequency;
int index = 0;
//Cubrir la sobrecarga con la capacidad de los peers
while(overload > 0 && (unsigned)index < list.size() )
{
//Si no esta replicado y la freq
//if(!(*tlc)->isReplicated(list[index]->getInlinkID()->getNodeID(), e->hashValue) && list[index]->getFrequency(e->hashValue) > 0)
if(list[index]->getFrequency(e->hashValue) > 0)
{
// e->isReplicated = true;
//Guardamos quienes son las replicas
//(*tlc)->trackReplica(list[index]->getInlinkID()->getNodeID(), e->hashValue);
(*tlc)->sendReplica( e->clone() , list[index]->getInlinkID());
overload = overload - list[index] ->getFrequency(e->hashValue);
}
index++;
}
}
| [
"[email protected]"
] | |
f68ed236c631e86121bc8d319e7175f99397a141 | 73a539e11f3b1e929b9c81c1cda9f39186360be1 | /source/event/event_untlity.cc | 985a2177c3eedfa98110ab3c3c7076d6fd6962b0 | [] | no_license | csky6688/libuv-evpp | ceefab9afd5c97fc8aceac40c4d18580208ec185 | 33ecccd910a8394af1a5c71cb859f6e1525a8146 | refs/heads/master | 2023-02-22T12:29:49.026081 | 2021-01-28T11:16:09 | 2021-01-28T11:16:09 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,266 | cc | #include <event_untlity.h>
#include <tcp_session.h>
#include <event_loop.h>
#include <config.h>
#include <buffer.h>
namespace Evpp
{
namespace Import
{
std::string send_data = "hello";
bool DefaultAccepts(EventLoop* loop, const std::shared_ptr<TcpSession>& session, const u96 index)
{
(void)loop, session, index;
printf("DefaultAccepts:%d Thread:%d\n", index, loop->EventThreadId());
return true;
}
bool DefaultDiscons(EventLoop* loop, const u96 index)
{
(void)loop, index;
printf("DefaultDiscons:%d Thread:%d\n", index, loop->EventThreadId());
return true;
}
bool DefaultMessage(EventLoop* loop, const std::shared_ptr<TcpSession>& session, const std::shared_ptr<TcpBuffer>& buffer, const u96 index)
{
(void)loop, session, buffer, index;
//printf("用户消息:%d 消息长度:%d 线程:%d\n", index, buffer->readableBytes(), loop->EventThreadId());
//buffer->retrieve(buffer->readableBytes());
//thread_local std::string send_str = send_data + std::to_string(index) + "\n";
printf("Message:%d MessageLen:%d Thread:%d\n", index, buffer->readableBytes(), loop->EventThreadId());
session->Send(send_data + std::to_string(index) + "\n" + char(10));
buffer->retrieve(buffer->readableBytes());
return true;
}
bool DefaultConnect(EventLoop* loop, const std::shared_ptr<TcpSession>& session, const u96 index)
{
(void)loop, session, index;
return true;
}
bool DefaultRestore(EventLoop* loop, const std::shared_ptr<TcpSession>& session, const u96 index)
{
(void)loop, session, index;
printf("重新连接成功\n");
return true;
}
bool DefaultFailure(EventLoop* loop, const u96 index, const i32 status, const String* name, const String* msgs)
{
(void)loop, index, status, name, msgs;
printf("与服务器连接失败 - index:%d - status:%d - name:%s - msgs:%s\n", index, status, name, msgs);
return true;
}
}
} | [
"[email protected]"
] | |
0f156e9e79bbd7ba396e82d4142f3ba2c367de5b | 455c92a3bd41f89c7e949c72c219d8e2992750ee | /ebalda.cpp | 009cdddf35af0c0f4430c78301b5e6099720f448 | [] | no_license | berkus/ebalda_uiskogo | b55f897fe0c946661154a1cd1c27a8205684a4f9 | c6159a6fd75f7a6ecdf8568831db802c821644e4 | refs/heads/master | 2023-07-10T22:32:21.896507 | 2008-07-31T22:20:38 | 2008-07-31T22:20:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,389 | cpp | #include "ebalda.h"
#include "config.h"
#include <gd.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
Ebalda::Ebalda()
: name(0)
, step(0)
, grown(false)
, headrow(0), headcol(0)
, width(0), height(0)
, ebalda_himself(0)
, startrow(0), startcol(0)
, endrow(0), endcol(0)
{
}
Ebalda::~Ebalda()
{
delete ebalda_himself;
}
void Ebalda::allocate_himself()
{
delete ebalda_himself;
ebalda_himself = 0;
if (width > 0 && height > 0)
{
ebalda_himself = new char [ (width + 2) * (height + 2) ];
if (!ebalda_himself)
abort(); // Хуякс!!
memset(ebalda_himself, 'A', (width + 2) * (height + 2));
}
}
#ifdef DEBUG
void Ebalda::dump()
{
fprintf(stderr, "Wild ebalda: %s @ step %d (grown: %d)\n"
" Height %d x Width %d\n"
" Head @ %d x %d\n"
" Start @ %d x %d\n"
" End @ %d x %d\n", name, step, grown,
height, width,
headrow, headcol,
startrow, startcol,
endrow, endcol);
for(int row = 0; row < height+2; row++)
// for(int row = startrow; row <= endrow; row++)
{
fprintf(stderr, "Row %02d: ", row);
for(int col = 0; col < width+2; col++)
// for(int col = startcol; col <= endcol; col++)
{
char c = ebalda_himself[ (width + 2) * row + col ];
fprintf(stderr, "%c", (row == headrow && col == headcol) ? toupper(c) : tolower(c));
}
fprintf(stderr, "\n");
}
fprintf(stderr, "\n");
}
#endif
// Hatch a fresh new ebalda with a name.
void Ebalda::Hatch(const char *n)
{
name = strdup(n);
width = height = 1;
allocate_himself();
step = 0;
headrow = headcol = 1; // At first, it's only the head.
startrow = startcol = 1;
endrow = endcol = 1;
ebalda_himself[ (width + 2) * headrow + headcol ] = 'B';
grown = false;
// Now you can save your newly hatched ebalda and let it live!
}
// Ebalda on-disk file format is as follows:
// NB: Not portable between architectures.
//
// 'EBAlDA' id
// 1 bytes length
// length bytes \0 terminated ebalda name
// 4 bytes step
// 2 bytes head row
// 2 bytes head column
// 2 bytes width
// 2 bytes height
// width*height bytes field
// Load ebalda from file.
bool Ebalda::LoadState(const char *fname)
{
short temp = 0;
char buf[6];
FILE *file = fopen(fname, "rb");
if (!file)
return false;
fread(buf, 6, 1, file);
if (strncmp(buf, "EBAlDA", 6))
return false;
fread(&temp, 1, 1, file); // NOT PORTABLE
if (temp == 0)
return false;
name = new char [temp];
if (!name)
return false;
fread(name, temp, 1, file);
fread(&step, 4, 1, file);
fread(&headrow, 2, 1, file);
fread(&headcol, 2, 1, file);
fread(&width, 2, 1, file);
fread(&height, 2, 1, file);
allocate_himself();
startrow = startcol = 1;
endrow = height;
endcol = width;
grown = false;
if (headrow == 0) headrow = 1;
if (headcol == 0) headcol = 1;
#ifdef DEBUG
fprintf(stderr, "**BEFORE LOAD**\n");
dump();
#endif
// Now the funky read loop.
for(int row = startrow; row <= endrow; row++)
{
#ifdef DEBUG
fprintf(stderr, "reading at %d for %d\n",(width + 2) * row + startcol, endcol - startcol + 1);
#endif
fread(&ebalda_himself[ (width + 2) * row + startcol ], endcol - startcol + 1, 1, file);
}
fclose(file);
#ifdef DEBUG
fprintf(stderr, "**LOADED**\n");
dump();
#endif
return true;
}
// Save ebalda to file.
void Ebalda::SaveState(const char *fname)
{
FILE *file = fopen(fname, "wb");
if (!file)
return;
short temp;
fwrite("EBAlDA", 6, 1, file);
temp = strlen(name) + 1; // ughmm, this relies on a) strlen(name) being < 255, b) x86 arch to take address of LSB of temp
fwrite(&temp, 1, 1, file); // NOT PORTABLE
fwrite(name, strlen(name)+1, 1, file);
fwrite(&step, 4, 1, file);
fwrite(&headrow, 2, 1, file);
fwrite(&headcol, 2, 1, file);
temp = endcol - startcol + 1; // new width
fwrite(&temp, 2, 1, file);
temp = endrow - startrow + 1; // new height
fwrite(&temp, 2, 1, file);
// Now the funky write loop.
for(int row = startrow; row <= endrow; row++)
fwrite(&ebalda_himself[ (width + 2) * row + startcol ], endcol - startcol + 1, 1, file);
fclose(file);
#ifdef DEBUG
fprintf(stderr, "**TRANSFORMED**\n");
dump();
#endif
}
void Ebalda::Grow()
{
if (grown)
return; // Save us from biiig memory trouble.
int which = rand() % 2;
int dir = rand() % 2;
#ifdef DEBUG
fprintf(stderr, "Prev row: %d prev col: %d\n", headrow, headcol);
#endif
if (which == 0)
{
// change row
headrow += dir ? +1 : -1;
if (headrow < startrow)
startrow--;
else if (headrow > endrow)
endrow++;
}
else
{
// change column
headcol += dir ? +1 : -1;
if (headcol < startcol)
startcol--;
else if (headcol > endcol)
endcol++;
}
#ifdef DEBUG
fprintf(stderr, "Next row: %d next col: %d\n\n", headrow, headcol);
#endif
char *p = &ebalda_himself[ (width + 2) * headrow + headcol ];
(*p)++;
if (*p > 'J') *p = 'J';
step++;
grown = true;
}
void Ebalda::Draw(const char *outfile)
{
gdImagePtr im;
FILE *pngout;
int black, white;
char buf[512];
snprintf(buf, 512, "%s Age: %d Size %d x %d", name, step, endcol - startcol + 1, endrow - startrow + 1);
im = gdImageCreateTrueColor((width + 1) * DOT_SIZE, (height + 1) * DOT_SIZE + 20);
white = gdImageColorAllocate(im, 255, 255, 255); // first allocated color is background
black = gdImageColorAllocate(im, 0, 0, 0);
int brect[8];
gdImageStringFT(im, brect, white, (char *)FONT_FILE, 11.0, 0.0, /*x*/5, /*y*/(height + 1) * DOT_SIZE + 10, buf);
for(int row = startrow; row <= endrow; row++)
{
for(int col = startcol; col <= endcol; col++)
{
int color;
int c = ebalda_himself[ (width + 2) * row + col ] - 'A';
if (row == headrow && col == headcol) color = gdImageColorAllocate(im, 255, 0, 0);
else color = gdImageColorAllocate(im, 250 - c * 25, 250 - c * 25, 250 - c * 25);
gdImageFilledRectangle(im, (col - startcol) * DOT_SIZE, (row - startrow) * DOT_SIZE,
(col - startcol) * DOT_SIZE + DOT_SIZE - 1, (row - startrow) * DOT_SIZE + DOT_SIZE - 1, color);
}
}
pngout = fopen(outfile, "wb");
gdImagePng(im, pngout);
fclose(pngout);
if (step % SCREENSHOT_EACH == 0)
{
snprintf(buf, 512, "%s/%08d.png", SCREENSHOT_DIR, step);
pngout = fopen(buf, "wb");
gdImagePng(im, pngout);
fclose(pngout);
}
gdImageDestroy(im);
}
| [
"[email protected]"
] | |
91716768a9fe036ff8c6cf13fe10d338f3904cda | c41cbb3cfa514e10cf726d9d338a15b340f05d84 | /.adev/rouge/ui/ievent_listener.h | bab361d408331d7042b23944592538cc023f70e6 | [] | no_license | astrellon/GPP | e9c432afbd3d0401ee0fddfed5ffad77a5b26e8e | d3ba5f9339051acbfb507fe489443f454459f27c | refs/heads/master | 2021-01-25T05:28:11.823329 | 2013-07-08T12:53:25 | 2013-07-08T12:53:25 | 1,505,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,137 | h | #pragma once
#include <base/imanaged.h>
using am::base::IManaged;
#include <vector>
using std::vector;
#include "event.h"
#include "mouse_event.h"
#include "keyboard_event.h"
#include "inventory_event.h"
#include "equip_event.h"
#include "value_change_event.h"
#include "dialogue_event.h"
#include "stat_event.h"
namespace am {
namespace ui {
class EventInterface;
class IEventListener : virtual public IManaged {
public:
typedef vector<EventInterface *> ListeningList;
virtual ~IEventListener();
virtual void onEvent(Event *e) {}
virtual void onEvent(MouseEvent *e) {}
virtual void onEvent(KeyboardEvent *e) {}
virtual void onEvent(ValueChangeEvent *e) {}
virtual void onEvent(InventoryEvent *e) {}
virtual void onEvent(EquipEvent *e) {}
virtual void onEvent(DialogueEvent *e) {}
virtual void onEvent(StatEvent *e) {}
virtual bool compareListeners(const IEventListener *rhs) const { return this == rhs; }
void addListeningTo(EventInterface *e);
void removeListeningTo(EventInterface *e);
const ListeningList &getListeningToList() const;
protected:
ListeningList mListeningTo;
};
}
}
| [
"[email protected]"
] | |
48a4d335014de2b3dfbc217f92cbac297139b319 | 970a44d955670032360303f03d597c13b20551fb | /pillbutton.h | 92ca40fbd3ca39b39cd3de23d73fdf7d80d0ba59 | [] | no_license | kolya-t/PillClicker | e73657aad1cf64e9908750b315979a310ce1333e | 420710108df963cab4c7c0c9acab178fd6a02910 | refs/heads/master | 2021-01-10T18:34:32.644400 | 2016-04-18T19:46:37 | 2016-04-18T19:46:37 | 56,455,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 482 | h | #ifndef PILLBUTTON_H
#define PILLBUTTON_H
#include <QLabel>
class PillButton : public QLabel
{
Q_OBJECT
public:
explicit PillButton(QWidget *parent = 0);
explicit PillButton(QWidget *parent, QPixmap px);
signals:
void clicked();
public slots:
protected:
void mousePressEvent(QMouseEvent *ev);
void mouseReleaseEvent(QMouseEvent *ev);
void enterEvent(QEvent *);
void leaveEvent(QEvent *);
private:
QPixmap pixmap;
};
#endif // PILLBUTTON_H
| [
"[email protected]"
] | |
1384bc78f8d3f87a4b30821d849573dd4b6251b6 | e813becb00b78aea262bec638f594f7b0d30cc7b | /CresusCore/AbstractImportModule.h | d4b2a511fcd981751a2738609fdf873ae63ab242 | [] | no_license | jjdubois/cresus | ffbe96eaf62574d7114017b81042276b317f5705 | 64d7336ad4ef4a2653cf2c39d188a9593804d866 | refs/heads/master | 2021-01-10T09:10:33.292537 | 2016-02-26T22:09:56 | 2016-02-26T22:09:56 | 49,322,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 387 | h | #ifndef ABSTRACTIMPORTMODULE_H
#define ABSTRACTIMPORTMODULE_H
#include <ImportModule.h>
#include <QSet>
#include <QString>
#include <QRegExp>
class CRESUSCORESHARED_EXPORT AbstractImportModule : public ImportModule
{
QRegExp m_rexExp;
public:
AbstractImportModule( const QRegExp& regExp );
bool acceptFile( const QFileInfo& file );
};
#endif // ABSTRACTIMPORTMODULE_H
| [
"[email protected]"
] | |
c9b42fdba69ffff3c7d7680c17af8653982fd84c | 0010119ae9c57f01ea4d1034d7d58b4a9ffb2d36 | /CountNodes/main.cpp | cc6cb2929519ac0fc941417ca34258612991ae72 | [] | no_license | ishitacs/Trees-Questions | d16e3a6940e07de2366061d359313d3f58977243 | 2ef086fa2ef7032be9d0622d4edb1eaa58e8e7c4 | refs/heads/main | 2023-03-14T08:58:59.689589 | 2021-03-04T15:22:06 | 2021-03-04T15:22:06 | 342,481,380 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 709 | cpp | #include <iostream>
using namespace std;
class node{
public: int data; node*left ; node *right;
node(int d)
{
data=d;
left=NULL;
right=NULL;
}
};
node *build()
{ int d;
cin>>d;
if(d==-1) return NULL;
node* root= new node(d);
root->left=build();
root->right=build();
return root;
}
void printPre(node*root){
if(root==NULL) return;
cout<<root->data<<" ";
printPre(root->left);
printPre(root->right);
}
int countNode(node *root)
{
if(root==NULL) return 0;
return countNode(root->left)+countNode(root->right)+1;
}
int main()
{
node *root= build();
printPre(root);
cout<<endl<<countNode(root)<<endl;
return 0;
}
| [
"[email protected]"
] | |
ba1181847b2a4c1552612a50b10e70bb691c7b9f | efe2b4dedbc6bab31ffe88c271daa5463f8649f6 | /tags/libtorrent-0_12/src/kademlia/rpc_manager.cpp | 7295938d04159024801a797b37c4d96da834d97f | [] | no_license | svn2github/libtorrent | 867c84f0c271cdc255c3e268c17db75d46010dde | 8cfe21e253d8b90086bb0b15c6c881795bf12ea1 | refs/heads/master | 2020-03-30T03:50:32.931129 | 2015-01-07T23:21:54 | 2015-01-07T23:21:54 | 17,344,601 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 10,460 | cpp | /*
Copyright (c) 2006, Arvid Norberg
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 author 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.
*/
#include <boost/date_time/posix_time/posix_time_types.hpp>
#include <boost/date_time/posix_time/ptime.hpp>
#include <boost/bind.hpp>
#include <libtorrent/io.hpp>
#include <libtorrent/invariant_check.hpp>
#include <libtorrent/kademlia/rpc_manager.hpp>
#include <libtorrent/kademlia/logging.hpp>
#include <libtorrent/kademlia/routing_table.hpp>
#include <libtorrent/hasher.hpp>
#include <fstream>
using boost::posix_time::ptime;
using boost::posix_time::time_duration;
using boost::posix_time::microsec_clock;
using boost::posix_time::seconds;
using boost::posix_time::milliseconds;
using boost::shared_ptr;
using boost::bind;
namespace libtorrent { namespace dht
{
namespace io = libtorrent::detail;
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_DEFINE_LOG(rpc)
#endif
node_id generate_id();
rpc_manager::rpc_manager(fun const& f, node_id const& our_id
, routing_table& table, send_fun const& sf)
: m_next_transaction_id(rand() % max_transactions)
, m_oldest_transaction_id(m_next_transaction_id)
, m_incoming(f)
, m_send(sf)
, m_our_id(our_id)
, m_table(table)
, m_timer(boost::posix_time::microsec_clock::universal_time())
, m_random_number(generate_id())
, m_destructing(false)
{
std::srand(time(0));
}
rpc_manager::~rpc_manager()
{
m_destructing = true;
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_LOG(rpc) << "Destructing";
#endif
std::for_each(m_aborted_transactions.begin(), m_aborted_transactions.end()
, bind(&observer::abort, _1));
for (transactions_t::iterator i = m_transactions.begin()
, end(m_transactions.end()); i != end; ++i)
{
if (*i) (*i)->abort();
}
}
#ifndef NDEBUG
void rpc_manager::check_invariant() const
{
assert(m_oldest_transaction_id >= 0);
assert(m_oldest_transaction_id < max_transactions);
assert(m_next_transaction_id >= 0);
assert(m_next_transaction_id < max_transactions);
assert(!m_transactions[m_next_transaction_id]);
for (int i = (m_next_transaction_id + 1) % max_transactions;
i != m_oldest_transaction_id; i = (i + 1) % max_transactions)
{
assert(!m_transactions[i]);
}
}
#endif
bool rpc_manager::incoming(msg const& m)
{
INVARIANT_CHECK;
if (m_destructing) return false;
if (m.reply)
{
// if we don't have the transaction id in our
// request list, ignore the packet
if (m.transaction_id.size() != 2)
{
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_LOG(rpc) << "Reply with invalid transaction id size: "
<< m.transaction_id.size() << " from " << m.addr;
#endif
return false;
}
std::string::const_iterator i = m.transaction_id.begin();
int tid = io::read_uint16(i);
if (tid >= (int)m_transactions.size()
|| tid < 0)
{
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_LOG(rpc) << "Reply with unknown transaction id: "
<< tid << " from " << m.addr;
#endif
return false;
}
boost::shared_ptr<observer> o = m_transactions[tid];
if (!o)
{
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_LOG(rpc) << "Reply with unknown transaction id: "
<< tid << " from " << m.addr;
#endif
return false;
}
if (m.addr != o->target_addr)
{
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_LOG(rpc) << "Reply with incorrect address and valid transaction id: "
<< tid << " from " << m.addr;
#endif
return false;
}
#ifdef TORRENT_DHT_VERBOSE_LOGGING
std::ofstream reply_stats("libtorrent_logs/round_trip_ms.log", std::ios::app);
reply_stats << m.addr << "\t" << (microsec_clock::universal_time()
- o->sent).total_milliseconds() << std::endl;
#endif
o->reply(m);
m_transactions[tid].reset();
if (m.piggy_backed_ping)
{
// there is a ping request piggy
// backed in this reply
msg ph;
ph.message_id = messages::ping;
ph.transaction_id = m.ping_transaction_id;
ph.id = m_our_id;
ph.addr = m.addr;
msg empty;
reply(empty, ph);
}
return m_table.node_seen(m.id, m.addr);
}
else
{
// this is an incoming request
m_incoming(m);
}
return false;
}
time_duration rpc_manager::tick()
{
INVARIANT_CHECK;
using boost::posix_time::microsec_clock;
const int timeout_ms = 10 * 1000;
// look for observers that has timed out
if (m_next_transaction_id == m_oldest_transaction_id) return milliseconds(timeout_ms);
std::vector<shared_ptr<observer> > timeouts;
for (;m_next_transaction_id != m_oldest_transaction_id;
m_oldest_transaction_id = (m_oldest_transaction_id + 1) % max_transactions)
{
assert(m_oldest_transaction_id >= 0);
assert(m_oldest_transaction_id < max_transactions);
boost::shared_ptr<observer> o = m_transactions[m_oldest_transaction_id];
if (!o) continue;
time_duration diff = o->sent + milliseconds(timeout_ms)
- microsec_clock::universal_time();
if (diff > seconds(0))
{
if (diff < seconds(1)) return seconds(1);
return diff;
}
try
{
m_transactions[m_oldest_transaction_id].reset();
timeouts.push_back(o);
} catch (std::exception) {}
}
std::for_each(timeouts.begin(), timeouts.end(), bind(&observer::timeout, _1));
timeouts.clear();
// clear the aborted transactions, will likely
// generate new requests. We need to swap, since the
// destrutors may add more observers to the m_aborted_transactions
std::vector<shared_ptr<observer> >().swap(m_aborted_transactions);
return milliseconds(timeout_ms);
}
unsigned int rpc_manager::new_transaction_id(shared_ptr<observer> o)
{
INVARIANT_CHECK;
unsigned int tid = m_next_transaction_id;
m_next_transaction_id = (m_next_transaction_id + 1) % max_transactions;
if (m_transactions[m_next_transaction_id])
{
// moving the observer into the set of aborted transactions
// it will prevent it from spawning new requests right now,
// since that would break the invariant
m_aborted_transactions.push_back(m_transactions[m_next_transaction_id]);
m_transactions[m_next_transaction_id].reset();
assert(m_oldest_transaction_id == m_next_transaction_id);
}
assert(!m_transactions[tid]);
m_transactions[tid] = o;
if (m_oldest_transaction_id == m_next_transaction_id)
{
m_oldest_transaction_id = (m_oldest_transaction_id + 1) % max_transactions;
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_LOG(rpc) << "WARNING: transaction limit reached! Too many concurrent"
" messages! limit: " << (int)max_transactions;
#endif
update_oldest_transaction_id();
}
return tid;
}
void rpc_manager::update_oldest_transaction_id()
{
INVARIANT_CHECK;
assert(m_oldest_transaction_id != m_next_transaction_id);
while (!m_transactions[m_oldest_transaction_id])
{
m_oldest_transaction_id = (m_oldest_transaction_id + 1)
% max_transactions;
if (m_oldest_transaction_id == m_next_transaction_id)
break;
}
}
void rpc_manager::invoke(int message_id, udp::endpoint target_addr
, shared_ptr<observer> o)
{
INVARIANT_CHECK;
if (m_destructing)
{
o->abort();
return;
}
msg m;
m.message_id = message_id;
m.reply = false;
m.id = m_our_id;
m.addr = target_addr;
assert(!m_transactions[m_next_transaction_id]);
#ifndef NDEBUG
int potential_new_id = m_next_transaction_id;
#endif
try
{
m.transaction_id.clear();
std::back_insert_iterator<std::string> out(m.transaction_id);
io::write_uint16(m_next_transaction_id, out);
o->send(m);
o->sent = boost::posix_time::microsec_clock::universal_time();
o->target_addr = target_addr;
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_LOG(rpc) << "Invoking " << messages::ids[message_id]
<< " -> " << target_addr;
#endif
m_send(m);
new_transaction_id(o);
}
catch (std::exception& e)
{
// m_send may fail with "no route to host"
assert(potential_new_id == m_next_transaction_id);
o->abort();
}
}
void rpc_manager::reply(msg& m, msg const& reply_to)
{
INVARIANT_CHECK;
if (m_destructing) return;
if (m.message_id != messages::error)
m.message_id = reply_to.message_id;
m.addr = reply_to.addr;
m.reply = true;
m.piggy_backed_ping = false;
m.id = m_our_id;
m.transaction_id = reply_to.transaction_id;
m_send(m);
}
namespace
{
struct dummy_observer : observer
{
virtual void reply(msg const&) {}
virtual void timeout() {}
virtual void send(msg&) {}
void abort() {}
};
}
void rpc_manager::reply_with_ping(msg& m, msg const& reply_to)
{
INVARIANT_CHECK;
if (m_destructing) return;
if (m.message_id != messages::error)
m.message_id = reply_to.message_id;
m.addr = reply_to.addr;
m.reply = true;
m.piggy_backed_ping = true;
m.id = m_our_id;
m.transaction_id = reply_to.transaction_id;
try
{
m.ping_transaction_id.clear();
std::back_insert_iterator<std::string> out(m.ping_transaction_id);
io::write_uint16(m_next_transaction_id, out);
boost::shared_ptr<observer> o(new dummy_observer);
assert(!m_transactions[m_next_transaction_id]);
o->sent = boost::posix_time::microsec_clock::universal_time();
o->target_addr = m.addr;
m_send(m);
new_transaction_id(o);
}
catch (std::exception& e)
{
// m_send may fail with "no route to host"
}
}
} } // namespace libtorrent::dht
| [
"arvidn@f43f7eb3-cfe1-5f9d-1b5f-e45aa6702bda"
] | arvidn@f43f7eb3-cfe1-5f9d-1b5f-e45aa6702bda |
07b4fa12fc3e55b1ee2818f6b74672d78f179d30 | b62796a1bfca4e1f7760c310fd9e9138c7b99f84 | /Sales_data.cpp | cd0db6f5fac0091b6fb3c9dec0547c34f32c6f93 | [] | no_license | TheHeepo/C-Primer | b71d2fca1f2b5096605d6fa4222656546717d988 | f12ad50a9674ea648a75ea9a8666aeb2fc9f7fd4 | refs/heads/master | 2021-07-11T01:25:56.041781 | 2017-10-13T00:03:57 | 2017-10-13T00:03:57 | 106,756,739 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 874 | cpp | #include "Sales_data.h"
Sales_data add(const Sales_data&, const Sales_data&);
istream &read(istream &is, Sales_data &item);
ostream &print(ostream &os, const Sales_data &item);
Sales_data add(const Sales_data &lhs, const Sales_data &rhs) {
Sales_data sum = lhs;
sum.combine(rhs);
return sum;
}
Sales_data &Sales_data::combine(const Sales_data &rhs) {
units_sold += rhs.units_sold;
revenue += rhs.revenue;
return *this;
}
istream &read(istream &is, Sales_data &item) {
double price = 0;
is >> item.bookNo >> item.units_sold >> price;
item.revenue = price * item.units_sold;
return is;
}
ostream &print(ostream &os, const Sales_data &item) {
os << item.isbn() << " " << item.units_sold << " "
<< item.revenue << " " << item.avg_price();
return os;
}
/*
Sales_data::Sales_data(istream &is) {
read(is, *this);
}
*/
| [
"[email protected]"
] | |
96a0a372d4eeeb7afb125b26175e9d4bdc78b2f9 | db8d7a002615ffe62f24c5b93a5ace86abe2a95c | /cpp/src/bindings/bindings_artboard.cpp | d6d18de94862e594245f8cab920536134fe2bc24 | [] | no_license | callstack-internal/rive-android | ef611b53d9cdb6d955e22a077b6fbeb2536a848c | cecaf66fd34c16b7f93a8e8d4b507aa684ad3d8e | refs/heads/master | 2023-04-19T02:29:38.165842 | 2021-04-27T08:14:27 | 2021-04-27T08:14:27 | 357,198,435 | 0 | 0 | null | 2021-04-20T12:50:44 | 2021-04-12T13:10:54 | C++ | UTF-8 | C++ | false | false | 2,810 | cpp | #include "jni_refs.hpp"
#include "helpers/general.hpp"
#include "models/jni_renderer.hpp"
// From rive-cpp
#include "artboard.hpp"
#include "animation/linear_animation_instance.hpp"
//
#include <jni.h>
#ifdef __cplusplus
extern "C"
{
#endif
using namespace rive_android;
// ARTBOARD
JNIEXPORT jstring JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeName(
JNIEnv *env,
jobject thisObj,
jlong ref)
{
rive::Artboard *artboard = (rive::Artboard *)ref;
return env->NewStringUTF(artboard->name().c_str());
}
JNIEXPORT jlong JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeFirstAnimation(
JNIEnv *env,
jobject thisObj,
jlong ref)
{
rive::Artboard *artboard = (rive::Artboard *)ref;
return (jlong)artboard->firstAnimation();
}
JNIEXPORT jlong JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeAnimationByIndex(
JNIEnv *env,
jobject thisObj,
jlong ref,
jint index)
{
rive::Artboard *artboard = (rive::Artboard *)ref;
return (jlong)artboard->animation(index);
}
JNIEXPORT jlong JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeAnimationByName(
JNIEnv *env,
jobject thisObj,
jlong ref,
jstring name)
{
rive::Artboard *artboard = (rive::Artboard *)ref;
return (jlong)artboard->animation(
jstring2string(env, name));
}
JNIEXPORT jint JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeAnimationCount(
JNIEnv *env,
jobject thisObj,
jlong ref)
{
rive::Artboard *artboard = (rive::Artboard *)ref;
return (jint)artboard->animationCount();
}
JNIEXPORT void JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeAdvance(
JNIEnv *env,
jobject thisObj,
jlong ref,
jfloat elapsedTime)
{
rive::Artboard *artboard = (rive::Artboard *)ref;
artboard->advance(elapsedTime);
}
JNIEXPORT jlong JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeBounds(
JNIEnv *env,
jobject thisObj,
jlong ref)
{
rive::Artboard *artboard = (rive::Artboard *)ref;
// TODO: garbage collection?
auto bounds = new rive::AABB(artboard->bounds());
return (jlong)bounds;
}
JNIEXPORT void JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeDraw(
JNIEnv *env,
jobject thisObj,
jlong ref,
jlong rendererRef,
jobject rendererObj)
{
rive::Artboard *artboard = (rive::Artboard *)ref;
::JNIRenderer *renderer = (::JNIRenderer *)rendererRef;
artboard->draw(renderer);
}
#ifdef __cplusplus
}
#endif
| [
"[email protected]"
] | |
66fd713e094c47d331960dbcc1e6070a4252bbfe | 3523ce08e2402f78859e063615aee0d0889946cf | /src/normalizer.cpp | 11e64413e82a979c950a21948c7763f5f529a53b | [
"MIT"
] | permissive | ernire/next-dbscan | 4f38130665d97b993cbd56c25f60320e4adf3d77 | 408bed5ea455086ebc3d28dec217cd532ca7cd16 | refs/heads/master | 2021-07-08T19:04:26.265728 | 2020-01-18T22:25:13 | 2020-01-18T22:25:13 | 176,022,674 | 0 | 1 | MIT | 2020-01-18T22:25:15 | 2019-03-16T20:42:39 | C++ | UTF-8 | C++ | false | false | 3,962 | cpp | /*
Copyright (c) 2019, Ernir Erlingsson
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 <sstream>
#include <cmath>
#include <chrono>
#include <iostream>
#include <iomanip>
#include <vector>
#include <fstream>
int count_lines(const std::string &in_file) {
std::ifstream is(in_file);
std::string line;
int cnt = 0;
while (std::getline(is, line)) {
++cnt;
}
return cnt;
}
void write_output(const std::string &out_file, const float *v_points, const int max_d, const int n) {
std::ofstream os(out_file);
for (int i = 0; i < n; i ++) {
for (int j = 0; j < max_d; j++) {
os << v_points[i*max_d + j] << " ";
}
os << '\n';
}
os.flush();
os.close();
}
void read_input(const std::string &in_file, float *v_points, int max_d) noexcept {
std::ifstream is(in_file);
std::string line, buf;
std::stringstream ss;
int index = 0;
auto t1 = std::chrono::high_resolution_clock::now();
while (std::getline(is, line)) {
ss.str(std::string());
ss.clear();
ss << line;
for (int j = 0; j < max_d; j++) {
ss >> buf;
v_points[index++] = atof(buf.c_str());
}
}
is.close();
auto t2 = std::chrono::high_resolution_clock::now();
std::cout << std::endl;
std::cout << "Read input took: "
<< std::chrono::duration_cast<std::chrono::milliseconds>(t2 - t1).count()
<< " milliseconds\n";
}
int main(int argc, char* const* argv) {
std::string in_file = argv[1];
std::string out_file = argv[2];
std::cout << "Input file: " << in_file << std::endl;
uint max_d = 7;
uint n = count_lines(in_file);
std::cout << "Number of samples: " << n << std::endl;
auto *v_points = new float[n*max_d];
read_input(in_file, v_points, max_d);
float mins[max_d];
float maxs[max_d];
float minmaxs[max_d];
for (uint j = 0; j < max_d; j++) {
mins[j] = v_points[j];
maxs[j] = v_points[j];
}
std::cout << std::endl;
for (uint i = 1; i < n; i ++) {
for (uint j = 0; j < max_d; j++) {
float val = v_points[i*max_d + j];
if (val < mins[j]) {
mins[j] = val;
}
if (val > maxs[j]) {
maxs[j] = val;
}
}
}
for (uint j = 0; j < max_d; j++) {
std::cout << "Min: " << mins[j] << ", Max: " << maxs[j] << std::endl;
minmaxs[j] = maxs[j] - mins[j];
}
for (uint i = 0; i < n; i ++) {
for (uint j = 0; j < max_d; j++) {
if (minmaxs[j] == 0) {
v_points[i*max_d + j] = 0;
} else {
float val = v_points[i*max_d + j];
v_points[i*max_d + j] = ((val - mins[j]) / minmaxs[j]) * 100000;
}
}
}
std::cout << "Writing output file: " << out_file << std::endl;
write_output(out_file, v_points, max_d, n);
} | [
"[email protected]"
] | |
2ab4f3ca94b7dde62272f3393105bd494db26ee0 | a6ef9674622f6e7c46ac31f4cfffbd568ff4f97e | /SteadyState_Rectangular_0_dt2t10000/processor0/10000/p | 765a98063e48cab8d2b9bee6dd4ca1806a9a12f5 | [] | no_license | jhargun/FluidIP | 4c3f6d9a87ed8ce24ed692a9bf939a9ca04222f6 | d6e0f20c1f5e1f86c160497be9d632e6d17abbf7 | refs/heads/master | 2022-08-26T02:34:26.327956 | 2020-05-26T22:33:29 | 2020-05-26T22:33:29 | 266,886,503 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 590,810 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "10000";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
33730
(
-7.6002541e+117
-7.6710619e+117
-7.1730164e+117
-7.5969594e+117
-8.0798353e+117
-7.9764497e+117
-7.8596426e+117
-7.6402445e+117
-7.4385827e+117
-7.4496558e+117
-7.6498914e+117
-7.5667541e+117
-7.5987358e+117
-7.2186616e+117
-8.1592158e+117
-7.9964236e+117
-7.8098149e+117
-7.675341e+117
-8.0674355e+117
-7.1795924e+117
-7.0394346e+117
-7.0449849e+117
-7.2477499e+117
-7.2447729e+117
-7.531531e+117
-7.7565083e+117
-7.4224587e+117
-7.62229e+117
-7.7603105e+117
-8.2680464e+117
-7.5117932e+117
-7.5266817e+117
-7.4334337e+117
-7.6744298e+117
-7.6432362e+117
-7.6123829e+117
-7.6974865e+117
-6.7280901e+117
-7.5541341e+117
-7.4284458e+117
-7.4522751e+117
-7.677077e+117
-7.5809884e+117
-7.4980123e+117
-7.242285e+117
-7.6655342e+117
-7.5374081e+117
-7.9489123e+117
-7.460956e+117
-7.9816758e+117
-7.2296792e+117
-8.0539849e+117
-7.1238021e+117
-8.1553222e+117
-6.9280771e+117
-7.2744542e+117
-7.5428422e+117
-7.520654e+117
-7.5177399e+117
-7.8990631e+117
-7.1594239e+117
-7.0391132e+117
-7.0449621e+117
-7.2478276e+117
-7.2394186e+117
-7.0443701e+117
-7.0469187e+117
-7.2449196e+117
-7.2452603e+117
-7.4370025e+117
-7.8775991e+117
-7.4127527e+117
-7.3846534e+117
-7.6861218e+117
-7.6936253e+117
-7.766144e+117
-7.4911813e+117
-7.5082493e+117
-6.8511508e+117
-7.4194777e+117
-7.0046686e+117
-7.4167705e+117
-7.3192092e+117
-7.4390512e+117
-7.8204843e+117
-7.484294e+117
-7.5653385e+117
-7.4319554e+117
-1.3833515e+117
-7.3569815e+117
-1.9763988e+117
-7.3644495e+117
-7.8699452e+117
-7.0028452e+117
-1.871661e+117
-7.5917148e+117
-7.4376747e+117
-7.4663267e+117
-7.6921964e+117
-7.5934394e+117
-7.2442477e+117
-7.3356883e+117
-7.3735199e+117
-7.3912046e+117
-7.5110395e+117
-7.4365482e+117
-7.2655806e+117
-7.0674442e+117
-7.3750501e+117
-7.2670977e+117
-7.2148836e+117
-6.3356152e+117
-6.7625065e+117
-7.1646757e+117
-9.4044341e+117
-7.2226268e+117
-7.4401568e+117
-7.1954623e+117
-7.3796237e+117
-7.7163813e+117
-7.1953449e+117
-1.7511344e+117
-6.9462632e+117
-1.5668831e+117
-5.8432983e+117
-6.5215495e+117
-6.3072048e+117
-7.8838211e+117
-6.902729e+117
-7.5007016e+117
-7.4882734e+117
-7.3821302e+117
-7.5960519e+117
-1.7552711e+117
-7.1090122e+117
-7.0124614e+117
-7.2121819e+117
-7.2333008e+117
-7.0301243e+117
-7.0364115e+117
-7.0420838e+117
-7.2420508e+117
-7.2380793e+117
-7.052849e+117
-7.0528572e+117
-7.2538834e+117
-7.2561023e+117
-7.2954002e+117
-7.5763523e+117
-7.4197239e+117
-7.3643178e+117
-7.3489815e+117
-7.4625304e+117
-7.5087183e+117
-7.638833e+117
-7.4774184e+117
-7.358594e+117
-7.4008967e+117
-7.3702071e+117
-6.9541277e+117
-7.3825972e+117
-6.9219924e+117
-7.2657853e+117
-7.4846631e+117
-7.4540991e+117
-7.460182e+117
-5.5445676e+117
-7.4241107e+117
-6.9123556e+117
-1.7049783e+117
-7.3050643e+117
-6.3596312e+117
-1.5487983e+117
-7.5754685e+117
-7.4630116e+116
-7.4813255e+117
-7.5820073e+117
-7.4414008e+117
-2.3700028e+116
-7.3705585e+117
-6.0875511e+116
-8.8829581e+117
-7.7443731e+117
-7.9003346e+117
-6.7105347e+117
-7.2296715e+117
-7.5533989e+116
-7.6048841e+117
-7.4388123e+117
-7.4678815e+117
-7.6937369e+117
-7.5948152e+117
-4.2752309e+116
-7.2006339e+117
-7.3121479e+117
-7.1581003e+117
-7.2838636e+117
-7.1595446e+117
-7.2322981e+117
-7.228027e+117
-7.1330194e+117
-7.1101876e+117
-7.2737182e+117
-7.0918645e+117
-6.9592952e+117
-6.6907237e+117
-6.8566819e+117
-7.2915901e+117
-7.1739629e+117
-7.4311968e+117
-7.4071093e+117
-7.3739596e+117
-7.3912976e+117
-6.1197302e+117
-5.8789647e+117
-6.3689175e+117
-6.7358812e+117
-7.1715556e+117
-8.6800287e+116
-6.2790299e+117
-6.0130422e+117
-6.1978311e+117
-7.888971e+117
-7.0562287e+117
-7.395842e+117
-6.6674008e+117
-7.1506943e+117
-7.476776e+117
-7.0736547e+117
-7.2786768e+117
-1.7108593e+117
-7.1548868e+117
-3.8483878e+116
-1.2986926e+117
-5.2534153e+116
-7.3403938e+117
-6.4976882e+117
-7.8271507e+117
-5.9596038e+117
-7.0057874e+117
-1.4491892e+117
-7.4856026e+117
-7.3916825e+117
-7.3358462e+117
-7.5264456e+117
-7.4769748e+117
-6.9596677e+117
-6.8859246e+117
-3.9350366e+116
-6.7344649e+117
-7.0403171e+117
-6.9756787e+117
-7.1780611e+117
-7.1912856e+117
-6.9927553e+117
-7.011267e+117
-7.2104766e+117
-7.2337281e+117
-7.0291307e+117
-7.0411789e+117
-7.0463862e+117
-7.250189e+117
-7.2450248e+117
-7.0536614e+117
-7.0535487e+117
-7.2548678e+117
-7.2572587e+117
-7.3427793e+117
-7.3320095e+117
-7.4493209e+117
-7.3911374e+117
-7.0788844e+117
-7.2957195e+117
-7.2432599e+117
-7.2861812e+117
-7.3536784e+117
-6.9721015e+117
-6.9123915e+117
-7.3524102e+117
-7.3456084e+117
-7.4796433e+117
-7.3985597e+117
-7.4894862e+117
-7.5450252e+117
-7.2547508e+117
-7.3070209e+117
-1.5938538e+117
-7.4090091e+117
-7.37695e+117
-6.3438568e+117
-1.3377865e+117
-7.3215426e+117
-1.2232173e+117
-1.7596671e+117
-6.9556898e+117
-7.368083e+117
-7.5136082e+117
-7.4706799e+117
-5.4413445e+117
-7.4246522e+117
-6.7634411e+117
-6.9475335e+117
-5.6065929e+116
-7.2348269e+117
-7.2214931e+117
-1.0522718e+117
-3.7225512e+116
-7.6231683e+117
1.0793152e+116
-7.4811169e+117
-7.5834326e+117
-7.4424579e+117
-9.1630719e+117
-1.9784086e+117
-7.6488177e+117
-7.9027041e+117
-6.6946053e+117
-6.6771593e+117
-7.111383e+117
-7.606013e+117
-1.6716632e+117
-4.364296e+116
-1.3642311e+117
-6.9320724e+117
-7.1505185e+117
-7.1236663e+117
-7.2201043e+117
-7.2627953e+117
-7.1494337e+117
-7.2928484e+117
-7.1517358e+117
-7.2623913e+117
-7.1522684e+117
-7.4534611e+117
-7.1628559e+117
-6.9566922e+117
-6.9116524e+117
-7.1584244e+117
-6.158705e+117
-6.6483173e+117
-6.9603633e+117
-6.8219049e+117
-7.1300626e+117
-6.9089443e+117
-7.220158e+117
-6.9797729e+117
-6.798701e+117
-7.1924773e+117
-5.8633841e+117
-6.0961705e+117
-5.2605576e+117
-5.7097863e+117
-7.2847853e+117
-6.6711784e+117
-7.149375e+117
-6.4355325e+117
-7.3987977e+117
-7.2097221e+117
-7.1002307e+117
-7.3923257e+117
-1.1473696e+117
-5.2570446e+117
-1.5991342e+117
-1.0001531e+118
-7.1542437e+117
-2.8112997e+116
-7.2393571e+117
-5.9528645e+117
-1.2644159e+117
-3.4915408e+117
-7.1195453e+117
-1.7542431e+117
-6.8556745e+117
-6.2318099e+117
-7.4440693e+117
-7.2913692e+117
-7.2873525e+117
-7.3680489e+117
-7.3379335e+117
-6.8545766e+117
-7.0373764e+117
-3.9516098e+116
-7.1139525e+117
-2.8927857e+116
-7.5219657e+117
-3.6615752e+117
-5.9559013e+117
-6.1302505e+117
-3.9962042e+116
-7.4341581e+117
-7.3638812e+117
-7.7264776e+117
-7.6570759e+117
-7.4206722e+117
-6.8113699e+117
-6.5822647e+117
-7.0268055e+117
-6.7629235e+117
-7.3816733e+117
-1.6896067e+117
-6.7179862e+117
-6.5819454e+117
-6.5910809e+117
-6.8001665e+117
-6.7862296e+117
-7.05873e+117
-6.9489734e+117
-7.1274871e+117
-7.1533673e+117
-6.9578473e+117
-6.9746312e+117
-7.1726121e+117
-7.1852635e+117
-6.9910773e+117
-7.0159762e+117
-7.2173771e+117
-7.2373467e+117
-7.0345221e+117
-7.0418274e+117
-7.046932e+117
-7.2510934e+117
-7.2458026e+117
-7.2941659e+117
-7.1438637e+117
-7.2102431e+117
-7.2761441e+117
-7.2568479e+117
-7.1040704e+117
-6.9857742e+117
-7.2978428e+117
-7.3078869e+117
-7.349723e+117
-7.1093045e+117
-7.595611e+117
-7.324764e+117
-7.8469518e+117
-7.3010015e+117
-7.3107708e+117
-7.2566415e+117
-7.3364854e+117
-7.4075009e+117
-1.671551e+117
-4.7532787e+117
-7.3580479e+117
-7.350002e+117
-7.5095042e+117
-7.5131834e+117
-7.0411328e+117
-7.3634747e+117
-7.5401989e+117
-7.1659111e+117
-1.5434236e+117
-2.228776e+117
-3.5298895e+116
-7.4097496e+117
-7.3777813e+117
-1.4109709e+117
-6.8687556e+117
-2.7977104e+116
-7.4541601e+117
-2.6730022e+116
-5.4217277e+116
-6.1282681e+117
-7.0801737e+117
-7.2673871e+117
-7.519956e+117
-7.4725943e+117
-6.7425471e+117
-7.873539e+117
-6.4232679e+117
-7.2298123e+117
-6.9554759e+117
-1.9383393e+117
-3.2239837e+116
-7.6279968e+117
-5.0242586e+116
-1.7294397e+117
-7.6357446e+117
-6.6141446e+117
-3.4071288e+117
-7.0997982e+117
-2.7535123e+117
-2.7564973e+117
-4.6946023e+116
-6.888414e+117
-6.9782758e+117
-6.7826215e+117
-6.9677214e+117
-6.796715e+117
-7.1365513e+117
-7.0361458e+117
-7.1373089e+117
-7.1652833e+117
-7.072828e+117
-7.1010068e+117
-7.1667011e+117
-7.223552e+117
-7.1440215e+117
-7.2983847e+117
-7.1495381e+117
-7.2605644e+117
-7.1557086e+117
-7.44584e+117
-7.3083536e+117
-7.3980218e+117
-7.2573711e+117
-7.2471831e+117
-7.8329354e+117
-7.4407953e+117
-7.9900776e+117
-8.207401e+117
-7.1157902e+117
-6.9080245e+117
-6.4627013e+117
-6.7904305e+117
-6.3065471e+117
-7.0904196e+117
-3.7570517e+117
-5.36028e+117
-6.2046293e+117
-5.8940641e+117
-7.1210073e+117
-6.3856943e+117
-6.8886972e+117
-7.1695384e+117
-6.9665708e+117
-6.3720649e+117
-5.3678486e+117
-7.1815539e+117
-1.1253468e+117
-5.9654268e+117
-4.7748829e+117
-5.0212977e+117
-7.2841626e+117
-6.5620529e+117
-5.2311129e+117
-7.1469077e+117
-1.6944553e+117
-7.3980454e+117
-7.2160729e+117
-6.6937912e+117
-9.2307041e+117
-7.3924747e+117
-3.3787221e+116
-5.2120509e+117
-5.8291983e+116
-1.0507532e+118
-7.1161199e+117
-7.3779011e+117
-3.9458584e+116
-7.2249015e+117
-5.6694202e+116
-6.9512423e+117
-6.2025925e+117
-7.4160471e+117
-7.5730396e+117
-7.3312012e+117
-7.2943394e+117
-7.5100929e+117
-6.2134007e+117
-6.2196127e+117
-6.869872e+117
-6.7315433e+117
-8.6053205e+117
-1.1461417e+118
-7.0829595e+117
-1.5053403e+117
-6.0737347e+117
-7.3600891e+117
-7.5203801e+117
-7.7254652e+117
-7.2893709e+117
-7.2234566e+117
-6.8797484e+117
-7.4449764e+117
-7.5567223e+117
-6.7023067e+117
-6.9267569e+117
-9.4626136e+117
-2.1019614e+117
-5.5381702e+117
-7.439673e+117
-6.0084047e+116
-6.2974668e+117
-6.6955175e+117
-6.5755559e+117
-6.5703513e+117
-6.7761714e+117
-6.7700147e+117
-6.5763358e+117
-6.5867948e+117
-6.78874e+117
-6.7747092e+117
-6.9977328e+117
-6.9479688e+117
-7.136111e+117
-7.1425818e+117
-6.9563964e+117
-6.9505493e+117
-7.1376009e+117
-7.1534348e+117
-6.9578213e+117
-6.9783542e+117
-7.1769614e+117
-7.1915246e+117
-6.9959398e+117
-7.0166385e+117
-7.2182003e+117
-7.2379569e+117
-7.0352472e+117
-7.2010725e+117
-7.252598e+117
-7.2522409e+117
-7.2321487e+117
-7.8880705e+117
-7.169288e+117
-7.414094e+117
-7.3884286e+117
-7.3988391e+117
-7.1465079e+117
-7.2320947e+117
-6.9701163e+117
-7.2451103e+117
-7.2418589e+117
-6.6391799e+117
-6.6114866e+117
-7.1021448e+117
-7.2474632e+117
-7.2684925e+117
-8.6418002e+117
-7.2033908e+117
-7.3610176e+117
-9.2302624e+117
-7.4083573e+117
-1.7432918e+118
-7.4613875e+117
-7.3619855e+117
-7.3088435e+117
-7.2498049e+117
-7.3111998e+117
-7.4099975e+117
-5.565627e+116
-4.5969304e+117
-7.3589076e+117
-7.3507746e+117
-7.040012e+117
-7.9905395e+117
-7.5164942e+117
-6.8730402e+117
-6.8157951e+117
-7.6894182e+117
-7.5451511e+117
-1.6596781e+117
-3.3469557e+116
-8.0064682e+116
-5.8005247e+116
-6.7377334e+117
-6.497137e+117
-7.4684498e+117
-6.0761299e+117
-7.3278679e+117
-6.9587121e+117
-7.2585191e+117
-7.9774092e+117
-2.8556881e+117
-6.4027263e+117
-6.9309696e+117
-1.3391918e+117
-5.3933398e+116
-1.287214e+117
-7.72652e+116
-1.1656842e+117
-6.8514156e+117
-6.7444375e+117
-6.9057061e+117
-6.9348863e+117
-6.7645814e+117
-6.5926528e+117
-6.6113258e+117
-6.6642276e+117
-6.6468934e+117
-6.9795098e+117
-6.7706285e+117
-6.9506758e+117
-6.7917977e+117
-7.1039166e+117
-7.0193376e+117
-7.1679481e+117
-7.1493311e+117
-7.024655e+117
-7.0182819e+117
-7.109338e+117
-7.1269765e+117
-7.0525249e+117
-7.0993603e+117
-7.1638975e+117
-7.2175944e+117
-7.1353693e+117
-7.2990168e+117
-7.1495382e+117
-7.2606025e+117
-7.1561793e+117
-7.4152179e+117
-7.3389071e+117
-7.4603884e+117
-7.4830492e+117
-7.3278024e+117
-7.4411126e+117
-7.2713167e+117
-7.0581378e+117
-7.522418e+117
-7.2869426e+117
-7.4322231e+117
-7.2780453e+117
-7.250209e+117
-7.141877e+117
-7.2128636e+117
-7.030281e+117
-6.5421004e+117
-7.0879684e+117
-7.6565998e+117
-7.1096124e+117
-6.3725022e+117
-6.9011165e+117
-5.6453091e+117
-6.7743454e+117
-6.1024947e+117
-4.8300369e+117
-7.0794788e+117
-5.7343987e+116
-4.656454e+117
-5.9392137e+117
-5.4618023e+117
-7.1200689e+117
-6.3413237e+117
-4.6356632e+117
-6.886253e+117
-1.0366004e+118
-6.9647764e+117
-6.3211852e+117
-4.8684068e+117
-3.3532794e+117
-7.1805267e+117
-2.2638406e+116
-5.9572889e+117
-4.7205681e+117
-4.9649318e+117
-6.5523819e+117
-5.1397368e+117
-1.0317077e+117
-5.2965834e+116
-7.2114789e+117
-5.8383202e+117
-1.9330147e+117
-9.5312799e+117
-7.0761155e+117
-7.241445e+117
-6.9582363e+117
-7.5029333e+117
-7.337583e+117
-7.4873799e+117
-7.4886417e+117
-7.3360085e+117
-7.3319346e+117
-6.8518508e+117
-6.3431388e+117
-7.186345e+117
-5.8795964e+117
-6.7653512e+117
-7.0207616e+117
-6.4502461e+117
-8.8453614e+117
-1.2112772e+118
-7.0134043e+117
-7.2879462e+117
-7.3868993e+117
-7.587276e+117
-7.2999883e+117
-7.3011017e+117
-7.0879665e+117
-7.2768874e+117
-6.6406059e+117
-6.6403342e+117
-7.3541713e+117
-1.5983441e+117
-2.0486001e+117
-6.5421546e+117
-6.9514849e+117
-9.9001069e+117
-7.1317731e+116
-5.4434367e+117
-6.2772148e+117
-6.3732079e+117
-6.1555378e+117
-6.3757053e+117
-6.1587608e+117
-6.6449669e+117
-6.5593168e+117
-6.542115e+117
-6.7623599e+117
-6.7513508e+117
-6.5668182e+117
-6.5599763e+117
-6.761451e+117
-6.7484697e+117
-6.5769731e+117
-6.5874924e+117
-6.7911346e+117
-6.7760062e+117
-6.8999177e+117
-6.8829648e+117
-7.0689279e+117
-7.1060467e+117
-6.9135898e+117
-6.9459901e+117
-7.1368456e+117
-7.1374449e+117
-6.9533756e+117
-6.9525522e+117
-7.1383259e+117
-7.1556004e+117
-6.9602347e+117
-6.9789266e+117
-7.1777076e+117
-7.1923403e+117
-6.9966029e+117
-7.1070384e+117
-7.222932e+117
-7.0872488e+117
-7.1382495e+117
-7.19391e+117
-7.2930517e+117
-7.2348951e+117
-7.1483981e+117
-7.3225233e+117
-6.7496621e+117
-7.2553312e+117
-7.2187967e+117
-7.6701806e+117
-7.3084636e+117
-6.464735e+117
-7.4708859e+117
-7.0216542e+117
-7.3839058e+117
-7.3391971e+117
-7.1221003e+117
-8.3237605e+117
-7.2309158e+117
-6.8909913e+117
-7.2438449e+117
-7.2417629e+117
-1.5066495e+117
-7.1696828e+117
-6.7327389e+117
-7.0650837e+117
-7.2195242e+117
-7.2559689e+117
-8.8167939e+117
-7.2194765e+117
-7.7214707e+117
-7.0697955e+117
-9.4329936e+117
-7.5446795e+117
-1.8507044e+118
-8.312809e+117
-7.1023311e+117
-7.370276e+117
-7.3090898e+117
-7.2497593e+117
-7.3099477e+117
-7.4106186e+117
-1.6832463e+117
-6.8683275e+117
-8.0381426e+117
-6.8648371e+117
-7.4391955e+117
-6.5894273e+117
-7.7351357e+117
-3.5878241e+116
-6.7311084e+117
-6.7901988e+117
-6.440597e+117
-7.3592189e+117
-7.4237994e+117
-6.9479654e+117
-1.7261998e+117
-2.4905941e+117
-7.506681e+117
-6.8151025e+117
-6.7064137e+117
-6.8741276e+117
-6.8896612e+117
-6.7271367e+117
-6.5772412e+117
-6.5605701e+117
-6.6314188e+117
-6.6152605e+117
-6.7325207e+117
-6.5678057e+117
-6.8826336e+117
-6.9163619e+117
-6.755043e+117
-6.583625e+117
-6.9756949e+117
-6.7714412e+117
-6.9510859e+117
-6.7912066e+117
-7.0720215e+117
-7.1703038e+117
-7.0022564e+117
-7.1729468e+117
-7.0111181e+117
-7.0055275e+117
-7.1497579e+117
-7.1266406e+117
-7.0071131e+117
-7.0192534e+117
-7.1099989e+117
-7.1256104e+117
-7.0531574e+117
-7.0994521e+117
-7.1638077e+117
-7.2174067e+117
-7.1350333e+117
-7.4384282e+117
-7.3335816e+117
-7.5432775e+117
-7.4934558e+117
-7.3300791e+117
-6.8792895e+117
-7.3530515e+117
-7.3706059e+117
-7.236159e+117
-7.3210254e+117
-7.4087666e+117
-7.3881417e+117
-7.4732827e+117
-7.5581384e+117
-7.3185989e+117
-6.9942074e+117
-6.7212213e+117
-6.0029158e+117
-7.1367686e+117
-7.293531e+117
-7.4440064e+117
-7.3137197e+117
-6.8561546e+117
-7.2572895e+117
-7.0466596e+117
-6.5273585e+117
-7.2164718e+117
-1.2335706e+117
-4.594204e+117
-2.809961e+117
-2.1908087e+117
-7.1089087e+117
-6.4278573e+117
-5.6182485e+117
-6.8995299e+117
-5.4929908e+117
-6.7718456e+117
-6.0927923e+117
-4.9600092e+117
-3.6079967e+117
-7.0783393e+117
-2.3833612e+116
-4.6044291e+117
-5.9171899e+117
-5.4145085e+117
-6.3352274e+117
-4.9988228e+117
-4.7100938e+117
-5.7039972e+117
-6.3196602e+117
-4.7505877e+117
-4.3650115e+117
-3.19766e+117
-5.1309495e+117
-3.3624671e+117
-3.8554742e+116
-5.7661578e+117
-3.2837463e+117
-6.3182679e+116
-7.0470184e+117
-7.308959e+117
-6.8989753e+117
-7.5286602e+117
-7.3742856e+117
-7.2206209e+117
-6.9892316e+117
-7.1369206e+117
-7.0734467e+117
-6.9032397e+117
-2.0214267e+117
-6.6489392e+117
-1.1655623e+117
-1.3882914e+117
-5.8539697e+117
-6.8647194e+117
-7.0428876e+117
-6.4251065e+117
-6.9353758e+117
-7.1519731e+117
-7.0907163e+117
-7.1224472e+117
-7.2979483e+117
-7.3701424e+117
-7.0638272e+117
-7.3803025e+117
-6.9552663e+117
-7.0718388e+117
-1.6646918e+117
-1.5990768e+117
-9.2593911e+117
-6.3197776e+117
-7.4502846e+117
-3.618871e+116
-5.8988343e+116
-6.5414562e+117
-6.2391695e+117
-6.130195e+117
-6.1451708e+117
-6.3608162e+117
-6.3425235e+117
-6.3679302e+117
-6.1579717e+117
-6.3667942e+117
-6.1573971e+117
-6.5701136e+117
-6.5190919e+117
-6.4905618e+117
-6.7241991e+117
-6.6958688e+117
-6.5565949e+117
-6.5421991e+117
-6.7454821e+117
-6.7381966e+117
-6.5671657e+117
-6.560749e+117
-6.7616219e+117
-6.7502755e+117
-6.5770966e+117
-6.5875978e+117
-6.7914586e+117
-6.7762783e+117
-6.8002173e+117
-6.7936826e+117
-6.9952132e+117
-7.049595e+117
-6.854852e+117
-6.8841383e+117
-7.0669197e+117
-7.1054278e+117
-6.9201298e+117
-6.9540497e+117
-7.1516611e+117
-7.1434163e+117
-6.9543954e+117
-6.9530399e+117
-7.1387501e+117
-7.1561745e+117
-6.9607308e+117
-6.8816726e+117
-6.9586087e+117
-7.0039911e+117
-7.0829767e+117
-7.0752925e+117
-6.985718e+117
-7.096614e+117
-7.1590245e+117
-7.0577304e+117
-6.9365605e+117
-6.7768184e+117
-7.1468153e+117
-7.1951999e+117
-7.2464709e+117
-7.2264284e+117
-7.2032979e+117
-7.1626966e+117
-6.6423706e+117
-6.8461152e+117
-6.2946819e+117
-7.2568408e+117
-7.2041403e+117
-2.3468957e+117
-6.4104298e+117
-6.9104754e+117
-6.7622602e+117
-5.017289e+117
-7.3241864e+117
-1.8531653e+117
-7.354393e+117
-7.2128913e+117
-7.1798636e+117
-7.0277873e+117
-8.4856252e+117
-7.2399725e+117
-6.890026e+117
-7.244039e+117
-7.2416019e+117
-4.1627093e+116
-7.24931e+117
-6.7405e+117
-6.6190673e+117
-6.9842009e+117
-7.2162695e+117
-7.2550142e+117
-7.7608042e+117
-6.5655307e+117
-6.8621455e+117
-7.5573234e+117
-8.4074454e+117
-7.0136894e+117
-7.0428735e+117
-7.3681011e+117
-5.0446466e+116
-9.4204678e+116
-6.8534624e+117
-7.5590397e+117
-2.4682855e+117
-6.5776201e+117
-6.814587e+117
-6.8358562e+117
-7.479074e+117
-7.4400056e+117
-6.8588521e+117
-6.7834804e+117
-6.6712244e+117
-6.8462248e+117
-6.8610509e+117
-6.6871636e+117
-6.5438821e+117
-6.5274885e+117
-6.5990383e+117
-6.5826397e+117
-6.6873988e+117
-6.5309348e+117
-6.8507904e+117
-6.8663743e+117
-6.7112309e+117
-6.5510215e+117
-6.3595254e+117
-6.3435108e+117
-6.7314745e+117
-6.5629856e+117
-6.8832014e+117
-6.9171637e+117
-6.7560618e+117
-6.5768823e+117
-6.975737e+117
-6.771464e+117
-6.9512711e+117
-6.7912794e+117
-7.0392752e+117
-6.9771354e+117
-7.1563399e+117
-7.1619415e+117
-6.9899031e+117
-7.1617116e+117
-6.9990834e+117
-7.1676072e+117
-7.0037126e+117
-7.0070819e+117
-7.1534342e+117
-7.1301893e+117
-7.0084886e+117
-7.0195284e+117
-7.1101358e+117
-7.1255297e+117
-7.0533667e+117
-7.3570322e+117
-7.3427884e+117
-7.6001285e+117
-7.5425142e+117
-7.3314212e+117
-7.2380882e+117
-7.6237004e+117
-7.5532865e+117
-7.4135767e+117
-7.3302759e+117
-7.4749743e+117
-7.764318e+117
-7.4178632e+117
-7.3181151e+117
-7.3198503e+117
-4.5912125e+117
-6.9458396e+117
-6.5121712e+117
-6.6266899e+117
-7.3256942e+117
-7.2178165e+117
-7.4145853e+117
-6.7183589e+117
-7.4843958e+117
-7.520798e+117
-7.1442408e+117
-7.3273288e+117
-1.554038e+117
-6.6074882e+117
-5.6487857e+117
-1.9103237e+117
-7.2943024e+117
-7.4452102e+117
-7.5304958e+117
-6.6371135e+117
-7.2594199e+117
-7.2578001e+117
-7.2602405e+117
-6.428336e+117
-5.6807992e+117
-7.2169422e+117
-1.8656404e+116
-4.4563564e+117
-1.1711826e+117
-7.8112394e+116
-6.4315985e+117
-5.2989943e+117
-5.4299318e+117
-5.4852817e+117
-6.0905696e+117
-5.0121018e+117
-4.8960148e+117
-3.5283388e+117
-5.0282826e+117
-6.6914667e+117
-4.7432996e+117
-4.7343661e+117
-1.2807244e+117
-4.3370676e+117
-3.5153383e+117
-3.1723336e+117
-3.3612989e+117
-3.0279589e+117
-6.9578349e+117
-7.1666093e+117
-7.3644631e+117
-7.329768e+117
-7.1375137e+117
-7.2575624e+117
-4.6764819e+117
-6.7447225e+117
-6.6954258e+117
-6.2798193e+117
-6.8018821e+117
-1.8862595e+117
-6.4790103e+117
-6.6152181e+117
-6.5508438e+116
-6.6412751e+117
-3.4248657e+116
-2.0751306e+116
-6.85224e+117
-6.949774e+117
-7.0357988e+117
-6.6505692e+117
-6.9411252e+117
-7.0527741e+117
-6.5706788e+117
-6.8426924e+117
-7.0825061e+117
-7.0405258e+117
-7.4308158e+117
-2.6913875e+117
-6.2246944e+117
-7.0698241e+117
-4.3393651e+116
-4.5931074e+116
-9.6861813e+117
-6.292924e+117
-6.0864403e+117
-6.2952643e+117
-6.3243819e+117
-6.113433e+117
-6.1289516e+117
-6.1495114e+117
-6.3620325e+117
-6.339974e+117
-6.3672457e+117
-6.1586842e+117
-6.3676659e+117
-6.1589442e+117
-6.4897009e+117
-6.4527728e+117
-6.4111165e+117
-6.6618062e+117
-6.6066189e+117
-6.5046502e+117
-6.4835013e+117
-6.7048075e+117
-6.6845636e+117
-6.5556884e+117
-6.5403596e+117
-6.7428605e+117
-6.7311481e+117
-6.567292e+117
-6.5608837e+117
-6.7618463e+117
-6.7505937e+117
-6.6881615e+117
-6.6754318e+117
-6.8473841e+117
-6.9186512e+117
-6.7360091e+117
-6.7990257e+117
-7.0062237e+117
-7.0605799e+117
-6.8627051e+117
-6.8819782e+117
-7.0738913e+117
-7.1153559e+117
-6.9210404e+117
-6.9549377e+117
-7.1528296e+117
-7.1440002e+117
-6.9547062e+117
-6.7581689e+117
-6.8123889e+117
-6.8880197e+117
-6.9109884e+117
-6.7624297e+117
-6.9417223e+117
-6.7990752e+117
-6.7697072e+117
-6.8902219e+117
-6.7308579e+117
-6.5280354e+117
-6.6250811e+117
-7.0888286e+117
-6.631999e+117
-7.1544022e+117
-6.9959926e+117
-7.0854973e+117
-7.1242303e+117
-7.0588893e+117
-6.9699078e+117
-6.9435279e+117
-7.1501668e+117
-7.188436e+117
-7.0477979e+117
-7.1975502e+117
-6.695683e+117
-7.1035534e+117
-7.2201747e+117
-6.7888768e+117
-6.7459366e+117
-6.6616735e+117
-6.2563585e+117
-7.2571843e+117
-7.2031643e+117
-8.2242435e+116
-6.0257996e+117
-5.8586143e+117
-6.8323876e+117
-3.5761815e+117
-6.3395856e+117
-4.869516e+117
-7.2421683e+117
-5.490055e+116
-7.3517297e+117
-7.2040448e+117
-7.1865134e+117
-7.0012658e+117
-6.9847155e+117
-7.2384066e+117
-6.7503522e+117
-6.5661501e+117
-6.2496083e+117
-6.9748205e+117
-6.5161872e+117
-2.4080573e+117
-6.8383663e+117
-7.0141874e+117
-3.7931939e+117
-7.0267524e+117
-2.0462637e+116
-9.839386e+116
-1.1204247e+117
-2.0525564e+117
-7.6585851e+116
-6.7454299e+117
-6.8351389e+117
-6.6441772e+117
-6.822689e+117
-6.6572699e+117
-6.5113785e+117
-6.4949732e+117
-6.5485726e+117
-6.5657559e+117
-6.654346e+117
-6.4946764e+117
-6.8297701e+117
-6.8409894e+117
-6.6691841e+117
-6.5123126e+117
-6.3288646e+117
-6.313134e+117
-6.6846587e+117
-6.5156342e+117
-6.322729e+117
-6.8496604e+117
-6.8653174e+117
-6.5384133e+117
-6.7084341e+117
-6.3387771e+117
-6.7313765e+117
-6.5603411e+117
-6.8833683e+117
-6.9173561e+117
-6.7561473e+117
-6.577331e+117
-6.9807504e+117
-6.9466217e+117
-7.1322257e+117
-7.1453045e+117
-6.9642078e+117
-6.9811317e+117
-7.1583732e+117
-7.1636184e+117
-6.9910141e+117
-7.1672329e+117
-7.0017637e+117
-7.1732584e+117
-7.0057286e+117
-7.0074346e+117
-7.1540308e+117
-7.1306566e+117
-7.0087831e+117
-7.2409816e+117
-7.2902296e+117
-7.4891039e+117
-7.5896522e+117
-7.3476535e+117
-7.485423e+117
-7.4792249e+117
-7.753573e+117
-7.1830173e+117
-7.3751889e+117
-7.574754e+117
-7.7709139e+117
-7.5134862e+117
-7.6931537e+117
-7.3453203e+117
-6.2915775e+117
-7.3873561e+117
-7.2644687e+117
-7.0071475e+117
-7.3395965e+117
-7.4197304e+117
-7.4755557e+117
-7.3725262e+117
-7.4205237e+117
-7.1684947e+117
-5.5139787e+117
-7.3258114e+117
-1.297041e+117
-6.8926289e+117
-6.8413554e+117
-6.4148818e+117
-7.326305e+117
-7.2783355e+117
-5.7511655e+117
-7.4150992e+117
-1.493643e+117
-7.4854691e+117
-7.5648026e+117
-6.8911201e+117
-1.2376974e+117
-7.3283197e+117
-4.032177e+116
-6.6029469e+117
-5.6455532e+117
-5.877035e+116
-7.5464284e+117
-6.2343375e+117
-5.9919484e+117
-7.3086794e+117
-7.276507e+117
-6.3238431e+117
-6.1930468e+117
-5.6111876e+117
-5.2733862e+117
-3.0409228e+117
-5.4091877e+117
-5.0193454e+117
-4.8444137e+117
-4.8942514e+117
-6.7425531e+117
-6.8533104e+117
-8.0965327e+116
-6.2985646e+116
-3.357573e+117
-3.1254044e+117
-6.8726147e+117
-7.075453e+117
-6.931468e+117
-6.2471176e+117
-6.5935568e+117
-7.1560244e+117
-7.1687656e+117
-6.9280782e+117
-6.7179723e+117
-6.7592144e+117
-1.3179948e+117
-1.1513873e+117
-1.5101841e+117
-6.2840223e+117
-6.7878966e+117
-5.7035218e+116
-6.4345251e+117
-6.5901464e+117
-6.7493758e+117
-6.8450638e+117
-6.8121693e+117
-6.7622135e+117
-6.8855118e+117
-6.8386521e+117
-6.6652245e+117
-5.1440072e+117
-6.4811252e+117
-6.5460252e+117
-7.4788677e+117
-7.0532692e+117
-7.1370704e+117
-7.1901744e+117
-7.5005835e+117
-9.9371348e+116
-6.1620033e+117
-7.0694136e+117
-6.2282934e+117
-6.0292918e+117
-6.0587737e+117
-6.2613711e+117
-6.0843766e+117
-6.2849638e+117
-6.3135119e+117
-6.1148359e+117
-6.1315611e+117
-6.1515508e+117
-6.3616593e+117
-6.344898e+117
-6.3672061e+117
-6.1586935e+117
-6.3677082e+117
-6.1590097e+117
-6.4047936e+117
-6.3714364e+117
-6.3295108e+117
-6.5627879e+117
-6.5106343e+117
-6.4416832e+117
-6.4049845e+117
-6.6453259e+117
-6.5972186e+117
-6.5035709e+117
-6.4781479e+117
-6.7022555e+117
-6.6782023e+117
-6.5557219e+117
-6.5401992e+117
-6.7428699e+117
-6.7311195e+117
-6.5953881e+117
-6.5584598e+117
-6.6873518e+117
-6.7717914e+117
-6.618476e+117
-6.674902e+117
-6.8485112e+117
-6.9225007e+117
-6.7365274e+117
-6.8024164e+117
-7.0122653e+117
-7.0600669e+117
-6.8624317e+117
-6.8820202e+117
-7.0746478e+117
-7.1163891e+117
-6.9213087e+117
-6.7426012e+117
-6.7599747e+117
-6.7507266e+117
-6.646185e+117
-6.5184221e+117
-6.6715615e+117
-6.5466441e+117
-6.6389687e+117
-6.6959577e+117
-6.6854014e+117
-6.7811722e+117
-6.7245737e+117
-6.9677767e+117
-6.5160613e+117
-6.7313466e+117
-7.0248135e+117
-6.8413879e+117
-6.7772972e+117
-6.9074351e+117
-6.7959192e+117
-6.7298713e+117
-6.6594361e+117
-6.6332851e+117
-7.0270936e+117
-6.4856765e+117
-6.8392043e+117
-7.032801e+117
-6.9998881e+117
-7.0805407e+117
-7.0999959e+117
-7.0619149e+117
-6.9758044e+117
-6.9737647e+117
-7.1506104e+117
-7.1882394e+117
-6.5780856e+117
-6.8433737e+117
-7.1928444e+117
-6.6487082e+117
-6.7439807e+117
-7.0328965e+117
-7.2215823e+117
-6.8016509e+117
-6.7675197e+117
-6.6491268e+117
-6.0018003e+117
-8.1110947e+117
-5.9219189e+117
-6.8256175e+117
-1.6678657e+117
-1.4560506e+117
-5.8624929e+117
-7.2318505e+117
-6.9997274e+117
-6.8907039e+117
-6.9793281e+117
-6.5759396e+117
-6.4076759e+117
-6.2068656e+117
-1.1290971e+117
-2.1063333e+117
-3.3044401e+117
-3.3765791e+117
-2.3963764e+116
-6.6941147e+117
-6.6067909e+117
-6.7879777e+117
-6.8080149e+117
-6.6260998e+117
-6.4584588e+117
-6.478033e+117
-6.531803e+117
-6.5118071e+117
-6.8196516e+117
-6.6281317e+117
-6.4636166e+117
-6.8076464e+117
-6.6412517e+117
-6.4796238e+117
-6.298064e+117
-6.2821869e+117
-6.6511122e+117
-6.4762293e+117
-6.2902895e+117
-6.8287527e+117
-6.8389894e+117
-6.4935073e+117
-6.6653849e+117
-6.3065981e+117
-6.684454e+117
-6.5131952e+117
-6.3199631e+117
-6.849691e+117
-6.8653637e+117
-6.5352497e+117
-6.3384262e+117
-6.7083212e+117
-6.5601985e+117
-6.5773396e+117
-6.8980734e+117
-6.9018432e+117
-7.087207e+117
-7.1183452e+117
-6.9295242e+117
-6.9536184e+117
-7.1472094e+117
-7.1533311e+117
-6.9702174e+117
-6.9841481e+117
-7.1653693e+117
-7.1694477e+117
-6.9934716e+117
-7.168006e+117
-7.0022173e+117
-7.1739888e+117
-7.0061253e+117
-7.0412466e+117
-7.0876739e+117
-7.0938985e+117
-7.2502156e+117
-7.2179715e+117
-6.7911956e+117
-7.0166314e+117
-6.8769093e+117
-6.3093643e+117
-7.3430787e+117
-7.5307901e+117
-7.3777478e+117
-7.5876659e+117
-7.4509215e+117
-7.4070446e+117
-7.0647166e+117
-7.0538143e+117
-7.2900411e+117
-6.7891509e+117
-7.3873737e+117
-7.5773437e+117
-7.5436428e+117
-7.5652752e+117
-7.5146954e+117
-7.5563027e+117
-7.3853564e+117
-7.3559017e+117
-4.9959425e+117
-1.6452312e+117
-7.2541984e+117
-7.0168715e+117
-7.3405937e+117
-7.4326926e+117
-6.9118831e+117
-7.4757704e+117
-2.0330606e+117
-7.420842e+117
-7.3461436e+117
-6.0528849e+117
-3.4365815e+117
-7.3265928e+117
-5.5061699e+116
-6.8952903e+117
-6.9656041e+117
-6.3947173e+117
-7.2813154e+117
-5.7876728e+117
-1.103002e+117
-3.7665736e+116
-7.5648749e+117
-6.7562156e+117
-1.4856956e+117
-1.4556813e+116
-6.2030919e+117
-2.6283102e+117
-5.9383706e+117
-6.3016165e+117
-2.1952312e+117
-6.1765928e+117
-2.5441106e+117
-2.7375409e+117
-4.8094447e+117
-4.7990519e+117
-6.8442349e+117
-2.7616184e+116
-6.7984235e+117
-6.8784266e+117
-6.7277628e+117
-6.4615628e+117
-6.8152941e+117
-6.8305775e+117
-6.1146392e+117
-4.2306538e+117
-5.3514538e+117
-6.8159781e+117
-1.6958386e+117
-1.3329912e+117
-6.509852e+117
-6.4751748e+117
-5.4570665e+116
-1.831069e+116
-4.6955989e+116
-6.331223e+117
-6.6605141e+117
-6.7694296e+117
-6.7352134e+117
-6.6548665e+117
-6.7859246e+117
-7.2989831e+117
-6.3926324e+117
-6.1328332e+117
-6.6681339e+117
-6.6818418e+117
-1.3568167e+117
-1.5741811e+117
-6.3697846e+117
-5.8704489e+117
-7.624814e+117
-7.0924006e+117
-7.1446995e+117
-7.2304633e+117
-5.3322157e+117
-5.6761203e+117
-5.6950288e+117
-5.9037768e+117
-5.8791599e+117
-6.0539186e+117
-6.1549989e+117
-5.9645023e+117
-5.9992132e+117
-6.1927724e+117
-6.2152562e+117
-6.0233504e+117
-6.0558431e+117
-6.2480687e+117
-6.0873209e+117
-6.2841512e+117
-6.3128298e+117
-6.1146798e+117
-6.1318133e+117
-6.1516596e+117
-6.3615978e+117
-6.3449179e+117
-6.3298807e+117
-6.288235e+117
-6.2511444e+117
-6.4630483e+117
-6.4167446e+117
-6.3643666e+117
-6.3242001e+117
-6.5495229e+117
-6.4997248e+117
-6.4423817e+117
-6.4029827e+117
-6.6447991e+117
-6.5974099e+117
-6.5034616e+117
-6.4781111e+117
-6.7021716e+117
-6.6779924e+117
-6.5362326e+117
-6.4754382e+117
-6.5853523e+117
-6.6298858e+117
-6.5148462e+117
-6.5518544e+117
-6.6817019e+117
-6.7694935e+117
-6.6136106e+117
-6.6785357e+117
-6.854108e+117
-6.9289202e+117
-6.7397074e+117
-6.8029706e+117
-7.0129948e+117
-7.0603056e+117
-6.8627044e+117
-6.7931544e+117
-6.7088024e+117
-6.738892e+117
-6.6495246e+117
-6.6724836e+117
-6.5851771e+117
-6.6808088e+117
-6.6799888e+117
-6.6421079e+117
-6.3863287e+117
-6.535303e+117
-6.411898e+117
-6.5280352e+117
-6.1569036e+117
-6.2930721e+117
-6.6927375e+117
-6.5245351e+117
-6.6161267e+117
-6.6863058e+117
-6.7006803e+117
-6.8288315e+117
-6.5551477e+117
-6.7421477e+117
-7.4044034e+117
-6.5042254e+117
-6.2912664e+117
-6.7960767e+117
-7.0367358e+117
-6.8512735e+117
-6.7807466e+117
-6.9119662e+117
-6.8054193e+117
-6.7707372e+117
-6.5385139e+117
-6.6464283e+117
-6.6377455e+117
-6.9856299e+117
-6.4716074e+117
-2.5418323e+117
-6.2720756e+117
-7.0182842e+117
-7.000387e+117
-7.080281e+117
-7.0978998e+117
-7.0622653e+117
-6.3153209e+117
-6.7298439e+117
-6.8230347e+117
-6.6473258e+117
-6.7314338e+117
-6.5927417e+117
-7.026083e+117
-6.8032553e+117
-8.4025484e+117
-3.3273417e+117
-5.9161808e+117
-4.2955696e+116
-8.8042445e+116
-5.8244751e+117
-6.8764571e+117
-6.8728585e+117
-6.4417782e+117
-6.4055836e+117
-8.550408e+116
-1.9687316e+117
-6.6226959e+117
-6.5535608e+117
-6.7384636e+117
-6.767877e+117
-6.5827883e+117
-6.4360102e+117
-6.4092474e+117
-6.489558e+117
-6.4629478e+117
-6.5961267e+117
-6.4261881e+117
-6.7759497e+117
-6.7939266e+117
-6.6130083e+117
-6.4463242e+117
-6.2474598e+117
-6.2665904e+117
-6.8182368e+117
-6.6249445e+117
-6.4455037e+117
-6.2599528e+117
-6.8063296e+117
-6.4609666e+117
-6.6385257e+117
-6.2756539e+117
-6.6509035e+117
-6.4737757e+117
-6.2817967e+117
-6.828804e+117
-6.8389753e+117
-6.4909342e+117
-6.2994108e+117
-6.6651528e+117
-6.5130172e+117
-6.3190079e+117
-6.5352414e+117
-6.3379659e+117
-6.7963829e+117
-6.7931849e+117
-6.9453122e+117
-7.0412507e+117
-6.8570754e+117
-6.917411e+117
-7.1201983e+117
-7.1515251e+117
-6.9444777e+117
-6.9585209e+117
-7.1573762e+117
-7.1616674e+117
-6.9737001e+117
-6.9846182e+117
-7.1662272e+117
-7.1702273e+117
-6.9939276e+117
-6.7666242e+117
-6.813982e+117
-6.5995668e+117
-6.8785049e+117
-6.9462667e+117
-6.5934354e+117
-6.2552753e+117
-6.6637595e+117
-6.9157208e+117
-7.0751374e+117
-7.0607339e+117
-6.6488694e+117
-7.2715577e+117
-6.8624112e+117
-7.236464e+117
-5.9626199e+117
-5.9798342e+117
-5.512449e+117
-3.9918335e+117
-7.3535666e+117
-7.6005839e+117
-7.0361227e+117
-6.137625e+117
-7.3643837e+117
-7.5928141e+117
-6.6883015e+117
-7.4111066e+117
-1.5610602e+117
-7.0942695e+117
-2.0760936e+117
-5.8370605e+117
-7.388659e+117
-7.5774614e+117
-7.5486803e+117
-7.153987e+117
-2.5349325e+117
-7.5149537e+117
-7.5060258e+117
-7.2846365e+117
-7.8845191e+117
-7.3570605e+117
-4.8810464e+117
-3.7428559e+116
-7.2587961e+117
-7.0261028e+117
-7.4328721e+117
-6.5628444e+117
-6.3724781e+117
-6.17647e+116
-7.3616847e+117
-6.1539217e+117
-5.413498e+117
-3.3034974e+117
-5.7818793e+117
-1.4435257e+117
-3.5951381e+116
-6.7351185e+117
7.3385789e+116
-4.0401939e+116
-2.4625121e+117
-1.4624302e+117
-1.7053751e+117
-9.7167164e+116
-1.7696842e+117
-4.7617498e+117
-6.7032139e+117
-6.8252384e+117
-6.1392606e+117
-6.4087348e+117
-6.5332257e+117
-6.4845157e+117
-6.0330089e+117
-4.9064906e+117
-5.8932074e+117
-6.1774411e+117
-6.3663116e+117
-8.5961755e+117
-7.4487409e+117
-1.4004935e+117
-4.8970222e+116
-2.1033604e+116
-6.4942602e+117
-6.458705e+117
-6.5952578e+117
-6.6155426e+117
-6.5198897e+117
-6.7731425e+117
-6.6410707e+117
-6.6642249e+117
-6.3511325e+117
-6.2545486e+117
-6.4238708e+117
-7.0212931e+117
-5.9489233e+117
-5.8801308e+117
-6.8427181e+117
-6.6376818e+117
-2.8698441e+116
-7.5110048e+116
-6.3709753e+117
-5.8137338e+117
-5.6660282e+117
-5.3023174e+117
-4.9240177e+117
-5.2333021e+117
-5.43284e+117
-5.4514713e+117
-5.2462276e+117
-5.629456e+117
-5.825507e+117
-5.8567129e+117
-5.6557859e+117
-5.2657954e+117
-5.4689892e+117
-5.4805658e+117
-5.2730459e+117
-5.677312e+117
-5.695688e+117
-5.9033468e+117
-5.8809047e+117
-5.9966843e+117
-6.0862106e+117
-5.9060923e+117
-5.9356062e+117
-6.1191526e+117
-6.1437113e+117
-5.957819e+117
-5.9923708e+117
-6.1805478e+117
-6.2152085e+117
-6.023629e+117
-6.0548224e+117
-6.2487015e+117
-6.0872487e+117
-6.2840454e+117
-6.312869e+117
-6.1148586e+117
-6.2588838e+117
-6.3419401e+117
-6.1845032e+117
-6.379058e+117
-6.2184028e+117
-6.280292e+117
-6.2432973e+117
-6.4492342e+117
-6.4033613e+117
-6.3638718e+117
-6.3247928e+117
-6.5502348e+117
-6.5014673e+117
-6.4424484e+117
-6.4030136e+117
-6.6449847e+117
-6.597572e+117
-6.4744183e+117
-6.4360288e+117
-6.5856222e+117
-6.57278e+117
-6.4513691e+117
-6.4666344e+117
-6.5720814e+117
-6.6166924e+117
-6.5040017e+117
-6.5551076e+117
-6.6858221e+117
-6.7746089e+117
-6.6167448e+117
-6.6790666e+117
-6.8548309e+117
-6.9296688e+117
-6.740233e+117
-6.6630542e+117
-7.1595902e+117
-7.1346154e+117
-6.7990071e+117
-6.9742982e+117
-6.6857548e+117
-6.7410932e+117
-6.734398e+117
-6.7112852e+117
-6.3667571e+117
-6.1924128e+117
-6.5357292e+117
-6.3654097e+117
-6.4067108e+117
-6.417878e+117
-6.5583768e+117
-6.6397932e+117
-6.6686561e+117
-6.6185639e+117
-6.019694e+117
-6.5199302e+117
-6.4060333e+117
-6.1433379e+117
-6.6256513e+117
-5.9216218e+117
-5.818025e+117
-6.1430867e+117
-6.703656e+117
-6.5267726e+117
-6.6173148e+117
-6.6880389e+117
-6.7042356e+117
-6.8340583e+117
-6.0925568e+117
-6.8198039e+117
-6.7466897e+117
-7.4035533e+117
-6.5038363e+117
-6.3053688e+117
-5.8990442e+117
-6.9273445e+117
-7.0381174e+117
-6.8521712e+117
-6.7811699e+117
-6.912561e+117
-6.5266176e+117
-6.693831e+117
-6.7083694e+117
-6.9787957e+117
-9.2808947e+116
-5.2608851e+117
-6.1692358e+117
-7.0137785e+117
-6.2910427e+117
-6.4938431e+117
-6.7495576e+117
-6.7332249e+117
-6.6734497e+117
-6.5787839e+117
-2.7363136e+117
-2.834792e+117
-2.41525e+116
-8.7241678e+116
-6.8605986e+117
-6.4447064e+117
-6.539412e+117
-6.4748937e+117
-6.6484285e+117
-6.6998294e+117
-6.5162137e+117
-6.3752847e+117
-6.3397136e+117
-6.4316881e+117
-6.3968238e+117
-6.5462149e+117
-6.3752803e+117
-6.7321222e+117
-6.7607002e+117
-6.5756446e+117
-6.4031655e+117
-6.2266852e+117
-6.201619e+117
-6.4090928e+117
-6.5941488e+117
-6.221386e+117
-6.7758663e+117
-6.7924874e+117
-6.4280178e+117
-6.6104023e+117
-6.2423723e+117
-6.8182918e+117
-6.6247587e+117
-6.4430827e+117
-6.2496415e+117
-6.806373e+117
-6.4582868e+117
-6.2659255e+117
-6.6383656e+117
-6.4736087e+117
-6.2808679e+117
-6.4907625e+117
-6.2989023e+117
-6.3189699e+117
-6.3379386e+117
-6.6965587e+117
-6.681744e+117
-6.7824456e+117
-6.8618091e+117
-6.7377962e+117
-6.7931709e+117
-6.9434447e+117
-7.0531388e+117
-6.8637151e+117
-6.9187096e+117
-7.1262471e+117
-7.1605142e+117
-6.9487668e+117
-6.9591549e+117
-7.1585492e+117
-7.1626513e+117
-6.9741859e+117
-6.6576986e+117
-5.8188892e+117
-5.7762336e+117
-6.7079926e+117
-6.4739762e+117
-6.8856835e+117
-6.7945348e+117
-6.1482057e+117
-6.1641829e+117
-6.7060614e+117
-6.395489e+117
-6.024927e+117
-6.7904529e+117
-6.4905241e+117
-6.8899758e+117
-5.8556099e+117
-5.2563668e+117
-5.3311536e+117
-6.8347569e+117
-7.0737064e+117
-7.0427029e+117
-6.6098105e+117
-5.6267753e+117
-6.732825e+117
-7.2938328e+117
-5.7709735e+117
-7.2380059e+117
-6.0138618e+117
-5.6403086e+117
-1.1298622e+117
-6.8694011e+116
-7.3548381e+117
-7.6051162e+117
-7.1016792e+117
-5.6805377e+117
-5.6525547e+117
-7.357087e+117
-6.6637637e+117
-7.5931883e+117
-6.3993535e+117
-7.4118494e+117
-3.5430222e+116
-7.1353835e+117
-6.4272503e+116
-5.7554453e+117
-7.5492995e+117
-7.1677892e+117
-6.7120346e+117
-8.4454461e+116
-7.5017391e+117
-7.014312e+117
-8.1832521e+117
-7.9689479e+117
-6.5191227e+117
-2.7231752e+117
-6.3093915e+117
-6.1559216e+117
-2.0786971e+117
-5.3678938e+117
-1.5519673e+117
-1.0048382e+117
4.9535576e+116
1.5125785e+117
-1.9388531e+117
-6.0813171e+116
-6.6443819e+117
-6.7691428e+117
-6.0426218e+117
-6.313512e+117
-6.3139229e+117
-5.9634718e+117
-5.5270268e+117
-5.7253513e+117
-5.9835203e+117
-5.8373732e+117
-1.3073387e+117
-4.5064577e+117
-1.0953026e+117
-1.5146255e+117
-6.4095101e+117
-9.1250614e+117
-7.7332123e+117
-3.5362469e+116
-6.3569637e+117
-6.500677e+117
-6.255857e+117
-6.7306075e+117
-6.1180444e+117
-6.5859839e+117
-6.6759184e+117
-7.0422242e+117
-7.1179704e+117
-6.1754975e+117
-6.3483886e+117
-1.4833698e+117
-6.1565082e+117
-6.2146677e+117
-1.9645452e+117
-5.9272012e+117
-5.869288e+117
-6.864918e+117
-6.6355363e+117
-5.6242867e+117
-5.2736762e+117
-5.5438961e+117
-5.7284176e+117
-5.7542025e+117
-5.5648594e+117
-4.9083661e+117
-5.207686e+117
-5.2203863e+117
-5.4156913e+117
-5.3979287e+117
-5.5816808e+117
-5.768435e+117
-5.7974703e+117
-5.6047599e+117
-4.5661958e+117
-4.86164e+117
-4.8549078e+117
-5.0432085e+117
-5.0528598e+117
-5.2429376e+117
-5.4347521e+117
-5.4535421e+117
-5.2554332e+117
-5.6293658e+117
-5.8258375e+117
-5.8561763e+117
-5.6556609e+117
-5.2658671e+117
-5.4689097e+117
-5.4809557e+117
-5.2734079e+117
-5.6774059e+117
-5.6957513e+117
-5.9034238e+117
-5.88112e+117
-5.9349947e+117
-6.0263482e+117
-5.8543729e+117
-6.0567882e+117
-5.880538e+117
-6.0733582e+117
-5.8981579e+117
-5.9277815e+117
-6.1061124e+117
-6.1427507e+117
-5.956616e+117
-5.9904693e+117
-6.1791357e+117
-6.2152046e+117
-6.023547e+117
-6.0547689e+117
-6.2486677e+117
-6.1765713e+117
-6.1162626e+117
-6.1526473e+117
-6.3105662e+117
-6.2787335e+117
-6.3287199e+117
-6.1765789e+117
-6.3643262e+117
-6.2095658e+117
-6.2812234e+117
-6.2437683e+117
-6.4512934e+117
-6.4056314e+117
-6.3638858e+117
-6.3248952e+117
-6.5504037e+117
-6.5017264e+117
-6.3772968e+117
-6.3742603e+117
-6.5573107e+117
-6.5910415e+117
-6.4176882e+117
-6.4555265e+117
-6.5995674e+117
-6.566131e+117
-6.4481787e+117
-6.4698319e+117
-6.5754608e+117
-6.6198562e+117
-6.5067745e+117
-6.5555491e+117
-6.6863864e+117
-6.775305e+117
-6.6172379e+117
-6.5465656e+117
-7.017806e+117
-6.5269316e+117
-6.5171623e+117
-7.11413e+117
-6.5266357e+117
-6.5296828e+117
-6.6470372e+117
-6.6175259e+117
-6.79196e+117
-6.6074021e+117
-6.7136095e+117
-6.2672235e+117
-6.4826821e+117
-6.6278182e+117
-6.6954523e+117
-6.7337484e+117
-6.7135402e+117
-6.7412378e+117
-6.1555465e+117
-6.0990374e+117
-1.7019008e+117
-6.4779728e+117
-1.9635238e+117
-6.0635051e+117
-6.3356348e+117
-6.2566477e+117
-6.5662509e+117
-6.6449902e+117
-6.6722798e+117
-6.6214112e+117
-6.0016229e+117
-6.5213219e+117
-6.4057788e+117
-5.9402139e+117
-6.0833663e+117
-6.7830169e+117
-5.7001863e+117
-5.0788667e+117
-5.7958162e+117
-6.1431747e+117
-6.7045214e+117
-6.5265541e+117
-6.6173527e+117
-6.6882832e+117
-6.0501258e+117
-3.7459253e+117
-5.8129924e+117
-7.3983119e+117
-6.3201388e+117
-5.4054578e+117
-5.4495802e+117
-6.9359912e+117
-6.7123211e+117
-6.9163817e+117
-6.7318528e+117
-5.1773621e+117
-5.3781554e+117
-6.1618154e+117
-6.4839721e+117
-6.5070624e+117
-6.6811857e+117
-6.6729295e+117
-2.1520991e+117
-2.4146732e+116
-6.4591203e+117
-6.3215083e+117
-6.2638735e+117
-6.3924555e+117
-6.5539033e+117
-6.6020567e+117
-6.4335898e+117
-6.3010063e+117
-6.3599674e+117
-6.4676673e+117
-6.305884e+117
-6.6371359e+117
-6.6889658e+117
-6.508341e+117
-6.3424574e+117
-6.1730038e+117
-6.1417273e+117
-6.5449156e+117
-6.3586054e+117
-6.1727966e+117
-6.7313271e+117
-6.7609488e+117
-6.3859732e+117
-6.574572e+117
-6.1983598e+117
-6.2090403e+117
-6.4068865e+117
-6.5940431e+117
-6.7760215e+117
-6.7925473e+117
-6.4259215e+117
-6.2304868e+117
-6.6102689e+117
-6.4429407e+117
-6.2488038e+117
-6.4581421e+117
-6.2646001e+117
-6.280868e+117
-6.2988938e+117
-6.6107013e+117
-6.5833762e+117
-6.6815312e+117
-6.7422156e+117
-6.6361207e+117
-6.6667717e+117
-6.746493e+117
-6.8401557e+117
-6.7288466e+117
-6.7966637e+117
-6.9465648e+117
-7.0549938e+117
-6.8654701e+117
-6.9191285e+117
-7.1270474e+117
-7.1616344e+117
-6.9494071e+117
-6.6286015e+117
-6.3016899e+117
-6.560679e+117
-5.8746925e+117
-5.7559563e+117
-5.4958576e+117
-5.8794964e+117
-6.3995196e+117
-6.6178897e+117
-4.9759673e+117
-4.9112859e+117
-6.0014142e+117
-6.5967055e+117
-6.447067e+117
-6.4758439e+117
-7.1314583e+117
-6.6803215e+117
-4.8567726e+117
-4.987259e+117
-6.6921135e+117
-6.384903e+117
-5.6483188e+117
-4.9590997e+117
-6.2559223e+117
-6.7634809e+117
-5.5976321e+117
-6.880694e+117
-1.5774051e+117
-4.5764978e+117
-6.1526235e+116
-9.8758212e+117
-7.0737627e+117
-7.0411488e+117
-6.6005814e+117
-5.9046121e+117
-6.5616833e+117
-6.9419206e+117
-5.5294375e+117
-7.2957608e+117
-5.9521976e+117
-7.2382839e+117
-6.0063289e+117
-5.6165147e+117
-3.2203782e+116
-2.7576161e+116
-7.1066798e+117
-5.8134799e+117
-7.4969478e+117
-5.6184728e+117
-7.3553507e+117
-6.5904049e+117
-1.6288492e+117
-6.3865541e+117
-7.1682328e+117
-7.0587838e+117
-6.6757723e+117
-6.9958823e+117
-7.417005e+117
-8.3372027e+117
-2.7381467e+117
-1.6781037e+117
-1.9252771e+117
-9.0468937e+116
-1.1863515e+117
1.2527161e+117
-6.5248727e+117
-6.6335182e+117
-6.6265029e+117
-6.3058251e+117
-7.060686e+117
-6.8435077e+117
-5.1154336e+117
-5.1933073e+117
-4.9565759e+117
-5.0082317e+117
-5.2675934e+117
-5.5021287e+117
-8.7895112e+117
-5.8004793e+117
-3.1950286e+116
-4.5003686e+117
-3.0567872e+116
-5.1230339e+116
-6.2544056e+117
-6.0971659e+117
-6.136858e+117
-6.3865778e+117
-6.3943616e+117
-6.2800909e+117
-5.894473e+117
-1.4038893e+117
-6.237368e+117
-6.4100725e+117
-6.6292921e+117
-6.7331374e+117
-6.8556469e+117
-6.8475049e+117
-6.8817245e+117
-6.8976407e+117
-7.0965698e+116
-4.4824837e+116
-6.154027e+117
-6.2003733e+117
-7.1078336e+116
-5.5796921e+117
-5.6830998e+117
-5.5045091e+117
-5.2469938e+117
-5.5252371e+117
-5.7067462e+117
-4.8941113e+117
-5.3824011e+117
-5.3651503e+117
-5.1808995e+117
-5.1941485e+117
-5.5427782e+117
-5.7197497e+117
-5.7446549e+117
-5.5633017e+117
-4.5600513e+117
-5.0249765e+117
-4.8421208e+117
-4.8490476e+117
-5.0344503e+117
-5.2173655e+117
-5.2300856e+117
-5.4161069e+117
-5.3984462e+117
-5.5814819e+117
-5.7675078e+117
-5.7968128e+117
-5.6044613e+117
-4.521303e+117
-4.6843704e+117
-4.6889484e+117
-4.5236535e+117
-4.8752697e+117
-4.8689108e+117
-5.0509304e+117
-5.0599146e+117
-5.2439773e+117
-5.4348527e+117
-5.4534321e+117
-5.2563759e+117
-5.6293338e+117
-5.8258665e+117
-5.8561994e+117
-5.6556974e+117
-5.2658629e+117
-5.4687806e+117
-5.4808692e+117
-5.273401e+117
-5.8653975e+117
-5.8007366e+117
-5.8281271e+117
-5.996867e+117
-5.9640476e+117
-6.0140897e+117
-5.84678e+117
-6.0432464e+117
-5.8719949e+117
-6.0724696e+117
-5.8965e+117
-5.9259524e+117
-6.1052849e+117
-6.1427187e+117
-5.9565152e+117
-5.9903584e+117
-6.1791057e+117
-6.0918284e+117
-6.0822038e+117
-6.0465741e+117
-6.2417e+117
-6.2057691e+117
-6.103478e+117
-6.1432168e+117
-6.2981635e+117
-6.2690913e+117
-6.3309925e+117
-6.1766678e+117
-6.3664029e+117
-6.2097373e+117
-6.2813249e+117
-6.2438536e+117
-6.4515755e+117
-6.4059032e+117
-6.2935746e+117
-6.2700054e+117
-6.4184712e+117
-6.4955437e+117
-6.3244466e+117
-6.3606383e+117
-6.5492326e+117
-6.6092892e+117
-6.3972708e+117
-6.4580047e+117
-6.604089e+117
-6.5692981e+117
-6.4511197e+117
-6.4702395e+117
-6.5758454e+117
-6.6202827e+117
-6.5071631e+117
-6.4745472e+117
-6.4211487e+117
-6.2527176e+117
-6.4124445e+117
-6.5687234e+117
-6.4946254e+117
-6.449433e+117
-6.4682001e+117
-6.4738078e+117
-6.6830459e+117
-6.0146892e+117
-5.9655316e+117
-6.4089363e+117
-6.8292322e+117
-6.6036205e+117
-6.5291904e+117
-6.5128285e+117
-6.6172896e+117
-6.623551e+117
-5.9518008e+117
-1.0145822e+117
-6.6281748e+117
-1.3393911e+117
-5.6005057e+117
-1.4785083e+117
-6.1497062e+117
-6.5710818e+117
-6.6831183e+117
-6.6832919e+117
-6.711139e+117
-6.7246445e+117
-6.1339851e+117
-5.8759135e+117
-6.1741913e+117
-5.7515588e+116
-6.4656804e+117
-6.9100073e+116
-5.9849804e+117
-5.9288044e+117
-6.3526953e+117
-6.2374185e+117
-6.5665206e+117
-6.6451632e+117
-6.6725417e+117
-6.6215955e+117
-5.9192476e+117
-1.8963798e+117
-5.7511727e+117
-6.7936031e+117
-5.6716406e+117
-1.2696986e+117
-5.0793978e+117
-6.1397683e+117
-1.7135624e+117
-3.4338983e+117
-5.7301158e+117
-5.3686929e+117
-1.5719953e+117
-5.4072746e+117
-6.863728e+117
-6.8140435e+117
-5.3093351e+117
-5.3938496e+117
-6.5003209e+117
-6.6809941e+117
-6.3739663e+117
-6.3114738e+117
-6.4627907e+117
-6.5103105e+117
-6.3532512e+117
-6.2483386e+117
-6.1919784e+117
-6.2291228e+117
-6.2866906e+117
-6.2309652e+117
-6.077596e+117
-6.3835368e+117
-6.5381749e+117
-6.5882791e+117
-6.4254695e+117
-6.2683626e+117
-6.1096371e+117
-6.4670605e+117
-6.2910346e+117
-6.1116341e+117
-6.6378923e+117
-6.6885827e+117
-6.3261392e+117
-6.5072053e+117
-6.143571e+117
-5.9550619e+117
-5.9286384e+117
-6.5448662e+117
-6.3565187e+117
-6.1608918e+117
-6.7314581e+117
-6.7611241e+117
-6.1855326e+117
-6.3829719e+117
-6.5744881e+117
-6.207581e+117
-6.4067263e+117
-6.4258039e+117
-6.2293918e+117
-6.2487837e+117
-6.2645488e+117
-6.4747077e+117
-6.4981934e+117
-6.5675602e+117
-6.6229808e+117
-6.5336566e+117
-6.5592038e+117
-6.6224538e+117
-6.6981564e+117
-6.6170961e+117
-6.6683321e+117
-6.7449322e+117
-6.8407979e+117
-6.7309158e+117
-6.7971805e+117
-6.9471096e+117
-7.0555432e+117
-6.8659057e+117
-6.5248509e+117
-6.4489513e+117
-6.538465e+117
-6.2628921e+117
-6.325763e+117
-6.0648317e+117
-6.1182531e+117
-6.6415178e+117
-6.7729568e+117
-6.2759083e+117
-5.7827532e+117
-6.4483871e+117
-5.1775726e+117
-5.0361116e+117
-5.9226556e+117
-3.9828387e+117
-4.993042e+117
-6.3337318e+117
-6.5204087e+117
-4.9720974e+117
-4.2347426e+117
-4.6712259e+117
-6.1398618e+117
-6.574285e+117
-6.4171927e+117
-5.6202146e+117
-6.4045198e+117
-9.7223328e+117
-6.6513603e+117
-3.2714572e+117
-1.0124524e+117
-6.6909095e+117
-6.3823601e+117
-5.6356693e+117
-4.8282568e+117
-4.8995553e+117
-6.2264091e+117
-5.6310526e+117
-6.7605991e+117
-6.1426518e+117
-6.8802142e+117
-4.7069031e+116
-4.5287045e+117
9.9330924e+115
-5.3665835e+117
-6.5978307e+117
-5.9225416e+117
-6.2081606e+117
-6.7211111e+117
-6.9608425e+117
-5.8816765e+117
-7.9317433e+117
-6.0039398e+117
-5.8271504e+117
-5.8399379e+117
-7.6728426e+117
-6.5850718e+117
-5.211279e+117
-3.7925936e+116
-7.0733774e+117
-7.0568884e+117
-7.3849678e+117
-7.4614311e+117
-2.1940317e+117
-7.750817e+116
-6.2896143e+117
-6.3844309e+117
-6.5173328e+117
-6.8655195e+117
-6.5633646e+117
-6.91238e+117
-6.9035463e+117
-5.912144e+117
-5.655083e+117
-6.9130944e+117
-6.4760741e+117
-4.29706e+117
-1.0816307e+117
-5.3169958e+117
-5.0122311e+117
-5.2444277e+117
-5.4843019e+117
-9.1762693e+117
-5.8092196e+117
-6.1362643e+117
-6.0713595e+117
-5.998751e+117
-6.1430878e+117
-6.0519669e+117
-6.3145231e+117
-6.412252e+117
-6.2880907e+117
-1.0824591e+118
-4.3594121e+116
-5.2570524e+117
-5.9942153e+117
-5.8876937e+117
-6.3360477e+117
-6.5480671e+117
-6.1697082e+117
-6.3374348e+117
-6.0344946e+117
-6.3866798e+117
-1.5594125e+117
-1.4320353e+117
-7.0034664e+117
7.4231685e+115
-5.532086e+117
-5.2205298e+117
-5.6353029e+117
-5.4640073e+117
-5.4843424e+117
-5.6596311e+117
-5.674478e+117
-5.5024866e+117
-5.3315784e+117
-4.8832332e+117
-5.3486109e+117
-5.1671998e+117
-5.1549543e+117
-5.5230454e+117
-5.6973624e+117
-4.5559408e+117
-5.0058933e+117
-4.8303998e+117
-4.8359249e+117
-5.0152399e+117
-5.3818688e+117
-5.3642756e+117
-5.1880643e+117
-5.2021374e+117
-5.5430559e+117
-5.7189217e+117
-5.7429132e+117
-5.5627207e+117
-4.298421e+117
-4.516934e+117
-4.6759785e+117
-4.6803227e+117
-4.5184995e+117
-5.0335692e+117
-4.8566887e+117
-4.8633703e+117
-5.0426279e+117
-5.2185858e+117
-5.2318217e+117
-5.4167178e+117
-5.3990501e+117
-5.5814944e+117
-5.7674433e+117
-5.7967339e+117
-5.604443e+117
-4.5357526e+117
-4.695496e+117
-4.6998286e+117
-4.5380102e+117
-4.876934e+117
-4.8707221e+117
-5.0522529e+117
-5.0615102e+117
-5.2440762e+117
-5.4348282e+117
-5.4533719e+117
-5.2564047e+117
-5.8643449e+117
-5.8167978e+117
-5.7944894e+117
-5.7445046e+117
-5.8999647e+117
-5.933825e+117
-5.7734223e+117
-5.7930375e+117
-5.8204207e+117
-5.984774e+117
-5.950714e+117
-6.0127725e+117
-5.8452946e+117
-6.0417593e+117
-5.870118e+117
-6.0724074e+117
-5.8964227e+117
-5.9258476e+117
-6.1052382e+117
-6.0193012e+117
-6.0125977e+117
-5.9821714e+117
-6.1668058e+117
-6.1280464e+117
-6.0688778e+117
-6.0456902e+117
-6.2114265e+117
-6.1951288e+117
-6.1046482e+117
-6.1437026e+117
-6.3004101e+117
-6.2704461e+117
-6.3312554e+117
-6.1767139e+117
-6.3666578e+117
-6.2097811e+117
-6.1977079e+117
-6.2338158e+117
-6.3324887e+117
-6.3677192e+117
-6.2302255e+117
-6.2745255e+117
-6.4270844e+117
-6.5067289e+117
-6.3336019e+117
-6.3650732e+117
-6.5458778e+117
-6.5912031e+117
-6.3902281e+117
-6.4582952e+117
-6.6044748e+117
-6.5696767e+117
-6.4515358e+117
-6.2893849e+117
-6.3287612e+117
-6.2973258e+117
-6.2583544e+117
-6.1218499e+117
-6.1186302e+117
-6.4111963e+117
-6.0796367e+117
-6.3924286e+117
-6.3575271e+117
-6.4264761e+117
-6.5236555e+117
-5.967789e+117
-5.3904817e+117
-5.8598673e+117
-6.355633e+117
-6.1643752e+117
-6.4266869e+117
-6.4470898e+117
-6.4295572e+117
-6.441941e+117
-6.4581207e+117
-1.3152217e+117
-1.2271037e+117
-6.0582766e+117
-5.8084995e+117
-6.3852298e+117
-3.0426942e+117
-6.0972962e+117
-6.471821e+117
-6.5300613e+117
-6.5156874e+117
-6.6117194e+117
-6.62423e+117
-8.2462917e+117
-5.9784921e+117
-1.1735816e+116
-6.5823988e+117
-3.0259588e+116
-5.5476579e+117
-3.8588607e+116
-6.2104827e+117
-6.1340036e+117
-6.5066967e+117
-6.6824893e+117
-6.6793064e+117
-6.7117737e+117
-6.7233716e+117
-5.8617407e+117
-6.1643049e+117
-6.1785413e+117
-6.4642728e+117
-5.9826793e+117
-5.8734379e+117
-5.9457295e+117
-6.3543109e+117
-6.2774165e+116
-1.1044378e+117
-5.7224357e+117
-5.8891059e+116
-3.0550396e+117
-5.0801853e+117
-3.1730043e+117
-3.5143991e+117
-1.2211132e+117
-1.4426191e+117
-6.7665816e+117
-5.3187323e+117
-6.267406e+117
-6.221447e+117
-6.3626011e+117
-6.4153982e+117
-6.2683732e+117
-6.1640063e+117
-6.1088361e+117
-6.1530503e+117
-6.210386e+117
-6.2988522e+117
-6.1566498e+117
-6.4416229e+117
-6.4919566e+117
-6.3418663e+117
-6.1950947e+117
-6.012007e+117
-6.0458375e+117
-6.2161609e+117
-6.0469818e+117
-5.8749794e+117
-6.3828012e+117
-6.5382375e+117
-6.5883499e+117
-6.253177e+117
-6.4241531e+117
-6.078825e+117
-5.9019989e+117
-6.4670533e+117
-6.2898937e+117
-6.0995624e+117
-5.9049528e+117
-6.6381347e+117
-6.688756e+117
-6.3248132e+117
-6.1319198e+117
-6.5071755e+117
-5.9330807e+117
-6.3563664e+117
-6.1596855e+117
-6.1838751e+117
-6.3827718e+117
-6.2074982e+117
-6.2293472e+117
-6.4433624e+117
-6.4213509e+117
-6.358713e+117
-6.3606645e+117
-6.4317527e+117
-6.503625e+117
-6.4988156e+117
-6.5591116e+117
-6.5021125e+117
-6.5581773e+117
-6.6213081e+117
-6.6943739e+117
-6.6165698e+117
-6.6686436e+117
-6.7448945e+117
-6.8410335e+117
-6.731305e+117
-6.4379836e+117
-6.3799881e+117
-6.423757e+117
-6.4048158e+117
-6.3834563e+117
-6.2861205e+117
-6.6633166e+117
-6.29821e+117
-6.7592386e+117
-6.6597575e+117
-6.2499335e+117
-6.1936327e+117
-5.8703445e+117
-6.2728792e+117
-5.674295e+117
-5.0802515e+117
-4.6034063e+117
-6.0824163e+117
-7.1938719e+117
-6.0041553e+117
-6.2830019e+117
-5.0474739e+117
-6.4406373e+117
-5.0863998e+117
-4.9659941e+117
-5.0310562e+117
-5.8343072e+117
-9.2433412e+117
-5.0431278e+117
-6.3228945e+117
-6.5052884e+117
-4.9831762e+117
-4.1774665e+117
-8.1794167e+116
-5.7113131e+117
-6.0566801e+117
-6.5724566e+117
-6.4147295e+117
-5.5563979e+117
-4.0246898e+117
-6.3971475e+117
-3.2019487e+117
-6.6492003e+117
-3.1991072e+117
-4.0742974e+116
-5.6331942e+117
-5.2927976e+117
-5.542587e+117
-4.9073943e+117
-6.2161612e+117
-5.5461172e+117
-5.7985516e+117
-6.2563815e+117
-5.9220153e+117
-5.8429418e+117
-6.2580831e+117
-5.901921e+117
-2.3612743e+117
-8.2478464e+117
-5.6518208e+117
-5.8725709e+117
-5.5176985e+117
-5.0639998e+117
-7.0708019e+117
-7.4172045e+117
-6.1580752e+117
-6.0876504e+117
-6.1563708e+117
-6.0993121e+117
-6.1685346e+117
-6.3076407e+117
-6.2670753e+117
-6.4657421e+117
-6.7178317e+117
-6.8491214e+117
-6.5211697e+117
-6.3167194e+117
-6.6615081e+117
-6.7517414e+117
-6.8556829e+117
-1.3563443e+117
-4.4223557e+117
-1.4988673e+117
-1.477278e+117
-4.2303945e+117
-3.7795366e+116
-5.4344807e+117
-5.0316679e+117
-6.0389671e+117
-6.0692649e+117
-5.9790773e+117
-6.0059639e+117
-5.9665609e+117
-5.9496753e+117
-6.0066693e+117
-5.915042e+117
-6.0030532e+117
-5.9460514e+117
-6.036699e+117
-5.9101581e+117
-5.8837125e+117
-6.2533777e+117
-6.4231543e+117
-1.1651974e+118
-3.6726125e+117
-4.0916494e+117
-5.701829e+117
-5.6371044e+117
-6.3818866e+117
-6.2960678e+117
-6.3975542e+117
-6.0564597e+117
-6.2471106e+117
-5.1740454e+117
-5.2481496e+117
-1.2371221e+117
-1.4979542e+117
-4.2431193e+116
-3.2878405e+116
-5.6493186e+117
-5.47624e+117
-5.4834749e+117
-5.1951154e+117
-5.5066352e+117
-5.6889415e+117
-5.4270161e+117
-5.4459176e+117
-5.6127312e+117
-5.5888658e+117
-4.8743615e+117
-5.1427274e+117
-5.1329504e+117
-5.2998724e+117
-5.315356e+117
-5.6265859e+117
-5.4610536e+117
-5.4811541e+117
-5.6499884e+117
-5.6739322e+117
-5.5025443e+117
-5.328903e+117
-4.5552561e+117
-4.9886678e+117
-4.8212039e+117
-4.8256232e+117
-4.9967908e+117
-5.3457678e+117
-5.1724735e+117
-5.159819e+117
-5.523121e+117
-5.6966022e+117
-4.298552e+117
-4.5154676e+117
-4.5152723e+117
-4.6726965e+117
-4.6702396e+117
-5.0130701e+117
-4.8442635e+117
-4.8500947e+117
-5.0226715e+117
-5.3829477e+117
-5.364744e+117
-5.1882039e+117
-5.2035389e+117
-5.5430477e+117
-5.7188817e+117
-5.7428177e+117
-5.5626561e+117
-4.0673826e+117
-4.2524937e+117
-4.2526451e+117
-4.3829276e+117
-4.3824844e+117
-4.5312617e+117
-4.6875263e+117
-4.6912932e+117
-4.5325691e+117
-5.0351721e+117
-4.8583417e+117
-4.8650022e+117
-5.0441492e+117
-5.218625e+117
-5.2319046e+117
-5.4167182e+117
-5.3990528e+117
-4.5370201e+117
-4.6974037e+117
-4.7019897e+117
-4.5393938e+117
-4.8771125e+117
-4.8709038e+117
-5.0524238e+117
-5.0616706e+117
-5.8696909e+117
-5.8964848e+117
-5.8101477e+117
-5.8428975e+117
-5.7690049e+117
-5.7130474e+117
-5.7373603e+117
-5.7195588e+117
-5.6937101e+117
-5.8424252e+117
-5.8700626e+117
-5.7436351e+117
-5.8966994e+117
-5.9261869e+117
-5.7691258e+117
-5.7918811e+117
-5.8188427e+117
-5.9837702e+117
-5.9506436e+117
-6.0126874e+117
-5.8452229e+117
-6.0416611e+117
-5.870031e+117
-5.9692233e+117
-5.9555321e+117
-5.9313535e+117
-6.0965903e+117
-6.0683328e+117
-6.0093021e+117
-5.979218e+117
-6.1626179e+117
-6.121246e+117
-6.0718003e+117
-6.046572e+117
-6.2148684e+117
-6.1991895e+117
-6.1048095e+117
-6.1437819e+117
-6.3006895e+117
-6.2707576e+117
-6.1948016e+117
-6.1677377e+117
-6.1439413e+117
-6.2511953e+117
-6.1320239e+117
-6.2992134e+117
-6.3224588e+117
-6.360625e+117
-6.2273016e+117
-6.2782448e+117
-6.4312501e+117
-6.5095134e+117
-6.3370617e+117
-6.3656245e+117
-6.5459647e+117
-6.5896249e+117
-6.3900312e+117
-6.2906621e+117
-6.2355643e+117
-6.2605255e+117
-6.2521331e+117
-6.0705702e+117
-6.2401412e+117
-6.0362146e+117
-6.2911578e+117
-5.5285116e+117
-5.1661516e+117
-6.1600656e+117
-6.5728108e+117
-5.6954999e+117
-6.2939117e+117
-6.3752416e+117
-6.3498039e+117
-6.4047074e+117
-6.4778495e+117
-1.0912925e+117
-1.2214591e+117
-5.3392165e+117
-6.0423232e+117
-6.3348641e+117
-1.822477e+117
-6.0655636e+117
-6.3494026e+117
-6.444911e+117
-6.4304993e+117
-6.4431851e+117
-6.4594648e+117
-2.3781809e+116
-2.6397447e+116
-6.0150587e+117
-6.1247082e+117
-5.8183271e+117
-6.4714169e+117
-1.2846972e+117
-5.5363975e+117
-6.0795203e+117
-6.4608956e+117
-6.5301743e+117
-6.5158169e+117
-6.6111761e+117
-6.6243973e+117
-8.6379484e+117
-1.7515719e+117
-5.9272529e+117
-6.5781516e+117
-6.238225e+117
-6.0382058e+117
-6.0789815e+117
-6.5008181e+117
-6.1653199e+117
-6.1854134e+117
-6.1802455e+117
-5.8714135e+117
-5.8255444e+117
-5.9485126e+117
-3.5176926e+116
-1.0486802e+117
-2.8236227e+117
-3.2809929e+117
-3.3148785e+117
-6.5151491e+116
-6.1452408e+117
-6.1236598e+117
-6.2573341e+117
-6.3133881e+117
-6.1737222e+117
-6.0488695e+117
-6.0066044e+117
-6.0597486e+117
-6.1121411e+117
-6.2075024e+117
-6.0732332e+117
-6.3402419e+117
-6.3926072e+117
-6.254298e+117
-6.1171276e+117
-5.9347337e+117
-5.9756795e+117
-6.1404328e+117
-6.2979555e+117
-5.9810458e+117
-6.4407814e+117
-6.491e+117
-6.340809e+117
-6.1785673e+117
-6.0147917e+117
-5.818128e+117
-5.8473432e+117
-6.0345799e+117
-6.2156872e+117
-5.8502593e+117
-5.6553037e+117
-6.3828228e+117
-6.5383874e+117
-6.588508e+117
-6.2526682e+117
-6.0668179e+117
-6.4241141e+117
-5.8775309e+117
-6.2897891e+117
-6.0979736e+117
-5.8952887e+117
-6.3247039e+117
-6.1307005e+117
-5.9249648e+117
-6.1595854e+117
-6.1837775e+117
-6.4411287e+117
-6.3980344e+117
-6.2607417e+117
-6.2565575e+117
-6.343591e+117
-6.3844848e+117
-6.3091528e+117
-6.3442022e+117
-6.4003181e+117
-6.4559996e+117
-6.4915099e+117
-6.5504949e+117
-6.4994258e+117
-6.5582999e+117
-6.6212749e+117
-6.6943143e+117
-6.616736e+117
-6.4235285e+117
-6.3649968e+117
-6.3608015e+117
-6.3675788e+117
-6.1332283e+117
-5.9490559e+117
-6.2721184e+117
-6.2948981e+117
-6.3365298e+117
-6.2844552e+117
-6.1642171e+117
-6.4419505e+117
-6.3419544e+117
-6.1786538e+117
-6.0335357e+117
-5.7615704e+117
-5.0366772e+117
-6.0905717e+117
-5.5455407e+117
-5.7926429e+117
-6.1335132e+117
-6.0052079e+117
-6.1878502e+117
-4.951604e+117
-6.2465329e+117
-6.0752793e+117
-4.3015059e+117
-1.2400483e+117
-3.2385194e+117
-1.2628235e+117
-2.6110128e+117
-6.1492105e+117
-5.4118881e+117
-6.2830573e+117
-4.8590886e+117
-6.4400198e+117
-5.0796121e+117
-5.0041957e+117
-4.8530555e+117
-5.0359193e+117
-5.8705435e+117
-1.0046102e+118
-5.0687181e+117
-6.321405e+117
-6.5041823e+117
-2.4816279e+116
-2.9578673e+117
-5.3840763e+117
-6.0510612e+117
-5.5499872e+117
-4.1276542e+117
-1.5504498e+117
-4.5208974e+116
-5.3369321e+117
-9.5839141e+117
-5.6257705e+117
-5.5410149e+117
-6.0604254e+117
-5.8191316e+117
-5.8007739e+117
-5.8291983e+117
-1.8548791e+117
-1.4605175e+117
-5.6793061e+117
-5.4232148e+117
-6.0136353e+117
-6.034302e+117
-5.9157649e+117
-5.9175447e+117
-6.0219173e+117
-5.9433896e+117
-5.9700548e+117
-5.9823003e+117
-6.012972e+117
-6.0475517e+117
-6.0150585e+117
-6.0457093e+117
-6.0800392e+117
-5.9880876e+117
-5.9888416e+117
-6.0315223e+117
-6.0322561e+117
-6.0674718e+117
-6.1000216e+117
-6.0653871e+117
-6.0968938e+117
-6.2449874e+117
-5.8871837e+117
-7.3700111e+117
-6.2234972e+117
-1.6466407e+117
-6.3496391e+117
-6.2841638e+117
-5.9964541e+117
-6.3759523e+117
-6.5639224e+117
-5.3959248e+117
-6.3430075e+117
-1.4947482e+117
-1.7062073e+117
-4.0492652e+116
-4.3321503e+117
-3.3385946e+116
-3.9545315e+116
-5.9871175e+117
-6.0045587e+117
-5.94573e+117
-5.9620566e+117
-6.0192433e+117
-6.0335765e+117
-5.9762941e+117
-5.989203e+117
-5.9078007e+117
-5.9322705e+117
-5.8730133e+117
-5.8947097e+117
-5.924321e+117
-5.9133226e+117
-5.9519183e+117
-5.930775e+117
-5.971048e+117
-5.8816884e+117
-5.8606446e+117
-5.8355973e+117
-5.9739136e+117
-5.7375772e+117
-5.7301864e+117
-6.1858321e+117
-6.6079231e+116
-3.9918937e+117
-1.3241677e+117
-5.6140022e+117
-6.3012888e+117
-6.0919913e+117
-6.1402236e+117
-6.3011758e+117
-6.2761278e+117
-6.2711734e+117
-6.2648107e+117
-6.1830103e+117
-5.7126661e+117
-5.856623e+117
-4.9886489e+117
-4.7171589e+117
-1.2119338e+117
-7.4652504e+116
-4.222034e+116
-3.6976439e+116
-4.2710558e+117
-5.7483954e+117
-5.6522506e+117
-5.6259891e+117
-5.7187157e+117
-5.6080763e+117
-5.5490342e+117
-5.4406153e+117
-5.4939252e+117
-5.4701392e+117
-5.3084739e+117
-5.5737248e+117
-5.4448637e+117
-5.4000872e+117
-5.1724568e+117
-5.561011e+117
-5.3942169e+117
-5.5468544e+117
-5.5689808e+117
-5.4109612e+117
-4.8692737e+117
-5.1241105e+117
-5.3317267e+117
-5.1377946e+117
-5.1222253e+117
-5.1141451e+117
-5.2720625e+117
-5.2858471e+117
-5.5934147e+117
-5.5282007e+117
-5.6125292e+117
-5.5107686e+117
-5.7727551e+117
-5.7975709e+117
-5.6957379e+117
-5.6739504e+117
-5.4269687e+117
-5.4437479e+117
-5.6056764e+117
-5.585319e+117
-4.557838e+117
-4.9731339e+117
-4.8115573e+117
-4.8159042e+117
-4.9800375e+117
-5.1468973e+117
-5.1373912e+117
-5.2968235e+117
-5.3117046e+117
-5.6260849e+117
-5.4609227e+117
-5.480982e+117
-5.6493345e+117
-5.6739169e+117
-5.5025329e+117
-5.3290744e+117
-4.3013592e+117
-4.6689895e+117
-4.6669189e+117
-4.5157851e+117
-4.5160944e+117
-4.9941444e+117
-4.8340069e+117
-4.8387387e+117
-5.0023173e+117
-5.346254e+117
-5.1728548e+117
-5.1599373e+117
-5.5231122e+117
-5.6965629e+117
-4.0699034e+117
-4.2540117e+117
-4.2530587e+117
-4.3819434e+117
-4.3829067e+117
-4.5301961e+117
-4.529596e+117
-4.6839519e+117
-4.6817273e+117
-5.0139429e+117
-4.8457132e+117
-4.8518381e+117
-5.0240005e+117
-5.3829658e+117
-5.3647413e+117
-5.1882011e+117
-5.2036379e+117
-4.0183422e+117
-4.1360379e+117
-4.1358294e+117
-4.0178e+117
-4.2602913e+117
-4.2604781e+117
-4.3894687e+117
-4.3893286e+117
-4.5326154e+117
-4.6897306e+117
-4.6932017e+117
-4.5338558e+117
-5.0353259e+117
-4.8585115e+117
-4.8651735e+117
-5.0443161e+117
-4.5371085e+117
-4.6975423e+117
-4.7021724e+117
-4.5395034e+117
-5.897204e+117
-5.8813059e+117
-5.923771e+117
-5.9108181e+117
-5.8120041e+117
-5.8323972e+117
-5.7784162e+117
-5.8672669e+117
-5.8496681e+117
-5.7372194e+117
-5.700099e+117
-5.7978011e+117
-5.6546047e+117
-5.6717769e+117
-5.8186734e+117
-5.7191089e+117
-5.6942275e+117
-5.8382603e+117
-5.8646894e+117
-5.742177e+117
-5.8975075e+117
-5.9253181e+117
-5.7671362e+117
-5.7918284e+117
-5.8187749e+117
-5.9836965e+117
-5.9506408e+117
-5.9281897e+117
-5.8858556e+117
-6.013011e+117
-6.0426839e+117
-5.9086317e+117
-5.9546702e+117
-5.9319204e+117
-6.0899775e+117
-6.0638492e+117
-6.0106422e+117
-5.9805021e+117
-6.1644807e+117
-6.1233603e+117
-6.0720541e+117
-6.0466793e+117
-6.2153028e+117
-6.199598e+117
-6.1630712e+117
-6.1972581e+117
-6.0779493e+117
-6.1681233e+117
-6.1436713e+117
-6.0558754e+117
-6.1629191e+117
-6.0619637e+117
-6.0923024e+117
-6.2000534e+117
-6.2418048e+117
-6.1253012e+117
-6.2871501e+117
-6.3252483e+117
-6.3638023e+117
-6.2299923e+117
-6.2786842e+117
-6.4317079e+117
-6.5098552e+117
-6.3374604e+117
-6.2471831e+117
-6.2860278e+117
-6.2728522e+117
-6.3009924e+117
-6.3115963e+117
-6.2180552e+117
-6.2347275e+117
-6.2494133e+117
-6.1097294e+117
-5.5920932e+117
-5.1706039e+117
-5.2641865e+117
-5.3219137e+117
-6.2485916e+117
-6.2394989e+117
-6.2217015e+117
-6.2249864e+117
-6.2530379e+117
-6.2123419e+117
-6.1159124e+117
-6.1484125e+117
-6.0923582e+117
-6.1144347e+117
-6.2700166e+117
-6.238698e+117
-5.8880496e+117
-5.8548231e+117
-6.1092517e+117
-5.031665e+117
-5.2093224e+117
-5.3995935e+117
-5.2123876e+117
-6.2688245e+117
-6.2402095e+117
-6.2728893e+117
-6.3027652e+117
-6.2535953e+117
-6.2198851e+117
-3.9361636e+117
-4.8392995e+117
-4.0868543e+117
-5.734922e+117
-6.0625601e+117
-5.3632547e+117
-6.5332381e+117
-5.5967196e+117
-5.7690129e+117
-4.5291839e+117
-4.7217945e+117
-6.2559324e+117
-6.2791293e+117
-6.378827e+117
-6.3289272e+117
-6.3501592e+117
-6.3311759e+117
-6.3210608e+117
-6.405822e+117
-6.4719467e+117
-2.0962144e+116
-3.4259439e+116
-5.3156578e+117
-5.9252631e+117
-6.0503215e+117
-6.4066349e+117
-6.5737904e+116
-5.4242241e+117
-5.8815043e+117
-6.443094e+117
-6.44471e+117
-6.4307455e+117
-6.4431585e+117
-6.4596892e+117
-6.0155867e+117
-6.2004828e+117
-6.2280799e+117
-6.4769621e+117
-5.4916251e+117
-5.9456142e+117
-6.1010609e+117
-6.4594298e+117
-5.4264848e+116
-5.2318993e+117
-5.9290057e+117
-6.031977e+117
-6.1475069e+117
-6.0754081e+117
-6.1803753e+117
-6.1790888e+117
-5.8091449e+117
-5.7965895e+117
-3.2730627e+116
-3.063734e+117
-6.0197177e+117
-6.1500797e+117
-6.0214182e+117
-6.2045508e+117
-6.0726082e+117
-5.906283e+117
-5.889892e+117
-5.9502777e+117
-5.9829087e+117
-6.1140625e+117
-5.9808123e+117
-6.2409476e+117
-6.292891e+117
-6.1617263e+117
-6.0285702e+117
-5.8773495e+117
-5.8395066e+117
-5.8895608e+117
-5.9362282e+117
-6.0575181e+117
-6.2061595e+117
-5.905495e+117
-6.3389074e+117
-6.3912429e+117
-6.2528447e+117
-6.0996774e+117
-5.9446731e+117
-5.7508062e+117
-5.7864082e+117
-6.1396784e+117
-5.9681197e+117
-6.2979576e+117
-5.7929125e+117
-6.4408735e+117
-6.4910831e+117
-6.3408065e+117
-6.1779183e+117
-6.0020398e+117
-5.8222977e+117
-5.6096148e+117
-5.6330653e+117
-6.03326e+117
-5.8396704e+117
-6.2156461e+117
-5.6376221e+117
-6.252616e+117
-6.0658413e+117
-5.8672651e+117
-5.66068e+117
-6.0978709e+117
-5.8945502e+117
-6.130622e+117
-5.9247066e+117
-6.4411889e+117
-6.3962632e+117
-6.1920515e+117
-6.1583746e+117
-6.248918e+117
-6.2979266e+117
-6.2081685e+117
-6.2496051e+117
-6.3274514e+117
-6.3643572e+117
-6.2982863e+117
-6.3436672e+117
-6.3962611e+117
-6.4499999e+117
-6.4911625e+117
-6.5500116e+117
-6.4994373e+117
-6.4224241e+117
-6.3638737e+117
-6.3406202e+117
-6.2370146e+117
-6.2127894e+117
-6.2024712e+117
-6.2567948e+117
-6.2203183e+117
-6.0977504e+117
-5.8969834e+117
-5.4373083e+117
-5.8657578e+117
-5.9611047e+117
-6.2365209e+117
-6.2637403e+117
-4.5041412e+117
-4.7139666e+117
-5.8711513e+117
-6.2110961e+117
-6.2748769e+117
-6.3165293e+117
-6.2137675e+117
-5.8881479e+117
-5.0626229e+117
-4.795396e+117
-6.3265598e+117
-5.711707e+117
-6.1575181e+117
-5.2647134e+117
-4.9029851e+117
-2.9850107e+117
-1.2199029e+117
-4.7650859e+117
-1.4216027e+117
-5.6320737e+117
-6.1256945e+117
-6.1013843e+117
-5.3790789e+117
-6.1869079e+117
-3.5291996e+117
-6.2445765e+117
-5.9961102e+117
-5.2817025e+117
-4.0996874e+117
-4.2001172e+116
-3.176456e+117
-2.8164871e+116
-8.3690365e+116
-6.1601634e+117
-5.0281226e+117
-1.5074476e+117
-4.8424466e+117
-4.510636e+117
-4.8890223e+117
-4.854853e+117
-5.873753e+117
-1.1339069e+117
-3.6509685e+117
-5.3572738e+117
-4.1373164e+117
-3.1514017e+117
-1.4237065e+117
-9.7493586e+117
-1.0021586e+118
-6.1517836e+117
-6.0720323e+117
-5.7812091e+117
-8.2035012e+116
-5.8564529e+117
-5.8699985e+117
-5.9265886e+117
-5.9054297e+117
-5.965446e+117
-5.7334889e+117
-5.7399081e+117
-5.7391982e+117
-5.9420771e+117
-5.8713388e+117
-5.8748288e+117
-5.9418586e+117
-5.8494212e+117
-5.876522e+117
-5.8887234e+117
-5.9194399e+117
-5.9560374e+117
-5.9208305e+117
-5.952497e+117
-5.9891591e+117
-5.932813e+117
-5.9069088e+117
-5.9201308e+117
-5.9479718e+117
-5.9272029e+117
-5.9546926e+117
-5.9237728e+117
-5.949867e+117
-5.9769195e+117
-5.9703871e+117
-5.9981291e+117
-5.990201e+117
-5.9706366e+117
-5.9551186e+117
-5.9925326e+117
-5.9764005e+117
-5.9944558e+117
-6.0133383e+117
-6.0293538e+117
-6.0104886e+117
-6.045119e+117
-6.0295522e+117
-6.0452378e+117
-6.0611021e+117
-6.0156963e+117
-6.0339715e+117
-6.0070562e+117
-6.0249536e+117
-6.0496392e+117
-6.0649379e+117
-6.0403014e+117
-6.0550548e+117
-6.1693838e+117
-5.7341865e+117
-7.5538514e+117
-1.3140523e+117
-4.4635712e+116
-6.2446721e+117
-6.1839997e+117
-6.2676775e+117
-6.2922235e+117
-5.9020708e+117
-5.8964961e+117
-6.1357082e+117
-6.2454316e+117
-6.1945787e+117
-6.1113877e+117
-5.4802083e+117
-5.0553278e+117
-5.7861835e+117
-5.8364659e+117
-4.2264766e+117
-4.584996e+117
-3.7375133e+116
-4.6624149e+116
-4.2598037e+117
-5.9577273e+117
-5.9666321e+117
-5.9384874e+117
-5.9301135e+117
-5.9748408e+117
-5.9832471e+117
-5.954943e+117
-5.9467664e+117
-5.9902628e+117
-5.9979048e+117
-5.9689324e+117
-5.9617385e+117
-6.0047748e+117
-6.011535e+117
-5.9819868e+117
-5.9756931e+117
-5.8718841e+117
-5.8864892e+117
-5.8501972e+117
-5.8631137e+117
-5.881738e+117
-5.874572e+117
-5.8987284e+117
-5.9106664e+117
-5.8857374e+117
-5.8525478e+117
-5.8413729e+117
-5.822071e+117
-5.9206073e+117
-5.9311872e+117
-5.9048496e+117
-5.8950135e+117
-5.9405087e+117
-5.9498324e+117
-5.9226879e+117
-5.9139677e+117
-5.7565482e+117
-5.9425029e+117
-5.6944634e+117
-5.4358059e+117
-5.5727745e+117
-6.1282679e+117
-6.2279226e+117
-6.1990444e+117
-6.1038061e+117
-2.1465435e+116
-3.0779405e+116
-6.2759692e+117
-5.6980167e+117
-6.1560976e+117
-6.0861687e+117
-6.202815e+117
-6.2811382e+117
-6.2761163e+117
-6.275309e+117
-5.8443056e+117
-5.600044e+117
-1.7893559e+117
-1.3371683e+117
-4.3918566e+117
-7.5202494e+116
-4.2593114e+116
-3.7771112e+115
-4.0620568e+117
-4.2740989e+117
-5.7359395e+117
-5.7933492e+117
-5.7516279e+117
-5.8099341e+117
-5.6587554e+117
-5.644714e+117
-5.6891836e+117
-5.7038743e+117
-5.6314558e+117
-5.6750852e+117
-5.6174848e+117
-5.6597287e+117
-5.6002038e+117
-5.7584581e+117
-5.7039972e+117
-5.7208186e+117
-5.7772214e+117
-5.6903488e+117
-5.56713e+117
-5.6555747e+117
-5.5798042e+117
-5.5549923e+117
-5.5411666e+117
-5.5235431e+117
-5.5931649e+117
-5.443857e+117
-5.2814112e+117
-5.4091864e+117
-5.4911161e+117
-5.5328801e+117
-5.4989107e+117
-5.5102419e+117
-5.4172395e+117
-5.5449722e+117
-5.4867451e+117
-5.4714194e+117
-5.506404e+117
-5.5207218e+117
-5.3948649e+117
-5.3117211e+117
-5.3317463e+117
-5.6056958e+117
-5.5797857e+117
-5.6193869e+117
-5.5669019e+117
-5.4249551e+117
-5.1548009e+117
-5.5152757e+117
-5.3699147e+117
-5.381389e+117
-5.5298659e+117
-5.4094711e+117
-5.2495119e+117
-4.8704292e+117
-5.1093549e+117
-5.0889454e+117
-5.0985572e+117
-5.105259e+117
-5.2602905e+117
-5.2480842e+117
-5.3966984e+117
-5.5458658e+117
-5.5666174e+117
-5.4125044e+117
-4.5657569e+117
-4.7507064e+117
-4.9495677e+117
-4.9542924e+117
-4.7465685e+117
-4.9622123e+117
-4.8077317e+117
-4.8084124e+117
-4.966545e+117
-5.2276456e+117
-5.1275428e+117
-5.1362298e+117
-5.2435454e+117
-5.3438606e+117
-5.431385e+117
-5.2537623e+117
-5.1440241e+117
-5.1263971e+117
-5.1184328e+117
-5.2702474e+117
-5.282548e+117
-5.6300869e+117
-5.6013812e+117
-5.5903387e+117
-5.6411489e+117
-5.5748505e+117
-5.537649e+117
-5.6107394e+117
-5.6513461e+117
-5.6624045e+117
-5.5548589e+117
-5.5283454e+117
-5.5189343e+117
-5.5654407e+117
-5.7776483e+117
-5.7638889e+117
-5.8232289e+117
-5.8381958e+117
-5.8514302e+117
-5.8022053e+117
-5.790188e+117
-5.8638873e+117
-5.7401336e+117
-5.6923505e+117
-5.703689e+117
-5.7517224e+117
-5.7151765e+117
-5.6811207e+117
-5.6693136e+117
-5.7281e+117
-5.4274162e+117
-5.4436977e+117
-5.6046915e+117
-5.5846132e+117
-4.3076566e+117
-4.6651197e+117
-4.5182881e+117
-4.6638535e+117
-4.5166503e+117
-4.9774384e+117
-4.8221534e+117
-4.8274589e+117
-4.9844535e+117
-5.1472133e+117
-5.1376892e+117
-5.2969441e+117
-5.3118354e+117
-5.6260552e+117
-5.4608735e+117
-5.4809263e+117
-5.6492983e+117
-5.329052e+117
-4.0740345e+117
-4.2576845e+117
-4.3852821e+117
-4.3842749e+117
-4.255432e+117
-4.6804248e+117
-4.6781218e+117
-4.53046e+117
-4.5310218e+117
-4.9947899e+117
-4.8351497e+117
-4.8398209e+117
-5.002922e+117
-5.3462674e+117
-5.1728594e+117
-5.1599453e+117
-3.8503468e+117
-4.021293e+117
-4.1381659e+117
-4.1374176e+117
-4.0202421e+117
-4.2619167e+117
-4.2610415e+117
-4.3888416e+117
-4.3901291e+117
-4.5318797e+117
-4.5308192e+117
-4.6856716e+117
-4.6834941e+117
-5.0140364e+117
-4.8458755e+117
-4.852007e+117
-5.0241495e+117
-4.022697e+117
-4.138881e+117
-4.1387928e+117
-4.0224657e+117
-4.2607306e+117
-4.2609453e+117
-4.3900614e+117
-4.3899489e+117
-4.5327231e+117
-4.6899074e+117
-4.6933635e+117
-4.5339598e+117
-5.9069844e+117
-5.9154989e+117
-5.8910943e+117
-5.8991083e+117
-5.9417096e+117
-5.9352459e+117
-5.9219733e+117
-5.9288321e+117
-5.8140924e+117
-5.8263591e+117
-5.7922947e+117
-5.8371015e+117
-5.8482321e+117
-5.7656349e+117
-5.8751747e+117
-5.8841041e+117
-5.8569461e+117
-5.8665156e+117
-5.6824847e+117
-5.778007e+117
-5.7596709e+117
-5.6367003e+117
-5.623219e+117
-5.7959023e+117
-5.6564716e+117
-5.6732871e+117
-5.8157678e+117
-5.7183681e+117
-5.6937578e+117
-5.8388203e+117
-5.8656644e+117
-5.7421237e+117
-5.8975123e+117
-5.9252515e+117
-5.7670431e+117
-5.8562369e+117
-5.9728984e+117
-5.8648498e+117
-5.847549e+117
-5.8473179e+117
-5.956869e+117
-5.9582515e+117
-5.9843796e+117
-5.8840143e+117
-6.0063426e+117
-6.037001e+117
-5.9082003e+117
-5.9560149e+117
-5.9324069e+117
-6.0919002e+117
-6.0655183e+117
-6.0107968e+117
-5.980638e+117
-6.1647477e+117
-6.1236586e+117
-6.1643958e+117
-6.1975854e+117
-6.0682488e+117
-6.1573623e+117
-6.1263673e+117
-6.1342662e+117
-6.0406285e+117
-6.0372741e+117
-6.1375555e+117
-6.044893e+117
-6.0815299e+117
-6.1828157e+117
-6.2418912e+117
-6.1243464e+117
-6.2891858e+117
-6.325677e+117
-6.3642574e+117
-6.2303748e+117
-6.2225658e+117
-6.2521755e+117
-6.2507208e+117
-6.2286006e+117
-6.2483308e+117
-6.2664563e+117
-6.2804488e+117
-6.2760541e+117
-6.2430834e+117
-6.2855464e+117
-6.3018576e+117
-6.3062865e+117
-6.2405065e+117
-6.2382719e+117
-6.2272549e+117
-6.2195383e+117
-6.2346171e+117
-6.2374074e+117
-6.2391555e+117
-6.2585359e+117
-6.2644603e+117
-6.2495909e+117
-6.2568774e+117
-6.2457977e+117
-6.1747117e+117
-6.2071143e+117
-6.2173089e+117
-6.2247104e+117
-5.9173105e+117
-6.0632781e+117
-5.9497837e+117
-5.605345e+117
-5.8560967e+117
-5.1651114e+117
-5.5485176e+117
-4.7809126e+117
-4.6217149e+117
-4.4731572e+117
-4.4199419e+117
-6.2477792e+117
-6.1743843e+117
-6.1303804e+117
-6.205611e+117
-6.2207426e+117
-6.1037621e+117
-6.2226953e+117
-5.8641593e+117
-6.1214958e+117
-5.3386849e+117
-5.8898138e+117
-5.3469758e+117
-6.1525055e+117
-6.1420701e+117
-5.6719275e+117
-5.4807826e+117
-5.8270926e+117
-5.9981857e+117
-6.0828447e+117
-6.1011286e+117
-6.1937518e+117
-5.7317932e+117
-2.708506e+117
-3.7805805e+117
-3.7143795e+117
-3.5940271e+117
-6.2571954e+117
-6.2161805e+117
-6.254713e+117
-6.2847632e+117
-6.2286587e+117
-6.1969108e+117
-3.743243e+117
-5.2074425e+117
-1.3124049e+117
-5.9457718e+117
-1.7190583e+117
-5.7801399e+117
-5.2825804e+117
-6.5893016e+117
-5.5928526e+117
-1.4955583e+117
-1.4738798e+117
-3.7384088e+117
-5.6618318e+117
-5.7125247e+117
-4.8638771e+117
-6.2497314e+117
-6.1029353e+117
-6.2202214e+117
-6.280261e+117
-6.3796929e+117
-6.3319224e+117
-6.3505239e+117
-6.3336209e+117
-6.3207927e+117
-6.4062589e+117
-6.4718359e+117
-5.9207474e+117
-5.8706996e+117
-6.0448388e+117
-6.4127227e+117
-5.3878371e+117
-5.7012194e+117
-5.8586219e+117
-6.452476e+117
-6.2129064e+117
-6.2781578e+117
-6.2383381e+117
-5.9366871e+117
-6.0920314e+117
-6.1026236e+117
-5.1235857e+117
-5.3568309e+117
-6.1552302e+117
-6.1536691e+117
-6.1761339e+117
-5.7790151e+117
-4.4809427e+117
-4.2638731e+117
-6.0153715e+117
-5.8800634e+117
-5.9668983e+117
-6.1414192e+117
-6.0974893e+117
-5.9408538e+117
-5.7277642e+117
-5.9147135e+117
-6.0460766e+117
-6.1928959e+117
-6.0656139e+117
-5.9328485e+117
-5.7355451e+117
-5.7274664e+117
-5.7857657e+117
-5.8106671e+117
-5.9693917e+117
-6.1130901e+117
-5.8185688e+117
-6.2405737e+117
-6.2917302e+117
-6.1604112e+117
-6.014056e+117
-5.8630656e+117
-5.7004472e+117
-5.6677862e+117
-5.7113017e+117
-6.056291e+117
-5.8933773e+117
-6.2061149e+117
-5.7273372e+117
-6.3389372e+117
-6.3912869e+117
-6.2527969e+117
-6.0986687e+117
-5.9317607e+117
-5.7615262e+117
-5.5555122e+117
-5.5839734e+117
-6.1396192e+117
-5.9667687e+117
-5.7823045e+117
-5.5897407e+117
-6.1778634e+117
-6.0007892e+117
-5.8116481e+117
-5.6141814e+117
-5.3902963e+117
-5.4081831e+117
-6.0331385e+117
-5.8387685e+117
-5.6313311e+117
-6.0657435e+117
-5.8662696e+117
-5.6550505e+117
-5.8945425e+117
-5.9247222e+117
-6.3963238e+117
-6.1148105e+117
-6.0795389e+117
-6.1221395e+117
-6.1664422e+117
-6.2052848e+117
-6.1502759e+117
-6.2340776e+117
-6.2834361e+117
-6.2007652e+117
-6.2491979e+117
-6.3241686e+117
-6.3603955e+117
-6.297727e+117
-6.3437933e+117
-6.396127e+117
-6.4497529e+117
-6.3388556e+117
-5.8610966e+117
-6.0631126e+117
-6.1281773e+117
-5.7255458e+117
-6.1825279e+117
-6.1757425e+117
-6.2207439e+117
-6.1411325e+117
-5.9610207e+117
-6.0923652e+117
-5.6171213e+117
-4.8711821e+117
-3.5189971e+117
-4.6188203e+117
-4.9149383e+117
-6.1569042e+117
-6.5537195e+116
-4.6352186e+117
-4.4216674e+117
-5.8178896e+117
-6.1928935e+117
-6.2690172e+117
-6.3065943e+117
-6.1918707e+117
-5.743244e+117
-4.9081948e+117
-1.0961589e+117
-3.6796707e+117
-6.3252748e+117
-5.8432057e+117
-4.8955973e+117
-6.1545394e+117
-2.5109127e+117
-4.8404373e+117
-2.8133337e+117
-3.3359437e+116
-4.739185e+117
-3.5483985e+117
-4.7138264e+116
-5.7601348e+117
-6.1233545e+117
-6.1055297e+117
-5.1459451e+117
-1.9327713e+117
-3.4558637e+117
-5.9874116e+117
-5.190012e+117
-1.2783769e+117
-4.0854742e+117
-4.997711e+117
-8.0297938e+116
-4.4777194e+116
-4.4509406e+117
-1.911934e+117
-4.8782438e+117
-3.4623203e+117
-3.667308e+117
-3.2647225e+117
-3.0864879e+117
-1.0262799e+118
-6.1495447e+117
-5.7620195e+117
-5.7723158e+117
-5.829381e+117
-5.8105175e+117
-5.9329714e+117
-5.6823949e+117
-5.4302756e+117
-5.5808878e+117
-5.5796458e+117
-5.7728032e+117
-5.7678023e+117
-5.8826648e+117
-5.849114e+117
-5.8555467e+117
-5.8930945e+117
-5.8995314e+117
-5.8555763e+117
-5.8502378e+117
-5.8948176e+117
-5.7639019e+117
-5.785775e+117
-5.8858299e+117
-5.8581917e+117
-5.8021703e+117
-5.8287856e+117
-5.9318315e+117
-5.9088697e+117
-5.8660826e+117
-5.9699376e+117
-5.9504512e+117
-5.9864057e+117
-6.0025164e+117
-5.8740062e+117
-5.9027069e+117
-5.884771e+117
-5.8915643e+117
-5.9009148e+117
-5.9083988e+117
-5.9290408e+117
-5.9149372e+117
-5.9220331e+117
-5.9362234e+117
-5.8831977e+117
-5.8991316e+117
-5.8911153e+117
-5.9075536e+117
-5.920183e+117
-5.9118245e+117
-5.9336557e+117
-5.9241328e+117
-5.9478914e+117
-5.9598283e+117
-5.9533337e+117
-5.9411325e+117
-5.9447837e+117
-5.9564937e+117
-5.9345546e+117
-5.9456892e+117
-5.9700103e+117
-5.9799496e+117
-5.9744607e+117
-5.9643846e+117
-5.966291e+117
-5.9760703e+117
-5.9553832e+117
-5.964967e+117
-5.927898e+117
-5.9510123e+117
-5.9895471e+117
-5.9705117e+117
-6.0062239e+117
-6.0224911e+117
-5.9887151e+117
-5.9931463e+117
-5.9835548e+117
-5.998369e+117
-6.0024557e+117
-6.0112099e+117
-6.0070824e+117
-6.0158114e+117
-5.9845975e+117
-5.9941991e+117
-5.973217e+117
-5.9825308e+117
-6.0027626e+117
-6.0114623e+117
-5.9910313e+117
-5.9995057e+117
-6.0191827e+117
-6.0275149e+117
-6.0235764e+117
-6.0319009e+117
-6.0354581e+117
-6.042797e+117
-6.039302e+117
-6.0466344e+117
-6.0191168e+117
-6.0275532e+117
-6.0149632e+117
-6.0068659e+117
-6.0221146e+117
-6.0290097e+117
-6.034771e+117
-6.0419236e+117
-6.1309696e+117
-6.110247e+117
-6.2316458e+117
-6.2056831e+117
-5.7312301e+117
-3.5995888e+116
-6.2252439e+117
-6.1754744e+117
-6.1443909e+117
-6.047408e+117
-5.9828917e+117
-6.2332173e+117
-6.1607466e+117
-6.267166e+117
-4.9683525e+117
-5.4085364e+117
-5.7701268e+117
-6.0102765e+117
-5.3490737e+117
-1.2489073e+117
-4.5479651e+117
-1.0613619e+117
-9.0727668e+116
-4.1480728e+117
-2.1247625e+117
-4.2630441e+117
-4.0576309e+117
-5.9395185e+117
-5.9352449e+117
-5.9202373e+117
-5.924375e+117
-5.9478657e+117
-5.943628e+117
-5.9284497e+117
-5.9327374e+117
-5.9561551e+117
-5.9517752e+117
-5.9365548e+117
-5.9409649e+117
-5.9642564e+117
-5.9602389e+117
-5.9451154e+117
-5.9491337e+117
-5.9713852e+117
-5.9677168e+117
-5.9523957e+117
-5.9558996e+117
-5.9785406e+117
-5.9749279e+117
-5.9593788e+117
-5.9630005e+117
-5.981818e+117
-5.985436e+117
-5.9697285e+117
-5.9661481e+117
-5.9917651e+117
-5.988633e+117
-5.9729697e+117
-5.975968e+117
-5.8539748e+117
-5.8461894e+117
-5.8564064e+117
-5.8354436e+117
-5.8426384e+117
-5.8680359e+117
-5.8610488e+117
-5.8492031e+117
-5.8558814e+117
-5.8378796e+117
-5.8325424e+117
-5.819258e+117
-5.8813171e+117
-5.8745072e+117
-5.8616724e+117
-5.8680238e+117
-5.8738072e+117
-5.8873576e+117
-5.8930375e+117
-5.8793501e+117
-5.7805115e+117
-5.9033051e+117
-5.8979501e+117
-5.8838902e+117
-5.8889624e+117
-5.9133308e+117
-5.908282e+117
-5.8938571e+117
-5.8988032e+117
-5.9226087e+117
-5.917735e+117
-5.9030467e+117
-5.9078653e+117
-5.9313844e+117
-5.9270212e+117
-5.9123304e+117
-5.9166322e+117
-5.6692451e+117
-5.865295e+117
-5.8712521e+117
-5.6847604e+117
-5.9884599e+117
-6.0045653e+117
-5.4160318e+117
-5.1428021e+117
-5.580177e+117
-6.1303299e+117
-6.2204451e+117
-6.2010428e+117
-6.1048781e+117
-6.2732057e+117
-5.7789302e+117
-5.808886e+117
-6.0069572e+117
-5.9646445e+117
-6.1207406e+117
-8.0824459e+117
-5.9510725e+117
-6.1661838e+117
-6.2815498e+117
-6.2684618e+117
-6.2016216e+117
-6.2735898e+117
-6.2765165e+117
-6.2751365e+117
-6.2757637e+117
-6.987702e+117
-5.7202731e+117
-5.7802389e+116
-3.1738473e+116
-4.3489104e+117
-2.4205627e+116
-3.8479863e+117
-4.0665591e+117
-4.2810741e+117
-4.5026722e+117
-5.7295524e+117
-5.7376989e+117
-5.7576759e+117
-5.7661717e+117
-5.7872636e+117
-5.8224801e+117
-5.7960061e+117
-5.8315624e+117
-5.7452756e+117
-5.7739877e+117
-5.7530279e+117
-5.7819012e+117
-5.8039982e+117
-5.8398899e+117
-5.8122959e+117
-5.8485462e+117
-5.6531827e+117
-5.6740817e+117
-5.6600885e+117
-5.6811058e+117
-5.6392208e+117
-5.6597246e+117
-5.6463181e+117
-5.6671015e+117
-5.6810402e+117
-5.688622e+117
-5.7050259e+117
-5.7128849e+117
-5.6957227e+117
-5.7030073e+117
-5.7202552e+117
-5.7278255e+117
-5.6256407e+117
-5.6457676e+117
-5.6329751e+117
-5.6533416e+117
-5.6664415e+117
-5.6896232e+117
-5.6743572e+117
-5.6980004e+117
-5.6041192e+117
-5.632472e+117
-5.6128098e+117
-5.6190916e+117
-5.6389636e+117
-5.6458896e+117
-5.6524576e+117
-5.6592973e+117
-5.6747267e+117
-5.6820644e+117
-5.6277966e+117
-5.585656e+117
-5.7504152e+117
-5.7824454e+117
-5.7602429e+117
-5.7936269e+117
-5.7409635e+117
-5.6973806e+117
-5.7231648e+117
-5.7053337e+117
-5.7321347e+117
-5.6886599e+117
-5.7134031e+117
-5.7407686e+117
-5.7222019e+117
-5.7501091e+117
-5.7694541e+117
-5.7794234e+117
-5.8036188e+117
-5.8142638e+117
-5.6695499e+117
-5.7189764e+117
-5.5745878e+117
-5.593831e+117
-5.5810302e+117
-5.6000047e+117
-5.5662523e+117
-5.5515566e+117
-5.5584131e+117
-5.5691992e+117
-5.575918e+117
-5.538447e+117
-5.5562878e+117
-5.5450975e+117
-5.5628626e+117
-5.5268131e+117
-5.5077683e+117
-5.5480417e+117
-5.5872468e+117
-5.6063606e+117
-5.5941346e+117
-5.6135433e+117
-5.4551687e+117
-5.4914044e+117
-5.4340742e+117
-5.3678126e+117
-5.472068e+117
-5.2843376e+117
-5.2472117e+117
-5.3329248e+117
-5.4257963e+117
-5.5044086e+117
-5.5301614e+117
-5.5363073e+117
-5.5470398e+117
-5.5530934e+117
-5.5140937e+117
-5.5201825e+117
-5.4986141e+117
-5.4663937e+117
-5.5044608e+117
-5.4770091e+117
-5.5097613e+117
-5.5257576e+117
-5.5316348e+117
-5.5152039e+117
-5.4430671e+117
-5.433277e+117
-5.5421137e+117
-5.5592561e+117
-5.5482675e+117
-5.5657276e+117
-5.5009554e+117
-5.5082938e+117
-5.4927861e+117
-5.4851552e+117
-5.4540073e+117
-5.4864478e+117
-5.4939091e+117
-5.4777489e+117
-5.4696795e+117
-5.4377617e+117
-5.5033217e+117
-5.5210186e+117
-5.5103796e+117
-5.5276845e+117
-5.5170892e+117
-5.5242733e+117
-5.5342472e+117
-5.5413043e+117
-5.4026953e+117
-5.4205811e+117
-5.3540709e+117
-5.3350189e+117
-5.3693578e+117
-5.3879947e+117
-5.376645e+117
-5.3667737e+117
-5.4008029e+117
-5.4102882e+117
-5.6000739e+117
-5.6068276e+117
-5.619687e+117
-5.6265713e+117
-5.5766106e+117
-5.5946892e+117
-5.5832227e+117
-5.6013779e+117
-5.6134245e+117
-5.6333426e+117
-5.6202102e+117
-5.6402444e+117
-5.5639464e+117
-5.5701943e+117
-5.5815554e+117
-5.5881149e+117
-5.4195562e+117
-5.1502279e+117
-5.3608162e+117
-5.3549573e+117
-5.4921695e+117
-5.501925e+117
-4.8735996e+117
-5.0874441e+117
-5.2306972e+117
-5.2385246e+117
-5.0903976e+117
-5.5147317e+117
-5.3730173e+117
-5.3846318e+117
-5.5290091e+117
-5.4144571e+117
-5.2564706e+117
-4.774565e+117
-4.9415554e+117
-4.9479182e+117
-4.5811079e+117
-4.759273e+117
-4.9555542e+117
-4.8091975e+117
-4.8076943e+117
-4.958129e+117
-5.2036492e+117
-5.1104693e+117
-5.0802862e+117
-5.1684218e+117
-5.0907623e+117
-5.1028504e+117
-5.1092518e+117
-5.2589841e+117
-5.248101e+117
-5.3970987e+117
-5.5456351e+117
-5.5661092e+117
-5.4128217e+117
-4.3180771e+117
-4.5214831e+117
-4.5247742e+117
-4.6659195e+117
-4.6641707e+117
-4.7030433e+117
-4.8854652e+117
-5.0219503e+117
-5.0237117e+117
-4.8793337e+117
-5.0281055e+117
-4.9653337e+117
-4.8162253e+117
-4.8178276e+117
-4.9701438e+117
-5.278705e+117
-5.2617871e+117
-5.2998624e+117
-5.3177993e+117
-5.2337605e+117
-5.2193207e+117
-5.1630814e+117
-5.1717061e+117
-5.1819568e+117
-5.1765136e+117
-5.2404525e+117
-5.2465118e+117
-5.2874865e+117
-5.3294328e+117
-5.3387057e+117
-5.2950433e+117
-5.4162883e+117
-5.3815952e+117
-5.4226558e+117
-5.484303e+117
-5.4491623e+117
-5.4561725e+117
-5.4923518e+117
-5.2991768e+117
-5.3431203e+117
-5.1854658e+117
-5.2501036e+117
-5.1271922e+117
-5.1188261e+117
-5.2708867e+117
-5.2831782e+117
-5.6251256e+117
-5.6450994e+117
-5.630554e+117
-5.6504012e+117
-5.5993141e+117
-5.605317e+117
-5.6174791e+117
-5.6234539e+117
-5.5881647e+117
-5.6063081e+117
-5.5936108e+117
-5.6118098e+117
-5.6360727e+117
-5.656074e+117
-5.6422235e+117
-5.6625392e+117
-5.5739909e+117
-5.578788e+117
-5.59197e+117
-5.5964716e+117
-5.5565992e+117
-5.5389575e+117
-5.609593e+117
-5.6142461e+117
-5.6279535e+117
-5.6330113e+117
-5.6678323e+117
-5.647148e+117
-5.6525211e+117
-5.6734751e+117
-5.6578559e+117
-5.6789275e+117
-5.55305e+117
-5.5706495e+117
-5.55835e+117
-5.575953e+117
-5.5462977e+117
-5.5520659e+117
-5.5343169e+117
-5.528579e+117
-5.5361645e+117
-5.5411946e+117
-5.5237984e+117
-5.5193926e+117
-5.5635993e+117
-5.5694519e+117
-5.5815096e+117
-5.5875882e+117
-5.7722241e+117
-5.7797894e+117
-5.802063e+117
-5.8098369e+117
-5.7588891e+117
-5.7880066e+117
-5.7654756e+117
-5.7950304e+117
-5.8187038e+117
-5.8552658e+117
-5.8260008e+117
-5.8628672e+117
-5.8332633e+117
-5.8704743e+117
-5.8413754e+117
-5.8788872e+117
-5.8477096e+117
-5.8542612e+117
-5.8853117e+117
-5.8918774e+117
-5.7978981e+117
-5.8034308e+117
-5.8283225e+117
-5.833897e+117
-5.7858436e+117
-5.815973e+117
-5.7921662e+117
-5.8224586e+117
-5.860141e+117
-5.8981041e+117
-5.8660025e+117
-5.9043684e+117
-5.7336052e+117
-5.7596311e+117
-5.739816e+117
-5.7658501e+117
-5.6884621e+117
-5.6943409e+117
-5.710562e+117
-5.7167024e+117
-5.6998593e+117
-5.7222293e+117
-5.7452894e+117
-5.7507818e+117
-5.771473e+117
-5.7769807e+117
-5.7083826e+117
-5.7334278e+117
-5.7144393e+117
-5.7396859e+117
-5.6763332e+117
-5.6830095e+117
-5.6980962e+117
-5.7049422e+117
-5.6649652e+117
-5.6861676e+117
-5.6704671e+117
-5.6920169e+117
-5.720651e+117
-5.7277744e+117
-5.7462042e+117
-5.7536359e+117
-5.4274069e+117
-5.4436546e+117
-5.6046249e+117
-5.5845731e+117
-4.0809971e+117
-4.2646006e+117
-4.390693e+117
-4.3880025e+117
-4.2613108e+117
-4.6751928e+117
-4.5316878e+117
-4.6731979e+117
-4.5306866e+117
-4.9781897e+117
-4.8231154e+117
-4.8285723e+117
-4.9852155e+117
-5.1472577e+117
-5.1377307e+117
-5.2969272e+117
-5.3118159e+117
-3.855226e+117
-4.0250195e+117
-4.0229676e+117
-4.1397706e+117
-4.1420128e+117
-4.2652652e+117
-4.3926461e+117
-4.3916293e+117
-4.2632149e+117
-4.6819378e+117
-4.6796849e+117
-4.531977e+117
-4.5325323e+117
-4.9948774e+117
-4.8352719e+117
-4.8399507e+117
-5.0029932e+117
-3.7995159e+117
-3.9123157e+117
-3.9106516e+117
-3.7968465e+117
-4.0256489e+117
-4.140984e+117
-4.1404616e+117
-4.0248979e+117
-4.26241e+117
-4.2615597e+117
-4.3895835e+117
-4.3910091e+117
-4.5319946e+117
-4.5309213e+117
-4.6858157e+117
-4.6836583e+117
-4.0230047e+117
-4.1393692e+117
-4.1392191e+117
-4.0227392e+117
-4.2607709e+117
-4.2609873e+117
-4.3901217e+117
-4.3900114e+117
-5.9131165e+117
-5.917445e+117
-5.9215158e+117
-5.9257335e+117
-5.8972333e+117
-5.9011644e+117
-5.9050217e+117
-5.9093769e+117
-5.9487152e+117
-5.9518021e+117
-5.9421756e+117
-5.9456079e+117
-5.9288701e+117
-5.9322115e+117
-5.9354666e+117
-5.9391443e+117
-5.8023389e+117
-5.8150741e+117
-5.8218651e+117
-5.8281197e+117
-5.8347384e+117
-5.7863783e+117
-5.8403256e+117
-5.8464834e+117
-5.8575026e+117
-5.85199e+117
-5.8803913e+117
-5.8850489e+117
-5.8937591e+117
-5.8893376e+117
-5.8618138e+117
-5.8666457e+117
-5.8712959e+117
-5.8762847e+117
-5.7303244e+117
-5.737475e+117
-5.6060577e+117
-5.6105408e+117
-5.7446861e+117
-5.7310524e+117
-5.6124376e+117
-5.6062211e+117
-5.7746344e+117
-5.755668e+117
-5.6375841e+117
-5.6232929e+117
-5.7952333e+117
-5.6557078e+117
-5.6725354e+117
-5.8155846e+117
-5.7183511e+117
-5.6937449e+117
-5.8388686e+117
-5.8657321e+117
-5.8500098e+117
-5.9631691e+117
-5.860113e+117
-5.8405208e+117
-5.8345309e+117
-5.8388921e+117
-5.9456944e+117
-5.9414237e+117
-5.9465856e+117
-5.9742507e+117
-5.8826121e+117
-6.0050255e+117
-6.037393e+117
-5.9078501e+117
-5.9561168e+117
-5.932444e+117
-6.0921482e+117
-6.0656929e+117
-6.1645651e+117
-6.0651068e+117
-6.1551413e+117
-6.2177555e+117
-6.2485525e+117
-6.1036931e+117
-6.1930791e+117
-6.115757e+117
-6.2046093e+117
-6.1023688e+117
-6.0182746e+117
-6.0342439e+117
-6.01681e+117
-6.2179163e+117
-6.1240249e+117
-6.1968244e+117
-6.0362572e+117
-6.0767303e+117
-6.1790403e+117
-6.241881e+117
-6.1242249e+117
-6.2895207e+117
-6.2446264e+117
-6.2334058e+117
-6.2174095e+117
-6.2357278e+117
-6.2356485e+117
-6.2084319e+117
-6.2397678e+117
-6.2450473e+117
-6.2395244e+117
-6.2129112e+117
-6.1993041e+117
-6.2460446e+117
-6.2481969e+117
-6.232628e+117
-6.2516635e+117
-6.2600404e+117
-6.2789933e+117
-6.2743464e+117
-6.2380718e+117
-6.2820906e+117
-6.3017354e+117
-6.3072783e+117
-6.2337656e+117
-6.2436418e+117
-6.2365376e+117
-6.2280461e+117
-6.2404145e+117
-6.2331593e+117
-6.2502201e+117
-6.268129e+117
-6.2704539e+117
-6.2563144e+117
-6.2511624e+117
-6.2405875e+117
-6.1711695e+117
-6.1249587e+117
-6.1558165e+117
-6.0586965e+117
-5.9700332e+117
-6.0571519e+117
-6.0305647e+117
-6.121876e+117
-6.0561158e+117
-6.0299861e+117
-6.084719e+117
-6.1921307e+117
-6.2010478e+117
-6.2007927e+117
-5.5702929e+117
-5.9735051e+117
-6.1472818e+117
-5.2945881e+117
-5.8977267e+117
-5.0925879e+117
-5.9597731e+117
-4.1423185e+117
-2.857751e+117
-2.6436595e+117
-3.9319251e+117
-6.1316856e+117
-5.9664016e+117
-6.1309197e+117
-6.1863168e+117
-6.2163584e+117
-6.2197576e+117
-5.9392407e+117
-6.144116e+117
-6.2080441e+117
-5.5515648e+117
-4.1252493e+117
-5.5755709e+117
-4.3911629e+117
-6.146967e+117
-6.1350127e+117
-4.7557504e+117
-4.4351688e+117
-5.5812692e+117
-5.8381359e+117
-6.0802584e+117
-6.0121157e+117
-6.053806e+117
-6.1389353e+117
-6.1685382e+117
-5.9538452e+117
-6.1729623e+117
-5.4924288e+117
-5.8860312e+117
-1.2118974e+117
-1.8474388e+117
-1.7687714e+117
-1.6554609e+117
-6.2379379e+117
-6.1928164e+117
-6.2509167e+117
-6.2840599e+117
-6.2264243e+117
-6.1926252e+117
-5.1968394e+117
-4.6248741e+116
-5.8128483e+116
-1.9050075e+117
-5.4427677e+117
-6.5881658e+117
-3.5315577e+116
-5.6925178e+116
-3.7041366e+117
-6.3922355e+117
-5.5728927e+117
-4.5870805e+117
-5.6057552e+117
-5.8430982e+117
-5.9535449e+117
-6.2498691e+117
-6.0844553e+117
-6.2018568e+117
-6.2808008e+117
-6.3329097e+117
-6.3343327e+117
-6.3212065e+117
-5.8572997e+117
-5.911043e+117
-6.0440999e+117
-5.6978783e+117
-4.0060228e+117
-5.8762998e+117
-6.2947574e+117
-6.2757983e+117
-6.10188e+117
-6.109727e+117
-5.2944999e+117
-6.1643279e+117
-4.485849e+117
-4.6011622e+117
-4.4551272e+117
-4.2672851e+117
-4.4542803e+117
-4.6028853e+117
-4.7527042e+117
-4.7476346e+117
-4.7218373e+117
-4.7184394e+117
-4.0565562e+117
-4.3352093e+117
-4.2190798e+117
-4.2177631e+117
-4.3345457e+117
-5.8738828e+117
-6.014491e+117
-5.964449e+117
-5.827852e+117
-5.722031e+117
-6.1411248e+117
-6.0908366e+117
-5.8996136e+117
-5.6686142e+117
-5.9700336e+117
-5.8444366e+117
-5.8742893e+117
-6.0034791e+117
-5.4290611e+117
-5.6332589e+117
-5.7789318e+117
-5.6747435e+117
-5.9126917e+117
-6.0392967e+117
-6.1925156e+117
-6.0647943e+117
-5.9223715e+117
-5.7723352e+117
-5.5791131e+117
-5.5716218e+117
-5.620637e+117
-5.6403708e+117
-5.9678756e+117
-5.8100715e+117
-6.1130503e+117
-5.6502019e+117
-6.2406647e+117
-6.2917746e+117
-6.1603553e+117
-6.0124176e+117
-5.8522874e+117
-5.6900394e+117
-5.519219e+117
-5.7113895e+117
-5.6746619e+117
-5.4889326e+117
-5.5237935e+117
-6.0562063e+117
-5.8921723e+117
-5.717818e+117
-5.5363492e+117
-6.0985942e+117
-5.9304408e+117
-5.7512362e+117
-5.5640611e+117
-5.3500069e+117
-5.3710984e+117
-5.9666541e+117
-5.7815919e+117
-5.5829026e+117
-5.37682e+117
-6.000676e+117
-5.8107267e+117
-5.6075755e+117
-5.396247e+117
-5.1709953e+117
-5.1844441e+117
-5.8387412e+117
-5.6311339e+117
-5.8662566e+117
-5.6550456e+117
-6.1024394e+117
-6.0647172e+117
-6.0499672e+117
-6.0309584e+117
-6.1369781e+117
-6.1055128e+117
-6.1283929e+117
-6.0437899e+117
-6.0762946e+117
-6.164303e+117
-6.1469695e+117
-6.1844321e+117
-6.1491579e+117
-6.2327325e+117
-6.2817597e+117
-6.199887e+117
-6.2493283e+117
-6.3241328e+117
-6.3602935e+117
-6.2978389e+117
-5.0314983e+117
-4.9708457e+117
-4.970429e+117
-4.6651837e+117
-5.9277513e+117
-5.8367001e+117
-6.0342906e+117
-5.5990682e+117
-5.8492504e+117
-5.9457287e+117
-6.0816522e+117
-5.740946e+117
-5.7157586e+117
-5.8079463e+117
-6.0316598e+117
-6.0691215e+117
-5.8472833e+117
-6.0311956e+117
-6.1038972e+117
-5.9725999e+117
-5.8620859e+117
-5.7627818e+117
-6.0402062e+117
-4.1215485e+117
-4.4995114e+117
-5.1736145e+117
-5.343969e+117
-4.8164624e+117
-4.5328149e+117
-6.1824787e+117
-6.1903782e+117
-6.1616264e+117
-6.1800299e+117
-6.152019e+117
-6.1263348e+117
-6.1094409e+117
-6.1515428e+117
-6.2192831e+117
-6.1357519e+117
-5.7702477e+117
-5.0750858e+117
-6.0960215e+117
-5.7847522e+117
-6.1122247e+117
-5.9798376e+117
-4.5875615e+117
-9.9448e+116
-3.766518e+117
-3.6769884e+117
-7.0857682e+116
-4.107735e+117
-3.9963084e+117
-4.0357234e+117
-4.487892e+117
-6.1493661e+117
-2.2973818e+116
-4.6726473e+117
-5.8964364e+117
-4.4238702e+117
-5.7810271e+117
-6.1910155e+117
-6.2686151e+117
-6.3057455e+117
-6.1894272e+117
-5.8079666e+117
-4.8756384e+117
-6.5021539e+117
-3.2219805e+116
-3.2451189e+117
-5.8507786e+117
-4.9224908e+117
-4.7748011e+117
-1.0878747e+117
-4.7242207e+117
-4.5793848e+117
-3.4778761e+117
-5.7696639e+117
-5.1245373e+117
-1.2305078e+117
-7.3462723e+116
-5.1820516e+117
-3.7673733e+117
-3.6056774e+116
-8.0205954e+116
-1.7379266e+116
-9.5637671e+116
-1.5635361e+117
-3.5321541e+117
-3.1973343e+117
-5.6810664e+117
-5.6878732e+117
-5.7385741e+117
-5.7970914e+117
-5.8316962e+117
-5.726194e+117
-5.8694784e+117
-5.8558592e+117
-5.9894399e+117
-6.0124678e+117
-5.6749604e+117
-5.4064582e+117
-5.1354669e+117
-5.4123851e+117
-5.5918078e+117
-5.5991466e+117
-5.5976859e+117
-5.6860736e+117
-5.590073e+117
-5.6791807e+117
-5.8013042e+117
-5.7967761e+117
-5.7896868e+117
-5.8426117e+117
-5.869747e+117
-5.846847e+117
-5.8471889e+117
-5.8746374e+117
-5.844304e+117
-5.872575e+117
-5.8654586e+117
-5.8388317e+117
-5.7008878e+117
-5.7922944e+117
-5.7635069e+117
-5.8114905e+117
-5.8396055e+117
-5.7433085e+117
-5.8405901e+117
-5.8162906e+117
-5.8869699e+117
-5.8632109e+117
-5.8789403e+117
-5.859781e+117
-5.925395e+117
-5.9059349e+117
-5.9424896e+117
-5.8263755e+117
-5.8419932e+117
-5.8484657e+117
-5.831419e+117
-5.8752208e+117
-5.8581019e+117
-5.871301e+117
-5.8564955e+117
-5.863881e+117
-5.8795926e+117
-5.8902e+117
-5.9056966e+117
-5.8647777e+117
-5.8743312e+117
-5.8771618e+117
-5.8669482e+117
-5.8824494e+117
-5.8905371e+117
-5.8942009e+117
-5.8858969e+117
-5.8976487e+117
-5.9059746e+117
-5.9095525e+117
-5.9014488e+117
-5.9169701e+117
-5.9135968e+117
-5.9207478e+117
-5.9242163e+117
-5.8558991e+117
-5.8651703e+117
-5.8748186e+117
-5.8642487e+117
-5.8716007e+117
-5.8827527e+117
-5.8903146e+117
-5.8787681e+117
-5.8776513e+117
-5.8672982e+117
-5.8782224e+117
-5.8676881e+117
-5.8946239e+117
-5.8864873e+117
-5.8945799e+117
-5.8866432e+117
-5.9017599e+117
-5.9096549e+117
-5.9016203e+117
-5.9092033e+117
-5.8853842e+117
-5.8970406e+117
-5.9043941e+117
-5.8927004e+117
-5.915758e+117
-5.9167833e+117
-5.9239052e+117
-5.922541e+117
-5.917272e+117
-5.9107241e+117
-5.8990347e+117
-5.9050309e+117
-5.9303173e+117
-5.927002e+117
-5.9336955e+117
-5.9368231e+117
-5.9427587e+117
-5.9398904e+117
-5.9455609e+117
-5.9484584e+117
-5.9319386e+117
-5.9191315e+117
-5.9282562e+117
-5.9298818e+117
-5.9362695e+117
-5.9344798e+117
-5.9399812e+117
-5.9420542e+117
-5.9476616e+117
-5.9455333e+117
-5.9102344e+117
-5.922701e+117
-5.9287309e+117
-5.9159063e+117
-5.9392297e+117
-5.9339231e+117
-5.9210875e+117
-5.9261587e+117
-5.9534668e+117
-5.9507532e+117
-5.9563482e+117
-5.9588838e+117
-5.9638022e+117
-5.9614774e+117
-5.966124e+117
-5.9685269e+117
-5.953906e+117
-5.9432561e+117
-5.9503516e+117
-5.9525938e+117
-5.9578827e+117
-5.9556128e+117
-5.9602518e+117
-5.9627047e+117
-5.9674121e+117
-5.9649966e+117
-5.9306763e+117
-5.9438513e+117
-5.948975e+117
-5.9355604e+117
-5.9580778e+117
-5.9534841e+117
-5.940062e+117
-5.9444289e+117
-5.8932261e+117
-5.8837312e+117
-5.8965788e+117
-5.9064683e+117
-5.908498e+117
-5.9199066e+117
-5.9296325e+117
-5.9183555e+117
-5.9680983e+117
-5.9584624e+117
-5.9483875e+117
-5.9583862e+117
-5.9823868e+117
-5.9915347e+117
-5.9292004e+117
-5.9387575e+117
-5.9489927e+117
-5.9392852e+117
-5.9635079e+117
-5.9732089e+117
-5.9748646e+117
-5.9667039e+117
-5.9765088e+117
-5.9849049e+117
-5.9998874e+117
-6.0083517e+117
-6.0163064e+117
-6.024076e+117
-5.9728924e+117
-5.9705495e+117
-5.9756197e+117
-5.9778849e+117
-5.9826023e+117
-5.9804543e+117
-5.9849865e+117
-5.9872386e+117
-5.9914615e+117
-5.9893069e+117
-5.9961544e+117
-5.9941496e+117
-5.9985842e+117
-6.0026302e+117
-6.0004455e+117
-6.0046333e+117
-5.9692275e+117
-5.9717646e+117
-5.9766593e+117
-5.974135e+117
-5.9786295e+117
-5.9813374e+117
-5.9859403e+117
-5.9833046e+117
-5.9483762e+117
-5.9621599e+117
-5.9669346e+117
-5.9527679e+117
-5.9758448e+117
-5.9713136e+117
-5.9570718e+117
-5.9613131e+117
-5.9874439e+117
-5.9901595e+117
-5.9947542e+117
-5.9920804e+117
-5.9961472e+117
-5.999012e+117
-6.0031962e+117
-6.0003374e+117
-5.9652911e+117
-5.9799265e+117
-5.9845597e+117
-5.969656e+117
-5.9926813e+117
-5.9886089e+117
-5.9737952e+117
-5.9777637e+117
-6.0084775e+117
-6.0065263e+117
-6.0128685e+117
-6.0110177e+117
-6.0151611e+117
-6.0189949e+117
-6.0169258e+117
-6.0209129e+117
-6.026885e+117
-6.0226803e+117
-6.0244926e+117
-6.0285075e+117
-6.0340005e+117
-6.0306236e+117
-6.0321026e+117
-6.035629e+117
-6.0040142e+117
-6.0070305e+117
-6.0113479e+117
-6.0082185e+117
-6.019455e+117
-6.015455e+117
-6.0160838e+117
-6.0121151e+117
-6.0041427e+117
-5.9888299e+117
-5.9925006e+117
-6.0080107e+117
-5.9812996e+117
-5.9962623e+117
-6.0003704e+117
-5.9851421e+117
-6.0114411e+117
-6.0152659e+117
-5.9995764e+117
-5.9959051e+117
-6.021929e+117
-6.0185997e+117
-6.0028775e+117
-6.0060577e+117
-6.0269463e+117
-6.0230359e+117
-6.023422e+117
-6.0195778e+117
-6.0339825e+117
-6.0305095e+117
-6.0303176e+117
-6.026856e+117
-6.1322858e+117
-6.1079631e+117
-6.2296113e+117
-6.2010151e+117
-6.2110389e+117
-6.2106901e+117
-6.1798546e+117
-6.1720526e+117
-6.1265002e+117
-6.1620941e+117
-6.1964965e+117
-5.9057725e+117
-5.97069e+117
-6.126049e+117
-6.107179e+117
-5.9350694e+117
-5.8365729e+117
-6.0103821e+117
-5.8320119e+117
-5.7252975e+117
-6.0802767e+117
-6.0162184e+117
-5.7340091e+117
-6.0621622e+117
-6.2204762e+117
-5.9076596e+117
-6.2544121e+117
-4.1003068e+117
-4.7436945e+117
-4.7784846e+117
-6.054271e+117
-5.2555475e+117
-5.4764323e+117
-5.2965149e+117
-4.9957112e+117
-5.1619883e+117
-5.4903553e+117
-5.3539704e+117
-6.4077558e+117
-5.9488833e+117
-3.7206945e+116
-4.5082743e+117
-2.4326082e+116
-1.2867131e+116
-4.2704965e+117
-4.0621719e+117
-3.8469603e+117
-4.4794876e+117
-5.9109858e+117
-5.906998e+117
-5.9190806e+117
-5.9149184e+117
-5.9272679e+117
-5.9230755e+117
-5.935356e+117
-5.931295e+117
-5.9422722e+117
-5.9388883e+117
-5.9491206e+117
-5.9456487e+117
-5.9523715e+117
-5.9557418e+117
-5.9618769e+117
-5.9588482e+117
-5.8292519e+117
-5.8376143e+117
-5.822701e+117
-5.8185677e+117
-5.8259862e+117
-5.8285165e+117
-5.8423942e+117
-5.8359721e+117
-5.7963046e+117
-5.8548484e+117
-5.8486325e+117
-5.8606298e+117
-5.8661021e+117
-5.7297493e+117
-5.8758699e+117
-5.870952e+117
-5.8855059e+117
-5.8806964e+117
-5.8944857e+117
-5.889915e+117
-5.9030827e+117
-5.8987786e+117
-5.6787171e+117
-5.7425465e+117
-5.8619012e+117
-5.8718356e+117
-5.7455739e+117
-5.6155135e+117
-5.4173549e+117
-5.6136153e+117
-5.9837859e+117
-6.0026122e+117
-5.1416634e+117
-4.8592463e+117
-5.5945294e+117
-5.6360333e+117
-6.1317224e+117
-6.2214378e+117
-6.2025642e+117
-6.104791e+117
-6.2732153e+117
-5.8030192e+117
-6.6115132e+117
-5.9752389e+117
-6.1021258e+117
-6.0473983e+117
-5.9239319e+117
-5.8290758e+117
-6.049116e+117
-5.90599e+117
-6.1057721e+117
-8.3541032e+117
-5.8092679e+117
-5.5806978e+117
-6.1941383e+117
-6.2811018e+117
-6.2648101e+117
-6.1924266e+117
-6.2730744e+117
-6.2766769e+117
-6.2750911e+117
-6.2757867e+117
-7.1603582e+117
-5.7588393e+117
-3.8530777e+117
-4.0736151e+117
-4.2938448e+117
-4.531684e+117
-5.7248657e+117
-5.7387712e+117
-5.7429004e+117
-5.7289244e+117
-5.7327547e+117
-5.7467404e+117
-5.7369286e+117
-5.7509284e+117
-5.7527165e+117
-5.7685279e+117
-5.7567814e+117
-5.7725983e+117
-5.7650246e+117
-5.7766547e+117
-5.7811127e+117
-5.7606774e+117
-5.7842626e+117
-5.7884667e+117
-5.806893e+117
-5.8024654e+117
-5.8418339e+117
-5.8209135e+117
-5.8254151e+117
-5.8464725e+117
-5.8156513e+117
-5.7925929e+117
-5.811118e+117
-5.7971038e+117
-5.8509268e+117
-5.8297042e+117
-5.8344105e+117
-5.855783e+117
-5.7586957e+117
-5.7404461e+117
-5.7545367e+117
-5.7445097e+117
-5.7687475e+117
-5.7848768e+117
-5.7889893e+117
-5.7728339e+117
-5.7519324e+117
-5.7661785e+117
-5.7481508e+117
-5.7623428e+117
-5.7765376e+117
-5.7928471e+117
-5.7805132e+117
-5.796873e+117
-5.823837e+117
-5.8008912e+117
-5.8194706e+117
-5.8050901e+117
-5.8598144e+117
-5.8383253e+117
-5.8427484e+117
-5.8643342e+117
-5.8131316e+117
-5.8319704e+117
-5.8090317e+117
-5.8278758e+117
-5.8685291e+117
-5.8468197e+117
-5.8510956e+117
-5.8728974e+117
-5.648895e+117
-5.6589677e+117
-5.6524804e+117
-5.6625815e+117
-5.6727434e+117
-5.6690644e+117
-5.6798419e+117
-5.6835603e+117
-5.6589621e+117
-5.6691132e+117
-5.6556984e+117
-5.6658253e+117
-5.6869475e+117
-5.6760397e+117
-5.6793951e+117
-5.6903628e+117
-5.635089e+117
-5.6384008e+117
-5.644961e+117
-5.648374e+117
-5.6548602e+117
-5.6583996e+117
-5.6654071e+117
-5.6690189e+117
-5.6417442e+117
-5.6517856e+117
-5.6556633e+117
-5.6456073e+117
-5.6726196e+117
-5.6765339e+117
-5.6619196e+117
-5.665775e+117
-5.6761189e+117
-5.6876474e+117
-5.691525e+117
-5.6798653e+117
-5.6835047e+117
-5.6952029e+117
-5.6991331e+117
-5.6874114e+117
-5.7161468e+117
-5.6993664e+117
-5.7121585e+117
-5.7033063e+117
-5.724061e+117
-5.7070294e+117
-5.7199533e+117
-5.7110434e+117
-5.6907351e+117
-5.702519e+117
-5.7064543e+117
-5.69456e+117
-5.701478e+117
-5.6980057e+117
-5.7099741e+117
-5.7135048e+117
-5.7144863e+117
-5.7275626e+117
-5.7315707e+117
-5.7184695e+117
-5.7256731e+117
-5.7220281e+117
-5.7352131e+117
-5.7389145e+117
-5.6347862e+117
-5.6214255e+117
-5.6311913e+117
-5.6249389e+117
-5.6409702e+117
-5.6512213e+117
-5.6549605e+117
-5.6446109e+117
-5.6419218e+117
-5.6284139e+117
-5.6382688e+117
-5.6320955e+117
-5.6481424e+117
-5.6585706e+117
-5.6623606e+117
-5.6518269e+117
-5.6766417e+117
-5.6615666e+117
-5.6726492e+117
-5.6653973e+117
-5.6839891e+117
-5.6962571e+117
-5.7004778e+117
-5.6880585e+117
-5.6843854e+117
-5.6691209e+117
-5.6804651e+117
-5.6729671e+117
-5.6919495e+117
-5.7044868e+117
-5.6960043e+117
-5.7087028e+117
-5.6065876e+117
-5.6262545e+117
-5.597863e+117
-5.6176487e+117
-5.6393227e+117
-5.6293423e+117
-5.6318185e+117
-5.6416946e+117
-5.6197816e+117
-5.6101173e+117
-5.6125779e+117
-5.6222656e+117
-5.6282047e+117
-5.6152696e+117
-5.6249874e+117
-5.6184407e+117
-5.6445685e+117
-5.6346074e+117
-5.6378511e+117
-5.6479892e+117
-5.6373423e+117
-5.6593888e+117
-5.6683241e+117
-5.6461525e+117
-5.6593439e+117
-5.6491651e+117
-5.6624865e+117
-5.6517015e+117
-5.6582329e+117
-5.6547223e+117
-5.6656154e+117
-5.6692641e+117
-5.685432e+117
-5.6704011e+117
-5.6823254e+117
-5.6735067e+117
-5.6804664e+117
-5.6926526e+117
-5.6766646e+117
-5.6886497e+117
-5.741609e+117
-5.7676107e+117
-5.7466015e+117
-5.7624225e+117
-5.7510742e+117
-5.7721794e+117
-5.7786802e+117
-5.797169e+117
-5.8034617e+117
-5.784259e+117
-5.7608165e+117
-5.7780775e+117
-5.7555402e+117
-5.772461e+117
-5.7895882e+117
-5.8092931e+117
-5.7956064e+117
-5.8156632e+117
-5.7303662e+117
-5.7590247e+117
-5.6903613e+117
-5.7098247e+117
-5.6939024e+117
-5.7062051e+117
-5.6971377e+117
-5.7153497e+117
-5.71873e+117
-5.7326281e+117
-5.7368037e+117
-5.7224822e+117
-5.7004997e+117
-5.7133729e+117
-5.7177697e+117
-5.7046659e+117
-5.7262528e+117
-5.7408881e+117
-5.7309352e+117
-5.7459288e+117
-5.7051172e+117
-5.6808914e+117
-5.7084326e+117
-5.7216666e+117
-5.7127743e+117
-5.7262827e+117
-5.7398537e+117
-5.7553413e+117
-5.7350682e+117
-5.750273e+117
-5.7212794e+117
-5.7350864e+117
-5.7169249e+117
-5.7305838e+117
-5.7443086e+117
-5.7599926e+117
-5.7647983e+117
-5.7489733e+117
-5.7654096e+117
-5.7828837e+117
-5.7885512e+117
-5.7706903e+117
-5.7755626e+117
-5.793592e+117
-5.7804574e+117
-5.798573e+117
-5.8209729e+117
-5.8269664e+117
-5.8007223e+117
-5.8065436e+117
-5.8169195e+117
-5.8117366e+117
-5.8323241e+117
-5.8377097e+117
-5.5679797e+117
-5.5841715e+117
-5.5723733e+117
-5.5815548e+117
-5.5750361e+117
-5.587575e+117
-5.5909328e+117
-5.6005729e+117
-5.6030171e+117
-5.5934478e+117
-5.5809384e+117
-5.5899662e+117
-5.5778175e+117
-5.58688e+117
-5.596082e+117
-5.6057014e+117
-5.5992146e+117
-5.6088401e+117
-5.5589014e+117
-5.5789571e+117
-5.5492063e+117
-5.5575854e+117
-5.5607562e+117
-5.5524505e+117
-5.5591741e+117
-5.5557056e+117
-5.5639518e+117
-5.5674099e+117
-5.5780019e+117
-5.5661361e+117
-5.5748394e+117
-5.5693043e+117
-5.5759608e+117
-5.5847695e+117
-5.5724692e+117
-5.5812398e+117
-5.5314538e+117
-5.548715e+117
-5.5374483e+117
-5.5459057e+117
-5.540273e+117
-5.5494549e+117
-5.5545403e+117
-5.5633725e+117
-5.566056e+117
-5.5573125e+117
-5.5547546e+117
-5.5431267e+117
-5.5515473e+117
-5.5463255e+117
-5.5601376e+117
-5.5689085e+117
-5.5633071e+117
-5.5720398e+117
-5.5217923e+117
-5.5401666e+117
-5.5173486e+117
-5.5566342e+117
-5.5837399e+117
-5.5927938e+117
-5.5961463e+117
-5.5869642e+117
-5.611816e+117
-5.6055731e+117
-5.6021726e+117
-5.6152695e+117
-5.5902543e+117
-5.5938257e+117
-5.5994967e+117
-5.6031082e+117
-5.6187028e+117
-5.6126177e+117
-5.6223962e+117
-5.6089409e+117
-5.4200979e+117
-5.4615645e+117
-5.4508661e+117
-5.4683202e+117
-5.4788014e+117
-5.4958617e+117
-5.5138917e+117
-5.503995e+117
-5.4854835e+117
-5.4452441e+117
-5.3975885e+117
-5.3829142e+117
-5.3570675e+117
-5.4817372e+117
-5.3122e+117
-5.3480255e+117
-5.3201878e+117
-5.2804045e+117
-5.2673457e+117
-5.3503345e+117
-5.4358409e+117
-5.5140652e+117
-5.5293419e+117
-5.5371604e+117
-5.5401503e+117
-5.5323969e+117
-5.5353464e+117
-5.5386223e+117
-5.5430706e+117
-5.5463579e+117
-5.5563485e+117
-5.5454116e+117
-5.5534969e+117
-5.548316e+117
-5.5545688e+117
-5.5627483e+117
-5.5511929e+117
-5.5593017e+117
-5.5242532e+117
-5.5128821e+117
-5.5212442e+117
-5.5158131e+117
-5.5218772e+117
-5.5188473e+117
-5.5273197e+117
-5.5304522e+117
-5.5023354e+117
-5.4850379e+117
-5.4715072e+117
-5.4770172e+117
-5.4906705e+117
-5.5082544e+117
-5.486148e+117
-5.4816406e+117
-5.4956524e+117
-5.500702e+117
-5.5135311e+117
-5.5246193e+117
-5.533312e+117
-5.5362754e+117
-5.5273358e+117
-5.5300136e+117
-5.539046e+117
-5.5416616e+117
-5.5325029e+117
-5.5184572e+117
-5.4583608e+117
-5.4544107e+117
-5.4679549e+117
-5.4720536e+117
-5.4503118e+117
-5.4450667e+117
-5.4582461e+117
-5.4635659e+117
-5.5525139e+117
-5.5415043e+117
-5.5493024e+117
-5.5445829e+117
-5.557627e+117
-5.5609052e+117
-5.5658608e+117
-5.569189e+117
-5.5582534e+117
-5.5473649e+117
-5.5553981e+117
-5.550111e+117
-5.5722258e+117
-5.5638346e+117
-5.5667899e+117
-5.5752329e+117
-5.4993851e+117
-5.5079221e+117
-5.5113924e+117
-5.5029204e+117
-5.5065235e+117
-5.5148757e+117
-5.5098754e+117
-5.5183106e+117
-5.4960929e+117
-5.4790213e+117
-5.4888032e+117
-5.4711714e+117
-5.4653544e+117
-5.4570645e+117
-5.4855294e+117
-5.4949892e+117
-5.4980522e+117
-5.4889306e+117
-5.4924335e+117
-5.5012737e+117
-5.5046545e+117
-5.495882e+117
-5.4815178e+117
-5.4633639e+117
-5.4740448e+117
-5.4546574e+117
-5.4390277e+117
-5.4487316e+117
-5.5146843e+117
-5.5035399e+117
-5.5117122e+117
-5.5065788e+117
-5.5203355e+117
-5.5288471e+117
-5.5316674e+117
-5.5232734e+117
-5.5209117e+117
-5.5096074e+117
-5.5176819e+117
-5.5129559e+117
-5.5261553e+117
-5.5345515e+117
-5.5293665e+117
-5.5377234e+117
-5.5160304e+117
-5.5238996e+117
-5.5273099e+117
-5.5194965e+117
-5.5264134e+117
-5.5228531e+117
-5.5306975e+117
-5.5342803e+117
-5.5406482e+117
-5.5439486e+117
-5.5323303e+117
-5.5357117e+117
-5.5425959e+117
-5.5390264e+117
-5.5472671e+117
-5.5507815e+117
-5.4197149e+117
-5.4086954e+117
-5.4239047e+117
-5.4340782e+117
-5.4431137e+117
-5.4292275e+117
-5.438635e+117
-5.4520124e+117
-5.3854596e+117
-5.3752965e+117
-5.3885357e+117
-5.3985847e+117
-5.3647774e+117
-5.3516703e+117
-5.3655338e+117
-5.3780864e+117
-5.3938806e+117
-5.3791693e+117
-5.3914205e+117
-5.4053835e+117
-5.4114218e+117
-5.4015052e+117
-5.4151894e+117
-5.4248833e+117
-5.4059958e+117
-5.4023747e+117
-5.4150985e+117
-5.4189545e+117
-5.3980707e+117
-5.3924816e+117
-5.4055618e+117
-5.4109539e+117
-5.4316152e+117
-5.4182566e+117
-5.4235914e+117
-5.4367664e+117
-5.4406546e+117
-5.4274302e+117
-5.4314137e+117
-5.4446598e+117
-5.5967137e+117
-5.6060449e+117
-5.6092617e+117
-5.599885e+117
-5.6067435e+117
-5.6030521e+117
-5.6124261e+117
-5.6161397e+117
-5.6285842e+117
-5.6155978e+117
-5.6253534e+117
-5.6187979e+117
-5.6257662e+117
-5.6357068e+117
-5.6219848e+117
-5.6318835e+117
-5.5862802e+117
-5.5743647e+117
-5.5828259e+117
-5.5777642e+117
-5.591636e+117
-5.6006797e+117
-5.6041291e+117
-5.5951025e+117
-5.5838962e+117
-5.5925108e+117
-5.5808418e+117
-5.5894045e+117
-5.598218e+117
-5.6072935e+117
-5.6013703e+117
-5.6104717e+117
-5.6228724e+117
-5.6099148e+117
-5.6193317e+117
-5.6133829e+117
-5.6290202e+117
-5.6389921e+117
-5.6425618e+117
-5.6325759e+117
-5.619761e+117
-5.6292821e+117
-5.6165526e+117
-5.6260748e+117
-5.6357599e+117
-5.6457926e+117
-5.6390122e+117
-5.6490366e+117
-5.5618678e+117
-5.5701065e+117
-5.5731023e+117
-5.5647723e+117
-5.567757e+117
-5.5761588e+117
-5.5712583e+117
-5.5796993e+117
-5.590675e+117
-5.5787369e+117
-5.5875765e+117
-5.581782e+117
-5.5884717e+117
-5.5848585e+117
-5.5938323e+117
-5.5974988e+117
-5.4854815e+117
-5.3524582e+117
-5.1528101e+117
-5.3493635e+117
-5.4798718e+117
-5.4791468e+117
-5.3482388e+117
-5.3509879e+117
-5.4854251e+117
-4.8818119e+117
-5.0849828e+117
-5.2225669e+117
-5.2258093e+117
-5.0853665e+117
-5.363428e+117
-5.3571129e+117
-5.4902215e+117
-5.5000488e+117
-4.6039482e+117
-4.8143902e+117
-4.8109708e+117
-4.9522355e+117
-4.952496e+117
-5.0913309e+117
-5.2310637e+117
-5.2385161e+117
-5.0944118e+117
-5.5144385e+117
-5.3731558e+117
-5.3848165e+117
-5.5286252e+117
-5.2588102e+117
-5.4396405e+117
-5.5210402e+117
-4.752206e+117
-4.9353899e+117
-4.8881035e+117
-4.9971993e+117
-5.0149233e+117
-4.8888902e+117
-4.3333721e+117
-4.5377454e+117
-4.5303911e+117
-4.669196e+117
-4.6738405e+117
-4.71991e+117
-4.9571534e+117
-4.8151414e+117
-4.8147733e+117
-4.9600347e+117
-5.2365955e+117
-5.2760267e+117
-5.2423901e+117
-5.2000535e+117
-5.1440405e+117
-5.1586936e+117
-5.1954543e+117
-5.1090958e+117
-5.0964636e+117
-5.1876575e+117
-5.0892032e+117
-5.1032692e+117
-5.1099035e+117
-5.2597059e+117
-5.2488163e+117
-5.3971024e+117
-5.5456073e+117
-5.5660792e+117
-5.4128048e+117
-4.0905124e+117
-4.2742593e+117
-4.3994331e+117
-4.39493e+117
-4.2689308e+117
-4.533952e+117
-4.5361971e+117
-4.67307e+117
-4.6722031e+117
-4.6861196e+117
-4.8735646e+117
-4.8651003e+117
-5.003458e+117
-5.0950163e+117
-5.0979301e+117
-4.999761e+117
-5.1000908e+117
-5.1039908e+117
-4.9987024e+117
-5.0018659e+117
-5.1065439e+117
-5.0022417e+117
-4.9657289e+117
-4.8167343e+117
-4.8184767e+117
-4.9708467e+117
-5.3267836e+117
-5.3184081e+117
-5.3333434e+117
-5.3425315e+117
-5.3084386e+117
-5.2936264e+117
-5.308599e+117
-5.3230704e+117
-5.3374058e+117
-5.3226753e+117
-5.336724e+117
-5.3506398e+117
-5.3610204e+117
-5.3470371e+117
-5.3567619e+117
-5.3711228e+117
-5.2846272e+117
-5.2783269e+117
-5.3075713e+117
-5.3000833e+117
-5.2701929e+117
-5.2570989e+117
-5.2909272e+117
-5.2768297e+117
-5.2334046e+117
-5.2011866e+117
-5.2099442e+117
-5.2451873e+117
-5.2190223e+117
-5.214554e+117
-5.2519886e+117
-5.2572972e+117
-5.2298677e+117
-5.225779e+117
-5.2692394e+117
-5.2658528e+117
-5.2226834e+117
-5.2214568e+117
-5.2602856e+117
-5.2627973e+117
-5.2909795e+117
-5.287964e+117
-5.3118568e+117
-5.3153108e+117
-5.2939916e+117
-5.3185629e+117
-5.3220239e+117
-5.297402e+117
-5.3358465e+117
-5.3317696e+117
-5.3483995e+117
-5.3531658e+117
-5.3782528e+117
-5.3634011e+117
-5.3687308e+117
-5.3837585e+117
-5.3880779e+117
-5.3728338e+117
-5.3762703e+117
-5.3915482e+117
-5.3570468e+117
-5.3394102e+117
-5.342914e+117
-5.3604964e+117
-5.4474704e+117
-5.4342143e+117
-5.4367125e+117
-5.450115e+117
-5.4214633e+117
-5.4080544e+117
-5.4096495e+117
-5.4235362e+117
-5.4534571e+117
-5.4398755e+117
-5.4442213e+117
-5.4579762e+117
-5.5045076e+117
-5.4893936e+117
-5.4928608e+117
-5.5083899e+117
-5.474796e+117
-5.4609118e+117
-5.4637917e+117
-5.4779301e+117
-5.4721941e+117
-5.4672868e+117
-5.4816768e+117
-5.4868703e+117
-5.5127709e+117
-5.4968331e+117
-5.5022492e+117
-5.5184549e+117
-5.3443245e+117
-5.3620472e+117
-5.3632019e+117
-5.3932506e+117
-5.3777846e+117
-5.3789792e+117
-5.3944446e+117
-5.2306616e+117
-5.2702993e+117
-5.2984416e+117
-5.3232342e+117
-5.1272545e+117
-5.1188514e+117
-5.2709097e+117
-5.2832134e+117
-5.6341682e+117
-5.6221073e+117
-5.6316339e+117
-5.624645e+117
-5.6413531e+117
-5.6513396e+117
-5.6538038e+117
-5.6438337e+117
-5.6302631e+117
-5.6396807e+117
-5.6272292e+117
-5.6366882e+117
-5.6463171e+117
-5.6563594e+117
-5.6493531e+117
-5.6594344e+117
-5.5973012e+117
-5.6059277e+117
-5.608892e+117
-5.6003097e+117
-5.6061004e+117
-5.6031442e+117
-5.6117016e+117
-5.6146641e+117
-5.6266236e+117
-5.6146772e+117
-5.623686e+117
-5.6176339e+117
-5.6234667e+117
-5.632589e+117
-5.6204406e+117
-5.6295082e+117
-5.5974245e+117
-5.5862348e+117
-5.5948666e+117
-5.5887721e+117
-5.6037241e+117
-5.6127944e+117
-5.6153006e+117
-5.6062583e+117
-5.6031848e+117
-5.5913856e+117
-5.6000317e+117
-5.5945261e+117
-5.6088801e+117
-5.6179445e+117
-5.6119804e+117
-5.6210101e+117
-5.6328897e+117
-5.6423306e+117
-5.6454125e+117
-5.6358693e+117
-5.6622221e+117
-5.6520863e+117
-5.6552194e+117
-5.6654208e+117
-5.6387938e+117
-5.6419306e+117
-5.6483964e+117
-5.6515727e+117
-5.6685327e+117
-5.6615173e+117
-5.6718954e+117
-5.6582325e+117
-5.5738089e+117
-5.5822542e+117
-5.5845999e+117
-5.5762796e+117
-5.5785741e+117
-5.5809612e+117
-5.5867496e+117
-5.5890992e+117
-5.6015894e+117
-5.5909379e+117
-5.5994914e+117
-5.5931331e+117
-5.5976284e+117
-5.6062587e+117
-5.5951916e+117
-5.6037109e+117
-5.5674134e+117
-5.5553755e+117
-5.564998e+117
-5.5576832e+117
-5.5698833e+117
-5.5723458e+117
-5.5428798e+117
-5.6081972e+117
-5.6167883e+117
-5.6190373e+117
-5.6103431e+117
-5.612511e+117
-5.6212993e+117
-5.6151388e+117
-5.6240089e+117
-5.6372977e+117
-5.6256954e+117
-5.6348806e+117
-5.628024e+117
-5.6331556e+117
-5.6426277e+117
-5.6303508e+117
-5.6397349e+117
-5.6640733e+117
-5.6745161e+117
-5.6772635e+117
-5.6668063e+117
-5.6443165e+117
-5.6540297e+117
-5.6566968e+117
-5.6468476e+117
-5.6493574e+117
-5.6592809e+117
-5.6522963e+117
-5.6622421e+117
-5.6724281e+117
-5.6693994e+117
-5.6799016e+117
-5.6830144e+117
-5.6175993e+117
-5.6265004e+117
-5.6356815e+117
-5.6451872e+117
-5.6548475e+117
-5.6648057e+117
-5.6856346e+117
-5.6750174e+117
-5.5631045e+117
-5.5523355e+117
-5.5605498e+117
-5.5548884e+117
-5.5690757e+117
-5.5775358e+117
-5.5800211e+117
-5.5715902e+117
-5.5604008e+117
-5.5686143e+117
-5.5574367e+117
-5.5656569e+117
-5.5741327e+117
-5.5826335e+117
-5.5771724e+117
-5.5857325e+117
-5.5572044e+117
-5.5448727e+117
-5.5544039e+117
-5.5475182e+117
-5.5531031e+117
-5.5502877e+117
-5.5599821e+117
-5.562805e+117
-5.5380883e+117
-5.5326479e+117
-5.5346794e+117
-5.5438496e+117
-5.5462861e+117
-5.5369585e+117
-5.5394945e+117
-5.5488918e+117
-5.54225e+117
-5.5517591e+117
-5.5275263e+117
-5.5227367e+117
-5.5629958e+117
-5.5712564e+117
-5.5742088e+117
-5.5658623e+117
-5.5686217e+117
-5.5715517e+117
-5.5770383e+117
-5.5800096e+117
-5.5885413e+117
-5.5915527e+117
-5.5799303e+117
-5.5829377e+117
-5.5887547e+117
-5.5857617e+117
-5.5944241e+117
-5.5973957e+117
-5.7678482e+117
-5.7824884e+117
-5.7862908e+117
-5.7716092e+117
-5.7789528e+117
-5.7751451e+117
-5.7898704e+117
-5.793742e+117
-5.8177771e+117
-5.7971679e+117
-5.8139083e+117
-5.8009856e+117
-5.8086199e+117
-5.8256223e+117
-5.8046228e+117
-5.8215693e+117
-5.7723655e+117
-5.7547678e+117
-5.7691057e+117
-5.7578758e+117
-5.7835228e+117
-5.7999077e+117
-5.8032514e+117
-5.7868025e+117
-5.7792308e+117
-5.7609515e+117
-5.7755032e+117
-5.7646213e+117
-5.7900586e+117
-5.8066496e+117
-5.7938519e+117
-5.8105139e+117
-5.8387903e+117
-5.8162477e+117
-5.8351528e+117
-5.8197031e+117
-5.8762606e+117
-5.8543734e+117
-5.8580592e+117
-5.8800305e+117
-5.8271088e+117
-5.8463175e+117
-5.8231666e+117
-5.8423522e+117
-5.8837411e+117
-5.861643e+117
-5.8657927e+117
-5.8880073e+117
-5.8305372e+117
-5.8498085e+117
-5.85394e+117
-5.8345015e+117
-5.8916947e+117
-5.8735539e+117
-5.8693838e+117
-5.8959295e+117
-5.8383732e+117
-5.8424899e+117
-5.8578971e+117
-5.8620039e+117
-5.8999688e+117
-5.8817401e+117
-5.9042161e+117
-5.8775163e+117
-5.8455472e+117
-5.8651002e+117
-5.8684196e+117
-5.848771e+117
-5.8551448e+117
-5.8518027e+117
-5.8714211e+117
-5.8747346e+117
-5.9105215e+117
-5.8848372e+117
-5.9073028e+117
-5.8880642e+117
-5.8945586e+117
-5.9172642e+117
-5.8910844e+117
-5.9136647e+117
-5.7937178e+117
-5.8086643e+117
-5.8116252e+117
-5.7966427e+117
-5.8018944e+117
-5.7992223e+117
-5.8142027e+117
-5.8168518e+117
-5.8437422e+117
-5.8236571e+117
-5.840834e+117
-5.8265727e+117
-5.8319281e+117
-5.8492386e+117
-5.8291757e+117
-5.8464567e+117
-5.7998751e+117
-5.7818449e+117
-5.7966873e+117
-5.7849647e+117
-5.8115977e+117
-5.8286048e+117
-5.8317488e+117
-5.8147357e+117
-5.8060111e+117
-5.7878873e+117
-5.8027849e+117
-5.7910768e+117
-5.8176976e+117
-5.8347971e+117
-5.8209651e+117
-5.8381076e+117
-5.8578346e+117
-5.8775036e+117
-5.8806697e+117
-5.860797e+117
-5.9007023e+117
-5.8974791e+117
-5.9202917e+117
-5.9236232e+117
-5.8635766e+117
-5.8664165e+117
-5.8835377e+117
-5.8863513e+117
-5.9266517e+117
-5.9065773e+117
-5.9296857e+117
-5.9036189e+117
-5.7450305e+117
-5.7292929e+117
-5.7418858e+117
-5.7323718e+117
-5.7545689e+117
-5.7683247e+117
-5.7713927e+117
-5.7576568e+117
-5.7511034e+117
-5.7353124e+117
-5.7479538e+117
-5.7385487e+117
-5.7605779e+117
-5.7743451e+117
-5.7636969e+117
-5.77746e+117
-5.684854e+117
-5.6954475e+117
-5.6983051e+117
-5.687624e+117
-5.690347e+117
-5.7011355e+117
-5.7043554e+117
-5.6935319e+117
-5.7061929e+117
-5.7176672e+117
-5.7206392e+117
-5.7091017e+117
-5.7119674e+117
-5.7235731e+117
-5.7268474e+117
-5.7152445e+117
-5.6961764e+117
-5.7070355e+117
-5.7098502e+117
-5.6990182e+117
-5.7179135e+117
-5.729452e+117
-5.7321247e+117
-5.7206298e+117
-5.7410493e+117
-5.7535506e+117
-5.7563857e+117
-5.7437679e+117
-5.7490466e+117
-5.7463409e+117
-5.7589708e+117
-5.7616054e+117
-5.7800959e+117
-5.7830014e+117
-5.7662242e+117
-5.7690926e+117
-5.7743225e+117
-5.7716505e+117
-5.7855937e+117
-5.7882443e+117
-5.7191765e+117
-5.7041085e+117
-5.7162034e+117
-5.7069984e+117
-5.7284225e+117
-5.7416738e+117
-5.7446644e+117
-5.7313746e+117
-5.7131704e+117
-5.7253946e+117
-5.7098115e+117
-5.7220093e+117
-5.7342607e+117
-5.7476857e+117
-5.7377661e+117
-5.7512686e+117
-5.6723602e+117
-5.6828188e+117
-5.6861905e+117
-5.6756375e+117
-5.6788087e+117
-5.6894069e+117
-5.6928052e+117
-5.6822046e+117
-5.7081746e+117
-5.693432e+117
-5.7047337e+117
-5.6968422e+117
-5.7149744e+117
-5.7000744e+117
-5.7114757e+117
-5.7035266e+117
-5.6741485e+117
-5.6613018e+117
-5.6714959e+117
-5.6638392e+117
-5.6818614e+117
-5.692886e+117
-5.6956787e+117
-5.6845778e+117
-5.679981e+117
-5.6664372e+117
-5.6768224e+117
-5.6695636e+117
-5.6872889e+117
-5.6984711e+117
-5.6905349e+117
-5.7017835e+117
-5.7161515e+117
-5.7284285e+117
-5.732067e+117
-5.7196519e+117
-5.7230114e+117
-5.7354824e+117
-5.72655e+117
-5.7390671e+117
-5.7544758e+117
-5.7581973e+117
-5.740902e+117
-5.7445734e+117
-5.751708e+117
-5.7480129e+117
-5.7617232e+117
-5.7654662e+117
-3.8616831e+117
-4.0329017e+117
-4.1459288e+117
-4.1495663e+117
-4.0286946e+117
-4.2721511e+117
-4.3976679e+117
-4.3953413e+117
-4.2692053e+117
-4.6765314e+117
-4.5330132e+117
-4.6743763e+117
-4.5320234e+117
-4.9782923e+117
-4.8232174e+117
-4.8286884e+117
-4.9853246e+117
-3.6384325e+117
-3.8047423e+117
-3.8017886e+117
-3.9143102e+117
-3.916531e+117
-4.0288616e+117
-4.0271067e+117
-4.1423238e+117
-4.1442918e+117
-4.265815e+117
-4.3937072e+117
-4.3927034e+117
-4.2638126e+117
-4.6820786e+117
-4.6798149e+117
-4.5320864e+117
-4.532648e+117
-3.8022703e+117
-3.91284e+117
-3.9111842e+117
-3.799557e+117
-4.0259177e+117
-4.1414236e+117
-4.140912e+117
-4.0251747e+117
-4.2624512e+117
-4.2616011e+117
-4.3896507e+117
-4.3910759e+117
-4.0230211e+117
-4.1393975e+117
-4.1392436e+117
-4.0227534e+117
-5.7993985e+117
-5.8082748e+117
-5.7234136e+117
-5.7232699e+117
-5.730906e+117
-5.6030548e+117
-5.599302e+117
-5.6087577e+117
-5.7381029e+117
-5.7254228e+117
-5.6106454e+117
-5.6029841e+117
-5.7737991e+117
-5.7543706e+117
-5.63681e+117
-5.6223453e+117
-5.795203e+117
-5.6556463e+117
-5.6724933e+117
-5.8155928e+117
-5.8484373e+117
-5.9613702e+117
-5.8574646e+117
-5.8369301e+117
-5.8272747e+117
-5.8266219e+117
-5.8364599e+117
-5.9270714e+117
-5.9423704e+117
-5.9267657e+117
-5.9415007e+117
-5.9708727e+117
-5.882456e+117
-6.0048672e+117
-6.0374291e+117
-5.9078069e+117
-6.064673e+117
-6.1545456e+117
-6.215122e+117
-6.2481687e+117
-6.1702775e+117
-6.0909573e+117
-6.0704721e+117
-6.1869383e+117
-6.1892961e+117
-6.1141196e+117
-6.1995447e+117
-6.1779802e+117
-6.0838384e+117
-6.1578263e+117
-5.9969022e+117
-6.0107487e+117
-6.0334932e+117
-6.005944e+117
-6.2099812e+117
-6.1219802e+117
-6.1882978e+117
-6.0352347e+117
-6.0761545e+117
-6.1781953e+117
-6.2391661e+117
-6.2312437e+117
-6.2341474e+117
-6.2372827e+117
-6.2271438e+117
-6.2387026e+117
-6.2397892e+117
-6.2372668e+117
-6.2386436e+117
-6.2168947e+117
-6.2018494e+117
-6.2200401e+117
-6.2372111e+117
-6.215851e+117
-6.2012499e+117
-6.2001131e+117
-6.2384412e+117
-6.246979e+117
-6.2294051e+117
-6.2491418e+117
-6.2588227e+117
-6.2781674e+117
-6.2738349e+117
-6.2363943e+117
-6.2809324e+117
-6.3017049e+117
-6.307151e+117
-6.2275734e+117
-6.2457312e+117
-6.2371353e+117
-6.2281865e+117
-6.2429624e+117
-6.2258259e+117
-6.250653e+117
-6.2698142e+117
-6.2716459e+117
-6.2580807e+117
-6.2494915e+117
-6.2401691e+117
-6.144338e+117
-6.0880283e+117
-6.1258572e+117
-6.0153352e+117
-6.0825715e+117
-5.9681492e+117
-5.9205986e+117
-5.8400826e+117
-6.0648391e+117
-6.003961e+117
-5.9083612e+117
-5.8393656e+117
-6.1505613e+117
-6.1450636e+117
-5.8573093e+117
-6.0384917e+117
-6.1871459e+117
-6.198063e+117
-6.1844107e+117
-5.2998232e+117
-6.651771e+117
-6.3108209e+117
-5.1836117e+117
-6.2378822e+117
-5.1110101e+117
-6.0914231e+117
-4.0890443e+117
-1.1616431e+117
-1.0195189e+117
-3.8427765e+117
-6.1426776e+117
-6.1192367e+117
-5.9933042e+117
-5.82244e+117
-6.1481585e+117
-6.1778148e+117
-6.2047876e+117
-6.2054901e+117
-5.7802611e+117
-6.1331534e+117
-6.2008731e+117
-5.2723098e+117
-1.7823417e+117
-5.1439119e+117
-2.4351902e+117
-6.1391219e+117
-6.1409665e+117
-2.371331e+117
-2.6125638e+117
-5.5107581e+117
-6.3828519e+117
-5.8234745e+117
-5.8958573e+117
-6.0468609e+117
-6.3368531e+117
-5.967404e+117
-6.035173e+117
-6.0417853e+117
-6.1000777e+117
-6.1895435e+117
-6.3901604e+117
-6.1970841e+117
-5.9471806e+117
-6.2337271e+117
-6.1729503e+117
-5.5507583e+117
-6.4925488e+117
-6.1639803e+117
-4.9799081e+116
-6.2198411e+116
-5.6681124e+116
-5.7050931e+116
-6.2355102e+117
-6.1868856e+117
-6.2492322e+117
-6.2831856e+117
-6.2252706e+117
-6.1908269e+117
-6.8852475e+116
-2.5786588e+117
-5.4182357e+117
-6.6079684e+117
-5.5042457e+117
-4.6064042e+117
-3.8004001e+117
-6.3923521e+117
-6.0238645e+117
-5.6012523e+117
-5.6639955e+117
-6.3172049e+117
-6.2514385e+117
-6.0821072e+117
-6.199329e+117
-5.911718e+117
-5.9234233e+117
-3.7424586e+117
-3.9147664e+117
-6.2923472e+117
-6.1195536e+117
-4.4988749e+117
-4.2745913e+117
-4.457228e+117
-4.4615588e+117
-4.6017266e+117
-4.6007838e+117
-4.744773e+117
-4.7418825e+117
-4.7165665e+117
-4.7174371e+117
-4.6145157e+117
-4.7661044e+117
-4.4704895e+117
-4.3385654e+117
-4.2245849e+117
-4.061368e+117
-4.2213102e+117
-4.3363073e+117
-4.470163e+117
-4.6169055e+117
-4.7720016e+117
-4.9667886e+117
-4.9574401e+117
-3.8467443e+117
-4.0044612e+117
-4.0076197e+117
-4.1151108e+117
-4.113008e+117
-4.3408407e+117
-4.2241232e+117
-4.2228144e+117
-4.3403813e+117
-5.8725975e+117
-5.7210311e+117
-5.8231829e+117
-6.0144596e+117
-5.9629691e+117
-5.5678638e+117
-6.1412056e+117
-6.0900469e+117
-5.8391358e+117
-5.825831e+117
-5.9343747e+117
-5.8216168e+117
-5.6454929e+117
-5.8255307e+117
-5.9460481e+117
-5.9413706e+117
-5.9651892e+117
-5.3982021e+117
-5.6043656e+117
-5.5859295e+117
-5.7197315e+117
-5.7448502e+117
-5.9586551e+117
-5.8394545e+117
-5.8698813e+117
-5.9930361e+117
-5.1346895e+117
-5.345848e+117
-5.3703284e+117
-5.525472e+117
-5.4929385e+117
-5.4074985e+117
-5.4108817e+117
-5.6330243e+117
-5.7747055e+117
-5.6741358e+117
-5.9104567e+117
-6.0379345e+117
-6.1926079e+117
-6.0647707e+117
-5.9210078e+117
-5.7662635e+117
-5.6091797e+117
-5.4501982e+117
-5.4677983e+117
-5.6378663e+117
-5.9677754e+117
-5.809104e+117
-5.6429878e+117
-5.4742892e+117
-6.0123079e+117
-5.8511896e+117
-5.6814964e+117
-5.5063342e+117
-5.325964e+117
-5.5003337e+117
-5.53237e+117
-5.5913918e+117
-5.6261149e+117
-5.3016601e+117
-5.3269078e+117
-5.8921e+117
-5.7174432e+117
-5.5294503e+117
-5.3358074e+117
-5.9303419e+117
-5.750582e+117
-5.5570978e+117
-5.3569049e+117
-5.143648e+117
-5.1576529e+117
-5.7815621e+117
-5.5828306e+117
-5.3738344e+117
-5.1653278e+117
-5.8107026e+117
-5.6074938e+117
-5.3939659e+117
-5.1804169e+117
-5.6311522e+117
-5.6551027e+117
-6.1003636e+117
-6.0612554e+117
-6.0319012e+117
-6.012025e+117
-6.018069e+117
-6.1104696e+117
-6.0789724e+117
-6.0921839e+117
-6.1089311e+117
-6.0321571e+117
-6.0678499e+117
-6.1533236e+117
-6.1448281e+117
-6.1830016e+117
-6.1491567e+117
-6.2327578e+117
-6.2818013e+117
-6.1999538e+117
-4.5132173e+117
-4.508034e+117
-4.7356589e+117
-4.0732174e+117
-5.6799314e+117
-5.7704341e+117
-5.7456875e+117
-5.5105593e+117
-5.9907659e+117
-5.9771109e+117
-5.0870708e+117
-5.5110803e+117
-5.7441601e+117
-5.6943691e+117
-5.9659634e+117
-5.7508238e+117
-5.5546763e+117
-6.0031385e+117
-5.9699733e+117
-6.0731375e+117
-5.9207877e+117
-5.7976877e+117
-5.7997654e+117
-5.6129055e+117
-5.1314402e+117
-4.9403905e+117
-5.1574315e+117
-5.4455401e+117
-4.6368024e+117
-4.5136951e+117
-4.901616e+117
-5.1364994e+117
-3.2759782e+117
-3.4913359e+117
-4.2912977e+117
-4.5530379e+117
-4.1060835e+117
-3.7632485e+117
-6.1825552e+117
-6.1907063e+117
-6.1637165e+117
-6.1781113e+117
-6.1744003e+117
-6.1439431e+117
-6.1466909e+117
-6.1491746e+117
-6.1254529e+117
-6.1048285e+117
-6.0530675e+117
-6.1029927e+117
-6.069436e+117
-6.1056898e+117
-6.2192283e+117
-6.1350293e+117
-5.7378386e+117
-4.3821337e+117
-9.0272159e+116
-6.0959116e+117
-5.7491592e+117
-6.1135139e+117
-5.9825525e+117
-4.8676005e+117
-5.8240964e+117
-5.5156298e+117
-4.1050095e+117
-3.851208e+117
-4.0307691e+117
-2.2368461e+116
-3.2842233e+117
-3.0077753e+117
-2.8517701e+116
-3.6664328e+117
-3.5889686e+117
-3.983496e+117
-4.4548223e+117
-6.0610706e+117
-6.126418e+117
-6.152923e+117
-6.0955666e+117
-4.1426749e+117
-7.7667525e+116
-6.1541475e+117
-5.7753892e+117
-5.8119004e+117
-4.7031753e+117
-4.7434385e+117
-6.7482087e+117
-4.9334423e+117
-4.8118882e+117
-4.7693802e+117
-4.7371069e+117
-4.5843144e+117
-4.5694071e+117
-1.1443669e+117
-9.0842754e+116
-3.9889595e+117
-3.608381e+117
-1.9397832e+116
-1.0499313e+117
-5.7846343e+117
-5.6535951e+117
-5.736473e+117
-5.7042543e+117
-5.7517192e+117
-5.8637941e+117
-5.7413545e+117
-5.8553401e+117
-5.7299197e+117
-5.9887523e+117
-5.9962841e+117
-5.5985913e+117
-5.4075356e+117
-5.610255e+117
-5.1344532e+117
-4.8489159e+117
-5.0846397e+117
-5.2549477e+117
-5.4230836e+117
-5.5114046e+117
-5.4362039e+117
-5.5207735e+117
-5.6627349e+117
-5.6209607e+117
-5.6583665e+117
-5.6163829e+117
-5.7509565e+117
-5.7002809e+117
-5.6517459e+117
-5.6096782e+117
-5.6432584e+117
-5.6016295e+117
-5.6941723e+117
-5.6857934e+117
-5.7374877e+117
-5.7459324e+117
-5.8123203e+117
-5.817335e+117
-5.8082667e+117
-5.8024407e+117
-5.8402194e+117
-5.7927476e+117
-5.7937343e+117
-5.8145735e+117
-5.8122083e+117
-5.8427381e+117
-5.8562907e+117
-5.8572185e+117
-5.8421613e+117
-5.8406543e+117
-5.8567972e+117
-5.8555241e+117
-5.8380952e+117
-5.8350768e+117
-5.8304156e+117
-5.8526604e+117
-5.8460933e+117
-5.620197e+117
-5.7078967e+117
-5.6797757e+117
-5.7500742e+117
-5.7214319e+117
-5.7827121e+117
-5.8071957e+117
-5.8233142e+117
-5.7992122e+117
-5.7506113e+117
-5.7748272e+117
-5.7919942e+117
-5.7674152e+117
-5.8152482e+117
-5.7985233e+117
-5.8299811e+117
-5.8456991e+117
-5.6616492e+117
-5.7554588e+117
-5.7317799e+117
-5.7742023e+117
-5.7983451e+117
-5.8381365e+117
-5.8622385e+117
-5.8740155e+117
-5.8501715e+117
-5.8122636e+117
-5.8362181e+117
-5.8500035e+117
-5.8259619e+117
-5.8837995e+117
-5.8955778e+117
-5.8582598e+117
-5.8718921e+117
-5.8179641e+117
-5.8886766e+117
-5.8786861e+117
-5.9024369e+117
-5.9123542e+117
-5.8593507e+117
-5.8831431e+117
-5.8930558e+117
-5.8693289e+117
-5.9340836e+117
-5.9239094e+117
-5.9145674e+117
-5.90466e+117
-5.9514907e+117
-5.9425314e+117
-5.8200829e+117
-5.8521006e+117
-5.8027107e+117
-5.8339789e+117
-5.8679666e+117
-5.8766942e+117
-5.8495808e+117
-5.859398e+117
-5.8364617e+117
-5.8681967e+117
-5.8528713e+117
-5.8850688e+117
-5.8932532e+117
-5.8845026e+117
-5.9011686e+117
-5.9089561e+117
-5.8615438e+117
-5.8516766e+117
-5.8798587e+117
-5.871116e+117
-5.896834e+117
-5.8881668e+117
-5.9047722e+117
-5.9125617e+117
-5.8433562e+117
-5.8591136e+117
-5.8672352e+117
-5.849608e+117
-5.8573713e+117
-5.8754576e+117
-5.882325e+117
-5.8640584e+117
-5.8660089e+117
-5.8564474e+117
-5.8708873e+117
-5.8607881e+117
-5.8837418e+117
-5.8753637e+117
-5.8881718e+117
-5.8804886e+117
-5.892029e+117
-5.9004667e+117
-5.8961561e+117
-5.9039609e+117
-5.8712116e+117
-5.889723e+117
-5.8976484e+117
-5.8789233e+117
-5.9110478e+117
-5.9082776e+117
-5.9158595e+117
-5.9179118e+117
-5.9109112e+117
-5.9044602e+117
-5.8855003e+117
-5.8911865e+117
-5.9193527e+117
-5.9156999e+117
-5.9226015e+117
-5.9260181e+117
-5.9320511e+117
-5.9287791e+117
-5.9347565e+117
-5.9378749e+117
-5.9130068e+117
-5.8993999e+117
-5.9241547e+117
-5.9225197e+117
-5.9289937e+117
-5.9302085e+117
-5.9358566e+117
-5.9348945e+117
-5.9405788e+117
-5.941273e+117
-5.8964288e+117
-5.9166817e+117
-5.9224962e+117
-5.9018566e+117
-5.9330091e+117
-5.9278502e+117
-5.9070814e+117
-5.9120865e+117
-5.9432094e+117
-5.9401195e+117
-5.9457623e+117
-5.9486192e+117
-5.9536003e+117
-5.9508554e+117
-5.9557881e+117
-5.9584193e+117
-5.9357345e+117
-5.9245636e+117
-5.9463793e+117
-5.9458295e+117
-5.9510914e+117
-5.9514326e+117
-5.9562077e+117
-5.9559781e+117
-5.9607342e+117
-5.9608429e+117
-5.9167331e+117
-5.9378409e+117
-5.9427357e+117
-5.9214688e+117
-5.9518537e+117
-5.9473813e+117
-5.9260016e+117
-5.9303385e+117
-5.867228e+117
-5.8809113e+117
-5.9046482e+117
-5.8931677e+117
-5.9433977e+117
-5.9740249e+117
-5.9335992e+117
-5.9645119e+117
-5.9840512e+117
-5.979243e+117
-5.9884676e+117
-5.9927801e+117
-5.9242123e+117
-5.955437e+117
-5.9144478e+117
-5.9454718e+117
-5.9603854e+117
-5.9654592e+117
-5.9748683e+117
-5.9701676e+117
-5.952321e+117
-5.9825578e+117
-5.9611405e+117
-5.9912082e+117
-6.0012868e+117
-5.9968049e+117
-6.0053938e+117
-6.0094221e+117
-6.0132003e+117
-6.0173656e+117
-6.0211082e+117
-6.0247023e+117
-5.9630628e+117
-5.968026e+117
-5.9727092e+117
-5.9773766e+117
-5.9817745e+117
-5.9864185e+117
-5.9907437e+117
-5.9950218e+117
-5.9653826e+117
-5.9653764e+117
-5.9702427e+117
-5.9700509e+117
-5.9746656e+117
-5.9749001e+117
-5.9795232e+117
-5.9792159e+117
-5.9344309e+117
-5.9561766e+117
-5.9606855e+117
-5.9386241e+117
-5.9695199e+117
-5.9651619e+117
-5.9428609e+117
-5.9469562e+117
-5.9836496e+117
-5.983926e+117
-5.9884753e+117
-5.988088e+117
-5.9923051e+117
-5.9927529e+117
-5.9969906e+117
-5.9964205e+117
-5.9510538e+117
-5.9738109e+117
-5.9781987e+117
-5.9552649e+117
-5.986406e+117
-5.9824091e+117
-5.9594908e+117
-5.9634328e+117
-5.9991033e+117
-6.0034614e+117
-6.0075306e+117
-6.011564e+117
-6.0153675e+117
-6.019349e+117
-6.0229771e+117
-6.0265538e+117
-6.0003932e+117
-6.0010665e+117
-6.0053199e+117
-6.0043724e+117
-6.0133633e+117
-6.0093508e+117
-6.0123184e+117
-6.0083657e+117
-5.9979587e+117
-5.97446e+117
-5.9779242e+117
-6.0017348e+117
-5.9671102e+117
-5.9902236e+117
-5.9941006e+117
-5.9707929e+117
-6.0053673e+117
-6.0089878e+117
-5.98494e+117
-5.9815007e+117
-6.0156687e+117
-6.0124018e+117
-5.9882193e+117
-5.991339e+117
-6.0209431e+117
-6.0171089e+117
-6.0196561e+117
-6.0159629e+117
-6.0280784e+117
-6.024517e+117
-6.0265972e+117
-6.0231587e+117
-6.1269883e+117
-6.1064745e+117
-6.2194946e+117
-6.194353e+117
-6.209999e+117
-6.2052519e+117
-6.1654687e+117
-6.203719e+117
-6.1838884e+117
-6.1403852e+117
-6.1715374e+117
-6.1592047e+117
-6.1027291e+117
-5.4985739e+117
-5.8773401e+117
-5.8323432e+117
-5.5136168e+117
-5.9541763e+117
-5.8590467e+117
-6.1246365e+117
-6.0905492e+117
-6.0378285e+117
-5.7838581e+117
-5.767131e+117
-5.7450311e+117
-5.6202621e+117
-5.9661353e+117
-5.5705198e+117
-5.1911822e+117
-5.3474511e+117
-5.2416854e+117
-5.1172972e+117
-5.2508198e+117
-5.4692385e+117
-5.3958116e+117
-5.4962543e+117
-5.9704429e+117
-5.5184672e+117
-5.7043018e+117
-5.4033203e+117
-6.0055205e+117
-5.6023534e+117
-6.2189283e+117
-5.7868025e+117
-6.2535988e+117
-1.5962273e+117
-5.8858414e+117
-4.7855431e+117
-6.1711481e+117
-5.6592674e+117
-5.5026223e+117
-5.1875369e+117
-5.3191339e+117
-4.7171666e+117
-4.5880096e+117
-4.8573425e+117
-6.4428095e+117
-6.0573483e+117
-4.2843057e+117
-4.0693304e+117
-3.8520843e+117
-4.5145322e+117
-4.6966883e+117
-5.9117392e+117
-5.8850299e+117
-5.9077525e+117
-5.8812713e+117
-5.9197506e+117
-5.8928966e+117
-5.9156988e+117
-5.8888151e+117
-5.9279218e+117
-5.9008238e+117
-5.9238324e+117
-5.8967707e+117
-5.9359656e+117
-5.9089604e+117
-5.9319626e+117
-5.9048483e+117
-5.9430815e+117
-5.9156334e+117
-5.9396817e+117
-5.9124577e+117
-5.9498429e+117
-5.922251e+117
-5.9464762e+117
-5.9188504e+117
-5.9531817e+117
-5.9254121e+117
-5.9564771e+117
-5.9286053e+117
-5.9625948e+117
-5.934617e+117
-5.9595809e+117
-5.9316366e+117
-5.8299558e+117
-5.8072588e+117
-5.8142649e+117
-5.8241955e+117
-5.8016188e+117
-5.8053315e+117
-5.8432178e+117
-5.8196421e+117
-5.8368632e+117
-5.8134888e+117
-5.7662517e+117
-5.8554897e+117
-5.8312235e+117
-5.8495768e+117
-5.825433e+117
-5.8612956e+117
-5.8367653e+117
-5.86663e+117
-5.8420206e+117
-5.7363879e+117
-5.8765242e+117
-5.8511939e+117
-5.8716097e+117
-5.8466034e+117
-5.8860796e+117
-5.8604012e+117
-5.8813861e+117
-5.8557549e+117
-5.8950905e+117
-5.8690317e+117
-5.8906046e+117
-5.864677e+117
-5.9036591e+117
-5.8775048e+117
-5.8994039e+117
-5.8732489e+117
-5.6862218e+117
-5.7105294e+117
-5.7389773e+117
-5.8611541e+117
-5.7441054e+117
-5.8723928e+117
-5.6175889e+117
-5.4868933e+117
-5.1493079e+117
-5.3519494e+117
-5.351743e+117
-5.486184e+117
-5.6142884e+117
-5.9832007e+117
-6.0024975e+117
-4.8736626e+117
-4.5850013e+117
-5.6025922e+117
-5.6221482e+117
-5.6422682e+117
-5.6641503e+117
-6.1318934e+117
-6.2216238e+117
-6.2026165e+117
-6.1047231e+117
-6.742186e+117
-5.9696046e+117
-6.1259843e+117
-6.0845696e+117
-5.912724e+117
-5.3275736e+117
-5.6060536e+117
-5.3872945e+117
-6.0379793e+117
-5.8262616e+117
-6.074793e+117
-5.6590933e+117
-5.7877801e+117
-1.8192472e+117
-4.9621518e+117
-6.1916156e+117
-6.2644126e+117
-6.1907868e+117
-6.2750454e+117
-6.2760525e+117
-3.6374534e+117
-3.8597141e+117
-4.0836843e+117
-4.3134824e+117
-5.7261444e+117
-5.7399404e+117
-5.7439858e+117
-5.7301675e+117
-5.7340265e+117
-5.7478462e+117
-5.7379918e+117
-5.751828e+117
-5.7546164e+117
-5.7701925e+117
-5.7585876e+117
-5.7741541e+117
-5.7666358e+117
-5.778265e+117
-5.7824802e+117
-5.762532e+117
-5.7870962e+117
-5.7912144e+117
-5.8097368e+117
-5.8054671e+117
-5.8252827e+117
-5.8296949e+117
-5.8183888e+117
-5.7953671e+117
-5.8140062e+117
-5.7996668e+117
-5.8340682e+117
-5.8385746e+117
-5.7596489e+117
-5.7417199e+117
-5.7556766e+117
-5.7456434e+117
-5.7706093e+117
-5.7864761e+117
-5.7904008e+117
-5.774512e+117
-5.7529478e+117
-5.7670459e+117
-5.7492772e+117
-5.7632786e+117
-5.7782573e+117
-5.7943158e+117
-5.7821383e+117
-5.7982621e+117
-5.8265903e+117
-5.8037164e+117
-5.8224672e+117
-5.8077348e+117
-5.8427534e+117
-5.8469638e+117
-5.8157362e+117
-5.8347479e+117
-5.8117149e+117
-5.830674e+117
-5.8510856e+117
-5.8552787e+117
-5.6495755e+117
-5.6595782e+117
-5.6530135e+117
-5.6629962e+117
-5.6732658e+117
-5.6697606e+117
-5.6802888e+117
-5.6838541e+117
-5.6593407e+117
-5.6694174e+117
-5.6561961e+117
-5.6662214e+117
-5.687264e+117
-5.6765836e+117
-5.6798312e+117
-5.6905658e+117
-5.6357292e+117
-5.6389705e+117
-5.6455336e+117
-5.6488403e+117
-5.6555328e+117
-5.6590135e+117
-5.6658607e+117
-5.66944e+117
-5.6423362e+117
-5.65229e+117
-5.6560286e+117
-5.6460467e+117
-5.6731111e+117
-5.6768227e+117
-5.6626068e+117
-5.666281e+117
-5.6768493e+117
-5.6883105e+117
-5.692116e+117
-5.6805675e+117
-5.6842611e+117
-5.6958591e+117
-5.6995935e+117
-5.6879693e+117
-5.7167768e+117
-5.7003107e+117
-5.7128258e+117
-5.7042051e+117
-5.724537e+117
-5.7080152e+117
-5.7206545e+117
-5.7118051e+117
-5.6914907e+117
-5.7031947e+117
-5.7069591e+117
-5.6951749e+117
-5.7020021e+117
-5.6986341e+117
-5.7105085e+117
-5.7139523e+117
-5.7154485e+117
-5.7282143e+117
-5.7320743e+117
-5.7192784e+117
-5.7264159e+117
-5.7228897e+117
-5.7357517e+117
-5.7393326e+117
-5.6351935e+117
-5.6221032e+117
-5.6318056e+117
-5.6254434e+117
-5.6416991e+117
-5.651747e+117
-5.6552902e+117
-5.6451476e+117
-5.6421559e+117
-5.6288673e+117
-5.6386287e+117
-5.6324346e+117
-5.6486444e+117
-5.6588758e+117
-5.6624947e+117
-5.6521829e+117
-5.6771407e+117
-5.6623675e+117
-5.6733962e+117
-5.6660111e+117
-5.6850051e+117
-5.6970183e+117
-5.7010063e+117
-5.6888621e+117
-5.6847074e+117
-5.669683e+117
-5.6809445e+117
-5.673378e+117
-5.6927294e+117
-5.7050005e+117
-5.696615e+117
-5.7090203e+117
-5.6074681e+117
-5.61704e+117
-5.6039476e+117
-5.6134702e+117
-5.6230638e+117
-5.6334037e+117
-5.6266444e+117
-5.6367018e+117
-5.6404357e+117
-5.6307102e+117
-5.6329101e+117
-5.6425832e+117
-5.6210787e+117
-5.611526e+117
-5.6136317e+117
-5.6232168e+117
-5.6287393e+117
-5.6161179e+117
-5.6257462e+117
-5.6190483e+117
-5.6453263e+117
-5.6355424e+117
-5.6385326e+117
-5.6484425e+117
-5.6682166e+117
-5.6645204e+117
-5.6799185e+117
-5.6760477e+117
-5.6468534e+117
-5.653763e+117
-5.6435273e+117
-5.6570244e+117
-5.6607767e+117
-5.6507086e+117
-5.6636002e+117
-5.6528863e+117
-5.6589335e+117
-5.6556872e+117
-5.6664876e+117
-5.6698631e+117
-5.6863847e+117
-5.6718222e+117
-5.6831768e+117
-5.6748548e+117
-5.68135e+117
-5.6932439e+117
-5.677787e+117
-5.6894721e+117
-5.7425915e+117
-5.7576727e+117
-5.7372876e+117
-5.7517908e+117
-5.7696432e+117
-5.7490401e+117
-5.7651246e+117
-5.7531339e+117
-5.7667886e+117
-5.7910051e+117
-5.7834466e+117
-5.7733427e+117
-5.7825224e+117
-5.7875586e+117
-5.7628782e+117
-5.7802348e+117
-5.7576598e+117
-5.7746875e+117
-5.7932085e+117
-5.7991312e+117
-5.6871792e+117
-5.6912676e+117
-5.6989381e+117
-5.7033179e+117
-5.7108901e+117
-5.6951873e+117
-5.7074636e+117
-5.6985034e+117
-5.7155535e+117
-5.7241942e+117
-5.710909e+117
-5.7291193e+117
-5.7205155e+117
-5.7341955e+117
-5.737969e+117
-5.7240393e+117
-5.7017327e+117
-5.7143571e+117
-5.7186103e+117
-5.7057626e+117
-5.7277516e+117
-5.7420685e+117
-5.7323156e+117
-5.7469596e+117
-5.7097059e+117
-5.7227432e+117
-5.7138436e+117
-5.7270937e+117
-5.7413374e+117
-5.756551e+117
-5.73671e+117
-5.7516571e+117
-5.7221719e+117
-5.7358134e+117
-5.7179575e+117
-5.7314322e+117
-5.7458619e+117
-5.7613143e+117
-5.7660043e+117
-5.7504177e+117
-5.7678853e+117
-5.7855537e+117
-5.7910229e+117
-5.7730718e+117
-5.7780383e+117
-5.7962245e+117
-5.7828528e+117
-5.8011481e+117
-5.8047542e+117
-5.8104373e+117
-5.8208582e+117
-5.8157809e+117
-5.5694468e+117
-5.5786385e+117
-5.5654685e+117
-5.5747826e+117
-5.5853589e+117
-5.5741408e+117
-5.5831636e+117
-5.5763975e+117
-5.5843959e+117
-5.5881466e+117
-5.5942901e+117
-5.5978518e+117
-5.5924797e+117
-5.6018726e+117
-5.6039672e+117
-5.5945992e+117
-5.5817422e+117
-5.5906652e+117
-5.5789101e+117
-5.5878148e+117
-5.5970365e+117
-5.6064577e+117
-5.5999309e+117
-5.6093552e+117
-5.5638186e+117
-5.5833554e+117
-5.5504702e+117
-5.5587509e+117
-5.5617451e+117
-5.5535705e+117
-5.5601279e+117
-5.5567693e+117
-5.5649246e+117
-5.5682975e+117
-5.5787329e+117
-5.5671728e+117
-5.5757217e+117
-5.5701721e+117
-5.5767729e+117
-5.5854398e+117
-5.5733563e+117
-5.5820022e+117
-5.5342892e+117
-5.5426896e+117
-5.5299703e+117
-5.5383901e+117
-5.5503874e+117
-5.5396577e+117
-5.5479868e+117
-5.5420675e+117
-5.5470811e+117
-5.5561541e+117
-5.5514052e+117
-5.5603137e+117
-5.5565177e+117
-5.5651564e+117
-5.567481e+117
-5.558885e+117
-5.5558892e+117
-5.5446527e+117
-5.552966e+117
-5.5475532e+117
-5.5614851e+117
-5.5700841e+117
-5.564339e+117
-5.572893e+117
-5.5273707e+117
-5.5451227e+117
-5.5247258e+117
-5.5637133e+117
-5.5846026e+117
-5.5935964e+117
-5.5967571e+117
-5.5876798e+117
-5.6124075e+117
-5.6061701e+117
-5.6029468e+117
-5.615682e+117
-5.5909743e+117
-5.5944706e+117
-5.6001244e+117
-5.6036547e+117
-5.6191123e+117
-5.6131298e+117
-5.6226796e+117
-5.6095485e+117
-5.4291493e+117
-5.4161113e+117
-5.43414e+117
-5.4457458e+117
-5.4661588e+117
-5.4562718e+117
-5.4736202e+117
-5.47718e+117
-5.4862025e+117
-5.4914403e+117
-5.4818522e+117
-5.5033672e+117
-5.495022e+117
-5.5001664e+117
-5.5083474e+117
-5.5170303e+117
-5.521126e+117
-5.5122837e+117
-5.5256138e+117
-5.509437e+117
-5.4910614e+117
-5.4534701e+117
-5.4097221e+117
-5.3990754e+117
-5.3819217e+117
-5.3973432e+117
-5.413381e+117
-5.371598e+117
-5.4893798e+117
-5.3328355e+117
-5.316611e+117
-5.3372332e+117
-5.3519524e+117
-5.3661186e+117
-5.3483052e+117
-5.3652788e+117
-5.3816909e+117
-5.3366398e+117
-5.300411e+117
-5.277049e+117
-5.36028e+117
-5.4622712e+117
-5.4981794e+117
-5.5328808e+117
-5.5717743e+117
-5.5313658e+117
-5.5392467e+117
-5.5422263e+117
-5.5344268e+117
-5.5374551e+117
-5.5406589e+117
-5.5451809e+117
-5.5483953e+117
-5.5578426e+117
-5.5471215e+117
-5.5549752e+117
-5.550017e+117
-5.5562369e+117
-5.5641789e+117
-5.5529654e+117
-5.5608628e+117
-5.5262046e+117
-5.5140421e+117
-5.5231094e+117
-5.5170808e+117
-5.5231899e+117
-5.5201781e+117
-5.5293174e+117
-5.5324294e+117
-5.4901792e+117
-5.5024165e+117
-5.4992201e+117
-5.5053447e+117
-5.5085714e+117
-5.4782801e+117
-5.4837894e+117
-5.4957936e+117
-5.5081452e+117
-5.5051613e+117
-5.5114202e+117
-5.5144967e+117
-5.4922835e+117
-5.4882003e+117
-5.5006604e+117
-5.5051799e+117
-5.5131569e+117
-5.5105604e+117
-5.5260303e+117
-5.5170471e+117
-5.519729e+117
-5.5287225e+117
-5.535412e+117
-5.5382595e+117
-5.5312607e+117
-5.540881e+117
-5.5433577e+117
-5.5336132e+117
-5.5220072e+117
-5.5153089e+117
-5.5176338e+117
-5.5243735e+117
-5.4673437e+117
-5.4640479e+117
-5.4758025e+117
-5.4794844e+117
-5.4602177e+117
-5.4549039e+117
-5.4663269e+117
-5.4717371e+117
-5.554598e+117
-5.5436826e+117
-5.5514933e+117
-5.5466614e+117
-5.5594297e+117
-5.562616e+117
-5.5674298e+117
-5.5706773e+117
-5.5601465e+117
-5.549386e+117
-5.557444e+117
-5.5519614e+117
-5.5736833e+117
-5.5655443e+117
-5.5683196e+117
-5.5765041e+117
-5.5004635e+117
-5.5097628e+117
-5.51322e+117
-5.5040043e+117
-5.5075579e+117
-5.5166309e+117
-5.5108532e+117
-5.5199677e+117
-5.4838202e+117
-5.4987561e+117
-5.4925033e+117
-5.4962941e+117
-5.5023623e+117
-5.4762134e+117
-5.4890121e+117
-5.4850821e+117
-5.4915079e+117
-5.4953195e+117
-5.471871e+117
-5.4638044e+117
-5.487367e+117
-5.497758e+117
-5.5004068e+117
-5.4903309e+117
-5.4936276e+117
-5.5032966e+117
-5.5064188e+117
-5.4968714e+117
-5.4683971e+117
-5.4844702e+117
-5.4777577e+117
-5.481661e+117
-5.4881124e+117
-5.4784069e+117
-5.4713154e+117
-5.4600092e+117
-5.4745379e+117
-5.4813531e+117
-5.4459813e+117
-5.4553735e+117
-5.517415e+117
-5.5067803e+117
-5.5148988e+117
-5.5092886e+117
-5.5230794e+117
-5.5312513e+117
-5.5337008e+117
-5.525563e+117
-5.5229763e+117
-5.5119563e+117
-5.5200543e+117
-5.5149623e+117
-5.5281669e+117
-5.5363177e+117
-5.5310679e+117
-5.5391868e+117
-5.5181208e+117
-5.5260378e+117
-5.5293316e+117
-5.5214838e+117
-5.5282376e+117
-5.5248074e+117
-5.5326745e+117
-5.5361192e+117
-5.5421515e+117
-5.5453331e+117
-5.5340674e+117
-5.5373199e+117
-5.5440447e+117
-5.5406072e+117
-5.548608e+117
-5.5519787e+117
-5.429073e+117
-5.4178482e+117
-5.4318083e+117
-5.4419588e+117
-5.4514217e+117
-5.439146e+117
-5.4481985e+117
-5.459944e+117
-5.4037993e+117
-5.3934305e+117
-5.4036751e+117
-5.413906e+117
-5.3815988e+117
-5.3674467e+117
-5.3786868e+117
-5.3922332e+117
-5.4041281e+117
-5.3909235e+117
-5.4038168e+117
-5.4161613e+117
-5.4247339e+117
-5.4148621e+117
-5.4267763e+117
-5.4362449e+117
-5.4237948e+117
-5.4204996e+117
-5.4302547e+117
-5.4335581e+117
-5.4171997e+117
-5.4116557e+117
-5.4213323e+117
-5.4269438e+117
-5.4432989e+117
-5.4319781e+117
-5.4374434e+117
-5.4486107e+117
-5.4522518e+117
-5.4409015e+117
-5.444148e+117
-5.4554257e+117
-5.5976844e+117
-5.6069258e+117
-5.6100693e+117
-5.600827e+117
-5.6075201e+117
-5.6039967e+117
-5.6132274e+117
-5.616791e+117
-5.6291e+117
-5.6164157e+117
-5.6259407e+117
-5.6195384e+117
-5.6263763e+117
-5.6360854e+117
-5.6227541e+117
-5.6324302e+117
-5.5874471e+117
-5.575723e+117
-5.5841108e+117
-5.579026e+117
-5.59282e+117
-5.6016933e+117
-5.6050482e+117
-5.5961701e+117
-5.5849553e+117
-5.593493e+117
-5.5820691e+117
-5.5905437e+117
-5.599284e+117
-5.6081986e+117
-5.6022842e+117
-5.6112205e+117
-5.6235991e+117
-5.6109054e+117
-5.6202078e+117
-5.6142526e+117
-5.6298465e+117
-5.6395788e+117
-5.643008e+117
-5.6332472e+117
-5.6204702e+117
-5.6298662e+117
-5.6174e+117
-5.626778e+117
-5.6364256e+117
-5.6462167e+117
-5.6395467e+117
-5.6493271e+117
-5.56312e+117
-5.5713212e+117
-5.5742934e+117
-5.5660232e+117
-5.5690698e+117
-5.5774048e+117
-5.5724405e+117
-5.5808055e+117
-5.5916773e+117
-5.5798646e+117
-5.5885789e+117
-5.582892e+117
-5.5894831e+117
-5.5860279e+117
-5.5948655e+117
-5.5983438e+117
-5.4830815e+117
-5.3549369e+117
-5.2230298e+117
-4.8896052e+117
-5.087993e+117
-5.0879112e+117
-5.2193309e+117
-5.0865766e+117
-5.2183361e+117
-5.2211528e+117
-5.0847067e+117
-5.3503162e+117
-5.3453084e+117
-5.4785379e+117
-5.4760426e+117
-5.4760521e+117
-5.3474345e+117
-5.3521272e+117
-5.481628e+117
-4.6213533e+117
-4.8210844e+117
-4.9547881e+117
-4.9537268e+117
-4.817826e+117
-5.0876505e+117
-5.2220718e+117
-5.2253487e+117
-5.0886863e+117
-5.3633525e+117
-5.3569177e+117
-5.4896429e+117
-5.4996304e+117
-4.353426e+117
-4.5528143e+117
-4.6800679e+117
-4.6850495e+117
-4.5464187e+117
-4.8190268e+117
-4.8162843e+117
-4.9529494e+117
-4.953291e+117
-5.0916162e+117
-5.2314819e+117
-5.2390926e+117
-5.0948891e+117
-5.514386e+117
-5.3731415e+117
-5.3848064e+117
-5.5285733e+117
-5.2737408e+117
-5.3614207e+117
-5.5063769e+117
-5.466826e+117
-5.5041587e+117
-5.4671476e+117
-5.5830998e+117
-5.5429954e+117
-5.5392662e+117
-5.5784397e+117
-4.7437796e+117
-4.9292036e+117
-4.8823287e+117
-5.0040781e+117
-4.9877319e+117
-5.0583528e+117
-5.0829806e+117
-4.9995075e+117
-4.8785972e+117
-4.1030073e+117
-4.2884264e+117
-4.2807485e+117
-4.4058046e+117
-4.4137506e+117
-4.5465533e+117
-4.540597e+117
-4.6748784e+117
-4.6783293e+117
-4.7063742e+117
-4.9573203e+117
-4.8152464e+117
-4.815058e+117
-4.9603815e+117
-5.2754614e+117
-5.2476916e+117
-5.2657126e+117
-5.2912292e+117
-5.3063103e+117
-5.2821402e+117
-5.2999646e+117
-5.3221039e+117
-5.2645182e+117
-5.2257166e+117
-5.184149e+117
-5.1544325e+117
-5.1825822e+117
-5.2141391e+117
-5.1839205e+117
-5.2374439e+117
-5.2578449e+117
-5.2281738e+117
-5.2051113e+117
-5.1327475e+117
-5.1007247e+117
-5.1950787e+117
-5.0924624e+117
-5.1896487e+117
-5.1032851e+117
-5.1099381e+117
-5.2597298e+117
-5.248848e+117
-3.869959e+117
-4.0371057e+117
-4.0418693e+117
-4.1539204e+117
-4.1591134e+117
-4.2808927e+117
-4.4051332e+117
-4.4013283e+117
-4.2761278e+117
-4.535083e+117
-4.5372542e+117
-4.6738052e+117
-4.6730054e+117
-4.8629634e+117
-4.8544477e+117
-4.8661949e+117
-4.8570452e+117
-5.0131399e+117
-5.0093422e+117
-5.0074596e+117
-5.0091341e+117
-5.1000808e+117
-5.1595279e+117
-5.1641553e+117
-5.0994519e+117
-5.1038352e+117
-5.0998724e+117
-5.1667139e+117
-5.1703894e+117
-5.1723298e+117
-5.1044783e+117
-5.101957e+117
-5.1721348e+117
-5.1748391e+117
-5.1035845e+117
-5.1097899e+117
-5.1793685e+117
-5.1103046e+117
-5.1801925e+117
-4.965794e+117
-4.8168166e+117
-4.8185675e+117
-4.9709307e+117
-5.3612895e+117
-5.35251e+117
-5.3623924e+117
-5.3719512e+117
-5.3404491e+117
-5.3233925e+117
-5.3337082e+117
-5.3500507e+117
-5.356371e+117
-5.3448639e+117
-5.3602311e+117
-5.3707538e+117
-5.3828833e+117
-5.3724909e+117
-5.3826177e+117
-5.3932193e+117
-5.3310709e+117
-5.3244863e+117
-5.3476806e+117
-5.3400062e+117
-5.3143522e+117
-5.2982662e+117
-5.3285641e+117
-5.3117735e+117
-5.2788742e+117
-5.2451142e+117
-5.2552354e+117
-5.2929117e+117
-5.2641844e+117
-5.2598113e+117
-5.3007914e+117
-5.3061647e+117
-5.2755182e+117
-5.2715395e+117
-5.3186142e+117
-5.3154597e+117
-5.2682051e+117
-5.266694e+117
-5.3094262e+117
-5.3121207e+117
-5.3385861e+117
-5.3350964e+117
-5.3530533e+117
-5.3571968e+117
-5.341878e+117
-5.3607044e+117
-5.3634288e+117
-5.3446953e+117
-5.3724691e+117
-5.3676141e+117
-5.3793899e+117
-5.3847974e+117
-5.4012693e+117
-5.3905148e+117
-5.3962337e+117
-5.4068857e+117
-5.4103396e+117
-5.400063e+117
-5.4026144e+117
-5.4132802e+117
-5.3885982e+117
-5.3760882e+117
-5.3786417e+117
-5.3910205e+117
-5.4578959e+117
-5.4467497e+117
-5.4500495e+117
-5.4610996e+117
-5.4361557e+117
-5.426018e+117
-5.4282454e+117
-5.4390987e+117
-5.4647204e+117
-5.4535096e+117
-5.4692224e+117
-5.4427829e+117
-5.5091315e+117
-5.4957168e+117
-5.4995678e+117
-5.5134371e+117
-5.4824549e+117
-5.4698542e+117
-5.4732057e+117
-5.4859649e+117
-5.4816429e+117
-5.4768835e+117
-5.4899332e+117
-5.4948844e+117
-5.5182372e+117
-5.5038949e+117
-5.5090547e+117
-5.5235861e+117
-5.3798346e+117
-5.392154e+117
-5.3930232e+117
-5.4150477e+117
-5.4037484e+117
-5.404706e+117
-5.4164617e+117
-5.2754715e+117
-5.31904e+117
-5.3453652e+117
-5.364322e+117
-5.635024e+117
-5.6230989e+117
-5.6325151e+117
-5.6256315e+117
-5.642205e+117
-5.6519535e+117
-5.6544217e+117
-5.6446662e+117
-5.6311125e+117
-5.6404234e+117
-5.6282466e+117
-5.637564e+117
-5.6472061e+117
-5.6570379e+117
-5.6500994e+117
-5.659969e+117
-5.598649e+117
-5.6071599e+117
-5.6100017e+117
-5.6015696e+117
-5.6072059e+117
-5.6043791e+117
-5.6128145e+117
-5.6156754e+117
-5.6274952e+117
-5.6158357e+117
-5.6246718e+117
-5.6186582e+117
-5.6244231e+117
-5.6333774e+117
-5.6215017e+117
-5.6304136e+117
-5.5986198e+117
-5.5875138e+117
-5.5960892e+117
-5.590042e+117
-5.6049029e+117
-5.6138219e+117
-5.6163396e+117
-5.6074168e+117
-5.6043087e+117
-5.592716e+117
-5.6012776e+117
-5.5957279e+117
-5.6101095e+117
-5.6190352e+117
-5.6130356e+117
-5.6219121e+117
-5.6338689e+117
-5.6432244e+117
-5.6461625e+117
-5.6367332e+117
-5.6628982e+117
-5.6529802e+117
-5.655972e+117
-5.6659677e+117
-5.6396763e+117
-5.642702e+117
-5.6491624e+117
-5.652235e+117
-5.669085e+117
-5.662164e+117
-5.6723039e+117
-5.6590049e+117
-5.5760782e+117
-5.5845351e+117
-5.5868586e+117
-5.5784822e+117
-5.5807642e+117
-5.5830738e+117
-5.5889867e+117
-5.5912582e+117
-5.6032313e+117
-5.5928538e+117
-5.6010985e+117
-5.5950458e+117
-5.5994782e+117
-5.6078257e+117
-5.5971266e+117
-5.6053886e+117
-5.5695106e+117
-5.5568099e+117
-5.5670917e+117
-5.5591703e+117
-5.5719483e+117
-5.5743494e+117
-5.5421692e+117
-5.5395915e+117
-5.5468546e+117
-5.5494048e+117
-5.6095748e+117
-5.6180898e+117
-5.6203438e+117
-5.6117419e+117
-5.6139575e+117
-5.622653e+117
-5.6164828e+117
-5.6252466e+117
-5.638393e+117
-5.6269253e+117
-5.6359485e+117
-5.6292636e+117
-5.634317e+117
-5.6435946e+117
-5.6316434e+117
-5.6408632e+117
-5.6649869e+117
-5.6751989e+117
-5.6779209e+117
-5.6676882e+117
-5.6453623e+117
-5.654964e+117
-5.6575965e+117
-5.6478945e+117
-5.6504285e+117
-5.6601971e+117
-5.65322e+117
-5.6630189e+117
-5.6731713e+117
-5.670295e+117
-5.6805517e+117
-5.6834967e+117
-5.6191182e+117
-5.6279101e+117
-5.637014e+117
-5.6463189e+117
-5.6559621e+117
-5.6657726e+117
-5.6863017e+117
-5.6759463e+117
-5.5651768e+117
-5.5543851e+117
-5.5626406e+117
-5.5569273e+117
-5.5708207e+117
-5.5790152e+117
-5.5815122e+117
-5.573329e+117
-5.5624417e+117
-5.5706634e+117
-5.5595636e+117
-5.5677704e+117
-5.575948e+117
-5.5841984e+117
-5.5788953e+117
-5.5871778e+117
-5.5592382e+117
-5.5462526e+117
-5.5564189e+117
-5.548982e+117
-5.554486e+117
-5.551814e+117
-5.5620238e+117
-5.5647289e+117
-5.5419412e+117
-5.5346756e+117
-5.5374894e+117
-5.5447011e+117
-5.5321427e+117
-5.5293659e+117
-5.5365235e+117
-5.5393333e+117
-5.5358488e+117
-5.5457001e+117
-5.5481971e+117
-5.5382257e+117
-5.5408634e+117
-5.5508667e+117
-5.5435648e+117
-5.5536634e+117
-5.5312022e+117
-5.5241557e+117
-5.526956e+117
-5.5340278e+117
-5.5218251e+117
-5.5195265e+117
-5.5263623e+117
-5.5287622e+117
-5.5652257e+117
-5.5734887e+117
-5.5763829e+117
-5.5680592e+117
-5.5708465e+117
-5.5736487e+117
-5.5792252e+117
-5.5820679e+117
-5.5901125e+117
-5.5930631e+117
-5.5817977e+117
-5.5847272e+117
-5.5904205e+117
-5.5875643e+117
-5.5959143e+117
-5.5987372e+117
-5.7693208e+117
-5.7838092e+117
-5.7873968e+117
-5.7729367e+117
-5.7800974e+117
-5.7764399e+117
-5.7909643e+117
-5.79473e+117
-5.8193308e+117
-5.7992303e+117
-5.8156886e+117
-5.8028307e+117
-5.8103782e+117
-5.8271132e+117
-5.8065023e+117
-5.8231689e+117
-5.773517e+117
-5.7561324e+117
-5.7703504e+117
-5.7591941e+117
-5.7855464e+117
-5.8016978e+117
-5.8049812e+117
-5.7887587e+117
-5.7803414e+117
-5.76232e+117
-5.7766985e+117
-5.7658545e+117
-5.792104e+117
-5.8084708e+117
-5.7957328e+117
-5.8121576e+117
-5.8418473e+117
-5.8192465e+117
-5.8383183e+117
-5.8226532e+117
-5.858961e+117
-5.8625736e+117
-5.8299685e+117
-5.8493366e+117
-5.8261959e+117
-5.8454851e+117
-5.8662505e+117
-5.8702341e+117
-5.8335649e+117
-5.8530012e+117
-5.8568666e+117
-5.8373175e+117
-5.8779563e+117
-5.8740167e+117
-5.8412119e+117
-5.8452279e+117
-5.8608483e+117
-5.8649065e+117
-5.8860612e+117
-5.8819438e+117
-5.8486688e+117
-5.8683943e+117
-5.8716159e+117
-5.8518511e+117
-5.8580077e+117
-5.8548663e+117
-5.8745893e+117
-5.8777752e+117
-5.8895793e+117
-5.8927275e+117
-5.8990728e+117
-5.895779e+117
-5.795051e+117
-5.8098514e+117
-5.8126365e+117
-5.7978658e+117
-5.8030461e+117
-5.8004339e+117
-5.8152105e+117
-5.8178553e+117
-5.8452414e+117
-5.8256342e+117
-5.8425133e+117
-5.8283728e+117
-5.8337332e+117
-5.8507779e+117
-5.8310199e+117
-5.8480167e+117
-5.8011073e+117
-5.7833071e+117
-5.7980228e+117
-5.7863588e+117
-5.8137456e+117
-5.8304879e+117
-5.8335724e+117
-5.8168079e+117
-5.8070677e+117
-5.78927e+117
-5.8039931e+117
-5.7922465e+117
-5.8197855e+117
-5.8366363e+117
-5.822836e+117
-5.8397215e+117
-5.8608077e+117
-5.88067e+117
-5.8836033e+117
-5.8636125e+117
-5.9051744e+117
-5.9021339e+117
-5.8664326e+117
-5.8692477e+117
-5.8865087e+117
-5.8893582e+117
-5.911051e+117
-5.908125e+117
-5.7458301e+117
-5.7302424e+117
-5.7427632e+117
-5.7332807e+117
-5.7557551e+117
-5.7691468e+117
-5.7721411e+117
-5.7587634e+117
-5.7517716e+117
-5.7362312e+117
-5.7487701e+117
-5.7392978e+117
-5.7617239e+117
-5.775119e+117
-5.7646255e+117
-5.7779959e+117
-5.6856576e+117
-5.6961673e+117
-5.6989295e+117
-5.6883726e+117
-5.6910988e+117
-5.7017836e+117
-5.704867e+117
-5.694128e+117
-5.7070484e+117
-5.7182698e+117
-5.7211956e+117
-5.7098854e+117
-5.7127856e+117
-5.7241484e+117
-5.7272491e+117
-5.715906e+117
-5.6969895e+117
-5.7077749e+117
-5.710506e+117
-5.6997791e+117
-5.7187862e+117
-5.730029e+117
-5.7326075e+117
-5.7214066e+117
-5.7419443e+117
-5.7543236e+117
-5.7569966e+117
-5.7445554e+117
-5.7497196e+117
-5.747113e+117
-5.759587e+117
-5.7621783e+117
-5.7807735e+117
-5.7835576e+117
-5.7672815e+117
-5.7700061e+117
-5.7752009e+117
-5.7725976e+117
-5.7861665e+117
-5.7887578e+117
-5.719943e+117
-5.7049869e+117
-5.7170197e+117
-5.7078727e+117
-5.7295307e+117
-5.7424425e+117
-5.7453808e+117
-5.7324287e+117
-5.7138995e+117
-5.7260404e+117
-5.7107002e+117
-5.722788e+117
-5.7353767e+117
-5.7484717e+117
-5.7387297e+117
-5.7519071e+117
-5.6731455e+117
-5.6835262e+117
-5.686759e+117
-5.6763025e+117
-5.679471e+117
-5.6899831e+117
-5.6932581e+117
-5.6827323e+117
-5.708664e+117
-5.6942682e+117
-5.7053263e+117
-5.6975574e+117
-5.7153146e+117
-5.700812e+117
-5.7119784e+117
-5.7041184e+117
-5.6747597e+117
-5.662003e+117
-5.6721336e+117
-5.664537e+117
-5.6826348e+117
-5.6934383e+117
-5.6962395e+117
-5.6853389e+117
-5.6805169e+117
-5.6671943e+117
-5.6774907e+117
-5.6701816e+117
-5.6881115e+117
-5.6990704e+117
-5.6912001e+117
-5.7022048e+117
-5.7170999e+117
-5.7293058e+117
-5.7327923e+117
-5.720485e+117
-5.723846e+117
-5.7362101e+117
-5.7272229e+117
-5.7396511e+117
-5.755328e+117
-5.7589044e+117
-5.7420942e+117
-5.7456142e+117
-5.7525908e+117
-5.7490611e+117
-5.7624187e+117
-5.7659909e+117
-3.6442621e+117
-3.811179e+117
-3.8073916e+117
-3.919913e+117
-3.9239983e+117
-4.0367668e+117
-4.1483835e+117
-4.1519206e+117
-4.0326696e+117
-4.2727206e+117
-4.3987149e+117
-4.3963572e+117
-4.269775e+117
-4.6766356e+117
-4.5331106e+117
-4.6744672e+117
-4.5321228e+117
-3.6989733e+117
-3.5880874e+117
-3.5840797e+117
-3.6953848e+117
-3.8075096e+117
-3.8045866e+117
-3.9147012e+117
-3.9166786e+117
-4.0290809e+117
-4.0273663e+117
-4.1427308e+117
-4.144669e+117
-4.2658576e+117
-4.3937866e+117
-4.392783e+117
-4.2638559e+117
-3.8023883e+117
-3.9129908e+117
-3.9113829e+117
-3.7997443e+117
-4.0259333e+117
-4.1414511e+117
-4.1409379e+117
-4.02519e+117
-5.7166825e+117
-5.7215622e+117
-5.716019e+117
-5.7299008e+117
-5.5981359e+117
-5.601967e+117
-5.595848e+117
-5.6079136e+117
-5.7360846e+117
-5.7227895e+117
-5.6091957e+117
-5.6014283e+117
-5.7737213e+117
-5.7542284e+117
-5.6367327e+117
-5.6222409e+117
-5.8482686e+117
-5.9611242e+117
-5.8571724e+117
-5.8365235e+117
-5.8236469e+117
-5.8192971e+117
-5.8241119e+117
-5.8361869e+117
-5.9229747e+117
-5.913555e+117
-5.941958e+117
-5.9205468e+117
-5.9409171e+117
-5.9704833e+117
-6.2139283e+117
-6.2476654e+117
-6.1601997e+117
-6.162332e+117
-6.0888813e+117
-6.0568649e+117
-6.1792538e+117
-6.1278061e+117
-6.0503484e+117
-6.1876257e+117
-6.1976882e+117
-6.1661009e+117
-6.0812993e+117
-6.1434616e+117
-5.9897039e+117
-5.9858179e+117
-6.0098111e+117
-6.004691e+117
-6.2076308e+117
-6.1860299e+117
-6.2348372e+117
-6.2352728e+117
-6.2304372e+117
-6.2306363e+117
-6.214696e+117
-6.2328037e+117
-6.2412265e+117
-6.2099662e+117
-6.2258783e+117
-6.2394049e+117
-6.2339384e+117
-6.2364578e+117
-6.2377522e+117
-6.2212346e+117
-6.2148973e+117
-6.2087643e+117
-6.2076934e+117
-6.1852895e+117
-6.16618e+117
-6.2362314e+117
-6.2118402e+117
-6.1979226e+117
-6.1966679e+117
-6.2012525e+117
-6.236283e+117
-6.2467265e+117
-6.2286568e+117
-6.2485443e+117
-6.2583458e+117
-6.2260053e+117
-6.2460274e+117
-6.2372287e+117
-6.228291e+117
-6.2434863e+117
-6.2257141e+117
-6.2507445e+117
-6.2703951e+117
-6.2717452e+117
-6.2582073e+117
-6.2485429e+117
-6.2395241e+117
-6.1209372e+117
-6.0726255e+117
-6.1120958e+117
-5.9851519e+117
-6.0650415e+117
-5.8772181e+117
-6.0699289e+117
-6.0487412e+117
-5.8602951e+117
-5.8604158e+117
-5.6355133e+117
-5.8900204e+117
-5.6693459e+117
-5.7552076e+117
-6.1297513e+117
-6.085845e+117
-5.985484e+117
-5.9516992e+117
-5.0429269e+117
-5.4135367e+117
-6.2142375e+117
-6.4865127e+117
-5.987724e+117
-6.0450259e+117
-6.18492e+117
-6.1965189e+117
-6.1775882e+117
-5.5663261e+117
-6.8519696e+117
-6.348889e+117
-5.1619785e+117
-6.3401309e+117
-6.139286e+117
-6.1134457e+117
-5.9032614e+117
-5.7710573e+117
-6.1405603e+117
-6.2034751e+117
-6.177635e+117
-6.2085669e+117
-5.605476e+117
-6.133755e+117
-6.1966676e+117
-5.2462008e+117
-6.3261515e+116
-4.913117e+117
-9.752161e+116
-6.1338407e+117
-6.1418556e+117
-8.1418045e+116
-1.1640288e+117
-5.5187649e+117
-6.6115934e+117
-5.8913301e+117
-6.768093e+117
-6.31679e+117
-5.9252484e+117
-5.949682e+117
-6.045763e+117
-6.2020933e+117
-6.5305443e+117
-6.5458486e+117
-6.284599e+117
-6.0732841e+117
-6.0427249e+117
-6.0702756e+117
-6.1203754e+117
-6.2008573e+117
-6.569242e+117
-6.2030149e+117
-6.187092e+117
-6.1726857e+117
-5.5882224e+117
-7.0483578e+117
-7.1517224e+117
-6.2347619e+117
-6.1849852e+117
-2.390303e+117
-2.7135138e+117
-2.3965107e+117
-6.6180801e+117
-6.0234237e+117
-3.6627079e+117
-3.7093194e+117
-6.5028549e+117
-6.4487471e+117
-5.6474109e+117
-6.4498335e+117
-5.9237584e+117
-2.6708675e+117
-4.5255206e+117
-4.6107745e+117
-4.4757058e+117
-4.2880572e+117
-4.4668435e+117
-4.6049636e+117
-4.7429452e+117
-4.7447828e+117
-4.7236637e+117
-4.7195366e+117
-4.0688479e+117
-4.3465066e+117
-4.2326255e+117
-4.2277733e+117
-4.3414637e+117
-4.4719398e+117
-4.4756729e+117
-4.6141137e+117
-4.7581681e+117
-4.6133699e+117
-4.7618886e+117
-4.949183e+117
-4.9413834e+117
-4.6164437e+117
-4.7819102e+117
-4.9612412e+117
-4.4720997e+117
-4.3442221e+117
-4.2298592e+117
-4.1213548e+117
-4.0135691e+117
-3.8519265e+117
-4.0091067e+117
-4.1173234e+117
-4.2265391e+117
-4.3420982e+117
-4.4719481e+117
-4.6191086e+117
-4.7884024e+117
-4.9720084e+117
-3.9050431e+117
-3.7963932e+117
-3.7937772e+117
-3.9017969e+117
-4.0068344e+117
-4.0102752e+117
-4.1153975e+117
-4.1131218e+117
-4.3413861e+117
-4.2242546e+117
-4.2229432e+117
-4.3410677e+117
-5.8725112e+117
-5.7201333e+117
-5.8213348e+117
-5.5634457e+117
-5.9628606e+117
-5.4031222e+117
-6.0900518e+117
-5.8382631e+117
-5.7160838e+117
-5.8231822e+117
-5.8304811e+117
-5.7024449e+117
-5.9245524e+117
-5.928823e+117
-5.8191663e+117
-5.6963988e+117
-5.5657111e+117
-5.3915653e+117
-5.5717518e+117
-5.7044839e+117
-5.5852081e+117
-5.5723562e+117
-5.8214017e+117
-5.933963e+117
-5.9353725e+117
-5.9598064e+117
-5.1292839e+117
-5.45688e+117
-5.3222995e+117
-5.3306155e+117
-5.4712222e+117
-5.6020158e+117
-5.5827335e+117
-5.7131397e+117
-5.7378763e+117
-5.9556333e+117
-5.8366934e+117
-5.8671752e+117
-5.9907452e+117
-4.8489441e+117
-5.0676961e+117
-5.0608655e+117
-5.2057583e+117
-5.2203002e+117
-5.246621e+117
-5.082045e+117
-5.2526176e+117
-5.0819828e+117
-5.3475109e+117
-5.370772e+117
-5.5231182e+117
-5.4905259e+117
-5.6309919e+117
-5.7720593e+117
-5.6725943e+117
-5.9102523e+117
-6.0378499e+117
-5.9209276e+117
-5.7653561e+117
-5.603545e+117
-5.4404839e+117
-5.2743512e+117
-5.2886445e+117
-5.5558845e+117
-5.4664874e+117
-5.8090571e+117
-5.64275e+117
-5.4685977e+117
-5.2908499e+117
-5.851124e+117
-5.6811815e+117
-5.4999147e+117
-5.3138583e+117
-5.127117e+117
-5.4098225e+117
-5.3096353e+117
-5.437668e+117
-5.3314468e+117
-5.5400717e+117
-5.5792014e+117
-5.1144475e+117
-5.1294411e+117
-5.7174197e+117
-5.5291632e+117
-5.3318726e+117
-5.1364928e+117
-5.7505452e+117
-5.5567963e+117
-5.3533541e+117
-5.151061e+117
-5.5828413e+117
-5.3741881e+117
-5.1658773e+117
-5.6075258e+117
-5.3946927e+117
-5.1818181e+117
-6.1002334e+117
-6.0609338e+117
-6.0256164e+117
-6.0040974e+117
-5.9998574e+117
-6.0062441e+117
-6.1073027e+117
-6.0710255e+117
-6.1250713e+117
-6.0651817e+117
-6.1021533e+117
-6.0739354e+117
-6.1011036e+117
-6.1513347e+117
-6.1290538e+117
-6.0270931e+117
-6.0645085e+117
-6.148696e+117
-6.1446411e+117
-6.1829847e+117
-3.1297262e+117
-4.3892465e+117
-5.2086898e+117
-3.8016022e+117
-5.7313653e+117
-5.6960156e+117
-5.4243018e+117
-5.6780849e+117
-5.4195519e+117
-5.1001477e+117
-5.9518482e+117
-5.9337042e+117
-5.9419466e+117
-4.9778954e+117
-4.3143797e+117
-5.4030852e+117
-5.6890832e+117
-5.9248879e+117
-5.6705803e+117
-5.3957523e+117
-5.9841125e+117
-5.925168e+117
-6.0646488e+117
-5.7024085e+117
-5.9016211e+117
-5.7559425e+117
-5.4747218e+117
-5.0094991e+117
-4.8352306e+117
-4.3297392e+117
-4.8652367e+117
-4.129339e+117
-4.3504769e+117
-5.3103716e+117
-4.7280994e+117
-3.2591626e+117
-4.5182759e+117
-3.694157e+117
-4.4476588e+117
-4.9109497e+117
-2.5764452e+117
-1.8218182e+117
-3.1979932e+117
-3.2216047e+117
-2.3374904e+117
-3.3531184e+117
-6.1907212e+117
-6.1638014e+117
-6.1753366e+117
-6.1745998e+117
-6.1423986e+117
-6.14567e+117
-6.1490705e+117
-6.119014e+117
-6.088869e+117
-6.0316613e+117
-5.9110719e+117
-6.0293959e+117
-6.0924381e+117
-6.1083867e+117
-6.0417887e+117
-6.1037013e+117
-6.0345081e+117
-6.0457868e+117
-6.0990365e+117
-6.0592745e+117
-6.1004677e+117
-5.733594e+117
-4.2419763e+117
-7.6837553e+116
-1.26654e+116
-5.742213e+117
-6.1132226e+117
-5.9830615e+117
-4.5632112e+117
-5.8118596e+117
-5.5237286e+117
-1.0045006e+117
-4.7411429e+117
-5.131396e+117
-3.5837517e+117
-3.5912634e+117
-3.9633689e+117
-3.2115367e+117
-2.8675251e+117
-3.6311229e+117
-3.5583926e+117
-6.0388135e+117
-6.108507e+117
-6.1356349e+117
-6.0716061e+117
-4.097259e+117
-9.3389822e+116
-2.2833222e+116
-4.6940438e+117
-2.6762308e+117
-4.7425803e+117
-4.8132333e+117
-4.8004027e+117
-4.5701155e+117
-4.5719386e+117
-5.7995903e+116
-3.8732824e+117
-5.7836172e+117
-5.7642401e+117
-5.5728425e+117
-5.6945475e+117
-5.6532334e+117
-5.7357653e+117
-5.7164159e+117
-5.7400491e+117
-5.7595221e+117
-5.7400316e+117
-5.8656628e+117
-5.7258892e+117
-5.8551456e+117
-5.9884031e+117
-5.9968432e+117
-5.5989234e+117
-5.4714537e+117
-5.1422345e+117
-5.346888e+117
-5.3389066e+117
-5.4811665e+117
-5.6118087e+117
-4.8670821e+117
-4.9254067e+117
-4.575115e+117
-4.7430174e+117
-5.0706376e+117
-5.1624225e+117
-5.083042e+117
-5.1792219e+117
-5.2471519e+117
-5.3401227e+117
-5.355325e+117
-5.2643062e+117
-5.4922358e+117
-5.6733633e+117
-5.6952682e+117
-5.691255e+117
-5.6688418e+117
-5.6337427e+117
-5.6285745e+117
-5.648763e+117
-5.6534946e+117
-5.7638374e+117
-5.7123488e+117
-5.7384847e+117
-5.6626272e+117
-5.6849636e+117
-5.6772359e+117
-5.6554035e+117
-5.6225121e+117
-5.6424303e+117
-5.6353013e+117
-5.6154054e+117
-5.6721227e+117
-5.6504533e+117
-5.6463548e+117
-5.667881e+117
-5.6105369e+117
-5.6303765e+117
-5.6262213e+117
-5.6065467e+117
-5.7332194e+117
-5.7072604e+117
-5.6991288e+117
-5.724252e+117
-5.689732e+117
-5.6937408e+117
-5.7185348e+117
-5.7141435e+117
-5.7709236e+117
-5.7768799e+117
-5.74517e+117
-5.7402599e+117
-5.7592898e+117
-5.7908107e+117
-5.7514451e+117
-5.7829676e+117
-5.8239554e+117
-5.8257416e+117
-5.8149593e+117
-5.8211476e+117
-5.8075293e+117
-5.8111574e+117
-5.8141028e+117
-5.8392636e+117
-5.7845814e+117
-5.8392744e+117
-5.839338e+117
-5.8415704e+117
-5.8377884e+117
-5.8298925e+117
-5.6417026e+117
-5.6031566e+117
-5.631485e+117
-5.6699746e+117
-5.7127118e+117
-5.6958723e+117
-5.7163787e+117
-5.7331967e+117
-5.6655534e+117
-5.6854555e+117
-5.7012646e+117
-5.6807435e+117
-5.7541645e+117
-5.7603451e+117
-5.7372471e+117
-5.7772131e+117
-5.706032e+117
-5.7282391e+117
-5.7448377e+117
-5.7220927e+117
-5.7897088e+117
-5.7854939e+117
-5.7762557e+117
-5.7986118e+117
-5.8138474e+117
-5.8309552e+117
-5.7940327e+117
-5.8071859e+117
-5.8155356e+117
-5.8026728e+117
-5.7411794e+117
-5.7502796e+117
-5.7637938e+117
-5.7547092e+117
-5.7787638e+117
-5.7966358e+117
-5.7586325e+117
-5.7724011e+117
-5.7815181e+117
-5.7681415e+117
-5.6777604e+117
-5.6549686e+117
-5.6936762e+117
-5.7169844e+117
-5.7507468e+117
-5.7717305e+117
-5.7834825e+117
-5.7625194e+117
-5.7256542e+117
-5.7461736e+117
-5.7598979e+117
-5.7390156e+117
-5.7903363e+117
-5.7808601e+117
-5.7672676e+117
-5.8039372e+117
-5.7927067e+117
-5.8160372e+117
-5.8281717e+117
-5.8046209e+117
-5.8492354e+117
-5.8427512e+117
-5.8362162e+117
-5.8556963e+117
-5.872277e+117
-5.883909e+117
-5.848573e+117
-5.8616024e+117
-5.8669096e+117
-5.854118e+117
-5.8225746e+117
-5.8168661e+117
-5.8096044e+117
-5.8296847e+117
-5.8458077e+117
-5.8597002e+117
-5.8234473e+117
-5.836473e+117
-5.8431847e+117
-5.830307e+117
-5.8139798e+117
-5.8374438e+117
-5.847396e+117
-5.8878107e+117
-5.9007183e+117
-5.9054905e+117
-5.8927223e+117
-5.8908286e+117
-5.8957859e+117
-5.8829297e+117
-5.8779605e+117
-5.9130611e+117
-5.9227671e+117
-5.8714432e+117
-5.8635355e+117
-5.8585266e+117
-5.8764884e+117
-5.8937756e+117
-5.9036223e+117
-5.8683875e+117
-5.881434e+117
-5.8863622e+117
-5.8735561e+117
-5.8116735e+117
-5.826017e+117
-5.8351509e+117
-5.8213369e+117
-5.8284061e+117
-5.8377592e+117
-5.8417433e+117
-5.8545684e+117
-5.8636461e+117
-5.851131e+117
-5.8033268e+117
-5.7934219e+117
-5.8079711e+117
-5.8176594e+117
-5.8196972e+117
-5.8104343e+117
-5.8234615e+117
-5.8358534e+117
-5.8455232e+117
-5.832486e+117
-5.8434303e+117
-5.8300165e+117
-5.8397432e+117
-5.8526724e+117
-5.8602327e+117
-5.8563498e+117
-5.8467789e+117
-5.8697338e+117
-5.8813242e+117
-5.8721509e+117
-5.8482759e+117
-5.856908e+117
-5.8693414e+117
-5.8610997e+117
-5.8652035e+117
-5.8737416e+117
-5.8870176e+117
-5.8785895e+117
-5.8897194e+117
-5.8978273e+117
-5.8492871e+117
-5.8402194e+117
-5.8679436e+117
-5.8590749e+117
-5.8860341e+117
-5.8768576e+117
-5.8945277e+117
-5.9027564e+117
-5.8408145e+117
-5.8573798e+117
-5.8652362e+117
-5.8461401e+117
-5.8537909e+117
-5.8733063e+117
-5.8801369e+117
-5.8603554e+117
-5.8581082e+117
-5.8665517e+117
-5.8480855e+117
-5.8568822e+117
-5.8686445e+117
-5.8587063e+117
-5.8765389e+117
-5.8838548e+117
-5.8682836e+117
-5.8755856e+117
-5.8861779e+117
-5.8784369e+117
-5.8853914e+117
-5.89218e+117
-5.8941188e+117
-5.9004815e+117
-5.8943169e+117
-5.9023177e+117
-5.867533e+117
-5.8876627e+117
-5.8961463e+117
-5.8755884e+117
-5.909574e+117
-5.9082553e+117
-5.902376e+117
-5.9102506e+117
-5.9156168e+117
-5.9164906e+117
-5.909519e+117
-5.9030958e+117
-5.8822924e+117
-5.8879436e+117
-5.9101177e+117
-5.9051166e+117
-5.9122196e+117
-5.9170627e+117
-5.9232827e+117
-5.918606e+117
-5.9246507e+117
-5.9292594e+117
-5.8954872e+117
-5.8907696e+117
-5.8972335e+117
-5.901929e+117
-5.9147249e+117
-5.908496e+117
-5.8813587e+117
-5.8766129e+117
-5.8840504e+117
-5.8887904e+117
-5.9019096e+117
-5.8946317e+117
-5.9228336e+117
-5.9222936e+117
-5.9172874e+117
-5.9238654e+117
-5.9285779e+117
-5.9288695e+117
-5.9345273e+117
-5.9344217e+117
-5.9298758e+117
-5.9356207e+117
-5.9399655e+117
-5.9399197e+117
-5.8932611e+117
-5.9153344e+117
-5.9211397e+117
-5.8986337e+117
-5.9317262e+117
-5.9265489e+117
-5.9038838e+117
-5.9088562e+117
-5.9348183e+117
-5.9302842e+117
-5.9359626e+117
-5.9403227e+117
-5.9453801e+117
-5.9411679e+117
-5.9461494e+117
-5.9502984e+117
-5.9147308e+117
-5.9199709e+117
-5.9244811e+117
-5.9191851e+117
-5.9367365e+117
-5.9315801e+117
-5.9030928e+117
-5.9092194e+117
-5.9137788e+117
-5.9078024e+117
-5.9262637e+117
-5.9205211e+117
-5.9450666e+117
-5.9452333e+117
-5.9410384e+117
-5.9463005e+117
-5.9503516e+117
-5.950086e+117
-5.9548833e+117
-5.9552175e+117
-5.9512403e+117
-5.9560314e+117
-5.9599032e+117
-5.959511e+117
-5.9135268e+117
-5.9365911e+117
-5.9414905e+117
-5.9182203e+117
-5.9506397e+117
-5.9461629e+117
-5.9227388e+117
-5.9270658e+117
-5.8642388e+117
-5.87187e+117
-5.8785078e+117
-5.8852304e+117
-5.9082702e+117
-5.902807e+117
-5.8911124e+117
-5.8973678e+117
-5.9467194e+117
-5.9418013e+117
-5.9536012e+117
-5.9583543e+117
-5.962726e+117
-5.9579197e+117
-5.9835255e+117
-5.979127e+117
-5.9698969e+117
-5.9744626e+117
-5.932331e+117
-5.9440173e+117
-5.9488909e+117
-5.9371748e+117
-5.9533318e+117
-5.9485841e+117
-5.9653525e+117
-5.9606775e+117
-5.9698632e+117
-5.9746067e+117
-5.9347766e+117
-5.9229758e+117
-5.9278696e+117
-5.939541e+117
-5.9393184e+117
-5.9441016e+117
-5.9561554e+117
-5.9514509e+117
-5.9607118e+117
-5.9653644e+117
-5.9182701e+117
-5.9130425e+117
-5.9247782e+117
-5.9299572e+117
-5.9294086e+117
-5.9345605e+117
-5.9466874e+117
-5.9416564e+117
-5.9509367e+117
-5.9559691e+117
-5.9511894e+117
-5.9627159e+117
-5.9673716e+117
-5.9559807e+117
-5.9671524e+117
-5.9716997e+117
-5.9832294e+117
-5.9788212e+117
-5.9877339e+117
-5.9921534e+117
-5.9715653e+117
-5.9601941e+117
-5.9644569e+117
-5.9756925e+117
-5.9757994e+117
-5.9799786e+117
-6.0004017e+117
-5.9963359e+117
-5.9873953e+117
-5.9915405e+117
-5.9550653e+117
-5.9600373e+117
-5.9647266e+117
-5.9694002e+117
-5.9738923e+117
-5.978533e+117
-5.9829339e+117
-5.9873009e+117
-5.9640925e+117
-5.9645891e+117
-5.9608109e+117
-5.9656581e+117
-5.9693201e+117
-5.9687317e+117
-5.9733587e+117
-5.9739868e+117
-5.9703288e+117
-5.9749424e+117
-5.9785414e+117
-5.9778915e+117
-5.9312012e+117
-5.9549739e+117
-5.9594767e+117
-5.9353758e+117
-5.9683037e+117
-5.963958e+117
-5.9395774e+117
-5.9436389e+117
-5.9823652e+117
-5.983024e+117
-5.9794297e+117
-5.9839332e+117
-5.9874688e+117
-5.9867793e+117
-5.9910242e+117
-5.9917663e+117
-5.9882645e+117
-5.9925442e+117
-5.9959322e+117
-5.9951308e+117
-5.9477717e+117
-5.9725998e+117
-5.9769763e+117
-5.9519766e+117
-5.9851854e+117
-5.9811954e+117
-5.9561952e+117
-5.9601255e+117
-5.9915269e+117
-5.9958863e+117
-6.0000073e+117
-6.0040862e+117
-6.0080217e+117
-6.0120134e+117
-6.0157189e+117
-5.9991432e+117
-6.0000465e+117
-5.9967448e+117
-6.0009598e+117
-6.0041325e+117
-6.0031024e+117
-6.0090501e+117
-6.012137e+117
-6.0050152e+117
-6.0081626e+117
-6.0110565e+117
-6.0070994e+117
-5.9967286e+117
-5.9712092e+117
-5.9746014e+117
-6.0004609e+117
-5.9638611e+117
-5.9890166e+117
-5.9928868e+117
-5.9675382e+117
-6.0041466e+117
-6.007734e+117
-5.9816007e+117
-5.9782241e+117
-6.0144227e+117
-6.0111552e+117
-5.9848593e+117
-5.9879428e+117
-6.016691e+117
-6.0196133e+117
-6.0128876e+117
-6.0158865e+117
-6.0184082e+117
-6.0147318e+117
-6.0239025e+117
-6.0266886e+117
-6.0203091e+117
-6.0231777e+117
-6.025344e+117
-6.0219135e+117
-6.1266994e+117
-6.1063456e+117
-6.2187146e+117
-6.1937646e+117
-6.2050054e+117
-6.1634211e+117
-6.1997887e+117
-6.1809204e+117
-6.1316578e+117
-6.1672686e+117
-6.1563925e+117
-6.0924958e+117
-5.1941552e+117
-5.4796836e+117
-5.3513445e+117
-5.8766738e+117
-5.7896994e+117
-5.48317e+117
-5.676132e+117
-5.1747041e+117
-5.4702236e+117
-5.9492426e+117
-5.8385489e+117
-6.0879351e+117
-6.0262349e+117
-5.6946143e+117
-5.7366008e+117
-5.5375241e+117
-5.4668145e+117
-5.9268838e+117
-5.054991e+117
-4.6714541e+117
-4.9802213e+117
-4.9249493e+117
-4.9835832e+117
-4.8197549e+117
-4.9254301e+117
-5.1578663e+117
-5.2462701e+117
-5.212972e+117
-5.2339052e+117
-5.3608071e+117
-5.9519918e+117
-5.5085409e+117
-5.7059842e+117
-5.4112911e+117
-5.9988174e+117
-5.3599533e+117
-5.2376462e+117
-5.7776223e+117
-6.0607903e+116
-6.1161947e+117
-5.7374032e+117
-5.5116907e+117
-5.3217728e+117
-5.3033328e+117
-3.949078e+117
-4.4035374e+117
-4.7893519e+117
-4.0797046e+117
-4.3054591e+117
-3.8587464e+117
-3.6377345e+117
-4.7122606e+117
-4.8704487e+117
-4.8774178e+117
-4.8721501e+117
-4.8639053e+117
-5.9094255e+117
-5.8859617e+117
-5.8821775e+117
-5.9054545e+117
-5.9173729e+117
-5.8937255e+117
-5.8897487e+117
-5.9133518e+117
-5.9255167e+117
-5.9016279e+117
-5.8976689e+117
-5.9214697e+117
-5.9335321e+117
-5.9096645e+117
-5.9056129e+117
-5.9295267e+117
-5.9407136e+117
-5.9165784e+117
-5.9133688e+117
-5.937324e+117
-5.9474034e+117
-5.9230546e+117
-5.9197724e+117
-5.9440743e+117
-5.926264e+117
-5.9507485e+117
-5.954006e+117
-5.9293838e+117
-5.9600963e+117
-5.9353491e+117
-5.9323846e+117
-5.957075e+117
-5.8082325e+117
-5.8279763e+117
-5.8141332e+117
-5.794614e+117
-5.8034488e+117
-5.8224854e+117
-5.7880263e+117
-5.820542e+117
-5.8412664e+117
-5.8348934e+117
-5.8144638e+117
-5.7707087e+117
-5.853391e+117
-5.8320562e+117
-5.8264267e+117
-5.8476633e+117
-5.8375732e+117
-5.8591665e+117
-5.8644678e+117
-5.8427466e+117
-5.740522e+117
-5.7552675e+117
-5.8743275e+117
-5.8520795e+117
-5.8474935e+117
-5.8694639e+117
-5.8838095e+117
-5.8611777e+117
-5.8566415e+117
-5.8791609e+117
-5.8927805e+117
-5.8698394e+117
-5.8655526e+117
-5.8883392e+117
-5.9013097e+117
-5.8782296e+117
-5.8740299e+117
-5.8970621e+117
-5.6898907e+117
-5.7016573e+117
-5.7138858e+117
-5.7271297e+117
-5.738678e+117
-5.8610812e+117
-5.7448335e+117
-5.8724384e+117
-5.6180666e+117
-5.4871294e+117
-4.8858152e+117
-5.221281e+117
-5.0858287e+117
-5.0882406e+117
-5.222144e+117
-5.3550143e+117
-5.3552259e+117
-5.4856644e+117
-5.6142797e+117
-5.9830981e+117
-6.0025171e+117
-4.613132e+117
-4.3421612e+117
-5.6062286e+117
-5.6155914e+117
-5.625261e+117
-5.6352258e+117
-5.6460056e+117
-5.6562802e+117
-5.6673071e+117
-5.6784334e+117
-6.0891624e+117
-5.9102989e+117
-5.2290923e+117
-5.5260678e+117
-5.0614923e+117
-4.5298949e+117
-5.4921318e+117
-5.3169173e+117
-5.8111173e+117
-6.0688086e+117
-5.4865258e+117
-5.2760162e+117
-7.1512622e+116
-1.4558557e+117
-4.8850078e+117
-3.6435581e+117
-3.8680217e+117
-4.0968587e+117
-5.7262637e+117
-5.7400625e+117
-5.7441247e+117
-5.7302951e+117
-5.7341593e+117
-5.7479687e+117
-5.7380505e+117
-5.7518829e+117
-5.7549234e+117
-5.7704687e+117
-5.7589038e+117
-5.7744416e+117
-5.7668514e+117
-5.7785368e+117
-5.7826514e+117
-5.7628378e+117
-5.7875339e+117
-5.7916557e+117
-5.8104145e+117
-5.806145e+117
-5.8261621e+117
-5.830555e+117
-5.8189512e+117
-5.7958034e+117
-5.814667e+117
-5.7999952e+117
-5.8349267e+117
-5.8393281e+117
-5.7597337e+117
-5.7418474e+117
-5.7558062e+117
-5.7457157e+117
-5.7709105e+117
-5.7867409e+117
-5.790613e+117
-5.7747678e+117
-5.7529611e+117
-5.7670529e+117
-5.7493286e+117
-5.7633176e+117
-5.77848e+117
-5.7944937e+117
-5.7823216e+117
-5.7984006e+117
-5.8272009e+117
-5.8041477e+117
-5.8231428e+117
-5.8081074e+117
-5.8436151e+117
-5.8477487e+117
-5.8160379e+117
-5.8352876e+117
-5.8120588e+117
-5.8312486e+117
-5.8518524e+117
-5.8560013e+117
-5.6495591e+117
-5.6595965e+117
-5.6529432e+117
-5.6629596e+117
-5.6731636e+117
-5.6697236e+117
-5.6801873e+117
-5.6836898e+117
-5.6592199e+117
-5.6693252e+117
-5.6561062e+117
-5.6661543e+117
-5.6870811e+117
-5.6764664e+117
-5.6796862e+117
-5.6903573e+117
-5.635713e+117
-5.6389405e+117
-5.645549e+117
-5.6488441e+117
-5.6554942e+117
-5.6589618e+117
-5.6657638e+117
-5.6693388e+117
-5.6423053e+117
-5.6522879e+117
-5.6559731e+117
-5.6459536e+117
-5.6730163e+117
-5.6766696e+117
-5.6625666e+117
-5.6661902e+117
-5.6767722e+117
-5.6883523e+117
-5.692156e+117
-5.6804855e+117
-5.6841947e+117
-5.6959073e+117
-5.6995777e+117
-5.6878376e+117
-5.7168004e+117
-5.700333e+117
-5.7128451e+117
-5.7042236e+117
-5.7244938e+117
-5.7080518e+117
-5.7206859e+117
-5.7117722e+117
-5.6914156e+117
-5.7032444e+117
-5.7069488e+117
-5.6950363e+117
-5.7018272e+117
-5.6984899e+117
-5.7104872e+117
-5.7139085e+117
-5.7154759e+117
-5.7282344e+117
-5.7320357e+117
-5.7192453e+117
-5.726354e+117
-5.7228559e+117
-5.7357017e+117
-5.7392515e+117
-5.6351677e+117
-5.6221355e+117
-5.6318632e+117
-5.6253811e+117
-5.641707e+117
-5.651704e+117
-5.6551592e+117
-5.6450652e+117
-5.6420545e+117
-5.6287814e+117
-5.638564e+117
-5.6323049e+117
-5.6485353e+117
-5.6587102e+117
-5.6622874e+117
-5.6520369e+117
-5.6771557e+117
-5.6623604e+117
-5.6735129e+117
-5.6659047e+117
-5.6851119e+117
-5.6971209e+117
-5.7010051e+117
-5.6888573e+117
-5.6846296e+117
-5.6695466e+117
-5.6809166e+117
-5.67319e+117
-5.6926953e+117
-5.7049534e+117
-5.696519e+117
-5.7089075e+117
-5.6092685e+117
-5.6186693e+117
-5.6281479e+117
-5.6372456e+117
-5.6408114e+117
-5.6310257e+117
-5.6330659e+117
-5.6427109e+117
-5.6214028e+117
-5.6118186e+117
-5.6137581e+117
-5.623396e+117
-5.6287973e+117
-5.6162267e+117
-5.6258914e+117
-5.619067e+117
-5.6453845e+117
-5.6356561e+117
-5.6385451e+117
-5.6483952e+117
-5.6710057e+117
-5.6814411e+117
-5.6488616e+117
-5.6581026e+117
-5.6615643e+117
-5.6599398e+117
-5.6513353e+117
-5.6502724e+117
-5.6640523e+117
-5.6530937e+117
-5.658911e+117
-5.6557831e+117
-5.6667238e+117
-5.6699675e+117
-5.6866898e+117
-5.6722766e+117
-5.6833323e+117
-5.675299e+117
-5.6814416e+117
-5.6933231e+117
-5.6780189e+117
-5.6896652e+117
-5.7451846e+117
-5.7602504e+117
-5.7700163e+117
-5.7495062e+117
-5.7658983e+117
-5.7533139e+117
-5.7766453e+117
-5.7836631e+117
-5.7881752e+117
-5.7630881e+117
-5.7806529e+117
-5.7578829e+117
-5.7750932e+117
-5.7938565e+117
-5.7997815e+117
-5.6932779e+117
-5.7052258e+117
-5.7110596e+117
-5.6953633e+117
-5.7076276e+117
-5.6987801e+117
-5.7178604e+117
-5.7311048e+117
-5.7208811e+117
-5.734495e+117
-5.7380787e+117
-5.7242921e+117
-5.701964e+117
-5.7145149e+117
-5.7186975e+117
-5.7058986e+117
-5.7280066e+117
-5.7422007e+117
-5.7325098e+117
-5.7470579e+117
-5.7098849e+117
-5.7228877e+117
-5.7139171e+117
-5.727139e+117
-5.7415334e+117
-5.7567098e+117
-5.7369906e+117
-5.7518748e+117
-5.7221404e+117
-5.7357632e+117
-5.7179926e+117
-5.7314336e+117
-5.7460414e+117
-5.7614487e+117
-5.7660856e+117
-5.7505432e+117
-5.7682444e+117
-5.7861461e+117
-5.7915805e+117
-5.7733824e+117
-5.7783412e+117
-5.7967601e+117
-5.7831007e+117
-5.8016377e+117
-5.8055828e+117
-5.811211e+117
-5.8215619e+117
-5.8165472e+117
-5.5715989e+117
-5.5806383e+117
-5.5679765e+117
-5.5770924e+117
-5.5856118e+117
-5.5746058e+117
-5.5836293e+117
-5.5766439e+117
-5.5868114e+117
-5.5901041e+117
-5.5964323e+117
-5.5995617e+117
-5.5928684e+117
-5.6022175e+117
-5.6041415e+117
-5.5947923e+117
-5.5818308e+117
-5.5907706e+117
-5.5791119e+117
-5.5880179e+117
-5.5971956e+117
-5.6066001e+117
-5.5999902e+117
-5.6094115e+117
-5.5677326e+117
-5.5872718e+117
-5.55077e+117
-5.559001e+117
-5.5619263e+117
-5.5537852e+117
-5.5602685e+117
-5.5569793e+117
-5.5650855e+117
-5.5684076e+117
-5.5788046e+117
-5.5673448e+117
-5.5758674e+117
-5.570268e+117
-5.5768152e+117
-5.585461e+117
-5.5734457e+117
-5.5820582e+117
-5.5368396e+117
-5.5451033e+117
-5.5327551e+117
-5.5409961e+117
-5.5508092e+117
-5.5403442e+117
-5.5486373e+117
-5.5425155e+117
-5.5497743e+117
-5.5585998e+117
-5.5537476e+117
-5.5624638e+117
-5.5570927e+117
-5.5656849e+117
-5.5677997e+117
-5.5592384e+117
-5.5561341e+117
-5.54506e+117
-5.5533315e+117
-5.547833e+117
-5.5617855e+117
-5.5703441e+117
-5.5645116e+117
-5.5730376e+117
-5.5313529e+117
-5.5490809e+117
-5.5350503e+117
-5.5530692e+117
-5.5715938e+117
-5.591304e+117
-5.5846983e+117
-5.5937092e+117
-5.5967869e+117
-5.587692e+117
-5.6124731e+117
-5.6061468e+117
-5.6030118e+117
-5.615664e+117
-5.5909789e+117
-5.5944391e+117
-5.6001343e+117
-5.6036379e+117
-5.6190693e+117
-5.613063e+117
-5.622601e+117
-5.6095164e+117
-5.4358024e+117
-5.4227612e+117
-5.4396165e+117
-5.4509064e+117
-5.4685971e+117
-5.464132e+117
-5.4717524e+117
-5.4758428e+117
-5.4839208e+117
-5.4797764e+117
-5.4611635e+117
-5.478169e+117
-5.4895425e+117
-5.4946428e+117
-5.5067165e+117
-5.4985117e+117
-5.5036039e+117
-5.5118151e+117
-5.5200726e+117
-5.5239597e+117
-5.5154434e+117
-5.5283344e+117
-5.5135582e+117
-5.4955073e+117
-5.4185846e+117
-5.4827952e+117
-5.4662144e+117
-5.4063251e+117
-5.3903335e+117
-5.4061059e+117
-5.4208181e+117
-5.3819131e+117
-5.4994665e+117
-5.5173843e+117
-5.3441787e+117
-5.3298532e+117
-5.3518184e+117
-5.3640632e+117
-5.3772224e+117
-5.3586478e+117
-5.3742511e+117
-5.3912723e+117
-5.3480465e+117
-5.3133184e+117
-5.3557943e+117
-5.3195031e+117
-5.3896876e+117
-5.4266851e+117
-5.4797266e+117
-5.4960221e+117
-5.4718508e+117
-5.4883212e+117
-5.5124299e+117
-5.529785e+117
-5.5223952e+117
-5.5047858e+117
-5.5645845e+117
-5.5467004e+117
-5.5396793e+117
-5.5577017e+117
-5.5830301e+117
-5.5762996e+117
-5.5961574e+117
-5.6030447e+117
-5.5323952e+117
-5.5399287e+117
-5.5429255e+117
-5.5354818e+117
-5.5385541e+117
-5.5416948e+117
-5.5459461e+117
-5.5490773e+117
-5.5582119e+117
-5.5475737e+117
-5.5553267e+117
-5.5504741e+117
-5.5566766e+117
-5.564509e+117
-5.5534867e+117
-5.5612623e+117
-5.5279371e+117
-5.5124673e+117
-5.5247921e+117
-5.5157214e+117
-5.5218179e+117
-5.5186575e+117
-5.531036e+117
-5.5341528e+117
-5.4936794e+117
-5.4881034e+117
-5.4912492e+117
-5.4968269e+117
-5.5024516e+117
-5.4994035e+117
-5.5052006e+117
-5.5083249e+117
-5.4826442e+117
-5.4769754e+117
-5.4801198e+117
-5.4857572e+117
-5.488336e+117
-5.4826707e+117
-5.4852465e+117
-5.4909842e+117
-5.4994788e+117
-5.4938046e+117
-5.4965295e+117
-5.5023434e+117
-5.5081581e+117
-5.5053176e+117
-5.5112396e+117
-5.5142223e+117
-5.497122e+117
-5.4910419e+117
-5.4929303e+117
-5.4991177e+117
-5.4892453e+117
-5.4871632e+117
-5.4930269e+117
-5.4952281e+117
-5.5046655e+117
-5.4987177e+117
-5.5010758e+117
-5.5071476e+117
-5.5051087e+117
-5.5030124e+117
-5.509188e+117
-5.5114014e+117
-5.5131847e+117
-5.5107178e+117
-5.5244965e+117
-5.5168634e+117
-5.5194498e+117
-5.5273018e+117
-5.5371288e+117
-5.5399891e+117
-5.5296071e+117
-5.5425871e+117
-5.5450708e+117
-5.5320213e+117
-5.5217869e+117
-5.5154211e+117
-5.5176251e+117
-5.5240641e+117
-5.4737546e+117
-5.4681847e+117
-5.4695349e+117
-5.4752103e+117
-5.4667879e+117
-5.4651474e+117
-5.4705579e+117
-5.4722527e+117
-5.4815067e+117
-5.4758469e+117
-5.4777004e+117
-5.4834683e+117
-5.4808792e+117
-5.4792872e+117
-5.485186e+117
-5.486922e+117
-5.4664093e+117
-5.4611269e+117
-5.4635331e+117
-5.4688699e+117
-5.4586053e+117
-5.4554785e+117
-5.4608384e+117
-5.4638657e+117
-5.4715067e+117
-5.4660147e+117
-5.4691237e+117
-5.4746173e+117
-5.4741087e+117
-5.4716367e+117
-5.4771778e+117
-5.4796747e+117
-5.5552998e+117
-5.5447385e+117
-5.5522331e+117
-5.5476875e+117
-5.5599291e+117
-5.5630598e+117
-5.5678159e+117
-5.5710121e+117
-5.5608177e+117
-5.5504102e+117
-5.5581478e+117
-5.5529634e+117
-5.5740127e+117
-5.565998e+117
-5.5687247e+117
-5.5767884e+117
-5.4988316e+117
-5.5115197e+117
-5.5149509e+117
-5.5026004e+117
-5.50593e+117
-5.5182843e+117
-5.5094108e+117
-5.5216167e+117
-5.4851109e+117
-5.4811643e+117
-5.4868573e+117
-5.4907004e+117
-5.49865e+117
-5.4927338e+117
-5.4963413e+117
-5.5021447e+117
-5.4792445e+117
-5.4733809e+117
-5.4775308e+117
-5.4833023e+117
-5.4890657e+117
-5.4853277e+117
-5.4914056e+117
-5.4950931e+117
-5.4739777e+117
-5.4699844e+117
-5.4756421e+117
-5.479616e+117
-5.4661656e+117
-5.4618073e+117
-5.4677232e+117
-5.4719061e+117
-5.4862681e+117
-5.5005198e+117
-5.502627e+117
-5.4890977e+117
-5.4920455e+117
-5.5052236e+117
-5.5082256e+117
-5.4954205e+117
-5.4696856e+117
-5.4654447e+117
-5.471718e+117
-5.4756931e+117
-5.4843993e+117
-5.4780763e+117
-5.4817516e+117
-5.4879207e+117
-5.4785941e+117
-5.4718943e+117
-5.4647774e+117
-5.4578083e+117
-5.4617906e+117
-5.4683045e+117
-5.4747558e+117
-5.4812256e+117
-5.4486092e+117
-5.4441477e+117
-5.4511769e+117
-5.4553371e+117
-5.459348e+117
-5.4528894e+117
-5.4578325e+117
-5.4639256e+117
-5.5184796e+117
-5.5086127e+117
-5.5162379e+117
-5.5107511e+117
-5.5240875e+117
-5.5320819e+117
-5.534302e+117
-5.526314e+117
-5.5237816e+117
-5.5132389e+117
-5.5209885e+117
-5.5160855e+117
-5.5288474e+117
-5.5368606e+117
-5.5316088e+117
-5.5396088e+117
-5.5192597e+117
-5.5268727e+117
-5.5301071e+117
-5.5225587e+117
-5.529217e+117
-5.5258789e+117
-5.5334322e+117
-5.5367792e+117
-5.5426014e+117
-5.5457094e+117
-5.5346464e+117
-5.5378193e+117
-5.544453e+117
-5.5411164e+117
-5.5489703e+117
-5.5522597e+117
-5.4335621e+117
-5.4277242e+117
-5.43411e+117
-5.4396678e+117
-5.4226126e+117
-5.4168063e+117
-5.4241772e+117
-5.4292606e+117
-5.4375153e+117
-5.4306427e+117
-5.4355543e+117
-5.4421674e+117
-5.4455543e+117
-5.4401894e+117
-5.4466654e+117
-5.451788e+117
-5.4560814e+117
-5.4501113e+117
-5.455057e+117
-5.460633e+117
-5.4437752e+117
-5.4384519e+117
-5.4444016e+117
-5.4494666e+117
-5.4536278e+117
-5.4480608e+117
-5.4523962e+117
-5.4578079e+117
-5.4645209e+117
-5.459006e+117
-5.463037e+117
-5.4685232e+117
-5.4130949e+117
-5.4090316e+117
-5.4142445e+117
-5.4182515e+117
-5.4038226e+117
-5.3977999e+117
-5.4021297e+117
-5.407929e+117
-5.4111068e+117
-5.4063895e+117
-5.4122944e+117
-5.416906e+117
-5.4222605e+117
-5.4172944e+117
-5.4218564e+117
-5.4266389e+117
-5.3891311e+117
-5.3845877e+117
-5.3920172e+117
-5.3964357e+117
-5.3777068e+117
-5.3695568e+117
-5.3739303e+117
-5.3823928e+117
-5.3842936e+117
-5.3788367e+117
-5.3871924e+117
-5.3922713e+117
-5.4007941e+117
-5.393723e+117
-5.3987082e+117
-5.4056263e+117
-5.4103125e+117
-5.4030658e+117
-5.4097413e+117
-5.4162758e+117
-5.3959948e+117
-5.3898915e+117
-5.3976144e+117
-5.4034686e+117
-5.4095628e+117
-5.4038668e+117
-5.410727e+117
-5.4161884e+117
-5.4216109e+117
-5.4153641e+117
-5.4217663e+117
-5.4276962e+117
-5.4317913e+117
-5.4266295e+117
-5.4313453e+117
-5.4363697e+117
-5.4218395e+117
-5.4160823e+117
-5.4214847e+117
-5.4271198e+117
-5.4327661e+117
-5.4269458e+117
-5.4325342e+117
-5.4382019e+117
-5.4415371e+117
-5.437038e+117
-5.4426099e+117
-5.4469874e+117
-5.4317358e+117
-5.4302335e+117
-5.4342053e+117
-5.4357257e+117
-5.4286327e+117
-5.4272554e+117
-5.4312025e+117
-5.43258e+117
-5.4397241e+117
-5.4352901e+117
-5.4367175e+117
-5.4411599e+117
-5.4426361e+117
-5.4382438e+117
-5.4397607e+117
-5.4440709e+117
-5.4262583e+117
-5.4241832e+117
-5.4280323e+117
-5.430123e+117
-5.4215559e+117
-5.4179651e+117
-5.4218995e+117
-5.4253599e+117
-5.4301051e+117
-5.4257967e+117
-5.4292873e+117
-5.4335454e+117
-5.434139e+117
-5.4319964e+117
-5.4362896e+117
-5.4384618e+117
-5.4502296e+117
-5.444875e+117
-5.4482122e+117
-5.4534417e+117
-5.4381885e+117
-5.4347537e+117
-5.4397687e+117
-5.4431334e+117
-5.4457247e+117
-5.4408276e+117
-5.4430553e+117
-5.4479539e+117
-5.4529846e+117
-5.450707e+117
-5.455954e+117
-5.4582714e+117
-5.4598711e+117
-5.4545181e+117
-5.4560811e+117
-5.4614568e+117
-5.4458978e+117
-5.4444099e+117
-5.4494242e+117
-5.4509314e+117
-5.4486787e+117
-5.4472759e+117
-5.4522796e+117
-5.4535933e+117
-5.4586843e+117
-5.4573865e+117
-5.4628004e+117
-5.464085e+117
-5.5977669e+117
-5.607027e+117
-5.6101695e+117
-5.6009107e+117
-5.60754e+117
-5.6040831e+117
-5.6133167e+117
-5.6168193e+117
-5.6291258e+117
-5.6164652e+117
-5.6259763e+117
-5.6195799e+117
-5.6263503e+117
-5.6360426e+117
-5.6227936e+117
-5.6324492e+117
-5.5876265e+117
-5.5759823e+117
-5.5843446e+117
-5.5792289e+117
-5.5929838e+117
-5.6018325e+117
-5.6051369e+117
-5.5962777e+117
-5.5851085e+117
-5.5936192e+117
-5.5822676e+117
-5.5907099e+117
-5.5993888e+117
-5.6082753e+117
-5.6023489e+117
-5.6112614e+117
-5.6236447e+117
-5.610992e+117
-5.6203064e+117
-5.6142871e+117
-5.6298906e+117
-5.6396071e+117
-5.6429832e+117
-5.6332353e+117
-5.6204572e+117
-5.6298628e+117
-5.6174238e+117
-5.6268033e+117
-5.6364011e+117
-5.6461709e+117
-5.639491e+117
-5.6492526e+117
-5.563349e+117
-5.5715316e+117
-5.5745131e+117
-5.5662601e+117
-5.5693371e+117
-5.5776397e+117
-5.5726436e+117
-5.5809819e+117
-5.5918191e+117
-5.5800121e+117
-5.5887118e+117
-5.5830444e+117
-5.5895907e+117
-5.5861995e+117
-5.5950109e+117
-5.5984244e+117
-5.4826916e+117
-5.3549473e+117
-5.2228151e+117
-4.6327825e+117
-4.8290784e+117
-4.8273823e+117
-4.9601326e+117
-4.9591054e+117
-4.8239184e+117
-4.8273511e+117
-4.9575506e+117
-4.9563007e+117
-5.0910263e+117
-5.0889054e+117
-5.0861634e+117
-5.2192593e+117
-5.2183397e+117
-5.0873189e+117
-5.2173129e+117
-5.219466e+117
-5.0867268e+117
-5.3504149e+117
-5.3450293e+117
-5.344048e+117
-5.4733782e+117
-5.4783498e+117
-5.4713628e+117
-5.475603e+117
-5.3476063e+117
-5.3519738e+117
-5.4808464e+117
-4.3708803e+117
-4.5656034e+117
-4.6952607e+117
-4.6901801e+117
-4.5586053e+117
-4.8242591e+117
-4.9543682e+117
-4.9539688e+117
-4.8219791e+117
-5.0876341e+117
-5.2220552e+117
-5.2254351e+117
-5.0888042e+117
-5.3633179e+117
-5.3568669e+117
-5.4895772e+117
-5.4995744e+117
-4.117122e+117
-4.3038997e+117
-4.4295233e+117
-4.4223183e+117
-4.2961796e+117
-4.558373e+117
-4.6831196e+117
-4.687144e+117
-4.5533496e+117
-4.8193194e+117
-4.8165171e+117
-4.9532237e+117
-4.9535269e+117
-5.0916331e+117
-5.2314908e+117
-5.2391203e+117
-5.0949216e+117
-5.3447631e+117
-5.2997691e+117
-5.3145452e+117
-5.3542491e+117
-5.3851784e+117
-5.4280724e+117
-5.3911098e+117
-5.4300382e+117
-5.5407763e+117
-5.5036371e+117
-5.5233484e+117
-5.5409939e+117
-5.5360462e+117
-5.5189507e+117
-5.4884991e+117
-5.5024416e+117
-5.5062687e+117
-5.4856994e+117
-5.6150093e+117
-5.5760481e+117
-5.5578998e+117
-5.5759069e+117
-5.5705838e+117
-5.5527888e+117
-5.5946103e+117
-5.6148085e+117
-5.589145e+117
-5.6091389e+117
-4.9956079e+117
-4.8700666e+117
-5.0035121e+117
-4.8773608e+117
-4.9937812e+117
-5.0737956e+117
-5.1211435e+117
-5.0748462e+117
-5.0918296e+117
-5.1459223e+117
-5.0070537e+117
-4.8718026e+117
-3.8795893e+117
-4.0477345e+117
-4.0540744e+117
-4.1723911e+117
-4.1653584e+117
-4.2943962e+117
-4.2872109e+117
-4.4109721e+117
-4.4180565e+117
-4.5473434e+117
-4.5415768e+117
-4.6754238e+117
-4.6786979e+117
-4.8671479e+117
-4.9573432e+117
-4.8152978e+117
-4.8151266e+117
-4.9604318e+117
-5.3014458e+117
-5.268826e+117
-5.2840416e+117
-5.3133313e+117
-5.325836e+117
-5.2988806e+117
-5.3144902e+117
-5.3390443e+117
-5.277009e+117
-5.2381062e+117
-5.2191174e+117
-5.1784443e+117
-5.2079239e+117
-5.2499111e+117
-5.1947158e+117
-5.2309854e+117
-5.2509898e+117
-5.272303e+117
-5.2879515e+117
-5.1404779e+117
-5.1329973e+117
-5.1893188e+117
-5.236126e+117
-5.2801409e+117
-5.155978e+117
-5.1022556e+117
-5.1765968e+117
-5.1200271e+117
-5.204189e+117
-5.2247227e+117
-5.2719537e+117
-5.2552395e+117
-3.6512284e+117
-3.8148557e+117
-3.8200259e+117
-3.9280068e+117
-3.9327711e+117
-4.0410105e+117
-4.0455225e+117
-4.1561384e+117
-4.1609579e+117
-4.2814588e+117
-4.4061157e+117
-4.4024223e+117
-4.2767642e+117
-4.5351668e+117
-4.5373303e+117
-4.6738783e+117
-4.6730861e+117
-4.9955651e+117
-4.9926822e+117
-4.9975829e+117
-5.000746e+117
-4.9913446e+117
-4.993654e+117
-4.9980655e+117
-4.9961831e+117
-4.9998132e+117
-5.0040164e+117
-5.0113966e+117
-5.0079578e+117
-4.9976763e+117
-4.9988178e+117
-5.0057907e+117
-5.0069849e+117
-5.1166534e+117
-5.1162536e+117
-5.1169071e+117
-5.1212117e+117
-5.122142e+117
-5.1195876e+117
-5.1211072e+117
-5.1268537e+117
-5.1914064e+117
-5.1958943e+117
-5.1978309e+117
-5.2015674e+117
-5.2035554e+117
-5.2032374e+117
-5.2060572e+117
-5.2107979e+117
-5.1270317e+117
-5.2109454e+117
-5.3804303e+117
-5.3762718e+117
-5.3804726e+117
-5.3848937e+117
-5.3720466e+117
-5.3665309e+117
-5.3703592e+117
-5.3760333e+117
-5.3775008e+117
-5.3738153e+117
-5.3796956e+117
-5.3834411e+117
-5.3882212e+117
-5.3842905e+117
-5.3889928e+117
-5.3930986e+117
-5.3604417e+117
-5.3522961e+117
-5.3562368e+117
-5.364239e+117
-5.3313091e+117
-5.3368251e+117
-5.3478244e+117
-5.3435577e+117
-5.3459108e+117
-5.3403384e+117
-5.3514377e+117
-5.3555792e+117
-5.36767e+117
-5.3595421e+117
-5.3634247e+117
-5.3713101e+117
-5.3655615e+117
-5.3607622e+117
-5.3688256e+117
-5.3732226e+117
-5.3598402e+117
-5.3508509e+117
-5.3558483e+117
-5.364297e+117
-5.3715895e+117
-5.3673835e+117
-5.3751773e+117
-5.3791783e+117
-5.383278e+117
-5.3757799e+117
-5.3801403e+117
-5.3875729e+117
-5.3936061e+117
-5.3894126e+117
-5.395636e+117
-5.3997239e+117
-5.3873943e+117
-5.3813088e+117
-5.3853586e+117
-5.3914812e+117
-5.3973182e+117
-5.3922729e+117
-5.3964944e+117
-5.4015725e+117
-5.4058413e+117
-5.4006872e+117
-5.4048965e+117
-5.4100738e+117
-5.3578038e+117
-5.3551864e+117
-5.3616457e+117
-5.3644659e+117
-5.347801e+117
-5.3536888e+117
-5.3580875e+117
-5.352041e+117
-5.3701257e+117
-5.3667323e+117
-5.3716976e+117
-5.3755133e+117
-5.3629918e+117
-5.3580685e+117
-5.362462e+117
-5.3676795e+117
-5.3348607e+117
-5.3397676e+117
-5.3479577e+117
-5.3425186e+117
-5.3140057e+117
-5.3186802e+117
-5.3304487e+117
-5.3261867e+117
-5.3520924e+117
-5.343765e+117
-5.3481519e+117
-5.3563592e+117
-5.3346834e+117
-5.3232799e+117
-5.3390792e+117
-5.3269886e+117
-5.3208575e+117
-5.2982659e+117
-5.3102326e+117
-5.3112419e+117
-5.2621901e+117
-5.2823291e+117
-5.2951229e+117
-5.2719261e+117
-5.2755658e+117
-5.2783161e+117
-5.3006272e+117
-5.3048841e+117
-5.3237421e+117
-5.335944e+117
-5.3182014e+117
-5.3290217e+117
-5.3137824e+117
-5.2821106e+117
-5.3110855e+117
-5.2856732e+117
-5.3089239e+117
-5.2788393e+117
-5.3068968e+117
-5.279776e+117
-5.3272822e+117
-5.3407697e+117
-5.3445243e+117
-5.3301852e+117
-5.3326017e+117
-5.3472986e+117
-5.349704e+117
-5.3351128e+117
-5.2944281e+117
-5.2975283e+117
-5.3238284e+117
-5.325397e+117
-5.2904181e+117
-5.3197957e+117
-5.3220541e+117
-5.2919371e+117
-5.3469647e+117
-5.3623377e+117
-5.3458262e+117
-5.3614465e+117
-5.3443081e+117
-5.3421962e+117
-5.3582727e+117
-5.3598409e+117
-5.2865274e+117
-5.2886374e+117
-5.3163154e+117
-5.3179343e+117
-5.315721e+117
-5.2869296e+117
-5.3149989e+117
-5.2860669e+117
-5.3364989e+117
-5.3515312e+117
-5.352972e+117
-5.3376846e+117
-5.3403593e+117
-5.3565555e+117
-5.3387042e+117
-5.3546948e+117
-5.3636451e+117
-5.3714959e+117
-5.365724e+117
-5.3736646e+117
-5.3693692e+117
-5.3598558e+117
-5.366984e+117
-5.3617362e+117
-5.3757296e+117
-5.3729715e+117
-5.3787004e+117
-5.3817437e+117
-5.3802577e+117
-5.3779469e+117
-5.3841277e+117
-5.386469e+117
-5.3689561e+117
-5.3673473e+117
-5.3753455e+117
-5.3769381e+117
-5.3835421e+117
-5.3819187e+117
-5.3881775e+117
-5.3896841e+117
-5.3853845e+117
-5.3846662e+117
-5.3906787e+117
-5.3914022e+117
-5.3781508e+117
-5.3702925e+117
-5.3711474e+117
-5.3788951e+117
-5.3920113e+117
-5.3895788e+117
-5.3947564e+117
-5.3972049e+117
-5.3885711e+117
-5.3837834e+117
-5.3870915e+117
-5.392109e+117
-5.3972079e+117
-5.3928953e+117
-5.3966503e+117
-5.401079e+117
-5.4038862e+117
-5.3993677e+117
-5.4018831e+117
-5.4063651e+117
-5.4139572e+117
-5.4098284e+117
-5.413646e+117
-5.4176068e+117
-5.4056832e+117
-5.4014125e+117
-5.405344e+117
-5.4095496e+117
-5.4106044e+117
-5.408134e+117
-5.4123256e+117
-5.4146365e+117
-5.4202896e+117
-5.416337e+117
-5.418545e+117
-5.4223707e+117
-5.4233862e+117
-5.4196719e+117
-5.4210096e+117
-5.4246899e+117
-5.4160085e+117
-5.4121361e+117
-5.4135192e+117
-5.4172915e+117
-5.4152274e+117
-5.414481e+117
-5.4184735e+117
-5.4194319e+117
-5.4262551e+117
-5.4223657e+117
-5.4235397e+117
-5.4276225e+117
-5.408011e+117
-5.4035472e+117
-5.4049302e+117
-5.4093707e+117
-5.3951412e+117
-5.3936765e+117
-5.3989005e+117
-5.4002682e+117
-5.3967387e+117
-5.3960132e+117
-5.4011037e+117
-5.4017319e+117
-5.4102546e+117
-5.4057184e+117
-5.406329e+117
-5.4108675e+117
-5.4650332e+117
-5.4596351e+117
-5.4611308e+117
-5.4664658e+117
-5.4545997e+117
-5.4497242e+117
-5.4513041e+117
-5.456127e+117
-5.4552571e+117
-5.4531618e+117
-5.4579666e+117
-5.4599937e+117
-5.4682033e+117
-5.4628738e+117
-5.4648851e+117
-5.4701974e+117
-5.445167e+117
-5.440857e+117
-5.4423186e+117
-5.446693e+117
-5.436808e+117
-5.4327316e+117
-5.4338083e+117
-5.438085e+117
-5.4366631e+117
-5.4349286e+117
-5.4395419e+117
-5.4414455e+117
-5.4485402e+117
-5.4439855e+117
-5.4460035e+117
-5.4506219e+117
-5.4718279e+117
-5.4664994e+117
-5.4686288e+117
-5.473937e+117
-5.4615885e+117
-5.4568814e+117
-5.459012e+117
-5.4636888e+117
-5.4761613e+117
-5.4708546e+117
-5.4734039e+117
-5.478809e+117
-5.4523959e+117
-5.447889e+117
-5.4501528e+117
-5.4545312e+117
-5.5132559e+117
-5.5068818e+117
-5.5090403e+117
-5.5154784e+117
-5.4963296e+117
-5.4944563e+117
-5.5007701e+117
-5.5027567e+117
-5.5047497e+117
-5.498225e+117
-5.5004725e+117
-5.5071267e+117
-5.5135844e+117
-5.5110944e+117
-5.517679e+117
-5.5203406e+117
-5.4883594e+117
-5.4821772e+117
-5.4838712e+117
-5.490141e+117
-5.471994e+117
-5.4705014e+117
-5.4763246e+117
-5.4779088e+117
-5.4757296e+117
-5.473724e+117
-5.479665e+117
-5.4816604e+117
-5.4876679e+117
-5.4856209e+117
-5.4919586e+117
-5.4940875e+117
-5.4844344e+117
-5.4817078e+117
-5.4877755e+117
-5.4905296e+117
-5.4795107e+117
-5.4773514e+117
-5.483348e+117
-5.4855439e+117
-5.4959899e+117
-5.4894521e+117
-5.4917275e+117
-5.4983576e+117
-5.5006777e+117
-5.4939899e+117
-5.4967905e+117
-5.5035043e+117
-5.5227164e+117
-5.5158745e+117
-5.5185824e+117
-5.525472e+117
-5.504954e+117
-5.5024769e+117
-5.5092794e+117
-5.5118803e+117
-5.5101527e+117
-5.5073097e+117
-5.5142886e+117
-5.5171119e+117
-5.5238431e+117
-5.5210261e+117
-5.5279621e+117
-5.5307677e+117
-5.4025291e+117
-5.4021573e+117
-5.3971577e+117
-5.3973804e+117
-5.402362e+117
-5.4111717e+117
-5.4066178e+117
-5.406805e+117
-5.4112509e+117
-5.4112654e+117
-5.4068492e+117
-5.4078257e+117
-5.4123073e+117
-5.4285495e+117
-5.4242753e+117
-5.4248172e+117
-5.4293599e+117
-5.4199649e+117
-5.4155535e+117
-5.4156951e+117
-5.4202611e+117
-5.4169333e+117
-5.415765e+117
-5.4205034e+117
-5.4217865e+117
-5.4301887e+117
-5.4253196e+117
-5.4267407e+117
-5.4317542e+117
-5.3237973e+117
-5.2973118e+117
-5.2935304e+117
-5.3251687e+117
-5.3468007e+117
-5.3622972e+117
-5.3615114e+117
-5.3459676e+117
-5.3789762e+117
-5.3710892e+117
-5.370562e+117
-5.3786688e+117
-5.3854534e+117
-5.3855675e+117
-5.3917493e+117
-5.3918324e+117
-5.6351666e+117
-5.6231994e+117
-5.632636e+117
-5.6257509e+117
-5.6422759e+117
-5.6520128e+117
-5.6545058e+117
-5.6447594e+117
-5.6311744e+117
-5.6405047e+117
-5.6283703e+117
-5.6377028e+117
-5.6473041e+117
-5.6571265e+117
-5.6501362e+117
-5.6599993e+117
-5.5988932e+117
-5.6073857e+117
-5.6101926e+117
-5.6017812e+117
-5.6073584e+117
-5.6045953e+117
-5.6129886e+117
-5.6157968e+117
-5.6275956e+117
-5.616006e+117
-5.6248214e+117
-5.6187843e+117
-5.6244829e+117
-5.6334138e+117
-5.6216135e+117
-5.6304969e+117
-5.5988578e+117
-5.5877531e+117
-5.5963164e+117
-5.5902839e+117
-5.6050727e+117
-5.6139772e+117
-5.616515e+117
-5.6076028e+117
-5.6044856e+117
-5.5929659e+117
-5.6015099e+117
-5.5959141e+117
-5.6102992e+117
-5.6192127e+117
-5.6131703e+117
-5.6220294e+117
-5.6339689e+117
-5.6433441e+117
-5.6462255e+117
-5.6367812e+117
-5.6629692e+117
-5.6530573e+117
-5.6559898e+117
-5.6659797e+117
-5.6397107e+117
-5.6426893e+117
-5.6492048e+117
-5.6522353e+117
-5.669075e+117
-5.6621185e+117
-5.672247e+117
-5.6590068e+117
-5.5771654e+117
-5.5852294e+117
-5.5875239e+117
-5.5795604e+117
-5.5818314e+117
-5.58415e+117
-5.5897052e+117
-5.5919986e+117
-5.603581e+117
-5.5933064e+117
-5.6014395e+117
-5.5954782e+117
-5.599996e+117
-5.60822e+117
-5.5976225e+117
-5.6057778e+117
-5.5713912e+117
-5.55505e+117
-5.5689527e+117
-5.5575796e+117
-5.5737678e+117
-5.5761674e+117
-5.5421781e+117
-5.539719e+117
-5.5466199e+117
-5.5491009e+117
-5.6108945e+117
-5.6097924e+117
-5.6182894e+117
-5.6205578e+117
-5.6119699e+117
-5.6142236e+117
-5.622892e+117
-5.6167427e+117
-5.6254691e+117
-5.6385366e+117
-5.6270666e+117
-5.636074e+117
-5.6294199e+117
-5.6344662e+117
-5.6437102e+117
-5.6318221e+117
-5.6410171e+117
-5.6650349e+117
-5.6752437e+117
-5.6779737e+117
-5.6677402e+117
-5.6454391e+117
-5.6550579e+117
-5.6576969e+117
-5.6479835e+117
-5.6505262e+117
-5.6602968e+117
-5.6532737e+117
-5.6630745e+117
-5.6731691e+117
-5.6703448e+117
-5.6805856e+117
-5.6834732e+117
-5.6194544e+117
-5.6282091e+117
-5.637237e+117
-5.646506e+117
-5.6560898e+117
-5.6659037e+117
-5.6863527e+117
-5.6760177e+117
-5.5658786e+117
-5.555451e+117
-5.5633429e+117
-5.558007e+117
-5.5712908e+117
-5.5793764e+117
-5.5818799e+117
-5.5737882e+117
-5.5634842e+117
-5.5713327e+117
-5.560662e+117
-5.5685129e+117
-5.5764465e+117
-5.5845749e+117
-5.5793198e+117
-5.5874869e+117
-5.5610947e+117
-5.5445285e+117
-5.5582361e+117
-5.5474682e+117
-5.5528556e+117
-5.5501161e+117
-5.5638495e+117
-5.5665286e+117
-5.5417159e+117
-5.5348241e+117
-5.5374911e+117
-5.5443874e+117
-5.5321358e+117
-5.52949e+117
-5.5362867e+117
-5.5390072e+117
-5.5341162e+117
-5.5474701e+117
-5.5500144e+117
-5.5366517e+117
-5.5391333e+117
-5.5526557e+117
-5.5419737e+117
-5.5554543e+117
-5.5309497e+117
-5.5242569e+117
-5.5269352e+117
-5.5336996e+117
-5.5218213e+117
-5.5196284e+117
-5.5261201e+117
-5.5284345e+117
-5.5663226e+117
-5.574252e+117
-5.5771611e+117
-5.5691745e+117
-5.5719748e+117
-5.5746927e+117
-5.5800034e+117
-5.5827596e+117
-5.5904868e+117
-5.5934217e+117
-5.5823001e+117
-5.585221e+117
-5.5908523e+117
-5.588082e+117
-5.5962787e+117
-5.5990278e+117
-5.7695177e+117
-5.7840192e+117
-5.78754e+117
-5.7730756e+117
-5.780148e+117
-5.77655e+117
-5.7910576e+117
-5.7947728e+117
-5.8195881e+117
-5.7996153e+117
-5.8160266e+117
-5.8031446e+117
-5.8105986e+117
-5.8272759e+117
-5.8067769e+117
-5.8233853e+117
-5.7737031e+117
-5.7562934e+117
-5.7705181e+117
-5.7593694e+117
-5.7858954e+117
-5.8020171e+117
-5.8053276e+117
-5.7891318e+117
-5.7804682e+117
-5.7624959e+117
-5.7768757e+117
-5.7659669e+117
-5.79248e+117
-5.8088178e+117
-5.7960584e+117
-5.8124369e+117
-5.8425995e+117
-5.8197303e+117
-5.8390474e+117
-5.8231641e+117
-5.8598667e+117
-5.8634886e+117
-5.8304078e+117
-5.850009e+117
-5.8267134e+117
-5.8462362e+117
-5.867172e+117
-5.8710652e+117
-5.8340686e+117
-5.8537457e+117
-5.8575111e+117
-5.8377299e+117
-5.878746e+117
-5.8749188e+117
-5.841587e+117
-5.845549e+117
-5.861444e+117
-5.8654572e+117
-5.8867646e+117
-5.8826988e+117
-5.8491715e+117
-5.8691454e+117
-5.8723869e+117
-5.8523758e+117
-5.8584057e+117
-5.8553639e+117
-5.8753257e+117
-5.8784155e+117
-5.8904893e+117
-5.8936576e+117
-5.8998659e+117
-5.8966789e+117
-5.7951781e+117
-5.8099924e+117
-5.8127231e+117
-5.7979445e+117
-5.8030942e+117
-5.8004986e+117
-5.8152653e+117
-5.8179019e+117
-5.8454524e+117
-5.825961e+117
-5.8427845e+117
-5.8286439e+117
-5.8339624e+117
-5.8509508e+117
-5.8312632e+117
-5.8482039e+117
-5.8013005e+117
-5.783487e+117
-5.798213e+117
-5.7865335e+117
-5.814123e+117
-5.830824e+117
-5.8339262e+117
-5.8171963e+117
-5.8071538e+117
-5.7894287e+117
-5.8041545e+117
-5.7923227e+117
-5.8201518e+117
-5.8369661e+117
-5.8231306e+117
-5.8399628e+117
-5.8612465e+117
-5.8813523e+117
-5.8842102e+117
-5.8639895e+117
-5.9059303e+117
-5.9029763e+117
-5.8667883e+117
-5.8695877e+117
-5.8870863e+117
-5.8899308e+117
-5.9117838e+117
-5.908861e+117
-5.7459338e+117
-5.730202e+117
-5.7428682e+117
-5.7332351e+117
-5.7558424e+117
-5.76922e+117
-5.7722122e+117
-5.7588505e+117
-5.7518051e+117
-5.7361747e+117
-5.7488545e+117
-5.7391826e+117
-5.761801e+117
-5.7751751e+117
-5.7646408e+117
-5.7779753e+117
-5.6856632e+117
-5.6962033e+117
-5.6989571e+117
-5.6883783e+117
-5.6910906e+117
-5.7017973e+117
-5.7048263e+117
-5.6940592e+117
-5.7070297e+117
-5.7181894e+117
-5.7211092e+117
-5.7098573e+117
-5.712751e+117
-5.724048e+117
-5.7270867e+117
-5.7158113e+117
-5.697002e+117
-5.7078202e+117
-5.7105415e+117
-5.699778e+117
-5.7187726e+117
-5.7299391e+117
-5.7324923e+117
-5.7213746e+117
-5.7418845e+117
-5.7543931e+117
-5.7570196e+117
-5.7444603e+117
-5.7495767e+117
-5.7470032e+117
-5.7595976e+117
-5.7621712e+117
-5.7807928e+117
-5.7835288e+117
-5.7673242e+117
-5.7699999e+117
-5.7751737e+117
-5.7725862e+117
-5.7861268e+117
-5.7887044e+117
-5.7200609e+117
-5.7049433e+117
-5.7171155e+117
-5.7078521e+117
-5.7296065e+117
-5.742506e+117
-5.7454626e+117
-5.7325248e+117
-5.7138136e+117
-5.7260895e+117
-5.7106775e+117
-5.7228927e+117
-5.7354703e+117
-5.7485512e+117
-5.7387627e+117
-5.7519253e+117
-5.6731742e+117
-5.6835842e+117
-5.6867573e+117
-5.6762697e+117
-5.6794237e+117
-5.6899612e+117
-5.6931925e+117
-5.6826364e+117
-5.7085501e+117
-5.6942701e+117
-5.7052657e+117
-5.6974998e+117
-5.7151333e+117
-5.7007436e+117
-5.7118457e+117
-5.7040014e+117
-5.6748186e+117
-5.6620111e+117
-5.6721704e+117
-5.6645682e+117
-5.6826167e+117
-5.6933623e+117
-5.696189e+117
-5.6853421e+117
-5.6805251e+117
-5.6672356e+117
-5.6775538e+117
-5.6701638e+117
-5.6881233e+117
-5.6990192e+117
-5.6911516e+117
-5.7020906e+117
-5.7170771e+117
-5.7294212e+117
-5.7328543e+117
-5.7204104e+117
-5.7237561e+117
-5.73625e+117
-5.7270863e+117
-5.739647e+117
-5.7554202e+117
-5.7589418e+117
-5.7421955e+117
-5.7456612e+117
-5.7525689e+117
-5.7490907e+117
-5.7624284e+117
-5.7659449e+117
-3.4268453e+117
-3.5894763e+117
-3.5928228e+117
-3.7043273e+117
-3.7009139e+117
-3.8137175e+117
-3.8099642e+117
-3.920108e+117
-3.9241519e+117
-4.0369537e+117
-4.1487825e+117
-4.1522811e+117
-4.0329252e+117
-4.2727632e+117
-4.3987958e+117
-4.3964359e+117
-4.2698173e+117
-3.6989614e+117
-3.5908766e+117
-3.5866274e+117
-3.6952057e+117
-3.8076039e+117
-3.804751e+117
-3.9148726e+117
-3.9168222e+117
-4.029095e+117
-4.0273819e+117
-4.1427547e+117
-4.1446929e+117
-3.8023951e+117
-3.9129982e+117
-3.9113924e+117
-3.7997554e+117
-5.7154282e+117
-5.7117833e+117
-5.721388e+117
-5.7138965e+117
-5.729789e+117
-5.5931423e+117
-5.5974565e+117
-5.6018684e+117
-5.594802e+117
-5.607844e+117
-5.7358542e+117
-5.7225202e+117
-5.6090584e+117
-5.601298e+117
-5.8232441e+117
-5.8163947e+117
-5.8174377e+117
-5.8237978e+117
-5.9224608e+117
-5.909477e+117
-5.9075669e+117
-5.9198514e+117
-6.182556e+117
-6.1477387e+117
-6.1598785e+117
-6.0547743e+117
-6.1768248e+117
-6.1082037e+117
-6.0409753e+117
-6.1108088e+117
-6.1706109e+117
-6.0476728e+117
-6.1630026e+117
-6.1400608e+117
-5.9887313e+117
-5.9795239e+117
-5.9845195e+117
-6.2348597e+117
-6.2157766e+117
-6.2366955e+117
-6.2360687e+117
-6.229509e+117
-6.2110726e+117
-6.2287372e+117
-6.23079e+117
-6.2082558e+117
-6.2323197e+117
-6.2392442e+117
-6.219785e+117
-6.1638281e+117
-6.2254208e+117
-6.2395749e+117
-6.2342201e+117
-6.2376077e+117
-6.2229868e+117
-6.2378714e+117
-6.1750606e+117
-6.2143658e+117
-6.2066185e+117
-6.2055355e+117
-6.1974715e+117
-6.2361774e+117
-6.2108575e+117
-6.1970447e+117
-6.1936312e+117
-6.2356099e+117
-6.2251845e+117
-6.2252817e+117
-6.1094844e+117
-6.0675544e+117
-6.1083716e+117
-5.9793784e+117
-6.0544502e+117
-5.8099968e+117
-6.1133012e+117
-6.053124e+117
-5.7059335e+117
-6.0784995e+117
-6.1045203e+117
-6.0898307e+117
-5.5360066e+117
-5.2349468e+117
-5.8700479e+117
-5.5752038e+117
-4.8751555e+117
-5.8823938e+117
-5.4990746e+117
-6.1443311e+117
-6.4115174e+117
-6.074913e+117
-5.9944773e+117
-5.983739e+117
-4.7222581e+117
-6.2322016e+117
-6.5790766e+117
-6.3417164e+117
-6.1755727e+117
-5.6461055e+117
-6.1597226e+117
-6.1452998e+117
-6.120113e+117
-6.1345494e+117
-6.1144533e+117
-6.1121673e+117
-6.132648e+117
-5.8810829e+117
-5.9032393e+117
-5.806358e+117
-5.7913398e+117
-5.8511475e+117
-5.7337116e+117
-5.8563043e+117
-6.1645058e+117
-6.1283265e+117
-6.1167162e+117
-6.1517538e+117
-6.2021041e+117
-6.1772866e+117
-6.1599349e+117
-6.1771357e+117
-6.1683554e+117
-6.2085738e+117
-6.1824049e+117
-5.525547e+117
-5.7199431e+117
-5.7026031e+117
-6.1144349e+117
-6.1322938e+117
-6.1495294e+117
-6.1956058e+117
-5.254606e+117
-4.9059801e+117
-6.1320858e+117
-6.65345e+117
-5.9124788e+117
-7.1583973e+117
-6.4942455e+117
-6.0183352e+117
-7.1574242e+117
-6.4382853e+117
-6.5485772e+117
-5.7354549e+117
-5.6990445e+117
-5.8084009e+117
-5.7899909e+117
-5.9825777e+117
-5.9647262e+117
-5.9853136e+117
-5.996415e+117
-5.9722361e+117
-5.9160811e+117
-5.9065209e+117
-6.1602872e+117
-6.29955e+117
-6.5674617e+117
-7.0692848e+117
-6.1077088e+117
-6.0893393e+117
-6.1072913e+117
-6.1328397e+117
-6.0491146e+117
-6.0844732e+117
-6.1168452e+117
-6.0885243e+117
-6.0421373e+117
-6.0661153e+117
-6.0547186e+117
-6.1088536e+117
-6.0832807e+117
-6.090967e+117
-6.0545501e+117
-6.0560986e+117
-6.0766697e+117
-6.0539615e+117
-6.0829145e+117
-6.1255169e+117
-6.5931906e+117
-7.188491e+117
-8.1374446e+117
-8.3046414e+117
-2.5529746e+117
-3.0861557e+117
-1.9845733e+117
-6.5232634e+117
-6.4676804e+117
-3.2754689e+117
-6.5832382e+117
-6.4384707e+117
-4.5779463e+117
-4.3089555e+117
-4.4855216e+117
-4.4983142e+117
-4.6296241e+117
-4.6185315e+117
-4.7589334e+117
-4.7510645e+117
-4.7333508e+117
-4.7483796e+117
-4.6217554e+117
-4.7579217e+117
-4.4886193e+117
-4.3615221e+117
-4.0798743e+117
-4.2470894e+117
-4.2388532e+117
-4.3524254e+117
-4.4804747e+117
-4.6166934e+117
-4.7573821e+117
-4.9355597e+117
-4.9304912e+117
-4.9292532e+117
-3.8587834e+117
-4.0160804e+117
-4.0217533e+117
-4.1292887e+117
-4.1242684e+117
-4.3516013e+117
-4.2375162e+117
-4.2328835e+117
-4.34695e+117
-4.4733549e+117
-4.476905e+117
-4.7729944e+117
-4.6159499e+117
-4.9434458e+117
-4.6151843e+117
-4.7771194e+117
-4.9521731e+117
-4.6166653e+117
-4.7841118e+117
-4.9677529e+117
-4.4722348e+117
-4.3449981e+117
-4.2300233e+117
-4.1218702e+117
-4.0163568e+117
-3.9108269e+117
-3.6386304e+117
-3.8020588e+117
-3.7987199e+117
-3.9066267e+117
-4.0115685e+117
-4.1176365e+117
-4.2267069e+117
-4.342833e+117
-4.4720893e+117
-4.619356e+117
-4.7906969e+117
-4.9792665e+117
-3.9046369e+117
-3.7987398e+117
-3.7961537e+117
-3.901192e+117
-4.0068918e+117
-4.0102777e+117
-4.1154237e+117
-4.1131609e+117
-4.3414241e+117
-4.2242672e+117
-4.2229548e+117
-4.3411063e+117
-5.7200722e+117
-5.8211814e+117
-5.5631055e+117
-5.4026873e+117
-5.2436893e+117
-5.713247e+117
-5.8378883e+117
-5.7008482e+117
-5.8233504e+117
-5.8251995e+117
-5.748071e+117
-5.8345088e+117
-5.701327e+117
-5.9214986e+117
-5.9204962e+117
-5.9217693e+117
-5.8217261e+117
-5.6895729e+117
-5.6990712e+117
-5.5549751e+117
-5.566528e+117
-5.4348262e+117
-5.1322261e+117
-5.3297594e+117
-5.3184913e+117
-5.308266e+117
-5.3147383e+117
-5.4457687e+117
-5.4429988e+117
-5.4593704e+117
-5.5676266e+117
-5.6976237e+117
-5.5851622e+117
-5.5710288e+117
-5.5765398e+117
-5.8190858e+117
-5.9302849e+117
-5.9335479e+117
-5.9579898e+117
-4.8636498e+117
-5.0597395e+117
-5.0592185e+117
-5.1932411e+117
-5.197985e+117
-5.450817e+117
-5.3209171e+117
-5.330866e+117
-5.4662934e+117
-5.5992939e+117
-5.579284e+117
-5.7100482e+117
-5.7347487e+117
-5.9553237e+117
-5.8363896e+117
-5.8668889e+117
-5.9905405e+117
-4.7775655e+117
-4.7865726e+117
-4.9243979e+117
-4.9222755e+117
-4.9254516e+117
-4.9246357e+117
-5.0694327e+117
-5.0791405e+117
-5.0623092e+117
-5.2037683e+117
-5.2189263e+117
-5.0992846e+117
-5.106927e+117
-5.3474838e+117
-5.3707189e+117
-5.5224694e+117
-5.4901389e+117
-5.6307412e+117
-5.7717858e+117
-5.6724452e+117
-5.7653135e+117
-5.6034155e+117
-5.4359937e+117
-5.2671191e+117
-5.282692e+117
-5.3788817e+117
-5.6427437e+117
-5.4686047e+117
-5.2877402e+117
-5.1080391e+117
-5.681152e+117
-5.4997158e+117
-5.3101568e+117
-5.1225232e+117
-5.2112037e+117
-5.1045995e+117
-5.1133706e+117
-5.2277301e+117
-5.4537096e+117
-5.3592757e+117
-5.4893002e+117
-5.3891789e+117
-5.532121e+117
-5.559936e+117
-5.5680078e+117
-5.5958839e+117
-5.6045066e+117
-5.5826608e+117
-5.6415322e+117
-5.61904e+117
-5.6209252e+117
-5.6588611e+117
-5.5291195e+117
-5.331522e+117
-5.1361914e+117
-5.5567753e+117
-5.3533784e+117
-5.1511001e+117
-5.374225e+117
-5.1665333e+117
-5.394737e+117
-5.1825263e+117
-6.0249811e+117
-6.0032371e+117
-5.9918431e+117
-5.989125e+117
-6.0008961e+117
-6.1066282e+117
-6.0697375e+117
-6.1237109e+117
-6.0542677e+117
-6.1032902e+117
-6.1035875e+117
-6.0466167e+117
-6.0898636e+117
-6.0660846e+117
-6.1105384e+117
-6.0936622e+117
-6.0998852e+117
-6.1464597e+117
-6.1255584e+117
-6.0264173e+117
-6.0640918e+117
-6.1480516e+117
-1.4717697e+117
-4.3337659e+117
-5.3809436e+117
-3.7392073e+117
-5.3569991e+117
-5.6715357e+117
-5.6832064e+117
-5.6619703e+117
-5.3335311e+117
-4.9509559e+117
-5.6616539e+117
-5.3322332e+117
-4.510878e+117
-5.9118893e+117
-5.9082817e+117
-5.91574e+117
-4.2704191e+117
-3.1795114e+117
-5.2731462e+117
-5.6456833e+117
-5.8983563e+117
-5.6141747e+117
-5.2914552e+117
-5.9771172e+117
-5.9091569e+117
-6.0611967e+117
-5.6684233e+117
-5.8953641e+117
-5.7421739e+117
-5.4044502e+117
-4.9511694e+117
-4.2950227e+117
-4.817297e+117
-4.682258e+117
-4.1881662e+117
-3.459738e+117
-4.3402655e+117
-4.8297096e+117
-4.1029258e+117
-3.3733386e+117
-3.2807764e+117
-4.4909224e+117
-5.2637654e+117
-4.4010728e+117
-4.736556e+117
-2.7025173e+117
-3.2380612e+117
-3.9761979e+117
-3.2681984e+117
-4.8028146e+117
-3.2400045e+117
-2.4478431e+117
-6.1638961e+116
-2.3429618e+117
-1.1641593e+117
-8.6210673e+116
-3.2705927e+117
-6.1745751e+117
-6.1743186e+117
-6.1411289e+117
-6.1449805e+117
-6.1485603e+117
-6.1207298e+117
-6.0831497e+117
-6.0779569e+117
-6.0293072e+117
-6.0172262e+117
-5.9051075e+117
-5.8970651e+117
-6.0168266e+117
-6.0778153e+117
-6.0779928e+117
-6.0916289e+117
-6.0241981e+117
-6.0981268e+117
-6.0429499e+117
-6.044826e+117
-6.1013415e+117
-6.0587419e+117
-6.0976772e+117
-4.2257205e+117
-1.4018491e+117
-2.3720696e+116
-4.5181839e+117
-5.8101169e+117
-5.5299457e+117
-1.3153155e+117
-4.5276421e+117
-5.1507554e+117
-2.116635e+116
-1.2818272e+117
-3.8010018e+117
-4.6233657e+117
-3.5538258e+117
-3.6449216e+117
-6.0308243e+117
-6.106889e+117
-6.1341484e+117
-6.0642207e+117
-8.8545738e+116
-6.0110206e+116
-2.2557016e+117
-2.2746998e+117
-4.799214e+117
-4.5524343e+117
-5.7136782e+117
-5.6915848e+117
-5.6516657e+117
-5.6712419e+117
-5.735717e+117
-5.722985e+117
-5.7468045e+117
-5.7334595e+117
-5.7599353e+117
-5.7400883e+117
-5.8659108e+117
-5.72584e+117
-5.8551488e+117
-5.9883914e+117
-5.9970602e+117
-5.5990811e+117
-5.4701011e+117
-4.8801927e+117
-5.2176314e+117
-5.2114551e+117
-5.0788616e+117
-5.0834261e+117
-5.3496212e+117
-5.3413135e+117
-5.4802643e+117
-5.6117171e+117
-4.6071595e+117
-4.8766798e+117
-4.985293e+117
-4.9902918e+117
-4.8701266e+117
-4.33678e+117
-5.0913868e+117
-5.1908865e+117
-5.1154256e+117
-5.2191004e+117
-5.4067839e+117
-5.3160246e+117
-5.6981714e+117
-5.7005655e+117
-5.7122287e+117
-5.7116315e+117
-5.6791519e+117
-5.6896388e+117
-5.6871604e+117
-5.676794e+117
-5.6432012e+117
-5.6324096e+117
-5.6390874e+117
-5.6499787e+117
-5.6592585e+117
-5.6691835e+117
-5.6670574e+117
-5.6581384e+117
-5.7339605e+117
-5.7214943e+117
-5.6703268e+117
-5.6638594e+117
-5.6742427e+117
-5.6804781e+117
-5.7054433e+117
-5.6908377e+117
-5.6855074e+117
-5.6974459e+117
-5.6920206e+117
-5.6766108e+117
-5.6805735e+117
-5.6877967e+117
-5.6555999e+117
-5.6592786e+117
-5.6697475e+117
-5.6659352e+117
-5.623514e+117
-5.6287043e+117
-5.639584e+117
-5.6335492e+117
-5.6503559e+117
-5.6436318e+117
-5.653951e+117
-5.6603652e+117
-5.649386e+117
-5.6354761e+117
-5.6392408e+117
-5.6456303e+117
-5.6159272e+117
-5.6196006e+117
-5.6294889e+117
-5.6257098e+117
-5.6851533e+117
-5.6714306e+117
-5.6739388e+117
-5.68266e+117
-5.6529283e+117
-5.6632994e+117
-5.6607899e+117
-5.6504388e+117
-5.648552e+117
-5.6476529e+117
-5.6577523e+117
-5.6588872e+117
-5.6694827e+117
-5.6809605e+117
-5.6683185e+117
-5.6799351e+117
-5.6108157e+117
-5.613288e+117
-5.6230485e+117
-5.6205098e+117
-5.6327945e+117
-5.6302651e+117
-5.6403751e+117
-5.6429726e+117
-5.6271291e+117
-5.6283837e+117
-5.6384862e+117
-5.6372112e+117
-5.6079199e+117
-5.6090421e+117
-5.6187326e+117
-5.6174549e+117
-5.7364898e+117
-5.7451371e+117
-5.75812e+117
-5.7551215e+117
-5.7205425e+117
-5.7311188e+117
-5.7089385e+117
-5.7201689e+117
-5.7161397e+117
-5.6988799e+117
-5.7033817e+117
-5.7109018e+117
-5.7295083e+117
-5.744982e+117
-5.7378437e+117
-5.7235022e+117
-5.6914009e+117
-5.6923201e+117
-5.7043612e+117
-5.7032862e+117
-5.6937787e+117
-5.6961448e+117
-5.7080806e+117
-5.7057294e+117
-5.7180558e+117
-5.720537e+117
-5.7344875e+117
-5.7316168e+117
-5.7300015e+117
-5.7165686e+117
-5.7154524e+117
-5.7287199e+117
-5.7722381e+117
-5.7742852e+117
-5.7921851e+117
-5.789578e+117
-5.8016419e+117
-5.7818116e+117
-5.7770767e+117
-5.7962587e+117
-5.7452804e+117
-5.7484643e+117
-5.7643204e+117
-5.7607352e+117
-5.7420963e+117
-5.7434849e+117
-5.7586143e+117
-5.7568645e+117
-5.7702039e+117
-5.785629e+117
-5.7659422e+117
-5.7829978e+117
-5.7531179e+117
-5.7590635e+117
-5.7768781e+117
-5.7689699e+117
-5.7946705e+117
-5.8115597e+117
-5.7864081e+117
-5.8073046e+117
-5.8194211e+117
-5.8112596e+117
-5.8144505e+117
-5.7989286e+117
-5.7994755e+117
-5.8246475e+117
-5.810599e+117
-5.7838638e+117
-5.8234401e+117
-5.8256485e+117
-5.8348419e+117
-5.8381531e+117
-5.8337451e+117
-5.8258641e+117
-5.6424322e+117
-5.6270554e+117
-5.6465335e+117
-5.6616066e+117
-5.6085455e+117
-5.5903014e+117
-5.6063808e+117
-5.6243714e+117
-5.6214305e+117
-5.6376056e+117
-5.6558646e+117
-5.6394851e+117
-5.6575321e+117
-5.6740732e+117
-5.693677e+117
-5.6767379e+117
-5.7054921e+117
-5.7241625e+117
-5.7155528e+117
-5.7140876e+117
-5.7068967e+117
-5.6972118e+117
-5.6870459e+117
-5.6967886e+117
-5.7177283e+117
-5.7081568e+117
-5.7202901e+117
-5.7300036e+117
-5.7264804e+117
-5.7387928e+117
-5.747511e+117
-5.7351407e+117
-5.6552016e+117
-5.6628537e+117
-5.6729136e+117
-5.6654042e+117
-5.6758215e+117
-5.6835671e+117
-5.6953635e+117
-5.6869248e+117
-5.7000745e+117
-5.6910001e+117
-5.7031075e+117
-5.7122242e+117
-5.6700742e+117
-5.689131e+117
-5.6801987e+117
-5.6789326e+117
-5.7578847e+117
-5.7600868e+117
-5.749228e+117
-5.7687196e+117
-5.7644904e+117
-5.7624535e+117
-5.7527114e+117
-5.7740088e+117
-5.7307213e+117
-5.7415363e+117
-5.7513238e+117
-5.7404126e+117
-5.7825894e+117
-5.7710775e+117
-5.7798187e+117
-5.7914156e+117
-5.7055787e+117
-5.6970407e+117
-5.7073638e+117
-5.7161315e+117
-5.7270143e+117
-5.7181423e+117
-5.7295067e+117
-5.7384821e+117
-5.744515e+117
-5.7350506e+117
-5.7467511e+117
-5.7562754e+117
-5.7134242e+117
-5.7240882e+117
-5.7333784e+117
-5.7225668e+117
-5.7930476e+117
-5.7879375e+117
-5.7783483e+117
-5.8024201e+117
-5.8047645e+117
-5.8170183e+117
-5.8270241e+117
-5.8147798e+117
-5.8114105e+117
-5.8201558e+117
-5.8240147e+117
-5.8359145e+117
-5.8446842e+117
-5.8328927e+117
-5.7970697e+117
-5.8059727e+117
-5.7412677e+117
-5.750271e+117
-5.7651687e+117
-5.7554004e+117
-5.766594e+117
-5.779463e+117
-5.7894129e+117
-5.7763652e+117
-5.7742186e+117
-5.7839759e+117
-5.7850723e+117
-5.7980366e+117
-5.8079573e+117
-5.7952036e+117
-5.7591549e+117
-5.7689853e+117
-5.6743992e+117
-5.7043206e+117
-5.6928698e+117
-5.6857148e+117
-5.6501748e+117
-5.6684269e+117
-5.6816477e+117
-5.6631971e+117
-5.699838e+117
-5.6867994e+117
-5.7196414e+117
-5.7065069e+117
-5.7111547e+117
-5.7312156e+117
-5.7429882e+117
-5.7227401e+117
-5.7462783e+117
-5.7526788e+117
-5.7631369e+117
-5.7566267e+117
-5.7679012e+117
-5.7803423e+117
-5.7869598e+117
-5.7744022e+117
-5.7925931e+117
-5.7800184e+117
-5.7851482e+117
-5.7976881e+117
-5.7582678e+117
-5.7686991e+117
-5.7738404e+117
-5.7635515e+117
-5.7207583e+117
-5.727796e+117
-5.7380611e+117
-5.7309256e+117
-5.7418894e+117
-5.7542235e+117
-5.7615897e+117
-5.7491389e+117
-5.768144e+117
-5.75568e+117
-5.7622704e+117
-5.7746139e+117
-5.7340985e+117
-5.7510617e+117
-5.7444535e+117
-5.7407059e+117
-5.7867183e+117
-5.7941116e+117
-5.8056027e+117
-5.7983264e+117
-5.7850309e+117
-5.7785427e+117
-5.7894487e+117
-5.7960022e+117
-5.7646873e+117
-5.7755677e+117
-5.7829982e+117
-5.7720772e+117
-5.8120743e+117
-5.8005003e+117
-5.8072619e+117
-5.8189413e+117
-5.7908474e+117
-5.7974119e+117
-5.8084004e+117
-5.8018115e+117
-5.8130877e+117
-5.8196653e+117
-5.8314197e+117
-5.8248363e+117
-5.8308987e+117
-5.8253496e+117
-5.8372135e+117
-5.8427562e+117
-5.8029916e+117
-5.8082162e+117
-5.8194055e+117
-5.8140459e+117
-5.8548657e+117
-5.8470744e+117
-5.8407561e+117
-5.8611671e+117
-5.8679954e+117
-5.8794012e+117
-5.8856633e+117
-5.8741881e+117
-5.8669594e+117
-5.8723997e+117
-5.8798889e+117
-5.8912438e+117
-5.8966733e+117
-5.8853431e+117
-5.8528441e+117
-5.8583137e+117
-5.8278228e+117
-5.8211356e+117
-5.8138116e+117
-5.8351296e+117
-5.8406942e+117
-5.8522243e+117
-5.8598711e+117
-5.8482548e+117
-5.8419252e+117
-5.848671e+117
-5.8551366e+117
-5.8666617e+117
-5.8733723e+117
-5.8618415e+117
-5.8278134e+117
-5.8345268e+117
-5.6944864e+117
-5.8180019e+117
-5.8127315e+117
-5.8239351e+117
-5.829074e+117
-5.8403751e+117
-5.8353099e+117
-5.8471183e+117
-5.8521418e+117
-5.8503451e+117
-5.8451486e+117
-5.8569813e+117
-5.8621334e+117
-5.8921913e+117
-5.9062431e+117
-5.9110675e+117
-5.8970386e+117
-5.8966007e+117
-5.9013959e+117
-5.88735e+117
-5.8825649e+117
-5.9208267e+117
-5.9096195e+117
-5.9256143e+117
-5.9143394e+117
-5.9238906e+117
-5.9190457e+117
-5.9303048e+117
-5.9351495e+117
-5.8771934e+117
-5.8680862e+117
-5.8631156e+117
-5.8822091e+117
-5.8902914e+117
-5.8953898e+117
-5.9066781e+117
-5.9015294e+117
-5.8921329e+117
-5.8871498e+117
-5.9050903e+117
-5.9002695e+117
-5.9114718e+117
-5.9162785e+117
-5.8730066e+117
-5.8780526e+117
-5.8135563e+117
-5.8233479e+117
-5.8309862e+117
-5.8405462e+117
-5.8412893e+117
-5.8504866e+117
-5.8047691e+117
-5.7961879e+117
-5.8223865e+117
-5.8151486e+117
-5.8232555e+117
-5.8313871e+117
-5.8328787e+117
-5.8429055e+117
-5.8600887e+117
-5.8499147e+117
-5.8600397e+117
-5.8698095e+117
-5.8520033e+117
-5.8608174e+117
-5.8690327e+117
-5.8779535e+117
-5.8875069e+117
-5.8789298e+117
-5.8401844e+117
-5.849979e+117
-5.8321116e+117
-5.84106e+117
-5.8596102e+117
-5.8688703e+117
-5.8508188e+117
-5.8601348e+117
-5.8786369e+117
-5.8871791e+117
-5.8690961e+117
-5.8780253e+117
-5.8875366e+117
-5.8957718e+117
-5.8960311e+117
-5.9040006e+117
-5.8412132e+117
-5.8568754e+117
-5.8653026e+117
-5.8465204e+117
-5.8540696e+117
-5.8732044e+117
-5.8798957e+117
-5.8606501e+117
-5.8563721e+117
-5.8652766e+117
-5.8460353e+117
-5.8553747e+117
-5.8675538e+117
-5.8572791e+117
-5.8752596e+117
-5.8827475e+117
-5.8669667e+117
-5.8744919e+117
-5.8853192e+117
-5.8774408e+117
-5.8842766e+117
-5.891192e+117
-5.8930701e+117
-5.8995587e+117
-5.8935846e+117
-5.9018518e+117
-5.8677269e+117
-5.8872319e+117
-5.8956632e+117
-5.876014e+117
-5.9091787e+117
-5.9074384e+117
-5.9014498e+117
-5.9093485e+117
-5.9148072e+117
-5.9161315e+117
-5.909171e+117
-5.9027509e+117
-5.8828555e+117
-5.888557e+117
-5.9037023e+117
-5.9113575e+117
-5.9108198e+117
-5.9181902e+117
-5.9171733e+117
-5.9243561e+117
-5.9232463e+117
-5.9302566e+117
-5.8829045e+117
-5.8997728e+117
-5.8895015e+117
-5.9062687e+117
-5.9153342e+117
-5.9091579e+117
-5.8685769e+117
-5.8856154e+117
-5.8761606e+117
-5.893218e+117
-5.9025885e+117
-5.8953141e+117
-5.922491e+117
-5.9215593e+117
-5.9164497e+117
-5.9230064e+117
-5.9278101e+117
-5.928524e+117
-5.934148e+117
-5.9336605e+117
-5.9290305e+117
-5.9347538e+117
-5.9391685e+117
-5.9395127e+117
-5.8939753e+117
-5.9150436e+117
-5.9208106e+117
-5.8992701e+117
-5.931386e+117
-5.9262401e+117
-5.9045262e+117
-5.9094401e+117
-5.9289288e+117
-5.9357899e+117
-5.9344681e+117
-5.9411877e+117
-5.9396022e+117
-5.9461972e+117
-5.944597e+117
-5.9510691e+117
-5.9123872e+117
-5.9286409e+117
-5.9069856e+117
-5.9232763e+117
-5.9371825e+117
-5.9320766e+117
-5.9015229e+117
-5.9180261e+117
-5.8954643e+117
-5.9120463e+117
-5.9268043e+117
-5.9211515e+117
-5.9446618e+117
-5.9444688e+117
-5.9402024e+117
-5.9454325e+117
-5.9495436e+117
-5.9496594e+117
-5.9544423e+117
-5.9544195e+117
-5.9503838e+117
-5.9551679e+117
-5.9590862e+117
-5.9590715e+117
-5.9141396e+117
-5.9362886e+117
-5.941149e+117
-5.9187479e+117
-5.9503035e+117
-5.9458448e+117
-5.9232408e+117
-5.9275283e+117
-5.9507753e+117
-5.9458853e+117
-5.9666797e+117
-5.9618829e+117
-5.9701864e+117
-5.9747092e+117
-5.9365477e+117
-5.9412763e+117
-5.9574148e+117
-5.952641e+117
-5.9656686e+117
-5.9610656e+117
-5.9272561e+117
-5.9320731e+117
-5.943375e+117
-5.9482159e+117
-5.9565117e+117
-5.9518432e+117
-5.9225077e+117
-5.917353e+117
-5.9335255e+117
-5.9387238e+117
-5.9470893e+117
-5.9421215e+117
-5.9553745e+117
-5.9600411e+117
-5.971042e+117
-5.9755957e+117
-5.9834777e+117
-5.9791195e+117
-5.9642174e+117
-5.9684221e+117
-5.979643e+117
-5.9838939e+117
-5.9876508e+117
-5.991778e+117
-5.9494205e+117
-5.9558725e+117
-5.9543649e+117
-5.9607878e+117
-5.9590663e+117
-5.9654717e+117
-5.963741e+117
-5.9701181e+117
-5.9682667e+117
-5.9746178e+117
-5.9728645e+117
-5.9791769e+117
-5.9773195e+117
-5.9835414e+117
-5.9817622e+117
-5.9878922e+117
-5.9636681e+117
-5.9638095e+117
-5.9599879e+117
-5.9648025e+117
-5.968501e+117
-5.9683114e+117
-5.9729056e+117
-5.9731739e+117
-5.9694807e+117
-5.974074e+117
-5.977701e+117
-5.9774364e+117
-5.9317336e+117
-5.9546806e+117
-5.9591473e+117
-5.935831e+117
-5.9679524e+117
-5.9636383e+117
-5.9400031e+117
-5.9440217e+117
-5.9819008e+117
-5.9822169e+117
-5.9785857e+117
-5.9830494e+117
-5.9866208e+117
-5.986305e+117
-5.9905456e+117
-5.99094e+117
-5.9873992e+117
-5.991675e+117
-5.9950916e+117
-5.9946637e+117
-5.9481964e+117
-5.9722679e+117
-5.9765931e+117
-5.9523209e+117
-5.9848096e+117
-5.9808333e+117
-5.9565092e+117
-5.9604307e+117
-5.9860895e+117
-5.9921473e+117
-5.9904222e+117
-5.9964333e+117
-5.994566e+117
-6.000533e+117
-5.9986921e+117
-6.0046197e+117
-6.0027414e+117
-6.0085492e+117
-6.0067221e+117
-6.0124432e+117
-6.0104886e+117
-6.0160985e+117
-5.9986898e+117
-5.9992443e+117
-5.9959087e+117
-6.0000817e+117
-6.003278e+117
-6.0026351e+117
-6.008183e+117
-6.0112764e+117
-6.0041496e+117
-6.0073119e+117
-6.0105556e+117
-6.006616e+117
-5.9963208e+117
-5.9715082e+117
-5.974928e+117
-6.0000296e+117
-5.9642662e+117
-5.9886779e+117
-5.9924976e+117
-5.9678426e+117
-6.0037526e+117
-6.0073151e+117
-5.9819035e+117
-5.9785614e+117
-6.0140382e+117
-6.0107496e+117
-5.98515e+117
-5.9882288e+117
-6.0158194e+117
-6.0187492e+117
-6.0120432e+117
-6.0150556e+117
-6.0179163e+117
-6.0142619e+117
-6.0230562e+117
-6.0258238e+117
-6.019455e+117
-6.0223229e+117
-6.0248746e+117
-6.0214345e+117
-6.1994799e+117
-6.1801089e+117
-6.1285979e+117
-6.1665873e+117
-6.1555141e+117
-6.0886769e+117
-5.1451389e+117
-4.9246879e+117
-5.2231019e+117
-5.4858926e+117
-5.3344315e+117
-4.9587061e+117
-5.7829229e+117
-5.485646e+117
-5.6535017e+117
-4.9901211e+117
-5.660039e+117
-5.1570201e+117
-4.6703209e+117
-5.4762384e+117
-5.8324717e+117
-6.0214571e+117
-5.6734788e+117
-5.3979953e+117
-5.7285784e+117
-5.4968311e+117
-5.9128461e+117
-4.995272e+117
-4.8453502e+117
-4.6062786e+117
-3.7300531e+117
-4.362952e+117
-4.8227513e+117
-4.1785587e+117
-4.7953801e+117
-4.7255147e+117
-4.7230241e+117
-4.8174473e+117
-5.055013e+117
-5.1321691e+117
-5.0235788e+117
-5.217348e+117
-4.8973829e+117
-5.0453385e+117
-5.3382641e+117
-5.9458586e+117
-5.5112032e+117
-5.4185413e+117
-5.3364836e+117
-4.9667491e+117
-5.1966097e+117
-5.3454326e+117
-5.2999722e+117
-3.3832733e+117
-4.3321485e+117
-4.7718469e+117
-4.0934369e+117
-3.8670571e+117
-3.6438554e+117
-4.8782211e+117
-4.8725594e+117
-5.0143176e+117
-5.0027582e+117
-5.0043136e+117
-5.0159643e+117
-5.9078048e+117
-5.8853434e+117
-5.8815535e+117
-5.9038536e+117
-5.9157071e+117
-5.8930615e+117
-5.8891172e+117
-5.911707e+117
-5.9238207e+117
-5.9009452e+117
-5.8970225e+117
-5.9198083e+117
-5.9318116e+117
-5.9089428e+117
-5.904904e+117
-5.9278052e+117
-5.9390204e+117
-5.9159515e+117
-5.9127207e+117
-5.9356455e+117
-5.9456496e+117
-5.9223597e+117
-5.919117e+117
-5.9423468e+117
-5.9255769e+117
-5.9489861e+117
-5.9522212e+117
-5.9286658e+117
-5.9582817e+117
-5.9346077e+117
-5.9316436e+117
-5.9552606e+117
-5.8074647e+117
-5.8266418e+117
-5.7956001e+117
-5.8121393e+117
-5.8027929e+117
-5.8213107e+117
-5.8199057e+117
-5.8400373e+117
-5.8336267e+117
-5.8137705e+117
-5.8519993e+117
-5.8314553e+117
-5.825867e+117
-5.8465159e+117
-5.8369675e+117
-5.8577145e+117
-5.863003e+117
-5.8421186e+117
-5.8728468e+117
-5.8514895e+117
-5.8469151e+117
-5.8680209e+117
-5.8822608e+117
-5.860536e+117
-5.8560396e+117
-5.8776525e+117
-5.891196e+117
-5.8691948e+117
-5.8649361e+117
-5.886787e+117
-5.8996829e+117
-5.8775475e+117
-5.8733617e+117
-5.895446e+117
-5.7386569e+117
-5.7449092e+117
-5.6180941e+117
-5.4874312e+117
-4.8258244e+117
-4.9577524e+117
-4.9604954e+117
-4.8281754e+117
-4.6282704e+117
-5.2218346e+117
-5.0897432e+117
-5.0921202e+117
-5.2227553e+117
-5.3553672e+117
-5.3555851e+117
-5.4859039e+117
-5.6142776e+117
-4.3648401e+117
-4.1117399e+117
-5.6484822e+117
-5.6582601e+117
-5.5652085e+117
-5.0333395e+117
-2.6756361e+117
-5.53688e+117
-4.9908692e+117
-4.3695301e+117
-5.4838556e+117
-5.4619971e+117
-5.1957349e+117
-1.0561803e+117
-1.5021639e+117
-3.4261892e+117
-3.650557e+117
-3.8776408e+117
-5.7263052e+117
-5.7400609e+117
-5.7441387e+117
-5.730347e+117
-5.7342125e+117
-5.7479753e+117
-5.7380858e+117
-5.7518738e+117
-5.7549932e+117
-5.7704555e+117
-5.7589882e+117
-5.7744408e+117
-5.766904e+117
-5.7785283e+117
-5.7826143e+117
-5.762914e+117
-5.7875199e+117
-5.7916494e+117
-5.8103618e+117
-5.8060917e+117
-5.8259407e+117
-5.8303356e+117
-5.8188588e+117
-5.7957936e+117
-5.8146078e+117
-5.7999527e+117
-5.8347021e+117
-5.8390662e+117
-5.7597306e+117
-5.7418976e+117
-5.7558114e+117
-5.7457505e+117
-5.770984e+117
-5.7867284e+117
-5.7905882e+117
-5.7748338e+117
-5.7529757e+117
-5.7670196e+117
-5.7493521e+117
-5.7632926e+117
-5.7785248e+117
-5.7944482e+117
-5.7823555e+117
-5.7983433e+117
-5.82712e+117
-5.804134e+117
-5.8230824e+117
-5.8080788e+117
-5.843384e+117
-5.8474973e+117
-5.8159769e+117
-5.8351749e+117
-5.8120099e+117
-5.8311468e+117
-5.85158e+117
-5.8557135e+117
-5.6495436e+117
-5.6595901e+117
-5.6529154e+117
-5.6629415e+117
-5.6731228e+117
-5.6696982e+117
-5.6801356e+117
-5.6836209e+117
-5.6591752e+117
-5.6692873e+117
-5.6560675e+117
-5.6661212e+117
-5.687002e+117
-5.6764152e+117
-5.6796293e+117
-5.6902731e+117
-5.6356949e+117
-5.6389256e+117
-5.6455393e+117
-5.6488382e+117
-5.6554656e+117
-5.6589363e+117
-5.6657102e+117
-5.6692896e+117
-5.6422875e+117
-5.6522782e+117
-5.6559492e+117
-5.6459195e+117
-5.6729682e+117
-5.6766092e+117
-5.6625427e+117
-5.6661563e+117
-5.6767552e+117
-5.688388e+117
-5.6921974e+117
-5.6804728e+117
-5.6841873e+117
-5.6959527e+117
-5.6996061e+117
-5.6878142e+117
-5.7168154e+117
-5.7003581e+117
-5.7128542e+117
-5.7042535e+117
-5.7244926e+117
-5.7080883e+117
-5.7207046e+117
-5.7117906e+117
-5.6914034e+117
-5.7032875e+117
-5.706974e+117
-5.6950058e+117
-5.7017847e+117
-5.6984547e+117
-5.7105074e+117
-5.7139235e+117
-5.7155072e+117
-5.7282477e+117
-5.7320299e+117
-5.7192579e+117
-5.7263573e+117
-5.7228655e+117
-5.73569e+117
-5.7392329e+117
-5.635126e+117
-5.622105e+117
-5.6318394e+117
-5.6253304e+117
-5.6416676e+117
-5.6516424e+117
-5.6550744e+117
-5.6450037e+117
-5.6420066e+117
-5.6287284e+117
-5.638518e+117
-5.6322499e+117
-5.6484731e+117
-5.6586234e+117
-5.6621991e+117
-5.6519745e+117
-5.6771618e+117
-5.662339e+117
-5.6735468e+117
-5.6658573e+117
-5.685136e+117
-5.6971289e+117
-5.7009847e+117
-5.6888513e+117
-5.6846258e+117
-5.6694991e+117
-5.6809188e+117
-5.6731381e+117
-5.6926888e+117
-5.7049288e+117
-5.6965034e+117
-5.7088717e+117
-5.6101148e+117
-5.6195666e+117
-5.6290799e+117
-5.6382862e+117
-5.6465105e+117
-5.640705e+117
-5.6310463e+117
-5.6330743e+117
-5.6427165e+117
-5.6214642e+117
-5.6118986e+117
-5.6137809e+117
-5.6234249e+117
-5.6287782e+117
-5.6162293e+117
-5.6259019e+117
-5.6190388e+117
-5.6453679e+117
-5.6356552e+117
-5.6385115e+117
-5.6483394e+117
-5.6724132e+117
-5.6630529e+117
-5.6830105e+117
-5.6525948e+117
-5.6559229e+117
-5.6622591e+117
-5.6637388e+117
-5.6620371e+117
-5.6516397e+117
-5.6517172e+117
-5.6511775e+117
-5.6643276e+117
-5.6532167e+117
-5.6588951e+117
-5.6558207e+117
-5.6668337e+117
-5.6700085e+117
-5.6868158e+117
-5.6727562e+117
-5.6834558e+117
-5.6755426e+117
-5.6814715e+117
-5.6933304e+117
-5.6781194e+117
-5.6897255e+117
-5.7463252e+117
-5.7613422e+117
-5.7697545e+117
-5.7492988e+117
-5.7656122e+117
-5.7531229e+117
-5.7776736e+117
-5.7832434e+117
-5.7877351e+117
-5.7629499e+117
-5.7804627e+117
-5.7577304e+117
-5.7748737e+117
-5.793459e+117
-5.7994206e+117
-5.6947668e+117
-5.7066402e+117
-5.7110252e+117
-5.6953882e+117
-5.7075334e+117
-5.6988506e+117
-5.7191831e+117
-5.7322824e+117
-5.7208196e+117
-5.7343291e+117
-5.7379344e+117
-5.7242765e+117
-5.70202e+117
-5.7144925e+117
-5.7186527e+117
-5.7059181e+117
-5.7280092e+117
-5.7420836e+117
-5.7325015e+117
-5.7469416e+117
-5.7099176e+117
-5.7228646e+117
-5.7139217e+117
-5.7270911e+117
-5.7415427e+117
-5.7566314e+117
-5.737018e+117
-5.7518085e+117
-5.7221312e+117
-5.7357035e+117
-5.7179942e+117
-5.7313819e+117
-5.7460546e+117
-5.7613731e+117
-5.7660025e+117
-5.7505493e+117
-5.7681693e+117
-5.7860308e+117
-5.7914612e+117
-5.7732994e+117
-5.7782652e+117
-5.7966442e+117
-5.783018e+117
-5.8015154e+117
-5.8052998e+117
-5.8109239e+117
-5.8212701e+117
-5.8162661e+117
-5.5726242e+117
-5.5816921e+117
-5.5696206e+117
-5.5788708e+117
-5.5856771e+117
-5.5747611e+117
-5.5837861e+117
-5.5767027e+117
-5.5885019e+117
-5.5910608e+117
-5.5982386e+117
-5.6004747e+117
-5.5930022e+117
-5.6023271e+117
-5.6041853e+117
-5.5948458e+117
-5.5818122e+117
-5.5907606e+117
-5.5791317e+117
-5.5880433e+117
-5.5972152e+117
-5.6066152e+117
-5.5999734e+117
-5.6093943e+117
-5.5706569e+117
-5.5800369e+117
-5.5994201e+117
-5.5895868e+117
-5.5507903e+117
-5.5590067e+117
-5.5619211e+117
-5.5537883e+117
-5.5602632e+117
-5.5569873e+117
-5.5650772e+117
-5.568391e+117
-5.5787749e+117
-5.5673326e+117
-5.5758538e+117
-5.5702419e+117
-5.5767838e+117
-5.5854286e+117
-5.5734203e+117
-5.5820276e+117
-5.5380248e+117
-5.5463069e+117
-5.5343814e+117
-5.5426969e+117
-5.5509055e+117
-5.5405632e+117
-5.5488436e+117
-5.5426158e+117
-5.5514194e+117
-5.5603377e+117
-5.5548691e+117
-5.5635658e+117
-5.5572787e+117
-5.5658571e+117
-5.5678751e+117
-5.5593226e+117
-5.5561408e+117
-5.5451173e+117
-5.5533788e+117
-5.5478519e+117
-5.5618209e+117
-5.5703735e+117
-5.5645059e+117
-5.5730286e+117
-5.5354061e+117
-5.5438926e+117
-5.5524924e+117
-5.5614928e+117
-5.5388438e+117
-5.5475617e+117
-5.5453966e+117
-5.5367793e+117
-5.5654275e+117
-5.5562675e+117
-5.5540682e+117
-5.5630578e+117
-5.5744794e+117
-5.572195e+117
-5.5816139e+117
-5.5839741e+117
-5.5936732e+117
-5.6036915e+117
-5.5912841e+117
-5.6011686e+117
-5.5846774e+117
-5.5936954e+117
-5.5967545e+117
-5.587653e+117
-5.6124517e+117
-5.6061042e+117
-5.6029901e+117
-5.615623e+117
-5.59094e+117
-5.5943997e+117
-5.6001004e+117
-5.6036059e+117
-5.6190273e+117
-5.6130222e+117
-5.6225598e+117
-5.6094749e+117
-5.4411021e+117
-5.4338103e+117
-5.4400735e+117
-5.4472026e+117
-5.4281727e+117
-5.4446513e+117
-5.4563975e+117
-5.4487025e+117
-5.4541668e+117
-5.4614908e+117
-5.4697851e+117
-5.4669659e+117
-5.4803181e+117
-5.4749921e+117
-5.4768247e+117
-5.4838535e+117
-5.4899277e+117
-5.4833165e+117
-5.4923022e+117
-5.4927298e+117
-5.4987715e+117
-5.5084255e+117
-5.5010191e+117
-5.5060612e+117
-5.5136134e+117
-5.521523e+117
-5.525687e+117
-5.517065e+117
-5.5296425e+117
-5.5180332e+117
-5.5268118e+117
-5.5007009e+117
-5.5092967e+117
-5.4330308e+117
-5.449606e+117
-5.484666e+117
-5.4872885e+117
-5.4955781e+117
-5.4931417e+117
-5.4684961e+117
-5.4712476e+117
-5.4792743e+117
-5.4764995e+117
-5.4122634e+117
-5.3969108e+117
-5.4122786e+117
-5.4054539e+117
-5.4127498e+117
-5.4193939e+117
-5.4260865e+117
-5.419304e+117
-5.4264258e+117
-5.433101e+117
-5.4020904e+117
-5.417143e+117
-5.5102069e+117
-5.5123286e+117
-5.5037145e+117
-5.5014754e+117
-5.5211334e+117
-5.5302125e+117
-5.5281025e+117
-5.5191217e+117
-5.3525417e+117
-5.3392766e+117
-5.3584831e+117
-5.352968e+117
-5.3601129e+117
-5.3678889e+117
-5.372856e+117
-5.3638605e+117
-5.3696238e+117
-5.3784897e+117
-5.384169e+117
-5.3759396e+117
-5.383052e+117
-5.3901971e+117
-5.366245e+117
-5.381299e+117
-5.3979071e+117
-5.3906782e+117
-5.3978644e+117
-5.4053228e+117
-5.3727782e+117
-5.3870542e+117
-5.3462287e+117
-5.3590972e+117
-5.3841221e+117
-5.3995841e+117
-5.3790132e+117
-5.3930149e+117
-5.370753e+117
-5.3571415e+117
-5.3528899e+117
-5.3655349e+117
-5.4283966e+117
-5.4128872e+117
-5.421975e+117
-5.4070392e+117
-5.462433e+117
-5.4451029e+117
-5.4381781e+117
-5.4550461e+117
-5.4963391e+117
-5.4886748e+117
-5.4828054e+117
-5.4904551e+117
-5.4983293e+117
-5.5047443e+117
-5.5125779e+117
-5.5065025e+117
-5.4782204e+117
-5.4860927e+117
-5.4741555e+117
-5.4821349e+117
-5.4900601e+117
-5.4938813e+117
-5.5021237e+117
-5.4982817e+117
-5.5145087e+117
-5.5203354e+117
-5.5283445e+117
-5.5227395e+117
-5.5311723e+117
-5.5366559e+117
-5.5452538e+117
-5.5398358e+117
-5.5359183e+117
-5.5235218e+117
-5.5271077e+117
-5.5324943e+117
-5.5101613e+117
-5.5185666e+117
-5.5148422e+117
-5.5063773e+117
-5.565648e+117
-5.570854e+117
-5.5800222e+117
-5.5748282e+117
-5.5535307e+117
-5.562109e+117
-5.5568334e+117
-5.5481957e+117
-5.5443578e+117
-5.5498013e+117
-5.5530804e+117
-5.5410898e+117
-5.5618856e+117
-5.571167e+117
-5.5678136e+117
-5.5585824e+117
-5.5934541e+117
-5.5985178e+117
-5.5890008e+117
-5.5838995e+117
-5.5802589e+117
-5.5898697e+117
-5.5864386e+117
-5.5769196e+117
-5.5961752e+117
-5.5996401e+117
-5.6098503e+117
-5.6062556e+117
-5.6082686e+117
-5.6185045e+117
-5.6135765e+117
-5.6032931e+117
-5.5329107e+117
-5.5401621e+117
-5.5431782e+117
-5.5360122e+117
-5.5390883e+117
-5.542213e+117
-5.5462072e+117
-5.5493191e+117
-5.5582825e+117
-5.5476814e+117
-5.5553837e+117
-5.550592e+117
-5.5567874e+117
-5.5645671e+117
-5.5536207e+117
-5.5613409e+117
-5.5290455e+117
-5.5212586e+117
-5.5118804e+117
-5.5180275e+117
-5.5258923e+117
-5.5150273e+117
-5.5274397e+117
-5.5210868e+117
-5.5180387e+117
-5.5242758e+117
-5.5321463e+117
-5.5352596e+117
-5.4938301e+117
-5.4884973e+117
-5.4914955e+117
-5.4968267e+117
-5.5024029e+117
-5.4993825e+117
-5.5051677e+117
-5.5082621e+117
-5.483008e+117
-5.4775571e+117
-5.4805551e+117
-5.4859726e+117
-5.4886622e+117
-5.4831977e+117
-5.4856454e+117
-5.4911859e+117
-5.4996162e+117
-5.494172e+117
-5.4967784e+117
-5.5023372e+117
-5.5081015e+117
-5.5052923e+117
-5.5111996e+117
-5.5141507e+117
-5.4973849e+117
-5.4915162e+117
-5.4933059e+117
-5.4992783e+117
-5.4896837e+117
-5.4876981e+117
-5.4933392e+117
-5.495434e+117
-5.504794e+117
-5.4990952e+117
-5.5013401e+117
-5.507146e+117
-5.5053275e+117
-5.5033338e+117
-5.5092535e+117
-5.5113483e+117
-5.5131303e+117
-5.5106932e+117
-5.5238581e+117
-5.5302672e+117
-5.5168245e+117
-5.5265454e+117
-5.5193783e+117
-5.5331111e+117
-5.5382429e+117
-5.5411088e+117
-5.5289108e+117
-5.535524e+117
-5.5437199e+117
-5.5462094e+117
-5.5379848e+117
-5.5312156e+117
-5.5217382e+117
-5.5153824e+117
-5.5175585e+117
-5.523986e+117
-5.4743255e+117
-5.4689485e+117
-5.4702142e+117
-5.4756995e+117
-5.4675196e+117
-5.4659452e+117
-5.4711649e+117
-5.4727897e+117
-5.4820247e+117
-5.4765435e+117
-5.47832e+117
-5.4838977e+117
-5.4814176e+117
-5.4798996e+117
-5.4856105e+117
-5.4872554e+117
-5.4670662e+117
-5.4619723e+117
-5.4642568e+117
-5.4694039e+117
-5.4593212e+117
-5.4563323e+117
-5.4614994e+117
-5.4644053e+117
-5.4720792e+117
-5.4667617e+117
-5.46974e+117
-5.4750594e+117
-5.4746776e+117
-5.4723204e+117
-5.4776749e+117
-5.4800551e+117
-5.5555564e+117
-5.5452584e+117
-5.5524948e+117
-5.5482056e+117
-5.5600578e+117
-5.5631727e+117
-5.5678876e+117
-5.5710693e+117
-5.561076e+117
-5.5509395e+117
-5.5584091e+117
-5.5534958e+117
-5.5740708e+117
-5.5661187e+117
-5.5688337e+117
-5.5768349e+117
-5.4983137e+117
-5.504546e+117
-5.5126235e+117
-5.5160356e+117
-5.5082137e+117
-5.5019707e+117
-5.5053895e+117
-5.5114967e+117
-5.5193663e+117
-5.5149183e+117
-5.5087518e+117
-5.5226978e+117
-5.4853332e+117
-5.481574e+117
-5.4870363e+117
-5.4906988e+117
-5.4986207e+117
-5.4927135e+117
-5.4962875e+117
-5.5020837e+117
-5.4794667e+117
-5.4738684e+117
-5.4778071e+117
-5.4833149e+117
-5.4889969e+117
-5.4852892e+117
-5.4913557e+117
-5.4950145e+117
-5.4743452e+117
-5.4705421e+117
-5.4759907e+117
-5.4797866e+117
-5.4666077e+117
-5.4624641e+117
-5.4681644e+117
-5.4721451e+117
-5.4859456e+117
-5.4929574e+117
-5.5020851e+117
-5.4952181e+117
-5.5039539e+117
-5.4884842e+117
-5.4979125e+117
-5.4915129e+117
-5.506416e+117
-5.5011663e+117
-5.5093522e+117
-5.4948286e+117
-5.4699907e+117
-5.4660053e+117
-5.4719608e+117
-5.4757106e+117
-5.4843801e+117
-5.4780755e+117
-5.4816833e+117
-5.4878471e+117
-5.4787163e+117
-5.4652855e+117
-5.4720577e+117
-5.4587007e+117
-5.4622736e+117
-5.4684677e+117
-5.4747762e+117
-5.4812203e+117
-5.4493287e+117
-5.4452444e+117
-5.4519612e+117
-5.4557496e+117
-5.4598863e+117
-5.4537487e+117
-5.4583315e+117
-5.4641933e+117
-5.5188564e+117
-5.5094892e+117
-5.516783e+117
-5.5114222e+117
-5.524459e+117
-5.5323591e+117
-5.5344549e+117
-5.5265382e+117
-5.5240445e+117
-5.5138084e+117
-5.5212891e+117
-5.5166061e+117
-5.5290162e+117
-5.5369652e+117
-5.5317329e+117
-5.539673e+117
-5.519775e+117
-5.5271384e+117
-5.5303684e+117
-5.5230682e+117
-5.5297135e+117
-5.5263922e+117
-5.5336924e+117
-5.5370191e+117
-5.542671e+117
-5.5457658e+117
-5.534778e+117
-5.537937e+117
-5.5445575e+117
-5.5412434e+117
-5.5490304e+117
-5.5523025e+117
-5.4343361e+117
-5.428895e+117
-5.4350655e+117
-5.4402415e+117
-5.4238868e+117
-5.4187785e+117
-5.4256723e+117
-5.4302394e+117
-5.4385948e+117
-5.4321004e+117
-5.4365711e+117
-5.4428863e+117
-5.446228e+117
-5.4412594e+117
-5.4474847e+117
-5.452245e+117
-5.4566904e+117
-5.4509494e+117
-5.4556401e+117
-5.461037e+117
-5.4445338e+117
-5.4394582e+117
-5.4451543e+117
-5.4500018e+117
-5.4543594e+117
-5.449015e+117
-5.4531182e+117
-5.4583358e+117
-5.4650709e+117
-5.4597386e+117
-5.4635884e+117
-5.4688789e+117
-5.4148556e+117
-5.411038e+117
-5.415971e+117
-5.4197479e+117
-5.4055085e+117
-5.3996102e+117
-5.4037198e+117
-5.4094011e+117
-5.4125851e+117
-5.4080074e+117
-5.4137298e+117
-5.4181979e+117
-5.4236342e+117
-5.4188798e+117
-5.423258e+117
-5.4278385e+117
-5.3908194e+117
-5.3864692e+117
-5.3935553e+117
-5.3977755e+117
-5.3794527e+117
-5.3718599e+117
-5.3640663e+117
-5.3760646e+117
-5.3840856e+117
-5.3861131e+117
-5.3808613e+117
-5.3888496e+117
-5.3937237e+117
-5.4020645e+117
-5.395302e+117
-5.4001267e+117
-5.4067537e+117
-5.4117988e+117
-5.4074845e+117
-5.4045409e+117
-5.4001194e+117
-5.4109782e+117
-5.4174096e+117
-5.3975518e+117
-5.3916265e+117
-5.3989727e+117
-5.4045991e+117
-5.4107414e+117
-5.4052725e+117
-5.4118206e+117
-5.4170949e+117
-5.4226771e+117
-5.416598e+117
-5.4226891e+117
-5.4284431e+117
-5.4329437e+117
-5.4279813e+117
-5.4324733e+117
-5.4373114e+117
-5.4230449e+117
-5.4175105e+117
-5.4227011e+117
-5.428116e+117
-5.4337737e+117
-5.4281675e+117
-5.4335135e+117
-5.4389718e+117
-5.4424565e+117
-5.4381831e+117
-5.4435538e+117
-5.4477129e+117
-5.4333104e+117
-5.43193e+117
-5.4356498e+117
-5.4370808e+117
-5.4304208e+117
-5.4290894e+117
-5.4328182e+117
-5.4341524e+117
-5.4411021e+117
-5.4368406e+117
-5.4382043e+117
-5.4424769e+117
-5.4438831e+117
-5.4396494e+117
-5.4410569e+117
-5.4452241e+117
-5.428023e+117
-5.4260507e+117
-5.4296015e+117
-5.4316349e+117
-5.4232583e+117
-5.4197527e+117
-5.4234822e+117
-5.4268475e+117
-5.4315567e+117
-5.427388e+117
-5.4307398e+117
-5.4348616e+117
-5.4355325e+117
-5.4334685e+117
-5.4376005e+117
-5.4396853e+117
-5.4511171e+117
-5.4459941e+117
-5.4491629e+117
-5.4541884e+117
-5.4393969e+117
-5.4361164e+117
-5.4409226e+117
-5.4441387e+117
-5.4467899e+117
-5.4420844e+117
-5.444208e+117
-5.4489215e+117
-5.4539195e+117
-5.4517485e+117
-5.4568051e+117
-5.4590117e+117
-5.4606975e+117
-5.4555694e+117
-5.4570467e+117
-5.4622106e+117
-5.4471155e+117
-5.4457021e+117
-5.4505083e+117
-5.4519404e+117
-5.4497518e+117
-5.4484518e+117
-5.4532544e+117
-5.4544836e+117
-5.4595509e+117
-5.4583479e+117
-5.4635623e+117
-5.4647633e+117
-5.5977633e+117
-5.6070337e+117
-5.6101867e+117
-5.6009175e+117
-5.6075264e+117
-5.6040867e+117
-5.6133257e+117
-5.6168124e+117
-5.6291263e+117
-5.6164632e+117
-5.6259722e+117
-5.6195848e+117
-5.626333e+117
-5.6360221e+117
-5.6227933e+117
-5.6324449e+117
-5.5876334e+117
-5.5760114e+117
-5.5843658e+117
-5.5792427e+117
-5.5929911e+117
-5.6018395e+117
-5.6051303e+117
-5.5962709e+117
-5.5851105e+117
-5.593613e+117
-5.5822789e+117
-5.5907119e+117
-5.599379e+117
-5.6082635e+117
-5.6023309e+117
-5.6112424e+117
-5.6236411e+117
-5.6109929e+117
-5.6203151e+117
-5.614277e+117
-5.6298895e+117
-5.6396036e+117
-5.6429668e+117
-5.6332222e+117
-5.6204311e+117
-5.6298431e+117
-5.6174048e+117
-5.6267896e+117
-5.6363783e+117
-5.6461443e+117
-5.639462e+117
-5.6492205e+117
-5.5633656e+117
-5.5715434e+117
-5.5745369e+117
-5.5662891e+117
-5.5693725e+117
-5.5776663e+117
-5.5726608e+117
-5.5809917e+117
-5.5918326e+117
-5.5800125e+117
-5.5887138e+117
-5.5830568e+117
-5.5895873e+117
-5.5862135e+117
-5.5950229e+117
-5.5984193e+117
-5.48267e+117
-5.354981e+117
-5.2233569e+117
-4.3826475e+117
-4.5758179e+117
-4.5741148e+117
-4.7031891e+117
-4.7031864e+117
-4.5755873e+117
-4.7019046e+117
-4.6994623e+117
-4.5703068e+117
-4.8313475e+117
-4.8299705e+117
-4.8307679e+117
-4.95965e+117
-4.9590569e+117
-4.9605216e+117
-4.8265869e+117
-4.8289947e+117
-4.9573428e+117
-4.9549058e+117
-5.0914338e+117
-5.0886297e+117
-5.0871639e+117
-5.0877239e+117
-5.2156357e+117
-5.2193042e+117
-5.2155448e+117
-5.086956e+117
-5.2173817e+117
-5.2196735e+117
-5.0866848e+117
-5.3503795e+117
-5.3445011e+117
-5.3405922e+117
-5.3431285e+117
-5.4729693e+117
-5.4680438e+117
-5.4782994e+117
-5.4707197e+117
-5.4755559e+117
-5.3475675e+117
-5.3519465e+117
-5.4807843e+117
-4.1304581e+117
-4.3174238e+117
-4.3115772e+117
-4.4365039e+117
-4.4432589e+117
-4.5696548e+117
-4.695903e+117
-4.6912586e+117
-4.5632048e+117
-4.8245345e+117
-4.9544773e+117
-4.9542112e+117
-4.8223497e+117
-5.0876339e+117
-5.222038e+117
-5.2254249e+117
-5.0888145e+117
-3.8897215e+117
-4.0654995e+117
-4.0599015e+117
-4.1790948e+117
-4.1859747e+117
-4.308447e+117
-4.4318058e+117
-4.4254895e+117
-4.3014186e+117
-4.5588368e+117
-4.6834908e+117
-4.6875531e+117
-4.5539353e+117
-4.8193596e+117
-4.8165584e+117
-4.9532533e+117
-4.9535575e+117
-5.3863821e+117
-5.3431635e+117
-5.3415725e+117
-5.3609476e+117
-5.3538102e+117
-5.3692871e+117
-5.3782808e+117
-5.3966325e+117
-5.4002437e+117
-5.3841839e+117
-5.4254021e+117
-5.4658013e+117
-5.4324034e+117
-5.4144427e+117
-5.4324564e+117
-5.416065e+117
-5.450559e+117
-5.4699232e+117
-5.4495759e+117
-5.4674908e+117
-5.5589429e+117
-5.5422612e+117
-5.5257091e+117
-5.5091096e+117
-5.5557774e+117
-5.5473519e+117
-5.5417737e+117
-5.5502294e+117
-5.539067e+117
-5.531304e+117
-5.5256888e+117
-5.5334885e+117
-5.5233868e+117
-5.5154272e+117
-5.5111993e+117
-5.5180754e+117
-5.4988398e+117
-5.5077986e+117
-5.5009567e+117
-5.4938818e+117
-5.6326048e+117
-5.6128723e+117
-5.5941028e+117
-5.5759162e+117
-5.5759407e+117
-5.581717e+117
-5.5910984e+117
-5.5851388e+117
-5.5641835e+117
-5.5586079e+117
-5.567135e+117
-5.5726881e+117
-5.6003689e+117
-5.609821e+117
-5.6036935e+117
-5.5942417e+117
-5.6195813e+117
-5.629498e+117
-5.6133506e+117
-5.623164e+117
-4.97925e+117
-5.0493604e+117
-5.0608514e+117
-4.9811214e+117
-5.0698542e+117
-4.985661e+117
-5.0773374e+117
-4.9934619e+117
-5.0876718e+117
-5.1396723e+117
-5.1071907e+117
-5.1724465e+117
-5.0061157e+117
-4.9988017e+117
-3.6588e+117
-3.8235075e+117
-3.8285503e+117
-3.9375573e+117
-3.9431887e+117
-4.0514618e+117
-4.0575964e+117
-4.1739149e+117
-4.1671924e+117
-4.2949606e+117
-4.2878488e+117
-4.4119665e+117
-4.4189214e+117
-4.5474052e+117
-4.5416474e+117
-4.6754928e+117
-4.6787553e+117
-4.9906945e+117
-4.9953442e+117
-5.3109457e+117
-5.3055745e+117
-5.3172264e+117
-5.3256179e+117
-5.2810124e+117
-5.2952672e+117
-5.3312524e+117
-5.3162462e+117
-5.3217323e+117
-5.336486e+117
-5.3335455e+117
-5.327769e+117
-5.3420575e+117
-5.3473101e+117
-5.3095223e+117
-5.3242395e+117
-5.3526407e+117
-5.3401346e+117
-5.3467605e+117
-5.3566444e+117
-5.3165105e+117
-5.3310212e+117
-5.2853847e+117
-5.301137e+117
-5.2457859e+117
-5.2217876e+117
-5.2387037e+117
-5.2641639e+117
-5.1878882e+117
-5.2185171e+117
-5.2796194e+117
-5.2905265e+117
-5.2660702e+117
-5.2535727e+117
-5.2442264e+117
-5.2659542e+117
-5.2630599e+117
-5.2427253e+117
-5.2763805e+117
-5.2847212e+117
-5.3063697e+117
-5.3012682e+117
-5.3079591e+117
-5.2917505e+117
-5.299165e+117
-5.3141813e+117
-5.1844927e+117
-5.2182474e+117
-5.1542965e+117
-5.1889453e+117
-5.1745814e+117
-5.2096432e+117
-5.2480553e+117
-5.2177686e+117
-5.2371538e+117
-5.2617043e+117
-5.3001599e+117
-5.2765221e+117
-5.2842698e+117
-5.303271e+117
-5.3209883e+117
-5.3393216e+117
-5.3206624e+117
-5.3364206e+117
-5.1861517e+117
-5.1281448e+117
-5.2184751e+117
-5.1576923e+117
-5.2405335e+117
-5.2450622e+117
-5.272383e+117
-5.264898e+117
-5.2915142e+117
-5.2961747e+117
-5.319992e+117
-5.3343956e+117
-5.3139303e+117
-5.2961669e+117
-3.4328671e+117
-3.7122942e+117
-3.5995009e+117
-3.5953248e+117
-3.7074656e+117
-3.8174161e+117
-3.8227871e+117
-3.9282122e+117
-3.9329588e+117
-4.0412449e+117
-4.0457351e+117
-4.1565348e+117
-4.1613262e+117
-4.2814974e+117
-4.4061844e+117
-4.4024988e+117
-4.2768074e+117
-5.0795568e+117
-5.0831578e+117
-5.1054394e+117
-5.1013034e+117
-5.0855492e+117
-5.0887233e+117
-5.111083e+117
-5.1080497e+117
-5.0991139e+117
-5.0955012e+117
-5.1020472e+117
-5.106318e+117
-5.1030766e+117
-5.0956667e+117
-5.0949836e+117
-5.1011857e+117
-5.1070418e+117
-5.1025534e+117
-5.1165905e+117
-5.1180476e+117
-5.1100918e+117
-5.104275e+117
-5.1171285e+117
-5.1221885e+117
-5.097251e+117
-5.0996955e+117
-5.104543e+117
-5.107081e+117
-5.0983467e+117
-5.1034242e+117
-5.1107105e+117
-5.1056254e+117
-5.1114072e+117
-5.1090046e+117
-5.1233633e+117
-5.1204897e+117
-5.1102835e+117
-5.1153556e+117
-5.1219099e+117
-5.1273448e+117
-5.2395533e+117
-5.1926946e+117
-5.2353498e+117
-5.190465e+117
-5.1901547e+117
-5.2411773e+117
-5.2436272e+117
-5.192637e+117
-5.1926178e+117
-5.1910452e+117
-5.2432764e+117
-5.2430687e+117
-5.2457025e+117
-5.1943062e+117
-5.2005042e+117
-5.2501102e+117
-5.2019299e+117
-5.2515677e+117
-5.2492368e+117
-5.1973793e+117
-5.2518204e+117
-5.1967194e+117
-5.2494784e+117
-5.2000111e+117
-5.2542405e+117
-5.2015794e+117
-5.2537295e+117
-5.2005555e+117
-5.2032623e+117
-5.2571809e+117
-5.2613601e+117
-5.2097301e+117
-5.2611311e+117
-5.3843733e+117
-5.380246e+117
-5.3840887e+117
-5.38844e+117
-5.3757046e+117
-5.3703463e+117
-5.3738512e+117
-5.3793537e+117
-5.3806931e+117
-5.3771872e+117
-5.3828678e+117
-5.386437e+117
-5.391489e+117
-5.3877639e+117
-5.3923434e+117
-5.3962158e+117
-5.363865e+117
-5.3560679e+117
-5.3598219e+117
-5.3674091e+117
-5.3358294e+117
-5.3223745e+117
-5.3411007e+117
-5.3303316e+117
-5.3515374e+117
-5.3473678e+117
-5.3500245e+117
-5.34505e+117
-5.3550231e+117
-5.358816e+117
-5.3707315e+117
-5.363098e+117
-5.366804e+117
-5.3742414e+117
-5.3679947e+117
-5.3613026e+117
-5.3635043e+117
-5.3708348e+117
-5.3748872e+117
-5.362662e+117
-5.3544602e+117
-5.3590158e+117
-5.3667267e+117
-5.3742794e+117
-5.3704485e+117
-5.3778341e+117
-5.3815541e+117
-5.3853332e+117
-5.3781053e+117
-5.3821437e+117
-5.3893205e+117
-5.3956765e+117
-5.3918318e+117
-5.3978495e+117
-5.4016467e+117
-5.390129e+117
-5.3842532e+117
-5.3880355e+117
-5.3939591e+117
-5.4001486e+117
-5.395274e+117
-5.3992227e+117
-5.4041122e+117
-5.4081123e+117
-5.4031893e+117
-5.4071185e+117
-5.4120451e+117
-5.3652765e+117
-5.3626767e+117
-5.3674349e+117
-5.3703312e+117
-5.3551918e+117
-5.3592793e+117
-5.3637005e+117
-5.3593688e+117
-5.3752117e+117
-5.3717763e+117
-5.3761338e+117
-5.3799432e+117
-5.3676973e+117
-5.3628772e+117
-5.3666954e+117
-5.3717953e+117
-5.3416361e+117
-5.3450531e+117
-5.3530877e+117
-5.3493723e+117
-5.3215035e+117
-5.3245322e+117
-5.3353306e+117
-5.3323594e+117
-5.3563652e+117
-5.3482365e+117
-5.352134e+117
-5.360121e+117
-5.3386026e+117
-5.3281665e+117
-5.315472e+117
-5.342855e+117
-5.3315518e+117
-5.3195875e+117
-5.328726e+117
-5.3153777e+117
-5.3188783e+117
-5.3020475e+117
-5.3285576e+117
-5.2904196e+117
-5.3049873e+117
-5.3206543e+117
-5.3034421e+117
-5.3066103e+117
-5.3050004e+117
-5.3262631e+117
-5.3276353e+117
-5.3395619e+117
-5.3449959e+117
-5.3357259e+117
-5.3377545e+117
-5.3329772e+117
-5.304436e+117
-5.3300209e+117
-5.3084413e+117
-5.3277903e+117
-5.3021955e+117
-5.3270752e+117
-5.3021424e+117
-5.3417965e+117
-5.3501922e+117
-5.3538482e+117
-5.343999e+117
-5.3461446e+117
-5.3568227e+117
-5.3591844e+117
-5.348827e+117
-5.3174412e+117
-5.3206247e+117
-5.3430071e+117
-5.3449861e+117
-5.3131816e+117
-5.3388808e+117
-5.3409888e+117
-5.3147741e+117
-5.3607819e+117
-5.3721031e+117
-5.3594263e+117
-5.3713253e+117
-5.3579598e+117
-5.3557101e+117
-5.368281e+117
-5.3698742e+117
-5.3091737e+117
-5.3113916e+117
-5.3351324e+117
-5.3370112e+117
-5.3345645e+117
-5.3096395e+117
-5.3341844e+117
-5.3087854e+117
-5.3500334e+117
-5.3611998e+117
-5.3628634e+117
-5.351271e+117
-5.353829e+117
-5.3665402e+117
-5.3520613e+117
-5.3647113e+117
-5.3718458e+117
-5.3781228e+117
-5.373851e+117
-5.3802238e+117
-5.3757495e+117
-5.3676634e+117
-5.3732897e+117
-5.3697105e+117
-5.3812169e+117
-5.3784521e+117
-5.3834597e+117
-5.3864854e+117
-5.3860058e+117
-5.3837686e+117
-5.3891752e+117
-5.391465e+117
-5.377112e+117
-5.3755521e+117
-5.3819825e+117
-5.3834669e+117
-5.389198e+117
-5.3877593e+117
-5.3932318e+117
-5.3945448e+117
-5.3908581e+117
-5.3901727e+117
-5.3952852e+117
-5.39603e+117
-5.3846471e+117
-5.3783953e+117
-5.3791057e+117
-5.3852883e+117
-5.3965066e+117
-5.3941449e+117
-5.39884e+117
-5.4012211e+117
-5.3924409e+117
-5.3880807e+117
-5.3913634e+117
-5.3959364e+117
-5.4005145e+117
-5.3964971e+117
-5.4001943e+117
-5.4043112e+117
-5.4073424e+117
-5.4031666e+117
-5.4055803e+117
-5.4097108e+117
-5.4159908e+117
-5.4122294e+117
-5.4159623e+117
-5.4195902e+117
-5.4083866e+117
-5.4044172e+117
-5.4082758e+117
-5.4121752e+117
-5.413607e+117
-5.4112898e+117
-5.4151434e+117
-5.417308e+117
-5.4224645e+117
-5.4188559e+117
-5.4209049e+117
-5.4244228e+117
-5.4254561e+117
-5.422011e+117
-5.4232983e+117
-5.4267238e+117
-5.4185697e+117
-5.4150476e+117
-5.4163595e+117
-5.4197985e+117
-5.4179559e+117
-5.41729e+117
-5.4209053e+117
-5.4218238e+117
-5.4282092e+117
-5.4245729e+117
-5.42567e+117
-5.4294573e+117
-5.4113509e+117
-5.4072856e+117
-5.4085014e+117
-5.4125905e+117
-5.3994923e+117
-5.3982405e+117
-5.40296e+117
-5.4041571e+117
-5.4008784e+117
-5.4001842e+117
-5.4048499e+117
-5.4054248e+117
-5.4134112e+117
-5.4092087e+117
-5.4097126e+117
-5.4139204e+117
-5.4657791e+117
-5.4605782e+117
-5.4620415e+117
-5.4671864e+117
-5.4555574e+117
-5.4508704e+117
-5.4524267e+117
-5.457058e+117
-5.4563546e+117
-5.4543304e+117
-5.4589051e+117
-5.4608881e+117
-5.4689957e+117
-5.4638388e+117
-5.4657849e+117
-5.4709211e+117
-5.4463724e+117
-5.4422087e+117
-5.4436977e+117
-5.4478998e+117
-5.4381906e+117
-5.4342992e+117
-5.4354789e+117
-5.4395225e+117
-5.4385076e+117
-5.4368007e+117
-5.4411077e+117
-5.443004e+117
-5.449822e+117
-5.4454601e+117
-5.4474275e+117
-5.4518267e+117
-5.4726616e+117
-5.4675299e+117
-5.469589e+117
-5.4746996e+117
-5.4626519e+117
-5.4581168e+117
-5.4601816e+117
-5.4646881e+117
-5.4769973e+117
-5.471864e+117
-5.4743318e+117
-5.4795468e+117
-5.453675e+117
-5.449359e+117
-5.4515489e+117
-5.4557479e+117
-5.5133112e+117
-5.5072037e+117
-5.5092772e+117
-5.5154356e+117
-5.4967359e+117
-5.4949283e+117
-5.501022e+117
-5.5029266e+117
-5.5050308e+117
-5.4987414e+117
-5.5008967e+117
-5.5073077e+117
-5.5138115e+117
-5.5114172e+117
-5.5177283e+117
-5.5202678e+117
-5.4887914e+117
-5.4828233e+117
-5.4844627e+117
-5.4905096e+117
-5.4727333e+117
-5.4712685e+117
-5.476914e+117
-5.4784564e+117
-5.4764529e+117
-5.4745262e+117
-5.4802706e+117
-5.4821892e+117
-5.4882583e+117
-5.4862963e+117
-5.4924214e+117
-5.4944606e+117
-5.4851902e+117
-5.4825671e+117
-5.4884493e+117
-5.4910856e+117
-5.48029e+117
-5.4781986e+117
-5.4840075e+117
-5.48613e+117
-5.4964971e+117
-5.4901773e+117
-5.4923661e+117
-5.4987653e+117
-5.5011962e+117
-5.4947324e+117
-5.4973959e+117
-5.5038825e+117
-5.5227985e+117
-5.5162618e+117
-5.518848e+117
-5.5254262e+117
-5.5054208e+117
-5.5030461e+117
-5.5096107e+117
-5.5120941e+117
-5.5105932e+117
-5.5078988e+117
-5.5146279e+117
-5.5173045e+117
-5.5240926e+117
-5.5214268e+117
-5.5280602e+117
-5.5307173e+117
-5.4060987e+117
-5.4057604e+117
-5.401292e+117
-5.4015169e+117
-5.4059898e+117
-5.4141133e+117
-5.4098711e+117
-5.4101318e+117
-5.4142862e+117
-5.4144194e+117
-5.4102089e+117
-5.4112163e+117
-5.4154655e+117
-5.4303248e+117
-5.4263797e+117
-5.4270368e+117
-5.4312525e+117
-5.4223462e+117
-5.4182253e+117
-5.4184728e+117
-5.4227427e+117
-5.4199231e+117
-5.4187321e+117
-5.4232096e+117
-5.4245029e+117
-5.4323145e+117
-5.4277812e+117
-5.4291946e+117
-5.4338578e+117
-5.3427472e+117
-5.3201369e+117
-5.3161856e+117
-5.3447909e+117
-5.3605809e+117
-5.3720466e+117
-5.3713308e+117
-5.3595731e+117
-5.3853068e+117
-5.3790347e+117
-5.3785452e+117
-5.3850405e+117
-5.3909592e+117
-5.3909851e+117
-5.3963908e+117
-5.3965155e+117
-5.6352001e+117
-5.6232064e+117
-5.632654e+117
-5.6257717e+117
-5.6422854e+117
-5.6520204e+117
-5.6545268e+117
-5.6447836e+117
-5.6311783e+117
-5.6405173e+117
-5.6283871e+117
-5.6377294e+117
-5.6473242e+117
-5.6571456e+117
-5.6501401e+117
-5.6600025e+117
-5.5989171e+117
-5.607413e+117
-5.6102136e+117
-5.6018013e+117
-5.6073582e+117
-5.6046167e+117
-5.6129965e+117
-5.6157866e+117
-5.6276016e+117
-5.6160251e+117
-5.6248399e+117
-5.6187952e+117
-5.6244605e+117
-5.6333908e+117
-5.6216087e+117
-5.6304893e+117
-5.598894e+117
-5.5877772e+117
-5.5963385e+117
-5.5903141e+117
-5.6050854e+117
-5.6139914e+117
-5.6165432e+117
-5.6076316e+117
-5.6044941e+117
-5.5929935e+117
-5.6015343e+117
-5.5959218e+117
-5.6103192e+117
-5.6192358e+117
-5.6131815e+117
-5.6220413e+117
-5.6339799e+117
-5.6433634e+117
-5.6462296e+117
-5.6367796e+117
-5.662981e+117
-5.6530693e+117
-5.6559868e+117
-5.6659755e+117
-5.6396967e+117
-5.6426604e+117
-5.6491968e+117
-5.652214e+117
-5.6690588e+117
-5.6620897e+117
-5.6722174e+117
-5.658992e+117
-5.5777246e+117
-5.5854711e+117
-5.5877677e+117
-5.5801185e+117
-5.5823782e+117
-5.5847132e+117
-5.5899624e+117
-5.5922712e+117
-5.6036361e+117
-5.5934108e+117
-5.6014885e+117
-5.59558e+117
-5.6001336e+117
-5.608299e+117
-5.5977499e+117
-5.6058495e+117
-5.5725976e+117
-5.5639761e+117
-5.5543012e+117
-5.5614785e+117
-5.5701654e+117
-5.5567515e+117
-5.5663606e+117
-5.5749504e+117
-5.5773452e+117
-5.5396806e+117
-5.5465713e+117
-5.5490295e+117
-5.6110052e+117
-5.6098011e+117
-5.6182943e+117
-5.6205722e+117
-5.6119871e+117
-5.6142541e+117
-5.6229148e+117
-5.6167769e+117
-5.6254921e+117
-5.6385463e+117
-5.6270624e+117
-5.636072e+117
-5.6294279e+117
-5.6344739e+117
-5.6437139e+117
-5.6318335e+117
-5.6410276e+117
-5.665031e+117
-5.6752421e+117
-5.6779831e+117
-5.6677447e+117
-5.6454326e+117
-5.6550606e+117
-5.6577079e+117
-5.6479884e+117
-5.6505294e+117
-5.6603051e+117
-5.6532682e+117
-5.6630732e+117
-5.6731565e+117
-5.6703444e+117
-5.6805829e+117
-5.6834563e+117
-5.619512e+117
-5.6282547e+117
-5.6372661e+117
-5.6465303e+117
-5.6561049e+117
-5.6659231e+117
-5.6863563e+117
-5.6760252e+117
-5.5661387e+117
-5.5559985e+117
-5.5635915e+117
-5.5585676e+117
-5.5714089e+117
-5.5794404e+117
-5.5819496e+117
-5.5739067e+117
-5.5640265e+117
-5.5715746e+117
-5.561216e+117
-5.5687715e+117
-5.5765714e+117
-5.5846429e+117
-5.5794232e+117
-5.5875342e+117
-5.5622926e+117
-5.5537998e+117
-5.5437928e+117
-5.5508529e+117
-5.5594291e+117
-5.5466523e+117
-5.5591749e+117
-5.5519884e+117
-5.549358e+117
-5.5564572e+117
-5.5650424e+117
-5.5677111e+117
-5.5416666e+117
-5.534789e+117
-5.5374204e+117
-5.5443071e+117
-5.5320648e+117
-5.5294475e+117
-5.5362344e+117
-5.5389245e+117
-5.5333779e+117
-5.540235e+117
-5.5486377e+117
-5.5511929e+117
-5.5428086e+117
-5.5358295e+117
-5.5383767e+117
-5.5453328e+117
-5.5538311e+117
-5.5481779e+117
-5.5411279e+117
-5.5566259e+117
-5.5308918e+117
-5.5242093e+117
-5.5268603e+117
-5.5336148e+117
-5.5217603e+117
-5.5195885e+117
-5.5260684e+117
-5.5283561e+117
-5.5668836e+117
-5.5745327e+117
-5.5774538e+117
-5.5697469e+117
-5.5725416e+117
-5.5752362e+117
-5.5802897e+117
-5.5830181e+117
-5.5905561e+117
-5.5934902e+117
-5.5824341e+117
-5.5853576e+117
-5.5909657e+117
-5.588224e+117
-5.5963501e+117
-5.5990744e+117
-5.7695885e+117
-5.7840532e+117
-5.7875546e+117
-5.7731318e+117
-5.7801747e+117
-5.7765915e+117
-5.7910477e+117
-5.7947497e+117
-5.8195734e+117
-5.7997163e+117
-5.816036e+117
-5.8032266e+117
-5.8106419e+117
-5.8272217e+117
-5.8068344e+117
-5.8233466e+117
-5.7737319e+117
-5.7563528e+117
-5.7705341e+117
-5.7594383e+117
-5.7859804e+117
-5.8020167e+117
-5.8053431e+117
-5.7892331e+117
-5.7804748e+117
-5.7625614e+117
-5.776896e+117
-5.7660147e+117
-5.7925737e+117
-5.8088263e+117
-5.7961431e+117
-5.8124297e+117
-5.8425592e+117
-5.8197278e+117
-5.8389964e+117
-5.823177e+117
-5.8596393e+117
-5.8632753e+117
-5.830395e+117
-5.8499384e+117
-5.8267204e+117
-5.8461885e+117
-5.8669515e+117
-5.870816e+117
-5.8340739e+117
-5.8536954e+117
-5.857427e+117
-5.8377074e+117
-5.8784844e+117
-5.8746883e+117
-5.8415397e+117
-5.8454862e+117
-5.8613339e+117
-5.8653341e+117
-5.8864644e+117
-5.8824124e+117
-5.8491677e+117
-5.86909e+117
-5.8723488e+117
-5.8523861e+117
-5.8583725e+117
-5.8553578e+117
-5.875264e+117
-5.8783257e+117
-5.8902571e+117
-5.8934548e+117
-5.8995993e+117
-5.8964483e+117
-5.7952267e+117
-5.8100039e+117
-5.8127182e+117
-5.7979805e+117
-5.8031192e+117
-5.8005254e+117
-5.815243e+117
-5.8178796e+117
-5.8454192e+117
-5.8260419e+117
-5.8427691e+117
-5.8287102e+117
-5.8340077e+117
-5.8508985e+117
-5.8313104e+117
-5.8481537e+117
-5.8013297e+117
-5.7835511e+117
-5.7982343e+117
-5.7866006e+117
-5.8142146e+117
-5.8308245e+117
-5.8339393e+117
-5.8173001e+117
-5.8071461e+117
-5.7894871e+117
-5.8041677e+117
-5.792359e+117
-5.8202401e+117
-5.8369651e+117
-5.8232033e+117
-5.8399392e+117
-5.8612241e+117
-5.8812719e+117
-5.884104e+117
-5.8639491e+117
-5.9056453e+117
-5.9027153e+117
-5.8667303e+117
-5.8695277e+117
-5.8869618e+117
-5.8898074e+117
-5.9114767e+117
-5.9085556e+117
-5.7459976e+117
-5.7301973e+117
-5.7429268e+117
-5.7332332e+117
-5.7558899e+117
-5.7692481e+117
-5.7722425e+117
-5.7589025e+117
-5.7518489e+117
-5.736166e+117
-5.748908e+117
-5.7391602e+117
-5.7618454e+117
-5.7751978e+117
-5.7646714e+117
-5.7779784e+117
-5.6856516e+117
-5.6961989e+117
-5.6989562e+117
-5.6883745e+117
-5.6910765e+117
-5.7017883e+117
-5.704803e+117
-5.6940297e+117
-5.7070068e+117
-5.7181398e+117
-5.7210617e+117
-5.7098371e+117
-5.7127242e+117
-5.7239931e+117
-5.727015e+117
-5.7157688e+117
-5.6969952e+117
-5.7078212e+117
-5.7105463e+117
-5.6997717e+117
-5.7187533e+117
-5.7298884e+117
-5.7324374e+117
-5.7213554e+117
-5.7418755e+117
-5.7544418e+117
-5.7570564e+117
-5.7444437e+117
-5.749544e+117
-5.7469788e+117
-5.7596282e+117
-5.7621978e+117
-5.7808051e+117
-5.7835274e+117
-5.7673591e+117
-5.7700226e+117
-5.7751877e+117
-5.7726032e+117
-5.7861188e+117
-5.7886946e+117
-5.7201303e+117
-5.7049388e+117
-5.7171717e+117
-5.7078601e+117
-5.7296508e+117
-5.742531e+117
-5.7454971e+117
-5.7325806e+117
-5.7138016e+117
-5.7261373e+117
-5.7106824e+117
-5.7229549e+117
-5.7355217e+117
-5.7485828e+117
-5.7387986e+117
-5.7519402e+117
-5.6731742e+117
-5.6835905e+117
-5.6867466e+117
-5.6762525e+117
-5.6793971e+117
-5.6899406e+117
-5.6931603e+117
-5.6825969e+117
-5.7084941e+117
-5.694257e+117
-5.7052254e+117
-5.6974701e+117
-5.7150555e+117
-5.7007057e+117
-5.7117803e+117
-5.703951e+117
-5.67483e+117
-5.6620046e+117
-5.6721702e+117
-5.6645747e+117
-5.682597e+117
-5.6933165e+117
-5.6961558e+117
-5.6853347e+117
-5.6805204e+117
-5.6672417e+117
-5.6775647e+117
-5.6701535e+117
-5.6881152e+117
-5.6989835e+117
-5.6911274e+117
-5.7020381e+117
-5.7170802e+117
-5.7294843e+117
-5.7329033e+117
-5.7204002e+117
-5.723736e+117
-5.7362883e+117
-5.7270569e+117
-5.7396762e+117
-5.7554543e+117
-5.7589607e+117
-5.7422477e+117
-5.7456997e+117
-5.7525851e+117
-5.7491183e+117
-5.7624347e+117
-5.7659381e+117
-3.2088716e+117
-3.3729446e+117
-3.3759451e+117
-3.486799e+117
-3.4835758e+117
-3.5918017e+117
-3.5950905e+117
-3.7038702e+117
-3.7005394e+117
-3.8138294e+117
-3.8101322e+117
-3.9202827e+117
-3.9242717e+117
-4.0369647e+117
-4.1488059e+117
-4.1523026e+117
-4.0329406e+117
-3.6990354e+117
-3.590976e+117
-3.5867899e+117
-3.695335e+117
-3.8076103e+117
-3.8047617e+117
-3.9148821e+117
-3.9168306e+117
-5.7152808e+117
-5.7107733e+117
-5.7106139e+117
-5.7136806e+117
-5.5924043e+117
-5.592211e+117
-5.5973629e+117
-5.5946843e+117
-5.8160917e+117
-5.8152339e+117
-5.8171493e+117
-5.908924e+117
-5.9043246e+117
-5.9069099e+117
-6.1734056e+117
-6.144967e+117
-6.1045852e+117
-6.0391784e+117
-6.0938851e+117
-6.158666e+117
-6.0385547e+117
-6.1071867e+117
-6.163683e+117
-5.9785744e+117
-5.9782954e+117
-6.2347897e+117
-6.1831943e+117
-6.2187689e+117
-6.191639e+117
-6.2224816e+117
-6.2370393e+117
-6.2378129e+117
-6.2367213e+117
-6.2296183e+117
-6.2100336e+117
-6.2272054e+117
-6.2275882e+117
-6.23229e+117
-6.2398862e+117
-6.2287391e+117
-6.1716045e+117
-6.1776296e+117
-6.1181078e+117
-6.1471375e+117
-6.1477475e+117
-6.1718106e+117
-6.2341656e+117
-6.2377664e+117
-6.2233674e+117
-6.2081655e+117
-6.1930216e+117
-6.1876851e+117
-6.1764295e+117
-6.1448836e+117
-6.1495099e+117
-6.1139443e+117
-6.1325456e+117
-6.2060365e+117
-6.2018764e+117
-6.20217e+117
-6.1928936e+117
-6.1069063e+117
-6.0524828e+117
-5.7913295e+117
-6.1358571e+117
-6.0607319e+117
-5.5614486e+117
-6.0997361e+117
-6.1232052e+117
-6.2689557e+117
-6.1220034e+117
-5.6318697e+117
-6.1079053e+117
-6.0955741e+117
-6.0963038e+117
-6.1024925e+117
-6.07979e+117
-6.0965922e+117
-6.2567319e+117
-6.155998e+117
-4.9787101e+117
-5.8865268e+117
-5.5561852e+117
-4.6233052e+117
-2.932392e+117
-6.4829781e+117
-6.172714e+117
-5.9941101e+117
-6.14165e+117
-6.103613e+117
-6.0918263e+117
-5.9728469e+117
-5.9621997e+117
-6.0520225e+117
-4.6198741e+117
-6.3890991e+117
-6.154498e+117
-6.1441371e+117
-6.1220292e+117
-6.1297123e+117
-6.1138098e+117
-6.1150819e+117
-6.1342822e+117
-5.8634511e+117
-5.8847954e+117
-5.7978171e+117
-5.7615337e+117
-5.8792804e+117
-5.7300783e+117
-5.8611869e+117
-6.1589373e+117
-6.1255743e+117
-6.1177392e+117
-6.1483234e+117
-6.2019482e+117
-6.1789291e+117
-6.1610957e+117
-6.1672044e+117
-6.2087169e+117
-6.1836424e+117
-5.5162979e+117
-5.709279e+117
-5.6947735e+117
-6.1137941e+117
-6.1314016e+117
-6.1487996e+117
-7.2544557e+117
-6.5247129e+117
-6.0488654e+117
-7.7541743e+117
-6.5939505e+117
-7.3314047e+117
-4.8944291e+117
-5.6081262e+117
-7.2573464e+117
-6.5620174e+117
-6.5505923e+117
-8.3657911e+117
-6.0710199e+117
-5.510164e+117
-5.7502779e+117
-5.9725804e+117
-5.98411e+117
-6.0646376e+117
-5.9904718e+117
-6.0097112e+117
-5.9945318e+117
-5.9963416e+117
-6.0058958e+117
-5.9258436e+117
-6.1209417e+117
-6.958957e+117
-6.0381844e+117
-6.0196202e+117
-6.04715e+117
-6.1785378e+117
-5.8849234e+117
-5.8419133e+117
-6.2494886e+117
-6.217565e+117
-6.0510998e+117
-6.325175e+117
-7.1431021e+117
-6.0788591e+117
-6.1016395e+117
-6.1010093e+117
-6.0891952e+117
-6.1252939e+117
-6.0707042e+117
-6.0576869e+117
-6.056854e+117
-6.1118244e+117
-6.0841153e+117
-6.0870964e+117
-6.0481183e+117
-6.0538347e+117
-6.0792486e+117
-6.0499179e+117
-6.0834192e+117
-8.3015467e+117
-1.1706899e+118
-8.4463606e+117
-1.4024359e+117
-6.4663763e+117
-6.374519e+117
-4.6062979e+117
-4.6588219e+117
-4.5304478e+117
-4.3389663e+117
-4.5156451e+117
-4.6444901e+117
-4.3841641e+117
-4.2681751e+117
-4.094575e+117
-4.2567183e+117
-4.3714904e+117
-4.4972931e+117
-4.5087687e+117
-4.6361403e+117
-4.7677411e+117
-4.6275376e+117
-4.7617875e+117
-4.9276859e+117
-4.9262374e+117
-4.7698634e+117
-4.6232595e+117
-4.9299668e+117
-4.489743e+117
-4.3660644e+117
-3.8674526e+117
-4.0258041e+117
-4.0332718e+117
-4.1423165e+117
-4.1346602e+117
-4.2517563e+117
-4.2437095e+117
-4.3574195e+117
-4.4816713e+117
-4.6183971e+117
-4.7707928e+117
-4.9365104e+117
-3.6448313e+117
-3.9185967e+117
-3.8093154e+117
-3.8051518e+117
-3.9133312e+117
-4.0186657e+117
-4.0245693e+117
-4.1296343e+117
-4.1246096e+117
-4.3522841e+117
-4.2377426e+117
-4.2331353e+117
-4.3477522e+117
-4.4734821e+117
-4.4770174e+117
-4.7757653e+117
-4.9492074e+117
-4.6161382e+117
-4.6153838e+117
-4.7796885e+117
-4.9584399e+117
-4.7843265e+117
-4.9695965e+117
-4.3450431e+117
-4.2300353e+117
-4.1219004e+117
-4.0163835e+117
-3.9104746e+117
-3.5879416e+117
-3.6979593e+117
-3.695297e+117
-3.585664e+117
-3.8044085e+117
-3.8011063e+117
-3.9060752e+117
-4.0116339e+117
-4.1177039e+117
-4.2267198e+117
-4.3428747e+117
-4.7909423e+117
-4.9809483e+117
-3.9046882e+117
-3.7988492e+117
-3.7962009e+117
-3.9012368e+117
-4.0068965e+117
-4.0102783e+117
-4.1154259e+117
-4.113164e+117
-5.5630798e+117
-5.4026248e+117
-5.2408429e+117
-5.713189e+117
-5.837894e+117
-5.7021513e+117
-5.7067642e+117
-5.8310532e+117
-5.8234694e+117
-5.8254761e+117
-5.7266155e+117
-5.7094394e+117
-5.7534923e+117
-5.8425874e+117
-5.65009e+117
-5.9211741e+117
-5.9188351e+117
-5.9162978e+117
-5.9195504e+117
-5.822168e+117
-5.693076e+117
-5.6952427e+117
-5.6948003e+117
-5.5518318e+117
-5.4219329e+117
-5.5252047e+117
-5.5357226e+117
-5.6127156e+117
-5.5440528e+117
-5.420471e+117
-4.874163e+117
-5.0587372e+117
-5.0582334e+117
-5.2043899e+117
-5.1933053e+117
-5.06654e+117
-5.0734487e+117
-5.1845032e+117
-5.1902352e+117
-5.3303634e+117
-5.3169225e+117
-5.3027455e+117
-5.2978492e+117
-5.3100803e+117
-5.4357169e+117
-5.4399995e+117
-5.4558176e+117
-5.5639151e+117
-5.6954051e+117
-5.5845027e+117
-5.568775e+117
-5.5678778e+117
-5.577607e+117
-5.8188867e+117
-5.9299123e+117
-5.9332961e+117
-5.9577827e+117
-4.7999008e+117
-4.9309005e+117
-4.9283237e+117
-4.7932216e+117
-5.0606971e+117
-5.0584996e+117
-5.1898397e+117
-5.1950277e+117
-5.4481252e+117
-5.3200013e+117
-5.3305249e+117
-5.4648339e+117
-5.59898e+117
-5.578904e+117
-5.7097153e+117
-5.7344324e+117
-4.7826039e+117
-4.7901092e+117
-4.9233541e+117
-4.9231431e+117
-4.9247391e+117
-5.0807793e+117
-5.0695606e+117
-5.0946407e+117
-5.0618743e+117
-5.2031443e+117
-5.218765e+117
-5.3474166e+117
-5.3706624e+117
-5.5223632e+117
-5.4900193e+117
-5.6034144e+117
-5.4361632e+117
-5.2646927e+117
-5.4685903e+117
-5.287794e+117
-5.1073179e+117
-5.4996853e+117
-5.3100437e+117
-5.1220714e+117
-5.2532037e+117
-5.1369966e+117
-5.1488147e+117
-5.2750866e+117
-5.5245099e+117
-5.4959005e+117
-5.4574794e+117
-5.4868083e+117
-5.4042842e+117
-5.3760395e+117
-5.4189635e+117
-5.4479263e+117
-5.508224e+117
-5.5284873e+117
-5.5676973e+117
-5.5465767e+117
-5.4378276e+117
-5.4225371e+117
-5.4678751e+117
-5.4866004e+117
-5.5401216e+117
-5.5242565e+117
-5.5406611e+117
-5.5559068e+117
-5.5706271e+117
-5.5553472e+117
-5.5860772e+117
-5.5704439e+117
-5.5718926e+117
-5.5563012e+117
-5.5730315e+117
-5.5889712e+117
-5.5865346e+117
-5.602356e+117
-5.6199811e+117
-5.6038653e+117
-5.617288e+117
-5.6067961e+117
-5.6333616e+117
-5.6224854e+117
-5.5961615e+117
-5.5833017e+117
-5.6117154e+117
-5.5988275e+117
-5.6499005e+117
-5.6388627e+117
-5.6566334e+117
-5.6678893e+117
-5.6150707e+117
-5.6279418e+117
-5.645511e+117
-5.6326101e+117
-5.5834216e+117
-5.6341155e+117
-5.6252761e+117
-5.6414741e+117
-5.6506146e+117
-5.6677635e+117
-5.6583196e+117
-5.6765043e+117
-5.6861671e+117
-5.3315122e+117
-5.1366503e+117
-5.3534015e+117
-5.151843e+117
-5.1665631e+117
-5.182523e+117
-5.9909084e+117
-5.9816928e+117
-5.9845666e+117
-6.0000929e+117
-6.122951e+117
-6.0526519e+117
-6.1030921e+117
-6.0999987e+117
-6.0326218e+117
-6.0860645e+117
-6.0375913e+117
-6.0765191e+117
-6.0647691e+117
-6.107039e+117
-6.0924772e+117
-6.0845187e+117
-6.1454453e+117
-6.1249178e+117
-5.2785877e+117
-5.2924995e+117
-5.6838667e+117
-5.6599009e+117
-5.701976e+117
-5.6841414e+117
-5.2564486e+117
-4.1531419e+117
-5.6503545e+117
-5.3043558e+117
-3.2536221e+117
-5.918423e+117
-5.8920134e+117
-5.8993714e+117
-3.1891966e+117
-2.31335e+117
-5.2010673e+117
-5.6021817e+117
-5.8886742e+117
-5.5940096e+117
-5.2272214e+117
-5.9022841e+117
-5.6576694e+117
-5.383738e+117
-4.9322587e+117
-4.1654719e+117
-4.7785528e+117
-3.583883e+117
-4.2230966e+117
-4.6584038e+117
-4.6270375e+117
-3.9393709e+117
-3.5445975e+117
-3.1535795e+117
-2.8091585e+117
-3.8404593e+117
-4.7232753e+117
-3.9512237e+117
-3.2060126e+117
-2.8942582e+117
-1.9271541e+117
-3.3231355e+117
-4.4500889e+117
-5.2555327e+117
-4.4273761e+117
-2.6189268e+117
-2.4987952e+117
-3.2459817e+117
-2.6036794e+117
-1.3085976e+117
-2.2209809e+117
-4.6926445e+116
-6.1207923e+117
-6.0837e+117
-6.0756397e+117
-6.0706579e+117
-6.0599324e+117
-6.0827625e+117
-6.0278551e+117
-5.9108275e+117
-6.0160434e+117
-6.0099462e+117
-5.8983191e+117
-5.896737e+117
-6.0131162e+117
-6.0637885e+117
-6.077271e+117
-6.0657187e+117
-6.0906035e+117
-6.0190212e+117
-6.0988131e+117
-6.0453836e+117
-6.0435422e+117
-6.1016948e+117
-6.0568117e+117
-1.3078727e+117
-1.0444338e+117
-1.4242281e+117
-4.5014581e+117
-5.1493308e+117
-5.5816421e+116
-1.2207829e+117
-3.7762887e+117
-4.6656088e+117
-3.3585137e+116
-1.7148566e+117
-6.0279337e+117
-6.1063951e+117
-6.1333517e+117
-6.0609289e+117
-3.6585218e+116
-1.216494e+117
-5.7220469e+117
-5.7105012e+117
-5.6892365e+117
-5.6996262e+117
-5.6585687e+117
-5.6481324e+117
-5.6683225e+117
-5.6791743e+117
-5.7460275e+117
-5.7317897e+117
-5.7695507e+117
-5.7565422e+117
-5.7400897e+117
-5.7258638e+117
-5.5990665e+117
-5.4702365e+117
-4.9558216e+117
-4.9523727e+117
-4.8209604e+117
-4.8237915e+117
-4.623636e+117
-5.2178294e+117
-5.2113605e+117
-5.0822238e+117
-5.0871406e+117
-5.3498395e+117
-5.3414965e+117
-5.4803994e+117
-5.6116784e+117
-4.3610097e+117
-4.9967573e+117
-5.0050588e+117
-4.109288e+117
-5.7081772e+117
-5.7092148e+117
-5.7202293e+117
-5.6974303e+117
-5.6872368e+117
-5.6481691e+117
-5.6500364e+117
-5.6444063e+117
-5.6437154e+117
-5.6362122e+117
-5.6774195e+117
-5.6684184e+117
-5.6727744e+117
-5.6662066e+117
-5.6763373e+117
-5.6829505e+117
-5.7120776e+117
-5.7053573e+117
-5.7041965e+117
-5.6939684e+117
-5.6877284e+117
-5.6994558e+117
-5.693385e+117
-5.6783324e+117
-5.6821186e+117
-5.6892419e+117
-5.6573547e+117
-5.6608672e+117
-5.6711258e+117
-5.6675488e+117
-5.6255406e+117
-5.6308459e+117
-5.6415285e+117
-5.6356745e+117
-5.6520011e+117
-5.6459894e+117
-5.6561534e+117
-5.6623788e+117
-5.6508012e+117
-5.6372332e+117
-5.6409347e+117
-5.6471565e+117
-5.6176475e+117
-5.621259e+117
-5.6310645e+117
-5.627324e+117
-5.6864233e+117
-5.6733998e+117
-5.6754833e+117
-5.6844049e+117
-5.6545899e+117
-5.6647836e+117
-5.6626899e+117
-5.6525109e+117
-5.6510226e+117
-5.6508846e+117
-5.6604877e+117
-5.6610748e+117
-5.6718523e+117
-5.6831837e+117
-5.6711373e+117
-5.6826357e+117
-5.6128607e+117
-5.6149081e+117
-5.6245504e+117
-5.62243e+117
-5.6344146e+117
-5.6322776e+117
-5.642227e+117
-5.6443905e+117
-5.6304132e+117
-5.6308056e+117
-5.640712e+117
-5.6402528e+117
-5.6111695e+117
-5.611521e+117
-5.6210112e+117
-5.6206213e+117
-5.736421e+117
-5.7443269e+117
-5.7414553e+117
-5.734567e+117
-5.7673804e+117
-5.7242506e+117
-5.7435199e+117
-5.7112944e+117
-5.7317977e+117
-5.7181182e+117
-5.7006833e+117
-5.7052157e+117
-5.7126114e+117
-5.731897e+117
-5.7458739e+117
-5.7392517e+117
-5.7255585e+117
-5.6944102e+117
-5.6949472e+117
-5.7068719e+117
-5.7062425e+117
-5.6959712e+117
-5.697837e+117
-5.7096949e+117
-5.7078469e+117
-5.720472e+117
-5.722392e+117
-5.7358709e+117
-5.7337293e+117
-5.7325524e+117
-5.7194139e+117
-5.7187417e+117
-5.7317848e+117
-5.7764734e+117
-5.7775215e+117
-5.7949194e+117
-5.7935718e+117
-5.8042431e+117
-5.7845603e+117
-5.7800087e+117
-5.7989489e+117
-5.7479871e+117
-5.7505604e+117
-5.7662989e+117
-5.7631592e+117
-5.7457455e+117
-5.7465472e+117
-5.7613692e+117
-5.7604634e+117
-5.7795871e+117
-5.7556831e+117
-5.7605649e+117
-5.7912622e+117
-5.7728682e+117
-5.7902001e+117
-5.8172654e+117
-5.8100716e+117
-5.8129894e+117
-5.79111e+117
-5.7977955e+117
-5.8025998e+117
-5.8050909e+117
-5.784838e+117
-5.811256e+117
-5.8186232e+117
-5.8233403e+117
-5.8327506e+117
-5.8342704e+117
-5.8299354e+117
-5.8215205e+117
-5.6505788e+117
-5.6415741e+117
-5.6323374e+117
-5.6415106e+117
-5.6170965e+117
-5.6342182e+117
-5.6263712e+117
-5.6248339e+117
-5.6436989e+117
-5.6359923e+117
-5.6535251e+117
-5.6457186e+117
-5.6508644e+117
-5.65968e+117
-5.6696238e+117
-5.6607387e+117
-5.5986704e+117
-5.6067184e+117
-5.6158598e+117
-5.6079738e+117
-5.5977811e+117
-5.5894042e+117
-5.5805466e+117
-5.5889523e+117
-5.614868e+117
-5.6057049e+117
-5.5970047e+117
-5.6062316e+117
-5.614372e+117
-5.6234639e+117
-5.6327172e+117
-5.623453e+117
-5.6140739e+117
-5.6226963e+117
-5.6319731e+117
-5.6231719e+117
-5.6313001e+117
-5.6401136e+117
-5.6482832e+117
-5.639455e+117
-5.6585121e+117
-5.6490103e+117
-5.6571657e+117
-5.6667284e+117
-5.6315284e+117
-5.6408309e+117
-5.650246e+117
-5.6408409e+117
-5.6496391e+117
-5.6586119e+117
-5.6683016e+117
-5.6591353e+117
-5.6674673e+117
-5.6756743e+117
-5.6850905e+117
-5.6767338e+117
-5.6861766e+117
-5.6946685e+117
-5.7048357e+117
-5.6962305e+117
-5.667789e+117
-5.6776214e+117
-5.6875655e+117
-5.677728e+117
-5.7056504e+117
-5.7233744e+117
-5.714953e+117
-5.714041e+117
-5.7057856e+117
-5.6961755e+117
-5.6867756e+117
-5.6964672e+117
-5.7223665e+117
-5.7126839e+117
-5.7220612e+117
-5.7318656e+117
-5.7316415e+117
-5.7412665e+117
-5.7500527e+117
-5.7403416e+117
-5.6551487e+117
-5.6618831e+117
-5.6712011e+117
-5.6644868e+117
-5.678281e+117
-5.6861631e+117
-5.6950067e+117
-5.6868245e+117
-5.7035145e+117
-5.6942811e+117
-5.7033556e+117
-5.7127489e+117
-5.6690508e+117
-5.687051e+117
-5.6783531e+117
-5.6776571e+117
-5.7600383e+117
-5.7617065e+117
-5.7512631e+117
-5.770489e+117
-5.7651382e+117
-5.763351e+117
-5.7534238e+117
-5.7748681e+117
-5.7319369e+117
-5.7423183e+117
-5.752255e+117
-5.7418254e+117
-5.7841312e+117
-5.7726917e+117
-5.7815284e+117
-5.7930873e+117
-5.7046709e+117
-5.6965226e+117
-5.7065696e+117
-5.7148343e+117
-5.7256902e+117
-5.7172741e+117
-5.7288049e+117
-5.7372718e+117
-5.7438376e+117
-5.7342296e+117
-5.7459364e+117
-5.7555802e+117
-5.7130726e+117
-5.7232978e+117
-5.732804e+117
-5.7225118e+117
-5.7935563e+117
-5.7921872e+117
-5.7820577e+117
-5.8037716e+117
-5.8042823e+117
-5.8213033e+117
-5.8316209e+117
-5.8146471e+117
-5.8130227e+117
-5.8221866e+117
-5.8243277e+117
-5.8410258e+117
-5.8499964e+117
-5.8333285e+117
-5.8017352e+117
-5.8108428e+117
-5.7434305e+117
-5.7525296e+117
-5.7642033e+117
-5.7543386e+117
-5.765777e+117
-5.7821194e+117
-5.7924124e+117
-5.7750204e+117
-5.7732788e+117
-5.7837843e+117
-5.7836196e+117
-5.8013476e+117
-5.81148e+117
-5.7940087e+117
-5.7614943e+117
-5.7718541e+117
-5.6766015e+117
-5.6855363e+117
-5.679736e+117
-5.6707663e+117
-5.7054201e+117
-5.6999795e+117
-5.7096494e+117
-5.7150666e+117
-5.688673e+117
-5.6981113e+117
-5.7042621e+117
-5.6946218e+117
-5.6909075e+117
-5.6819304e+117
-5.6874007e+117
-5.6963743e+117
-5.6457984e+117
-5.6526962e+117
-5.6615778e+117
-5.6545922e+117
-5.6634805e+117
-5.6705793e+117
-5.6802192e+117
-5.6730869e+117
-5.6835636e+117
-5.6770074e+117
-5.6865815e+117
-5.6929199e+117
-5.6589638e+117
-5.6745445e+117
-5.6679099e+117
-5.6655182e+117
-5.695514e+117
-5.7017949e+117
-5.7112047e+117
-5.7048788e+117
-5.6821386e+117
-5.6915786e+117
-5.6986701e+117
-5.6892328e+117
-5.7144382e+117
-5.7246664e+117
-5.7312089e+117
-5.7208848e+117
-5.7012079e+117
-5.7184276e+117
-5.7113941e+117
-5.7082537e+117
-5.713223e+117
-5.7071126e+117
-5.7227375e+117
-5.7165678e+117
-5.7263105e+117
-5.7325142e+117
-5.7430269e+117
-5.7367176e+117
-5.7541006e+117
-5.748597e+117
-5.7379939e+117
-5.7435615e+117
-5.7185931e+117
-5.7240972e+117
-5.7336421e+117
-5.7281637e+117
-5.7469567e+117
-5.7530585e+117
-5.7626931e+117
-5.7565037e+117
-5.7740344e+117
-5.7838967e+117
-5.7901996e+117
-5.7803427e+117
-5.7958044e+117
-5.7859131e+117
-5.7908645e+117
-5.8008566e+117
-5.7587474e+117
-5.7683532e+117
-5.7732817e+117
-5.7638189e+117
-5.7214011e+117
-5.7282672e+117
-5.737757e+117
-5.7308513e+117
-5.7478524e+117
-5.7575793e+117
-5.764834e+117
-5.7550504e+117
-5.771476e+117
-5.7616974e+117
-5.7680295e+117
-5.7778168e+117
-5.7347109e+117
-5.7505842e+117
-5.7443013e+117
-5.7409975e+117
-5.7893717e+117
-5.7966751e+117
-5.8082435e+117
-5.8009928e+117
-5.7879292e+117
-5.7815422e+117
-5.7921212e+117
-5.7985819e+117
-5.7676619e+117
-5.7781945e+117
-5.7854909e+117
-5.7749477e+117
-5.8148993e+117
-5.8032857e+117
-5.8098379e+117
-5.8215516e+117
-5.7940869e+117
-5.800345e+117
-5.8109629e+117
-5.8047372e+117
-5.816044e+117
-5.8222825e+117
-5.8340476e+117
-5.8277909e+117
-5.8333888e+117
-5.8279968e+117
-5.8398209e+117
-5.8452382e+117
-5.8059225e+117
-5.8111019e+117
-5.8219376e+117
-5.8166234e+117
-5.8574079e+117
-5.8525958e+117
-5.8463595e+117
-5.8637389e+117
-5.8687781e+117
-5.8851499e+117
-5.8912752e+117
-5.8748591e+117
-5.8693917e+117
-5.8749007e+117
-5.8805699e+117
-5.8968207e+117
-5.9022509e+117
-5.8859691e+117
-5.8583285e+117
-5.863708e+117
-5.8300673e+117
-5.8265875e+117
-5.8190952e+117
-5.8377095e+117
-5.8414145e+117
-5.8579017e+117
-5.865568e+117
-5.8489832e+117
-5.844441e+117
-5.851244e+117
-5.8559436e+117
-5.872432e+117
-5.8791028e+117
-5.862559e+117
-5.8333483e+117
-5.8399846e+117
-5.6916646e+117
-5.7006788e+117
-5.7056818e+117
-5.6965838e+117
-5.8159536e+117
-5.8267946e+117
-5.8317615e+117
-5.8431864e+117
-5.8382557e+117
-5.8500863e+117
-5.8550197e+117
-5.8531271e+117
-5.8480847e+117
-5.8599766e+117
-5.8649709e+117
-5.897695e+117
-5.9086773e+117
-5.9135502e+117
-5.9024432e+117
-5.8991968e+117
-5.9040071e+117
-5.8929024e+117
-5.8881561e+117
-5.9265209e+117
-5.9103424e+117
-5.9312147e+117
-5.914973e+117
-5.9244829e+117
-5.9196814e+117
-5.9358577e+117
-5.9407292e+117
-5.8798068e+117
-5.8737932e+117
-5.8687324e+117
-5.8849718e+117
-5.8910541e+117
-5.8961364e+117
-5.9124007e+117
-5.9072491e+117
-5.8947617e+117
-5.8898214e+117
-5.9057882e+117
-5.9010453e+117
-5.9172075e+117
-5.9219985e+117
-5.8787312e+117
-5.8836263e+117
-5.9454992e+117
-5.950269e+117
-5.9545796e+117
-5.9587719e+117
-5.8133335e+117
-5.8231347e+117
-5.8322006e+117
-5.8231016e+117
-5.8414658e+117
-5.8326366e+117
-5.8401338e+117
-5.8493e+117
-5.8046571e+117
-5.79637e+117
-5.7895891e+117
-5.8229238e+117
-5.8141771e+117
-5.8050029e+117
-5.8166676e+117
-5.8081423e+117
-5.8221046e+117
-5.8300076e+117
-5.8331712e+117
-5.8435066e+117
-5.851485e+117
-5.8591257e+117
-5.8427088e+117
-5.8615533e+117
-5.8529943e+117
-5.8690133e+117
-5.8529985e+117
-5.861924e+117
-5.8710172e+117
-5.8624837e+117
-5.8797877e+117
-5.8713814e+117
-5.8869703e+117
-5.8782906e+117
-5.8378342e+117
-5.8483575e+117
-5.8297554e+117
-5.839419e+117
-5.8578646e+117
-5.8675558e+117
-5.8490266e+117
-5.8587879e+117
-5.877226e+117
-5.8861496e+117
-5.8675796e+117
-5.8769031e+117
-5.8862842e+117
-5.8948903e+117
-5.8948271e+117
-5.9031632e+117
-5.8556725e+117
-5.8644366e+117
-5.8453637e+117
-5.8544028e+117
-5.8748626e+117
-5.8822069e+117
-5.8664679e+117
-5.8739641e+117
-5.8839514e+117
-5.8907326e+117
-5.8927936e+117
-5.8991309e+117
-5.9070642e+117
-5.9012325e+117
-5.9091321e+117
-5.9144456e+117
-5.9025757e+117
-5.9105921e+117
-5.9096962e+117
-5.9174153e+117
-5.916072e+117
-5.9236048e+117
-5.9221345e+117
-5.9294893e+117
-5.8842697e+117
-5.9018962e+117
-5.8936303e+117
-5.8907693e+117
-5.9081615e+117
-5.9000342e+117
-5.914884e+117
-5.9087092e+117
-5.8698969e+117
-5.8877747e+117
-5.8793656e+117
-5.8774544e+117
-5.8951668e+117
-5.8868731e+117
-5.9021411e+117
-5.8948432e+117
-5.9212298e+117
-5.9162495e+117
-5.9227846e+117
-5.9274619e+117
-5.933309e+117
-5.9288067e+117
-5.9345092e+117
-5.9387974e+117
-5.9278446e+117
-5.9350479e+117
-5.933357e+117
-5.9404182e+117
-5.9385049e+117
-5.9454414e+117
-5.9435014e+117
-5.9503054e+117
-5.9135577e+117
-5.9303751e+117
-5.9225728e+117
-5.9082094e+117
-5.9252025e+117
-5.917277e+117
-5.9367057e+117
-5.9316e+117
-5.9027201e+117
-5.9198319e+117
-5.911866e+117
-5.8967721e+117
-5.9140956e+117
-5.9059948e+117
-5.9263396e+117
-5.9207017e+117
-5.9441113e+117
-5.9399657e+117
-5.9451754e+117
-5.949163e+117
-5.9540416e+117
-5.9501287e+117
-5.9549069e+117
-5.9587016e+117
-5.9518256e+117
-5.9470047e+117
-5.9682078e+117
-5.9606644e+117
-5.9636159e+117
-5.9559192e+117
-5.9696651e+117
-5.9741875e+117
-5.9377353e+117
-5.9423808e+117
-5.9590377e+117
-5.9513207e+117
-5.9544438e+117
-5.9466858e+117
-5.9651544e+117
-5.9605683e+117
-5.9285002e+117
-5.9332324e+117
-5.9452104e+117
-5.937453e+117
-5.9498725e+117
-5.9421692e+117
-5.9560142e+117
-5.9513523e+117
-5.9237149e+117
-5.9186172e+117
-5.9354123e+117
-5.9276191e+117
-5.9404188e+117
-5.9326999e+117
-5.9466056e+117
-5.9416484e+117
-5.9564632e+117
-5.9610419e+117
-5.9727146e+117
-5.9652222e+117
-5.9771029e+117
-5.9696976e+117
-5.9829657e+117
-5.9786125e+117
-5.9652475e+117
-5.9693976e+117
-5.9812881e+117
-5.9738475e+117
-5.9853895e+117
-5.9779846e+117
-5.9871351e+117
-5.9912604e+117
-5.9483522e+117
-5.9551356e+117
-5.9532636e+117
-5.960025e+117
-5.9579702e+117
-5.9647204e+117
-5.9626289e+117
-5.9693478e+117
-5.9671683e+117
-5.9738662e+117
-5.9717301e+117
-5.978391e+117
-5.9761947e+117
-5.9827705e+117
-5.9806421e+117
-5.9871161e+117
-5.9634448e+117
-5.9597471e+117
-5.9645424e+117
-5.9681176e+117
-5.9727858e+117
-5.9692194e+117
-5.9737995e+117
-5.9773018e+117
-5.9818272e+117
-5.9783183e+117
-5.9827599e+117
-5.9862069e+117
-5.9905349e+117
-5.9871183e+117
-5.9913913e+117
-5.9946869e+117
-5.985005e+117
-5.9914034e+117
-5.9893095e+117
-5.9956603e+117
-5.9934541e+117
-5.9997689e+117
-5.997576e+117
-6.0038491e+117
-6.0016638e+117
-6.0078048e+117
-6.0056234e+117
-6.0116662e+117
-6.0094048e+117
-6.015334e+117
-5.998859e+117
-5.9956406e+117
-5.9997888e+117
-6.0028645e+117
-6.0078848e+117
-6.0108564e+117
-6.0038574e+117
-6.0068979e+117
-6.0155125e+117
-6.0183261e+117
-6.0117521e+117
-6.0146541e+117
-6.0227702e+117
-6.0254137e+117
-6.0191603e+117
-6.0219097e+117
-5.1542252e+117
-4.8792042e+117
-5.0234001e+117
-5.3293907e+117
-4.9405533e+117
-4.6576377e+117
-5.6466494e+117
-4.9693258e+117
-5.63727e+117
-5.0800583e+117
-4.3192546e+117
-5.7007795e+117
-5.1803564e+117
-4.568884e+117
-5.6671325e+117
-5.3603443e+117
-5.4847527e+117
-5.9078507e+117
-4.6412548e+117
-4.8258857e+117
-4.9564081e+117
-4.6564623e+117
-4.2520327e+117
-4.2056078e+117
-3.32905e+117
-1.9159059e+117
-4.0106549e+117
-2.2553405e+117
-4.7335757e+117
-4.689666e+117
-4.8769072e+117
-4.7701285e+117
-4.6630728e+117
-4.8536626e+117
-4.9773442e+117
-5.1238407e+117
-5.2214593e+117
-4.879912e+117
-5.3352565e+117
-4.9447927e+117
-4.937909e+117
-3.2720824e+117
-3.8767308e+117
-3.6507957e+117
-3.4268204e+117
-5.8851107e+117
-5.8813216e+117
-5.892802e+117
-5.8888757e+117
-5.9006688e+117
-5.8967687e+117
-5.9086428e+117
-5.9046109e+117
-5.9156995e+117
-5.9124559e+117
-5.9220654e+117
-5.9188457e+117
-5.9252842e+117
-5.9283546e+117
-5.9342799e+117
-5.9313186e+117
-5.806995e+117
-5.7950491e+117
-5.8097139e+117
-5.8023501e+117
-5.8196084e+117
-5.8134113e+117
-5.8312376e+117
-5.8256344e+117
-5.8367538e+117
-5.8419007e+117
-5.8512943e+117
-5.8467235e+117
-5.8603102e+117
-5.8558379e+117
-5.8689633e+117
-5.8647217e+117
-5.8772894e+117
-5.8731128e+117
-5.4874542e+117
-4.8301601e+117
-4.7006142e+117
-4.9586251e+117
-4.96151e+117
-4.8324797e+117
-4.7025846e+117
-4.5707483e+117
-4.3786319e+117
-4.5723335e+117
-5.2224021e+117
-5.0903061e+117
-5.0926814e+117
-5.2234232e+117
-5.3554221e+117
-5.3556227e+117
-5.4859148e+117
-4.1265287e+117
-3.8874777e+117
-5.6484415e+117
-5.6590683e+117
-1.1079645e+117
-5.5790509e+117
-4.9502531e+117
-3.3936927e+117
-5.5499462e+117
-4.351585e+117
-5.1728626e+117
-7.7816606e+116
-3.2080629e+117
-3.4323139e+117
-3.6580706e+117
-5.7263774e+117
-5.7400724e+117
-5.7441633e+117
-5.7304299e+117
-5.7342965e+117
-5.7479968e+117
-5.7381652e+117
-5.7518909e+117
-5.7551163e+117
-5.7704923e+117
-5.7591247e+117
-5.7744888e+117
-5.7670295e+117
-5.7785733e+117
-5.7826494e+117
-5.7630477e+117
-5.787588e+117
-5.7917259e+117
-5.8104514e+117
-5.8061767e+117
-5.8258918e+117
-5.8302914e+117
-5.8189317e+117
-5.7958704e+117
-5.8146964e+117
-5.8000153e+117
-5.8346563e+117
-5.8390009e+117
-5.7597516e+117
-5.7419814e+117
-5.7558321e+117
-5.7458301e+117
-5.7711167e+117
-5.7867727e+117
-5.7906304e+117
-5.774968e+117
-5.7530459e+117
-5.7670253e+117
-5.7494247e+117
-5.7633005e+117
-5.7786451e+117
-5.794477e+117
-5.7824719e+117
-5.7983672e+117
-5.8272003e+117
-5.8042093e+117
-5.8231693e+117
-5.8081507e+117
-5.8433301e+117
-5.8474366e+117
-5.8160291e+117
-5.8352347e+117
-5.8120677e+117
-5.8312132e+117
-5.8515034e+117
-5.8556272e+117
-5.6495263e+117
-5.6595762e+117
-5.6528951e+117
-5.6629251e+117
-5.6730775e+117
-5.6696576e+117
-5.6800378e+117
-5.6835168e+117
-5.6591465e+117
-5.6692607e+117
-5.6560399e+117
-5.6660952e+117
-5.6868907e+117
-5.6763626e+117
-5.6795756e+117
-5.6901611e+117
-5.6356747e+117
-5.6389087e+117
-5.6455221e+117
-5.6488251e+117
-5.6554222e+117
-5.6588965e+117
-5.665611e+117
-5.6691948e+117
-5.6422693e+117
-5.6522632e+117
-5.6559296e+117
-5.6458958e+117
-5.6728729e+117
-5.6765113e+117
-5.6625029e+117
-5.6661159e+117
-5.6766992e+117
-5.6884009e+117
-5.6922161e+117
-5.6804216e+117
-5.6841383e+117
-5.6959742e+117
-5.6996207e+117
-5.6877588e+117
-5.7168285e+117
-5.7003776e+117
-5.7128605e+117
-5.7042791e+117
-5.7245017e+117
-5.7081177e+117
-5.7207204e+117
-5.7118141e+117
-5.6913511e+117
-5.7033073e+117
-5.7069871e+117
-5.6949467e+117
-5.7017194e+117
-5.6983921e+117
-5.7105173e+117
-5.7139315e+117
-5.7155341e+117
-5.7282609e+117
-5.7320357e+117
-5.7192775e+117
-5.7263725e+117
-5.7228826e+117
-5.7356919e+117
-5.7392331e+117
-5.6350877e+117
-5.6220715e+117
-5.631804e+117
-5.62529e+117
-5.641611e+117
-5.6515344e+117
-5.6549554e+117
-5.6449357e+117
-5.6419723e+117
-5.6286893e+117
-5.6384784e+117
-5.6322134e+117
-5.6484106e+117
-5.6585059e+117
-5.6620842e+117
-5.6519151e+117
-5.6771532e+117
-5.6622762e+117
-5.6735523e+117
-5.6657798e+117
-5.6851448e+117
-5.6971224e+117
-5.7009652e+117
-5.6888447e+117
-5.6846196e+117
-5.6694257e+117
-5.6809119e+117
-5.6730645e+117
-5.6926877e+117
-5.7049122e+117
-5.6965018e+117
-5.7088546e+117
-5.6103462e+117
-5.6197355e+117
-5.629177e+117
-5.6380312e+117
-5.6473894e+117
-5.6405274e+117
-5.6310104e+117
-5.6330298e+117
-5.6426439e+117
-5.6214759e+117
-5.6119341e+117
-5.6137686e+117
-5.6234094e+117
-5.6287515e+117
-5.6162158e+117
-5.6258874e+117
-5.61901e+117
-5.6452942e+117
-5.6356218e+117
-5.6384593e+117
-5.6482406e+117
-5.6736428e+117
-5.6839972e+117
-5.6628835e+117
-5.6653647e+117
-5.6593756e+117
-5.6518435e+117
-5.651852e+117
-5.6645423e+117
-5.6532726e+117
-5.6588441e+117
-5.65581e+117
-5.6669097e+117
-5.6700282e+117
-5.6869124e+117
-5.6731582e+117
-5.6835907e+117
-5.6757333e+117
-5.6814928e+117
-5.6933307e+117
-5.6781962e+117
-5.6897674e+117
-5.7468595e+117
-5.761726e+117
-5.7696387e+117
-5.7491743e+117
-5.7654121e+117
-5.7530321e+117
-5.7777766e+117
-5.7828901e+117
-5.7874664e+117
-5.762914e+117
-5.7804303e+117
-5.757678e+117
-5.77481e+117
-5.7932499e+117
-5.7992611e+117
-5.6956303e+117
-5.7073851e+117
-5.7110036e+117
-5.6954622e+117
-5.7074896e+117
-5.6989341e+117
-5.719891e+117
-5.7328903e+117
-5.7208176e+117
-5.7342234e+117
-5.7378597e+117
-5.7243179e+117
-5.7020912e+117
-5.7144779e+117
-5.7186222e+117
-5.7059631e+117
-5.7280643e+117
-5.7420285e+117
-5.7325526e+117
-5.7468914e+117
-5.7099668e+117
-5.7228454e+117
-5.7139601e+117
-5.7270641e+117
-5.7416154e+117
-5.7566154e+117
-5.737091e+117
-5.7517888e+117
-5.7221771e+117
-5.7356853e+117
-5.7180385e+117
-5.7313606e+117
-5.7461383e+117
-5.7613676e+117
-5.7660025e+117
-5.7506381e+117
-5.7681735e+117
-5.7860507e+117
-5.7914924e+117
-5.7733119e+117
-5.7782902e+117
-5.7966876e+117
-5.7830492e+117
-5.8015626e+117
-5.805198e+117
-5.8108314e+117
-5.821186e+117
-5.8161833e+117
-5.5731433e+117
-5.573013e+117
-5.5822704e+117
-5.5820734e+117
-5.5856919e+117
-5.5748524e+117
-5.5838764e+117
-5.5767148e+117
-5.5918895e+117
-5.5913995e+117
-5.6013758e+117
-5.6007601e+117
-5.5930773e+117
-5.6023848e+117
-5.6041867e+117
-5.5948546e+117
-5.5817894e+117
-5.5907405e+117
-5.579129e+117
-5.5880438e+117
-5.5972125e+117
-5.6066093e+117
-5.5999508e+117
-5.6093708e+117
-5.5734924e+117
-5.5826781e+117
-5.6018085e+117
-5.592255e+117
-5.5507807e+117
-5.558992e+117
-5.5619022e+117
-5.5537735e+117
-5.5602404e+117
-5.5569694e+117
-5.5650531e+117
-5.5683641e+117
-5.5787383e+117
-5.5673079e+117
-5.5758259e+117
-5.5702087e+117
-5.5767486e+117
-5.5853926e+117
-5.5733864e+117
-5.58199e+117
-5.538086e+117
-5.5385343e+117
-5.5463277e+117
-5.546798e+117
-5.5509416e+117
-5.5407037e+117
-5.5489733e+117
-5.5426514e+117
-5.5550996e+117
-5.5638493e+117
-5.5553208e+117
-5.5639918e+117
-5.5573908e+117
-5.5659566e+117
-5.5678927e+117
-5.5593498e+117
-5.5561286e+117
-5.545132e+117
-5.5533891e+117
-5.5478446e+117
-5.5618242e+117
-5.5703723e+117
-5.5644869e+117
-5.5730066e+117
-5.5384537e+117
-5.5467817e+117
-5.5554843e+117
-5.5642794e+117
-5.5408013e+117
-5.5493386e+117
-5.5477263e+117
-5.539306e+117
-5.5670382e+117
-5.5580906e+117
-5.556421e+117
-5.5652457e+117
-5.5762409e+117
-5.5744909e+117
-5.5837478e+117
-5.5855783e+117
-5.5953103e+117
-5.6050885e+117
-5.5934248e+117
-5.603079e+117
-5.5846494e+117
-5.5936695e+117
-5.5967203e+117
-5.5876153e+117
-5.6124225e+117
-5.6060651e+117
-5.602961e+117
-5.6155854e+117
-5.5909031e+117
-5.5943648e+117
-5.6000664e+117
-5.6035756e+117
-5.6189909e+117
-5.612989e+117
-5.6225276e+117
-5.6094381e+117
-5.4435113e+117
-5.4360831e+117
-5.441622e+117
-5.448523e+117
-5.4510932e+117
-5.4590478e+117
-5.4555841e+117
-5.4626246e+117
-5.4714066e+117
-5.4701561e+117
-5.4910862e+117
-5.4791948e+117
-5.4770918e+117
-5.4844891e+117
-5.4924525e+117
-5.4954202e+117
-5.4933926e+117
-5.487636e+117
-5.4963519e+117
-5.4964678e+117
-5.4984654e+117
-5.5007727e+117
-5.512836e+117
-5.505075e+117
-5.5074339e+117
-5.5145325e+117
-5.5211918e+117
-5.5222429e+117
-5.5294747e+117
-5.5302302e+117
-5.5213962e+117
-5.5298847e+117
-5.5040182e+117
-5.5127236e+117
-5.4373971e+117
-5.4398878e+117
-5.4473886e+117
-5.4448162e+117
-5.4551257e+117
-5.4632766e+117
-5.4604884e+117
-5.4525067e+117
-5.4875024e+117
-5.4894091e+117
-5.4975845e+117
-5.4958371e+117
-5.4714488e+117
-5.4733995e+117
-5.4812875e+117
-5.479245e+117
-5.4217263e+117
-5.4288591e+117
-5.4081035e+117
-5.4149481e+117
-5.4148545e+117
-5.4082496e+117
-5.421351e+117
-5.4279632e+117
-5.4346357e+117
-5.4117407e+117
-5.4161457e+117
-5.4184409e+117
-5.4094073e+117
-5.4252307e+117
-5.432568e+117
-5.4300516e+117
-5.4229509e+117
-5.5130491e+117
-5.5144623e+117
-5.5059345e+117
-5.5043198e+117
-5.5232671e+117
-5.5320723e+117
-5.5306413e+117
-5.5219419e+117
-5.3734271e+117
-5.3676486e+117
-5.3570902e+117
-5.3621724e+117
-5.3601133e+117
-5.3641677e+117
-5.3603037e+117
-5.3712323e+117
-5.3766769e+117
-5.3823478e+117
-5.3879938e+117
-5.3795506e+117
-5.3866242e+117
-5.3938433e+117
-5.3968605e+117
-5.3940138e+117
-5.401006e+117
-5.4008653e+117
-5.3975006e+117
-5.4043182e+117
-5.4034449e+117
-5.3921919e+117
-5.386164e+117
-5.3823598e+117
-5.3888284e+117
-5.4024598e+117
-5.4050089e+117
-5.3983651e+117
-5.3955575e+117
-5.3594367e+117
-5.3642009e+117
-5.3693538e+117
-5.3648527e+117
-5.3801474e+117
-5.3745001e+117
-5.3702081e+117
-5.3761365e+117
-5.4073704e+117
-5.4029906e+117
-5.4037166e+117
-5.3991709e+117
-5.4149058e+117
-5.410596e+117
-5.4173455e+117
-5.4225652e+117
-5.3992487e+117
-5.3943359e+117
-5.3898349e+117
-5.3953952e+117
-5.4055912e+117
-5.4014095e+117
-5.4077704e+117
-5.4116978e+117
-5.3979848e+117
-5.3938067e+117
-5.3901003e+117
-5.3934514e+117
-5.3828232e+117
-5.3891396e+117
-5.3810329e+117
-5.3800273e+117
-5.3805733e+117
-5.3738861e+117
-5.369224e+117
-5.3766946e+117
-5.3846145e+117
-5.3887663e+117
-5.3840558e+117
-5.3788384e+117
-5.4497421e+117
-5.4428347e+117
-5.4366073e+117
-5.4437603e+117
-5.4361066e+117
-5.428761e+117
-5.4235673e+117
-5.4298318e+117
-5.4392969e+117
-5.4353332e+117
-5.4279689e+117
-5.4319718e+117
-5.4183655e+117
-5.4250494e+117
-5.4210448e+117
-5.4143768e+117
-5.4725695e+117
-5.4803775e+117
-5.4747837e+117
-5.4667342e+117
-5.4587794e+117
-5.4646543e+117
-5.457338e+117
-5.4513456e+117
-5.4543063e+117
-5.4466895e+117
-5.4426403e+117
-5.4501805e+117
-5.4621476e+117
-5.4579931e+117
-5.4662013e+117
-5.4703091e+117
-5.4981938e+117
-5.5017329e+117
-5.4908725e+117
-5.4847824e+117
-5.4922528e+117
-5.5003485e+117
-5.5068119e+117
-5.5146191e+117
-5.5084621e+117
-5.4799564e+117
-5.487704e+117
-5.4761753e+117
-5.4840307e+117
-5.4920261e+117
-5.4956468e+117
-5.5037624e+117
-5.5001205e+117
-5.5166408e+117
-5.5224874e+117
-5.5304089e+117
-5.5247849e+117
-5.5332071e+117
-5.5387232e+117
-5.5471455e+117
-5.5416491e+117
-5.5374121e+117
-5.5254644e+117
-5.5288337e+117
-5.5341664e+117
-5.5119834e+117
-5.5202648e+117
-5.516748e+117
-5.5083701e+117
-5.5676363e+117
-5.5730022e+117
-5.5819798e+117
-5.5766014e+117
-5.5556452e+117
-5.5641883e+117
-5.5587456e+117
-5.5501756e+117
-5.5460212e+117
-5.55154e+117
-5.5546568e+117
-5.5429256e+117
-5.5635856e+117
-5.5726573e+117
-5.5694085e+117
-5.560395e+117
-5.5952662e+117
-5.6005521e+117
-5.5912039e+117
-5.5858667e+117
-5.5819212e+117
-5.591344e+117
-5.5880429e+117
-5.5786637e+117
-5.5978319e+117
-5.6011777e+117
-5.6111669e+117
-5.6076863e+117
-5.6102758e+117
-5.6202759e+117
-5.615203e+117
-5.6051214e+117
-5.533195e+117
-5.5402768e+117
-5.5433037e+117
-5.5363004e+117
-5.5393803e+117
-5.5424969e+117
-5.5463344e+117
-5.5494369e+117
-5.5583001e+117
-5.5477174e+117
-5.5553894e+117
-5.5506451e+117
-5.5568238e+117
-5.5645731e+117
-5.5536693e+117
-5.5613569e+117
-5.5297321e+117
-5.5227195e+117
-5.5121007e+117
-5.5195035e+117
-5.5265808e+117
-5.5152281e+117
-5.5289072e+117
-5.5212853e+117
-5.5182578e+117
-5.5257601e+117
-5.5328395e+117
-5.5359468e+117
-5.4938568e+117
-5.4885486e+117
-5.49152e+117
-5.4968315e+117
-5.5023459e+117
-5.4993313e+117
-5.5051105e+117
-5.5081972e+117
-5.4831045e+117
-5.477674e+117
-5.480644e+117
-5.4860462e+117
-5.4887551e+117
-5.4833002e+117
-5.4857194e+117
-5.4912548e+117
-5.4996433e+117
-5.4942213e+117
-5.4968024e+117
-5.5023383e+117
-5.5080414e+117
-5.5052422e+117
-5.5111422e+117
-5.514083e+117
-5.4974652e+117
-5.4916044e+117
-5.4933712e+117
-5.4993373e+117
-5.4897724e+117
-5.4878085e+117
-5.4934318e+117
-5.4955076e+117
-5.5048228e+117
-5.4991473e+117
-5.5013673e+117
-5.5071484e+117
-5.5053391e+117
-5.5033698e+117
-5.5092659e+117
-5.5113367e+117
-5.5130698e+117
-5.5106431e+117
-5.524087e+117
-5.5317781e+117
-5.5167674e+117
-5.5267575e+117
-5.5193089e+117
-5.5346203e+117
-5.538942e+117
-5.541808e+117
-5.5291409e+117
-5.5370734e+117
-5.5444335e+117
-5.5469222e+117
-5.5395329e+117
-5.5314257e+117
-5.5216762e+117
-5.5153257e+117
-5.5174918e+117
-5.523914e+117
-5.4744909e+117
-5.4691284e+117
-5.470372e+117
-5.4758477e+117
-5.4676967e+117
-5.4661376e+117
-5.471343e+117
-5.4729583e+117
-5.4821775e+117
-5.4767018e+117
-5.4784631e+117
-5.4840346e+117
-5.4815335e+117
-5.4800337e+117
-5.4857346e+117
-5.4873624e+117
-5.4672472e+117
-5.4621698e+117
-5.4644264e+117
-5.4695603e+117
-5.4594928e+117
-5.4565321e+117
-5.4616826e+117
-5.4645727e+117
-5.4722379e+117
-5.4669272e+117
-5.4698833e+117
-5.4751976e+117
-5.4748027e+117
-5.4724727e+117
-5.4778132e+117
-5.4801716e+117
-5.5556751e+117
-5.5455453e+117
-5.5526144e+117
-5.5484927e+117
-5.5600999e+117
-5.5632124e+117
-5.5678983e+117
-5.5710756e+117
-5.561198e+117
-5.5512357e+117
-5.5585309e+117
-5.5537888e+117
-5.5740758e+117
-5.5661574e+117
-5.5688731e+117
-5.5768369e+117
-5.4985462e+117
-5.5060552e+117
-5.5133123e+117
-5.5167071e+117
-5.5096885e+117
-5.5021842e+117
-5.5056179e+117
-5.5129782e+117
-5.5200448e+117
-5.5163722e+117
-5.5089549e+117
-5.5233698e+117
-5.4853391e+117
-5.4816091e+117
-5.4870573e+117
-5.4906934e+117
-5.4985628e+117
-5.492659e+117
-5.4962266e+117
-5.5020184e+117
-5.4794802e+117
-5.4739061e+117
-5.4778092e+117
-5.4832981e+117
-5.4889264e+117
-5.4852202e+117
-5.4912823e+117
-5.4949371e+117
-5.4744021e+117
-5.4706301e+117
-5.4760604e+117
-5.4798364e+117
-5.4666639e+117
-5.462556e+117
-5.4682393e+117
-5.472197e+117
-5.486327e+117
-5.4947494e+117
-5.5030746e+117
-5.4967968e+117
-5.504749e+117
-5.4887642e+117
-5.4994417e+117
-5.4917646e+117
-5.5071487e+117
-5.5026638e+117
-5.5100468e+117
-5.4950508e+117
-5.4699923e+117
-5.4660781e+117
-5.4719997e+117
-5.4756914e+117
-5.4843346e+117
-5.4780364e+117
-5.4816169e+117
-5.4877782e+117
-5.4787592e+117
-5.4655117e+117
-5.4721307e+117
-5.4589826e+117
-5.4623751e+117
-5.4685421e+117
-5.4747606e+117
-5.4811943e+117
-5.4495343e+117
-5.4456302e+117
-5.4522937e+117
-5.4559143e+117
-5.4600164e+117
-5.4539187e+117
-5.4583928e+117
-5.4642449e+117
-5.5190321e+117
-5.5100298e+117
-5.5171222e+117
-5.5117748e+117
-5.524692e+117
-5.5325336e+117
-5.5345115e+117
-5.5266354e+117
-5.5241652e+117
-5.5141172e+117
-5.5214329e+117
-5.5168836e+117
-5.5290855e+117
-5.5370006e+117
-5.5317789e+117
-5.539686e+117
-5.5200564e+117
-5.5272592e+117
-5.5304827e+117
-5.5233377e+117
-5.5299811e+117
-5.5266707e+117
-5.5338075e+117
-5.537127e+117
-5.5426821e+117
-5.5457684e+117
-5.5348223e+117
-5.537974e+117
-5.5445874e+117
-5.5412812e+117
-5.5490338e+117
-5.5522997e+117
-5.4344773e+117
-5.4291564e+117
-5.4353217e+117
-5.440379e+117
-5.4242972e+117
-5.4198478e+117
-5.4263673e+117
-5.4306374e+117
-5.4390596e+117
-5.4326739e+117
-5.4369049e+117
-5.4431717e+117
-5.446344e+117
-5.4415015e+117
-5.4477021e+117
-5.4523523e+117
-5.4568201e+117
-5.4510876e+117
-5.4557388e+117
-5.4611365e+117
-5.4446865e+117
-5.4396509e+117
-5.445306e+117
-5.4501341e+117
-5.4545423e+117
-5.4492246e+117
-5.4532795e+117
-5.4584842e+117
-5.4651991e+117
-5.4598813e+117
-5.463701e+117
-5.4689817e+117
-5.4153082e+117
-5.4115531e+117
-5.4164244e+117
-5.4201516e+117
-5.4059359e+117
-5.4000175e+117
-5.4040821e+117
-5.4097938e+117
-5.4129293e+117
-5.408364e+117
-5.414083e+117
-5.4185391e+117
-5.423986e+117
-5.4192707e+117
-5.4236102e+117
-5.4281637e+117
-5.3911809e+117
-5.3868676e+117
-5.3938891e+117
-5.3980707e+117
-5.3798986e+117
-5.3725821e+117
-5.3680072e+117
-5.3658635e+117
-5.3766393e+117
-5.3845518e+117
-5.3863449e+117
-5.3811781e+117
-5.3892333e+117
-5.3940599e+117
-5.4023291e+117
-5.3956286e+117
-5.4004246e+117
-5.4070033e+117
-5.4123402e+117
-5.4063896e+117
-5.4058038e+117
-5.4044483e+117
-5.4000898e+117
-5.3996455e+117
-5.4111621e+117
-5.4177161e+117
-5.3976173e+117
-5.3916793e+117
-5.3992147e+117
-5.4048221e+117
-5.4109729e+117
-5.4055406e+117
-5.4120344e+117
-5.4172862e+117
-5.4229186e+117
-5.4168205e+117
-5.4228534e+117
-5.4286121e+117
-5.4332325e+117
-5.4283026e+117
-5.4327536e+117
-5.4375646e+117
-5.4233317e+117
-5.4178226e+117
-5.4229752e+117
-5.4283725e+117
-5.4340026e+117
-5.4284175e+117
-5.4337289e+117
-5.439171e+117
-5.4426733e+117
-5.4384442e+117
-5.443795e+117
-5.447915e+117
-5.4337212e+117
-5.432382e+117
-5.4360417e+117
-5.4374499e+117
-5.4309185e+117
-5.4295997e+117
-5.433278e+117
-5.4346072e+117
-5.4414931e+117
-5.4372619e+117
-5.4386114e+117
-5.4428556e+117
-5.4442241e+117
-5.4400134e+117
-5.4413907e+117
-5.4455397e+117
-5.4284973e+117
-5.4265486e+117
-5.4300105e+117
-5.4320458e+117
-5.423713e+117
-5.4202132e+117
-5.423904e+117
-5.4272651e+117
-5.4319476e+117
-5.4277964e+117
-5.4311239e+117
-5.4352299e+117
-5.4358966e+117
-5.4338403e+117
-5.4379434e+117
-5.4400198e+117
-5.4513615e+117
-5.4462681e+117
-5.4493997e+117
-5.4544055e+117
-5.4397136e+117
-5.4364651e+117
-5.4412315e+117
-5.4444202e+117
-5.4470694e+117
-5.4423971e+117
-5.444502e+117
-5.4491853e+117
-5.4541474e+117
-5.4519991e+117
-5.4570358e+117
-5.4592216e+117
-5.4609339e+117
-5.4558346e+117
-5.45729e+117
-5.4624321e+117
-5.4474402e+117
-5.4460459e+117
-5.450811e+117
-5.452227e+117
-5.4500241e+117
-5.4487548e+117
-5.4535218e+117
-5.4547287e+117
-5.45976e+117
-5.4585833e+117
-5.4637782e+117
-5.4649586e+117
-5.5977447e+117
-5.6070211e+117
-5.6101833e+117
-5.600908e+117
-5.6075065e+117
-5.6040733e+117
-5.6133163e+117
-5.616797e+117
-5.6291144e+117
-5.6164475e+117
-5.6259566e+117
-5.6195748e+117
-5.6263137e+117
-5.6360025e+117
-5.6227801e+117
-5.6324307e+117
-5.5876179e+117
-5.5760036e+117
-5.5843553e+117
-5.5792302e+117
-5.5929734e+117
-5.6018215e+117
-5.6051084e+117
-5.5962502e+117
-5.585093e+117
-5.5935926e+117
-5.5822647e+117
-5.5906935e+117
-5.5993541e+117
-5.6082374e+117
-5.6023042e+117
-5.611215e+117
-5.6236282e+117
-5.6109778e+117
-5.6203047e+117
-5.6142614e+117
-5.6298756e+117
-5.6395898e+117
-5.6429494e+117
-5.6332062e+117
-5.6204057e+117
-5.629822e+117
-5.6173812e+117
-5.6267694e+117
-5.6363549e+117
-5.6461202e+117
-5.6394376e+117
-5.6491957e+117
-5.5633523e+117
-5.5715282e+117
-5.5745314e+117
-5.5662896e+117
-5.5693695e+117
-5.5776594e+117
-5.5726493e+117
-5.5809777e+117
-5.5918205e+117
-5.5799911e+117
-5.5886927e+117
-5.5830466e+117
-5.5895664e+117
-5.5861996e+117
-5.5950081e+117
-5.5983977e+117
-5.2233677e+117
-4.1402012e+117
-4.4517505e+117
-4.3249331e+117
-4.3280312e+117
-4.4519093e+117
-4.4511894e+117
-4.3260017e+117
-4.4486904e+117
-4.3226129e+117
-4.579106e+117
-4.577196e+117
-4.5785274e+117
-4.7038132e+117
-4.7049765e+117
-4.7057695e+117
-4.5782934e+117
-4.7029309e+117
-4.6994722e+117
-4.5743001e+117
-4.8339417e+117
-4.8316019e+117
-4.8328963e+117
-4.830813e+117
-4.9596543e+117
-4.9601137e+117
-4.9588928e+117
-4.9601153e+117
-4.8265139e+117
-4.8290033e+117
-4.9569132e+117
-4.9546669e+117
-5.0914232e+117
-5.0885869e+117
-5.0868388e+117
-5.0897394e+117
-5.087622e+117
-5.2147995e+117
-5.2145326e+117
-5.2192589e+117
-5.2146844e+117
-5.0869044e+117
-5.2173241e+117
-5.2196575e+117
-5.0866536e+117
-5.3444153e+117
-5.340381e+117
-5.3399271e+117
-5.3429966e+117
-5.4729001e+117
-5.4676547e+117
-5.4664526e+117
-5.4706109e+117
-3.898909e+117
-4.0767446e+117
-4.1984758e+117
-4.193169e+117
-4.0716303e+117
-4.3213591e+117
-4.3161439e+117
-4.4381316e+117
-4.4444244e+117
-4.5700077e+117
-4.6962992e+117
-4.6917357e+117
-4.5636596e+117
-4.8245657e+117
-4.9544975e+117
-4.9542381e+117
-4.8223834e+117
-3.6666691e+117
-3.8329745e+117
-3.837794e+117
-3.9482003e+117
-3.9529986e+117
-4.0686488e+117
-4.0633243e+117
-4.1803479e+117
-4.186866e+117
-4.3089126e+117
-4.4323456e+117
-4.4262187e+117
-4.3019677e+117
-4.5588814e+117
-4.6835434e+117
-4.6875985e+117
-4.5539876e+117
-5.4042213e+117
-5.4210254e+117
-5.3885532e+117
-5.3715168e+117
-5.388214e+117
-5.4001705e+117
-5.4230409e+117
-5.415263e+117
-5.4264676e+117
-5.4169864e+117
-5.4112949e+117
-5.4382678e+117
-5.4554139e+117
-5.4911024e+117
-5.4728611e+117
-5.4472449e+117
-5.4551996e+117
-5.4540162e+117
-5.446886e+117
-5.4313585e+117
-5.4393819e+117
-5.4392473e+117
-5.4336455e+117
-5.4635456e+117
-5.4715033e+117
-5.4617963e+117
-5.4692147e+117
-5.4801034e+117
-5.4889127e+117
-5.4852822e+117
-5.4773072e+117
-5.5645978e+117
-5.5564475e+117
-5.5483537e+117
-5.5409233e+117
-5.5255317e+117
-5.5331797e+117
-5.5175299e+117
-5.50827e+117
-5.5450417e+117
-5.5532178e+117
-5.5292152e+117
-5.5368182e+117
-5.5151758e+117
-5.5064692e+117
-5.5217905e+117
-5.50704e+117
-5.502319e+117
-5.5030103e+117
-5.6287692e+117
-5.6385931e+117
-5.6098304e+117
-5.6191439e+117
-5.6005861e+117
-5.5911495e+117
-5.5818406e+117
-5.5730475e+117
-5.5791961e+117
-5.5883075e+117
-5.5617489e+117
-5.5702332e+117
-5.6069977e+117
-5.5976576e+117
-5.6166363e+117
-5.6264047e+117
-5.0688156e+117
-5.0858687e+117
-5.0721098e+117
-5.1191014e+117
-5.1331708e+117
-5.0783546e+117
-5.1449286e+117
-5.0877023e+117
-5.0945822e+117
-5.1496453e+117
-5.1115309e+117
-5.1711693e+117
-5.2025929e+117
-5.1854582e+117
-5.2228401e+117
-5.1038e+117
-5.0879199e+117
-5.096402e+117
-3.4390995e+117
-3.6023737e+117
-3.6069586e+117
-3.7199782e+117
-3.7153224e+117
-3.8260015e+117
-3.8311236e+117
-3.9376664e+117
-3.9432474e+117
-4.0516981e+117
-4.0577957e+117
-4.1742707e+117
-4.1675886e+117
-4.2949928e+117
-4.2878848e+117
-4.4120302e+117
-4.4189745e+117
-5.3154391e+117
-5.3231516e+117
-5.3111664e+117
-5.317165e+117
-5.3218888e+117
-5.3172841e+117
-5.3281843e+117
-5.3253956e+117
-5.3204047e+117
-5.3261917e+117
-5.3358284e+117
-5.3412587e+117
-5.3379464e+117
-5.3322161e+117
-5.3465143e+117
-5.3515171e+117
-5.3440894e+117
-5.3507936e+117
-5.3564495e+117
-5.3575297e+117
-5.3558809e+117
-5.3596502e+117
-5.3412223e+117
-5.3465301e+117
-5.3413757e+117
-5.3357063e+117
-5.3521214e+117
-5.3580248e+117
-5.3532298e+117
-5.3469713e+117
-5.3159093e+117
-5.322114e+117
-5.3182714e+117
-5.3130826e+117
-5.3286725e+117
-5.3347831e+117
-5.3295674e+117
-5.323682e+117
-5.2693311e+117
-5.2467253e+117
-5.2518119e+117
-5.2796978e+117
-5.2727104e+117
-5.2611179e+117
-5.288728e+117
-5.2945219e+117
-5.2975047e+117
-5.2891657e+117
-5.28338e+117
-5.2861244e+117
-5.2940592e+117
-5.2915655e+117
-5.2992719e+117
-5.3021347e+117
-5.3060532e+117
-5.3084021e+117
-5.29734e+117
-5.3047195e+117
-5.2815311e+117
-5.2897074e+117
-5.3141404e+117
-5.3089623e+117
-5.3101565e+117
-5.3138211e+117
-5.3070091e+117
-5.3132959e+117
-5.3164155e+117
-5.3153287e+117
-5.2268954e+117
-5.252445e+117
-5.2533246e+117
-5.2419102e+117
-5.274175e+117
-5.2611966e+117
-5.2642561e+117
-5.2746282e+117
-5.1823004e+117
-5.2227343e+117
-5.2151442e+117
-5.2312234e+117
-5.249995e+117
-5.2534519e+117
-5.2703156e+117
-5.2884216e+117
-5.2570111e+117
-5.2654168e+117
-5.2782724e+117
-5.2833742e+117
-5.2919521e+117
-5.2914272e+117
-5.3007942e+117
-5.308742e+117
-5.3037264e+117
-5.3383151e+117
-5.3244331e+117
-5.3321968e+117
-5.3439693e+117
-5.3164285e+117
-5.314672e+117
-5.3248292e+117
-5.3254168e+117
-5.3177482e+117
-5.3357253e+117
-5.3401083e+117
-5.343589e+117
-5.3335369e+117
-5.3583943e+117
-5.3492746e+117
-5.3612234e+117
-5.352605e+117
-5.3661195e+117
-5.373578e+117
-5.3737636e+117
-5.3679311e+117
-5.3515105e+117
-5.3576203e+117
-5.3514523e+117
-5.3467482e+117
-5.3640798e+117
-5.3698911e+117
-5.3629486e+117
-5.3572327e+117
-5.206372e+117
-5.1438559e+117
-5.2693917e+117
-5.2952348e+117
-5.2531552e+117
-5.1829261e+117
-5.3015109e+117
-5.2657169e+117
-5.3274832e+117
-5.3278901e+117
-5.3508791e+117
-5.3713599e+117
-5.3526475e+117
-5.3269578e+117
-3.2145195e+117
-3.3785537e+117
-3.3814928e+117
-3.492743e+117
-3.4891078e+117
-3.7118928e+117
-3.601714e+117
-3.597457e+117
-3.7069482e+117
-3.8175645e+117
-3.8228267e+117
-3.9283769e+117
-3.9330696e+117
-4.041259e+117
-4.0457481e+117
-4.1565579e+117
-4.161347e+117
-5.1534685e+117
-5.1622858e+117
-5.1656729e+117
-5.1955471e+117
-5.1547309e+117
-5.1592398e+117
-5.1595234e+117
-5.1648486e+117
-5.207723e+117
-5.1695442e+117
-5.1729117e+117
-5.2025026e+117
-5.1675816e+117
-5.1674263e+117
-5.1849972e+117
-5.1883436e+117
-5.1795336e+117
-5.1829816e+117
-5.18457e+117
-5.1834081e+117
-5.2066923e+117
-5.2175784e+117
-5.1800831e+117
-5.1797064e+117
-5.1916526e+117
-5.1961285e+117
-5.1977788e+117
-5.1973845e+117
-5.20186e+117
-5.2097718e+117
-5.1831647e+117
-5.1894337e+117
-5.18463e+117
-5.1912909e+117
-5.1863969e+117
-5.180691e+117
-5.1798689e+117
-5.1811696e+117
-5.1940342e+117
-5.1887875e+117
-5.1930108e+117
-5.199938e+117
-5.1894012e+117
-5.1899926e+117
-5.1952003e+117
-5.1915601e+117
-5.1925664e+117
-5.1905706e+117
-5.1864276e+117
-5.1883541e+117
-5.1858085e+117
-5.189035e+117
-5.1910036e+117
-5.1877957e+117
-5.2014708e+117
-5.1969595e+117
-5.1963215e+117
-5.1995526e+117
-5.1890993e+117
-5.1902293e+117
-5.1923426e+117
-5.1914575e+117
-5.1914092e+117
-5.1940199e+117
-5.1998558e+117
-5.1971012e+117
-5.2010981e+117
-5.2001295e+117
-5.2090579e+117
-5.2027862e+117
-5.2668322e+117
-5.2652896e+117
-5.2647258e+117
-5.2623211e+117
-5.2591015e+117
-5.2568602e+117
-5.2599822e+117
-5.2653605e+117
-5.2668909e+117
-5.2643679e+117
-5.2669718e+117
-5.2644819e+117
-5.2693557e+117
-5.2688854e+117
-5.2724063e+117
-5.2767814e+117
-5.2762045e+117
-5.3855205e+117
-5.3813512e+117
-5.3850754e+117
-5.389461e+117
-5.3767304e+117
-5.3713587e+117
-5.3747501e+117
-5.3802664e+117
-5.381518e+117
-5.3780672e+117
-5.383738e+117
-5.3872603e+117
-5.3923769e+117
-5.3887155e+117
-5.3932975e+117
-5.3971027e+117
-5.364804e+117
-5.3570722e+117
-5.3607625e+117
-5.3682573e+117
-5.3373593e+117
-5.3248771e+117
-5.3226301e+117
-5.3429673e+117
-5.3307665e+117
-5.3288302e+117
-5.3527178e+117
-5.3485498e+117
-5.3517068e+117
-5.3474025e+117
-5.3562865e+117
-5.3599307e+117
-5.3715659e+117
-5.3640966e+117
-5.3677347e+117
-5.3750339e+117
-5.3688408e+117
-5.3640053e+117
-5.3624623e+117
-5.3645637e+117
-5.3714387e+117
-5.3753115e+117
-5.3636205e+117
-5.3558751e+117
-5.3602181e+117
-5.3675241e+117
-5.3749887e+117
-5.3712983e+117
-5.3785546e+117
-5.3821714e+117
-5.3858415e+117
-5.3786772e+117
-5.3825846e+117
-5.3897247e+117
-5.3961638e+117
-5.392429e+117
-5.3984321e+117
-5.402148e+117
-5.390875e+117
-5.3850178e+117
-5.3887059e+117
-5.394626e+117
-5.4009489e+117
-5.3960944e+117
-5.3999496e+117
-5.4048212e+117
-5.4087321e+117
-5.4038514e+117
-5.4076935e+117
-5.4125759e+117
-5.3676656e+117
-5.365029e+117
-5.3691607e+117
-5.3721904e+117
-5.3574577e+117
-5.3608953e+117
-5.3654487e+117
-5.3616652e+117
-5.3767525e+117
-5.3732385e+117
-5.3773635e+117
-5.3812436e+117
-5.3690988e+117
-5.3642277e+117
-5.3678172e+117
-5.372959e+117
-5.3437396e+117
-5.3466126e+117
-5.3546274e+117
-5.3515083e+117
-5.3249431e+117
-5.3272501e+117
-5.3371689e+117
-5.3347328e+117
-5.3576136e+117
-5.3494902e+117
-5.3531702e+117
-5.3611565e+117
-5.3398706e+117
-5.3299318e+117
-5.3209815e+117
-5.3182444e+117
-5.3440306e+117
-5.3330959e+117
-5.3230058e+117
-5.3205721e+117
-5.3321315e+117
-5.3311684e+117
-5.3235598e+117
-5.3201714e+117
-5.3017984e+117
-5.3072082e+117
-5.321706e+117
-5.303651e+117
-5.3362904e+117
-5.3079209e+117
-5.3158622e+117
-5.3314416e+117
-5.3242407e+117
-5.3285229e+117
-5.3269675e+117
-5.3379435e+117
-5.3389095e+117
-5.3479672e+117
-5.3457346e+117
-5.3476451e+117
-5.3405782e+117
-5.3444481e+117
-5.3401889e+117
-5.3417663e+117
-5.3226621e+117
-5.3390316e+117
-5.3262196e+117
-5.3369172e+117
-5.3210008e+117
-5.3367351e+117
-5.320579e+117
-5.3490855e+117
-5.3491807e+117
-5.353042e+117
-5.356792e+117
-5.3519401e+117
-5.350478e+117
-5.3525455e+117
-5.3545015e+117
-5.3598981e+117
-5.362297e+117
-5.3569713e+117
-5.3549092e+117
-5.3353908e+117
-5.338055e+117
-5.3518209e+117
-5.3536418e+117
-5.3311037e+117
-5.3477076e+117
-5.3496965e+117
-5.332894e+117
-5.3695057e+117
-5.3669398e+117
-5.3753671e+117
-5.3655791e+117
-5.3684043e+117
-5.3746456e+117
-5.366916e+117
-5.3638129e+117
-5.3618221e+117
-5.3649527e+117
-5.3716674e+117
-5.3732321e+117
-5.3272442e+117
-5.3293495e+117
-5.3440699e+117
-5.3459025e+117
-5.343316e+117
-5.3272208e+117
-5.3429406e+117
-5.3267724e+117
-5.3562429e+117
-5.3585827e+117
-5.3644015e+117
-5.3661793e+117
-5.3600563e+117
-5.357233e+117
-5.3632037e+117
-5.3600243e+117
-5.3699429e+117
-5.3582759e+117
-5.3613669e+117
-5.3681023e+117
-5.3744966e+117
-5.3801999e+117
-5.3764739e+117
-5.3822954e+117
-5.3777784e+117
-5.3701598e+117
-5.3752415e+117
-5.3722863e+117
-5.3829128e+117
-5.3801034e+117
-5.3848363e+117
-5.3879029e+117
-5.3877642e+117
-5.3855389e+117
-5.3906588e+117
-5.3929565e+117
-5.3797077e+117
-5.3781978e+117
-5.3840601e+117
-5.3855132e+117
-5.3909085e+117
-5.3895314e+117
-5.3947177e+117
-5.3959705e+117
-5.3925062e+117
-5.3918221e+117
-5.3966102e+117
-5.397383e+117
-5.3866719e+117
-5.3809981e+117
-5.3816369e+117
-5.3872766e+117
-5.3978321e+117
-5.3954754e+117
-5.3999986e+117
-5.4023827e+117
-5.393516e+117
-5.389315e+117
-5.3926229e+117
-5.397042e+117
-5.4014248e+117
-5.3975034e+117
-5.4012155e+117
-5.4052376e+117
-5.4083157e+117
-5.4042476e+117
-5.4066472e+117
-5.410668e+117
-5.4165138e+117
-5.4128697e+117
-5.4166057e+117
-5.4201296e+117
-5.4091125e+117
-5.4052439e+117
-5.409112e+117
-5.4129126e+117
-5.4144616e+117
-5.4121811e+117
-5.4159235e+117
-5.4180544e+117
-5.4230503e+117
-5.4195517e+117
-5.4215582e+117
-5.42498e+117
-5.4260367e+117
-5.4226666e+117
-5.4239388e+117
-5.4273005e+117
-5.4192971e+117
-5.4158761e+117
-5.4171609e+117
-5.4205156e+117
-5.41871e+117
-5.4180738e+117
-5.4215657e+117
-5.4224817e+117
-5.4287245e+117
-5.425165e+117
-5.4262429e+117
-5.4299428e+117
-5.4122964e+117
-5.408352e+117
-5.4095116e+117
-5.4134989e+117
-5.4007498e+117
-5.3995703e+117
-5.4041134e+117
-5.4052569e+117
-5.4020651e+117
-5.4013626e+117
-5.405887e+117
-5.4064598e+117
-5.4142831e+117
-5.4101816e+117
-5.410656e+117
-5.4147647e+117
-5.4660017e+117
-5.4608168e+117
-5.4622783e+117
-5.4674128e+117
-5.4558309e+117
-5.4511705e+117
-5.452729e+117
-5.4573348e+117
-5.4566315e+117
-5.4546285e+117
-5.4591605e+117
-5.4611392e+117
-5.4692196e+117
-5.4640722e+117
-5.4660063e+117
-5.4711333e+117
-5.4467103e+117
-5.4425615e+117
-5.4440711e+117
-5.448254e+117
-5.4385669e+117
-5.434705e+117
-5.4359315e+117
-5.4399374e+117
-5.4390148e+117
-5.437311e+117
-5.4415355e+117
-5.4434128e+117
-5.4501654e+117
-5.4458404e+117
-5.4477859e+117
-5.4521498e+117
-5.4729071e+117
-5.4677895e+117
-5.4698358e+117
-5.4749367e+117
-5.462948e+117
-5.4584351e+117
-5.4604853e+117
-5.4649758e+117
-5.4772425e+117
-5.4721083e+117
-5.474566e+117
-5.4797756e+117
-5.4540294e+117
-5.4497271e+117
-5.4519081e+117
-5.456092e+117
-5.5133251e+117
-5.5072371e+117
-5.5092976e+117
-5.515434e+117
-5.4968149e+117
-5.4950178e+117
-5.5011002e+117
-5.502996e+117
-5.5051139e+117
-5.4988385e+117
-5.5009744e+117
-5.5073731e+117
-5.5138219e+117
-5.5114485e+117
-5.5177329e+117
-5.5202496e+117
-5.4889245e+117
-5.4829682e+117
-5.4846006e+117
-5.4906357e+117
-5.4729198e+117
-5.4714552e+117
-5.4770894e+117
-5.4786315e+117
-5.4766265e+117
-5.4747177e+117
-5.4804469e+117
-5.4823512e+117
-5.4883889e+117
-5.4864449e+117
-5.4925583e+117
-5.4945814e+117
-5.4853778e+117
-5.482777e+117
-5.4886492e+117
-5.4912621e+117
-5.480487e+117
-5.4784065e+117
-5.4842031e+117
-5.4863167e+117
-5.4966506e+117
-5.4903427e+117
-5.4925161e+117
-5.4989024e+117
-5.5013549e+117
-5.4949022e+117
-5.4975336e+117
-5.5040092e+117
-5.5228122e+117
-5.516308e+117
-5.5188689e+117
-5.5254167e+117
-5.5055128e+117
-5.5031583e+117
-5.5097082e+117
-5.5121706e+117
-5.5106749e+117
-5.5080169e+117
-5.5147305e+117
-5.5173733e+117
-5.5241065e+117
-5.5214778e+117
-5.5280817e+117
-5.5307042e+117
-5.4071342e+117
-5.4067667e+117
-5.4024752e+117
-5.4027079e+117
-5.4070149e+117
-5.4149206e+117
-5.4107811e+117
-5.4110678e+117
-5.4151377e+117
-5.4153407e+117
-5.4111835e+117
-5.4307874e+117
-5.4269405e+117
-5.4276493e+117
-5.431777e+117
-5.4229871e+117
-5.4189601e+117
-5.4192521e+117
-5.4234351e+117
-5.4195924e+117
-5.4239911e+117
-5.432912e+117
-5.4284804e+117
-5.4344622e+117
-5.3513964e+117
-5.3374801e+117
-5.3342532e+117
-5.3534478e+117
-5.3667032e+117
-5.3693511e+117
-5.3752966e+117
-5.3746002e+117
-5.3683815e+117
-5.3653514e+117
-5.3872912e+117
-5.3815811e+117
-5.3810982e+117
-5.3870341e+117
-5.3926136e+117
-5.3926072e+117
-5.3977285e+117
-5.3978814e+117
-5.635206e+117
-5.6231948e+117
-5.6326495e+117
-5.6257696e+117
-5.6422776e+117
-5.6520124e+117
-5.6545259e+117
-5.6447843e+117
-5.6311695e+117
-5.6405125e+117
-5.6283801e+117
-5.6377288e+117
-5.6473209e+117
-5.6571424e+117
-5.6501312e+117
-5.6599935e+117
-5.5989078e+117
-5.6074173e+117
-5.610216e+117
-5.6017992e+117
-5.607337e+117
-5.6046052e+117
-5.6129813e+117
-5.6157629e+117
-5.6275893e+117
-5.6160206e+117
-5.6248318e+117
-5.6187894e+117
-5.6244303e+117
-5.63336e+117
-5.6215864e+117
-5.6304652e+117
-5.5989012e+117
-5.5877684e+117
-5.5963311e+117
-5.5903154e+117
-5.6050722e+117
-5.613978e+117
-5.6165401e+117
-5.6076325e+117
-5.6044808e+117
-5.5929854e+117
-5.6015277e+117
-5.5959046e+117
-5.610309e+117
-5.6192264e+117
-5.6131761e+117
-5.6220327e+117
-5.633972e+117
-5.6433592e+117
-5.6462199e+117
-5.6367677e+117
-5.6629741e+117
-5.6530619e+117
-5.6559748e+117
-5.665963e+117
-5.6396747e+117
-5.6426323e+117
-5.6491786e+117
-5.6521905e+117
-5.6690384e+117
-5.6620637e+117
-5.6721921e+117
-5.6589713e+117
-5.5780368e+117
-5.5855915e+117
-5.5878897e+117
-5.5804264e+117
-5.5826843e+117
-5.5850229e+117
-5.5900877e+117
-5.5924037e+117
-5.6036452e+117
-5.5934437e+117
-5.6014881e+117
-5.5956263e+117
-5.6001799e+117
-5.6083127e+117
-5.5977919e+117
-5.6058593e+117
-5.5733481e+117
-5.5656423e+117
-5.5545635e+117
-5.5631646e+117
-5.570928e+117
-5.5569906e+117
-5.5680073e+117
-5.575692e+117
-5.5780805e+117
-5.5396193e+117
-5.5465051e+117
-5.5489569e+117
-5.6110321e+117
-5.6097827e+117
-5.6182749e+117
-5.6205616e+117
-5.6119809e+117
-5.614246e+117
-5.622904e+117
-5.6167716e+117
-5.6254828e+117
-5.6385315e+117
-5.6270382e+117
-5.6360487e+117
-5.6294145e+117
-5.6344569e+117
-5.643695e+117
-5.6318166e+117
-5.64101e+117
-5.6650144e+117
-5.6752278e+117
-5.6779774e+117
-5.667735e+117
-5.6454127e+117
-5.6550461e+117
-5.6576999e+117
-5.6479777e+117
-5.6505141e+117
-5.6602937e+117
-5.6532508e+117
-5.663059e+117
-5.6731382e+117
-5.67033e+117
-5.6805686e+117
-5.6834372e+117
-5.6195171e+117
-5.6282546e+117
-5.6372574e+117
-5.6465193e+117
-5.6560953e+117
-5.6659168e+117
-5.6863446e+117
-5.6760142e+117
-5.5662686e+117
-5.5563033e+117
-5.5637162e+117
-5.5588758e+117
-5.5714498e+117
-5.5794493e+117
-5.5819668e+117
-5.573961e+117
-5.5643243e+117
-5.5716914e+117
-5.561521e+117
-5.5688964e+117
-5.576613e+117
-5.5846519e+117
-5.5794531e+117
-5.5875327e+117
-5.5630398e+117
-5.555448e+117
-5.5440422e+117
-5.5525101e+117
-5.5601776e+117
-5.5468914e+117
-5.560809e+117
-5.5522126e+117
-5.5496092e+117
-5.5581172e+117
-5.5657945e+117
-5.5684529e+117
-5.541602e+117
-5.5347311e+117
-5.5373494e+117
-5.5442318e+117
-5.5319949e+117
-5.5293866e+117
-5.5361684e+117
-5.5388479e+117
-5.5336134e+117
-5.5418372e+117
-5.5493715e+117
-5.5519284e+117
-5.5444143e+117
-5.5360563e+117
-5.5386146e+117
-5.5469582e+117
-5.5545697e+117
-5.549787e+117
-5.5413473e+117
-5.5573565e+117
-5.5308247e+117
-5.524147e+117
-5.5267882e+117
-5.5335389e+117
-5.5216958e+117
-5.5195305e+117
-5.5260047e+117
-5.528283e+117
-5.5671935e+117
-5.5746606e+117
-5.5775888e+117
-5.5700594e+117
-5.5728553e+117
-5.5755363e+117
-5.5804205e+117
-5.5831368e+117
-5.5905646e+117
-5.5935006e+117
-5.5824775e+117
-5.5854072e+117
-5.5909989e+117
-5.5882693e+117
-5.5963588e+117
-5.5990723e+117
-5.769684e+117
-5.7840918e+117
-5.7875845e+117
-5.773223e+117
-5.7802519e+117
-5.7766737e+117
-5.7910629e+117
-5.7947604e+117
-5.8196188e+117
-5.7998647e+117
-5.8160913e+117
-5.8033679e+117
-5.8107625e+117
-5.8272455e+117
-5.8069602e+117
-5.8233769e+117
-5.7737677e+117
-5.7564424e+117
-5.7705611e+117
-5.7595338e+117
-5.7861191e+117
-5.8020657e+117
-5.8054022e+117
-5.7893828e+117
-5.7804999e+117
-5.7626547e+117
-5.7769258e+117
-5.7661012e+117
-5.7927173e+117
-5.8088804e+117
-5.7962855e+117
-5.8124789e+117
-5.8426533e+117
-5.8198062e+117
-5.8390839e+117
-5.8232655e+117
-5.8595803e+117
-5.8632251e+117
-5.8304713e+117
-5.8500176e+117
-5.8268042e+117
-5.8462782e+117
-5.8668963e+117
-5.870745e+117
-5.834157e+117
-5.8537824e+117
-5.8574986e+117
-5.8377792e+117
-5.878405e+117
-5.8746237e+117
-5.8415949e+117
-5.8455341e+117
-5.8613891e+117
-5.8653821e+117
-5.8863588e+117
-5.8823151e+117
-5.8492408e+117
-5.8691676e+117
-5.8724387e+117
-5.8524696e+117
-5.8584349e+117
-5.855432e+117
-5.8753417e+117
-5.878391e+117
-5.8901829e+117
-5.8934055e+117
-5.8995083e+117
-5.8963777e+117
-5.7953123e+117
-5.8100317e+117
-5.8127386e+117
-5.7980621e+117
-5.8031949e+117
-5.800601e+117
-5.8152526e+117
-5.8178898e+117
-5.8454541e+117
-5.8261807e+117
-5.8428108e+117
-5.8288437e+117
-5.8341281e+117
-5.8509214e+117
-5.8314315e+117
-5.8481776e+117
-5.8013651e+117
-5.7836432e+117
-5.7982634e+117
-5.7866954e+117
-5.8143554e+117
-5.8308715e+117
-5.833995e+117
-5.81745e+117
-5.8071642e+117
-5.7895774e+117
-5.8041938e+117
-5.7924402e+117
-5.8203809e+117
-5.837013e+117
-5.8233399e+117
-5.8399785e+117
-5.8612902e+117
-5.8813379e+117
-5.8841589e+117
-5.8640088e+117
-5.9055439e+117
-5.9026238e+117
-5.8667777e+117
-5.8695737e+117
-5.8870048e+117
-5.8898495e+117
-5.9113576e+117
-5.90844e+117
-5.7460286e+117
-5.7301462e+117
-5.7429531e+117
-5.7331849e+117
-5.7559245e+117
-5.7692686e+117
-5.7722645e+117
-5.7589392e+117
-5.7518716e+117
-5.7361131e+117
-5.7489325e+117
-5.7391038e+117
-5.7618783e+117
-5.775216e+117
-5.764699e+117
-5.7779887e+117
-5.685635e+117
-5.6961846e+117
-5.6989452e+117
-5.6883634e+117
-5.691059e+117
-5.7017723e+117
-5.704782e+117
-5.6940067e+117
-5.7069657e+117
-5.7180396e+117
-5.7209636e+117
-5.7097985e+117
-5.7126811e+117
-5.7238902e+117
-5.7269057e+117
-5.7157201e+117
-5.696981e+117
-5.7078097e+117
-5.7105394e+117
-5.6997603e+117
-5.7187141e+117
-5.7297877e+117
-5.7323352e+117
-5.7213169e+117
-5.7418228e+117
-5.7544641e+117
-5.7570738e+117
-5.7443876e+117
-5.7494814e+117
-5.7469185e+117
-5.759642e+117
-5.7622106e+117
-5.7808184e+117
-5.7835357e+117
-5.7673881e+117
-5.7700473e+117
-5.7752076e+117
-5.7726237e+117
-5.7861228e+117
-5.7886988e+117
-5.7201643e+117
-5.7048894e+117
-5.7171974e+117
-5.707818e+117
-5.7296838e+117
-5.7425499e+117
-5.7455211e+117
-5.732619e+117
-5.71375e+117
-5.7261614e+117
-5.7106373e+117
-5.722984e+117
-5.7355581e+117
-5.7486051e+117
-5.7388296e+117
-5.7519566e+117
-5.6731636e+117
-5.6835817e+117
-5.6867313e+117
-5.6762357e+117
-5.679374e+117
-5.6899193e+117
-5.693135e+117
-5.6825692e+117
-5.7083929e+117
-5.6942208e+117
-5.7051303e+117
-5.6974277e+117
-5.7149438e+117
-5.7006579e+117
-5.711673e+117
-5.7038989e+117
-5.6748255e+117
-5.6619919e+117
-5.6721592e+117
-5.6645691e+117
-5.6825588e+117
-5.6932203e+117
-5.6960669e+117
-5.6853039e+117
-5.6805085e+117
-5.6672344e+117
-5.6775587e+117
-5.6701401e+117
-5.688082e+117
-5.6988915e+117
-5.6910883e+117
-5.7019398e+117
-5.7170334e+117
-5.7295129e+117
-5.7329272e+117
-5.7203492e+117
-5.7236781e+117
-5.7363055e+117
-5.7269974e+117
-5.7396915e+117
-5.7554772e+117
-5.7589784e+117
-5.7422839e+117
-5.7457314e+117
-5.7526067e+117
-5.7491432e+117
-5.7624452e+117
-5.7659445e+117
-3.1581353e+117
-3.2697891e+117
-3.2671342e+117
-3.1556013e+117
-3.3756657e+117
-3.3785788e+117
-3.4864855e+117
-3.4832324e+117
-3.5919387e+117
-3.5951959e+117
-3.7039594e+117
-3.7006631e+117
-3.8138359e+117
-3.810143e+117
-3.9202923e+117
-3.9242778e+117
-3.6990393e+117
-3.5909811e+117
-3.5868009e+117
-3.6953434e+117
-5.7106621e+117
-5.7102302e+117
-5.7104743e+117
-5.5923383e+117
-5.5922008e+117
-5.5920581e+117
-5.8150059e+117
-5.8150761e+117
-5.9038471e+117
-5.9037352e+117
-6.170327e+117
-6.0907471e+117
-6.1551803e+117
-6.0368717e+117
-6.0905171e+117
-6.1518392e+117
-6.1611992e+117
-5.9773837e+117
-6.1864919e+117
-6.1684735e+117
-6.2197894e+117
-6.1938516e+117
-6.2266544e+117
-6.170878e+117
-6.1990806e+117
-6.2291871e+117
-6.2033213e+117
-6.2383272e+117
-6.237059e+117
-6.2376649e+117
-6.2102835e+117
-6.2271289e+117
-6.2256901e+117
-6.2273524e+117
-6.2400003e+117
-6.2312342e+117
-6.1972614e+117
-6.2051985e+117
-6.185458e+117
-6.186499e+117
-6.1239428e+117
-6.1443251e+117
-6.1389546e+117
-6.1748263e+117
-6.1400759e+117
-6.1442779e+117
-6.1854574e+117
-6.1139447e+117
-6.1102459e+117
-6.1087659e+117
-6.1352381e+117
-6.1379331e+117
-6.2237798e+117
-6.2093534e+117
-6.1942401e+117
-6.1744518e+117
-6.1667772e+117
-6.1325674e+117
-6.1097039e+117
-6.1324495e+117
-6.1086955e+117
-6.2005199e+117
-6.1983819e+117
-6.2016576e+117
-6.1397876e+117
-6.0613111e+117
-5.5036792e+117
-6.1052044e+117
-6.1395527e+117
-6.3501161e+117
-6.1573908e+117
-5.5060464e+117
-6.0990397e+117
-6.2002007e+117
-6.0970323e+117
-6.3101304e+117
-6.5822258e+117
-6.2152154e+117
-5.6122176e+117
-6.4262862e+117
-6.1362456e+117
-6.0935447e+117
-6.138262e+117
-6.2187086e+117
-6.1741605e+117
-6.2056024e+117
-6.0874315e+117
-6.0972967e+117
-6.0920809e+117
-6.2344762e+117
-6.0979894e+117
-6.0708889e+117
-6.0787572e+117
-6.4804994e+117
-6.4123979e+117
-6.2434132e+117
-6.1677279e+117
-4.9176372e+117
-4.5358831e+117
-2.6557279e+117
-1.2145436e+117
-6.1944774e+117
-6.0246201e+117
-6.16986e+117
-5.9731918e+117
-6.1306982e+117
-6.1120143e+117
-6.0791143e+117
-5.9903102e+117
-6.1532855e+117
-6.142785e+117
-6.1198256e+117
-6.1264452e+117
-6.114908e+117
-6.1337756e+117
-5.8637752e+117
-5.8878352e+117
-5.7936564e+117
-5.7540937e+117
-5.7355353e+117
-5.8713481e+117
-6.1581021e+117
-6.1227966e+117
-6.1152045e+117
-6.1475878e+117
-6.1802461e+117
-6.1612488e+117
-6.1673597e+117
-6.18481e+117
-5.7054979e+117
-5.6959851e+117
-6.1123265e+117
-6.1475378e+117
-7.9032505e+117
-6.6386536e+117
-7.474242e+117
-2.6193219e+117
-5.5643035e+117
-7.8739527e+117
-6.7117189e+117
-6.7772525e+117
-1.3430698e+118
-6.8987811e+117
-5.3447705e+117
-5.7336312e+117
-6.5937942e+117
-6.5724391e+117
-6.9818606e+117
-7.5718526e+117
-7.776065e+117
-5.5841298e+117
-6.0161064e+117
-6.0794708e+117
-6.0807856e+117
-6.0547176e+117
-6.0034743e+117
-6.0348063e+117
-6.036686e+117
-6.0290515e+117
-6.043106e+117
-6.0363981e+117
-6.0230722e+117
-5.7676285e+117
-6.2597187e+117
-6.1067887e+117
-6.9100648e+117
-6.0542285e+117
-6.0204041e+117
-6.0463124e+117
-6.1836081e+117
-6.4891428e+117
-5.8797396e+117
-5.8218889e+117
-6.2206573e+117
-6.2366714e+117
-6.0462688e+117
-6.0649901e+117
-6.0899871e+117
-6.0731617e+117
-6.0714896e+117
-6.0775795e+117
-6.0529856e+117
-6.0372192e+117
-6.0938524e+117
-6.0826554e+117
-6.0837328e+117
-6.0458846e+117
-6.0521107e+117
-6.0490349e+117
-6.0826409e+117
-1.3521069e+118
-1.2197825e+118
-6.187678e+117
-4.6205633e+117
-4.3617302e+117
-4.5407799e+117
-4.5511832e+117
-4.6682765e+117
-4.676833e+117
-4.6606805e+117
-4.5361195e+117
-4.4125209e+117
-4.2926854e+117
-4.1111006e+117
-4.2795338e+117
-4.3980217e+117
-4.5225112e+117
-4.648766e+117
-4.3880025e+117
-4.2729892e+117
-4.1604381e+117
-4.0482181e+117
-3.8776653e+117
-4.0389946e+117
-4.1501416e+117
-4.261578e+117
-4.3758907e+117
-4.49834e+117
-4.5096953e+117
-4.637171e+117
-4.7754304e+117
-4.6286911e+117
-4.7713261e+117
-4.9264176e+117
-4.7718459e+117
-4.9333351e+117
-4.62342e+117
-4.4898312e+117
-4.3666637e+117
-3.6518552e+117
-3.9286298e+117
-3.8181173e+117
-3.8132114e+117
-3.9221581e+117
-4.028474e+117
-4.0362456e+117
-4.1427123e+117
-4.1349942e+117
-4.2519646e+117
-4.2439569e+117
-4.3580986e+117
-4.4817718e+117
-4.6185705e+117
-4.7732313e+117
-4.941105e+117
-3.428167e+117
-3.5942565e+117
-3.7047001e+117
-3.7014375e+117
-3.5915691e+117
-3.9183291e+117
-3.8117481e+117
-3.8075899e+117
-3.9128852e+117
-4.0187409e+117
-4.0245763e+117
-4.1296895e+117
-4.1247029e+117
-4.3523303e+117
-4.2377586e+117
-4.2331528e+117
-4.3478033e+117
-4.7759773e+117
-4.9513773e+117
-4.7798927e+117
-4.9606802e+117
-4.9696965e+117
-4.1219023e+117
-4.0163853e+117
-3.9105324e+117
-3.5902594e+117
-3.6975545e+117
-3.6951542e+117
-3.5883582e+117
-3.8045199e+117
-3.8011539e+117
-3.9061154e+117
-4.0116392e+117
-4.1177087e+117
-4.9810313e+117
-3.9046903e+117
-3.7988558e+117
-3.7962047e+117
-3.9012401e+117
-5.4025954e+117
-5.2408144e+117
-5.7132064e+117
-5.7023827e+117
-5.709243e+117
-5.7341791e+117
-5.8303834e+117
-5.8428189e+117
-5.8235495e+117
-5.7791192e+117
-5.8434902e+117
-5.9186393e+117
-5.9163555e+117
-5.9150434e+117
-5.9192484e+117
-5.6936889e+117
-5.7097272e+117
-5.6317419e+117
-5.5514683e+117
-5.4154669e+117
-5.5266372e+117
-5.4003146e+117
-5.4949283e+117
-5.5145562e+117
-5.574045e+117
-5.4030558e+117
-5.4243764e+117
-4.8086399e+117
-4.9343891e+117
-4.9486654e+117
-4.9420906e+117
-4.8153532e+117
-4.8183896e+117
-4.804308e+117
-4.9337121e+117
-5.0569359e+117
-5.0534546e+117
-5.0578851e+117
-5.2030618e+117
-5.1844892e+117
-5.1928082e+117
-5.0682706e+117
-5.0761866e+117
-5.1758048e+117
-5.1841478e+117
-5.3296856e+117
-5.3029078e+117
-5.3154446e+117
-5.2902416e+117
-5.293497e+117
-5.2838028e+117
-5.3073187e+117
-5.4311956e+117
-5.4355112e+117
-5.4547348e+117
-5.5635177e+117
-5.6951791e+117
-5.5844294e+117
-5.5702469e+117
-5.5580394e+117
-5.5674973e+117
-4.8007927e+117
-4.9281538e+117
-4.9262308e+117
-4.7955773e+117
-5.060048e+117
-5.0576661e+117
-5.1895777e+117
-5.1944082e+117
-5.4477963e+117
-5.3198207e+117
-5.330425e+117
-5.464603e+117
-4.7835645e+117
-4.7907575e+117
-4.9235132e+117
-4.9250722e+117
-4.9237793e+117
-5.0940514e+117
-5.0811884e+117
-5.0695561e+117
-5.0618289e+117
-5.2030602e+117
-5.2187238e+117
-5.436157e+117
-5.2649564e+117
-5.2877724e+117
-5.1077578e+117
-5.3100307e+117
-5.1227807e+117
-5.3528085e+117
-5.2864936e+117
-5.2221065e+117
-5.2315109e+117
-5.2390305e+117
-5.3682324e+117
-5.2989601e+117
-5.3087435e+117
-5.3806689e+117
-5.5394763e+117
-5.5242141e+117
-5.53921e+117
-5.5545874e+117
-5.5073136e+117
-5.4904104e+117
-5.5087309e+117
-5.5244594e+117
-5.4774457e+117
-5.457624e+117
-5.4740135e+117
-5.4931171e+117
-5.4935176e+117
-5.5085633e+117
-5.5239516e+117
-5.5089348e+117
-5.4311464e+117
-5.4466122e+117
-5.4616385e+117
-5.4457774e+117
-5.409916e+117
-5.3939499e+117
-5.4148815e+117
-5.4304356e+117
-5.4446713e+117
-5.4242894e+117
-5.4403961e+117
-5.4603337e+117
-5.4610408e+117
-5.4763525e+117
-5.4913238e+117
-5.4760676e+117
-5.5358321e+117
-5.5327596e+117
-5.5201705e+117
-5.5484305e+117
-5.559252e+117
-5.5692385e+117
-5.5535853e+117
-5.5435624e+117
-5.5900737e+117
-5.5742118e+117
-5.5842214e+117
-5.6003338e+117
-5.551013e+117
-5.5667892e+117
-5.5795169e+117
-5.563637e+117
-5.4746627e+117
-5.4929923e+117
-5.5021946e+117
-5.4829929e+117
-5.4726569e+117
-5.4565948e+117
-5.4662318e+117
-5.4835777e+117
-5.4987975e+117
-5.4872204e+117
-5.5026765e+117
-5.514798e+117
-5.5090872e+117
-5.5354585e+117
-5.5253991e+117
-5.5188614e+117
-5.5407012e+117
-5.5485904e+117
-5.5413298e+117
-5.5332964e+117
-5.5251081e+117
-5.5334193e+117
-5.5250583e+117
-5.5161775e+117
-5.5415642e+117
-5.5505231e+117
-5.5430341e+117
-5.5337562e+117
-5.5490877e+117
-5.556292e+117
-5.5651836e+117
-5.5577859e+117
-5.5659374e+117
-5.5738485e+117
-5.5820351e+117
-5.5739875e+117
-5.5503426e+117
-5.5578598e+117
-5.5661006e+117
-5.5582359e+117
-5.5814825e+117
-5.5891521e+117
-5.5973418e+117
-5.5896364e+117
-5.5652882e+117
-5.5727504e+117
-5.5812673e+117
-5.5736604e+117
-5.5806862e+117
-5.5716056e+117
-5.5638195e+117
-5.5727872e+117
-5.5557279e+117
-5.5483464e+117
-5.5561018e+117
-5.5637853e+117
-5.5719638e+117
-5.563779e+117
-5.5720041e+117
-5.5804132e+117
-5.5798802e+117
-5.5884447e+117
-5.5977144e+117
-5.5889855e+117
-5.5883445e+117
-5.5804064e+117
-5.589047e+117
-5.5971468e+117
-5.6050932e+117
-5.5969611e+117
-5.6051216e+117
-5.6132587e+117
-5.6218319e+117
-5.6136622e+117
-5.6308386e+117
-5.6226368e+117
-5.5967443e+117
-5.6056677e+117
-5.6145627e+117
-5.6055452e+117
-5.6155787e+117
-5.6238477e+117
-5.6289879e+117
-5.6206144e+117
-5.6052925e+117
-5.613293e+117
-5.6187546e+117
-5.610558e+117
-5.6315945e+117
-5.6393645e+117
-5.6446458e+117
-5.6367937e+117
-5.6208657e+117
-5.6284929e+117
-5.6341265e+117
-5.6264249e+117
-5.5941285e+117
-5.6020734e+117
-5.6083184e+117
-5.6003852e+117
-5.5806376e+117
-5.5886831e+117
-5.5958624e+117
-5.5877912e+117
-5.6095281e+117
-5.6170485e+117
-5.6233661e+117
-5.6157836e+117
-5.5962914e+117
-5.6039036e+117
-5.6108798e+117
-5.6033586e+117
-5.6525011e+117
-5.6471748e+117
-5.6553968e+117
-5.6607533e+117
-5.6419338e+117
-5.6362225e+117
-5.6443457e+117
-5.6501366e+117
-5.6620439e+117
-5.6588039e+117
-5.6529761e+117
-5.6678951e+117
-5.6640662e+117
-5.6694859e+117
-5.6786694e+117
-5.673212e+117
-5.6196724e+117
-5.6116145e+117
-5.6185766e+117
-5.6266247e+117
-5.6310992e+117
-5.6247428e+117
-5.6327956e+117
-5.6391959e+117
-5.6477592e+117
-5.6412988e+117
-5.6502719e+117
-5.6567915e+117
-5.6282225e+117
-5.6351259e+117
-5.6440498e+117
-5.6371736e+117
-5.5766056e+117
-5.5608466e+117
-5.6001948e+117
-5.5918867e+117
-5.6167429e+117
-5.6082595e+117
-5.5426813e+117
-5.6334808e+117
-5.6420394e+117
-5.6470012e+117
-5.6383029e+117
-5.6245642e+117
-5.6329811e+117
-5.6376063e+117
-5.629087e+117
-5.6454232e+117
-5.6408404e+117
-5.6487067e+117
-5.6533085e+117
-5.6578369e+117
-5.6499019e+117
-5.6549507e+117
-5.6629887e+117
-5.6711009e+117
-5.6658952e+117
-5.6795732e+117
-5.67431e+117
-5.6613299e+117
-5.6566071e+117
-5.6697053e+117
-5.664901e+117
-5.6736749e+117
-5.6785052e+117
-5.6877251e+117
-5.6828745e+117
-5.6831348e+117
-5.6924274e+117
-5.6978031e+117
-5.6884749e+117
-5.1367106e+117
-5.1519099e+117
-5.9807416e+117
-5.9780977e+117
-5.9838625e+117
-6.0990555e+117
-6.0307214e+117
-6.0852464e+117
-6.0270364e+117
-6.0694636e+117
-6.0361219e+117
-6.0690192e+117
-6.0795688e+117
-6.1062826e+117
-6.0922532e+117
-6.0828501e+117
-6.0793446e+117
-5.2828319e+117
-4.9925988e+117
-5.3111594e+117
-5.2575403e+117
-5.0120155e+117
-5.2434507e+117
-5.7289247e+117
-5.6844384e+117
-5.7118119e+117
-5.4485049e+117
-5.3649688e+117
-5.6938076e+117
-5.6832628e+117
-5.4065691e+117
-5.4365292e+117
-5.2785945e+117
-4.9816469e+117
-5.0327611e+117
-5.2853714e+117
-2.7259816e+117
-2.5076987e+117
-2.6531689e+117
-2.6384016e+117
-5.6471337e+117
-5.2695773e+117
-5.3034795e+117
-5.0602268e+117
-2.3464543e+117
-2.0088101e+117
-1.5414829e+117
-5.9216904e+117
-5.890359e+117
-5.8944898e+117
-1.8319529e+117
-2.3331221e+117
-2.3144374e+117
-2.1590739e+117
-5.1738172e+117
-5.2598873e+117
-5.0019828e+117
-5.5948642e+117
-5.884944e+117
-5.2132903e+117
-4.1540413e+117
-4.7704564e+117
-3.2959333e+117
-4.1733386e+117
-4.635985e+117
-2.3116822e+117
-3.4837582e+117
-4.0070673e+117
-4.7312575e+117
-4.3854817e+117
-3.8048228e+117
-4.7137697e+117
-4.6689373e+117
-4.2982609e+117
-4.3436859e+117
-4.7367551e+117
-4.3359723e+117
-4.3970664e+117
-4.8218828e+117
-3.5493884e+117
-3.1180307e+117
-2.2702898e+117
-2.724274e+117
-4.8053417e+117
-4.3209369e+117
-4.3721575e+117
-4.0747392e+117
-3.9803437e+117
-4.0485996e+117
-4.1524941e+117
-4.4265186e+117
-4.8134119e+117
-4.7517502e+117
-2.9208548e+117
-3.4644595e+117
-3.6158055e+117
-2.9110158e+117
-2.5177068e+117
-3.1845052e+117
-2.3243663e+117
-2.5490604e+117
-3.4004284e+117
-2.8465295e+117
-1.7525139e+117
-1.8553107e+117
-3.1387113e+117
-4.4505481e+117
-2.3706642e+117
-6.084113e+117
-6.0761569e+117
-6.0580389e+117
-6.0752056e+117
-6.0608272e+117
-6.0270086e+117
-5.9185543e+117
-6.0159745e+117
-5.9107863e+117
-6.0107339e+117
-6.0086364e+117
-5.9054106e+117
-5.9004743e+117
-6.0115687e+117
-6.0591748e+117
-6.0643707e+117
-6.077188e+117
-6.0904234e+117
-6.0170077e+117
-6.0990182e+117
-6.0451228e+117
-6.314638e+116
-1.0032989e+117
-1.2362472e+117
-3.7760968e+117
-4.6793934e+117
-3.3682221e+116
-2.0701744e+117
-5.7633464e+116
-5.6558537e+117
-5.6463695e+117
-5.7523e+117
-5.4702531e+117
-4.9567481e+117
-4.9531544e+117
-4.8255305e+117
-4.6966595e+117
-4.8283636e+117
-4.6990801e+117
-4.5696552e+117
-4.5672907e+117
-4.3750754e+117
-5.2182371e+117
-5.2116143e+117
-5.0824394e+117
-5.0875408e+117
-5.3498761e+117
-5.3414736e+117
-5.4804156e+117
-4.1247047e+117
-3.886703e+117
-5.7061306e+117
-5.7072719e+117
-5.7164618e+117
-5.695836e+117
-5.6864156e+117
-5.6472425e+117
-5.6485807e+117
-5.6361937e+117
-5.646653e+117
-5.6774299e+117
-5.6624105e+117
-5.6689979e+117
-5.6728993e+117
-5.6666822e+117
-5.6766881e+117
-5.6829342e+117
-5.7089698e+117
-5.6936451e+117
-5.7061848e+117
-5.687782e+117
-5.6998341e+117
-5.7085871e+117
-5.693814e+117
-5.6787864e+117
-5.6824991e+117
-5.689698e+117
-5.6578151e+117
-5.6612997e+117
-5.671529e+117
-5.668053e+117
-5.6260015e+117
-5.6309944e+117
-5.6422542e+117
-5.6487924e+117
-5.6363566e+117
-5.6526366e+117
-5.6466874e+117
-5.6567707e+117
-5.6627297e+117
-5.6512918e+117
-5.637737e+117
-5.6414752e+117
-5.6476528e+117
-5.6180989e+117
-5.6217285e+117
-5.6316283e+117
-5.6278554e+117
-5.6869081e+117
-5.6740217e+117
-5.6759643e+117
-5.6850797e+117
-5.6550699e+117
-5.6653037e+117
-5.6633284e+117
-5.6530993e+117
-5.6516118e+117
-5.6514056e+117
-5.6610379e+117
-5.6616824e+117
-5.6725969e+117
-5.6840719e+117
-5.6722779e+117
-5.6838577e+117
-5.6134776e+117
-5.6153984e+117
-5.6250624e+117
-5.6230607e+117
-5.6349154e+117
-5.6328789e+117
-5.6428367e+117
-5.6448844e+117
-5.6311927e+117
-5.6314359e+117
-5.6413199e+117
-5.6409003e+117
-5.6121104e+117
-5.6122217e+117
-5.6216807e+117
-5.6215245e+117
-5.7415738e+117
-5.7399664e+117
-5.7584985e+117
-5.7664295e+117
-5.7795198e+117
-5.7240432e+117
-5.7391338e+117
-5.7416374e+117
-5.7114401e+117
-5.731133e+117
-5.723383e+117
-5.7183103e+117
-5.7010851e+117
-5.7055785e+117
-5.7130567e+117
-5.7418771e+117
-5.7321994e+117
-5.7451083e+117
-5.739351e+117
-5.7259142e+117
-5.6956026e+117
-5.6958697e+117
-5.7078596e+117
-5.7074398e+117
-5.6966612e+117
-5.698337e+117
-5.7102606e+117
-5.7086332e+117
-5.7212433e+117
-5.7229153e+117
-5.7362654e+117
-5.734465e+117
-5.7335256e+117
-5.7203984e+117
-5.7198978e+117
-5.7329461e+117
-5.7773641e+117
-5.7781996e+117
-5.7950886e+117
-5.7939712e+117
-5.8021773e+117
-5.7840721e+117
-5.7802618e+117
-5.7984917e+117
-5.7486645e+117
-5.750854e+117
-5.7664251e+117
-5.7638005e+117
-5.7468666e+117
-5.7474918e+117
-5.7622953e+117
-5.7615737e+117
-5.7757499e+117
-5.7552302e+117
-5.7583735e+117
-5.7797645e+117
-5.7721162e+117
-5.7938414e+117
-5.7866404e+117
-5.7717532e+117
-5.7915059e+117
-5.7881671e+117
-5.8142132e+117
-5.8082812e+117
-5.8109666e+117
-5.7845981e+117
-5.8021885e+117
-5.8084868e+117
-5.8161046e+117
-5.819845e+117
-5.8293249e+117
-5.6493442e+117
-5.6406388e+117
-5.6316747e+117
-5.6405573e+117
-5.6171819e+117
-5.6331596e+117
-5.6263087e+117
-5.6240609e+117
-5.6428036e+117
-5.6359817e+117
-5.6524932e+117
-5.6456527e+117
-5.650092e+117
-5.6585928e+117
-5.6683647e+117
-5.6597901e+117
-5.598587e+117
-5.6058365e+117
-5.6150122e+117
-5.60797e+117
-5.5965654e+117
-5.5890239e+117
-5.5801421e+117
-5.5878248e+117
-5.6138807e+117
-5.6049113e+117
-5.5963523e+117
-5.6054395e+117
-5.6137733e+117
-5.6226313e+117
-5.6317501e+117
-5.6227902e+117
-5.6142402e+117
-5.6226802e+117
-5.6317568e+117
-5.6231748e+117
-5.631634e+117
-5.6402779e+117
-5.6481282e+117
-5.6394786e+117
-5.6589135e+117
-5.6494414e+117
-5.6572891e+117
-5.6668091e+117
-5.6316864e+117
-5.640854e+117
-5.6502183e+117
-5.6409207e+117
-5.649747e+117
-5.6584515e+117
-5.668005e+117
-5.65917e+117
-5.667916e+117
-5.6758478e+117
-5.6849852e+117
-5.6769148e+117
-5.6865098e+117
-5.6947281e+117
-5.7047687e+117
-5.696421e+117
-5.6677082e+117
-5.6774394e+117
-5.6872348e+117
-5.6774978e+117
-5.7051736e+117
-5.7222883e+117
-5.7337214e+117
-5.7138572e+117
-5.7251188e+117
-5.7135545e+117
-5.7045604e+117
-5.7157611e+117
-5.694795e+117
-5.7060358e+117
-5.6859973e+117
-5.6958444e+117
-5.7249367e+117
-5.7149089e+117
-5.7230415e+117
-5.7331545e+117
-5.7345146e+117
-5.7428063e+117
-5.7516814e+117
-5.7433073e+117
-5.6545787e+117
-5.6608766e+117
-5.6696459e+117
-5.67987e+117
-5.6633585e+117
-5.6729664e+117
-5.6808922e+117
-5.687755e+117
-5.6953158e+117
-5.6881713e+117
-5.6966321e+117
-5.7050835e+117
-5.6874767e+117
-5.6954398e+117
-5.7033552e+117
-5.7131217e+117
-5.6679172e+117
-5.6853358e+117
-5.6766217e+117
-5.6765384e+117
-5.7610637e+117
-5.7622882e+117
-5.7521852e+117
-5.7711816e+117
-5.7640005e+117
-5.7636818e+117
-5.7533638e+117
-5.7741618e+117
-5.7322592e+117
-5.7422485e+117
-5.7525664e+117
-5.7424838e+117
-5.7837589e+117
-5.7733252e+117
-5.7822789e+117
-5.7928515e+117
-5.7041979e+117
-5.6970922e+117
-5.7065577e+117
-5.713912e+117
-5.7247685e+117
-5.7171e+117
-5.7273894e+117
-5.7353595e+117
-5.7430533e+117
-5.7330507e+117
-5.7436481e+117
-5.7537117e+117
-5.7123802e+117
-5.7221496e+117
-5.7320248e+117
-5.722185e+117
-5.7943006e+117
-5.7846483e+117
-5.7944793e+117
-5.7743394e+117
-5.7839345e+117
-5.8047347e+117
-5.8032729e+117
-5.8137847e+117
-5.8230054e+117
-5.8243782e+117
-5.8336277e+117
-5.8138649e+117
-5.8145276e+117
-5.8236446e+117
-5.8237291e+117
-5.8340959e+117
-5.8433541e+117
-5.8431531e+117
-5.8524178e+117
-5.8328324e+117
-5.794385e+117
-5.8043443e+117
-5.803545e+117
-5.8135873e+117
-5.7365848e+117
-5.7459296e+117
-5.744596e+117
-5.7537616e+117
-5.763965e+117
-5.7552223e+117
-5.7655524e+117
-5.774965e+117
-5.7853345e+117
-5.7843446e+117
-5.7941303e+117
-5.7739162e+117
-5.7730265e+117
-5.7836768e+117
-5.7821611e+117
-5.7929664e+117
-5.8025299e+117
-5.8035371e+117
-5.8127407e+117
-5.7926977e+117
-5.7531365e+117
-5.7624355e+117
-5.7637728e+117
-5.7731517e+117
-5.6770602e+117
-5.6857695e+117
-5.6803001e+117
-5.6715051e+117
-5.7057637e+117
-5.7005987e+117
-5.7102277e+117
-5.7154026e+117
-5.6894932e+117
-5.6989173e+117
-5.7047385e+117
-5.6951325e+117
-5.6912376e+117
-5.6824596e+117
-5.6876585e+117
-5.6964506e+117
-5.6464653e+117
-5.6531873e+117
-5.6618721e+117
-5.6550998e+117
-5.6642551e+117
-5.671168e+117
-5.6807882e+117
-5.6738336e+117
-5.6840691e+117
-5.6778505e+117
-5.6874043e+117
-5.6934381e+117
-5.6596463e+117
-5.6747385e+117
-5.668432e+117
-5.6658605e+117
-5.6964102e+117
-5.7023851e+117
-5.7115172e+117
-5.7054936e+117
-5.6829708e+117
-5.6921549e+117
-5.6990402e+117
-5.689891e+117
-5.7152345e+117
-5.725332e+117
-5.7315349e+117
-5.7213408e+117
-5.7019645e+117
-5.7188998e+117
-5.71205e+117
-5.7088199e+117
-5.7138049e+117
-5.7080176e+117
-5.7230157e+117
-5.7172145e+117
-5.7271274e+117
-5.7329851e+117
-5.7433811e+117
-5.7374206e+117
-5.7543664e+117
-5.7490593e+117
-5.7385809e+117
-5.7439225e+117
-5.7192661e+117
-5.72456e+117
-5.7338443e+117
-5.7285427e+117
-5.7466391e+117
-5.7526749e+117
-5.7616899e+117
-5.7735483e+117
-5.755564e+117
-5.7672965e+117
-5.7774113e+117
-5.7859825e+117
-5.7921711e+117
-5.7836334e+117
-5.7977391e+117
-5.7791059e+117
-5.7891828e+117
-5.7839307e+117
-5.7940694e+117
-5.80276e+117
-5.7583648e+117
-5.7673466e+117
-5.7722501e+117
-5.7633928e+117
-5.7210877e+117
-5.7279651e+117
-5.7368364e+117
-5.7484494e+117
-5.7299333e+117
-5.7413781e+117
-5.7511354e+117
-5.7595481e+117
-5.7668504e+117
-5.7583934e+117
-5.7735138e+117
-5.7550593e+117
-5.7650604e+117
-5.7612872e+117
-5.7712916e+117
-5.7798027e+117
-5.7344078e+117
-5.7495755e+117
-5.7433626e+117
-5.7406042e+117
-5.7904468e+117
-5.7978159e+117
-5.8084069e+117
-5.8010922e+117
-5.7893295e+117
-5.7829838e+117
-5.7932503e+117
-5.7996556e+117
-5.7690068e+117
-5.7792125e+117
-5.7865676e+117
-5.7763351e+117
-5.8151138e+117
-5.8044853e+117
-5.8109663e+117
-5.8216827e+117
-5.7955683e+117
-5.8017033e+117
-5.8120236e+117
-5.8059119e+117
-5.8172725e+117
-5.8234004e+117
-5.8341696e+117
-5.8280174e+117
-5.8344118e+117
-5.8290867e+117
-5.8398943e+117
-5.8452314e+117
-5.8072694e+117
-5.8124178e+117
-5.8229149e+117
-5.8176545e+117
-5.8593456e+117
-5.8451961e+117
-5.8555543e+117
-5.8390422e+117
-5.8493987e+117
-5.8654615e+117
-5.8683976e+117
-5.87849e+117
-5.887694e+117
-5.8845767e+117
-5.8937284e+117
-5.8744529e+117
-5.8712007e+117
-5.8765753e+117
-5.8801509e+117
-5.8902163e+117
-5.8992929e+117
-5.8956315e+117
-5.9046717e+117
-5.8855508e+117
-5.8509089e+117
-5.8612674e+117
-5.8562576e+117
-5.8666093e+117
-5.8319216e+117
-5.8193218e+117
-5.8295499e+117
-5.8119358e+117
-5.8220094e+117
-5.839464e+117
-5.841014e+117
-5.8511799e+117
-5.8604806e+117
-5.8588287e+117
-5.8681408e+117
-5.8486045e+117
-5.8463929e+117
-5.8530053e+117
-5.8555631e+117
-5.8657647e+117
-5.8750602e+117
-5.8724009e+117
-5.8816432e+117
-5.8621647e+117
-5.8260542e+117
-5.8363888e+117
-5.8326369e+117
-5.8430004e+117
-5.692418e+117
-5.701262e+117
-5.706154e+117
-5.6972564e+117
-5.8173899e+117
-5.8279178e+117
-5.8328889e+117
-5.8443885e+117
-5.8394397e+117
-5.8502597e+117
-5.8552332e+117
-5.8542673e+117
-5.8493093e+117
-5.8601947e+117
-5.8650626e+117
-5.8902395e+117
-5.9005602e+117
-5.9104321e+117
-5.9152071e+117
-5.9053042e+117
-5.9010363e+117
-5.9056857e+117
-5.8854041e+117
-5.8957964e+117
-5.8806852e+117
-5.8910882e+117
-5.9199062e+117
-5.9289501e+117
-5.9099473e+117
-5.9245253e+117
-5.9335942e+117
-5.9145519e+117
-5.9240612e+117
-5.9340346e+117
-5.9192558e+117
-5.9292053e+117
-5.9382517e+117
-5.9430826e+117
-5.8817106e+117
-5.8663401e+117
-5.876835e+117
-5.8613435e+117
-5.8717449e+117
-5.8867826e+117
-5.8906752e+117
-5.9006778e+117
-5.895762e+117
-5.905795e+117
-5.9148852e+117
-5.9097442e+117
-5.8964935e+117
-5.8917306e+117
-5.9053957e+117
-5.9153924e+117
-5.9006652e+117
-5.910662e+117
-5.9197224e+117
-5.9244455e+117
-5.8712735e+117
-5.8817904e+117
-5.8761166e+117
-5.8865864e+117
-5.9437201e+117
-5.9388946e+117
-5.947858e+117
-5.9525664e+117
-5.9523477e+117
-5.948163e+117
-5.9568842e+117
-5.9610277e+117
-5.8122792e+117
-5.8221193e+117
-5.8313972e+117
-5.8215048e+117
-5.8406887e+117
-5.8310949e+117
-5.8395304e+117
-5.8487039e+117
-5.8036828e+117
-5.7838828e+117
-5.7957856e+117
-5.8219795e+117
-5.8123869e+117
-5.7925727e+117
-5.8159255e+117
-5.8064335e+117
-5.7883678e+117
-5.8217857e+117
-5.8291603e+117
-5.8323975e+117
-5.8429166e+117
-5.8509009e+117
-5.8586549e+117
-5.8413986e+117
-5.8611006e+117
-5.8518232e+117
-5.8686147e+117
-5.8526169e+117
-5.8615964e+117
-5.8707016e+117
-5.8614776e+117
-5.8795213e+117
-5.870399e+117
-5.8867153e+117
-5.8780002e+117
-5.8367249e+117
-5.8473386e+117
-5.8292492e+117
-5.8385508e+117
-5.8570698e+117
-5.8668288e+117
-5.8480832e+117
-5.8580012e+117
-5.8765925e+117
-5.8855827e+117
-5.8668831e+117
-5.8762718e+117
-5.8857439e+117
-5.894416e+117
-5.8943004e+117
-5.902715e+117
-5.9020849e+117
-5.9101792e+117
-5.9091974e+117
-5.9169956e+117
-5.9155882e+117
-5.923199e+117
-5.9216349e+117
-5.9290729e+117
-5.8840567e+117
-5.9016825e+117
-5.892714e+117
-5.8905147e+117
-5.9079359e+117
-5.8990884e+117
-5.9146542e+117
-5.9084915e+117
-5.86966e+117
-5.8875581e+117
-5.8784504e+117
-5.8772057e+117
-5.8949485e+117
-5.8859337e+117
-5.9019204e+117
-5.8946289e+117
-5.9273583e+117
-5.9346472e+117
-5.9328541e+117
-5.9400016e+117
-5.9380113e+117
-5.9450351e+117
-5.9430044e+117
-5.9498958e+117
-5.9132836e+117
-5.9301246e+117
-5.9216185e+117
-5.9079591e+117
-5.9249601e+117
-5.9163418e+117
-5.93646e+117
-5.9313639e+117
-5.9024459e+117
-5.919585e+117
-5.9109001e+117
-5.8965378e+117
-5.9138737e+117
-5.9050744e+117
-5.9260977e+117
-5.9204839e+117
-5.9515161e+117
-5.9467292e+117
-5.9679206e+117
-5.959681e+117
-5.9633442e+117
-5.9549599e+117
-5.9694112e+117
-5.9739238e+117
-5.9374742e+117
-5.9420818e+117
-5.9587617e+117
-5.9503306e+117
-5.9541845e+117
-5.9457365e+117
-5.964891e+117
-5.9603243e+117
-5.9282649e+117
-5.9329553e+117
-5.9449615e+117
-5.9365239e+117
-5.9496091e+117
-5.941204e+117
-5.955763e+117
-5.9511125e+117
-5.9234581e+117
-5.9183831e+117
-5.9351757e+117
-5.9267071e+117
-5.9401648e+117
-5.9317495e+117
-5.9463629e+117
-5.9414215e+117
-5.9561792e+117
-5.960726e+117
-5.9724414e+117
-5.9642718e+117
-5.9768192e+117
-5.9687141e+117
-5.9827081e+117
-5.9783676e+117
-5.9649608e+117
-5.9690857e+117
-5.9810154e+117
-5.9728938e+117
-5.9851056e+117
-5.9770022e+117
-5.9868838e+117
-5.9909988e+117
-5.9478715e+117
-5.9547456e+117
-5.952763e+117
-5.9596179e+117
-5.9574756e+117
-5.9643187e+117
-5.9621183e+117
-5.9689343e+117
-5.9666657e+117
-5.9734624e+117
-5.9712062e+117
-5.9779672e+117
-5.9756796e+117
-5.9823594e+117
-5.9801232e+117
-5.9867025e+117
-5.9845044e+117
-5.9910079e+117
-5.9887942e+117
-5.995247e+117
-5.9929447e+117
-5.999362e+117
-5.9970562e+117
-6.0034359e+117
-6.0011598e+117
-6.0074035e+117
-6.0051059e+117
-6.0112474e+117
-6.0088983e+117
-6.0149282e+117
-4.8688666e+117
-4.9404502e+117
-4.6639668e+117
-4.6952634e+117
-5.0940515e+117
-4.2545506e+117
-5.6619916e+117
-5.1271656e+117
-3.4876137e+117
-4.5532667e+117
-5.3495139e+117
-4.4907809e+117
-4.634791e+117
-4.3649017e+117
-4.7857097e+117
-4.8005751e+117
-4.4551415e+117
-4.947089e+117
-4.6813533e+117
-4.2622291e+117
-3.8634977e+117
-4.7374457e+117
-4.6537238e+117
-4.2600077e+117
-4.3820273e+117
-3.6423094e+117
-4.229645e+117
-2.1759797e+117
-1.6035239e+117
-2.2987688e+117
-8.1366999e+116
-2.7026996e+117
-3.4738512e+117
-2.503151e+117
-2.4563339e+117
-2.7535861e+117
-8.5410633e+116
-4.9326558e+117
-4.866527e+117
-5.139497e+117
-4.7301672e+117
-4.8593994e+117
-4.8941648e+117
-4.9161081e+117
-3.6582389e+117
-3.432918e+117
-3.2088185e+117
-5.7940009e+117
-4.8304215e+117
-4.7018551e+117
-4.9590723e+117
-4.961826e+117
-4.8326402e+117
-4.7036738e+117
-4.5753923e+117
-4.4490472e+117
-4.3231577e+117
-4.1371512e+117
-4.3241007e+117
-4.4500793e+117
-4.5765964e+117
-5.2224467e+117
-5.0903461e+117
-5.092718e+117
-5.2234646e+117
-3.8968681e+117
-3.6655034e+117
-3.0371638e+117
-5.5931715e+117
-3.6283537e+117
-3.2137135e+117
-3.4386038e+117
-5.6102785e+117
-5.6196094e+117
-5.6289907e+117
-5.637525e+117
-5.646555e+117
-5.6750411e+117
-5.6850221e+117
-5.6675503e+117
-5.6603297e+117
-5.6516755e+117
-5.747211e+117
-5.7619095e+117
-5.7775865e+117
-5.6964248e+117
-5.7080375e+117
-5.7204561e+117
-5.7333446e+117
-5.5742802e+117
-5.5730287e+117
-5.5834175e+117
-5.5820899e+117
-5.5929554e+117
-5.5913963e+117
-5.6024016e+117
-5.600719e+117
-5.5743565e+117
-5.5835484e+117
-5.6025791e+117
-5.5930672e+117
-5.5393601e+117
-5.5386028e+117
-5.5476138e+117
-5.5468598e+117
-5.5563116e+117
-5.5650717e+117
-5.5553644e+117
-5.5640198e+117
-5.5394761e+117
-5.5477762e+117
-5.5564168e+117
-5.5652087e+117
-5.5414002e+117
-5.5499262e+117
-5.5485198e+117
-5.5401165e+117
-5.5675808e+117
-5.5586479e+117
-5.5571492e+117
-5.5659992e+117
-5.5767749e+117
-5.5752015e+117
-5.5844936e+117
-5.5861393e+117
-5.5958302e+117
-5.6055869e+117
-5.5941135e+117
-5.6037395e+117
-5.4485017e+117
-5.4413372e+117
-5.4423258e+117
-5.4491621e+117
-5.4559446e+117
-5.4636091e+117
-5.4561557e+117
-5.4631053e+117
-5.4726799e+117
-5.4702992e+117
-5.4948157e+117
-5.4803206e+117
-5.4771573e+117
-5.484813e+117
-5.494339e+117
-5.49611e+117
-5.4886286e+117
-5.4974014e+117
-5.500704e+117
-5.5016422e+117
-5.5146254e+117
-5.507141e+117
-5.5079627e+117
-5.5147987e+117
-5.5227262e+117
-5.5224233e+117
-5.5308856e+117
-5.530333e+117
-5.5226558e+117
-5.5310405e+117
-5.505429e+117
-5.5141198e+117
-5.4410226e+117
-5.442623e+117
-5.449887e+117
-5.4481808e+117
-5.4575311e+117
-5.4654315e+117
-5.4635399e+117
-5.4557874e+117
-5.488198e+117
-5.4899913e+117
-5.4981954e+117
-5.4965848e+117
-5.4722596e+117
-5.4739869e+117
-5.4818754e+117
-5.4799842e+117
-5.4272935e+117
-5.4341197e+117
-5.4140729e+117
-5.4206345e+117
-5.4085508e+117
-5.416322e+117
-5.4071443e+117
-5.4224266e+117
-5.4288914e+117
-5.4354315e+117
-5.4154374e+117
-5.4203918e+117
-5.4217654e+117
-5.4141305e+117
-5.4284107e+117
-5.4354367e+117
-5.4338332e+117
-5.4269421e+117
-5.5140958e+117
-5.5152072e+117
-5.5065971e+117
-5.5052079e+117
-5.5239725e+117
-5.5327127e+117
-5.5315575e+117
-5.5229236e+117
-5.3810982e+117
-5.3753455e+117
-5.3646211e+117
-5.3696804e+117
-5.3635063e+117
-5.3733038e+117
-5.3786228e+117
-5.3841434e+117
-5.387129e+117
-5.3896512e+117
-5.3940316e+117
-5.3955311e+117
-5.4012229e+117
-5.4077675e+117
-5.4000773e+117
-5.3966362e+117
-5.3908688e+117
-5.3886404e+117
-5.3949008e+117
-5.4077903e+117
-5.4090612e+117
-5.4027237e+117
-5.401378e+117
-5.3658935e+117
-5.3697052e+117
-5.3745296e+117
-5.3711771e+117
-5.3851307e+117
-5.3796658e+117
-5.3767315e+117
-5.3825412e+117
-5.4160963e+117
-5.413015e+117
-5.4091932e+117
-5.4059051e+117
-5.4259128e+117
-5.4234798e+117
-5.4156683e+117
-5.4212419e+117
-5.4249163e+117
-5.4287556e+117
-5.4273413e+117
-5.4031345e+117
-5.3987005e+117
-5.3941148e+117
-5.3993465e+117
-5.4090975e+117
-5.4052907e+117
-5.4113569e+117
-5.4148768e+117
-5.4136836e+117
-5.4025092e+117
-5.3995597e+117
-5.3870412e+117
-5.4110118e+117
-5.4015014e+117
-5.4075289e+117
-5.3892775e+117
-5.3991937e+117
-5.3859841e+117
-5.3847929e+117
-5.3873356e+117
-5.3792831e+117
-5.3753657e+117
-5.3853549e+117
-5.3903847e+117
-5.3941626e+117
-5.3887814e+117
-5.3838224e+117
-5.4550615e+117
-5.4488745e+117
-5.440899e+117
-5.4475878e+117
-5.44286e+117
-5.4339973e+117
-5.4303959e+117
-5.4335483e+117
-5.4304311e+117
-5.4276376e+117
-5.43407e+117
-5.4420014e+117
-5.4380491e+117
-5.4310732e+117
-5.4350241e+117
-5.4214812e+117
-5.4280767e+117
-5.4243165e+117
-5.417825e+117
-5.4762092e+117
-5.4832484e+117
-5.4769198e+117
-5.4693659e+117
-5.4617576e+117
-5.468841e+117
-5.4620066e+117
-5.4546859e+117
-5.4564672e+117
-5.4491589e+117
-5.4452337e+117
-5.4525675e+117
-5.4641651e+117
-5.4602773e+117
-5.468196e+117
-5.4720104e+117
-5.4985925e+117
-5.5063938e+117
-5.5058772e+117
-5.4913763e+117
-5.5005628e+117
-5.4852397e+117
-5.4926735e+117
-5.5007841e+117
-5.5074438e+117
-5.5152468e+117
-5.5089317e+117
-5.4803555e+117
-5.4881055e+117
-5.4766398e+117
-5.4845124e+117
-5.4925204e+117
-5.4960843e+117
-5.5042018e+117
-5.50062e+117
-5.517116e+117
-5.5230657e+117
-5.5309972e+117
-5.5253011e+117
-5.5336909e+117
-5.5392715e+117
-5.547661e+117
-5.542122e+117
-5.5378736e+117
-5.5260143e+117
-5.529308e+117
-5.534686e+117
-5.5124466e+117
-5.5207794e+117
-5.5173313e+117
-5.5088971e+117
-5.5681319e+117
-5.5735379e+117
-5.5825018e+117
-5.5770927e+117
-5.556155e+117
-5.5647275e+117
-5.5592636e+117
-5.5506455e+117
-5.5464814e+117
-5.5520667e+117
-5.5551615e+117
-5.5434212e+117
-5.5640753e+117
-5.5731338e+117
-5.569898e+117
-5.5608985e+117
-5.5957792e+117
-5.6010856e+117
-5.5917299e+117
-5.5863486e+117
-5.5823896e+117
-5.591829e+117
-5.5885501e+117
-5.5791391e+117
-5.5982905e+117
-5.6016193e+117
-5.6116218e+117
-5.6081618e+117
-5.6106976e+117
-5.6206324e+117
-5.6156337e+117
-5.6055583e+117
-5.5235783e+117
-5.5122565e+117
-5.5203804e+117
-5.5153797e+117
-5.52977e+117
-5.5214395e+117
-5.5184167e+117
-5.5266409e+117
-5.4938337e+117
-5.4885428e+117
-5.4915101e+117
-5.4968051e+117
-5.4831236e+117
-5.4777017e+117
-5.4806648e+117
-5.4860609e+117
-5.4887745e+117
-5.4833234e+117
-5.4857339e+117
-5.4912669e+117
-5.4996229e+117
-5.4942188e+117
-5.4967912e+117
-5.5023099e+117
-5.4974807e+117
-5.4916238e+117
-5.4933826e+117
-5.499345e+117
-5.4897941e+117
-5.4878366e+117
-5.4934525e+117
-5.4955227e+117
-5.5048029e+117
-5.4991454e+117
-5.5013578e+117
-5.5071194e+117
-5.5053217e+117
-5.5033613e+117
-5.5092385e+117
-5.5113006e+117
-5.5242531e+117
-5.5326718e+117
-5.5269202e+117
-5.5355036e+117
-5.5293091e+117
-5.5379887e+117
-5.540439e+117
-5.5315904e+117
-5.4745503e+117
-5.4691919e+117
-5.4704277e+117
-5.4759003e+117
-5.4677618e+117
-5.4662074e+117
-5.4714069e+117
-5.4730209e+117
-5.482229e+117
-5.4767567e+117
-5.4785147e+117
-5.4840816e+117
-5.4815732e+117
-5.4800805e+117
-5.4857748e+117
-5.4873968e+117
-5.4673108e+117
-5.4622381e+117
-5.4644867e+117
-5.4696162e+117
-5.4595553e+117
-5.4566012e+117
-5.4617452e+117
-5.4646341e+117
-5.472289e+117
-5.4669822e+117
-5.4699346e+117
-5.4752448e+117
-5.4748462e+117
-5.4725248e+117
-5.4778578e+117
-5.48021e+117
-5.4987054e+117
-5.5069545e+117
-5.510552e+117
-5.5023401e+117
-5.5057715e+117
-5.513858e+117
-5.5172265e+117
-5.5091048e+117
-5.4853187e+117
-5.4815915e+117
-5.4870265e+117
-5.4906599e+117
-5.4794422e+117
-5.4738843e+117
-5.477782e+117
-5.4832547e+117
-5.4744081e+117
-5.47064e+117
-5.4760606e+117
-5.4798385e+117
-5.4666637e+117
-5.462558e+117
-5.4682341e+117
-5.4721936e+117
-5.4865758e+117
-5.4958127e+117
-5.4977423e+117
-5.4889638e+117
-5.5003691e+117
-5.4919403e+117
-5.503555e+117
-5.4952157e+117
-5.4699689e+117
-5.466081e+117
-5.4719823e+117
-5.4756502e+117
-5.4656278e+117
-5.4591412e+117
-5.4624076e+117
-5.468554e+117
-5.4496305e+117
-5.4458593e+117
-5.4524929e+117
-5.4559839e+117
-5.4600515e+117
-5.4539752e+117
-5.458399e+117
-5.4642444e+117
-5.4345255e+117
-5.4292695e+117
-5.4354337e+117
-5.4404263e+117
-5.424541e+117
-5.4206259e+117
-5.4268454e+117
-5.4308675e+117
-5.4393468e+117
-5.4330479e+117
-5.4370915e+117
-5.4433183e+117
-5.4463828e+117
-5.4416037e+117
-5.4477881e+117
-5.452383e+117
-5.4568476e+117
-5.4511189e+117
-5.4557663e+117
-5.4611593e+117
-5.4447361e+117
-5.4397057e+117
-5.4453409e+117
-5.4501754e+117
-5.4546014e+117
-5.4492938e+117
-5.4533366e+117
-5.4585366e+117
-5.4652318e+117
-5.4599201e+117
-5.4637383e+117
-5.4690129e+117
-5.415472e+117
-5.4117368e+117
-5.4165919e+117
-5.4203023e+117
-5.4060883e+117
-5.400136e+117
-5.4041901e+117
-5.4099313e+117
-5.413038e+117
-5.4084726e+117
-5.4142073e+117
-5.4186597e+117
-5.424116e+117
-5.4194048e+117
-5.4237322e+117
-5.4282846e+117
-5.3913032e+117
-5.3869947e+117
-5.3939908e+117
-5.3981595e+117
-5.3801167e+117
-5.3731005e+117
-5.370116e+117
-5.3649749e+117
-5.3771091e+117
-5.3847969e+117
-5.3865827e+117
-5.3814836e+117
-5.3894278e+117
-5.3942167e+117
-5.402414e+117
-5.3957388e+117
-5.4005213e+117
-5.4070781e+117
-5.4127018e+117
-5.4074903e+117
-5.401286e+117
-5.4044119e+117
-5.4008553e+117
-5.4112284e+117
-5.417876e+117
-5.3976943e+117
-5.3918007e+117
-5.3993147e+117
-5.4048987e+117
-5.411033e+117
-5.4056217e+117
-5.4120982e+117
-5.4173332e+117
-5.4230094e+117
-5.4168827e+117
-5.422897e+117
-5.4286641e+117
-5.4333268e+117
-5.4284137e+117
-5.4328566e+117
-5.437651e+117
-5.4234321e+117
-5.4179169e+117
-5.4230531e+117
-5.4284561e+117
-5.4340727e+117
-5.4284897e+117
-5.4337994e+117
-5.4392383e+117
-5.4427482e+117
-5.4385285e+117
-5.4438763e+117
-5.4479872e+117
-5.4338694e+117
-5.432549e+117
-5.4361892e+117
-5.4375852e+117
-5.4311064e+117
-5.4297911e+117
-5.4334526e+117
-5.4347812e+117
-5.4416425e+117
-5.4374208e+117
-5.4387672e+117
-5.4430015e+117
-5.444352e+117
-5.4401483e+117
-5.4415129e+117
-5.4456563e+117
-5.4286742e+117
-5.4267329e+117
-5.4301633e+117
-5.4322013e+117
-5.4238833e+117
-5.4203776e+117
-5.4240568e+117
-5.4274227e+117
-5.4320903e+117
-5.4279436e+117
-5.4312676e+117
-5.4353682e+117
-5.4360328e+117
-5.4339758e+117
-5.4380695e+117
-5.4401459e+117
-5.4514487e+117
-5.4463626e+117
-5.4494843e+117
-5.4544849e+117
-5.439832e+117
-5.4365913e+117
-5.4413374e+117
-5.4445194e+117
-5.4471643e+117
-5.4425099e+117
-5.4446119e+117
-5.4492774e+117
-5.4542281e+117
-5.452085e+117
-5.4571169e+117
-5.4592981e+117
-5.4610213e+117
-5.4559299e+117
-5.4573789e+117
-5.4625147e+117
-5.4475645e+117
-5.4461756e+117
-5.4509191e+117
-5.4523305e+117
-5.4501239e+117
-5.4488669e+117
-5.4536146e+117
-5.4548127e+117
-5.4598329e+117
-5.458666e+117
-5.463856e+117
-5.4650287e+117
-3.906231e+117
-4.0844414e+117
-4.0843204e+117
-4.206052e+117
-4.2073315e+117
-4.0863687e+117
-4.2052726e+117
-4.2035545e+117
-4.0808197e+117
-4.4528008e+117
-4.3289075e+117
-4.3307137e+117
-4.3275981e+117
-4.4538102e+117
-4.4541178e+117
-4.452272e+117
-4.3278172e+117
-4.4495447e+117
-4.3265126e+117
-4.5795797e+117
-4.5802053e+117
-4.5793386e+117
-4.5788878e+117
-4.7040937e+117
-4.7055412e+117
-4.7072718e+117
-4.7060659e+117
-4.5787724e+117
-4.7033646e+117
-4.6998371e+117
-4.5748389e+117
-4.8347987e+117
-4.8360715e+117
-4.831657e+117
-4.8337845e+117
-4.8308292e+117
-4.9596417e+117
-4.9635466e+117
-4.960504e+117
-4.9589058e+117
-4.9606316e+117
-4.8265372e+117
-4.8290524e+117
-4.9569087e+117
-4.9546491e+117
-5.0868619e+117
-5.0900129e+117
-5.0907111e+117
-5.087678e+117
-5.2147382e+117
-5.2145015e+117
-5.2149081e+117
-5.2146309e+117
-5.340367e+117
-5.3400205e+117
-5.3399252e+117
-5.4676141e+117
-5.466953e+117
-5.466336e+117
-3.6733527e+117
-3.8450983e+117
-3.8414773e+117
-3.9580141e+117
-3.9623906e+117
-4.0797324e+117
-4.1990678e+117
-4.1941147e+117
-4.0749433e+117
-4.3217676e+117
-4.3165593e+117
-4.4385914e+117
-4.4448237e+117
-4.5700427e+117
-4.69633e+117
-4.6917773e+117
-4.5637047e+117
-3.4454509e+117
-3.728906e+117
-3.6154762e+117
-3.6103941e+117
-3.7239079e+117
-3.8356587e+117
-3.8404923e+117
-3.9482504e+117
-3.9528567e+117
-4.0689092e+117
-4.0635901e+117
-4.1807656e+117
-4.1872571e+117
-4.3089479e+117
-4.4323881e+117
-4.4262699e+117
-4.3020037e+117
-5.4279227e+117
-5.436035e+117
-5.4170148e+117
-5.4263877e+117
-5.4382054e+117
-5.4292406e+117
-5.435761e+117
-5.419057e+117
-5.417713e+117
-5.4519815e+117
-5.4444055e+117
-5.4670247e+117
-5.4597919e+117
-5.4905213e+117
-5.4985499e+117
-5.4823115e+117
-5.4747967e+117
-5.4662704e+117
-5.4598863e+117
-5.4530614e+117
-5.4463181e+117
-5.4732217e+117
-5.4802346e+117
-5.4952089e+117
-5.487874e+117
-5.5629448e+117
-5.5547344e+117
-5.5464709e+117
-5.5390432e+117
-5.5245407e+117
-5.5314879e+117
-5.5183131e+117
-5.5456079e+117
-5.5537506e+117
-5.5298754e+117
-5.5374546e+117
-5.5120432e+117
-5.5161471e+117
-5.5099061e+117
-5.5225442e+117
-5.5102223e+117
-5.5128401e+117
-5.6272338e+117
-5.6369223e+117
-5.6084682e+117
-5.6176432e+117
-5.5991653e+117
-5.589739e+117
-5.5802919e+117
-5.5715555e+117
-5.579672e+117
-5.588767e+117
-5.5622306e+117
-5.5707252e+117
-5.6073919e+117
-5.5980819e+117
-5.6169087e+117
-5.6266008e+117
-5.1419945e+117
-5.1642737e+117
-5.1666035e+117
-5.1992386e+117
-5.2437743e+117
-5.2049164e+117
-5.1910098e+117
-5.2328335e+117
-5.212498e+117
-5.2567919e+117
-5.1808141e+117
-5.2388469e+117
-3.2199007e+117
-3.3841421e+117
-3.3873891e+117
-3.4994896e+117
-3.4953397e+117
-3.6045559e+117
-3.6092817e+117
-3.7196184e+117
-3.7148358e+117
-3.8261486e+117
-3.8312496e+117
-3.9378502e+117
-3.9433923e+117
-4.0517132e+117
-4.0578095e+117
-4.1742922e+117
-4.1676127e+117
-5.326839e+117
-5.3282891e+117
-5.3223071e+117
-5.3218491e+117
-5.3317631e+117
-5.3373194e+117
-5.3302136e+117
-5.338878e+117
-5.3437434e+117
-5.3482691e+117
-5.3428976e+117
-5.3486436e+117
-5.3534123e+117
-5.3538963e+117
-5.3597211e+117
-5.3580448e+117
-5.3604069e+117
-5.3598255e+117
-5.3498112e+117
-5.3545744e+117
-5.3501343e+117
-5.3448847e+117
-5.3594445e+117
-5.3644364e+117
-5.3605337e+117
-5.3550749e+117
-5.329436e+117
-5.3346401e+117
-5.3296747e+117
-5.324856e+117
-5.3402545e+117
-5.3452816e+117
-5.3397238e+117
-5.3346568e+117
-5.2849611e+117
-5.2701306e+117
-5.2926705e+117
-5.2880874e+117
-5.2979999e+117
-5.2859237e+117
-5.2931895e+117
-5.3008973e+117
-5.3047667e+117
-5.3097945e+117
-5.3153454e+117
-5.3106471e+117
-5.3160568e+117
-5.3211295e+117
-5.3199488e+117
-5.3241319e+117
-5.3139151e+117
-5.3178915e+117
-5.3027892e+117
-5.3083708e+117
-5.3168329e+117
-5.3181611e+117
-5.3145533e+117
-5.3150984e+117
-5.3047356e+117
-5.3179328e+117
-5.2647987e+117
-5.2818446e+117
-5.2580576e+117
-5.2858494e+117
-5.2712532e+117
-5.3014215e+117
-5.2914539e+117
-5.2974417e+117
-5.2994762e+117
-5.1989494e+117
-5.2753375e+117
-5.2527773e+117
-5.2445312e+117
-5.2786374e+117
-5.2682868e+117
-5.2396537e+117
-5.2706458e+117
-5.3004869e+117
-5.3162126e+117
-5.327573e+117
-5.3180391e+117
-5.3034264e+117
-5.2916583e+117
-5.2828822e+117
-5.3124352e+117
-5.3192272e+117
-5.3259544e+117
-5.3282098e+117
-5.3620338e+117
-5.34666e+117
-5.3554017e+117
-5.3688938e+117
-5.3489485e+117
-5.3473315e+117
-5.3375068e+117
-5.3407916e+117
-5.3345531e+117
-5.3585742e+117
-5.353186e+117
-5.3618071e+117
-5.3479317e+117
-5.3806266e+117
-5.3729203e+117
-5.3850757e+117
-5.3714262e+117
-5.3877425e+117
-5.3936161e+117
-5.3946142e+117
-5.3905726e+117
-5.3653048e+117
-5.3709528e+117
-5.3612095e+117
-5.3567311e+117
-5.3765772e+117
-5.3809356e+117
-5.3706619e+117
-5.3661226e+117
-5.287361e+117
-5.3210573e+117
-5.2739727e+117
-5.3032156e+117
-5.3424025e+117
-5.3040457e+117
-5.34184e+117
-5.2088038e+117
-5.2600223e+117
-5.3230475e+117
-5.3421789e+117
-5.3580261e+117
-5.3506778e+117
-5.3739207e+117
-5.4026038e+117
-5.384593e+117
-5.3715086e+117
-5.3949787e+117
-3.1633375e+117
-3.2750751e+117
-3.2727789e+117
-3.1613035e+117
-3.3811559e+117
-3.3839488e+117
-3.4922661e+117
-3.4886028e+117
-3.7119637e+117
-3.6018302e+117
-3.5975788e+117
-3.7070594e+117
-3.8175739e+117
-3.8228294e+117
-3.9283865e+117
-3.933076e+117
-5.2142615e+117
-5.2186884e+117
-5.2682558e+117
-5.2740018e+117
-5.2923042e+117
-5.2252705e+117
-5.2857526e+117
-5.2832065e+117
-5.2282356e+117
-5.2852229e+117
-5.222773e+117
-5.2212895e+117
-5.2803942e+117
-5.2775347e+117
-5.2532876e+117
-5.2405757e+117
-5.2413508e+117
-5.2434793e+117
-5.2476388e+117
-5.2567344e+117
-5.2390717e+117
-5.2436021e+117
-5.243664e+117
-5.2422353e+117
-5.2498182e+117
-5.2827197e+117
-5.2708956e+117
-5.2365399e+117
-5.2698878e+117
-5.2828414e+117
-5.2480372e+117
-5.254147e+117
-5.2513088e+117
-5.2456355e+117
-5.246027e+117
-5.2482437e+117
-5.2592711e+117
-5.2484261e+117
-5.2459622e+117
-5.2583064e+117
-5.2523819e+117
-5.2558861e+117
-5.2648501e+117
-5.2497448e+117
-5.2499515e+117
-5.2618572e+117
-5.2551966e+117
-5.2519347e+117
-5.2548181e+117
-5.2517949e+117
-5.2564539e+117
-5.256448e+117
-5.259493e+117
-5.2644788e+117
-5.3056246e+117
-5.2899046e+117
-5.2702935e+117
-5.3052255e+117
-5.2987989e+117
-5.2911774e+117
-5.2887929e+117
-5.2910274e+117
-5.2956571e+117
-5.2970306e+117
-5.2952382e+117
-5.297627e+117
-5.2954686e+117
-5.3004054e+117
-5.2995601e+117
-5.3031215e+117
-5.3065303e+117
-5.3059158e+117
-5.3859391e+117
-5.3817384e+117
-5.3854254e+117
-5.3898361e+117
-5.377084e+117
-5.3716975e+117
-5.375055e+117
-5.3805842e+117
-5.3818113e+117
-5.3783675e+117
-5.3840433e+117
-5.3875578e+117
-5.392703e+117
-5.389053e+117
-5.3936478e+117
-5.3974372e+117
-5.3651291e+117
-5.3574296e+117
-5.3611155e+117
-5.3685583e+117
-5.3382242e+117
-5.3265606e+117
-5.3239756e+117
-5.3441368e+117
-5.3334126e+117
-5.3532986e+117
-5.349106e+117
-5.352757e+117
-5.3489521e+117
-5.3569372e+117
-5.3604945e+117
-5.3718726e+117
-5.3645003e+117
-5.368115e+117
-5.3753307e+117
-5.3692632e+117
-5.365302e+117
-5.3652062e+117
-5.3717192e+117
-5.3754706e+117
-5.3640965e+117
-5.3567257e+117
-5.3609289e+117
-5.3679094e+117
-5.3752667e+117
-5.3716433e+117
-5.378829e+117
-5.3824004e+117
-5.3860243e+117
-5.3788852e+117
-5.3827186e+117
-5.3898474e+117
-5.3963161e+117
-5.3926365e+117
-5.3986477e+117
-5.4023232e+117
-5.3911481e+117
-5.3852857e+117
-5.3889449e+117
-5.3948725e+117
-5.4012537e+117
-5.3963955e+117
-5.4002202e+117
-5.4050933e+117
-5.4089693e+117
-5.4040973e+117
-5.4078992e+117
-5.4127707e+117
-5.3684877e+117
-5.3658294e+117
-5.3697511e+117
-5.3728413e+117
-5.3581606e+117
-5.3614163e+117
-5.3660218e+117
-5.3623836e+117
-5.377294e+117
-5.3737358e+117
-5.3777893e+117
-5.3817105e+117
-5.3695663e+117
-5.3646654e+117
-5.3681862e+117
-5.3733522e+117
-5.344351e+117
-5.3471375e+117
-5.3551159e+117
-5.3521166e+117
-5.326856e+117
-5.328828e+117
-5.3379571e+117
-5.3356594e+117
-5.3580089e+117
-5.3499007e+117
-5.3535082e+117
-5.3614978e+117
-5.3403516e+117
-5.3308144e+117
-5.3235635e+117
-5.3198761e+117
-5.3445051e+117
-5.3338737e+117
-5.3245588e+117
-5.3346361e+117
-5.3318009e+117
-5.3246724e+117
-5.3030538e+117
-5.3233926e+117
-5.3040833e+117
-5.2994583e+117
-5.3001381e+117
-5.297708e+117
-5.3108912e+117
-5.3226139e+117
-5.3375063e+117
-5.3138576e+117
-5.318471e+117
-5.3337014e+117
-5.3294579e+117
-5.3347876e+117
-5.3334116e+117
-5.3406333e+117
-5.3415196e+117
-5.3497899e+117
-5.3492373e+117
-5.348273e+117
-5.3437224e+117
-5.3461339e+117
-5.3406447e+117
-5.3442892e+117
-5.3290904e+117
-5.3416642e+117
-5.3323986e+117
-5.3395779e+117
-5.3275354e+117
-5.3394134e+117
-5.3271168e+117
-5.3509906e+117
-5.3527193e+117
-5.3539753e+117
-5.3578115e+117
-5.3554593e+117
-5.3522144e+117
-5.3544281e+117
-5.3581147e+117
-5.3610906e+117
-5.363499e+117
-5.3604142e+117
-5.3565176e+117
-5.341648e+117
-5.3440409e+117
-5.3543828e+117
-5.3560883e+117
-5.3373719e+117
-5.3502964e+117
-5.3522544e+117
-5.3392455e+117
-5.3731057e+117
-5.3686778e+117
-5.376692e+117
-5.3673973e+117
-5.3721159e+117
-5.3760075e+117
-5.3705452e+117
-5.3654431e+117
-5.3636706e+117
-5.3687715e+117
-5.3730638e+117
-5.3745777e+117
-5.3336146e+117
-5.3356382e+117
-5.3467408e+117
-5.3485289e+117
-5.3459026e+117
-5.3333421e+117
-5.3454717e+117
-5.3330959e+117
-5.3580497e+117
-5.3621945e+117
-5.3657015e+117
-5.3675089e+117
-5.3636823e+117
-5.3589031e+117
-5.3670775e+117
-5.3619284e+117
-5.371349e+117
-5.3602029e+117
-5.3652492e+117
-5.369511e+117
-5.3754504e+117
-5.3809398e+117
-5.3773991e+117
-5.3830205e+117
-5.378498e+117
-5.3710449e+117
-5.375931e+117
-5.373194e+117
-5.3835257e+117
-5.3806888e+117
-5.3853346e+117
-5.3884251e+117
-5.3883864e+117
-5.3861711e+117
-5.3912012e+117
-5.3934981e+117
-5.3806149e+117
-5.3791383e+117
-5.3847905e+117
-5.3862251e+117
-5.3915085e+117
-5.3901567e+117
-5.3952554e+117
-5.3964824e+117
-5.3930778e+117
-5.392408e+117
-5.3970942e+117
-5.397868e+117
-5.3873806e+117
-5.3819179e+117
-5.3825132e+117
-5.3879595e+117
-5.3983209e+117
-5.3959663e+117
-5.4004307e+117
-5.4028159e+117
-5.3939115e+117
-5.3897652e+117
-5.3930923e+117
-5.3974569e+117
-5.401769e+117
-5.3978716e+117
-5.4015983e+117
-5.4055941e+117
-5.4086888e+117
-5.4046498e+117
-5.4070467e+117
-5.411036e+117
-5.4167012e+117
-5.4131114e+117
-5.4168562e+117
-5.4203308e+117
-5.4093894e+117
-5.4055565e+117
-5.4094349e+117
-5.4132e+117
-5.4147909e+117
-5.4125226e+117
-5.4162259e+117
-5.4183442e+117
-5.4232682e+117
-5.4198197e+117
-5.4218104e+117
-5.4251869e+117
-5.426252e+117
-5.4229194e+117
-5.424186e+117
-5.4275145e+117
-5.4195802e+117
-5.4161968e+117
-5.4174687e+117
-5.4207926e+117
-5.4189936e+117
-5.4183736e+117
-5.4218212e+117
-5.4227315e+117
-5.4289125e+117
-5.42539e+117
-5.4264582e+117
-5.4301162e+117
-5.41266e+117
-5.4087471e+117
-5.4098838e+117
-5.4138445e+117
-5.4012069e+117
-5.4000566e+117
-5.40454e+117
-5.4056603e+117
-5.4024935e+117
-5.401791e+117
-5.4062675e+117
-5.4068351e+117
-5.4146128e+117
-5.4105378e+117
-5.410998e+117
-5.4150797e+117
-5.4660833e+117
-5.4609016e+117
-5.4623648e+117
-5.4674975e+117
-5.455927e+117
-5.4512819e+117
-5.4528444e+117
-5.4574342e+117
-5.4567317e+117
-5.4547392e+117
-5.4592494e+117
-5.4612255e+117
-5.4693e+117
-5.4641534e+117
-5.4660837e+117
-5.4712098e+117
-5.4468368e+117
-5.442692e+117
-5.4442131e+117
-5.4483895e+117
-5.4387063e+117
-5.4348525e+117
-5.4361014e+117
-5.4400952e+117
-5.4392083e+117
-5.4375039e+117
-5.4416976e+117
-5.4435496e+117
-5.4502942e+117
-5.4459818e+117
-5.4479091e+117
-5.4522653e+117
-5.4729969e+117
-5.4678815e+117
-5.4699248e+117
-5.4750251e+117
-5.4630516e+117
-5.4585529e+117
-5.4605991e+117
-5.4650776e+117
-5.4773321e+117
-5.4721941e+117
-5.474651e+117
-5.4798606e+117
-5.454161e+117
-5.4498617e+117
-5.4520428e+117
-5.4562217e+117
-5.5132977e+117
-5.5072265e+117
-5.5092845e+117
-5.5154025e+117
-5.4968326e+117
-5.4950384e+117
-5.5011139e+117
-5.5030087e+117
-5.5051291e+117
-5.4988602e+117
-5.5009904e+117
-5.5073829e+117
-5.5138035e+117
-5.5114373e+117
-5.5177001e+117
-5.5202092e+117
-5.488969e+117
-5.4830189e+117
-5.4846509e+117
-5.4906793e+117
-5.4729884e+117
-5.4715216e+117
-5.477152e+117
-5.4786964e+117
-5.4766883e+117
-5.474785e+117
-5.4805092e+117
-5.4824092e+117
-5.4884345e+117
-5.4864961e+117
-5.4926031e+117
-5.4946214e+117
-5.4854462e+117
-5.4828526e+117
-5.4887216e+117
-5.4913268e+117
-5.4805599e+117
-5.4784807e+117
-5.4842732e+117
-5.4863863e+117
-5.4967026e+117
-5.4904009e+117
-5.4925713e+117
-5.4989507e+117
-5.5014097e+117
-5.4949629e+117
-5.4975831e+117
-5.5040525e+117
-5.5227829e+117
-5.5163018e+117
-5.518856e+117
-5.5253812e+117
-5.5055358e+117
-5.5031864e+117
-5.509729e+117
-5.5121858e+117
-5.5106929e+117
-5.5080479e+117
-5.5147538e+117
-5.5173845e+117
-5.5240897e+117
-5.5214743e+117
-5.5280561e+117
-5.530666e+117
-5.4075219e+117
-5.4071384e+117
-5.402903e+117
-5.4031335e+117
-5.4073875e+117
-5.4152258e+117
-5.4111152e+117
-5.4114093e+117
-5.415458e+117
-5.4156971e+117
-5.4115474e+117
-5.430955e+117
-5.4271533e+117
-5.4278846e+117
-5.431971e+117
-5.4232318e+117
-5.4192379e+117
-5.4195473e+117
-5.4237006e+117
-5.4199274e+117
-5.4242981e+117
-5.4331402e+117
-5.4287553e+117
-5.4346945e+117
-5.3539529e+117
-5.3435164e+117
-5.3406258e+117
-5.355912e+117
-5.3684631e+117
-5.3729572e+117
-5.3766182e+117
-5.3719095e+117
-5.3669038e+117
-5.3879816e+117
-5.3824725e+117
-5.381937e+117
-5.3876971e+117
-5.3931707e+117
-5.3931759e+117
-5.3982069e+117
-5.3983587e+117
-5.5666035e+117
-5.5547546e+117
-5.5641491e+117
-5.5571704e+117
-5.5689679e+117
-5.5564008e+117
-5.5442263e+117
-5.5534795e+117
-5.547074e+117
-5.5617572e+117
-5.5523897e+117
-5.5497937e+117
-5.5590895e+117
-5.5337898e+117
-5.5427796e+117
-5.5453489e+117
-5.5362322e+117
-5.5387917e+117
-5.5479142e+117
-5.5507229e+117
-5.5415202e+117
-3.1608252e+117
-3.2698173e+117
-3.267326e+117
-3.1585227e+117
-3.3757796e+117
-3.3787269e+117
-3.4865883e+117
-3.4833457e+117
-3.5919484e+117
-3.5952025e+117
-3.7039641e+117
-3.700671e+117
-5.7101935e+117
-5.7101708e+117
-5.5922264e+117
-5.5921615e+117
-5.8148568e+117
-5.9032862e+117
-6.0874927e+117
-6.1483642e+117
-6.1494168e+117
-6.1889074e+117
-6.1686575e+117
-6.1959599e+117
-6.2281014e+117
-6.1704426e+117
-6.2022932e+117
-6.2332713e+117
-6.209107e+117
-6.1776017e+117
-6.2328256e+117
-6.2128966e+117
-6.1800668e+117
-6.2373847e+117
-6.2374261e+117
-6.2378041e+117
-6.2255131e+117
-6.2253062e+117
-6.2320962e+117
-6.2035642e+117
-6.2075848e+117
-6.1969775e+117
-6.1711576e+117
-6.1782261e+117
-6.1715085e+117
-6.1004924e+117
-6.130565e+117
-6.1280615e+117
-6.0915434e+117
-6.1293442e+117
-6.1714503e+117
-6.1275507e+117
-6.0824005e+117
-6.1307998e+117
-6.0941919e+117
-6.0626642e+117
-6.0848997e+117
-6.1299558e+117
-6.1332391e+117
-6.2108943e+117
-6.1959716e+117
-6.1722639e+117
-6.1647732e+117
-6.1274174e+117
-6.0900259e+117
-6.1264843e+117
-6.0816429e+117
-6.1967416e+117
-6.197659e+117
-6.106827e+117
-6.145855e+117
-6.3627893e+117
-6.1593358e+117
-5.4485623e+117
-6.0980578e+117
-6.2422156e+117
-6.0972561e+117
-6.4107137e+117
-6.924112e+117
-6.3145982e+117
-5.5134646e+117
-6.1405009e+117
-6.6817968e+117
-6.2309594e+117
-7.0718423e+117
-7.2359122e+117
-6.2268185e+117
-6.497496e+117
-6.3390927e+117
-6.0793202e+117
-6.0657353e+117
-6.1050945e+117
-6.1640586e+117
-6.0728561e+117
-6.272581e+117
-6.1872623e+117
-6.11411e+117
-6.2623157e+117
-6.0579604e+117
-6.1234667e+117
-6.2426449e+117
-6.0938155e+117
-6.0653394e+117
-6.0468018e+117
-6.7792059e+117
-6.4383297e+117
-6.314131e+117
-2.4920454e+117
-9.7675656e+116
-6.037604e+117
-6.1798685e+117
-5.9856615e+117
-6.1485668e+117
-6.1274292e+117
-6.1001142e+117
-6.0154995e+117
-6.1526356e+117
-6.141636e+117
-6.1181194e+117
-6.1241328e+117
-5.8697937e+117
-5.8931795e+117
-5.7909175e+117
-5.7600216e+117
-6.1572731e+117
-6.1203394e+117
-6.1129339e+117
-6.1462838e+117
-8.0168234e+117
-6.7584989e+117
-6.8023526e+117
-1.5203946e+118
-7.4191214e+117
-5.1775709e+117
-5.7231379e+117
-6.7374217e+117
-6.6986239e+117
-7.8956976e+117
-7.9608775e+117
-1.0165449e+118
-4.7821914e+117
-6.5760774e+117
-6.8102633e+117
-6.6171717e+117
-6.7793103e+117
-7.1071365e+117
-7.1842611e+117
-6.0350262e+117
-6.0801573e+117
-6.0632211e+117
-6.0956995e+117
-6.0685712e+117
-6.0338741e+117
-6.0502041e+117
-6.0363381e+117
-6.0655105e+117
-6.0346383e+117
-6.0226398e+117
-6.0702713e+117
-6.100687e+117
-6.0396283e+117
-6.0242447e+117
-6.0092003e+117
-5.6755408e+117
-6.3443878e+117
-6.2345226e+117
-6.0958154e+117
-6.5630434e+117
-6.7769121e+117
-6.0563049e+117
-6.0220209e+117
-6.0469952e+117
-6.3746927e+117
-6.1761376e+117
-6.5956009e+117
-5.8862678e+117
-5.8341187e+117
-6.2439502e+117
-6.0536898e+117
-6.029274e+117
-6.0307874e+117
-6.0555138e+117
-6.0546454e+117
-6.0361735e+117
-6.0258288e+117
-6.0274196e+117
-6.085547e+117
-6.0811976e+117
-6.0808699e+117
-6.0439218e+117
-6.0513391e+117
-1.4475591e+118
-4.6941194e+117
-4.6910253e+117
-4.5625718e+117
-4.3742165e+117
-4.5560696e+117
-4.6825414e+117
-4.6867153e+117
-4.5644853e+117
-4.5640424e+117
-4.1264983e+117
-4.4316942e+117
-4.3090262e+117
-4.3015462e+117
-4.4222329e+117
-4.5452487e+117
-4.5549371e+117
-4.6685987e+117
-4.6765403e+117
-4.6616834e+117
-4.4149861e+117
-4.5370757e+117
-4.297285e+117
-4.1791409e+117
-3.8882596e+117
-4.0623169e+117
-4.0547896e+117
-4.1686031e+117
-4.2840051e+117
-4.4008205e+117
-4.5235929e+117
-4.6499108e+117
-4.3886455e+117
-4.273321e+117
-4.1613992e+117
-4.0517091e+117
-3.9409119e+117
-3.6594353e+117
-3.8283026e+117
-3.8227387e+117
-3.9332692e+117
-4.0419992e+117
-4.1508267e+117
-4.2618831e+117
-4.3765868e+117
-4.4984186e+117
-4.5097725e+117
-4.6372953e+117
-4.7766369e+117
-4.62883e+117
-4.7728851e+117
-4.928663e+117
-4.7720364e+117
-4.9348697e+117
-4.366697e+117
-3.4342079e+117
-3.6011829e+117
-3.7124421e+117
-3.7087432e+117
-3.5982797e+117
-3.9284957e+117
-3.8206913e+117
-3.8157751e+117
-3.9218265e+117
-4.028574e+117
-4.0362821e+117
-4.1427959e+117
-4.1351179e+117
-4.2519789e+117
-4.2439742e+117
-4.3581414e+117
-4.7734439e+117
-4.9432358e+117
-3.3763289e+117
-3.4879721e+117
-3.4854682e+117
-3.3737334e+117
-3.596617e+117
-3.704351e+117
-3.7013335e+117
-3.5943093e+117
-3.9183892e+117
-3.8118544e+117
-3.8076433e+117
-3.9129399e+117
-4.0187468e+117
-4.0245772e+117
-4.1296928e+117
-4.124709e+117
-4.9515244e+117
-4.9608154e+117
-3.9105348e+117
-3.5903571e+117
-3.6976557e+117
-3.6952129e+117
-3.5884343e+117
-3.8045267e+117
-3.8011577e+117
-3.9061185e+117
-5.2407812e+117
-5.7093443e+117
-5.7283735e+117
-5.7593162e+117
-5.8304944e+117
-5.8410169e+117
-5.8440971e+117
-5.7822532e+117
-5.9163297e+117
-5.9157278e+117
-5.914914e+117
-5.711699e+117
-5.6477454e+117
-5.6168486e+117
-5.414729e+117
-5.5275122e+117
-5.3964746e+117
-5.5046012e+117
-5.3833337e+117
-5.4922752e+117
-5.4752793e+117
-5.3902567e+117
-5.4140992e+117
-4.8081993e+117
-4.8108618e+117
-4.9308204e+117
-4.9375439e+117
-4.949231e+117
-4.9433422e+117
-4.8185922e+117
-4.8229344e+117
-4.8048922e+117
-4.9296467e+117
-5.0555303e+117
-5.051787e+117
-5.0502341e+117
-5.0537382e+117
-5.0602081e+117
-5.2030935e+117
-5.1733531e+117
-5.1825454e+117
-5.1929337e+117
-5.0683436e+117
-5.0762996e+117
-5.1730342e+117
-5.1674667e+117
-5.182876e+117
-5.3295622e+117
-5.3003358e+117
-5.315242e+117
-5.286007e+117
-5.292969e+117
-5.2791046e+117
-5.2776765e+117
-5.3069375e+117
-5.430692e+117
-5.434912e+117
-5.4546208e+117
-5.5469422e+117
-5.556288e+117
-4.8008404e+117
-4.927663e+117
-4.9261335e+117
-4.7960826e+117
-5.0599787e+117
-5.0575702e+117
-5.1894818e+117
-5.1943247e+117
-4.7836801e+117
-4.7908475e+117
-4.9235516e+117
-4.9261361e+117
-4.9238528e+117
-5.0947017e+117
-5.0812016e+117
-5.2649496e+117
-5.1077955e+117
-5.1228515e+117
-5.4002893e+117
-5.3870737e+117
-5.4110095e+117
-5.4248716e+117
-5.3163357e+117
-5.3567685e+117
-5.3685206e+117
-5.3262579e+117
-5.434768e+117
-5.4165084e+117
-5.409212e+117
-5.4434166e+117
-5.3765719e+117
-5.3329752e+117
-5.3381789e+117
-5.3828863e+117
-5.3427693e+117
-5.3884949e+117
-5.3935606e+117
-5.3469453e+117
-5.4227102e+117
-5.42883e+117
-5.458024e+117
-5.4507326e+117
-5.5422222e+117
-5.5433409e+117
-5.5353301e+117
-5.5500749e+117
-5.5285855e+117
-5.5221799e+117
-5.5303973e+117
-5.5367452e+117
-5.5452785e+117
-5.5376889e+117
-5.5439814e+117
-5.5515879e+117
-5.5507285e+117
-5.5584007e+117
-5.565485e+117
-5.5575658e+117
-5.5087468e+117
-5.4991076e+117
-5.5068674e+117
-5.5162045e+117
-5.4913908e+117
-5.4841512e+117
-5.4944428e+117
-5.5014283e+117
-5.5041575e+117
-5.5108499e+117
-5.5207569e+117
-5.5141835e+117
-5.5180215e+117
-5.5251524e+117
-5.5347625e+117
-5.5276999e+117
-5.4775006e+117
-5.4841718e+117
-5.4945992e+117
-5.4882335e+117
-5.4625548e+117
-5.4552139e+117
-5.4668767e+117
-5.4738053e+117
-5.4807097e+117
-5.4698929e+117
-5.4872989e+117
-5.4768303e+117
-5.4908824e+117
-5.5011139e+117
-5.5073691e+117
-5.4972344e+117
-5.5113383e+117
-5.5027118e+117
-5.4966923e+117
-5.505386e+117
-5.5200154e+117
-5.5188123e+117
-5.5128483e+117
-5.5262476e+117
-5.5310323e+117
-5.5249725e+117
-5.5324833e+117
-5.5386794e+117
-5.5092305e+117
-5.5154344e+117
-5.5237041e+117
-5.5176354e+117
-5.4612596e+117
-5.4694754e+117
-5.4856132e+117
-5.477049e+117
-5.4413516e+117
-5.4496909e+117
-5.4590773e+117
-5.4389153e+117
-5.4506682e+117
-5.4588066e+117
-5.4470543e+117
-5.4616664e+117
-5.4696829e+117
-5.4805338e+117
-5.4725002e+117
-5.4787255e+117
-5.4892949e+117
-5.4899642e+117
-5.4815602e+117
-5.4978139e+117
-5.4975008e+117
-5.5051987e+117
-5.5122748e+117
-5.5045118e+117
-5.4944619e+117
-5.5389443e+117
-5.5459188e+117
-5.5517478e+117
-5.5450519e+117
-5.5469926e+117
-5.546204e+117
-5.5400657e+117
-5.5529655e+117
-5.5262268e+117
-5.5325023e+117
-5.5395981e+117
-5.5333771e+117
-5.5580877e+117
-5.5522725e+117
-5.5589746e+117
-5.5648848e+117
-5.5644775e+117
-5.5697053e+117
-5.5753403e+117
-5.5702653e+117
-5.5797875e+117
-5.5740921e+117
-5.5786573e+117
-5.5843717e+117
-5.5680809e+117
-5.5620716e+117
-5.5726218e+117
-5.5666419e+117
-5.5524504e+117
-5.5584072e+117
-5.5636248e+117
-5.5577059e+117
-5.596587e+117
-5.5947112e+117
-5.5895289e+117
-5.6018523e+117
-5.5816029e+117
-5.5765046e+117
-5.5826556e+117
-5.587779e+117
-5.5906915e+117
-5.5861231e+117
-5.5923687e+117
-5.597054e+117
-5.5993889e+117
-5.6066864e+117
-5.6116268e+117
-5.6041688e+117
-5.5582529e+117
-5.5515219e+117
-5.5577888e+117
-5.5646404e+117
-5.5717009e+117
-5.5647765e+117
-5.5719679e+117
-5.5790288e+117
-5.5845154e+117
-5.5780725e+117
-5.5853944e+117
-5.5916668e+117
-5.5646486e+117
-5.571035e+117
-5.5776317e+117
-5.5713288e+117
-5.5112658e+117
-5.5220303e+117
-5.5311888e+117
-5.5198663e+117
-5.4984954e+117
-5.4895207e+117
-5.5011432e+117
-5.5109217e+117
-5.5209985e+117
-5.5076303e+117
-5.510732e+117
-5.5172101e+117
-5.5253597e+117
-5.5185321e+117
-5.5238291e+117
-5.532088e+117
-5.5390272e+117
-5.5306512e+117
-5.5325747e+117
-5.5542798e+117
-5.5460404e+117
-5.5505463e+117
-5.5588092e+117
-5.5362755e+117
-5.5446091e+117
-5.5497564e+117
-5.5413588e+117
-5.5417571e+117
-5.5403497e+117
-5.5481562e+117
-5.5413531e+117
-5.5334588e+117
-5.5260983e+117
-5.533972e+117
-5.5220451e+117
-5.5425065e+117
-5.5511188e+117
-5.5409485e+117
-5.5316268e+117
-5.5495968e+117
-5.5563675e+117
-5.56498e+117
-5.5580531e+117
-5.5644369e+117
-5.5753089e+117
-5.5832666e+117
-5.5723832e+117
-5.5488404e+117
-5.5591577e+117
-5.567221e+117
-5.5565563e+117
-5.5826483e+117
-5.5898825e+117
-5.5977788e+117
-5.5905595e+117
-5.5662887e+117
-5.5733435e+117
-5.5816833e+117
-5.574498e+117
-5.579998e+117
-5.5711549e+117
-5.5636106e+117
-5.5723435e+117
-5.5549943e+117
-5.5476975e+117
-5.555349e+117
-5.5627533e+117
-5.5709349e+117
-5.5631582e+117
-5.5714434e+117
-5.5792411e+117
-5.5794654e+117
-5.5878247e+117
-5.5969112e+117
-5.5883803e+117
-5.5885771e+117
-5.5808243e+117
-5.5892802e+117
-5.5971546e+117
-5.6054298e+117
-5.5974996e+117
-5.605355e+117
-5.6132741e+117
-5.6219735e+117
-5.614122e+117
-5.6308091e+117
-5.6229483e+117
-5.5970501e+117
-5.6057934e+117
-5.6145331e+117
-5.6056983e+117
-5.6146084e+117
-5.6256803e+117
-5.6305873e+117
-5.6194179e+117
-5.604451e+117
-5.6151936e+117
-5.6204751e+117
-5.6096028e+117
-5.6330978e+117
-5.6403548e+117
-5.6453674e+117
-5.6380463e+117
-5.6224877e+117
-5.6296327e+117
-5.6350535e+117
-5.6278426e+117
-5.5933695e+117
-5.6039827e+117
-5.6099159e+117
-5.5993297e+117
-5.5797289e+117
-5.590571e+117
-5.5975956e+117
-5.5868773e+117
-5.6111423e+117
-5.6181874e+117
-5.6241644e+117
-5.6170741e+117
-5.5978587e+117
-5.6049883e+117
-5.6118143e+117
-5.6047585e+117
-5.6530087e+117
-5.6479584e+117
-5.6559505e+117
-5.6610389e+117
-5.6426407e+117
-5.6371749e+117
-5.6450871e+117
-5.6506052e+117
-5.6627307e+117
-5.6593961e+117
-5.6538349e+117
-5.6683159e+117
-5.6647514e+117
-5.6698881e+117
-5.6788854e+117
-5.6737112e+117
-5.620359e+117
-5.612508e+117
-5.6192877e+117
-5.6271077e+117
-5.6316581e+117
-5.6256533e+117
-5.6334821e+117
-5.6395324e+117
-5.6482226e+117
-5.6421154e+117
-5.6509295e+117
-5.6570895e+117
-5.6290125e+117
-5.6357301e+117
-5.6445058e+117
-5.6377993e+117
-5.5864018e+117
-5.582347e+117
-5.5880867e+117
-5.5922397e+117
-5.5764016e+117
-5.570496e+117
-5.574294e+117
-5.5803751e+117
-5.6097575e+117
-5.6142746e+117
-5.594484e+117
-5.5988181e+117
-5.6053521e+117
-5.6008949e+117
-5.6214294e+117
-5.616875e+117
-5.6243399e+117
-5.629015e+117
-5.6155608e+117
-5.6080807e+117
-5.6125596e+117
-5.620044e+117
-5.5497031e+117
-5.5577271e+117
-5.5544093e+117
-5.562699e+117
-5.5662508e+117
-5.632894e+117
-5.6442186e+117
-5.6489817e+117
-5.6375093e+117
-5.6237739e+117
-5.6350018e+117
-5.6395832e+117
-5.6283426e+117
-5.6471155e+117
-5.6425607e+117
-5.6499127e+117
-5.654502e+117
-5.6592229e+117
-5.651805e+117
-5.6566198e+117
-5.6641131e+117
-5.6719519e+117
-5.6670078e+117
-5.6801679e+117
-5.6751714e+117
-5.6622859e+117
-5.6576092e+117
-5.6703997e+117
-5.6656771e+117
-5.6745713e+117
-5.6793266e+117
-5.6883723e+117
-5.683589e+117
-5.6841377e+117
-5.6932484e+117
-5.698332e+117
-5.6891909e+117
-5.9772217e+117
-5.9775046e+117
-6.0253458e+117
-6.068025e+117
-6.025896e+117
-6.0629693e+117
-6.0783017e+117
-6.0675415e+117
-6.078907e+117
-6.0825323e+117
-6.0798012e+117
-5.2449848e+117
-4.6854303e+117
-4.9618072e+117
-5.3096073e+117
-5.3111798e+117
-4.9763822e+117
-4.9311827e+117
-5.2210823e+117
-5.1897745e+117
-4.9572557e+117
-4.5951899e+117
-4.9182049e+117
-5.293567e+117
-5.2857279e+117
-4.9522931e+117
-5.7441247e+117
-5.4696375e+117
-5.4851866e+117
-5.750862e+117
-5.7455934e+117
-5.728991e+117
-5.4527916e+117
-5.4741167e+117
-5.4389152e+117
-5.363312e+117
-5.6930484e+117
-5.6842874e+117
-5.391009e+117
-5.4344602e+117
-5.1991124e+117
-5.186425e+117
-4.8949676e+117
-4.9567593e+117
-1.6492744e+117
-1.0931309e+117
-9.6356522e+116
-1.3905523e+117
-5.2609575e+117
-5.2857565e+117
-5.0322789e+117
-1.7362438e+117
-6.241589e+116
-4.1663117e+116
-5.9212345e+117
-5.8888033e+117
-6.9851226e+116
-1.379928e+117
-1.1581405e+117
-5.1684155e+117
-5.2498321e+117
-4.9847873e+117
-3.3656635e+117
-4.1672431e+117
-4.629713e+117
-1.8183078e+117
-3.2105855e+117
-4.006854e+117
-4.7035407e+117
-4.378612e+117
-7.6724021e+116
-2.2783692e+117
-3.5155276e+117
-4.0236348e+117
-3.5355412e+117
-4.6545865e+117
-4.2879519e+117
-3.2834324e+117
-3.1733593e+117
-3.9581172e+117
-3.8641021e+117
-3.9720989e+117
-3.8924912e+117
-3.4374453e+117
-3.3969142e+117
-3.0595955e+117
-2.9426618e+117
-3.3562961e+117
-3.4616155e+117
-4.595308e+117
-4.6255146e+117
-4.2125901e+117
-4.2196354e+117
-4.2695052e+117
-3.4481503e+117
-3.2778064e+117
-3.3264461e+117
-3.0225794e+117
-2.0919043e+117
-4.7173776e+117
-4.2621561e+117
-4.1857541e+117
-3.8823188e+117
-3.8873377e+117
-3.9963833e+117
-3.409351e+117
-2.4987907e+117
-2.8531823e+117
-2.8913034e+117
-1.8207932e+117
-1.4103221e+117
-2.3974861e+117
-2.2093206e+117
-1.3446281e+117
-4.1990777e+117
-6.7063888e+116
-1.8191688e+117
-3.083718e+117
-6.0768015e+117
-6.0558823e+117
-5.9201609e+117
-6.0156242e+117
-5.9227092e+117
-6.0115285e+117
-5.924337e+117
-6.0117658e+117
-6.0080192e+117
-5.9097267e+117
-5.9008391e+117
-6.0588808e+117
-6.0604851e+117
-6.0646676e+117
-3.4710627e+116
-2.2285277e+117
-1.6157739e+117
-5.6556005e+117
-5.6465505e+117
-5.7524722e+117
-4.9571201e+117
-4.9534982e+117
-4.8258895e+117
-4.6983954e+117
-4.8286926e+117
-4.7009315e+117
-4.574734e+117
-4.4471375e+117
-4.5722574e+117
-4.4449644e+117
-4.1350881e+117
-4.3205685e+117
-4.3186301e+117
-5.2182656e+117
-5.2116245e+117
-5.0824797e+117
-5.0875744e+117
-3.8963724e+117
-3.6656097e+117
-5.7067972e+117
-5.716275e+117
-5.6967251e+117
-5.687744e+117
-5.6350674e+117
-5.6461579e+117
-5.679253e+117
-5.6628379e+117
-5.6710577e+117
-5.6722713e+117
-5.6668131e+117
-5.6766989e+117
-5.6819233e+117
-5.6921436e+117
-5.7054774e+117
-5.6874868e+117
-5.6997612e+117
-5.7084046e+117
-5.6939153e+117
-5.6789783e+117
-5.6825588e+117
-5.689881e+117
-5.6580271e+117
-5.6614402e+117
-5.6716317e+117
-5.6682612e+117
-5.6261446e+117
-5.6307842e+117
-5.6425217e+117
-5.6489989e+117
-5.6366691e+117
-5.6530275e+117
-5.6470465e+117
-5.6570477e+117
-5.6625806e+117
-5.6514986e+117
-5.6379809e+117
-5.6417254e+117
-5.6478835e+117
-5.6183327e+117
-5.621941e+117
-5.6318845e+117
-5.6281039e+117
-5.6871511e+117
-5.6743815e+117
-5.6762065e+117
-5.6854542e+117
-5.6553138e+117
-5.6655509e+117
-5.6636754e+117
-5.6534205e+117
-5.6519965e+117
-5.6521063e+117
-5.6614395e+117
-5.662048e+117
-5.6731045e+117
-5.6846386e+117
-5.6730645e+117
-5.68461e+117
-5.6138262e+117
-5.6156488e+117
-5.6253229e+117
-5.6234085e+117
-5.6351674e+117
-5.6332009e+117
-5.6431653e+117
-5.6451303e+117
-5.6321828e+117
-5.6318595e+117
-5.6417211e+117
-5.6416964e+117
-5.613343e+117
-5.6127251e+117
-5.6221494e+117
-5.6226372e+117
-5.759583e+117
-5.7685194e+117
-5.7228109e+117
-5.7385227e+117
-5.7431652e+117
-5.7111226e+117
-5.7332377e+117
-5.72388e+117
-5.7181113e+117
-5.7012212e+117
-5.7056328e+117
-5.7131619e+117
-5.7421416e+117
-5.732063e+117
-5.7439131e+117
-5.739076e+117
-5.7259199e+117
-5.6962625e+117
-5.6964362e+117
-5.7084338e+117
-5.7081007e+117
-5.6970682e+117
-5.6985906e+117
-5.7105148e+117
-5.7090471e+117
-5.7216232e+117
-5.7231159e+117
-5.736319e+117
-5.7348042e+117
-5.7340513e+117
-5.7209422e+117
-5.7205265e+117
-5.7335509e+117
-5.7775751e+117
-5.7782977e+117
-5.7946352e+117
-5.7936086e+117
-5.7992094e+117
-5.783076e+117
-5.7799731e+117
-5.79747e+117
-5.7489316e+117
-5.7507541e+117
-5.7660107e+117
-5.7638807e+117
-5.7473891e+117
-5.7479413e+117
-5.762638e+117
-5.7620423e+117
-5.7544969e+117
-5.7549988e+117
-5.7773921e+117
-5.7708437e+117
-5.769883e+117
-5.7883842e+117
-5.7851184e+117
-5.7965078e+117
-5.8032253e+117
-5.8118486e+117
-5.6486689e+117
-5.6399144e+117
-5.6309802e+117
-5.6399088e+117
-5.6168962e+117
-5.6324684e+117
-5.6260227e+117
-5.6234016e+117
-5.6420603e+117
-5.6356119e+117
-5.65178e+117
-5.645352e+117
-5.6493135e+117
-5.657857e+117
-5.6676187e+117
-5.6590078e+117
-5.5983413e+117
-5.6052474e+117
-5.6145309e+117
-5.6078489e+117
-5.5959108e+117
-5.5887309e+117
-5.57978e+117
-5.5871299e+117
-5.6133697e+117
-5.6043071e+117
-5.5957209e+117
-5.6049102e+117
-5.6131891e+117
-5.6221057e+117
-5.6312979e+117
-5.6222893e+117
-5.6139975e+117
-5.6224452e+117
-5.6315821e+117
-5.6229844e+117
-5.63151e+117
-5.6401731e+117
-5.6479798e+117
-5.6393081e+117
-5.6589707e+117
-5.6493669e+117
-5.6571836e+117
-5.6668318e+117
-5.6314414e+117
-5.64069e+117
-5.6501809e+117
-5.6407778e+117
-5.6494146e+117
-5.6580879e+117
-5.6677545e+117
-5.6589511e+117
-5.6677982e+117
-5.6757008e+117
-5.684813e+117
-5.6767712e+117
-5.6863275e+117
-5.694523e+117
-5.7046342e+117
-5.6963053e+117
-5.667272e+117
-5.6771267e+117
-5.6869786e+117
-5.677087e+117
-5.7049993e+117
-5.7216001e+117
-5.7320127e+117
-5.7131402e+117
-5.7234547e+117
-5.7133959e+117
-5.7037571e+117
-5.7139781e+117
-5.6938658e+117
-5.7041573e+117
-5.6856166e+117
-5.695579e+117
-5.7249263e+117
-5.7147743e+117
-5.7231952e+117
-5.7334572e+117
-5.7346366e+117
-5.7432422e+117
-5.7521595e+117
-5.7434459e+117
-5.6550867e+117
-5.6604041e+117
-5.6686634e+117
-5.6777964e+117
-5.6635799e+117
-5.6714074e+117
-5.6812661e+117
-5.6874792e+117
-5.6952525e+117
-5.6887371e+117
-5.6944575e+117
-5.7047069e+117
-5.6852387e+117
-5.6949584e+117
-5.7031042e+117
-5.7130125e+117
-5.6673516e+117
-5.6842142e+117
-5.6755211e+117
-5.6759698e+117
-5.7613454e+117
-5.7623261e+117
-5.7524146e+117
-5.7712774e+117
-5.7626883e+117
-5.7635099e+117
-5.7529761e+117
-5.7730784e+117
-5.7321706e+117
-5.7419363e+117
-5.7524585e+117
-5.7425726e+117
-5.7828495e+117
-5.7733072e+117
-5.7823303e+117
-5.7920141e+117
-5.7038657e+117
-5.6974087e+117
-5.70666e+117
-5.7133566e+117
-5.7241484e+117
-5.7171567e+117
-5.7266287e+117
-5.7339204e+117
-5.7423358e+117
-5.7321543e+117
-5.741848e+117
-5.752068e+117
-5.7118513e+117
-5.7213623e+117
-5.7313924e+117
-5.7218057e+117
-5.7941493e+117
-5.7829321e+117
-5.7940912e+117
-5.7724439e+117
-5.783347e+117
-5.8047978e+117
-5.8028985e+117
-5.8120835e+117
-5.8223212e+117
-5.8228594e+117
-5.8331163e+117
-5.81364e+117
-5.8147452e+117
-5.8239406e+117
-5.8236274e+117
-5.8327545e+117
-5.8430177e+117
-5.8418274e+117
-5.8521181e+117
-5.8327854e+117
-5.7928038e+117
-5.8041033e+117
-5.8020075e+117
-5.8134108e+117
-5.7351238e+117
-5.7462049e+117
-5.7425351e+117
-5.7530553e+117
-5.7637019e+117
-5.7559074e+117
-5.7650471e+117
-5.7738945e+117
-5.7855805e+117
-5.7825473e+117
-5.7934516e+117
-5.773426e+117
-5.7724481e+117
-5.7832502e+117
-5.7815135e+117
-5.7908475e+117
-5.8015741e+117
-5.8015565e+117
-5.811829e+117
-5.7921397e+117
-5.7507656e+117
-5.761466e+117
-5.7616041e+117
-5.7723115e+117
-5.6770317e+117
-5.6857525e+117
-5.6803502e+117
-5.6715299e+117
-5.7056986e+117
-5.7006035e+117
-5.7103823e+117
-5.7154977e+117
-5.689574e+117
-5.6991443e+117
-5.7048938e+117
-5.6951422e+117
-5.6912003e+117
-5.6824112e+117
-5.6875436e+117
-5.6963526e+117
-5.6464626e+117
-5.6531869e+117
-5.661893e+117
-5.6551214e+117
-5.6643062e+117
-5.6712209e+117
-5.6809858e+117
-5.6740241e+117
-5.684085e+117
-5.6779313e+117
-5.6876386e+117
-5.6936141e+117
-5.6596597e+117
-5.6746981e+117
-5.6684682e+117
-5.6657901e+117
-5.6964634e+117
-5.7023761e+117
-5.7114741e+117
-5.7055194e+117
-5.6829836e+117
-5.692148e+117
-5.6990386e+117
-5.6899104e+117
-5.7152258e+117
-5.7254063e+117
-5.7315223e+117
-5.7212559e+117
-5.7019226e+117
-5.718959e+117
-5.7120912e+117
-5.7087863e+117
-5.7137786e+117
-5.7080605e+117
-5.7229606e+117
-5.7172339e+117
-5.7271079e+117
-5.732892e+117
-5.7433717e+117
-5.7374784e+117
-5.7542978e+117
-5.74904e+117
-5.7384808e+117
-5.7437685e+117
-5.7192324e+117
-5.7244733e+117
-5.7337272e+117
-5.7284739e+117
-5.7465817e+117
-5.7525871e+117
-5.7610559e+117
-5.7717987e+117
-5.7549583e+117
-5.7656228e+117
-5.7776689e+117
-5.786627e+117
-5.7927608e+117
-5.783842e+117
-5.7983274e+117
-5.7773721e+117
-5.7893978e+117
-5.7821709e+117
-5.794253e+117
-5.8033346e+117
-5.7582738e+117
-5.766708e+117
-5.7716044e+117
-5.7632884e+117
-5.7210199e+117
-5.7279121e+117
-5.7362435e+117
-5.7468194e+117
-5.7293333e+117
-5.7397879e+117
-5.7513902e+117
-5.7601567e+117
-5.7674669e+117
-5.7586447e+117
-5.774148e+117
-5.7534239e+117
-5.7653282e+117
-5.7595792e+117
-5.7715131e+117
-5.7804124e+117
-5.7343546e+117
-5.7489418e+117
-5.7427602e+117
-5.740515e+117
-5.7906178e+117
-5.7980062e+117
-5.8076956e+117
-5.8003716e+117
-5.7897527e+117
-5.7834238e+117
-5.7935069e+117
-5.7998917e+117
-5.7694113e+117
-5.7794281e+117
-5.7868011e+117
-5.7767498e+117
-5.8144218e+117
-5.8046983e+117
-5.8111587e+117
-5.8209635e+117
-5.7960177e+117
-5.802096e+117
-5.8122391e+117
-5.8061775e+117
-5.8174959e+117
-5.8235764e+117
-5.8334321e+117
-5.8273262e+117
-5.8345624e+117
-5.8292534e+117
-5.8391369e+117
-5.8444525e+117
-5.8076645e+117
-5.8128037e+117
-5.823108e+117
-5.8178634e+117
-5.859733e+117
-5.8436133e+117
-5.8554074e+117
-5.8375079e+117
-5.8492798e+117
-5.8658211e+117
-5.8683982e+117
-5.8772097e+117
-5.8874583e+117
-5.8832657e+117
-5.8934658e+117
-5.874442e+117
-5.8715427e+117
-5.8769191e+117
-5.8801396e+117
-5.8889297e+117
-5.8990515e+117
-5.8943125e+117
-5.9044018e+117
-5.8855354e+117
-5.8493058e+117
-5.8611113e+117
-5.8546448e+117
-5.8664439e+117
-5.8322942e+117
-5.8178027e+117
-5.8294271e+117
-5.8104551e+117
-5.8218902e+117
-5.8398515e+117
-5.8410232e+117
-5.8499277e+117
-5.8602507e+117
-5.8575651e+117
-5.8679063e+117
-5.8486159e+117
-5.8467853e+117
-5.8533848e+117
-5.8555741e+117
-5.8645221e+117
-5.8748546e+117
-5.8710969e+117
-5.8813945e+117
-5.8621611e+117
-5.8245372e+117
-5.8362824e+117
-5.8310928e+117
-5.8428804e+117
-5.6924389e+117
-5.7013035e+117
-5.7062146e+117
-5.6972966e+117
-5.8690135e+117
-5.817819e+117
-5.8281589e+117
-5.8331232e+117
-5.8445885e+117
-5.8396447e+117
-5.8495433e+117
-5.8545164e+117
-5.8544556e+117
-5.8495194e+117
-5.8594787e+117
-5.8643059e+117
-5.8886081e+117
-5.9003711e+117
-5.9107571e+117
-5.9155355e+117
-5.9051228e+117
-5.9013928e+117
-5.9060168e+117
-5.8837522e+117
-5.895608e+117
-5.8790613e+117
-5.8909213e+117
-5.9186008e+117
-5.9286975e+117
-5.9099375e+117
-5.9231725e+117
-5.9333149e+117
-5.914516e+117
-5.9240191e+117
-5.9326985e+117
-5.9192313e+117
-5.9278954e+117
-5.9379996e+117
-5.9428001e+117
-5.882091e+117
-5.864756e+117
-5.876703e+117
-5.8597777e+117
-5.871612e+117
-5.8871654e+117
-5.8906832e+117
-5.8994046e+117
-5.8957668e+117
-5.9045193e+117
-5.9146433e+117
-5.9095079e+117
-5.8968475e+117
-5.8921046e+117
-5.9053881e+117
-5.9140854e+117
-5.9006689e+117
-5.9093995e+117
-5.9195006e+117
-5.9241847e+117
-5.8696786e+117
-5.8816605e+117
-5.874479e+117
-5.8864217e+117
-5.9423988e+117
-5.9375753e+117
-5.9475818e+117
-5.9522706e+117
-5.9510636e+117
-5.9468946e+117
-5.9566254e+117
-5.9607459e+117
-5.8118553e+117
-5.8217578e+117
-5.8310362e+117
-5.8208587e+117
-5.8404011e+117
-5.8305363e+117
-5.8030377e+117
-5.7814416e+117
-5.7974874e+117
-5.8214681e+117
-5.8115029e+117
-5.815974e+117
-5.80723e+117
-5.7855943e+117
-5.8321822e+117
-5.8428233e+117
-5.8507116e+117
-5.8409558e+117
-5.8609914e+117
-5.8514686e+117
-5.8526416e+117
-5.8616455e+117
-5.870667e+117
-5.8612172e+117
-5.8795163e+117
-5.870154e+117
-5.8841491e+117
-5.9016869e+117
-5.8924832e+117
-5.8905772e+117
-5.9079365e+117
-5.8988457e+117
-5.8697501e+117
-5.8875733e+117
-5.8782316e+117
-5.8772882e+117
-5.8949597e+117
-5.8856989e+117
-5.9133281e+117
-5.9301065e+117
-5.9213585e+117
-5.9080192e+117
-5.924944e+117
-5.9160923e+117
-5.9024967e+117
-5.9195682e+117
-5.9106341e+117
-5.8966071e+117
-5.9138712e+117
-5.9048322e+117
-5.95153e+117
-5.946766e+117
-5.967881e+117
-5.9593957e+117
-5.9633109e+117
-5.9546879e+117
-5.9375133e+117
-5.9420976e+117
-5.9587265e+117
-5.9500513e+117
-5.9541561e+117
-5.9454703e+117
-5.9283234e+117
-5.9329878e+117
-5.9449404e+117
-5.9362746e+117
-5.9495833e+117
-5.9409393e+117
-5.9235124e+117
-5.9184459e+117
-5.9351657e+117
-5.9264682e+117
-5.9401429e+117
-5.931483e+117
-5.9561998e+117
-5.960726e+117
-5.9724078e+117
-5.9640009e+117
-5.9767787e+117
-5.9684302e+117
-5.9649818e+117
-5.9690928e+117
-5.9809794e+117
-5.9726247e+117
-5.9850646e+117
-5.9767196e+117
-4.6578553e+117
-4.6270216e+117
-4.7334115e+117
-5.1405228e+117
-3.1213802e+117
-3.0959212e+117
-4.7003981e+117
-4.5179247e+117
-3.9714406e+117
-4.6337391e+117
-4.382464e+117
-3.6304274e+117
-4.1742478e+117
-4.7542357e+117
-4.6275732e+117
-4.7944642e+117
-4.4288081e+117
-4.3031228e+117
-4.5819886e+117
-4.140515e+117
-3.8251222e+117
-4.0432479e+117
-3.8500396e+117
-3.1643028e+117
-3.339868e+117
-2.4789847e+117
-3.2356999e+117
-3.4769252e+117
-2.6877057e+117
-2.7185427e+117
-2.6418166e+117
-4.5448609e+117
-4.1613407e+117
-2.6485703e+117
-2.4156419e+117
-3.5934643e+117
-4.2637162e+117
-1.4756539e+117
-1.1352749e+117
-5.3078936e+116
-1.1959298e+117
-1.6994045e+117
-1.7901755e+117
-2.6773789e+117
-1.7377287e+117
-4.9422869e+117
-5.3312677e+117
-4.9352056e+117
-4.7356185e+117
-3.439123e+117
-3.2143729e+117
-4.8304501e+117
-4.7020865e+117
-4.9590918e+117
-4.9618314e+117
-4.8326541e+117
-4.7038941e+117
-4.5756388e+117
-4.4505706e+117
-4.3276616e+117
-4.2041507e+117
-3.9043891e+117
-4.0818915e+117
-4.0834355e+117
-4.2051333e+117
-4.3282213e+117
-4.4512772e+117
-4.5768814e+117
-3.6721582e+117
-3.4446825e+117
-3.438354e+117
-3.2192765e+117
-5.6455959e+117
-5.6621631e+117
-5.5758657e+117
-5.5849405e+117
-5.5943835e+117
-5.6037338e+117
-5.5749962e+117
-5.5841758e+117
-5.6031397e+117
-5.5936529e+117
-5.5412588e+117
-5.5494458e+117
-5.5580567e+117
-5.5667445e+117
-5.5402328e+117
-5.5485028e+117
-5.557113e+117
-5.5658837e+117
-5.5417115e+117
-5.5502253e+117
-5.5489831e+117
-5.5406036e+117
-5.5678599e+117
-5.5589374e+117
-5.5575861e+117
-5.56643e+117
-5.5770424e+117
-5.5756143e+117
-5.5849132e+117
-5.5864181e+117
-5.5961015e+117
-5.6058493e+117
-5.5945042e+117
-5.6041242e+117
-5.4500798e+117
-5.4429983e+117
-5.4427283e+117
-5.4495097e+117
-5.4574342e+117
-5.4650126e+117
-5.4564554e+117
-5.4633299e+117
-5.4739528e+117
-5.4813866e+117
-5.4849592e+117
-5.4949314e+117
-5.4981391e+117
-5.4894284e+117
-5.4980468e+117
-5.5047629e+117
-5.5170384e+117
-5.5099118e+117
-5.52493e+117
-5.5329189e+117
-5.5235661e+117
-5.5318604e+117
-5.5064142e+117
-5.5151007e+117
-5.442157e+117
-5.4434401e+117
-5.4506699e+117
-5.4492499e+117
-5.4582639e+117
-5.4660821e+117
-5.4644626e+117
-5.456777e+117
-5.4886854e+117
-5.490319e+117
-5.4985348e+117
-5.4970518e+117
-5.4728435e+117
-5.4743201e+117
-5.4822028e+117
-5.4805105e+117
-5.4291236e+117
-5.4358608e+117
-5.4162731e+117
-5.4226017e+117
-5.4099389e+117
-5.4174814e+117
-5.4231653e+117
-5.4294912e+117
-5.4358944e+117
-5.4166341e+117
-5.4218673e+117
-5.4228431e+117
-5.4157839e+117
-5.4294331e+117
-5.4363441e+117
-5.4350941e+117
-5.4282716e+117
-5.5147561e+117
-5.5156073e+117
-5.5069786e+117
-5.5057833e+117
-5.5243521e+117
-5.5330598e+117
-5.5321102e+117
-5.5235414e+117
-5.3841837e+117
-5.3785005e+117
-5.3667748e+117
-5.3726366e+117
-5.3769307e+117
-5.3821205e+117
-5.3872057e+117
-5.3900971e+117
-5.3927231e+117
-5.3967603e+117
-5.3983404e+117
-5.4036709e+117
-5.4101126e+117
-5.3982173e+117
-5.3925335e+117
-5.3910118e+117
-5.3972019e+117
-5.4096906e+117
-5.4104362e+117
-5.4042435e+117
-5.4035036e+117
-5.3680717e+117
-5.3716773e+117
-5.3764198e+117
-5.373462e+117
-5.3869409e+117
-5.3815304e+117
-5.3792018e+117
-5.3850099e+117
-5.41762e+117
-5.4182688e+117
-5.4208907e+117
-5.4181832e+117
-5.4153106e+117
-5.4157159e+117
-5.4101709e+117
-5.4172387e+117
-5.4075046e+117
-5.4148482e+117
-5.42381e+117
-5.4383372e+117
-5.4327198e+117
-5.4287801e+117
-5.4164387e+117
-5.4300066e+117
-5.4225302e+117
-5.428942e+117
-5.4318939e+117
-5.4315703e+117
-5.404335e+117
-5.4000437e+117
-5.3954661e+117
-5.4006008e+117
-5.4101452e+117
-5.4064886e+117
-5.4124951e+117
-5.4159991e+117
-5.4138145e+117
-5.4267279e+117
-5.4048248e+117
-5.3997046e+117
-5.4024326e+117
-5.4119117e+117
-5.3950672e+117
-5.4253101e+117
-5.4180472e+117
-5.4106442e+117
-5.4224529e+117
-5.3987321e+117
-5.4052633e+117
-5.4190965e+117
-5.392843e+117
-5.3894017e+117
-5.3965679e+117
-5.3810959e+117
-5.3774578e+117
-5.3880695e+117
-5.3921849e+117
-5.3958903e+117
-5.3903494e+117
-5.3854736e+117
-5.4565053e+117
-5.4654715e+117
-5.4505707e+117
-5.4593769e+117
-5.4423199e+117
-5.4488112e+117
-5.4411746e+117
-5.4450978e+117
-5.4531765e+117
-5.437629e+117
-5.4341291e+117
-5.4292566e+117
-5.4363998e+117
-5.4356945e+117
-5.4428532e+117
-5.4388048e+117
-5.4319539e+117
-5.4360029e+117
-5.422571e+117
-5.4291629e+117
-5.425272e+117
-5.4188484e+117
-5.4771488e+117
-5.486509e+117
-5.4839926e+117
-5.4935495e+117
-5.4775317e+117
-5.4701009e+117
-5.4626616e+117
-5.4699581e+117
-5.4790051e+117
-5.4632015e+117
-5.4721469e+117
-5.4556793e+117
-5.4571092e+117
-5.4498746e+117
-5.4459051e+117
-5.4532028e+117
-5.4647012e+117
-5.4608591e+117
-5.4687001e+117
-5.4724691e+117
-5.4986255e+117
-5.5071122e+117
-5.4915463e+117
-5.5012639e+117
-5.5103129e+117
-5.4853882e+117
-5.4927927e+117
-5.500928e+117
-5.5077103e+117
-5.5154636e+117
-5.5090973e+117
-5.4805116e+117
-5.4882642e+117
-5.4768625e+117
-5.4847405e+117
-5.492751e+117
-5.4962413e+117
-5.5043786e+117
-5.5008578e+117
-5.517269e+117
-5.5232583e+117
-5.5312003e+117
-5.5254617e+117
-5.5338495e+117
-5.5394562e+117
-5.5478245e+117
-5.5422634e+117
-5.5380604e+117
-5.5262765e+117
-5.5295043e+117
-5.5349275e+117
-5.5126354e+117
-5.5209746e+117
-5.5175992e+117
-5.5091491e+117
-5.5682977e+117
-5.573701e+117
-5.5826457e+117
-5.5772384e+117
-5.5563207e+117
-5.5648972e+117
-5.5594252e+117
-5.5507919e+117
-5.5466738e+117
-5.5523048e+117
-5.5553605e+117
-5.5436538e+117
-5.5642802e+117
-5.5733245e+117
-5.5701203e+117
-5.5611283e+117
-5.5959169e+117
-5.6012115e+117
-5.5918802e+117
-5.5864881e+117
-5.5825723e+117
-5.592017e+117
-5.588778e+117
-5.5793509e+117
-5.5985162e+117
-5.6018049e+117
-5.6117906e+117
-5.6083815e+117
-5.610784e+117
-5.620606e+117
-5.6157144e+117
-5.6056748e+117
-5.3753041e+117
-5.3668367e+117
-5.4084512e+117
-5.4026645e+117
-5.4054241e+117
-3.9699962e+117
-3.8519447e+117
-3.6788325e+117
-3.8536291e+117
-3.9700913e+117
-3.8484805e+117
-3.8524589e+117
-3.9662752e+117
-3.9681497e+117
-4.0862118e+117
-4.0868153e+117
-4.0877742e+117
-4.2065505e+117
-4.2085282e+117
-4.2087318e+117
-4.0888009e+117
-4.2058382e+117
-4.203815e+117
-4.0838823e+117
-4.4531729e+117
-4.3291401e+117
-4.3294063e+117
-4.3306424e+117
-4.3287572e+117
-4.4534511e+117
-4.453891e+117
-4.4526785e+117
-4.4524835e+117
-4.3278395e+117
-4.4500335e+117
-4.3267859e+117
-4.5795902e+117
-4.5802008e+117
-4.5784367e+117
-4.5789157e+117
-4.5789177e+117
-4.7041134e+117
-4.7055862e+117
-4.707909e+117
-4.7074715e+117
-4.7065353e+117
-4.578782e+117
-4.7034107e+117
-4.6998868e+117
-4.5748838e+117
-4.8348422e+117
-4.8364871e+117
-4.8364345e+117
-4.8338242e+117
-4.9646018e+117
-4.9641477e+117
-4.9605624e+117
-4.9607096e+117
-5.0900605e+117
-5.0905619e+117
-5.0907886e+117
-5.2145334e+117
-5.2146915e+117
-5.2149742e+117
-5.3400177e+117
-5.3400284e+117
-5.4669978e+117
-5.4668954e+117
-3.4508471e+117
-3.6173666e+117
-3.6213137e+117
-3.7349416e+117
-3.7315565e+117
-3.8475817e+117
-3.8440782e+117
-3.9579873e+117
-3.9623031e+117
-4.0800308e+117
-4.1994922e+117
-4.1945721e+117
-4.075274e+117
-4.3218041e+117
-4.3165972e+117
-4.4386359e+117
-4.444863e+117
-3.2251326e+117
-3.5068773e+117
-3.3935436e+117
-3.3909331e+117
-3.5028336e+117
-3.7290641e+117
-3.6184323e+117
-3.6129704e+117
-3.7237699e+117
-3.835865e+117
-3.8406355e+117
-3.9484737e+117
-3.9530586e+117
-4.0689316e+117
-4.0636088e+117
-4.1807923e+117
-4.1872868e+117
-5.4366497e+117
-5.4337885e+117
-5.4406997e+117
-5.4390044e+117
-5.4495797e+117
-5.4366638e+117
-5.4409526e+117
-5.454264e+117
-5.4337197e+117
-5.4487371e+117
-5.4442608e+117
-5.4301654e+117
-5.4240057e+117
-5.4222252e+117
-5.4774143e+117
-5.4714128e+117
-5.4651943e+117
-5.4481994e+117
-5.4575514e+117
-5.4838669e+117
-5.4906814e+117
-5.5050354e+117
-5.4978977e+117
-5.5633193e+117
-5.5549786e+117
-5.5466283e+117
-5.5391341e+117
-5.525151e+117
-5.5317127e+117
-5.5196466e+117
-5.5454329e+117
-5.5535105e+117
-5.5297876e+117
-5.5373358e+117
-5.5132662e+117
-5.5162101e+117
-5.5225269e+117
-5.5185671e+117
-5.5120749e+117
-5.6276232e+117
-5.6373442e+117
-5.6089531e+117
-5.6181165e+117
-5.5997561e+117
-5.5902232e+117
-5.580737e+117
-5.5719276e+117
-5.5793652e+117
-5.5883859e+117
-5.561948e+117
-5.5704583e+117
-5.6068371e+117
-5.5976213e+117
-5.6162261e+117
-5.6257025e+117
-5.2283897e+117
-5.2514081e+117
-5.2324016e+117
-5.2523495e+117
-5.2509401e+117
-5.2593825e+117
-5.2648707e+117
-5.231815e+117
-5.232444e+117
-3.000997e+117
-3.1674422e+117
-3.2799228e+117
-3.2777907e+117
-3.1659081e+117
-3.3865681e+117
-3.3897411e+117
-3.4991028e+117
-3.4947939e+117
-3.6046697e+117
-3.6093927e+117
-3.7197269e+117
-3.714934e+117
-3.8261589e+117
-3.8312591e+117
-3.9378616e+117
-3.9434021e+117
-5.3307327e+117
-5.3261557e+117
-5.3357476e+117
-5.3410774e+117
-5.3330885e+117
-5.3411133e+117
-5.3453916e+117
-5.3515468e+117
-5.3463791e+117
-5.3499692e+117
-5.3545452e+117
-5.3568963e+117
-5.3622458e+117
-5.3590117e+117
-5.3613798e+117
-5.3529155e+117
-5.3574805e+117
-5.35323e+117
-5.3482246e+117
-5.3620029e+117
-5.3667382e+117
-5.3630603e+117
-5.3579269e+117
-5.3343658e+117
-5.3391688e+117
-5.3338058e+117
-5.3291414e+117
-5.3441608e+117
-5.3488511e+117
-5.3433701e+117
-5.3384564e+117
-5.2933515e+117
-5.2831778e+117
-5.2771269e+117
-5.2991308e+117
-5.3049266e+117
-5.3140359e+117
-5.320839e+117
-5.3190894e+117
-5.3237162e+117
-5.3256602e+117
-5.3185235e+117
-5.3223367e+117
-5.3281522e+117
-5.329973e+117
-5.324668e+117
-5.3297498e+117
-5.3188565e+117
-5.3216339e+117
-5.310162e+117
-5.314501e+117
-5.3202558e+117
-5.3207265e+117
-5.3182477e+117
-5.3092495e+117
-5.2791928e+117
-5.2781198e+117
-5.2705771e+117
-5.2944123e+117
-5.2844924e+117
-5.2750122e+117
-5.265888e+117
-5.286791e+117
-5.2956297e+117
-5.2816027e+117
-5.2779631e+117
-5.2824214e+117
-5.3131348e+117
-5.3066551e+117
-5.3126353e+117
-5.3026498e+117
-5.3125851e+117
-5.3076241e+117
-5.3086442e+117
-5.2924157e+117
-5.2671238e+117
-5.2793981e+117
-5.3066654e+117
-5.2972106e+117
-5.2766253e+117
-5.3124272e+117
-5.2952616e+117
-5.274209e+117
-5.2799649e+117
-5.3062552e+117
-5.2853287e+117
-5.322325e+117
-5.3335794e+117
-5.336489e+117
-5.3444246e+117
-5.3518284e+117
-5.3629537e+117
-5.3210109e+117
-5.3091294e+117
-5.3252295e+117
-5.3385134e+117
-5.3340229e+117
-5.3402311e+117
-5.3341922e+117
-5.3454212e+117
-5.3354699e+117
-5.3810748e+117
-5.3639126e+117
-5.3748516e+117
-5.3916082e+117
-5.3688232e+117
-5.3769318e+117
-5.3546229e+117
-5.3653742e+117
-5.3855154e+117
-5.3738171e+117
-5.3756252e+117
-5.3799504e+117
-5.3929503e+117
-5.3504731e+117
-5.343266e+117
-5.3462728e+117
-5.3407115e+117
-5.3584986e+117
-5.365084e+117
-5.3782058e+117
-5.3569765e+117
-5.3651317e+117
-5.366812e+117
-5.3680642e+117
-5.3522923e+117
-5.3996964e+117
-5.3924019e+117
-5.3769659e+117
-5.3869797e+117
-5.3796558e+117
-5.4079076e+117
-5.3770444e+117
-5.4061849e+117
-5.4113703e+117
-5.3955815e+117
-5.415415e+117
-5.3920094e+117
-5.4123656e+117
-5.3701987e+117
-5.3682411e+117
-5.3778838e+117
-5.3750855e+117
-5.3646086e+117
-5.3598443e+117
-5.3804945e+117
-5.3843421e+117
-5.3732871e+117
-5.3691579e+117
-5.3146458e+117
-5.3577309e+117
-5.3687736e+117
-5.3222806e+117
-5.3679989e+117
-5.3573588e+117
-5.3366504e+117
-5.3507907e+117
-5.3613082e+117
-5.3455451e+117
-5.3651712e+117
-5.3770294e+117
-5.3898228e+117
-5.376878e+117
-5.3814173e+117
-5.2871864e+117
-5.2924576e+117
-5.3238586e+117
-5.3166527e+117
-5.3985128e+117
-5.428027e+117
-5.4285326e+117
-5.4243649e+117
-5.4102557e+117
-5.410853e+117
-5.4184704e+117
-3.1658948e+117
-3.274937e+117
-3.2729383e+117
-3.1642376e+117
-3.381267e+117
-3.3840823e+117
-3.4923644e+117
-3.4887089e+117
-3.7119666e+117
-3.6018367e+117
-3.5975872e+117
-3.7070661e+117
-5.2959832e+117
-5.2978277e+117
-5.3315471e+117
-5.3287065e+117
-5.3001128e+117
-5.3026086e+117
-5.3343345e+117
-5.3369711e+117
-5.3872043e+117
-5.3909445e+117
-5.3369466e+117
-5.3342668e+117
-5.3832704e+117
-5.3866429e+117
-5.3465229e+117
-5.3103959e+117
-5.3121035e+117
-5.3479358e+117
-5.3081483e+117
-5.3440497e+117
-5.3451366e+117
-5.3089931e+117
-5.3767574e+117
-5.3824925e+117
-5.3309133e+117
-5.3270893e+117
-5.3742096e+117
-5.3795284e+117
-5.3404914e+117
-5.3047117e+117
-5.3066559e+117
-5.3424434e+117
-5.3038441e+117
-5.3037322e+117
-5.3391312e+117
-5.3385938e+117
-5.3294444e+117
-5.3307507e+117
-5.312819e+117
-5.2803016e+117
-5.2803516e+117
-5.3137357e+117
-5.2747273e+117
-5.2726445e+117
-5.2740778e+117
-5.2816347e+117
-5.2779182e+117
-5.2842955e+117
-5.3328518e+117
-5.3346602e+117
-5.3149587e+117
-5.3170461e+117
-5.2856442e+117
-5.2965283e+117
-5.2945694e+117
-5.2826023e+117
-5.285896e+117
-5.2817726e+117
-5.3215216e+117
-5.3262954e+117
-5.3107754e+117
-5.31276e+117
-5.301551e+117
-5.2930749e+117
-5.2737229e+117
-5.2592421e+117
-5.2952062e+117
-5.3062019e+117
-5.2721085e+117
-5.2781062e+117
-5.2753364e+117
-5.2705123e+117
-5.2764369e+117
-5.2835784e+117
-5.2786804e+117
-5.2854071e+117
-5.3379469e+117
-5.3363847e+117
-5.3169798e+117
-5.3187449e+117
-5.27831e+117
-5.2846301e+117
-5.2764355e+117
-5.283303e+117
-5.3170876e+117
-5.3355737e+117
-5.3355786e+117
-5.3168461e+117
-5.2835113e+117
-5.2899259e+117
-5.2867417e+117
-5.2922091e+117
-5.3436226e+117
-5.3424018e+117
-5.3234107e+117
-5.3250028e+117
-5.2801179e+117
-5.2868017e+117
-5.2810277e+117
-5.2879011e+117
-5.3408067e+117
-5.3395285e+117
-5.3199635e+117
-5.3217389e+117
-5.278252e+117
-5.2758607e+117
-5.2789248e+117
-5.2754838e+117
-5.280053e+117
-5.2809747e+117
-5.2838323e+117
-5.2888087e+117
-5.3197513e+117
-5.3038463e+117
-5.3208225e+117
-5.314617e+117
-5.3052376e+117
-5.3035236e+117
-5.3048831e+117
-5.3088525e+117
-5.3101721e+117
-5.3088486e+117
-5.3112374e+117
-5.3092348e+117
-5.314279e+117
-5.3132015e+117
-5.3168371e+117
-5.3197503e+117
-5.3191539e+117
-5.3324839e+117
-5.3264986e+117
-5.335562e+117
-5.3661706e+117
-5.3250801e+117
-5.3222584e+117
-5.3278996e+117
-5.3348407e+117
-5.3249597e+117
-5.3091788e+117
-5.3241259e+117
-5.3111082e+117
-5.3039555e+117
-5.3122788e+117
-5.3376968e+117
-5.3160789e+117
-5.3192568e+117
-5.3345981e+117
-5.3313721e+117
-5.3372112e+117
-5.3365248e+117
-5.3416821e+117
-5.3428371e+117
-5.350312e+117
-5.3498905e+117
-5.3439444e+117
-5.3463717e+117
-5.3459435e+117
-5.333024e+117
-5.3433734e+117
-5.3362565e+117
-5.3412628e+117
-5.3313411e+117
-5.3410983e+117
-5.3309065e+117
-5.3518623e+117
-5.3538107e+117
-5.3566646e+117
-5.353087e+117
-5.3554299e+117
-5.359517e+117
-5.3617286e+117
-5.3574075e+117
-5.3456491e+117
-5.347876e+117
-5.3560562e+117
-5.3576963e+117
-5.3413815e+117
-5.3519879e+117
-5.3539391e+117
-5.3433033e+117
-5.3744995e+117
-5.3696181e+117
-5.3683931e+117
-5.3736079e+117
-5.3719806e+117
-5.3663739e+117
-5.3646847e+117
-5.370327e+117
-5.3376929e+117
-5.3396406e+117
-5.3484823e+117
-5.3502312e+117
-5.3476116e+117
-5.3372444e+117
-5.347144e+117
-5.3371337e+117
-5.3590426e+117
-5.3636451e+117
-5.36512e+117
-5.3598489e+117
-5.3686384e+117
-5.3629663e+117
-5.3612628e+117
-5.3668479e+117
-5.3557084e+117
-5.3474047e+117
-5.3447204e+117
-5.3575909e+117
-5.3694518e+117
-5.3743849e+117
-3.1609697e+117
-3.269962e+117
-3.2674318e+117
-3.1586463e+117
-3.3757873e+117
-3.3787363e+117
-3.4865939e+117
-3.4833527e+117
-5.7101445e+117
-5.5922028e+117
-6.145887e+117
-6.1682695e+117
-6.1702892e+117
-6.204798e+117
-6.2346316e+117
-6.2125271e+117
-6.1770946e+117
-6.2357757e+117
-6.2206292e+117
-6.1808752e+117
-6.233868e+117
-6.2211673e+117
-6.191374e+117
-6.1728848e+117
-6.237591e+117
-6.2374063e+117
-6.2250755e+117
-6.2062508e+117
-6.209247e+117
-6.2068097e+117
-6.1723502e+117
-6.1769552e+117
-6.1832414e+117
-6.1797496e+117
-6.164287e+117
-6.1533643e+117
-6.1685379e+117
-6.0767917e+117
-6.1252157e+117
-6.1222135e+117
-6.1196955e+117
-6.0715771e+117
-6.0685554e+117
-6.037172e+117
-6.117116e+117
-6.1636445e+117
-6.1219469e+117
-6.0593092e+117
-6.0237061e+117
-6.0699129e+117
-6.1259358e+117
-6.0242324e+117
-6.0737925e+117
-6.1258442e+117
-6.1295962e+117
-6.1718732e+117
-6.1641059e+117
-6.1241669e+117
-6.080335e+117
-6.1230472e+117
-6.0701747e+117
-6.195906e+117
-6.097289e+117
-6.2564605e+117
-6.0974665e+117
-6.4467983e+117
-6.882657e+117
-6.3150088e+117
-5.4572967e+117
-6.1440502e+117
-7.1733463e+117
-6.2451593e+117
-7.9312411e+117
-8.0230117e+117
-6.3276394e+117
-6.5640535e+117
-6.4550384e+117
-6.2449727e+117
-6.5452241e+117
-8.1586824e+117
-7.3005479e+117
-6.5124379e+117
-6.3910778e+117
-6.2740278e+117
-6.3793693e+117
-6.0305306e+117
-6.0710852e+117
-6.0859932e+117
-6.0436418e+117
-6.0774861e+117
-6.129801e+117
-6.0505201e+117
-6.0130841e+117
-6.2877542e+117
-6.192988e+117
-6.1181404e+117
-6.2829851e+117
-6.0304648e+117
-6.0546264e+117
-6.1082101e+117
-6.233665e+117
-6.0908167e+117
-6.0621571e+117
-6.0327055e+117
-6.8599632e+117
-6.3393007e+117
-8.451998e+116
-5.9961415e+117
-6.1602408e+117
-6.1368758e+117
-6.112093e+117
-6.0302135e+117
-6.7839388e+117
-6.7199422e+117
-8.0414888e+117
-8.1762733e+117
-1.1026914e+118
-2.3847885e+117
-6.67866e+117
-7.2732859e+117
-6.857946e+117
-6.9018092e+117
-7.8766835e+117
-6.7917434e+117
-6.4474853e+117
-6.3718478e+117
-6.9508098e+117
-6.0442663e+117
-6.0794219e+117
-6.0599519e+117
-6.1022817e+117
-6.0862077e+117
-6.0497005e+117
-6.057891e+117
-6.0577527e+117
-6.0189179e+117
-6.0205599e+117
-6.0922582e+117
-6.0614373e+117
-6.0261533e+117
-6.0546424e+117
-6.0279388e+117
-6.1145916e+117
-6.1315736e+117
-6.0062922e+117
-6.0055144e+117
-6.0067238e+117
-5.6787907e+117
-6.3759655e+117
-6.2927271e+117
-6.1483943e+117
-6.3480784e+117
-6.0869869e+117
-6.510404e+117
-6.0526297e+117
-6.0220877e+117
-6.0510685e+117
-6.2582514e+117
-6.1739108e+117
-6.0134265e+117
-6.0255173e+117
-5.9911821e+117
-6.0109262e+117
-6.0105398e+117
-6.0132159e+117
-6.022921e+117
-6.0802229e+117
-4.6953003e+117
-4.6911459e+117
-4.6926147e+117
-4.5647565e+117
-4.5639974e+117
-4.4407573e+117
-4.1356105e+117
-4.3174955e+117
-4.3180024e+117
-4.3173582e+117
-4.3146539e+117
-4.4373548e+117
-4.4414657e+117
-4.4429035e+117
-4.5593435e+117
-4.6814411e+117
-4.6864268e+117
-4.5687047e+117
-4.566871e+117
-4.0756904e+117
-4.1936009e+117
-4.1877496e+117
-4.0702041e+117
-3.8980931e+117
-4.4328674e+117
-4.3127149e+117
-4.3058727e+117
-4.4236815e+117
-4.5462695e+117
-4.5557204e+117
-4.6695447e+117
-4.6770625e+117
-4.6617923e+117
-4.4157644e+117
-4.5371719e+117
-4.2979148e+117
-4.1803752e+117
-3.8387113e+117
-3.9523183e+117
-3.9464151e+117
-3.8332932e+117
-3.667037e+117
-4.0657895e+117
-4.0582277e+117
-4.169528e+117
-4.2845394e+117
-4.4016453e+117
-4.5236824e+117
-4.6500323e+117
-4.3886889e+117
-4.2733491e+117
-4.1616141e+117
-3.941173e+117
-4.0518783e+117
-3.4403857e+117
-3.6085194e+117
-3.7209636e+117
-3.7169256e+117
-3.6054788e+117
-3.8311249e+117
-3.8254866e+117
-3.9332023e+117
-4.0421769e+117
-4.1510454e+117
-4.2619058e+117
-4.3766242e+117
-4.7767697e+117
-4.7730504e+117
-4.9301129e+117
-4.9350014e+117
-3.2160518e+117
-3.3820918e+117
-3.494238e+117
-3.4916784e+117
-3.3796179e+117
-3.6035869e+117
-3.7121984e+117
-3.70876e+117
-3.6010834e+117
-3.9285932e+117
-3.8208186e+117
-3.8158383e+117
-3.9219092e+117
-4.0285812e+117
-4.0362855e+117
-4.1428024e+117
-4.1351258e+117
-4.9434091e+117
-3.3785446e+117
-3.487512e+117
-3.4852383e+117
-3.3761232e+117
-3.5967246e+117
-3.7044559e+117
-3.7013988e+117
-3.5943882e+117
-3.9183919e+117
-3.8118607e+117
-3.8076472e+117
-3.9129439e+117
-3.5903634e+117
-3.6976619e+117
-3.6952159e+117
-3.5884379e+117
-5.7273798e+117
-5.7550387e+117
-5.7621536e+117
-5.8409075e+117
-5.8423099e+117
-5.915788e+117
-5.9156989e+117
-5.6509194e+117
-5.6376667e+117
-5.6142668e+117
-5.3960705e+117
-5.5071184e+117
-5.3844877e+117
-5.5023347e+117
-5.3817998e+117
-5.4708234e+117
-5.3885416e+117
-5.4124819e+117
-4.8084471e+117
-4.8099011e+117
-4.8114305e+117
-4.8142188e+117
-4.9304103e+117
-4.930851e+117
-4.9327602e+117
-4.93709e+117
-4.9494744e+117
-4.9434598e+117
-4.818795e+117
-4.8232067e+117
-4.8049391e+117
-4.9289832e+117
-5.055376e+117
-5.0515936e+117
-5.0489659e+117
-5.0491124e+117
-5.0524339e+117
-5.0595499e+117
-5.2031005e+117
-5.1709326e+117
-5.1815575e+117
-5.1929399e+117
-5.0683527e+117
-5.0763258e+117
-5.1727225e+117
-5.1648278e+117
-5.1650755e+117
-5.1826601e+117
-5.2998498e+117
-5.2853621e+117
-5.2785244e+117
-5.2749112e+117
-5.2770859e+117
-5.5437317e+117
-4.8008713e+117
-4.9276224e+117
-4.9261427e+117
-4.7961486e+117
-4.9262194e+117
-5.0947303e+117
-5.4442591e+117
-5.4299454e+117
-5.4477118e+117
-5.4624944e+117
-5.3999851e+117
-5.4127168e+117
-5.4743821e+117
-5.463523e+117
-5.4551575e+117
-5.484556e+117
-5.422334e+117
-5.4291592e+117
-5.4350653e+117
-5.4397333e+117
-5.4704256e+117
-5.4764449e+117
-5.5006729e+117
-5.4932636e+117
-5.5422802e+117
-5.5439884e+117
-5.5360535e+117
-5.5499879e+117
-5.5297439e+117
-5.5237172e+117
-5.531916e+117
-5.5377917e+117
-5.547074e+117
-5.5394716e+117
-5.5452608e+117
-5.5528378e+117
-5.5515896e+117
-5.5592451e+117
-5.5655384e+117
-5.5577222e+117
-5.5077987e+117
-5.5145847e+117
-5.4942766e+117
-5.5008313e+117
-5.5048538e+117
-5.5111424e+117
-5.5210267e+117
-5.5148808e+117
-5.5179903e+117
-5.5244911e+117
-5.5341324e+117
-5.5276962e+117
-5.481345e+117
-5.487201e+117
-5.4975958e+117
-5.4923206e+117
-5.4693115e+117
-5.476326e+117
-5.4822914e+117
-5.4880608e+117
-5.4930616e+117
-5.5031783e+117
-5.5088349e+117
-5.4987842e+117
-5.5156835e+117
-5.5068992e+117
-5.5020275e+117
-5.5109828e+117
-5.5260199e+117
-5.5235142e+117
-5.518766e+117
-5.5308678e+117
-5.5337799e+117
-5.5284377e+117
-5.5359972e+117
-5.5413853e+117
-5.51217e+117
-5.5177285e+117
-5.5260713e+117
-5.5206936e+117
-5.4711035e+117
-5.4732717e+117
-5.4838111e+117
-5.4813875e+117
-5.4874304e+117
-5.4769709e+117
-5.4750663e+117
-5.4855751e+117
-5.4937891e+117
-5.4954789e+117
-5.5031258e+117
-5.501518e+117
-5.4893568e+117
-5.4920029e+117
-5.4997395e+117
-5.4969983e+117
-5.4469983e+117
-5.4492033e+117
-5.4623244e+117
-5.4602727e+117
-5.4531308e+117
-5.4661838e+117
-5.4641878e+117
-5.4512349e+117
-5.478205e+117
-5.4666643e+117
-5.4740457e+117
-5.4611711e+117
-5.4696064e+117
-5.4564863e+117
-5.4623727e+117
-5.4747243e+117
-5.4859406e+117
-5.4885434e+117
-5.4974718e+117
-5.4847123e+117
-5.4802348e+117
-5.494659e+117
-5.4905635e+117
-5.4959792e+117
-5.5048637e+117
-5.5052592e+117
-5.5125923e+117
-5.5198128e+117
-5.5124389e+117
-5.5100876e+117
-5.502498e+117
-5.5060411e+117
-5.4983936e+117
-5.5432668e+117
-5.5503029e+117
-5.5553108e+117
-5.5484907e+117
-5.5547367e+117
-5.5523669e+117
-5.5478806e+117
-5.5590165e+117
-5.5332786e+117
-5.5380882e+117
-5.5453931e+117
-5.5407197e+117
-5.5619652e+117
-5.5569717e+117
-5.5636633e+117
-5.5686282e+117
-5.5695578e+117
-5.5745252e+117
-5.5792657e+117
-5.5743354e+117
-5.5836177e+117
-5.5788566e+117
-5.5831908e+117
-5.5879513e+117
-5.5742814e+117
-5.5700595e+117
-5.5786743e+117
-5.5745024e+117
-5.5606663e+117
-5.5649104e+117
-5.5699495e+117
-5.5658255e+117
-5.5976759e+117
-5.5966421e+117
-5.591588e+117
-5.6028109e+117
-5.5846689e+117
-5.5797038e+117
-5.5853292e+117
-5.5903149e+117
-5.5933589e+117
-5.5890018e+117
-5.594758e+117
-5.5991874e+117
-5.6012088e+117
-5.6075921e+117
-5.6122823e+117
-5.6057556e+117
-5.5609819e+117
-5.5541529e+117
-5.559962e+117
-5.5668652e+117
-5.5734286e+117
-5.5664328e+117
-5.572804e+117
-5.5798961e+117
-5.586178e+117
-5.5799617e+117
-5.5864295e+117
-5.5924006e+117
-5.5675339e+117
-5.573427e+117
-5.5798295e+117
-5.5740807e+117
-5.5270327e+117
-5.5313437e+117
-5.5366948e+117
-5.532161e+117
-5.5340684e+117
-5.5365769e+117
-5.5421039e+117
-5.5395089e+117
-5.5438434e+117
-5.5463476e+117
-5.5504723e+117
-5.5479327e+117
-5.5361612e+117
-5.5409082e+117
-5.5449496e+117
-5.5401589e+117
-5.5078894e+117
-5.5096147e+117
-5.5167715e+117
-5.5148658e+117
-5.5030104e+117
-5.5059352e+117
-5.5127265e+117
-5.5094692e+117
-5.5154793e+117
-5.5191544e+117
-5.5258345e+117
-5.5218353e+117
-5.521467e+117
-5.5235612e+117
-5.5307253e+117
-5.5283277e+117
-5.5407375e+117
-5.533742e+117
-5.53884e+117
-5.5315542e+117
-5.5342791e+117
-5.5269211e+117
-5.5194073e+117
-5.5264596e+117
-5.5243812e+117
-5.5169134e+117
-5.5199958e+117
-5.5126264e+117
-5.5342473e+117
-5.5269696e+117
-5.5416043e+117
-5.548599e+117
-5.5519284e+117
-5.5467849e+117
-5.5448123e+117
-5.5401261e+117
-5.5456654e+117
-5.5502387e+117
-5.5640885e+117
-5.5563047e+117
-5.5605256e+117
-5.568346e+117
-5.5546433e+117
-5.5598021e+117
-5.5543198e+117
-5.5497305e+117
-5.5539293e+117
-5.5585208e+117
-5.5402865e+117
-5.5480217e+117
-5.5415164e+117
-5.5337081e+117
-5.5270909e+117
-5.5269223e+117
-5.5347228e+117
-5.5197505e+117
-5.5363313e+117
-5.5431843e+117
-5.5454037e+117
-5.5517351e+117
-5.5395736e+117
-5.5299795e+117
-5.5497998e+117
-5.5562904e+117
-5.5648985e+117
-5.5582442e+117
-5.5632381e+117
-5.5692456e+117
-5.5762411e+117
-5.5772287e+117
-5.5842064e+117
-5.57113e+117
-5.5476937e+117
-5.5533659e+117
-5.5599609e+117
-5.5612072e+117
-5.5680662e+117
-5.5553236e+117
-5.583141e+117
-5.5901063e+117
-5.5979725e+117
-5.5910516e+117
-5.5666701e+117
-5.5734769e+117
-5.581845e+117
-5.5749148e+117
-5.5796459e+117
-5.5707698e+117
-5.5632718e+117
-5.572018e+117
-5.5546446e+117
-5.5473661e+117
-5.5549347e+117
-5.5622779e+117
-5.5703875e+117
-5.5628092e+117
-5.5711832e+117
-5.578706e+117
-5.5790264e+117
-5.5873759e+117
-5.5965438e+117
-5.5879984e+117
-5.5884796e+117
-5.580737e+117
-5.5892124e+117
-5.5970824e+117
-5.6054163e+117
-5.5975001e+117
-5.6053103e+117
-5.6132146e+117
-5.6219095e+117
-5.6141038e+117
-5.6307819e+117
-5.6229715e+117
-5.5969256e+117
-5.6057082e+117
-5.614495e+117
-5.60561e+117
-5.6135894e+117
-5.6197042e+117
-5.6267966e+117
-5.6245178e+117
-5.6316723e+117
-5.6182858e+117
-5.6035239e+117
-5.6093624e+117
-5.6163269e+117
-5.6145501e+117
-5.6215906e+117
-5.6086099e+117
-5.6337488e+117
-5.6406935e+117
-5.64565e+117
-5.6386581e+117
-5.6231788e+117
-5.630031e+117
-5.6354142e+117
-5.6285074e+117
-5.5924482e+117
-5.5983249e+117
-5.6051056e+117
-5.6041906e+117
-5.6109802e+117
-5.5983027e+117
-5.5787343e+117
-5.5847288e+117
-5.5916771e+117
-5.591878e+117
-5.5987002e+117
-5.5858965e+117
-5.6118297e+117
-5.6185849e+117
-5.6244832e+117
-5.6177001e+117
-5.5985108e+117
-5.6053571e+117
-5.6121894e+117
-5.6054231e+117
-5.6530438e+117
-5.64806e+117
-5.6560298e+117
-5.661054e+117
-5.6427539e+117
-5.6373375e+117
-5.6452347e+117
-5.6507021e+117
-5.6629107e+117
-5.6594847e+117
-5.653974e+117
-5.6684475e+117
-5.6648284e+117
-5.6698979e+117
-5.6789288e+117
-5.6738229e+117
-5.62048e+117
-5.6126442e+117
-5.6194164e+117
-5.6272218e+117
-5.6317263e+117
-5.6258094e+117
-5.633615e+117
-5.6395801e+117
-5.6482674e+117
-5.6422453e+117
-5.6510995e+117
-5.6571733e+117
-5.6291216e+117
-5.6358373e+117
-5.6446611e+117
-5.637949e+117
-5.5916735e+117
-5.5873011e+117
-5.5920957e+117
-5.5965222e+117
-5.5828322e+117
-5.5786094e+117
-5.5825726e+117
-5.5869789e+117
-5.6125969e+117
-5.6168901e+117
-5.597605e+117
-5.6021303e+117
-5.6080589e+117
-5.6034876e+117
-5.623555e+117
-5.6192016e+117
-5.6257265e+117
-5.6302019e+117
-5.6166612e+117
-5.6101171e+117
-5.614712e+117
-5.6212352e+117
-5.5646194e+117
-5.5625316e+117
-5.5578669e+117
-5.5681357e+117
-5.5662101e+117
-5.5616857e+117
-5.5724506e+117
-5.5761597e+117
-5.6320358e+117
-5.6382026e+117
-5.6454631e+117
-5.642861e+117
-5.650199e+117
-5.6365505e+117
-5.6228023e+117
-5.6289219e+117
-5.6361924e+117
-5.6335553e+117
-5.6407882e+117
-5.6274359e+117
-5.6478756e+117
-5.6432867e+117
-5.6503273e+117
-5.6549501e+117
-5.6596999e+117
-5.6525952e+117
-5.6573739e+117
-5.6645336e+117
-5.6721078e+117
-5.6672225e+117
-5.6802947e+117
-5.6753617e+117
-5.6624811e+117
-5.6577804e+117
-5.6705725e+117
-5.6658298e+117
-5.6747164e+117
-5.6794914e+117
-5.6885824e+117
-5.6837745e+117
-5.6843278e+117
-5.6934776e+117
-5.6984859e+117
-5.6893093e+117
-5.9766515e+117
-6.0242814e+117
-6.0615307e+117
-6.0782363e+117
-6.0617049e+117
-6.0779814e+117
-6.0789061e+117
-6.080169e+117
-4.582371e+117
-4.5105101e+117
-5.3189378e+117
-5.3167143e+117
-4.8672669e+117
-4.9333544e+117
-4.8511919e+117
-5.3039791e+117
-5.3056227e+117
-4.9019216e+117
-4.6252165e+117
-4.5809325e+117
-4.8687229e+117
-5.2270832e+117
-5.222048e+117
-4.8886752e+117
-4.9028435e+117
-5.2056356e+117
-5.1804427e+117
-4.9337755e+117
-4.5057947e+117
-4.8212243e+117
-5.1969595e+117
-5.193077e+117
-4.8566206e+117
-5.7511442e+117
-5.4733492e+117
-5.4993883e+117
-5.7811482e+117
-5.5064589e+117
-5.8015332e+117
-5.5425073e+117
-5.7692235e+117
-5.4937201e+117
-5.5119822e+117
-5.7354952e+117
-5.4604135e+117
-5.4853713e+117
-5.4459154e+117
-5.3709191e+117
-5.3908063e+117
-5.4404517e+117
-5.1865885e+117
-5.1725625e+117
-4.8608871e+117
-4.9255387e+117
-9.8370241e+116
-5.2145827e+116
-5.0563963e+116
-7.9749735e+116
-5.2798726e+117
-5.0200467e+117
-8.2207893e+116
-1.5757081e+116
-5.1356971e+116
-3.7771645e+116
-5.2461203e+117
-4.9762986e+117
-2.2053054e+117
-3.1643343e+117
-4.0033539e+117
-4.6913484e+117
-4.3715544e+117
-3.718858e+116
-1.8707469e+117
-3.4621522e+117
-4.0059473e+117
-3.5495872e+117
-4.6343042e+117
-4.2612443e+117
-9.3333816e+116
-3.2574434e+117
-3.2901982e+117
-3.8818869e+117
-3.2485105e+117
-3.3753387e+117
-3.0031046e+117
-2.9051423e+117
-3.0480502e+117
-3.7853628e+117
-3.8022199e+117
-3.8362817e+117
-3.3143181e+117
-2.9090357e+117
-3.3199758e+117
-3.3195554e+117
-2.8718355e+117
-2.8272225e+117
-2.6577243e+117
-2.8241375e+117
-3.2831186e+117
-3.11264e+117
-4.5204457e+117
-4.5622572e+117
-4.1198562e+117
-4.1691858e+117
-4.1581383e+117
-4.1781012e+117
-3.4294308e+117
-3.2909378e+117
-3.0895951e+117
-4.1373681e+117
-3.7822408e+117
-3.7348376e+117
-4.0400513e+117
-3.2786696e+117
-2.7225507e+117
-2.4240244e+117
-2.4207565e+117
-1.9676604e+117
-1.181908e+117
-8.9015594e+116
-2.1488988e+117
-3.6301493e+116
-2.5758377e+117
-1.4164213e+117
-1.885532e+117
-6.0550673e+117
-5.9257647e+117
-6.0116488e+117
-5.9348997e+117
-6.013612e+117
-5.9318667e+117
-6.0118264e+117
-5.9108983e+117
-6.0588274e+117
-6.0604965e+117
-6.0612079e+117
-1.8027374e+117
-5.6606477e+117
-5.6508959e+117
-5.7615408e+117
-4.957155e+117
-4.9535309e+117
-4.8259206e+117
-4.6986788e+117
-4.8287237e+117
-4.7012031e+117
-4.5749826e+117
-4.4485661e+117
-4.5725008e+117
-4.4461048e+117
-3.9039579e+117
-4.0804761e+117
-4.0797064e+117
-4.2006205e+117
-4.2019055e+117
-4.3244468e+117
-4.3222656e+117
-3.6723917e+117
-3.4451245e+117
-5.7129551e+117
-5.7239871e+117
-5.7021321e+117
-5.6931703e+117
-5.6443425e+117
-5.6844908e+117
-5.6700791e+117
-5.6760167e+117
-5.7031115e+117
-5.7084259e+117
-5.6494385e+117
-5.7705474e+117
-5.7746759e+117
-5.736323e+117
-5.7498984e+117
-5.7394333e+117
-5.7336779e+117
-5.7422633e+117
-5.7700373e+117
-5.7834333e+117
-5.7839743e+117
-5.6483233e+117
-5.639571e+117
-5.6307054e+117
-5.6396365e+117
-5.6174212e+117
-5.6322017e+117
-5.6265256e+117
-5.6232098e+117
-5.6417294e+117
-5.6360743e+117
-5.6516475e+117
-5.6460614e+117
-5.6489038e+117
-5.6574484e+117
-5.667426e+117
-5.6588147e+117
-5.5987842e+117
-5.6050621e+117
-5.6145435e+117
-5.6085181e+117
-5.595668e+117
-5.5890887e+117
-5.580126e+117
-5.586907e+117
-5.6130935e+117
-5.6040123e+117
-5.5954468e+117
-5.6046678e+117
-5.6129183e+117
-5.6218362e+117
-5.6312382e+117
-5.6222205e+117
-5.6138924e+117
-5.6223004e+117
-5.6314916e+117
-5.6229268e+117
-5.6314994e+117
-5.6401298e+117
-5.6479359e+117
-5.6392957e+117
-5.6592035e+117
-5.6493581e+117
-5.657179e+117
-5.6670724e+117
-5.6313103e+117
-5.6406174e+117
-5.6503468e+117
-5.6408677e+117
-5.6492959e+117
-5.6578898e+117
-5.6676417e+117
-5.658914e+117
-5.6678256e+117
-5.6757369e+117
-5.6847738e+117
-5.6767243e+117
-5.6862506e+117
-5.6944571e+117
-5.7048354e+117
-5.6964901e+117
-5.6670257e+117
-5.676972e+117
-5.6870743e+117
-5.6770728e+117
-5.7312246e+117
-5.722659e+117
-5.713076e+117
-5.7031448e+117
-5.7250762e+117
-5.7148287e+117
-5.7234443e+117
-5.7338155e+117
-5.7348856e+117
-5.7437018e+117
-5.7526577e+117
-5.7437235e+117
-5.6767931e+117
-5.6716491e+117
-5.6819674e+117
-5.6875062e+117
-5.6954258e+117
-5.6895181e+117
-5.6932935e+117
-5.7046213e+117
-5.684072e+117
-5.6948164e+117
-5.7031051e+117
-5.7131025e+117
-5.7615752e+117
-5.76231e+117
-5.7526044e+117
-5.7713042e+117
-5.7619561e+117
-5.7636142e+117
-5.7529195e+117
-5.772501e+117
-5.7321323e+117
-5.7416731e+117
-5.7523406e+117
-5.7426622e+117
-5.7824072e+117
-5.7735148e+117
-5.7826021e+117
-5.7916348e+117
-5.7037079e+117
-5.6978392e+117
-5.7067776e+117
-5.712951e+117
-5.7238525e+117
-5.7173948e+117
-5.7265455e+117
-5.7329886e+117
-5.7420723e+117
-5.7317577e+117
-5.7408165e+117
-5.751125e+117
-5.7115501e+117
-5.7208179e+117
-5.7309317e+117
-5.7215911e+117
-5.7944075e+117
-5.7821493e+117
-5.7939514e+117
-5.7714995e+117
-5.7830635e+117
-5.8052025e+117
-5.8113657e+117
-5.8219784e+117
-5.822306e+117
-5.8329048e+117
-5.8152484e+117
-5.8245015e+117
-5.8322857e+117
-5.842907e+117
-5.8413738e+117
-5.8520316e+117
-5.79214e+117
-5.8040674e+117
-5.8014066e+117
-5.8134289e+117
-5.7344866e+117
-5.7460024e+117
-5.7412424e+117
-5.752601e+117
-5.7638638e+117
-5.7560419e+117
-5.7725623e+117
-5.7851411e+117
-5.7815619e+117
-5.7929035e+117
-5.7724175e+117
-5.7833338e+117
-5.7898946e+117
-5.8010525e+117
-5.8006533e+117
-5.8113415e+117
-5.7495453e+117
-5.7609448e+117
-5.7604834e+117
-5.7718702e+117
-5.6771101e+117
-5.6857914e+117
-5.680422e+117
-5.6716293e+117
-5.7057406e+117
-5.7006746e+117
-5.7107207e+117
-5.715812e+117
-5.6896836e+117
-5.6995136e+117
-5.7052314e+117
-5.6952173e+117
-5.6912244e+117
-5.6824757e+117
-5.687584e+117
-5.6963554e+117
-5.6465352e+117
-5.6532702e+117
-5.6619435e+117
-5.6551633e+117
-5.6643837e+117
-5.6713082e+117
-5.6813288e+117
-5.6743524e+117
-5.6841649e+117
-5.6780312e+117
-5.6880017e+117
-5.6939629e+117
-5.6597497e+117
-5.6747257e+117
-5.6685252e+117
-5.6658474e+117
-5.6966109e+117
-5.7025049e+117
-5.7115178e+117
-5.7055871e+117
-5.6831e+117
-5.6921902e+117
-5.6990923e+117
-5.6900397e+117
-5.7152663e+117
-5.7257299e+117
-5.7318149e+117
-5.7212686e+117
-5.7019383e+117
-5.7192719e+117
-5.7123847e+117
-5.7088151e+117
-5.7138977e+117
-5.70821e+117
-5.7229955e+117
-5.717302e+117
-5.7271485e+117
-5.7328993e+117
-5.7436654e+117
-5.7378016e+117
-5.7545692e+117
-5.7493267e+117
-5.7384786e+117
-5.7437494e+117
-5.7193462e+117
-5.7245694e+117
-5.7337372e+117
-5.7284992e+117
-5.7710562e+117
-5.7649e+117
-5.7780368e+117
-5.787232e+117
-5.7933376e+117
-5.7841887e+117
-5.7989082e+117
-5.7766331e+117
-5.7897499e+117
-5.7814155e+117
-5.7945907e+117
-5.80391e+117
-5.746116e+117
-5.7390722e+117
-5.7517388e+117
-5.7607295e+117
-5.7680498e+117
-5.7590014e+117
-5.7747453e+117
-5.7527261e+117
-5.7656997e+117
-5.7588523e+117
-5.7718633e+117
-5.7809992e+117
-5.7909555e+117
-5.7983499e+117
-5.8073845e+117
-5.8000544e+117
-5.7900677e+117
-5.7837453e+117
-5.7936191e+117
-5.7999953e+117
-5.7697081e+117
-5.7795182e+117
-5.7869028e+117
-5.7770554e+117
-5.8141217e+117
-5.8050576e+117
-5.8115113e+117
-5.8206536e+117
-5.7963426e+117
-5.8023917e+117
-5.8123297e+117
-5.806293e+117
-5.81786e+117
-5.8239186e+117
-5.8331112e+117
-5.8270264e+117
-5.8348909e+117
-5.8295903e+117
-5.8387998e+117
-5.8441089e+117
-5.8079658e+117
-5.8131009e+117
-5.8231889e+117
-5.8179525e+117
-5.8603236e+117
-5.843043e+117
-5.8554497e+117
-5.8369517e+117
-5.8493342e+117
-5.8663974e+117
-5.8767995e+117
-5.8874054e+117
-5.8828842e+117
-5.8934146e+117
-5.8721078e+117
-5.8774877e+117
-5.8885215e+117
-5.8990001e+117
-5.8938788e+117
-5.9043319e+117
-5.8487231e+117
-5.8611491e+117
-5.854051e+117
-5.8664787e+117
-5.8328904e+117
-5.817242e+117
-5.8294782e+117
-5.809894e+117
-5.821942e+117
-5.8404533e+117
-5.8495173e+117
-5.8602017e+117
-5.8571967e+117
-5.86787e+117
-5.8473833e+117
-5.8539779e+117
-5.8641383e+117
-5.8748234e+117
-5.8706737e+117
-5.8813365e+117
-5.8239883e+117
-5.8363422e+117
-5.8305373e+117
-5.8429364e+117
-5.6925394e+117
-5.7013667e+117
-5.7062915e+117
-5.6974109e+117
-5.8686927e+117
-5.818134e+117
-5.8282556e+117
-5.8332173e+117
-5.8449258e+117
-5.839994e+117
-5.8492268e+117
-5.8541939e+117
-5.8548e+117
-5.8498714e+117
-5.8591559e+117
-5.8639651e+117
-5.8880324e+117
-5.9003908e+117
-5.9112966e+117
-5.9160747e+117
-5.9051394e+117
-5.9019537e+117
-5.9065577e+117
-5.883168e+117
-5.8956199e+117
-5.8784893e+117
-5.8909539e+117
-5.9181805e+117
-5.9286336e+117
-5.922743e+117
-5.9332386e+117
-5.9322782e+117
-5.9275144e+117
-5.9379517e+117
-5.9427266e+117
-5.8826741e+117
-5.8641842e+117
-5.8767507e+117
-5.8592016e+117
-5.8716601e+117
-5.8877471e+117
-5.898986e+117
-5.9041558e+117
-5.9146017e+117
-5.9094525e+117
-5.8974118e+117
-5.8926782e+117
-5.9136608e+117
-5.9090017e+117
-5.9194549e+117
-5.9241152e+117
-5.8691098e+117
-5.8817089e+117
-5.873887e+117
-5.8864527e+117
-5.9420104e+117
-5.9371784e+117
-5.9474934e+117
-5.9521709e+117
-5.95064e+117
-5.9464761e+117
-5.9565621e+117
-5.9606698e+117
-5.7914191e+117
-5.7803884e+117
-4.5730321e+117
-4.6365202e+117
-2.2031488e+117
-4.7826323e+117
-4.7915459e+117
-4.0582552e+117
-4.5238311e+117
-4.0540135e+117
-3.1670516e+117
-4.389477e+117
-3.6908809e+117
-4.149954e+117
-3.2902008e+117
-3.9391777e+117
-4.7424694e+117
-4.5939947e+117
-4.419756e+117
-4.2773738e+117
-4.4588373e+117
-4.0162602e+117
-3.6744256e+117
-3.709106e+117
-3.1088412e+117
-3.0065563e+117
-2.326689e+117
-2.5156958e+117
-1.7501252e+117
-2.4589098e+117
-3.0471859e+117
-2.8719477e+117
-1.6863911e+117
-1.7668442e+117
-1.7379675e+117
-2.6380129e+117
-4.5013158e+117
-4.113725e+117
-1.6945367e+117
-2.7623794e+117
-2.0805793e+117
-3.6413144e+117
-1.232446e+117
-4.2688131e+116
-4.6022375e+116
-1.0156068e+117
-1.9295325e+117
-1.1856461e+117
-1.5056882e+117
-5.0293041e+117
-4.8783294e+117
-3.21985e+117
-4.7021113e+117
-4.7038975e+117
-4.5756625e+117
-4.4508255e+117
-4.3279117e+117
-4.2051612e+117
-3.6779321e+117
-3.8512097e+117
-3.8504721e+117
-3.9677162e+117
-3.9688184e+117
-4.08537e+117
-4.0869125e+117
-4.2061925e+117
-4.3284855e+117
-4.4515546e+117
-4.5769111e+117
-3.4501037e+117
-3.2245692e+117
-3.0001427e+117
-5.4516937e+117
-5.4447155e+117
-5.4589535e+117
-5.4664153e+117
-5.5002286e+117
-5.4429077e+117
-5.4438899e+117
-5.4510946e+117
-5.4499604e+117
-5.4586644e+117
-5.4664543e+117
-5.4651092e+117
-5.4574483e+117
-5.4310192e+117
-5.4376501e+117
-5.418502e+117
-5.4246295e+117
-5.4106502e+117
-5.4173032e+117
-5.4227818e+117
-5.4234356e+117
-5.4168294e+117
-5.429989e+117
-5.436847e+117
-5.4359012e+117
-5.4291056e+117
-5.3860024e+117
-5.3804499e+117
-5.3684706e+117
-5.3745676e+117
-5.3918554e+117
-5.3984997e+117
-5.4057101e+117
-5.412357e+117
-5.399079e+117
-5.3934391e+117
-5.3923415e+117
-5.3985187e+117
-5.4108967e+117
-5.4112082e+117
-5.4050889e+117
-5.4047861e+117
-5.3694161e+117
-5.3728426e+117
-5.3775042e+117
-5.3748335e+117
-5.3879355e+117
-5.3826029e+117
-5.3806764e+117
-5.3864253e+117
-5.4217581e+117
-5.4197584e+117
-5.4105096e+117
-5.4182933e+117
-5.4203968e+117
-5.4225135e+117
-5.4090237e+117
-5.415455e+117
-5.4236597e+117
-5.4373605e+117
-5.4304811e+117
-5.4545798e+117
-5.4429404e+117
-5.4313252e+117
-5.4377888e+117
-5.4320634e+117
-5.4164414e+117
-5.4303875e+117
-5.4390357e+117
-5.432036e+117
-5.4231959e+117
-5.4313623e+117
-5.4342702e+117
-5.4337235e+117
-5.4048233e+117
-5.400621e+117
-5.3961673e+117
-5.401223e+117
-5.4105739e+117
-5.407106e+117
-5.4130772e+117
-5.4165029e+117
-5.4275965e+117
-5.4152401e+117
-5.4068878e+117
-5.4034746e+117
-5.4050667e+117
-5.4136022e+117
-5.4268513e+117
-5.4131458e+117
-5.4249399e+117
-5.4192029e+117
-5.4009038e+117
-5.4073905e+117
-5.4220929e+117
-5.4357456e+117
-5.3906653e+117
-5.3998253e+117
-5.3820476e+117
-5.378565e+117
-5.3904671e+117
-5.3929821e+117
-5.3966655e+117
-5.3911823e+117
-5.386353e+117
-5.457301e+117
-5.4662899e+117
-5.4770216e+117
-5.451553e+117
-5.460403e+117
-5.4714058e+117
-5.4429332e+117
-5.4493185e+117
-5.4442047e+117
-5.4464482e+117
-5.4546901e+117
-5.4657874e+117
-5.4301928e+117
-5.43898e+117
-5.440042e+117
-5.4364742e+117
-5.4432526e+117
-5.4391721e+117
-5.4323767e+117
-5.4364647e+117
-5.4231136e+117
-5.429718e+117
-5.4257521e+117
-5.4193701e+117
-5.4775615e+117
-5.4871037e+117
-5.4968657e+117
-5.484287e+117
-5.4940681e+117
-5.5035196e+117
-5.4777495e+117
-5.4703944e+117
-5.4630501e+117
-5.4704786e+117
-5.4796395e+117
-5.4897827e+117
-5.463831e+117
-5.4728573e+117
-5.4831654e+117
-5.4560843e+117
-5.4573959e+117
-5.450185e+117
-5.4462246e+117
-5.4535011e+117
-5.4649332e+117
-5.46113e+117
-5.4689453e+117
-5.4726562e+117
-5.507712e+117
-5.5025299e+117
-5.5102499e+117
-5.3709606e+117
-5.4066549e+117
-3.9702655e+117
-3.8552272e+117
-3.740889e+117
-3.4552231e+117
-3.6263955e+117
-3.6255611e+117
-3.7405082e+117
-3.7398852e+117
-3.6260799e+117
-3.6224146e+117
-3.7375534e+117
-3.8559234e+117
-3.8540612e+117
-3.9712896e+117
-3.9719956e+117
-3.8511876e+117
-3.8541718e+117
-3.9660776e+117
-3.9686914e+117
-4.0864428e+117
-4.0890492e+117
-4.0896009e+117
-4.0879229e+117
-4.2067273e+117
-4.2084831e+117
-4.2086575e+117
-4.2080298e+117
-4.0890616e+117
-4.2059521e+117
-4.2041095e+117
-4.0841644e+117
-4.4531924e+117
-4.3291536e+117
-4.3289659e+117
-4.329266e+117
-4.3306392e+117
-4.3286238e+117
-4.4530427e+117
-4.4512678e+117
-4.4538828e+117
-4.4520368e+117
-4.4524769e+117
-4.3278412e+117
-4.4500637e+117
-4.3268046e+117
-4.5801685e+117
-4.5777789e+117
-4.5772733e+117
-4.5788608e+117
-4.7079142e+117
-4.7071669e+117
-4.7067384e+117
-4.7065162e+117
-4.8364746e+117
-4.8366751e+117
-4.8364267e+117
-4.9646427e+117
-4.9647734e+117
-4.9641703e+117
-5.0905888e+117
-5.0906237e+117
-5.2146966e+117
-5.2147471e+117
-5.3400286e+117
-5.4669531e+117
-3.2299721e+117
-3.512082e+117
-3.3981066e+117
-3.3958049e+117
-3.5086421e+117
-3.6200941e+117
-3.6242169e+117
-3.7349749e+117
-3.7314692e+117
-3.8477997e+117
-3.8442893e+117
-3.9582564e+117
-3.9625526e+117
-4.0800589e+117
-4.1995258e+117
-4.1946066e+117
-4.0753028e+117
-3.0058553e+117
-3.1728008e+117
-3.2854767e+117
-3.2829985e+117
-3.1698455e+117
-3.5068893e+117
-3.3961111e+117
-3.3936877e+117
-3.5027831e+117
-3.7292094e+117
-3.6185764e+117
-3.6131551e+117
-3.7239613e+117
-3.8358812e+117
-3.8406501e+117
-3.9484899e+117
-3.9530767e+117
-5.4383699e+117
-5.4411119e+117
-5.4399642e+117
-5.4468776e+117
-5.4400992e+117
-5.4375068e+117
-5.4331988e+117
-5.4483544e+117
-5.4438399e+117
-5.4302415e+117
-5.4507656e+117
-5.4585661e+117
-5.5657226e+117
-5.557012e+117
-5.5483914e+117
-5.5407532e+117
-5.5268612e+117
-5.5333534e+117
-5.521414e+117
-5.5136497e+117
-5.5199486e+117
-5.5140896e+117
-5.631305e+117
-5.6416345e+117
-5.6124483e+117
-5.6217166e+117
-5.6031627e+117
-5.5931483e+117
-5.5834416e+117
-5.5744815e+117
-5.2749094e+117
-5.2629806e+117
-5.2498946e+117
-5.271266e+117
-2.9485307e+117
-3.060161e+117
-3.0584741e+117
-2.9462498e+117
-3.1695313e+117
-3.2794116e+117
-3.2776352e+117
-3.1684197e+117
-3.3866591e+117
-3.3898636e+117
-3.4992122e+117
-3.494902e+117
-3.6046782e+117
-3.6094012e+117
-3.7197346e+117
-3.7149411e+117
-5.3346507e+117
-5.3301645e+117
-5.339994e+117
-5.3450341e+117
-5.3350955e+117
-5.3549045e+117
-5.3499838e+117
-5.3598742e+117
-5.3649158e+117
-5.3614812e+117
-5.355052e+117
-5.3592452e+117
-5.3551083e+117
-5.3505806e+117
-5.3635476e+117
-5.3681467e+117
-5.3647373e+117
-5.3598342e+117
-5.3371285e+117
-5.34163e+117
-5.3368812e+117
-5.3324703e+117
-5.3463165e+117
-5.3508332e+117
-5.3459918e+117
-5.3412554e+117
-5.3030491e+117
-5.2933881e+117
-5.2781216e+117
-5.3060589e+117
-5.3099689e+117
-5.3197399e+117
-5.3425705e+117
-5.3249776e+117
-5.326182e+117
-5.3292753e+117
-5.3293173e+117
-5.3463152e+117
-5.3235219e+117
-5.32668e+117
-5.3314905e+117
-5.3335279e+117
-5.3499322e+117
-5.3280517e+117
-5.3327486e+117
-5.3235863e+117
-5.3251191e+117
-5.3162219e+117
-5.319979e+117
-5.3216393e+117
-5.3119125e+117
-5.2829155e+117
-5.3063049e+117
-5.293702e+117
-5.292173e+117
-5.2879799e+117
-5.2731068e+117
-5.2958091e+117
-5.2943146e+117
-5.306071e+117
-5.288029e+117
-5.3189877e+117
-5.3356807e+117
-5.329549e+117
-5.3153366e+117
-5.3205411e+117
-5.3101471e+117
-5.3238369e+117
-5.3307196e+117
-5.3155543e+117
-5.3136115e+117
-5.3399516e+117
-5.311868e+117
-5.2980596e+117
-5.3069132e+117
-5.3255769e+117
-5.3405063e+117
-5.3543203e+117
-5.3666762e+117
-5.3732599e+117
-5.3531935e+117
-5.3605401e+117
-5.3522219e+117
-5.3396052e+117
-5.3394085e+117
-5.4111482e+117
-5.3913267e+117
-5.4040079e+117
-5.3763977e+117
-5.3817812e+117
-5.3874058e+117
-5.3613172e+117
-5.3690289e+117
-5.3901172e+117
-5.399579e+117
-5.4012953e+117
-5.3810118e+117
-5.3884104e+117
-5.3933717e+117
-5.4092032e+117
-5.4070623e+117
-5.4236283e+117
-5.3940047e+117
-5.4158788e+117
-5.4023316e+117
-5.3527055e+117
-5.3462271e+117
-5.3485051e+117
-5.3437478e+117
-5.3598263e+117
-5.3780697e+117
-5.3586296e+117
-5.3663438e+117
-5.387479e+117
-5.3746665e+117
-5.3723168e+117
-5.3537148e+117
-5.4111631e+117
-5.390304e+117
-5.4282751e+117
-5.3977969e+117
-5.416588e+117
-5.4334388e+117
-5.4145473e+117
-5.3945294e+117
-5.4314306e+117
-5.3717112e+117
-5.3835975e+117
-5.3720684e+117
-5.3799735e+117
-5.3797252e+117
-5.3661794e+117
-5.361311e+117
-5.3846673e+117
-5.3876616e+117
-5.3745999e+117
-5.3705951e+117
-5.3511522e+117
-5.36754e+117
-5.3728949e+117
-5.3550001e+117
-5.4066196e+117
-5.376819e+117
-5.3583865e+117
-5.3615088e+117
-5.3806349e+117
-5.4115642e+117
-5.3955639e+117
-5.4167066e+117
-5.4001433e+117
-5.3843585e+117
-5.3908234e+117
-5.4059743e+117
-5.3986917e+117
-5.3661974e+117
-5.374402e+117
-5.3853395e+117
-5.3756307e+117
-5.3813993e+117
-5.3930666e+117
-5.4013232e+117
-5.3883281e+117
-5.412663e+117
-5.4265418e+117
-5.3589183e+117
-5.3515714e+117
-5.4523375e+117
-5.4386839e+117
-5.4423485e+117
-5.4558449e+117
-5.4391266e+117
-5.4251175e+117
-5.4329162e+117
-5.4467686e+117
-5.4229923e+117
-3.1660501e+117
-3.2750814e+117
-3.2730609e+117
-3.16438e+117
-3.3812746e+117
-3.3840912e+117
-3.4923698e+117
-3.4887155e+117
-5.3662912e+117
-5.3636595e+117
-5.3688836e+117
-5.3709259e+117
-5.4249787e+117
-5.4289357e+117
-5.3934268e+117
-5.3724596e+117
-5.3740075e+117
-5.395129e+117
-5.392015e+117
-5.3904343e+117
-5.3697985e+117
-5.3710469e+117
-5.4114315e+117
-5.4130912e+117
-5.4318364e+117
-5.4300415e+117
-5.4146552e+117
-5.4167826e+117
-5.435925e+117
-5.4336853e+117
-5.3805119e+117
-5.3815309e+117
-5.3774929e+117
-5.3789685e+117
-5.4143415e+117
-5.4205499e+117
-5.3888876e+117
-5.3863327e+117
-5.3659352e+117
-5.3682174e+117
-5.3632836e+117
-5.3826855e+117
-5.3845433e+117
-5.3643474e+117
-5.4026178e+117
-5.404867e+117
-5.4225917e+117
-5.420014e+117
-5.4069091e+117
-5.4250482e+117
-5.4279977e+117
-5.4098258e+117
-5.3741185e+117
-5.3757451e+117
-5.3729258e+117
-5.3722956e+117
-5.3438419e+117
-5.3451007e+117
-5.3296478e+117
-5.3032759e+117
-5.303385e+117
-5.3305111e+117
-5.2936448e+117
-5.2919644e+117
-5.2927888e+117
-5.3047009e+117
-5.2962492e+117
-5.3072131e+117
-5.3463801e+117
-5.3481589e+117
-5.3313409e+117
-5.3332043e+117
-5.3050384e+117
-5.3131526e+117
-5.3116473e+117
-5.3078873e+117
-5.3039521e+117
-5.3057755e+117
-5.3383034e+117
-5.3424555e+117
-5.32916e+117
-5.3302932e+117
-5.3061438e+117
-5.296826e+117
-5.293181e+117
-5.2680566e+117
-5.3055311e+117
-5.3150778e+117
-5.2762758e+117
-5.2820489e+117
-5.2815808e+117
-5.27527e+117
-5.2952022e+117
-5.3064251e+117
-5.2974514e+117
-5.3082597e+117
-5.3506513e+117
-5.3489371e+117
-5.3330071e+117
-5.3347331e+117
-5.2964721e+117
-5.307337e+117
-5.2952161e+117
-5.3063124e+117
-5.3331267e+117
-5.3483991e+117
-5.3486419e+117
-5.3330164e+117
-5.3026014e+117
-5.3134936e+117
-5.305463e+117
-5.3155797e+117
-5.3565691e+117
-5.3553162e+117
-5.339816e+117
-5.3412652e+117
-5.2988354e+117
-5.3097406e+117
-5.3002478e+117
-5.3112355e+117
-5.3538641e+117
-5.3519513e+117
-5.3360891e+117
-5.3381133e+117
-5.2813953e+117
-5.2793584e+117
-5.2823533e+117
-5.2786427e+117
-5.2830286e+117
-5.2844361e+117
-5.2872012e+117
-5.2922495e+117
-5.3287962e+117
-5.3216609e+117
-5.3333354e+117
-5.3308965e+117
-5.3179641e+117
-5.3155131e+117
-5.3164979e+117
-5.3201495e+117
-5.3213206e+117
-5.3203007e+117
-5.3228194e+117
-5.3207952e+117
-5.3260554e+117
-5.3247421e+117
-5.3285495e+117
-5.3312896e+117
-5.3305568e+117
-5.3307765e+117
-5.326176e+117
-5.3157602e+117
-5.3156786e+117
-5.3088473e+117
-3.1609786e+117
-3.2699707e+117
-3.2674375e+117
-3.1586531e+117
-6.1772428e+117
-6.2367877e+117
-6.2240397e+117
-6.1814399e+117
-6.2364184e+117
-6.2265171e+117
-6.196609e+117
-6.1769548e+117
-6.2242608e+117
-6.2007588e+117
-6.1613682e+117
-6.1562398e+117
-6.2375158e+117
-6.2105835e+117
-6.1725177e+117
-6.1772036e+117
-6.1914557e+117
-6.1654487e+117
-6.1721773e+117
-6.1594959e+117
-6.0671891e+117
-6.1223724e+117
-6.119217e+117
-6.1145265e+117
-6.063364e+117
-6.1103138e+117
-6.0516559e+117
-6.0162889e+117
-6.049311e+117
-6.0068901e+117
-5.9921801e+117
-6.1115911e+117
-6.1178205e+117
-6.0511555e+117
-6.0043927e+117
-5.9954958e+117
-6.0601101e+117
-6.1224383e+117
-6.0665568e+117
-6.0756034e+117
-6.0652697e+117
-6.1471975e+117
-7.1535495e+117
-6.2508937e+117
-7.9589557e+117
-8.025264e+117
-6.3357573e+117
-6.5662402e+117
-6.2243632e+117
-6.3960719e+117
-1.0052566e+118
-8.1283694e+117
-6.4558456e+117
-6.1152142e+117
-6.5772942e+117
-8.3930118e+117
-6.5091841e+117
-6.3878319e+117
-6.2163009e+117
-6.2882374e+117
-6.0151579e+117
-6.0654391e+117
-6.0774817e+117
-6.0411045e+117
-6.0280333e+117
-5.9692592e+117
-5.9417217e+117
-5.9745209e+117
-6.1110399e+117
-5.9786621e+117
-5.9858849e+117
-5.9851852e+117
-6.1956126e+117
-6.1217153e+117
-6.296235e+117
-6.0237927e+117
-6.0510877e+117
-6.0985756e+117
-6.2249243e+117
-6.0278274e+117
-6.1168748e+117
-6.698726e+117
-7.4263441e+117
-6.7667074e+117
-6.9760029e+117
-8.3807526e+117
-7.1518106e+117
-6.1417757e+117
-6.4030121e+117
-6.5118257e+117
-6.2026552e+117
-6.0807071e+117
-6.0612372e+117
-6.1034586e+117
-6.0911757e+117
-6.0639288e+117
-6.0797665e+117
-6.0627393e+117
-6.0537681e+117
-5.9926701e+117
-6.026741e+117
-6.0113884e+117
-6.1040219e+117
-6.0964591e+117
-6.0554689e+117
-6.0257626e+117
-6.092425e+117
-6.0529876e+117
-6.0302673e+117
-6.1375184e+117
-6.1476986e+117
-5.986047e+117
-5.9979457e+117
-6.0071071e+117
-6.3033653e+117
-6.1946441e+117
-6.1186619e+117
-6.1975909e+117
-6.078116e+117
-6.2347582e+117
-6.008276e+117
-6.012836e+117
-5.9751812e+117
-5.9804189e+117
-6.0020653e+117
-6.0057769e+117
-4.6956177e+117
-4.6898106e+117
-4.6909998e+117
-4.6928989e+117
-4.4414478e+117
-4.5649703e+117
-4.5667351e+117
-4.5668404e+117
-4.5668625e+117
-4.443536e+117
-3.9050368e+117
-4.0795384e+117
-4.0804369e+117
-4.2000978e+117
-4.1992921e+117
-4.08026e+117
-4.1989128e+117
-4.1983944e+117
-4.0781736e+117
-4.3206668e+117
-4.3200256e+117
-4.3177454e+117
-4.3193471e+117
-4.3184974e+117
-4.4378013e+117
-4.4424065e+117
-4.4433438e+117
-4.56007e+117
-4.6820833e+117
-4.6866942e+117
-4.6887849e+117
-4.5689737e+117
-4.5671227e+117
-4.0794782e+117
-3.9626363e+117
-4.1948045e+117
-4.1893707e+117
-4.0745245e+117
-3.9582223e+117
-3.6738467e+117
-3.8459376e+117
-3.8421488e+117
-4.4337777e+117
-4.3134536e+117
-4.306541e+117
-4.4245894e+117
-4.546372e+117
-4.5558106e+117
-4.6696501e+117
-4.6771367e+117
-4.4158444e+117
-4.2979811e+117
-4.180975e+117
-3.8419953e+117
-3.7295075e+117
-3.9530076e+117
-3.9469175e+117
-3.8364895e+117
-3.7255766e+117
-3.4464272e+117
-3.6155084e+117
-3.612796e+117
-4.0662683e+117
-4.0585225e+117
-4.1699677e+117
-4.2845914e+117
-4.4017161e+117
-4.1616335e+117
-3.9413728e+117
-4.0518937e+117
-3.2215121e+117
-3.3880975e+117
-3.5006949e+117
-3.4981011e+117
-3.3855368e+117
-3.6109867e+117
-3.7208764e+117
-3.7170873e+117
-3.6083744e+117
-3.8313144e+117
-3.8255896e+117
-3.933351e+117
-4.0421905e+117
-4.1510618e+117
-4.9302193e+117
-3.1623783e+117
-3.164963e+117
-3.2732948e+117
-3.2756338e+117
-3.3842731e+117
-3.4937817e+117
-3.4914564e+117
-3.3819841e+117
-3.6036973e+117
-3.7123208e+117
-3.7088363e+117
-3.6011672e+117
-3.9285987e+117
-3.8208269e+117
-3.8158428e+117
-3.9219146e+117
-3.3786519e+117
-3.4876083e+117
-3.4853496e+117
-3.3762603e+117
-3.5967312e+117
-3.7044621e+117
-3.7014019e+117
-3.594392e+117
-5.7538242e+117
-5.7580129e+117
-5.8421642e+117
-5.9157605e+117
-5.6418402e+117
-5.635372e+117
-5.3845545e+117
-5.5049785e+117
-5.3831419e+117
-4.8084472e+117
-4.810106e+117
-4.8100446e+117
-4.8112773e+117
-4.814186e+117
-4.9303348e+117
-4.9306803e+117
-4.9311039e+117
-4.932341e+117
-4.9367629e+117
-4.9494959e+117
-4.943481e+117
-4.8188244e+117
-4.8232323e+117
-4.8049585e+117
-4.9289298e+117
-5.0487323e+117
-5.0486717e+117
-5.0490119e+117
-5.0522489e+117
-5.059443e+117
-5.1706372e+117
-5.1813886e+117
-5.1644855e+117
-5.1639598e+117
-5.1648817e+117
-5.2742696e+117
-5.2744221e+117
-5.4733654e+117
-5.4660287e+117
-5.4738866e+117
-5.4813479e+117
-5.4587125e+117
-5.4496802e+117
-5.4573122e+117
-5.4665102e+117
-5.472281e+117
-5.4628019e+117
-5.4663468e+117
-5.476323e+117
-5.4873103e+117
-5.4797974e+117
-5.4839679e+117
-5.4915998e+117
-5.4170454e+117
-5.4370849e+117
-5.4453931e+117
-5.4240569e+117
-5.4524652e+117
-5.4305982e+117
-5.4378313e+117
-5.4596325e+117
-5.4988176e+117
-5.4931715e+117
-5.4976201e+117
-5.5037783e+117
-5.4921125e+117
-5.4873029e+117
-5.4966643e+117
-5.5017946e+117
-5.4786321e+117
-5.4831232e+117
-5.4869103e+117
-5.4920896e+117
-5.5093069e+117
-5.503817e+117
-5.5091247e+117
-5.5150906e+117
-5.4682685e+117
-5.4646627e+117
-5.4423136e+117
-5.444571e+117
-5.4720803e+117
-5.4479196e+117
-5.4529413e+117
-5.4767529e+117
-5.4555668e+117
-5.4797751e+117
-5.4818364e+117
-5.4563237e+117
-5.4843904e+117
-5.4585177e+117
-5.4626379e+117
-5.4880538e+117
-5.4983763e+117
-5.4954622e+117
-5.5057487e+117
-5.5094296e+117
-5.5012516e+117
-5.5126619e+117
-5.5162191e+117
-5.5048986e+117
-5.5252051e+117
-5.5215241e+117
-5.528442e+117
-5.5323092e+117
-5.517979e+117
-5.5137616e+117
-5.5199059e+117
-5.5246937e+117
-5.5418001e+117
-5.5439212e+117
-5.5359887e+117
-5.549475e+117
-5.5296925e+117
-5.523822e+117
-5.5320552e+117
-5.5377526e+117
-5.547421e+117
-5.5397517e+117
-5.5453033e+117
-5.5529464e+117
-5.5516067e+117
-5.5592991e+117
-5.5650768e+117
-5.5572645e+117
-5.5069409e+117
-5.5131972e+117
-5.4937237e+117
-5.5000716e+117
-5.5045993e+117
-5.5107024e+117
-5.5206785e+117
-5.5146909e+117
-5.5175502e+117
-5.5235867e+117
-5.5334144e+117
-5.5273752e+117
-5.4825944e+117
-5.4879991e+117
-5.4984559e+117
-5.4936267e+117
-5.4700791e+117
-5.4769087e+117
-5.48241e+117
-5.4878606e+117
-5.4933881e+117
-5.5035359e+117
-5.5089324e+117
-5.4988257e+117
-5.5169228e+117
-5.5080799e+117
-5.5036164e+117
-5.5126765e+117
-5.5281448e+117
-5.5249601e+117
-5.5207141e+117
-5.5324419e+117
-5.5344104e+117
-5.5294025e+117
-5.5370645e+117
-5.5420953e+117
-5.5128522e+117
-5.5181263e+117
-5.5265398e+117
-5.5214518e+117
-5.4763838e+117
-5.4766224e+117
-5.4871352e+117
-5.4868668e+117
-5.4894563e+117
-5.4791679e+117
-5.47759e+117
-5.4879672e+117
-5.4967048e+117
-5.4979836e+117
-5.5054372e+117
-5.5042647e+117
-5.4954394e+117
-5.4959104e+117
-5.5034965e+117
-5.5029854e+117
-5.4507248e+117
-5.4517811e+117
-5.4647343e+117
-5.4644084e+117
-5.4545822e+117
-5.467458e+117
-5.4658389e+117
-5.453089e+117
-5.4803646e+117
-5.4677126e+117
-5.4746485e+117
-5.461699e+117
-5.4703994e+117
-5.4573697e+117
-5.4612705e+117
-5.4742212e+117
-5.4860418e+117
-5.4910166e+117
-5.5006853e+117
-5.486019e+117
-5.4819879e+117
-5.4959622e+117
-5.4921343e+117
-5.4965614e+117
-5.5058677e+117
-5.5085173e+117
-5.5138492e+117
-5.5213211e+117
-5.5161376e+117
-5.5117404e+117
-5.504256e+117
-5.5079776e+117
-5.5005502e+117
-5.5445598e+117
-5.5516223e+117
-5.5563305e+117
-5.5494479e+117
-5.5571744e+117
-5.554347e+117
-5.5503704e+117
-5.5609974e+117
-5.5356076e+117
-5.5399325e+117
-5.5472788e+117
-5.5431222e+117
-5.5630775e+117
-5.5584387e+117
-5.5651116e+117
-5.5696974e+117
-5.5710606e+117
-5.575998e+117
-5.5804148e+117
-5.5755109e+117
-5.584775e+117
-5.5803812e+117
-5.5846456e+117
-5.5890424e+117
-5.5763933e+117
-5.5727204e+117
-5.5807357e+117
-5.5770211e+117
-5.56319e+117
-5.5669533e+117
-5.5720369e+117
-5.5683754e+117
-5.5976202e+117
-5.5971272e+117
-5.592114e+117
-5.6027074e+117
-5.5854701e+117
-5.5805349e+117
-5.5859385e+117
-5.5908915e+117
-5.5940747e+117
-5.5897744e+117
-5.5952924e+117
-5.5996523e+117
-5.6016662e+117
-5.6074569e+117
-5.6120581e+117
-5.6061354e+117
-5.5616507e+117
-5.5547699e+117
-5.5603655e+117
-5.5673175e+117
-5.5738038e+117
-5.5667696e+117
-5.5726116e+117
-5.5797354e+117
-5.5865471e+117
-5.5804e+117
-5.5863241e+117
-5.5922105e+117
-5.5682744e+117
-5.5739279e+117
-5.5802744e+117
-5.5747725e+117
-5.5337955e+117
-5.5360919e+117
-5.541331e+117
-5.5388523e+117
-5.5377549e+117
-5.5397843e+117
-5.5450779e+117
-5.5430084e+117
-5.5474702e+117
-5.5493999e+117
-5.5533022e+117
-5.5513269e+117
-5.5429668e+117
-5.5456972e+117
-5.5494756e+117
-5.5466617e+117
-5.5111346e+117
-5.51243e+117
-5.5194092e+117
-5.5179871e+117
-5.5092892e+117
-5.5101453e+117
-5.5168497e+117
-5.5156698e+117
-5.5219683e+117
-5.5236438e+117
-5.5302031e+117
-5.5282653e+117
-5.5249762e+117
-5.5266604e+117
-5.5336037e+117
-5.5316812e+117
-5.5454344e+117
-5.5381225e+117
-5.5408126e+117
-5.533659e+117
-5.5366461e+117
-5.5295511e+117
-5.5231744e+117
-5.5307776e+117
-5.5262432e+117
-5.5188948e+117
-5.5221998e+117
-5.5150549e+117
-5.5361882e+117
-5.5286212e+117
-5.5437015e+117
-5.5508242e+117
-5.5568904e+117
-5.5514659e+117
-5.547039e+117
-5.5428692e+117
-5.5481566e+117
-5.5523489e+117
-5.5665374e+117
-5.5609812e+117
-5.5652201e+117
-5.570673e+117
-5.5569907e+117
-5.5622927e+117
-5.5566025e+117
-5.5524457e+117
-5.5563934e+117
-5.5606366e+117
-5.5406535e+117
-5.5481011e+117
-5.5418185e+117
-5.5342236e+117
-5.5278773e+117
-5.5280341e+117
-5.5353108e+117
-5.5195198e+117
-5.5374107e+117
-5.5436748e+117
-5.5464572e+117
-5.5521729e+117
-5.5394915e+117
-5.5298318e+117
-5.5500526e+117
-5.5563146e+117
-5.5649143e+117
-5.5584801e+117
-5.5632798e+117
-5.5705614e+117
-5.5768807e+117
-5.5785423e+117
-5.5848623e+117
-5.5711778e+117
-5.5476823e+117
-5.5545703e+117
-5.5605004e+117
-5.5624536e+117
-5.5686331e+117
-5.5553249e+117
-5.5835693e+117
-5.5903067e+117
-5.5981807e+117
-5.5915003e+117
-5.567006e+117
-5.5735962e+117
-5.5819936e+117
-5.5752808e+117
-5.5794295e+117
-5.5705548e+117
-5.563107e+117
-5.5718422e+117
-5.5548501e+117
-5.5475929e+117
-5.5548331e+117
-5.5621069e+117
-5.570234e+117
-5.5630985e+117
-5.5716232e+117
-5.5786396e+117
-5.5788419e+117
-5.5872679e+117
-5.5964629e+117
-5.5878256e+117
-5.5883819e+117
-5.5806733e+117
-5.5891754e+117
-5.5970144e+117
-5.6053931e+117
-5.5975136e+117
-5.605324e+117
-5.6131885e+117
-5.6219442e+117
-5.6141391e+117
-5.6309283e+117
-5.623119e+117
-5.5968744e+117
-5.6056965e+117
-5.614596e+117
-5.605664e+117
-5.6137031e+117
-5.6211291e+117
-5.627575e+117
-5.6259113e+117
-5.6324406e+117
-5.6183766e+117
-5.6036403e+117
-5.6107727e+117
-5.6171106e+117
-5.6159478e+117
-5.622363e+117
-5.6087135e+117
-5.6343128e+117
-5.6409997e+117
-5.6459368e+117
-5.6392093e+117
-5.6237591e+117
-5.6303633e+117
-5.6357297e+117
-5.6290749e+117
-5.5925816e+117
-5.5997433e+117
-5.6058802e+117
-5.6055552e+117
-5.611728e+117
-5.5984101e+117
-5.5788523e+117
-5.5861739e+117
-5.5924315e+117
-5.5933084e+117
-5.59946e+117
-5.5860177e+117
-5.6124029e+117
-5.6189142e+117
-5.6247818e+117
-5.6182499e+117
-5.5990507e+117
-5.6056582e+117
-5.6125036e+117
-5.6059796e+117
-5.6531228e+117
-5.6481618e+117
-5.6560851e+117
-5.6610855e+117
-5.6428645e+117
-5.6374675e+117
-5.645322e+117
-5.6507684e+117
-5.6631815e+117
-5.6596147e+117
-5.6541249e+117
-5.6686985e+117
-5.6649494e+117
-5.6699943e+117
-5.6791431e+117
-5.6740621e+117
-5.620544e+117
-5.6127486e+117
-5.6195287e+117
-5.6272923e+117
-5.631819e+117
-5.625935e+117
-5.6336949e+117
-5.6396267e+117
-5.6483778e+117
-5.6423879e+117
-5.6513593e+117
-5.6574002e+117
-5.6292447e+117
-5.6359692e+117
-5.6449121e+117
-5.6381876e+117
-5.5932781e+117
-5.5888619e+117
-5.5933171e+117
-5.597804e+117
-5.5849074e+117
-5.5810876e+117
-5.5850859e+117
-5.589084e+117
-5.613265e+117
-5.6174841e+117
-5.5984617e+117
-5.6030292e+117
-5.6087133e+117
-5.6041025e+117
-5.6240884e+117
-5.6198167e+117
-5.6257628e+117
-5.6301545e+117
-5.6165983e+117
-5.6106504e+117
-5.6152847e+117
-5.6212214e+117
-5.5690409e+117
-5.564536e+117
-5.5603994e+117
-5.5727018e+117
-5.5680624e+117
-5.5640016e+117
-5.5745245e+117
-5.5782409e+117
-5.632198e+117
-5.6397469e+117
-5.6463147e+117
-5.6444024e+117
-5.6510386e+117
-5.6367023e+117
-5.6229333e+117
-5.6303867e+117
-5.637015e+117
-5.6350599e+117
-5.6416155e+117
-5.6275822e+117
-5.6484998e+117
-5.6438905e+117
-5.6506704e+117
-5.6553127e+117
-5.6600778e+117
-5.6532367e+117
-5.6580017e+117
-5.6648892e+117
-5.6722441e+117
-5.6673826e+117
-5.6803807e+117
-5.6754721e+117
-5.6626318e+117
-5.6579149e+117
-5.6706763e+117
-5.6659198e+117
-5.6748719e+117
-5.6796615e+117
-5.6888782e+117
-5.6840529e+117
-5.6845072e+117
-5.6937811e+117
-5.6987602e+117
-5.6894611e+117
-6.0602786e+117
-6.0779802e+117
-6.0780163e+117
-4.4670364e+117
-4.3990824e+117
-4.0457687e+117
-4.3914426e+117
-5.2350446e+117
-5.2667607e+117
-5.2505059e+117
-4.7950948e+117
-4.7554233e+117
-4.8398473e+117
-4.5064689e+117
-4.7655775e+117
-5.1874593e+117
-5.2573152e+117
-5.204605e+117
-4.8011542e+117
-4.4643167e+117
-4.8431389e+117
-5.222266e+117
-5.2118703e+117
-4.8624906e+117
-4.878401e+117
-5.195859e+117
-5.1728341e+117
-4.9159708e+117
-4.3880632e+117
-4.7927438e+117
-5.188695e+117
-5.1827089e+117
-4.8251337e+117
-5.484963e+117
-5.5140297e+117
-5.7919688e+117
-5.5273341e+117
-5.833262e+117
-5.5812297e+117
-5.8250102e+117
-5.6283702e+117
-5.7780184e+117
-5.5203266e+117
-5.5450898e+117
-5.5149082e+117
-5.4716774e+117
-5.4979529e+117
-5.1741837e+117
-5.161691e+117
-4.8330578e+117
-4.9001061e+117
-3.2770225e+116
-1.8409254e+116
-3.891174e+116
-2.4671209e+116
-6.6268493e+116
-1.7855969e+117
-3.4399707e+117
-3.9962333e+117
-3.5581463e+117
-4.6147319e+117
-4.2377149e+117
-8.7613839e+116
-3.1567866e+117
-3.3126091e+117
-3.8550397e+117
-3.2485102e+117
-3.3507586e+117
-3.1480877e+117
-3.3140579e+117
-2.571729e+117
-2.7646166e+117
-3.1609106e+117
-2.7204173e+117
-2.9317653e+117
-2.8475564e+117
-2.4017489e+117
-2.6407624e+117
-2.8055789e+117
-3.6965374e+117
-3.7383574e+117
-3.718438e+117
-3.6827809e+117
-3.196774e+117
-2.739956e+117
-2.6601148e+117
-3.135158e+117
-3.2123773e+117
-2.7406349e+117
-3.2407407e+117
-2.764644e+117
-2.5945372e+117
-2.7787748e+117
-2.4252755e+117
-2.6275456e+117
-2.7370268e+117
-3.2370772e+117
-2.7609085e+117
-4.4794183e+117
-4.5318016e+117
-4.03553e+117
-4.0674818e+117
-4.1357833e+117
-4.0418804e+117
-3.3181742e+117
-3.0509105e+117
-3.9849927e+117
-3.6346711e+117
-3.5433929e+117
-3.9217659e+117
-2.5680514e+117
-2.2405764e+117
-2.4638752e+117
-2.3133095e+117
-1.3318741e+117
-5.4019825e+116
-3.0838164e+116
-2.120842e+117
-1.6227092e+117
-5.9380396e+117
-6.0140531e+117
-5.9417968e+117
-6.0140086e+117
-5.9339252e+117
-6.0607477e+117
-6.0614403e+117
-4.6987031e+117
-4.7012284e+117
-4.5750048e+117
-4.4488658e+117
-4.572521e+117
-4.446385e+117
-3.8511667e+117
-3.9669304e+117
-3.8513089e+117
-3.6782691e+117
-3.9673798e+117
-4.0837226e+117
-4.0827982e+117
-4.2009883e+117
-4.2025279e+117
-4.3247234e+117
-4.3225043e+117
-3.4506607e+117
-3.2250998e+117
-4.5613784e+117
-4.9222087e+117
-4.1468583e+117
-4.7675744e+117
-4.2578769e+117
-3.1524574e+117
-4.0910745e+117
-3.288411e+117
-2.661639e+117
-3.7323741e+117
-4.1447483e+117
-3.2748932e+117
-3.9260309e+117
-2.6818115e+117
-4.5633252e+117
-4.2524857e+117
-4.4120257e+117
-3.9544579e+117
-3.5088435e+117
-3.6404294e+117
-3.0499987e+117
-2.4630138e+117
-2.9805742e+117
-2.8542029e+117
-2.165884e+117
-1.7086927e+117
-1.5912135e+117
-1.4820381e+117
-1.74531e+117
-2.2735117e+117
-2.4561069e+117
-2.9587866e+117
-2.6942056e+117
-2.6638383e+117
-1.1037655e+117
-1.133065e+117
-1.1192456e+117
-1.9961e+117
-2.2044785e+117
-4.4683498e+117
-4.082064e+117
-7.2981467e+116
-2.5413145e+117
-2.4719226e+117
-2.0488958e+117
-1.1369536e+117
-3.3602386e+116
-1.6889511e+117
-4.5361139e+116
-1.3981942e+117
-4.9449298e+117
-3.000722e+117
-4.4508467e+117
-4.3279308e+117
-4.2054565e+117
-3.4549076e+117
-3.6250391e+117
-3.6259884e+117
-3.7401642e+117
-3.7400623e+117
-3.8542229e+117
-3.8535561e+117
-3.9681457e+117
-3.9693025e+117
-4.0856183e+117
-4.0871233e+117
-4.2064434e+117
-4.3285013e+117
-4.4515777e+117
-3.2294683e+117
-3.0051136e+117
-5.4202949e+117
-5.4208949e+117
-5.4237306e+117
-5.4156424e+117
-5.423528e+117
-5.4367641e+117
-5.4313835e+117
-5.4532976e+117
-5.4426964e+117
-5.4397042e+117
-5.4431303e+117
-5.4508872e+117
-5.4363372e+117
-5.4316591e+117
-5.4409764e+117
-5.4494085e+117
-5.4369403e+117
-5.4283706e+117
-5.4163854e+117
-5.4084546e+117
-5.4146816e+117
-5.4275894e+117
-5.4147493e+117
-5.4261424e+117
-5.4366981e+117
-5.4197099e+117
-5.4030535e+117
-5.4087352e+117
-5.4229011e+117
-5.4370973e+117
-5.4028182e+117
-5.467302e+117
-5.4771181e+117
-5.4615428e+117
-5.471704e+117
-5.4468991e+117
-5.4561493e+117
-5.4665034e+117
-5.4411538e+117
-5.4423696e+117
-5.488206e+117
-5.4967686e+117
-5.4951557e+117
-5.5032854e+117
-5.4805498e+117
-5.4896745e+117
-5.4738122e+117
-5.4831372e+117
-5.5105121e+117
-3.9704844e+117
-3.8554202e+117
-3.7411068e+117
-3.5168601e+117
-3.4032748e+117
-3.2334633e+117
-3.4024934e+117
-3.5151611e+117
-3.5144299e+117
-3.4010302e+117
-3.399715e+117
-3.513432e+117
-3.6283904e+117
-3.6263216e+117
-3.6287097e+117
-3.7415255e+117
-3.7420943e+117
-3.7406426e+117
-3.6278165e+117
-3.6249741e+117
-3.7373426e+117
-3.8563983e+117
-3.8561133e+117
-3.8558054e+117
-3.9715442e+117
-3.9722841e+117
-3.9715878e+117
-3.8514505e+117
-3.8543371e+117
-3.966378e+117
-3.9689611e+117
-4.0864687e+117
-4.0894148e+117
-4.0907144e+117
-4.0899029e+117
-4.0879362e+117
-4.2067423e+117
-4.2086246e+117
-4.2095902e+117
-4.208672e+117
-4.2082861e+117
-4.0890822e+117
-4.2059726e+117
-4.2041363e+117
-4.0841934e+117
-4.3291308e+117
-4.3292544e+117
-4.3292751e+117
-4.3286406e+117
-4.4530132e+117
-4.4510621e+117
-4.4507517e+117
-4.4520038e+117
-4.5777426e+117
-4.5771484e+117
-4.5772072e+117
-4.7071174e+117
-4.7067119e+117
-4.7066619e+117
-4.8366791e+117
-4.8366713e+117
-4.9648107e+117
-4.9647917e+117
-5.0906404e+117
-5.2147415e+117
-3.0104117e+117
-3.1767839e+117
-3.2895806e+117
-3.2881828e+117
-3.1754796e+117
-3.5120562e+117
-3.4004953e+117
-3.3984004e+117
-3.5084833e+117
-3.6202905e+117
-3.6243571e+117
-3.7351681e+117
-3.7316871e+117
-3.8478225e+117
-3.8443095e+117
-3.9582811e+117
-3.9625776e+117
-2.9536281e+117
-2.950658e+117
-3.0623552e+117
-3.0652229e+117
-3.1750065e+117
-3.2852191e+117
-3.2826868e+117
-3.172006e+117
-3.5070696e+117
-3.3962951e+117
-3.3937836e+117
-3.5029242e+117
-3.7292224e+117
-3.6185887e+117
-3.6131703e+117
-3.7239763e+117
-5.4390684e+117
-5.4411786e+117
-5.4402831e+117
-5.4426707e+117
-5.4469009e+117
-5.4392491e+117
-5.4325502e+117
-5.4479443e+117
-5.4434456e+117
-5.4302258e+117
-5.4531133e+117
-5.4604665e+117
-5.5208944e+117
-5.2977459e+117
-2.9506693e+117
-3.0595537e+117
-3.0580369e+117
-2.9485431e+117
-3.169662e+117
-3.2795384e+117
-3.2777276e+117
-3.1685495e+117
-3.3866657e+117
-3.3898723e+117
-3.4992197e+117
-3.4949091e+117
-5.301819e+117
-5.2935227e+117
-5.3637842e+117
-5.3445596e+117
-5.337057e+117
-5.34021e+117
-5.3472038e+117
-5.3687811e+117
-5.3409513e+117
-5.3502383e+117
-5.3739149e+117
-5.2956622e+117
-5.3193431e+117
-5.2948779e+117
-5.2926322e+117
-5.3119626e+117
-5.3028849e+117
-5.3310319e+117
-5.3398651e+117
-5.3560331e+117
-5.352276e+117
-5.3342049e+117
-5.3318797e+117
-5.3236271e+117
-5.3288885e+117
-5.3444317e+117
-5.3197451e+117
-5.3083035e+117
-5.3172606e+117
-5.3345118e+117
-5.3496006e+117
-5.3570942e+117
-5.3737788e+117
-5.3769258e+117
-5.3538933e+117
-5.3503096e+117
-5.4277114e+117
-5.4128501e+117
-5.3977657e+117
-5.4076247e+117
-5.3627301e+117
-5.3693527e+117
-5.391515e+117
-5.4065604e+117
-5.4011167e+117
-5.4166578e+117
-5.396555e+117
-5.3833448e+117
-5.4422878e+117
-5.434793e+117
-5.4319099e+117
-5.4120656e+117
-5.442555e+117
-5.4265119e+117
-5.4352414e+117
-5.4202443e+117
-5.4211254e+117
-5.4103047e+117
-5.3597717e+117
-5.3544897e+117
-5.3652431e+117
-5.3771202e+117
-5.3703925e+117
-5.3859667e+117
-5.377047e+117
-5.4119958e+117
-5.4316075e+117
-5.4134089e+117
-5.3936904e+117
-5.4441739e+117
-5.3997204e+117
-5.4174446e+117
-5.4349665e+117
-5.4491239e+117
-5.4335985e+117
-5.4157969e+117
-5.3967061e+117
-5.4473683e+117
-5.3800733e+117
-5.3853107e+117
-5.3815042e+117
-5.3814898e+117
-5.3922565e+117
-5.397673e+117
-5.3855922e+117
-5.4568571e+117
-5.4498873e+117
-5.4261522e+117
-5.4318301e+117
-5.4479278e+117
-5.4418058e+117
-5.4014428e+117
-5.3886599e+117
-5.3913519e+117
-5.404917e+117
-5.4249042e+117
-5.4126865e+117
-5.4300038e+117
-5.4169268e+117
-5.4015566e+117
-5.4079557e+117
-5.4189413e+117
-5.4114291e+117
-5.377374e+117
-5.383337e+117
-5.3946345e+117
-5.3871334e+117
-5.3892016e+117
-5.3892766e+117
-5.4011595e+117
-5.4016734e+117
-5.4056062e+117
-5.3923785e+117
-5.376743e+117
-5.3685409e+117
-5.4614226e+117
-5.4629736e+117
-5.4533151e+117
-5.4387839e+117
-5.4582853e+117
-5.4272484e+117
-3.1660595e+117
-3.2750899e+117
-3.2730675e+117
-3.1643876e+117
-5.3844332e+117
-5.3813135e+117
-5.3867709e+117
-5.3887479e+117
-5.4468091e+117
-5.4765295e+117
-5.4751828e+117
-5.4645307e+117
-5.4669367e+117
-5.4489604e+117
-5.4826907e+117
-5.4790117e+117
-5.4509378e+117
-5.4691782e+117
-5.4717295e+117
-5.4533818e+117
-5.4178133e+117
-5.4025509e+117
-5.4037605e+117
-5.419349e+117
-5.4163044e+117
-5.4144061e+117
-5.3993855e+117
-5.4010914e+117
-5.4279777e+117
-5.4298939e+117
-5.4458866e+117
-5.4437809e+117
-5.4316412e+117
-5.4336115e+117
-5.4502974e+117
-5.4480381e+117
-5.3987551e+117
-5.399638e+117
-5.3954227e+117
-5.397296e+117
-5.4642519e+117
-5.4616086e+117
-5.4522017e+117
-5.4356724e+117
-5.4387779e+117
-5.4556936e+117
-5.4724893e+117
-5.4679614e+117
-5.4586597e+117
-5.4413915e+117
-5.4619253e+117
-5.4444462e+117
-5.4126752e+117
-5.4103616e+117
-5.3956465e+117
-5.3976505e+117
-5.3930112e+117
-5.4069688e+117
-5.4088125e+117
-5.3943065e+117
-5.4195682e+117
-5.4217027e+117
-5.4363164e+117
-5.433722e+117
-5.4235242e+117
-5.4387721e+117
-5.4414633e+117
-5.4260835e+117
-5.391977e+117
-5.3936539e+117
-5.390946e+117
-5.389955e+117
-5.3554261e+117
-5.3714182e+117
-5.3567944e+117
-5.3737899e+117
-5.33832e+117
-5.314508e+117
-5.3147521e+117
-5.3390727e+117
-5.3035041e+117
-5.302116e+117
-5.3027466e+117
-5.3160725e+117
-5.3057693e+117
-5.3184009e+117
-5.3576559e+117
-5.3753559e+117
-5.359129e+117
-5.3771104e+117
-5.3397273e+117
-5.3413452e+117
-5.3161717e+117
-5.3192043e+117
-5.3180676e+117
-5.3179029e+117
-5.3118241e+117
-5.3161632e+117
-5.3512294e+117
-5.362458e+117
-5.3547189e+117
-5.3688523e+117
-5.3377971e+117
-5.3387956e+117
-5.2865664e+117
-5.2922815e+117
-5.3051975e+117
-5.3177902e+117
-5.3072503e+117
-5.3195783e+117
-5.3613193e+117
-5.3805551e+117
-5.3597128e+117
-5.3788813e+117
-5.3413187e+117
-5.342961e+117
-5.3060972e+117
-5.3185331e+117
-5.3051747e+117
-5.3176813e+117
-5.3592369e+117
-5.3413119e+117
-5.377647e+117
-5.359554e+117
-5.3783683e+117
-5.3413255e+117
-5.3125469e+117
-5.3250553e+117
-5.3149795e+117
-5.3269488e+117
-5.3674754e+117
-5.3866629e+117
-5.3664084e+117
-5.3857e+117
-5.3482114e+117
-5.3494759e+117
-5.3087321e+117
-5.321131e+117
-5.3103e+117
-5.3227717e+117
-5.3649452e+117
-5.3842602e+117
-5.3627999e+117
-5.3821256e+117
-5.3444256e+117
-5.3465581e+117
-6.2372295e+117
-6.2291899e+117
-6.1996518e+117
-6.1786044e+117
-6.2286948e+117
-6.2056659e+117
-6.1614214e+117
-6.1546108e+117
-6.2054438e+117
-6.1644952e+117
-6.195824e+117
-6.1659595e+117
-6.0635851e+117
-6.1121968e+117
-6.0603899e+117
-6.1078306e+117
-6.0458882e+117
-6.0082816e+117
-6.1061658e+117
-6.040392e+117
-5.9974543e+117
-5.9838838e+117
-5.9950508e+117
-6.0441102e+117
-5.9769168e+117
-6.1076269e+117
-6.0468628e+117
-5.9994707e+117
-5.9896049e+117
-6.0542644e+117
-6.5783273e+117
-6.20968e+117
-6.3853067e+117
-1.0722303e+118
-8.3250561e+117
-6.0740299e+117
-6.2465523e+117
-1.1760007e+118
-6.0852285e+117
-6.682469e+117
-6.3973379e+117
-6.1828671e+117
-6.0107076e+117
-6.0454017e+117
-6.016101e+117
-5.9595983e+117
-5.8949751e+117
-5.8906491e+117
-5.960973e+117
-5.936898e+117
-5.7098544e+117
-5.9270156e+117
-6.0997271e+117
-5.9458208e+117
-5.9641471e+117
-5.9858889e+117
-6.1236626e+117
-6.038674e+117
-6.0569976e+117
-6.0966272e+117
-7.3509169e+117
-4.0533109e+117
-6.408721e+117
-6.2746826e+117
-6.2028189e+117
-6.1287533e+117
-6.0836806e+117
-6.066529e+117
-6.0922882e+117
-6.1143966e+117
-6.1203425e+117
-6.0960263e+117
-6.0800892e+117
-6.1180611e+117
-6.0794523e+117
-6.0130727e+117
-6.033451e+117
-6.0543845e+117
-6.0151829e+117
-6.1095921e+117
-6.1246214e+117
-6.1034965e+117
-6.0543475e+117
-6.0244675e+117
-6.0821037e+117
-6.1202656e+117
-6.0514175e+117
-6.1489124e+117
-5.9825701e+117
-5.9920814e+117
-6.2031467e+117
-6.153786e+117
-6.1057831e+117
-6.1357417e+117
-6.0091788e+117
-5.9723808e+117
-5.9694009e+117
-5.9977785e+117
-4.6956455e+117
-4.6898014e+117
-4.6910695e+117
-4.6929301e+117
-4.4416351e+117
-4.4429281e+117
-4.5649912e+117
-4.5669332e+117
-4.5668095e+117
-4.5669209e+117
-4.4429504e+117
-4.567005e+117
-4.4427942e+117
-3.8516923e+117
-3.8524771e+117
-3.8526492e+117
-3.6794122e+117
-3.8483986e+117
-3.9653296e+117
-3.9668543e+117
-3.9666967e+117
-3.967312e+117
-4.0823859e+117
-4.0822256e+117
-4.0804064e+117
-4.2000646e+117
-4.2010406e+117
-4.1998496e+117
-4.0823895e+117
-4.1996903e+117
-4.1988666e+117
-4.0814793e+117
-4.3208372e+117
-4.3199943e+117
-4.3201671e+117
-4.3201652e+117
-4.3194923e+117
-4.3203158e+117
-4.3188896e+117
-4.4383803e+117
-4.4425792e+117
-4.4435632e+117
-4.5601348e+117
-4.6821378e+117
-4.6867087e+117
-4.6890983e+117
-4.6889756e+117
-4.568998e+117
-4.5671495e+117
-4.0798658e+117
-3.963436e+117
-4.195327e+117
-4.1899818e+117
-3.9590519e+117
-4.0750555e+117
-3.4521812e+117
-3.618096e+117
-3.6214519e+117
-3.7351478e+117
-3.7321603e+117
-3.8486878e+117
-3.8451662e+117
-4.4338648e+117
-4.3135285e+117
-4.3066126e+117
-4.424682e+117
-4.1810353e+117
-3.7297917e+117
-3.8422374e+117
-3.9533627e+117
-3.9472015e+117
-3.7259754e+117
-3.8367307e+117
-3.2267031e+117
-3.3941969e+117
-3.5068721e+117
-3.5045051e+117
-3.3914465e+117
-3.618116e+117
-3.615783e+117
-4.06632e+117
-4.0585505e+117
-4.1700093e+117
-3.9413878e+117
-3.0028975e+117
-3.1676396e+117
-3.1707715e+117
-3.2787893e+117
-3.2815671e+117
-3.3903243e+117
-3.500318e+117
-3.4979581e+117
-3.3879777e+117
-3.6111387e+117
-3.7210508e+117
-3.7171951e+117
-3.6084716e+117
-3.8313292e+117
-3.8255977e+117
-3.9333618e+117
-3.1649796e+117
-3.1674512e+117
-3.2730021e+117
-3.2751266e+117
-3.3843684e+117
-3.493879e+117
-3.4915711e+117
-3.3821194e+117
-3.6037046e+117
-3.7123287e+117
-3.7088401e+117
-3.6011712e+117
-3.3786584e+117
-3.4876134e+117
-3.4853541e+117
-3.3762677e+117
-5.75671e+117
-5.6396226e+117
-5.3833397e+117
-4.8100812e+117
-4.8101332e+117
-4.8100561e+117
-4.8112363e+117
-4.8141619e+117
-4.9306086e+117
-4.9312146e+117
-4.9310963e+117
-4.9322833e+117
-4.9367365e+117
-5.0484998e+117
-5.0486245e+117
-5.1636399e+117
-5.163851e+117
-5.2738017e+117
-5.4902481e+117
-5.4829024e+117
-5.4876422e+117
-5.4951172e+117
-5.4746536e+117
-5.465036e+117
-5.4697928e+117
-5.4793363e+117
-5.4828851e+117
-5.4729939e+117
-5.4747023e+117
-5.4849202e+117
-5.4987393e+117
-5.491205e+117
-5.4933196e+117
-5.5008766e+117
-5.4540942e+117
-5.4629579e+117
-5.4709101e+117
-5.4779605e+117
-5.5105832e+117
-5.504856e+117
-5.5070607e+117
-5.5131646e+117
-5.5100246e+117
-5.5052919e+117
-5.5113144e+117
-5.5165525e+117
-5.4959108e+117
-5.5006459e+117
-5.5009963e+117
-5.506221e+117
-5.5216082e+117
-5.516007e+117
-5.5190049e+117
-5.5249899e+117
-5.4871286e+117
-5.4833291e+117
-5.4912822e+117
-5.4956685e+117
-5.4989332e+117
-5.5013334e+117
-5.5042518e+117
-5.507652e+117
-5.5170332e+117
-5.513815e+117
-5.5210447e+117
-5.5248766e+117
-5.5203506e+117
-5.5284553e+117
-5.5319145e+117
-5.523789e+117
-5.5381911e+117
-5.5346403e+117
-5.5389144e+117
-5.542559e+117
-5.5308699e+117
-5.5265079e+117
-5.5302029e+117
-5.5349866e+117
-5.5415634e+117
-5.5438608e+117
-5.5358871e+117
-5.5492632e+117
-5.5294957e+117
-5.5236789e+117
-5.5319675e+117
-5.5376004e+117
-5.5474643e+117
-5.5397429e+117
-5.5452066e+117
-5.5529027e+117
-5.5516027e+117
-5.5593367e+117
-5.5649299e+117
-5.5570962e+117
-5.5066592e+117
-5.5127504e+117
-5.4934763e+117
-5.4997419e+117
-5.5043251e+117
-5.5103583e+117
-5.5203635e+117
-5.5144367e+117
-5.5173026e+117
-5.5231931e+117
-5.5330823e+117
-5.527168e+117
-5.4776744e+117
-5.4831646e+117
-5.4881874e+117
-5.4986161e+117
-5.4893977e+117
-5.4941402e+117
-5.4638843e+117
-5.4712605e+117
-5.4772568e+117
-5.4824416e+117
-5.4877391e+117
-5.4933403e+117
-5.5034877e+117
-5.5087734e+117
-5.4986544e+117
-5.5172415e+117
-5.508333e+117
-5.4997881e+117
-5.5041976e+117
-5.5091055e+117
-5.5133228e+117
-5.5246706e+117
-5.529003e+117
-5.5253871e+117
-5.5172143e+117
-5.5214914e+117
-5.5329682e+117
-5.5345145e+117
-5.5296329e+117
-5.5373664e+117
-5.5422581e+117
-5.5129129e+117
-5.5180775e+117
-5.5265587e+117
-5.5215841e+117
-5.4791031e+117
-5.4777403e+117
-5.4775247e+117
-5.4881414e+117
-5.4884462e+117
-5.4897552e+117
-5.4899733e+117
-5.4795958e+117
-5.4781581e+117
-5.4886304e+117
-5.4975115e+117
-5.4986301e+117
-5.5061181e+117
-5.50511e+117
-5.4985307e+117
-5.4973125e+117
-5.4971035e+117
-5.504712e+117
-5.5048579e+117
-5.5059787e+117
-5.4525378e+117
-5.4517291e+117
-5.4524609e+117
-5.4653956e+117
-5.4653329e+117
-5.4665782e+117
-5.4547163e+117
-5.4676551e+117
-5.4661916e+117
-5.4534378e+117
-5.4800654e+117
-5.467283e+117
-5.4746378e+117
-5.4615979e+117
-5.4703994e+117
-5.4572672e+117
-5.4588613e+117
-5.4729756e+117
-5.4852489e+117
-5.4912373e+117
-5.5009139e+117
-5.4862737e+117
-5.4822572e+117
-5.4962898e+117
-5.4924712e+117
-5.4961074e+117
-5.5055459e+117
-5.5091845e+117
-5.5137664e+117
-5.521225e+117
-5.5166942e+117
-5.5122517e+117
-5.5047666e+117
-5.5084946e+117
-5.5010609e+117
-5.5449247e+117
-5.5520157e+117
-5.5566042e+117
-5.549694e+117
-5.5542228e+117
-5.5580897e+117
-5.5549678e+117
-5.547198e+117
-5.551315e+117
-5.5616146e+117
-5.5320843e+117
-5.5365258e+117
-5.5405169e+117
-5.5478801e+117
-5.5397441e+117
-5.5440578e+117
-5.5633775e+117
-5.5588733e+117
-5.5655264e+117
-5.569982e+117
-5.5714848e+117
-5.5764415e+117
-5.5807348e+117
-5.5758266e+117
-5.5851039e+117
-5.5808462e+117
-5.5850914e+117
-5.5893546e+117
-5.5770953e+117
-5.5699268e+117
-5.5737056e+117
-5.5813895e+117
-5.5741108e+117
-5.5779597e+117
-5.5603585e+117
-5.5641175e+117
-5.5675817e+117
-5.5726871e+117
-5.5656751e+117
-5.5693145e+117
-5.5976036e+117
-5.5973262e+117
-5.5923231e+117
-5.6026836e+117
-5.5856737e+117
-5.5807389e+117
-5.5860624e+117
-5.5910108e+117
-5.5942622e+117
-5.5899733e+117
-5.5954037e+117
-5.5997469e+117
-5.6018605e+117
-5.6074272e+117
-5.6120025e+117
-5.6063092e+117
-5.5618082e+117
-5.5549013e+117
-5.5604194e+117
-5.5673941e+117
-5.5739574e+117
-5.566904e+117
-5.5725514e+117
-5.579688e+117
-5.5867097e+117
-5.5805766e+117
-5.5862981e+117
-5.5921618e+117
-5.5684563e+117
-5.5740233e+117
-5.5803547e+117
-5.5749389e+117
-5.536882e+117
-5.5368263e+117
-5.5376788e+117
-5.5429095e+117
-5.5420219e+117
-5.5419334e+117
-5.5388659e+117
-5.5406882e+117
-5.5459566e+117
-5.5441151e+117
-5.5485634e+117
-5.5502728e+117
-5.5541431e+117
-5.552389e+117
-5.5460385e+117
-5.5462851e+117
-5.5473116e+117
-5.5510193e+117
-5.5498987e+117
-5.5494822e+117
-5.5120998e+117
-5.5132148e+117
-5.5202148e+117
-5.5189815e+117
-5.5123519e+117
-5.5113137e+117
-5.5115095e+117
-5.5182433e+117
-5.5178408e+117
-5.5186886e+117
-5.5250639e+117
-5.5245402e+117
-5.5251266e+117
-5.5316963e+117
-5.5310267e+117
-5.5312481e+117
-5.5260306e+117
-5.5275314e+117
-5.5344713e+117
-5.5327529e+117
-5.5461552e+117
-5.53902e+117
-5.5414388e+117
-5.5343263e+117
-5.5373058e+117
-5.5302479e+117
-5.524007e+117
-5.5314874e+117
-5.526843e+117
-5.5195186e+117
-5.5228209e+117
-5.5156888e+117
-5.536206e+117
-5.5286494e+117
-5.5437777e+117
-5.5508651e+117
-5.5577768e+117
-5.5524149e+117
-5.5477399e+117
-5.5435961e+117
-5.5488365e+117
-5.5530132e+117
-5.5667931e+117
-5.5620476e+117
-5.5661326e+117
-5.5708556e+117
-5.5571455e+117
-5.5624772e+117
-5.55733e+117
-5.5531676e+117
-5.5570615e+117
-5.561305e+117
-5.5287652e+117
-5.519552e+117
-5.5380554e+117
-5.5470588e+117
-5.539508e+117
-5.5298325e+117
-5.5633927e+117
-5.5713379e+117
-5.5793284e+117
-5.5713131e+117
-5.5477251e+117
-5.5552475e+117
-5.5631703e+117
-5.5554046e+117
-5.6138818e+117
-5.6219902e+117
-5.6267665e+117
-5.6185501e+117
-5.6038149e+117
-5.6116305e+117
-5.6167952e+117
-5.6088885e+117
-5.5927654e+117
-5.6005966e+117
-5.606384e+117
-5.5985869e+117
-5.5790237e+117
-5.5870305e+117
-5.5941564e+117
-5.5861945e+117
-5.5937348e+117
-5.5893226e+117
-5.5936549e+117
-5.59815e+117
-5.5855552e+117
-5.5779477e+117
-5.5820149e+117
-5.5817902e+117
-5.5860311e+117
-5.5897393e+117
-5.6134034e+117
-5.6176072e+117
-5.5986812e+117
-5.6032547e+117
-5.6088514e+117
-5.6042334e+117
-5.6243067e+117
-5.6200536e+117
-5.6257764e+117
-5.6301493e+117
-5.6165853e+117
-5.6108648e+117
-5.6155082e+117
-5.6212201e+117
-5.5698156e+117
-5.5651592e+117
-5.561048e+117
-5.5733802e+117
-5.5686377e+117
-5.5646078e+117
-5.5745508e+117
-5.5782029e+117
-5.6324021e+117
-5.6406674e+117
-5.6453205e+117
-5.6369068e+117
-5.623126e+117
-5.6312769e+117
-5.6359539e+117
-5.6277805e+117
-6.0779706e+117
-4.346239e+117
-4.3113587e+117
-4.306639e+117
-3.9262699e+117
-3.915883e+117
-3.5404184e+117
-4.2994676e+117
-5.2348046e+117
-5.0533072e+117
-5.2054375e+117
-5.3800783e+117
-5.2218589e+117
-5.2553672e+117
-4.7631809e+117
-4.6942668e+117
-4.6993262e+117
-4.3918127e+117
-4.8142781e+117
-4.7317423e+117
-5.1050998e+117
-5.1734358e+117
-5.1313544e+117
-5.1963146e+117
-4.7700709e+117
-4.4194667e+117
-4.8200333e+117
-5.2202139e+117
-5.2066407e+117
-4.8393327e+117
-4.3409255e+117
-4.7656737e+117
-5.18272e+117
-5.1752962e+117
-4.7972313e+117
-5.5464305e+117
-5.8438696e+117
-5.6075741e+117
-5.8492373e+117
-5.667849e+117
-5.833127e+117
-5.6783583e+117
-5.3901238e+117
-5.5377603e+117
-5.5655313e+117
-5.5641896e+117
-5.3564538e+117
-1.2741017e+117
-3.103695e+117
-3.3338556e+117
-3.8303196e+117
-3.2632406e+117
-3.3320942e+117
-3.030271e+117
-3.3120878e+117
-2.6258236e+117
-2.7638386e+117
-2.7012534e+117
-3.3435301e+117
-2.531104e+117
-1.9549783e+117
-2.8430308e+117
-2.9161405e+117
-2.8184921e+117
-2.2726677e+117
-2.1498184e+117
-2.4578707e+117
-3.5900384e+117
-3.6354581e+117
-3.702401e+117
-3.5549791e+117
-2.5779866e+117
-2.5127621e+117
-2.6183787e+117
-3.0348131e+117
-2.9830148e+117
-2.5906708e+117
-3.1158974e+117
-2.6338835e+117
-2.407457e+117
-3.1763285e+117
-2.7428088e+117
-2.4604504e+117
-2.5440316e+117
-2.7661543e+117
-2.3288416e+117
-2.2783184e+117
-2.6298184e+117
-2.6843376e+117
-3.2044234e+117
-4.449006e+117
-3.9742306e+117
-3.9326551e+117
-4.0323973e+117
-3.8655639e+117
-3.465779e+117
-3.4341491e+117
-3.8584133e+117
-2.0029241e+117
-2.1287961e+117
-2.3024656e+117
-6.1371015e+116
-5.9448579e+117
-6.014571e+117
-5.9437521e+117
-6.0617595e+117
-4.4488879e+117
-4.4464049e+117
-3.8543584e+117
-3.7408996e+117
-3.9671284e+117
-3.8546628e+117
-3.7405266e+117
-3.4556711e+117
-3.6261367e+117
-3.6254413e+117
-3.9678895e+117
-4.0839025e+117
-4.0829531e+117
-4.2011707e+117
-4.2027425e+117
-4.3247436e+117
-4.3225215e+117
-3.2300912e+117
-3.005692e+117
-4.878755e+117
-4.4052067e+117
-3.2363717e+117
-4.2985421e+117
-3.3057241e+117
-2.6983548e+117
-3.3844685e+117
-2.7719482e+117
-2.1203452e+117
-3.2805108e+117
-3.9209595e+117
-2.7277602e+117
-2.4038102e+117
-4.3770808e+117
-3.9124677e+117
-3.4256621e+117
-3.6047813e+117
-2.9319217e+117
-2.4801662e+117
-2.058389e+117
-2.3219265e+117
-2.8858069e+117
-2.7839796e+117
-2.112805e+117
-1.1662865e+117
-1.4594974e+117
-9.6529118e+116
-1.3835436e+117
-1.27707e+117
-1.6497891e+117
-2.1937456e+117
-2.4499546e+117
-2.9018431e+117
-2.4160493e+117
-4.1348828e+116
-4.2587901e+116
-4.23677e+116
-1.842164e+117
-2.4434276e+117
-2.48423e+117
-1.618273e+117
-4.2054752e+117
-3.2338529e+117
-3.5167415e+117
-3.4029037e+117
-3.4030804e+117
-3.5159641e+117
-3.6279955e+117
-3.6293272e+117
-3.7406351e+117
-3.740388e+117
-3.8544134e+117
-3.8536939e+117
-3.9683113e+117
-3.969503e+117
-4.0856357e+117
-4.0871371e+117
-4.2064565e+117
-3.0098345e+117
-5.4211435e+117
-5.4255791e+117
-5.4365797e+117
-5.433505e+117
-5.4529777e+117
-5.442699e+117
-5.4392705e+117
-5.4428214e+117
-5.4520129e+117
-5.4291578e+117
-5.4283146e+117
-5.4271642e+117
-5.4367903e+117
-5.4202618e+117
-5.423665e+117
-5.4374701e+117
-5.4774063e+117
-5.4721484e+117
-5.4672573e+117
-5.4444791e+117
-5.4970032e+117
-5.5034169e+117
-5.4897746e+117
-5.4833286e+117
-3.9704997e+117
-3.8554333e+117
-3.7412829e+117
-3.5171389e+117
-3.4064755e+117
-3.2946724e+117
-3.0139343e+117
-3.1808508e+117
-3.1805829e+117
-3.2921858e+117
-3.1789351e+117
-3.2905466e+117
-3.2909492e+117
-3.177302e+117
-3.4042888e+117
-3.4015972e+117
-3.5159381e+117
-3.5160344e+117
-3.5146187e+117
-3.4020785e+117
-3.4020705e+117
-3.5130327e+117
-3.6280663e+117
-3.6284814e+117
-3.6277096e+117
-3.6288467e+117
-3.7416475e+117
-3.7416487e+117
-3.7412519e+117
-3.7407692e+117
-3.6279192e+117
-3.6251604e+117
-3.7376046e+117
-3.856455e+117
-3.8562969e+117
-3.8561243e+117
-3.8558567e+117
-3.971561e+117
-3.9724841e+117
-3.9727163e+117
-3.9717752e+117
-3.851477e+117
-3.8543516e+117
-3.9664072e+117
-3.9689835e+117
-4.0894318e+117
-4.0909444e+117
-4.090889e+117
-4.0899204e+117
-4.2086488e+117
-4.2100525e+117
-4.2100797e+117
-4.2083146e+117
-4.3291612e+117
-4.3293226e+117
-4.3292919e+117
-4.4510837e+117
-4.4508081e+117
-4.4507563e+117
-4.5771287e+117
-4.5771017e+117
-4.7066911e+117
-4.7066655e+117
-4.8366813e+117
-4.9648306e+117
-2.7929118e+117
-2.9579668e+117
-3.0693199e+117
-3.0675998e+117
-2.9553125e+117
-3.1789342e+117
-3.2891793e+117
-3.2880981e+117
-3.1779837e+117
-3.5122426e+117
-3.4006705e+117
-3.3985268e+117
-3.5086687e+117
-3.6203079e+117
-3.6243714e+117
-3.7351874e+117
-3.7317059e+117
-2.9557309e+117
-2.9527372e+117
-3.0617349e+117
-3.0646795e+117
-3.175139e+117
-3.2853648e+117
-3.2828448e+117
-3.1721873e+117
-3.5070821e+117
-3.3963086e+117
-3.3937912e+117
-3.5029352e+117
-5.4396221e+117
-5.4412136e+117
-5.4405267e+117
-5.4423222e+117
-5.4322095e+117
-5.447695e+117
-5.4431421e+117
-5.4302839e+117
-5.4621063e+117
-5.3064632e+117
-2.9508254e+117
-3.0596526e+117
-3.0581987e+117
-2.9487469e+117
-3.1696705e+117
-3.279546e+117
-3.2777326e+117
-3.1685565e+117
-5.3306929e+117
-5.3671705e+117
-5.3461793e+117
-5.3480188e+117
-5.370999e+117
-5.3506568e+117
-5.375663e+117
-5.2999638e+117
-5.3454448e+117
-5.3227969e+117
-5.3429656e+117
-5.3617808e+117
-5.3604188e+117
-5.3372694e+117
-5.3318387e+117
-5.3510794e+117
-5.3240875e+117
-5.3123616e+117
-5.3213533e+117
-5.3391287e+117
-5.3590519e+117
-5.3768862e+117
-5.3791323e+117
-5.3552075e+117
-5.4302077e+117
-5.4208495e+117
-5.3977752e+117
-5.4093048e+117
-5.3638074e+117
-5.3698016e+117
-5.3922975e+117
-5.4082038e+117
-5.4013232e+117
-5.418641e+117
-5.3991255e+117
-5.3846656e+117
-5.4455338e+117
-5.4434262e+117
-5.4339566e+117
-5.4209796e+117
-5.4526008e+117
-5.4325133e+117
-5.4413507e+117
-5.4292625e+117
-5.4228854e+117
-5.4129365e+117
-5.3768119e+117
-5.3852976e+117
-5.3847784e+117
-5.4120636e+117
-5.429806e+117
-5.4475601e+117
-5.4326995e+117
-5.4154595e+117
-5.4182619e+117
-5.4353251e+117
-5.4512005e+117
-5.4498061e+117
-5.4341939e+117
-5.4169386e+117
-5.3866654e+117
-5.3930905e+117
-5.4020552e+117
-5.4074303e+117
-5.3972907e+117
-5.466497e+117
-5.4598353e+117
-5.4354779e+117
-5.4410679e+117
-5.4541543e+117
-5.4481526e+117
-5.4111701e+117
-5.4002867e+117
-5.4028361e+117
-5.4144808e+117
-5.4241828e+117
-5.4299935e+117
-5.4209024e+117
-5.428995e+117
-5.4352247e+117
-5.425094e+117
-5.4101139e+117
-5.4116218e+117
-5.4163391e+117
-5.4187251e+117
-5.4239157e+117
-5.4161001e+117
-5.3811276e+117
-5.3859679e+117
-5.3975207e+117
-5.3911392e+117
-5.3913544e+117
-5.3929146e+117
-5.4036074e+117
-5.4057479e+117
-5.4078458e+117
-5.3944881e+117
-5.3834941e+117
-5.3748447e+117
-5.4639797e+117
-5.4652739e+117
-5.4576768e+117
-5.4430628e+117
-5.4617437e+117
-5.4287426e+117
-5.3916248e+117
-5.388178e+117
-5.3939239e+117
-5.3959443e+117
-5.4565466e+117
-5.4874636e+117
-5.4849211e+117
-5.4711228e+117
-5.4737146e+117
-5.4589424e+117
-5.492957e+117
-5.4900093e+117
-5.4612107e+117
-5.4762116e+117
-5.4786924e+117
-5.4635646e+117
-5.4275431e+117
-5.4142929e+117
-5.4153688e+117
-5.4290096e+117
-5.425967e+117
-5.4238959e+117
-5.4109147e+117
-5.4128302e+117
-5.4356986e+117
-5.4412685e+117
-5.4378865e+117
-5.4434524e+117
-5.4515402e+117
-5.4492411e+117
-5.439697e+117
-5.4454709e+117
-5.441736e+117
-5.4477463e+117
-5.4561251e+117
-5.4538118e+117
-5.4062007e+117
-5.4070764e+117
-5.4027671e+117
-5.4048002e+117
-5.4749421e+117
-5.4713061e+117
-5.4587367e+117
-5.4453134e+117
-5.4484551e+117
-5.4622641e+117
-5.4820237e+117
-5.4783616e+117
-5.4651779e+117
-5.4511069e+117
-5.4682712e+117
-5.4539245e+117
-5.4220226e+117
-5.419901e+117
-5.4072289e+117
-5.4091062e+117
-5.4045168e+117
-5.4166143e+117
-5.4184275e+117
-5.4059479e+117
-5.4277248e+117
-5.4321873e+117
-5.4296849e+117
-5.4344944e+117
-5.4417684e+117
-5.4390625e+117
-5.4313649e+117
-5.436527e+117
-5.4442282e+117
-5.4391374e+117
-5.4468487e+117
-5.4337043e+117
-5.3992589e+117
-5.4009992e+117
-5.398278e+117
-5.3971172e+117
-5.3623104e+117
-5.3813688e+117
-5.3638123e+117
-5.3843035e+117
-5.3427749e+117
-5.3207686e+117
-5.3212869e+117
-5.3435511e+117
-5.3223459e+117
-5.3244554e+117
-5.3646127e+117
-5.3858825e+117
-5.3659802e+117
-5.3876654e+117
-5.3440948e+117
-5.3455687e+117
-5.322351e+117
-5.321249e+117
-5.3579471e+117
-5.371455e+117
-5.3615548e+117
-5.3785791e+117
-5.3419913e+117
-5.3428933e+117
-5.2849861e+117
-5.3242197e+117
-5.3258911e+117
-5.3682729e+117
-5.3914007e+117
-5.3666731e+117
-5.389664e+117
-5.3457505e+117
-5.3473175e+117
-5.3247195e+117
-5.3240873e+117
-5.3660862e+117
-5.3456215e+117
-5.3882073e+117
-5.3665381e+117
-5.3891748e+117
-5.3457385e+117
-5.3314275e+117
-5.3330824e+117
-5.3744864e+117
-5.3976269e+117
-5.3735079e+117
-5.3967237e+117
-5.3526472e+117
-5.3537753e+117
-5.3275292e+117
-5.329255e+117
-5.3720956e+117
-5.3953652e+117
-5.3698148e+117
-5.3930274e+117
-5.3488655e+117
-5.3510477e+117
-6.2309337e+117
-6.2086229e+117
-6.1600788e+117
-6.1510961e+117
-6.2100044e+117
-6.1657076e+117
-6.1669126e+117
-6.1073838e+117
-6.0441235e+117
-6.0064234e+117
-6.1052755e+117
-6.0381535e+117
-5.9962734e+117
-5.9835943e+117
-6.1029702e+117
-6.0377651e+117
-5.9928492e+117
-5.9921947e+117
-5.9928975e+117
-5.9858787e+117
-6.0413289e+117
-5.9965711e+117
-5.993679e+117
-6.0744196e+117
-5.9997543e+117
-1.3058316e+118
-6.0541034e+117
-6.0617382e+117
-6.0958329e+117
-6.1802262e+117
-5.9706075e+117
-5.9450073e+117
-5.8709429e+117
-5.9571925e+117
-6.0183379e+117
-5.4471146e+117
-5.8390702e+117
-5.9710767e+117
-6.0640536e+117
-5.6381196e+117
-5.9210512e+117
-5.9706265e+117
-5.9774638e+117
-6.0286303e+117
-6.0611149e+117
-6.0758574e+117
-3.5917554e+117
-6.1934947e+117
-6.1200147e+117
-6.0713333e+117
-6.1511083e+117
-6.1841763e+117
-6.2582174e+117
-6.1693555e+117
-6.2545863e+117
-6.1064212e+117
-6.0983986e+117
-6.2212067e+117
-6.2414122e+117
-6.1607464e+117
-6.0285393e+117
-6.0933237e+117
-6.0941963e+117
-6.0789404e+117
-6.0183337e+117
-6.1383841e+117
-6.161081e+117
-6.1069234e+117
-6.0526244e+117
-6.0770133e+117
-6.1172876e+117
-6.1317004e+117
-5.9819878e+117
-6.1678665e+117
-6.1392615e+117
-5.9687799e+117
-4.6897582e+117
-4.6910798e+117
-4.4416556e+117
-4.4430435e+117
-4.4430713e+117
-4.5669357e+117
-4.5669925e+117
-4.5668239e+117
-4.5669513e+117
-4.4430732e+117
-4.5670446e+117
-4.4429339e+117
-3.8548354e+117
-3.7411293e+117
-3.853036e+117
-3.8544306e+117
-3.7404677e+117
-3.8549349e+117
-3.7400586e+117
-3.4572597e+117
-3.6259126e+117
-3.6229654e+117
-3.7376542e+117
-3.6270121e+117
-3.6259549e+117
-3.8512525e+117
-3.9654478e+117
-3.9679778e+117
-3.9691023e+117
-3.9672169e+117
-3.967409e+117
-4.0825347e+117
-4.0824597e+117
-4.0823434e+117
-4.0829203e+117
-4.2002145e+117
-4.2003503e+117
-4.2000336e+117
-4.199964e+117
-4.0826076e+117
-4.083289e+117
-4.1998199e+117
-4.2005339e+117
-4.1992608e+117
-4.0818059e+117
-4.3208518e+117
-4.3201605e+117
-4.3201807e+117
-4.3204118e+117
-4.31951e+117
-4.3203768e+117
-4.3206209e+117
-4.3189356e+117
-4.4384398e+117
-4.4425963e+117
-4.443582e+117
-4.689104e+117
-4.6891838e+117
-4.6889432e+117
-4.0799093e+117
-3.9638658e+117
-4.1953864e+117
-4.1900513e+117
-3.9595403e+117
-4.0751151e+117
-3.2320563e+117
-3.3967432e+117
-3.4007649e+117
-3.5128086e+117
-3.5095565e+117
-3.6206657e+117
-3.6239359e+117
-3.7353911e+117
-3.7321432e+117
-3.8490782e+117
-3.8455149e+117
-3.7300426e+117
-3.8422637e+117
-3.9534006e+117
-3.9472273e+117
-3.7261778e+117
-3.8367531e+117
-3.0078815e+117
-3.1727968e+117
-3.1750875e+117
-3.2842602e+117
-3.2867361e+117
-3.3964463e+117
-3.5066576e+117
-3.5044055e+117
-3.3938812e+117
-3.6183473e+117
-3.6159474e+117
-3.0638638e+117
-2.9520417e+117
-2.9499484e+117
-3.0611552e+117
-3.1702414e+117
-3.1734245e+117
-3.2785862e+117
-3.2813687e+117
-3.3904561e+117
-3.5004514e+117
-3.4980885e+117
-3.3881243e+117
-3.6111503e+117
-3.7210638e+117
-3.7172019e+117
-3.6084773e+117
-3.1651276e+117
-3.1675353e+117
-3.2731269e+117
-3.275225e+117
-3.3843746e+117
-3.4938847e+117
-3.4915758e+117
-3.3821267e+117
-4.810099e+117
-4.8101266e+117
-4.9311763e+117
-4.9312352e+117
-5.0484673e+117
-5.163547e+117
-5.4958546e+117
-5.4885261e+117
-5.4924411e+117
-5.4998616e+117
-5.4799668e+117
-5.4698387e+117
-5.4737472e+117
-5.483829e+117
-5.4863818e+117
-5.4761276e+117
-5.4775842e+117
-5.488078e+117
-5.5024663e+117
-5.495006e+117
-5.4967589e+117
-5.5042205e+117
-5.4577149e+117
-5.467396e+117
-5.4753454e+117
-5.4822896e+117
-5.5146026e+117
-5.5087748e+117
-5.5105124e+117
-5.5166259e+117
-5.5160237e+117
-5.5114328e+117
-5.5165545e+117
-5.5216038e+117
-5.5017392e+117
-5.5067856e+117
-5.5060013e+117
-5.5114506e+117
-5.5255413e+117
-5.5200911e+117
-5.5226076e+117
-5.5284641e+117
-5.491799e+117
-5.4876153e+117
-5.4956319e+117
-5.4995758e+117
-5.5029819e+117
-5.5059293e+117
-5.5089122e+117
-5.5119566e+117
-5.5237461e+117
-5.5200999e+117
-5.5262267e+117
-5.5302944e+117
-5.5272374e+117
-5.5339743e+117
-5.5372917e+117
-5.5304762e+117
-5.5421912e+117
-5.5388682e+117
-5.5425942e+117
-5.5459917e+117
-5.5350308e+117
-5.5305611e+117
-5.5338061e+117
-5.5386173e+117
-5.5414346e+117
-5.5439093e+117
-5.5358842e+117
-5.5491784e+117
-5.5292582e+117
-5.5234984e+117
-5.5318347e+117
-5.5373986e+117
-5.5474308e+117
-5.5396638e+117
-5.5450453e+117
-5.5527906e+117
-5.5516931e+117
-5.5594722e+117
-5.5649135e+117
-5.5570479e+117
-5.506649e+117
-5.5126122e+117
-5.4933555e+117
-5.499539e+117
-5.5041046e+117
-5.5100612e+117
-5.520063e+117
-5.5142023e+117
-5.5172428e+117
-5.5230086e+117
-5.5329071e+117
-5.5271026e+117
-5.4784515e+117
-5.4835255e+117
-5.4882732e+117
-5.4986467e+117
-5.4902011e+117
-5.4944302e+117
-5.4651378e+117
-5.4721875e+117
-5.47755e+117
-5.4825166e+117
-5.4877029e+117
-5.4932777e+117
-5.5033834e+117
-5.5085969e+117
-5.4985044e+117
-5.5173692e+117
-5.5084092e+117
-5.500667e+117
-5.5045235e+117
-5.510026e+117
-5.5136922e+117
-5.5257066e+117
-5.5294991e+117
-5.5255867e+117
-5.5182518e+117
-5.5219464e+117
-5.5332303e+117
-5.5345024e+117
-5.5296982e+117
-5.5374887e+117
-5.5422952e+117
-5.5128577e+117
-5.5179534e+117
-5.5264892e+117
-5.5215855e+117
-5.4795763e+117
-5.4785514e+117
-5.4781245e+117
-5.4888035e+117
-5.4893928e+117
-5.4903566e+117
-5.4902133e+117
-5.4797557e+117
-5.4784633e+117
-5.4890079e+117
-5.4979831e+117
-5.4989234e+117
-5.5064502e+117
-5.5056071e+117
-5.4992301e+117
-5.4984446e+117
-5.4978869e+117
-5.5055043e+117
-5.5059878e+117
-5.5066689e+117
-5.4526694e+117
-5.4521515e+117
-5.4529542e+117
-5.4658581e+117
-5.4658404e+117
-5.466835e+117
-5.4547057e+117
-5.4676947e+117
-5.4663803e+117
-5.4536225e+117
-5.4798048e+117
-5.4669442e+117
-5.4746221e+117
-5.4615105e+117
-5.470289e+117
-5.4570751e+117
-5.4587404e+117
-5.4727856e+117
-5.4851508e+117
-5.4911604e+117
-5.5009118e+117
-5.4863967e+117
-5.4822777e+117
-5.4964893e+117
-5.492569e+117
-5.4961264e+117
-5.5056127e+117
-5.5093427e+117
-5.513938e+117
-5.5213946e+117
-5.516852e+117
-5.5125604e+117
-5.5050607e+117
-5.5086906e+117
-5.5012448e+117
-5.5450866e+117
-5.5521983e+117
-5.5567066e+117
-5.5497763e+117
-5.5553058e+117
-5.5586375e+117
-5.5552935e+117
-5.5483367e+117
-5.5518761e+117
-5.5619395e+117
-5.533223e+117
-5.537066e+117
-5.5408139e+117
-5.5481937e+117
-5.5408882e+117
-5.5446124e+117
-5.5634917e+117
-5.5590713e+117
-5.5657197e+117
-5.5700935e+117
-5.5716861e+117
-5.5766542e+117
-5.5808652e+117
-5.5759506e+117
-5.5852397e+117
-5.5810689e+117
-5.585305e+117
-5.589484e+117
-5.5774662e+117
-5.5710419e+117
-5.5742876e+117
-5.5817348e+117
-5.5752345e+117
-5.5785216e+117
-5.561452e+117
-5.5646734e+117
-5.5679134e+117
-5.5730314e+117
-5.5667687e+117
-5.5698806e+117
-5.5976709e+117
-5.5975726e+117
-5.5925733e+117
-5.6027521e+117
-5.5857319e+117
-5.5807937e+117
-5.5860404e+117
-5.5909899e+117
-5.5943157e+117
-5.5900307e+117
-5.5953782e+117
-5.5997153e+117
-5.6021031e+117
-5.6074891e+117
-5.6120547e+117
-5.6065455e+117
-5.5618392e+117
-5.5549125e+117
-5.5603565e+117
-5.5673482e+117
-5.5741651e+117
-5.5670945e+117
-5.5725814e+117
-5.5797298e+117
-5.5869368e+117
-5.5807989e+117
-5.5863533e+117
-5.592213e+117
-5.5685003e+117
-5.5739873e+117
-5.5803163e+117
-5.5749791e+117
-5.5376898e+117
-5.5383588e+117
-5.5387109e+117
-5.5439293e+117
-5.5435788e+117
-5.5427619e+117
-5.5395224e+117
-5.5411555e+117
-5.5464166e+117
-5.5447644e+117
-5.549214e+117
-5.5507095e+117
-5.5545657e+117
-5.5530099e+117
-5.5468792e+117
-5.5478991e+117
-5.5483599e+117
-5.5520156e+117
-5.5514202e+117
-5.5502524e+117
-5.5126634e+117
-5.5135938e+117
-5.5206192e+117
-5.5195649e+117
-5.513074e+117
-5.512531e+117
-5.5123956e+117
-5.5191459e+117
-5.5190906e+117
-5.51943e+117
-5.5258447e+117
-5.525938e+117
-5.5260947e+117
-5.5326657e+117
-5.5324543e+117
-5.5320152e+117
-5.5266536e+117
-5.5279811e+117
-5.5349259e+117
-5.5333842e+117
-5.5463715e+117
-5.5392828e+117
-5.5418327e+117
-5.5347322e+117
-5.5376024e+117
-5.5305554e+117
-5.5242493e+117
-5.5317073e+117
-5.5272096e+117
-5.5198893e+117
-5.5230798e+117
-5.5159497e+117
-5.5364253e+117
-5.5288786e+117
-5.5440168e+117
-5.5510693e+117
-5.5580396e+117
-5.5526905e+117
-5.5481642e+117
-5.5439186e+117
-5.5491393e+117
-5.5534216e+117
-5.5670662e+117
-5.5623663e+117
-5.5664041e+117
-5.5711025e+117
-5.5573834e+117
-5.562712e+117
-5.5577609e+117
-5.5534784e+117
-5.5573392e+117
-5.561702e+117
-5.5939467e+117
-5.5895364e+117
-5.5937897e+117
-5.5982864e+117
-5.5858941e+117
-5.5790555e+117
-5.5825726e+117
-5.5829231e+117
-5.5865992e+117
-5.5900812e+117
-5.6133833e+117
-5.6175838e+117
-5.5987434e+117
-5.6033186e+117
-5.6088335e+117
-5.6042131e+117
-5.6245685e+117
-5.6203207e+117
-5.6258585e+117
-5.6302255e+117
-5.6166543e+117
-5.6111178e+117
-5.6157671e+117
-5.6212953e+117
-5.5700359e+117
-5.5655484e+117
-5.5613319e+117
-5.5735776e+117
-5.5689975e+117
-5.5648759e+117
-5.574755e+117
-5.5783991e+117
-4.3000302e+117
-4.2800309e+117
-3.8439927e+117
-4.2333201e+117
-4.2431762e+117
-3.8374886e+117
-3.4340286e+117
-3.8300179e+117
-3.4118448e+117
-4.264678e+117
-5.2367076e+117
-5.0890855e+117
-5.2681274e+117
-5.2328702e+117
-5.0381115e+117
-5.2593743e+117
-4.7354906e+117
-4.6605986e+117
-4.655623e+117
-4.6764349e+117
-4.3510014e+117
-4.7918201e+117
-4.7019466e+117
-5.0591458e+117
-5.1000429e+117
-5.1629793e+117
-5.1904371e+117
-4.7416466e+117
-4.3886685e+117
-4.3072792e+117
-5.8591278e+117
-5.6930843e+117
-5.8562809e+117
-5.7091843e+117
-5.4160155e+117
-5.700688e+117
-5.4339364e+117
-5.5866053e+117
-5.3888054e+117
-2.9782298e+117
-3.3131481e+117
-2.6812359e+117
-2.7948673e+117
-2.692892e+117
-3.3290345e+117
-2.5984046e+117
-1.9604894e+117
-2.5482781e+117
-1.4255992e+117
-2.2356201e+117
-1.8433522e+117
-3.5204093e+117
-3.4481055e+117
-3.595608e+117
-2.2914899e+117
-2.4808035e+117
-2.6083444e+117
-2.9538174e+117
-2.9146708e+117
-2.50312e+117
-2.4391482e+117
-2.8849121e+117
-2.2972348e+117
-3.0526272e+117
-2.5945034e+117
-2.3172973e+117
-2.3453815e+117
-3.133718e+117
-2.6910828e+117
-2.4125817e+117
-2.4727242e+117
-2.5428158e+117
-2.3257911e+117
-2.064195e+117
-2.2020318e+117
-2.6467782e+117
-3.9379585e+117
-3.8801065e+117
-3.8094473e+117
-3.349991e+117
-3.3621443e+117
-3.8214788e+117
-1.8612155e+117
-2.1161909e+117
-5.9467126e+117
-3.7412685e+117
-3.8544747e+117
-3.96728e+117
-3.8547754e+117
-3.7410279e+117
-3.5175194e+117
-3.4044324e+117
-3.4042766e+117
-3.2345179e+117
-3.5168194e+117
-3.6292922e+117
-3.6285672e+117
-3.9680229e+117
-4.0839153e+117
-4.0829634e+117
-4.201183e+117
-4.2027578e+117
-3.0104772e+117
-4.4248243e+117
-3.3880036e+117
-2.7549443e+117
-3.4203969e+117
-2.8155215e+117
-2.0346488e+117
-2.8368325e+117
-2.1890931e+117
-2.7561961e+117
-2.3730262e+117
-3.3718369e+117
-2.8500958e+117
-2.4174955e+117
-2.1837361e+117
-1.9124328e+117
-1.749494e+117
-2.2843386e+117
-2.8205684e+117
-2.7328498e+117
-2.0862833e+117
-1.4351588e+117
-6.919628e+116
-1.3250713e+117
-3.9967623e+116
-6.1655704e+116
-1.3755013e+117
-1.6361842e+117
-2.123511e+117
-1.7671489e+117
-2.448984e+117
-3.1828616e+117
-3.295117e+117
-3.2952972e+117
-3.1825645e+117
-3.0139511e+117
-3.5171787e+117
-3.4060615e+117
-3.4061527e+117
-3.5161944e+117
-3.6281458e+117
-3.6294197e+117
-3.7407421e+117
-3.7405535e+117
-3.8544262e+117
-3.8537028e+117
-3.9683228e+117
-3.9695164e+117
-2.7917076e+117
-5.4529307e+117
-5.442995e+117
-5.454105e+117
-5.4368242e+117
-5.4377869e+117
-3.7412935e+117
-3.5172367e+117
-3.4065323e+117
-3.2946396e+117
-2.7968974e+117
-2.9615274e+117
-2.9607636e+117
-3.0730293e+117
-3.0715624e+117
-2.959634e+117
-2.9617711e+117
-3.0707101e+117
-3.0703453e+117
-3.1833903e+117
-3.1820894e+117
-3.1796635e+117
-3.292798e+117
-3.2925728e+117
-3.1798349e+117
-3.2903658e+117
-3.2900613e+117
-3.1792346e+117
-3.4033837e+117
-3.4043364e+117
-3.4027823e+117
-3.5159985e+117
-3.5153884e+117
-3.5149052e+117
-3.5147323e+117
-3.4021755e+117
-3.4021257e+117
-3.5131556e+117
-3.6280931e+117
-3.6278671e+117
-3.6284861e+117
-3.6277368e+117
-3.6288548e+117
-3.741423e+117
-3.7416309e+117
-3.7416547e+117
-3.7412405e+117
-3.7407807e+117
-3.6279284e+117
-3.6251775e+117
-3.737629e+117
-3.856454e+117
-3.8561908e+117
-3.8561926e+117
-3.8558599e+117
-3.9724877e+117
-3.9726266e+117
-3.9726359e+117
-3.9717798e+117
-4.0909323e+117
-4.0909895e+117
-4.09088e+117
-4.2100652e+117
-4.210217e+117
-4.2100878e+117
-4.3293421e+117
-4.3293455e+117
-4.450814e+117
-4.4508018e+117
-4.5770875e+117
-4.7066552e+117
-2.7417959e+117
-2.7400206e+117
-2.8493973e+117
-2.8519036e+117
-2.9600492e+117
-3.068791e+117
-3.0670471e+117
-2.9574542e+117
-3.1790269e+117
-3.2892983e+117
-3.2882168e+117
-3.1780992e+117
-3.5122578e+117
-3.400685e+117
-3.3985389e+117
-3.5086847e+117
-2.955871e+117
-2.9528957e+117
-3.0618623e+117
-3.0647993e+117
-3.1751506e+117
-3.2853761e+117
-3.2828544e+117
-3.1721994e+117
-2.9508363e+117
-3.0596586e+117
-3.0582064e+117
-2.9487599e+117
-5.3690318e+117
-5.3719748e+117
-5.3764199e+117
-5.3652597e+117
-5.3641717e+117
-5.3544373e+117
-5.3782788e+117
-5.4377246e+117
-5.4225761e+117
-5.3982301e+117
-5.410686e+117
-5.408997e+117
-5.4013751e+117
-5.4190447e+117
-5.4003567e+117
-5.4454119e+117
-5.4531169e+117
-5.4461461e+117
-5.4345187e+117
-5.4239417e+117
-5.4555061e+117
-5.4345725e+117
-5.4435676e+117
-5.4323685e+117
-5.4237415e+117
-5.4142261e+117
-5.4120645e+117
-5.4302164e+117
-5.4484142e+117
-5.4335228e+117
-5.4355367e+117
-5.4515071e+117
-5.4502305e+117
-5.4346017e+117
-5.3971818e+117
-5.4052396e+117
-5.4106911e+117
-5.4015069e+117
-5.4694781e+117
-5.4630279e+117
-5.438702e+117
-5.4443044e+117
-5.4564567e+117
-5.4504546e+117
-5.4144461e+117
-5.4044992e+117
-5.4070472e+117
-5.417747e+117
-5.4292735e+117
-5.4326278e+117
-5.4238241e+117
-5.4343077e+117
-5.4379797e+117
-5.4281316e+117
-5.4129059e+117
-5.4162418e+117
-5.4192003e+117
-5.4236373e+117
-5.4265242e+117
-5.4185459e+117
-5.3830594e+117
-5.3870785e+117
-5.3987628e+117
-5.3932058e+117
-5.3923313e+117
-5.3944592e+117
-5.4047016e+117
-5.407517e+117
-5.3871691e+117
-5.3783063e+117
-5.4644584e+117
-5.4656571e+117
-5.4590195e+117
-5.44441e+117
-5.4626164e+117
-5.4297195e+117
-5.3955883e+117
-5.3919678e+117
-5.3979079e+117
-5.399946e+117
-5.4599686e+117
-5.4908595e+117
-5.4881084e+117
-5.4735925e+117
-5.4762943e+117
-5.4624802e+117
-5.4963755e+117
-5.4937118e+117
-5.4648434e+117
-5.4788788e+117
-5.4813542e+117
-5.4671914e+117
-5.4309234e+117
-5.4186444e+117
-5.4197048e+117
-5.4323903e+117
-5.4293352e+117
-5.4271842e+117
-5.4151915e+117
-5.4172003e+117
-5.4387286e+117
-5.4468937e+117
-5.4410055e+117
-5.4492364e+117
-5.4545622e+117
-5.4521656e+117
-5.4428622e+117
-5.4513782e+117
-5.4450043e+117
-5.4537889e+117
-5.4592365e+117
-5.456887e+117
-5.4103893e+117
-5.4112499e+117
-5.4069e+117
-5.4090051e+117
-5.4782558e+117
-5.4743567e+117
-5.4611659e+117
-5.4486905e+117
-5.451866e+117
-5.4647326e+117
-5.4848756e+117
-5.4814473e+117
-5.4676289e+117
-5.4545275e+117
-5.4706673e+117
-5.4572846e+117
-5.4252686e+117
-5.423189e+117
-5.4115007e+117
-5.4133629e+117
-5.4087516e+117
-5.4199167e+117
-5.4217495e+117
-5.4102578e+117
-5.4308157e+117
-5.4376879e+117
-5.4327249e+117
-5.4400301e+117
-5.4446768e+117
-5.4419148e+117
-5.4343853e+117
-5.442094e+117
-5.4471248e+117
-5.44465e+117
-5.4496948e+117
-5.4366899e+117
-5.4033556e+117
-5.4051117e+117
-5.4023819e+117
-5.4011407e+117
-5.3657313e+117
-5.3861282e+117
-5.3673522e+117
-5.3893226e+117
-5.3681346e+117
-5.3909592e+117
-5.3694581e+117
-5.3927524e+117
-5.3611859e+117
-5.3756531e+117
-5.3648522e+117
-5.3831038e+117
-5.3718553e+117
-5.3966682e+117
-5.3702712e+117
-5.3949085e+117
-5.3696009e+117
-5.3933364e+117
-5.370129e+117
-5.3944049e+117
-5.3780857e+117
-5.4029373e+117
-5.3771652e+117
-5.4020625e+117
-5.3757738e+117
-5.4007322e+117
-5.3734422e+117
-5.3983278e+117
-6.2129492e+117
-6.1657034e+117
-6.1689873e+117
-6.1058326e+117
-6.0383706e+117
-5.9971922e+117
-5.9872408e+117
-6.1031282e+117
-6.0360246e+117
-5.99461e+117
-6.0025643e+117
-6.0359982e+117
-5.9912144e+117
-6.006611e+117
-5.9914667e+117
-6.0016662e+117
-5.995885e+117
-6.0506497e+117
-3.8935694e+117
-6.0736329e+117
-5.963674e+117
-6.1566528e+117
-6.0853267e+117
-5.8240401e+117
-5.9791266e+117
-6.3524947e+117
-5.2064525e+117
-5.8306565e+117
-5.9908841e+117
-6.2252848e+117
-6.0081397e+117
-6.0979598e+117
-6.0736144e+117
-6.0754494e+117
-6.0882274e+117
-6.1709522e+117
-6.2517048e+117
-6.3525207e+117
-6.2338526e+117
-6.523232e+117
-6.5975947e+117
-6.1923e+117
-6.379693e+117
-6.3986293e+117
-6.1065594e+117
-6.2965494e+117
-6.4560473e+117
-6.368068e+117
-6.2011701e+117
-6.0416824e+117
-6.1194412e+117
-6.156429e+117
-6.1418347e+117
-6.0912006e+117
-6.1861624e+117
-6.1858055e+117
-6.1179341e+117
-6.1135798e+117
-6.1307982e+117
-6.1565108e+117
-4.4430514e+117
-4.4432297e+117
-4.4431165e+117
-4.5669909e+117
-4.5670033e+117
-4.4430869e+117
-4.442951e+117
-3.7412535e+117
-3.854955e+117
-3.8556235e+117
-3.7421986e+117
-3.8551193e+117
-3.7411927e+117
-3.8545196e+117
-3.8551529e+117
-3.7407821e+117
-3.8560704e+117
-3.2369011e+117
-3.4029221e+117
-3.4047836e+117
-3.5159013e+117
-3.5147808e+117
-3.517166e+117
-3.4061546e+117
-3.4054877e+117
-3.517739e+117
-3.6274012e+117
-3.6261197e+117
-3.6253851e+117
-3.7375059e+117
-3.6289237e+117
-3.628798e+117
-3.8516543e+117
-3.9658474e+117
-3.9682169e+117
-3.9691008e+117
-3.9687647e+117
-3.9681461e+117
-3.9673328e+117
-3.9675392e+117
-4.0825448e+117
-4.082575e+117
-4.0823527e+117
-4.0830904e+117
-4.200225e+117
-4.2004799e+117
-4.2001085e+117
-4.1999726e+117
-4.082623e+117
-4.0833825e+117
-4.0835138e+117
-4.1998332e+117
-4.2005622e+117
-4.2007908e+117
-4.1993e+117
-4.0818355e+117
-4.3201778e+117
-4.3204307e+117
-4.3203786e+117
-4.3206185e+117
-4.3206311e+117
-4.6891719e+117
-4.6891873e+117
-3.9639078e+117
-3.95959e+117
-3.0127235e+117
-3.1789353e+117
-3.181572e+117
-3.2932645e+117
-3.2899227e+117
-3.3993653e+117
-3.4034427e+117
-3.5130007e+117
-3.5093833e+117
-3.6209427e+117
-3.6242153e+117
-3.7356915e+117
-3.7324341e+117
-3.8491179e+117
-3.84555e+117
-3.7300646e+117
-3.7261957e+117
-2.954831e+117
-2.957561e+117
-3.0682174e+117
-3.0660917e+117
-3.1754085e+117
-3.1775529e+117
-3.2840905e+117
-3.2865919e+117
-3.3966465e+117
-3.5068623e+117
-3.5045982e+117
-3.3940761e+117
-3.6183671e+117
-3.6159618e+117
-3.0638397e+117
-2.9547766e+117
-2.9528394e+117
-3.0612151e+117
-3.1703981e+117
-3.1735252e+117
-3.2787214e+117
-3.2814694e+117
-3.3904662e+117
-3.5004608e+117
-3.4980949e+117
-3.3881332e+117
-3.1651364e+117
-3.1675408e+117
-3.2731333e+117
-3.2752308e+117
-4.810096e+117
-4.9312047e+117
-5.4977928e+117
-5.491385e+117
-5.4904191e+117
-5.4841877e+117
-5.4939077e+117
-5.5013543e+117
-5.4817158e+117
-5.4758235e+117
-5.4713513e+117
-5.4655614e+117
-5.4748339e+117
-5.4851534e+117
-5.4872859e+117
-5.4768378e+117
-5.478203e+117
-5.4888579e+117
-5.5035134e+117
-5.496043e+117
-5.497656e+117
-5.5051136e+117
-5.4579618e+117
-5.4678326e+117
-5.4758754e+117
-5.4826474e+117
-5.5157719e+117
-5.5098902e+117
-5.5114567e+117
-5.5175937e+117
-5.5182093e+117
-5.509986e+117
-5.513617e+117
-5.5057823e+117
-5.5182238e+117
-5.5232199e+117
-5.503774e+117
-5.4969728e+117
-5.5089595e+117
-5.5017196e+117
-5.5075819e+117
-5.513131e+117
-5.5266545e+117
-5.5212602e+117
-5.5235899e+117
-5.5293994e+117
-5.4921901e+117
-5.4878907e+117
-5.4957458e+117
-5.499499e+117
-5.5030816e+117
-5.5138123e+117
-5.5061794e+117
-5.5172738e+117
-5.5093245e+117
-5.5205874e+117
-5.512163e+117
-5.5236874e+117
-5.5262548e+117
-5.5224268e+117
-5.5279062e+117
-5.5320699e+117
-5.5298006e+117
-5.5357858e+117
-5.539048e+117
-5.5330035e+117
-5.5433056e+117
-5.5400921e+117
-5.5435991e+117
-5.5469047e+117
-5.5362348e+117
-5.5317144e+117
-5.5347762e+117
-5.5396101e+117
-5.4789408e+117
-5.4906524e+117
-5.4661446e+117
-5.5011606e+117
-5.5105366e+117
-5.5262998e+117
-5.5188368e+117
-5.4797297e+117
-5.4789121e+117
-5.4898157e+117
-5.4905906e+117
-5.4995223e+117
-5.4989771e+117
-5.506519e+117
-5.5069664e+117
-5.4526514e+117
-5.4523789e+117
-5.4660643e+117
-5.4668767e+117
-5.4796983e+117
-5.4668036e+117
-5.4589284e+117
-5.4727659e+117
-5.4851626e+117
-5.491163e+117
-5.5009801e+117
-5.4962031e+117
-5.5057301e+117
-5.5095083e+117
-5.5141182e+117
-5.5215864e+117
-5.5170288e+117
-5.5559233e+117
-5.5489884e+117
-5.5338772e+117
-5.5415381e+117
-5.5716828e+117
-5.5758717e+117
-5.5620773e+117
-5.5673852e+117
-5.5380601e+117
-5.5391114e+117
-5.5443234e+117
-5.5431431e+117
-5.5472677e+117
-5.5486885e+117
-5.5521636e+117
-5.5506099e+117
-5.5133898e+117
-5.5131384e+117
-5.5197119e+117
-5.5197648e+117
-5.5261978e+117
-5.52663e+117
-5.5331474e+117
-5.5323655e+117
-5.5466025e+117
-5.5395379e+117
-5.5244802e+117
-5.5319321e+117
-5.5366553e+117
-5.5291089e+117
-5.5442616e+117
-5.5512958e+117
-5.5582971e+117
-5.5529548e+117
-5.567328e+117
-5.5626461e+117
-5.5666593e+117
-5.5713497e+117
-5.5576282e+117
-5.5629533e+117
-5.5796962e+117
-5.5835744e+117
-5.5702664e+117
-5.5737988e+117
-5.5749816e+117
-5.5786252e+117
-4.2675624e+117
-4.2561682e+117
-3.8068958e+117
-4.2107621e+117
-3.3640172e+117
-3.7860853e+117
-4.2032485e+117
-4.2207344e+117
-3.7909224e+117
-3.3633139e+117
-3.79076e+117
-3.3349788e+117
-4.2362161e+117
-5.2373122e+117
-5.007636e+117
-4.6344556e+117
-4.6288091e+117
-4.6416865e+117
-4.6552679e+117
-4.3221448e+117
-5.0479479e+117
-5.0765335e+117
-5.0951125e+117
-5.8651767e+117
-5.7323952e+117
-5.4370983e+117
-5.7278528e+117
-5.4614156e+117
-5.4648048e+117
-5.4122052e+117
-3.3171269e+117
-2.6693742e+117
-1.9599472e+117
-2.6237622e+117
-1.4000029e+117
-6.9107732e+116
-1.7246812e+117
-3.4800975e+117
-3.3971427e+117
-2.3073795e+117
-2.4690635e+117
-2.8745971e+117
-2.4598624e+117
-2.9072184e+117
-2.8672402e+117
-2.371694e+117
-2.1950191e+117
-2.0404414e+117
-2.3206751e+117
-2.8286497e+117
-2.2275938e+117
-3.0152048e+117
-2.5607263e+117
-2.3186678e+117
-2.2629538e+117
-2.3455195e+117
-2.660182e+117
-2.3724282e+117
-2.3088383e+117
-2.5113759e+117
-1.9964701e+117
-2.0050487e+117
-2.1480773e+117
-3.8481536e+117
-3.7772478e+117
-3.2933948e+117
-3.3167099e+117
-1.8559907e+117
-3.7414177e+117
-3.8544811e+117
-3.9672885e+117
-3.8547814e+117
-3.7412076e+117
-3.5178817e+117
-3.4075851e+117
-3.2962875e+117
-3.4077365e+117
-3.2958738e+117
-3.1830868e+117
-3.0146012e+117
-3.1823928e+117
-3.5174405e+117
-3.6294432e+117
-3.6287636e+117
-3.9680309e+117
-2.7922996e+117
-3.4858368e+117
-2.8805175e+117
-2.0320133e+117
-2.8839309e+117
-2.1478608e+117
-2.2136599e+117
-2.3581536e+117
-2.795659e+117
-2.348985e+117
-1.859467e+117
-2.0702287e+117
-1.8622951e+117
-1.5013975e+117
-1.768806e+117
-2.2441366e+117
-2.7819881e+117
-2.0534238e+117
-1.4621484e+117
-1.1245518e+117
-2.720024e+116
-1.2471572e+117
-1.4735916e+117
-1.6178804e+117
-3.1862413e+117
-3.0747401e+117
-3.2957356e+117
-3.2959216e+117
-3.1857922e+117
-3.0743599e+117
-2.7959475e+117
-2.9619766e+117
-2.9617131e+117
-3.5173363e+117
-3.406229e+117
-3.4062792e+117
-3.5163446e+117
-3.6281543e+117
-3.6294242e+117
-3.7407476e+117
-3.7405632e+117
-3.5172405e+117
-3.406532e+117
-3.2947248e+117
-2.5816013e+117
-2.7458228e+117
-2.7455871e+117
-2.8552048e+117
-2.8542804e+117
-2.8544051e+117
-2.8543974e+117
-2.7452245e+117
-2.7442965e+117
-2.9628691e+117
-2.9613195e+117
-2.9630534e+117
-3.0725177e+117
-3.0718947e+117
-3.0722962e+117
-2.9619406e+117
-2.9632028e+117
-3.0708729e+117
-3.0694842e+117
-3.1834736e+117
-3.1813688e+117
-3.1821499e+117
-3.1808386e+117
-3.2928428e+117
-3.291995e+117
-3.2913834e+117
-3.1799054e+117
-3.2904195e+117
-3.2901685e+117
-3.1793365e+117
-3.4034425e+117
-3.4031026e+117
-3.4043362e+117
-3.4028199e+117
-3.5160005e+117
-3.5154134e+117
-3.5151435e+117
-3.5149162e+117
-3.5147405e+117
-3.4021826e+117
-3.4021314e+117
-3.5131665e+117
-3.6280956e+117
-3.627905e+117
-3.6278953e+117
-3.6277405e+117
-3.7414137e+117
-3.7414132e+117
-3.7416294e+117
-3.7412421e+117
-3.8561893e+117
-3.8561798e+117
-3.856193e+117
-3.9726162e+117
-3.9726296e+117
-3.9726252e+117
-4.0909907e+117
-4.090992e+117
-4.210232e+117
-4.210231e+117
-4.3293581e+117
-4.4508058e+117
-2.7443576e+117
-2.7428204e+117
-2.8490706e+117
-2.8516625e+117
-2.9602164e+117
-3.0689144e+117
-3.0672066e+117
-2.9576173e+117
-3.1790344e+117
-3.2893077e+117
-3.288227e+117
-3.178109e+117
-2.955882e+117
-2.9529085e+117
-3.0618714e+117
-3.0648084e+117
-5.4396431e+117
-5.4234124e+117
-5.4191637e+117
-5.4459855e+117
-5.4551054e+117
-5.4469913e+117
-5.4347283e+117
-5.4254089e+117
-5.4564816e+117
-5.4355825e+117
-5.4446825e+117
-5.4339428e+117
-5.4304379e+117
-5.4489894e+117
-5.4515922e+117
-5.4504362e+117
-5.399315e+117
-5.4066703e+117
-5.4121825e+117
-5.403729e+117
-5.4705501e+117
-5.4641249e+117
-5.4402881e+117
-5.4459316e+117
-5.4576159e+117
-5.4515904e+117
-5.4159611e+117
-5.4067425e+117
-5.4092833e+117
-5.4192462e+117
-5.4315282e+117
-5.4252775e+117
-5.4366981e+117
-5.4296595e+117
-5.4142496e+117
-5.4182651e+117
-5.4205931e+117
-5.4258199e+117
-5.4646742e+117
-5.4657553e+117
-5.4597373e+117
-5.4451673e+117
-5.4631671e+117
-5.4617244e+117
-5.4920999e+117
-5.4892783e+117
-5.4748439e+117
-5.4776048e+117
-5.464298e+117
-5.4976405e+117
-5.4950591e+117
-5.466707e+117
-5.4802264e+117
-5.4827166e+117
-5.4690767e+117
-5.4324994e+117
-5.420994e+117
-5.4220359e+117
-5.433952e+117
-5.4309031e+117
-5.4287158e+117
-5.4174961e+117
-5.4195548e+117
-5.4402705e+117
-5.4494653e+117
-5.4425815e+117
-5.4518781e+117
-5.4444627e+117
-5.4540896e+117
-5.4466629e+117
-5.4565656e+117
-5.4794555e+117
-5.4754464e+117
-5.4624095e+117
-5.4504293e+117
-5.4536196e+117
-5.4659896e+117
-5.4859547e+117
-5.482552e+117
-5.4688754e+117
-5.4562759e+117
-5.4718812e+117
-5.4589811e+117
-5.4267727e+117
-5.4247172e+117
-5.4137937e+117
-5.4156408e+117
-5.4110158e+117
-5.4214396e+117
-5.4232882e+117
-5.4125654e+117
-5.4323781e+117
-5.4401929e+117
-5.4342611e+117
-5.4425538e+117
-5.435918e+117
-5.4446397e+117
-5.4471374e+117
-5.4382096e+117
-6.1698667e+117
-6.1043816e+117
-6.0363607e+117
-5.9967047e+117
-6.0093183e+117
-6.0345331e+117
-5.9930963e+117
-6.0175068e+117
-5.9899399e+117
-6.0151621e+117
-6.0090433e+117
-6.0488683e+117
-6.0016437e+117
-7.9563085e+117
-7.6252837e+117
-5.8176735e+117
-5.989387e+117
-6.2247624e+117
-5.3555288e+117
-6.0150486e+117
-7.2155137e+117
-6.1139959e+117
-6.2780486e+117
-6.3878426e+117
-6.321365e+117
-6.7645774e+117
-6.8920759e+117
-6.2621399e+117
-6.74128e+117
-7.4441898e+117
-6.7317383e+117
-6.4531646e+117
-6.5426729e+117
-6.442122e+117
-6.339798e+117
-6.6305188e+117
-6.5678505e+117
-6.4060184e+117
-6.2272868e+117
-6.1336206e+117
-6.1754497e+117
-6.1849308e+117
-6.1587924e+117
-6.2230684e+117
-6.2138243e+117
-6.1314449e+117
-4.4432554e+117
-4.4432608e+117
-4.5670007e+117
-3.7414414e+117
-3.8549614e+117
-3.8557363e+117
-3.7415326e+117
-3.7413763e+117
-3.8552052e+117
-3.7413026e+117
-3.8545253e+117
-3.855175e+117
-3.7409878e+117
-3.8561215e+117
-3.7417273e+117
-3.856214e+117
-3.2976324e+117
-3.2976272e+117
-3.1872294e+117
-3.2968937e+117
-3.2966474e+117
-3.1848523e+117
-3.0171102e+117
-3.184307e+117
-3.1867865e+117
-3.4057931e+117
-3.4064375e+117
-3.4056916e+117
-3.5161707e+117
-3.5179943e+117
-3.5143509e+117
-3.5179245e+117
-3.4082482e+117
-3.4087087e+117
-3.5179362e+117
-3.6275978e+117
-3.6280285e+117
-3.6279196e+117
-3.6281718e+117
-3.625623e+117
-3.7378373e+117
-3.6290302e+117
-3.628986e+117
-3.8516972e+117
-3.9658847e+117
-3.9682331e+117
-3.969183e+117
-3.969284e+117
-3.9688641e+117
-3.9682167e+117
-3.9673397e+117
-3.9675462e+117
-4.0825879e+117
-4.0831098e+117
-4.200494e+117
-4.2001172e+117
-4.0833871e+117
-4.0835577e+117
-4.0835277e+117
-4.2005679e+117
-4.2007709e+117
-4.2008019e+117
-4.3206168e+117
-4.3206257e+117
-4.6891924e+117
-2.7946573e+117
-2.9618031e+117
-3.0737855e+117
-3.0718532e+117
-2.9598848e+117
-3.1821921e+117
-3.1844738e+117
-3.2937463e+117
-3.2901796e+117
-3.3996985e+117
-3.4038383e+117
-3.5133284e+117
-3.5096998e+117
-3.6209717e+117
-3.6242455e+117
-3.7357243e+117
-3.7324631e+117
-2.9577728e+117
-2.9604304e+117
-3.0682884e+117
-3.0662027e+117
-3.1755901e+117
-3.1777911e+117
-3.2842669e+117
-3.286808e+117
-3.3966663e+117
-3.5068807e+117
-3.5046124e+117
-3.3940919e+117
-3.0640231e+117
-2.9549998e+117
-2.9530471e+117
-3.0613944e+117
-3.1704083e+117
-3.1735323e+117
-3.2787294e+117
-3.2814765e+117
-5.4988977e+117
-5.4941121e+117
-5.4914878e+117
-5.4868569e+117
-5.4947934e+117
-5.5022656e+117
-5.4826765e+117
-5.4782793e+117
-5.4721787e+117
-5.4677769e+117
-5.4754878e+117
-5.4859433e+117
-5.4877326e+117
-5.4771703e+117
-5.4784275e+117
-5.4891788e+117
-5.5040623e+117
-5.4965732e+117
-5.4980476e+117
-5.5055154e+117
-5.4587666e+117
-5.4687684e+117
-5.4769353e+117
-5.4836991e+117
-5.5163938e+117
-5.5104811e+117
-5.5118855e+117
-5.5180388e+117
-5.5194711e+117
-5.51306e+117
-5.5148667e+117
-5.5087965e+117
-5.5192413e+117
-5.5242136e+117
-5.5049336e+117
-5.4997747e+117
-5.5102022e+117
-5.5047001e+117
-5.5085462e+117
-5.5141475e+117
-5.5272429e+117
-5.5218762e+117
-5.5240381e+117
-5.529822e+117
-5.4933467e+117
-5.4889553e+117
-5.4968427e+117
-5.5005948e+117
-5.5042637e+117
-5.5170448e+117
-5.5074382e+117
-5.5207005e+117
-5.5106708e+117
-5.5241409e+117
-5.5134589e+117
-5.5272327e+117
-5.5277052e+117
-5.5237797e+117
-5.5289513e+117
-5.5331669e+117
-5.531286e+117
-5.5369056e+117
-5.5401411e+117
-5.5344743e+117
-5.5438966e+117
-5.540741e+117
-5.5440534e+117
-5.5473132e+117
-5.5368732e+117
-5.5323273e+117
-5.5352137e+117
-5.5400589e+117
-3.7839571e+117
-4.1935987e+117
-3.3283747e+117
-3.7634615e+117
-4.1873703e+117
-3.3335893e+117
-3.7621093e+117
-4.1894566e+117
-4.1999049e+117
-3.766784e+117
-3.3301205e+117
-3.7637003e+117
-3.3007043e+117
-4.9773199e+117
-4.6082898e+117
-4.6230279e+117
-4.6278913e+117
-5.0364828e+117
-5.0770693e+117
-5.0869065e+117
-5.7491003e+117
-5.4836889e+117
-5.4939355e+117
-2.7237434e+117
-1.3784662e+117
-6.0654108e+116
-3.366384e+117
-2.3385557e+117
-2.8424928e+117
-2.3318449e+117
-2.8499061e+117
-2.1455387e+117
-2.4136333e+117
-2.8789442e+117
-2.8414003e+117
-2.2947288e+117
-1.9414345e+117
-2.1104553e+117
-1.8726392e+117
-1.6069313e+117
-2.2378538e+117
-2.7894821e+117
-2.2109073e+117
-2.5413878e+117
-2.3141072e+117
-2.268735e+117
-2.2629217e+117
-2.3611271e+117
-2.2700678e+117
-2.304192e+117
-1.9439445e+117
-1.9639888e+117
-3.2642847e+117
-3.7414254e+117
-3.7412167e+117
-3.5180283e+117
-3.40772e+117
-3.2965661e+117
-3.4078379e+117
-3.2964614e+117
-3.1860532e+117
-3.075393e+117
-2.9632542e+117
-2.7967209e+117
-2.9617415e+117
-3.0741817e+117
-3.1853863e+117
-3.5175773e+117
-3.6294511e+117
-3.6287756e+117
-2.9515952e+117
-2.1628336e+117
-2.1785182e+117
-2.7627808e+117
-2.2947332e+117
-1.7909124e+117
-1.3324874e+117
-1.9971133e+117
-1.3884613e+117
-1.5571311e+117
-1.7661699e+117
-2.2199436e+117
-1.4777347e+117
-1.2381845e+117
-9.6671493e+116
-1.4285743e+117
-1.5013594e+117
-3.1863271e+117
-3.0750648e+117
-3.2958522e+117
-3.2960256e+117
-3.1858843e+117
-3.0745551e+117
-2.580146e+117
-2.7446498e+117
-2.7447036e+117
-2.8552816e+117
-2.8550691e+117
-2.9647412e+117
-2.9642939e+117
-3.5173427e+117
-3.4062374e+117
-3.4062863e+117
-3.5163524e+117
-3.2947235e+117
-2.6405196e+117
-2.5304711e+117
-2.5319074e+117
-2.5332079e+117
-2.6401996e+117
-2.6392266e+117
-2.6391185e+117
-2.5292105e+117
-2.747724e+117
-2.7458828e+117
-2.7485557e+117
-2.8550135e+117
-2.8548523e+117
-2.8556342e+117
-2.8542709e+117
-2.8548103e+117
-2.7467928e+117
-2.7472013e+117
-2.9627724e+117
-2.962982e+117
-2.9627219e+117
-2.9631665e+117
-3.0725828e+117
-3.0719633e+117
-3.0715459e+117
-3.0712951e+117
-2.962051e+117
-2.9632638e+117
-3.0709299e+117
-3.0696e+117
-3.1834728e+117
-3.181424e+117
-3.1811496e+117
-3.1821506e+117
-3.180877e+117
-3.2928413e+117
-3.2920283e+117
-3.2917116e+117
-3.2913888e+117
-3.1799128e+117
-3.2904246e+117
-3.2901759e+117
-3.1793443e+117
-3.4034447e+117
-3.4031284e+117
-3.4030831e+117
-3.4028226e+117
-3.5154144e+117
-3.5151771e+117
-3.515151e+117
-3.5149169e+117
-3.6279075e+117
-3.6279055e+117
-3.6278977e+117
-3.7414176e+117
-3.7414174e+117
-3.7414183e+117
-3.8561773e+117
-3.8561783e+117
-3.9726271e+117
-3.9726257e+117
-4.0909944e+117
-4.210242e+117
-2.744569e+117
-2.742976e+117
-2.8492279e+117
-2.8518507e+117
-2.9602317e+117
-3.068924e+117
-3.0672185e+117
-2.9576314e+117
-5.4405799e+117
-5.446306e+117
-5.4560332e+117
-5.4473688e+117
-5.4569363e+117
-5.4710742e+117
-5.4646445e+117
-5.4927006e+117
-5.4898506e+117
-5.4982593e+117
-5.4957128e+117
-5.4800467e+117
-5.4759835e+117
-5.4864873e+117
-5.4830942e+117
-6.0349171e+117
-5.9955421e+117
-6.0235684e+117
-5.9921058e+117
-6.023406e+117
-6.0181684e+117
-6.0487111e+117
-1.1541383e+118
-6.0930246e+117
-5.985748e+117
-6.3813398e+117
-6.0836639e+117
-6.3506787e+117
-6.8816033e+117
-7.0365744e+117
-6.3694249e+117
-7.0985003e+117
-8.2284523e+117
-6.9357607e+117
-6.8385761e+117
-8.1322791e+117
-7.2795336e+117
-6.7423804e+117
-6.6367876e+117
-6.5750911e+117
-6.4713322e+117
-6.6505692e+117
-6.6709323e+117
-6.5780111e+117
-6.4247136e+117
-6.1860105e+117
-6.1950893e+117
-6.1888037e+117
-6.2491584e+117
-4.4432525e+117
-3.7414513e+117
-3.8557519e+117
-3.7415955e+117
-3.7414317e+117
-3.8552151e+117
-3.7413095e+117
-3.7410077e+117
-3.8561266e+117
-3.7418209e+117
-3.8562222e+117
-3.7419302e+117
-3.8562223e+117
-3.2979916e+117
-3.2984899e+117
-3.2997411e+117
-3.1899854e+117
-3.1879075e+117
-3.0794495e+117
-3.2978167e+117
-3.2972426e+117
-3.1887778e+117
-3.0774084e+117
-2.9683146e+117
-2.7983974e+117
-2.9643612e+117
-3.0784972e+117
-2.9674413e+117
-2.9641796e+117
-3.0766043e+117
-3.1874027e+117
-3.1888816e+117
-3.4060421e+117
-3.4066051e+117
-3.4073554e+117
-3.4077758e+117
-3.4079483e+117
-3.5162929e+117
-3.5167788e+117
-3.5168564e+117
-3.5171878e+117
-3.5146035e+117
-3.5180244e+117
-3.4083569e+117
-3.4088128e+117
-3.5180633e+117
-3.6276147e+117
-3.6281163e+117
-3.6282247e+117
-3.6279947e+117
-3.6282305e+117
-3.6256489e+117
-3.7378741e+117
-3.6290379e+117
-3.628998e+117
-3.9691886e+117
-3.9693165e+117
-3.9692946e+117
-3.9688796e+117
-3.9682247e+117
-4.0835595e+117
-4.0835649e+117
-4.2007752e+117
-4.2007805e+117
-4.3206269e+117
-2.7423472e+117
-2.7451618e+117
-2.8533263e+117
-2.8551806e+117
-2.9646328e+117
-3.0743071e+117
-3.0723683e+117
-2.9630266e+117
-3.1824665e+117
-3.1849098e+117
-3.2941915e+117
-3.2905053e+117
-3.3997337e+117
-3.4038774e+117
-3.5133607e+117
-3.5097317e+117
-2.9580082e+117
-2.9606362e+117
-3.0685263e+117
-3.0664062e+117
-3.1756045e+117
-3.1778147e+117
-3.2842809e+117
-3.2868289e+117
-3.064034e+117
-2.9550148e+117
-2.9530597e+117
-3.0614049e+117
-5.4954429e+117
-5.4881535e+117
-5.4794424e+117
-5.4688337e+117
-5.4592251e+117
-5.469309e+117
-5.4775541e+117
-5.484331e+117
-5.5145864e+117
-5.5102849e+117
-5.5011528e+117
-5.5061586e+117
-5.4940399e+117
-5.4896004e+117
-5.4975145e+117
-5.5012759e+117
-5.5049819e+117
-5.5186566e+117
-5.5081878e+117
-5.5223963e+117
-5.5114659e+117
-5.5258975e+117
-5.5142355e+117
-5.5289928e+117
-3.3070323e+117
-3.7480084e+117
-4.175065e+117
-3.3146339e+117
-3.7478049e+117
-4.1740838e+117
-3.313421e+117
-3.7467379e+117
-4.1747566e+117
-3.7476567e+117
-3.3082367e+117
-3.2780145e+117
-4.6092117e+117
-4.6162276e+117
-5.0752612e+117
-5.0962752e+117
-5.5177794e+117
-5.7227002e+116
-2.8209748e+117
-2.2902948e+117
-2.8281604e+117
-1.7650819e+117
-2.2335982e+117
-2.8211684e+117
-2.0528671e+117
-2.1291835e+117
-2.3871218e+117
-2.8158025e+117
-2.2231181e+117
-1.6813085e+117
-1.7621238e+117
-2.0984495e+117
-1.8032027e+117
-1.0437513e+117
-1.5814165e+117
-2.177399e+117
-2.7637721e+117
-2.307737e+117
-2.2658774e+117
-2.2607883e+117
-2.2577622e+117
-2.2820033e+117
-1.908951e+117
-3.5180354e+117
-3.4077271e+117
-3.2966936e+117
-3.4078425e+117
-3.2966263e+117
-3.0754407e+117
-3.1861751e+117
-2.9659992e+117
-2.8570439e+117
-2.7462624e+117
-2.7450961e+117
-2.5808835e+117
-2.8552239e+117
-2.9643686e+117
-3.0743277e+117
-3.1855657e+117
-3.5175846e+117
-2.2036609e+117
-2.2591419e+117
-1.8291493e+117
-1.4432748e+117
-6.1473124e+116
-1.4762861e+117
-1.562103e+117
-1.7470942e+117
-1.2895652e+117
-1.1617069e+117
-1.4773698e+117
-3.1863322e+117
-3.0752081e+117
-3.2958582e+117
-3.296029e+117
-3.1858855e+117
-3.0746789e+117
-2.5293053e+117
-2.5297953e+117
-2.6392737e+117
-2.6390732e+117
-2.7471361e+117
-2.7474268e+117
-2.8553506e+117
-2.8550331e+117
-2.9649094e+117
-2.9644536e+117
-2.6407738e+117
-2.5334566e+117
-2.5336276e+117
-2.5341335e+117
-2.535481e+117
-2.6413605e+117
-2.6421608e+117
-2.6392716e+117
-2.6396838e+117
-2.5319809e+117
-2.7479823e+117
-2.7479039e+117
-2.7475692e+117
-2.7486968e+117
-2.8551321e+117
-2.8550375e+117
-2.8549736e+117
-2.8548724e+117
-2.8544178e+117
-2.8549422e+117
-2.7469624e+117
-2.7473589e+117
-2.9628612e+117
-2.9628246e+117
-2.962989e+117
-2.9627888e+117
-2.9631725e+117
-3.0725825e+117
-3.071965e+117
-3.0715849e+117
-3.0714473e+117
-3.0713114e+117
-2.962063e+117
-2.9632688e+117
-3.0709355e+117
-3.0696103e+117
-3.181426e+117
-3.1811895e+117
-3.1811318e+117
-3.1808807e+117
-3.2920279e+117
-3.2917408e+117
-3.2916843e+117
-3.2913894e+117
-3.4031284e+117
-3.4030961e+117
-3.4030809e+117
-3.5151771e+117
-3.5151622e+117
-3.5151498e+117
-3.6279063e+117
-3.6279063e+117
-3.7414173e+117
-3.7414185e+117
-3.8561772e+117
-3.9726257e+117
-2.7445876e+117
-2.7429896e+117
-2.8492417e+117
-2.8518681e+117
-5.9946704e+117
-6.0283575e+117
-6.0246796e+117
-6.0683201e+117
-8.7878354e+117
-6.0176404e+117
-6.4028482e+117
-7.2609809e+117
-8.5522717e+117
-7.0254571e+117
-7.2514713e+117
-9.3053809e+117
-7.7234503e+117
-6.9094942e+117
-8.2566819e+117
-7.6303221e+117
-7.164404e+117
-6.7500965e+117
-6.6654004e+117
-6.5999765e+117
-6.6879871e+117
-6.6499086e+117
-6.5808962e+117
-6.2033662e+117
-6.1983113e+117
-3.7416031e+117
-3.7414348e+117
-3.741826e+117
-3.8562252e+117
-3.7419513e+117
-3.8562286e+117
-3.7419402e+117
-3.2981701e+117
-3.2990894e+117
-3.2986011e+117
-3.2993873e+117
-3.1902334e+117
-3.0812993e+117
-3.1914561e+117
-3.1910204e+117
-3.0820094e+117
-3.1900585e+117
-3.2980005e+117
-3.299061e+117
-3.2975939e+117
-3.0782909e+117
-3.1892127e+117
-2.9712311e+117
-2.9689301e+117
-2.8586307e+117
-2.7454804e+117
-2.7471294e+117
-2.745562e+117
-2.8571429e+117
-2.8580168e+117
-2.7467264e+117
-2.8570807e+117
-2.9678759e+117
-3.079326e+117
-2.9694366e+117
-2.9669331e+117
-3.0767547e+117
-3.1876159e+117
-3.1890114e+117
-3.4060639e+117
-3.4066202e+117
-3.4073571e+117
-3.4074433e+117
-3.4078031e+117
-3.4080015e+117
-3.5163054e+117
-3.5167955e+117
-3.5168705e+117
-3.5168264e+117
-3.5171817e+117
-3.5146283e+117
-3.5180303e+117
-3.4083639e+117
-3.4088174e+117
-3.5180702e+117
-3.6281205e+117
-3.6282397e+117
-3.6282337e+117
-3.6279994e+117
-3.6282339e+117
-3.9693191e+117
-3.969323e+117
-4.0835677e+117
-4.2007816e+117
-2.745378e+117
-2.7482305e+117
-2.8537434e+117
-2.8558124e+117
-2.96497e+117
-3.0746945e+117
-3.0726892e+117
-2.9633193e+117
-3.1824973e+117
-3.1849544e+117
-3.2942371e+117
-3.2905399e+117
-2.9580267e+117
-2.9606559e+117
-3.0685486e+117
-3.0664213e+117
-3.3006893e+117
-3.7374404e+117
-4.1648992e+117
-3.3002383e+117
-3.7347671e+117
-4.1625457e+117
-3.2961832e+117
-3.7327372e+117
-3.2912398e+117
-4.6085605e+117
-5.1021538e+117
-2.2649046e+117
-2.8121659e+117
-1.7225378e+117
-2.1860884e+117
-2.8010994e+117
-1.369964e+117
-1.4865625e+117
-2.1480656e+117
-2.7962672e+117
-2.0222976e+117
-2.0456737e+117
-2.1154916e+117
-2.7974763e+117
-2.169052e+117
-1.4828311e+117
-1.3512951e+117
-1.6701451e+117
-4.1987814e+116
-1.2015586e+117
-1.5315524e+117
-2.1346127e+117
-2.2649086e+117
-2.2592199e+117
-2.2599452e+117
-3.296699e+117
-3.2966336e+117
-3.0755578e+117
-3.1861815e+117
-2.9661453e+117
-2.8572255e+117
-2.7491962e+117
-2.6405179e+117
-2.7478746e+117
-2.6398223e+117
-2.5305286e+117
-2.53068e+117
-2.8552373e+117
-2.9645119e+117
-3.074458e+117
-3.1855763e+117
-1.8282393e+117
-1.5847314e+117
-1.2497202e+117
-1.4905037e+117
-1.5397385e+117
-1.2251018e+117
-3.075215e+117
-3.0746809e+117
-2.5318715e+117
-2.5325763e+117
-2.6394249e+117
-2.6391094e+117
-2.7473361e+117
-2.7475776e+117
-2.8554896e+117
-2.8551885e+117
-2.9649184e+117
-2.9644604e+117
-2.6410444e+117
-2.5337738e+117
-2.5361811e+117
-2.5337844e+117
-2.5366917e+117
-2.5356803e+117
-2.6415625e+117
-2.642306e+117
-2.6417403e+117
-2.6394969e+117
-2.6398458e+117
-2.5322281e+117
-2.7481468e+117
-2.748241e+117
-2.7479159e+117
-2.7476981e+117
-2.7487054e+117
-2.8551385e+117
-2.8551599e+117
-2.855116e+117
-2.8549816e+117
-2.8549175e+117
-2.8544303e+117
-2.8549501e+117
-2.7469739e+117
-2.7473708e+117
-2.9628662e+117
-2.9628927e+117
-2.9628545e+117
-2.9627933e+117
-3.071586e+117
-3.0714974e+117
-3.0714506e+117
-3.0713128e+117
-3.1811914e+117
-3.1811509e+117
-3.1811309e+117
-3.291742e+117
-3.2916997e+117
-3.2916824e+117
-3.4030962e+117
-3.4030935e+117
-3.5151627e+117
-3.5151612e+117
-3.6279066e+117
-3.7414183e+117
-6.0287115e+117
-6.0895294e+117
-7.4777746e+117
-1.0091582e+118
-7.9317372e+117
-6.9797866e+117
-9.6957572e+117
-8.2471197e+117
-7.4774276e+117
-6.9017856e+117
-7.7173377e+117
-7.4002125e+117
-7.1184563e+117
-6.6873967e+117
-6.6610626e+117
-6.6412841e+117
-6.2059846e+117
-3.7419536e+117
-3.85623e+117
-3.7419581e+117
-3.2981771e+117
-3.2991715e+117
-3.2986053e+117
-3.2994734e+117
-3.1902537e+117
-3.0815885e+117
-3.1915168e+117
-3.0830405e+117
-3.1916236e+117
-3.0825091e+117
-3.1912681e+117
-3.0811788e+117
-3.190242e+117
-3.2980159e+117
-3.2990783e+117
-3.2991813e+117
-3.2976267e+117
-3.0788288e+117
-3.1892543e+117
-2.9715403e+117
-2.8598595e+117
-2.9727597e+117
-2.9721893e+117
-2.9709809e+117
-2.8605187e+117
-2.7479089e+117
-2.7489603e+117
-2.7467937e+117
-2.7483659e+117
-2.8575013e+117
-2.8584639e+117
-2.748184e+117
-2.8569648e+117
-2.9683478e+117
-3.0794347e+117
-2.9695727e+117
-2.9671224e+117
-3.0769297e+117
-3.1876279e+117
-3.1890182e+117
-3.4073591e+117
-3.4074282e+117
-3.4074469e+117
-3.4077996e+117
-3.4080052e+117
-3.5167936e+117
-3.5168645e+117
-3.5168754e+117
-3.5168223e+117
-3.5171779e+117
-3.6282411e+117
-3.628246e+117
-3.9693252e+117
-2.745654e+117
-2.7484243e+117
-2.8540155e+117
-2.8560616e+117
-2.9650047e+117
-3.0747345e+117
-3.0727197e+117
-2.9633454e+117
-3.2901287e+117
-3.7274987e+117
-4.1561028e+117
-3.2866353e+117
-3.723605e+117
-3.2825251e+117
-1.7096301e+117
-2.1587154e+117
-2.7874518e+117
-1.3956349e+117
-1.4126945e+117
-2.1049957e+117
-2.7809653e+117
-7.5184966e+116
-9.9066031e+116
-1.32108e+117
-2.0970436e+117
-2.7800248e+117
-2.0073696e+117
-2.0420448e+117
-2.1395747e+117
-1.3855633e+117
-9.9169753e+116
-1.1752037e+117
-9.2505152e+116
-1.1674359e+117
-1.475636e+117
-2.2619435e+117
-3.0755637e+117
-2.9661564e+117
-2.857381e+117
-2.7493955e+117
-2.6407011e+117
-2.7480067e+117
-2.640116e+117
-2.5335442e+117
-2.5335524e+117
-2.8553833e+117
-2.9645213e+117
-3.0744663e+117
-1.6180385e+117
-1.4397502e+117
-1.4707332e+117
-2.5320757e+117
-2.5327442e+117
-2.6395739e+117
-2.6392966e+117
-2.7473494e+117
-2.7475863e+117
-2.8554965e+117
-2.8551964e+117
-2.6410617e+117
-2.5337976e+117
-2.5372962e+117
-2.5362836e+117
-2.5338007e+117
-2.5368292e+117
-2.535696e+117
-2.6415765e+117
-2.6424444e+117
-2.6427589e+117
-2.6418248e+117
-2.6395119e+117
-2.6398597e+117
-2.5322469e+117
-2.7481584e+117
-2.7483685e+117
-2.7483111e+117
-2.7477083e+117
-2.8551964e+117
-2.85524e+117
-2.8551211e+117
-2.8549206e+117
-2.9628966e+117
-2.9629097e+117
-2.9628566e+117
-3.0714999e+117
-3.0714811e+117
-3.0714511e+117
-3.1811515e+117
-3.181148e+117
-3.2916998e+117
-3.2916964e+117
-3.4030935e+117
-3.5151615e+117
-1.0839808e+118
-8.5957996e+117
-7.6188027e+117
-6.963703e+117
-8.4104338e+117
-7.8080384e+117
-7.3823152e+117
-7.4582937e+117
-7.3079383e+117
-6.6501147e+117
-3.7419603e+117
-3.2991771e+117
-3.2994755e+117
-3.0816139e+117
-3.191521e+117
-3.0831462e+117
-3.1916374e+117
-3.0832537e+117
-3.1916324e+117
-3.0827022e+117
-3.1912932e+117
-3.0813194e+117
-3.1902614e+117
-3.2990824e+117
-3.2991723e+117
-3.2991854e+117
-3.0788807e+117
-2.9715671e+117
-2.8600991e+117
-2.9729005e+117
-2.8607821e+117
-2.9729911e+117
-2.9724289e+117
-2.8603487e+117
-2.9711675e+117
-2.8595305e+117
-2.7481127e+117
-2.7491575e+117
-2.7492632e+117
-2.7488736e+117
-2.7485029e+117
-2.7485284e+117
-2.8578122e+117
-2.8586452e+117
-2.7483754e+117
-2.8571699e+117
-2.9683967e+117
-3.079436e+117
-2.9695758e+117
-2.9671372e+117
-3.0769403e+117
-3.4074298e+117
-3.4074337e+117
-3.5168599e+117
-3.5168669e+117
-3.6282472e+117
-2.7456784e+117
-2.748443e+117
-2.8540388e+117
-2.8560866e+117
-3.2788784e+117
-3.718937e+117
-3.2753742e+117
-1.4212093e+117
-1.3895882e+117
-2.0834369e+117
-2.7690973e+117
-1.1285696e+117
-9.3425227e+116
-1.2655527e+117
-2.0651738e+117
-2.7666653e+117
-4.4540529e+116
-7.9278146e+116
-1.2509063e+117
-2.0728689e+117
-2.0129015e+117
-1.3455709e+117
-8.7593184e+116
-4.669111e+116
-8.8763796e+116
-1.0800957e+117
-2.8573936e+117
-2.7494114e+117
-2.6409235e+117
-2.7480165e+117
-2.6402669e+117
-2.5337143e+117
-2.5337927e+117
-2.8553909e+117
-1.5148596e+117
-2.5320895e+117
-2.532753e+117
-2.6395812e+117
-2.6393088e+117
-2.5373912e+117
-2.5373353e+117
-2.5362934e+117
-2.5368397e+117
-2.6424539e+117
-2.6428845e+117
-2.6428173e+117
-2.6418326e+117
-2.7483771e+117
-2.7484394e+117
-2.7483165e+117
-2.8551995e+117
-2.8552795e+117
-2.8552453e+117
-2.9629132e+117
-2.9629112e+117
-3.0714827e+117
-3.0714802e+117
-3.1811484e+117
-3.2916964e+117
-8.8848128e+117
-8.0069863e+117
-7.4977839e+117
-7.8909605e+117
-7.6316457e+117
-7.3589619e+117
-3.0831525e+117
-3.1916407e+117
-3.0832938e+117
-3.1916433e+117
-3.0832668e+117
-3.0827306e+117
-3.081334e+117
-3.2991761e+117
-3.2991786e+117
-2.8601179e+117
-2.9729077e+117
-2.8609382e+117
-2.9730522e+117
-2.8610136e+117
-2.9730065e+117
-2.9724609e+117
-2.8605361e+117
-2.971186e+117
-2.8596871e+117
-2.7481313e+117
-2.749171e+117
-2.749405e+117
-2.7494692e+117
-2.7490688e+117
-2.7486596e+117
-2.7485423e+117
-2.8578437e+117
-2.8586554e+117
-2.7483896e+117
-2.8571898e+117
-3.4074339e+117
-3.516865e+117
-3.2700418e+117
-1.2354022e+117
-9.7522796e+116
-1.247762e+117
-2.0483862e+117
-2.7572152e+117
-4.2897021e+116
-7.5671053e+116
-1.2108202e+117
-2.046418e+117
-2.8467991e+116
-7.3155049e+116
-1.2297642e+117
-8.3838521e+116
-3.3577647e+116
-5.6569782e+116
-2.6409366e+117
-2.6402762e+117
-2.5337231e+117
-2.5338093e+117
-2.5373982e+117
-2.5374644e+117
-2.5373391e+117
-2.6428931e+117
-2.6429577e+117
-2.6428218e+117
-2.7484484e+117
-2.748445e+117
-2.8552827e+117
-2.8552853e+117
-2.9629145e+117
-3.0714816e+117
-8.1446675e+117
-7.7805242e+117
-7.6966859e+117
-3.0832975e+117
-3.1916479e+117
-3.0833011e+117
-3.299181e+117
-2.8609471e+117
-2.973057e+117
-2.8610848e+117
-2.9730597e+117
-2.8610278e+117
-2.8605593e+117
-2.8597004e+117
-2.7494085e+117
-2.7495258e+117
-2.7494807e+117
-2.749091e+117
-2.7486749e+117
-6.9805402e+116
-7.5868542e+116
-1.1978538e+117
-2.0345179e+117
-2.6833904e+116
-7.0984537e+116
-1.1969127e+117
-2.2975304e+116
-7.2610697e+116
-2.9358939e+116
-2.5374752e+117
-2.5374721e+117
-2.6429678e+117
-2.6429638e+117
-2.748454e+117
-2.8552884e+117
-7.8766325e+117
-3.0833045e+117
-2.8610898e+117
-2.9730643e+117
-2.861092e+117
-2.7495258e+117
-2.7495288e+117
-2.9750921e+116
-7.1199433e+116
-1.1884569e+117
-2.2028039e+116
-7.1232188e+116
-2.2100972e+116
-2.5374837e+117
-2.6429741e+117
-2.8610952e+117
-2.7495313e+117
-2.3095939e+116
-7.1985217e+116
-2.176754e+116
-2.2887313e+116
)
;
boundaryField
{
frontAndBack
{
type zeroGradient;
}
inlet
{
type freestreamPressure;
freestreamValue uniform 100000;
supersonic 0;
value nonuniform List<scalar>
971
(
-9.1630719e+117
-6.6946053e+117
-2.3964296e+115
-6.7425471e+117
-6.0761299e+117
-1.9648956e+116
-6.4976864e+114
-2.6990481e+115
-7.3705585e+117
-1.3070075e+114
-6.6979335e+113
-9.3951803e+115
-3.9585134e+113
-6.4976882e+117
-2.4194883e+114
-1.8353885e+115
2.1581897e+113
-5.4413445e+117
-2.0329328e+115
-5.4452218e+114
-4.301574e+114
-1.738121e+115
-1.4886876e+114
-5.9559013e+117
-7.5219657e+117
-2.2224422e+115
-6.3857254e+115
-4.9153052e+115
-6.0737347e+117
-7.439673e+117
-3.2706691e+112
-6.8648371e+117
-7.7608042e+117
-8.4074454e+117
-7.1865134e+117
-6.7503522e+117
-1.5152182e+116
-6.0018003e+117
-1.1933229e+115
-7.08501e+115
-7.0587275e+115
-4.5969304e+117
-9.4329936e+117
-1.8507044e+118
-7.2194765e+117
-8.8167939e+117
-5.4434367e+117
-6.8263858e+114
-6.9514849e+117
-9.9001069e+117
-6.5414562e+117
-7.4502846e+117
-3.0849162e+114
-3.2700688e+114
-8.4856252e+117
-7.24931e+117
-6.890026e+117
-2.108215e+114
-4.869516e+117
-7.2325297e+114
-9.8945927e+114
-6.2563585e+117
-9.6835772e+113
-6.292924e+117
-1.2435755e+115
-9.6861813e+117
-6.1620033e+117
-7.0694136e+117
-7.741271e+114
-7.5005835e+117
-6.6473258e+117
-6.8032553e+117
-6.5266176e+117
-4.21566e+114
-6.0501258e+117
-6.3201388e+117
-5.9192476e+117
-5.6716406e+117
-6.6491268e+117
-6.7675197e+117
-6.9758044e+117
-6.9737647e+117
-6.6377455e+117
-6.4716074e+117
-6.7707372e+117
-6.8054193e+117
-7.1446995e+117
-7.0924006e+117
-7.2304633e+117
-7.624814e+117
-5.8137338e+117
-6.3709753e+117
-6.286687e+114
-1.739421e+116
-6.7466897e+117
-6.5038363e+117
-6.8340583e+117
-6.7042356e+117
-6.4057788e+117
-5.7958162e+117
-6.5213219e+117
-6.0016229e+117
-6.864918e+117
-6.6355363e+117
-5.869288e+117
-5.9272012e+117
-6.2003733e+117
-6.1529009e+114
-6.154027e+117
-2.9711513e+115
-5.9826793e+117
-5.8617407e+117
-6.238225e+117
-8.6379484e+117
-5.4916251e+117
-6.0155867e+117
-5.9207474e+117
-5.3878371e+117
-2.9041687e+115
-5.6261631e+114
-6.2374185e+117
-6.1339851e+117
-1.8186252e+114
-1.1074476e+114
-5.5476579e+117
-2.9699545e+114
-7.0034664e+117
-6.2880907e+117
9.743965e+113
-1.5851496e+115
-6.4231543e+117
-9.7996936e+114
-1.1651974e+118
-6.7347183e+112
-4.1407362e+115
-5.8183271e+117
-1.2574659e+114
-9.3606255e+113
-5.3156578e+117
-1.3650689e+115
-3.7613217e+114
-4.2266927e+114
-3.8763546e+114
-3.9918937e+117
-8.6766053e+115
-5.6140022e+117
-6.0218711e+113
-1.2355308e+112
-3.0579663e+114
-9.2468444e+115
-2.1748212e+115
-4.3188487e+113
-7.188491e+117
-6.0234237e+117
-6.4676804e+117
-6.65345e+117
-6.5247129e+117
-7.474242e+117
-5.5882224e+117
-5.5042457e+117
-5.5187649e+117
-1.2800824e+115
-4.6064042e+117
-8.7628178e+115
-5.9124788e+117
-6.0488654e+117
-4.9059801e+117
-5.5162979e+117
-6.9760029e+117
-1.1026914e+118
-8.3807526e+117
-6.3033653e+117
-6.1489124e+117
-6.1383841e+117
-8.1762733e+117
-1.5203946e+118
-6.3759655e+117
-3.8925919e+115
-7.4191214e+117
-5.6787907e+117
-6.1476986e+117
-6.1095921e+117
-6.0639288e+117
-6.0922882e+117
-6.1709522e+117
-6.3878426e+117
-7.0365744e+117
-6.1064212e+117
-6.1923e+117
-6.0713333e+117
-6.0754494e+117
-6.4531646e+117
-6.1139959e+117
-5.1775709e+117
-1.1234698e+115
-5.8341187e+117
-5.7231379e+117
-5.5643035e+117
-5.8862678e+117
-6.057891e+117
-6.1034586e+117
-6.0442663e+117
-6.1168748e+117
-5.7909175e+117
-5.7054979e+117
-5.8931795e+117
-5.7600216e+117
-5.6959851e+117
-5.7355353e+117
-5.8697937e+117
-5.8713481e+117
-6.0302135e+117
-6.1368758e+117
-5.9961415e+117
-6.037604e+117
-6.1602408e+117
-6.1798685e+117
-6.0836806e+117
-6.0758574e+117
-6.1236626e+117
-6.0966272e+117
-6.0979598e+117
-5.9706265e+117
-6.1956126e+117
-6.2249243e+117
-6.296235e+117
-6.3393007e+117
-6.5091841e+117
-6.8599632e+117
-6.0997271e+117
-6.1802262e+117
-6.3973379e+117
-5.2825804e+117
-5.5928526e+117
-5.9457718e+117
-3.743243e+117
-6.7732482e+114
-3.7041366e+117
-2.0052034e+114
-1.1849262e+115
-7.8982046e+115
-1.8313274e+115
-1.9282152e+115
-5.254606e+117
-4.134997e+115
-5.6461055e+117
-1.5751317e+115
-5.1968394e+117
-3.8427765e+117
-6.1268005e+115
-5.0295983e+114
-4.0890443e+117
-5.1110101e+117
-6.0914231e+117
-5.1619785e+117
-6.8519696e+117
-6.3401309e+117
-6.742186e+117
-6.348889e+117
-6.1259843e+117
-4.3489104e+117
-4.5250729e+114
-4.3099123e+115
-2.9739154e+114
-5.7588393e+117
-5.8030192e+117
-7.1603582e+117
-8.3541032e+117
-5.8792804e+117
-6.1944774e+117
-6.3890991e+117
-6.4829781e+117
-6.4383297e+117
-6.1677279e+117
-6.5790766e+117
-6.1443311e+117
-6.2322016e+117
-6.0891624e+117
-5.983739e+117
-5.9102989e+117
-5.8865268e+117
-4.9176372e+117
-4.6198741e+117
-5.9696046e+117
-5.7877801e+117
-5.4344807e+117
-7.3055865e+115
-5.0316679e+117
-4.2303945e+117
-2.3142166e+114
-6.8301086e+113
-4.3321503e+117
-7.3848219e+114
-1.0046102e+118
-5.0687181e+117
-5.0359193e+117
-5.0796121e+117
-2.2876815e+115
-1.0295542e+114
-3.176456e+117
-1.1225382e+115
-7.7373664e+114
-7.5538514e+117
-2.6226126e+114
-9.9240257e+113
-5.7312301e+117
-4.1480728e+117
-5.6232449e+115
-2.912818e+113
-4.9945945e+113
-4.8404373e+117
-2.9160369e+114
-2.8133337e+117
-2.9554386e+117
-7.5094176e+115
-8.4711587e+114
-4.4238702e+117
-4.854853e+117
-4.8424466e+117
-4.0854742e+117
-3.4558637e+117
-3.4778761e+117
-7.653742e+115
-6.7482087e+117
-6.1541475e+117
-3.0321164e+114
-5.9528645e+117
-7.7569591e+115
-6.3094975e+115
-1.9791017e+115
-3.0038853e+114
-1.0507532e+118
-5.2120509e+117
-7.3779011e+117
-2.0565978e+115
-1.9310103e+115
-6.2025925e+117
-7.241445e+117
-1.2112772e+118
-6.9582363e+117
-8.8453614e+117
-4.9649318e+117
-5.9572889e+117
-1.6456896e+114
-4.7205681e+117
-5.4145085e+117
-5.9171899e+117
-1.0067169e+116
-4.6044291e+117
-9.5312799e+117
-1.0764818e+115
-3.19766e+117
-2.0246638e+115
-3.5283388e+117
-5.4852817e+117
-7.0428876e+117
-6.8647194e+117
-6.4251065e+117
-5.8539697e+117
-3.759903e+114
-2.0496686e+115
-7.4916143e+114
-6.6412751e+117
-4.799504e+115
-1.4962401e+114
-1.239757e+114
-4.4563564e+117
-6.6200006e+114
-6.6029469e+117
-1.5531785e+114
-5.6455532e+117
-6.4345251e+117
-6.5901464e+117
-6.7878966e+117
-4.1172432e+114
-2.0798885e+114
-6.331223e+117
-1.9569516e+113
-5.5503043e+113
-6.3947173e+117
-6.8952903e+117
-3.611812e+114
-6.9656041e+117
-7.0261028e+117
-4.8810464e+117
-7.2587961e+117
-7.1003952e+114
-5.6111876e+117
-7.3086794e+117
-1.3878052e+114
-1.0575186e+115
-3.3034974e+117
-2.3442579e+114
-7.9689479e+117
-4.9729273e+114
-1.087618e+114
-1.3490425e+114
-2.8298261e+114
-4.5082743e+117
-6.0573483e+117
-6.4428095e+117
-4.7855431e+117
-6.1711481e+117
-4.4548223e+117
-3.983496e+117
-6.0988627e+114
-1.145537e+116
-3.7392073e+117
-3.6311229e+117
-3.3478465e+115
-5.3809436e+117
-6.1161947e+117
-2.4815492e+115
-3.5583926e+117
-4.3337659e+117
-5.3454326e+117
-5.7374032e+117
-5.2999722e+117
-5.5116907e+117
-4.3321485e+117
-4.7718469e+117
-3.2705927e+117
-3.2115367e+117
-1.2880536e+114
-2.4478431e+117
-2.8675251e+117
-3.9276827e+114
-1.3464196e+116
-3.2720824e+117
-2.2209809e+117
-2.1590739e+117
-5.7776223e+117
-5.7059842e+117
-5.3352565e+117
-5.5112032e+117
-5.2214593e+117
-5.4185413e+117
-4.7335757e+117
-4.689666e+117
-4.8941648e+117
-4.9422869e+117
-4.9326558e+117
-1.5805462e+115
-1.1606187e+116
-1.8139199e+114
-1.01776e+114
-4.2637162e+117
-3.6413144e+117
-2.0744313e+113
-3.9633689e+117
-1.3115748e+115
-3.6449216e+117
-1.0858494e+116
-2.6189268e+117
-3.5538258e+117
-3.2459817e+117
-1.7525139e+117
-4.829438e+114
-2.8465295e+117
-2.2093206e+117
-2.0919043e+117
-2.3706642e+117
-2.724274e+117
-3.0225794e+117
-3.4294308e+117
-3.891174e+116
-5.6084664e+114
-3.479652e+115
-2.5072297e+115
-1.837233e+115
-2.6277057e+114
-1.2010356e+114
-2.8234974e+114
-1.1369536e+117
-1.8078844e+115
-3.7154161e+114
-1.1767584e+115
-1.3981942e+117
-1.4940416e+115
-7.6781923e+114
-1.4214309e+113
-1.4449884e+115
-2.120842e+117
-1.1968871e+115
-2.4638752e+117
-2.5982341e+115
-1.618273e+117
-2.3024656e+117
-2.1161909e+117
-2.3140522e+115
-2.0488958e+117
-2.1866348e+115
-2.0547858e+115
-1.0589935e+115
-1.3835436e+117
-1.7671489e+117
-2.4434276e+117
-2.448984e+117
-2.641512e+114
-5.1250157e+115
-1.3250713e+117
-1.8559907e+117
-1.8622951e+117
-2.7668096e+114
-1.3884613e+117
-2.9161405e+117
-3.0509105e+117
-2.7661543e+117
-2.8184921e+117
-3.3181742e+117
-2.6298184e+117
-2.6083444e+117
-2.4690635e+117
-2.5428158e+117
-2.3455195e+117
-1.7246812e+117
-2.2356201e+117
-2.3257911e+117
-2.5113759e+117
-2.2629217e+117
-2.3385557e+117
-1.9971133e+117
-2.2109073e+117
-1.8032027e+117
-1.724674e+115
-1.8634775e+115
-2.0984495e+117
-1.6701451e+117
-1.1752037e+117
-9.170154e+114
-6.458705e+117
-1.4203853e+114
-6.4942602e+117
-1.9649043e+115
-7.7332123e+117
-6.4095101e+117
-9.1250614e+117
-5.2646853e+113
-5.7554453e+117
-7.1353835e+117
-4.739847e+113
-6.0063289e+117
-1.0712338e+116
-5.6165147e+117
-1.0174039e+115
-1.4480096e+115
-2.1427701e+115
-4.5003686e+117
-1.2468324e+115
-9.1762693e+117
-5.8092196e+117
-5.4843019e+117
-5.2444277e+117
9.0703765e+113
-1.8501595e+115
-4.4245521e+116
-4.5287045e+117
-1.4481564e+116
-4.9831762e+117
-3.1991072e+117
-4.1774665e+117
-6.3865541e+117
-5.6184728e+117
-6.0039398e+117
-6.7211111e+117
-6.2563815e+117
-4.9073943e+117
-1.3728866e+114
-9.8652215e+114
-1.1296675e+115
-6.4568802e+115
-7.5590397e+117
-5.2512681e+114
-5.0951738e+114
-1.8418064e+115
-4.050494e+114
-1.2211132e+117
-5.3686929e+117
-3.3148785e+117
-3.1730043e+117
-2.5160921e+115
-2.1857136e+113
-4.701683e+113
-1.1652491e+115
-3.063734e+117
-2.8236227e+117
-2.5527086e+116
-5.7790151e+117
-5.8091449e+117
-5.8714135e+117
-7.4777746e+117
-7.2609809e+117
-6.8816033e+117
-6.4028482e+117
-6.3506787e+117
-6.2780486e+117
-1.0839808e+118
-1.0091582e+118
-8.5522717e+117
-6.963703e+117
-6.9797866e+117
-7.0254571e+117
-6.6873967e+117
-6.6654004e+117
-6.6367876e+117
-6.0895294e+117
-6.0176404e+117
-6.0836639e+117
-5.1927209e+116
-6.3813398e+117
-7.2155137e+117
-3.1254044e+117
-3.0279589e+117
-1.8246894e+115
-3.357573e+117
-3.1723336e+117
-1.1371491e+116
-4.8422299e+114
-6.2985646e+116
-4.3370676e+117
-1.9388531e+117
-2.3509597e+115
-5.9383706e+117
-1.985234e+115
-3.1259051e+115
-6.1765928e+117
1.2527161e+117
1.5125785e+117
-7.6674178e+113
-1.1863515e+117
-1.0048382e+117
-1.8521517e+115
-1.2454506e+115
-3.4555337e+115
-5.3678938e+117
-3.4858368e+117
-3.3880036e+117
-3.2363717e+117
-2.9515952e+117
-2.8805175e+117
-2.7549443e+117
-1.2251018e+117
-1.1617069e+117
-9.6671493e+116
-1.4773698e+117
-1.4285743e+117
-1.2471572e+117
-1.4707332e+117
-1.4905037e+117
-1.4762861e+117
-1.5148596e+117
-1.4397502e+117
-1.2497202e+117
-2.7237434e+117
-2.6237622e+117
-2.5482781e+117
-3.3171269e+117
-3.3290345e+117
-3.3435301e+117
-1.3101218e+116
-9.225626e+116
-7.9774092e+117
-6.6728651e+114
-7.72652e+116
-1.4848609e+114
-7.506681e+117
-7.479074e+117
-7.3592189e+117
-6.8588521e+117
-6.814587e+117
-6.7311084e+117
-5.1959203e+115
-2.2095934e+116
-6.5161872e+117
-1.7413588e+116
-3.3044401e+117
-7.0141874e+117
-6.8605986e+117
-6.8764571e+117
-6.9997274e+117
-6.1761339e+117
-6.1803753e+117
-6.1653199e+117
-6.1643279e+117
-6.1552302e+117
-6.031977e+117
-5.2944999e+117
-5.1235857e+117
-1.0431121e+114
-6.1195536e+117
-6.10188e+117
-5.9366871e+117
-3.0861557e+117
-9.2695187e+115
-6.6079684e+117
-2.5529746e+117
-2.390303e+117
-2.8558452e+114
-4.0026155e+115
-4.3278658e+116
-6.6180801e+117
-2.8478882e+116
-5.3555288e+117
-6.0081397e+117
-5.8176735e+117
-5.8306565e+117
-5.9210512e+117
-6.8442349e+117
-6.8533104e+117
-4.7432996e+117
-4.7617498e+117
-4.7990519e+117
-4.8942514e+117
-7.7539835e+116
-2.7375409e+117
-5.4091877e+117
-2.1940317e+117
-7.0094363e+116
-6.3093915e+117
-7.4172045e+117
-7.4614311e+117
-8.3372027e+117
-7.0708019e+117
-7.0568884e+117
-6.6757723e+117
-5.4232148e+117
-5.0639998e+117
-1.1484704e+115
-1.0032989e+117
-8.7235309e+114
-1.6423281e+114
-2.197059e+115
-1.0444338e+117
-8.4849049e+114
-3.3435263e+114
-1.9395858e+114
-3.2294767e+114
-2.1010641e+115
-1.4168837e+115
-3.9987245e+115
-1.908951e+117
-1.9439445e+117
-1.9964701e+117
-2.2599452e+117
-2.2820033e+117
-2.304192e+117
-2.2619435e+117
-2.2592199e+117
-2.2607883e+117
-2.0129015e+117
-2.0073696e+117
-2.0222976e+117
-6.4447064e+117
-6.4417782e+117
-6.5759396e+117
-4.9623537e+114
-3.9193246e+114
-4.3932661e+115
-1.6605527e+117
-2.3512637e+117
-8.4025484e+117
-6.5003209e+117
-6.5070624e+117
-6.7495576e+117
-6.2923472e+117
-6.2947574e+117
-6.2129064e+117
-5.9237584e+117
-5.911718e+117
-5.8572997e+117
-2.1789178e+116
-3.7424586e+117
-5.6978783e+117
-6.187678e+117
-6.4663763e+117
-6.5232634e+117
-1.4475591e+118
-1.3521069e+118
-8.3015467e+117
-8.0168234e+117
-7.9032505e+117
-7.2544557e+117
-6.7839388e+117
-6.7584989e+117
-6.6386536e+117
-6.698726e+117
-6.7199422e+117
-6.8023526e+117
-7.3509169e+117
-7.4263441e+117
-8.0414888e+117
-1.3058316e+118
-1.1760007e+118
-8.3930118e+117
-2.8030373e+116
-6.0617382e+117
-6.682469e+117
-8.3250561e+117
-8.1283694e+117
-7.3005479e+117
-6.0488683e+117
-6.0736329e+117
-6.0958329e+117
-6.3357573e+117
-6.3276394e+117
-6.2268185e+117
-5.4572967e+117
-5.5134646e+117
-5.6122176e+117
-5.5931715e+117
-5.5790509e+117
-5.5652085e+117
-3.438354e+117
-3.0371638e+117
-8.7593887e+115
-4.9502531e+117
-5.0333395e+117
-5.2290923e+117
-1.5324608e+115
-3.3606705e+115
-8.2560435e+115
-5.6793061e+117
-5.8725709e+117
-7.6728426e+117
-1.4499198e+116
-9.0777008e+116
-8.2478464e+117
-5.7812091e+117
-5.8291983e+117
-6.2580831e+117
-6.1495447e+117
-6.0720323e+117
-5.8191316e+117
-1.6201854e+114
-2.1165869e+114
-2.858425e+115
-1.0499313e+117
-3.3331626e+115
-4.4509406e+117
-3.8732824e+117
-3.608381e+117
-4.0810725e+114
-5.4909901e+115
-9.0842754e+116
-6.3817039e+114
-4.5524343e+117
-4.5719386e+117
-4.5694071e+117
-5.6619916e+117
-5.7007795e+117
-5.4762384e+117
-4.9161081e+117
-4.937909e+117
-5.1966097e+117
-5.1405228e+117
-5.1271656e+117
-5.1803564e+117
-1.3036083e+117
-3.0959212e+117
-4.5532667e+117
-1.8027374e+117
-1.6157739e+117
-6.3889815e+114
-1.6227092e+117
-1.4164213e+117
-4.534154e+114
-5.1809612e+114
-8.2587051e+114
-5.4227408e+115
-1.2741017e+117
-3.3894642e+114
-4.0526285e+115
-2.9782298e+117
-3.030271e+117
-3.1480877e+117
-1.158928e+116
-8.8763796e+116
-9.2505152e+116
-2.7983286e+115
-4.5735656e+115
-8.3290098e+115
-1.2354022e+117
-1.1285696e+117
-6.5533345e+115
-6.9805402e+116
-6.3947334e+115
-6.1897703e+115
-6.3891612e+112
-2.7052345e+113
-3.7529273e+114
-1.0005261e+116
-2.7564973e+117
-6.6141446e+117
-6.6809941e+117
-6.6811857e+117
-6.7332249e+117
-6.7665816e+117
-6.863728e+117
-6.7123211e+117
-5.3187323e+117
-5.3093351e+117
-5.1773621e+117
-2.3547845e+116
-1.0057065e+117
-6.7667074e+117
-6.0882274e+117
-6.1934947e+117
-6.408721e+117
-6.1565108e+117
-6.1678665e+117
-6.2031467e+117
-6.1314449e+117
-6.1307982e+117
-6.1317004e+117
-6.2491584e+117
-6.2230684e+117
-6.1861624e+117
-4.2449752e+115
-1.0561803e+117
-3.2253571e+115
-1.0262799e+118
-1.0021586e+118
-5.6257705e+117
-3.1973343e+117
-3.0864879e+117
-1.4237065e+117
-3.5321541e+117
-3.4623203e+117
-1.1423303e+115
-4.799214e+117
-4.8004027e+117
-4.7693802e+117
-1.1352364e+116
-2.2746998e+117
-4.7425803e+117
-1.3610925e+115
-6.0110206e+116
-2.677076e+115
-4.5613784e+117
-4.6365202e+117
-4.7334115e+117
-4.9449298e+117
-5.0293041e+117
-5.3312677e+117
-4.878755e+117
-4.9222087e+117
-4.7826323e+117
-4.4248243e+117
-4.4052067e+117
-4.1468583e+117
-2.2036609e+117
-2.1628336e+117
-2.0320133e+117
-7.8766325e+117
-8.1446675e+117
-8.8848128e+117
-7.7805242e+117
-8.0069863e+117
-8.5957996e+117
-7.4977839e+117
-7.6188027e+117
-7.9317372e+117
-1.7267646e+115
-1.6950818e+115
-1.6368911e+115
-2.8944827e+115
-2.6142938e+115
-2.6641138e+115
-5.5103074e+115
-4.312453e+115
-4.503356e+115
)
;
}
outlet
{
type freestreamPressure;
freestreamValue nonuniform 0();
supersonic 0;
value nonuniform 0();
}
solidWall
{
type zeroGradient;
}
procBoundary0to1
{
type processor;
value nonuniform List<scalar>
449
(
-4.9381789e+117
-4.5727189e+117
-4.8670429e+117
-5.0607469e+117
-5.0670664e+117
-5.0732136e+117
-4.2998508e+117
-4.5269434e+117
-4.6931842e+117
-4.8804345e+117
-5.0670664e+117
-5.0683139e+117
-5.0742586e+117
-4.2998508e+117
-4.3844152e+117
-4.3855265e+117
-4.5418751e+117
-4.7045196e+117
-4.8819672e+117
-5.0683139e+117
-5.0684922e+117
-5.0743949e+117
-4.2707317e+117
-4.0660557e+117
-4.2528435e+117
-4.3844152e+117
-4.3912789e+117
-4.3920839e+117
-4.5432957e+117
-4.7067577e+117
-4.8821608e+117
-5.0684922e+117
-4.2707317e+117
-4.0593151e+117
-3.8465899e+117
-4.0164464e+117
-4.1350173e+117
-4.2606564e+117
-4.3912789e+117
-4.3919242e+117
-4.392687e+117
-4.5433955e+117
-4.7069514e+117
-4.2594202e+117
-4.0593151e+117
-3.8465899e+117
-3.9084691e+117
-3.9075931e+117
-4.0208793e+117
-4.1378563e+117
-4.2611381e+117
-4.3919242e+117
-4.3919873e+117
-4.3927478e+117
-4.2631736e+117
-4.0549187e+117
-3.8441013e+117
-3.6330953e+117
-3.7947276e+117
-3.9084691e+117
-3.9088997e+117
-3.9081527e+117
-4.0211923e+117
-4.1383491e+117
-4.2611827e+117
-4.3919873e+117
-4.3349467e+117
-4.0537629e+117
-4.2170233e+117
-3.8430405e+117
-3.6321735e+117
-3.6330953e+117
-3.6929656e+117
-3.6900759e+117
-3.7974241e+117
-3.9088997e+117
-3.9090837e+117
-3.9083625e+117
-4.0212091e+117
-4.1383786e+117
-4.340972e+117
-3.8428662e+117
-4.003944e+117
-4.1120535e+117
-4.2221043e+117
-3.6324517e+117
-3.6321735e+117
-3.4213267e+117
-3.5818073e+117
-3.6929656e+117
-3.6926818e+117
-3.6897016e+117
-3.7975831e+117
-3.9090837e+117
-3.9090935e+117
-3.9083725e+117
-3.6333621e+117
-4.3418445e+117
-3.9009643e+117
-3.7920434e+117
-4.0065778e+117
-4.1122615e+117
-4.2222443e+117
-3.6324517e+117
-3.4204625e+117
-3.4213267e+117
-3.4820212e+117
-3.4786089e+117
-3.5842425e+117
-3.6926818e+117
-3.6927633e+117
-3.6898078e+117
-3.797593e+117
-3.9090935e+117
-3.6333621e+117
-3.6924096e+117
-3.690289e+117
-4.341887e+117
-3.9005781e+117
-3.7944171e+117
-4.0065714e+117
-4.1122659e+117
-4.2222555e+117
-3.4210662e+117
-3.4204625e+117
-3.2032612e+117
-3.4820212e+117
-3.3705479e+117
-3.4819567e+117
-3.4785767e+117
-3.5843631e+117
-3.6927633e+117
-3.6927677e+117
-3.6898146e+117
-3.422385e+117
-3.5824872e+117
-3.6924096e+117
-3.6920412e+117
-3.6901835e+117
-3.9006285e+117
-3.7945331e+117
-4.0065719e+117
-4.1122669e+117
-3.4210662e+117
-3.2024974e+117
-2.9902559e+117
-3.1522436e+117
-3.2640728e+117
-3.4819567e+117
-3.373252e+117
-3.4820869e+117
-3.4786874e+117
-3.5843709e+117
-3.6927677e+117
-3.422385e+117
-3.4819663e+117
-3.4797805e+117
-3.5848278e+117
-3.6920412e+117
-3.6921362e+117
-3.6902313e+117
-3.900631e+117
-3.7945401e+117
-3.2032838e+117
-2.9895373e+117
-2.9958378e+117
-3.0508852e+117
-3.0482391e+117
-3.1547456e+117
-3.2639986e+117
-3.4820869e+117
-3.3734068e+117
-3.4820924e+117
-3.4786937e+117
-3.2106289e+117
-3.3704664e+117
-3.4819663e+117
-3.4814956e+117
-3.4795344e+117
-3.5849327e+117
-3.6921362e+117
-3.692142e+117
-3.6902337e+117
-3.2106289e+117
-2.9904109e+117
-2.9949458e+117
-2.9958378e+117
-3.0561836e+117
-3.0539192e+117
-3.0506368e+117
-3.048036e+117
-3.1548681e+117
-3.2640961e+117
-3.4820924e+117
-3.3734159e+117
-3.2106289e+117
-3.2705733e+117
-3.2676413e+117
-3.3726278e+117
-3.4814956e+117
-3.4815803e+117
-3.4796368e+117
-3.5849392e+117
-3.692142e+117
-2.9956454e+117
-2.9949458e+117
-2.7834821e+117
-2.9443694e+117
-3.0561836e+117
-3.0559231e+117
-3.0537489e+117
-3.0507481e+117
-3.0481881e+117
-3.1548755e+117
-3.2641016e+117
-2.9978877e+117
-3.1601904e+117
-3.2705733e+117
-3.2702946e+117
-3.26739e+117
-3.3727252e+117
-3.4815803e+117
-3.4815849e+117
-3.4796408e+117
-2.9956454e+117
-2.7819416e+117
-2.7883065e+117
-2.8432345e+117
-2.84039e+117
-2.9467548e+117
-3.0559231e+117
-3.0560458e+117
-3.0539139e+117
-3.0507534e+117
-3.0481949e+117
-2.9978877e+117
-3.0561116e+117
-3.0588326e+117
-3.1628461e+117
-3.2702946e+117
-3.2703742e+117
-3.267506e+117
-3.3727311e+117
-3.4815849e+117
-2.7825381e+117
-2.7868918e+117
-2.7883065e+117
-2.847647e+117
-2.8449835e+117
-2.8431596e+117
-2.8402295e+117
-2.9469061e+117
-3.0560458e+117
-3.0560518e+117
-3.0539212e+117
-2.7852198e+117
-3.0588326e+117
-2.9477574e+117
-3.0561847e+117
-3.0588088e+117
-3.1629275e+117
-3.2703742e+117
-3.2703781e+117
-3.2675119e+117
-2.7874797e+117
-2.7868918e+117
-2.5776041e+117
-2.7378744e+117
-2.847647e+117
-2.8473622e+117
-2.8446279e+117
-2.8432905e+117
-2.8403955e+117
-2.9469149e+117
-3.0560518e+117
-2.7901449e+117
-2.8462088e+117
-2.8438896e+117
-3.0588088e+117
-2.9506818e+117
-3.0563444e+117
-3.0589382e+117
-3.1629315e+117
-3.2703781e+117
-2.7874797e+117
-2.5756622e+117
-2.5776041e+117
-2.637178e+117
-2.6357377e+117
-2.7404463e+117
-2.8473622e+117
-2.8475273e+117
-2.8447944e+117
-2.8432983e+117
-2.8404063e+117
-2.7901449e+117
-2.8486081e+117
-2.8516586e+117
-2.8466307e+117
-2.8443019e+117
-3.0589382e+117
-2.9508394e+117
-3.0563531e+117
-3.0589454e+117
-2.5760823e+117
-2.5756622e+117
-2.368327e+117
-2.5284447e+117
-2.637178e+117
-2.6375481e+117
-2.636411e+117
-2.7406786e+117
-2.8475273e+117
-2.847539e+117
-2.8448061e+117
-2.5784304e+117
-2.8516586e+117
-2.7412267e+117
-2.8490342e+117
-2.8523468e+117
-2.8467981e+117
-2.8445196e+117
-3.0589454e+117
-2.9508487e+117
-2.5760823e+117
-2.3671426e+117
-2.4261116e+117
-2.4260223e+117
-2.4270445e+117
-2.4246981e+117
-2.531568e+117
-2.6375481e+117
-2.637727e+117
-2.6366094e+117
-2.7406958e+117
-2.847539e+117
-2.5823008e+117
-2.6362106e+117
-2.6387964e+117
-2.8523468e+117
-2.7445356e+117
-2.849295e+117
-2.852555e+117
-2.8468093e+117
-2.8445323e+117
-2.5823008e+117
-2.3679926e+117
-2.4251537e+117
-2.4257427e+117
-2.4262817e+117
-2.4267175e+117
-2.4291254e+117
-2.4280757e+117
-2.4246297e+117
-2.5317102e+117
-2.637727e+117
-2.6377409e+117
-2.6366246e+117
-2.6399338e+117
-2.639266e+117
-2.6396044e+117
-2.6391893e+117
-2.6365219e+117
-2.6393216e+117
-2.852555e+117
-2.7447591e+117
-2.8493145e+117
-2.8525727e+117
-2.6399338e+117
-2.4269984e+117
-2.5310645e+117
-2.4270787e+117
-2.4252857e+117
-2.4261259e+117
-2.426519e+117
-2.4288248e+117
-2.4268918e+117
-2.4291014e+117
-2.4282879e+117
-2.4248323e+117
-2.5317206e+117
-2.6377409e+117
-2.6396056e+117
-2.6396681e+117
-2.6405744e+117
-2.6393816e+117
-2.6395171e+117
-2.6367964e+117
-2.6395736e+117
-2.8525727e+117
-2.7447771e+117
-2.6396056e+117
-2.4278381e+117
-2.5336881e+117
-2.4275435e+117
-2.4254454e+117
-2.4262686e+117
-2.4265369e+117
-2.4296151e+117
-2.42894e+117
-2.426908e+117
-2.4292231e+117
-2.4283026e+117
-2.4248494e+117
-2.6397639e+117
-2.6397788e+117
-2.6397182e+117
-2.6395836e+117
-2.639535e+117
-2.6395294e+117
-2.6396489e+117
-2.6368203e+117
-2.6395952e+117
-2.6397639e+117
-2.4279665e+117
-2.5338235e+117
-2.4277423e+117
-2.4254547e+117
-2.4262747e+117
-2.4297098e+117
-2.4296874e+117
-2.4289485e+117
-2.4292311e+117
-2.6397758e+117
-2.6397822e+117
-2.6397941e+117
-2.6398627e+117
-2.639644e+117
-2.6395812e+117
-2.6395389e+117
-2.6396585e+117
-2.6397758e+117
-2.4279715e+117
-2.5338373e+117
-2.4277567e+117
-2.4297165e+117
-2.4298078e+117
-2.4296928e+117
-2.6397971e+117
-2.6398818e+117
-2.6398738e+117
-2.6396554e+117
-2.6395839e+117
-2.4298196e+117
-2.4298189e+117
-2.6398828e+117
-2.6398851e+117
-2.4298322e+117
-2.6398859e+117
)
;
}
procBoundary0to2
{
type processor;
value nonuniform List<scalar>
52
(
-6.4347911e+117
-6.0258194e+117
-6.4347911e+117
-6.480551e+117
-6.4347911e+117
-5.6153374e+117
-5.8239809e+117
-6.2047519e+117
-6.1713869e+117
-5.9981914e+117
-5.9668832e+117
-6.480551e+117
-6.1713869e+117
-5.8013118e+117
-5.5756506e+117
-5.5962256e+117
-5.7739391e+117
-5.4126007e+117
-5.1876818e+117
-5.1999517e+117
-6.2956051e+117
-6.335483e+117
-5.3983053e+117
-5.1781413e+117
-4.7482563e+117
-4.977805e+117
-6.0647296e+117
-6.0988942e+117
-4.74388e+117
-4.7454267e+117
-4.9722198e+117
-6.0647296e+117
-6.0988942e+117
-4.4823007e+117
-5.8637888e+117
-5.8926584e+117
-5.6939586e+117
-4.4823007e+117
-5.650874e+117
-5.6731064e+117
-4.4560521e+117
-4.4560521e+117
-5.4223212e+117
-5.4384892e+117
-4.680448e+117
-4.6822066e+117
-4.9608365e+117
-4.9530505e+117
-5.1852388e+117
-5.1970653e+117
-4.9608365e+117
-4.9530505e+117
)
;
}
procBoundary0to3
{
type processor;
value nonuniform List<scalar>
1277
(
-6.4011856e+117
-6.4011856e+117
-6.1866558e+117
-6.2322828e+117
-5.9024388e+117
-5.9368103e+117
-6.4011856e+117
-6.4011856e+117
-6.1866558e+117
-5.9024388e+117
-6.1866558e+117
-6.2322828e+117
-5.9368103e+117
-5.5553383e+117
-5.7207494e+117
-5.5319417e+117
-5.7491582e+117
-5.3832225e+117
-5.170006e+117
-5.9024388e+117
-6.2579747e+117
-6.2107962e+117
-6.2107962e+117
-6.2219735e+117
-6.0937364e+117
-6.0276448e+117
-5.7207494e+117
-5.3680424e+117
-5.3504942e+117
-5.1498031e+117
-5.1602807e+117
-5.5319417e+117
-4.9682103e+117
-5.9154497e+117
-5.9857872e+117
-6.0283556e+117
-6.1069126e+117
-6.0716484e+117
-6.1269676e+117
-6.1229596e+117
-6.0452298e+117
-5.9995284e+117
-5.8152247e+117
-5.7127513e+117
-4.9636142e+117
-4.9588589e+117
-4.7440416e+117
-4.7435995e+117
-5.3504942e+117
-5.1498031e+117
-5.6278419e+117
-5.5413075e+117
-5.9329226e+117
-5.9857872e+117
-5.9857872e+117
-6.0283556e+117
-6.0167405e+117
-5.9778041e+117
-6.0586205e+117
-6.0743392e+117
-6.0780221e+117
-6.0675456e+117
-6.0171302e+117
-5.9869364e+117
-5.3564877e+117
-5.4463289e+117
-5.1540155e+117
-5.2644701e+117
-5.4463289e+117
-5.547065e+117
-5.58441e+117
-5.6209442e+117
-5.8723306e+117
-5.8103962e+117
-5.7599779e+117
-5.7120643e+117
-4.9588589e+117
-4.7440416e+117
-4.4883745e+117
-5.6706471e+117
-5.9460915e+117
-5.7514638e+117
-5.7950248e+117
-5.8320923e+117
-5.8332141e+117
-5.8639203e+117
-5.8995768e+117
-6.0164546e+117
-6.0365281e+117
-6.0494025e+117
-6.0530602e+117
-6.0481863e+117
-6.0349637e+117
-5.9943706e+117
-5.9783402e+117
-4.4883745e+117
-4.4883745e+117
-5.0360783e+117
-4.8866785e+117
-4.8801871e+117
-4.6961609e+117
-5.3564877e+117
-5.3871335e+117
-5.4463289e+117
-5.2644701e+117
-5.3037978e+117
-5.3480302e+117
-5.1540155e+117
-5.1890952e+117
-5.2549023e+117
-5.58441e+117
-5.547065e+117
-5.5012529e+117
-5.5614942e+117
-5.5438096e+117
-5.6209442e+117
-5.6209442e+117
-5.6634452e+117
-5.684462e+117
-5.7053056e+117
-5.7276387e+117
-5.8699701e+117
-5.9083851e+117
-5.8072386e+117
-5.8376917e+117
-5.7547488e+117
-5.7807233e+117
-5.953979e+117
-5.7514638e+117
-5.7514638e+117
-5.5953869e+117
-5.6256122e+117
-5.8332141e+117
-5.8332141e+117
-5.8995768e+117
-5.7799258e+117
-5.8995768e+117
-5.9588914e+117
-5.9914876e+117
-5.9828535e+117
-5.9930127e+117
-6.0012822e+117
-6.0309916e+117
-6.03722e+117
-6.0387978e+117
-6.037132e+117
-6.0333832e+117
-6.024877e+117
-6.0088357e+117
-4.4629109e+117
-4.4629109e+117
-4.4629109e+117
-5.964412e+117
-4.6961609e+117
-4.6961609e+117
-4.8801871e+117
-5.0360783e+117
-4.8801871e+117
-5.108299e+117
-5.001203e+117
-5.429837e+117
-5.3871335e+117
-5.3871335e+117
-5.4641073e+117
-5.5012529e+117
-5.3037978e+117
-5.3453705e+117
-5.3480302e+117
-5.1890952e+117
-5.2291665e+117
-5.2704326e+117
-5.2549023e+117
-5.3240257e+117
-5.2991404e+117
-5.5614942e+117
-5.5832317e+117
-5.6012748e+117
-5.5614942e+117
-5.5614942e+117
-5.5614942e+117
-5.5438096e+117
-5.5232112e+117
-5.6193352e+117
-5.6382653e+117
-5.6193352e+117
-5.6193352e+117
-5.6382653e+117
-5.6382653e+117
-5.6382653e+117
-5.6634452e+117
-5.6677244e+117
-5.6577513e+117
-5.684462e+117
-5.688501e+117
-5.677906e+117
-5.7053056e+117
-5.7276387e+117
-5.7276387e+117
-5.8684277e+117
-5.8883733e+117
-5.9086028e+117
-5.9317105e+117
-5.8038299e+117
-5.8188141e+117
-5.8339094e+117
-5.8511814e+117
-5.7510638e+117
-5.7635866e+117
-5.7762738e+117
-5.7901445e+117
-5.5604674e+117
-5.7408173e+117
-5.5604674e+117
-5.3814245e+117
-5.4035401e+117
-5.7799258e+117
-5.7799258e+117
-5.895945e+117
-5.8372971e+117
-5.895945e+117
-5.9588914e+117
-5.9828535e+117
-5.9930127e+117
-5.9991438e+117
-6.0072249e+117
-6.0280374e+117
-6.0299233e+117
-6.0314429e+117
-6.0298532e+117
-6.0187565e+117
-5.9942093e+117
-4.6817823e+117
-4.6836518e+117
-4.6779647e+117
-4.6905099e+117
-5.9652995e+117
-5.9370087e+117
-4.6779647e+117
-4.8630712e+117
-5.108299e+117
-5.104767e+117
-5.1771616e+117
-5.001203e+117
-4.8630712e+117
-5.0078621e+117
-5.4618304e+117
-5.4478814e+117
-5.4125233e+117
-5.4265336e+117
-5.4265336e+117
-5.4311308e+117
-5.4579023e+117
-5.4265336e+117
-5.4763238e+117
-5.4913343e+117
-5.5069205e+117
-5.5232112e+117
-5.3652988e+117
-5.3453705e+117
-5.3453705e+117
-5.3812782e+117
-5.3971466e+117
-5.2291665e+117
-5.2704326e+117
-5.2991404e+117
-5.3240257e+117
-5.5830239e+117
-5.5912931e+117
-5.5999857e+117
-5.6087005e+117
-5.560193e+117
-5.5627049e+117
-5.560193e+117
-5.5744405e+117
-5.5479834e+117
-5.5284827e+117
-5.6087005e+117
-5.6204698e+117
-5.629405e+117
-5.6385899e+117
-5.6480736e+117
-5.6577513e+117
-5.6677244e+117
-5.688501e+117
-5.688501e+117
-5.677906e+117
-5.7123037e+117
-5.7015361e+117
-5.7346836e+117
-5.723111e+117
-5.7346836e+117
-5.737395e+117
-5.8715926e+117
-5.891715e+117
-5.9134223e+117
-5.8053055e+117
-5.8201669e+117
-5.8360646e+117
-5.8530833e+117
-5.7520347e+117
-5.7644748e+117
-5.777481e+117
-5.7909979e+117
-4.939423e+117
-4.9460518e+117
-5.3560985e+117
-5.5558784e+117
-5.6526324e+117
-5.3560985e+117
-5.159021e+117
-5.1726953e+117
-5.6959947e+117
-5.7747342e+117
-5.7747342e+117
-5.8372971e+117
-5.8242087e+117
-5.8970011e+117
-5.8667842e+117
-5.8567793e+117
-5.9207889e+117
-5.9207889e+117
-5.9299906e+117
-5.9594225e+117
-5.9318014e+117
-5.9693292e+117
-5.9409633e+117
-5.9991438e+117
-6.0043268e+117
-6.0084421e+117
-6.0122843e+117
-6.0159041e+117
-6.0193137e+117
-6.0273644e+117
-6.030066e+117
-6.0286266e+117
-6.0175361e+117
-5.990877e+117
-4.6905099e+117
-4.6905099e+117
-5.9379286e+117
-5.9628561e+117
-4.8524061e+117
-4.8543719e+117
-5.0078621e+117
-5.104767e+117
-5.0078621e+117
-5.1771616e+117
-5.0078621e+117
-5.4737422e+117
-5.4318703e+117
-5.4579023e+117
-5.4579023e+117
-5.4318703e+117
-5.4469853e+117
-5.4864701e+117
-5.4999475e+117
-5.5140886e+117
-5.5284827e+117
-5.3959121e+117
-5.3807899e+117
-5.3807899e+117
-5.3807899e+117
-5.4081055e+117
-5.4200692e+117
-5.2732781e+117
-5.3185808e+117
-5.3457627e+117
-5.3649912e+117
-5.5853853e+117
-5.5936454e+117
-5.6019861e+117
-5.610411e+117
-5.5617312e+117
-5.5641707e+117
-5.5617312e+117
-5.5766162e+117
-5.5446881e+117
-5.5355032e+117
-5.5329201e+117
-5.5518716e+117
-5.610411e+117
-5.610411e+117
-5.6219728e+117
-5.630784e+117
-5.6398992e+117
-5.6491975e+117
-5.6588423e+117
-5.6686379e+117
-5.689125e+117
-5.689125e+117
-5.6787877e+117
-5.7129378e+117
-5.7022876e+117
-5.7351547e+117
-5.7238762e+117
-5.7351547e+117
-5.7377504e+117
-5.8720936e+117
-5.8924636e+117
-5.9143323e+117
-5.8054902e+117
-5.8203599e+117
-5.8364444e+117
-5.8534202e+117
-5.7520076e+117
-5.7645904e+117
-5.7775821e+117
-5.7910834e+117
-4.9339518e+117
-4.9460518e+117
-4.939423e+117
-5.144161e+117
-5.4579083e+117
-5.3482044e+117
-5.610131e+117
-5.144161e+117
-5.610131e+117
-5.610131e+117
-5.6958127e+117
-5.7357836e+117
-5.792558e+117
-5.7715703e+117
-5.6958127e+117
-5.6958127e+117
-5.792558e+117
-5.8567793e+117
-5.8242087e+117
-5.8242087e+117
-5.8765015e+117
-5.9095464e+117
-5.896698e+117
-5.8813944e+117
-5.8716653e+117
-5.8665987e+117
-5.9318014e+117
-5.9397607e+117
-5.9445975e+117
-5.9489879e+117
-5.9683572e+117
-5.9532239e+117
-5.9795973e+117
-5.9839333e+117
-6.0043268e+117
-5.9955512e+117
-6.0084421e+117
-6.0043268e+117
-6.0122843e+117
-6.0193137e+117
-6.0197054e+117
-6.0265387e+117
-6.0292242e+117
-6.0281635e+117
-6.0171584e+117
-5.9911581e+117
-4.8724694e+117
-4.8635434e+117
-5.9372523e+117
-5.961064e+117
-4.9933211e+117
-4.9972349e+117
-4.9973156e+117
-5.0054435e+117
-5.120577e+117
-5.1270146e+117
-5.2065868e+117
-5.2096803e+117
-5.2557792e+117
-5.2022166e+117
-5.4812064e+117
-5.4756072e+117
-5.438592e+117
-5.4433547e+117
-5.4611558e+117
-5.4659141e+117
-5.4659141e+117
-5.468324e+117
-5.4433547e+117
-5.4456788e+117
-5.4520999e+117
-5.4565816e+117
-5.4869106e+117
-5.4930847e+117
-5.4993174e+117
-5.5059819e+117
-5.5125347e+117
-5.5194191e+117
-5.526052e+117
-5.5329201e+117
-5.4142729e+117
-5.4094833e+117
-5.3975882e+117
-5.3975882e+117
-5.4032681e+117
-5.4032681e+117
-5.4189931e+117
-5.4239139e+117
-5.4287739e+117
-5.4337579e+117
-5.322244e+117
-5.2913898e+117
-5.2557792e+117
-5.3612488e+117
-5.3450672e+117
-5.3705047e+117
-5.3787552e+117
-5.3855751e+117
-5.3920384e+117
-5.586573e+117
-5.5945203e+117
-5.6026079e+117
-5.5599985e+117
-5.5599985e+117
-5.5785081e+117
-5.5688603e+117
-5.5448049e+117
-5.5354617e+117
-5.5421144e+117
-5.5329923e+117
-5.5516044e+117
-5.6136997e+117
-5.6026079e+117
-5.6222937e+117
-5.631064e+117
-5.6400991e+117
-5.6493647e+117
-5.6589455e+117
-5.668745e+117
-5.6891584e+117
-5.6891584e+117
-5.6788395e+117
-5.7129421e+117
-5.7022697e+117
-5.7350196e+117
-5.7238236e+117
-5.7350196e+117
-5.7375788e+117
-5.8720868e+117
-5.8924008e+117
-5.9140883e+117
-5.8055567e+117
-5.8203827e+117
-5.8365367e+117
-5.8534202e+117
-5.7520085e+117
-5.7646536e+117
-5.7776338e+117
-5.7911149e+117
-4.9339518e+117
-4.9339518e+117
-5.1215797e+117
-5.2405869e+117
-5.5159739e+117
-5.4107244e+117
-5.5159739e+117
-5.6379481e+117
-5.6776762e+117
-5.7131809e+117
-5.7520466e+117
-5.7316502e+117
-5.7893348e+117
-5.801989e+117
-5.7780171e+117
-5.7677234e+117
-5.7044119e+117
-5.7131809e+117
-5.7044119e+117
-5.801989e+117
-5.8072693e+117
-5.8665987e+117
-5.8548296e+117
-5.8228818e+117
-5.8210186e+117
-5.8338728e+117
-5.8389671e+117
-5.8338728e+117
-5.879252e+117
-5.9153665e+117
-5.9013438e+117
-5.8840496e+117
-5.8743948e+117
-5.8695981e+117
-5.9284868e+117
-5.9397607e+117
-5.9397607e+117
-5.9445975e+117
-5.9489879e+117
-5.9532239e+117
-5.9723816e+117
-5.9878314e+117
-5.9958565e+117
-5.9958565e+117
-5.9998934e+117
-6.0037467e+117
-6.0141049e+117
-6.0197054e+117
-6.0189352e+117
-6.0262598e+117
-6.028826e+117
-5.0075867e+117
-5.0191169e+117
-5.9369569e+117
-5.0904326e+117
-5.1119884e+117
-5.1032008e+117
-5.1103411e+117
-5.1148063e+117
-5.1270146e+117
-5.2096803e+117
-5.2096803e+117
-5.2557792e+117
-5.4820505e+117
-5.4766855e+117
-5.4404606e+117
-5.4449202e+117
-5.4623607e+117
-5.4669113e+117
-5.4669113e+117
-5.4692626e+117
-5.4449202e+117
-5.4472035e+117
-5.4535745e+117
-5.4578889e+117
-5.4877614e+117
-5.4937328e+117
-5.5000233e+117
-5.5064477e+117
-5.5130778e+117
-5.519718e+117
-5.526423e+117
-5.5329923e+117
-5.4174798e+117
-5.412947e+117
-5.4016829e+117
-5.4016829e+117
-5.4068332e+117
-5.4068332e+117
-5.4121941e+117
-5.4164224e+117
-5.4219734e+117
-5.4208119e+117
-5.4265935e+117
-5.4253085e+117
-5.4312042e+117
-5.4299042e+117
-5.4358653e+117
-5.3407353e+117
-5.3136683e+117
-5.270413e+117
-5.3709624e+117
-5.3582691e+117
-5.3783941e+117
-5.3850283e+117
-5.3910311e+117
-5.3966467e+117
-5.5871638e+117
-5.5948386e+117
-5.6027852e+117
-5.5592146e+117
-5.5688603e+117
-5.5592146e+117
-5.5797186e+117
-5.570482e+117
-5.5421144e+117
-5.5421144e+117
-5.5330082e+117
-5.551544e+117
-5.6138099e+117
-5.6027852e+117
-5.6223515e+117
-5.6311073e+117
-5.6401243e+117
-5.6493852e+117
-5.6589556e+117
-5.6687595e+117
-5.6891587e+117
-5.6891587e+117
-5.6788435e+117
-5.7129312e+117
-5.7022539e+117
-5.7349551e+117
-5.7237925e+117
-5.7349551e+117
-5.7375056e+117
-5.8721576e+117
-5.8924717e+117
-5.9140007e+117
-5.8056506e+117
-5.8204132e+117
-5.8366783e+117
-5.8534669e+117
-5.7519604e+117
-5.7646826e+117
-5.7776698e+117
-5.791137e+117
-5.1583386e+117
-5.2909151e+117
-5.5430907e+117
-5.4492278e+117
-5.4999197e+117
-5.5430907e+117
-5.5430907e+117
-5.5430907e+117
-5.5987505e+117
-5.4999197e+117
-5.6428663e+117
-5.6598681e+117
-5.677283e+117
-5.6959048e+117
-5.7098362e+117
-5.7194199e+117
-5.7582727e+117
-5.7478248e+117
-5.7284018e+117
-5.7379276e+117
-5.7954367e+117
-5.8055494e+117
-5.7777866e+117
-5.7683512e+117
-5.7098362e+117
-5.71048e+117
-5.714777e+117
-5.7013416e+117
-5.7013416e+117
-5.7067137e+117
-5.8055494e+117
-5.8695981e+117
-5.8578743e+117
-5.8210186e+117
-5.8210186e+117
-5.836674e+117
-5.8417111e+117
-5.836674e+117
-5.9180172e+117
-5.9069778e+117
-5.8949958e+117
-5.9292166e+117
-5.9627283e+117
-5.9340544e+117
-5.9292166e+117
-5.9429036e+117
-5.9386225e+117
-5.973448e+117
-5.9894851e+117
-5.9820594e+117
-5.995352e+117
-5.995352e+117
-5.9993779e+117
-6.003229e+117
-6.0130272e+117
-6.0189352e+117
-6.0185311e+117
-5.1683925e+117
-5.2102621e+117
-5.172936e+117
-5.1944553e+117
-5.1992565e+117
-5.1965739e+117
-5.2087599e+117
-5.2087599e+117
-5.270413e+117
-5.482285e+117
-5.4769542e+117
-5.440954e+117
-5.4453291e+117
-5.4626636e+117
-5.4671784e+117
-5.4671784e+117
-5.469531e+117
-5.4453291e+117
-5.447616e+117
-5.4539466e+117
-5.4582314e+117
-5.4879583e+117
-5.4939123e+117
-5.5001724e+117
-5.5065835e+117
-5.5131769e+117
-5.5198075e+117
-5.5264646e+117
-5.5330082e+117
-5.4028603e+117
-5.4028603e+117
-5.4078736e+117
-5.4164224e+117
-5.4121941e+117
-5.4208119e+117
-5.4253085e+117
-5.4299042e+117
-5.4299042e+117
-5.4364365e+117
-5.349471e+117
-5.3318573e+117
-5.3010211e+117
-5.374229e+117
-5.3758705e+117
-5.3674279e+117
-5.3639732e+117
-5.3809097e+117
-5.3869865e+117
-5.3926721e+117
-5.3979868e+117
-5.5874896e+117
-5.5949839e+117
-5.6028476e+117
-5.5594535e+117
-5.570482e+117
-5.5594535e+117
-5.5804775e+117
-5.5714235e+117
-5.5420459e+117
-5.5420459e+117
-5.5329786e+117
-5.5514743e+117
-5.6138368e+117
-5.6028476e+117
-5.6223563e+117
-5.6311067e+117
-5.6401148e+117
-5.6493733e+117
-5.6589447e+117
-5.6687518e+117
-5.6891462e+117
-5.6891462e+117
-5.6788319e+117
-5.7129142e+117
-5.7022354e+117
-5.7348475e+117
-5.7237473e+117
-5.7348475e+117
-5.7373957e+117
-5.2444093e+117
-5.3159676e+117
-5.3899108e+117
-5.5086487e+117
-5.4890084e+117
-5.5256418e+117
-5.58435e+117
-5.5679267e+117
-5.58435e+117
-5.6073417e+117
-5.6076769e+117
-5.6032186e+117
-5.6246827e+117
-5.5256418e+117
-5.5256418e+117
-5.5493251e+117
-5.6425414e+117
-5.651345e+117
-5.6594058e+117
-5.6675293e+117
-5.6756542e+117
-5.6841439e+117
-5.693094e+117
-5.7024423e+117
-5.7107117e+117
-5.7202867e+117
-5.7589627e+117
-5.7486483e+117
-5.7293444e+117
-5.7386018e+117
-5.7885138e+117
-5.7988071e+117
-5.8076088e+117
-5.7768315e+117
-5.7680174e+117
-5.7107117e+117
-5.7111254e+117
-5.7155453e+117
-5.7021768e+117
-5.7021768e+117
-5.7072495e+117
-5.8076088e+117
-5.8697379e+117
-5.8697379e+117
-5.8697379e+117
-5.8590976e+117
-5.8744946e+117
-5.8793298e+117
-5.8224235e+117
-5.8224235e+117
-5.8378218e+117
-5.8427972e+117
-5.8378218e+117
-5.8949958e+117
-5.9198974e+117
-5.8949958e+117
-5.9099731e+117
-5.9288209e+117
-5.9563074e+117
-5.9650217e+117
-5.9336584e+117
-5.9288209e+117
-5.9425081e+117
-5.9382289e+117
-5.9731721e+117
-5.989216e+117
-5.9811141e+117
-5.9951e+117
-5.9951e+117
-5.9991106e+117
-6.0029727e+117
-6.0125212e+117
-6.0185311e+117
-5.2968815e+117
-5.2864043e+117
-5.2283477e+117
-5.2550481e+117
-5.2637027e+117
-5.2632498e+117
-5.3010211e+117
-5.2632498e+117
-5.4823707e+117
-5.4770511e+117
-5.441139e+117
-5.445482e+117
-5.4627751e+117
-5.4672712e+117
-5.4672712e+117
-5.4696265e+117
-5.445482e+117
-5.4477715e+117
-5.4540841e+117
-5.4583589e+117
-5.4880266e+117
-5.4939743e+117
-5.5002223e+117
-5.5066272e+117
-5.5131975e+117
-5.5198234e+117
-5.5264551e+117
-5.5329786e+117
-5.4032873e+117
-5.4032873e+117
-5.4082579e+117
-5.4168003e+117
-5.4125584e+117
-5.4211649e+117
-5.425629e+117
-5.4301862e+117
-5.4301862e+117
-5.4366498e+117
-5.3521143e+117
-5.3383209e+117
-5.3148061e+117
-5.3758705e+117
-5.3758705e+117
-5.3710866e+117
-5.3732321e+117
-5.3656101e+117
-5.3677936e+117
-5.3817712e+117
-5.3876526e+117
-5.3932354e+117
-5.398464e+117
-5.5596336e+117
-5.5714235e+117
-5.5596336e+117
-5.3974831e+117
-5.3500569e+117
-5.4333985e+117
-5.4634049e+117
-5.5386257e+117
-5.5268656e+117
-5.590486e+117
-5.5964847e+117
-5.5778999e+117
-5.584206e+117
-5.6076769e+117
-5.6032186e+117
-5.6032186e+117
-5.6177505e+117
-5.6252257e+117
-5.6330611e+117
-5.5386257e+117
-5.5562453e+117
-5.5609743e+117
-5.5696286e+117
-5.6420019e+117
-5.6536045e+117
-5.6613485e+117
-5.6689172e+117
-5.6768207e+117
-5.6850699e+117
-5.6941353e+117
-5.7032877e+117
-5.7107884e+117
-5.7205249e+117
-5.7590164e+117
-5.7486216e+117
-5.7293909e+117
-5.738616e+117
-5.7868072e+117
-5.7990435e+117
-5.8082395e+117
-5.7762232e+117
-5.767961e+117
-5.7107884e+117
-5.7112007e+117
-5.7156485e+117
-5.7022356e+117
-5.7022356e+117
-5.7072312e+117
-5.8082395e+117
-5.859316e+117
-5.8737511e+117
-5.859316e+117
-5.8737511e+117
-5.8785835e+117
-5.8228309e+117
-5.8228309e+117
-5.8380688e+117
-5.8430267e+117
-5.8380688e+117
-5.8933702e+117
-5.9202705e+117
-5.8933702e+117
-5.9098397e+117
-5.9288111e+117
-5.9550287e+117
-5.9647627e+117
-5.933641e+117
-5.9288111e+117
-5.9424847e+117
-5.9382106e+117
-5.9731959e+117
-5.9891834e+117
-5.9808475e+117
-5.3941492e+117
-5.338287e+117
-5.3886109e+117
-5.3118696e+117
-5.348028e+117
-5.2855378e+117
-5.2912273e+117
-5.3430165e+117
-5.3238334e+117
-5.286906e+117
-5.3148061e+117
-5.286906e+117
-5.3539194e+117
-5.3424775e+117
-5.3677936e+117
-5.3265649e+117
-5.3677936e+117
-5.3732321e+117
-5.4440199e+117
-5.4815938e+117
-5.5068081e+117
-5.5542333e+117
-5.5514581e+117
-5.5483049e+117
-5.5433941e+117
-5.5959402e+117
-5.601001e+117
-5.5864025e+117
-5.5910268e+117
-5.610866e+117
-5.6066636e+117
-5.6066636e+117
-5.6207716e+117
-5.6276691e+117
-5.6345167e+117
-5.5542333e+117
-5.5579949e+117
-5.571507e+117
-5.5693382e+117
-5.564653e+117
-5.5797789e+117
-5.6411261e+117
-5.647507e+117
-5.6548793e+117
-5.6621505e+117
-5.6693942e+117
-5.677046e+117
-5.6852746e+117
-5.6943304e+117
-5.7035199e+117
-5.7108932e+117
-5.7209069e+117
-5.7593496e+117
-5.7486649e+117
-5.7295519e+117
-5.7386884e+117
-5.7860703e+117
-5.7994067e+117
-5.8088429e+117
-5.7108932e+117
-5.7112827e+117
-5.7157734e+117
-5.7023553e+117
-5.7023553e+117
-5.7073225e+117
-5.8088429e+117
-5.8596716e+117
-5.8734264e+117
-5.8596716e+117
-5.8734264e+117
-5.8782582e+117
-5.8231343e+117
-5.8231343e+117
-5.8381736e+117
-5.8431249e+117
-5.8381736e+117
-5.8927675e+117
-5.9208371e+117
-5.8927675e+117
-5.909887e+117
-5.9546118e+117
-5.9646929e+117
-5.4316855e+117
-5.3741991e+117
-5.3954879e+117
-5.4173589e+117
-5.4370379e+117
-5.3813365e+117
-5.3040883e+117
-5.31432e+117
-5.3555993e+117
-5.3400303e+117
-5.2899873e+117
-5.3265649e+117
-5.2899873e+117
-5.4644404e+117
-5.4901627e+117
-5.5188679e+117
-5.5071971e+117
-5.5280801e+117
-5.5353664e+117
-5.5572399e+117
-5.5549672e+117
-5.5528123e+117
-5.5497767e+117
-5.5975645e+117
-5.6022829e+117
-5.5890298e+117
-5.5931784e+117
-5.6116926e+117
-5.6075697e+117
-5.6075697e+117
-5.6214938e+117
-5.6283128e+117
-5.6345567e+117
-5.5572399e+117
-5.560822e+117
-5.5761362e+117
-5.5715508e+117
-5.5672993e+117
-5.5819768e+117
-5.6413013e+117
-5.6491028e+117
-5.6557516e+117
-5.6628024e+117
-5.6697744e+117
-5.6772094e+117
-5.6853903e+117
-5.6945124e+117
-5.7038275e+117
-5.4843687e+117
-5.4731894e+117
-5.4546548e+117
-5.4037488e+117
-5.4196181e+117
-5.4343175e+117
-5.4516114e+117
-5.3993604e+117
-5.3136856e+117
-5.3256717e+117
-5.3664729e+117
-5.3859431e+117
-5.3483111e+117
-5.5097457e+117
-5.5346851e+117
-5.5262446e+117
-5.5411741e+117
-5.5456664e+117
-5.5580686e+117
-5.5560211e+117
-5.5543562e+117
-5.5529084e+117
-5.5525018e+117
-5.5980244e+117
-5.602621e+117
-5.5857121e+117
-5.59002e+117
-5.5938473e+117
-5.6119008e+117
-5.6077912e+117
-5.6077912e+117
-5.62165e+117
-5.628558e+117
-5.6345709e+117
-5.5580686e+117
-5.5616271e+117
-5.5771254e+117
-5.572249e+117
-5.567993e+117
-5.5820889e+117
-5.6415143e+117
-5.6500479e+117
-5.4945815e+117
-5.4803342e+117
-5.4650369e+117
-5.4154625e+117
-5.4294473e+117
-5.4425786e+117
-5.4488833e+117
-5.4574772e+117
-5.4067792e+117
-5.3319138e+117
-5.3734931e+117
-5.396897e+117
-5.3526914e+117
-5.5139436e+117
-5.5400835e+117
-5.533005e+117
-5.5451673e+117
-5.5490873e+117
-5.5584968e+117
-5.556643e+117
-5.5553701e+117
-5.554367e+117
-5.5532497e+117
-5.5982391e+117
-5.602753e+117
-5.5869211e+117
-5.5906176e+117
-5.5941982e+117
-5.611959e+117
-5.6078515e+117
-5.6078515e+117
-5.6216372e+117
-5.6288297e+117
-5.6346526e+117
-5.5584968e+117
-5.5620476e+117
-5.5774126e+117
-5.5726681e+117
-5.5682901e+117
-5.5823445e+117
-5.4982468e+117
-5.4830717e+117
-5.4687465e+117
-5.4198529e+117
-5.4329e+117
-5.4459358e+117
-5.4550828e+117
-5.4606361e+117
-5.4109582e+117
-5.3771143e+117
-5.4022118e+117
-5.5142446e+117
-5.5259604e+117
-5.5418602e+117
-5.5355701e+117
-5.5462738e+117
-5.5499884e+117
-5.5551298e+117
-5.5536008e+117
-5.5876075e+117
-5.5776798e+117
-5.5826009e+117
-5.4996207e+117
-5.4844668e+117
-5.4706772e+117
-5.4222057e+117
-5.4344881e+117
-5.4476324e+117
-5.4579254e+117
-5.5156177e+117
-5.5295923e+117
-5.5429668e+117
-5.5370667e+117
-5.5468599e+117
-5.550394e+117
-5.5002932e+117
-5.5164313e+117
-5.5313912e+117
)
;
}
procBoundary0to4
{
type processor;
value nonuniform List<scalar>
129
(
-6.0970845e+117
-6.0818366e+117
-6.0694063e+117
-6.0550854e+117
-6.066899e+117
-6.0822184e+117
-5.2412423e+117
-5.2533247e+117
-6.0223647e+117
-6.040289e+117
-6.0403957e+117
-6.0547646e+117
-6.065924e+117
-6.0824161e+117
-5.2131843e+117
-5.2283225e+117
-5.0168251e+117
-5.026228e+117
-4.7684243e+117
-4.7741344e+117
-6.0025477e+117
-5.9799023e+117
-6.004742e+117
-6.0244544e+117
-6.037343e+117
-6.0523397e+117
-6.0673992e+117
-6.0846414e+117
-4.7566152e+117
-4.9951552e+117
-5.0073524e+117
-4.7625087e+117
-4.4887892e+117
-5.9595368e+117
-5.9834302e+117
-5.9799023e+117
-5.9981862e+117
-6.0197229e+117
-6.0388077e+117
-6.0535297e+117
-6.0675371e+117
-6.0847828e+117
-4.7520055e+117
-4.986419e+117
-4.4840335e+117
-5.7204785e+117
-5.6987482e+117
-5.9522073e+117
-5.9595368e+117
-5.97593e+117
-5.9986776e+117
-6.0205309e+117
-6.0388912e+117
-6.0535569e+117
-4.4815103e+117
-5.6771644e+117
-5.6834025e+117
-5.7068989e+117
-5.9521254e+117
-5.9522073e+117
-5.9757735e+117
-5.9987412e+117
-6.0205607e+117
-4.4815103e+117
-5.6771644e+117
-5.4250192e+117
-5.6771644e+117
-5.6784671e+117
-5.6834025e+117
-5.703422e+117
-5.9521428e+117
-5.9521254e+117
-5.975807e+117
-4.4549616e+117
-4.481012e+117
-4.481012e+117
-5.4151208e+117
-5.4250192e+117
-5.4340946e+117
-5.6787616e+117
-5.6784671e+117
-5.7044174e+117
-5.9521428e+117
-4.4551016e+117
-4.4546029e+117
-4.4546029e+117
-4.6050835e+117
-4.7573057e+117
-4.7250645e+117
-5.4136192e+117
-5.4151208e+117
-5.1978443e+117
-5.4335476e+117
-5.6788101e+117
-5.6787616e+117
-5.7044942e+117
-4.4716225e+117
-4.47074e+117
-4.47074e+117
-4.6197011e+117
-4.7773412e+117
-4.976352e+117
-5.4137575e+117
-5.4136192e+117
-5.1956059e+117
-5.434672e+117
-5.6788101e+117
-4.4735185e+117
-4.472407e+117
-4.472407e+117
-4.7946761e+117
-4.6223126e+117
-4.9826872e+117
-5.413728e+117
-5.4137575e+117
-5.1981843e+117
-5.4347258e+117
-4.4736611e+117
-4.4725404e+117
-4.4725404e+117
-4.7972649e+117
-4.9909395e+117
-4.6225693e+117
-5.413728e+117
-5.1991433e+117
-4.7975282e+117
-4.9932058e+117
-5.1991635e+117
-4.9933678e+117
)
;
}
procBoundary0to5
{
type processor;
value nonuniform List<scalar>
77
(
-6.6578217e+117
-6.1802156e+117
-6.6578217e+117
-6.1802156e+117
-6.6963504e+117
-6.5906752e+117
-6.1802156e+117
-6.1802156e+117
-6.1802156e+117
-6.1802156e+117
-6.5906752e+117
-6.1154739e+117
-6.6963504e+117
-6.6379393e+117
-6.5133054e+117
-5.7569736e+117
-6.1154739e+117
-6.1154739e+117
-6.1154739e+117
-6.1154739e+117
-6.1154739e+117
-5.8315684e+117
-5.8593722e+117
-6.5133054e+117
-6.5329123e+117
-6.5067635e+117
-6.6379393e+117
-6.5622266e+117
-5.7100011e+117
-5.7100011e+117
-5.4795069e+117
-5.4945872e+117
-5.6275946e+117
-5.6275946e+117
-5.8315684e+117
-5.8593722e+117
-5.6516639e+117
-5.6516639e+117
-6.2709814e+117
-6.238653e+117
-6.0555226e+117
-5.7768897e+117
-5.8059202e+117
-6.276168e+117
-6.2527523e+117
-6.4798784e+117
-6.5622266e+117
-6.4472427e+117
-5.8498796e+117
-5.636256e+117
-5.4637012e+117
-5.4468213e+117
-5.5829202e+117
-5.5829202e+117
-5.5829202e+117
-5.7768897e+117
-5.7768897e+117
-5.8059202e+117
-5.6057047e+117
-5.6057047e+117
-6.2259722e+117
-6.1957557e+117
-6.276168e+117
-6.2527523e+117
-6.3742239e+117
-6.412574e+117
-5.4298235e+117
-6.1310996e+117
-6.1639043e+117
-6.2259722e+117
-6.1957557e+117
-6.1310996e+117
-6.1639043e+117
-5.9993757e+117
-5.9742649e+117
-5.9201217e+117
-5.948031e+117
)
;
}
procBoundary0to6
{
type processor;
value nonuniform List<scalar>
17
(
-6.8030922e+117
-6.8030922e+117
-6.8403215e+117
-6.4935749e+117
-6.5073704e+117
-5.8456492e+117
-6.2644682e+117
-6.2515944e+117
-6.8403215e+117
-5.9416719e+117
-5.9451536e+117
-6.649418e+117
-6.6327183e+117
-6.3759606e+117
-6.3606923e+117
-6.3759606e+117
-6.3606923e+117
)
;
}
procBoundary0to7
{
type processor;
value nonuniform List<scalar>
45
(
-6.7707999e+117
-6.7707999e+117
-6.8010711e+117
-6.7230198e+117
-6.4632483e+117
-6.4800756e+117
-5.8292946e+117
-6.2384361e+117
-6.2227847e+117
-6.7230198e+117
-6.8010711e+117
-6.7589302e+117
-6.4442009e+117
-6.4201264e+117
-5.7994511e+117
-6.184511e+117
-6.2054244e+117
-5.9196418e+117
-5.9335493e+117
-6.6132321e+117
-6.5947139e+117
-6.7589302e+117
-5.8821906e+117
-5.9040723e+117
-6.3291812e+117
-6.3452233e+117
-6.5771166e+117
-6.5568281e+117
-5.3591122e+117
-5.671312e+117
-5.6894978e+117
-5.9040723e+117
-5.8821906e+117
-6.3139711e+117
-6.2957249e+117
-6.3452233e+117
-6.3291812e+117
-5.2576358e+117
-5.2576358e+117
-5.4667839e+117
-5.4667839e+117
-5.480194e+117
-5.266563e+117
-6.2957249e+117
-6.3139711e+117
)
;
}
procBoundary0to8
{
type processor;
value nonuniform List<scalar>
122
(
-7.6310622e+117
-7.6170449e+117
-7.1600879e+117
-8.1849959e+117
-7.8128486e+117
-7.672159e+117
-7.4465306e+117
-7.5693903e+117
-7.2070141e+117
-8.0106589e+117
-7.8367454e+117
-7.2429845e+117
-7.0377226e+117
-8.3851689e+117
-7.2451868e+117
-7.6628808e+117
-7.689174e+117
-7.4651934e+117
-7.5767418e+117
-7.2323229e+117
-7.6853883e+117
-7.8523783e+117
-7.9164826e+117
-7.1538207e+117
-7.2495464e+117
-7.0405417e+117
-1.8923424e+117
-7.0745699e+117
-6.1483724e+117
-7.7172935e+117
-7.7036667e+117
-7.4769417e+117
-7.2540874e+117
-7.4814324e+117
-7.5431258e+117
-7.4706697e+117
-7.4832742e+117
-7.1094132e+117
-7.660993e+117
-1.8108078e+117
-6.7288434e+117
-7.258434e+117
-7.0481594e+117
-4.173973e+116
-8.0286404e+117
-6.688263e+117
-6.0621756e+117
-7.7736823e+117
-7.7048987e+117
-7.4783722e+117
-3.0232816e+116
-6.9476204e+117
-7.1557738e+117
-7.3296859e+117
-7.4554655e+117
-7.4574796e+117
-7.4148577e+117
-6.9026383e+117
-6.8117437e+117
-6.4016178e+117
-1.9074174e+117
-4.6632577e+116
-6.7286616e+117
-7.2594308e+117
-7.0489179e+117
-8.1936954e+117
-1.5739138e+117
-6.5136266e+117
-7.7751214e+117
-1.13214e+117
-2.6380431e+116
-6.9476204e+117
-7.0007755e+117
-7.0001661e+117
-7.1503075e+117
-7.3138023e+117
-7.4489473e+117
-7.2200719e+117
-7.4263188e+117
-7.1125492e+117
-7.8518421e+117
-6.9989088e+117
-6.3475406e+117
-5.5009629e+116
-5.3153473e+116
-1.0669224e+117
-6.4943062e+117
-6.8195821e+117
-7.0007755e+117
-6.991385e+117
-6.9901654e+117
-7.1544754e+117
-7.3224849e+117
-7.4488338e+117
-7.0338251e+117
-6.9535437e+117
-7.4239382e+117
-7.5916143e+117
-8.0182786e+117
-7.0304846e+117
-6.8102611e+117
-6.991385e+117
-6.9889092e+117
-6.9915096e+117
-7.1550225e+117
-7.3234311e+117
-7.0155266e+117
-6.3286309e+117
-6.8060717e+117
-7.6487122e+117
-6.8099532e+117
-6.9889092e+117
-6.9889423e+117
-6.9917412e+117
-6.2538868e+117
-6.5825175e+117
-6.7944121e+117
-6.8100495e+117
-6.9889423e+117
-6.5389645e+117
-6.601473e+117
-6.5519259e+117
)
;
}
procBoundary0to12
{
type processor;
value nonuniform List<scalar> 2(-6.8906243e+117 -6.9500196e+117);
}
procBoundary0to14
{
type processor;
value nonuniform List<scalar>
101
(
-6.7766077e+117
-6.7799793e+117
-6.8418968e+117
-6.8417937e+117
-6.8926861e+117
-6.7630131e+117
-6.835608e+117
-6.8404857e+117
-6.836921e+117
-6.836317e+117
-6.9426446e+117
-6.8714945e+117
-6.7630131e+117
-6.8133419e+117
-6.8260975e+117
-6.8255514e+117
-6.8313563e+117
-6.8385608e+117
-6.8382337e+117
-6.9426446e+117
-6.9115573e+117
-6.8386054e+117
-6.8386054e+117
-6.3106065e+117
-6.5994102e+117
-6.8133419e+117
-6.8013971e+117
-6.8150322e+117
-6.8277027e+117
-6.8315155e+117
-6.8388441e+117
-6.8385465e+117
-6.680394e+117
-6.6917303e+117
-6.9115573e+117
-6.8785365e+117
-6.3106065e+117
-6.3808679e+117
-6.387053e+117
-6.5934516e+117
-6.8013971e+117
-6.8040163e+117
-6.8178095e+117
-6.8280337e+117
-6.8317942e+117
-6.680394e+117
-6.7178016e+117
-6.701905e+117
-6.8785365e+117
-6.3808679e+117
-6.1627779e+117
-6.3723162e+117
-6.3790871e+117
-6.5951423e+117
-6.8040163e+117
-6.8043971e+117
-6.8181939e+117
-6.4365787e+117
-6.4214111e+117
-6.683671e+117
-6.666394e+117
-6.3723162e+117
-6.1604127e+117
-6.3722868e+117
-6.3794522e+117
-6.5953346e+117
-6.8043971e+117
-6.4062773e+117
-6.3905586e+117
-5.9414899e+117
-5.9417797e+117
-6.3722868e+117
-6.160532e+117
-6.3722795e+117
-6.3794803e+117
-6.4062773e+117
-6.3905586e+117
-5.9161424e+117
-5.9335107e+117
-5.9426185e+117
-5.9428812e+117
-6.3722795e+117
-6.1605013e+117
-5.7033344e+117
-5.9161424e+117
-5.9172768e+117
-5.9353117e+117
-5.9426447e+117
-5.9429207e+117
-5.2807002e+117
-5.4877178e+117
-5.7000696e+117
-5.9172768e+117
-5.9173253e+117
-5.9354054e+117
-5.2821876e+117
-5.4868537e+117
-5.6998828e+117
-5.9173253e+117
-5.282322e+117
-5.4868025e+117
)
;
}
procBoundary0to15
{
type processor;
value nonuniform List<scalar>
40
(
-6.6433702e+117
-6.6287463e+117
-6.5964987e+117
-6.6161942e+117
-6.6287463e+117
-6.3749629e+117
-6.3925729e+117
-6.5823183e+117
-6.5964987e+117
-6.5997952e+117
-6.352884e+117
-6.3696558e+117
-6.3749629e+117
-6.5823183e+117
-6.581114e+117
-6.5997689e+117
-6.1243055e+117
-6.1106716e+117
-6.3535989e+117
-6.352884e+117
-6.3652216e+117
-6.581114e+117
-6.5809067e+117
-6.5996592e+117
-6.0957249e+117
-6.1090048e+117
-6.3508612e+117
-6.3535989e+117
-6.3654523e+117
-6.5809067e+117
-6.0980676e+117
-6.1117807e+117
-6.3507578e+117
-6.3508612e+117
-6.3655208e+117
-6.1000104e+117
-6.1155352e+117
-6.3507578e+117
-6.100158e+117
-6.115398e+117
)
;
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
02633f651e3c6ca12d4745eedc419bc381deae56 | 8645ba7368f2ba10893e1ff8962e9e2eedf5104d | /src/Core/Loaders/ImageLoader.cpp | a51a89666c2473b5707f6c07196b1a787e23ef81 | [
"Apache-2.0"
] | permissive | reubenlindroos/OmniPhotos | c4560d74fd1bb031cc5c953269b95153ea3716f1 | de62590edc9caf1cfbd1c833bb9176993a10a579 | refs/heads/main | 2023-05-13T19:21:49.495691 | 2021-06-07T10:31:55 | 2021-06-07T10:31:55 | 344,496,849 | 1 | 0 | Apache-2.0 | 2021-03-04T14:10:47 | 2021-03-04T14:10:46 | null | UTF-8 | C++ | false | false | 17,626 | cpp | #include "ImageLoader.hpp"
#define STB_DXT_IMPLEMENTATION
#include "3rdParty/stb_dxt.h"
#include "Core/GL/GLFormats.hpp"
#include "Utils/ErrorChecking.hpp"
#include "Utils/Exceptions.hpp"
#include "Utils/Logger.hpp"
#include "Utils/Timer.hpp"
#include "Utils/Utils.hpp"
#include "Utils/cvutils.hpp"
#ifdef _OPENMP
#include <omp.h>
#endif //_OPENMP
#include <iomanip>
// Initialise static member variable.
std::vector<std::string> ImageLoader::supportedTextureFormats;
ImageLoader::ImageLoader(std::vector<Camera*>* _cameras, bool _enableTextureCompression) :
Loader(_cameras),
enableTextureCompression(_enableTextureCompression)
{
// Query the supported compressed texture formats and store if DXT1/DXT5 is supported.
// Following the suggestion at https://www.khronos.org/opengl/wiki/Common_Mistakes,
// we do this just once, to call `glGetIntegerv` as little as possible, and store
// the result in the static variable `ImageLoader::supportedTextureFormats`.
if (enableTextureCompression && supportedTextureFormats.empty())
{
// Uncompressed textures are always supported.
supportedTextureFormats.push_back("GL_RGB");
// Check the graphics card's GL_COMPRESSED_RGBA_S3TC_DXT5/1_EXT support.
GLint numSupportedFormats = 0;
glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numSupportedFormats);
if (numSupportedFormats <= 0)
LOG(ERROR) << "Graphic card feature detection error.";
// List supported texture compression formats and save the one's we're interested in.
GLint* supportedFormatsList = new GLint[numSupportedFormats];
glGetIntegerv(GL_COMPRESSED_TEXTURE_FORMATS, supportedFormatsList);
for (int i = 0; i < numSupportedFormats; i++)
{
if (GL_COMPRESSED_RGBA_S3TC_DXT5_EXT == supportedFormatsList[i])
supportedTextureFormats.push_back("DXT5");
else if (GL_COMPRESSED_RGBA_S3TC_DXT1_EXT == supportedFormatsList[i])
supportedTextureFormats.push_back("DXT1");
else if (GL_COMPRESSED_RGB_S3TC_DXT1_NV == supportedFormatsList[i])
supportedTextureFormats.push_back("DXT1");
}
delete[] supportedFormatsList;
std::string msg;
for (auto& it : supportedTextureFormats)
msg = msg + " " + it;
VLOG(1) << "Current graphics card '" << glGetString(GL_RENDERER) << "' supports the following texture compression formats:" << msg;
}
}
ImageLoader::~ImageLoader()
{
releaseGPUMemory();
}
// @param image 4-channel RGBA image
// @param alphaEnable 0 is DXT1, 1 is DXT5
void compressTextureInPlace(cv::Mat& image, int alphaEnable)
{
if (image.channels() != 4)
{
LOG(ERROR) << "The DXT1/5 texture compression expects 4-channel RGBA input.";
return;
}
// Note the DTX1 just uses half of the mat's memory.
cv::Mat imageDXT = cv::Mat::zeros(image.rows, image.cols, CV_8UC1);
if (!imageDXT.isContinuous())
LOG(ERROR) << "OpenCV failed to allocate contiguous memory.";
unsigned char* outputDataPtr = imageDXT.data;
const unsigned int blockWidth = image.cols / 4;
const unsigned int blockHeight = image.rows / 4;
// Block-wise DXT1/DXT5 image compression.
for (unsigned int j = 0; j < blockHeight; j++)
{
for (unsigned int i = 0; i < blockWidth; i++)
{
// Extract 4-by-4 pixel block.
unsigned char block[64];
for (int blockRowIndex = 0; blockRowIndex < 4; blockRowIndex++)
{
const int blockOffset = (j * 4 + blockRowIndex) * (blockWidth * 4 * 4) + i * 4 * 4;
memcpy(&block[blockRowIndex * 4 * 4], image.data + blockOffset, 4 * 4);
}
// Compress the block.
if (alphaEnable == 1) // DXT5
{
stb_compress_dxt_block(outputDataPtr, block, 1, STB_DXT_HIGHQUAL);
outputDataPtr += 16;
}
else if (alphaEnable == 0) // DXT1
{
stb_compress_dxt_block(outputDataPtr, block, 0, STB_DXT_HIGHQUAL);
outputDataPtr += 8;
}
}
}
image = imageDXT;
}
bool ImageLoader::checkTextureFormat()
{
if (enableTextureCompression == false && imageTextureFormat != "GL_RGB")
{
std::string msg = "Error: Texture compression is disabled but texture format is not GL_RGB.";
RUNTIME_EXCEPTION(msg);
}
if (imageTextureFormat != "GL_RGB" && imageTextureFormat != "DXT1" && imageTextureFormat != "DXT5")
{
std::string msg = "Error: Image texture format should be [GL_RGB|DXT1|DXT5].";
RUNTIME_EXCEPTION(msg);
}
// Check if the GPU supports the selected format and fall back to uncompressed if not.
if (imageTextureFormat == "DXT1" || imageTextureFormat == "DXT5")
{
// check the graphic card GL_COMPRESSED_RGBA_S3TC_DXT5_EXT support
bool textureCompressSupport = false;
for (int i = 0; i < ImageLoader::supportedTextureFormats.size(); i++)
{
if (imageTextureFormat == ImageLoader::supportedTextureFormats[i])
{
textureCompressSupport = true;
break;
}
}
if (textureCompressSupport)
{
VLOG(1) << "Current graphics card supports " << imageTextureFormat << " textures.";
}
else
{
LOG(WARNING) << imageTextureFormat << " texture compression is not supported. Disabling texture compression.";
imageTextureFormat = "GL_RGB";
}
}
// Check if image dimensions are supported (width/height a multiple of 4).
if (imageTextureFormat == "DXT1" || imageTextureFormat == "DXT5")
{
cv::Mat image = (*cameras)[0]->getImage();
if (image.rows % 4 != 0 || image.cols % 4 != 0)
{
LOG(WARNING) << "The RGB image size is " << image.size() << ". DXT1/5 texture compression requires the image size to be a multiple of 4. Disabling texture compression.";
imageTextureFormat = "GL_RGB";
}
}
return true;
}
bool ImageLoader::loadImages()
{
if (!checkTextureFormat())
return false;
ScopedTimer timer;
int imagesLoaded = 0;
std::vector<Camera*>& camera_list = *cameras;
#ifdef _OPENMP
#pragma omp parallel for shared(imagesLoaded) schedule(static, 1)
#endif
for (int i = 0; i < camera_list.size(); ++i)
{
LOG(INFO) << "Loading image (" << (i + 1) << " of " << camera_list.size() << ")";
Camera* camera = camera_list[i];
if (camera->loadImageWithOpenCV())
{
#ifdef _OPENMP
#pragma omp atomic
#endif
imagesLoaded++;
// Compress images if texture compression using DXT1/5 is enabled and supported.
if (imageTextureFormat == "DXT1" || imageTextureFormat == "DXT5")
{
LOG(INFO) << "Compressing texture image (" << (i + 1) << " of " << camera_list.size() << ")";
// The input for texture compression must be RGBA.
cv::Mat image = camera_list[i]->getImage();
if (image.channels() == 3)
cv::cvtColor(image, image, cv::COLOR_BGR2RGBA);
if (imageTextureFormat == "DXT1")
compressTextureInPlace(image, 0);
else if (imageTextureFormat == "DXT5")
compressTextureInPlace(image, 1);
camera_list[i]->setImage(image);
}
}
else
{
LOG(WARNING) << "Loading image '" << camera->imageName << "' failed.";
}
}
LOG(INFO) << "Loaded " << imagesLoaded << " images in " << std::fixed << std::setprecision(2) << timer.getElapsedSeconds() << "s";
return imagesLoaded == getImageCount();
}
void ImageLoader::loadTextures()
{
if (!loadImages())
LOG(ERROR) << "Failed to load all images";
}
void ImageLoader::initTextures()
{
ErrorChecking::checkGLError();
if (imageTexture)
{
imageTexture->layout.mem.elements = getImageCount();
}
else
{
GLMemoryLayout memLayout;
if (imageTextureFormat == "GL_RGB")
memLayout = GLMemoryLayout(getImageCount(), 3, "GL_BGR", "GL_UNSIGNED_BYTE", "GL_RGB8");
else if (imageTextureFormat == "DXT5")
memLayout = GLMemoryLayout(getImageCount(), 3, "GL_RGBA_DXT5", "", "GL_RGBA_DXT5");
else if (imageTextureFormat == "DXT1")
memLayout = GLMemoryLayout(getImageCount(), 3, "GL_RGBA_DXT1", "", "GL_RGBA_DXT1");
GLTextureLayout texLayout = GLTextureLayout(memLayout, getImageDims(), "set in app", -1);
imageTexture = new GLTexture(texLayout, "GL_TEXTURE_2D_ARRAY");
}
ErrorChecking::checkGLError();
//setting up image textures
if (!imageTexture->gl_ID)
{
glGenTextures(1, &imageTexture->gl_ID);
ErrorChecking::checkGLError();
}
glBindTexture(GL_TEXTURE_2D_ARRAY, imageTexture->gl_ID);
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
if (imageTextureFormat == "GL_RGB")
{
glTexImage3D(GL_TEXTURE_2D_ARRAY,
0, //level
getGLInternalFormat(imageTexture->layout.mem.internalFormat),
imageTexture->layout.resolution.x(),
imageTexture->layout.resolution.y(),
imageTexture->layout.mem.elements,
0, //border
getGLFormat(imageTexture->layout.mem.format),
getGLType(imageTexture->layout.mem.type),
NULL);
}
else if (imageTextureFormat == "DXT1" || imageTextureFormat == "DXT5")
{
// DXT1/DXT5 texture size unit is Byte
unsigned int dxtDataSize = 0;
if (imageTextureFormat == "DXT5")
dxtDataSize = ((imageTexture->layout.resolution.x() + 3) / 4) * ((imageTexture->layout.resolution.y() + 3) / 4) * 16;
else if (imageTextureFormat == "DXT1")
dxtDataSize = ((imageTexture->layout.resolution.x() + 3) / 4) * ((imageTexture->layout.resolution.y() + 3) / 4) * 8;
glCompressedTexImage3D(GL_TEXTURE_2D_ARRAY,
0, //level
getGLInternalFormat(imageTexture->layout.mem.internalFormat),
imageTexture->layout.resolution.x(), // block's width to image width
imageTexture->layout.resolution.y(), // block's height to image height
imageTexture->layout.mem.elements, // slice number
0,
dxtDataSize * imageTexture->layout.mem.elements,
NULL);
}
ErrorChecking::checkGLError();
if (projectionMatrixTexture)
{
projectionMatrixTexture->layout.mem.elements = getImageCount();
}
else
{
GLMemoryLayout memLayout = GLMemoryLayout(getImageCount(), 1, "GL_RED", "GL_FLOAT", "GL_R32F"); // these are settings from config.yaml
GLTextureLayout texLayout = GLTextureLayout(memLayout, Eigen::Vector2i(4, 4), "set in app", -1);
projectionMatrixTexture = new GLTexture(texLayout, "GL_TEXTURE_2D_ARRAY");
}
// Setting up projection matrices
if (!projectionMatrixTexture->gl_ID)
glGenTextures(1, &projectionMatrixTexture->gl_ID);
glBindTexture(GL_TEXTURE_2D_ARRAY, projectionMatrixTexture->gl_ID);
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexImage3D(GL_TEXTURE_2D_ARRAY,
0,
getGLInternalFormat(projectionMatrixTexture->layout.mem.internalFormat),
projectionMatrixTexture->layout.resolution.x(),
projectionMatrixTexture->layout.resolution.y(),
projectionMatrixTexture->layout.mem.elements,
0,
getGLFormat(projectionMatrixTexture->layout.mem.format),
getGLType(projectionMatrixTexture->layout.mem.type),
NULL);
ErrorChecking::checkGLError();
if (posViewTexture)
{
posViewTexture->layout.mem.elements = getImageCount();
posViewTexture->layout.resolution = Eigen::Vector2i(2, getImageCount());
}
else
{
GLMemoryLayout memLayout = GLMemoryLayout(getImageCount(), 3, "GL_RGB", "GL_FLOAT", "GL_RGB16F"); // these are settings from config.yaml
GLTextureLayout texLayout = GLTextureLayout(memLayout, Eigen::Vector2i(2, getImageCount()), "set in app", -1);
posViewTexture = new GLTexture(texLayout, "GL_TEXTURE_2D");
}
if (!posViewTexture->gl_ID)
glGenTextures(1, &posViewTexture->gl_ID);
glBindTexture(GL_TEXTURE_2D, posViewTexture->gl_ID);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexImage2D(GL_TEXTURE_2D,
0,
getGLInternalFormat(posViewTexture->layout.mem.internalFormat),
posViewTexture->layout.resolution.x(),
posViewTexture->layout.resolution.y(),
0,
getGLFormat(posViewTexture->layout.mem.format),
getGLType(posViewTexture->layout.mem.type),
NULL);
ErrorChecking::checkGLError();
}
void ImageLoader::fillTextures()
{
ScopedTimer timer;
for (int i = 0; i < getImageCount(); i++)
{
VLOG(1) << "Filling image texture (" << (i + 1) << " of " << getImageCount() << ")";
Camera* cam = cameras->at(i);
if (imageTextureFormat == "GL_RGB")
{
fillCameraTextureOpenCV(cam, i);
}
else if (imageTextureFormat == "DXT1" || imageTextureFormat == "DXT5")
{
cv::Mat img = cam->getImage();
if (img.empty())
{
LOG(WARNING) << "Image '" << cam->imageName << "' is empty. Skipping texture upload.";
return;
}
unsigned int dxtDataSize = 0;
if (imageTextureFormat == "DXT5")
dxtDataSize = ((img.cols + 3) / 4) * ((img.rows + 3) / 4) * 16;
else if (imageTextureFormat == "DXT1")
dxtDataSize = ((img.cols + 3) / 4) * ((img.rows + 3) / 4) * 8;
glBindTexture(GL_TEXTURE_2D_ARRAY, imageTexture->gl_ID);
glCompressedTexSubImage3D(GL_TEXTURE_2D_ARRAY,
0,
0,
0,
i,
imageTexture->layout.resolution.x(), // block's width to image width
imageTexture->layout.resolution.y(), // block's height to image height
1,
getGLFormat(imageTexture->layout.mem.format), // GL_COMPRESSED_RGBA_S3TC_DXT5_EXT
dxtDataSize,
img.data);
}
// projection matrices
fillProjectionTexture(cam, i);
}
//glBindTexture(GL_TEXTURE_2D_ARRAY, images);
//glGenerateMipmap(GL_TEXTURE_2D_ARRAY);
ErrorChecking::checkGLError();
LOG(INFO) << "Loaded images from CPU memory to GPU memory in "
<< std::fixed << std::setprecision(2) << timer.getElapsedSeconds() << "s";
updatePosViewTex();
}
void ImageLoader::releaseCPUMemory()
{
// Images are stored inside Camera instances and not released here.
}
void ImageLoader::releaseGPUMemory()
{
if (imageTexture)
{
delete imageTexture;
imageTexture = nullptr;
}
if (projectionMatrixTexture)
{
delete projectionMatrixTexture;
projectionMatrixTexture = nullptr;
}
if (posViewTexture)
{
delete posViewTexture;
posViewTexture = nullptr;
}
}
void ImageLoader::fillProjectionTexture(Camera* cam, int layer)
{
Eigen::Matrix4f mat = cam->getProjection44();
GLfloat* data = new GLfloat[4 * 4];
memset(data, 0, 4 * 4 * sizeof(GLfloat));
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
data[i * 4 + j + 0] = (GLfloat)mat(i, j);
glBindTexture(GL_TEXTURE_2D_ARRAY, projectionMatrixTexture->gl_ID);
glTexSubImage3D(GL_TEXTURE_2D_ARRAY,
0,
0, 0, layer,
4, 4, 1,
GL_RED,
GL_FLOAT,
data);
glBindTexture(GL_TEXTURE_2D_ARRAY, 0);
delete[] data;
ErrorChecking::checkGLError();
}
void ImageLoader::fillCameraTextureOpenCV(Camera* cam, int layer)
{
cv::Mat img = cam->getImage();
if (img.empty())
{
LOG(WARNING) << "Image '" << cam->imageName << "' is empty. Skipping texture upload.";
return;
}
uploadImageToOpenGLTexture(img, imageTexture, layer);
}
void ImageLoader::uploadImageToOpenGLTexture(cv::Mat& img, GLTexture* texture, int layer)
{
glBindTexture(GL_TEXTURE_2D_ARRAY, texture->gl_ID);
glTexSubImage3D(GL_TEXTURE_2D_ARRAY, 0, 0, 0, layer, img.cols, img.rows, 1,
getGLFormat(texture->layout.mem.format), // GL_RGB
getGLType(texture->layout.mem.type), // GL_UNSIGNED_CHAR
(uchar*)img.ptr());
//ErrorChecking::checkGLError();
}
void ImageLoader::updateProjectionTex()
{
LOG(INFO) << "Update projection matrix textures.";
int size = getImageCount();
for (int i = 0; i < size; i++)
{
Camera* cam = cameras->at(i);
fillProjectionTexture(cam, i);
//ErrorChecking::checkGLError();
}
}
void ImageLoader::setPosViewTex(int layer)
{
const Camera* cam = cameras->at(layer);
glTexSubImage2D(GL_TEXTURE_2D,
0,
0, layer,
1, 1,
GL_RGB, GL_FLOAT, cam->getCentre().data());
ErrorChecking::checkGLError();
glTexSubImage2D(GL_TEXTURE_2D,
0,
1, layer,
1, 1,
GL_RGB, GL_FLOAT, cam->getZDir().data());
ErrorChecking::checkGLError();
}
void ImageLoader::updateSinglePosViewTex(int layer)
{
glBindTexture(GL_TEXTURE_2D, posViewTexture->gl_ID);
setPosViewTex(layer);
glBindTexture(GL_TEXTURE_2D, 0);
}
void ImageLoader::updatePosViewTex()
{
VLOG(1) << "Updating position and viewing directions texture.";
glBindTexture(GL_TEXTURE_2D, posViewTexture->gl_ID);
//glTexStorage2D(GL_TEXTURE_2D, 1, formats.er->internalFormat, 2, size);
ErrorChecking::checkGLError();
int size = posViewTexture->layout.mem.elements;
for (int i = 0; i < size; i++)
{
setPosViewTex(i);
}
glBindTexture(GL_TEXTURE_2D, 0);
ErrorChecking::checkGLError();
}
| [
"[email protected]"
] | |
938f9a82a39478f648ab6df86c763899d8835d0e | 73c7fe37bf6af775cac65f58b81d2284dae117f2 | /LeetCode/62. Unique Paths.cpp | 1925a26fd6e553ad16ca4d0115ee944c80ffe08e | [] | no_license | atique7465/Competetive_programming | 9ad03427682270e889f751b8a8e2e9ab3b309be2 | 840b8b9133f5b993730ecde186ef4d4fdfca9c46 | refs/heads/master | 2023-08-03T15:16:47.582253 | 2023-07-25T04:07:01 | 2023-07-25T04:07:01 | 186,138,178 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 419 | cpp | class Solution {
vector<vector<int>>dp;
public:
int uniquePaths(int m, int n) {
dp.resize(101, vector<int>(101,-1));
return solve(0,0,m,n);
}
int solve(int i, int j, int m, int n){
if(i >= m || j >= n) return 0;
if(i == m-1 && j == n-1) return 1;
if(dp[i][j]!=-1) return dp[i][j];
return dp[i][j] = solve(i+1, j, m, n) + solve(i, j+1, m, n);
}
}; | [
"[email protected]"
] | |
7dd56b27ff673b9bb07a1e71ea707827b620ea68 | 707286e6928f194e8a711016269f9c8744fbbdfb | /binary_tree/main.cpp | 36450402f7d7c84aeaaa1f9248bc97207c8193bb | [] | no_license | DethleSS/projects_qt | acda22f88751bf1466d4266269c8c3f9bac1c46a | 955b4f636a018a3ec12f06de6e526369dc95b5b2 | refs/heads/master | 2020-04-28T19:22:35.154443 | 2019-05-15T11:35:19 | 2019-05-15T11:35:19 | 175,508,683 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 307 | cpp | #include <QCoreApplication>
#include "binary_tree.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
stu::Binary_tree b;
b.insert(4);
b.insert(2);
b.insert(6);
b.print_all();
//std::cout << b.size();
std::cout << b.contains(2);
return a.exec();
}
| [
"[email protected]"
] | |
0f21125e1cd3aa2e7b1b57cee99c9f08eae92738 | 94c536f8fbe0d43e848db623a78dc3735036e404 | /data structures/convex_hull_trick.cpp | b348eca6072bdf655da515f1c56fd8524104bb96 | [] | no_license | a-nogikh/competitive_programming_helpers | a9392b898566c936bd4ee99e28af7b185aa3bd0b | 15360c45336b6a3175de352d44cb554dbaf89521 | refs/heads/master | 2021-04-14T15:26:05.297983 | 2020-05-05T16:02:50 | 2020-05-05T16:02:50 | 249,241,758 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,273 | cpp | /*
Data structures to facilitate convex hull trick implementation.
*/
template<class CoordinateType = long long, class FractionType = long double>
class ConvexHullOptimization
{
template<class CoordinateType = long long, class FractionType = long double>
struct Line
{
CoordinateType slope, x0;
FractionType left, right;
FractionType intersection_point(const Line& other) const
{
// TODO: handle parallel lines case
return static_cast<FractionType>(x0 - other.x0) / static_cast<FractionType>( other.slope - slope );
}
CoordinateType evaluate(const CoordinateType x)
{
return x * slope + x0;
}
};
deque<Line<CoordinateType, FractionType>> lines;
FractionType leftmost, rightmost;
public:
ConvexHullOptimization(FractionType leftmost, FractionType rightmost) : leftmost(leftmost), rightmost(rightmost) {}
void add_left(CoordinateType slope, CoordinateType x0)
{
Line<CoordinateType, FractionType> candidate = { slope, x0, leftmost, rightmost };
while (lines.size() > 0 && lines.front().intersection_point(candidate) >= lines.front().right)
lines.pop_front();
if (lines.size() > 0)
{
candidate.right = lines.front().intersection_point(candidate);
lines.front().left = candidate.right;
}
lines.push_front(candidate);
}
void add_right(CoordinateType slope, CoordinateType x0)
{
// TODO: test!
Line<CoordinateType, FractionType> candidate = { slope, x0, leftmost, rightmost };
while (lines.size() > 0 && lines.back().intersection_point(candidate) <= lines.front().left)
lines.pop_back();
if (lines.size() > 0)
{
candidate.left = lines.front().intersection_point(candidate);
lines.back().right = candidate.left;
}
lines.push_back(candidate);
}
CoordinateType evaluate(CoordinateType x)
{
assert(lines.size() > 0);
auto it = partition_point(lines.begin(), lines.end(), [x](auto& line) {
return line.left <= static_cast<FractionType>(x);
});
it--;
return it->evaluate(x);
}
};
template<class CoordinateType = long long, class FractionType = long long>
class ConvexHullDynamic
{
using LineCoordinateType = typename CoordinateType;
using LineFractionType = typename FractionType;
struct Line
{
LineCoordinateType slope;
LineCoordinateType x0;
mutable LineFractionType left;
Line(LineCoordinateType slope, LineCoordinateType x0, LineFractionType left) : slope(slope), x0(x0), left(left) { }
LineFractionType intersect(const Line& other) const
{
if (is_integral<LineFractionType>::value)
{
auto nom = static_cast<LineCoordinateType>(x0 - other.x0), denom = static_cast<LineCoordinateType>(other.slope - slope);
return nom / denom - ((nom < 0) == (denom < 0) ? 0 : (nom % denom) != 0);
}
else
{
return static_cast<LineFractionType>(x0 - other.x0) / static_cast<LineFractionType>(other.slope - slope);
}
}
bool operator< (const Line& rhs) const
{
return slope < rhs.slope;
}
bool operator< (const LineCoordinateType& rhs) const
{
return left < rhs;
}
};
CoordinateType min_value;
set<Line, std::less<>> lines;
public:
ConvexHullDynamic(CoordinateType min_coord) : min_value(min_coord) {}
CoordinateType evaluate(CoordinateType x)
{
auto it = lines.lower_bound(x); it--;
return it->slope * x + it->x0;
}
void add_line(CoordinateType slope, CoordinateType x0)
{
Line candidate(slope, x0, min_value);
auto it = lines.lower_bound(candidate);
if (it != lines.end() && it->slope == slope)
{
if (it->x0 >= x0)
return;
lines.erase(it++);
}
decltype(it) new_it;
std::tie(new_it, std::ignore) = lines.insert(candidate);
auto prev_it = new_it;
while (it != lines.end())
{
auto new_left = it->intersect(candidate);
if (prev_it->left > it->left)
lines.erase(prev_it++);
else
prev_it++;
if (new_left <= it->left)
break;
it->left = new_left;
it++;
}
if (new_it != lines.begin())
{
it = std::prev(new_it);
while (true)
{
auto new_left = it->intersect(candidate);
if (new_left <= it->left)
{
if (it != lines.begin())
lines.erase(it--);
else
{
lines.erase(it);
break;
}
}
else
{
new_it->left = new_left;
return;
}
}
lines.erase(new_it);
}
}
};
| [
"[email protected]"
] | |
4d04705fe08b6ffe9920968832bc5bb147dda822 | 45dd5b452a48ffd7752522875c21f4f9b25f813c | /hw5/hw5-3.cpp | 61b7e4c1b4e5bf3d495c6830fe88b195f3b52abb | [] | no_license | Terry9022/learn_C | 7ad11097bf9ec319266cfab637d2d707aa167153 | f7b55ff68ae0c026ce04f3d75d4c982292cfa759 | refs/heads/main | 2023-09-04T09:05:05.581876 | 2021-10-18T23:19:17 | 2021-10-18T23:19:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,943 | cpp | //
// hw5-3.cpp
// hw5
//
// Created by Terry Lu on 2020/11/2.
// Copyright © 2020 Terry Lu. All rights reserved.
//
#include <iostream>
#include <algorithm>
#include <set>
using namespace std;
void connect_subway(int s1,int s2);
int m =0;
int n =0;
int s =0;
int L =0;
int benefit_people=0;
int possible[50][2] = {0};
int want[50][2] = {0};
int matrix[101][101] = {0};
int matrix_benefit_subway_ornot[110][110] = {0};
int matrix_benefit_station_ornot[110][110] = {0};
int station[20][2] = {0};
int main() {
int people_benefit_subway=0;
int people_benefit_station=0;
//load the data
cin>>m>>n>>s>>L;
for (int i=0 ; i<=m ; i++){
for (int j=0 ; j<=n ; j++){
cin>>matrix[i][j];
}
}
for (int i=0 ; i<s ; i++){
for (int j=0 ; j<2 ; j++){
cin>>station[i][j];
}
}
for (int i=0 ; i<s ; i++){
for (int j=0 ; j<s ; j++){
if (station[i][0]==station[j][0] && i!=j){
possible.insert({i,j});
}
}
}
//algorithm
return 0;
}
void connect_subway(int s1,int s2){
int first_station_x = station[s1-1][0];
int first_station_y = station[s1-1][1];
int second_station_x = station[s2-1][0];
int second_station_y = station[s2-1][1];
int connect_x[2] = {0};
int connect_y[2] = {0};
if (first_station_x == second_station_x){
connect_y[0]=first_station_y;
connect_y[1]=second_station_y;
std::sort(connect_y, connect_y+2);
else if(first_station_y == second_station_y){
connect_x[0]=first_station_x;
connect_x[1]=second_station_x;
std::sort(connect_x, connect_x+2);
}
}
| [
"[email protected]"
] | |
3615f8e7bf581dcbd4561fd284fe923f4270f2c6 | a122119df649ee4fe543951c7e702e85b3427670 | /install/include/baxter_core_msgs/SolvePositionIKRequest.h | 0bd39344527efde7bc8a4b9044c0ef79f99983b8 | [] | no_license | Sean-Skilling/baxter-project | e126de1cf80aabebc176628182a23841b2a1a930 | e86ff6015aaf9c301de5ef9a92538974319ff2b3 | refs/heads/master | 2020-04-11T13:03:33.841852 | 2019-03-27T14:58:13 | 2019-03-27T14:58:13 | 161,802,645 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,116 | h | // Generated by gencpp from file baxter_core_msgs/SolvePositionIKRequest.msg
// DO NOT EDIT!
#ifndef BAXTER_CORE_MSGS_MESSAGE_SOLVEPOSITIONIKREQUEST_H
#define BAXTER_CORE_MSGS_MESSAGE_SOLVEPOSITIONIKREQUEST_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
#include <geometry_msgs/PoseStamped.h>
#include <sensor_msgs/JointState.h>
namespace baxter_core_msgs
{
template <class ContainerAllocator>
struct SolvePositionIKRequest_
{
typedef SolvePositionIKRequest_<ContainerAllocator> Type;
SolvePositionIKRequest_()
: pose_stamp()
, seed_angles()
, seed_mode(0) {
}
SolvePositionIKRequest_(const ContainerAllocator& _alloc)
: pose_stamp(_alloc)
, seed_angles(_alloc)
, seed_mode(0) {
(void)_alloc;
}
typedef std::vector< ::geometry_msgs::PoseStamped_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::geometry_msgs::PoseStamped_<ContainerAllocator> >::other > _pose_stamp_type;
_pose_stamp_type pose_stamp;
typedef std::vector< ::sensor_msgs::JointState_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::sensor_msgs::JointState_<ContainerAllocator> >::other > _seed_angles_type;
_seed_angles_type seed_angles;
typedef uint8_t _seed_mode_type;
_seed_mode_type seed_mode;
enum {
SEED_AUTO = 0u,
SEED_USER = 1u,
SEED_CURRENT = 2u,
SEED_NS_MAP = 3u,
};
typedef boost::shared_ptr< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> const> ConstPtr;
}; // struct SolvePositionIKRequest_
typedef ::baxter_core_msgs::SolvePositionIKRequest_<std::allocator<void> > SolvePositionIKRequest;
typedef boost::shared_ptr< ::baxter_core_msgs::SolvePositionIKRequest > SolvePositionIKRequestPtr;
typedef boost::shared_ptr< ::baxter_core_msgs::SolvePositionIKRequest const> SolvePositionIKRequestConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace baxter_core_msgs
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False}
// {'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'sensor_msgs': ['/opt/ros/kinetic/share/sensor_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'baxter_core_msgs': ['/home/seanskilling/baxter_ws/src/baxter_common/baxter_core_msgs/msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsFixedSize< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> const>
: FalseType
{ };
template <class ContainerAllocator>
struct IsMessage< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct HasHeader< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> const>
: FalseType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >
{
static const char* value()
{
return "2587e42983d0081d0a2288230991073b";
}
static const char* value(const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0x2587e42983d0081dULL;
static const uint64_t static_value2 = 0x0a2288230991073bULL;
};
template<class ContainerAllocator>
struct DataType< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >
{
static const char* value()
{
return "baxter_core_msgs/SolvePositionIKRequest";
}
static const char* value(const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >
{
static const char* value()
{
return "\n\
geometry_msgs/PoseStamped[] pose_stamp\n\
\n\
\n\
\n\
\n\
sensor_msgs/JointState[] seed_angles\n\
\n\
\n\
\n\
\n\
\n\
uint8 SEED_AUTO = 0\n\
uint8 SEED_USER = 1\n\
uint8 SEED_CURRENT = 2\n\
uint8 SEED_NS_MAP = 3\n\
\n\
uint8 seed_mode\n\
\n\
================================================================================\n\
MSG: geometry_msgs/PoseStamped\n\
# A Pose with reference coordinate frame and timestamp\n\
Header header\n\
Pose pose\n\
\n\
================================================================================\n\
MSG: std_msgs/Header\n\
# Standard metadata for higher-level stamped data types.\n\
# This is generally used to communicate timestamped data \n\
# in a particular coordinate frame.\n\
# \n\
# sequence ID: consecutively increasing ID \n\
uint32 seq\n\
#Two-integer timestamp that is expressed as:\n\
# * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\
# * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\
# time-handling sugar is provided by the client library\n\
time stamp\n\
#Frame this data is associated with\n\
# 0: no frame\n\
# 1: global frame\n\
string frame_id\n\
\n\
================================================================================\n\
MSG: geometry_msgs/Pose\n\
# A representation of pose in free space, composed of position and orientation. \n\
Point position\n\
Quaternion orientation\n\
\n\
================================================================================\n\
MSG: geometry_msgs/Point\n\
# This contains the position of a point in free space\n\
float64 x\n\
float64 y\n\
float64 z\n\
\n\
================================================================================\n\
MSG: geometry_msgs/Quaternion\n\
# This represents an orientation in free space in quaternion form.\n\
\n\
float64 x\n\
float64 y\n\
float64 z\n\
float64 w\n\
\n\
================================================================================\n\
MSG: sensor_msgs/JointState\n\
# This is a message that holds data to describe the state of a set of torque controlled joints. \n\
#\n\
# The state of each joint (revolute or prismatic) is defined by:\n\
# * the position of the joint (rad or m),\n\
# * the velocity of the joint (rad/s or m/s) and \n\
# * the effort that is applied in the joint (Nm or N).\n\
#\n\
# Each joint is uniquely identified by its name\n\
# The header specifies the time at which the joint states were recorded. All the joint states\n\
# in one message have to be recorded at the same time.\n\
#\n\
# This message consists of a multiple arrays, one for each part of the joint state. \n\
# The goal is to make each of the fields optional. When e.g. your joints have no\n\
# effort associated with them, you can leave the effort array empty. \n\
#\n\
# All arrays in this message should have the same size, or be empty.\n\
# This is the only way to uniquely associate the joint name with the correct\n\
# states.\n\
\n\
\n\
Header header\n\
\n\
string[] name\n\
float64[] position\n\
float64[] velocity\n\
float64[] effort\n\
";
}
static const char* value(const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.pose_stamp);
stream.next(m.seed_angles);
stream.next(m.seed_mode);
}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct SolvePositionIKRequest_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator>& v)
{
s << indent << "pose_stamp[]" << std::endl;
for (size_t i = 0; i < v.pose_stamp.size(); ++i)
{
s << indent << " pose_stamp[" << i << "]: ";
s << std::endl;
s << indent;
Printer< ::geometry_msgs::PoseStamped_<ContainerAllocator> >::stream(s, indent + " ", v.pose_stamp[i]);
}
s << indent << "seed_angles[]" << std::endl;
for (size_t i = 0; i < v.seed_angles.size(); ++i)
{
s << indent << " seed_angles[" << i << "]: ";
s << std::endl;
s << indent;
Printer< ::sensor_msgs::JointState_<ContainerAllocator> >::stream(s, indent + " ", v.seed_angles[i]);
}
s << indent << "seed_mode: ";
Printer<uint8_t>::stream(s, indent + " ", v.seed_mode);
}
};
} // namespace message_operations
} // namespace ros
#endif // BAXTER_CORE_MSGS_MESSAGE_SOLVEPOSITIONIKREQUEST_H
| [
"[email protected]"
] | |
ff47a265cd83fe75d66af0ac743affb662b89c21 | eee4e1d7e3bd56bd0c24da12f727017d509f919d | /Case/case3/2300/U | 1c6aa10bd6c6d30021e42fdd301f7516cd20dc06 | [] | no_license | mamitsu2/aircond5_play5 | 35ea72345d23c5217564bf191921fbbe412b90f2 | f1974714161f5f6dad9ae6d9a77d74b6a19d5579 | refs/heads/master | 2021-10-30T08:59:18.692891 | 2019-04-26T01:48:44 | 2019-04-26T01:48:44 | 183,529,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,861 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "2300";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
458
(
(0.106756 0.0669042 0)
(-0.137288 -0.000214413 0)
(-0.113302 0.00409256 0)
(-0.125193 0.00571422 0)
(-0.137566 0.00517331 0)
(-0.148967 0.00364833 0)
(-0.158215 0.00148294 0)
(-0.164467 -0.00124545 0)
(-0.166987 -0.00456094 0)
(-0.164979 -0.00856012 0)
(-0.156992 -0.0135797 0)
(-0.140752 -0.0200321 0)
(-0.115259 -0.0293457 0)
(-0.0895978 -0.0444193 0)
(-0.0947662 -0.0651769 0)
(0.0252945 0.0166318 0)
(-0.0447674 -0.00693943 0)
(-0.0328002 -0.00752771 0)
(-0.0317492 -0.00405304 0)
(-0.0320773 -0.00421242 0)
(-0.0292038 -0.00880079 0)
(-0.0207485 -0.0124713 0)
(-0.00927857 -0.0158885 0)
(0.000982875 -0.0128114 0)
(0.0114554 -0.00906067 0)
(0.0171458 -0.00701086 0)
(0.0212752 -0.00557991 0)
(0.0248434 -0.00412506 0)
(0.028093 -0.00252396 0)
(0.031135 -0.00305448 0)
(0.0349835 -0.00752916 0)
(0.047071 -0.00298657 0)
(-0.0158332 0.020182 0)
(0.312864 0.147363 0)
(-0.164367 0.0146855 0)
(-0.105989 0.0171285 0)
(-0.124245 0.019557 0)
(-0.138067 0.0191081 0)
(-0.15034 0.0168563 0)
(-0.160393 0.0132955 0)
(-0.167669 0.00855949 0)
(-0.171558 0.00263415 0)
(-0.171359 -0.00455987 0)
(-0.166518 -0.0128718 0)
(-0.156321 -0.0223177 0)
(-0.141565 -0.033876 0)
(-0.126867 -0.0489188 0)
(-0.114343 -0.0608786 0)
(-0.0831631 -0.0426535 0)
(-0.0313727 -0.041764 0)
(-0.0469382 0.0729043 0)
(0.130553 0.0213504 0)
(0.0490228 0.0131214 0)
(0.0206586 0.00605382 0)
(0.0123925 0.00460738 0)
(0.00625313 0.00908589 0)
(-0.00258395 0.00171823 0)
(-0.0070377 -0.0104582 0)
(-0.00485827 -0.01711 0)
(-0.00974584 -0.0136497 0)
(-0.00171683 -0.00709041 0)
(-0.0006219 -0.00496797 0)
(-0.00217106 -0.00391152 0)
(-0.00489964 -0.00163401 0)
(-0.00744131 -0.00193447 0)
(-0.00517398 -0.0106425 0)
(-0.000571834 -0.0199057 0)
(0.0275451 -0.00633984 0)
(-0.09528 0.0450246 0)
(0.483098 0.225909 0)
(-0.21131 0.0419628 0)
(-0.0889139 0.0353155 0)
(-0.115261 0.0336639 0)
(-0.129415 0.0312389 0)
(-0.141704 0.0267569 0)
(-0.151876 0.0204018 0)
(-0.159607 0.012292 0)
(-0.164437 0.00251214 0)
(-0.165761 -0.00871762 0)
(-0.163347 -0.0211685 0)
(-0.157682 -0.0346472 0)
(-0.150274 -0.049253 0)
(-0.143454 -0.0644001 0)
(-0.135714 -0.0755824 0)
(-0.121813 -0.0775307 0)
(-0.114779 -0.0837673 0)
(-0.148514 -0.0804176 0)
(0.0711264 0.00967292 0)
(-0.0379458 0.0106189 0)
(-0.0291912 0.010282 0)
(-0.0206109 0.00466394 0)
(-0.0144243 -0.000646146 0)
(0.0185968 0.00472587 0)
(0.0194883 -0.00254658 0)
(0.000346011 -0.014071 0)
(-0.0232662 -0.0120817 0)
(-0.0300891 -0.007655 0)
(-0.0356315 -0.00542033 0)
(-0.0399102 -0.0039051 0)
(-0.0426895 -0.00307992 0)
(-0.0407016 -0.00401259 0)
(-0.0260283 -0.00774087 0)
(-0.0373471 -0.000113345 0)
(-0.0706419 0.0144946 0)
(-0.164234 0.0292819 0)
(0.619922 0.291435 0)
(-0.257967 0.074801 0)
(-0.0664442 0.0550918 0)
(-0.10151 0.0485208 0)
(-0.114992 0.0441636 0)
(-0.12602 0.0379308 0)
(-0.135191 0.0296415 0)
(-0.142287 0.019253 0)
(-0.146943 0.00677404 0)
(-0.148589 -0.00750404 0)
(-0.147121 -0.0227614 0)
(-0.143909 -0.0380893 0)
(-0.140674 -0.0528213 0)
(-0.138997 -0.0657108 0)
(-0.138386 -0.0742331 0)
(-0.138539 -0.0774832 0)
(-0.14611 -0.0759985 0)
(-0.164168 -0.053646 0)
(-0.157035 0.0103806 0)
(-0.113496 0.00794646 0)
(-0.105386 0.00634424 0)
(-0.0911966 -0.000177728 0)
(-0.0853608 -0.00718551 0)
(-0.0832685 -0.0127264 0)
(-0.0789777 -0.0105663 0)
(-0.0674292 -0.0106138 0)
(-0.0559839 -0.0113071 0)
(-0.044055 -0.0119574 0)
(-0.0317147 -0.0125767 0)
(-0.0191474 -0.0132181 0)
(-0.00643153 -0.0138823 0)
(0.00862369 -0.0138864 0)
(0.0236778 -0.012515 0)
(0.028102 -0.0122709 0)
(0.0370161 -0.00222012 0)
(0.0438193 0.00499109 0)
(-0.0449209 0.0122259 0)
(0.728005 0.345662 0)
(-0.297739 0.109836 0)
(-0.0432642 0.0728818 0)
(-0.0845659 0.0617803 0)
(-0.0969208 0.0552047 0)
(-0.105443 0.0470613 0)
(-0.112242 0.0368833 0)
(-0.117254 0.024411 0)
(-0.120195 0.00951735 0)
(-0.120301 -0.00739755 0)
(-0.117882 -0.0247039 0)
(-0.114908 -0.0405733 0)
(-0.113082 -0.0541899 0)
(-0.113531 -0.0648939 0)
(-0.116199 -0.0719193 0)
(-0.121179 -0.0755243 0)
(-0.129401 -0.0752619 0)
(-0.137033 -0.0647982 0)
(-0.13628 -0.0382512 0)
(-0.125488 -0.018356 0)
(-0.111785 -0.00954503 0)
(-0.0993851 -0.00933577 0)
(-0.0910247 -0.0118428 0)
(-0.0850785 -0.0143783 0)
(-0.0789868 -0.0146394 0)
(-0.0716343 -0.0156192 0)
(-0.0639317 -0.0165466 0)
(-0.056013 -0.0173606 0)
(-0.0479604 -0.0180646 0)
(-0.0398421 -0.0187816 0)
(-0.0315426 -0.019667 0)
(-0.0223924 -0.0205544 0)
(-0.0116632 -0.0214158 0)
(0.00172298 -0.0234691 0)
(0.0221008 -0.020165 0)
(0.0562017 -0.0107651 0)
(0.0833814 0.00716906 0)
(0.13653 0.0316768 0)
(0.156556 0.0765722 0)
(0.00349792 0.147833 0)
(0.79831 0.394423 0)
(-0.33038 0.142187 0)
(-0.0262181 0.0832457 0)
(-0.0634555 0.0731226 0)
(-0.0751163 0.0639545 0)
(-0.0805891 0.053289 0)
(-0.0836737 0.0411934 0)
(-0.0850394 0.0269656 0)
(-0.0845911 0.0100124 0)
(-0.0807957 -0.00925727 0)
(-0.0761231 -0.0278662 0)
(-0.0724785 -0.0429785 0)
(-0.0712037 -0.0542964 0)
(-0.0729067 -0.0621006 0)
(-0.0774125 -0.0665508 0)
(-0.0843965 -0.0677278 0)
(-0.0930833 -0.0645524 0)
(-0.100147 -0.0546088 0)
(-0.101711 -0.039656 0)
(-0.0975412 -0.0269439 0)
(-0.0904119 -0.019755 0)
(-0.0834661 -0.0176585 0)
(-0.078291 -0.0181535 0)
(-0.0745663 -0.0193607 0)
(-0.0713361 -0.0201642 0)
(-0.0681204 -0.0211264 0)
(-0.0650822 -0.0220294 0)
(-0.0623781 -0.0227205 0)
(-0.0601773 -0.0232168 0)
(-0.0585777 -0.023749 0)
(-0.0574449 -0.0247235 0)
(-0.0562766 -0.0265432 0)
(-0.0542167 -0.0296982 0)
(-0.049853 -0.0346523 0)
(-0.0397221 -0.0404132 0)
(-0.0204409 -0.0478223 0)
(0.00847637 -0.0604334 0)
(0.0396957 -0.0596283 0)
(0.10303 0.0145659 0)
(-0.0541939 0.151801 0)
(0.817206 0.439482 0)
(-0.345881 0.146113 0)
(-0.00979486 0.0628682 0)
(-0.0230183 0.0826412 0)
(-0.0403618 0.0737709 0)
(-0.0460791 0.0557653 0)
(-0.0451631 0.0403647 0)
(-0.0418684 0.0244643 0)
(-0.0366727 0.00526008 0)
(-0.0261204 -0.0162381 0)
(-0.0200617 -0.0338432 0)
(-0.0170611 -0.0461346 0)
(-0.0173718 -0.0539513 0)
(-0.0209491 -0.0584012 0)
(-0.0273918 -0.0602672 0)
(-0.0360678 -0.05984 0)
(-0.0457552 -0.0563579 0)
(-0.0540942 -0.0487411 0)
(-0.0586338 -0.0387321 0)
(-0.0592937 -0.0298007 0)
(-0.0577285 -0.02395 0)
(-0.055785 -0.0212439 0)
(-0.0545577 -0.0205637 0)
(-0.0542152 -0.0208028 0)
(-0.0545345 -0.0212499 0)
(-0.0554532 -0.0217302 0)
(-0.0572238 -0.0219408 0)
(-0.060231 -0.0217011 0)
(-0.0649729 -0.0211118 0)
(-0.0718633 -0.0206321 0)
(-0.0809556 -0.0210007 0)
(-0.092014 -0.022941 0)
(-0.104199 -0.0272243 0)
(-0.116321 -0.0349343 0)
(-0.126479 -0.0473042 0)
(-0.132428 -0.065684 0)
(-0.132003 -0.0870841 0)
(-0.114836 -0.0926587 0)
(-0.0337585 -0.0277016 0)
(-0.144814 0.240615 0)
(0.918713 0.464152 0)
(-0.147371 0.127768 0)
(0.0634143 0.00553068 0)
(0.092065 0.0483898 0)
(0.0537756 0.058699 0)
(0.0303169 0.0377306 0)
(0.0279268 0.0193558 0)
(0.0318102 0.00401873 0)
(0.041999 -0.0136657 0)
(0.0507207 -0.0285655 0)
(0.0527764 -0.039663 0)
(0.0508837 -0.0470038 0)
(0.0461538 -0.0510784 0)
(0.0391284 -0.0525441 0)
(0.0301912 -0.0520375 0)
(0.0197053 -0.050043 0)
(0.00842978 -0.0465111 0)
(-0.00227281 -0.0408759 0)
(-0.00998976 -0.0340816 0)
(-0.0147538 -0.0278772 0)
(-0.0176298 -0.0233456 0)
(-0.0197684 -0.0207138 0)
(-0.0219822 -0.0195118 0)
(-0.0245974 -0.0190886 0)
(-0.0276907 -0.0188685 0)
(-0.0313899 -0.0183932 0)
(-0.0360623 -0.0171007 0)
(-0.0423108 -0.0145381 0)
(-0.0511857 -0.0106652 0)
(-0.063853 -0.00603936 0)
(-0.0809346 -0.00167816 0)
(-0.104707 0.000419992 0)
(-0.135598 -0.0018651 0)
(-0.172493 -0.0096816 0)
(-0.212736 -0.0221568 0)
(-0.251197 -0.0360875 0)
(-0.286964 -0.0475361 0)
(-0.317389 -0.0447454 0)
(-0.383445 -0.0108685 0)
(-0.597181 0.0741943 0)
(1.05654 0.431038 0)
(0.506497 0.279894 0)
(0.47209 0.21321 0)
(0.423073 0.190324 0)
(0.322658 0.15514 0)
(0.252058 0.108364 0)
(0.215579 0.0669339 0)
(0.194795 0.0345209 0)
(0.178696 0.00845538 0)
(0.160355 -0.0124994 0)
(0.143798 -0.0271695 0)
(0.128875 -0.0361757 0)
(0.114964 -0.0407556 0)
(0.101645 -0.042098 0)
(0.0886963 -0.0411493 0)
(0.0759821 -0.0386441 0)
(0.0635493 -0.0351247 0)
(0.0518504 -0.0310029 0)
(0.0417807 -0.0266661 0)
(0.0336978 -0.022673 0)
(0.0272783 -0.0195435 0)
(0.0218842 -0.0174872 0)
(0.0169403 -0.0163522 0)
(0.012132 -0.0157853 0)
(0.00736895 -0.0153505 0)
(0.00267923 -0.0145488 0)
(-0.00194333 -0.0126838 0)
(-0.0062091 -0.00913818 0)
(-0.010195 -0.00354859 0)
(-0.0134434 0.00401666 0)
(-0.017891 0.0127227 0)
(-0.0237545 0.0213096 0)
(-0.031856 0.0273167 0)
(-0.0430083 0.0277283 0)
(-0.0597186 0.0188227 0)
(-0.0907641 -0.00322772 0)
(-0.119858 -0.0380201 0)
(-0.127166 -0.0901212 0)
(-0.16763 -0.169952 0)
(-0.550335 -0.262672 0)
(-0.703861 0.159664 0)
(0.179678 0.193017 0)
(0.199561 0.155717 0)
(0.198447 0.113085 0)
(0.207988 0.0746031 0)
(0.212962 0.0429667 0)
(0.210846 0.018738 0)
(0.203458 0.00101768 0)
(0.192205 -0.0116512 0)
(0.178902 -0.0200527 0)
(0.164591 -0.0249394 0)
(0.15009 -0.0270255 0)
(0.136011 -0.0269783 0)
(0.122726 -0.025416 0)
(0.110415 -0.0229235 0)
(0.0991562 -0.0200665 0)
(0.0890306 -0.0173373 0)
(0.0800615 -0.0150795 0)
(0.072134 -0.0134565 0)
(0.0650143 -0.0124476 0)
(0.0584644 -0.0118871 0)
(0.0523508 -0.0115465 0)
(0.046673 -0.0111772 0)
(0.0415505 -0.0104942 0)
(0.0372118 -0.00913469 0)
(0.0340249 -0.00666127 0)
(0.0323878 -0.00272188 0)
(0.0326217 0.00314998 0)
(0.0346961 0.0106427 0)
(0.0384712 0.0184363 0)
(0.0431436 0.0246466 0)
(0.0478074 0.0276814 0)
(0.0515364 0.0268651 0)
(0.0530348 0.0222348 0)
(0.0572138 0.016292 0)
(0.0680094 0.00210823 0)
(0.122575 -0.0704714 0)
(-0.162081 -0.21608 0)
(-0.390575 0.19708 0)
(0.162614 0.127266 0)
(0.111171 0.0955903 0)
(0.138044 0.0785138 0)
(0.172625 0.0555076 0)
(0.194945 0.0334672 0)
(0.204814 0.0165213 0)
(0.206143 0.00493944 0)
(0.201822 -0.00259742 0)
(0.193766 -0.00723186 0)
(0.183447 -0.00959668 0)
(0.172004 -0.0101364 0)
(0.16035 -0.00920422 0)
(0.149171 -0.00709278 0)
(0.13892 -0.00406875 0)
(0.129821 -0.000418451 0)
(0.121888 0.0035343 0)
(0.114967 0.00745254 0)
(0.108814 0.0110126 0)
(0.103177 0.0139261 0)
(0.0978691 0.0159855 0)
(0.0928008 0.0171335 0)
(0.087978 0.0175181 0)
(0.0835059 0.0174914 0)
(0.0796179 0.0175793 0)
(0.0767147 0.0184636 0)
(0.0753801 0.0207462 0)
(0.0761502 0.0238062 0)
(0.079908 0.0272287 0)
(0.0868632 0.0309599 0)
(0.09637 0.0340825 0)
(0.107199 0.035397 0)
(0.117676 0.0337384 0)
(0.125512 0.0276554 0)
(0.128978 0.0154101 0)
(0.125018 -0.00884798 0)
(0.152714 -0.0617542 0)
(-0.176049 -0.15467 0)
(0.0509344 -0.223243 0)
(-0.259809 -0.0433646 0)
(-0.259621 0.167719 0)
(0.0763373 0.0379722 0)
(0.0217653 0.036555 0)
(0.0826368 0.0386002 0)
(0.133608 0.0281879 0)
(0.168381 0.0161716 0)
(0.187661 0.00614112 0)
(0.195442 -0.00169437 0)
(0.195766 -0.00788536 0)
(0.191443 -0.0129234 0)
(0.184287 -0.0172022 0)
(0.175649 -0.0210237 0)
(0.166591 -0.0246557 0)
(0.15794 -0.02834 0)
(0.15029 -0.0322825 0)
(0.144011 -0.0366335 0)
(0.139239 -0.041457 0)
(0.135894 -0.0466988 0)
(0.133717 -0.0521818 0)
(0.132336 -0.0576437 0)
(0.131337 -0.0628095 0)
(0.13033 -0.067468 0)
(0.129017 -0.0715109 0)
(0.12725 -0.0749082 0)
(0.125102 -0.0776252 0)
(0.122939 -0.0795156 0)
(0.121596 -0.0802666 0)
(0.121932 -0.0788462 0)
(0.124681 -0.0744731 0)
(0.130687 -0.0680159 0)
(0.14016 -0.0612063 0)
(0.152182 -0.0559619 0)
(0.164698 -0.0539506 0)
(0.174739 -0.0567365 0)
(0.17876 -0.0649992 0)
(0.170851 -0.0764108 0)
(0.181843 -0.0966929 0)
(-0.188494 -0.142535 0)
)
;
boundaryField
{
floor
{
type noSlip;
}
ceiling
{
type noSlip;
}
sWall
{
type noSlip;
}
nWall
{
type noSlip;
}
sideWalls
{
type empty;
}
glass1
{
type noSlip;
}
glass2
{
type noSlip;
}
sun
{
type noSlip;
}
Table_master
{
type noSlip;
}
Table_slave
{
type noSlip;
}
inlet
{
type fixedValue;
value uniform (0.092388 -0.0382683 0);
}
outlet
{
type zeroGradient;
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
fa54ebbd5f937f492a866928b951dca737a616f9 | 2f49e6f93a99523636f14f399d784f682adfd142 | /Sources/3rdparty/PhysX-3.2.2_PC_SDK_Core/Samples/SampleBase/Picking.cpp | c00489481241fc9402b7513236c57b90a59fce61 | [] | no_license | overflowsc/inf4715 | 26a1e1850b0fda13a19c1562c73d56ee5f26bcde | d9dc62793dfa58f3bb7b146033e4084a8ecc4bc7 | refs/heads/master | 2021-01-18T07:43:49.197883 | 2015-02-08T08:55:53 | 2015-02-08T08:55:53 | 30,485,685 | 0 | 0 | null | 2015-02-08T08:45:44 | 2015-02-08T08:45:43 | null | UTF-8 | C++ | false | false | 8,618 | cpp | // This code contains NVIDIA Confidential Information and is disclosed to you
// under a form of NVIDIA software license agreement provided separately to you.
//
// Notice
// NVIDIA Corporation and its licensors retain all intellectual property and
// proprietary rights in and to this software and related documentation and
// any modifications thereto. Any use, reproduction, disclosure, or
// distribution of this software and related documentation without an express
// license agreement from NVIDIA Corporation is strictly prohibited.
//
// ALL NVIDIA DESIGN SPECIFICATIONS, CODE ARE PROVIDED "AS IS.". NVIDIA MAKES
// NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO
// THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT,
// MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE.
//
// Information and code furnished is believed to be accurate and reliable.
// However, NVIDIA Corporation assumes no responsibility for the consequences of use of such
// information or for any infringement of patents or other rights of third parties that may
// result from its use. No license is granted by implication or otherwise under any patent
// or patent rights of NVIDIA Corporation. Details are subject to change without notice.
// This code supersedes and replaces all information previously supplied.
// NVIDIA Corporation products are not authorized for use as critical
// components in life support devices or systems without express written approval of
// NVIDIA Corporation.
//
// Copyright (c) 2008-2012 NVIDIA Corporation. All rights reserved.
// Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved.
// Copyright (c) 2001-2004 NovodeX AG. All rights reserved.
#include "PxScene.h"
#include "PxSceneQueryReport.h"
#include "PxBatchQueryDesc.h"
#include "extensions/PxJoint.h"
#include "PxRigidDynamic.h"
#include "extensions/PxDistanceJoint.h"
#include "extensions/PxSphericalJoint.h"
#include "PxArticulationLink.h"
#include "PxShape.h"
#include "Picking.h"
#include "RendererMemoryMacros.h"
#if defined(PX_X360) || defined(PX_LINUX) || defined(PX_APPLE)
#include <stdio.h>
#endif
using namespace physx; // PT: please DO NOT indent the whole file
Picking::Picking(PhysXSample& frame) :
mSelectedActor (NULL),
mMouseJoint (NULL),
mMouseActor (NULL),
mDistanceToPicked (0.0f),
mMouseScreenX (0),
mMouseScreenY (0),
mFrame (frame)
{
}
Picking::~Picking() {}
bool Picking::isPicked() const
{
return mMouseJoint!=0;
}
void Picking::moveCursor(PxI32 x, PxI32 y)
{
mMouseScreenX = x;
mMouseScreenY = y;
}
/*void Picking::moveCursor(PxReal deltaDepth)
{
const PxReal range[2] = { 0.0f, 1.0f };
const PxReal r = (range[1] - range[0]);
const PxReal d = (mMouseDepth - range[0])/r;
const PxReal delta = deltaDepth*0.02f*(1.0f - d);
mMouseDepth = PxClamp(mMouseDepth + delta, range[0], range[1]);
}*/
void Picking::tick()
{
if(mMouseJoint)
moveActor(mMouseScreenX,mMouseScreenY);
}
void Picking::computeCameraRay(PxVec3& orig, PxVec3& dir, PxI32 x, PxI32 y) const
{
const PxVec3& camPos = mFrame.getCamera().getPos();
// compute picking ray
// const PxVec3 rayOrig = unProject(x, y, 0.0f); // PT: what the frell is that?
const PxVec3 rayOrig = camPos;
const PxVec3 rayDir = (unProject(x, y, 1.0f) - rayOrig).getNormalized();
orig = rayOrig;
dir = rayDir;
}
bool Picking::pick(int x, int y)
{
PxScene& scene = mFrame.getActiveScene();
PxVec3 rayOrig, rayDir;
computeCameraRay(rayOrig, rayDir, x, y);
// raycast rigid bodies in scene
PxRaycastHit hit;
scene.raycastSingle(rayOrig, rayDir, PX_MAX_F32, PxSceneQueryFlag::eIMPACT, hit, PxSceneQueryFilterData());
if(hit.shape)
{
const char* shapeName = hit.shape->getName();
if(shapeName)
printf("Picked shape name: %s\n", shapeName);
PxRigidActor& actor = hit.shape->getActor();
mSelectedActor = static_cast<PxRigidActor*>(hit.shape->getActor().is<PxRigidDynamic>());
if(!mSelectedActor)
mSelectedActor = static_cast<PxRigidActor*>(hit.shape->getActor().is<PxArticulationLink>());
}
else
mSelectedActor = 0;
if(mSelectedActor)
{
printf("Actor '%s' picked! (userData: %p)\n", mSelectedActor->getName(), mSelectedActor->userData);
//if its a dynamic rigid body, joint it for dragging purposes:
grabActor(hit.impact, rayOrig);
}
#ifdef VISUALIZE_PICKING_RAYS
Ray ray;
ray.origin = rayOrig;
ray.dir = rayDir;
mRays.push_back(ray);
#endif
return true;
}
//----------------------------------------------------------------------------//
PxActor* Picking::letGo()
{
// let go any picked actor
if(mMouseJoint)
{
mMouseJoint->release();
mMouseJoint = NULL;
// SAFE_RELEASE(mMouseActor); // PT: releasing immediately crashes
mFrame.removeActor(mMouseActor);
mMouseActor = NULL;
}
PxActor* returnedActor = mSelectedActor;
mSelectedActor = NULL;
return returnedActor;
}
//----------------------------------------------------------------------------//
void Picking::grabActor(const PxVec3& worldImpact, const PxVec3& rayOrigin)
{
if(!mSelectedActor
|| (mSelectedActor->getType() != PxActorType::eRIGID_DYNAMIC
&& mSelectedActor->getType() != PxActorType::eARTICULATION_LINK))
return;
PxScene& scene = mFrame.getActiveScene();
PxPhysics& physics = scene.getPhysics();
//create a shape less actor for the mouse
{
mMouseActor = physics.createRigidDynamic(PxTransform(worldImpact, PxQuat::createIdentity()));
mMouseActor->setRigidDynamicFlag(PxRigidDynamicFlag::eKINEMATIC, true);
mMouseActor->setMass(1.0f);
mMouseActor->setMassSpaceInertiaTensor(PxVec3(1.0f, 1.0f, 1.0f));
scene.addActor(*mMouseActor);
mFrame.addPhysicsActors(mMouseActor);
}
PxRigidActor* pickedActor = static_cast<PxRigidActor*>(mSelectedActor);
#if USE_D6_JOINT_FOR_MOUSE
mMouseJoint = PxD6JointCreate( physics,
mMouseActor,
PxTransform::createIdentity(),
pickedActor,
PxTransform(pickedActor->getGlobalPose().transformInv(worldImpact)));
#elif USE_SPHERICAL_JOINT_FOR_MOUSE
mMouseJoint = PxSphericalJointCreate(physics,
mMouseActor,
PxTransform::createIdentity(),
pickedActor,
PxTransform(pickedActor->getGlobalPose().transformInv(worldImpact)));
#else
mMouseJoint = PxDistanceJointCreate(physics,
mMouseActor,
PxTransform::createIdentity(),
pickedActor,
PxTransform(pickedActor->getGlobalPose().transformInv(worldImpact)));
mMouseJoint->setMaxDistance(0.0f);
mMouseJoint->setMinDistance(0.0f);
mMouseJoint->setDistanceJointFlags(PxDistanceJointFlag::eMAX_DISTANCE_ENABLED);
#endif
mDistanceToPicked = (worldImpact - rayOrigin).magnitude();
}
//----------------------------------------------------------------------------//
void Picking::moveActor(int x, int y)
{
if(!mMouseActor)
return;
PxVec3 rayOrig, rayDir;
computeCameraRay(rayOrig, rayDir, x, y);
const PxVec3 pos = rayOrig + mDistanceToPicked * rayDir;
mMouseActor->setKinematicTarget(PxTransform(pos, PxQuat::createIdentity()));
}
//----------------------------------------------------------------------------//
PxVec3 Picking::unProject(int x, int y, float depth) const
{
SampleRenderer::Renderer* renderer = mFrame.getRenderer();
const SampleRenderer::RendererProjection& projection = mFrame.getCamera().getProjMatrix();
const PxTransform view = mFrame.getCamera().getViewMatrix().getInverse();
PxU32 windowWidth = 0;
PxU32 windowHeight = 0;
renderer->getWindowSize(windowWidth, windowHeight);
const PxF32 outX = (float)x / (float)windowWidth;
const PxF32 outY = (float)y / (float)windowHeight;
return SampleRenderer::unproject(projection, view, outX * 2 -1, outY * 2 -1, depth * 2 - 1);
}
//----------------------------------------------------------------------------//
void Picking::project(const physx::PxVec3& v, int& xi, int& yi, float& depth) const
{
SampleRenderer::Renderer* renderer = mFrame.getRenderer();
SampleRenderer::RendererProjection projection = mFrame.getCamera().getProjMatrix();
const PxTransform view = mFrame.getCamera().getViewMatrix().getInverse();
PxVec3 pos = SampleRenderer::project(projection, view, v);
///* Map x, y and z to range 0-1 */
pos.x = (pos.x + 1 ) * 0.5f;
pos.y = (pos.y + 1 ) * 0.5f;
pos.z = (pos.z + 1 ) * 0.5f;
PxU32 windowWidth = 0;
PxU32 windowHeight = 0;
renderer->getWindowSize(windowWidth, windowHeight);
/* Map x,y to viewport */
pos.x *= windowWidth;
pos.y *= windowHeight;
depth = (float)pos.z;
xi = (int)(pos.x + 0.5);
yi = (int)(pos.y + 0.5);
}
| [
"[email protected]"
] | |
cc515da8c8462ef82c349c842ddfd4cf4079167a | ed5926ae512e238af0f14655a3187d7e7fbf7ef7 | /chromium2/chrome/browser/ash/policy/dlp/files_policy_notification_manager.cc | 25d5ec4b0feeb00b10b17fecaf7fa9d070120c65 | [
"BSD-3-Clause"
] | permissive | slimsag/mega | 82595cd443d466f39836e24e28fc86d3f2f1aefd | 37ef02d1818ae263956b7c8bc702b85cdbc83d20 | refs/heads/master | 2023-08-16T22:36:25.860917 | 2023-08-15T23:40:31 | 2023-08-15T23:40:31 | 41,717,977 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 48,296 | cc | // Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/policy/dlp/files_policy_notification_manager.h"
#include <cstddef>
#include <memory>
#include <string>
#include "base/check.h"
#include "base/check_is_test.h"
#include "base/containers/contains.h"
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/functional/callback_forward.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/scoped_refptr.h"
#include "base/notreached.h"
#include "base/strings/string_number_conversions.h"
#include "base/types/optional_util.h"
#include "chrome/browser/ash/extensions/file_manager/system_notification_manager.h"
#include "chrome/browser/ash/file_manager/io_task.h"
#include "chrome/browser/ash/file_manager/io_task_controller.h"
#include "chrome/browser/ash/file_manager/url_util.h"
#include "chrome/browser/ash/file_manager/volume_manager.h"
#include "chrome/browser/ash/policy/dlp/dialogs/files_policy_dialog.h"
#include "chrome/browser/ash/policy/dlp/files_policy_string_util.h"
#include "chrome/browser/chromeos/policy/dlp/dialogs/policy_dialog_base.h"
#include "chrome/browser/chromeos/policy/dlp/dlp_confidential_file.h"
#include "chrome/browser/chromeos/policy/dlp/dlp_file_destination.h"
#include "chrome/browser/chromeos/policy/dlp/dlp_files_controller.h"
#include "chrome/browser/chromeos/policy/dlp/dlp_files_utils.h"
#include "chrome/browser/notifications/notification_display_service.h"
#include "chrome/browser/notifications/notification_display_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/ash/system_web_apps/system_web_app_ui_utils.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_window.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/browser_context.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/message_center/public/cpp/notification.h"
#include "ui/message_center/public/cpp/notification_delegate.h"
namespace policy {
namespace {
// How long to wait for a Files App to open before falling back to a system
// modal.
const base::TimeDelta kOpenFilesAppTimeout = base::Milliseconds(3000);
// Warning time out is 5 mins.
const base::TimeDelta kWarningTimeout = base::Minutes(5);
constexpr char kDlpFilesNotificationId[] = "dlp_files";
std::u16string GetNotificationTitle(NotificationType type,
dlp::FileAction action,
absl::optional<size_t> file_count) {
switch (type) {
case NotificationType::kError:
CHECK(file_count.has_value());
return policy::files_string_util::GetBlockTitle(action,
file_count.value());
case NotificationType::kWarning:
return policy::files_string_util::GetWarnTitle(action);
}
}
// Returns the message for notification of `type` and with `file_count`
// blocked/warned files. `first_file` is the name of the first restricted file
// and is only used for single file notifications. `policy` is the block reason
// of the first restricted file and is only used for single file block
// notifications.
std::u16string GetNotificationMessage(NotificationType type,
size_t file_count,
const std::u16string& first_file,
absl::optional<Policy> policy) {
switch (type) {
case NotificationType::kError:
CHECK(policy.has_value());
return file_count > 1
? l10n_util::GetStringUTF16(IDS_POLICY_DLP_FILES_BLOCK_MESSAGE)
: policy::files_string_util::GetBlockReasonMessage(
policy.value(), file_count, first_file);
case NotificationType::kWarning:
const std::u16string placeholder_value =
file_count == 1 ? first_file : base::NumberToString16(file_count);
return base::ReplaceStringPlaceholders(
l10n_util::GetPluralStringFUTF16(IDS_POLICY_DLP_FILES_WARN_MESSAGE,
file_count),
placeholder_value,
/*offset=*/nullptr);
}
}
std::u16string GetOkButton(NotificationType type,
dlp::FileAction action,
size_t file_count) {
// Multiple files - both warnings and errors have a Review button.
if (file_count > 1) {
return l10n_util::GetStringUTF16(IDS_POLICY_DLP_FILES_REVIEW_BUTTON);
}
// Single file - button text depends on the type.
switch (type) {
case NotificationType::kError:
return l10n_util::GetStringUTF16(IDS_LEARN_MORE);
case NotificationType::kWarning:
return policy::files_string_util::GetContinueAnywayButton(action);
}
}
std::u16string GetCancelButton(NotificationType type) {
switch (type) {
case NotificationType::kError:
return l10n_util::GetStringUTF16(IDS_POLICY_DLP_FILES_DISMISS_BUTTON);
case NotificationType::kWarning:
return l10n_util::GetStringUTF16(IDS_POLICY_DLP_WARN_CANCEL_BUTTON);
}
}
std::u16string GetTimeoutNotificationTitle(dlp::FileAction action) {
switch (action) {
case dlp::FileAction::kDownload:
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_DOWNLOAD_TIMEOUT_TITLE);
case dlp::FileAction::kTransfer:
case dlp::FileAction::kUnknown:
// kUnknown is used for internal checks - treat as kTransfer.
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_TRANSFER_TIMEOUT_TITLE);
case dlp::FileAction::kUpload:
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_UPLOAD_TIMEOUT_TITLE);
case dlp::FileAction::kCopy:
return l10n_util::GetStringUTF16(IDS_POLICY_DLP_FILES_COPY_TIMEOUT_TITLE);
case dlp::FileAction::kMove:
return l10n_util::GetStringUTF16(IDS_POLICY_DLP_FILES_MOVE_TIMEOUT_TITLE);
case dlp::FileAction::kOpen:
case dlp::FileAction::kShare:
return l10n_util::GetStringUTF16(IDS_POLICY_DLP_FILES_OPEN_TIMEOUT_TITLE);
}
}
std::u16string GetTimeoutNotificationMessage(dlp::FileAction action) {
switch (action) {
case dlp::FileAction::kDownload:
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_DOWNLOAD_TIMEOUT_MESSAGE);
case dlp::FileAction::kTransfer:
case dlp::FileAction::kUnknown:
// kUnknown is used for internal checks - treat as kTransfer.
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_TRANSFER_TIMEOUT_MESSAGE);
case dlp::FileAction::kUpload:
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_UPLOAD_TIMEOUT_MESSAGE);
case dlp::FileAction::kCopy:
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_COPY_TIMEOUT_MESSAGE);
case dlp::FileAction::kMove:
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_MOVE_TIMEOUT_MESSAGE);
case dlp::FileAction::kOpen:
case dlp::FileAction::kShare:
return l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_OPEN_TIMEOUT_MESSAGE);
}
}
// Dismisses the notification with `notification_id`.
void Dismiss(content::BrowserContext* context,
const std::string& notification_id) {
auto* profile = Profile::FromBrowserContext(context);
DCHECK(profile);
NotificationDisplayServiceFactory::GetForProfile(profile)->Close(
NotificationHandler::Type::TRANSIENT, notification_id);
}
file_manager::io_task::IOTaskController* GetIOTaskController(
content::BrowserContext* context) {
DCHECK(context);
file_manager::VolumeManager* const volume_manager =
file_manager::VolumeManager::Get(Profile::FromBrowserContext(context));
if (!volume_manager) {
LOG(ERROR) << "FilesPolicyNotificationManager failed to find "
"file_manager::VolumeManager";
return nullptr;
}
return volume_manager->io_task_controller();
}
// Computes and returns a new notification ID by appending `count` to the
// prefix.
std::string GetNotificationId(size_t count) {
return kDlpFilesNotificationId + std::string("_") +
base::NumberToString(count);
}
// Notification click handler implementation for files policy notifications.
// The handler ensures that we only handle the button click once. This is
// required because some of the parameters are move-only types and wouldn't be
// valid on the second invocation.
class PolicyNotificationClickHandler
: public message_center::NotificationDelegate {
public:
explicit PolicyNotificationClickHandler(
base::OnceCallback<void(absl::optional<int>)> callback)
: callback_(std::move(callback)) {}
void Close(bool by_user) override {
// Treat any close reason as the user clicking the Cancel button.
Click(NotificationButton::CANCEL, /*reply=*/absl::nullopt);
}
// message_center::NotificationDelegate overrides:
void Click(const absl::optional<int>& button_index,
const absl::optional<std::u16string>& reply) override {
if (!button_index.has_value()) {
// Ignore clicks on the notification, but not on the buttons.
return;
}
// The callback might have already been invoked earlier, so check first.
if (callback_) {
std::move(callback_).Run(button_index);
}
}
private:
~PolicyNotificationClickHandler() override = default;
base::OnceCallback<void(absl::optional<int>)> callback_;
};
} // namespace
FilesPolicyNotificationManager::FilesPolicyNotificationManager(
content::BrowserContext* context)
: context_(context),
task_runner_(base::SequencedTaskRunner::GetCurrentDefault()) {
DCHECK(context);
auto* io_task_controller = GetIOTaskController(context_);
if (!io_task_controller) {
LOG(ERROR) << "FilesPolicyNotificationManager failed to find "
"file_manager::io_task::IOTaskController";
return;
}
io_task_controller->AddObserver(this);
}
FilesPolicyNotificationManager::~FilesPolicyNotificationManager() = default;
void FilesPolicyNotificationManager::Shutdown() {
file_manager::VolumeManager* const volume_manager =
file_manager::VolumeManager::Get(Profile::FromBrowserContext(context_));
if (volume_manager) {
auto* io_task_controller = volume_manager->io_task_controller();
if (io_task_controller) {
io_task_controller->RemoveObserver(this);
}
}
}
void FilesPolicyNotificationManager::ShowDlpBlockedFiles(
absl::optional<file_manager::io_task::IOTaskId> task_id,
std::vector<base::FilePath> blocked_files,
dlp::FileAction action) {
// If `task_id` has value, the corresponding IOTask should be updated
// accordingly.
if (task_id.has_value()) {
// Sometimes DLP checks are done before FilesPolicyNotificationManager is
// lazily created, so the task is not tracked and the blocked files won't
// be added. On the other hand, the IO task may be aborted/canceled
// already so the info saved may be not needed anymore.
if (!HasIOTask(task_id.value())) {
AddIOTask(task_id.value(), action);
}
for (const auto& file : blocked_files) {
io_tasks_.at(task_id.value())
.AddBlockedFile(DlpConfidentialFile(file), Policy::kDlp);
}
} else {
ShowDlpBlockNotification(std::move(blocked_files), action);
}
}
void FilesPolicyNotificationManager::AddConnectorsBlockedFiles(
file_manager::io_task::IOTaskId task_id,
std::vector<base::FilePath> blocked_files,
dlp::FileAction action) {
// Sometimes EC checks are done before FilesPolicyNotificationManager is
// lazily created, so the task is not tracked and the blocked files won't
// be added. On the other hand, the IOTask may be aborted/canceled already so
// the info saved may be not needed anymore.
if (!HasIOTask(task_id)) {
AddIOTask(task_id, action);
}
for (const auto& file : blocked_files) {
io_tasks_.at(task_id).AddBlockedFile(DlpConfidentialFile(file),
Policy::kEnterpriseConnectors);
}
}
void FilesPolicyNotificationManager::ShowDlpWarning(
OnDlpRestrictionCheckedCallback callback,
absl::optional<file_manager::io_task::IOTaskId> task_id,
std::vector<base::FilePath> warning_files,
const DlpFileDestination& destination,
dlp::FileAction action) {
// If `task_id` has value, the corresponding IOTask should be paused.
if (task_id.has_value()) {
PauseIOTask(task_id.value(), std::move(callback), std::move(warning_files),
action, Policy::kDlp);
} else {
ShowDlpWarningNotification(std::move(callback), std::move(warning_files),
destination, action);
}
}
void FilesPolicyNotificationManager::ShowConnectorsWarning(
OnDlpRestrictionCheckedCallback callback,
file_manager::io_task::IOTaskId task_id,
std::vector<base::FilePath> warning_files,
dlp::FileAction action) {
PauseIOTask(task_id, std::move(callback), std::move(warning_files), action,
Policy::kEnterpriseConnectors);
}
void FilesPolicyNotificationManager::ShowFilesPolicyNotification(
const std::string& notification_id,
const file_manager::io_task::ProgressStatus& status) {
const file_manager::io_task::IOTaskId id(status.task_id);
const dlp::FileAction action =
status.type == file_manager::io_task::OperationType::kCopy
? dlp::FileAction::kCopy
: dlp::FileAction::kMove;
if (status.HasPolicyError() &&
status.policy_error->type ==
file_manager::io_task::PolicyErrorType::kDlpWarningTimeout) {
ShowDlpWarningTimeoutNotification(action, notification_id);
return;
}
// Only show the notification if we have either warning or blocked files.
if (HasWarning(id) || HasBlockedFiles(id)) {
ShowFilesPolicyNotification(notification_id, status.task_id);
}
}
void FilesPolicyNotificationManager::ShowDialog(
file_manager::io_task::IOTaskId task_id,
FilesDialogType type) {
auto* profile = Profile::FromBrowserContext(context_);
DCHECK(profile);
// Get the last active Files app window.
Browser* browser =
FindSystemWebAppBrowser(profile, ash::SystemWebAppType::FILE_MANAGER);
gfx::NativeWindow modal_parent =
browser ? browser->window()->GetNativeWindow() : nullptr;
if (modal_parent) {
ShowDialogForIOTask(task_id, type, modal_parent);
return;
}
// No window found, so open a new one. This should notify us through
// OnBrowserSetLastActive() to show the dialog.
LaunchFilesApp(std::make_unique<DialogInfo>(
base::BindOnce(&FilesPolicyNotificationManager::ShowDialogForIOTask,
weak_factory_.GetWeakPtr(), task_id, type),
task_id,
base::BindOnce(&FilesPolicyNotificationManager::OnIOTaskAppLaunchTimedOut,
weak_factory_.GetWeakPtr(), task_id)));
}
void FilesPolicyNotificationManager::ShowDlpWarningTimeoutNotification(
dlp::FileAction action,
absl::optional<std::string> notification_id) {
if (!notification_id.has_value()) {
notification_id = GetNotificationId(notification_count_++);
}
// The notification should stay visible until dismissed.
message_center::RichNotificationData optional_fields;
optional_fields.never_timeout = true;
auto notification = file_manager::CreateSystemNotification(
notification_id.value(), GetTimeoutNotificationTitle(action),
GetTimeoutNotificationMessage(action),
base::MakeRefCounted<message_center::HandleNotificationClickDelegate>(
base::BindRepeating(&Dismiss, context_, notification_id.value())),
optional_fields);
notification->set_buttons(
{message_center::ButtonInfo(GetCancelButton(NotificationType::kError))});
auto* profile = Profile::FromBrowserContext(context_);
DCHECK(profile);
NotificationDisplayServiceFactory::GetForProfile(profile)->Display(
NotificationHandler::Type::TRANSIENT, *notification,
/*metadata=*/nullptr);
}
bool FilesPolicyNotificationManager::HasIOTask(
file_manager::io_task::IOTaskId task_id) const {
return base::Contains(io_tasks_, task_id);
}
void FilesPolicyNotificationManager::OnIOTaskResumed(
file_manager::io_task::IOTaskId task_id) {
if (base::Contains(io_tasks_warning_timers_, task_id)) {
io_tasks_warning_timers_.erase(task_id);
}
if (!HasIOTask(task_id)) {
// Task is already completed or timed out.
return;
}
if (!HasWarning(task_id)) {
// Warning callback is already run.
return;
}
std::move(io_tasks_.at(task_id).GetWarningInfo()->warning_callback)
.Run(/*should_proceed=*/true);
io_tasks_.at(task_id).ResetWarningInfo();
}
void FilesPolicyNotificationManager::ShowBlockedNotifications() {
for (const auto& task : io_tasks_) {
if (HasBlockedFiles(task.first)) {
ShowFilesPolicyNotification(file_manager::GetNotificationId(task.first),
task.first);
}
}
}
std::map<DlpConfidentialFile, Policy>
FilesPolicyNotificationManager::GetIOTaskBlockedFilesForTesting(
file_manager::io_task::IOTaskId task_id) const {
if (!HasIOTask(task_id)) {
return {};
}
return io_tasks_.at(task_id).blocked_files();
}
bool FilesPolicyNotificationManager::HasWarningTimerForTesting(
file_manager::io_task::IOTaskId task_id) const {
return base::Contains(io_tasks_warning_timers_, task_id);
}
void FilesPolicyNotificationManager::HandleDlpWarningNotificationClick(
std::string notification_id,
absl::optional<int> button_index) {
if (!button_index.has_value()) {
return;
}
Dismiss(context_, notification_id);
CHECK(HasWarning(notification_id));
auto* warning_info = non_io_tasks_.at(notification_id).GetWarningInfo();
CHECK(!warning_info->warning_callback.is_null());
switch (button_index.value()) {
case NotificationButton::CANCEL:
std::move(warning_info->warning_callback).Run(/*should_proceed=*/false);
non_io_tasks_.erase(notification_id);
non_io_tasks_warning_timers_.erase(notification_id);
break;
case NotificationButton::OK:
CHECK(warning_info->files.size() >= 1);
if (warning_info->files.size() == 1) {
// Action anyway.
std::move(warning_info->warning_callback).Run(/*should_proceed=*/true);
non_io_tasks_.erase(notification_id);
non_io_tasks_warning_timers_.erase(notification_id);
} else {
// Review
// Always open the Files app. This should notify us through
// OnBrowserSetLastActive() to show the dialog.
LaunchFilesApp(std::make_unique<DialogInfo>(
base::BindOnce(
&FilesPolicyNotificationManager::ShowDialogForNonIOTask,
weak_factory_.GetWeakPtr(), notification_id,
FilesDialogType::kWarning),
notification_id,
base::BindOnce(
&FilesPolicyNotificationManager::OnNonIOTaskAppLaunchTimedOut,
weak_factory_.GetWeakPtr(), notification_id)));
}
break;
default:
NOTREACHED();
}
}
void FilesPolicyNotificationManager::HandleDlpErrorNotificationClick(
std::string notification_id,
std::vector<DlpConfidentialFile> files,
dlp::FileAction action,
absl::optional<int> button_index) {
if (!button_index.has_value()) {
return;
}
Dismiss(context_, notification_id);
switch (button_index.value()) {
case NotificationButton::CANCEL:
// Nothing more to do.
break;
case NotificationButton::OK:
DCHECK(files.size() >= 1);
if (files.size() == 1) {
// Learn more.
dlp::OpenLearnMore();
} else {
// Review.
FileTaskInfo info(action);
for (const auto& file : files) {
info.AddBlockedFile(DlpConfidentialFile(file.file_path),
Policy::kDlp);
}
non_io_tasks_.emplace(notification_id, std::move(info));
// Always open the Files app. This should notify us through
// OnBrowserSetLastActive() to show the dialog.
LaunchFilesApp(std::make_unique<DialogInfo>(
base::BindOnce(
&FilesPolicyNotificationManager::ShowDialogForNonIOTask,
weak_factory_.GetWeakPtr(), notification_id,
FilesDialogType::kError),
notification_id,
base::BindOnce(
&FilesPolicyNotificationManager::OnNonIOTaskAppLaunchTimedOut,
weak_factory_.GetWeakPtr(), notification_id)));
}
break;
default:
NOTREACHED();
}
}
FilesPolicyNotificationManager::WarningInfo::WarningInfo(
std::vector<base::FilePath> files_paths,
Policy warning_reason,
OnDlpRestrictionCheckedCallback warning_callback,
OnDlpRestrictionCheckedCallback dialog_callback)
: warning_reason(warning_reason),
warning_callback(std::move(warning_callback)),
dialog_callback(std::move(dialog_callback)) {
for (const auto& file_path : files_paths) {
files.emplace_back(file_path);
}
}
FilesPolicyNotificationManager::WarningInfo::WarningInfo(
std::vector<DlpConfidentialFile> files,
Policy warning_reason,
OnDlpRestrictionCheckedCallback warning_callback,
OnDlpRestrictionCheckedCallback dialog_callback)
: files(std::move(files)),
warning_reason(warning_reason),
warning_callback(std::move(warning_callback)),
dialog_callback(std::move(dialog_callback)) {}
FilesPolicyNotificationManager::WarningInfo::WarningInfo(WarningInfo&& other) {
files = std::move(other.files);
warning_reason = other.warning_reason;
warning_callback = std::move(other.warning_callback);
dialog_callback = std::move(other.dialog_callback);
}
FilesPolicyNotificationManager::WarningInfo::~WarningInfo() = default;
FilesPolicyNotificationManager::FileTaskInfo::FileTaskInfo(
dlp::FileAction action)
: action_(action) {}
FilesPolicyNotificationManager::FileTaskInfo::FileTaskInfo(
FileTaskInfo&& other) {
if (other.warning_info_.has_value()) {
warning_info_.emplace(std::move(other.warning_info_.value()));
}
blocked_files_ = std::move(other.blocked_files_);
action_ = other.action_;
widget_ = other.widget_;
if (widget_) {
widget_observation_.Observe(widget_);
}
}
FilesPolicyNotificationManager::FileTaskInfo::~FileTaskInfo() = default;
void FilesPolicyNotificationManager::FileTaskInfo::AddWidget(
views::Widget* widget) {
if (!widget) {
CHECK_IS_TEST();
return;
}
widget_ = widget;
widget_observation_.Observe(widget);
}
void FilesPolicyNotificationManager::FileTaskInfo::CloseWidget() {
if (!widget_) {
return;
}
widget_observation_.Reset();
widget_->Close();
widget_ = nullptr;
}
void FilesPolicyNotificationManager::FileTaskInfo::SetWarningInfo(
WarningInfo warning_info) {
warning_info_.emplace(std::move(warning_info));
}
void FilesPolicyNotificationManager::FileTaskInfo::ResetWarningInfo() {
warning_info_.reset();
}
FilesPolicyNotificationManager::WarningInfo*
FilesPolicyNotificationManager::FileTaskInfo::GetWarningInfo() {
return base::OptionalToPtr(warning_info_);
}
bool FilesPolicyNotificationManager::FileTaskInfo::HasWarningInfo() const {
return warning_info_.has_value();
}
void FilesPolicyNotificationManager::FileTaskInfo::AddBlockedFile(
DlpConfidentialFile file,
Policy policy) {
blocked_files_.emplace(file, policy);
}
void FilesPolicyNotificationManager::FileTaskInfo::OnWidgetDestroying(
views::Widget* widget) {
widget_ = nullptr;
widget_observation_.Reset();
}
FilesPolicyNotificationManager::DialogInfo::DialogInfo(
ShowDialogCallback dialog_callback,
file_manager::io_task::IOTaskId task_id,
base::OnceClosure timeout_callback)
: task_id(task_id),
notification_id(absl::nullopt),
dialog_callback(std::move(dialog_callback)),
timeout_callback(std::move(timeout_callback)) {}
FilesPolicyNotificationManager::DialogInfo::DialogInfo(
ShowDialogCallback dialog_callback,
std::string notification_id,
base::OnceClosure timeout_callback)
: task_id(absl::nullopt),
notification_id(notification_id),
dialog_callback(std::move(dialog_callback)),
timeout_callback(std::move(timeout_callback)) {}
FilesPolicyNotificationManager::DialogInfo::~DialogInfo() = default;
void FilesPolicyNotificationManager::ShowFilesPolicyNotification(
const std::string& notification_id,
file_manager::io_task::IOTaskId task_id) {
if (!HasWarning(task_id) && !HasBlockedFiles(task_id)) {
return;
}
const dlp::FileAction action = io_tasks_.at(task_id).action();
auto callback =
HasWarning(task_id)
? base::BindRepeating(&FilesPolicyNotificationManager::
HandleFilesPolicyWarningNotificationClick,
weak_factory_.GetWeakPtr(), task_id,
notification_id)
: base::BindRepeating(&FilesPolicyNotificationManager::
HandleFilesPolicyErrorNotificationClick,
weak_factory_.GetWeakPtr(), task_id,
notification_id);
// The notification should stay visible until dismissed.
message_center::RichNotificationData optional_fields;
optional_fields.never_timeout = true;
const NotificationType type = HasWarning(task_id) ? NotificationType::kWarning
: NotificationType::kError;
size_t file_count;
std::u16string file_name;
absl::optional<Policy> policy;
if (HasWarning(task_id)) {
CHECK(!io_tasks_.at(task_id).GetWarningInfo()->files.empty());
file_count = io_tasks_.at(task_id).GetWarningInfo()->files.size();
file_name = io_tasks_.at(task_id).GetWarningInfo()->files.begin()->title;
} else {
CHECK(HasBlockedFiles(task_id));
file_count = io_tasks_.at(task_id).blocked_files().size();
file_name = io_tasks_.at(task_id).blocked_files().begin()->first.title;
policy = io_tasks_.at(task_id).blocked_files().begin()->second;
}
auto notification = file_manager::CreateSystemNotification(
notification_id, GetNotificationTitle(type, action, file_count),
GetNotificationMessage(type, file_count, file_name, policy),
base::MakeRefCounted<message_center::HandleNotificationClickDelegate>(
std::move(callback)),
optional_fields);
notification->set_buttons(
{message_center::ButtonInfo(GetCancelButton(type)),
message_center::ButtonInfo(GetOkButton(type, action, file_count))});
auto* profile = Profile::FromBrowserContext(context_);
DCHECK(profile);
NotificationDisplayServiceFactory::GetForProfile(profile)->Display(
NotificationHandler::Type::TRANSIENT, *notification,
/*metadata=*/nullptr);
}
void FilesPolicyNotificationManager::HandleFilesPolicyWarningNotificationClick(
file_manager::io_task::IOTaskId task_id,
std::string notification_id,
absl::optional<int> button_index) {
if (!button_index.has_value()) {
return;
}
if (!HasIOTask(task_id)) {
// Task already completed.
return;
}
if (!HasWarning(task_id)) {
LOG(WARNING) << "Warning notification clicked but no warning info found";
return;
}
Dismiss(context_, notification_id);
switch (button_index.value()) {
case NotificationButton::CANCEL:
Cancel(task_id);
break;
case NotificationButton::OK:
if (io_tasks_.at(task_id).GetWarningInfo()->files.size() == 1) {
// Single file - proceed.
Resume(task_id);
} else {
// Multiple files - review.
ShowDialog(task_id, FilesDialogType::kWarning);
}
break;
}
}
void FilesPolicyNotificationManager::HandleFilesPolicyErrorNotificationClick(
file_manager::io_task::IOTaskId task_id,
std::string notification_id,
absl::optional<int> button_index) {
if (!button_index.has_value()) {
return;
}
if (!HasIOTask(task_id)) {
// Task already completed.
return;
}
if (!HasBlockedFiles(task_id)) {
LOG(WARNING) << "Error notification clicked but no blocked files found";
return;
}
Dismiss(context_, notification_id);
switch (button_index.value()) {
case NotificationButton::CANCEL:
io_tasks_.erase(task_id);
return;
case NotificationButton::OK:
if (io_tasks_.at(task_id).blocked_files().size() == 1) {
// Single file - open help page.
dlp::OpenLearnMore();
// Only delete if we don't need to show the dialog.
io_tasks_.erase(task_id);
} else {
// Multiple files - review.
ShowDialog(task_id, FilesDialogType::kError);
}
return;
default:
NOTREACHED();
}
}
void FilesPolicyNotificationManager::ShowDialogForIOTask(
file_manager::io_task::IOTaskId task_id,
FilesDialogType type,
gfx::NativeWindow modal_parent) {
if (!HasIOTask(task_id)) {
// Task already completed or timed out.
return;
}
ShowFilesPolicyDialog(std::ref(io_tasks_.at(task_id)), type, modal_parent);
if (type == FilesDialogType::kError) {
io_tasks_.erase(task_id);
}
}
void FilesPolicyNotificationManager::ShowDialogForNonIOTask(
std::string notification_id,
FilesDialogType type,
gfx::NativeWindow modal_parent) {
if (!HasNonIOTask(notification_id)) {
// Task already completed or timed out.
return;
}
ShowFilesPolicyDialog(std::ref(non_io_tasks_.at(notification_id)), type,
modal_parent);
if (type == FilesDialogType::kError) {
non_io_tasks_.erase(notification_id);
}
}
void FilesPolicyNotificationManager::ShowFilesPolicyDialog(
FileTaskInfo& info,
FilesDialogType type,
gfx::NativeWindow modal_parent) {
switch (type) {
case FilesDialogType::kUnknown:
LOG(WARNING) << "Unknown FilesDialogType passed";
return;
case FilesDialogType::kError:
if (info.blocked_files().empty() || info.widget()) {
return;
}
info.AddWidget(FilesPolicyDialog::CreateErrorDialog(
info.blocked_files(), info.action(), modal_parent));
return;
case FilesDialogType::kWarning:
if (!info.GetWarningInfo() || info.widget()) {
return;
}
CHECK(!info.GetWarningInfo()->warning_callback.is_null());
info.AddWidget(FilesPolicyDialog::CreateWarnDialog(
std::move(info.GetWarningInfo()->dialog_callback),
info.GetWarningInfo()->files, info.action(), modal_parent));
return;
}
}
void FilesPolicyNotificationManager::AddIOTask(
file_manager::io_task::IOTaskId task_id,
dlp::FileAction action) {
io_tasks_.emplace(std::move(task_id), FileTaskInfo(action));
}
void FilesPolicyNotificationManager::LaunchFilesApp(
std::unique_ptr<DialogInfo> info) {
// Start observing the browser list only if the queue is empty.
if (pending_dialogs_.empty()) {
BrowserList::AddObserver(this);
}
// Start timer.
info->timeout_timer.SetTaskRunner(task_runner_);
info->timeout_timer.Start(FROM_HERE, kOpenFilesAppTimeout,
std::move(info->timeout_callback));
pending_dialogs_.emplace(std::move(info));
ui::SelectFileDialog::FileTypeInfo file_type_info;
file_type_info.allowed_paths =
ui::SelectFileDialog::FileTypeInfo::ANY_PATH_OR_URL;
GURL files_swa_url = file_manager::util::GetFileManagerMainPageUrlWithParams(
ui::SelectFileDialog::SELECT_NONE,
/*title=*/{},
/*current_directory_url=*/{},
/*selection_url=*/{},
/*target_name=*/{}, &file_type_info,
/*file_type_index=*/0,
/*search_query=*/{},
/*show_android_picker_apps=*/false,
/*volume_filter=*/{});
ash::SystemAppLaunchParams params;
params.url = files_swa_url;
ash::LaunchSystemWebAppAsync(Profile::FromBrowserContext(context_),
ash::SystemWebAppType::FILE_MANAGER, params);
}
void FilesPolicyNotificationManager::OnBrowserAdded(Browser* browser) {
if (!ash::IsBrowserForSystemWebApp(browser,
ash::SystemWebAppType::FILE_MANAGER)) {
LOG(WARNING) << "Browser did not match Files app";
return;
}
// Files app successfully opened.
ShowPendingDialog(browser->window()->GetNativeWindow());
}
void FilesPolicyNotificationManager::SetTaskRunnerForTesting(
scoped_refptr<base::SequencedTaskRunner> task_runner) {
task_runner_ = task_runner;
}
void FilesPolicyNotificationManager::OnIOTaskStatus(
const file_manager::io_task::ProgressStatus& status) {
// Observe only Copy and Move tasks.
if (status.type != file_manager::io_task::OperationType::kCopy &&
status.type != file_manager::io_task::OperationType::kMove) {
return;
}
dlp::FileAction action =
status.type == file_manager::io_task::OperationType::kCopy
? dlp::FileAction::kCopy
: dlp::FileAction::kMove;
if (!HasIOTask(status.task_id) &&
status.state == file_manager::io_task::State::kQueued) {
AddIOTask(status.task_id, action);
return;
}
if (HasIOTask(status.task_id) && status.IsCompleted()) {
io_tasks_warning_timers_.erase(status.task_id);
// If task is cancelled or completed with error and has a warning, run the
// warning callback to cancel the warning.
if ((status.state == file_manager::io_task::State::kCancelled ||
status.state == file_manager::io_task::State::kError) &&
HasWarning(status.task_id)) {
CHECK(!io_tasks_.at(status.task_id)
.GetWarningInfo()
->warning_callback.is_null());
std::move(io_tasks_.at(status.task_id).GetWarningInfo()->warning_callback)
.Run(/*should_proceed=*/false);
io_tasks_.at(status.task_id).ResetWarningInfo();
}
// Remove only if the IOTask doesn't have any blocked file.
if (!HasBlockedFiles(status.task_id)) {
io_tasks_.erase(status.task_id);
}
}
}
bool FilesPolicyNotificationManager::HasBlockedFiles(
file_manager::io_task::IOTaskId task_id) const {
return HasIOTask(task_id) && !io_tasks_.at(task_id).blocked_files().empty();
}
bool FilesPolicyNotificationManager::HasWarning(
file_manager::io_task::IOTaskId task_id) const {
return HasIOTask(task_id) && io_tasks_.at(task_id).HasWarningInfo();
}
bool FilesPolicyNotificationManager::HasNonIOTask(
const std::string notification_id) const {
return base::Contains(non_io_tasks_, notification_id);
}
bool FilesPolicyNotificationManager::HasBlockedFiles(
const std::string notification_id) const {
return HasNonIOTask(notification_id) &&
!non_io_tasks_.at(notification_id).blocked_files().empty();
}
bool FilesPolicyNotificationManager::HasWarning(
const std::string notification_id) const {
return HasNonIOTask(notification_id) &&
non_io_tasks_.at(notification_id).HasWarningInfo();
}
void FilesPolicyNotificationManager::OnIOTaskWarningDialogClicked(
file_manager::io_task::IOTaskId task_id,
Policy warning_reason,
bool should_proceed) {
if (!HasIOTask(task_id) || !HasWarning(task_id)) {
// Task probably timed out.
return;
}
if (should_proceed) {
Resume(task_id);
} else {
Cancel(task_id);
}
}
void FilesPolicyNotificationManager::OnNonIOTaskWarningDialogClicked(
const std::string& notification_id,
bool should_proceed) {
if (!HasWarning(notification_id)) {
// Task probably timed out.
return;
}
std::move(
non_io_tasks_.at(notification_id).GetWarningInfo()->warning_callback)
.Run(should_proceed);
non_io_tasks_.erase(notification_id);
}
void FilesPolicyNotificationManager::OnLearnMoreButtonClicked(
const std::string& notification_id,
absl::optional<int> button_index) {
if (!button_index || button_index.value() != 0) {
return;
}
dlp::OpenLearnMore();
Dismiss(context_, notification_id);
}
void FilesPolicyNotificationManager::Resume(
file_manager::io_task::IOTaskId task_id) {
io_tasks_warning_timers_.erase(task_id);
if (!HasIOTask(task_id) || !HasWarning(task_id)) {
return;
}
auto* io_task_controller = GetIOTaskController(context_);
if (!io_task_controller) {
LOG(ERROR) << "FilesPolicyNotificationManager failed to find "
"file_manager::io_task::IOTaskController";
return;
}
file_manager::io_task::ResumeParams params;
params.policy_params = file_manager::io_task::PolicyResumeParams(
io_tasks_.at(task_id).GetWarningInfo()->warning_reason);
io_task_controller->Resume(task_id, std::move(params));
}
void FilesPolicyNotificationManager::Cancel(
file_manager::io_task::IOTaskId task_id) {
io_tasks_warning_timers_.erase(task_id);
if (!HasIOTask(task_id) || !HasWarning(task_id)) {
return;
}
auto* io_task_controller = GetIOTaskController(context_);
if (!io_task_controller) {
LOG(ERROR) << "FilesPolicyNotificationManager failed to find "
"file_manager::io_task::IOTaskController";
return;
}
io_task_controller->Cancel(task_id);
}
void FilesPolicyNotificationManager::ShowDlpBlockNotification(
std::vector<base::FilePath> blocked_files,
dlp::FileAction action) {
const std::string notification_id = GetNotificationId(notification_count_++);
std::unique_ptr<message_center::Notification> notification;
if (DlpFilesController::kNewFilesPolicyUXEnabled) {
// The notification should stay visible until actioned upon.
message_center::RichNotificationData optional_fields;
optional_fields.never_timeout = true;
notification = file_manager::CreateSystemNotification(
notification_id,
GetNotificationTitle(NotificationType::kError, action,
blocked_files.size()),
GetNotificationMessage(
NotificationType::kError, blocked_files.size(),
blocked_files.begin()->BaseName().LossyDisplayName(), Policy::kDlp),
base::MakeRefCounted<PolicyNotificationClickHandler>(base::BindOnce(
&FilesPolicyNotificationManager::HandleDlpErrorNotificationClick,
weak_factory_.GetWeakPtr(), notification_id,
std::vector<DlpConfidentialFile>(blocked_files.begin(),
blocked_files.end()),
action)),
optional_fields);
notification->set_buttons(
{message_center::ButtonInfo(GetCancelButton(NotificationType::kError)),
message_center::ButtonInfo(GetOkButton(
NotificationType::kError, action, blocked_files.size()))});
} else {
std::u16string title;
std::u16string message;
switch (action) {
case dlp::FileAction::kDownload:
title = l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_DOWNLOAD_BLOCK_TITLE);
// ignore `blocked_files.size()` for downloads.
message = l10n_util::GetStringUTF16(
IDS_POLICY_DLP_FILES_DOWNLOAD_BLOCK_MESSAGE);
break;
case dlp::FileAction::kUpload:
title =
l10n_util::GetStringUTF16(IDS_POLICY_DLP_FILES_UPLOAD_BLOCK_TITLE);
message = l10n_util::GetPluralStringFUTF16(
IDS_POLICY_DLP_FILES_UPLOAD_BLOCK_MESSAGE, blocked_files.size());
break;
case dlp::FileAction::kOpen:
case dlp::FileAction::kShare:
title =
l10n_util::GetStringUTF16(IDS_POLICY_DLP_FILES_OPEN_BLOCK_TITLE);
message = l10n_util::GetPluralStringFUTF16(
IDS_POLICY_DLP_FILES_OPEN_BLOCK_MESSAGE, blocked_files.size());
break;
case dlp::FileAction::kCopy:
case dlp::FileAction::kMove:
case dlp::FileAction::kTransfer:
case dlp::FileAction::kUnknown:
// TODO(b/269609831): Show correct notification here.
return;
}
notification = file_manager::CreateSystemNotification(
notification_id, title, message,
base::MakeRefCounted<message_center::HandleNotificationClickDelegate>(
base::BindRepeating(
&FilesPolicyNotificationManager::OnLearnMoreButtonClicked,
weak_factory_.GetWeakPtr(), notification_id)));
notification->set_buttons({message_center::ButtonInfo(
l10n_util::GetStringUTF16(IDS_LEARN_MORE))});
}
auto* profile = Profile::FromBrowserContext(context_);
DCHECK(profile);
NotificationDisplayServiceFactory::GetForProfile(profile)->Display(
NotificationHandler::Type::TRANSIENT, *notification,
/*metadata=*/nullptr);
}
void FilesPolicyNotificationManager::ShowDlpWarningNotification(
OnDlpRestrictionCheckedCallback callback,
std::vector<base::FilePath> warning_files,
const DlpFileDestination& destination,
dlp::FileAction action) {
if (DlpFilesController::kNewFilesPolicyUXEnabled) {
const std::string& notification_id =
GetNotificationId(notification_count_++);
// Store the task info.
FileTaskInfo info(action);
info.SetWarningInfo(
{std::vector<DlpConfidentialFile>{warning_files.begin(),
warning_files.end()},
Policy::kDlp, std::move(callback),
base::BindOnce(
&FilesPolicyNotificationManager::OnNonIOTaskWarningDialogClicked,
weak_factory_.GetWeakPtr(), notification_id)});
non_io_tasks_.emplace(notification_id, std::move(info));
std::vector<message_center::ButtonInfo> buttons = {
message_center::ButtonInfo(GetCancelButton(NotificationType::kWarning)),
message_center::ButtonInfo(GetOkButton(NotificationType::kWarning,
action, warning_files.size()))};
// The notification should stay visible until actioned upon.
message_center::RichNotificationData optional_fields;
optional_fields.never_timeout = true;
auto notification = file_manager::CreateSystemNotification(
notification_id,
GetNotificationTitle(NotificationType::kWarning, action,
/*file_count=*/absl::nullopt),
GetNotificationMessage(
NotificationType::kWarning, warning_files.size(),
warning_files.begin()->BaseName().LossyDisplayName(),
absl::nullopt),
base::MakeRefCounted<PolicyNotificationClickHandler>(base::BindOnce(
&FilesPolicyNotificationManager::HandleDlpWarningNotificationClick,
weak_factory_.GetWeakPtr(), notification_id)));
notification->set_buttons(std::move(buttons));
auto* profile = Profile::FromBrowserContext(context_);
DCHECK(profile);
NotificationDisplayServiceFactory::GetForProfile(profile)->Display(
NotificationHandler::Type::TRANSIENT, *notification,
/*metadata=*/nullptr);
// Start warning timer.
non_io_tasks_warning_timers_[notification_id] =
std::make_unique<base::OneShotTimer>();
non_io_tasks_warning_timers_[notification_id]->SetTaskRunner(task_runner_);
non_io_tasks_warning_timers_[notification_id]->Start(
FROM_HERE, kWarningTimeout,
base::BindOnce(
&FilesPolicyNotificationManager::OnNonIOTaskWarningTimedOut,
weak_factory_.GetWeakPtr(), notification_id));
} else {
FilesPolicyDialog::CreateWarnDialog(
std::move(callback),
std::vector<DlpConfidentialFile>{warning_files.begin(),
warning_files.end()},
action,
/*modal_parent=*/nullptr, destination);
}
}
void FilesPolicyNotificationManager::PauseIOTask(
file_manager::io_task::IOTaskId task_id,
OnDlpRestrictionCheckedCallback callback,
std::vector<base::FilePath> warning_files,
dlp::FileAction action,
Policy warning_reason) {
auto* io_task_controller = GetIOTaskController(context_);
if (!io_task_controller) {
// Proceed because the IO task can't be paused.
std::move(callback).Run(/*should_proceed=*/true);
return;
}
// Sometimes DLP checks are done before FilesPolicyNotificationManager is
// lazily created, so the task is not tracked and the pausing won't happen. On
// the other hand, the IO task may be aborted/canceled already so the info
// saved may be not needed anymore.
if (!HasIOTask(task_id)) {
AddIOTask(task_id, action);
}
io_tasks_.at(task_id).SetWarningInfo(
{std::move(warning_files), warning_reason, std::move(callback),
base::BindOnce(
&FilesPolicyNotificationManager::OnIOTaskWarningDialogClicked,
weak_factory_.GetWeakPtr(), task_id, warning_reason)});
file_manager::io_task::PauseParams pause_params;
pause_params.policy_params = file_manager::io_task::PolicyPauseParams(
warning_reason, io_tasks_.at(task_id).GetWarningInfo()->files.size(),
io_tasks_.at(task_id)
.GetWarningInfo()
->files.begin()
->file_path.BaseName()
.value());
io_task_controller->Pause(task_id, std::move(pause_params));
// Start warning timer.
io_tasks_warning_timers_[task_id] = std::make_unique<base::OneShotTimer>();
io_tasks_warning_timers_[task_id]->SetTaskRunner(task_runner_);
io_tasks_warning_timers_[task_id]->Start(
FROM_HERE, kWarningTimeout,
base::BindOnce(&FilesPolicyNotificationManager::OnIOTaskWarningTimedOut,
weak_factory_.GetWeakPtr(), task_id));
}
void FilesPolicyNotificationManager::OnIOTaskAppLaunchTimedOut(
file_manager::io_task::IOTaskId task_id) {
if (pending_dialogs_.empty()) {
return;
}
DCHECK(pending_dialogs_.front()->task_id == task_id);
// Stop waiting for the Files App and fallback to system modal.
ShowPendingDialog(/*modal_parent=*/nullptr);
}
void FilesPolicyNotificationManager::OnNonIOTaskAppLaunchTimedOut(
std::string notification_id) {
// If the notification id doesn't match the front element, we already showed
// the dialog for this notification before timing out.
if (pending_dialogs_.empty()) {
return;
}
DCHECK(pending_dialogs_.front()->notification_id == notification_id);
// Stop waiting for the Files App and fallback to system modal.
ShowPendingDialog(/*modal_parent=*/nullptr);
}
void FilesPolicyNotificationManager::ShowPendingDialog(
gfx::NativeWindow modal_parent) {
if (pending_dialogs_.empty()) {
return;
}
// Pop the dialog. This also stops the timer if it hasn't fired already.
CHECK(pending_dialogs_.front()->dialog_callback);
std::move(pending_dialogs_.front()->dialog_callback).Run(modal_parent);
pending_dialogs_.pop();
// If this was the last dialog, stop observing the browser list.
if (pending_dialogs_.empty()) {
BrowserList::RemoveObserver(this);
}
}
void FilesPolicyNotificationManager::OnIOTaskWarningTimedOut(
const file_manager::io_task::IOTaskId& task_id) {
// Remove the timer.
io_tasks_warning_timers_.erase(task_id);
if (!HasIOTask(task_id) || !HasWarning(task_id)) {
return;
}
// Close the warning dialog if there's any.
io_tasks_.at(task_id).CloseWidget();
// Abort the IOtask. No need to run the warning callback here as it will be
// called in OnIOTaskStatus when there's an update sent that the task
// completed with error.
auto* io_task_controller = GetIOTaskController(context_);
io_task_controller->CompleteWithError(
task_id, file_manager::io_task::PolicyError(
file_manager::io_task::PolicyErrorType::kDlpWarningTimeout));
}
void FilesPolicyNotificationManager::OnNonIOTaskWarningTimedOut(
const std::string& notification_id) {
// Remove the timer.
non_io_tasks_warning_timers_.erase(notification_id);
// Dismiss the notification if it's still shown.
Dismiss(context_, notification_id);
if (!HasWarning(notification_id)) {
return;
}
// Close the warning dialog if there's any.
non_io_tasks_.at(notification_id).CloseWidget();
// Run the warning callback with false.
std::move(
non_io_tasks_.at(notification_id).GetWarningInfo()->warning_callback)
.Run(/*should_proceed=*/false);
ShowDlpWarningTimeoutNotification(non_io_tasks_.at(notification_id).action());
non_io_tasks_.erase(notification_id);
}
} // namespace policy
| [
"[email protected]"
] | |
3d2cc237fc9cccde02dcb5906fce2f8e4793b046 | dbf7546520435e088b47e19bfd04c0c6abdd0e05 | /5_pySerialRead/pythonArduino/pythonArduino.ino | 6eb22ca9ee4df2e72756748e9c9c1f304a1d34f8 | [] | no_license | heitorrapela/ArduinoWorkshop | fa85b16b81b09a3096f088c5a3e7439143cacdef | caa0fa24baba5aca48457df91b7e0969ea56bef2 | refs/heads/master | 2021-09-05T23:27:17.596877 | 2018-01-31T16:36:23 | 2018-01-31T16:36:23 | 105,684,389 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 903 | ino | /*
Blink - Modificado
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
Serial.begin(9600);
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
int i = 1;
if(i == 1)
{
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Led Aceso");
delay(1000); // wait for a second
i = 0;
}
if(i == 0)
{
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
Serial.println("Led Apagado");
delay(1000); // wait for a second
i = 0;
}
}
| [
"[email protected]"
] | |
26dea91ff8a4979f4ee9d77d9d7ff8457dcc60ee | 97bd2bc90481e59da387772cd414f07516e6f2cd | /pastel/sys/bit/highest_bit.h | 664ea7b759f78e72034ead473b4a8407493e6358 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | kaba2/pastel | c0371639be222cfa00252420c54057a54a93a4a3 | c7fb78fff3cbd977b884e54e21651f6346165ff5 | refs/heads/master | 2021-11-12T00:12:49.343600 | 2021-10-31T04:18:28 | 2021-10-31T04:18:28 | 231,507,632 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 559 | h | // Description: Index of the highest bit
// Documentation: bit_tricks.txt
#ifndef PASTELSYS_HIGHEST_BIT_H
#define PASTELSYS_HIGHEST_BIT_H
#include "pastel/sys/integer/finite_integer_concept.h"
#include "pastel/sys/mytypes.h"
namespace Pastel
{
//! Returns the index of the highest 1-bit of the given integer.
/*!
returns:
The index of the highest 1-bit, if non-zero.
Otherwise -1.
*/
template <typename Finite_Integer>
integer highestBit(const Finite_Integer& data);
}
#include "pastel/sys/bit/highest_bit.hpp"
#endif
| [
"[email protected]"
] | |
dccd8e50dfea4bc563298260329fba8f43d92a8c | 927442d1aadd124d1ec5b5a56b3c442ba2735841 | /08_cocos2d-x/day13/Demo2_Code/Classes/Enemy.h | 28b54b1c11f543943e0acf9c37f421ffb3aa0ec8 | [] | no_license | yitian630/Tarena | 2dc2fd276e1404330222d28fb10ddd0116eca74b | 49b587ab58cb5e173d6dcd2701ea6db3b35cdf0b | refs/heads/master | 2021-01-22T02:49:19.160833 | 2015-03-12T06:58:26 | 2015-03-12T06:58:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 796 | h | //
// Enemy.h
// XiaoQianRun
//
// Created by tarena on 14-6-23.
//
//
#ifndef __XiaoQianRun__Enemy__
#define __XiaoQianRun__Enemy__
#include <iostream>
#include "cocos2d.h"
#include "MySprite.h"
USING_NS_CC;
typedef enum {
LEFT,
RIGHT,
}Enemy_Dir;
class Enemy : public MySprite {
public:
bool initEnemy(float speed);
void startMove();
//获取 敌人的碰撞区域
CCRect getCollisionArea();
protected:
//创建敌人动画
CCAnimate* createAnimate(const char* imageName, int col, int row);
private:
Enemy_Dir m_currDir;
float m_speed;
void Move();
void update(float time);
//敌人最大移动距离
float m_MaxDis;
//敌人当前移动距离
float m_CurrDis;
};
#endif /* defined(__XiaoQianRun__Enemy__) */
| [
"[email protected]"
] | |
0d741b53ca7fec076487b7a33ea07e9d2d2821c5 | 8be1079a694a31c1c69d296b3afb8180e5969238 | /BFSDFS/game.cpp | fc4e9cc21c3079f34f6359ae22bf5c5c7da5c84d | [] | no_license | haoyuanz13/Codings | 7a2a2b47f95ea7a1e4e419f7aab90eb1d8771c8c | ba8d20df6bf27089c9b5bce9d87cd9de44cc2897 | refs/heads/master | 2022-04-17T21:08:32.256496 | 2020-04-12T04:10:46 | 2020-04-12T04:10:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,276 | cpp | #include <vector>
#include <iostream>
#include <queue>
#include <unordered_map>
using namespace std;
void pascalTriangle(int k) {
vector<vector<int>> pas;
vector<int> init {1};
pas.push_back(init);
vector<int> pre = pas.front();
for (int i = 1; i < k; i ++) {
vector<int> cur {1};
for (int c = 1; c < i; c ++) {
cur.push_back(pre[c - 1] + pre[c]);
}
cur.push_back(1);
pre = cur;
pas.push_back(cur);
}
for (int i = 0; i < k; i ++) {
for (int c = 0; c < pas[i].size(); c ++)
cout << pas[i][c] << " ";
cout << "\n";
}
return;
}
// check circle
vector<int> turnR(vector<int> dir) {
int x = 1 * dir[1];
int y = -1 * dir[0];
vector<int> res {x, y};
return res;
}
vector<int> turnL(vector<int> dir) {
int x = -1 * dir[1];
int y = 1 * dir[0];
vector<int> res {x, y};
return res;
}
vector <string> doesCircleExist(vector <string> commands) {
vector<string> res;
for (int i = 0; i < commands.size(); i ++) {
string cmd_cur = commands[i];
int len = cmd_cur.size();
vector<int> dir {0, 1};
int x = 0, y = 0;
for (int j = 0; j < 4; j ++) {
for (int k = 0; k < len; k ++) {
char cc = cmd_cur.at(k);
if (cc == 'G') {
x += dir[0];
y += dir[1];
}
else if (cc == 'R')
dir = turnR(dir);
else if (cc == 'L')
dir = turnL(dir);
}
}
if (x == 0 && y == 0)
res.push_back("YES");
else
res.push_back("NO");
}
return res;
}
// struct UndirectedGraphNode {
// int label;
// vector<UndirectedGraphNode*> neighbors;
// UndirectedGraphNode(int x) : label(x) {};
// };
// UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) {
// if(node == nullptr)
// return node;
// UndirectedGraphNode* newnode = new UndirectedGraphNode(node->label);
// unordered_map<int, UndirectedGraphNode*> hash;
// hash[node->label] = newnode;
// // store original node list
// queue<UndirectedGraphNode*> que;
// que.push(node);
// while (!que.empty()) {
// UndirectedGraphNode* cur = que.front();
// que.pop();
// vector<UndirectedGraphNode*> cur_nei = cur->neighbors;
// // traverse all neighbors
// for (int i = 0; i < cur_nei.size(); i ++) {
// UndirectedGraphNode* cur_node_nei = cur_nei[i];
// if (hash.count(cur_node_nei->label) <= 0) {
// // clone
// UndirectedGraphNode* clone_nei = new UndirectedGraphNode(cur_node_nei->label);
// hash[clone_nei->label] = clone_nei;
// // push original node into queue
// que.push(cur_node_nei);
// } // end if
// hash[cur->label]->neighbors.push_back(hash[cur_node_nei->label]);
// } // end for
// } // end while
// return newnode;
// }
// int bombGame(vector<vector<char>>& grid) {
// if (grid.empty() || grid[0].empty())
// return 0;
// int row = grid.size(), col = grid[0].size();
// int maxE = 0;
// // count killed enemy in row direction
// int kill_r = 0;
// // count killed enemy in col direction
// int kill_c[col] = {};
// for (int r = 0; r < row; r ++) {
// for (int c = 0; c < col; c ++) {
// // count killed enemy in row direction
// if (c == 0 || grid[r][c - 1] == 'W') {
// kill_r = 0;
// for (int k = c; k < col && grid[r][k] != 'W'; k ++)
// kill_r += (grid[r][k] == 'E')? 1 : 0;
// }
// // count killed enemy in column direction
// if (r == 0 || grid[r - 1][c] == 'W') {
// kill_c[c] = 0;
// for (int k = r; k < row && grid[k][c] != 'W'; k ++)
// kill_c[c] += (grid[k][c] == 'E')? 1 : 0;
// }
// // only count for empty space
// if (grid[r][c] == '0')
// maxE = (maxE > kill_r + kill_c[c])? maxE : kill_r + kill_c[c];
// }
// }
// return maxE;
// }
// vector<vector<int>> dir {{1, 0}, {-1, 0}, {0, -1}, {0, 1},
// {1, 1}, {-1, -1}, {-1, 1}, {1, -1}};
// int detect(vector<vector<int>> board, int row, int col, int r, int c) {
// int live = 0;
// for (int i = 0; i < 8; i ++) {
// int next_r = r + dir[i][0];
// int next_c = c + dir[i][1];
// if (next_r < 0 || next_r >= row || next_c < 0 || next_c >= col)
// continue;
// live += (board[next_r][next_c]) & 1;
// }
// return live;
// }
// void gameOfLife(vector<vector<int>>& board) {
// if (board.empty() || board[0].empty())
// return;
// int row = board,size(), col = board[0].size();
// for (int r = 0; r < row; r ++) {
// for (int c = 0; c < col; c ++) {
// int num_live = detect(board, row, col, r, c);
// if (board[r][c] == 1 && num_live >= 2 && num_live <= 3)
// board[r][c] = 3;
// else if (board[r][c] == 0 && num_live == 3)
// board[r][c] = 2;
// }
// }
// for (int r = 0; r < row; r ++) {
// for (int c = 0; c < col; c ++)
// board[r][c] >>= 1;
// }
// return;
// }
int main() {
// vector<vector<char>> grid {{'0', 'E', '0', '0'},
// {'E', '0', 'W', 'E'},
// {'0', 'E', '0', '0'}};
// cout << bombGame(grid) << endl;
pascalTriangle(4);
} | [
"[email protected]"
] | |
56e00354071db7b2ffa95ab6e93995ab650dcb4e | 202087279de4b66457eac88cf1b7d7c21769fa53 | /ExploringScaleSymmetry/Chapter6/ch6_figure17.cpp | f0b2846dface5171f388c69b95d5c8860fdcd988 | [
"MIT"
] | permissive | TGlad/ExploringScaleSymmetry | 433475d0661914a010c55f4f06e03b53fde476e4 | 25b2dae0279a0ac26f6bae2277d3b76a1cda8b04 | refs/heads/master | 2021-07-02T09:13:26.160214 | 2021-01-27T11:07:14 | 2021-01-27T11:07:14 | 217,837,988 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,721 | cpp | // Thomas Lowe, 2020.
// Generates an image of the colour-symmetric and scale-symmetric three-colour automaton, on a symmetric hexagon of seed points.
// The method generates to a larger image first (called out), then downscales to a smaller one. The result of this is that
// the dense and repeated mixture of all three colours in the Koch-like fractal regions appears as as a constant colour (a mix of all three).
#include "stdafx.h"
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "imagewrite.h"
#include <set>
// resolution:
static int automataSize = 81 * 3 * 3 * 3;
// the colours of the states (colours[0] is just background).
static Vector3d colours[5] = { Vector3d(0.5, 0.5, 0.5), Vector3d(40, 220, 70) / 255.0, Vector3d(250, 210, 0) / 255.0, Vector3d(255, 0, 0) / 255.0, Vector3d(20, 0, 255) / 255.0 };
static int width = (automataSize * 31) / 10;
static int height = width;
static int fullWidth = width;
static void putpixel(vector<BYTE> &image, const Vector2i &pos, const Vector3d &col)
{
if (pos[0] < 0 || pos[0] >= width || pos[1] < 0 || pos[1] >= height)
return;
int ind = 3 * (pos[0] + width*pos[1]);
for (int i = 0; i < 3; i++)
image[ind + i] = (BYTE)(255.0*col[i]);
}
static void putpix(vector<BYTE> &out, const Vector2i &pos, int shade)
{
if (pos[0] < 0 || pos[0] >= fullWidth || pos[1] < 0 || pos[1] >= fullWidth)
return;
out[pos[0] + fullWidth*pos[1]] = shade;
}
static int getpix(vector<BYTE> &out, const Vector2i &pos)
{
if (pos[0] < 0 || pos[0] >= fullWidth || pos[1] < 0 || pos[1] >= fullWidth)
return 0;
return out[pos[0] + fullWidth*pos[1]];
}
static Vector2i toVector2i(const Vector2d &pos)
{
Vector2i vec;
vec[0] = (int)pos[0];
if ((double)vec[0] > pos[0])
vec[0]--;
vec[1] = (int)pos[1];
if ((double)vec[1] > pos[1])
vec[1]--;
return vec;
}
// adds a mid pixel between three parent pixels
bool addMid(vector<BYTE> &out, const Vector2i &pos0, const Vector2i &pos1, const Vector2i &pos2)
{
Vector2i mid = (pos0 + pos1 + pos2) / 3;
if (mid[0] < 0 || mid[0] >= width || mid[1] < 0 || mid[1] >= width)
return false;
if (getpix(out, mid) > 0)
return false;
int col0 = getpix(out, pos0);
int col1 = getpix(out, pos1);
int col2 = getpix(out, pos2);
if (col0 == 0)
col0 = 1;
if (col1 == 0)
col1 = 1;
if (col2 == 0)
col2 = 1;
if (col0 == 0 || col1 == 0 || col2 == 0)
return false;
int colour;
if (col0 == col1 && col0 == col2) // positivity
colour = col0;
// ambiguous case
else if (col0 == col1)
colour = col0;
else if (col0 == col2)
colour = col0;
else if (col1 == col2)
colour = col1;
// if there's not 3 the same, or 2 the same, then there must be 1 of each
else // 012=3, 013=4, 023=5 123=6 --> 3, 2, 1, 0, i.e. 6 - sum. .: 10-sum
colour = 10 - (col0 + col1 + col2);
putpix(out, mid, colour);
return true;
}
int chapter6Figure17()
{
vector<BYTE> out(width*height); // .bmp pixel buffer
int startWidth = width;
memset(&out[0], 0, out.size() * sizeof(BYTE));
Vector2d xaxis[2] = { Vector2d(1, 0), Vector2d(cos(30.0*pi / 180.0), sin(30.0*pi / 180.0)) };
Vector2d yaxis[2] = { Vector2d(cos(60.0*pi / 180.0), sin(60.0*pi / 180.0)), Vector2d(cos(30.0*pi / 180.0), -sin(30.0*pi / 180.0)) };
srand(120);
bool found = true;
int scale = automataSize;
Vector2i offset(width / 2, width / 2);
// initialise
int count = 1;
for (int i = -count; i <= count; i++)
{
for (int j = -count; j <= count; j++)
{
int col = 0;
if (i == 0 && abs(j) == 1)
col = 2;
else if (abs(i) == 1 && j == 0)
col = 3;
else if (i == 1 && j == -1)
col = 4;
else if (i == -1 && j == 1)
col = 4;
else
col = 1;
putpix(out, offset + Vector2i(i, j)*scale, col);
}
}
int k = 0;
do
{
found = false;
int count = (int)(1.0*(double)width / (double)scale);
for (int i = -count; i < count; i++)
{
for (int j = -count; j < count; j++)
{
Vector2i pos0 = Vector2i(i, j)*scale;
Vector2i pos1 = Vector2i(i+1, j)*scale;
Vector2i pos2 = Vector2i(i, j+1)*scale;
Vector2i pos3 = Vector2i(i+1, j+1)*scale;
found |= addMid(out, offset + pos0, offset + pos1, offset + pos2);
found |= addMid(out, offset + pos1, offset + pos2, offset + pos3);
}
}
if (!found)
break;
scale /= 3;
count = (int)(1.0*(double)width / scale);
for (int i = -count; i < count; i++)
{
for (int j = -count; j < count; j++)
{
Vector2i xAxis = Vector2i(2, -1)*scale;
Vector2i yAxis = Vector2i(1, 1)*scale;
Vector2i pos0 = i*xAxis + j*yAxis;
Vector2i pos1 = (i+1)*xAxis + j*yAxis;
Vector2i pos2 = i*xAxis + (j+1)*yAxis;
Vector2i pos3 = (i+1)*xAxis + (j+1)*yAxis;
found |= addMid(out, offset + pos0, offset + pos1, offset + pos2);
found |= addMid(out, offset + pos1, offset + pos2, offset + pos3);
}
}
} while (found);
width /= 2;
height /= 2;
vector<BYTE> image(width*height*3); // .bmp pixel buffer
memset(&image[0], 0, image.size() * sizeof(BYTE));
for (int i = 0; i < width; i++)
{
for (int j = 0; j < height; j++)
{
int x = 2 * i + (height / 2 - j);
int y = 2 * j;
Vector3d col(0, 0, 0);
col += colours[getpix(out, Vector2i(x, y))];
col += colours[getpix(out, Vector2i(x, y + 1))];
col += colours[getpix(out, Vector2i(x + 1, y))];
col += colours[getpix(out, Vector2i(x + 1, y + 1))];
putpixel(image, Vector2i(i, j), col / 4.0);
}
}
stbi_write_png("three_colour_automaton.png", width, height, 3, &image[0], 3*width);
return 0;
}
| [
"[email protected]"
] | |
c63c6a4ec0de641274b12f6e897ba831fa58517d | 238185b2c5e09228e6aeafbd808df41032887ac8 | /21210_Spring2018/hello.cpp | d4e543f930025e9cac33be751bed840a7d8eb6bf | [] | no_license | zmiksis/SciComp | ffdbaf8d0e777485457d9e5d3a4dbd3792a84e39 | 661141e1014cd75d861ccdb1e18ad448617f24d1 | refs/heads/master | 2020-12-15T16:57:25.414177 | 2020-01-20T19:50:42 | 2020-01-20T19:50:42 | 235,185,895 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 98 | cpp | #include <iostream>
using namespace std;
int main(){
cout << "Hello there" << endl;
return 0;
} | [
"[email protected]"
] | |
9d69418b8b1e908b5e8f05c6b1bdd2c7584ae695 | e4833fb04f56ac806d91debc0571804e88512d4e | /2021/05/05/hana.cpp | d8412d32c088e66f0e6b6b0de6d7e3003beefd8a | [] | no_license | Papillon6814/tracker | f7cca3b2f19c1c63b4bed226abdd7a66f550a1dd | 1cd1012865f317b85670da7b3e41364270cf7f2a | refs/heads/main | 2023-06-26T18:28:45.089288 | 2021-07-10T13:26:03 | 2021-07-10T13:26:03 | 303,100,401 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,463 | cpp | #include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
using vl = vector<ll>;
using vc = vector<char>;
using vii = vector<vector<int>>;
using vll = vector<vector<ll>>;
using vcc = vector<vector<char>>;
using vs = vector<string>;
using Pi = pair<int , int>;
using Pl = pair<ll, ll>;
using vpi = vector<Pi>;
using vpl = vector<Pl>;
#define rep(i, n) for (ll i = 0; i < n; i++)
#define REP(n) for (ll i = 0; i < n; i++)
#define repint(i, n) for (int i = 0; i < n; i++)
#define rep2(i, s, n) for (int i = (s); i < n; i++)
#define REP2(s, n) for (int i = (s); i < n; i++)
#define rep3(i ,j, n, m) rep(i, n)rep(j, m)
#define REP3(n, m) rep(i, n)rep(j, m)
#define sort(A) sort(A.begin(),A.end());
#define reverse(A) reverse(A.begin(),A.end());
#define k(s) cout << fixed << setprecision(s);
const long double pi=3.14159265358979323846;
const long long MOD=1000000007;
ll R, B;
ll x, y;
bool check(ll mid) {
// 花束を作るために使う1本を花束の数だけ引いておく
ll r = R-mid;
ll b = B-mid;
if(r < 0 || b < 0) return false;
// 花束が作れる数の計算
ll num = r/(x-1) + b/(y-1);
return (num >= mid);
}
int main() {
cin >> R >> B;
cin >> x >> y;
ll ok = 0;
ll ng = (R+B)/2 + 1;
while(ng - ok > 1) {
ll mid = (ok+ng)/2;
if(check(mid)) {
ok = mid;
} else {
ng = mid;
}
}
cout << ok << endl;
} | [
"[email protected]"
] | |
342354238eea5f21c2c5731415ebabdeb3ff0156 | b7c477fec03302834a7ae96921de6bd1e194ee8d | /Day2/day2_main.cpp | 0835c359451f6abc47006a319e99f844a5f4f306 | [] | no_license | Meet2020mp/Master-Data-Structure-and-Algorithms-with-Cpp-Assignments | f525c172cb7a969ccfe6635cc3b98da18f12d5a2 | b94669f2cd6aea2b8fe1015c5c69f13adb70950b | refs/heads/main | 2023-07-02T13:48:11.963831 | 2021-08-08T09:21:05 | 2021-08-08T09:21:05 | 393,369,212 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 323 | cpp | //Question: Find the output of the following code snippet:
//int i =0, j = 0;
//int *p = &i, *q = &j;
//q = p;
//*q = 2
//cout<<i<<" "<<j
//Solution
#include <iostream>
using namespace std;
int main()
{
int i=0,j=0;
int *p=&i,*q=&j;
q=p;
*q=2;
cout << i << " "<<j;
return 0;
} | [
"[email protected]"
] | |
6cac75219e4d8f44646bba0e106bd53789ea147b | b4ce9e80b8a5fab531136f0b6ac17128f0b60376 | /125_GeV_Correction2/Run07Signal.h | ee839de77e5de912a6cbb80b1fc1566334167b6b | [] | no_license | k579l290/Physics-Research-summer2019 | 0a3c81e5fa18c9b862cfe89e1955061fc8a4524a | 4b4e9c7b329b848b0f24912a0ea8ed846ddcc32d | refs/heads/master | 2020-12-15T19:05:53.507422 | 2020-01-21T00:13:50 | 2020-01-21T00:13:50 | 235,220,546 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 67,132 | h | //////////////////////////////////////////////////////////
// This class has been automatically generated on
// Mon Jul 1 06:32:53 2019 by ROOT version 6.14/06
// from TTree Delphes/Analysis tree
// found on file: run07_Higgs0or1Jet_PtGen_450_820_forPtReco550_750GeV.root
//////////////////////////////////////////////////////////
#ifndef Run07Signal_h
#define Run07Signal_h
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
// Header file for the classes stored in the TTree if any.
#include "TClonesArray.h"
#include "TObject.h"
class Run07Signal {
public :
TTree *fChain; //!pointer to the analyzed TTree or TChain
Int_t fCurrent; //!current Tree number in a TChain
// Fixed size dimensions of array or collections stored in the TTree if any.
static constexpr Int_t kMaxEvent = 1;
static constexpr Int_t kMaxParticle = 4231;
static constexpr Int_t kMaxTrack = 234;
static constexpr Int_t kMaxTower = 343;
static constexpr Int_t kMaxEFlowTrack = 234;
static constexpr Int_t kMaxEFlowPhoton = 134;
static constexpr Int_t kMaxEFlowNeutralHadron = 162;
static constexpr Int_t kMaxGenJet = 15;
static constexpr Int_t kMaxGenMissingET = 1;
static constexpr Int_t kMaxJet = 14;
static constexpr Int_t kMaxElectron = 4;
static constexpr Int_t kMaxPhoton = 4;
static constexpr Int_t kMaxMuon = 4;
static constexpr Int_t kMaxFatJet = 6;
static constexpr Int_t kMaxMissingET = 1;
static constexpr Int_t kMaxScalarHT = 1;
// Declaration of leaf types
Int_t Event_;
UInt_t Event_fUniqueID[kMaxEvent]; //[Event_]
UInt_t Event_fBits[kMaxEvent]; //[Event_]
Long64_t Event_Number[kMaxEvent]; //[Event_]
Float_t Event_ReadTime[kMaxEvent]; //[Event_]
Float_t Event_ProcTime[kMaxEvent]; //[Event_]
Int_t Event_ProcessID[kMaxEvent]; //[Event_]
Int_t Event_MPI[kMaxEvent]; //[Event_]
Float_t Event_Weight[kMaxEvent]; //[Event_]
Float_t Event_Scale[kMaxEvent]; //[Event_]
Float_t Event_AlphaQED[kMaxEvent]; //[Event_]
Float_t Event_AlphaQCD[kMaxEvent]; //[Event_]
Int_t Event_ID1[kMaxEvent]; //[Event_]
Int_t Event_ID2[kMaxEvent]; //[Event_]
Float_t Event_X1[kMaxEvent]; //[Event_]
Float_t Event_X2[kMaxEvent]; //[Event_]
Float_t Event_ScalePDF[kMaxEvent]; //[Event_]
Float_t Event_PDF1[kMaxEvent]; //[Event_]
Float_t Event_PDF2[kMaxEvent]; //[Event_]
Int_t Event_size;
Int_t Particle_;
UInt_t Particle_fUniqueID[kMaxParticle]; //[Particle_]
UInt_t Particle_fBits[kMaxParticle]; //[Particle_]
Int_t Particle_PID[kMaxParticle]; //[Particle_]
Int_t Particle_Status[kMaxParticle]; //[Particle_]
Int_t Particle_IsPU[kMaxParticle]; //[Particle_]
Int_t Particle_M1[kMaxParticle]; //[Particle_]
Int_t Particle_M2[kMaxParticle]; //[Particle_]
Int_t Particle_D1[kMaxParticle]; //[Particle_]
Int_t Particle_D2[kMaxParticle]; //[Particle_]
Int_t Particle_Charge[kMaxParticle]; //[Particle_]
Float_t Particle_Mass[kMaxParticle]; //[Particle_]
Float_t Particle_E[kMaxParticle]; //[Particle_]
Float_t Particle_Px[kMaxParticle]; //[Particle_]
Float_t Particle_Py[kMaxParticle]; //[Particle_]
Float_t Particle_Pz[kMaxParticle]; //[Particle_]
Float_t Particle_P[kMaxParticle]; //[Particle_]
Float_t Particle_PT[kMaxParticle]; //[Particle_]
Float_t Particle_Eta[kMaxParticle]; //[Particle_]
Float_t Particle_Phi[kMaxParticle]; //[Particle_]
Float_t Particle_Rapidity[kMaxParticle]; //[Particle_]
Float_t Particle_CtgTheta[kMaxParticle]; //[Particle_]
Float_t Particle_D0[kMaxParticle]; //[Particle_]
Float_t Particle_DZ[kMaxParticle]; //[Particle_]
Float_t Particle_T[kMaxParticle]; //[Particle_]
Float_t Particle_X[kMaxParticle]; //[Particle_]
Float_t Particle_Y[kMaxParticle]; //[Particle_]
Float_t Particle_Z[kMaxParticle]; //[Particle_]
Int_t Particle_size;
Int_t Track_;
UInt_t Track_fUniqueID[kMaxTrack]; //[Track_]
UInt_t Track_fBits[kMaxTrack]; //[Track_]
Int_t Track_PID[kMaxTrack]; //[Track_]
Int_t Track_Charge[kMaxTrack]; //[Track_]
Float_t Track_P[kMaxTrack]; //[Track_]
Float_t Track_PT[kMaxTrack]; //[Track_]
Float_t Track_Eta[kMaxTrack]; //[Track_]
Float_t Track_Phi[kMaxTrack]; //[Track_]
Float_t Track_CtgTheta[kMaxTrack]; //[Track_]
Float_t Track_EtaOuter[kMaxTrack]; //[Track_]
Float_t Track_PhiOuter[kMaxTrack]; //[Track_]
Float_t Track_T[kMaxTrack]; //[Track_]
Float_t Track_X[kMaxTrack]; //[Track_]
Float_t Track_Y[kMaxTrack]; //[Track_]
Float_t Track_Z[kMaxTrack]; //[Track_]
Float_t Track_TOuter[kMaxTrack]; //[Track_]
Float_t Track_XOuter[kMaxTrack]; //[Track_]
Float_t Track_YOuter[kMaxTrack]; //[Track_]
Float_t Track_ZOuter[kMaxTrack]; //[Track_]
Float_t Track_Xd[kMaxTrack]; //[Track_]
Float_t Track_Yd[kMaxTrack]; //[Track_]
Float_t Track_Zd[kMaxTrack]; //[Track_]
Float_t Track_L[kMaxTrack]; //[Track_]
Float_t Track_D0[kMaxTrack]; //[Track_]
Float_t Track_DZ[kMaxTrack]; //[Track_]
Float_t Track_ErrorP[kMaxTrack]; //[Track_]
Float_t Track_ErrorPT[kMaxTrack]; //[Track_]
Float_t Track_ErrorPhi[kMaxTrack]; //[Track_]
Float_t Track_ErrorCtgTheta[kMaxTrack]; //[Track_]
Float_t Track_ErrorT[kMaxTrack]; //[Track_]
Float_t Track_ErrorD0[kMaxTrack]; //[Track_]
Float_t Track_ErrorDZ[kMaxTrack]; //[Track_]
TRef Track_Particle[kMaxTrack];
Int_t Track_VertexIndex[kMaxTrack]; //[Track_]
Int_t Track_size;
Int_t Tower_;
UInt_t Tower_fUniqueID[kMaxTower]; //[Tower_]
UInt_t Tower_fBits[kMaxTower]; //[Tower_]
Float_t Tower_ET[kMaxTower]; //[Tower_]
Float_t Tower_Eta[kMaxTower]; //[Tower_]
Float_t Tower_Phi[kMaxTower]; //[Tower_]
Float_t Tower_E[kMaxTower]; //[Tower_]
Float_t Tower_T[kMaxTower]; //[Tower_]
Int_t Tower_NTimeHits[kMaxTower]; //[Tower_]
Float_t Tower_Eem[kMaxTower]; //[Tower_]
Float_t Tower_Ehad[kMaxTower]; //[Tower_]
Float_t Tower_Edges[kMaxTower][4]; //[Tower_]
TRefArray Tower_Particles[kMaxTower];
Int_t Tower_size;
Int_t EFlowTrack_;
UInt_t EFlowTrack_fUniqueID[kMaxEFlowTrack]; //[EFlowTrack_]
UInt_t EFlowTrack_fBits[kMaxEFlowTrack]; //[EFlowTrack_]
Int_t EFlowTrack_PID[kMaxEFlowTrack]; //[EFlowTrack_]
Int_t EFlowTrack_Charge[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_P[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_PT[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_Eta[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_Phi[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_CtgTheta[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_EtaOuter[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_PhiOuter[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_T[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_X[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_Y[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_Z[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_TOuter[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_XOuter[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_YOuter[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_ZOuter[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_Xd[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_Yd[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_Zd[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_L[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_D0[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_DZ[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_ErrorP[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_ErrorPT[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_ErrorPhi[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_ErrorCtgTheta[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_ErrorT[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_ErrorD0[kMaxEFlowTrack]; //[EFlowTrack_]
Float_t EFlowTrack_ErrorDZ[kMaxEFlowTrack]; //[EFlowTrack_]
TRef EFlowTrack_Particle[kMaxEFlowTrack];
Int_t EFlowTrack_VertexIndex[kMaxEFlowTrack]; //[EFlowTrack_]
Int_t EFlowTrack_size;
Int_t EFlowPhoton_;
UInt_t EFlowPhoton_fUniqueID[kMaxEFlowPhoton]; //[EFlowPhoton_]
UInt_t EFlowPhoton_fBits[kMaxEFlowPhoton]; //[EFlowPhoton_]
Float_t EFlowPhoton_ET[kMaxEFlowPhoton]; //[EFlowPhoton_]
Float_t EFlowPhoton_Eta[kMaxEFlowPhoton]; //[EFlowPhoton_]
Float_t EFlowPhoton_Phi[kMaxEFlowPhoton]; //[EFlowPhoton_]
Float_t EFlowPhoton_E[kMaxEFlowPhoton]; //[EFlowPhoton_]
Float_t EFlowPhoton_T[kMaxEFlowPhoton]; //[EFlowPhoton_]
Int_t EFlowPhoton_NTimeHits[kMaxEFlowPhoton]; //[EFlowPhoton_]
Float_t EFlowPhoton_Eem[kMaxEFlowPhoton]; //[EFlowPhoton_]
Float_t EFlowPhoton_Ehad[kMaxEFlowPhoton]; //[EFlowPhoton_]
Float_t EFlowPhoton_Edges[kMaxEFlowPhoton][4]; //[EFlowPhoton_]
TRefArray EFlowPhoton_Particles[kMaxEFlowPhoton];
Int_t EFlowPhoton_size;
Int_t EFlowNeutralHadron_;
UInt_t EFlowNeutralHadron_fUniqueID[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
UInt_t EFlowNeutralHadron_fBits[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Float_t EFlowNeutralHadron_ET[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Float_t EFlowNeutralHadron_Eta[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Float_t EFlowNeutralHadron_Phi[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Float_t EFlowNeutralHadron_E[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Float_t EFlowNeutralHadron_T[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Int_t EFlowNeutralHadron_NTimeHits[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Float_t EFlowNeutralHadron_Eem[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Float_t EFlowNeutralHadron_Ehad[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_]
Float_t EFlowNeutralHadron_Edges[kMaxEFlowNeutralHadron][4]; //[EFlowNeutralHadron_]
TRefArray EFlowNeutralHadron_Particles[kMaxEFlowNeutralHadron];
Int_t EFlowNeutralHadron_size;
Int_t GenJet_;
UInt_t GenJet_fUniqueID[kMaxGenJet]; //[GenJet_]
UInt_t GenJet_fBits[kMaxGenJet]; //[GenJet_]
Float_t GenJet_PT[kMaxGenJet]; //[GenJet_]
Float_t GenJet_Eta[kMaxGenJet]; //[GenJet_]
Float_t GenJet_Phi[kMaxGenJet]; //[GenJet_]
Float_t GenJet_T[kMaxGenJet]; //[GenJet_]
Float_t GenJet_Mass[kMaxGenJet]; //[GenJet_]
Float_t GenJet_DeltaEta[kMaxGenJet]; //[GenJet_]
Float_t GenJet_DeltaPhi[kMaxGenJet]; //[GenJet_]
UInt_t GenJet_Flavor[kMaxGenJet]; //[GenJet_]
UInt_t GenJet_FlavorAlgo[kMaxGenJet]; //[GenJet_]
UInt_t GenJet_FlavorPhys[kMaxGenJet]; //[GenJet_]
UInt_t GenJet_BTag[kMaxGenJet]; //[GenJet_]
UInt_t GenJet_BTagAlgo[kMaxGenJet]; //[GenJet_]
UInt_t GenJet_BTagPhys[kMaxGenJet]; //[GenJet_]
UInt_t GenJet_TauTag[kMaxGenJet]; //[GenJet_]
Int_t GenJet_Charge[kMaxGenJet]; //[GenJet_]
Float_t GenJet_EhadOverEem[kMaxGenJet]; //[GenJet_]
Int_t GenJet_NCharged[kMaxGenJet]; //[GenJet_]
Int_t GenJet_NNeutrals[kMaxGenJet]; //[GenJet_]
Float_t GenJet_Beta[kMaxGenJet]; //[GenJet_]
Float_t GenJet_BetaStar[kMaxGenJet]; //[GenJet_]
Float_t GenJet_MeanSqDeltaR[kMaxGenJet]; //[GenJet_]
Float_t GenJet_PTD[kMaxGenJet]; //[GenJet_]
Float_t GenJet_FracPt[kMaxGenJet][5]; //[GenJet_]
Float_t GenJet_Tau[kMaxGenJet][5]; //[GenJet_]
TLorentzVector GenJet_TrimmedP4[5][kMaxGenJet];
TLorentzVector GenJet_PrunedP4[5][kMaxGenJet];
TLorentzVector GenJet_SoftDroppedP4[5][kMaxGenJet];
Int_t GenJet_NSubJetsTrimmed[kMaxGenJet]; //[GenJet_]
Int_t GenJet_NSubJetsPruned[kMaxGenJet]; //[GenJet_]
Int_t GenJet_NSubJetsSoftDropped[kMaxGenJet]; //[GenJet_]
TRefArray GenJet_Constituents[kMaxGenJet];
TRefArray GenJet_Particles[kMaxGenJet];
TLorentzVector GenJet_Area[kMaxGenJet];
Int_t GenJet_size;
Int_t GenMissingET_;
UInt_t GenMissingET_fUniqueID[kMaxGenMissingET]; //[GenMissingET_]
UInt_t GenMissingET_fBits[kMaxGenMissingET]; //[GenMissingET_]
Float_t GenMissingET_MET[kMaxGenMissingET]; //[GenMissingET_]
Float_t GenMissingET_Eta[kMaxGenMissingET]; //[GenMissingET_]
Float_t GenMissingET_Phi[kMaxGenMissingET]; //[GenMissingET_]
Int_t GenMissingET_size;
Int_t Jet_;
UInt_t Jet_fUniqueID[kMaxJet]; //[Jet_]
UInt_t Jet_fBits[kMaxJet]; //[Jet_]
Float_t Jet_PT[kMaxJet]; //[Jet_]
Float_t Jet_Eta[kMaxJet]; //[Jet_]
Float_t Jet_Phi[kMaxJet]; //[Jet_]
Float_t Jet_T[kMaxJet]; //[Jet_]
Float_t Jet_Mass[kMaxJet]; //[Jet_]
Float_t Jet_DeltaEta[kMaxJet]; //[Jet_]
Float_t Jet_DeltaPhi[kMaxJet]; //[Jet_]
UInt_t Jet_Flavor[kMaxJet]; //[Jet_]
UInt_t Jet_FlavorAlgo[kMaxJet]; //[Jet_]
UInt_t Jet_FlavorPhys[kMaxJet]; //[Jet_]
UInt_t Jet_BTag[kMaxJet]; //[Jet_]
UInt_t Jet_BTagAlgo[kMaxJet]; //[Jet_]
UInt_t Jet_BTagPhys[kMaxJet]; //[Jet_]
UInt_t Jet_TauTag[kMaxJet]; //[Jet_]
Int_t Jet_Charge[kMaxJet]; //[Jet_]
Float_t Jet_EhadOverEem[kMaxJet]; //[Jet_]
Int_t Jet_NCharged[kMaxJet]; //[Jet_]
Int_t Jet_NNeutrals[kMaxJet]; //[Jet_]
Float_t Jet_Beta[kMaxJet]; //[Jet_]
Float_t Jet_BetaStar[kMaxJet]; //[Jet_]
Float_t Jet_MeanSqDeltaR[kMaxJet]; //[Jet_]
Float_t Jet_PTD[kMaxJet]; //[Jet_]
Float_t Jet_FracPt[kMaxJet][5]; //[Jet_]
Float_t Jet_Tau[kMaxJet][5]; //[Jet_]
TLorentzVector Jet_TrimmedP4[5][kMaxJet];
TLorentzVector Jet_PrunedP4[5][kMaxJet];
TLorentzVector Jet_SoftDroppedP4[5][kMaxJet];
Int_t Jet_NSubJetsTrimmed[kMaxJet]; //[Jet_]
Int_t Jet_NSubJetsPruned[kMaxJet]; //[Jet_]
Int_t Jet_NSubJetsSoftDropped[kMaxJet]; //[Jet_]
TRefArray Jet_Constituents[kMaxJet];
TRefArray Jet_Particles[kMaxJet];
TLorentzVector Jet_Area[kMaxJet];
Int_t Jet_size;
Int_t Electron_;
UInt_t Electron_fUniqueID[kMaxElectron]; //[Electron_]
UInt_t Electron_fBits[kMaxElectron]; //[Electron_]
Float_t Electron_PT[kMaxElectron]; //[Electron_]
Float_t Electron_Eta[kMaxElectron]; //[Electron_]
Float_t Electron_Phi[kMaxElectron]; //[Electron_]
Float_t Electron_T[kMaxElectron]; //[Electron_]
Int_t Electron_Charge[kMaxElectron]; //[Electron_]
Float_t Electron_EhadOverEem[kMaxElectron]; //[Electron_]
TRef Electron_Particle[kMaxElectron];
Float_t Electron_IsolationVar[kMaxElectron]; //[Electron_]
Float_t Electron_IsolationVarRhoCorr[kMaxElectron]; //[Electron_]
Float_t Electron_SumPtCharged[kMaxElectron]; //[Electron_]
Float_t Electron_SumPtNeutral[kMaxElectron]; //[Electron_]
Float_t Electron_SumPtChargedPU[kMaxElectron]; //[Electron_]
Float_t Electron_SumPt[kMaxElectron]; //[Electron_]
Int_t Electron_size;
Int_t Photon_;
UInt_t Photon_fUniqueID[kMaxPhoton]; //[Photon_]
UInt_t Photon_fBits[kMaxPhoton]; //[Photon_]
Float_t Photon_PT[kMaxPhoton]; //[Photon_]
Float_t Photon_Eta[kMaxPhoton]; //[Photon_]
Float_t Photon_Phi[kMaxPhoton]; //[Photon_]
Float_t Photon_E[kMaxPhoton]; //[Photon_]
Float_t Photon_T[kMaxPhoton]; //[Photon_]
Float_t Photon_EhadOverEem[kMaxPhoton]; //[Photon_]
TRefArray Photon_Particles[kMaxPhoton];
Float_t Photon_IsolationVar[kMaxPhoton]; //[Photon_]
Float_t Photon_IsolationVarRhoCorr[kMaxPhoton]; //[Photon_]
Float_t Photon_SumPtCharged[kMaxPhoton]; //[Photon_]
Float_t Photon_SumPtNeutral[kMaxPhoton]; //[Photon_]
Float_t Photon_SumPtChargedPU[kMaxPhoton]; //[Photon_]
Float_t Photon_SumPt[kMaxPhoton]; //[Photon_]
Int_t Photon_size;
Int_t Muon_;
UInt_t Muon_fUniqueID[kMaxMuon]; //[Muon_]
UInt_t Muon_fBits[kMaxMuon]; //[Muon_]
Float_t Muon_PT[kMaxMuon]; //[Muon_]
Float_t Muon_Eta[kMaxMuon]; //[Muon_]
Float_t Muon_Phi[kMaxMuon]; //[Muon_]
Float_t Muon_T[kMaxMuon]; //[Muon_]
Int_t Muon_Charge[kMaxMuon]; //[Muon_]
TRef Muon_Particle[kMaxMuon];
Float_t Muon_IsolationVar[kMaxMuon]; //[Muon_]
Float_t Muon_IsolationVarRhoCorr[kMaxMuon]; //[Muon_]
Float_t Muon_SumPtCharged[kMaxMuon]; //[Muon_]
Float_t Muon_SumPtNeutral[kMaxMuon]; //[Muon_]
Float_t Muon_SumPtChargedPU[kMaxMuon]; //[Muon_]
Float_t Muon_SumPt[kMaxMuon]; //[Muon_]
Int_t Muon_size;
Int_t FatJet_;
UInt_t FatJet_fUniqueID[kMaxFatJet]; //[FatJet_]
UInt_t FatJet_fBits[kMaxFatJet]; //[FatJet_]
Float_t FatJet_PT[kMaxFatJet]; //[FatJet_]
Float_t FatJet_Eta[kMaxFatJet]; //[FatJet_]
Float_t FatJet_Phi[kMaxFatJet]; //[FatJet_]
Float_t FatJet_T[kMaxFatJet]; //[FatJet_]
Float_t FatJet_Mass[kMaxFatJet]; //[FatJet_]
Float_t FatJet_DeltaEta[kMaxFatJet]; //[FatJet_]
Float_t FatJet_DeltaPhi[kMaxFatJet]; //[FatJet_]
UInt_t FatJet_Flavor[kMaxFatJet]; //[FatJet_]
UInt_t FatJet_FlavorAlgo[kMaxFatJet]; //[FatJet_]
UInt_t FatJet_FlavorPhys[kMaxFatJet]; //[FatJet_]
UInt_t FatJet_BTag[kMaxFatJet]; //[FatJet_]
UInt_t FatJet_BTagAlgo[kMaxFatJet]; //[FatJet_]
UInt_t FatJet_BTagPhys[kMaxFatJet]; //[FatJet_]
UInt_t FatJet_TauTag[kMaxFatJet]; //[FatJet_]
Int_t FatJet_Charge[kMaxFatJet]; //[FatJet_]
Float_t FatJet_EhadOverEem[kMaxFatJet]; //[FatJet_]
Int_t FatJet_NCharged[kMaxFatJet]; //[FatJet_]
Int_t FatJet_NNeutrals[kMaxFatJet]; //[FatJet_]
Float_t FatJet_Beta[kMaxFatJet]; //[FatJet_]
Float_t FatJet_BetaStar[kMaxFatJet]; //[FatJet_]
Float_t FatJet_MeanSqDeltaR[kMaxFatJet]; //[FatJet_]
Float_t FatJet_PTD[kMaxFatJet]; //[FatJet_]
Float_t FatJet_FracPt[kMaxFatJet][5]; //[FatJet_]
Float_t FatJet_Tau[kMaxFatJet][5]; //[FatJet_]
TLorentzVector FatJet_TrimmedP4[5][kMaxFatJet];
TLorentzVector FatJet_PrunedP4[5][kMaxFatJet];
TLorentzVector FatJet_SoftDroppedP4[5][kMaxFatJet];
Int_t FatJet_NSubJetsTrimmed[kMaxFatJet]; //[FatJet_]
Int_t FatJet_NSubJetsPruned[kMaxFatJet]; //[FatJet_]
Int_t FatJet_NSubJetsSoftDropped[kMaxFatJet]; //[FatJet_]
TRefArray FatJet_Constituents[kMaxFatJet];
TRefArray FatJet_Particles[kMaxFatJet];
TLorentzVector FatJet_Area[kMaxFatJet];
Int_t FatJet_size;
Int_t MissingET_;
UInt_t MissingET_fUniqueID[kMaxMissingET]; //[MissingET_]
UInt_t MissingET_fBits[kMaxMissingET]; //[MissingET_]
Float_t MissingET_MET[kMaxMissingET]; //[MissingET_]
Float_t MissingET_Eta[kMaxMissingET]; //[MissingET_]
Float_t MissingET_Phi[kMaxMissingET]; //[MissingET_]
Int_t MissingET_size;
Int_t ScalarHT_;
UInt_t ScalarHT_fUniqueID[kMaxScalarHT]; //[ScalarHT_]
UInt_t ScalarHT_fBits[kMaxScalarHT]; //[ScalarHT_]
Float_t ScalarHT_HT[kMaxScalarHT]; //[ScalarHT_]
Int_t ScalarHT_size;
// List of branches
TBranch *b_Event_; //!
TBranch *b_Event_fUniqueID; //!
TBranch *b_Event_fBits; //!
TBranch *b_Event_Number; //!
TBranch *b_Event_ReadTime; //!
TBranch *b_Event_ProcTime; //!
TBranch *b_Event_ProcessID; //!
TBranch *b_Event_MPI; //!
TBranch *b_Event_Weight; //!
TBranch *b_Event_Scale; //!
TBranch *b_Event_AlphaQED; //!
TBranch *b_Event_AlphaQCD; //!
TBranch *b_Event_ID1; //!
TBranch *b_Event_ID2; //!
TBranch *b_Event_X1; //!
TBranch *b_Event_X2; //!
TBranch *b_Event_ScalePDF; //!
TBranch *b_Event_PDF1; //!
TBranch *b_Event_PDF2; //!
TBranch *b_Event_size; //!
TBranch *b_Particle_; //!
TBranch *b_Particle_fUniqueID; //!
TBranch *b_Particle_fBits; //!
TBranch *b_Particle_PID; //!
TBranch *b_Particle_Status; //!
TBranch *b_Particle_IsPU; //!
TBranch *b_Particle_M1; //!
TBranch *b_Particle_M2; //!
TBranch *b_Particle_D1; //!
TBranch *b_Particle_D2; //!
TBranch *b_Particle_Charge; //!
TBranch *b_Particle_Mass; //!
TBranch *b_Particle_E; //!
TBranch *b_Particle_Px; //!
TBranch *b_Particle_Py; //!
TBranch *b_Particle_Pz; //!
TBranch *b_Particle_P; //!
TBranch *b_Particle_PT; //!
TBranch *b_Particle_Eta; //!
TBranch *b_Particle_Phi; //!
TBranch *b_Particle_Rapidity; //!
TBranch *b_Particle_CtgTheta; //!
TBranch *b_Particle_D0; //!
TBranch *b_Particle_DZ; //!
TBranch *b_Particle_T; //!
TBranch *b_Particle_X; //!
TBranch *b_Particle_Y; //!
TBranch *b_Particle_Z; //!
TBranch *b_Particle_size; //!
TBranch *b_Track_; //!
TBranch *b_Track_fUniqueID; //!
TBranch *b_Track_fBits; //!
TBranch *b_Track_PID; //!
TBranch *b_Track_Charge; //!
TBranch *b_Track_P; //!
TBranch *b_Track_PT; //!
TBranch *b_Track_Eta; //!
TBranch *b_Track_Phi; //!
TBranch *b_Track_CtgTheta; //!
TBranch *b_Track_EtaOuter; //!
TBranch *b_Track_PhiOuter; //!
TBranch *b_Track_T; //!
TBranch *b_Track_X; //!
TBranch *b_Track_Y; //!
TBranch *b_Track_Z; //!
TBranch *b_Track_TOuter; //!
TBranch *b_Track_XOuter; //!
TBranch *b_Track_YOuter; //!
TBranch *b_Track_ZOuter; //!
TBranch *b_Track_Xd; //!
TBranch *b_Track_Yd; //!
TBranch *b_Track_Zd; //!
TBranch *b_Track_L; //!
TBranch *b_Track_D0; //!
TBranch *b_Track_DZ; //!
TBranch *b_Track_ErrorP; //!
TBranch *b_Track_ErrorPT; //!
TBranch *b_Track_ErrorPhi; //!
TBranch *b_Track_ErrorCtgTheta; //!
TBranch *b_Track_ErrorT; //!
TBranch *b_Track_ErrorD0; //!
TBranch *b_Track_ErrorDZ; //!
TBranch *b_Track_Particle; //!
TBranch *b_Track_VertexIndex; //!
TBranch *b_Track_size; //!
TBranch *b_Tower_; //!
TBranch *b_Tower_fUniqueID; //!
TBranch *b_Tower_fBits; //!
TBranch *b_Tower_ET; //!
TBranch *b_Tower_Eta; //!
TBranch *b_Tower_Phi; //!
TBranch *b_Tower_E; //!
TBranch *b_Tower_T; //!
TBranch *b_Tower_NTimeHits; //!
TBranch *b_Tower_Eem; //!
TBranch *b_Tower_Ehad; //!
TBranch *b_Tower_Edges; //!
TBranch *b_Tower_Particles; //!
TBranch *b_Tower_size; //!
TBranch *b_EFlowTrack_; //!
TBranch *b_EFlowTrack_fUniqueID; //!
TBranch *b_EFlowTrack_fBits; //!
TBranch *b_EFlowTrack_PID; //!
TBranch *b_EFlowTrack_Charge; //!
TBranch *b_EFlowTrack_P; //!
TBranch *b_EFlowTrack_PT; //!
TBranch *b_EFlowTrack_Eta; //!
TBranch *b_EFlowTrack_Phi; //!
TBranch *b_EFlowTrack_CtgTheta; //!
TBranch *b_EFlowTrack_EtaOuter; //!
TBranch *b_EFlowTrack_PhiOuter; //!
TBranch *b_EFlowTrack_T; //!
TBranch *b_EFlowTrack_X; //!
TBranch *b_EFlowTrack_Y; //!
TBranch *b_EFlowTrack_Z; //!
TBranch *b_EFlowTrack_TOuter; //!
TBranch *b_EFlowTrack_XOuter; //!
TBranch *b_EFlowTrack_YOuter; //!
TBranch *b_EFlowTrack_ZOuter; //!
TBranch *b_EFlowTrack_Xd; //!
TBranch *b_EFlowTrack_Yd; //!
TBranch *b_EFlowTrack_Zd; //!
TBranch *b_EFlowTrack_L; //!
TBranch *b_EFlowTrack_D0; //!
TBranch *b_EFlowTrack_DZ; //!
TBranch *b_EFlowTrack_ErrorP; //!
TBranch *b_EFlowTrack_ErrorPT; //!
TBranch *b_EFlowTrack_ErrorPhi; //!
TBranch *b_EFlowTrack_ErrorCtgTheta; //!
TBranch *b_EFlowTrack_ErrorT; //!
TBranch *b_EFlowTrack_ErrorD0; //!
TBranch *b_EFlowTrack_ErrorDZ; //!
TBranch *b_EFlowTrack_Particle; //!
TBranch *b_EFlowTrack_VertexIndex; //!
TBranch *b_EFlowTrack_size; //!
TBranch *b_EFlowPhoton_; //!
TBranch *b_EFlowPhoton_fUniqueID; //!
TBranch *b_EFlowPhoton_fBits; //!
TBranch *b_EFlowPhoton_ET; //!
TBranch *b_EFlowPhoton_Eta; //!
TBranch *b_EFlowPhoton_Phi; //!
TBranch *b_EFlowPhoton_E; //!
TBranch *b_EFlowPhoton_T; //!
TBranch *b_EFlowPhoton_NTimeHits; //!
TBranch *b_EFlowPhoton_Eem; //!
TBranch *b_EFlowPhoton_Ehad; //!
TBranch *b_EFlowPhoton_Edges; //!
TBranch *b_EFlowPhoton_Particles; //!
TBranch *b_EFlowPhoton_size; //!
TBranch *b_EFlowNeutralHadron_; //!
TBranch *b_EFlowNeutralHadron_fUniqueID; //!
TBranch *b_EFlowNeutralHadron_fBits; //!
TBranch *b_EFlowNeutralHadron_ET; //!
TBranch *b_EFlowNeutralHadron_Eta; //!
TBranch *b_EFlowNeutralHadron_Phi; //!
TBranch *b_EFlowNeutralHadron_E; //!
TBranch *b_EFlowNeutralHadron_T; //!
TBranch *b_EFlowNeutralHadron_NTimeHits; //!
TBranch *b_EFlowNeutralHadron_Eem; //!
TBranch *b_EFlowNeutralHadron_Ehad; //!
TBranch *b_EFlowNeutralHadron_Edges; //!
TBranch *b_EFlowNeutralHadron_Particles; //!
TBranch *b_EFlowNeutralHadron_size; //!
TBranch *b_GenJet_; //!
TBranch *b_GenJet_fUniqueID; //!
TBranch *b_GenJet_fBits; //!
TBranch *b_GenJet_PT; //!
TBranch *b_GenJet_Eta; //!
TBranch *b_GenJet_Phi; //!
TBranch *b_GenJet_T; //!
TBranch *b_GenJet_Mass; //!
TBranch *b_GenJet_DeltaEta; //!
TBranch *b_GenJet_DeltaPhi; //!
TBranch *b_GenJet_Flavor; //!
TBranch *b_GenJet_FlavorAlgo; //!
TBranch *b_GenJet_FlavorPhys; //!
TBranch *b_GenJet_BTag; //!
TBranch *b_GenJet_BTagAlgo; //!
TBranch *b_GenJet_BTagPhys; //!
TBranch *b_GenJet_TauTag; //!
TBranch *b_GenJet_Charge; //!
TBranch *b_GenJet_EhadOverEem; //!
TBranch *b_GenJet_NCharged; //!
TBranch *b_GenJet_NNeutrals; //!
TBranch *b_GenJet_Beta; //!
TBranch *b_GenJet_BetaStar; //!
TBranch *b_GenJet_MeanSqDeltaR; //!
TBranch *b_GenJet_PTD; //!
TBranch *b_GenJet_FracPt; //!
TBranch *b_GenJet_Tau; //!
TBranch *b_GenJet_TrimmedP4; //!
TBranch *b_GenJet_PrunedP4; //!
TBranch *b_GenJet_SoftDroppedP4; //!
TBranch *b_GenJet_NSubJetsTrimmed; //!
TBranch *b_GenJet_NSubJetsPruned; //!
TBranch *b_GenJet_NSubJetsSoftDropped; //!
TBranch *b_GenJet_Constituents; //!
TBranch *b_GenJet_Particles; //!
TBranch *b_GenJet_Area; //!
TBranch *b_GenJet_size; //!
TBranch *b_GenMissingET_; //!
TBranch *b_GenMissingET_fUniqueID; //!
TBranch *b_GenMissingET_fBits; //!
TBranch *b_GenMissingET_MET; //!
TBranch *b_GenMissingET_Eta; //!
TBranch *b_GenMissingET_Phi; //!
TBranch *b_GenMissingET_size; //!
TBranch *b_Jet_; //!
TBranch *b_Jet_fUniqueID; //!
TBranch *b_Jet_fBits; //!
TBranch *b_Jet_PT; //!
TBranch *b_Jet_Eta; //!
TBranch *b_Jet_Phi; //!
TBranch *b_Jet_T; //!
TBranch *b_Jet_Mass; //!
TBranch *b_Jet_DeltaEta; //!
TBranch *b_Jet_DeltaPhi; //!
TBranch *b_Jet_Flavor; //!
TBranch *b_Jet_FlavorAlgo; //!
TBranch *b_Jet_FlavorPhys; //!
TBranch *b_Jet_BTag; //!
TBranch *b_Jet_BTagAlgo; //!
TBranch *b_Jet_BTagPhys; //!
TBranch *b_Jet_TauTag; //!
TBranch *b_Jet_Charge; //!
TBranch *b_Jet_EhadOverEem; //!
TBranch *b_Jet_NCharged; //!
TBranch *b_Jet_NNeutrals; //!
TBranch *b_Jet_Beta; //!
TBranch *b_Jet_BetaStar; //!
TBranch *b_Jet_MeanSqDeltaR; //!
TBranch *b_Jet_PTD; //!
TBranch *b_Jet_FracPt; //!
TBranch *b_Jet_Tau; //!
TBranch *b_Jet_TrimmedP4; //!
TBranch *b_Jet_PrunedP4; //!
TBranch *b_Jet_SoftDroppedP4; //!
TBranch *b_Jet_NSubJetsTrimmed; //!
TBranch *b_Jet_NSubJetsPruned; //!
TBranch *b_Jet_NSubJetsSoftDropped; //!
TBranch *b_Jet_Constituents; //!
TBranch *b_Jet_Particles; //!
TBranch *b_Jet_Area; //!
TBranch *b_Jet_size; //!
TBranch *b_Electron_; //!
TBranch *b_Electron_fUniqueID; //!
TBranch *b_Electron_fBits; //!
TBranch *b_Electron_PT; //!
TBranch *b_Electron_Eta; //!
TBranch *b_Electron_Phi; //!
TBranch *b_Electron_T; //!
TBranch *b_Electron_Charge; //!
TBranch *b_Electron_EhadOverEem; //!
TBranch *b_Electron_Particle; //!
TBranch *b_Electron_IsolationVar; //!
TBranch *b_Electron_IsolationVarRhoCorr; //!
TBranch *b_Electron_SumPtCharged; //!
TBranch *b_Electron_SumPtNeutral; //!
TBranch *b_Electron_SumPtChargedPU; //!
TBranch *b_Electron_SumPt; //!
TBranch *b_Electron_size; //!
TBranch *b_Photon_; //!
TBranch *b_Photon_fUniqueID; //!
TBranch *b_Photon_fBits; //!
TBranch *b_Photon_PT; //!
TBranch *b_Photon_Eta; //!
TBranch *b_Photon_Phi; //!
TBranch *b_Photon_E; //!
TBranch *b_Photon_T; //!
TBranch *b_Photon_EhadOverEem; //!
TBranch *b_Photon_Particles; //!
TBranch *b_Photon_IsolationVar; //!
TBranch *b_Photon_IsolationVarRhoCorr; //!
TBranch *b_Photon_SumPtCharged; //!
TBranch *b_Photon_SumPtNeutral; //!
TBranch *b_Photon_SumPtChargedPU; //!
TBranch *b_Photon_SumPt; //!
TBranch *b_Photon_size; //!
TBranch *b_Muon_; //!
TBranch *b_Muon_fUniqueID; //!
TBranch *b_Muon_fBits; //!
TBranch *b_Muon_PT; //!
TBranch *b_Muon_Eta; //!
TBranch *b_Muon_Phi; //!
TBranch *b_Muon_T; //!
TBranch *b_Muon_Charge; //!
TBranch *b_Muon_Particle; //!
TBranch *b_Muon_IsolationVar; //!
TBranch *b_Muon_IsolationVarRhoCorr; //!
TBranch *b_Muon_SumPtCharged; //!
TBranch *b_Muon_SumPtNeutral; //!
TBranch *b_Muon_SumPtChargedPU; //!
TBranch *b_Muon_SumPt; //!
TBranch *b_Muon_size; //!
TBranch *b_FatJet_; //!
TBranch *b_FatJet_fUniqueID; //!
TBranch *b_FatJet_fBits; //!
TBranch *b_FatJet_PT; //!
TBranch *b_FatJet_Eta; //!
TBranch *b_FatJet_Phi; //!
TBranch *b_FatJet_T; //!
TBranch *b_FatJet_Mass; //!
TBranch *b_FatJet_DeltaEta; //!
TBranch *b_FatJet_DeltaPhi; //!
TBranch *b_FatJet_Flavor; //!
TBranch *b_FatJet_FlavorAlgo; //!
TBranch *b_FatJet_FlavorPhys; //!
TBranch *b_FatJet_BTag; //!
TBranch *b_FatJet_BTagAlgo; //!
TBranch *b_FatJet_BTagPhys; //!
TBranch *b_FatJet_TauTag; //!
TBranch *b_FatJet_Charge; //!
TBranch *b_FatJet_EhadOverEem; //!
TBranch *b_FatJet_NCharged; //!
TBranch *b_FatJet_NNeutrals; //!
TBranch *b_FatJet_Beta; //!
TBranch *b_FatJet_BetaStar; //!
TBranch *b_FatJet_MeanSqDeltaR; //!
TBranch *b_FatJet_PTD; //!
TBranch *b_FatJet_FracPt; //!
TBranch *b_FatJet_Tau; //!
TBranch *b_FatJet_TrimmedP4; //!
TBranch *b_FatJet_PrunedP4; //!
TBranch *b_FatJet_SoftDroppedP4; //!
TBranch *b_FatJet_NSubJetsTrimmed; //!
TBranch *b_FatJet_NSubJetsPruned; //!
TBranch *b_FatJet_NSubJetsSoftDropped; //!
TBranch *b_FatJet_Constituents; //!
TBranch *b_FatJet_Particles; //!
TBranch *b_FatJet_Area; //!
TBranch *b_FatJet_size; //!
TBranch *b_MissingET_; //!
TBranch *b_MissingET_fUniqueID; //!
TBranch *b_MissingET_fBits; //!
TBranch *b_MissingET_MET; //!
TBranch *b_MissingET_Eta; //!
TBranch *b_MissingET_Phi; //!
TBranch *b_MissingET_size; //!
TBranch *b_ScalarHT_; //!
TBranch *b_ScalarHT_fUniqueID; //!
TBranch *b_ScalarHT_fBits; //!
TBranch *b_ScalarHT_HT; //!
TBranch *b_ScalarHT_size; //!
Run07Signal(TTree *tree=0);
virtual ~Run07Signal();
virtual Int_t Cut(Long64_t entry);
virtual Int_t GetEntry(Long64_t entry);
virtual Long64_t LoadTree(Long64_t entry);
virtual void Init(TTree *tree);
virtual void Loop();
virtual Bool_t Notify();
virtual void Show(Long64_t entry = -1);
};
#endif
#ifdef Run07Signal_cxx
Run07Signal::Run07Signal(TTree *tree) : fChain(0)
{
// if parameter tree is not specified (or zero), connect the file
// used to generate this class and read the Tree.
if (tree == 0) {
TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject("run07_Higgs0or1Jet_PtGen_450_820_forPtReco550_750GeV.root");
if (!f || !f->IsOpen()) {
f = new TFile("run07_Higgs0or1Jet_PtGen_450_820_forPtReco550_750GeV.root");
}
f->GetObject("Delphes",tree);
}
Init(tree);
}
Run07Signal::~Run07Signal()
{
if (!fChain) return;
delete fChain->GetCurrentFile();
}
Int_t Run07Signal::GetEntry(Long64_t entry)
{
// Read contents of entry.
if (!fChain) return 0;
return fChain->GetEntry(entry);
}
Long64_t Run07Signal::LoadTree(Long64_t entry)
{
// Set the environment to read one entry
if (!fChain) return -5;
Long64_t centry = fChain->LoadTree(entry);
if (centry < 0) return centry;
if (fChain->GetTreeNumber() != fCurrent) {
fCurrent = fChain->GetTreeNumber();
Notify();
}
return centry;
}
void Run07Signal::Init(TTree *tree)
{
// The Init() function is called when the selector needs to initialize
// a new tree or chain. Typically here the branch addresses and branch
// pointers of the tree will be set.
// It is normally not necessary to make changes to the generated
// code, but the routine can be extended by the user if needed.
// Init() will be called many times when running on PROOF
// (once per file to be processed).
// Set branch addresses and branch pointers
if (!tree) return;
fChain = tree;
fCurrent = -1;
fChain->SetMakeClass(1);
fChain->SetBranchAddress("Event", &Event_, &b_Event_);
fChain->SetBranchAddress("Event.fUniqueID", Event_fUniqueID, &b_Event_fUniqueID);
fChain->SetBranchAddress("Event.fBits", Event_fBits, &b_Event_fBits);
fChain->SetBranchAddress("Event.Number", Event_Number, &b_Event_Number);
fChain->SetBranchAddress("Event.ReadTime", Event_ReadTime, &b_Event_ReadTime);
fChain->SetBranchAddress("Event.ProcTime", Event_ProcTime, &b_Event_ProcTime);
fChain->SetBranchAddress("Event.ProcessID", Event_ProcessID, &b_Event_ProcessID);
fChain->SetBranchAddress("Event.MPI", Event_MPI, &b_Event_MPI);
fChain->SetBranchAddress("Event.Weight", Event_Weight, &b_Event_Weight);
fChain->SetBranchAddress("Event.Scale", Event_Scale, &b_Event_Scale);
fChain->SetBranchAddress("Event.AlphaQED", Event_AlphaQED, &b_Event_AlphaQED);
fChain->SetBranchAddress("Event.AlphaQCD", Event_AlphaQCD, &b_Event_AlphaQCD);
fChain->SetBranchAddress("Event.ID1", Event_ID1, &b_Event_ID1);
fChain->SetBranchAddress("Event.ID2", Event_ID2, &b_Event_ID2);
fChain->SetBranchAddress("Event.X1", Event_X1, &b_Event_X1);
fChain->SetBranchAddress("Event.X2", Event_X2, &b_Event_X2);
fChain->SetBranchAddress("Event.ScalePDF", Event_ScalePDF, &b_Event_ScalePDF);
fChain->SetBranchAddress("Event.PDF1", Event_PDF1, &b_Event_PDF1);
fChain->SetBranchAddress("Event.PDF2", Event_PDF2, &b_Event_PDF2);
fChain->SetBranchAddress("Event_size", &Event_size, &b_Event_size);
fChain->SetBranchAddress("Particle", &Particle_, &b_Particle_);
fChain->SetBranchAddress("Particle.fUniqueID", Particle_fUniqueID, &b_Particle_fUniqueID);
fChain->SetBranchAddress("Particle.fBits", Particle_fBits, &b_Particle_fBits);
fChain->SetBranchAddress("Particle.PID", Particle_PID, &b_Particle_PID);
fChain->SetBranchAddress("Particle.Status", Particle_Status, &b_Particle_Status);
fChain->SetBranchAddress("Particle.IsPU", Particle_IsPU, &b_Particle_IsPU);
fChain->SetBranchAddress("Particle.M1", Particle_M1, &b_Particle_M1);
fChain->SetBranchAddress("Particle.M2", Particle_M2, &b_Particle_M2);
fChain->SetBranchAddress("Particle.D1", Particle_D1, &b_Particle_D1);
fChain->SetBranchAddress("Particle.D2", Particle_D2, &b_Particle_D2);
fChain->SetBranchAddress("Particle.Charge", Particle_Charge, &b_Particle_Charge);
fChain->SetBranchAddress("Particle.Mass", Particle_Mass, &b_Particle_Mass);
fChain->SetBranchAddress("Particle.E", Particle_E, &b_Particle_E);
fChain->SetBranchAddress("Particle.Px", Particle_Px, &b_Particle_Px);
fChain->SetBranchAddress("Particle.Py", Particle_Py, &b_Particle_Py);
fChain->SetBranchAddress("Particle.Pz", Particle_Pz, &b_Particle_Pz);
fChain->SetBranchAddress("Particle.P", Particle_P, &b_Particle_P);
fChain->SetBranchAddress("Particle.PT", Particle_PT, &b_Particle_PT);
fChain->SetBranchAddress("Particle.Eta", Particle_Eta, &b_Particle_Eta);
fChain->SetBranchAddress("Particle.Phi", Particle_Phi, &b_Particle_Phi);
fChain->SetBranchAddress("Particle.Rapidity", Particle_Rapidity, &b_Particle_Rapidity);
fChain->SetBranchAddress("Particle.CtgTheta", Particle_CtgTheta, &b_Particle_CtgTheta);
fChain->SetBranchAddress("Particle.D0", Particle_D0, &b_Particle_D0);
fChain->SetBranchAddress("Particle.DZ", Particle_DZ, &b_Particle_DZ);
fChain->SetBranchAddress("Particle.T", Particle_T, &b_Particle_T);
fChain->SetBranchAddress("Particle.X", Particle_X, &b_Particle_X);
fChain->SetBranchAddress("Particle.Y", Particle_Y, &b_Particle_Y);
fChain->SetBranchAddress("Particle.Z", Particle_Z, &b_Particle_Z);
fChain->SetBranchAddress("Particle_size", &Particle_size, &b_Particle_size);
fChain->SetBranchAddress("Track", &Track_, &b_Track_);
fChain->SetBranchAddress("Track.fUniqueID", Track_fUniqueID, &b_Track_fUniqueID);
fChain->SetBranchAddress("Track.fBits", Track_fBits, &b_Track_fBits);
fChain->SetBranchAddress("Track.PID", Track_PID, &b_Track_PID);
fChain->SetBranchAddress("Track.Charge", Track_Charge, &b_Track_Charge);
fChain->SetBranchAddress("Track.P", Track_P, &b_Track_P);
fChain->SetBranchAddress("Track.PT", Track_PT, &b_Track_PT);
fChain->SetBranchAddress("Track.Eta", Track_Eta, &b_Track_Eta);
fChain->SetBranchAddress("Track.Phi", Track_Phi, &b_Track_Phi);
fChain->SetBranchAddress("Track.CtgTheta", Track_CtgTheta, &b_Track_CtgTheta);
fChain->SetBranchAddress("Track.EtaOuter", Track_EtaOuter, &b_Track_EtaOuter);
fChain->SetBranchAddress("Track.PhiOuter", Track_PhiOuter, &b_Track_PhiOuter);
fChain->SetBranchAddress("Track.T", Track_T, &b_Track_T);
fChain->SetBranchAddress("Track.X", Track_X, &b_Track_X);
fChain->SetBranchAddress("Track.Y", Track_Y, &b_Track_Y);
fChain->SetBranchAddress("Track.Z", Track_Z, &b_Track_Z);
fChain->SetBranchAddress("Track.TOuter", Track_TOuter, &b_Track_TOuter);
fChain->SetBranchAddress("Track.XOuter", Track_XOuter, &b_Track_XOuter);
fChain->SetBranchAddress("Track.YOuter", Track_YOuter, &b_Track_YOuter);
fChain->SetBranchAddress("Track.ZOuter", Track_ZOuter, &b_Track_ZOuter);
fChain->SetBranchAddress("Track.Xd", Track_Xd, &b_Track_Xd);
fChain->SetBranchAddress("Track.Yd", Track_Yd, &b_Track_Yd);
fChain->SetBranchAddress("Track.Zd", Track_Zd, &b_Track_Zd);
fChain->SetBranchAddress("Track.L", Track_L, &b_Track_L);
fChain->SetBranchAddress("Track.D0", Track_D0, &b_Track_D0);
fChain->SetBranchAddress("Track.DZ", Track_DZ, &b_Track_DZ);
fChain->SetBranchAddress("Track.ErrorP", Track_ErrorP, &b_Track_ErrorP);
fChain->SetBranchAddress("Track.ErrorPT", Track_ErrorPT, &b_Track_ErrorPT);
fChain->SetBranchAddress("Track.ErrorPhi", Track_ErrorPhi, &b_Track_ErrorPhi);
fChain->SetBranchAddress("Track.ErrorCtgTheta", Track_ErrorCtgTheta, &b_Track_ErrorCtgTheta);
fChain->SetBranchAddress("Track.ErrorT", Track_ErrorT, &b_Track_ErrorT);
fChain->SetBranchAddress("Track.ErrorD0", Track_ErrorD0, &b_Track_ErrorD0);
fChain->SetBranchAddress("Track.ErrorDZ", Track_ErrorDZ, &b_Track_ErrorDZ);
fChain->SetBranchAddress("Track.Particle", Track_Particle, &b_Track_Particle);
fChain->SetBranchAddress("Track.VertexIndex", Track_VertexIndex, &b_Track_VertexIndex);
fChain->SetBranchAddress("Track_size", &Track_size, &b_Track_size);
fChain->SetBranchAddress("Tower", &Tower_, &b_Tower_);
fChain->SetBranchAddress("Tower.fUniqueID", Tower_fUniqueID, &b_Tower_fUniqueID);
fChain->SetBranchAddress("Tower.fBits", Tower_fBits, &b_Tower_fBits);
fChain->SetBranchAddress("Tower.ET", Tower_ET, &b_Tower_ET);
fChain->SetBranchAddress("Tower.Eta", Tower_Eta, &b_Tower_Eta);
fChain->SetBranchAddress("Tower.Phi", Tower_Phi, &b_Tower_Phi);
fChain->SetBranchAddress("Tower.E", Tower_E, &b_Tower_E);
fChain->SetBranchAddress("Tower.T", Tower_T, &b_Tower_T);
fChain->SetBranchAddress("Tower.NTimeHits", Tower_NTimeHits, &b_Tower_NTimeHits);
fChain->SetBranchAddress("Tower.Eem", Tower_Eem, &b_Tower_Eem);
fChain->SetBranchAddress("Tower.Ehad", Tower_Ehad, &b_Tower_Ehad);
fChain->SetBranchAddress("Tower.Edges[4]", Tower_Edges, &b_Tower_Edges);
fChain->SetBranchAddress("Tower.Particles", Tower_Particles, &b_Tower_Particles);
fChain->SetBranchAddress("Tower_size", &Tower_size, &b_Tower_size);
fChain->SetBranchAddress("EFlowTrack", &EFlowTrack_, &b_EFlowTrack_);
fChain->SetBranchAddress("EFlowTrack.fUniqueID", EFlowTrack_fUniqueID, &b_EFlowTrack_fUniqueID);
fChain->SetBranchAddress("EFlowTrack.fBits", EFlowTrack_fBits, &b_EFlowTrack_fBits);
fChain->SetBranchAddress("EFlowTrack.PID", EFlowTrack_PID, &b_EFlowTrack_PID);
fChain->SetBranchAddress("EFlowTrack.Charge", EFlowTrack_Charge, &b_EFlowTrack_Charge);
fChain->SetBranchAddress("EFlowTrack.P", EFlowTrack_P, &b_EFlowTrack_P);
fChain->SetBranchAddress("EFlowTrack.PT", EFlowTrack_PT, &b_EFlowTrack_PT);
fChain->SetBranchAddress("EFlowTrack.Eta", EFlowTrack_Eta, &b_EFlowTrack_Eta);
fChain->SetBranchAddress("EFlowTrack.Phi", EFlowTrack_Phi, &b_EFlowTrack_Phi);
fChain->SetBranchAddress("EFlowTrack.CtgTheta", EFlowTrack_CtgTheta, &b_EFlowTrack_CtgTheta);
fChain->SetBranchAddress("EFlowTrack.EtaOuter", EFlowTrack_EtaOuter, &b_EFlowTrack_EtaOuter);
fChain->SetBranchAddress("EFlowTrack.PhiOuter", EFlowTrack_PhiOuter, &b_EFlowTrack_PhiOuter);
fChain->SetBranchAddress("EFlowTrack.T", EFlowTrack_T, &b_EFlowTrack_T);
fChain->SetBranchAddress("EFlowTrack.X", EFlowTrack_X, &b_EFlowTrack_X);
fChain->SetBranchAddress("EFlowTrack.Y", EFlowTrack_Y, &b_EFlowTrack_Y);
fChain->SetBranchAddress("EFlowTrack.Z", EFlowTrack_Z, &b_EFlowTrack_Z);
fChain->SetBranchAddress("EFlowTrack.TOuter", EFlowTrack_TOuter, &b_EFlowTrack_TOuter);
fChain->SetBranchAddress("EFlowTrack.XOuter", EFlowTrack_XOuter, &b_EFlowTrack_XOuter);
fChain->SetBranchAddress("EFlowTrack.YOuter", EFlowTrack_YOuter, &b_EFlowTrack_YOuter);
fChain->SetBranchAddress("EFlowTrack.ZOuter", EFlowTrack_ZOuter, &b_EFlowTrack_ZOuter);
fChain->SetBranchAddress("EFlowTrack.Xd", EFlowTrack_Xd, &b_EFlowTrack_Xd);
fChain->SetBranchAddress("EFlowTrack.Yd", EFlowTrack_Yd, &b_EFlowTrack_Yd);
fChain->SetBranchAddress("EFlowTrack.Zd", EFlowTrack_Zd, &b_EFlowTrack_Zd);
fChain->SetBranchAddress("EFlowTrack.L", EFlowTrack_L, &b_EFlowTrack_L);
fChain->SetBranchAddress("EFlowTrack.D0", EFlowTrack_D0, &b_EFlowTrack_D0);
fChain->SetBranchAddress("EFlowTrack.DZ", EFlowTrack_DZ, &b_EFlowTrack_DZ);
fChain->SetBranchAddress("EFlowTrack.ErrorP", EFlowTrack_ErrorP, &b_EFlowTrack_ErrorP);
fChain->SetBranchAddress("EFlowTrack.ErrorPT", EFlowTrack_ErrorPT, &b_EFlowTrack_ErrorPT);
fChain->SetBranchAddress("EFlowTrack.ErrorPhi", EFlowTrack_ErrorPhi, &b_EFlowTrack_ErrorPhi);
fChain->SetBranchAddress("EFlowTrack.ErrorCtgTheta", EFlowTrack_ErrorCtgTheta, &b_EFlowTrack_ErrorCtgTheta);
fChain->SetBranchAddress("EFlowTrack.ErrorT", EFlowTrack_ErrorT, &b_EFlowTrack_ErrorT);
fChain->SetBranchAddress("EFlowTrack.ErrorD0", EFlowTrack_ErrorD0, &b_EFlowTrack_ErrorD0);
fChain->SetBranchAddress("EFlowTrack.ErrorDZ", EFlowTrack_ErrorDZ, &b_EFlowTrack_ErrorDZ);
fChain->SetBranchAddress("EFlowTrack.Particle", EFlowTrack_Particle, &b_EFlowTrack_Particle);
fChain->SetBranchAddress("EFlowTrack.VertexIndex", EFlowTrack_VertexIndex, &b_EFlowTrack_VertexIndex);
fChain->SetBranchAddress("EFlowTrack_size", &EFlowTrack_size, &b_EFlowTrack_size);
fChain->SetBranchAddress("EFlowPhoton", &EFlowPhoton_, &b_EFlowPhoton_);
fChain->SetBranchAddress("EFlowPhoton.fUniqueID", EFlowPhoton_fUniqueID, &b_EFlowPhoton_fUniqueID);
fChain->SetBranchAddress("EFlowPhoton.fBits", EFlowPhoton_fBits, &b_EFlowPhoton_fBits);
fChain->SetBranchAddress("EFlowPhoton.ET", EFlowPhoton_ET, &b_EFlowPhoton_ET);
fChain->SetBranchAddress("EFlowPhoton.Eta", EFlowPhoton_Eta, &b_EFlowPhoton_Eta);
fChain->SetBranchAddress("EFlowPhoton.Phi", EFlowPhoton_Phi, &b_EFlowPhoton_Phi);
fChain->SetBranchAddress("EFlowPhoton.E", EFlowPhoton_E, &b_EFlowPhoton_E);
fChain->SetBranchAddress("EFlowPhoton.T", EFlowPhoton_T, &b_EFlowPhoton_T);
fChain->SetBranchAddress("EFlowPhoton.NTimeHits", EFlowPhoton_NTimeHits, &b_EFlowPhoton_NTimeHits);
fChain->SetBranchAddress("EFlowPhoton.Eem", EFlowPhoton_Eem, &b_EFlowPhoton_Eem);
fChain->SetBranchAddress("EFlowPhoton.Ehad", EFlowPhoton_Ehad, &b_EFlowPhoton_Ehad);
fChain->SetBranchAddress("EFlowPhoton.Edges[4]", EFlowPhoton_Edges, &b_EFlowPhoton_Edges);
fChain->SetBranchAddress("EFlowPhoton.Particles", EFlowPhoton_Particles, &b_EFlowPhoton_Particles);
fChain->SetBranchAddress("EFlowPhoton_size", &EFlowPhoton_size, &b_EFlowPhoton_size);
fChain->SetBranchAddress("EFlowNeutralHadron", &EFlowNeutralHadron_, &b_EFlowNeutralHadron_);
fChain->SetBranchAddress("EFlowNeutralHadron.fUniqueID", EFlowNeutralHadron_fUniqueID, &b_EFlowNeutralHadron_fUniqueID);
fChain->SetBranchAddress("EFlowNeutralHadron.fBits", EFlowNeutralHadron_fBits, &b_EFlowNeutralHadron_fBits);
fChain->SetBranchAddress("EFlowNeutralHadron.ET", EFlowNeutralHadron_ET, &b_EFlowNeutralHadron_ET);
fChain->SetBranchAddress("EFlowNeutralHadron.Eta", EFlowNeutralHadron_Eta, &b_EFlowNeutralHadron_Eta);
fChain->SetBranchAddress("EFlowNeutralHadron.Phi", EFlowNeutralHadron_Phi, &b_EFlowNeutralHadron_Phi);
fChain->SetBranchAddress("EFlowNeutralHadron.E", EFlowNeutralHadron_E, &b_EFlowNeutralHadron_E);
fChain->SetBranchAddress("EFlowNeutralHadron.T", EFlowNeutralHadron_T, &b_EFlowNeutralHadron_T);
fChain->SetBranchAddress("EFlowNeutralHadron.NTimeHits", EFlowNeutralHadron_NTimeHits, &b_EFlowNeutralHadron_NTimeHits);
fChain->SetBranchAddress("EFlowNeutralHadron.Eem", EFlowNeutralHadron_Eem, &b_EFlowNeutralHadron_Eem);
fChain->SetBranchAddress("EFlowNeutralHadron.Ehad", EFlowNeutralHadron_Ehad, &b_EFlowNeutralHadron_Ehad);
fChain->SetBranchAddress("EFlowNeutralHadron.Edges[4]", EFlowNeutralHadron_Edges, &b_EFlowNeutralHadron_Edges);
fChain->SetBranchAddress("EFlowNeutralHadron.Particles", EFlowNeutralHadron_Particles, &b_EFlowNeutralHadron_Particles);
fChain->SetBranchAddress("EFlowNeutralHadron_size", &EFlowNeutralHadron_size, &b_EFlowNeutralHadron_size);
fChain->SetBranchAddress("GenJet", &GenJet_, &b_GenJet_);
fChain->SetBranchAddress("GenJet.fUniqueID", GenJet_fUniqueID, &b_GenJet_fUniqueID);
fChain->SetBranchAddress("GenJet.fBits", GenJet_fBits, &b_GenJet_fBits);
fChain->SetBranchAddress("GenJet.PT", GenJet_PT, &b_GenJet_PT);
fChain->SetBranchAddress("GenJet.Eta", GenJet_Eta, &b_GenJet_Eta);
fChain->SetBranchAddress("GenJet.Phi", GenJet_Phi, &b_GenJet_Phi);
fChain->SetBranchAddress("GenJet.T", GenJet_T, &b_GenJet_T);
fChain->SetBranchAddress("GenJet.Mass", GenJet_Mass, &b_GenJet_Mass);
fChain->SetBranchAddress("GenJet.DeltaEta", GenJet_DeltaEta, &b_GenJet_DeltaEta);
fChain->SetBranchAddress("GenJet.DeltaPhi", GenJet_DeltaPhi, &b_GenJet_DeltaPhi);
fChain->SetBranchAddress("GenJet.Flavor", GenJet_Flavor, &b_GenJet_Flavor);
fChain->SetBranchAddress("GenJet.FlavorAlgo", GenJet_FlavorAlgo, &b_GenJet_FlavorAlgo);
fChain->SetBranchAddress("GenJet.FlavorPhys", GenJet_FlavorPhys, &b_GenJet_FlavorPhys);
fChain->SetBranchAddress("GenJet.BTag", GenJet_BTag, &b_GenJet_BTag);
fChain->SetBranchAddress("GenJet.BTagAlgo", GenJet_BTagAlgo, &b_GenJet_BTagAlgo);
fChain->SetBranchAddress("GenJet.BTagPhys", GenJet_BTagPhys, &b_GenJet_BTagPhys);
fChain->SetBranchAddress("GenJet.TauTag", GenJet_TauTag, &b_GenJet_TauTag);
fChain->SetBranchAddress("GenJet.Charge", GenJet_Charge, &b_GenJet_Charge);
fChain->SetBranchAddress("GenJet.EhadOverEem", GenJet_EhadOverEem, &b_GenJet_EhadOverEem);
fChain->SetBranchAddress("GenJet.NCharged", GenJet_NCharged, &b_GenJet_NCharged);
fChain->SetBranchAddress("GenJet.NNeutrals", GenJet_NNeutrals, &b_GenJet_NNeutrals);
fChain->SetBranchAddress("GenJet.Beta", GenJet_Beta, &b_GenJet_Beta);
fChain->SetBranchAddress("GenJet.BetaStar", GenJet_BetaStar, &b_GenJet_BetaStar);
fChain->SetBranchAddress("GenJet.MeanSqDeltaR", GenJet_MeanSqDeltaR, &b_GenJet_MeanSqDeltaR);
fChain->SetBranchAddress("GenJet.PTD", GenJet_PTD, &b_GenJet_PTD);
fChain->SetBranchAddress("GenJet.FracPt[5]", GenJet_FracPt, &b_GenJet_FracPt);
fChain->SetBranchAddress("GenJet.Tau[5]", GenJet_Tau, &b_GenJet_Tau);
fChain->SetBranchAddress("GenJet.TrimmedP4[5]", GenJet_TrimmedP4, &b_GenJet_TrimmedP4);
fChain->SetBranchAddress("GenJet.PrunedP4[5]", GenJet_PrunedP4, &b_GenJet_PrunedP4);
fChain->SetBranchAddress("GenJet.SoftDroppedP4[5]", GenJet_SoftDroppedP4, &b_GenJet_SoftDroppedP4);
fChain->SetBranchAddress("GenJet.NSubJetsTrimmed", GenJet_NSubJetsTrimmed, &b_GenJet_NSubJetsTrimmed);
fChain->SetBranchAddress("GenJet.NSubJetsPruned", GenJet_NSubJetsPruned, &b_GenJet_NSubJetsPruned);
fChain->SetBranchAddress("GenJet.NSubJetsSoftDropped", GenJet_NSubJetsSoftDropped, &b_GenJet_NSubJetsSoftDropped);
fChain->SetBranchAddress("GenJet.Constituents", GenJet_Constituents, &b_GenJet_Constituents);
fChain->SetBranchAddress("GenJet.Particles", GenJet_Particles, &b_GenJet_Particles);
fChain->SetBranchAddress("GenJet.Area", GenJet_Area, &b_GenJet_Area);
fChain->SetBranchAddress("GenJet_size", &GenJet_size, &b_GenJet_size);
fChain->SetBranchAddress("GenMissingET", &GenMissingET_, &b_GenMissingET_);
fChain->SetBranchAddress("GenMissingET.fUniqueID", GenMissingET_fUniqueID, &b_GenMissingET_fUniqueID);
fChain->SetBranchAddress("GenMissingET.fBits", GenMissingET_fBits, &b_GenMissingET_fBits);
fChain->SetBranchAddress("GenMissingET.MET", GenMissingET_MET, &b_GenMissingET_MET);
fChain->SetBranchAddress("GenMissingET.Eta", GenMissingET_Eta, &b_GenMissingET_Eta);
fChain->SetBranchAddress("GenMissingET.Phi", GenMissingET_Phi, &b_GenMissingET_Phi);
fChain->SetBranchAddress("GenMissingET_size", &GenMissingET_size, &b_GenMissingET_size);
fChain->SetBranchAddress("Jet", &Jet_, &b_Jet_);
fChain->SetBranchAddress("Jet.fUniqueID", Jet_fUniqueID, &b_Jet_fUniqueID);
fChain->SetBranchAddress("Jet.fBits", Jet_fBits, &b_Jet_fBits);
fChain->SetBranchAddress("Jet.PT", Jet_PT, &b_Jet_PT);
fChain->SetBranchAddress("Jet.Eta", Jet_Eta, &b_Jet_Eta);
fChain->SetBranchAddress("Jet.Phi", Jet_Phi, &b_Jet_Phi);
fChain->SetBranchAddress("Jet.T", Jet_T, &b_Jet_T);
fChain->SetBranchAddress("Jet.Mass", Jet_Mass, &b_Jet_Mass);
fChain->SetBranchAddress("Jet.DeltaEta", Jet_DeltaEta, &b_Jet_DeltaEta);
fChain->SetBranchAddress("Jet.DeltaPhi", Jet_DeltaPhi, &b_Jet_DeltaPhi);
fChain->SetBranchAddress("Jet.Flavor", Jet_Flavor, &b_Jet_Flavor);
fChain->SetBranchAddress("Jet.FlavorAlgo", Jet_FlavorAlgo, &b_Jet_FlavorAlgo);
fChain->SetBranchAddress("Jet.FlavorPhys", Jet_FlavorPhys, &b_Jet_FlavorPhys);
fChain->SetBranchAddress("Jet.BTag", Jet_BTag, &b_Jet_BTag);
fChain->SetBranchAddress("Jet.BTagAlgo", Jet_BTagAlgo, &b_Jet_BTagAlgo);
fChain->SetBranchAddress("Jet.BTagPhys", Jet_BTagPhys, &b_Jet_BTagPhys);
fChain->SetBranchAddress("Jet.TauTag", Jet_TauTag, &b_Jet_TauTag);
fChain->SetBranchAddress("Jet.Charge", Jet_Charge, &b_Jet_Charge);
fChain->SetBranchAddress("Jet.EhadOverEem", Jet_EhadOverEem, &b_Jet_EhadOverEem);
fChain->SetBranchAddress("Jet.NCharged", Jet_NCharged, &b_Jet_NCharged);
fChain->SetBranchAddress("Jet.NNeutrals", Jet_NNeutrals, &b_Jet_NNeutrals);
fChain->SetBranchAddress("Jet.Beta", Jet_Beta, &b_Jet_Beta);
fChain->SetBranchAddress("Jet.BetaStar", Jet_BetaStar, &b_Jet_BetaStar);
fChain->SetBranchAddress("Jet.MeanSqDeltaR", Jet_MeanSqDeltaR, &b_Jet_MeanSqDeltaR);
fChain->SetBranchAddress("Jet.PTD", Jet_PTD, &b_Jet_PTD);
fChain->SetBranchAddress("Jet.FracPt[5]", Jet_FracPt, &b_Jet_FracPt);
fChain->SetBranchAddress("Jet.Tau[5]", Jet_Tau, &b_Jet_Tau);
fChain->SetBranchAddress("Jet.TrimmedP4[5]", Jet_TrimmedP4, &b_Jet_TrimmedP4);
fChain->SetBranchAddress("Jet.PrunedP4[5]", Jet_PrunedP4, &b_Jet_PrunedP4);
fChain->SetBranchAddress("Jet.SoftDroppedP4[5]", Jet_SoftDroppedP4, &b_Jet_SoftDroppedP4);
fChain->SetBranchAddress("Jet.NSubJetsTrimmed", Jet_NSubJetsTrimmed, &b_Jet_NSubJetsTrimmed);
fChain->SetBranchAddress("Jet.NSubJetsPruned", Jet_NSubJetsPruned, &b_Jet_NSubJetsPruned);
fChain->SetBranchAddress("Jet.NSubJetsSoftDropped", Jet_NSubJetsSoftDropped, &b_Jet_NSubJetsSoftDropped);
fChain->SetBranchAddress("Jet.Constituents", Jet_Constituents, &b_Jet_Constituents);
fChain->SetBranchAddress("Jet.Particles", Jet_Particles, &b_Jet_Particles);
fChain->SetBranchAddress("Jet.Area", Jet_Area, &b_Jet_Area);
fChain->SetBranchAddress("Jet_size", &Jet_size, &b_Jet_size);
fChain->SetBranchAddress("Electron", &Electron_, &b_Electron_);
fChain->SetBranchAddress("Electron.fUniqueID", Electron_fUniqueID, &b_Electron_fUniqueID);
fChain->SetBranchAddress("Electron.fBits", Electron_fBits, &b_Electron_fBits);
fChain->SetBranchAddress("Electron.PT", Electron_PT, &b_Electron_PT);
fChain->SetBranchAddress("Electron.Eta", Electron_Eta, &b_Electron_Eta);
fChain->SetBranchAddress("Electron.Phi", Electron_Phi, &b_Electron_Phi);
fChain->SetBranchAddress("Electron.T", Electron_T, &b_Electron_T);
fChain->SetBranchAddress("Electron.Charge", Electron_Charge, &b_Electron_Charge);
fChain->SetBranchAddress("Electron.EhadOverEem", Electron_EhadOverEem, &b_Electron_EhadOverEem);
fChain->SetBranchAddress("Electron.Particle", Electron_Particle, &b_Electron_Particle);
fChain->SetBranchAddress("Electron.IsolationVar", Electron_IsolationVar, &b_Electron_IsolationVar);
fChain->SetBranchAddress("Electron.IsolationVarRhoCorr", Electron_IsolationVarRhoCorr, &b_Electron_IsolationVarRhoCorr);
fChain->SetBranchAddress("Electron.SumPtCharged", Electron_SumPtCharged, &b_Electron_SumPtCharged);
fChain->SetBranchAddress("Electron.SumPtNeutral", Electron_SumPtNeutral, &b_Electron_SumPtNeutral);
fChain->SetBranchAddress("Electron.SumPtChargedPU", Electron_SumPtChargedPU, &b_Electron_SumPtChargedPU);
fChain->SetBranchAddress("Electron.SumPt", Electron_SumPt, &b_Electron_SumPt);
fChain->SetBranchAddress("Electron_size", &Electron_size, &b_Electron_size);
fChain->SetBranchAddress("Photon", &Photon_, &b_Photon_);
fChain->SetBranchAddress("Photon.fUniqueID", Photon_fUniqueID, &b_Photon_fUniqueID);
fChain->SetBranchAddress("Photon.fBits", Photon_fBits, &b_Photon_fBits);
fChain->SetBranchAddress("Photon.PT", Photon_PT, &b_Photon_PT);
fChain->SetBranchAddress("Photon.Eta", Photon_Eta, &b_Photon_Eta);
fChain->SetBranchAddress("Photon.Phi", Photon_Phi, &b_Photon_Phi);
fChain->SetBranchAddress("Photon.E", Photon_E, &b_Photon_E);
fChain->SetBranchAddress("Photon.T", Photon_T, &b_Photon_T);
fChain->SetBranchAddress("Photon.EhadOverEem", Photon_EhadOverEem, &b_Photon_EhadOverEem);
fChain->SetBranchAddress("Photon.Particles", Photon_Particles, &b_Photon_Particles);
fChain->SetBranchAddress("Photon.IsolationVar", Photon_IsolationVar, &b_Photon_IsolationVar);
fChain->SetBranchAddress("Photon.IsolationVarRhoCorr", Photon_IsolationVarRhoCorr, &b_Photon_IsolationVarRhoCorr);
fChain->SetBranchAddress("Photon.SumPtCharged", Photon_SumPtCharged, &b_Photon_SumPtCharged);
fChain->SetBranchAddress("Photon.SumPtNeutral", Photon_SumPtNeutral, &b_Photon_SumPtNeutral);
fChain->SetBranchAddress("Photon.SumPtChargedPU", Photon_SumPtChargedPU, &b_Photon_SumPtChargedPU);
fChain->SetBranchAddress("Photon.SumPt", Photon_SumPt, &b_Photon_SumPt);
fChain->SetBranchAddress("Photon_size", &Photon_size, &b_Photon_size);
fChain->SetBranchAddress("Muon", &Muon_, &b_Muon_);
fChain->SetBranchAddress("Muon.fUniqueID", Muon_fUniqueID, &b_Muon_fUniqueID);
fChain->SetBranchAddress("Muon.fBits", Muon_fBits, &b_Muon_fBits);
fChain->SetBranchAddress("Muon.PT", Muon_PT, &b_Muon_PT);
fChain->SetBranchAddress("Muon.Eta", Muon_Eta, &b_Muon_Eta);
fChain->SetBranchAddress("Muon.Phi", Muon_Phi, &b_Muon_Phi);
fChain->SetBranchAddress("Muon.T", Muon_T, &b_Muon_T);
fChain->SetBranchAddress("Muon.Charge", Muon_Charge, &b_Muon_Charge);
fChain->SetBranchAddress("Muon.Particle", Muon_Particle, &b_Muon_Particle);
fChain->SetBranchAddress("Muon.IsolationVar", Muon_IsolationVar, &b_Muon_IsolationVar);
fChain->SetBranchAddress("Muon.IsolationVarRhoCorr", Muon_IsolationVarRhoCorr, &b_Muon_IsolationVarRhoCorr);
fChain->SetBranchAddress("Muon.SumPtCharged", Muon_SumPtCharged, &b_Muon_SumPtCharged);
fChain->SetBranchAddress("Muon.SumPtNeutral", Muon_SumPtNeutral, &b_Muon_SumPtNeutral);
fChain->SetBranchAddress("Muon.SumPtChargedPU", Muon_SumPtChargedPU, &b_Muon_SumPtChargedPU);
fChain->SetBranchAddress("Muon.SumPt", Muon_SumPt, &b_Muon_SumPt);
fChain->SetBranchAddress("Muon_size", &Muon_size, &b_Muon_size);
fChain->SetBranchAddress("FatJet", &FatJet_, &b_FatJet_);
fChain->SetBranchAddress("FatJet.fUniqueID", FatJet_fUniqueID, &b_FatJet_fUniqueID);
fChain->SetBranchAddress("FatJet.fBits", FatJet_fBits, &b_FatJet_fBits);
fChain->SetBranchAddress("FatJet.PT", FatJet_PT, &b_FatJet_PT);
fChain->SetBranchAddress("FatJet.Eta", FatJet_Eta, &b_FatJet_Eta);
fChain->SetBranchAddress("FatJet.Phi", FatJet_Phi, &b_FatJet_Phi);
fChain->SetBranchAddress("FatJet.T", FatJet_T, &b_FatJet_T);
fChain->SetBranchAddress("FatJet.Mass", FatJet_Mass, &b_FatJet_Mass);
fChain->SetBranchAddress("FatJet.DeltaEta", FatJet_DeltaEta, &b_FatJet_DeltaEta);
fChain->SetBranchAddress("FatJet.DeltaPhi", FatJet_DeltaPhi, &b_FatJet_DeltaPhi);
fChain->SetBranchAddress("FatJet.Flavor", FatJet_Flavor, &b_FatJet_Flavor);
fChain->SetBranchAddress("FatJet.FlavorAlgo", FatJet_FlavorAlgo, &b_FatJet_FlavorAlgo);
fChain->SetBranchAddress("FatJet.FlavorPhys", FatJet_FlavorPhys, &b_FatJet_FlavorPhys);
fChain->SetBranchAddress("FatJet.BTag", FatJet_BTag, &b_FatJet_BTag);
fChain->SetBranchAddress("FatJet.BTagAlgo", FatJet_BTagAlgo, &b_FatJet_BTagAlgo);
fChain->SetBranchAddress("FatJet.BTagPhys", FatJet_BTagPhys, &b_FatJet_BTagPhys);
fChain->SetBranchAddress("FatJet.TauTag", FatJet_TauTag, &b_FatJet_TauTag);
fChain->SetBranchAddress("FatJet.Charge", FatJet_Charge, &b_FatJet_Charge);
fChain->SetBranchAddress("FatJet.EhadOverEem", FatJet_EhadOverEem, &b_FatJet_EhadOverEem);
fChain->SetBranchAddress("FatJet.NCharged", FatJet_NCharged, &b_FatJet_NCharged);
fChain->SetBranchAddress("FatJet.NNeutrals", FatJet_NNeutrals, &b_FatJet_NNeutrals);
fChain->SetBranchAddress("FatJet.Beta", FatJet_Beta, &b_FatJet_Beta);
fChain->SetBranchAddress("FatJet.BetaStar", FatJet_BetaStar, &b_FatJet_BetaStar);
fChain->SetBranchAddress("FatJet.MeanSqDeltaR", FatJet_MeanSqDeltaR, &b_FatJet_MeanSqDeltaR);
fChain->SetBranchAddress("FatJet.PTD", FatJet_PTD, &b_FatJet_PTD);
fChain->SetBranchAddress("FatJet.FracPt[5]", FatJet_FracPt, &b_FatJet_FracPt);
fChain->SetBranchAddress("FatJet.Tau[5]", FatJet_Tau, &b_FatJet_Tau);
fChain->SetBranchAddress("FatJet.TrimmedP4[5]", FatJet_TrimmedP4, &b_FatJet_TrimmedP4);
fChain->SetBranchAddress("FatJet.PrunedP4[5]", FatJet_PrunedP4, &b_FatJet_PrunedP4);
fChain->SetBranchAddress("FatJet.SoftDroppedP4[5]", FatJet_SoftDroppedP4, &b_FatJet_SoftDroppedP4);
fChain->SetBranchAddress("FatJet.NSubJetsTrimmed", FatJet_NSubJetsTrimmed, &b_FatJet_NSubJetsTrimmed);
fChain->SetBranchAddress("FatJet.NSubJetsPruned", FatJet_NSubJetsPruned, &b_FatJet_NSubJetsPruned);
fChain->SetBranchAddress("FatJet.NSubJetsSoftDropped", FatJet_NSubJetsSoftDropped, &b_FatJet_NSubJetsSoftDropped);
fChain->SetBranchAddress("FatJet.Constituents", FatJet_Constituents, &b_FatJet_Constituents);
fChain->SetBranchAddress("FatJet.Particles", FatJet_Particles, &b_FatJet_Particles);
fChain->SetBranchAddress("FatJet.Area", FatJet_Area, &b_FatJet_Area);
fChain->SetBranchAddress("FatJet_size", &FatJet_size, &b_FatJet_size);
fChain->SetBranchAddress("MissingET", &MissingET_, &b_MissingET_);
fChain->SetBranchAddress("MissingET.fUniqueID", MissingET_fUniqueID, &b_MissingET_fUniqueID);
fChain->SetBranchAddress("MissingET.fBits", MissingET_fBits, &b_MissingET_fBits);
fChain->SetBranchAddress("MissingET.MET", MissingET_MET, &b_MissingET_MET);
fChain->SetBranchAddress("MissingET.Eta", MissingET_Eta, &b_MissingET_Eta);
fChain->SetBranchAddress("MissingET.Phi", MissingET_Phi, &b_MissingET_Phi);
fChain->SetBranchAddress("MissingET_size", &MissingET_size, &b_MissingET_size);
fChain->SetBranchAddress("ScalarHT", &ScalarHT_, &b_ScalarHT_);
fChain->SetBranchAddress("ScalarHT.fUniqueID", ScalarHT_fUniqueID, &b_ScalarHT_fUniqueID);
fChain->SetBranchAddress("ScalarHT.fBits", ScalarHT_fBits, &b_ScalarHT_fBits);
fChain->SetBranchAddress("ScalarHT.HT", ScalarHT_HT, &b_ScalarHT_HT);
fChain->SetBranchAddress("ScalarHT_size", &ScalarHT_size, &b_ScalarHT_size);
Notify();
}
Bool_t Run07Signal::Notify()
{
// The Notify() function is called when a new file is opened. This
// can be either for a new TTree in a TChain or when when a new TTree
// is started when using PROOF. It is normally not necessary to make changes
// to the generated code, but the routine can be extended by the
// user if needed. The return value is currently not used.
return kTRUE;
}
void Run07Signal::Show(Long64_t entry)
{
// Print contents of entry.
// If entry is not specified, print current entry
if (!fChain) return;
fChain->Show(entry);
}
Int_t Run07Signal::Cut(Long64_t entry)
{
// This function may be called from Loop.
// returns 1 if entry is accepted.
// returns -1 otherwise.
return 1;
}
#endif // #ifdef Run07Signal_cxx
| [
"[email protected]"
] | |
88e612514df15a2fa60d8b12f546f3cb8273c674 | 12c080b81ca5a7aaf87d4199e58dfe08b9670b7f | /80-Remove Duplicates from Sorted Array II.cpp | e4e2816a2822a26b96c4878183adb5d962e4281c | [] | no_license | PhoenixDD/LeetCode | 23970d3d5485f0c67ecc46afbf07c296a14f7a4d | 04d78870f56dc7c5057a8b22e5c3ed87ae04a8bf | refs/heads/master | 2021-01-01T19:21:32.795867 | 2020-11-26T05:12:48 | 2020-11-26T05:12:48 | 98,563,765 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | cpp | class Solution {
public:
int removeDuplicates(vector<int>& nums)
{
int start=0;
for(int i=0;i<nums.size();i++)
{
if(i<nums.size()-2&&nums[i]==nums[i+1]&&nums[i]==nums[i+2])
while(i<nums.size()-2&&nums[i+1]==nums[i+2])
i++;
if(i<nums.size())
nums[start++]=nums[i];
}
return start;
}
}; | [
"[email protected]"
] | |
b3dc8bef83d320b25a8b04257498a1aeb545c164 | bddae8e711e4daa339e19938a65648bdbff6fe63 | /EventHandler.h | 027f1202e7a042745b378db7015d7a4753a6c380 | [] | no_license | rrcmenezes/BeeSmartIOTIR | 475d11cc3a0bf5c68a6d76f8abc67e6340cc2ae8 | 336abea6d2b7c8afbee3f5baf799d259119420d9 | refs/heads/main | 2023-04-16T16:17:25.668318 | 2021-04-22T17:02:58 | 2021-04-22T17:02:58 | 360,517,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 664 | h | #ifndef _EVENTHANDLER_H_
#define _EVENTHANDLER_H_
#include <arduino.h>
class CEventHandler
{
unsigned long ulLstMillis;
unsigned long ulCurrMillis;
protected:
unsigned long ulMinutes;
bool bConditionsOK;
CEventHandler(unsigned long ulMinutesParam);
public:
virtual void Save(int *pi_FilePointerPatam);
virtual void Load(int *pi_FilePointerPatam);
void Update();
virtual int GetEventType() = 0;
virtual void CheckConditions() = 0;
virtual String PrintExpression() = 0;
bool ConditionsOK() { return bConditionsOK; };
void SetInterval(unsigned long ulMinutesParam) { ulMinutes = ulMinutesParam; ulLstMillis = millis();} ;
};
#endif
| [
"[email protected]"
] | |
83abb6b2b3e2535e54107d735bf91fb685646541 | 59424c01a2f918da51f16cce7bbb465af22103d6 | /Server/server_state.cc | 9336a64d162bf61553be17303d83094b38f11660 | [] | no_license | henlindemreed/rtchat | 522997478b9b83f0ab7e3a9e95c35825e6a85847 | 74a6cd006ee5928bb51eabc6d27b10ab9f952691 | refs/heads/main | 2023-05-01T05:47:48.595012 | 2021-05-10T18:13:27 | 2021-05-10T18:13:27 | 347,539,463 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,504 | cc | #include "server_state.hh"
#include <algorithm>
// Constructor
sstate::sstate() :
rooms{rmls(0)}, next_id{1}, mtx{}
{}
// Destructor
sstate::~sstate(){}
std::string sstate::to_string(){
std::shared_lock<std::shared_mutex> state_lock(mtx);
std::string ans = "";
for(auto &rm : rooms) {
ans += std::to_string(rm.id) + SEP;
for(auto &user: rm.users) {
ans += user.name + SEP;
}
ans += '\n';
}
return ans;
}
std::string sstate::rm_string(id_t id){
std::shared_lock<std::shared_mutex> state_lock(mtx);
std::string ans = "";
auto rm = std::find_if(rooms.begin(), rooms.end(), [id](auto &x){return x.id == id;});
for(auto &user : rm->users) {
char buf[80];
inet_ntop(AF_INET6, &user.addr.sin6_addr, buf, sizeof(buf));
ans += user.name + SEP + buf + SEP;
}
return ans;
}
sstate::id_t sstate::new_room(sstate::user_info user){
std::unique_lock<std::shared_mutex> state_lock(mtx);
rooms.emplace_back(sstate::room{std::vector<sstate::user_info>(1), next_id});
rooms.back().users.push_back(user);
return next_id++;
}
void sstate::add_to_room(sstate::id_t id, sstate::user_info user){
std::unique_lock<std::shared_mutex> state_lock(mtx);
auto rm = std::find_if(rooms.begin(), rooms.end(), [id](auto &x){return x.id == id;});
if(rm != rooms.end()) {
char buf[80];
inet_ntop(AF_INET6, &user.addr.sin6_addr, buf, sizeof(buf));
std::string msg = std::string(NEWUSER) + SEP + user.name + SEP + buf;
for(auto &user: rm->users){
send(user.sock, msg.c_str(), msg.length(), 0);
}
rm->users.push_back(user);
}
}
void sstate::rem_from_room(sstate::id_t id, sstate::user_info user){
std::unique_lock<std::shared_mutex> state_lock(mtx);
auto rm = std::find_if(rooms.begin(), rooms.end(), [id](auto &x){return x.id == id;});
if(rm != rooms.end()) {
rm->users.erase(std::find(rm->users.begin(), rm->users.end(), user));
char buf[80];
inet_ntop(AF_INET6, &user.addr.sin6_addr, buf, sizeof(buf));
std::string msg = std::string(LEAVEUSER) + SEP + user.name + SEP + buf;
for(auto &user: rm->users){
send(user.sock, msg.c_str(), msg.length(), 0);
}
}
}
bool operator==(const sstate::room &a, const sstate::room &b){
return a.id == b.id;
}
bool operator==(const sstate::user_info &a, const sstate::user_info &b){
return a.sock == b.sock;
} | [
"[email protected]"
] | |
d3ab50d1d066feb3fade551b6218ba302254c4ba | 9ead5fcc5efaf7a73c4c585d813c1cddcb89666d | /m5/src/base/compiler.hh | 2c655af608959070d0642cb30c6cb1fcfd3c206c | [
"BSD-3-Clause"
] | permissive | x10an14/tdt4260Group | b539b6271c8f01f80a9f75249779fb277fa521a4 | 1c4dc24acac3fe6df749e0f41f4d7ab69f443514 | refs/heads/master | 2016-09-06T02:48:04.929661 | 2014-04-08T10:40:22 | 2014-04-08T10:40:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,504 | hh | /*
* Copyright (c) 2006 The Regents of The University of Michigan
* 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 holders 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.
*
* Authors: Ali Saidi
*/
#ifndef __BASE_COMPILER_HH__
#define __BASE_COMPILER_HH__
//http://msdn2.microsoft.com/en-us/library/ms937669.aspx
//http://msdn2.microsoft.com/en-us/library/aa448724.aspx
//http://docs.sun.com/source/819-3688/sun.specific.html#marker-998278
//http://gcc.gnu.org/onlinedocs/gcc-3.3.1/gcc/Function-Attributes.html#Function%20Attributes
#if defined(__GNUC__)
#define M5_ATTR_NORETURN __attribute__((noreturn))
#define M5_PRAGMA_NORETURN(x)
#define M5_DUMMY_RETURN
#define M5_VAR_USED __attribute__((unused))
#elif defined(__SUNPRO_CC)
// this doesn't do anything with sun cc, but why not
#define M5_ATTR_NORETURN __sun_attr__((__noreturn__))
#define M5_DUMMY_RETURN return (0);
#define DO_PRAGMA(x) _Pragma(#x)
#define M5_VAR_USED
#define M5_PRAGMA_NORETURN(x) DO_PRAGMA(does_not_return(x))
#else
#error "Need to define compiler options in base/compiler.hh"
#endif
#endif // __BASE_COMPILER_HH__
| [
"[email protected]"
] | |
e362f5605021cc7b6919984f2dc1812d5a63ec49 | ba18d2d6c57823c5ff0919fb8578980c44b84e50 | /BattleTank/Source/BattleTank/Public/TankTurret.h | 2d4ed374aeac45ace8dd5d29a0ebbcb21212a518 | [] | no_license | LearningUnrealTutorials/BattleTankGame | 54be9c10e1e37a70993fcf436330a28d68a9219d | aec413a9f589594800fe430197f9488678551a71 | refs/heads/master | 2018-09-30T07:55:37.253656 | 2018-07-24T11:14:44 | 2018-07-24T11:14:44 | 103,753,946 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 482 | h | // Written in 2017 by Aleksander Naumenok while following a tutorial on udemy.
#pragma once
#include "CoreMinimal.h"
#include "Components/StaticMeshComponent.h"
#include "TankTurret.generated.h"
/**
*
*/
UCLASS(meta = (BlueprintSpawnableComponent))
class BATTLETANK_API UTankTurret : public UStaticMeshComponent
{
GENERATED_BODY()
public:
void Rotate(float RelativeSpeed);
private:
UPROPERTY(EditDefaultsOnly, Category = "Setup")
float MaxDegreesPerSecond = 20.0f;
};
| [
"[email protected]"
] | |
ae328ccd12a78684da1ee20bc9218be2e0546ceb | 0c3843a351ec7f74454c61a519fccc27a280f6d6 | /directedgraph.cpp | 4ae467c098dcf83ddf0f3f56ebbb37c87a1e3711 | [] | no_license | QuynhNgo/CudaSimulationFF | 157256878ecf759e64bec4ecce7fd78fa61c87ff | c73df2045c61b234a0bdb8dc5d47eb1d78b633d2 | refs/heads/master | 2023-03-26T09:07:06.490419 | 2021-03-18T08:20:04 | 2021-03-18T08:20:04 | 345,980,709 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,420 | cpp | #include "directedgraph.h"
#include "exception.h"
// default constructor
directedgraph::directedgraph()
{
NumberNode = 0;
}
// constructor that reads directly from an input file the information;
directedgraph::directedgraph(std::string _Filename )
{
std::ifstream _Dev;
_Dev.open(_Filename.c_str(),std::ios::in);
if (!_Dev.is_open()) throw Quynh::exception("Cannot open file", errno);
std::string _Item;
int _NumberNode;
while(_Dev.good())
{
std::vector<std::string> _Token;
getline(_Dev, _Item,'\n');
if(_Item.empty()) continue;
_Token = utils::tokenize(_Item,' ');
if(_Token[1] =="node") {
_NumberNode = utils::stringtolong(_Token[2]); // get the number of node of graph
}
else if (_Token[0] =="end"){ break;}
}
// One information is passed to memory now
NumberNode = _NumberNode;
int _NumberNode2 = 0;
while(_Dev.good() && (_NumberNode2 < _NumberNode))
{
std::vector<std::string> _Token;
std::getline(_Dev, _Item,'\n');
if(_Item.empty()) continue;
_Token = utils::tokenize(_Item,' ');
if(_Token[0]=="l")
{
int n = _Token.size();
std::vector<int> *_AdjacientList = new std::vector<int>;
for(int i = 1;i < n; i++)
{
_AdjacientList->push_back(utils::stringtolong(_Token[i]));//got a list of adjacient node;
}
(this->InList).push_back(*_AdjacientList);
delete _AdjacientList;
}
}
_Dev.close();
std::cout<<"Get data for InList and NumberNode from file successfully!" << std::endl;
}
// copy constructor
directedgraph::directedgraph( const directedgraph &_TmpCopyGraph )
{
this->InList = _TmpCopyGraph.InList;
this->NumberNode = _TmpCopyGraph.NumberNode;
}
// destructor
directedgraph::~directedgraph()
{
}
void directedgraph::operator=(const directedgraph & _TmpGraph)
{
NumberNode = _TmpGraph.NumberNode;
InList = _TmpGraph.InList;
}
// to get the InList;
std::vector<std::vector<int>> directedgraph::getInList() const
{
return this->InList;
}
// get the number of node;
int directedgraph::getNumberNode() const
{
return NumberNode;
}
void directedgraph::setNumberNode(int _TmpVar)
{
NumberNode = _TmpVar;
}
void directedgraph::loadGraphFromFile(std::string _Filename ) // from adjacent list, the output is gonna be the outindegree
{
if(!InList.empty()) (InList).clear();
std::ifstream _Dev;
_Dev.open(_Filename.c_str(), std::ios::in);
if(!_Dev.is_open()) throw Quynh::exception("Cannot open file", errno);
std::string _Item;
int _NumberNode;
while(_Dev.good())
{
std::vector<std::string> _Token;
getline(_Dev, _Item,'\n');
if(_Item.empty()) continue;
_Token = utils::tokenize(_Item,' ');
if(_Token[1] =="node") {
_NumberNode = utils::stringtolong(_Token[2]); // get the number of node of graph
}
else if (_Token[0] =="end"){ break;}
}
// the first information is passed to the memory
NumberNode = _NumberNode;
int _NumberNode2 = 0;
while(_Dev.good() && (_NumberNode2 < _NumberNode) )
{
std::vector<std::string> _Token;
getline(_Dev, _Item,'\n');
if(_Item.empty()) continue;
_Token = utils::tokenize(_Item,' ');
if(_Token[0]=="l"){
int _Nn = (int)_Token.size();
std::vector<int> *_AdjacientList = new std::vector<int>;
for(int i = 1;i<_Nn; i++)
{
_AdjacientList->push_back(utils::stringtolong(_Token[i]));//got a list of adjacient node;
}
(this->InList).push_back(*_AdjacientList);
delete _AdjacientList;
}
}
_Dev.close();
std::cout << "Loaded file successfully! " << std::endl;
}
// export directed graph in form of adjmat
void directedgraph::printGraph2File(std::string _FileName ) const
{
std::ofstream _Dev;
_Dev.open(_FileName, std::ios::out);
_Dev << "number node " << NumberNode << std::endl;
_Dev << "end header!" << std::endl;
for (int i = 0; i < (int)this->InList.size(); i++)
{
size_t _SizeOfRowI = (this->InList)[i].size();
for (size_t j = 0; j<_SizeOfRowI; j++)
{
_Dev << (this->InList)[i][j] << " ";
}
_Dev << std::endl;
}
_Dev.close();
std::cout << "Write to file successfully!" << std::endl;
}
| [
"[email protected]"
] | |
a7517968854d47cde5013b1da37d448bf4d919ea | 80b9d1acd4268f4abc911ecd7ee289eae6812e97 | /lib/AFE_APIs/AFE-API-MQTT-Domoticz.cpp | 6f73ec571995b6d9b343c9ab28858ad5efb15238 | [
"MIT"
] | permissive | ziyo98/AFE-Firmware | c12138e2b73e99dcb4bc832da758031cbff8f4af | 6676c8d5e5aae3675a1500a5b3ddfb9b36543d22 | refs/heads/master | 2020-12-29T08:01:55.061894 | 2020-01-26T18:03:11 | 2020-01-26T18:03:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,956 | cpp | /* AFE Firmware for smart home devices, Website: https://afe.smartnydom.pl/ */
#include "AFE-API-MQTT-Domoticz.h"
#ifdef AFE_CONFIG_API_DOMOTICZ_ENABLED
AFEAPIMQTTDomoticz::AFEAPIMQTTDomoticz() : AFEAPI(){};
#ifdef AFE_CONFIG_HARDWARE_LED
void AFEAPIMQTTDomoticz::begin(AFEDataAccess *Data, AFEDevice *Device,
AFELED *Led) {
AFEAPI::begin(Data, Device, Led);
}
#else
void AFEAPIMQTTDomoticz::begin(AFEDataAccess *Data, AFEDevice *Device) {
AFEAPI::begin(Data, Device);
}
#endif // AFE_CONFIG_HARDWARE_LED
void AFEAPIMQTTDomoticz::listener() {
if (Mqtt.listener()) {
#ifdef AFE_CONFIG_API_PROCESS_REQUESTS
processRequest();
#endif
}
}
void AFEAPIMQTTDomoticz::synchronize() {
#ifdef DEBUG
Serial << endl << "INFO: Sending current device state to MQTT Broker ...";
#endif
/* Synchronize: Relay */
#ifdef AFE_CONFIG_HARDWARE_RELAY
for (uint8_t i = 0; i < _Device->configuration.noOfRelays; i++) {
publishRelayState(i);
}
#endif
/* Synchronize: Switch */
#ifdef AFE_CONFIG_HARDWARE_SWITCH
for (uint8_t i = 0; i < _Device->configuration.noOfSwitches; i++) {
publishSwitchState(i);
}
#endif
#ifdef DEBUG
Serial << endl << "INFO: Sending message: device is connected ...";
#endif
if (Mqtt.configuration.lwt.idx > 0) {
char lwtMessage[100];
sprintf(lwtMessage, "{\"command\":\"udevice\",\"idx\":%d,\"nvalue\":1,\"svalue\":\"%s\","
"\"Battery\":100,\"RSSI\":%d}",
Mqtt.configuration.lwt.idx, L_CONNECTED, getRSSI());
Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, lwtMessage);
}
}
void AFEAPIMQTTDomoticz::subscribe() {
#ifdef DEBUG
Serial << endl << "INFO: Subsribing to MQTT Topics ...";
#endif
Mqtt.subscribe(AFE_CONFIG_API_DOMOTICZ_TOPIC_OUT);
}
#ifdef AFE_CONFIG_API_PROCESS_REQUESTS
DOMOTICZ_MQTT_COMMAND AFEAPIMQTTDomoticz::getCommand() {
DOMOTICZ_MQTT_COMMAND command;
char json[Mqtt.message.length];
for (uint16_t i = 0; i < Mqtt.message.length; i++) {
json[i] = Mqtt.message.content[i];
}
StaticJsonBuffer<AFE_CONFIG_API_JSON_BUFFER_SIZE> jsonBuffer;
JsonObject &root = jsonBuffer.parseObject(json);
if (root.success()) {
command.domoticz.idx = root["idx"];
command.nvalue = root["nvalue"];
#ifdef DEBUG
Serial << endl
<< "INFO: Domoticz: Got command: " << command.nvalue
<< ", IDX: " << command.domoticz.idx;
#endif
}
#ifdef DEBUG
else {
Serial << endl << "ERROR: Domoticz: Problem with JSON pharsing";
}
#endif
return command;
}
#endif
#ifdef AFE_CONFIG_API_PROCESS_REQUESTS
void AFEAPIMQTTDomoticz::processRequest() {
DOMOTICZ_MQTT_COMMAND command = getCommand();
if (command.domoticz.idx > 0 && idxForProcessing(command.domoticz.idx)) {
#ifdef DEBUG
uint8_t _found = false;
#endif
for (uint8_t i = 0; i < AFE_CONFIG_API_DOMOTICZ_IDX_CACHE_LENGTH; i++) {
if (idxCache[i].domoticz.idx == command.domoticz.idx) {
switch (idxCache[i].type) {
/* Processing Relay command*/
case AFE_DOMOTICZ_DEVICE_RELAY:
#ifdef DEBUG
Serial << endl
<< "INFO: Domoticz: Found Relay ID: " << idxCache[i].id;
_found = true;
#endif
if (_Relay[idxCache[i].id]->get() != (byte)command.nvalue) {
if (command.nvalue == AFE_SWITCH_OFF) {
_Relay[i]->off();
} else {
_Relay[i]->on();
}
publishRelayState(i);
}
#ifdef DEBUG
else {
Serial << endl << "WARN: Domoticz: Same state. No change needed";
}
#endif
break;
/* Processing Unknown command*/
default:
#ifdef DEBUG
Serial << endl
<< "ERROR: Domoticz: Device type not handled. Type: "
<< idxCache[i].type;
#endif
break;
}
}
}
#ifdef DEBUG
if (!_found) {
Serial << endl
<< "WARN: Domoticz: No item found with IDX: "
<< command.domoticz.idx;
}
#endif
}
#ifdef DEBUG
else {
Serial << endl
<< (command.domoticz.idx > 0 ? "INFO: Domoticz: Bypassing IDX: "
: " - no IDX: ")
<< command.domoticz.idx;
}
#endif
}
#endif // AFE_CONFIG_API_PROCESS_REQUESTS
#ifdef AFE_CONFIG_API_PROCESS_REQUESTS
boolean AFEAPIMQTTDomoticz::idxForProcessing(uint32_t idx) {
boolean _ret = true;
if (idx == bypassProcessing.idx) {
bypassProcessing.idx = 0;
_ret = false;
}
return _ret;
}
#endif // AFE_CONFIG_API_PROCESS_REQUESTS
#ifdef AFE_CONFIG_HARDWARE_RELAY
void AFEAPIMQTTDomoticz::addClass(AFERelay *Relay) {
AFEAPI::addClass(Relay);
#ifdef DEBUG
Serial << endl << "INFO: Caching IDXs for Relays";
#endif
uint8_t index = 0;
for (uint8_t i = 0; i < _Device->configuration.noOfRelays; i++) {
if (_Relay[i]->configuration.domoticz.idx > 0) {
idxCache[index].domoticz.idx = _Relay[i]->configuration.domoticz.idx;
idxCache[index].id = i;
idxCache[index].type = AFE_DOMOTICZ_DEVICE_RELAY;
#ifdef DEBUG
Serial << endl << " - added IDX: " << idxCache[index].domoticz.idx;
#endif
index++;
}
#ifdef DEBUG
else {
Serial << endl << " - IDX not set";
}
#endif
}
}
#endif // AFE_CONFIG_HARDWARE_RELAY
#ifdef AFE_CONFIG_API_PROCESS_REQUESTS
boolean AFEAPIMQTTDomoticz::publishRelayState(uint8_t id) {
boolean publishStatus = false;
if (enabled && _Relay[id]->configuration.domoticz.idx > 0) {
char json[AFE_CONFIG_API_JSON_SWITCH_COMMAND_LENGTH];
generateSwitchMessage(json, _Relay[id]->configuration.domoticz.idx,
_Relay[id]->get());
publishStatus = Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json);
bypassProcessing.idx = _Relay[id]->configuration.domoticz.idx;
}
return publishStatus;
}
#endif // AFE_CONFIG_API_PROCESS_REQUESTS
#ifdef AFE_CONFIG_HARDWARE_SWITCH
void AFEAPIMQTTDomoticz::addClass(AFESwitch *Switch) {
AFEAPI::addClass(Switch);
}
#endif // AFE_CONFIG_HARDWARE_SWITCH
#ifdef AFE_CONFIG_HARDWARE_SWITCH
boolean AFEAPIMQTTDomoticz::publishSwitchState(uint8_t id) {
boolean publishStatus = false;
if (enabled && _Switch[id]->configuration.domoticz.idx) {
char json[AFE_CONFIG_API_JSON_SWITCH_COMMAND_LENGTH];
generateSwitchMessage(json, _Switch[id]->configuration.domoticz.idx,
_Switch[id]->getPhisicalState() == 1 ? AFE_SWITCH_OFF
: AFE_SWITCH_ON);
publishStatus = Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json);
}
return publishStatus;
}
#endif // AFE_CONFIG_HARDWARE_SWITCH
#ifdef AFE_CONFIG_HARDWARE_ADC_VCC
void AFEAPIMQTTDomoticz::addClass(AFEAnalogInput *Analog) {
AFEAPI::addClass(Analog);
}
#endif
#ifdef AFE_CONFIG_HARDWARE_ADC_VCC
void AFEAPIMQTTDomoticz::publishADCValues() {
if (enabled) {
char json[AFE_CONFIG_API_JSON_DEVICE_COMMAND_LENGTH];
char value[20];
if (_AnalogInput->configuration.domoticz.percent > 0) {
sprintf(value, "%-.2f", _AnalogInput->data.percent);
generateDeviceValue(json, _AnalogInput->configuration.domoticz.percent,
value);
Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json);
}
if (_AnalogInput->configuration.domoticz.voltage > 0) {
sprintf(value, "%-.4f", _AnalogInput->data.voltage);
generateDeviceValue(json, _AnalogInput->configuration.domoticz.voltage,
value);
Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json);
}
if (_AnalogInput->configuration.domoticz.voltageCalculated > 0) {
sprintf(value, "%-.4f", _AnalogInput->data.voltageCalculated);
generateDeviceValue(
json, _AnalogInput->configuration.domoticz.voltageCalculated, value);
Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json);
}
if (_AnalogInput->configuration.domoticz.raw > 0) {
sprintf(value, "%-d", _AnalogInput->data.raw);
generateDeviceValue(json, _AnalogInput->configuration.domoticz.raw,
value);
Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json);
}
}
}
#endif
void AFEAPIMQTTDomoticz::generateSwitchMessage(char *json, uint32_t idx,
boolean state) {
sprintf(json, "{\"command\":\"switchlight\",\"idx\":%d,\"switchcmd\":\"%s\"}",
idx, state ? "On" : "Off");
}
void AFEAPIMQTTDomoticz::generateDeviceValue(char *json, uint32_t idx,
char *value) {
sprintf(json,
"{\"command\":\"udevice\",\"idx\":%d,\"nvalue\":0,\"svalue\":\"%s\"}",
idx, value);
}
uint8_t AFEAPIMQTTDomoticz::getRSSI() {
uint8_t _ret;
long current = WiFi.RSSI();
if (current > -50) {
_ret = 10;
} else if (current < -98) {
_ret = 0;
} else {
_ret = ((current + 97) / 5) + 1;
}
return _ret;
}
#endif // AFE_CONFIG_API_DOMOTICZ_ENABLED | [
"[email protected]"
] | |
f04df0e8a6dffbf5669c909593bc581f97fe720a | 143da2290a541ddaf270b3ce81523b41bd9345df | /test/camera_corner_detect/source/main.cpp | d03cbf81836963bb61d780f5293d0fbab488b18e | [] | no_license | premsasidharan/mmfcpp | 1edaaf6f9fc0578edddc36a163c0bf3a2d3a8afc | d0a9619c8d3ee467ec9e7dcddc9bd5ecd87c4aa7 | refs/heads/master | 2021-01-01T06:54:07.492622 | 2013-04-13T19:14:12 | 2013-04-13T19:14:12 | 33,697,553 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 658 | cpp | #include <QApplication>
#include <gl_widget.h>
#include <X11/Xlib.h>
int main(int argc, char** argv)
{
if (argc < 4)
{
printf("\nUsage\n%s [V4L2 camera path] [width] [height]", argv[0]);
printf("\nEg:- %s /dev/video0 640 480\n", argv[0]);
exit(0);
}
int w, h;
XInitThreads();
QApplication app(argc, argv);
QGLFormat format;
format.setVersion(3, 1);
format.setProfile(QGLFormat::CoreProfile);
format.setSampleBuffers(true);
w = atoi(argv[2]);
h = atoi(argv[3]);
Gl_widget window(w, h, QString(argv[1]), format);
window.resize(w, h);
window.show();
return app.exec();
}
| [
"[email protected]@7add919e-d01b-36b3-b92c-1f8e5742f5db"
] | [email protected]@7add919e-d01b-36b3-b92c-1f8e5742f5db |
74feede8b45ca59d1b130dd37cdb5ec66d73224f | d84852c821600c3836952b78108df724f90e1096 | /exams/2559/02204111/2/midterm/3_2_715_5920500221.cpp | a38da49ec4e10956cc9708faa644e3533b28fd3b | [
"MIT"
] | permissive | btcup/sb-admin | 4a16b380bbccd03f51f6cc5751f33acda2a36b43 | c2c71dce1cd683f8eff8e3c557f9b5c9cc5e168f | refs/heads/master | 2020-03-08T05:17:16.343572 | 2018-05-07T17:21:22 | 2018-05-07T17:21:22 | 127,944,367 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 495 | cpp | //5920500221 Supasin Rujiapnich
#include <iostream>
#include <cmath>
using namespace std;
int main ()
{
float x,y,z;
cout<<"Enter electricity cost per unit (bahts) : " ;
cin>>x;
cout<<"Enter last unit :";
cin>>y;
cout<<"Enter current unit :";
cin>>z;
cout<<"Units used = "<<(z-y)<<endl ;
cout<<"Electricity charge (bahts) = "<<(z-y)*x<<endl ;
cout<<"Total of Electricity charge (bahts) ="<<endl;
system ("pause");
return 0;
}
| [
"[email protected]"
] | |
2f3dc314d8496fad4e45507f20a430b9b7f31b4c | 630e5fa4fec4cee4b6936eec74a726550406c11f | /src/libzerocoin/Denominations.cpp | 2f0dfa562643c3d2e1e23e77f55d07b8f04050fb | [
"MIT"
] | permissive | crypTuron/PengolinCoin-Core | 4d815d25de927d42dc890379d15738ee728c525e | 3d6c66dd930110075ff44ee6f5a4364c533becd7 | refs/heads/master | 2022-11-24T21:17:56.271853 | 2020-07-23T13:49:52 | 2020-07-23T13:49:52 | 282,408,670 | 0 | 0 | MIT | 2020-07-25T09:04:22 | 2020-07-25T09:04:21 | null | UTF-8 | C++ | false | false | 3,978 | cpp | // Copyright (c) 2017-2019 The PENGOLINCOIN developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "Denominations.h"
#include "amount.h"
namespace libzerocoin {
// All denomination values should only exist in these routines for consistency.
// For serialization/unserialization enums are converted to int (denoted enumvalue in function name)
CoinDenomination IntToZerocoinDenomination(int64_t amount)
{
CoinDenomination denomination;
switch (amount) {
case 1: denomination = CoinDenomination::ZQ_ONE; break;
case 5: denomination = CoinDenomination::ZQ_FIVE; break;
case 10: denomination = CoinDenomination::ZQ_TEN; break;
case 50: denomination = CoinDenomination::ZQ_FIFTY; break;
case 100: denomination = CoinDenomination::ZQ_ONE_HUNDRED; break;
case 500: denomination = CoinDenomination::ZQ_FIVE_HUNDRED; break;
case 1000: denomination = CoinDenomination::ZQ_ONE_THOUSAND; break;
case 5000: denomination = CoinDenomination::ZQ_FIVE_THOUSAND; break;
default:
//not a valid denomination
denomination = CoinDenomination::ZQ_ERROR; break;
}
return denomination;
}
int64_t ZerocoinDenominationToInt(const CoinDenomination& denomination)
{
int64_t Value = 0;
switch (denomination) {
case CoinDenomination::ZQ_ONE: Value = 1; break;
case CoinDenomination::ZQ_FIVE: Value = 5; break;
case CoinDenomination::ZQ_TEN: Value = 10; break;
case CoinDenomination::ZQ_FIFTY : Value = 50; break;
case CoinDenomination::ZQ_ONE_HUNDRED: Value = 100; break;
case CoinDenomination::ZQ_FIVE_HUNDRED: Value = 500; break;
case CoinDenomination::ZQ_ONE_THOUSAND: Value = 1000; break;
case CoinDenomination::ZQ_FIVE_THOUSAND: Value = 5000; break;
default:
// Error Case
Value = 0; break;
}
return Value;
}
CoinDenomination AmountToZerocoinDenomination(CAmount amount)
{
// Check to make sure amount is an exact integer number of COINS
CAmount residual_amount = amount - COIN * (amount / COIN);
if (residual_amount == 0) {
return IntToZerocoinDenomination(amount/COIN);
} else {
return CoinDenomination::ZQ_ERROR;
}
}
// return the highest denomination that is less than or equal to the amount given
// use case: converting PGO to zPGO without user worrying about denomination math themselves
CoinDenomination AmountToClosestDenomination(CAmount nAmount, CAmount& nRemaining)
{
if (nAmount < 1 * COIN)
return ZQ_ERROR;
CAmount nConvert = nAmount / COIN;
CoinDenomination denomination = ZQ_ERROR;
for (unsigned int i = 0; i < zerocoinDenomList.size(); i++) {
denomination = zerocoinDenomList[i];
//exact match
if (nConvert == denomination) {
nRemaining = 0;
return denomination;
}
//we are beyond the value, use previous denomination
if (denomination > nConvert && i) {
CoinDenomination d = zerocoinDenomList[i - 1];
nRemaining = nConvert - d;
return d;
}
}
//last denomination, the highest value possible
nRemaining = nConvert - denomination;
return denomination;
}
CAmount ZerocoinDenominationToAmount(const CoinDenomination& denomination)
{
CAmount nValue = COIN * ZerocoinDenominationToInt(denomination);
return nValue;
}
CoinDenomination get_denomination(std::string denomAmount) {
int64_t val = std::stoi(denomAmount);
return IntToZerocoinDenomination(val);
}
int64_t get_amount(std::string denomAmount) {
int64_t nAmount = 0;
CoinDenomination denom = get_denomination(denomAmount);
if (denom == ZQ_ERROR) {
// SHOULD WE THROW EXCEPTION or Something?
nAmount = 0;
} else {
nAmount = ZerocoinDenominationToAmount(denom);
}
return nAmount;
}
} /* namespace libzerocoin */
| [
"[email protected]"
] | |
01e687a434933f16c637d79bd1defea7045450cf | d15cf536963fab11e42d85bda423da5f2a58dc57 | /c6/overload1.cpp | ee2f604cd53481c3dc5ae90543bdad91bdeb529b | [] | no_license | mcmiloy/cpp_primer | 5692e8857961e1c7a7dba46e1553e7aace61bc4d | c93a50cd84d195e8cf997da7a925030925731cc7 | refs/heads/master | 2020-03-15T18:41:10.377834 | 2018-05-15T19:32:15 | 2018-05-15T19:32:15 | 132,289,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | cpp | #include <iostream>
#include <vector>
#include <string>
using std::cin;
using std::cout;
using std::endl;
using std::vector;
using std::string;
int mysum(int i, int j){
return i + j;
}
void default_args(int i = 0){
cout << i << endl;
}
int mysum(double i, const int j){
return i*j;
}
int main(){
cout << mysum(3,4) << endl; // this uses mysum with two ints
cout << mysum(3.0,4) << endl; // this use mysun with one int, two doubles
default_args();
return 0;
} | [
"[email protected]"
] | |
0e40cbbdffda2052f50829fdba2e40c7de4b9fd2 | 4b5a008421fb71f83d948dc9f147e955ab4dc7b1 | /uaMobi/qzxing-master/src/zxing/zxing/qrcode/detector/QRFinderPattern.cpp | 5bc79d6c98d1115abd58b9e60baea917dcfe6440 | [
"Apache-2.0"
] | permissive | ston1x/UNARetail | a205becbe3c69b3bd51127b6ec29c3e5abf340d0 | 491ced2068cb89ed24d7d5c23477fd80ca54b8dd | refs/heads/master | 2022-10-11T01:26:44.848735 | 2020-06-09T10:07:00 | 2020-06-09T10:07:00 | 271,839,954 | 1 | 0 | null | 2020-06-12T16:11:36 | 2020-06-12T16:11:36 | null | UTF-8 | C++ | false | false | 2,615 | cpp | // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
/*
* FinderPattern.cpp
* zxing
*
* Created by Christian Brunschen on 13/05/2008.
* Copyright 2008 ZXing authors All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <zxing/qrcode/detector/FinderPattern.h>
using std::abs;
using zxing::Ref;
using zxing::qrcode::FinderPattern;
FinderPattern::FinderPattern(float posX, float posY, float estimatedModuleSize)
: ResultPoint(posX, posY), estimatedModuleSize_(estimatedModuleSize), count_(1) {}
FinderPattern::FinderPattern(float posX, float posY, float estimatedModuleSize, int count)
: ResultPoint(posX, posY), estimatedModuleSize_(estimatedModuleSize), count_(count) {}
int FinderPattern::getCount() const {
return count_;
}
float FinderPattern::getEstimatedModuleSize() const {
return estimatedModuleSize_;
}
void FinderPattern::incrementCount() {
count_++;
// cerr << "ic " << getX() << " " << getY() << " " << count_ << endl;
}
/*
bool FinderPattern::aboutEquals(float moduleSize, float i, float j) const {
return abs(i - posY_) <= moduleSize && abs(j - posX_) <= moduleSize && (abs(moduleSize - estimatedModuleSize_)
<= 1.0f || abs(moduleSize - estimatedModuleSize_) / estimatedModuleSize_ <= 0.1f);
}
*/
bool FinderPattern::aboutEquals(float moduleSize, float i, float j) const {
if (abs(i - getY()) <= moduleSize && abs(j - getX()) <= moduleSize) {
float moduleSizeDiff = abs(moduleSize - estimatedModuleSize_);
return moduleSizeDiff <= 1.0f || moduleSizeDiff <= estimatedModuleSize_;
}
return false;
}
Ref<FinderPattern> FinderPattern::combineEstimate(float i, float j, float newModuleSize) const {
// fprintf(stderr, "ce %f %f %f\n", i, j, newModuleSize);
int combinedCount = count_ + 1;
float combinedX = (count_ * getX() + j) / combinedCount;
float combinedY = (count_ * getY() + i) / combinedCount;
float combinedModuleSize = (count_ * getEstimatedModuleSize() + newModuleSize) / combinedCount;
return Ref<FinderPattern>(new FinderPattern(combinedX, combinedY, combinedModuleSize, combinedCount));
} | [
"[email protected]"
] | |
f13815ffc9392357b78252eac9e6699e068b7c5d | 24004e1c3b8005af26d5890091d3c207427a799e | /Win32/NXOPEN/NXOpen/Mechatronics_ObjectSinkBuilder.hxx | 0a248ab3b8fd29a65401c510f875bafa1d3b4eaf | [] | no_license | 15831944/PHStart | 068ca6f86b736a9cc857d7db391b2f20d2f52ba9 | f79280bca2ec7e5f344067ead05f98b7d592ae39 | refs/heads/master | 2022-02-20T04:07:46.994182 | 2019-09-29T06:15:37 | 2019-09-29T06:15:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,318 | hxx | #ifndef NXOpen_MECHATRONICS_OBJECTSINKBUILDER_HXX_INCLUDED
#define NXOpen_MECHATRONICS_OBJECTSINKBUILDER_HXX_INCLUDED
//--------------------------------------------------------------------------
// Header for C++ interface to JA API
//--------------------------------------------------------------------------
//
// Source File:
// Mechatronics_ObjectSinkBuilder.ja
//
// Generated by:
// apiwrap
//
// WARNING:
// This file is automatically generated - do not edit by hand
//
#ifdef _MSC_VER
#pragma once
#endif
#include <NXOpen/NXDeprecation.hxx>
#include <vector>
#include <NXOpen/NXString.hxx>
#include <NXOpen/Callback.hxx>
#include <NXOpen/Builder.hxx>
#include <NXOpen/Mechatronics_ObjectSinkBuilder.hxx>
#include <NXOpen/SelectObjectList.hxx>
#include <NXOpen/libnxopencpp_mechatronics_exports.hxx>
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4996)
#endif
#ifdef __GNUC__
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
namespace NXOpen
{
namespace Mechatronics
{
class ObjectSinkBuilder;
}
class Builder;
namespace Mechatronics
{
class CollisionSensor;
}
namespace Mechatronics
{
class SelectCollisionSensorList;
}
class NXObject;
class SelectNXObjectList;
namespace Mechatronics
{
class _ObjectSinkBuilderBuilder;
class ObjectSinkBuilderImpl;
/** Represents a @link Mechatronics::ObjectSink Mechatronics::ObjectSink@endlink builder. <br> To create a new instance of this class, use @link Mechatronics::ObjectSinkCollection::CreateObjectSinkBuilder Mechatronics::ObjectSinkCollection::CreateObjectSinkBuilder@endlink <br>
<br> Created in NX7.5.1. <br>
*/
class NXOPENCPP_MECHATRONICSEXPORT ObjectSinkBuilder : public Builder
{
/** the delete option. */
public: enum DeleteSourceType
{
DeleteSourceTypeAnycopiedobjects/** Any copied objects */,
DeleteSourceTypeSelectedsources/** Selected sources */
};
private: ObjectSinkBuilderImpl * m_objectsinkbuilder_impl;
private: friend class _ObjectSinkBuilderBuilder;
protected: ObjectSinkBuilder();
public: ~ObjectSinkBuilder();
/**Returns the object select. This can be a @link CollisionSensor CollisionSensor@endlink .
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
public: NXOpen::Mechatronics::SelectCollisionSensorList * CollisionSensor
(
);
/** Sets the collision sensor object.
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
public: void SetCollisionSensor
(
const std::vector<NXOpen::Mechatronics::CollisionSensor *> & objects /** Collision Sensor objects*/
);
/**Returns the option to delete source.
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
public: NXOpen::Mechatronics::ObjectSinkBuilder::DeleteSourceType DeleteSource
(
);
/**Sets the option to delete source.
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
public: void SetDeleteSource
(
NXOpen::Mechatronics::ObjectSinkBuilder::DeleteSourceType deleteSource /** deletesource */
);
/**Returns the source select.
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
public: NXOpen::SelectNXObjectList * Source
(
);
/** Sets the source.
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
public: void SetSource
(
const std::vector<NXOpen::NXObject *> & objects /**Source objects*/
);
/**Returns the name.
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
public: NXString Name
(
);
/**Sets the name.
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
public: void SetName
(
const NXString & name /** name */
);
/**Sets the name.
<br> Created in NX7.5.1. <br>
<br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */
void SetName
(
const char * name /** name */
);
};
}
}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#ifdef __GNUC__
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
#endif
#endif
#undef EXPORTLIBRARY
#endif
| [
"[email protected]"
] | |
699d9ba69e93a242e80ec914d29b4d0fd395c306 | 60b02d565b5751a3f0b21e560a5fa15a992c1de8 | /src/kclpp_test_support/MockClock.cpp | 0c01dd9008d8dbb08ded047ed9a8e97f3a7fa474 | [] | no_license | scivey/kclpp | 43779e5b0465eb10f547ea098f3068f35b184154 | 717ef6032b6736627b3b74e537567065a3d41dd1 | refs/heads/master | 2020-06-11T06:48:52.900337 | 2016-12-12T13:27:40 | 2016-12-12T13:27:40 | 75,742,647 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 539 | cpp | #include "kclpp_test_support/MockClock.h"
#include "kclpp/clock/types.h"
namespace kclpp_test_support {
using NanosecondPoint = MockClock::NanosecondPoint;
NanosecondPoint MockClock::getNow() const {
return nowTime;
}
std::chrono::milliseconds MockClock::getNowMsec() const {
return std::chrono::milliseconds { nowTime.value() * 1000000 };
}
void MockClock::setNow(NanosecondPoint nextNow) {
nowTime = nextNow;
}
size_t MockClock::secToNanosec(size_t numSec) {
return size_t{1000000000} * numSec;
}
} // kclpp_test_support
| [
"[email protected]"
] | |
1dcda00281fdc88448c5b7365244f58f91c5965d | aaa349ae0fb52534c2306a2d343e20f928998ecb | /Boxfish-Lib/src/Book.h | b5a3a5955822891b86af6a8571180f01806375b8 | [] | no_license | Totomosic/Boxfish | 77fa14abf1d2e54248d822df11c79a1b1387e75e | 00f0fc5d3e2ba3d3b3037b851c78708f30ffed33 | refs/heads/master | 2023-09-04T00:32:09.139572 | 2021-10-30T14:09:19 | 2021-10-30T14:09:19 | 273,902,455 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,351 | h | #pragma once
#include "ZobristHash.h"
#include "Position.h"
#include "Move.h"
#include <optional>
#include <unordered_map>
#ifdef SWIG
#define BOX_API
#endif
namespace Boxfish
{
struct BOX_API BookEntry
{
public:
ZobristHash Hash = 0ULL;
SquareIndex From = a1;
SquareIndex To = a1;
int Count = 1;
};
struct BOX_API BookEntryCollection
{
public:
std::vector<BookEntry> Entries = {};
int TotalCount = 0;
public:
// Weighted based on entry Count / TotalCount
BookEntry PickRandom() const;
};
class BOX_API OpeningBook
{
private:
size_t m_EntryCount;
std::unordered_map<ZobristHash, BookEntryCollection> m_Entries;
// Max depth of any entry
int m_Cardinality;
public:
OpeningBook();
size_t GetEntryCount() const;
int GetCardinality() const;
void SetCardinality(int cardinality);
size_t CalculateFileSize() const;
bool Serialize(void* buffer, size_t size) const;
void WriteToFile(const std::string& filename) const;
bool AppendFromFile(const std::string& filename);
void AppendEntry(const BookEntry& entry);
void Clear();
std::optional<BookEntryCollection> Probe(const ZobristHash& hash) const;
private:
static constexpr size_t GetSerializedEntrySize() { return (sizeof(BookEntry::Hash.Hash) + sizeof(BookEntry::From) + sizeof(BookEntry::To) + sizeof(BookEntry::Count)); }
};
}
| [
"[email protected]"
] | |
e8e2749d3fc6e0fd308f3fc72f0a51b51760ff8b | 3769bb183cbc88941cef2524ee35f511e2d1ae64 | /TheKthNumber.cpp | 6d4547ea2bd975903f282af3a8f6e02a503cb9da | [] | no_license | Tinkerllt/algorithm-work | 75063514ec33ba382caf5e91aaf820263ee00687 | 77c6ea349043aae666cf36c3bab717c663bbce4c | refs/heads/master | 2021-01-16T04:37:49.083963 | 2020-06-15T12:43:09 | 2020-06-15T12:43:09 | 242,978,924 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 960 | cpp | #include<iostream>
using namespace std;
int FindKthMax(int*list, int left, int right, int k);
int main() {
int i,n,k;
while (cin >> n) {
int *a = new int[n];
for (i = 0; i < n; i++)
cin >> a[i];
cin >> k;
cout << FindKthMax(a, 0, n - 1, k) << endl;
}
return 0;
}
int FindKthMax(int*list, int left, int right, int k) {
int key = list[left];
int low = left, high = right;
while (low < high) {
while (list[high]>=key&&high > low)
high--;
list[low] = list[high];
while (list[low]<=key&&high>low)
low++;
list[high] = list[low];
}
list[low] = key;
/*实现一次快速排序*/
int l = right - low + 1;
if (l == k) //若key处恰好为第k大数,直接返回
return key;
else if (l < k)
/*l<k说明第k大数在key左边序列中,此时为第k-l大的数*/
FindKthMax(list, left, low - 1, k - l);
else
/*l>k说明第k大的数在右边序列中,位置还是第k大的数*/
FindKthMax(list, low + 1, right, k);
}
| [
"[email protected]"
] | |
6a352c97ff60ff8045ad535408f69906c7232ee8 | 52950b2783a7aebf23689c9c5397cf381d0dde7d | /oss/eblearn_1.2_r2631/core/libeblearn/include/ebl_ebm.hpp | 24cf16eb7e92f56a58543497fd0a897c2203f54e | [
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | zhouyong64/academiccoder | 9b4a8f9555b99dc364a0c0e4157faa582b542e90 | 5415a43889a18795fb98960ff7700dbcdd5138df | refs/heads/master | 2020-05-17T11:46:15.143345 | 2017-12-05T06:57:14 | 2017-12-05T06:57:14 | 29,723,245 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,505 | hpp | /***************************************************************************
* Copyright (C) 2012 by Yann LeCun, Pierre Sermanet *
* [email protected], [email protected] *
* 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.
* * Redistribution under a license not approved by the Open Source
* Initiative (http://www.opensource.org) must display the
* following acknowledgement in all advertising material:
* This product includes software developed at the Courant
* Institute of Mathematical Sciences (http://cims.nyu.edu).
* * The names of the authors may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* 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 AUTHORS 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.
***************************************************************************/
namespace ebl {
// ebm_1 ///////////////////////////////////////////////////////////////////////
template <typename T>
ebm_1<T>::ebm_1(const char *n) : module_1_1<T>(n) {
}
template <typename T>
ebm_1<T>::~ebm_1() {
}
template <typename T>
void ebm_1<T>::fprop1(idx<T> &in, idx<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_1<T>::bprop1(state<T> &in, state<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_1<T>::bbprop1(state<T> &in, state<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_1<T>::fprop(state<T> &in, state<T> &energy) {
if (in.x.size() > 1)
eblerror("expected only 1 tensor in input state");
fprop1(in, energy);
}
template <typename T>
void ebm_1<T>::bprop(state<T> &in, state<T> &energy) {
bprop1(in, energy);
}
template <typename T>
void ebm_1<T>::bbprop(state<T> &in, state<T> &energy) {
bbprop1(in, energy);
}
template <typename T>
void ebm_1<T>::forget(forget_param_linear &fp) {
err_not_implemented(); }
template <typename T>
void ebm_1<T>::normalize() { err_not_implemented(); }
// ebm_module_1_1 //////////////////////////////////////////////////////////////
template <typename T>
ebm_module_1_1<T>::ebm_module_1_1(module_1_1<T> *m, ebm_1<T> *e,
const char *name_)
: module_1_1<T>(name_), module(m), ebm(e) {
if (!m) eblerror("expected non-null module");
if (!e) eblerror("expected non-null ebm");
this->_name = "";
this->_name << m->name() << "+" << e->name();
energy.resize_dx();
energy.resize_ddx();
energy.dx[0].set((T)1.0); // d(E)/dE is always 1
energy.ddx[0].set((T)0.0); // dd(E)/dE is always 0
}
template <typename T>
ebm_module_1_1<T>::~ebm_module_1_1() {
delete module;
delete ebm;
}
template <typename T>
void ebm_module_1_1<T>::fprop1(idx<T> &in, idx<T> &out) {
EDEBUG(this->name() << ": " << module->name() << ": in " << in);
module->fprop1(in, out);
ebm->fprop1(out, energy);
}
template <typename T>
void ebm_module_1_1<T>::bprop1(state<T> &in, state<T> &out) {
EDEBUG(this->name() << ": " << module->name() << ": bprop in " << in);
ebm->bprop1(out, energy);
module->bprop1(in, out);
}
template <typename T>
void ebm_module_1_1<T>::bbprop1(state<T> &in, state<T> &out) {
ebm->bbprop1(out, energy);
module->bbprop1(in, out);
}
template <typename T>
void ebm_module_1_1<T>::forget(forget_param_linear &fp) {
module->forget(fp);
}
template <typename T>
state<T>& ebm_module_1_1<T>::get_energy() {
return energy;
}
template <typename T>
fidxdim ebm_module_1_1<T>::fprop1_size(fidxdim &isize) {
return module->fprop1_size(isize);
}
template <typename T>
fidxdim ebm_module_1_1<T>::bprop1_size(const fidxdim &osize) {
return module->bprop1_size(osize);
}
template <typename T>
std::string ebm_module_1_1<T>::describe() {
std::string desc;
desc << "ebm_module_1_1 " << this->name() << " contains a module_1_1: "
<< module->describe() << ", and an ebm1: " << ebm->describe();
return desc;
}
// ebm_2 ///////////////////////////////////////////////////////////////////////
template <typename T>
ebm_2<T>::ebm_2(const char *name_) : module_2_1<T>(name_) {
}
template <typename T>
ebm_2<T>::~ebm_2() {
}
template <typename T>
void ebm_2<T>::fprop1(idx<T> &i1, idx<T> &i2, idx<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::bprop1(state<T> &i1, state<T> &i2, state<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::bbprop1(state<T> &i1, state<T> &i2, state<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::fprop(state<T> &i1, state<T> &i2, state<T> &energy) {
if (i1.x.size() > 1 || i2.x.size() > 1)
eblerror("expected only 1 tensor in input states");
fprop1(i1, i2, energy);
}
template <typename T>
void ebm_2<T>::bprop(state<T> &i1, state<T> &i2, state<T> &energy) {
bprop1(i1, i2, energy);
}
template <typename T>
void ebm_2<T>::bbprop(state<T> &i1, state<T> &i2, state<T> &energy) {
bbprop1(i1, i2, energy);
}
template <typename T>
void ebm_2<T>::bprop1_copy(state<T> &i1, state<T> &i2, state<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::bprop2_copy(state<T> &i1, state<T> &i2, state<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::bbprop1_copy(state<T> &i1, state<T> &i2, state<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::bbprop2_copy(state<T> &i1, state<T> &i2, state<T> &energy) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::forget(forget_param_linear &fp) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::normalize() {
err_not_implemented(); }
template <typename T>
double ebm_2<T>::infer1(state<T> &i1, state<T> &i2, state<T> &energy,
infer_param &ip) {
err_not_implemented(); return 0; }
template <typename T>
void ebm_2<T>::infer2(state<T> &i1, state<T> &i2, infer_param &ip,
state<T> *energy) {
err_not_implemented(); }
template <typename T>
void ebm_2<T>::infer2_copy(state<T> &i1, state<T> &i2, state<T> &energy) {
err_not_implemented(); }
// fc_ebm1 /////////////////////////////////////////////////////////////////////
template <typename T>
fc_ebm1<T>::fc_ebm1(module_1_1<T> &fm, state<T> &fo, ebm_1<T> &fc)
: fmod(fm), fout(fo), fcost(fc) {
}
template <typename T>
fc_ebm1<T>::~fc_ebm1() {}
template <typename T>
void fc_ebm1<T>::fprop1(idx<T> &in, idx<T> &energy) {
fmod.fprop1(in, fout);
fcost.fprop1(fout, energy);
}
template <typename T>
void fc_ebm1<T>::bprop1(state<T> &in, state<T> &energy) {
fout.zero_dx();
fcost.bprop1(fout, energy);
fmod.bprop1(in, fout);
}
template <typename T>
void fc_ebm1<T>::bbprop1(state<T> &in, state<T> &energy) {
fout.zero_ddx();
fcost.bbprop1(fout, energy);
fmod.bbprop1(in, fout);
}
template <typename T>
void fc_ebm1<T>::forget(forget_param_linear &fp) {
fmod.forget(fp);
fcost.forget(fp);
}
// fc_ebm2 /////////////////////////////////////////////////////////////////////
template <typename T>
fc_ebm2<T>::fc_ebm2(module_1_1<T> &fm, state<T> &fo, ebm_2<T> &fc)
: fmod(fm), fout(fo), fcost(fc) {
}
template <typename T>
fc_ebm2<T>::~fc_ebm2() {}
template <typename T>
void fc_ebm2<T>::fprop1(idx<T> &in1, idx<T> &in2, idx<T> &energy) {
fmod.fprop1(in1, fout);
fcost.fprop1(fout, in2, energy);
#ifdef __DUMP_STATES__ // used to debug
save_matrix(energy, "dump_fc_ebm2_energy.x.mat");
save_matrix(in1, "dump_fc_ebm2_cost_in1.x.mat");
#endif
}
template <typename T>
void fc_ebm2<T>::bprop1(state<T> &in1, state<T> &in2, state<T> &energy) {
fout.clear_dx();
// in2.clear_dx(); // TODO this assumes state<T> == fstate_idx
fcost.bprop1(fout, in2, energy);
fmod.bprop1(in1, fout);
}
template <typename T>
void fc_ebm2<T>::bbprop1(state<T> &in1, state<T> &in2, state<T> &energy){
fout.clear_ddx();
// in2.clear_ddx(); // TODO this assumes state<T> == fstate_idx
fcost.bbprop1(fout, in2, energy);
fmod.bbprop1(in1, fout);
}
template <typename T>
void fc_ebm2<T>::forget(forget_param_linear &fp) {
fmod.forget(fp);
fcost.forget(fp);
}
template <typename T>
void fc_ebm2<T>::infer2(state<T> &i1, state<T> &i2, infer_param &ip,
state<T> *energy) {
fmod.fprop(i1, fout); // first propagate all the way up
fcost.infer2(fout, i2, ip, energy); //then infer from energies
}
} // end namespace ebl
| [
"[email protected]"
] | |
1a1b0bff42be8f50a3c0bd64ad1f559003771dfc | 803c5084fb83c1b50c3bd0734f48f30792f783e1 | /leetcode/1306.cc | 34633aba4161f7e47a3f76877c9adf1d4c21d532 | [] | no_license | guilhermeleobas/maratona | 9627570276d4fd843918013c1fd5a702bbada0e4 | 5d46263b335d2e70b0156001116f7030a068cf5a | refs/heads/master | 2022-09-20T11:28:26.367178 | 2022-09-05T05:20:43 | 2022-09-05T05:20:43 | 21,397,024 | 5 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 616 | cc | class Solution {
public:
void traverse(vector<int>&arr, vector<bool>& memo, int pos){
if (pos < 0 || pos >= arr.size())
return;
if (memo[pos])
return;
memo[pos] = 1;
traverse(arr, memo, pos+arr[pos]);
traverse(arr, memo, pos-arr[pos]);
}
bool canReach(vector<int>& arr, int start) {
vector<bool> memo(arr.size(), false);
traverse(arr, memo, start);
for (int i=0; i<arr.size(); i++){
if (arr[i] == 0 && memo[i] == true){
return true;
}
}
return false;
}
};
| [
"[email protected]"
] | |
e36b465fa7d87896093073eb0241a73f25764322 | 66ecd19c3d9f442431874e2d006eab4480d72c96 | /src/keystore.h | 2a3e3bd052f06ea6437ac20ffe488004ce04caee | [
"MIT"
] | permissive | altbet/abet | a9b4c35a3c167ab855dbc05b4e321166827ce757 | f0b6ea8251108bc604524f62cd9e4c3bd3077978 | refs/heads/master | 2020-11-27T12:53:32.343050 | 2020-07-03T13:33:39 | 2020-07-03T13:33:39 | 178,851,690 | 10 | 21 | MIT | 2019-06-24T22:51:45 | 2019-04-01T11:47:09 | C++ | UTF-8 | C++ | false | false | 3,425 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2017-2018 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_KEYSTORE_H
#define BITCOIN_KEYSTORE_H
#include "key.h"
#include "pubkey.h"
#include "sync.h"
#include <boost/signals2/signal.hpp>
class CScript;
class CScriptID;
/** A virtual base class for key stores */
class CKeyStore
{
protected:
mutable CCriticalSection cs_KeyStore;
public:
virtual ~CKeyStore() {}
//! Add a key to the store.
virtual bool AddKeyPubKey(const CKey& key, const CPubKey& pubkey) = 0;
virtual bool AddKey(const CKey& key);
//! Check whether a key corresponding to a given address is present in the store.
virtual bool HaveKey(const CKeyID& address) const = 0;
virtual bool GetKey(const CKeyID& address, CKey& keyOut) const = 0;
virtual void GetKeys(std::set<CKeyID>& setAddress) const = 0;
virtual bool GetPubKey(const CKeyID& address, CPubKey& vchPubKeyOut) const;
//! Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki
virtual bool AddCScript(const CScript& redeemScript) = 0;
virtual bool HaveCScript(const CScriptID& hash) const = 0;
virtual bool GetCScript(const CScriptID& hash, CScript& redeemScriptOut) const = 0;
//! Support for Watch-only addresses
virtual bool AddWatchOnly(const CScript& dest) = 0;
virtual bool RemoveWatchOnly(const CScript& dest) = 0;
virtual bool HaveWatchOnly(const CScript& dest) const = 0;
virtual bool HaveWatchOnly() const = 0;
//! Support for MultiSig addresses
virtual bool AddMultiSig(const CScript& dest) = 0;
virtual bool RemoveMultiSig(const CScript& dest) = 0;
virtual bool HaveMultiSig(const CScript& dest) const = 0;
virtual bool HaveMultiSig() const = 0;
};
typedef std::map<CKeyID, CKey> KeyMap;
typedef std::map<CScriptID, CScript> ScriptMap;
typedef std::set<CScript> WatchOnlySet;
typedef std::set<CScript> MultiSigScriptSet;
/** Basic key store, that keeps keys in an address->secret map */
class CBasicKeyStore : public CKeyStore
{
protected:
KeyMap mapKeys;
ScriptMap mapScripts;
WatchOnlySet setWatchOnly;
MultiSigScriptSet setMultiSig;
public:
bool AddKeyPubKey(const CKey& key, const CPubKey& pubkey);
bool HaveKey(const CKeyID& address) const;
void GetKeys(std::set<CKeyID>& setAddress) const;
bool GetKey(const CKeyID& address, CKey& keyOut) const;
virtual bool AddCScript(const CScript& redeemScript);
virtual bool HaveCScript(const CScriptID& hash) const;
virtual bool GetCScript(const CScriptID& hash, CScript& redeemScriptOut) const;
virtual bool AddWatchOnly(const CScript& dest);
virtual bool RemoveWatchOnly(const CScript& dest);
virtual bool HaveWatchOnly(const CScript& dest) const;
virtual bool HaveWatchOnly() const;
virtual bool AddMultiSig(const CScript& dest);
virtual bool RemoveMultiSig(const CScript& dest);
virtual bool HaveMultiSig(const CScript& dest) const;
virtual bool HaveMultiSig() const;
};
typedef std::vector<unsigned char, secure_allocator<unsigned char> > CKeyingMaterial;
typedef std::map<CKeyID, std::pair<CPubKey, std::vector<unsigned char> > > CryptedKeyMap;
#endif // BITCOIN_KEYSTORE_H
| [
"[email protected]"
] |
Subsets and Splits