blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
c0aebc571192c72dd895877947cdb99b1442138d
0e4588356dee61903e34a8eef6033852dd0f656d
/microbit-max7219-display-driver/Max7219Display.h
de3aa9dae5da27419df4e399713b45df15a7bf27
[]
no_license
rolandjkay/microbit-max7219-display-driver
8bbc28fbeeb0ce37268b7db525fb28980699a1f2
0bd859fa17de26e9f4a0e4b61b2ee0c7976ed4bd
refs/heads/master
2020-04-02T07:34:27.852790
2018-10-28T14:36:01
2018-10-28T14:36:01
154,203,613
0
0
null
null
null
null
UTF-8
C++
false
false
1,377
h
Max7219Display.h
#ifndef _MAX7291_DISPLAY_H #define _MAX7291_DISPLAY_H #ifdef TARGET_LIKE_OSX // Substitute SDL implementation on OS X. # include "Max7219Display_SDL.h" #else #include <mbed.h> #include <MicroBitPin.h> class Max7219Display { const size_t* display_indices; size_t display_width; size_t display_height; size_t num_displays; SPI spi; uint8_t* buffer; DigitalOut cs; void set_register(uint8_t cmd, uint8_t data); void flush(); void start_write(); void end_write(); public: /* * For example, if the "ID displays" test card shows: * * 3210 * 7654 * * then display_indices=3,2,1,0,7,6,5,4 & display_width = 4. */ Max7219Display(const size_t* display_indices, size_t display_width, size_t display_height ); ~Max7219Display(); void start_display(); void set_brightness(uint8_t brightness); void set_led(size_t x, size_t y, bool value); void write_bitmap(const uint8_t* bitmap, size_t width, size_t height, size_t stride, size_t x, size_t y); /* * Write an 8x8 bitmap to a single display. */ void set_display(const uint8_t* image, size_t image_stride, size_t display_index); /* * Flush screen buffer to display. */ void show(); }; #endif #endif
06ef142bb7db3b132fbf67add4fdd0a8e4060b79
55b8fe6bb73f62d1bba6ca42c8fdd26adffb5de4
/pointer basics harry.cpp
3d8a7b84a838b63713ae73cc64303372ec3d0fef
[]
no_license
ROS22202-git/roshan-c-code
775b5f79a999176f50ab3699e74bb96c0a6b17dc
bbe1d8443d6e204b79bf6eee33cf1312ec4daf97
refs/heads/master
2023-08-22T12:21:42.272151
2021-10-07T04:06:46
2021-10-07T04:06:46
414,455,509
0
0
null
null
null
null
UTF-8
C++
false
false
285
cpp
pointer basics harry.cpp
#include<stdio.h> int main() { int *j,i=5; j=&i; printf("the adresss of i=%d\n",&i); printf("the adresss of i=%d\n",j); printf("the adress of j=%d\n",&j); printf("the value of i=%d\n",i); printf("the value of i=%d\n",*(&i)); printf("thevalue of i=%d\n",*j); return 0; }
45f03ab7afe3cfead8a87e23f469fdc646b98c52
0740a8ce7ae68092bf84fe008bc58dc39a67fe8d
/src/core/infer.cc
3950065279e427e6494b4d1486554201568c6845
[ "BSD-3-Clause" ]
permissive
seewoo79/tensorrt-inference-server
8da0120c2a4730377bc6224f7d590451db77572a
297c972b272fe8ec2bd7c9d29a9e0acdace91291
refs/heads/master
2020-04-10T20:07:51.959835
2018-12-04T22:30:06
2018-12-04T22:30:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
33,226
cc
infer.cc
// Copyright (c) 2018, NVIDIA CORPORATION. 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 NVIDIA CORPORATION nor the names of its // contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY // OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "src/core/infer.h" #include <sys/resource.h> #include <sys/syscall.h> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> #include <chrono> #include "src/core/constants.h" #include "src/core/logging.h" #include "src/core/utils.h" #include "tensorflow/core/lib/core/errors.h" namespace nvidia { namespace inferenceserver { GRPCInferRequestProvider::GRPCInferRequestProvider( const InferRequest& request, const int version) : InferRequestProvider(request.model_name(), version), request_(request) { content_delivered_.resize(request_.raw_input_size(), false); } tensorflow::Status GRPCInferRequestProvider::Create( const InferRequest& request, std::shared_ptr<GRPCInferRequestProvider>* infer_provider) { // Make sure the request has a batch-size > 0. Even for models that // don't support batching the requested batch size must be 1. if (request.meta_data().batch_size() < 1) { return tensorflow::errors::InvalidArgument( "inference request batch-size must be >= 1 for models that ", "support batching, and must be 1 for models that don't ", "support batching"); } const int version = (request.version() >= 0) ? request.version() : -1; infer_provider->reset(new GRPCInferRequestProvider(request, version)); return tensorflow::Status::OK(); } tensorflow::Status GRPCInferRequestProvider::GetNextInputContent( int idx, const void** content, size_t* content_byte_size, bool force_contiguous) { if ((idx < 0) || (idx >= request_.raw_input_size())) { return tensorflow::errors::Internal("unexpected input index ", idx); } if (content_delivered_[idx]) { *content = nullptr; *content_byte_size = 0; } else { const std::string& raw = request_.raw_input(idx); *content = raw.c_str(); *content_byte_size = raw.size(); content_delivered_[idx] = true; } return tensorflow::Status::OK(); } tensorflow::Status HTTPInferRequestProvider::Create( evbuffer* input_buffer, const std::string& model_name, const std::string& model_version_str, const std::string& request_header_str, std::shared_ptr<HTTPInferRequestProvider>* infer_provider) { int version = -1; if (!model_version_str.empty()) { version = std::atoi(model_version_str.c_str()); } auto provider = new HTTPInferRequestProvider(model_name, version); infer_provider->reset(provider); if (!tensorflow::protobuf::TextFormat::ParseFromString( request_header_str, &(provider->request_header_))) { return tensorflow::errors::InvalidArgument( "unable to parse request for model '", model_name, "'"); } // Make sure the request has a batch-size > 0. Even for models that // don't support batching the requested batch size must be 1. if (provider->request_header_.batch_size() < 1) { return tensorflow::errors::InvalidArgument( "inference request batch-size must be >= 1 for models that ", "support batching, and must be 1 for models that don't ", "support batching"); } // Now need to create 'contents_'. Each input has one entry in // 'contents_' which gives a list of all the blocks of data for that // input. These blocks are not necessarily contiguous so we keep // track of each separately to avoid needing to copy everything into // one buffer. // // Get the addr and size of each chunk of input data from the // evbuffer. int n = evbuffer_peek(input_buffer, -1, NULL, NULL, 0); if (n > 0) { struct evbuffer_iovec* v = static_cast<struct evbuffer_iovec*>( alloca(sizeof(struct evbuffer_iovec) * n)); if (evbuffer_peek(input_buffer, -1, NULL, v, n) != n) { return tensorflow::errors::Internal( "unexpected error getting input buffers "); } int v_idx = 0; // For each input get the blocks holding the data for that input for (const auto& input : provider->request_header_.input()) { provider->contents_idx_.push_back(0); provider->contents_.emplace_back(); auto& blocks = provider->contents_.back(); size_t total_byte_size = provider->request_header_.batch_size() * input.byte_size(); while ((total_byte_size > 0) && (v_idx < n)) { blocks.emplace_back(); Block& block = blocks.back(); char* base = static_cast<char*>(v[v_idx].iov_base); block.first = base; if (v[v_idx].iov_len > total_byte_size) { block.second = total_byte_size; v[v_idx].iov_base = static_cast<void*>(base + total_byte_size); v[v_idx].iov_len -= total_byte_size; total_byte_size = 0; } else { block.second = v[v_idx].iov_len; total_byte_size -= v[v_idx].iov_len; v_idx++; } } } if (v_idx != n) { return tensorflow::errors::InvalidArgument( "unexpected additional input data for model '", provider->ModelName(), "'"); } } return tensorflow::Status::OK(); } tensorflow::Status HTTPInferRequestProvider::GetNextInputContent( int idx, const void** content, size_t* content_byte_size, bool force_contiguous) { if ((idx < 0) || ((size_t)idx >= contents_.size())) { return tensorflow::errors::Internal("unexpected input index ", idx); } const size_t block_cnt = contents_[idx].size(); const size_t block_idx = contents_idx_[idx]; if (block_idx >= block_cnt) { *content = nullptr; *content_byte_size = 0; } // Return next block of data... else if (!force_contiguous || ((block_idx + 1) >= block_cnt)) { const auto& block = contents_[idx][block_idx]; *content = block.first; *content_byte_size = block.second; contents_idx_[idx]++; } // If remaining data needs to be returned in one contiguous region // and there is more than one block remaining, then need to copy the // content into a single contiguous buffer. else { size_t total_size = 0; for (size_t i = block_idx; i < block_cnt; i++) { const auto& block = contents_[idx][i]; total_size += block.second; } contiguous_buffers_.emplace_back(); std::vector<char>& buf = contiguous_buffers_.back(); buf.reserve(total_size); for (size_t i = block_idx; i < block_cnt; i++) { const auto& block = contents_[idx][i]; buf.insert(buf.end(), block.first, block.first + block.second); } if (buf.size() != total_size) { return tensorflow::errors::Internal("contiguous input failed"); } *content = &(buf[0]); *content_byte_size = total_size; } return tensorflow::Status::OK(); } tensorflow::Status GRPCInferResponseProvider::Create( const InferRequestHeader& request_header, InferResponse* response, std::shared_ptr<GRPCInferResponseProvider>* infer_provider) { GRPCInferResponseProvider* provider = new GRPCInferResponseProvider(request_header, response); infer_provider->reset(provider); // Make space in the response for the output data. For outputs // returning raw tensor data we allocate space directly in the // response protobuf. For outputs returning classification we create // a buffer to hold the output that we can then post-process for // classifications. for (const auto& requested_output : request_header.output()) { std::string* output = provider->response_->add_raw_output(); const size_t output_byte_size = request_header.batch_size() * requested_output.byte_size(); if (requested_output.has_cls()) { provider->CreateOutputBuffer(output_byte_size); } else { output->resize(output_byte_size); provider->AddOutputBuffer( static_cast<void*>(&((*output)[0])), output->size()); } } return tensorflow::Status::OK(); } HTTPInferResponseProvider::HTTPInferResponseProvider( evbuffer* output_buffer, const InferRequestHeader& request_header) : InferResponseProvider(request_header), output_buffer_(output_buffer) { // Get the total size needed for raw output tensors... total_raw_byte_size_ = 0; for (const auto& requested_output : request_header.output()) { if (!requested_output.has_cls()) { total_raw_byte_size_ += request_header.batch_size() * requested_output.byte_size(); } } } tensorflow::Status HTTPInferResponseProvider::Create( evbuffer* output_buffer, const InferRequestHeader& request_header, std::shared_ptr<HTTPInferResponseProvider>* infer_provider) { HTTPInferResponseProvider* provider = new HTTPInferResponseProvider(output_buffer, request_header); infer_provider->reset(provider); char* raw_output_base = nullptr; if (provider->total_raw_byte_size_ > 0) { // Reserve contiguous space in the output to hold all the raw output // tensor data that must be returned in the response. if ( evbuffer_reserve_space( output_buffer, provider->total_raw_byte_size_, &provider->output_iovec_, 1) != 1) { return tensorflow::errors::Internal( "failed to reserve ", provider->total_raw_byte_size_, " bytes in output tensor buffer"); } if (provider->output_iovec_.iov_len < provider->total_raw_byte_size_) { return tensorflow::errors::Internal( "reserved ", provider->output_iovec_.iov_len, " bytes in output tensor buffer, need ", provider->total_raw_byte_size_); } provider->output_iovec_.iov_len = provider->total_raw_byte_size_; raw_output_base = static_cast<char*>(provider->output_iovec_.iov_base); } // For outputs returning raw tensor data we allocate space directly // from the space reserved in 'output_buffer'. For outputs returning // classification we create a buffer to hold the output that we can // then post-process for classifications. size_t raw_output_offset = 0; for (const auto& requested_output : request_header.output()) { const size_t output_byte_size = request_header.batch_size() * requested_output.byte_size(); if (requested_output.has_cls()) { provider->CreateOutputBuffer(output_byte_size); } else { provider->AddOutputBuffer( static_cast<void*>(raw_output_base + raw_output_offset), output_byte_size); raw_output_offset += output_byte_size; } } if (raw_output_offset != provider->total_raw_byte_size_) { return tensorflow::errors::Internal( "failed to partition ", provider->total_raw_byte_size_, " bytes across output tensor buffer"); } return tensorflow::Status::OK(); } tensorflow::Status HTTPInferResponseProvider::FinalizeResponse(const InferenceServable& is) { if (total_raw_byte_size_ > 0) { if (evbuffer_commit_space(output_buffer_, &output_iovec_, 1) != 0) { return tensorflow::errors::Internal( "failed to commit output tensors to output buffer"); } } return FinalizeResponseHeader(is); } namespace { template <typename T> void AddClassResults( InferResponseHeader::Output* poutput, void* poutput_buffer, const size_t batch_size, const InferRequestHeader::Output& output, const LabelProvider& label_provider) { T* probs = reinterpret_cast<T*>(poutput_buffer); const size_t entry_cnt = (output.byte_size() / sizeof(T)); const size_t class_cnt = std::min((size_t)output.cls().count(), entry_cnt); std::vector<size_t> idx(entry_cnt); for (size_t i = 0; i < batch_size; ++i) { iota(idx.begin(), idx.end(), 0); sort(idx.begin(), idx.end(), [&probs](size_t i1, size_t i2) { return probs[i1] > probs[i2]; }); auto bcls = poutput->add_batch_classes(); for (size_t k = 0; k < class_cnt; ++k) { auto cls = bcls->add_cls(); cls->set_idx(idx[k]); cls->set_label(label_provider.GetLabel(output.name(), idx[k])); cls->set_value(static_cast<float>(probs[idx[k]])); } probs += entry_cnt; } } } // namespace void InferResponseProvider::CreateOutputBuffer(size_t byte_size) { char* buffer = new char[byte_size]; created_buffers_.emplace_back(buffer); buffers_.emplace_back(buffer, byte_size); } void InferResponseProvider::AddOutputBuffer(void* buffer, size_t byte_size) { buffers_.emplace_back(buffer, byte_size); } tensorflow::Status InferResponseProvider::GetOutputBuffer( int idx, void** buffer, size_t buffer_byte_size) { if ((idx < 0) || (idx >= (int)buffers_.size())) { return tensorflow::errors::Internal("unexpected output index ", idx); } if (buffers_[idx].second != buffer_byte_size) { return tensorflow::errors::Internal( "unexpected output size ", buffers_[idx].second); } *buffer = buffers_[idx].first; return tensorflow::Status::OK(); } tensorflow::Status InferResponseProvider::FinalizeResponseHeader(const InferenceServable& is) { InferResponseHeader* response_header = MutableResponseHeader(); response_header->Clear(); const LabelProvider& label_provider = is.GetLabelProvider(); response_header->set_model_name(is.Name()); response_header->set_model_version(is.Version()); const size_t batch_size = request_header_.batch_size(); response_header->set_batch_size(batch_size); int output_idx = 0; for (const auto& output : request_header_.output()) { auto poutput = response_header->add_output(); poutput->set_name(output.name()); if (!output.has_cls()) { poutput->mutable_raw()->set_byte_size(output.byte_size()); } else { void* output_buffer; TF_RETURN_IF_ERROR(GetOutputBuffer( output_idx, &output_buffer, batch_size * output.byte_size())); DataType dtype; TF_RETURN_IF_ERROR(is.GetOutputDataType(output.name(), &dtype)); switch (dtype) { case DataType::TYPE_UINT8: AddClassResults<uint8_t>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_UINT16: AddClassResults<uint16_t>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_UINT32: AddClassResults<uint32_t>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_UINT64: AddClassResults<uint64_t>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_INT8: AddClassResults<int8_t>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_INT16: AddClassResults<int16_t>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_INT32: AddClassResults<int32_t>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_INT64: AddClassResults<int64_t>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_FP32: AddClassResults<float>( poutput, output_buffer, batch_size, output, label_provider); break; case DataType::TYPE_FP64: AddClassResults<double>( poutput, output_buffer, batch_size, output, label_provider); break; default: return tensorflow::errors::InvalidArgument( "class result not available for output '", output.name(), "' due to unsupported type '", DataType_Name(dtype), "'"); } } output_idx++; } return tensorflow::Status::OK(); } InferenceServable::InferenceServable() : runner_cnt_(0), idle_runner_cnt_(0), max_preferred_batch_size_(0), pending_batch_delay_ns_(0), pending_batch_size_(0), pending_batch_queue_cnt_(0) { runner_threads_exit_.store(false); } InferenceServable::~InferenceServable() { // Signal the runner threads to exit and then wait for them... { std::unique_lock<std::mutex> lock(mu_); runner_threads_exit_.store(true); cv_.notify_all(); } for (auto& runner : runner_threads_) { runner->join(); } } void InferenceServable::GetMetricLabels( std::map<std::string, std::string>* labels, const int gpu_device) const { labels->insert(std::map<std::string, std::string>::value_type( std::string(kMetricsLabelModelName), Name())); labels->insert(std::map<std::string, std::string>::value_type( std::string(kMetricsLabelModelVersion), std::to_string(Version()))); for (const auto& tag : Tags()) { labels->insert(std::map<std::string, std::string>::value_type( "_" + tag.first, tag.second)); } // 'gpu_device' can be -1 to indicate that the GPU is not known. In // that case use a metric that doesn't have the gpu_uuid label. if (gpu_device >= 0) { std::string uuid; if (Metrics::UUIDForCudaDevice(gpu_device, &uuid)) { labels->insert(std::map<std::string, std::string>::value_type( std::string(kMetricsLabelGpuUuid), uuid)); } } } prometheus::Counter& InferenceServable::GetCounterMetric( std::map<int, prometheus::Counter*>& metrics, prometheus::Family<prometheus::Counter>& family, const int gpu_device) const { const auto itr = metrics.find(gpu_device); if (itr != metrics.end()) { return *(itr->second); } std::map<std::string, std::string> labels; GetMetricLabels(&labels, gpu_device); prometheus::Counter& counter = family.Add(labels); metrics.insert( std::map<int, prometheus::Counter*>::value_type(gpu_device, &counter)); return counter; } prometheus::Counter& InferenceServable::MetricInferenceSuccess(int gpu_device) const { return GetCounterMetric( metric_inf_success_, Metrics::FamilyInferenceSuccess(), gpu_device); } prometheus::Counter& InferenceServable::MetricInferenceFailure(int gpu_device) const { return GetCounterMetric( metric_inf_failure_, Metrics::FamilyInferenceFailure(), gpu_device); } prometheus::Counter& InferenceServable::MetricInferenceCount(int gpu_device) const { return GetCounterMetric( metric_inf_count_, Metrics::FamilyInferenceCount(), gpu_device); } prometheus::Counter& InferenceServable::MetricInferenceExecutionCount(int gpu_device) const { return GetCounterMetric( metric_inf_exec_count_, Metrics::FamilyInferenceExecutionCount(), gpu_device); } prometheus::Counter& InferenceServable::MetricInferenceRequestDuration(int gpu_device) const { return GetCounterMetric( metric_inf_request_duration_us_, Metrics::FamilyInferenceRequestDuration(), gpu_device); } prometheus::Counter& InferenceServable::MetricInferenceComputeDuration(int gpu_device) const { return GetCounterMetric( metric_inf_compute_duration_us_, Metrics::FamilyInferenceComputeDuration(), gpu_device); } prometheus::Counter& InferenceServable::MetricInferenceQueueDuration(int gpu_device) const { return GetCounterMetric( metric_inf_queue_duration_us_, Metrics::FamilyInferenceQueueDuration(), gpu_device); } prometheus::Histogram& InferenceServable::MetricInferenceLoadRatio(int gpu_device) const { const auto itr = metric_inf_load_ratio_.find(gpu_device); if (itr != metric_inf_load_ratio_.end()) { return *(itr->second); } std::map<std::string, std::string> labels; GetMetricLabels(&labels, gpu_device); prometheus::Histogram& hist = Metrics::FamilyInferenceLoadRatio().Add( labels, std::vector<double>{1.05, 1.10, 1.25, 1.5, 2.0, 10.0, 50.0}); metric_inf_load_ratio_.insert( std::map<int, prometheus::Histogram*>::value_type(gpu_device, &hist)); return hist; } tensorflow::Status InferenceServable::SetModelConfig( const tensorflow::StringPiece& path, const ModelConfig& config) { config_ = config; TF_RETURN_IF_ERROR(GetModelVersionFromPath(path, &version_)); for (const auto& tag : config_.tags()) { tags_.insert( std::map<std::string, std::string>::value_type(tag.first, tag.second)); } max_preferred_batch_size_ = 0; preferred_batch_sizes_.clear(); for (const auto size : config.dynamic_batching().preferred_batch_size()) { max_preferred_batch_size_ = std::max(max_preferred_batch_size_, (size_t)size); preferred_batch_sizes_.insert(size); } pending_batch_delay_ns_ = (uint64_t)config.dynamic_batching().max_queue_delay_microseconds() * 1000; return tensorflow::Status::OK(); } tensorflow::Status InferenceServable::SetRunnerCount(uint32_t cnt) { if (runner_cnt_ != 0) { return tensorflow::errors::Internal( "Attempt to change runner count from ", runner_cnt_, " to ", cnt, " not allowed"); } runner_cnt_ = cnt; // Set default nice level unless overridden by model priority int nice = SCHEDULER_DEFAULT_NICE; if (config_.has_optimization()) { switch (config_.optimization().priority()) { case ModelOptimizationPolicy::PRIORITY_MAX: nice = 0; break; case ModelOptimizationPolicy::PRIORITY_MIN: nice = 19; break; default: nice = SCHEDULER_DEFAULT_NICE; break; } } // Create the runner threads for this servable. for (uint32_t c = 0; c < runner_cnt_; ++c) { runner_threads_.emplace_back( new std::thread([this, c, nice]() { RunnerThread(c, nice); })); } return tensorflow::Status::OK(); } void InferenceServable::AsyncRun( std::shared_ptr<ModelInferStats> stats, std::shared_ptr<InferRequestProvider> request_provider, std::shared_ptr<InferResponseProvider> response_provider, std::function<void(tensorflow::Status)> OnCompleteHandleInfer) { auto run_timer = std::make_shared<ModelInferStats::ScopedTimer>(); struct timespec queued_timestamp = stats->StartRunTimer(run_timer.get()); bool wake_runner = false; { std::lock_guard<std::mutex> lock(mu_); queue_.emplace_back( queued_timestamp, stats, request_provider, response_provider, [OnCompleteHandleInfer, run_timer](tensorflow::Status status) mutable { run_timer.reset(); OnCompleteHandleInfer(status); }); wake_runner = (idle_runner_cnt_ > 0); } if (wake_runner) { cv_.notify_one(); } } // Since callers are expecting synchronous behavior, this function // must wait until the request is processed and the response is // returned. This function can be simplified significantly once we // have [DLIS-124]. void InferenceServable::Run( std::shared_ptr<ModelInferStats> stats, std::shared_ptr<InferRequestProvider> request_provider, std::shared_ptr<InferResponseProvider> response_provider, std::function<void(tensorflow::Status)> OnCompleteHandleInfer) { // Since this call is synchronous right now we can just use a scoped // timer to measure the entire run time. ModelInferStats::ScopedTimer run_timer; struct timespec queued_timestamp = stats->StartRunTimer(&run_timer); std::mutex lmu; std::condition_variable lcv; tensorflow::Status run_status; bool run_completed = false; bool wake_runner = false; // Add request to queue... { std::lock_guard<std::mutex> lock(mu_); queue_.emplace_back( queued_timestamp, stats, request_provider, response_provider, [&lmu, &lcv, &run_status, &run_completed](tensorflow::Status status) { // signal complete and propagate status { std::lock_guard<std::mutex> lk(lmu); run_status = status; run_completed = true; } lcv.notify_one(); }); // If there are any idle runners then wake one up to service this // request. We do the actual wake outside of the lock to avoid // having the woken thread immediately block on the lock wake_runner = (idle_runner_cnt_ > 0); } if (wake_runner) { cv_.notify_one(); } // [DLIS-124] must wait for request to indicate complete... { std::chrono::seconds wait_timeout(1); std::unique_lock<std::mutex> lk(lmu); while (!run_completed) { lcv.wait_for(lk, wait_timeout); } } OnCompleteHandleInfer(run_status); } void InferenceServable::RunnerThread(const uint32_t runner_id, const int nice) { if (setpriority(PRIO_PROCESS, syscall(SYS_gettid), nice) == 0) { LOG_INFO << "Starting runner thread " << runner_id << " at nice " << nice << "..."; } else { LOG_ERROR << "Starting runner thread " << runner_id << " at default nice (requested nice " << nice << " failed)..."; } // For debugging delay start of runner threads until the queue // contains the specified number of entries. const char* dstr = getenv("TRTSERVER_DELAY_SCHEDULER"); size_t delay_cnt = 0; if (dstr != nullptr) { delay_cnt = atoi(dstr); LOG_INFO << "Delaying runner thread " << runner_id << " until " << delay_cnt << " queued payloads..."; } const uint64_t default_wait_microseconds = 500 * 1000; const bool dynamic_batching_enabled = config_.has_dynamic_batching(); while (!runner_threads_exit_.load()) { auto state = std::make_shared<RunnerThreadState>(); bool wake_runner = false; uint64_t wait_microseconds = 0; // Hold the lock for as short a time as possible. { std::unique_lock<std::mutex> lock(mu_); if (delay_cnt > 0) { // Debugging... wait until queue contains 'delay_cnt' items... wait_microseconds = 10 * 1000; if (queue_.size() >= delay_cnt) { delay_cnt = 0; } } else if (queue_.empty()) { wait_microseconds = default_wait_microseconds; } else if (dynamic_batching_enabled) { // Use dynamic batching to get request payload(s) to execute. wait_microseconds = GetDynamicBatch(config_.dynamic_batching()); if (wait_microseconds == 0) { for (size_t idx = 0; idx < pending_batch_queue_cnt_; ++idx) { state->payloads.emplace_back(queue_.front()); queue_.pop_front(); } pending_batch_size_ = 0; pending_batch_queue_cnt_ = 0; // If there are still requests in the queue after removing // the pending batch and if there are any idle runners // then wake one up to service the requests remaining in // the queue. We need this special wake logic for the // dynamic batching case because we may delay handling // requests in the queue and so idle the runners that // would normally be handling those requests. We do the // actual wake outside of the lock to avoid having the // woken thread immediately block on the lock. wake_runner = !queue_.empty() && (idle_runner_cnt_ > 0); } } else { // No batching... execute next request payload state->payloads.emplace_back(queue_.front()); queue_.pop_front(); } // If no requests are to be handled, wait for notification or // for the specified timeout before checking the queue again. if (wait_microseconds > 0) { idle_runner_cnt_++; std::chrono::microseconds wait_timeout(wait_microseconds); cv_.wait_for(lock, wait_timeout); idle_runner_cnt_--; } } if (wake_runner) { cv_.notify_one(); } if (!state->payloads.empty()) { auto OnCompleteQueuedPayloads = [state](tensorflow::Status status) { bool found_success = false; for (auto& payload : state->payloads) { tensorflow::Status final_status = status.ok() ? (payload.status_.ok() ? payload.compute_status_ : payload.status_) : status; // All the payloads executed together, so count 1 execution in // the first successful payload. Other payloads stay at 0 // executions. if (!found_success && final_status.ok()) { payload.stats_->SetModelExecutionCount(1); found_success = true; } payload.complete_function_(final_status); } }; Run(runner_id, &(state->payloads), OnCompleteQueuedPayloads); } } // end runner loop LOG_INFO << "Stopping runner thread " << runner_id << "..."; } uint64_t InferenceServable::GetDynamicBatch(const ModelDynamicBatching& batching_config) { // 'mu_' mutex must be held when this function is called. queue_ // must not be empty. // Handle the cases where the pending batch or request must be // executed immediately. // // 1) if next request would make pending batch larger than the max // preferred batch size then must execute the pending patch // immediately // // 2) if no pending batch and next request on its own has batch // size larger than the max preferred batch size then must execute // immediately { const auto batch_size = queue_.front().request_provider_->RequestHeader().batch_size(); if ((pending_batch_size_ + batch_size) >= max_preferred_batch_size_) { if (pending_batch_queue_cnt_ == 0) { pending_batch_size_ = batch_size; pending_batch_queue_cnt_ = 1; } return 0; } } // Examine the new requests. If adding these new requests to the // pending batch allows a preferred batch size then execute it // immediately. Stop examining requests if the maximum preferred // batch size would be exceeded. size_t best_preferred_batch_size = 0; size_t best_preferred_batch_cnt = 0; size_t search_batch_size = pending_batch_size_; size_t search_batch_cnt = pending_batch_queue_cnt_; for (auto idx = pending_batch_queue_cnt_; idx < queue_.size(); ++idx) { const auto batch_size = queue_[idx].request_provider_->RequestHeader().batch_size(); if ((search_batch_size + batch_size) > max_preferred_batch_size_) { break; } search_batch_size += batch_size; search_batch_cnt++; if ( preferred_batch_sizes_.find(search_batch_size) != preferred_batch_sizes_.end()) { best_preferred_batch_size = search_batch_size; best_preferred_batch_cnt = search_batch_cnt; } } // If we found a preferred batch size then execute that. if (best_preferred_batch_size != 0) { pending_batch_size_ = best_preferred_batch_size; pending_batch_queue_cnt_ = best_preferred_batch_cnt; return 0; } pending_batch_size_ = search_batch_size; pending_batch_queue_cnt_ = search_batch_cnt; // Should always have at least one request in the pending batch at // this point. if (pending_batch_queue_cnt_ == 0) { LOG_ERROR << "unexpected pending batch size 0"; return 0; } // If there is no batch queuing delay then just immediately // execute whatever is pending. if (pending_batch_delay_ns_ == 0) { return 0; } // Compare the age of the oldest pending request to the maximum // batch queuing delay and execute now if queuing delay is // exceeded. If queuing delay not exceeded create a timer to wakeup // a thread to check again at the maximum allowed delay. struct timespec now; clock_gettime(CLOCK_MONOTONIC, &now); struct timespec& queued = queue_.front().queued_timestamp_; uint64_t delay_ns = (now.tv_sec * NANOS_PER_SECOND + now.tv_nsec) - (queued.tv_sec * NANOS_PER_SECOND + queued.tv_nsec); if (delay_ns >= pending_batch_delay_ns_) { return 0; } // Return non-zero wait microseconds to cause this runner to wait // until the queue delay has expired. Another thread may be awaken // due to incoming request to handle the pending batch before this // thread wakes and that is ok. But if no other request comes in // then this thread will wake and revist the pending batch (and at // that time will then see the delay has been exceeded and will send // the batch). return (pending_batch_delay_ns_ - delay_ns) / 1000; } }} // namespace nvidia::inferenceserver
fb610eb5a6f786a0e678df1350b0db60396cd94e
ffb46db8f35ea6f3646eaf0be91adcfbf8d652b1
/ESP-NETPIE/writeSDcard.ino
a7c2c1f96a1a06d000155cdd5b9d7477a32026cf
[]
no_license
bavensky/RoyalProject
55c3db12278e5cf8671bf105261e1586de4ff2b0
00061c3339b19b1b8b3f6a6e5feeec0c9790732b
refs/heads/master
2021-05-09T18:35:37.303579
2018-04-06T11:36:34
2018-04-06T11:36:34
119,169,281
0
0
null
null
null
null
UTF-8
C++
false
false
1,282
ino
writeSDcard.ino
void firstSave() { myFile = SD.open("data.csv", FILE_WRITE); if (myFile) { myFile.println("Date, Time, Temperature, Humidity, Raindrop, WindSpeed, WindDirection, LightLevel, Voltage"); myFile.close(); Serial.println("Write done."); } else { Serial.println("Error opening sd card"); } } void dataLog(String _temp, String _humid, String _rain, String _wind, String _direc, String _lux, String _volt) { myFile = SD.open("data.csv", FILE_WRITE); if (myFile) { Serial.print("Writing to sd card..."); DateTime now = rtc.now(); myFile.print(now.day()); myFile.print("/"); myFile.print(now.month()); myFile.print("/"); myFile.print(now.year()); myFile.print(","); myFile.print(now.hour()); myFile.print(":"); myFile.print(now.minute()); myFile.print(":"); myFile.print(now.second()); myFile.print(","); myFile.print(_temp); myFile.print(","); myFile.print(_humid); myFile.print(","); myFile.print(_rain); myFile.print(","); myFile.print(_wind); myFile.print(","); myFile.print(_direc); myFile.print(","); myFile.print(_lux); myFile.print(","); myFile.print(_volt); myFile.println(""); myFile.close(); Serial.println("done."); } else { Serial.println("Error opening sd card"); } }
886959bfd6d1c6e3a0cb48204df49ad45496c861
5fda5639d83b4ed9b56efadf865d9a9915c1b84b
/FeaturesC++11Learning/auto.cpp
5116ca395707cb3b73d3158904f6557312178f93
[]
no_license
tosone/cplusplus
1607830d05f70d3129da9e87d5a67a6174fbde1f
bee6ef51325c6a8180d25f020b1e04522417141a
refs/heads/master
2021-01-13T06:05:57.889317
2018-10-06T03:44:52
2018-10-06T03:44:52
95,119,237
0
0
null
null
null
null
UTF-8
C++
false
false
325
cpp
auto.cpp
#include <iostream> #include <typeinfo> using namespace std; int main(int argc, char *argv[]) { // pointer of induced type auto *i = new auto(1); cout << *i << endl; // i should be of type int* cout << typeid(i).name() << " as expected? " << ((typeid(i) == typeid(int *)) ? "yes" : "no") << endl; delete i; }
2d53155654763a11606abd05cc467916dbf82adb
b3ed6180a27f195a0660b97259a3bf29f3fd8c56
/etkxx/etk/interface/Theme.cpp
34e94d84a3a836ae50967e16c64f561c3a3774d1
[ "MIT" ]
permissive
D-os/EasyToolkitAndExtension
cdb6cd7c44bbf030f92b5f31ad2f834a47ea8933
367df2f30aabb7ca38dd1b92e2eb2d983b571a94
refs/heads/master
2021-01-18T02:49:24.340718
2013-08-18T18:07:20
2013-08-18T18:07:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,563
cpp
Theme.cpp
/* -------------------------------------------------------------------------- * * ETK++ --- The Easy Toolkit for C++ programing * Copyright (C) 2004-2006, Anthony Lee, All Rights Reserved * * ETK++ library is a freeware; it may be used and distributed according to * the terms of The MIT License. * * 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. * * File: Theme.cpp * * --------------------------------------------------------------------------*/ #include "InterfaceDefs.h" _IMPEXP_ETK e_rgb_color e_ui_color(e_color_which which) { e_rgb_color color; switch(which) { case E_DESKTOP_COLOR: color.set_to(118, 132, 143); break; case E_PANEL_BACKGROUND_COLOR: color.set_to(240, 240, 235); break; case E_TOOLTIP_TEXT_COLOR: case E_BUTTON_TEXT_COLOR: case E_DOCUMENT_TEXT_COLOR: case E_PANEL_TEXT_COLOR: color.set_to(0, 0, 0); break; case E_DOCUMENT_BACKGROUND_COLOR: color.set_to(250, 250, 250); break; case E_DOCUMENT_HIGHLIGHT_COLOR: color.set_to(170, 210, 240); break; case E_DOCUMENT_CURSOR_COLOR: color.set_to(0, 0, 0); break; case E_BUTTON_BACKGROUND_COLOR: color.set_to(245, 245, 245); break; case E_BUTTON_BORDER_COLOR: // color.set_to(200, 150, 150); color.set_to(50, 50, 50); break; case E_NAVIGATION_BASE_COLOR: // color.set_to(225, 140, 190); color.set_to(170, 210, 240); break; case E_NAVIGATION_PULSE_COLOR: // color.set_to(190, 120, 160); color.set_to(90, 100, 120); break; case E_MENU_BACKGROUND_COLOR: color.set_to(245, 245, 245); break; case E_MENU_BORDER_COLOR: // color.set_to(200, 150, 150); color.set_to(50, 50, 50); break; case E_MENU_SELECTED_BACKGROUND_COLOR: // color.set_to(225, 170, 170); color.set_to(170, 210, 240); break; case E_MENU_ITEM_TEXT_COLOR: color.set_to(80, 80, 80); break; case E_MENU_SELECTED_ITEM_TEXT_COLOR: color.set_to(0, 0, 0); break; case E_MENU_SELECTED_BORDER_COLOR: // color.set_to(225, 140, 190); color.set_to(100, 100, 100); break; case E_TOOLTIP_BACKGROUND_COLOR: color.set_to(235, 220, 30); break; case E_SHINE_COLOR: color.set_to(250, 250, 250); break; case E_SHADOW_COLOR: color.set_to(50, 50, 50); break; case E_STATUSBAR_COLOR: color.set_to(235, 220, 30); break; default: color.set_to(0, 0, 0); } return color; } _IMPEXP_ETK float e_ui_get_scrollbar_vertical_width() { return 16; } _IMPEXP_ETK float e_ui_get_scrollbar_horizontal_height() { return 16; }
72910179f355f0d6a586cb1f9c4e3fb446b4ef20
e9fc1afea29b76352869921e479376c7f1287a3f
/5.Resources/Hall_Implementation_openFOAM/Z1flatanalytical/387/p
926b7bfef28b9d1ec33ec80c167d6bf84cfdff89
[]
no_license
mtlatour/Thesis_MarcLatour
bc29f1d89e94b35b965815796ad0fd30637e041c
60f0299e8888ff4b196c58b9c77ae62579fb5761
refs/heads/master
2020-12-22T12:17:52.142749
2020-03-31T16:05:44
2020-03-31T16:05:44
236,769,475
0
0
null
null
null
null
UTF-8
C++
false
false
28,597
p
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "387"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 3200 ( 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.1 47048.2 38623.9 31886.1 26271.3 21734.3 18060.5 15051 12574.2 10529.2 8834.31 7424.8 6249.17 5266 4441.81 3749.4 3166.56 2675.08 2259.97 1908.86 1611.48 1359.31 1145.23 963.316 808.586 676.868 564.653 468.986 387.374 317.711 258.213 207.374 163.909 126.745 94.9171 67.7667 44.2432 24.9374 5.84394 -2.77642 -0.0166253 0.243156 -0.0134441 0.00165552 0.0171405 0.0116718 0.00949554 0.00863713 0.00745473 0.00630565 0.00522736 0.00415663 0.00305047 0.00194179 0.000618173 -0.000369469 -0.00280808 -0.00138728 -0.0117552 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.1 47048.2 38623.9 31886.1 26271.3 21734.3 18060.5 15051.1 12574.2 10529.2 8834.33 7424.82 6249.19 5266.02 4441.83 3749.42 3166.58 2675.1 2260 1908.88 1611.51 1359.33 1145.26 963.342 808.612 676.895 564.68 469.014 387.401 317.738 258.24 207.4 163.934 126.769 94.9409 67.7893 44.2645 24.957 5.8618 -2.76081 -0.00284821 0.255462 -0.0024122 0.0115912 0.0261445 0.0198782 0.0170156 0.015564 0.0138655 0.0122622 0.0107786 0.00933724 0.00788589 0.00643286 0.00477114 0.00337912 0.000465532 0.00123563 -0.0106338 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.1 47048.3 38624 31886.1 26271.3 21734.4 18060.5 15051.1 12574.2 10529.2 8834.35 7424.84 6249.21 5266.04 4441.85 3749.45 3166.61 2675.13 2260.02 1908.91 1611.53 1359.36 1145.28 963.366 808.636 676.919 564.704 469.038 387.425 317.761 258.263 207.423 163.957 126.792 94.9623 67.8098 44.2839 24.975 5.87826 -2.74638 0.00968467 0.266425 0.00718858 0.0200057 0.033535 0.0263832 0.0227507 0.0206279 0.0183402 0.0162154 0.0142654 0.0124004 0.0105587 0.00873271 0.00671443 0.00493532 0.00166117 0.00185908 -0.0102239 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.1 47048.3 38624 31886.1 26271.3 21734.4 18060.5 15051.1 12574.3 10529.2 8834.36 7424.85 6249.22 5266.06 4441.87 3749.46 3166.62 2675.14 2260.04 1908.92 1611.55 1359.37 1145.3 963.384 808.655 676.938 564.723 469.057 387.445 317.781 258.282 207.442 163.975 126.809 94.9794 67.8261 44.2992 24.9893 5.89109 -2.73551 0.0186813 0.273913 0.0133761 0.0250494 0.0375862 0.0295727 0.0251893 0.0224102 0.0195474 0.0169162 0.0145186 0.0122544 0.0100586 0.00790844 0.00562174 0.00357169 0.000220685 0.000226396 -0.0110969 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.2 47048.3 38624 31886.1 26271.4 21734.4 18060.5 15051.1 12574.3 10529.3 8834.37 7424.86 6249.23 5266.07 4441.88 3749.47 3166.63 2675.16 2260.05 1908.94 1611.56 1359.39 1145.31 963.4 808.671 676.954 564.739 469.073 387.461 317.797 258.298 207.458 163.991 126.824 94.994 67.84 44.3123 25.0012 5.90187 -2.72635 0.0262961 0.280319 0.0187498 0.0295143 0.0412665 0.0325765 0.027607 0.0243195 0.0210151 0.0179999 0.0152682 0.0127128 0.0102677 0.00790091 0.00545509 0.00324827 -5.25219e-05 -0.000227462 -0.011033 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.2 47048.3 38624 31886.1 26271.4 21734.4 18060.5 15051.1 12574.3 10529.3 8834.38 7424.87 6249.24 5266.07 4441.89 3749.48 3166.64 2675.17 2260.06 1908.95 1611.57 1359.4 1145.33 963.412 808.683 676.966 564.752 469.086 387.474 317.81 258.311 207.471 164.004 126.837 95.006 67.8514 44.323 25.0112 5.9109 -2.71855 0.0328603 0.285917 0.0235253 0.0335642 0.0446913 0.035464 0.0300304 0.0263421 0.0226921 0.019379 0.0163918 0.0136178 0.0109911 0.00846787 0.00592258 0.00358604 0.000347806 -0.000115794 -0.0104144 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.2 47048.3 38624 31886.1 26271.4 21734.4 18060.5 15051.1 12574.3 10529.3 8834.38 7424.88 6249.24 5266.08 4441.9 3749.49 3166.65 2675.17 2260.07 1908.96 1611.58 1359.41 1145.33 963.42 808.691 676.975 564.761 469.095 387.483 317.819 258.321 207.48 164.013 126.846 95.0148 67.8599 44.3311 25.0187 5.91777 -2.71252 0.037914 0.290216 0.027187 0.0366602 0.0472984 0.0376507 0.0318541 0.0278528 0.023934 0.020391 0.0172089 0.0142708 0.0115124 0.00887837 0.00627121 0.00383858 0.000696526 -7.68057e-05 -0.00959001 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.1 47048.3 38624 31886.1 26271.4 21734.4 18060.5 15051.1 12574.3 10529.3 8834.38 7424.88 6249.24 5266.08 4441.9 3749.49 3166.65 2675.17 2260.07 1908.96 1611.58 1359.41 1145.34 963.424 808.696 676.979 564.766 469.1 387.488 317.824 258.326 207.486 164.018 126.851 95.0202 67.8651 44.3361 25.0234 5.92218 -2.70857 0.0411938 0.292983 0.0295327 0.0386273 0.0489368 0.0390072 0.0329677 0.0287582 0.0246625 0.020971 0.0176666 0.0146302 0.0117997 0.00910902 0.00649359 0.00400994 0.00102851 -4.00868e-05 -0.00853716 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.6 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.1 47048.3 38624 31886.1 26271.4 21734.4 18060.5 15051.1 12574.3 10529.3 8834.38 7424.87 6249.24 5266.08 4441.89 3749.49 3166.65 2675.17 2260.07 1908.96 1611.58 1359.41 1145.34 963.424 808.696 676.979 564.766 469.101 387.489 317.826 258.328 207.487 164.02 126.853 95.022 67.867 44.338 25.0253 5.92405 -2.70675 0.0426547 0.294195 0.0305582 0.0394774 0.049633 0.039573 0.0334226 0.0291201 0.0249486 0.0211977 0.0178505 0.0147867 0.0119487 0.00926094 0.00669113 0.0042081 0.00144285 7.73362e-05 -0.00724081 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.1 47048.3 38624 31886.1 26271.3 21734.4 18060.5 15051.1 12574.3 10529.3 8834.37 7424.87 6249.23 5266.07 4441.89 3749.48 3166.64 2675.16 2260.06 1908.95 1611.58 1359.4 1145.33 963.419 808.691 676.975 564.763 469.097 387.486 317.823 258.325 207.485 164.018 126.851 95.0202 67.8655 44.3367 25.0243 5.92337 -2.70709 0.0422923 0.293852 0.0302629 0.0392105 0.0493876 0.0393489 0.0332192 0.0289384 0.0247914 0.0210693 0.0177572 0.0147361 0.0119525 0.00932434 0.00685071 0.00441241 0.00190783 0.000252454 -0.0057457 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.9 82172.3 82190.5 82060.2 82992.9 76315.7 59773.1 47048.2 38624 31886.1 26271.3 21734.4 18060.5 15051.1 12574.3 10529.2 8834.36 7424.85 6249.22 5266.06 4441.88 3749.47 3166.63 2675.15 2260.05 1908.94 1611.57 1359.4 1145.32 963.41 808.683 676.967 564.755 469.09 387.479 317.816 258.318 207.478 164.012 126.845 95.015 67.8607 44.3324 25.0205 5.92015 -2.70956 0.0401127 0.291955 0.0286441 0.0378201 0.0481906 0.0383216 0.0323416 0.0281943 0.0241694 0.0205615 0.0173598 0.0144475 0.011778 0.00926223 0.00693249 0.00458189 0.00238135 0.000453001 -0.00410007 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.9 82172.3 82190.5 82060.2 82992.9 76315.7 59773.1 47048.2 38623.9 31886.1 26271.3 21734.3 18060.5 15051.1 12574.2 10529.2 8834.35 7424.84 6249.21 5266.05 4441.86 3749.46 3166.62 2675.14 2260.04 1908.93 1611.55 1359.38 1145.31 963.398 808.67 676.955 564.743 469.078 387.467 317.805 258.308 207.468 164.002 126.836 95.0063 67.8526 44.325 25.014 5.91447 -2.71413 0.0361625 0.288543 0.0257328 0.035331 0.0460613 0.0365057 0.0307997 0.0268939 0.023085 0.0196736 0.0166542 0.0139147 0.0114149 0.00906336 0.00692034 0.00470238 0.00284066 0.000670471 -0.00234541 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.7 59773.1 47048.2 38623.9 31886.1 26271.3 21734.3 18060.5 15051.1 12574.2 10529.2 8834.33 7424.82 6249.19 5266.03 4441.85 3749.44 3166.6 2675.12 2260.02 1908.91 1611.54 1359.37 1145.29 963.382 808.654 676.939 564.727 469.063 387.452 317.79 258.293 207.454 163.989 126.824 94.9945 67.8416 44.3148 25.0048 5.90647 -2.72067 0.0305378 0.283698 0.0215987 0.0318016 0.0430489 0.0339423 0.0286275 0.0250649 0.0215603 0.0184222 0.0156526 0.013145 0.0108675 0.00872591 0.00681231 0.00476473 0.00327564 0.000898723 -0.000524745 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.7 59773.1 47048.2 38623.9 31886.1 26271.3 21734.3 18060.5 15051 12574.2 10529.2 8834.31 7424.81 6249.17 5266.01 4441.83 3749.42 3166.58 2675.1 2260 1908.89 1611.52 1359.35 1145.27 963.362 808.635 676.92 564.709 469.044 387.434 317.772 258.276 207.438 163.973 126.808 94.9798 67.8278 44.3021 24.9934 5.89634 -2.72902 0.023376 0.277539 0.0163412 0.0273163 0.0392243 0.0306904 0.0258739 0.0227471 0.019627 0.0168323 0.0143732 0.0121511 0.0101419 0.00825416 0.00660231 0.00476662 0.00366836 0.0011287 0.00131636 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773.1 47048.2 38623.9 31886 26271.3 21734.3 18060.5 15051 12574.2 10529.2 8834.29 7424.78 6249.15 5265.99 4441.8 3749.4 3166.56 2675.08 2259.98 1908.87 1611.49 1359.32 1145.25 963.34 808.613 676.899 564.687 469.023 387.413 317.752 258.256 207.418 163.954 126.79 94.9625 67.8116 44.2871 24.9798 5.88434 -2.73899 0.0148511 0.270213 0.0100862 0.021981 0.0346767 0.0268245 0.0226007 0.0199912 0.0173263 0.0149358 0.0128404 0.0109498 0.0092498 0.00765001 0.00629283 0.00469655 0.00400763 0.00135276 0.00313141 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773.1 47048.2 38623.9 31886 26271.3 21734.3 18060.4 15051 12574.2 10529.1 8834.27 7424.76 6249.13 5265.96 4441.78 3749.37 3166.54 2675.06 2259.96 1908.85 1611.47 1359.3 1145.23 963.316 808.589 676.874 564.663 468.999 387.39 317.729 258.234 207.396 163.933 126.77 94.9432 67.7934 44.2702 24.9645 5.87075 -2.75032 0.00516911 0.261897 0.0029835 0.0159228 0.0295132 0.022435 0.018883 0.0168594 0.0147086 0.0127736 0.0110856 0.00956513 0.00820614 0.00692602 0.00588205 0.0045591 0.00427915 0.00156179 0.00487589 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.2 38623.9 31886 26271.2 21734.3 18060.4 15051 12574.1 10529.1 8834.25 7424.74 6249.11 5265.94 4441.76 3749.35 3166.51 2675.03 2259.93 1908.82 1611.44 1359.27 1145.2 963.29 808.563 676.849 564.637 468.974 387.365 317.704 258.209 207.373 163.91 126.748 94.9222 67.7736 44.2519 24.9478 5.85591 -2.76275 -0.00543493 0.252791 -0.00479599 0.00928642 0.0238566 0.017625 0.0148078 0.0134237 0.0118335 0.0103935 0.0091474 0.00802585 0.00703329 0.00609226 0.00538154 0.00434661 0.00447682 0.00175164 0.00650635 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31886 26271.2 21734.2 18060.4 15051 12574.1 10529.1 8834.22 7424.71 6249.08 5265.92 4441.73 3749.32 3166.49 2675.01 2259.9 1908.79 1611.42 1359.25 1145.18 963.263 808.536 676.822 564.611 468.947 387.339 317.678 258.184 207.348 163.886 126.725 94.9001 67.7528 44.2325 24.9301 5.84018 -2.77597 -0.0167042 0.243118 -0.0130648 0.00223134 0.0178419 0.0125089 0.0104707 0.00976446 0.00876706 0.00784987 0.00706853 0.00636578 0.00575457 0.00516925 0.00479472 0.00407053 0.00459139 0.00191366 0.00798335 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31886 26271.2 21734.2 18060.4 15050.9 12574.1 10529.1 8834.2 7424.69 6249.06 5265.89 4441.71 3749.3 3166.46 2674.98 2259.88 1908.77 1611.39 1359.22 1145.15 963.236 808.509 676.795 564.584 468.921 387.312 317.652 258.158 207.323 163.861 126.701 94.8775 67.7314 44.2126 24.912 5.82394 -2.78966 -0.0283653 0.233109 -0.0216235 -0.00507309 0.011613 0.0072082 0.00597436 0.00596722 0.00558073 0.00520096 0.00489656 0.00462185 0.00439949 0.00417271 0.00413939 0.00372603 0.00462076 0.0020462 0.00927008 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31885.9 26271.2 21734.2 18060.4 15050.9 12574.1 10529.1 8834.18 7424.67 6249.03 5265.87 4441.68 3749.27 3166.43 2674.96 2259.85 1908.74 1611.36 1359.19 1145.12 963.209 808.482 676.768 564.557 468.894 387.286 317.626 258.132 207.297 163.837 126.677 94.8548 67.7099 44.1925 24.8937 5.80758 -2.80349 -0.0401358 0.223007 -0.0302657 -0.012451 0.00531918 0.00184949 0.00142542 0.00212173 0.0023489 0.00250832 0.00268095 0.00283354 0.0029966 0.00312818 0.0034229 0.00332943 0.00456093 0.00214152 0.0103358 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.2 21734.2 18060.3 15050.9 12574.1 10529 8834.16 7424.65 6249.01 5265.85 4441.66 3749.25 3166.41 2674.93 2259.83 1908.72 1611.34 1359.17 1145.1 963.183 808.456 676.742 564.531 468.868 387.26 317.6 258.107 207.273 163.813 126.654 94.8326 67.6889 44.1729 24.8758 5.7915 -2.81712 -0.0517306 0.213057 -0.0387827 -0.019725 -0.000888548 -0.0034393 -0.00306781 -0.00168121 -0.000852284 -0.000165273 0.000473377 0.00104199 0.00157936 0.00205518 0.00266734 0.002879 0.00441386 0.00220063 0.0111538 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.4 82174.8 82172.3 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.2 18060.3 15050.9 12574 10529 8834.14 7424.63 6248.99 5265.83 4441.64 3749.23 3166.39 2674.91 2259.8 1908.69 1611.32 1359.15 1145.07 963.159 808.432 676.718 564.507 468.844 387.236 317.576 258.084 207.25 163.79 126.632 94.8115 67.6689 44.1542 24.8586 5.7761 -2.83022 -0.0628688 0.203499 -0.0469691 -0.0267198 -0.00686118 -0.00853142 -0.00739831 -0.00535114 -0.00394736 -0.00275697 -0.00167505 -0.000711588 0.000178586 0.000981618 0.00188309 0.00239423 0.00418107 0.00221734 0.0117049 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.4 82174.8 82172.2 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.2 18060.3 15050.9 12574 10529 8834.12 7424.61 6248.98 5265.81 4441.62 3749.21 3166.37 2674.89 2259.78 1908.67 1611.3 1359.12 1145.05 963.137 808.41 676.695 564.484 468.821 387.213 317.554 258.062 207.228 163.769 126.612 94.792 67.6504 44.1369 24.8427 5.76174 -2.84248 -0.0732808 0.194564 -0.0546271 -0.033267 -0.0124551 -0.013305 -0.0114626 -0.00880096 -0.00686292 -0.00520579 -0.00371367 -0.00238606 -0.00117174 -7.12788e-05 0.00109417 0.00187641 0.00386819 0.00219504 0.011975 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.4 82174.8 82172.2 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.1 18060.3 15050.9 12574 10529 8834.11 7424.6 6248.96 5265.79 4441.61 3749.19 3166.35 2674.87 2259.77 1908.65 1611.28 1359.11 1145.03 963.118 808.391 676.676 564.465 468.801 387.194 317.535 258.042 207.209 163.75 126.594 94.7745 67.6338 44.1213 24.8283 5.74877 -2.85359 -0.0827148 0.186469 -0.0615722 -0.039209 -0.0175361 -0.0176456 -0.0151636 -0.0119483 -0.00952991 -0.00745383 -0.00559484 -0.00394266 -0.00244173 -0.00107615 0.000312772 0.0013461 0.00348193 0.00212964 0.0119582 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.4 82174.8 82172.2 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.1 18060.3 15050.8 12574 10529 8834.1 7424.59 6248.95 5265.78 4441.59 3749.18 3166.34 2674.86 2259.75 1908.64 1611.26 1359.09 1145.02 963.102 808.375 676.659 564.448 468.785 387.177 317.518 258.026 207.193 163.734 126.578 94.7595 67.6195 44.1078 24.8159 5.73752 -2.8633 -0.0909426 0.179407 -0.0676367 -0.0444026 -0.0219819 -0.0214492 -0.0184128 -0.0147184 -0.0118849 -0.0094479 -0.00727395 -0.00534436 -0.00360032 -0.00201228 -0.000437637 0.000807398 0.00303095 0.00202653 0.0116542 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.4 82174.8 82172.2 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.1 18060.3 15050.8 12574 10529 8834.09 7424.58 6248.94 5265.77 4441.58 3749.17 3166.33 2674.85 2259.74 1908.63 1611.25 1359.08 1145 963.09 808.362 676.647 564.435 468.772 387.164 317.505 258.013 207.18 163.721 126.565 94.7474 67.6078 44.0969 24.8057 5.72824 -2.87136 -0.0977656 0.173551 -0.0726748 -0.0487231 -0.0256861 -0.0246247 -0.0211327 -0.0170451 -0.013872 -0.0111408 -0.00871159 -0.00655874 -0.00462158 -0.00285564 -0.00114435 0.000279822 0.00252639 0.00188399 0.0110708 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.4 82174.8 82172.3 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.1 18060.3 15050.8 12574 10529 8834.09 7424.57 6248.94 5265.77 4441.58 3749.17 3166.32 2674.84 2259.74 1908.62 1611.24 1359.07 1145 963.082 808.353 676.638 564.426 468.762 387.154 317.495 258.003 207.17 163.712 126.556 94.7383 67.5991 44.0886 24.798 5.72116 -2.87758 -0.103019 0.16904 -0.0765653 -0.0520667 -0.0285596 -0.0270962 -0.0232583 -0.018873 -0.0154439 -0.0124923 -0.0098736 -0.00755659 -0.00548049 -0.00358812 -0.00178683 -0.00023024 0.00197902 0.00170883 0.0102217 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.4 82174.8 82172.3 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.1 18060.3 15050.8 12574 10529 8834.09 7424.57 6248.93 5265.77 4441.58 3749.16 3166.32 2674.84 2259.73 1908.62 1611.24 1359.07 1144.99 963.077 808.349 676.633 564.421 468.757 387.149 317.489 257.997 207.164 163.706 126.55 94.7326 67.5936 44.0833 24.793 5.71646 -2.88181 -0.106578 0.165983 -0.0792151 -0.0543536 -0.0305342 -0.0288048 -0.024739 -0.0201588 -0.0165634 -0.0134706 -0.0107327 -0.00831502 -0.00615764 -0.00419145 -0.00235316 -0.000706272 0.00140323 0.00150188 0.00912759 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.4 82060.2 82992.8 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.1 18060.3 15050.8 12574 10529 8834.09 7424.58 6248.94 5265.77 4441.58 3749.17 3166.32 2674.84 2259.73 1908.62 1611.24 1359.07 1144.99 963.077 808.348 676.632 564.42 468.756 387.147 317.488 257.995 207.162 163.704 126.548 94.7304 67.5914 44.081 24.7907 5.71425 -2.88394 -0.108356 0.164453 -0.080561 -0.0555293 -0.0315628 -0.02971 -0.0255399 -0.0208719 -0.017204 -0.0140523 -0.0112684 -0.00881545 -0.0066365 -0.00465193 -0.00282779 -0.00114026 0.000810822 0.00127061 0.00781452 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.1 18060.3 15050.8 12574 10529 8834.1 7424.58 6248.94 5265.77 4441.59 3749.17 3166.33 2674.85 2259.74 1908.63 1611.25 1359.07 1145 963.081 808.352 676.636 564.423 468.759 387.15 317.49 257.998 207.164 163.706 126.55 94.7318 67.5925 44.0819 24.7913 5.71457 -2.88394 -0.108312 0.164486 -0.0805719 -0.0555668 -0.0316216 -0.0297908 -0.0256422 -0.0209958 -0.0173508 -0.014224 -0.0114681 -0.00904669 -0.00690602 -0.00495873 -0.00320072 -0.00152031 0.000218043 0.00101829 0.0063142 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.1 18060.3 15050.9 12574 10529 8834.11 7424.59 6248.95 5265.78 4441.6 3749.18 3166.34 2674.86 2259.75 1908.63 1611.25 1359.08 1145.01 963.09 808.36 676.643 564.431 468.766 387.157 317.497 258.004 207.17 163.712 126.555 94.7366 67.5969 44.0859 24.7947 5.71743 -2.8818 -0.106449 0.166078 -0.0792488 -0.0544661 -0.0307102 -0.029046 -0.025044 -0.0205277 -0.0170002 -0.0139814 -0.0113271 -0.00900251 -0.00695968 -0.00510384 -0.00346288 -0.00183761 -0.000363543 0.000752247 0.00466255 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31885.9 26271.1 21734.2 18060.3 15050.9 12574 10529 8834.12 7424.61 6248.97 5265.8 4441.61 3749.2 3166.35 2674.87 2259.76 1908.65 1611.27 1359.09 1145.02 963.102 808.372 676.655 564.442 468.777 387.168 317.507 258.014 207.18 163.721 126.564 94.7448 67.6045 44.0928 24.8009 5.72274 -2.87757 -0.102813 0.16919 -0.0766254 -0.0522553 -0.0288516 -0.0274944 -0.0237603 -0.0194793 -0.0161609 -0.0133304 -0.0108485 -0.00868433 -0.00679571 -0.00508491 -0.00360719 -0.00208613 -0.000917573 0.0004777 0.00289894 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31885.9 26271.2 21734.2 18060.3 15050.9 12574 10529 8834.14 7424.62 6248.98 5265.81 4441.63 3749.21 3166.37 2674.89 2259.78 1908.66 1611.28 1359.11 1145.03 963.118 808.388 676.67 564.457 468.792 387.182 317.522 258.028 207.193 163.733 126.576 94.7563 67.6152 44.1026 24.8097 5.73038 -2.87136 -0.0974955 0.173745 -0.0727668 -0.0489891 -0.0260919 -0.025174 -0.0218223 -0.0178758 -0.0148528 -0.0122861 -0.0100433 -0.00809873 -0.00641817 -0.00490038 -0.00363204 -0.00225735 -0.00143418 0.000200747 0.00106535 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31885.9 26271.2 21734.2 18060.3 15050.9 12574.1 10529 8834.16 7424.64 6249 5265.83 4441.64 3749.23 3166.39 2674.91 2259.8 1908.68 1611.3 1359.13 1145.05 963.137 808.407 676.689 564.475 468.81 387.2 317.539 258.045 207.21 163.749 126.591 94.7706 67.6286 44.1149 24.8208 5.74015 -2.86333 -0.0906272 0.179629 -0.0677683 -0.0447484 -0.0224989 -0.0221419 -0.0192773 -0.0157561 -0.0131072 -0.0108733 -0.00893015 -0.00725963 -0.00583488 -0.00455681 -0.00353432 -0.00235222 -0.0018991 -7.24744e-05 -0.000795604 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773 47048.1 38623.8 31886 26271.2 21734.2 18060.4 15050.9 12574.1 10529.1 8834.18 7424.66 6249.02 5265.86 4441.67 3749.25 3166.41 2674.93 2259.82 1908.71 1611.32 1359.15 1145.07 963.158 808.428 676.711 564.497 468.831 387.221 317.559 258.064 207.229 163.768 126.609 94.7875 67.6444 44.1296 24.834 5.75183 -2.85366 -0.082378 0.186698 -0.0617539 -0.0396378 -0.0181611 -0.0184722 -0.0161872 -0.0131709 -0.0109656 -0.00912507 -0.00753506 -0.00618582 -0.00506003 -0.00405928 -0.00332027 -0.00236366 -0.00230582 -0.000338436 -0.00264099 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.6 59773.1 47048.2 38623.9 31886 26271.2 21734.2 18060.4 15050.9 12574.1 10529.1 8834.2 7424.68 6249.05 5265.88 4441.69 3749.28 3166.43 2674.95 2259.84 1908.73 1611.35 1359.17 1145.1 963.182 808.452 676.734 564.52 468.854 387.244 317.582 258.087 207.25 163.789 126.629 94.8065 67.6623 44.1461 24.849 5.76512 -2.8426 -0.0729515 0.194776 -0.0548723 -0.0337838 -0.0131857 -0.0142552 -0.0126275 -0.0101835 -0.0084799 -0.00708356 -0.0058912 -0.00490345 -0.00411141 -0.00342402 -0.0029925 -0.00230167 -0.00264621 -0.000593267 -0.00443217 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.8 82172.3 82190.5 82060.2 82992.9 76315.7 59773.1 47048.2 38623.9 31886 26271.2 21734.2 18060.4 15051 12574.1 10529.1 8834.22 7424.71 6249.07 5265.9 4441.71 3749.3 3166.46 2674.98 2259.87 1908.75 1611.37 1359.2 1145.12 963.208 808.478 676.76 564.546 468.88 387.269 317.606 258.111 207.274 163.811 126.651 94.8272 67.6818 44.1642 24.8654 5.77969 -2.83042 -0.0625831 0.203662 -0.0472944 -0.0273303 -0.0076938 -0.00959189 -0.00868213 -0.00686204 -0.00570516 -0.00479188 -0.00403173 -0.00343571 -0.00300577 -0.00265539 -0.00255786 -0.00215467 -0.00291247 -0.000831889 -0.00613032 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.9 82172.3 82190.5 82060.2 82992.9 76315.7 59773.1 47048.2 38623.9 31886 26271.3 21734.3 18060.4 15051 12574.1 10529.1 8834.24 7424.73 6249.1 5265.93 4441.74 3749.33 3166.48 2675 2259.9 1908.78 1611.4 1359.23 1145.15 963.235 808.505 676.787 564.572 468.906 387.295 317.632 258.136 207.298 163.835 126.674 94.8491 67.7024 44.1834 24.8829 5.79519 -2.81744 -0.0515333 0.213131 -0.0392123 -0.0204431 -0.00182725 -0.00460481 -0.00445575 -0.00329703 -0.00271845 -0.00231623 -0.00201207 -0.00183004 -0.00178066 -0.00178992 -0.00203713 -0.00195543 -0.00312038 -0.00107404 -0.00772969 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.9 82172.3 82190.5 82060.2 82992.9 76315.7 59773.1 47048.2 38623.9 31886 26271.3 21734.3 18060.5 15051 12574.2 10529.2 8834.27 7424.76 6249.12 5265.95 4441.76 3749.35 3166.51 2675.03 2259.92 1908.81 1611.43 1359.25 1145.18 963.262 808.532 676.814 564.599 468.933 387.321 317.658 258.162 207.324 163.86 126.697 94.8717 67.7237 44.2032 24.9009 5.81126 -2.80394 -0.0400549 0.222978 -0.0307903 -0.0132484 0.00432065 0.000642355 1.30745e-05 0.000496014 0.000484068 0.000365509 0.000204887 -3.41793e-05 -0.000373117 -0.000747676 -0.00135281 -0.00160435 -0.0031855 -0.00124697 -0.00916946 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.5 82174.9 82172.3 82190.5 82060.3 82993 76315.7 59773.1 47048.2 38623.9 31886.1 26271.3 21734.3 18060.5 15051 12574.2 10529.2 8834.29 7424.78 6249.14 5265.97 4441.79 3749.38 3166.54 2675.05 2259.95 1908.83 1611.45 1359.28 1145.21 963.289 808.559 676.841 564.626 468.96 387.348 317.685 258.187 207.349 163.884 126.721 94.8942 67.745 44.223 24.9189 5.82734 -2.79043 -0.028602 0.23278 -0.0224319 -0.0061344 0.0103705 0.00577796 0.00435745 0.00415403 0.00354234 0.00289527 0.00226366 0.00159777 0.000866099 0.000115555 -0.000848486 -0.00146736 -0.00345894 -0.00169475 -0.0107609 ) ; boundaryField { cyclic1 { type cyclic; } cyclic2 { type cyclic; } frontAndBack { type empty; } outlet { type fixedValue; value uniform 0; } inlet { type zeroGradient; } } // ************************************************************************* //
172ac9b5eac2de1aef7e96f40cb7294a09da6738
ad47765daaea0021b6a8d8f07cef262aa87f894b
/Titresim_ve_Gaz.ino
58d2e89e1141e2df86480b322d87d6cf2ad4c5ea
[]
no_license
aycakiremitci/DetecteurDeCatastrophe
df0dc395371eacc9ed9ed849271d54c62ab19072
049dd999c9974cd744ca98176fbc6a5412e0f43c
refs/heads/master
2020-12-09T11:34:06.202998
2020-01-11T21:32:30
2020-01-11T21:32:30
233,292,650
0
0
null
null
null
null
UTF-8
C++
false
false
848
ino
Titresim_ve_Gaz.ino
#define led 13 #define buton 12 #define titresim 7 #define buzzer 4 #define gaz A0 #define onisisuresi 4000 #define esikdeger 240 void setup() { pinMode(titresim,INPUT); pinMode(buton,INPUT); pinMode(buzzer,OUTPUT); pinMode(led,OUTPUT); Serial.begin(9600); delay(onisisuresi); } void loop() { int titresimdegeri = digitalRead(titresim); int dumandegeri = analogRead(gaz); int butondegeri = digitalRead(buton); Serial.print("Titresim Degeri: "); Serial.println(titresimdegeri); Serial.print("Yanıcı Gaz Degeri: "); Serial.println(dumandegeri); if(titresimdegeri == 1 or dumandegeri >= esikdeger){ while (butondegeri == 0){ tone(buzzer,500); digitalWrite(led,LOW); } } else { noTone(buzzer); digitalWrite(led,HIGH); } delay(1050); }
cbe239b53a06741154b86c919d48d4ec48a3af43
c4f3bd0928099080eae6bf979ea080d0d1c48b5c
/src/main.cpp
0c55638510a89c23ea1692e1601803b1d228fe18
[ "BSD-3-Clause" ]
permissive
cvlian/TLSniff
e08de87405e1ab55c152e58212cbc4e33836bafa
14db5261c21eb7dd86432939d9dd0fc62583a03f
refs/heads/master
2023-03-26T05:48:59.183406
2021-03-27T13:25:11
2021-03-27T13:25:11
312,205,131
0
4
null
null
null
null
UTF-8
C++
false
false
8,566
cpp
main.cpp
/* main.cpp * * routines for capturing a series of SSL/TLS record data from TCP data streams * * TLSniff - a fast and simple tool to analyze SSL/TLS records */ #include <stdio.h> #include <getopt.h> #include <unistd.h> #include <sys/stat.h> #include "utils.h" #include "reader.h" #include "handler.h" #include "assembly.h" /* Terminate this program when bad options are given */ #define EXIT_WITH_OPTERROR(reason, ...) do { \ printf("\n " reason "\n", ## __VA_ARGS__); \ printUsage(); \ exit(1); \ } while(0) struct timeval init_tv; static struct option TLSniffOptions[] = { {"count", required_argument, 0, 'c'}, {"duration", required_argument, 0, 'd'}, {"interface", required_argument, 0, 'i'}, {"rcd-count", required_argument, 0, 'm'}, {"rcd-count-perflow", required_argument, 0, 'l'}, {"input-file", required_argument, 0, 'r'}, {"output-file", required_argument, 0, 'w'}, {"quite-mode", no_argument, 0, 'q'}, {"byte-type", no_argument, 0, 'x'}, {"help", no_argument, 0, 'h'}, {0, 0, 0, 0} }; /* Structure to handle the packet dump */ struct PacketArrivedData { pump::Assembly* assembly; struct pump::CaptureConfig* config; }; /* Print help and exit */ void printUsage() { printf("\nTLSniff - a fast and simple tool to analyze SSL/TLS records\n" "See https://github.com/Cvilian/TLSniff for more information\n\n" "Usage: tlsniff [options] ...\n" "Capture packets:\n" " -i <interface> : Name of the network interface\n" " -r <input-file> : Read packet data from <input-file>\n" "Capture stop conditions:\n" " -c <count> : Set the maximum number of packets to read\n" " -d <duration> : Stop after <duration> seconds\n" " -m <rcd count> : Set the maximum number of records to read\n" "Processing:\n" " -l <rcd count> : Set the maximum number of records to be extracted per flow\n" " -q : Print less-verbose record information\n" " -x : Write <output-file> in hexadecimal form\n" "Output:\n" " -w <output-file> : Write all SSL/TLS record data to <output-file>\n" " (or write its results to stdout)\n" "Others:\n" " -h : Displays this help message and exits\n" "-------------------------\n"); exit(0); } /* Callback invoked whenever the reader has seen a packet */ void packetArrive(pump::Packet* packet, pump::LiveReader* rdr, void* cookie) { PacketArrivedData* data = (PacketArrivedData*)cookie; data->assembly->managePacket(packet, data->config); } /* Start gathering record info from the discovered network interface */ void doTLSniffOnLive(pump::LiveReader* rdr, struct pump::CaptureConfig* config) { // Open the network interface to capture from it if (!rdr->open()) EXIT_WITH_CONFERROR("###ERROR : Could not open the device"); PacketArrivedData data; pump::Assembly assembly(init_tv); data.assembly = &assembly; data.config = config; rdr->startCapture(packetArrive, &data); // Run in an endless loop until the user presses Ctrl+C while(!assembly.isTerminated()) sleep(1); rdr->stopCapture(); if(!(config->quitemode)) printf("\n"); pump::print_progressM(assembly.getTotalPacket()); printf(" **%lu Bytes**\n", assembly.getTotalByteLen()); // Write all captured records to the specified file if(config->outputFileTo != "") { assembly.registerEvent(); assembly.mergeRecord(config); } // Close the capture pipe assembly.close(); delete rdr; } /* Start gathering record info from the discovered network interface */ void doTLSniffOnPcap(std::string pcapFile, struct pump::CaptureConfig* config) { pump::PcapReader* rdr = pump::PcapReader::getReader(pcapFile.c_str()); // Open the pcap file to capture from it if (!rdr->open()) EXIT_WITH_CONFERROR("###ERROR : Could not open input pcap file"); pump::Assembly assembly(init_tv); pump::Packet packet; // Run in an endless loop until the user presses Ctrl+C // or the program encounters tne end of file while(rdr->getNextPacket(packet) && !assembly.isTerminated()) { assembly.managePacket(&packet, config); } if(!(config->quitemode)) printf("\n"); pump::print_progressM(assembly.getTotalPacket()); printf(" **%lu Bytes**\n", assembly.getTotalByteLen()); // Write all captured records to the specified file if(config->outputFileTo != "") { assembly.registerEvent(); assembly.mergeRecord(config); } // Close the capture pipe assembly.close(); delete rdr; } int main(int argc, char* argv[]) { gettimeofday(&init_tv, NULL); // Tell the user not to run as root if (getuid()) EXIT_WITH_CONFERROR("###ERROR : Running TLSniff requires root privileges!\n"); // Set the initial values in the capture options std::string readPacketsFromPcap = ""; std::string readPacketsFromInterface = ""; std::string outputFileTo = ""; int optionIndex = 0; uint32_t maxPacket = IN_LIMIT; uint32_t maxTime = IN_LIMIT; uint32_t maxRcd = IN_LIMIT; uint32_t maxRcdpf = IN_LIMIT; bool outputTypeHex = false; bool quitemode = false; char opt = 0; // Set the preferences with values from command-line options while((opt = getopt_long (argc, argv, "c:d:i:l:m:r:w:qxh", TLSniffOptions, &optionIndex)) != -1) { switch (opt) { case 0: break; case 'c': maxPacket = atoi(optarg); break; case 'd': maxTime = atoi(optarg); break; case 'i': readPacketsFromInterface = optarg; break; case 'l': maxRcdpf = atoi(optarg); break; case 'm': maxRcd = atoi(optarg); break; case 'r': readPacketsFromPcap = optarg; break; case 'w': outputFileTo = optarg; break; case 'q': quitemode = true; break; case 'x': outputTypeHex = true; break; case 'h': printUsage(); break; default: printUsage(); exit(-1); } } // If no input pcap file or network interface was provided - exit with error if (readPacketsFromPcap == "" && readPacketsFromInterface == "") EXIT_WITH_OPTERROR("###ERROR : Neither interface nor input pcap file were provided"); // Should choose only one option : pcap or interface - exit with error if (readPacketsFromPcap != "" && readPacketsFromInterface != "") EXIT_WITH_OPTERROR("###ERROR : Choose only one option, pcap or interface"); // Negative value is not allowed if (maxPacket <= 0) EXIT_WITH_OPTERROR("###ERROR : #Packet can't be a non-positive integer"); if (maxTime <= 0) EXIT_WITH_OPTERROR("###ERROR : Duration can't be a non-positive integer"); if (maxRcd <= 0) EXIT_WITH_OPTERROR("###ERROR : #Record can't be a non-positive integer"); if (maxRcdpf <= 0) EXIT_WITH_OPTERROR("###ERROR : #Record per flow can't be a non-positive integer"); struct pump::CaptureConfig config = { .maxPacket = maxPacket, .maxTime = maxTime, .maxRcd = maxRcd, .maxRcdpf = maxRcdpf, .outputTypeHex = outputTypeHex, .quitemode = quitemode, .outputFileTo = outputFileTo }; // Create a directory that holds stream data files if(access(saveDir.c_str(), 0) == -1) mkdir(saveDir.c_str(), 0777); // Read the user's preferences file, if it exists // Otherwise, open a network interface to capture from it if (readPacketsFromPcap != "") { doTLSniffOnPcap(readPacketsFromPcap, &config); } else { pump::LiveReader* rdr = pump::LiveInterfaces::getInstance().getLiveReader(readPacketsFromInterface); if (rdr == NULL) EXIT_WITH_CONFERROR("###ERROR : Couldn't find interface by provided name"); doTLSniffOnLive(rdr, &config); } // Clear out stuff in the temporal directory pump::clearTLSniff(); printf("**All Done**\n"); WRITE_LOG("===Process Finished"); return 0; }
e989778ca510963a728da27613e4377d1e857477
ba64c33c80e3cb8241fd21ba4ebe0514f5dbb54c
/research/carls/kbs_server_helper_pybind.cc
7ad2704da55a76eafa9a04e24f97509afb65e2f7
[ "Apache-2.0" ]
permissive
Saiprasad16/neural-structured-learning
b921df66fb9f23bbbddc46eaa2d121c39e4092cd
bde9105b12b2797c909a0fe20ef74bb7fff6100b
refs/heads/master
2023-04-26T19:57:36.302861
2021-05-08T02:14:40
2021-05-08T02:15:25
366,008,715
1
0
Apache-2.0
2021-05-10T10:52:42
2021-05-10T10:46:53
null
UTF-8
C++
false
false
1,666
cc
kbs_server_helper_pybind.cc
/*Copyright 2020 Google LLC 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 https://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 "research/carls/kbs_server_helper.h" #include "pybind11/pybind11.h" namespace carls { PYBIND11_MODULE(pywrap_kbs_server_helper_pybind, m) { m.doc() = R"pbdoc( pywrap_kbs_server_helper_pybind A module that returns KBS server helper )pbdoc"; pybind11::class_<KnowledgeBankServiceOptions>(m, "KnowledgeBankServiceOptions") .def(pybind11::init<bool, int, int>()) .def_readwrite("run_locally", &KnowledgeBankServiceOptions::run_locally) .def_readwrite("port", &KnowledgeBankServiceOptions::port) .def_readwrite("num_threads", &KnowledgeBankServiceOptions::num_threads); pybind11::class_<KbsServerHelper>(m, "KbsServerHelper") .def(pybind11::init<const KnowledgeBankServiceOptions&>()) .def("WaitForTermination", &KbsServerHelper::WaitForTermination) .def("Terminate", &KbsServerHelper::Terminate) .def("address", &KbsServerHelper::address) .def("port", &KbsServerHelper::port); } } // namespace carls
fca83b7ab796a66c5b44bfbf182845fd8accbcb2
a7e1049623bed0123452228cf6e0157adf0eddb3
/Baraja.h
cf794f684fb12b60d0550b773a08185ff1308c6e
[]
no_license
davidelvir/DavidNunez-Examen2
f00fcc03526289a71326cd0f80943e12c4b05a6c
0b85a4be29f9d5410de271381e661164ea9b8bc7
refs/heads/master
2021-01-21T23:29:03.890670
2017-06-24T02:45:40
2017-06-24T02:45:40
95,248,522
0
0
null
null
null
null
UTF-8
C++
false
false
256
h
Baraja.h
#include "Carta.h" #include <vector> #ifndef BARAJA_H #define BARAJA_H class Baraja{ public: vector<Carta*>cartas; Baraja(); int getSize(); Carta* getCarta(int); void setCarta(Carta*); void shuffle(); vector<Carta*>& getCartas(); }; #endif
c46536f1677d79d3b178a59d0305ec51fc7c6513
7bd04744acf23fcef4163904d76250cef795412d
/src/base_model.Dispatcher.h
acc9b09df3287c05269d276e9c7b20b4efebbb75
[ "MIT" ]
permissive
mrc-ide/covfefe
ee7b123fe6b0cab1f0b0af89b858c244fc8334ea
bf4d7c2b8a359b5389c7578a9e234ad33c8ab6c0
refs/heads/master
2020-03-16T15:19:11.120471
2018-12-11T16:36:12
2018-12-11T16:36:12
132,738,177
4
0
null
2018-05-09T10:11:47
2018-05-09T10:04:49
R
UTF-8
C++
false
false
3,482
h
base_model.Dispatcher.h
#pragma once #include "misc.h" #include "base_model.Parameters.h" #include "base_model.Host.h" #include "base_model.Mosquito.h" #include "base_model.Sampler.h" #ifdef RCPP_ACTIVE #include <Rcpp.h> #endif #include <set> #include <map> //------------------------------------------------ // class defining individual-based simulation model class Dispatcher : public Parameters { public: // PUBLIC OBJECTS // objects for sampling from probability distributions Sampler sampler_age_stable; Sampler sampler_age_death; std::vector<Sampler> sampler_duration_acute; std::vector<Sampler> sampler_duration_chronic; // scheduler objects std::vector<std::set<int>> schedule_death; std::vector<std::vector<std::pair<int, int>>> schedule_status_update; std::vector<std::vector<std::pair<int, int>>> schedule_infective_start_acute; std::vector<std::vector<std::pair<int, int>>> schedule_infective_start_chronic; std::vector<std::vector<std::pair<int, int>>> schedule_infective_acute_chronic; std::vector<std::vector<std::pair<int, int>>> schedule_infective_stop_acute; std::vector<std::vector<std::pair<int, int>>> schedule_infective_stop_chronic; // counts of host types int H_total; std::vector<int> H; std::vector<int> Sh; std::vector<int> Lh; std::vector<int> Ah; std::vector<int> Ch; // other quantities to keep track of std::vector<double> EIR; // population of human hosts over all demes std::vector<Host> hosts; int next_host_ID; // store the integer index of hosts in each deme std::vector<std::vector<int>> host_vec; std::vector<std::vector<int>> host_infective_vec; // counts of mosquito types std::vector<int> Sv; std::vector<int> Lv; std::vector<int> Iv; // population of mosquitoes (see Indiv_deme.cpp for details) std::vector<std::vector<std::vector<Mosquito>>> Ev_mosq; std::vector<std::vector<Mosquito>> Iv_mosq; std::vector<std::vector<int>> Ev_death; int ringtime; // objects for storing daily counts etc. std::vector<std::vector<int>> H_store; std::vector<std::vector<int>> Sh_store; std::vector<std::vector<int>> Lh_store; std::vector<std::vector<int>> Ah_store; std::vector<std::vector<int>> Ch_store; std::vector<std::vector<int>> Sv_store; std::vector<std::vector<int>> Lv_store; std::vector<std::vector<int>> Iv_store; std::vector<std::vector<double>> EIR_store; // objects for storing age distributions std::vector<std::vector<std::vector<int>>> H_age_store; std::vector<std::vector<std::vector<int>>> Sh_age_store; std::vector<std::vector<std::vector<int>>> Lh_age_store; std::vector<std::vector<std::vector<int>>> Ah_age_store; std::vector<std::vector<std::vector<int>>> Ch_age_store; std::vector<std::vector<std::vector<double>>> inc_Lh_age_store; std::vector<std::vector<std::vector<double>>> inc_Ah_age_store; // misc double prob_h_infectious_bite; // PUBLIC FUNCTIONS // constructors Dispatcher(); // methods void new_infection(int this_host, Mosquito &mosq, int t); void latent_acute(int this_host, int this_slot, int t); void latent_chronic(int this_host, int this_slot, int t); void acute_chronic(int this_host, int this_slot, int t); void acute_recover(int this_host, int this_slot, int t); void chronic_recover(int this_host, int this_slot, int t); void update_age_incidence(int this_host, int this_deme, int output_age_time_index, int t); void simulate(); };
03bc0365e14c1c43e251ce40b0c934abc6206131
58dbd83bc3142b23d7f6b20212a592ded62f49fa
/Algorithm/Baekjoon/1041.cpp
931992b67c32d639547cd0c91d3e033ec9abf6d7
[]
no_license
kkminseok/Git_Tutorial
56cbaededfed52dc093cdf343ace98f59ba57b18
1be681f240de067f9aee17a08620e04f9fc49441
refs/heads/master
2022-08-13T13:24:32.886304
2022-07-24T09:20:56
2022-07-24T09:20:56
204,464,357
0
1
null
null
null
null
UTF-8
C++
false
false
767
cpp
1041.cpp
#define _CRT_SECURE_NO_WARNINGS #include<cstdio> #include<algorithm> using namespace std; int main() { long long n; scanf("%lld", &n); int arr[6] = { 0, }; long long result = 0; long long n1, n2; for (int i = 0; i < 6; ++i) { scanf("%d", &arr[i]); } if (n == 1) { sort(arr, arr + 6); result = arr[0] + arr[1] + arr[2] + arr[3] + arr[4] ; printf("%lld", result); return 0; } arr[0] = min(arr[0], arr[5]); arr[1] = min(arr[1], arr[4]); arr[2] = min(arr[2], arr[3]); sort(arr, arr + 3); int min1 = arr[0] + arr[1] + arr[2]; int min2 = arr[0] + arr[1]; int min3 = arr[0]; result += min1 * 4; n1 = 4 * (n - 1) + 4 * (n - 2); result += min2 * n1; n2 = (n - 1)*(n - 2)*4 + (n - 2)*(n - 2); result += min3 * n2; printf("%lld", result); }
0381a3b48fd3fd358c45e79a98342d9dff22c4b7
92f64d930fadf2c23e78fb190ae2d7936ca308e6
/ClapperTV_PlatformIO/include/Hardware/Modules.hpp
1c20c05a7bd4e0c9fd2d259bb69823079542d4d6
[]
no_license
LordSyFo/ClapperTV
1ad0e17f0ee34f49342c82e6e71413ce5879b501
26be46ec8287ef27d63ad41bc31c4d4de48fccc4
refs/heads/master
2023-08-13T19:31:32.341591
2021-09-24T15:11:46
2021-09-24T15:11:46
333,460,062
0
0
null
null
null
null
UTF-8
C++
false
false
1,228
hpp
Modules.hpp
/* * Modules.h * * Created: 07/02/2021 17.14.19 * Author: hejmi */ #ifndef MODULES_H_ #define MODULES_H_ #include <Hardware/Register.hpp> #include <Hardware/GPIO.hpp> namespace Hardware { namespace Module { /* Constant modules (like timers, adc, etc.. ) */ struct TIMER0 { constexpr TIMER0() { } /* Registers */ Register::TCCR0A_ TCCRAReg; Register::TCCR0B_ TCCRBReg; Register::OCR0A_ OCRAReg; GPIO::OC0A Output0; GPIO::OC1A Output1; }; struct TIMER1 { constexpr TIMER1() { } /* Registers */ Register::TCCR1A_ TCCRAReg; Register::TCCR1B_ TCCRBReg; Register::TCCR1C_ TCCRCReg; Register::OCR1AL_ OCRAL; Register::OCR1AH_ OCRAH; Register::OCR1BL_ OCRBL; Register::OCR1BH_ OCRBH; Register::OCR1CL_ OCRCL; Register::OCR1CH_ OCRCH; Register::TIMSK1_ TimskReg; Register::TCNT1H_ TCNTH; Register::TCNT1L_ TCNTL; }; // TODO: Add support for more Timers struct ADC0_ { constexpr ADC0_() {} /* Registers */ Register::ADMUX_ ADMUXReg; Register::ADCSRB_ ADCSRBReg; Register::ADCSRA_ ADCSRAReg; Register::ADCH_ ADCHReg; Register::ADCL_ ADCLReg; GPIO::ADC0_ ADCGPIO; static constexpr uint8_t Id = 0; }; //TODO: Add support for more ADCs } } #endif /* MODULES_H_ */
56b2403f7c89cdfa7c3cd1e5c7372921f8abbde8
fbd1ce8deef8a606d5afff0ed115572b0261fd16
/src/RcppExports.cpp
f6382a9c4cddc97146847246e532e042d00d903c
[]
no_license
lamfo-unb/RMCriteria
84e2201ccd736753513292bdd53910ef36986d22
73238d435a5fcf5990d4d4fa77d6eb9e066a6d26
refs/heads/master
2021-03-19T14:25:23.224700
2019-09-16T23:36:17
2019-09-16T23:36:17
75,019,700
2
0
null
2018-04-08T21:26:41
2016-11-28T22:25:37
R
UTF-8
C++
false
false
7,792
cpp
RcppExports.cpp
// Generated by using Rcpp::compileAttributes() -> do not edit by hand // Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 #include <RcppEigen.h> #include <Rcpp.h> using namespace Rcpp; // matPrometheeI Eigen::MatrixXd matPrometheeI(Eigen::VectorXd datVec, int prefFunction, Eigen::VectorXd parms); RcppExport SEXP _RMCriteria_matPrometheeI(SEXP datVecSEXP, SEXP prefFunctionSEXP, SEXP parmsSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< Eigen::VectorXd >::type datVec(datVecSEXP); Rcpp::traits::input_parameter< int >::type prefFunction(prefFunctionSEXP); Rcpp::traits::input_parameter< Eigen::VectorXd >::type parms(parmsSEXP); rcpp_result_gen = Rcpp::wrap(matPrometheeI(datVec, prefFunction, parms)); return rcpp_result_gen; END_RCPP } // PrometheeI List PrometheeI(Eigen::MatrixXd datMat, Eigen::VectorXd vecWeights, Eigen::VectorXi prefFunction, Eigen::MatrixXd parms, bool normalize); RcppExport SEXP _RMCriteria_PrometheeI(SEXP datMatSEXP, SEXP vecWeightsSEXP, SEXP prefFunctionSEXP, SEXP parmsSEXP, SEXP normalizeSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< Eigen::MatrixXd >::type datMat(datMatSEXP); Rcpp::traits::input_parameter< Eigen::VectorXd >::type vecWeights(vecWeightsSEXP); Rcpp::traits::input_parameter< Eigen::VectorXi >::type prefFunction(prefFunctionSEXP); Rcpp::traits::input_parameter< Eigen::MatrixXd >::type parms(parmsSEXP); Rcpp::traits::input_parameter< bool >::type normalize(normalizeSEXP); rcpp_result_gen = Rcpp::wrap(PrometheeI(datMat, vecWeights, prefFunction, parms, normalize)); return rcpp_result_gen; END_RCPP } // matPrometheeII Eigen::MatrixXd matPrometheeII(Eigen::VectorXd datVec, int prefFunction, Eigen::VectorXd parms); RcppExport SEXP _RMCriteria_matPrometheeII(SEXP datVecSEXP, SEXP prefFunctionSEXP, SEXP parmsSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< Eigen::VectorXd >::type datVec(datVecSEXP); Rcpp::traits::input_parameter< int >::type prefFunction(prefFunctionSEXP); Rcpp::traits::input_parameter< Eigen::VectorXd >::type parms(parmsSEXP); rcpp_result_gen = Rcpp::wrap(matPrometheeII(datVec, prefFunction, parms)); return rcpp_result_gen; END_RCPP } // PrometheeII Eigen::VectorXd PrometheeII(Eigen::MatrixXd datMat, Eigen::VectorXd vecWeights, Eigen::VectorXi prefFunction, Eigen::MatrixXd parms, bool normalize); RcppExport SEXP _RMCriteria_PrometheeII(SEXP datMatSEXP, SEXP vecWeightsSEXP, SEXP prefFunctionSEXP, SEXP parmsSEXP, SEXP normalizeSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< Eigen::MatrixXd >::type datMat(datMatSEXP); Rcpp::traits::input_parameter< Eigen::VectorXd >::type vecWeights(vecWeightsSEXP); Rcpp::traits::input_parameter< Eigen::VectorXi >::type prefFunction(prefFunctionSEXP); Rcpp::traits::input_parameter< Eigen::MatrixXd >::type parms(parmsSEXP); Rcpp::traits::input_parameter< bool >::type normalize(normalizeSEXP); rcpp_result_gen = Rcpp::wrap(PrometheeII(datMat, vecWeights, prefFunction, parms, normalize)); return rcpp_result_gen; END_RCPP } // matPrometheeIII Eigen::MatrixXd matPrometheeIII(Eigen::VectorXd datVec, int prefFunction, Eigen::VectorXd parms); RcppExport SEXP _RMCriteria_matPrometheeIII(SEXP datVecSEXP, SEXP prefFunctionSEXP, SEXP parmsSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< Eigen::VectorXd >::type datVec(datVecSEXP); Rcpp::traits::input_parameter< int >::type prefFunction(prefFunctionSEXP); Rcpp::traits::input_parameter< Eigen::VectorXd >::type parms(parmsSEXP); rcpp_result_gen = Rcpp::wrap(matPrometheeIII(datVec, prefFunction, parms)); return rcpp_result_gen; END_RCPP } // PrometheeIII List PrometheeIII(Eigen::MatrixXd datMat, Eigen::VectorXd vecWeights, Eigen::VectorXi prefFunction, Eigen::VectorXi alphaVector, Eigen::MatrixXd parms); RcppExport SEXP _RMCriteria_PrometheeIII(SEXP datMatSEXP, SEXP vecWeightsSEXP, SEXP prefFunctionSEXP, SEXP alphaVectorSEXP, SEXP parmsSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< Eigen::MatrixXd >::type datMat(datMatSEXP); Rcpp::traits::input_parameter< Eigen::VectorXd >::type vecWeights(vecWeightsSEXP); Rcpp::traits::input_parameter< Eigen::VectorXi >::type prefFunction(prefFunctionSEXP); Rcpp::traits::input_parameter< Eigen::VectorXi >::type alphaVector(alphaVectorSEXP); Rcpp::traits::input_parameter< Eigen::MatrixXd >::type parms(parmsSEXP); rcpp_result_gen = Rcpp::wrap(PrometheeIII(datMat, vecWeights, prefFunction, alphaVector, parms)); return rcpp_result_gen; END_RCPP } // PrometheeIV Rcpp::List PrometheeIV(Eigen::MatrixXd datMat, Eigen::VectorXd vecWeights, Eigen::VectorXi prefFunction, Eigen::MatrixXd parms, bool normalize); RcppExport SEXP _RMCriteria_PrometheeIV(SEXP datMatSEXP, SEXP vecWeightsSEXP, SEXP prefFunctionSEXP, SEXP parmsSEXP, SEXP normalizeSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< Eigen::MatrixXd >::type datMat(datMatSEXP); Rcpp::traits::input_parameter< Eigen::VectorXd >::type vecWeights(vecWeightsSEXP); Rcpp::traits::input_parameter< Eigen::VectorXi >::type prefFunction(prefFunctionSEXP); Rcpp::traits::input_parameter< Eigen::MatrixXd >::type parms(parmsSEXP); Rcpp::traits::input_parameter< bool >::type normalize(normalizeSEXP); rcpp_result_gen = Rcpp::wrap(PrometheeIV(datMat, vecWeights, prefFunction, parms, normalize)); return rcpp_result_gen; END_RCPP } // PrometheeIVKernel Rcpp::List PrometheeIVKernel(Eigen::MatrixXd datMat, Eigen::VectorXd vecWeights, Eigen::VectorXi prefFunction, Eigen::MatrixXd parms, Eigen::MatrixXd band, bool normalize); RcppExport SEXP _RMCriteria_PrometheeIVKernel(SEXP datMatSEXP, SEXP vecWeightsSEXP, SEXP prefFunctionSEXP, SEXP parmsSEXP, SEXP bandSEXP, SEXP normalizeSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< Eigen::MatrixXd >::type datMat(datMatSEXP); Rcpp::traits::input_parameter< Eigen::VectorXd >::type vecWeights(vecWeightsSEXP); Rcpp::traits::input_parameter< Eigen::VectorXi >::type prefFunction(prefFunctionSEXP); Rcpp::traits::input_parameter< Eigen::MatrixXd >::type parms(parmsSEXP); Rcpp::traits::input_parameter< Eigen::MatrixXd >::type band(bandSEXP); Rcpp::traits::input_parameter< bool >::type normalize(normalizeSEXP); rcpp_result_gen = Rcpp::wrap(PrometheeIVKernel(datMat, vecWeights, prefFunction, parms, band, normalize)); return rcpp_result_gen; END_RCPP } static const R_CallMethodDef CallEntries[] = { {"_RMCriteria_matPrometheeI", (DL_FUNC) &_RMCriteria_matPrometheeI, 3}, {"_RMCriteria_PrometheeI", (DL_FUNC) &_RMCriteria_PrometheeI, 5}, {"_RMCriteria_matPrometheeII", (DL_FUNC) &_RMCriteria_matPrometheeII, 3}, {"_RMCriteria_PrometheeII", (DL_FUNC) &_RMCriteria_PrometheeII, 5}, {"_RMCriteria_matPrometheeIII", (DL_FUNC) &_RMCriteria_matPrometheeIII, 3}, {"_RMCriteria_PrometheeIII", (DL_FUNC) &_RMCriteria_PrometheeIII, 5}, {"_RMCriteria_PrometheeIV", (DL_FUNC) &_RMCriteria_PrometheeIV, 5}, {"_RMCriteria_PrometheeIVKernel", (DL_FUNC) &_RMCriteria_PrometheeIVKernel, 6}, {NULL, NULL, 0} }; RcppExport void R_init_RMCriteria(DllInfo *dll) { R_registerRoutines(dll, NULL, CallEntries, NULL, NULL); R_useDynamicSymbols(dll, FALSE); }
900476cbb5e5d0f1325a9125a8e6c62cb1f81bb8
e7a1a974fe647574483af63e40cd33c092e4d011
/Tools/Installers/LinuxBootstrapper/InstallationSetup.cpp
5dded69fa6dd3de7cac5606b634a85a154f9c67b
[]
no_license
blockspacer/Unity2018ShaderCompiler
cddc3d1fdab0c18bfd563a30888bbc18f914a809
4a3517261506550a7d8325f0335792e634ce0ba4
refs/heads/main
2023-04-16T13:53:13.812665
2021-03-19T12:27:39
2021-03-19T12:27:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,225
cpp
InstallationSetup.cpp
#include "InstallationSetup.h" #include "main.h" #include <sys/vfs.h> #include <sys/stat.h> #include <cstdlib> #include <cstring> #include <cerrno> #include "artifacts/generated/Configuration/UnityConfigureVersion.gen.h" extern gboolean g_Unattended; extern char* g_DownloadLocation; static InstallationSettings s_InstallationSettings; const char* kInstallationSizePrefix = "Total space required"; const char* kAvailableSpacePrefix = "Space available"; static bool DirectoryExists(GFile* file) { return (G_FILE_TYPE_DIRECTORY == g_file_query_file_type(file, G_FILE_QUERY_INFO_NONE, NULL)); } static bool IsWritableDirectory(GFile* file) { if (!DirectoryExists(file)) return false; GFileInfo *info = g_file_query_info(file, G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE, G_FILE_QUERY_INFO_NONE, NULL, NULL); gboolean writable = g_file_info_get_attribute_boolean(info, G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE); g_object_unref(info); return writable != FALSE; } static void Validate() { if (g_Unattended) { if (!s_InstallationSettings.downloadLocationIsTemporary && !IsWritableDirectory(s_InstallationSettings.downloadLocation)) { gchar* downloadLocation = g_file_get_path(s_InstallationSettings.downloadLocation); printf("Unable to write to download location '%s', aborting\n", downloadLocation); g_free(downloadLocation); exit(1); } if (!s_InstallationSettings.installLocation || !IsWritableDirectory(s_InstallationSettings.installLocation)) { gchar* installLocation = g_file_get_path(s_InstallationSettings.installLocation); printf("Unable to write to install location '%s', aborting\n", installLocation); g_free(installLocation); exit(1); } if (s_InstallationSettings.totalInstallationSizeGB > s_InstallationSettings.availableSpaceGB) { printf("Required space %0.2fGB is greater than available space %0.2fGB on volume, aborting\n", s_InstallationSettings.totalInstallationSizeGB, s_InstallationSettings.availableSpaceGB); exit(1); } return; } GtkFileChooser* downloadLocationButton = GTK_FILE_CHOOSER(GetObject("downloadLocationButton")); GFile* downloadLocation = gtk_file_chooser_get_file(downloadLocationButton); gboolean useTemporaryDownloadLocation = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(GetObject("downloadLocationTemporaryCheckbox"))); gboolean validDownloadLocationChosen = useTemporaryDownloadLocation || (downloadLocation && IsWritableDirectory(downloadLocation)); if (downloadLocation) g_object_unref(downloadLocation); GFile* installationLocation = gtk_file_chooser_get_file(GTK_FILE_CHOOSER(GetObject("installLocationButton"))); gboolean validInstallationLocationChosen = installationLocation && IsWritableDirectory(installationLocation); if (installationLocation) g_object_unref(installationLocation); gtk_widget_set_sensitive(GTK_WIDGET(downloadLocationButton), !useTemporaryDownloadLocation); gtk_widget_set_sensitive(GTK_WIDGET(GetObject("backButton")), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(GetObject("forwardButton")), validDownloadLocationChosen && validInstallationLocationChosen && s_InstallationSettings.availableSpaceGB > s_InstallationSettings.totalInstallationSizeGB); } static char* GetUnityNameWithVersion() { return "Unity-" UNITY_VERSION; } static void UpdateAvailableSpace() { struct statfs buf; gchar* path = g_file_get_path(s_InstallationSettings.installLocation); if (statfs(path, &buf) == 0) { s_InstallationSettings.availableSpaceGB = buf.f_bavail * buf.f_bsize / (double)kGigabyte; char* availableSizeText = g_strdup_printf("%s: %0.2f GB", kAvailableSpacePrefix, s_InstallationSettings.availableSpaceGB); if (g_Unattended) printf("Available space: %s\n", availableSizeText); else gtk_label_set_text(GTK_LABEL(GetObject("availableSpaceLabel")), availableSizeText); g_free(availableSizeText); } else { printf("Unable to query available space for '%s'.\n", path); } g_free(path); } static void SetDefaultLocations() { GFile* baseLocation = g_file_new_for_path("/opt"); if (!IsWritableDirectory(baseLocation)) { g_object_unref(baseLocation); baseLocation = g_file_new_for_path(g_get_home_dir()); } if (s_InstallationSettings.installLocation) g_object_unref(s_InstallationSettings.installLocation); s_InstallationSettings.installLocation = g_file_get_child(baseLocation, GetUnityNameWithVersion()); g_object_unref(baseLocation); if (!DirectoryExists(s_InstallationSettings.installLocation)) { s_InstallationSettings.createdInstallLocation = true; g_file_make_directory(s_InstallationSettings.installLocation, NULL, NULL); } if (!g_Unattended) { gtk_file_chooser_set_file(GTK_FILE_CHOOSER(GetObject("installLocationButton")), s_InstallationSettings.installLocation, NULL); const char* downloadPath = g_get_user_special_dir(G_USER_DIRECTORY_DOWNLOAD); if (g_DownloadLocation) { downloadPath = g_DownloadLocation; gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(GetObject("downloadLocationCustomCheckbox")), TRUE); } GFile *userDownloadDirectory = g_file_new_for_path(downloadPath); gtk_file_chooser_set_file(GTK_FILE_CHOOSER(GetObject("downloadLocationButton")), userDownloadDirectory, NULL); g_object_unref(userDownloadDirectory); } } void DoInstallationSetup() { char* installationSizeLabel = g_strdup_printf("%s: %0.2f GB", kInstallationSizePrefix, s_InstallationSettings.totalInstallationSizeGB); if (g_Unattended) printf("Required installation size: %s\n", installationSizeLabel); else gtk_label_set_text(GTK_LABEL(GetObject("requiredSpaceLabel")), installationSizeLabel); g_free(installationSizeLabel); SetDefaultLocations(); UpdateAvailableSpace(); Validate(); } void DoInstallationCleanup(bool installationSucceeded) { if (s_InstallationSettings.downloadLocationIsTemporary && s_InstallationSettings.downloadLocation) g_file_trash(s_InstallationSettings.downloadLocation, NULL, NULL); if (!installationSucceeded && s_InstallationSettings.createdInstallLocation) g_file_trash(s_InstallationSettings.installLocation, NULL, NULL); } static GFile* CleanPath(gchar* path) { if (path[0] == '~') { const gchar* homeDir = g_getenv("HOME"); if (homeDir == NULL || !*homeDir) // can't substitute, so return original return g_file_new_for_path(path); size_t fullPathSize = strlen(homeDir) + strlen(path); // minus ~, plus \0 gchar* fullPath = (gchar*)malloc(fullPathSize); g_strlcpy(fullPath, homeDir, fullPathSize); g_strlcat(fullPath, path + 1, fullPathSize); GFile* out = g_file_new_for_path(fullPath); free(fullPath); return out; } else return g_file_new_for_path(path); } static bool CreateDirectoryIfNotExist(const char* path) { if (mkdir(path, 0777) != 0) { if (errno != EEXIST) { // Error perror(path); return false; } } return true; } static void CreateInstallationPath(GFile* gpath) { gchar* path = g_file_get_path(gpath); // Attempt to create the sub-paths bool ok = true; for (gchar* slash = strstr(path + 1, "/"); ok && slash != NULL; slash = strstr(slash + 1, "/")) { *slash = '\0'; // terminate this substring ok = CreateDirectoryIfNotExist(path); *slash = '/'; // restore the substring } // Attempt to create the full path if (ok) CreateDirectoryIfNotExist(path); } void SetInstallationLocations(char* installLocation, char* downloadLocation) { if (s_InstallationSettings.installLocation) g_object_unref(s_InstallationSettings.installLocation); s_InstallationSettings.installLocation = CleanPath(installLocation); // No failure check here because this is checked in Validate() CreateInstallationPath(s_InstallationSettings.installLocation); if (downloadLocation) { if (s_InstallationSettings.downloadLocation) g_object_unref(s_InstallationSettings.downloadLocation); s_InstallationSettings.downloadLocation = CleanPath(downloadLocation); CreateInstallationPath(s_InstallationSettings.downloadLocation); } s_InstallationSettings.downloadLocationIsTemporary = (downloadLocation == NULL); UpdateAvailableSpace(); Validate(); } InstallationSettings* GetInstallationSettings() { return &s_InstallationSettings; } InstallationSettings::InstallationSettings() : installLocation(NULL) , downloadLocation(NULL) , createdInstallLocation(false) , downloadLocationIsTemporary(true) , totalInstallationSizeGB(0) , availableSpaceGB(0) { } extern "C" { void OnDownloadLocationTypeToggled(GtkWidget* source, gpointer data) { s_InstallationSettings.downloadLocationIsTemporary = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(GetObject("downloadLocationTemporaryCheckbox"))); if (s_InstallationSettings.downloadLocationIsTemporary) { if (s_InstallationSettings.downloadLocation) g_object_unref(s_InstallationSettings.downloadLocation); s_InstallationSettings.downloadLocation = NULL; } else s_InstallationSettings.downloadLocation = gtk_file_chooser_get_file(GTK_FILE_CHOOSER(GetObject("downloadLocationButton"))); Validate(); } void OnDownloadLocationChanged(GtkFileChooser* source, gpointer data) { if (s_InstallationSettings.downloadLocationIsTemporary) return; GFile *selectedLocation = gtk_file_chooser_get_file(source); if (selectedLocation && (!s_InstallationSettings.downloadLocation || !g_file_equal(s_InstallationSettings.downloadLocation, selectedLocation))) { if (s_InstallationSettings.downloadLocation) g_object_unref(s_InstallationSettings.downloadLocation); s_InstallationSettings.downloadLocation = selectedLocation; } Validate(); } void OnInstallLocationChanged(GtkFileChooser* source, gpointer data) { GFile* selectedLocation = gtk_file_chooser_get_file(source); if (selectedLocation && !g_file_equal(s_InstallationSettings.installLocation, selectedLocation)) { if (s_InstallationSettings.createdInstallLocation) g_file_trash(s_InstallationSettings.installLocation, NULL, NULL); if (s_InstallationSettings.installLocation) g_object_unref(s_InstallationSettings.installLocation); s_InstallationSettings.installLocation = selectedLocation; s_InstallationSettings.createdInstallLocation = false; } UpdateAvailableSpace(); Validate(); } }
9d94f3497c9e09df2dd4eca455584f3e30795cf0
7df5e1aa0aac432da761ba67a9dc255d315d8bac
/src/concat/ccSegment.cpp
9e6551b7eff69500875c685b53daf70e782330de
[]
no_license
thoughtworksarts/concat
268c4e0ee0dfa091452e49f755459158c0b28b68
62bcb7cb72cb2ef9887327f1be09fa320fc07174
refs/heads/master
2021-06-19T15:35:11.318649
2019-08-15T20:08:31
2019-08-15T20:08:31
145,134,101
5
3
null
2019-08-15T20:08:32
2018-08-17T15:00:34
C++
UTF-8
C++
false
false
2,814
cpp
ccSegment.cpp
#include "ccSegment.h" void ccSegment::setup(ofMaterial& _material) { segmentMaterial = _material; showWireframes = false; setCylinderSize(1, 1); setJointRadius(1); segmentIsMoving = false; gradientDiff = 0; gradientSlope = true; } void ccSegment::translateToRotationCenter() { ofTranslate(0, joint.getRadius()); } void ccSegment::draw() { if (segmentIsMoving) { segmentMaterial.setDiffuseColor(ofFloatColor(ofColor(220, 20, 10))); } else { segmentMaterial.setDiffuseColor(ofFloatColor(ofColor::thistle)); } segmentMaterial.begin(); ofFill(); ofPushMatrix(); drawJoint(); drawCylinder(); drawRotationHandle(); ofPopMatrix(); ofTranslate(0, segmentHeight); segmentMaterial.end(); } void ccSegment::setBoxSize(float width, float height, float depth) { box.set(width, height, depth); cylinder.set(width / 2, height * 0.80, width, height / 2); halfBoxWidth = width * 0.5; halfBoxHeight = height * 0.5; calculateSegmentHeight(); } void ccSegment::setCylinderSize(float width, float height) { cylinder.set(width / 2, height*5, width, height*5); calculateCylinderSegmentHeight(); } void ccSegment::setJointRadius(float radius) { joint.setRadius(radius); calculateSegmentHeight(); } void ccSegment::toggleWireframes() { showWireframes = !showWireframes; } void ccSegment::calculateSegmentHeight() { segmentHeight = box.getHeight() + joint.getRadius(); } void ccSegment::calculateCylinderSegmentHeight() { segmentHeight = cylinder.getHeight() + joint.getRadius(); } void ccSegment::drawJoint() { ofSetLineWidth(1); if (showWireframes) { ofSetColor(ofColor::white); joint.drawWireframe(); } else { ofSetColor(ofColor::grey); joint.draw(); } } void ccSegment::drawBox() { ofTranslate(0, joint.getRadius() + halfBoxHeight); ofSetLineWidth(1); if (showWireframes) { ofSetColor(ofColor::white); box.drawWireframe(); } else { ofSetColor(ofColor::grey); box.draw(); } } void ccSegment::drawCylinder() { ofTranslate(0, joint.getRadius() + halfBoxHeight); ofSetLineWidth(1); if (showWireframes) { ofSetColor(ofColor::white); cylinder.drawWireframe(); } else { ofSetColor(ofColor::grey); cylinder.draw(); } } void ccSegment::drawSimpleCylinder(float joint1x, float joint1y, float joint2x, float joint2y, float radius) { float height = ofDist(joint1x, joint1y, joint2x, joint2y); drawCylinder(); } void ccSegment::drawRotationHandle() { if (showWireframes) { ofSetLineWidth(2); ofDrawLine(halfBoxWidth, 0, box.getWidth(), 0); } } void ccSegment::toggleSegmentHasMoved() { segmentIsMoving = !segmentIsMoving; } bool ccSegment::isSegmentMoving() { return segmentIsMoving; }
d323424dfe7ee7aef1fa9c62456cd2f4e097c63e
c47daa06fa41b1c54fea53b24073ce6253170833
/Rogue_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Sirenix.Serialization2.cpp
c40b4e4530ece756f824f56060f4318bc2629621
[]
no_license
MrResistance/ShippyMcRoomRoom
bd33a0e3bcc11759bd20e0c1fdcc081ec5aa6206
98085cbb6aa1021378f7f3bb249deab51746f0a8
refs/heads/master
2022-12-24T14:10:45.618208
2020-10-07T21:33:13
2020-10-07T21:33:13
282,239,465
0
0
null
null
null
null
UTF-8
C++
false
false
2,291,868
cpp
Sirenix.Serialization2.cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct VirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2> struct VirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3> struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2, typename T3, typename T4, typename T5> struct VirtActionInvoker5 { typedef void (*Action)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5> struct VirtFuncInvoker5 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6> struct VirtActionInvoker6 { typedef void (*Action)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1> struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // Sirenix.Serialization.BaseDataReader struct BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B; // Sirenix.Serialization.BaseDataReaderWriter struct BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B; // Sirenix.Serialization.BaseDataWriter struct BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012; // Sirenix.Serialization.BinaryDataReader struct BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293; // Sirenix.Serialization.BinaryDataWriter struct BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A; // Sirenix.Serialization.CachedMemoryStream struct CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6; // Sirenix.Serialization.CustomSerializationPolicy struct CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1; // Sirenix.Serialization.DataFormat[] struct DataFormatU5BU5D_t17594C066B3E8964DB9118043201345A3146B663; // Sirenix.Serialization.DebugContext struct DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD; // Sirenix.Serialization.DefaultSerializationBinder struct DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307; // Sirenix.Serialization.DeserializationContext struct DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413; // Sirenix.Serialization.GlobalSerializationConfig struct GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288; // Sirenix.Serialization.IDataReader struct IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F; // Sirenix.Serialization.IDataWriter struct IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723; // Sirenix.Serialization.IExternalGuidReferenceResolver struct IExternalGuidReferenceResolver_t39E2965AC7A8D344FDCD9DAE82774640EB3CA022; // Sirenix.Serialization.IExternalIndexReferenceResolver struct IExternalIndexReferenceResolver_t6FC6837D63CFC8D2C54E7C61FB19246A77FACF3B; // Sirenix.Serialization.IExternalStringReferenceResolver struct IExternalStringReferenceResolver_t63F74B59EB0C594EE7657391C0EF1A9A0354ED62; // Sirenix.Serialization.IFormatter struct IFormatter_t805835C57207463C628EC2624D94D4E207235D72; // Sirenix.Serialization.ILogger struct ILogger_t99D130832659A926E7361740DDCD6368B6CCF86D; // Sirenix.Serialization.ISerializationPolicy struct ISerializationPolicy_t0EC70AB63FD4875F21660481646E6267EA50C6CC; // Sirenix.Serialization.JsonDataReader struct JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8; // Sirenix.Serialization.JsonDataWriter struct JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B; // Sirenix.Serialization.JsonTextReader struct JsonTextReader_t0FCFEBDB9960FD5418C204DFACCD1D19C9D5D427; // Sirenix.Serialization.MinimalBaseFormatter`1<System.Object> struct MinimalBaseFormatter_1_t7074B8C584931C4F1FE4466362A386A50C02CCB3; // Sirenix.Serialization.MinimalBaseFormatter`1<System.TimeSpan> struct MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532; // Sirenix.Serialization.MinimalBaseFormatter`1<System.Type> struct MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584; // Sirenix.Serialization.NodeInfo[] struct NodeInfoU5BU5D_tBEA9AB221B22EF56ACD91C253D93D00B7785F305; // Sirenix.Serialization.PrefabModification struct PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45; // Sirenix.Serialization.PrefabModification[] struct PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9; // Sirenix.Serialization.SerializationAbortException struct SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB; // Sirenix.Serialization.SerializationConfig struct SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6; // Sirenix.Serialization.SerializationContext struct SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B; // Sirenix.Serialization.SerializationNodeDataReader struct SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290; // Sirenix.Serialization.SerializationNodeDataWriter struct SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1; // Sirenix.Serialization.SerializationNode[] struct SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A; // Sirenix.Serialization.SerializationPolicies/<>c struct U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7; // Sirenix.Serialization.SerializationPolicies/<>c__DisplayClass8_0 struct U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D; // Sirenix.Serialization.Serializer struct Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1; // Sirenix.Serialization.Serializer`1<System.Object> struct Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB; // Sirenix.Serialization.Serializer`1<System.Object[]> struct Serializer_1_tAE414B530B3E0769071794FC4AD82DBFCE8DE19F; // Sirenix.Serialization.Serializer`1<System.Single> struct Serializer_1_t499D78B9DD9AC6B7283CF83AC1B3D9330C66DE83; // Sirenix.Serialization.Serializer`1<System.String> struct Serializer_1_tF81CA24ECBC43ED40CB4D65ED46CB4432BD882D5; // Sirenix.Serialization.Serializer`1<System.UInt16> struct Serializer_1_tB0717BBCE09985638B64CCF555B4ABF9D1EB63E9; // Sirenix.Serialization.Serializer`1<System.UInt32> struct Serializer_1_t1C25A01A2FFA085904188AFA499F9F8F553DE25F; // Sirenix.Serialization.Serializer`1<System.UInt64> struct Serializer_1_t6F842F74A34468D4D1E363B9E095A2136CBCFCBD; // Sirenix.Serialization.Serializer`1<System.UIntPtr> struct Serializer_1_t24F8BE1C52CD9405DFDF6876DF7F3D668286A27F; // Sirenix.Serialization.SingleSerializer struct SingleSerializer_t4E9F15C6707B09B4643053562D14B6D84F035F4D; // Sirenix.Serialization.StringSerializer struct StringSerializer_t02226473DA6D1A109481D3FA85F87CCB2F2FE7AD; // Sirenix.Serialization.TimeSpanFormatter struct TimeSpanFormatter_t5D3A28FD3888319F47D5F1BF0B4B50B127041F3D; // Sirenix.Serialization.TwoWaySerializationBinder struct TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4; // Sirenix.Serialization.TypeFormatter struct TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39; // Sirenix.Serialization.TypeFormatterLocator struct TypeFormatterLocator_t14B1D1D4867D6C9E29E1B57EA7060EA77EB0C25A; // Sirenix.Serialization.UInt16Serializer struct UInt16Serializer_tB03F9299101183DF42C9BA9B5C251EB7E433E66E; // Sirenix.Serialization.UInt32Serializer struct UInt32Serializer_tCA35508AF0D7C5164C5E7C0DB1FF8874297BA826; // Sirenix.Serialization.UInt64Serializer struct UInt64Serializer_t046296E5E31B549A8704B8F86A7ACD06EAB25209; // Sirenix.Serialization.UIntPtrSerializer struct UIntPtrSerializer_t570AAD1348E8C0F586B9B74E796867581B2334EE; // Sirenix.Serialization.UnityReferenceResolver struct UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663; // Sirenix.Serialization.UnitySerializationUtility/<>c struct U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32; // Sirenix.Serialization.UnitySerializationUtility/<>c__DisplayClass35_0 struct U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE; // Sirenix.Serialization.UnitySerializationUtility/<>c__DisplayClass36_0 struct U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.BinaryDataReader> struct Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.BinaryDataWriter> struct Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.CachedMemoryStream> struct Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.DeserializationContext> struct Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.JsonDataReader> struct Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.JsonDataWriter> struct Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.SerializationContext> struct Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.UnityReferenceResolver> struct Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B; // Sirenix.Serialization.Utilities.Cache`1<System.Object> struct Cache_1_t5B091A69EC40DE216B6DA93BCC7104A039D17FBD; // Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Object,System.Object,System.Object> struct DoubleLookupDictionary_3_tA9E93C3A4311BFF4918CFA8BB13F6D4E683B5433; // Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Delegate> struct DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012; // Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Func`2<System.Object,System.Object>> struct DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4; // Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass11_0 struct U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733; // Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass12_0 struct U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4; // Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass13_0 struct U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E; // Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass21_0 struct U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6; // Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass3_0 struct U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784; // Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass5_0 struct U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12; // Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass8_0 struct U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614; // Sirenix.Serialization.Utilities.FastTypeComparer struct FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389; // Sirenix.Serialization.Utilities.ICache struct ICache_tBDCB67E358355A1D7E139EEF788B57FB4C1CF7DA; // Sirenix.Serialization.Utilities.ImmutableList struct ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE; // Sirenix.Serialization.Utilities.ImmutableList/<System-Collections-Generic-IEnumerable<System-Object>-GetEnumerator>d__25 struct U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480; // Sirenix.Serialization.Utilities.MemberAliasFieldInfo struct MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8; // Sirenix.Serialization.Utilities.MemberAliasMethodInfo struct MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466; // Sirenix.Serialization.Utilities.MemberAliasPropertyInfo struct MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F; // Sirenix.Serialization.Utilities.TypeExtensions/<>c__DisplayClass29_0 struct U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5; // Sirenix.Serialization.Utilities.TypeExtensions/<>c__DisplayClass45_0 struct U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832; // Sirenix.Serialization.Utilities.TypeExtensions/<>c__DisplayClass46_0 struct U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B; // Sirenix.Serialization.Utilities.TypeExtensions/<GetAllMembers>d__47 struct U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB; // Sirenix.Serialization.Utilities.TypeExtensions/<GetAllMembers>d__48 struct U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C; // Sirenix.Serialization.Utilities.TypeExtensions/<GetBaseClasses>d__53 struct U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F; // Sirenix.Serialization.Utilities.WeakValueGetter struct WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE; // Sirenix.Serialization.Utilities.WeakValueSetter struct WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF; // Sirenix.Utilities.GlobalConfigAttribute struct GlobalConfigAttribute_t7C3DA12779B99DB512050CF78ECC24A65B52B18B; // System.Action struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579; // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0; // System.Action`2<System.Object,System.Boolean> struct Action_2_t429E4750D84EBAC7EB494EB565EE0C8E1177C576; // System.Action`2<System.Object,System.Byte> struct Action_2_tDE24AA7AD021445D4C97C227CA75380D10DF8CAA; // System.Action`2<System.Object,System.Char> struct Action_2_tCDE3591D31EFA1B91AE14B02EC1EF00BE0627FD5; // System.Action`2<System.Object,System.Decimal> struct Action_2_tAA947688E4B8C13E17B10508BB466B25F959C2A7; // System.Action`2<System.Object,System.Double> struct Action_2_tF81CEB0E6E3AE73C7BE8F7E17FAF7A935613552B; // System.Action`2<System.Object,System.Guid> struct Action_2_t2A8EE6DEB6622F44A18C3E1ED5B00F13E88CEA72; // System.Action`2<System.Object,System.Int16> struct Action_2_tBC18C6FB76D9182033B6E2B8DE3C3D53EABB03CF; // System.Action`2<System.Object,System.Int32> struct Action_2_tFAC55F49A294F481F61CA285615BBDB6E4087C34; // System.Action`2<System.Object,System.Int64> struct Action_2_tE9FDD633C37649E0D301A9FED00C8011D9F9B186; // System.Action`2<System.Object,System.SByte> struct Action_2_t9DB31785CD0EB61AD14C2C59C73B79549CD1B35A; // System.Action`2<System.Object,System.Single> struct Action_2_t2C0D3AF1B268249B7EB63829B5CF369B86BDAA74; // System.Action`2<System.Object,System.UInt16> struct Action_2_t10C968BA3005F98FEE51E5486AADE0A2833FAFE9; // System.Action`2<System.Object,System.UInt32> struct Action_2_tA993E11F68B49F6503DE96F9933A510F811AFC13; // System.Action`2<System.Object,System.UInt64> struct Action_2_t18432FEF0355440B456F9D1DF25E8D2B058F267D; // System.Action`2<System.String,System.Boolean> struct Action_2_tA4D387C88A3C439A4931A264E2DEFEC33886F455; // System.Action`2<System.String,System.Byte> struct Action_2_tC7C745CBFBB7BB441C7BCA9701E7E9DD6294A0FF; // System.Action`2<System.String,System.Char> struct Action_2_t7A81E682590B81DD40F667542176AA02DCAFA1E9; // System.Action`2<System.String,System.Decimal> struct Action_2_t7674A6DB22EF71B11822201850D25105DE66987D; // System.Action`2<System.String,System.Double> struct Action_2_t323013173C7106CFC5254A38ABC5D91D7535BD20; // System.Action`2<System.String,System.Guid> struct Action_2_t50900BA30DEE837C385216BCF44E28E7C7BB95C8; // System.Action`2<System.String,System.Int16> struct Action_2_t601D5C86A591692555079344CCB7898C03C50005; // System.Action`2<System.String,System.Int32> struct Action_2_tDC912041941E8778D68BAE31B6E7CE869D420A59; // System.Action`2<System.String,System.Int64> struct Action_2_t1C5018F55BC56EF9A077CA15281BD36D2672B5ED; // System.Action`2<System.String,System.SByte> struct Action_2_t5F075F0477DFF381250D578CFC9566C37B685087; // System.Action`2<System.String,System.Single> struct Action_2_tA44A311C6894DF2F28013A46BDCE66A5B02D20AF; // System.Action`2<System.String,System.UInt16> struct Action_2_tA822F465A415381AE24537CFAA66F9939772731E; // System.Action`2<System.String,System.UInt32> struct Action_2_tC9CC006F43344C8AE24F6EDBDE52190BF3592420; // System.Action`2<System.String,System.UInt64> struct Action_2_t70253CD680198292E5DF471861B3D5822F8F33BE; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74; // System.Attribute[] struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.Dictionary`2/Entry<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>>[] struct EntryU5BU5D_tDD32B44C5E11DE3A0F90CDDBDFB9B6A0420E8439; // System.Collections.Generic.Dictionary`2/Entry<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>[] struct EntryU5BU5D_tC82F9232C756283727F37BC2E9069ED6C928F4D2; // System.Collections.Generic.Dictionary`2/Entry<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter>[] struct EntryU5BU5D_t21540184F40BFB92DC37D626D13D66157E33B709; // System.Collections.Generic.Dictionary`2/Entry<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter>[] struct EntryU5BU5D_t7538D1AA396D7789AF81D055A2B0451957AEDF7B; // System.Collections.Generic.Dictionary`2/Entry<System.Reflection.MemberInfo,System.Boolean>[] struct EntryU5BU5D_t89B280136C66BA77F03833EDC5AC5E80FF958E58; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.Reflection.MemberInfo>[] struct EntryU5BU5D_t704B1B3BB80A6E50335E01B03B0D2E810E90E6D5; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[] struct EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C; // System.Collections.Generic.Dictionary`2/Entry<System.Type,Sirenix.Serialization.Serializer>[] struct EntryU5BU5D_tEE1DF6D2C6057F9C0BB389A06B2009C0617EDC57; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Boolean>[] struct EntryU5BU5D_t43DF18B5CCCBF121F9271686E64FE56F00C002D6; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Delegate>>[] struct EntryU5BU5D_tE61A6353F92D5596707FC2D6B710412A482B741A; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>>[] struct EntryU5BU5D_t6168558EA4441D34622CB79F30AB3A8DD33A4A3A; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Collections.Generic.HashSet`1<System.Type>>[] struct EntryU5BU5D_t2DF17F95ACBFB7967C984CF917FD3DCAFA81F82F; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Delegate>[] struct EntryU5BU5D_t60815C5143CE2309306B23DA2F8A1F1388277844; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.String>[] struct EntryU5BU5D_t8FD09C484A277397E48AE2F41F262989CFF0C4C0; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Type>[] struct EntryU5BU5D_t2690A8BF41FCD129CC7892733318D6FF81B0BA76; // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Object,System.Int32>[] struct EntryU5BU5D_tA97040F40D5D7332826828EACFDA328B115F3CB4; // System.Collections.Generic.Dictionary`2/KeyCollection<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>> struct KeyCollection_tE3902439AD2E48CCBCCF182F6B04799815F404CA; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult> struct KeyCollection_t6C4E827DC9C06766592956CA1816D1CBF516D2DF; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter> struct KeyCollection_t6B0B0E9A4D75C9E8E9DD8FB872620B9F84D519E9; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter> struct KeyCollection_t40D73C55BAF94CD7A52F4038E5D0EF8CA3D28F63; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Reflection.MemberInfo,System.Boolean> struct KeyCollection_t49BA8AA25AD5F0AD391E8AB005DEA9A90F858CB9; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Reflection.MemberInfo> struct KeyCollection_t4F580704A19BB1A25AA1D4DC8D90A9904A9B5362; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String> struct KeyCollection_tC73654392B284B89334464107B696C9BD89776D9; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,Sirenix.Serialization.Serializer> struct KeyCollection_tFF29EF74520497B6CB78FC6278E8C855145A6D35; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Boolean> struct KeyCollection_t8961095D917B2B7794D22F6E914EE112F84B4E2B; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Delegate>> struct KeyCollection_tA20C8A78EDA1181B7E4B7786CF73E4A985E20F7F; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>> struct KeyCollection_t73AAE46E4B376D1F1115864A5E0A48A6A5119CDC; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Collections.Generic.HashSet`1<System.Type>> struct KeyCollection_tFB40EC389F72F702AF4D37D0DAB6365144696994; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Delegate> struct KeyCollection_t6155247D2D9F2D0631C418E84047527D3BD51CF2; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.String> struct KeyCollection_t2AA3595B98EF828F42FEE57CCD2966408A3EA9D1; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Type> struct KeyCollection_tE303E6D0331DB2A00B145030FA0FCB9A5CF05742; // System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.Object,System.Int32> struct KeyCollection_tA0B2EED2E4A16B189B2D9B988CC700727850950E; // System.Collections.Generic.Dictionary`2/ValueCollection<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>> struct ValueCollection_tC00093F68962BC5B79FE19680F13FD873EA85CD1; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult> struct ValueCollection_t560EA0377F47C8DCEA86C9AABA99D957FACACB93; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter> struct ValueCollection_t8FC9ECD52DB0FD5A8F4ECBFB855F1408DFC5F0AD; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter> struct ValueCollection_tEB6686E15960C38AE60043330D5B60560381076D; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Reflection.MemberInfo,System.Boolean> struct ValueCollection_t23D2C0BD766814409C3232D041E75F665F9863AB; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Reflection.MemberInfo> struct ValueCollection_tB68360699A4545D7A922E9AD1767C758DAE7ACE9; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String> struct ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,Sirenix.Serialization.Serializer> struct ValueCollection_t790232E0AE59FCC00556B781C7F77AB275CD2179; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Boolean> struct ValueCollection_t45B7C7DF84449FAC70200B837A1901A73FE87BE6; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Delegate>> struct ValueCollection_t2E719AD65D1B0D728352023E5C80B167AAEF5893; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>> struct ValueCollection_t788B7F54157F3C4B25DB09F53C1F8D1C71E2DB2B; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Collections.Generic.HashSet`1<System.Type>> struct ValueCollection_tC91E1F2D4115F3AD401DC2F363CEFC0CF718D36E; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Delegate> struct ValueCollection_t8DF2B19523CC28FC23B18AEC67237D3FAE3A62BD; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.String> struct ValueCollection_tC0073740DB49A62E9B86F3C3252DB5F0ACA8EE05; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Type> struct ValueCollection_t962951F6313574EF794D4A94438AC59053CD24AB; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.Object,System.Int32> struct ValueCollection_tA1DC78FFA99E0D5503BAED8731C8AB40B145080D; // System.Collections.Generic.Dictionary`2<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>> struct Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884; // System.Collections.Generic.Dictionary`2<System.Int32,System.Type> struct Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180; // System.Collections.Generic.Dictionary`2<System.Object,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult> struct Dictionary_2_tA9C63D204BC82DC6FB70075963C6BE3F3B7A05DC; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t2C8E1AAACF23306CF00CADFFC35DB50456AEBC51; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult> struct Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter> struct Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter> struct Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,System.Boolean> struct Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25; // System.Collections.Generic.Dictionary`2<System.String,System.Reflection.Assembly> struct Dictionary_2_tE95E06D73BE9F659DABDDDFFD6C2FDD528214175; // System.Collections.Generic.Dictionary`2<System.String,System.Reflection.MemberInfo> struct Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D; // System.Collections.Generic.Dictionary`2<System.String,System.String> struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC; // System.Collections.Generic.Dictionary`2<System.String,System.Type> struct Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A; // System.Collections.Generic.Dictionary`2<System.Type,Sirenix.Serialization.Serializer> struct Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60; // System.Collections.Generic.Dictionary`2<System.Type,System.Action`2<Sirenix.Serialization.BinaryDataWriter,System.Object>> struct Dictionary_2_tF4F3D8CB601FEAF580EC61700CDB5247E48E3E51; // System.Collections.Generic.Dictionary`2<System.Type,System.Boolean> struct Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.HashSet`1<System.Type>> struct Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B; // System.Collections.Generic.Dictionary`2<System.Type,System.Delegate> struct Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028; // System.Collections.Generic.Dictionary`2<System.Type,System.Int32> struct Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F; // System.Collections.Generic.Dictionary`2<System.Type,System.String> struct Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9; // System.Collections.Generic.Dictionary`2<System.Type,System.Type> struct Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A; // System.Collections.Generic.Dictionary`2<UnityEngine.Object,System.Int32> struct Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A; // System.Collections.Generic.HashSet`1/Slot<System.String>[] struct SlotU5BU5D_t53602D6A0A2A8B3DB893B552E437E8C6321C5039; // System.Collections.Generic.HashSet`1/Slot<System.Type>[] struct SlotU5BU5D_t79DFABC9D18E9CFAAD627EF4F7C1937863FCF27C; // System.Collections.Generic.HashSet`1<System.Object> struct HashSet_1_t297CD7F944846107B388993164FCD9E317A338A3; // System.Collections.Generic.HashSet`1<System.String> struct HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E; // System.Collections.Generic.HashSet`1<System.Type> struct HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093; // System.Collections.Generic.IEnumerable`1<System.Attribute> struct IEnumerable_1_tC6942C84E53570B19ED5F380EC62D21BFB67444B; // System.Collections.Generic.IEnumerable`1<System.Object> struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73; // System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo> struct IEnumerable_1_t7FD352CD84740777D0C2732F0F63D13741D636BB; // System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo> struct IEnumerable_1_tB6ECBCACB08DC25AD256ED59CCE6DDFA9B5DD0FC; // System.Collections.Generic.IEnumerable`1<System.Reflection.ParameterInfo> struct IEnumerable_1_tE20C5D62FCE8B90A457045AA28AD528E6F5A1401; // System.Collections.Generic.IEnumerable`1<System.Type> struct IEnumerable_1_tF9225691990EF9799D9F4B64E4063CA0D1DF03CA; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_tDDB69E91697CCB64C7993B651487CEEC287DB7E8; // System.Collections.Generic.IEnumerator`1<System.Reflection.MemberInfo> struct IEnumerator_1_t2D9BC58107505273DB7B0FC53358697221FA5831; // System.Collections.Generic.IEqualityComparer`1<Sirenix.Serialization.ISerializationPolicy> struct IEqualityComparer_1_tAA8254F86BE221A459309A3A9F8444535D97F762; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0; // System.Collections.Generic.IEqualityComparer`1<System.Reflection.MemberInfo> struct IEqualityComparer_1_t70D60CF6FCA1BEEFD04C615F1FF4CCD5DE066E91; // System.Collections.Generic.IEqualityComparer`1<System.String> struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9; // System.Collections.Generic.IEqualityComparer`1<System.Type> struct IEqualityComparer_1_t84A1E76CEF8A66F732C15925C1E1DBC7446DB3A4; // System.Collections.Generic.IEqualityComparer`1<UnityEngine.Object> struct IEqualityComparer_1_t5EB11BDFEFC7BC9D192813B4C107234154578171; // System.Collections.Generic.IList`1<System.Type> struct IList_1_tCA3E57B304A3039DD84683EFBC19B23C17BF4579; // System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification> struct List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617; // System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode> struct List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB; // System.Collections.Generic.List`1<System.AssemblyLoadEventArgs> struct List_1_t79E8FB666FA80FFEA560D5D50411A5BEDD48B4F8; // System.Collections.Generic.List`1<System.Object> struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D; // System.Collections.Generic.List`1<System.Reflection.Assembly> struct List_1_tADAFF4E53554D69184CDFB081796750626C37449; // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3; // System.Collections.Generic.List`1<System.Type> struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0; // System.Collections.Generic.List`1<UnityEngine.Object> struct List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2; // System.Collections.Generic.Stack`1<System.Object> struct Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8; // System.Collections.Generic.Stack`1<System.Type> struct Stack_1_t9C602025E061B1E201C46568468C7528A6231383; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.IEnumerator struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A; // System.Collections.IList struct IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA; // System.Comparison`1<Sirenix.Serialization.PrefabModification> struct Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5; // System.Comparison`1<System.Object> struct Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.Exception struct Exception_t; // System.ExecutionEngineException struct ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21; // System.Func`1<System.Boolean> struct Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1; // System.Func`1<System.Byte> struct Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED; // System.Func`1<System.Char> struct Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351; // System.Func`1<System.Decimal> struct Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB; // System.Func`1<System.Double> struct Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50; // System.Func`1<System.Guid> struct Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD; // System.Func`1<System.Int16> struct Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2; // System.Func`1<System.Int32> struct Func_1_t30631A63BE46FE93700939B764202D360449FE30; // System.Func`1<System.Int64> struct Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9; // System.Func`1<System.Object> struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386; // System.Func`1<System.SByte> struct Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA; // System.Func`1<System.Single> struct Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128; // System.Func`1<System.UInt16> struct Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038; // System.Func`1<System.UInt32> struct Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4; // System.Func`1<System.UInt64> struct Func_1_tDA414705876081E1199F312C952348ED3884F17E; // System.Func`2<System.Object,System.Boolean> struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC; // System.Func`2<System.Object,System.Object> struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4; // System.Func`2<System.Reflection.MemberInfo,System.Boolean> struct Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422; // System.Func`2<System.Reflection.MethodInfo,System.Boolean> struct Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700; // System.Func`3<System.Double,System.Double,System.Boolean> struct Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112; // System.Func`3<System.Single,System.Single,System.Boolean> struct Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5; // System.Func`3<UnityEngine.Quaternion,UnityEngine.Quaternion,System.Boolean> struct Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C; // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5; // System.Globalization.CodePageDataItem struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB; // System.Globalization.CompareInfo struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1; // System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8; // System.Globalization.TextInfo struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8; // System.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.IDisposable struct IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A; // System.IFormatProvider struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901; // System.IO.DirectoryInfo struct DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F; // System.IO.MemoryStream struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1; // System.NotImplementedException struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.Reflection.Assembly struct Assembly_t; // System.Reflection.Assembly/ResolveEventHolder struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E; // System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.ConstructorInfo struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF; // System.Reflection.EventInfo/AddEventAdapter struct AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B; // System.Reflection.FieldInfo struct FieldInfo_t; // System.Reflection.ICustomAttributeProvider struct ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MemberInfo[] struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.MethodInfo[] struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B; // System.Reflection.Module struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7; // System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.StrongNameKeyPair struct StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD; // System.Reflection.TypeFilter struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18; // System.Runtime.InteropServices.MarshalAsAttribute struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2; // System.String struct String_t; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.Text.DecoderFallback struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60; // System.Text.EncoderFallback struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4; // System.Text.StringBuilder struct StringBuilder_t; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048; // System.Threading.Tasks.Task`1<System.Int32> struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.Version struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0; // UnityEngine.Object[] struct ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9; IL2CPP_EXTERN_C RuntimeClass* Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t1C5018F55BC56EF9A077CA15281BD36D2672B5ED_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t323013173C7106CFC5254A38ABC5D91D7535BD20_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t50900BA30DEE837C385216BCF44E28E7C7BB95C8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t5F075F0477DFF381250D578CFC9566C37B685087_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t601D5C86A591692555079344CCB7898C03C50005_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t70253CD680198292E5DF471861B3D5822F8F33BE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t7674A6DB22EF71B11822201850D25105DE66987D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t7A81E682590B81DD40F667542176AA02DCAFA1E9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_tA44A311C6894DF2F28013A46BDCE66A5B02D20AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_tA4D387C88A3C439A4931A264E2DEFEC33886F455_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_tA822F465A415381AE24537CFAA66F9939772731E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_tC7C745CBFBB7BB441C7BCA9701E7E9DD6294A0FF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_tC9CC006F43344C8AE24F6EDBDE52190BF3592420_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_tDC912041941E8778D68BAE31B6E7CE869D420A59_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArchitectureInfo_t74FBE7FBA037762026C32109526DD0EC8BAD2F12_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultLoggers_t6E67C654C04340C3E7DE5982F9945E409B2CCD31_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatterServices_t5148825402E5545974E9C2BAC017D843551A880E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatterUtilities_t57774B5EC22582F32EFABAB74510CF01808ABA90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t30631A63BE46FE93700939B764202D360449FE30_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tDA414705876081E1199F312C952348ED3884F17E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICache_tBDCB67E358355A1D7E139EEF788B57FB4C1CF7DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tB48ABEDDBCFC95CF586057A60B65E25D630F108C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tB6ECBCACB08DC25AD256ED59CCE6DDFA9B5DD0FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t2937F0DC3A50683F70456A2E57B37AEB5AFCC3CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_1_tCA3E57B304A3039DD84683EFBC19B23C17BF4579_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOverridesSerializationFormat_tD8CDA40ED353491C31DA82DF6243EBB3B04A65EC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOverridesSerializationPolicy_t51B99C668B49C41702682D47D94B4BA22DA0BBE9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ISerializationPolicy_t0EC70AB63FD4875F21660481646E6267EA50C6CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ISupportsPrefabSerialization_t60C402CD1DF48262E4E7DAF9EE66A77C13AEE8DB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MethodBase_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ProperBitConverter_t43E1694607182227A44751CA372E98E3A304302E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_1_t9C602025E061B1E201C46568468C7528A6231383_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnityExtensions_tC5019430BD0E2D24ECAFA79F28A119009815F65D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnityVersion_tBCEF23F602ED1958A9B361B4BE4B7FC7318FF537_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral01BA7992F85DE477E8E630428EB5ED14769F9155; IL2CPP_EXTERN_C String_t* _stringLiteral06576556D1AD802F247CAD11AE748BE47B70CD9C; IL2CPP_EXTERN_C String_t* _stringLiteral09100586B001873A1EEC3ACEB2DB396DE287AA18; IL2CPP_EXTERN_C String_t* _stringLiteral091385BE99B45F459A231582D583EC9F3FA3D194; IL2CPP_EXTERN_C String_t* _stringLiteral09D7304DC0A40D12A940A73706708CBFAD2740DC; IL2CPP_EXTERN_C String_t* _stringLiteral0B1E95CFD9775191A7224D0A218AE79187E80C1D; IL2CPP_EXTERN_C String_t* _stringLiteral0DC37C14FE8E613E0C92BCFAA5935D4AA0FFA532; IL2CPP_EXTERN_C String_t* _stringLiteral0EFDFF5176AA3D23EC15D954E0A290E1B304D29C; IL2CPP_EXTERN_C String_t* _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9; IL2CPP_EXTERN_C String_t* _stringLiteral10597E310D0ABD6D81AA9DC58A6FB817B16709F5; IL2CPP_EXTERN_C String_t* _stringLiteral13B4B741279EEFA62903F5C03D524F958A96D3B7; IL2CPP_EXTERN_C String_t* _stringLiteral1405DF66CBE219B0BF6355BC3D60361A8376B6B4; IL2CPP_EXTERN_C String_t* _stringLiteral14AEAC748A2110E85F586D19ADBDC06EED3AE571; IL2CPP_EXTERN_C String_t* _stringLiteral14D0732DC7A1327AAD3CED727D5FED17F8263B48; IL2CPP_EXTERN_C String_t* _stringLiteral14F6057218654AEAB94086C523653451E72D4EEF; IL2CPP_EXTERN_C String_t* _stringLiteral15881B28DCD619AC5996159A0B062D0F97203959; IL2CPP_EXTERN_C String_t* _stringLiteral1615307CC4523F183E777DF67F168C86908E8007; IL2CPP_EXTERN_C String_t* _stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01; IL2CPP_EXTERN_C String_t* _stringLiteral181882FEA73764EC5B9A7EE9687EE3BB23C8B3ED; IL2CPP_EXTERN_C String_t* _stringLiteral1825416341A4674513A44A3F9965D8C77840CDB9; IL2CPP_EXTERN_C String_t* _stringLiteral1963EBC61173A88A0385135580DC1B7CD78E2C17; IL2CPP_EXTERN_C String_t* _stringLiteral1A1DCCB1D5BC0A7A3EFB09F20E038D03DC5D80A1; IL2CPP_EXTERN_C String_t* _stringLiteral1A95769F3608D94E2E3437861B788D1372B0D1CF; IL2CPP_EXTERN_C String_t* _stringLiteral1BCC59B324708CC856541522BD845C53A709D932; IL2CPP_EXTERN_C String_t* _stringLiteral1C550A44AFC9938A6DA37EDCAB5FE5D10573FD26; IL2CPP_EXTERN_C String_t* _stringLiteral1C561BAA0E2C78356232BAFFE0244F95FA4E6BC8; IL2CPP_EXTERN_C String_t* _stringLiteral1CBEA9C050ADC6EA7658B20B44D2428973B1C4E5; IL2CPP_EXTERN_C String_t* _stringLiteral1D3A2BE303E3EB4C7150D40B39B97A4BCAD5A999; IL2CPP_EXTERN_C String_t* _stringLiteral1DF7EC0E1A2171F6DDAD0DFFD10D771D5BCFBA22; IL2CPP_EXTERN_C String_t* _stringLiteral1E19EF4AFB2390E544B29512E9956A40E0BEF7BE; IL2CPP_EXTERN_C String_t* _stringLiteral1E54FF520C928430AD33BDF75860113BFCBC0D4F; IL2CPP_EXTERN_C String_t* _stringLiteral1ECDED7E63D79AD91F6AE6EB4050AA7E924E9EA1; IL2CPP_EXTERN_C String_t* _stringLiteral1F4A58B1B3D9A5E2A62A9AF9F315A9434189F2D3; IL2CPP_EXTERN_C String_t* _stringLiteral1FCC0EBF6FD35D9E02DF1007A23D8C6ED3B070E9; IL2CPP_EXTERN_C String_t* _stringLiteral2077CAAF1ADE2A5DD1F751B410D033667BDC3060; IL2CPP_EXTERN_C String_t* _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559; IL2CPP_EXTERN_C String_t* _stringLiteral2597F079BE5C91A1FD827E298163910FF12A932A; IL2CPP_EXTERN_C String_t* _stringLiteral26107C0E8EAF718AC5559FC9D47811FFEF65C611; IL2CPP_EXTERN_C String_t* _stringLiteral26DA866E342BABA6F74F48EC4B9D589CCA3CD644; IL2CPP_EXTERN_C String_t* _stringLiteral28B9913E0577DF72F2E64584BF9772628721F819; IL2CPP_EXTERN_C String_t* _stringLiteral28ED3A797DA3C48C309A4EF792147F3C56CFEC40; IL2CPP_EXTERN_C String_t* _stringLiteral2A5174FC38B29D258AB846616A9D4A5279931877; IL2CPP_EXTERN_C String_t* _stringLiteral2A5A0A203F16ADF5ED8660CDA9F5216B37D0ADDA; IL2CPP_EXTERN_C String_t* _stringLiteral2BE88CA4242C76E8253AC62474851065032D6833; IL2CPP_EXTERN_C String_t* _stringLiteral2C437769EE10019CCCFD2B3C7A064EAFC4B93A6C; IL2CPP_EXTERN_C String_t* _stringLiteral2D706216A4F5899028DA0C2B9AC0DD4043FEFA97; IL2CPP_EXTERN_C String_t* _stringLiteral2E27CF6311053B7AD8FEBAD592275AD7D6FE7A49; IL2CPP_EXTERN_C String_t* _stringLiteral30005B95D4FEF461EC791BD93EE4DF10144AF005; IL2CPP_EXTERN_C String_t* _stringLiteral30FADF3F3EC7DB67814A6D8D104F417CBE041F96; IL2CPP_EXTERN_C String_t* _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774; IL2CPP_EXTERN_C String_t* _stringLiteral3240AA0FE3CA15051680641A59E8D7B61C286B23; IL2CPP_EXTERN_C String_t* _stringLiteral33C6A155A5272A3F8B362DBB152921A5E1BEDF22; IL2CPP_EXTERN_C String_t* _stringLiteral37207C72F4F34E6FF1C0F3099500053F6762405B; IL2CPP_EXTERN_C String_t* _stringLiteral383A968075ADE7EF660A8610AD189B250C399099; IL2CPP_EXTERN_C String_t* _stringLiteral38665A40D3B3760E2A62498B8AB65539B8B7C5C3; IL2CPP_EXTERN_C String_t* _stringLiteral3956655E20AAD2E8C3BB867538FBB1CB040A975C; IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727; IL2CPP_EXTERN_C String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; IL2CPP_EXTERN_C String_t* _stringLiteral3D87F1C6DFCC7CA3E436685B256D2D6CF1B7E4BD; IL2CPP_EXTERN_C String_t* _stringLiteral3DE67C19DAD28BA3A92665447E371B320FB42C6D; IL2CPP_EXTERN_C String_t* _stringLiteral3DF63B7ACB0522DA685DAD5FE84B81FDD7B25264; IL2CPP_EXTERN_C String_t* _stringLiteral3EB416223E9E69E6BB8EE19793911AD1AD2027D8; IL2CPP_EXTERN_C String_t* _stringLiteral42CD4CC09795FD30CE71C875DA59944B9099B15F; IL2CPP_EXTERN_C String_t* _stringLiteral4374AAEE247FB237CE6C97D5C8D64BBE474D16DE; IL2CPP_EXTERN_C String_t* _stringLiteral439AC6327D9E85C6128D568E206F852F3E18A74C; IL2CPP_EXTERN_C String_t* _stringLiteral43EEF9A62ABB8B1E1654F8A890AAE054ABFFA82B; IL2CPP_EXTERN_C String_t* _stringLiteral44F902A538D4F79106B57038AA488CD1E61415D1; IL2CPP_EXTERN_C String_t* _stringLiteral4567FDAA1C4C47B31F79C3980E9B1D43EFB25944; IL2CPP_EXTERN_C String_t* _stringLiteral45932D6FA98F39C5CD3F08CD951D8DC70FC5F7DE; IL2CPP_EXTERN_C String_t* _stringLiteral45C3F53D35AAECA3EB2C7CE659B7F63EB6608009; IL2CPP_EXTERN_C String_t* _stringLiteral4664E2DEFF04A806C1771194AA96F071C8128E49; IL2CPP_EXTERN_C String_t* _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870; IL2CPP_EXTERN_C String_t* _stringLiteral46F8AB7C0CFF9DF7CD124852E26022A6BF89E315; IL2CPP_EXTERN_C String_t* _stringLiteral4916EC2F580C77A4D1B5E63910F76B907C733A98; IL2CPP_EXTERN_C String_t* _stringLiteral4BEA1C22EA5E1A083C155A651DA39B45AEEC1A89; IL2CPP_EXTERN_C String_t* _stringLiteral4D3E8614703EA126434CC11D59E3C7A70C66D624; IL2CPP_EXTERN_C String_t* _stringLiteral4DED6183E8606D87278B9342C752D397250EFF37; IL2CPP_EXTERN_C String_t* _stringLiteral4E1F8AB3A9960E7BF63E2FB89498BEB8084903C2; IL2CPP_EXTERN_C String_t* _stringLiteral4EC2E8C55A0712E26335A79A34AE8D9CA36A97B4; IL2CPP_EXTERN_C String_t* _stringLiteral4F2D205CC3250317317325A36DD312BD4EAC3D18; IL2CPP_EXTERN_C String_t* _stringLiteral4F9CAC8DBC4C67A388B8379DCC126C90C7C5E72A; IL2CPP_EXTERN_C String_t* _stringLiteral5006ED0248A019713B762563076292379DAF07B4; IL2CPP_EXTERN_C String_t* _stringLiteral5039D155A71C0A5F7A2B2654AD49CB7EE47A8980; IL2CPP_EXTERN_C String_t* _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F; IL2CPP_EXTERN_C String_t* _stringLiteral50D86FCBE2ABB9A65B07323B311FF2296682029D; IL2CPP_EXTERN_C String_t* _stringLiteral50E7CD0628F3504F9531B528A9F276997A437042; IL2CPP_EXTERN_C String_t* _stringLiteral51344E2445B5305E316973E98702BB0098AEF055; IL2CPP_EXTERN_C String_t* _stringLiteral51DCF177FE7988EB16D7D643F73C4D736BBE5AAF; IL2CPP_EXTERN_C String_t* _stringLiteral52934C29CA4A1A7572C6905BD6AB705A2C135973; IL2CPP_EXTERN_C String_t* _stringLiteral52E093F031914CA7E106736561510C494D385061; IL2CPP_EXTERN_C String_t* _stringLiteral55733506AD969D73AB32F988F687594C8A4C75F8; IL2CPP_EXTERN_C String_t* _stringLiteral56228F0A744C9DFF4526DFD989994CBB1DCA6A2D; IL2CPP_EXTERN_C String_t* _stringLiteral56B84F7A85820DB525688949FB625AD280C576A0; IL2CPP_EXTERN_C String_t* _stringLiteral56F36372E215E61D95FA761BFF21841F526AE1F4; IL2CPP_EXTERN_C String_t* _stringLiteral576A84A4AB20460B41D8166B856B7B36532C9ADA; IL2CPP_EXTERN_C String_t* _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185; IL2CPP_EXTERN_C String_t* _stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E; IL2CPP_EXTERN_C String_t* _stringLiteral5B12B97A4B6689B1A7EFEDD75929E9F7AF9DE63E; IL2CPP_EXTERN_C String_t* _stringLiteral5BAB61EB53176449E25C2C82F172B82CB13FFB9D; IL2CPP_EXTERN_C String_t* _stringLiteral5D2B90A4C4A5C2194F672A4120FFFF9F77E35D30; IL2CPP_EXTERN_C String_t* _stringLiteral5EA2D81A89E0CDC89BAF7CD1FF38CDFEFA33BA78; IL2CPP_EXTERN_C String_t* _stringLiteral5F0AA0A07864876F6AA0BA0AAC735E16C3D6438B; IL2CPP_EXTERN_C String_t* _stringLiteral5FFE533B830F08A0326348A9160AFAFC8ADA44DB; IL2CPP_EXTERN_C String_t* _stringLiteral61C9B2B17DB77A27841BBEEABFF923448B0F6388; IL2CPP_EXTERN_C String_t* _stringLiteral625761A6C90D399B66FEDC91A669C591C9B7ED9F; IL2CPP_EXTERN_C String_t* _stringLiteral63143B6F8007B98C53CA2149822777B3566F9241; IL2CPP_EXTERN_C String_t* _stringLiteral639158C4A75A341BED2D81FD5A91F7DA79BB3778; IL2CPP_EXTERN_C String_t* _stringLiteral6401B5D75D8795DDAC107B6C4081E4A24B23C49B; IL2CPP_EXTERN_C String_t* _stringLiteral6406510C31E0C9925733C7F21414BF6428333ED2; IL2CPP_EXTERN_C String_t* _stringLiteral6467BAA3B187373E3931422E2A8EF22F3E447D77; IL2CPP_EXTERN_C String_t* _stringLiteral648F8BB895C7096BA7F5B6AEC9BC6D4AF0C16DAB; IL2CPP_EXTERN_C String_t* _stringLiteral6517F89C46C3F0D6DB9CB009B8C7D1F98C371FA0; IL2CPP_EXTERN_C String_t* _stringLiteral656984D8EE8DFAC1B9C4CF08956E0C982D43FBCC; IL2CPP_EXTERN_C String_t* _stringLiteral656CADE1C9F2129E2FAE77F8869378102E5E1337; IL2CPP_EXTERN_C String_t* _stringLiteral65C10DC3549FE07424148A8A4790A3341ECBC253; IL2CPP_EXTERN_C String_t* _stringLiteral679FBC58F69EF78D527B6ECB09782F3FC8200DCD; IL2CPP_EXTERN_C String_t* _stringLiteral681D15313A93F5907C45ABC0E6A97EE59E13FABA; IL2CPP_EXTERN_C String_t* _stringLiteral685E80366130387CB75C055248326976D16FDF8D; IL2CPP_EXTERN_C String_t* _stringLiteral6882087222CB7E956F09BE22661B24ACC2E95E56; IL2CPP_EXTERN_C String_t* _stringLiteral69449F994D55805535B9E8FAB16F6C39934E9BA4; IL2CPP_EXTERN_C String_t* _stringLiteral69A99906F5A06EA1BDBFC02E6132D35DE781D3F1; IL2CPP_EXTERN_C String_t* _stringLiteral6BD96DD996BAB362F9BE35766B90320ABA61A05E; IL2CPP_EXTERN_C String_t* _stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9; IL2CPP_EXTERN_C String_t* _stringLiteral70B4BB2684C3F8969E2FE9E14B470906FD4CF3C6; IL2CPP_EXTERN_C String_t* _stringLiteral70B87F25C6C6D5AC0261895F65BF75DF7803B5FB; IL2CPP_EXTERN_C String_t* _stringLiteral71902792EE428D8159A3DD4FF444E8ECF6CFF10D; IL2CPP_EXTERN_C String_t* _stringLiteral71FAFC4E2FC1E47E234762A96B80512B6B5534C2; IL2CPP_EXTERN_C String_t* _stringLiteral72F2FC6FA993904AE8107B3E626AA62FCF4BEADA; IL2CPP_EXTERN_C String_t* _stringLiteral7505D64A54E061B7ACD54CCD58B49DC43500B635; IL2CPP_EXTERN_C String_t* _stringLiteral751612008F4675E3998558095D4D8D8D6EEE2C1D; IL2CPP_EXTERN_C String_t* _stringLiteral752BB3FF18055FEFCDDFCD87881FCE12273DDF47; IL2CPP_EXTERN_C String_t* _stringLiteral75E4AEDCE48FAF384F3535FFEB842E9A0718A25C; IL2CPP_EXTERN_C String_t* _stringLiteral769D8BC93F3AB194ECABFE9692722969DFC2549E; IL2CPP_EXTERN_C String_t* _stringLiteral7761887BBDBBCAFF220F60679C23B21B0AFEFC30; IL2CPP_EXTERN_C String_t* _stringLiteral77A2687FB6DCFC279EFAABE39A5C7F3D6B195FA5; IL2CPP_EXTERN_C String_t* _stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD; IL2CPP_EXTERN_C String_t* _stringLiteral783923E57BA5E8F1044632C31FD806EE24814BB5; IL2CPP_EXTERN_C String_t* _stringLiteral7876AFFE7C50E661250695B2FE096BE0EC80E737; IL2CPP_EXTERN_C String_t* _stringLiteral79828E2482531CB2B3CF26D4BFD0212066903B23; IL2CPP_EXTERN_C String_t* _stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C; IL2CPP_EXTERN_C String_t* _stringLiteral798A022DEF5A521DF6CF7D3A586F171F348CD11D; IL2CPP_EXTERN_C String_t* _stringLiteral7B320CFEDE5DFB62207FD258205DEC29002DED0B; IL2CPP_EXTERN_C String_t* _stringLiteral7BC555991DBAB41AA198FBD77899D49A277D4D6D; IL2CPP_EXTERN_C String_t* _stringLiteral7CB6EFB98BA5972A9B5090DC2E517FE14D12CB04; IL2CPP_EXTERN_C String_t* _stringLiteral7D057B436FD19437674057990E5F731C1F469951; IL2CPP_EXTERN_C String_t* _stringLiteral7DD9C2031B5DC44CB8167139B3D486935BAB35A0; IL2CPP_EXTERN_C String_t* _stringLiteral7E15BB5C01E7DD56499E37C634CF791D3A519AEE; IL2CPP_EXTERN_C String_t* _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD; IL2CPP_EXTERN_C String_t* _stringLiteral7F6AC00155118D39CB6AE7AB1093DDF53AD26B88; IL2CPP_EXTERN_C String_t* _stringLiteral81581597044514BF54D4F97266022FC991F3915E; IL2CPP_EXTERN_C String_t* _stringLiteral82786075324B71C370AF745CE2DFC58A4C31A9DB; IL2CPP_EXTERN_C String_t* _stringLiteral8497A104F96BB0AEEE19714934988FAC19477AC9; IL2CPP_EXTERN_C String_t* _stringLiteral84A6235784FCCED38AC73D40C3F97ED8FE185EF3; IL2CPP_EXTERN_C String_t* _stringLiteral84F8B552B515B3378688E6588D688C8BA82EB363; IL2CPP_EXTERN_C String_t* _stringLiteral85571E14BAE2842DCEBE5D7FD13DB2D8DDE777AD; IL2CPP_EXTERN_C String_t* _stringLiteral86744B473AEAEE7F2E67ECC1B5F25CBAD910B45E; IL2CPP_EXTERN_C String_t* _stringLiteral86CC58E4072965CB033566BC6DAD762C036A6947; IL2CPP_EXTERN_C String_t* _stringLiteral87EA099F7165B3E246DBC262308E639672018595; IL2CPP_EXTERN_C String_t* _stringLiteral88944D6BF661203152B0C7B98804A8F4B7F060DD; IL2CPP_EXTERN_C String_t* _stringLiteral8A2F0DBFFB4BAEC55961E6C2CA86DAF38FF6B1DE; IL2CPP_EXTERN_C String_t* _stringLiteral8A5413560FC9B67F0F39819A78764949F9F181CE; IL2CPP_EXTERN_C String_t* _stringLiteral8BDAC809EC6E895823B34F40236CA2C1CF3EDA27; IL2CPP_EXTERN_C String_t* _stringLiteral8C89893DF75EA62099F61D3475854B09F3F1FDFB; IL2CPP_EXTERN_C String_t* _stringLiteral8CA57CFDB3DD222F7F4BEF910ADE1A42ED24047C; IL2CPP_EXTERN_C String_t* _stringLiteral8CF1783FA99F62CA581F6FE8F3CD66B0F9AB9FC3; IL2CPP_EXTERN_C String_t* _stringLiteral8D0B0970628C4F47572136C2B0C19CE699D59C36; IL2CPP_EXTERN_C String_t* _stringLiteral8D767BF5B72373D12F0EFD4406677E9ED076F592; IL2CPP_EXTERN_C String_t* _stringLiteral8F01B293637F2084FCCC10E652BCDB985727ADA0; IL2CPP_EXTERN_C String_t* _stringLiteral8F4E3E3C24BAC71B4FFDF2BC0F73246D601766D4; IL2CPP_EXTERN_C String_t* _stringLiteral91D75EDEB06425673FCCB04F00870ADF88F4D93E; IL2CPP_EXTERN_C String_t* _stringLiteral92BD75EBD8FD2B0179172217B15350CC6D4002F0; IL2CPP_EXTERN_C String_t* _stringLiteral958F57F57D72A30F329EE5538F21B0257A49A46E; IL2CPP_EXTERN_C String_t* _stringLiteral964CAB4BB4A5111731B0C00DBB43F794698D8731; IL2CPP_EXTERN_C String_t* _stringLiteral973776CA0AE32EA889FC2291F84C4925F2285DDE; IL2CPP_EXTERN_C String_t* _stringLiteral97D170E1550EEE4AFC0AF065B78CDA302A97674C; IL2CPP_EXTERN_C String_t* _stringLiteral97E936AE1DC7765335401FB36B5404A86EF3EE14; IL2CPP_EXTERN_C String_t* _stringLiteral983F612AB464902133354FA4B0E3780DB315F78A; IL2CPP_EXTERN_C String_t* _stringLiteral98F7F5CC931CC2BED378AFA656D4BBF3FC74FCC2; IL2CPP_EXTERN_C String_t* _stringLiteral9A27718297218C3757C365D357D13F49D0FA3065; IL2CPP_EXTERN_C String_t* _stringLiteral9B30C1BF65712BDA061818365704D06F3871C202; IL2CPP_EXTERN_C String_t* _stringLiteral9C33613FED7391F5ADB03ADCB74EEB30715294BA; IL2CPP_EXTERN_C String_t* _stringLiteral9EBAD64E5D2B9542779537FCE0354F34C099E7FF; IL2CPP_EXTERN_C String_t* _stringLiteral9F33A7C798AF6FD6ABB28049D9C1B3EDFA2FD24A; IL2CPP_EXTERN_C String_t* _stringLiteralA0F4EA7D91495DF92BBAC2E2149DFB850FE81396; IL2CPP_EXTERN_C String_t* _stringLiteralA21DCA76C64DA1C9A9E332AA96CAEDBBD553F7A8; IL2CPP_EXTERN_C String_t* _stringLiteralA35870ABFE36C5087C497BEA881BB345206835DF; IL2CPP_EXTERN_C String_t* _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B; IL2CPP_EXTERN_C String_t* _stringLiteralA381562AFA0E16C5548E829B2F1A659A8C2E7C11; IL2CPP_EXTERN_C String_t* _stringLiteralA45C2264B8CAB0F1E0637F6C44501C0F34F7E227; IL2CPP_EXTERN_C String_t* _stringLiteralA747FB9E1C414DF9A953EC3281BA1A3A2CB76077; IL2CPP_EXTERN_C String_t* _stringLiteralA75179FA33469FBAAD209EBEBD746B4E40921B4D; IL2CPP_EXTERN_C String_t* _stringLiteralA7D46B8B9686D5BA1426F1CA47E9D441E1326BF9; IL2CPP_EXTERN_C String_t* _stringLiteralA979EF10CC6F6A36DF6B8A323307EE3BB2E2DB9C; IL2CPP_EXTERN_C String_t* _stringLiteralAB13FA2FC1CFA72E78F32CD559FFE42651C8F763; IL2CPP_EXTERN_C String_t* _stringLiteralAC663947D3143D2C303F23FF24B02C747126D0E6; IL2CPP_EXTERN_C String_t* _stringLiteralAC987B3DED360E93359BF6A9730EC1DAA4B9C87E; IL2CPP_EXTERN_C String_t* _stringLiteralADC83B19E793491B1C6EA0FD8B46CD9F32E592FC; IL2CPP_EXTERN_C String_t* _stringLiteralAE050F5B7FB8D383D62139276081853B47E7A03E; IL2CPP_EXTERN_C String_t* _stringLiteralAEE40AF56D1DC6166A5A5DB109D9FCF3A65E9CDF; IL2CPP_EXTERN_C String_t* _stringLiteralAF10EF20DD9060BBEEAD0AFBC55381A66AF442EF; IL2CPP_EXTERN_C String_t* _stringLiteralAF1B4359CAC26EE2FEA3865D21B820D7A3532E1A; IL2CPP_EXTERN_C String_t* _stringLiteralAF29FBA53AB62346AA3210494ED26F4DED8635B1; IL2CPP_EXTERN_C String_t* _stringLiteralAFE9577A23508A3977D8B04CD23DF5D51BD7666B; IL2CPP_EXTERN_C String_t* _stringLiteralB08989ED8064747E023183953C843E68F9E99B96; IL2CPP_EXTERN_C String_t* _stringLiteralB1AAE7B93D753FBB11F88144D285DF2314548EA6; IL2CPP_EXTERN_C String_t* _stringLiteralB26B5234992836A760CDFDA9B55169871E7330E7; IL2CPP_EXTERN_C String_t* _stringLiteralB42F3F6F796FA3CFCB6B1B8D49C7BCCCC3A7164C; IL2CPP_EXTERN_C String_t* _stringLiteralB47F363E2B430C0647F14DEEA3ECED9B0EF300CE; IL2CPP_EXTERN_C String_t* _stringLiteralB51A60734DA64BE0E618BACBEA2865A8A7DCD669; IL2CPP_EXTERN_C String_t* _stringLiteralB57D3B44E84A0C5DDE49DD8FDF35A2B431967798; IL2CPP_EXTERN_C String_t* _stringLiteralB67C45015CE97B7B173BD1EB1017B21175679675; IL2CPP_EXTERN_C String_t* _stringLiteralB6A4C12DF9DFFF378209C158F29DAD6259D47276; IL2CPP_EXTERN_C String_t* _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C; IL2CPP_EXTERN_C String_t* _stringLiteralB7D571A9D6D855BDAC31EE4361D82131A9F2A06A; IL2CPP_EXTERN_C String_t* _stringLiteralB8146F1D9727A4D9EA8A44D91CDB630F09E6076A; IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6; IL2CPP_EXTERN_C String_t* _stringLiteralBA03045BA4E49817DF77BFC248796AA6FD04C288; IL2CPP_EXTERN_C String_t* _stringLiteralBA116CF06D94D1851DD437DF3914E487FD3FE2E2; IL2CPP_EXTERN_C String_t* _stringLiteralBD3027FA569EA15CA76D84DB21C67E2D514C1A5A; IL2CPP_EXTERN_C String_t* _stringLiteralBDB36BB22DEB169275B3094BA9005A29EEDDD195; IL2CPP_EXTERN_C String_t* _stringLiteralBE8DC55A45663FE086C5F00C8FA3D0DB9C116BA1; IL2CPP_EXTERN_C String_t* _stringLiteralBF1EE3119B17A03B304FFD2BBEDD11E450B1D13D; IL2CPP_EXTERN_C String_t* _stringLiteralC01BBDAEED34891D4444FE6A7112D16F1D546B81; IL2CPP_EXTERN_C String_t* _stringLiteralC086A605DCC2D39C6479DBE69F9E54C33A7A4B5B; IL2CPP_EXTERN_C String_t* _stringLiteralC1537762DCCF911FF5A317D9DA32DD9CA04D8C83; IL2CPP_EXTERN_C String_t* _stringLiteralC2543FFF3BFA6F144C2F06A7DE6CD10C0B650CAE; IL2CPP_EXTERN_C String_t* _stringLiteralC2A6B03F190DFB2B4AA91F8AF8D477A9BC3401DC; IL2CPP_EXTERN_C String_t* _stringLiteralC3EB4E60C9644835B81A166383345CC4F9558091; IL2CPP_EXTERN_C String_t* _stringLiteralC4DD3C8CDD8D7C95603DD67F1CD873D5F9148B29; IL2CPP_EXTERN_C String_t* _stringLiteralC55492616545B2F578FA96448F687ACD4F38D323; IL2CPP_EXTERN_C String_t* _stringLiteralC6A82388B3324E08FDE793C1A03DE948917D49F8; IL2CPP_EXTERN_C String_t* _stringLiteralC81006ABEE1828546A13529B40F9711CF9315B96; IL2CPP_EXTERN_C String_t* _stringLiteralCC93C3346B48884743A789A2B282B62578660CEF; IL2CPP_EXTERN_C String_t* _stringLiteralCD83D94FD8A8949897E035426383AA24FC65EB30; IL2CPP_EXTERN_C String_t* _stringLiteralCEBF154FA93CAA834296E0A53DAC12CF9BECDC42; IL2CPP_EXTERN_C String_t* _stringLiteralCEE47310E7A40661885DD10053B823AA6755CD29; IL2CPP_EXTERN_C String_t* _stringLiteralCF05649554FE2EA509B487742527937C04A28905; IL2CPP_EXTERN_C String_t* _stringLiteralCF60A752968ECE9220E66286B38230E6CA2B97F9; IL2CPP_EXTERN_C String_t* _stringLiteralCF6C4EE7957B6F4BE116A890E08871F57C051080; IL2CPP_EXTERN_C String_t* _stringLiteralCFB19E12599AB08B95C5D13A7B18A447E1160F81; IL2CPP_EXTERN_C String_t* _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9; IL2CPP_EXTERN_C String_t* _stringLiteralD118E5A3CC15B182D1286373A60C787E58D3166F; IL2CPP_EXTERN_C String_t* _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46; IL2CPP_EXTERN_C String_t* _stringLiteralD4B0C22995B3AF32D61339242291D8E7D19065D9; IL2CPP_EXTERN_C String_t* _stringLiteralD72F87A2D7A0F57C16C045F2ECB5F3710D8AB3FA; IL2CPP_EXTERN_C String_t* _stringLiteralD8CB3C57C846A58E9A9C6E1E961A85E845190A89; IL2CPP_EXTERN_C String_t* _stringLiteralD90EEACFED8F2EB55A26C0011B5DB8E58D94AD2C; IL2CPP_EXTERN_C String_t* _stringLiteralD98411EB70B07EDF83E993EE9DBA073BEE0DDDEB; IL2CPP_EXTERN_C String_t* _stringLiteralDA0A07A1A78EC20BD06F06DBAFE250B09F4503CB; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5; IL2CPP_EXTERN_C String_t* _stringLiteralDDBAB9739BA0CDFD2DD930A782A1A30A53738A83; IL2CPP_EXTERN_C String_t* _stringLiteralDE2B18EE7911E29B8BD20595F289062E8150B0D3; IL2CPP_EXTERN_C String_t* _stringLiteralDEF7B856937909FA62B4005E8141F46A676421DB; IL2CPP_EXTERN_C String_t* _stringLiteralDF211CCDD94A63E0BCB9E6AE427A249484A49D60; IL2CPP_EXTERN_C String_t* _stringLiteralDFB660BB10289E54C5F9C5C9663650773F680C02; IL2CPP_EXTERN_C String_t* _stringLiteralDFD51F1582E947E73EA538109E860B58D986B653; IL2CPP_EXTERN_C String_t* _stringLiteralDFE3FC31D8AB9AE3F459C96F22A4CDE251BC4CA1; IL2CPP_EXTERN_C String_t* _stringLiteralE0C7141204ADB4B0C13FEF5B9BD5EB53871DA3BB; IL2CPP_EXTERN_C String_t* _stringLiteralE117797422D35CE52F036963C7E9603E9955B5C7; IL2CPP_EXTERN_C String_t* _stringLiteralE189167A5B2CDF8E97AED41CAD97AF9D09349D04; IL2CPP_EXTERN_C String_t* _stringLiteralE270E4186E13A18116069DF73C5A9D34A8EF1194; IL2CPP_EXTERN_C String_t* _stringLiteralE298B0EC36231C1B64B22D748FE01A717E94566F; IL2CPP_EXTERN_C String_t* _stringLiteralE338E8E3D1DDEB83DF4ACE416A87E89ED797CD19; IL2CPP_EXTERN_C String_t* _stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A; IL2CPP_EXTERN_C String_t* _stringLiteralE5B4E786E382D03C28E9EDFAB2D8149378AE69DF; IL2CPP_EXTERN_C String_t* _stringLiteralE60350ECE81E5E478A18558CE97B120A79A08F79; IL2CPP_EXTERN_C String_t* _stringLiteralE6CD74331AD7D89119B29CDA1646665AD0D7AC6A; IL2CPP_EXTERN_C String_t* _stringLiteralE7064F0B80F61DBC65915311032D27BAA569AE2A; IL2CPP_EXTERN_C String_t* _stringLiteralE71E7BC3FE9E9F3C39E46B53FFFF0C83D9CC9A36; IL2CPP_EXTERN_C String_t* _stringLiteralE80721793C24AE14EDFCA9B26AD406A9815CD3FF; IL2CPP_EXTERN_C String_t* _stringLiteralE95F262BED1E2FE52C34343F29107BC825DE715F; IL2CPP_EXTERN_C String_t* _stringLiteralE9CEDE9B80EA3ABD89C755F1117337D429162C86; IL2CPP_EXTERN_C String_t* _stringLiteralEA79A75596A62A7534FCFBB9D7B332C10030C272; IL2CPP_EXTERN_C String_t* _stringLiteralEADCD9BD2A09C75AEF04954E6799E50278EE124A; IL2CPP_EXTERN_C String_t* _stringLiteralEB562E52244B5BA025A128B0209C45A9AFB51CCF; IL2CPP_EXTERN_C String_t* _stringLiteralEBABC9B6E6F06B857E70FF9361A38C584DAFDB10; IL2CPP_EXTERN_C String_t* _stringLiteralEC1F172C61B5106ECFAA8A91AEADFB500F792444; IL2CPP_EXTERN_C String_t* _stringLiteralEC3EC33367AE71405E35BD1B8B9135D59E173C1A; IL2CPP_EXTERN_C String_t* _stringLiteralECB252044B5EA0F679EE78EC1A12904739E2904D; IL2CPP_EXTERN_C String_t* _stringLiteralEE6B1F617DD5320B23FBED018C38AC092DB5E40A; IL2CPP_EXTERN_C String_t* _stringLiteralEEE0BBBA4FF92ADBEB038A77DF0466D660F15716; IL2CPP_EXTERN_C String_t* _stringLiteralEEEB710BA70C6DEE62FDD7CB9CF079C93CA0E6BA; IL2CPP_EXTERN_C String_t* _stringLiteralF0CB7F34EA69F3D9331B4A6C6E3C10852F6E417E; IL2CPP_EXTERN_C String_t* _stringLiteralF1F1425B65E5770C87BE308DD6BFEE4B3FA1B113; IL2CPP_EXTERN_C String_t* _stringLiteralF2EF4B446549B0A441D4658CE65545756F63EF66; IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; IL2CPP_EXTERN_C String_t* _stringLiteralF34DF34263C8837B42A927F9F2F3EFCD97D70ABC; IL2CPP_EXTERN_C String_t* _stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE; IL2CPP_EXTERN_C String_t* _stringLiteralF4800DF8D1BC61FC95220645938CD65532A64067; IL2CPP_EXTERN_C String_t* _stringLiteralF4C9A69F715C3C60AA2FC15795B3834D2DC51B9D; IL2CPP_EXTERN_C String_t* _stringLiteralF7349998A0400885BAADF897DC9511CA6712211F; IL2CPP_EXTERN_C String_t* _stringLiteralF734DF88E92F49B672EE53D7480E1343D0753F4D; IL2CPP_EXTERN_C String_t* _stringLiteralF793522355B5EF88DA6D4D202946D3F8289DC953; IL2CPP_EXTERN_C String_t* _stringLiteralF8782D2DD7FF852FD93E8B6A61DBEA0FD086BCF7; IL2CPP_EXTERN_C String_t* _stringLiteralF8A56BEA94B606AE0E18DCB944E942C113065F9C; IL2CPP_EXTERN_C String_t* _stringLiteralF8EB61114A6016EF9921BF0E4FAD687FD6BD5611; IL2CPP_EXTERN_C String_t* _stringLiteralFAB98F3ACA7BFAB30C7C67A5960A06E6841287DF; IL2CPP_EXTERN_C String_t* _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA; IL2CPP_EXTERN_C String_t* _stringLiteralFC29CFA083F82DAC88746A4978C292584F78282A; IL2CPP_EXTERN_C String_t* _stringLiteralFC7C12157CEB3E4DB684366DCB08A05AE335D789; IL2CPP_EXTERN_C String_t* _stringLiteralFCDBC880C3D7454F7AED7A672C34EBC2395648A2; IL2CPP_EXTERN_C String_t* _stringLiteralFD7B034E09B752C24942CD9B0B20C29DB2DC3E90; IL2CPP_EXTERN_C String_t* _stringLiteralFE28F10D2C6DAB4E315F2659ADAA6A4F16B5E4B8; IL2CPP_EXTERN_C String_t* _stringLiteralFE96DD39756AC41B74283A9292652D366D73931F; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m02A9CB843BE610FB51DC156BFBEA8C7F0FC3E23F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m307BCB3F5B42CD72C66B9111DCA681B97AB55DFB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m3ABB71CACEB89ADA73DB4A7223AC1F9C4EF7D432_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m3E3F11621ABB0A28B97496525F9F14CAA26132BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m3E84BC987DEFD9F0241B4C2A39988D27815FF748_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m485C64E20D0C493D917DFF28017F0CFBAC49ABDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m4B017524605FA5BD00B9D4B1C75C68A4F0CDD737_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m5750437CF9F76A7E08B8AE8CFFF7EAACE26061B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m8A2A4A5281F15C044AA00C87B29024C6F2174DBC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m8D1A299D9396006EC283BDF038E14459010ACAE6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m9AE4BB6CF48832A45FEB04472260C5FFA11C0996_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_mAF6AD2F626A6909760BD159A557A012E28CB1B4C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_mD3AFF1FAC6D7829B6416F9103FF21A71A650F799_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_mE2A3B1B42E56F3246BBEEFA3DBB4F3892B258F12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Claim_m3D0E86AFDAA6216440B4E93EEA91DF34AD561A20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Claim_m79A458A3EE3C95261A515CF4AD83C1E3E141150C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Claim_mC72FC018F570A496E42E86BB6F17A33950A01B95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Claim_mCD18E4724791F8E40BA81D9A5EF7A54D0C2B1EE3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Claim_mF29D323401A864DEAAD720ACA649217D1A1EA8AA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_Release_m6D40E6F13BB3ACD17963075A0DC874C767C51073_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_m53393A19DD697FC82705BAEECC10761C9F81298B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m19CAF33F97051C271ACC0C28B0E5027503A679DE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m2CDD187E7B3A7E8374F937954271C361239B6EF8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m3C1DA0F9D32CBB2127382DFE205FDBF7033190A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m69346B75A05C4F037E46A7FC561664C05076A1F6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m79D000052E64F3BC63201DBA89FDC4EFBDABBD31_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m82CB5A3B2A2462CB9DADD1FF68998456B97C352D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mB2933567D2EB66EB398A5E90DD040A1CF811619C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mA1B583DFC0F4843E7B762692CCCFB528483B3536_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mC5E75CA7B533540550384F1C9301ED4AAA5118AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mAA0A67CCB67E2C3FFE791D6E134D8EC668D7A21C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m06979EEE8C572D71377242FAB11C8360789C7989_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m53EFB7FFCD352EFCE3505FD4D9E28F6531F5C220_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m5C5000C6F7B6E40AEE2D5016A1A63A81867B1A46_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m62BFB3C4A7C53656A6785FE2A58590A4D95F6DA8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m92B5433B12E33D934253888A759D03A128B0AA53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m93A1AFAB83E35028A2EFE8D5C3E11134520C8366_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mB655745D2AC767ACC35EB2E031D49223B7CC5F18_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mC4902336A15D84FF53ED4109CFFD94AC310C27F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mD0F62412FCE8ABF5DE647AE606ACA58FFA64F3A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mEDE516FE02CCA6EC3F7444B5B5E578AACA825D72_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m3024055D140B14F001C4EA8F5B5B94D1A35E0B0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m38A63BECCB4DC6D730705C1A382315575304AD9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m3FF81FB3B0B21B72CCFD9011E5C84E0B53EC9F3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m4CB96E5F6DC15DFF4F62D9993F887C3992666E7A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m69B50D57FB083DE555DB604D6E24A36B4299E1B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m8451467B9EF17884648FE0F6DCD6C80CF453D96C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m8D53D43FD4DD0DE79FCAA8F8005461D9287B8D8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m98408F3F5238E6982CD965ABF86332FD0CE1A8A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mB6AFE754A7F1656C62987D53EA47001351F9D338_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mEC7798EDEB6B0C29A4C35F33E1BD17AE3643ED17_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mF539C5E9ECC924AB2CC96934DA97A0040CB6797A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mCDBF8C6612DD8269CA45EFC0D29A21FF99D2C2B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mD99BF3FEC9CDF301ED7A378286C3625B00AB733A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m178FFDE1B4673EB24E148B45B9D8A9AE5B790862_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mC4D295EA58699C8CA7A51B70892241A42B14CA8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mF5967C0BA249106E1F885BBEAD84AF240C75BDE9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DoubleLookupDictionary_3_AddInner_m2DC55A5DB103DC35ECC4F9226E229082C886BE62_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DoubleLookupDictionary_3_TryGetInnerValue_m08711D3EC3B7A1DCB2489801CAF2DBEB4EF233AA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DoubleLookupDictionary_3__ctor_m0625F57E72586494BFEF9E97FEA61EB5B87F9565_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DoubleLookupDictionary_3__ctor_m079D886666C1D02F05C5FBC2DABD6FEFC45F9435_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmitUtilities_CreateStaticMethodCaller_mEB3DAA5008C13E0359EED2F7FFD64E670A51F18E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmitUtilities_CreateWeakInstanceMethodCaller_mBA468CE8098499C1E9BA0B847773DE4A887A8992_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmitUtilities_CreateWeakStaticFieldGetter_m66AA3F87FA36E5D292F8AAE0893A7B9735553463_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmitUtilities_CreateWeakStaticFieldSetter_m2D24A5B0298E8AF67BE9314DDF368CBB2A2875CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Concat_TisType_t_m17D4A9549608C664264D46663759AFA2800ECC0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Contains_TisType_t_mBDE1B1B6B7A069EDEA6F52FBFD461C6EA65D8E7B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_FirstOrDefault_TisMethodInfo_t_mE1F896EF6196D68677B86A786757DBD1F6961207_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Skip_TisParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_m37F2F55CF8BF64B161BED63A1EDB46CCF7D23E29_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mA493F45171E19BC621F3EABE9C319CD825F22C57_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisMethodInfo_t_mB467F5AA11251FFDBF7F99F1FAE889DBA72716C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_m6ADA4AA49CAFA0DACCB66DC6F4B0E50DBA181E04_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Where_TisMethodInfo_t_m9426DCAA38C5126A2543B240CB0E0D81F8A975C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m1448E78B4FDEB165B9D5A8A335A7648D75083F32_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m22906677CD9217D143B033D7F03C6D70EFF02D47_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m2F35DB4B2277558E38C3092BE5C01C2488DA9895_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m3CD473997F1E9AEB22801D3B85AE59CA10E9D46E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m479BA9DCBE3F496111BD05CC90CB1044C5FFD552_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m7DE4AA7F3E05D2B3BB91CF01177F6EADA4FEF767_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m8D661C0A7CCB815F851FD421663A9FDB0966EE67_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m9BF255981B0B3BE38430653EEAB3FD9D2C0FA9C9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_mA200BE8D0404113F78BF1F5DE23826D4FF3930D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_mBFAD3A42C5C2CA317218A9FDE7147363667E7EB2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_mD07D20787F169ADC3615B0C9E4B03184AAF469B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_mE16288D184D818DF2CFDD919E217023726FEC909_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_mEBD709A28A932E8C76D0E30A777C8A2CDAD4B44D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m4E1D198417EA6D3F91577C1A09385A0A6773E53C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_3__ctor_m03BDCECA8C6CFB050E93144E74956034D6D48099_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_3__ctor_m44C13A80CB499D78387085A1448F2174E010365A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_3__ctor_m7C8D11A8C323E3447117CD8858686399E3F71DAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GlobalConfig_1_LoadInstanceIfAssetExists_mA5D9BB752BCCAA4D8851EF77DCB5674019589542_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Clear_mF99B6395A097563394084CD017E28873027EC35F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_mC24456F12A19B3D01055678278492722A6988F98_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m99068A46E42F05504E434B1D6763629F4D94B87E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Add_mAF4B02C8D2E54C5142CDEE379DEE8CF394257821_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Clear_mE5B074C710502B470F83ED4A1B1AACC3165E1E0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Remove_m6F97D8E1FD12E1CFB382B0BA52FFAC8719D1D4F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_Insert_mC7327E67C295D63A4339A6968D40D4DE1E80D6EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_RemoveAt_m51322BEFD7F011BC18C4106F77910672E15CCCD3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_set_Item_m6B978B5E35F054074CF8F082377B7595A6A5BCB1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_IList_Add_mB6DBA9FBA554F10BE4D851F77DAE22221074815D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_IList_Clear_m4EEB90F0682E2A50899286887FA3CD33DC2A99D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_IList_Insert_m1409394749DC395949727FF10A2C6FA98E69BD0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_IList_RemoveAt_m261ED842BA366FF4CF4FA4A1529590664B72FB36_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_IList_Remove_mFDEFC94FCFB363D251AC1EBA11B257E670C2F6AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList_System_Collections_IList_set_Item_m1D4374C01F195CCEDFAEFB832BC3ADCD0257E6C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ImmutableList__ctor_m20EA015914F29221BB79B2F6D56DCB839E961820_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m63E0AE7BB9C07909BC9F257FD42A37FCB45F3E04_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m986F636DEAB8C4DF0C669D0F3FB8F91B79FBD4F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m323690E6AB15ABBB1CD3EFC1EB7DB14F9FD98C77_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mE03E1EE3070E1329665B09F85FFD2CEF41F29A9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5C02E82E29E6254584862269A18C923A5C7DD8D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mAF963F060FA1EBE3F85CB8BA18079FD42ACCC1C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mAFA74AC0EB11989ACA8AE7FE1EDA15C7AA61B807_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mA840B95ACBF14452864364DBAE0F48F465DF42DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF0361082F401D4F85BB421FAF39E04863C5E3325_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_DeAlias_m594F5FA3120FACC3E0E59BE8A9B1C053A44295C9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_GetAttributes_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_m0C68194EA2F1290920EB416435D1F1DF7376DE9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_GetAttributes_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mE27B8842BFC910F821171688202749D4088AB9F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_IsDefined_TisFixedBufferAttribute_tF3065E17C7BDDEAEDC5D80CED0509DB83C558743_mA7D9CD4BAEF6671FCC8590AC8BDE5DA8FC225661_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m898FCF635A0798B453FD9D444A53EA11B0E3883F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m92278158A17F05F659896BC9539564EBFAA3AD70_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mAE8D80673CB3522EEC77BC730EE1F2B20522F978_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mF99D7C8B327C81D20920C1BBFBF7CBEB4915F2F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m051E2A02F064E62AFF7041861D4F7F2188D65080_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m1DDA3C5BAD6CE5210AE4AE7D994F7EA118FAC8E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemberInfoExtensions_IsStatic_mA43E27BF6A1CB09EA93A5EF4100003F1F3921658_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MethodInfoExtensions_DeAliasMethod_mAB8B413F3E4A66BD87EBDFBE84FD30F2B6AC2E1A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MinimalBaseFormatter_1_RegisterReferenceID_mA94B978A70B58C551AB6228C5229141BB1D43A09_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MinimalBaseFormatter_1__ctor_mE9689C13D11CB2C1EA2EEF27A44D20DCF67CC936_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MinimalBaseFormatter_1__ctor_mFC7ABE31E673D84F003C643FFAB42BDF86DB3E61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m20ED2E7AAE2C55AA43D1ED744C12432E47B8FBDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m91249764D6DABEB17643C0C8864A57C7BF0E545A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PropertyInfoExtensions_DeAliasProperty_m636A975B0A3C1695FC88CFABE03267605B28FCB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_ReadByte_m2C8C834E326E6A8BEED708DE2EAB4CE82E76E09A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_ReadInt16_m8A6D66C3EE228FBA4EC7E10D0880E99AA342CF6B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_ReadInt32_m8B85C469B34E315374927282F592D0BE3587E973_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_ReadSByte_mA906AA84F79D9F2E6272A7CB102205960224EC6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_ReadUInt16_m5250967DD9E42FFEB64E6BB15CB471D3BEB959B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_ReadUInt32_m58C0F51E35822BD8B4A7E11E7ED7625D9200D6F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_0_m5574D333371500C410C58B20DB7E49384660E648_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_10_m746330BE3C87C20F2E9FD1030D3F7F149FA3DFAF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_11_mB0F2BC3D2ED1BDBFE295874C9E582AB287B9C7D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_12_mC199A968351044692DD9E6804EE82956E1B57B52_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_13_mD007F2613E6C977D3472CBE16A13794F03DEF079_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_1_m41F11F69156A0F3BCE417349BC7BDECEFBAD2BDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_2_mCD9F3CCBC01587079BE458C7291465E3CAD516A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_3_m625169DEA5703601132DB71571CD62B9BF8A388C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_4_m386B21D2244FACA981F46AE506A0CBB8D154B89D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_5_mB030DE1A0D55626ABEF4FEE3B144BDB9CAE033E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_6_m132D7A3D5A59E3D87C2365D86BE295F4784E9F43_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_7_mCD14A35C2AE274F6AFA289A0FC1228FD9495C591_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_8_mED983C9FAC2CAEB8EE0B6F06A25EBA023221B7B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_U3C_ctorU3Eb__6_9_mDECF657D1D9CAD1B0069F5CE241BBEE6A94396A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_get_Stream_m5F83E89CEB501ACA4CA50919A357A336D42F00DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_set_Nodes_mE1A9CEDB6F289B4B5B8D8301E7FB95BC1BCF2783_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataReader_set_Stream_mDFC80D45A1F4598C2A1A979F25B73F00B53908DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataWriter_get_Stream_mC021383DE623A26AE272F6EC17E3B9DA537E121D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataWriter_set_Nodes_mA35B26543A1C2E6547D90509F028195FE04F215A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationNodeDataWriter_set_Stream_m22219F616E005DA7C4FFEDC370EC1FDF5AF97786_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationUtility_CreateReader_mB72AFE4B76EB61270E7D5E97AA4BC3C1E3D30A90_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationUtility_CreateWriter_m467D77ACEAB35AC0F87A3445C465EDF58DEA67D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationUtility_DeserializeValue_TisRuntimeObject_m5E680C93F9932F74746318453FD8EE5E11E5DC1D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SerializationUtility_SerializeValue_TisRuntimeObject_m1E89017B1C6494143CB6454F1C10B52433297807_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_1__ctor_m13BA881D22251A908B73FF39B9B9F830297A9F36_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_1__ctor_m3617D23F006E505B99AEA48875D3D922A9235DAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_1__ctor_m383A30509A4D34E550528AFC0118139BC349C1F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_1__ctor_m738A38526C3AB2FC9D58533CEAD3C7DC39C53B73_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_1__ctor_m7A8238EDC32B7D323566B758EE82C5EF166D3470_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_1__ctor_m934F0DE383C8A9734B569982828B968946D3FDB5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_Create_mE1586CF99DD6E788BF080BE5D53AC4DC7E395FF5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Clear_mE25383E984C17F1508540A8E2E821A3B216413B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m76BFD44CDDBA6873B3FBD23CFE70B93BC01BE4E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m65699E5B35D8426F8DDEEDD0CA5BA92B5305B03F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_mDC0123BC0420180C37297772F722C0CB0FBD6BAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_mC12CE3CC0B800FD88AE5B76670655C6FF38C8BF4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_AreGenericConstraintsSatisfiedBy_m745C466D9303B67013F6153FA02095333EFC8DD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_DoubleEqualityComparer_mA8107430F92BA7A68E23A85099841505C72E5BAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_FloatEqualityComparer_mACF6B0C6C1C9BAAC6E799918957E6ABA6B11411A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GenericArgumentsContainsTypes_m28EC1A965F91FED88E4808C554974C375F194174_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetEnumBitmask_m0A382A82CE1B28746E451267EEB38594746A8069_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetGenericConstraintsString_m48AF12321F2078DBED84C2752972873FE1A98F2F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetGenericParameterConstraintsString_m65F62F38431EEFD27A98CCD57474F1077939AA68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetInheritanceDistance_mA4CD051E6DDA83D7C9B20A2E295D8F11979902E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetMemberValue_m40346AF69D66B5238B1609008B50478C232DE1D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetOperatorMethod_m67F84DBFC5B5E2F6B3A437E06A977187A0EE8EE5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetOperatorMethod_mF4E8FB063C0DB4900CEA5EB0BC035B54A0C941F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_GetOperatorMethods_m3D8260A48749A264F684DEFD307370FC77B5D284_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_IsDefined_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m318D8AE203E9C8AE1DC438F99CA761E2BB3C16F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_IsDefined_TisSerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_m2A609FDCBB9D0E72E14F1AD50445B5B4845E5C36_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_QuaternionEqualityComparer_mC45B498897DC7C3F5D1EC6731E1B022CF8295FB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_SetMemberValue_m129CFE227E8094840A8343AA09D389ED0EE43C67_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypeExtensions_TryInferGenericParameters_m3CF6BAD95827B7F8CA64A3318D131E3E4C00AC91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_Collections_IEnumerator_Reset_m662E34BF3119419604905F0EB8D244AA52938BF4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSerializePrefabModificationsU3Eb__29_0_mE5BC9A1D9B29390F4499D9F898B6FAC2D0B26CD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3Cget_EverythingU3Eb__6_0_mA8C7868D84047119DE1166B0CFD973E8D072962D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3Cget_StrictU3Eb__10_0_m8B795724CFCD6C12E683D6B757C1573AAB651E6E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass11_0_U3CCreateWeakInstanceFieldSetterU3Eb__0_mA38724315F40507039FDB52D1B502D922A086C2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass12_0_U3CCreateWeakInstancePropertyGetterU3Eb__0_m57311FB845CA16C2CD8A06A7E542C336EE0C73EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass13_0_U3CCreateWeakInstancePropertySetterU3Eb__0_m049C9E290CC25EBB4335EF2393582891E4A31941_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass21_0_U3CCreateWeakInstanceMethodCallerU3Eb__0_m132AD3E1ACE5F85057422EA65041C60EE34EA1CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass29_0_U3CGetCastMethodDelegateU3Eb__0_m00A07E9181A315C279DF5463BA696E3D5D5D5796_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass35_0_U3CGetCachedUnityMemberGetterU3Eb__0_mFB6FE6433D0DA026EAE9CF839C742EFECDA326B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass36_0_U3CGetCachedUnityMemberSetterU3Eb__0_mAA74D0AA8A401A3F190058CD99C88EEBC05D2B61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass3_0_U3CCreateWeakStaticFieldGetterU3Eb__0_mBCB9AD66EBFF132D3621C8A056AF2CA4DD348222_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass45_0_U3CGetOperatorMethodU3Eb__0_mA1BAA382445BB991F8D80DAA99451EA189CE2394_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass46_0_U3CGetOperatorMethodsU3Eb__0_mEBFD5B61B0A0975D2972090883FF0752E8B88D13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass5_0_U3CCreateWeakStaticFieldSetterU3Eb__0_mB4797702673C7821F7A294D3BC1C276EEBA7C34B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass8_0_U3CCreateWeakInstanceFieldGetterU3Eb__0_mC31970CDCC506AA3B17439AE1AE9B5623F9C3D4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass8_0_U3Cget_UnityU3Eb__0_mBB7A55BEEF89DEB371F773205D58EC3216D58514_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_GuessIfUnityWillSerialize_mD0C315E4121BA830641EE0C9B428F862D204D121_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_SerializeUnityObject_mACF598F763D3E3A1463530F7B6721007E27972F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnitySerializationUtility_SerializeUnityObject_mED7624B3AF4EB949D9B1B201BB46D14993EB6686_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Action_t591D2A86165F896B4B800BB5C25CE18672A55579_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* BooleanSerializer_t90F3AF8010413718FE0A024C7A938402535FCFB8_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ByteSerializer_tB3A839615F74D201309846BA4ADEF330DF7FDAEB_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* CharSerializer_t5747E71DBE11D9599DE7E1AA1676DFF2CB59FAFD_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ComplexTypeSerializer_1_t6797801A2B475406B82228EE83ECBA76BB3E8557_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DecimalSerializer_t6F2337FADB1FC591AD0C7F87CFBF8A9692E6D399_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Delegate_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DoubleSerializer_t1354B1024E94840C87035102D75672A411361D84_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* EnumSerializer_1_t9735D2A6B2F4AFD9D77EA583C69C0B1659D34169_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ExtensionAttribute_t34A17741DB6F2A390F30532BD50B269ECDB8F124_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* GuidSerializer_t1B91C58C0AB27A34C471C177F4F489BBEE8466D7_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ICollection_1_t47D08429F331C3A21D3F5AA174BFE3BB7C6DEF53_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IList_1_t257B383712C1A4815237BFC535F7FB44AD7C7D36_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ISupportsPrefabSerialization_t60C402CD1DF48262E4E7DAF9EE66A77C13AEE8DB_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16Serializer_t21D6F1938C7816D4A00E7C911EB5ABD7D0E1AC32_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32Serializer_t55A4CEC9A75DE4EF452E4D14846AE402141A2435_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64Serializer_t7E51F54952ABE03B59170B233AB3B8CB12B07695_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IntPtrSerializer_tEA3316B72AE7C05A7AEA4854200F22772CC03F9D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IntPtr_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* OdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByteSerializer_tA54D2DF6B2DB87B5697BD9ED5FE4625170B842C9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SingleSerializer_t4E9F15C6707B09B4643053562D14B6D84F035F4D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* StringSerializer_t02226473DA6D1A109481D3FA85F87CCB2F2FE7AD_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Type_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16Serializer_tB03F9299101183DF42C9BA9B5C251EB7E433E66E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32Serializer_tCA35508AF0D7C5164C5E7C0DB1FF8874297BA826_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64Serializer_t046296E5E31B549A8704B8F86A7ACD06EAB25209_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UIntPtrSerializer_t570AAD1348E8C0F586B9B74E796867581B2334EE_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UIntPtr_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var; IL2CPP_EXTERN_C const uint32_t EmitUtilities_CreateStaticMethodCaller_mEB3DAA5008C13E0359EED2F7FFD64E670A51F18E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EmitUtilities_CreateWeakInstanceMethodCaller_mBA468CE8098499C1E9BA0B847773DE4A887A8992_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EmitUtilities_CreateWeakStaticFieldGetter_m66AA3F87FA36E5D292F8AAE0893A7B9735553463_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EmitUtilities_CreateWeakStaticFieldSetter_m2D24A5B0298E8AF67BE9314DDF368CBB2A2875CA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FastTypeComparer__cctor_mF250E6E603BA93A4E55CA84630988C2F4D9A7CEA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldInfoExtensions_IsAliasField_m626B2702D965BD3A31910E534C60EBDC5EC7E78F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_Contains_m3B0DAFD822E63CE2BFCC230E3F6357684774728F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_CopyTo_m42CAE603EBB13199C6E618A5FB57F805C84E2CEA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_CopyTo_m4D21059634C4665807D63BFCECF16480A1267867_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_GetEnumerator_m43A58AA004DA4F30FF45A047C607BFA6016E4BFA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_IndexOf_m1E2C8F204D85C23E9C5857FFFCC1146FD2910783_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Add_mAF4B02C8D2E54C5142CDEE379DEE8CF394257821_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Clear_mE5B074C710502B470F83ED4A1B1AACC3165E1E0B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Remove_m6F97D8E1FD12E1CFB382B0BA52FFAC8719D1D4F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m5B22C7E2FD21519CF144F50541980FFA2631F056_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_Insert_mC7327E67C295D63A4339A6968D40D4DE1E80D6EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_RemoveAt_m51322BEFD7F011BC18C4106F77910672E15CCCD3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_get_Item_mCE7AFAD3EABF5B952E15F910AE82B28CB917BFC5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_set_Item_m6B978B5E35F054074CF8F082377B7595A6A5BCB1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_IList_Add_mB6DBA9FBA554F10BE4D851F77DAE22221074815D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_IList_Clear_m4EEB90F0682E2A50899286887FA3CD33DC2A99D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_IList_Insert_m1409394749DC395949727FF10A2C6FA98E69BD0A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_IList_RemoveAt_m261ED842BA366FF4CF4FA4A1529590664B72FB36_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_IList_Remove_mFDEFC94FCFB363D251AC1EBA11B257E670C2F6AF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_IList_get_Item_mFE31436D026C99C12EF6B8CD9423BBF23B1DEA38_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_System_Collections_IList_set_Item_m1D4374C01F195CCEDFAEFB832BC3ADCD0257E6C2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList__ctor_m20EA015914F29221BB79B2F6D56DCB839E961820_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_get_Count_m7004A73772BAFC4C0C4E4BA7DD8FC3556DE80A54_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_get_IsSynchronized_mF84998F99A9A0E2E53D4C36B2D76C47FFB02CB3C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_get_Item_mFE6D92DCA215CF1E1B5A1F0BC698276A9EE309C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ImmutableList_get_SyncRoot_m54243D435F83C0E46442410867A76481278C816F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberAliasFieldInfo__ctor_m0FE3C351DD64ADD4EF2B74A4FF2A4CBF47287DEB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberAliasMethodInfo__ctor_mD6518FE32AD099781ABC05BFFE4533808F711C52_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberAliasPropertyInfo__ctor_mED4ABDF630A271D4FE42419DF494FD69A8507552_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberInfoExtensions_DeAlias_m594F5FA3120FACC3E0E59BE8A9B1C053A44295C9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberInfoExtensions_GetAttributes_m18299A14FE035FBD9541B23F9EE55E01FC9B1D38_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberInfoExtensions_GetAttributes_mA715E13C8E72D2FBEFDB9F1A4360EDE8DA01F0E8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberInfoExtensions_GetNiceName_m804078AF053FDAAA249AEA0F420E63F1C1750881_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberInfoExtensions_IsAlias_mB01B756B632C99C4D488E454635A3014143B31B5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MemberInfoExtensions_IsStatic_mA43E27BF6A1CB09EA93A5EF4100003F1F3921658_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MethodInfoExtensions_DeAliasMethod_mAB8B413F3E4A66BD87EBDFBE84FD30F2B6AC2E1A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MethodInfoExtensions_GetFullName_mADD4F42C07FBA37C708976367FE70A9ABEC184AB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MethodInfoExtensions_GetFullName_mBDF15702D4884A03C7F052B88E8353688B76541C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MethodInfoExtensions_GetParamsNames_m623D068CB5070EF00147039EA44FB51492FD1936_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MethodInfoExtensions_IsAliasMethod_m4D49EE88BBD140889E54EE9E3DC2649C464D2CBF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MethodInfoExtensions_IsExtensionMethod_m8D9C0DF75101EE0412FFC8F43DBABF4016246F3D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PathUtilities_HasSubDirectory_m919B449361770AF4AB5E2D32AD8028AE287454B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PropertyInfoExtensions_DeAliasProperty_m636A975B0A3C1695FC88CFABE03267605B28FCB0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PropertyInfoExtensions_IsAliasProperty_mFE3CB9973C1AFBBC4F70989F222CEF1884B870E8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PropertyInfoExtensions_IsAutoProperty_m68AE118AC15FBBED6C356EA3D9BF1FA25FD2E0F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_EnterArray_m651F8312F9DFD5E77DC5D2D6C9ABCFE0DE4130C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_EnterNode_m38B156E8EC36E66418D7C4D439F2B04EBCB97F93_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ExitArray_m518C1035B160AD728CC55B5222CB5175118B02C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ExitNode_m8AF0355B54128785CA25DE822993FFD06D60F3A1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_GetDataDump_mAC3D56F8603D3B264406492C626DC8AAB9746057_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_PeekEntry_mBC06C30F47AC7438D768EEC8FEF7AAAC0DBBC892_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadBoolean_mDEB1718446A3F6C9D622A2D5AC5406643F72CC1D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadByte_m2C8C834E326E6A8BEED708DE2EAB4CE82E76E09A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadChar_m398A23D26D4B56699CCD5B931BF9E4F0C4413425_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadDecimal_mB892B03F94F3C9F8404A824DC7E506EF1401A599_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadDouble_m8B9D602D854599B2A4F0A69C974FC082878586CE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadExternalReference_m1EF7B520272A9C3A8983138F322D7F5AA1A36CA7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadExternalReference_mBA844BAAA415BF8AEB5AC598970CE6D04670AB72_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadExternalReference_mF27B613BB3FECF70EBA6EA012389B504F5A1BC14_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadGuid_m95FE67B6DAD4F98F5C47037B079ADAA48D5F7F3F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadInt16_m8A6D66C3EE228FBA4EC7E10D0880E99AA342CF6B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadInt32_m8B85C469B34E315374927282F592D0BE3587E973_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadInt64_m763523523B8F21CCAD55F2A18A52FB98E92484F1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadInternalReference_m8CBBBD126B3E959307518B1704A62FF92A521F9D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadNull_m0BF0F7899A24769924D6CCCBDE4726E14A82F1D3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadSByte_mA906AA84F79D9F2E6272A7CB102205960224EC6F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadSingle_mC9B3B8DFB19FC92FF203194C9E1E953FBAC76A80_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadString_m8130BAF2F817091B2352A4B5B5C402C913D92D4D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadUInt16_m5250967DD9E42FFEB64E6BB15CB471D3BEB959B5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadUInt32_m58C0F51E35822BD8B4A7E11E7ED7625D9200D6F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_ReadUInt64_mDB2B3C193CD5DF2DBE54B5A3A28331FB4258B7E9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader__ctor_m72E965EB8536039B0FE85DB63BB93ED5869BC725_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_get_IndexIsValid_m470CFF2AFEAB19151F7901573BA3113E90F4C149_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_get_Nodes_m3118CFBE09B19FCD795B8F9CC6E035C43198B776_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_get_Stream_m5F83E89CEB501ACA4CA50919A357A336D42F00DF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_set_Nodes_mE1A9CEDB6F289B4B5B8D8301E7FB95BC1BCF2783_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataReader_set_Stream_mDFC80D45A1F4598C2A1A979F25B73F00B53908DF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_BeginArrayNode_m9EF2BE148AA692942B594F349542A3C902877776_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_BeginReferenceNode_m3EC2CB37A99AC6CFF7F634F2F53821E3311A9295_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_BeginStructNode_m9BF1DA06F7D088E104AB9F5020439A774D9D1BD2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_EndArrayNode_m5B7E8BCB124AC5D85B1F25D71B8CDC430DC5A62C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_EndNode_m315D2C24F1EFFAB3022D00E69BAFA53EF51FABA6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_GetDataDump_m5684F357F00B55B52972C1DE8601634C41B72B7F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteBoolean_mDB92CDA756D758B0A14E6BE20344D4EC6C02A3EF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteByte_mF1523D4D83EB93384DD20125889DA316C76AE8A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteChar_m29A3C9534BBB290AA0435F67F65189B48CFE4F1A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteDecimal_m16DF5390CC99D3C3A3936AE436E38EAB87D12738_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteDouble_mD1FC5AA5C97C64F495E0D1DCF1B1FF940E2A96A0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteExternalReference_m1DBDA9D8C444CE2BFEDC0E6927D91A4B4A63EF7B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteExternalReference_m5E926CF7E70B30C4C8C0D30915C968A024FF6004_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteExternalReference_m6A0AAE6638592D59E1D3392A35A7120836559F4F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteGuid_m6FBF51B5D2D52698A16E290AC9B568B5025686D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteInt16_m18B8919921B7D0C0239F1B16D9E662BB55C8051D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteInt32_m9DCC744EED12D3C40D0ECD2F73C10E29DA1F1EEE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteInt64_mB602E9D170BACA93D158C226A32BD619ED5BC34C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteInternalReference_m837EB751BE7D61B4370AD81A966AAEB0DA4E1F9D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteNull_m5FC8A0DC584CB838FEDCEFB7AD779DB61C32E4AB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteSByte_mABB4CC7159DA80A3D04C7BC20270F818D8B3A0DA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteSingle_mB0A75AF2D945CA6B175228BAB19CF591DEFAAC55_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteString_mD83D2316EA7048B144565538D586DF041623786C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteUInt16_m4AE4068CEC5D0F83CBCD7ED93E23937F7A62A5CE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteUInt32_mBBC42C7487D3F4ED50EC932780593AADCA66A227_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_WriteUInt64_m9B0194B7CAF6452E3B3B00892C936E402AE25799_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter__ctor_mED46B0803DC503DDB31FAAFFDD5341D9E0562BB5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_get_Stream_mC021383DE623A26AE272F6EC17E3B9DA537E121D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_set_Nodes_mA35B26543A1C2E6547D90509F028195FE04F215A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationNodeDataWriter_set_Stream_m22219F616E005DA7C4FFEDC370EC1FDF5AF97786_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationPolicies_TryGetByID_mECE8A5AC36D0D308381A5D6F9698DFC2BE48D823_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationPolicies__cctor_m81D8788C9D8810EDC2447772C1D79277098BEEFD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationPolicies_get_Everything_mDE213BAA0B762DF663008E7DDEBD9A9144DB5D49_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationPolicies_get_Strict_m10E331DFA0E733250AFA359B589BB79283172F75_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_CreateCopy_mDD6A0513F672D6806141625AC047FDAED00D6B2E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_CreateReader_mB72AFE4B76EB61270E7D5E97AA4BC3C1E3D30A90_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_CreateWriter_m467D77ACEAB35AC0F87A3445C465EDF58DEA67D2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_DeserializeValueWeak_m22BC386FE62247361A2E418B1E8A4DB0B5558B4B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_DeserializeValueWeak_m3BCFAF0CDD4C7781E87BFF26DAA92AE14EFFF2C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_DeserializeValueWeak_m6E96D031A8B22E267A070A6302C2A478C7093E03_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_DeserializeValueWeak_m7FCF67D3A434DBC1D78EA82E5AC4436FC6FDF1E1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_DeserializeValueWeak_m9581172659F072B2F7FBC1F4D4D98F51CD1B2155_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_DeserializeValueWeak_mB5E01A7533BD9F102A69C913B134E7D334276DB2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_SerializeValueWeak_m32A59E933A9246D1C329C5EC5B9CC5E5209775E1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_SerializeValueWeak_m37B62101CC8AB3F65C2F2AA58F190C28609C20C1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_SerializeValueWeak_m71C2C2EE28CFA876EC9DB9D9EB9C6DC64367BCF8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_SerializeValueWeak_m90A710914AD92D54DE6DF948560DD9178F6E4F42_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_SerializeValueWeak_mAE47ED83B759463E3DE6ABE73DCE6430936BA394_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SerializationUtility_SerializeValueWeak_mC937F375B75CFB34CF3B048F6BA1146433B6A968_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Serializer_Create_mE1586CF99DD6E788BF080BE5D53AC4DC7E395FF5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Serializer_GetForValue_m2ED56379A29E1721E401FBA8ABA572D4DEF88A56_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Serializer__cctor_m20EBEE4D4143C51016FCD6518C9D5907C83B5A2B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleSerializer_ReadValue_m7BF0658E27C734591F62508DDC75FB916FD00766_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleSerializer_WriteValue_mECCB65094A6A225F6276B76CB4E1610252E51BB4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleSerializer__ctor_m8AFB0FDC1D5959F45738B0ECEF10E543C3076CDA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringExtensions_IsNullOrWhitespace_m415B4EB43726242C0F6EF39E571718BD2D7AC115_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringExtensions_ToTitleCase_m9E13DB001165FA20961B2B6CC9CDD7A31E3EEBDE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringSerializer_ReadValue_m4477629F0FEDFC1C90355035E062A6F7A6A9FD6C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringSerializer_WriteValue_m3E1524668EAA33A1572E0BC2DDC8952DF52D7172_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringSerializer__ctor_m5C7C92A261EAEB4027AB39D58574382AA527B601_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpanFormatter_Read_mE35CD4BD0FF6501725E013D0F066490600797BEA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpanFormatter_Write_m2D59D6071866D5DAEC91AB37F43FAA7D6775FB60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpanFormatter__ctor_m97879CDB3ADAE32AFECC773466022A60D32A99F7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TwoWaySerializationBinder__cctor_m7C2A83FCFE4AF4FCFE750D7C199590EC1823246A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_AreGenericConstraintsSatisfiedBy_m745C466D9303B67013F6153FA02095333EFC8DD6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_AreGenericConstraintsSatisfiedBy_m8B58F22F37363C01AB0A430DCEF06884F35149B8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_CreateNiceName_m356329964E6B10E04DA264E4D1BE166837FFD349_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_DoubleEqualityComparer_mA8107430F92BA7A68E23A85099841505C72E5BAC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GenericArgumentsContainsTypes_m28EC1A965F91FED88E4808C554974C375F194174_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GenericParameterIsFulfilledBy_m8AD725442EA406DF5D9472B1FA5469889F9E7293_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetAllMembers_m48D2BD760B116825656A08CE347BD5F63905B553_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetAllMembers_m67DA955DD1879F31063F38FCB98A01EFAEDC14C9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetArgumentsOfInheritedOpenGenericInterface_m0F0224E6428E8E7103DA2795E3AD67BA8E091725_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetArgumentsOfInheritedOpenGenericType_m1972914E449E969F4E66DD4E31017DCB2776D669_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetBaseClasses_mE82A31E50C001144D29935EF416FF8C2EC6C767E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetBaseTypes_mDEAA2F9719E8A1A836EAABBEE3F3EBF657797520_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetCachedNiceName_mFA299962CF542EC652E8ED4921C81D5F45255A3A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetCastMethodDelegate_m2963BEECD3C14E8FC042F31798F1E1E4535FD6F3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetCastMethod_m25E3FF694690FF9640FC32CD78913E3B95963919_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetCompilableNiceFullName_mCA8290EE956749FE9875B636A3963E455BBFAAE1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetCompilableNiceName_m192EFC4BDC82F37A1CF235AE76342B8402DC1E3B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetEnumBitmask_m0A382A82CE1B28746E451267EEB38594746A8069_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetGenericBaseType_m76D2D3754AFBCFF4489C03C9947AA0B2E684E395_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetGenericConstraintsString_m48AF12321F2078DBED84C2752972873FE1A98F2F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetGenericParameterConstraintsString_m65F62F38431EEFD27A98CCD57474F1077939AA68_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetInheritanceDistance_mA4CD051E6DDA83D7C9B20A2E295D8F11979902E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetMemberValue_m40346AF69D66B5238B1609008B50478C232DE1D2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetOperatorMethod_m67F84DBFC5B5E2F6B3A437E06A977187A0EE8EE5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetOperatorMethod_mF4E8FB063C0DB4900CEA5EB0BC035B54A0C941F0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetOperatorMethods_m3D8260A48749A264F684DEFD307370FC77B5D284_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_GetReturnType_m2E7443B4412DA8151730B3D9B4BB40EADC3A7E24_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_HasCastDefined_m013BDC7A056F085E63569EC70BC178D6750FD47A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_HasParamaters_m1B4497A11C26B13AFE5721E231483A8E30997FE9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_ImplementsOpenGenericInterface_mC328F85F1D7E0EA9DBB75953F6BBA5A67DF5C08A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_ImplementsOpenGenericType_mE77339998BC40FBE8A48FE1EC35DA9A3B6AF26C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_InheritsFrom_mE3C31521AF59D77C48BA59744008CFFB79FEF580_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_IsValidIdentifierPartCharacter_m31E0CF6588042F127F9BE6DABF33E2118DAC4DEE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_IsValidIdentifierStartCharacter_m6FD72B83F11534BF2368924869DEAD07CA897BCA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_IsValidIdentifier_mB499AD0C8A6CD81276D0594802E6613816CF9D04_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_SafeGetCustomAttributes_mFF3DCE9B7B6C258DF0FDA5BB8BBD62A6E62FC469_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_SafeGetTypes_m81ACAF67CE980AA3323BCB1D2947441EFAB45560_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_SafeIsDefined_m2C9B8A957ABF4B6B39451DB73E17C5E0A36D8FBA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_SetMemberValue_m129CFE227E8094840A8343AA09D389ED0EE43C67_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_TryInferGenericParameters_m3CF6BAD95827B7F8CA64A3318D131E3E4C00AC91_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions_TypeNameGauntlet_mF8BC41CCA4DC4132BFC88689AEFFF6B659089A56_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeExtensions__cctor_mA2BA952F5557E5911B6D54E2C854A4E2D7E6F9A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeFormatterLocator_TryGetFormatter_m88222B20D874243C759A012053BFCD2EE97FE38D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeFormatter_Read_m0312F000BC60A527CA0F9C9E8147A0CD01CC0F5A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeFormatter_Write_m64A2EC426D667F3AE27A747367E2FFECAD52C876_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeFormatter__ctor_m424A9248230C12595E871D7BF6487474FC7E24BD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_MoveNext_mD6DDB9B453B608B161C5C1B64D7E28AFD91C06EB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_Collections_IEnumerator_Reset_m662E34BF3119419604905F0EB8D244AA52938BF4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_U3CU3Em__Finally1_mAA73EF50A51A242560AC49613E4A609038B65FB0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3Cget_EverythingU3Eb__6_0_mA8C7868D84047119DE1166B0CFD973E8D072962D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3Cget_StrictU3Eb__10_0_m8B795724CFCD6C12E683D6B757C1573AAB651E6E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass35_0_U3CGetCachedUnityMemberGetterU3Eb__0_mFB6FE6433D0DA026EAE9CF839C742EFECDA326B5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass36_0_U3CGetCachedUnityMemberSetterU3Eb__0_mAA74D0AA8A401A3F190058CD99C88EEBC05D2B61_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass8_0_U3Cget_UnityU3Eb__0_mBB7A55BEEF89DEB371F773205D58EC3216D58514_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_mC3473BEC8AC1BF65DCC7B7DD6DC2BBB0C6D2FDC3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_mD988BDF2D2A2CD3732988BF943AD158B3ABED18D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16Serializer_ReadValue_mBA05A37AD9FE45B5DB8AAA482C02EC803E8FC00A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16Serializer_WriteValue_m5A5865CA4E06FE6CFF9CAA193DDD9CB52D8EA69C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16Serializer__ctor_m1779D6B82ACE313C1E3A7A981AB974F3B4D5D6D0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32Serializer_ReadValue_mDCB7E3D3EB0115C9886C52F716710A58104F2B4E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32Serializer_WriteValue_m3F4CBC088E8890A99C5EA955948D1D76F48673A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32Serializer__ctor_m1830EE9FD42E2B81CAEEBAF113582FBF73BA019A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64Serializer_ReadValue_m31061E8C0D920070E87E6CF4D48E74C62FE9956E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64Serializer_WriteValue_m4F753FDC129407D34AA6AEBE607581696354ECE2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64Serializer__ctor_mEBA926A1F82C51D6DD17AD896EB1F49DD02195B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrSerializer_ReadValue_m3D288D8FAA327D57999FFC5405FEF43E2FE8A723_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrSerializer_WriteValue_mB656CD2DD563328D92289F36371C8B9D51FCC73C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrSerializer__ctor_m5C99908E13BB9DF5853DA594FE079D12795D566F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnityReferenceResolver_CanReference_mDBB014DDC137B3D53199FDADCF7925CBEF29A96E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnityReferenceResolver_Reset_m20F4036024381C6CE511ED8510A8CE8FDDABE6E5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnityReferenceResolver_TryResolveReference_m299E74DDEBF70646758958CA5C8A761C3D3D1E66_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnityReferenceResolver__ctor_m2356D5E36966A635CA6707EF5835DBEF30CED157_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnityReferenceResolver__ctor_m3BEDD370C7842E7FC69EE5C1A13BA8C96925CD17_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationInitializer_InitializeRuntime_m6127E0FE3C069745E692B4EA970FD7D27F5300EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationInitializer_Initialize_mB69D9F1EDB32DB981FA4CE0107B0C12AE15B256B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationInitializer__cctor_mFDF3B021377E56A7ABB7273C48E42A49BA676509_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationInitializer_get_CurrentPlatform_mC3E00160B0C03A7B55900A907557C6A94A2777F3Sirenix_Serialization2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationInitializer_get_CurrentPlatform_mC3E00160B0C03A7B55900A907557C6A94A2777F3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationInitializer_get_Initialized_m35DD24C31636024F4ACAAD3C98DA3810331BEB78_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationInitializer_set_CurrentPlatform_m87C95518B9FFE76BE258B2D3BD8C5D41B3B6C327Sirenix_Serialization2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationInitializer_set_CurrentPlatform_m87C95518B9FFE76BE258B2D3BD8C5D41B3B6C327_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_CalculateOdinWillSerialize_m1FFED8F181E2C234BFF0BB14E12ACB0FF3589E1A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_CreateDefaultUnityInitializedObject_m536934F898F16BDD510FF69C740B70DA2B02DD99_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_CreateDefaultUnityInitializedObject_mA9EFCDCE141DFD9A271CD5F4A875525AE67EF949_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_DeserializePrefabModifications_m50B6E0B734E722F47ED23008D5A606CB05F399F7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_DeserializeUnityObject_mC46BB39E5AEC2D1A4480AE8F0E6AA61AEA40BEFE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_DeserializeUnityObject_mF95284CFC748858DAB11C7B8C5FB6076E38B190F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GetCachedUnityMemberGetter_mD38504B4CCC191DD830BD317DC3B2D8791031BA2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GetCachedUnityMemberSetter_m5160801024194D0C37814AFDDF369AA0B1B6CB36_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mB6EDA795817D96631523ADFB059B15A741A207F6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mFE1C88FD6105EC66741847AB56221B3AC2FED891_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_GuessIfUnityWillSerialize_mD0C315E4121BA830641EE0C9B428F862D204D121_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_OdinWillSerialize_m0211AB253DACCC82CC0FAE56445F0EC2EA42B35A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_SerializePrefabModifications_mDE1C057826BBED60720FDD7936DF3FED68C0FA10_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_SerializeUnityObject_mACF598F763D3E3A1463530F7B6721007E27972F9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_SerializeUnityObject_mDF4E0D4D3F72CD944A36A94A7B058BF7146D220F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility_SerializeUnityObject_mED7624B3AF4EB949D9B1B201BB46D14993EB6686_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnitySerializationUtility__cctor_m533C29AC98E183BC4F3B533103CCEEEDC3A07242_MetadataUsageId; struct Assembly_t_marshaled_com; struct Assembly_t_marshaled_pinvoke; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com; struct SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A; struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17; struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE; struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6; struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B; struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694; struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA; struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // Sirenix.Serialization.BaseDataReaderWriter struct BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B : public RuntimeObject { public: // Sirenix.Serialization.NodeInfo[] Sirenix.Serialization.BaseDataReaderWriter::nodes NodeInfoU5BU5D_tBEA9AB221B22EF56ACD91C253D93D00B7785F305* ___nodes_0; // System.Int32 Sirenix.Serialization.BaseDataReaderWriter::nodesLength int32_t ___nodesLength_1; public: inline static int32_t get_offset_of_nodes_0() { return static_cast<int32_t>(offsetof(BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B, ___nodes_0)); } inline NodeInfoU5BU5D_tBEA9AB221B22EF56ACD91C253D93D00B7785F305* get_nodes_0() const { return ___nodes_0; } inline NodeInfoU5BU5D_tBEA9AB221B22EF56ACD91C253D93D00B7785F305** get_address_of_nodes_0() { return &___nodes_0; } inline void set_nodes_0(NodeInfoU5BU5D_tBEA9AB221B22EF56ACD91C253D93D00B7785F305* value) { ___nodes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___nodes_0), (void*)value); } inline static int32_t get_offset_of_nodesLength_1() { return static_cast<int32_t>(offsetof(BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B, ___nodesLength_1)); } inline int32_t get_nodesLength_1() const { return ___nodesLength_1; } inline int32_t* get_address_of_nodesLength_1() { return &___nodesLength_1; } inline void set_nodesLength_1(int32_t value) { ___nodesLength_1 = value; } }; // Sirenix.Serialization.CachedMemoryStream struct CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 : public RuntimeObject { public: // System.IO.MemoryStream Sirenix.Serialization.CachedMemoryStream::memoryStream MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * ___memoryStream_2; public: inline static int32_t get_offset_of_memoryStream_2() { return static_cast<int32_t>(offsetof(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6, ___memoryStream_2)); } inline MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * get_memoryStream_2() const { return ___memoryStream_2; } inline MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C ** get_address_of_memoryStream_2() { return &___memoryStream_2; } inline void set_memoryStream_2(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * value) { ___memoryStream_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___memoryStream_2), (void*)value); } }; struct CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_StaticFields { public: // System.Int32 Sirenix.Serialization.CachedMemoryStream::InitialCapacity int32_t ___InitialCapacity_0; // System.Int32 Sirenix.Serialization.CachedMemoryStream::MaxCapacity int32_t ___MaxCapacity_1; public: inline static int32_t get_offset_of_InitialCapacity_0() { return static_cast<int32_t>(offsetof(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_StaticFields, ___InitialCapacity_0)); } inline int32_t get_InitialCapacity_0() const { return ___InitialCapacity_0; } inline int32_t* get_address_of_InitialCapacity_0() { return &___InitialCapacity_0; } inline void set_InitialCapacity_0(int32_t value) { ___InitialCapacity_0 = value; } inline static int32_t get_offset_of_MaxCapacity_1() { return static_cast<int32_t>(offsetof(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_StaticFields, ___MaxCapacity_1)); } inline int32_t get_MaxCapacity_1() const { return ___MaxCapacity_1; } inline int32_t* get_address_of_MaxCapacity_1() { return &___MaxCapacity_1; } inline void set_MaxCapacity_1(int32_t value) { ___MaxCapacity_1 = value; } }; // Sirenix.Serialization.CustomSerializationPolicy struct CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1 : public RuntimeObject { public: // System.String Sirenix.Serialization.CustomSerializationPolicy::id String_t* ___id_0; // System.Boolean Sirenix.Serialization.CustomSerializationPolicy::allowNonSerializableTypes bool ___allowNonSerializableTypes_1; // System.Func`2<System.Reflection.MemberInfo,System.Boolean> Sirenix.Serialization.CustomSerializationPolicy::shouldSerializeFunc Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___shouldSerializeFunc_2; public: inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1, ___id_0)); } inline String_t* get_id_0() const { return ___id_0; } inline String_t** get_address_of_id_0() { return &___id_0; } inline void set_id_0(String_t* value) { ___id_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_0), (void*)value); } inline static int32_t get_offset_of_allowNonSerializableTypes_1() { return static_cast<int32_t>(offsetof(CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1, ___allowNonSerializableTypes_1)); } inline bool get_allowNonSerializableTypes_1() const { return ___allowNonSerializableTypes_1; } inline bool* get_address_of_allowNonSerializableTypes_1() { return &___allowNonSerializableTypes_1; } inline void set_allowNonSerializableTypes_1(bool value) { ___allowNonSerializableTypes_1 = value; } inline static int32_t get_offset_of_shouldSerializeFunc_2() { return static_cast<int32_t>(offsetof(CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1, ___shouldSerializeFunc_2)); } inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * get_shouldSerializeFunc_2() const { return ___shouldSerializeFunc_2; } inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 ** get_address_of_shouldSerializeFunc_2() { return &___shouldSerializeFunc_2; } inline void set_shouldSerializeFunc_2(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * value) { ___shouldSerializeFunc_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___shouldSerializeFunc_2), (void*)value); } }; // Sirenix.Serialization.MinimalBaseFormatter`1<System.TimeSpan> struct MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532 : public RuntimeObject { public: public: }; struct MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532_StaticFields { public: // System.Boolean Sirenix.Serialization.MinimalBaseFormatter`1::IsValueType bool ___IsValueType_0; public: inline static int32_t get_offset_of_IsValueType_0() { return static_cast<int32_t>(offsetof(MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532_StaticFields, ___IsValueType_0)); } inline bool get_IsValueType_0() const { return ___IsValueType_0; } inline bool* get_address_of_IsValueType_0() { return &___IsValueType_0; } inline void set_IsValueType_0(bool value) { ___IsValueType_0 = value; } }; // Sirenix.Serialization.MinimalBaseFormatter`1<System.Type> struct MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584 : public RuntimeObject { public: public: }; struct MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584_StaticFields { public: // System.Boolean Sirenix.Serialization.MinimalBaseFormatter`1::IsValueType bool ___IsValueType_0; public: inline static int32_t get_offset_of_IsValueType_0() { return static_cast<int32_t>(offsetof(MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584_StaticFields, ___IsValueType_0)); } inline bool get_IsValueType_0() const { return ___IsValueType_0; } inline bool* get_address_of_IsValueType_0() { return &___IsValueType_0; } inline void set_IsValueType_0(bool value) { ___IsValueType_0 = value; } }; // Sirenix.Serialization.SerializationConfig struct SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 : public RuntimeObject { public: // System.Object Sirenix.Serialization.SerializationConfig::LOCK RuntimeObject * ___LOCK_0; // Sirenix.Serialization.ISerializationPolicy modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.SerializationConfig::serializationPolicy RuntimeObject* ___serializationPolicy_1; // Sirenix.Serialization.DebugContext modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.SerializationConfig::debugContext DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * ___debugContext_2; // System.Boolean Sirenix.Serialization.SerializationConfig::AllowDeserializeInvalidData bool ___AllowDeserializeInvalidData_3; public: inline static int32_t get_offset_of_LOCK_0() { return static_cast<int32_t>(offsetof(SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6, ___LOCK_0)); } inline RuntimeObject * get_LOCK_0() const { return ___LOCK_0; } inline RuntimeObject ** get_address_of_LOCK_0() { return &___LOCK_0; } inline void set_LOCK_0(RuntimeObject * value) { ___LOCK_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___LOCK_0), (void*)value); } inline static int32_t get_offset_of_serializationPolicy_1() { return static_cast<int32_t>(offsetof(SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6, ___serializationPolicy_1)); } inline RuntimeObject* get_serializationPolicy_1() const { return ___serializationPolicy_1; } inline RuntimeObject** get_address_of_serializationPolicy_1() { return &___serializationPolicy_1; } inline void set_serializationPolicy_1(RuntimeObject* value) { ___serializationPolicy_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___serializationPolicy_1), (void*)value); } inline static int32_t get_offset_of_debugContext_2() { return static_cast<int32_t>(offsetof(SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6, ___debugContext_2)); } inline DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * get_debugContext_2() const { return ___debugContext_2; } inline DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD ** get_address_of_debugContext_2() { return &___debugContext_2; } inline void set_debugContext_2(DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * value) { ___debugContext_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___debugContext_2), (void*)value); } inline static int32_t get_offset_of_AllowDeserializeInvalidData_3() { return static_cast<int32_t>(offsetof(SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6, ___AllowDeserializeInvalidData_3)); } inline bool get_AllowDeserializeInvalidData_3() const { return ___AllowDeserializeInvalidData_3; } inline bool* get_address_of_AllowDeserializeInvalidData_3() { return &___AllowDeserializeInvalidData_3; } inline void set_AllowDeserializeInvalidData_3(bool value) { ___AllowDeserializeInvalidData_3 = value; } }; // Sirenix.Serialization.SerializationNodeDataReaderWriterConfig struct SerializationNodeDataReaderWriterConfig_t60F9D6F00C21F8779AF6EF9E9E92D21F5BEBF803 : public RuntimeObject { public: public: }; // Sirenix.Serialization.SerializationPolicies struct SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F : public RuntimeObject { public: public: }; struct SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields { public: // System.Object Sirenix.Serialization.SerializationPolicies::LOCK RuntimeObject * ___LOCK_0; // Sirenix.Serialization.ISerializationPolicy modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.SerializationPolicies::everythingPolicy RuntimeObject* ___everythingPolicy_1; // Sirenix.Serialization.ISerializationPolicy modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.SerializationPolicies::unityPolicy RuntimeObject* ___unityPolicy_2; // Sirenix.Serialization.ISerializationPolicy modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.SerializationPolicies::strictPolicy RuntimeObject* ___strictPolicy_3; public: inline static int32_t get_offset_of_LOCK_0() { return static_cast<int32_t>(offsetof(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields, ___LOCK_0)); } inline RuntimeObject * get_LOCK_0() const { return ___LOCK_0; } inline RuntimeObject ** get_address_of_LOCK_0() { return &___LOCK_0; } inline void set_LOCK_0(RuntimeObject * value) { ___LOCK_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___LOCK_0), (void*)value); } inline static int32_t get_offset_of_everythingPolicy_1() { return static_cast<int32_t>(offsetof(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields, ___everythingPolicy_1)); } inline RuntimeObject* get_everythingPolicy_1() const { return ___everythingPolicy_1; } inline RuntimeObject** get_address_of_everythingPolicy_1() { return &___everythingPolicy_1; } inline void set_everythingPolicy_1(RuntimeObject* value) { ___everythingPolicy_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___everythingPolicy_1), (void*)value); } inline static int32_t get_offset_of_unityPolicy_2() { return static_cast<int32_t>(offsetof(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields, ___unityPolicy_2)); } inline RuntimeObject* get_unityPolicy_2() const { return ___unityPolicy_2; } inline RuntimeObject** get_address_of_unityPolicy_2() { return &___unityPolicy_2; } inline void set_unityPolicy_2(RuntimeObject* value) { ___unityPolicy_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___unityPolicy_2), (void*)value); } inline static int32_t get_offset_of_strictPolicy_3() { return static_cast<int32_t>(offsetof(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields, ___strictPolicy_3)); } inline RuntimeObject* get_strictPolicy_3() const { return ___strictPolicy_3; } inline RuntimeObject** get_address_of_strictPolicy_3() { return &___strictPolicy_3; } inline void set_strictPolicy_3(RuntimeObject* value) { ___strictPolicy_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___strictPolicy_3), (void*)value); } }; // Sirenix.Serialization.SerializationPolicies_<>c struct U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 : public RuntimeObject { public: public: }; struct U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields { public: // Sirenix.Serialization.SerializationPolicies_<>c Sirenix.Serialization.SerializationPolicies_<>c::<>9 U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * ___U3CU3E9_0; // System.Func`2<System.Reflection.MemberInfo,System.Boolean> Sirenix.Serialization.SerializationPolicies_<>c::<>9__6_0 Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___U3CU3E9__6_0_1; // System.Func`2<System.Reflection.MemberInfo,System.Boolean> Sirenix.Serialization.SerializationPolicies_<>c::<>9__10_0 Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___U3CU3E9__10_0_2; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__6_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields, ___U3CU3E9__6_0_1)); } inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * get_U3CU3E9__6_0_1() const { return ___U3CU3E9__6_0_1; } inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 ** get_address_of_U3CU3E9__6_0_1() { return &___U3CU3E9__6_0_1; } inline void set_U3CU3E9__6_0_1(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * value) { ___U3CU3E9__6_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__6_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__10_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields, ___U3CU3E9__10_0_2)); } inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * get_U3CU3E9__10_0_2() const { return ___U3CU3E9__10_0_2; } inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 ** get_address_of_U3CU3E9__10_0_2() { return &___U3CU3E9__10_0_2; } inline void set_U3CU3E9__10_0_2(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * value) { ___U3CU3E9__10_0_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__10_0_2), (void*)value); } }; // Sirenix.Serialization.SerializationPolicies_<>c__DisplayClass8_0 struct U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D : public RuntimeObject { public: // System.Type Sirenix.Serialization.SerializationPolicies_<>c__DisplayClass8_0::tupleInterface Type_t * ___tupleInterface_0; public: inline static int32_t get_offset_of_tupleInterface_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D, ___tupleInterface_0)); } inline Type_t * get_tupleInterface_0() const { return ___tupleInterface_0; } inline Type_t ** get_address_of_tupleInterface_0() { return &___tupleInterface_0; } inline void set_tupleInterface_0(Type_t * value) { ___tupleInterface_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___tupleInterface_0), (void*)value); } }; // Sirenix.Serialization.SerializationUtility struct SerializationUtility_tD928A7CA167842AC266806BBE4D8DDDDEB3CF793 : public RuntimeObject { public: public: }; // Sirenix.Serialization.Serializer struct Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 : public RuntimeObject { public: public: }; struct Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.Type,System.Type> Sirenix.Serialization.Serializer::PrimitiveReaderWriterTypes Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * ___PrimitiveReaderWriterTypes_0; // System.Object Sirenix.Serialization.Serializer::LOCK RuntimeObject * ___LOCK_1; // System.Collections.Generic.Dictionary`2<System.Type,Sirenix.Serialization.Serializer> Sirenix.Serialization.Serializer::ReaderWriterCache Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * ___ReaderWriterCache_2; public: inline static int32_t get_offset_of_PrimitiveReaderWriterTypes_0() { return static_cast<int32_t>(offsetof(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields, ___PrimitiveReaderWriterTypes_0)); } inline Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * get_PrimitiveReaderWriterTypes_0() const { return ___PrimitiveReaderWriterTypes_0; } inline Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A ** get_address_of_PrimitiveReaderWriterTypes_0() { return &___PrimitiveReaderWriterTypes_0; } inline void set_PrimitiveReaderWriterTypes_0(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * value) { ___PrimitiveReaderWriterTypes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimitiveReaderWriterTypes_0), (void*)value); } inline static int32_t get_offset_of_LOCK_1() { return static_cast<int32_t>(offsetof(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields, ___LOCK_1)); } inline RuntimeObject * get_LOCK_1() const { return ___LOCK_1; } inline RuntimeObject ** get_address_of_LOCK_1() { return &___LOCK_1; } inline void set_LOCK_1(RuntimeObject * value) { ___LOCK_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___LOCK_1), (void*)value); } inline static int32_t get_offset_of_ReaderWriterCache_2() { return static_cast<int32_t>(offsetof(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields, ___ReaderWriterCache_2)); } inline Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * get_ReaderWriterCache_2() const { return ___ReaderWriterCache_2; } inline Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 ** get_address_of_ReaderWriterCache_2() { return &___ReaderWriterCache_2; } inline void set_ReaderWriterCache_2(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * value) { ___ReaderWriterCache_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReaderWriterCache_2), (void*)value); } }; // Sirenix.Serialization.TwoWaySerializationBinder struct TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 : public RuntimeObject { public: public: }; struct TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4_StaticFields { public: // Sirenix.Serialization.TwoWaySerializationBinder Sirenix.Serialization.TwoWaySerializationBinder::Default TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4_StaticFields, ___Default_0)); } inline TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * get_Default_0() const { return ___Default_0; } inline TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value); } }; // Sirenix.Serialization.TypeFormatterLocator struct TypeFormatterLocator_t14B1D1D4867D6C9E29E1B57EA7060EA77EB0C25A : public RuntimeObject { public: public: }; // Sirenix.Serialization.UnityReferenceResolver struct UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<UnityEngine.Object,System.Int32> Sirenix.Serialization.UnityReferenceResolver::referenceIndexMapping Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * ___referenceIndexMapping_0; // System.Collections.Generic.List`1<UnityEngine.Object> Sirenix.Serialization.UnityReferenceResolver::referencedUnityObjects List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects_1; public: inline static int32_t get_offset_of_referenceIndexMapping_0() { return static_cast<int32_t>(offsetof(UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663, ___referenceIndexMapping_0)); } inline Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * get_referenceIndexMapping_0() const { return ___referenceIndexMapping_0; } inline Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A ** get_address_of_referenceIndexMapping_0() { return &___referenceIndexMapping_0; } inline void set_referenceIndexMapping_0(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * value) { ___referenceIndexMapping_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___referenceIndexMapping_0), (void*)value); } inline static int32_t get_offset_of_referencedUnityObjects_1() { return static_cast<int32_t>(offsetof(UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663, ___referencedUnityObjects_1)); } inline List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * get_referencedUnityObjects_1() const { return ___referencedUnityObjects_1; } inline List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** get_address_of_referencedUnityObjects_1() { return &___referencedUnityObjects_1; } inline void set_referencedUnityObjects_1(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * value) { ___referencedUnityObjects_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___referencedUnityObjects_1), (void*)value); } }; // Sirenix.Serialization.UnitySerializationUtility struct UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65 : public RuntimeObject { public: public: }; struct UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields { public: // System.Type Sirenix.Serialization.UnitySerializationUtility::SerializeReferenceAttributeType Type_t * ___SerializeReferenceAttributeType_0; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter> Sirenix.Serialization.UnitySerializationUtility::UnityMemberGetters Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * ___UnityMemberGetters_1; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter> Sirenix.Serialization.UnitySerializationUtility::UnityMemberSetters Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * ___UnityMemberSetters_2; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,System.Boolean> Sirenix.Serialization.UnitySerializationUtility::UnityWillSerializeMembersCache Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * ___UnityWillSerializeMembersCache_3; // System.Collections.Generic.Dictionary`2<System.Type,System.Boolean> Sirenix.Serialization.UnitySerializationUtility::UnityWillSerializeTypesCache Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * ___UnityWillSerializeTypesCache_4; // System.Collections.Generic.HashSet`1<System.Type> Sirenix.Serialization.UnitySerializationUtility::UnityNeverSerializesTypes HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * ___UnityNeverSerializesTypes_5; // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.UnitySerializationUtility::UnityPolicy RuntimeObject* ___UnityPolicy_6; // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.UnitySerializationUtility::EverythingPolicy RuntimeObject* ___EverythingPolicy_7; // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.UnitySerializationUtility::StrictPolicy RuntimeObject* ___StrictPolicy_8; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult> Sirenix.Serialization.UnitySerializationUtility::OdinWillSerializeCache_UnityPolicy Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * ___OdinWillSerializeCache_UnityPolicy_9; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult> Sirenix.Serialization.UnitySerializationUtility::OdinWillSerializeCache_EverythingPolicy Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * ___OdinWillSerializeCache_EverythingPolicy_10; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult> Sirenix.Serialization.UnitySerializationUtility::OdinWillSerializeCache_StrictPolicy Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * ___OdinWillSerializeCache_StrictPolicy_11; // System.Collections.Generic.Dictionary`2<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult>> Sirenix.Serialization.UnitySerializationUtility::OdinWillSerializeCache_CustomPolicies Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * ___OdinWillSerializeCache_CustomPolicies_12; public: inline static int32_t get_offset_of_SerializeReferenceAttributeType_0() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___SerializeReferenceAttributeType_0)); } inline Type_t * get_SerializeReferenceAttributeType_0() const { return ___SerializeReferenceAttributeType_0; } inline Type_t ** get_address_of_SerializeReferenceAttributeType_0() { return &___SerializeReferenceAttributeType_0; } inline void set_SerializeReferenceAttributeType_0(Type_t * value) { ___SerializeReferenceAttributeType_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___SerializeReferenceAttributeType_0), (void*)value); } inline static int32_t get_offset_of_UnityMemberGetters_1() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___UnityMemberGetters_1)); } inline Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * get_UnityMemberGetters_1() const { return ___UnityMemberGetters_1; } inline Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 ** get_address_of_UnityMemberGetters_1() { return &___UnityMemberGetters_1; } inline void set_UnityMemberGetters_1(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * value) { ___UnityMemberGetters_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnityMemberGetters_1), (void*)value); } inline static int32_t get_offset_of_UnityMemberSetters_2() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___UnityMemberSetters_2)); } inline Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * get_UnityMemberSetters_2() const { return ___UnityMemberSetters_2; } inline Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF ** get_address_of_UnityMemberSetters_2() { return &___UnityMemberSetters_2; } inline void set_UnityMemberSetters_2(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * value) { ___UnityMemberSetters_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnityMemberSetters_2), (void*)value); } inline static int32_t get_offset_of_UnityWillSerializeMembersCache_3() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___UnityWillSerializeMembersCache_3)); } inline Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * get_UnityWillSerializeMembersCache_3() const { return ___UnityWillSerializeMembersCache_3; } inline Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 ** get_address_of_UnityWillSerializeMembersCache_3() { return &___UnityWillSerializeMembersCache_3; } inline void set_UnityWillSerializeMembersCache_3(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * value) { ___UnityWillSerializeMembersCache_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnityWillSerializeMembersCache_3), (void*)value); } inline static int32_t get_offset_of_UnityWillSerializeTypesCache_4() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___UnityWillSerializeTypesCache_4)); } inline Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * get_UnityWillSerializeTypesCache_4() const { return ___UnityWillSerializeTypesCache_4; } inline Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 ** get_address_of_UnityWillSerializeTypesCache_4() { return &___UnityWillSerializeTypesCache_4; } inline void set_UnityWillSerializeTypesCache_4(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * value) { ___UnityWillSerializeTypesCache_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnityWillSerializeTypesCache_4), (void*)value); } inline static int32_t get_offset_of_UnityNeverSerializesTypes_5() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___UnityNeverSerializesTypes_5)); } inline HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * get_UnityNeverSerializesTypes_5() const { return ___UnityNeverSerializesTypes_5; } inline HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 ** get_address_of_UnityNeverSerializesTypes_5() { return &___UnityNeverSerializesTypes_5; } inline void set_UnityNeverSerializesTypes_5(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * value) { ___UnityNeverSerializesTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnityNeverSerializesTypes_5), (void*)value); } inline static int32_t get_offset_of_UnityPolicy_6() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___UnityPolicy_6)); } inline RuntimeObject* get_UnityPolicy_6() const { return ___UnityPolicy_6; } inline RuntimeObject** get_address_of_UnityPolicy_6() { return &___UnityPolicy_6; } inline void set_UnityPolicy_6(RuntimeObject* value) { ___UnityPolicy_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnityPolicy_6), (void*)value); } inline static int32_t get_offset_of_EverythingPolicy_7() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___EverythingPolicy_7)); } inline RuntimeObject* get_EverythingPolicy_7() const { return ___EverythingPolicy_7; } inline RuntimeObject** get_address_of_EverythingPolicy_7() { return &___EverythingPolicy_7; } inline void set_EverythingPolicy_7(RuntimeObject* value) { ___EverythingPolicy_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___EverythingPolicy_7), (void*)value); } inline static int32_t get_offset_of_StrictPolicy_8() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___StrictPolicy_8)); } inline RuntimeObject* get_StrictPolicy_8() const { return ___StrictPolicy_8; } inline RuntimeObject** get_address_of_StrictPolicy_8() { return &___StrictPolicy_8; } inline void set_StrictPolicy_8(RuntimeObject* value) { ___StrictPolicy_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___StrictPolicy_8), (void*)value); } inline static int32_t get_offset_of_OdinWillSerializeCache_UnityPolicy_9() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___OdinWillSerializeCache_UnityPolicy_9)); } inline Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * get_OdinWillSerializeCache_UnityPolicy_9() const { return ___OdinWillSerializeCache_UnityPolicy_9; } inline Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F ** get_address_of_OdinWillSerializeCache_UnityPolicy_9() { return &___OdinWillSerializeCache_UnityPolicy_9; } inline void set_OdinWillSerializeCache_UnityPolicy_9(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * value) { ___OdinWillSerializeCache_UnityPolicy_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___OdinWillSerializeCache_UnityPolicy_9), (void*)value); } inline static int32_t get_offset_of_OdinWillSerializeCache_EverythingPolicy_10() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___OdinWillSerializeCache_EverythingPolicy_10)); } inline Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * get_OdinWillSerializeCache_EverythingPolicy_10() const { return ___OdinWillSerializeCache_EverythingPolicy_10; } inline Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F ** get_address_of_OdinWillSerializeCache_EverythingPolicy_10() { return &___OdinWillSerializeCache_EverythingPolicy_10; } inline void set_OdinWillSerializeCache_EverythingPolicy_10(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * value) { ___OdinWillSerializeCache_EverythingPolicy_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___OdinWillSerializeCache_EverythingPolicy_10), (void*)value); } inline static int32_t get_offset_of_OdinWillSerializeCache_StrictPolicy_11() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___OdinWillSerializeCache_StrictPolicy_11)); } inline Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * get_OdinWillSerializeCache_StrictPolicy_11() const { return ___OdinWillSerializeCache_StrictPolicy_11; } inline Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F ** get_address_of_OdinWillSerializeCache_StrictPolicy_11() { return &___OdinWillSerializeCache_StrictPolicy_11; } inline void set_OdinWillSerializeCache_StrictPolicy_11(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * value) { ___OdinWillSerializeCache_StrictPolicy_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___OdinWillSerializeCache_StrictPolicy_11), (void*)value); } inline static int32_t get_offset_of_OdinWillSerializeCache_CustomPolicies_12() { return static_cast<int32_t>(offsetof(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields, ___OdinWillSerializeCache_CustomPolicies_12)); } inline Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * get_OdinWillSerializeCache_CustomPolicies_12() const { return ___OdinWillSerializeCache_CustomPolicies_12; } inline Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E ** get_address_of_OdinWillSerializeCache_CustomPolicies_12() { return &___OdinWillSerializeCache_CustomPolicies_12; } inline void set_OdinWillSerializeCache_CustomPolicies_12(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * value) { ___OdinWillSerializeCache_CustomPolicies_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___OdinWillSerializeCache_CustomPolicies_12), (void*)value); } }; // Sirenix.Serialization.UnitySerializationUtility_<>c struct U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 : public RuntimeObject { public: public: }; struct U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_StaticFields { public: // Sirenix.Serialization.UnitySerializationUtility_<>c Sirenix.Serialization.UnitySerializationUtility_<>c::<>9 U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 * ___U3CU3E9_0; // System.Comparison`1<Sirenix.Serialization.PrefabModification> Sirenix.Serialization.UnitySerializationUtility_<>c::<>9__29_0 Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * ___U3CU3E9__29_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__29_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_StaticFields, ___U3CU3E9__29_0_1)); } inline Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * get_U3CU3E9__29_0_1() const { return ___U3CU3E9__29_0_1; } inline Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 ** get_address_of_U3CU3E9__29_0_1() { return &___U3CU3E9__29_0_1; } inline void set_U3CU3E9__29_0_1(Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * value) { ___U3CU3E9__29_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__29_0_1), (void*)value); } }; // Sirenix.Serialization.UnitySerializationUtility_<>c__DisplayClass35_0 struct U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE : public RuntimeObject { public: // System.Reflection.MemberInfo Sirenix.Serialization.UnitySerializationUtility_<>c__DisplayClass35_0::member MemberInfo_t * ___member_0; public: inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE, ___member_0)); } inline MemberInfo_t * get_member_0() const { return ___member_0; } inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; } inline void set_member_0(MemberInfo_t * value) { ___member_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___member_0), (void*)value); } }; // Sirenix.Serialization.UnitySerializationUtility_<>c__DisplayClass36_0 struct U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA : public RuntimeObject { public: // System.Reflection.MemberInfo Sirenix.Serialization.UnitySerializationUtility_<>c__DisplayClass36_0::member MemberInfo_t * ___member_0; public: inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA, ___member_0)); } inline MemberInfo_t * get_member_0() const { return ___member_0; } inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; } inline void set_member_0(MemberInfo_t * value) { ___member_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___member_0), (void*)value); } }; // Sirenix.Serialization.Utilities.EmitUtilities struct EmitUtilities_t33D346F46D027EEDCAB6DA533FDBBC954AB09223 : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass11_0 struct U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 : public RuntimeObject { public: // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass11_0::fieldInfo FieldInfo_t * ___fieldInfo_0; public: inline static int32_t get_offset_of_fieldInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733, ___fieldInfo_0)); } inline FieldInfo_t * get_fieldInfo_0() const { return ___fieldInfo_0; } inline FieldInfo_t ** get_address_of_fieldInfo_0() { return &___fieldInfo_0; } inline void set_fieldInfo_0(FieldInfo_t * value) { ___fieldInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldInfo_0), (void*)value); } }; // Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass12_0 struct U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 : public RuntimeObject { public: // System.Reflection.PropertyInfo Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass12_0::propertyInfo PropertyInfo_t * ___propertyInfo_0; public: inline static int32_t get_offset_of_propertyInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4, ___propertyInfo_0)); } inline PropertyInfo_t * get_propertyInfo_0() const { return ___propertyInfo_0; } inline PropertyInfo_t ** get_address_of_propertyInfo_0() { return &___propertyInfo_0; } inline void set_propertyInfo_0(PropertyInfo_t * value) { ___propertyInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___propertyInfo_0), (void*)value); } }; // Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass13_0 struct U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E : public RuntimeObject { public: // System.Reflection.PropertyInfo Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass13_0::propertyInfo PropertyInfo_t * ___propertyInfo_0; public: inline static int32_t get_offset_of_propertyInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E, ___propertyInfo_0)); } inline PropertyInfo_t * get_propertyInfo_0() const { return ___propertyInfo_0; } inline PropertyInfo_t ** get_address_of_propertyInfo_0() { return &___propertyInfo_0; } inline void set_propertyInfo_0(PropertyInfo_t * value) { ___propertyInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___propertyInfo_0), (void*)value); } }; // Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass21_0 struct U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 : public RuntimeObject { public: // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass21_0::methodInfo MethodInfo_t * ___methodInfo_0; public: inline static int32_t get_offset_of_methodInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6, ___methodInfo_0)); } inline MethodInfo_t * get_methodInfo_0() const { return ___methodInfo_0; } inline MethodInfo_t ** get_address_of_methodInfo_0() { return &___methodInfo_0; } inline void set_methodInfo_0(MethodInfo_t * value) { ___methodInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___methodInfo_0), (void*)value); } }; // Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass3_0 struct U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 : public RuntimeObject { public: // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass3_0::fieldInfo FieldInfo_t * ___fieldInfo_0; public: inline static int32_t get_offset_of_fieldInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784, ___fieldInfo_0)); } inline FieldInfo_t * get_fieldInfo_0() const { return ___fieldInfo_0; } inline FieldInfo_t ** get_address_of_fieldInfo_0() { return &___fieldInfo_0; } inline void set_fieldInfo_0(FieldInfo_t * value) { ___fieldInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldInfo_0), (void*)value); } }; // Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass5_0 struct U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 : public RuntimeObject { public: // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass5_0::fieldInfo FieldInfo_t * ___fieldInfo_0; public: inline static int32_t get_offset_of_fieldInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12, ___fieldInfo_0)); } inline FieldInfo_t * get_fieldInfo_0() const { return ___fieldInfo_0; } inline FieldInfo_t ** get_address_of_fieldInfo_0() { return &___fieldInfo_0; } inline void set_fieldInfo_0(FieldInfo_t * value) { ___fieldInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldInfo_0), (void*)value); } }; // Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass8_0 struct U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 : public RuntimeObject { public: // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass8_0::fieldInfo FieldInfo_t * ___fieldInfo_0; public: inline static int32_t get_offset_of_fieldInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614, ___fieldInfo_0)); } inline FieldInfo_t * get_fieldInfo_0() const { return ___fieldInfo_0; } inline FieldInfo_t ** get_address_of_fieldInfo_0() { return &___fieldInfo_0; } inline void set_fieldInfo_0(FieldInfo_t * value) { ___fieldInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldInfo_0), (void*)value); } }; // Sirenix.Serialization.Utilities.FastTypeComparer struct FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 : public RuntimeObject { public: public: }; struct FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_StaticFields { public: // Sirenix.Serialization.Utilities.FastTypeComparer Sirenix.Serialization.Utilities.FastTypeComparer::Instance FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * ___Instance_0; public: inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_StaticFields, ___Instance_0)); } inline FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * get_Instance_0() const { return ___Instance_0; } inline FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 ** get_address_of_Instance_0() { return &___Instance_0; } inline void set_Instance_0(FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * value) { ___Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value); } }; // Sirenix.Serialization.Utilities.FieldInfoExtensions struct FieldInfoExtensions_tF292ED8B3F24051CD6DC3E0D969D09FE54124C39 : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.GarbageFreeIterators struct GarbageFreeIterators_t5B46C9BE9A6B173B6ECD90710E9163358106A91F : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.ImmutableList struct ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE : public RuntimeObject { public: // System.Collections.IList Sirenix.Serialization.Utilities.ImmutableList::innerList RuntimeObject* ___innerList_0; public: inline static int32_t get_offset_of_innerList_0() { return static_cast<int32_t>(offsetof(ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE, ___innerList_0)); } inline RuntimeObject* get_innerList_0() const { return ___innerList_0; } inline RuntimeObject** get_address_of_innerList_0() { return &___innerList_0; } inline void set_innerList_0(RuntimeObject* value) { ___innerList_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___innerList_0), (void*)value); } }; // Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25 struct U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 : public RuntimeObject { public: // System.Int32 Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Sirenix.Serialization.Utilities.ImmutableList Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::<>4__this ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * ___U3CU3E4__this_2; // System.Collections.IEnumerator Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::<>7__wrap1 RuntimeObject* ___U3CU3E7__wrap1_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480, ___U3CU3E4__this_2)); } inline ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_3() { return static_cast<int32_t>(offsetof(U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480, ___U3CU3E7__wrap1_3)); } inline RuntimeObject* get_U3CU3E7__wrap1_3() const { return ___U3CU3E7__wrap1_3; } inline RuntimeObject** get_address_of_U3CU3E7__wrap1_3() { return &___U3CU3E7__wrap1_3; } inline void set_U3CU3E7__wrap1_3(RuntimeObject* value) { ___U3CU3E7__wrap1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap1_3), (void*)value); } }; // Sirenix.Serialization.Utilities.LinqExtensions struct LinqExtensions_tF1A9A1154D123EA0B20B0EC59EA33B73F462E51D : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.MemberInfoExtensions struct MemberInfoExtensions_t87CC6BB7FD5A6EE0A1D03D04B7E1280D9DC3293F : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.MethodInfoExtensions struct MethodInfoExtensions_t989B66E1B0B9CA7D851CC34A2B203E22B98EF7D5 : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.PathUtilities struct PathUtilities_t9D0926922B06C4063D9D9F476928300B27B16FB9 : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.PropertyInfoExtensions struct PropertyInfoExtensions_tFDD062E8106C01AA5F3B9FFE2A4237982AFB2A09 : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1<Sirenix.Serialization.ISerializationPolicy> struct ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0 : public RuntimeObject { public: public: }; struct ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0_StaticFields { public: // Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1<T> Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1::Default ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0 * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0_StaticFields, ___Default_0)); } inline ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0 * get_Default_0() const { return ___Default_0; } inline ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value); } }; // Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1<System.Reflection.MemberInfo> struct ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 : public RuntimeObject { public: public: }; struct ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_StaticFields { public: // Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1<T> Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1::Default ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_StaticFields, ___Default_0)); } inline ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 * get_Default_0() const { return ___Default_0; } inline ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value); } }; // Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1<UnityEngine.Object> struct ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D : public RuntimeObject { public: public: }; struct ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_StaticFields { public: // Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1<T> Sirenix.Serialization.Utilities.ReferenceEqualityComparer`1::Default ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_StaticFields, ___Default_0)); } inline ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D * get_Default_0() const { return ___Default_0; } inline ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value); } }; // Sirenix.Serialization.Utilities.StringExtensions struct StringExtensions_tD4B70F010381967CA9AAD4E757F41CCEB5965D85 : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.TypeExtensions struct TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59 : public RuntimeObject { public: public: }; struct TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields { public: // System.Func`3<System.Single,System.Single,System.Boolean> Sirenix.Serialization.Utilities.TypeExtensions::FloatEqualityComparerFunc Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 * ___FloatEqualityComparerFunc_0; // System.Func`3<System.Double,System.Double,System.Boolean> Sirenix.Serialization.Utilities.TypeExtensions::DoubleEqualityComparerFunc Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 * ___DoubleEqualityComparerFunc_1; // System.Func`3<UnityEngine.Quaternion,UnityEngine.Quaternion,System.Boolean> Sirenix.Serialization.Utilities.TypeExtensions::QuaternionEqualityComparerFunc Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C * ___QuaternionEqualityComparerFunc_2; // System.Object Sirenix.Serialization.Utilities.TypeExtensions::GenericConstraintsSatisfaction_LOCK RuntimeObject * ___GenericConstraintsSatisfaction_LOCK_3; // System.Collections.Generic.Dictionary`2<System.Type,System.Type> Sirenix.Serialization.Utilities.TypeExtensions::GenericConstraintsSatisfactionInferredParameters Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * ___GenericConstraintsSatisfactionInferredParameters_4; // System.Collections.Generic.Dictionary`2<System.Type,System.Type> Sirenix.Serialization.Utilities.TypeExtensions::GenericConstraintsSatisfactionResolvedMap Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * ___GenericConstraintsSatisfactionResolvedMap_5; // System.Collections.Generic.HashSet`1<System.Type> Sirenix.Serialization.Utilities.TypeExtensions::GenericConstraintsSatisfactionProcessedParams HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * ___GenericConstraintsSatisfactionProcessedParams_6; // System.Type Sirenix.Serialization.Utilities.TypeExtensions::GenericListInterface Type_t * ___GenericListInterface_7; // System.Type Sirenix.Serialization.Utilities.TypeExtensions::GenericCollectionInterface Type_t * ___GenericCollectionInterface_8; // System.Object Sirenix.Serialization.Utilities.TypeExtensions::WeaklyTypedTypeCastDelegates_LOCK RuntimeObject * ___WeaklyTypedTypeCastDelegates_LOCK_9; // System.Object Sirenix.Serialization.Utilities.TypeExtensions::StronglyTypedTypeCastDelegates_LOCK RuntimeObject * ___StronglyTypedTypeCastDelegates_LOCK_10; // Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Func`2<System.Object,System.Object>> Sirenix.Serialization.Utilities.TypeExtensions::WeaklyTypedTypeCastDelegates DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * ___WeaklyTypedTypeCastDelegates_11; // Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Delegate> Sirenix.Serialization.Utilities.TypeExtensions::StronglyTypedTypeCastDelegates DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 * ___StronglyTypedTypeCastDelegates_12; // System.Type[] Sirenix.Serialization.Utilities.TypeExtensions::TwoLengthTypeArray_Cached TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___TwoLengthTypeArray_Cached_13; // System.Collections.Generic.Stack`1<System.Type> Sirenix.Serialization.Utilities.TypeExtensions::GenericArgumentsContainsTypes_ArgsToCheckCached Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * ___GenericArgumentsContainsTypes_ArgsToCheckCached_14; // System.Collections.Generic.HashSet`1<System.String> Sirenix.Serialization.Utilities.TypeExtensions::ReservedCSharpKeywords HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * ___ReservedCSharpKeywords_15; // System.Collections.Generic.Dictionary`2<System.String,System.String> Sirenix.Serialization.Utilities.TypeExtensions::TypeNameAlternatives Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * ___TypeNameAlternatives_16; // System.Object Sirenix.Serialization.Utilities.TypeExtensions::CachedNiceNames_LOCK RuntimeObject * ___CachedNiceNames_LOCK_17; // System.Collections.Generic.Dictionary`2<System.Type,System.String> Sirenix.Serialization.Utilities.TypeExtensions::CachedNiceNames Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * ___CachedNiceNames_18; // System.Type Sirenix.Serialization.Utilities.TypeExtensions::VoidPointerType Type_t * ___VoidPointerType_19; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.HashSet`1<System.Type>> Sirenix.Serialization.Utilities.TypeExtensions::PrimitiveImplicitCasts Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * ___PrimitiveImplicitCasts_20; // System.Collections.Generic.HashSet`1<System.Type> Sirenix.Serialization.Utilities.TypeExtensions::ExplicitCastIntegrals HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * ___ExplicitCastIntegrals_21; public: inline static int32_t get_offset_of_FloatEqualityComparerFunc_0() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___FloatEqualityComparerFunc_0)); } inline Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 * get_FloatEqualityComparerFunc_0() const { return ___FloatEqualityComparerFunc_0; } inline Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 ** get_address_of_FloatEqualityComparerFunc_0() { return &___FloatEqualityComparerFunc_0; } inline void set_FloatEqualityComparerFunc_0(Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 * value) { ___FloatEqualityComparerFunc_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FloatEqualityComparerFunc_0), (void*)value); } inline static int32_t get_offset_of_DoubleEqualityComparerFunc_1() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___DoubleEqualityComparerFunc_1)); } inline Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 * get_DoubleEqualityComparerFunc_1() const { return ___DoubleEqualityComparerFunc_1; } inline Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 ** get_address_of_DoubleEqualityComparerFunc_1() { return &___DoubleEqualityComparerFunc_1; } inline void set_DoubleEqualityComparerFunc_1(Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 * value) { ___DoubleEqualityComparerFunc_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___DoubleEqualityComparerFunc_1), (void*)value); } inline static int32_t get_offset_of_QuaternionEqualityComparerFunc_2() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___QuaternionEqualityComparerFunc_2)); } inline Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C * get_QuaternionEqualityComparerFunc_2() const { return ___QuaternionEqualityComparerFunc_2; } inline Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C ** get_address_of_QuaternionEqualityComparerFunc_2() { return &___QuaternionEqualityComparerFunc_2; } inline void set_QuaternionEqualityComparerFunc_2(Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C * value) { ___QuaternionEqualityComparerFunc_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___QuaternionEqualityComparerFunc_2), (void*)value); } inline static int32_t get_offset_of_GenericConstraintsSatisfaction_LOCK_3() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___GenericConstraintsSatisfaction_LOCK_3)); } inline RuntimeObject * get_GenericConstraintsSatisfaction_LOCK_3() const { return ___GenericConstraintsSatisfaction_LOCK_3; } inline RuntimeObject ** get_address_of_GenericConstraintsSatisfaction_LOCK_3() { return &___GenericConstraintsSatisfaction_LOCK_3; } inline void set_GenericConstraintsSatisfaction_LOCK_3(RuntimeObject * value) { ___GenericConstraintsSatisfaction_LOCK_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericConstraintsSatisfaction_LOCK_3), (void*)value); } inline static int32_t get_offset_of_GenericConstraintsSatisfactionInferredParameters_4() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___GenericConstraintsSatisfactionInferredParameters_4)); } inline Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * get_GenericConstraintsSatisfactionInferredParameters_4() const { return ___GenericConstraintsSatisfactionInferredParameters_4; } inline Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A ** get_address_of_GenericConstraintsSatisfactionInferredParameters_4() { return &___GenericConstraintsSatisfactionInferredParameters_4; } inline void set_GenericConstraintsSatisfactionInferredParameters_4(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * value) { ___GenericConstraintsSatisfactionInferredParameters_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericConstraintsSatisfactionInferredParameters_4), (void*)value); } inline static int32_t get_offset_of_GenericConstraintsSatisfactionResolvedMap_5() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___GenericConstraintsSatisfactionResolvedMap_5)); } inline Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * get_GenericConstraintsSatisfactionResolvedMap_5() const { return ___GenericConstraintsSatisfactionResolvedMap_5; } inline Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A ** get_address_of_GenericConstraintsSatisfactionResolvedMap_5() { return &___GenericConstraintsSatisfactionResolvedMap_5; } inline void set_GenericConstraintsSatisfactionResolvedMap_5(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * value) { ___GenericConstraintsSatisfactionResolvedMap_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericConstraintsSatisfactionResolvedMap_5), (void*)value); } inline static int32_t get_offset_of_GenericConstraintsSatisfactionProcessedParams_6() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___GenericConstraintsSatisfactionProcessedParams_6)); } inline HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * get_GenericConstraintsSatisfactionProcessedParams_6() const { return ___GenericConstraintsSatisfactionProcessedParams_6; } inline HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 ** get_address_of_GenericConstraintsSatisfactionProcessedParams_6() { return &___GenericConstraintsSatisfactionProcessedParams_6; } inline void set_GenericConstraintsSatisfactionProcessedParams_6(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * value) { ___GenericConstraintsSatisfactionProcessedParams_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericConstraintsSatisfactionProcessedParams_6), (void*)value); } inline static int32_t get_offset_of_GenericListInterface_7() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___GenericListInterface_7)); } inline Type_t * get_GenericListInterface_7() const { return ___GenericListInterface_7; } inline Type_t ** get_address_of_GenericListInterface_7() { return &___GenericListInterface_7; } inline void set_GenericListInterface_7(Type_t * value) { ___GenericListInterface_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericListInterface_7), (void*)value); } inline static int32_t get_offset_of_GenericCollectionInterface_8() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___GenericCollectionInterface_8)); } inline Type_t * get_GenericCollectionInterface_8() const { return ___GenericCollectionInterface_8; } inline Type_t ** get_address_of_GenericCollectionInterface_8() { return &___GenericCollectionInterface_8; } inline void set_GenericCollectionInterface_8(Type_t * value) { ___GenericCollectionInterface_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericCollectionInterface_8), (void*)value); } inline static int32_t get_offset_of_WeaklyTypedTypeCastDelegates_LOCK_9() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___WeaklyTypedTypeCastDelegates_LOCK_9)); } inline RuntimeObject * get_WeaklyTypedTypeCastDelegates_LOCK_9() const { return ___WeaklyTypedTypeCastDelegates_LOCK_9; } inline RuntimeObject ** get_address_of_WeaklyTypedTypeCastDelegates_LOCK_9() { return &___WeaklyTypedTypeCastDelegates_LOCK_9; } inline void set_WeaklyTypedTypeCastDelegates_LOCK_9(RuntimeObject * value) { ___WeaklyTypedTypeCastDelegates_LOCK_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___WeaklyTypedTypeCastDelegates_LOCK_9), (void*)value); } inline static int32_t get_offset_of_StronglyTypedTypeCastDelegates_LOCK_10() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___StronglyTypedTypeCastDelegates_LOCK_10)); } inline RuntimeObject * get_StronglyTypedTypeCastDelegates_LOCK_10() const { return ___StronglyTypedTypeCastDelegates_LOCK_10; } inline RuntimeObject ** get_address_of_StronglyTypedTypeCastDelegates_LOCK_10() { return &___StronglyTypedTypeCastDelegates_LOCK_10; } inline void set_StronglyTypedTypeCastDelegates_LOCK_10(RuntimeObject * value) { ___StronglyTypedTypeCastDelegates_LOCK_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___StronglyTypedTypeCastDelegates_LOCK_10), (void*)value); } inline static int32_t get_offset_of_WeaklyTypedTypeCastDelegates_11() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___WeaklyTypedTypeCastDelegates_11)); } inline DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * get_WeaklyTypedTypeCastDelegates_11() const { return ___WeaklyTypedTypeCastDelegates_11; } inline DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 ** get_address_of_WeaklyTypedTypeCastDelegates_11() { return &___WeaklyTypedTypeCastDelegates_11; } inline void set_WeaklyTypedTypeCastDelegates_11(DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * value) { ___WeaklyTypedTypeCastDelegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___WeaklyTypedTypeCastDelegates_11), (void*)value); } inline static int32_t get_offset_of_StronglyTypedTypeCastDelegates_12() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___StronglyTypedTypeCastDelegates_12)); } inline DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 * get_StronglyTypedTypeCastDelegates_12() const { return ___StronglyTypedTypeCastDelegates_12; } inline DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 ** get_address_of_StronglyTypedTypeCastDelegates_12() { return &___StronglyTypedTypeCastDelegates_12; } inline void set_StronglyTypedTypeCastDelegates_12(DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 * value) { ___StronglyTypedTypeCastDelegates_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___StronglyTypedTypeCastDelegates_12), (void*)value); } inline static int32_t get_offset_of_TwoLengthTypeArray_Cached_13() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___TwoLengthTypeArray_Cached_13)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_TwoLengthTypeArray_Cached_13() const { return ___TwoLengthTypeArray_Cached_13; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_TwoLengthTypeArray_Cached_13() { return &___TwoLengthTypeArray_Cached_13; } inline void set_TwoLengthTypeArray_Cached_13(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___TwoLengthTypeArray_Cached_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___TwoLengthTypeArray_Cached_13), (void*)value); } inline static int32_t get_offset_of_GenericArgumentsContainsTypes_ArgsToCheckCached_14() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___GenericArgumentsContainsTypes_ArgsToCheckCached_14)); } inline Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * get_GenericArgumentsContainsTypes_ArgsToCheckCached_14() const { return ___GenericArgumentsContainsTypes_ArgsToCheckCached_14; } inline Stack_1_t9C602025E061B1E201C46568468C7528A6231383 ** get_address_of_GenericArgumentsContainsTypes_ArgsToCheckCached_14() { return &___GenericArgumentsContainsTypes_ArgsToCheckCached_14; } inline void set_GenericArgumentsContainsTypes_ArgsToCheckCached_14(Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * value) { ___GenericArgumentsContainsTypes_ArgsToCheckCached_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericArgumentsContainsTypes_ArgsToCheckCached_14), (void*)value); } inline static int32_t get_offset_of_ReservedCSharpKeywords_15() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___ReservedCSharpKeywords_15)); } inline HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * get_ReservedCSharpKeywords_15() const { return ___ReservedCSharpKeywords_15; } inline HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E ** get_address_of_ReservedCSharpKeywords_15() { return &___ReservedCSharpKeywords_15; } inline void set_ReservedCSharpKeywords_15(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * value) { ___ReservedCSharpKeywords_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReservedCSharpKeywords_15), (void*)value); } inline static int32_t get_offset_of_TypeNameAlternatives_16() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___TypeNameAlternatives_16)); } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * get_TypeNameAlternatives_16() const { return ___TypeNameAlternatives_16; } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC ** get_address_of_TypeNameAlternatives_16() { return &___TypeNameAlternatives_16; } inline void set_TypeNameAlternatives_16(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * value) { ___TypeNameAlternatives_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeNameAlternatives_16), (void*)value); } inline static int32_t get_offset_of_CachedNiceNames_LOCK_17() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___CachedNiceNames_LOCK_17)); } inline RuntimeObject * get_CachedNiceNames_LOCK_17() const { return ___CachedNiceNames_LOCK_17; } inline RuntimeObject ** get_address_of_CachedNiceNames_LOCK_17() { return &___CachedNiceNames_LOCK_17; } inline void set_CachedNiceNames_LOCK_17(RuntimeObject * value) { ___CachedNiceNames_LOCK_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___CachedNiceNames_LOCK_17), (void*)value); } inline static int32_t get_offset_of_CachedNiceNames_18() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___CachedNiceNames_18)); } inline Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * get_CachedNiceNames_18() const { return ___CachedNiceNames_18; } inline Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 ** get_address_of_CachedNiceNames_18() { return &___CachedNiceNames_18; } inline void set_CachedNiceNames_18(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * value) { ___CachedNiceNames_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___CachedNiceNames_18), (void*)value); } inline static int32_t get_offset_of_VoidPointerType_19() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___VoidPointerType_19)); } inline Type_t * get_VoidPointerType_19() const { return ___VoidPointerType_19; } inline Type_t ** get_address_of_VoidPointerType_19() { return &___VoidPointerType_19; } inline void set_VoidPointerType_19(Type_t * value) { ___VoidPointerType_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___VoidPointerType_19), (void*)value); } inline static int32_t get_offset_of_PrimitiveImplicitCasts_20() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___PrimitiveImplicitCasts_20)); } inline Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * get_PrimitiveImplicitCasts_20() const { return ___PrimitiveImplicitCasts_20; } inline Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B ** get_address_of_PrimitiveImplicitCasts_20() { return &___PrimitiveImplicitCasts_20; } inline void set_PrimitiveImplicitCasts_20(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * value) { ___PrimitiveImplicitCasts_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimitiveImplicitCasts_20), (void*)value); } inline static int32_t get_offset_of_ExplicitCastIntegrals_21() { return static_cast<int32_t>(offsetof(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields, ___ExplicitCastIntegrals_21)); } inline HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * get_ExplicitCastIntegrals_21() const { return ___ExplicitCastIntegrals_21; } inline HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 ** get_address_of_ExplicitCastIntegrals_21() { return &___ExplicitCastIntegrals_21; } inline void set_ExplicitCastIntegrals_21(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * value) { ___ExplicitCastIntegrals_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExplicitCastIntegrals_21), (void*)value); } }; // Sirenix.Serialization.Utilities.TypeExtensions_<>c__DisplayClass29_0 struct U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5 : public RuntimeObject { public: // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.TypeExtensions_<>c__DisplayClass29_0::method MethodInfo_t * ___method_0; public: inline static int32_t get_offset_of_method_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5, ___method_0)); } inline MethodInfo_t * get_method_0() const { return ___method_0; } inline MethodInfo_t ** get_address_of_method_0() { return &___method_0; } inline void set_method_0(MethodInfo_t * value) { ___method_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_0), (void*)value); } }; // Sirenix.Serialization.Utilities.TypeExtensions_<>c__DisplayClass45_0 struct U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 : public RuntimeObject { public: // System.String Sirenix.Serialization.Utilities.TypeExtensions_<>c__DisplayClass45_0::methodName String_t* ___methodName_0; public: inline static int32_t get_offset_of_methodName_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832, ___methodName_0)); } inline String_t* get_methodName_0() const { return ___methodName_0; } inline String_t** get_address_of_methodName_0() { return &___methodName_0; } inline void set_methodName_0(String_t* value) { ___methodName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___methodName_0), (void*)value); } }; // Sirenix.Serialization.Utilities.TypeExtensions_<>c__DisplayClass46_0 struct U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B : public RuntimeObject { public: // System.String Sirenix.Serialization.Utilities.TypeExtensions_<>c__DisplayClass46_0::methodName String_t* ___methodName_0; public: inline static int32_t get_offset_of_methodName_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B, ___methodName_0)); } inline String_t* get_methodName_0() const { return ___methodName_0; } inline String_t** get_address_of_methodName_0() { return &___methodName_0; } inline void set_methodName_0(String_t* value) { ___methodName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___methodName_0), (void*)value); } }; // Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53 struct U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F : public RuntimeObject { public: // System.Int32 Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53::<>1__state int32_t ___U3CU3E1__state_0; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53::<>2__current Type_t * ___U3CU3E2__current_1; // System.Int32 Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53::type Type_t * ___type_3; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53::<>3__type Type_t * ___U3CU3E3__type_4; // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53::includeSelf bool ___includeSelf_5; // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53::<>3__includeSelf bool ___U3CU3E3__includeSelf_6; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetBaseClasses>d__53::<current>5__1 Type_t * ___U3CcurrentU3E5__1_7; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F, ___U3CU3E2__current_1)); } inline Type_t * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline Type_t ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(Type_t * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F, ___type_3)); } inline Type_t * get_type_3() const { return ___type_3; } inline Type_t ** get_address_of_type_3() { return &___type_3; } inline void set_type_3(Type_t * value) { ___type_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__type_4() { return static_cast<int32_t>(offsetof(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F, ___U3CU3E3__type_4)); } inline Type_t * get_U3CU3E3__type_4() const { return ___U3CU3E3__type_4; } inline Type_t ** get_address_of_U3CU3E3__type_4() { return &___U3CU3E3__type_4; } inline void set_U3CU3E3__type_4(Type_t * value) { ___U3CU3E3__type_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__type_4), (void*)value); } inline static int32_t get_offset_of_includeSelf_5() { return static_cast<int32_t>(offsetof(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F, ___includeSelf_5)); } inline bool get_includeSelf_5() const { return ___includeSelf_5; } inline bool* get_address_of_includeSelf_5() { return &___includeSelf_5; } inline void set_includeSelf_5(bool value) { ___includeSelf_5 = value; } inline static int32_t get_offset_of_U3CU3E3__includeSelf_6() { return static_cast<int32_t>(offsetof(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F, ___U3CU3E3__includeSelf_6)); } inline bool get_U3CU3E3__includeSelf_6() const { return ___U3CU3E3__includeSelf_6; } inline bool* get_address_of_U3CU3E3__includeSelf_6() { return &___U3CU3E3__includeSelf_6; } inline void set_U3CU3E3__includeSelf_6(bool value) { ___U3CU3E3__includeSelf_6 = value; } inline static int32_t get_offset_of_U3CcurrentU3E5__1_7() { return static_cast<int32_t>(offsetof(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F, ___U3CcurrentU3E5__1_7)); } inline Type_t * get_U3CcurrentU3E5__1_7() const { return ___U3CcurrentU3E5__1_7; } inline Type_t ** get_address_of_U3CcurrentU3E5__1_7() { return &___U3CcurrentU3E5__1_7; } inline void set_U3CcurrentU3E5__1_7(Type_t * value) { ___U3CcurrentU3E5__1_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CcurrentU3E5__1_7), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject { public: public: }; // System.Collections.Generic.Dictionary`2<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult>> struct Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tDD32B44C5E11DE3A0F90CDDBDFB9B6A0420E8439* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tE3902439AD2E48CCBCCF182F6B04799815F404CA * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tC00093F68962BC5B79FE19680F13FD873EA85CD1 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___entries_1)); } inline EntryU5BU5D_tDD32B44C5E11DE3A0F90CDDBDFB9B6A0420E8439* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tDD32B44C5E11DE3A0F90CDDBDFB9B6A0420E8439** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tDD32B44C5E11DE3A0F90CDDBDFB9B6A0420E8439* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___keys_7)); } inline KeyCollection_tE3902439AD2E48CCBCCF182F6B04799815F404CA * get_keys_7() const { return ___keys_7; } inline KeyCollection_tE3902439AD2E48CCBCCF182F6B04799815F404CA ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tE3902439AD2E48CCBCCF182F6B04799815F404CA * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ___values_8)); } inline ValueCollection_tC00093F68962BC5B79FE19680F13FD873EA85CD1 * get_values_8() const { return ___values_8; } inline ValueCollection_tC00093F68962BC5B79FE19680F13FD873EA85CD1 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tC00093F68962BC5B79FE19680F13FD873EA85CD1 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult> struct Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC82F9232C756283727F37BC2E9069ED6C928F4D2* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t6C4E827DC9C06766592956CA1816D1CBF516D2DF * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t560EA0377F47C8DCEA86C9AABA99D957FACACB93 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___entries_1)); } inline EntryU5BU5D_tC82F9232C756283727F37BC2E9069ED6C928F4D2* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC82F9232C756283727F37BC2E9069ED6C928F4D2** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC82F9232C756283727F37BC2E9069ED6C928F4D2* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___keys_7)); } inline KeyCollection_t6C4E827DC9C06766592956CA1816D1CBF516D2DF * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6C4E827DC9C06766592956CA1816D1CBF516D2DF ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6C4E827DC9C06766592956CA1816D1CBF516D2DF * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ___values_8)); } inline ValueCollection_t560EA0377F47C8DCEA86C9AABA99D957FACACB93 * get_values_8() const { return ___values_8; } inline ValueCollection_t560EA0377F47C8DCEA86C9AABA99D957FACACB93 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t560EA0377F47C8DCEA86C9AABA99D957FACACB93 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter> struct Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t21540184F40BFB92DC37D626D13D66157E33B709* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t6B0B0E9A4D75C9E8E9DD8FB872620B9F84D519E9 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8FC9ECD52DB0FD5A8F4ECBFB855F1408DFC5F0AD * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___entries_1)); } inline EntryU5BU5D_t21540184F40BFB92DC37D626D13D66157E33B709* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t21540184F40BFB92DC37D626D13D66157E33B709** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t21540184F40BFB92DC37D626D13D66157E33B709* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___keys_7)); } inline KeyCollection_t6B0B0E9A4D75C9E8E9DD8FB872620B9F84D519E9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6B0B0E9A4D75C9E8E9DD8FB872620B9F84D519E9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6B0B0E9A4D75C9E8E9DD8FB872620B9F84D519E9 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ___values_8)); } inline ValueCollection_t8FC9ECD52DB0FD5A8F4ECBFB855F1408DFC5F0AD * get_values_8() const { return ___values_8; } inline ValueCollection_t8FC9ECD52DB0FD5A8F4ECBFB855F1408DFC5F0AD ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8FC9ECD52DB0FD5A8F4ECBFB855F1408DFC5F0AD * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter> struct Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7538D1AA396D7789AF81D055A2B0451957AEDF7B* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t40D73C55BAF94CD7A52F4038E5D0EF8CA3D28F63 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tEB6686E15960C38AE60043330D5B60560381076D * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___entries_1)); } inline EntryU5BU5D_t7538D1AA396D7789AF81D055A2B0451957AEDF7B* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7538D1AA396D7789AF81D055A2B0451957AEDF7B** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7538D1AA396D7789AF81D055A2B0451957AEDF7B* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___keys_7)); } inline KeyCollection_t40D73C55BAF94CD7A52F4038E5D0EF8CA3D28F63 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t40D73C55BAF94CD7A52F4038E5D0EF8CA3D28F63 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t40D73C55BAF94CD7A52F4038E5D0EF8CA3D28F63 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ___values_8)); } inline ValueCollection_tEB6686E15960C38AE60043330D5B60560381076D * get_values_8() const { return ___values_8; } inline ValueCollection_tEB6686E15960C38AE60043330D5B60560381076D ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tEB6686E15960C38AE60043330D5B60560381076D * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,System.Boolean> struct Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t89B280136C66BA77F03833EDC5AC5E80FF958E58* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t49BA8AA25AD5F0AD391E8AB005DEA9A90F858CB9 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t23D2C0BD766814409C3232D041E75F665F9863AB * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___entries_1)); } inline EntryU5BU5D_t89B280136C66BA77F03833EDC5AC5E80FF958E58* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t89B280136C66BA77F03833EDC5AC5E80FF958E58** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t89B280136C66BA77F03833EDC5AC5E80FF958E58* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___keys_7)); } inline KeyCollection_t49BA8AA25AD5F0AD391E8AB005DEA9A90F858CB9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t49BA8AA25AD5F0AD391E8AB005DEA9A90F858CB9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t49BA8AA25AD5F0AD391E8AB005DEA9A90F858CB9 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ___values_8)); } inline ValueCollection_t23D2C0BD766814409C3232D041E75F665F9863AB * get_values_8() const { return ___values_8; } inline ValueCollection_t23D2C0BD766814409C3232D041E75F665F9863AB ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t23D2C0BD766814409C3232D041E75F665F9863AB * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.String,System.Reflection.MemberInfo> struct Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t704B1B3BB80A6E50335E01B03B0D2E810E90E6D5* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t4F580704A19BB1A25AA1D4DC8D90A9904A9B5362 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tB68360699A4545D7A922E9AD1767C758DAE7ACE9 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___entries_1)); } inline EntryU5BU5D_t704B1B3BB80A6E50335E01B03B0D2E810E90E6D5* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t704B1B3BB80A6E50335E01B03B0D2E810E90E6D5** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t704B1B3BB80A6E50335E01B03B0D2E810E90E6D5* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___keys_7)); } inline KeyCollection_t4F580704A19BB1A25AA1D4DC8D90A9904A9B5362 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t4F580704A19BB1A25AA1D4DC8D90A9904A9B5362 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t4F580704A19BB1A25AA1D4DC8D90A9904A9B5362 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ___values_8)); } inline ValueCollection_tB68360699A4545D7A922E9AD1767C758DAE7ACE9 * get_values_8() const { return ___values_8; } inline ValueCollection_tB68360699A4545D7A922E9AD1767C758DAE7ACE9 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tB68360699A4545D7A922E9AD1767C758DAE7ACE9 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.String,System.String> struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___entries_1)); } inline EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___keys_7)); } inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___values_8)); } inline ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * get_values_8() const { return ___values_8; } inline ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Type,Sirenix.Serialization.Serializer> struct Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tEE1DF6D2C6057F9C0BB389A06B2009C0617EDC57* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tFF29EF74520497B6CB78FC6278E8C855145A6D35 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t790232E0AE59FCC00556B781C7F77AB275CD2179 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___entries_1)); } inline EntryU5BU5D_tEE1DF6D2C6057F9C0BB389A06B2009C0617EDC57* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tEE1DF6D2C6057F9C0BB389A06B2009C0617EDC57** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tEE1DF6D2C6057F9C0BB389A06B2009C0617EDC57* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___keys_7)); } inline KeyCollection_tFF29EF74520497B6CB78FC6278E8C855145A6D35 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tFF29EF74520497B6CB78FC6278E8C855145A6D35 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tFF29EF74520497B6CB78FC6278E8C855145A6D35 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ___values_8)); } inline ValueCollection_t790232E0AE59FCC00556B781C7F77AB275CD2179 * get_values_8() const { return ___values_8; } inline ValueCollection_t790232E0AE59FCC00556B781C7F77AB275CD2179 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t790232E0AE59FCC00556B781C7F77AB275CD2179 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Type,System.Boolean> struct Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t43DF18B5CCCBF121F9271686E64FE56F00C002D6* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t8961095D917B2B7794D22F6E914EE112F84B4E2B * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t45B7C7DF84449FAC70200B837A1901A73FE87BE6 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___entries_1)); } inline EntryU5BU5D_t43DF18B5CCCBF121F9271686E64FE56F00C002D6* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t43DF18B5CCCBF121F9271686E64FE56F00C002D6** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t43DF18B5CCCBF121F9271686E64FE56F00C002D6* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___keys_7)); } inline KeyCollection_t8961095D917B2B7794D22F6E914EE112F84B4E2B * get_keys_7() const { return ___keys_7; } inline KeyCollection_t8961095D917B2B7794D22F6E914EE112F84B4E2B ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t8961095D917B2B7794D22F6E914EE112F84B4E2B * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ___values_8)); } inline ValueCollection_t45B7C7DF84449FAC70200B837A1901A73FE87BE6 * get_values_8() const { return ___values_8; } inline ValueCollection_t45B7C7DF84449FAC70200B837A1901A73FE87BE6 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t45B7C7DF84449FAC70200B837A1901A73FE87BE6 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Delegate>> struct Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE61A6353F92D5596707FC2D6B710412A482B741A* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tA20C8A78EDA1181B7E4B7786CF73E4A985E20F7F * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t2E719AD65D1B0D728352023E5C80B167AAEF5893 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___entries_1)); } inline EntryU5BU5D_tE61A6353F92D5596707FC2D6B710412A482B741A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE61A6353F92D5596707FC2D6B710412A482B741A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE61A6353F92D5596707FC2D6B710412A482B741A* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___keys_7)); } inline KeyCollection_tA20C8A78EDA1181B7E4B7786CF73E4A985E20F7F * get_keys_7() const { return ___keys_7; } inline KeyCollection_tA20C8A78EDA1181B7E4B7786CF73E4A985E20F7F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tA20C8A78EDA1181B7E4B7786CF73E4A985E20F7F * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ___values_8)); } inline ValueCollection_t2E719AD65D1B0D728352023E5C80B167AAEF5893 * get_values_8() const { return ___values_8; } inline ValueCollection_t2E719AD65D1B0D728352023E5C80B167AAEF5893 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t2E719AD65D1B0D728352023E5C80B167AAEF5893 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>> struct Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t6168558EA4441D34622CB79F30AB3A8DD33A4A3A* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t73AAE46E4B376D1F1115864A5E0A48A6A5119CDC * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t788B7F54157F3C4B25DB09F53C1F8D1C71E2DB2B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___entries_1)); } inline EntryU5BU5D_t6168558EA4441D34622CB79F30AB3A8DD33A4A3A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t6168558EA4441D34622CB79F30AB3A8DD33A4A3A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t6168558EA4441D34622CB79F30AB3A8DD33A4A3A* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___keys_7)); } inline KeyCollection_t73AAE46E4B376D1F1115864A5E0A48A6A5119CDC * get_keys_7() const { return ___keys_7; } inline KeyCollection_t73AAE46E4B376D1F1115864A5E0A48A6A5119CDC ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t73AAE46E4B376D1F1115864A5E0A48A6A5119CDC * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ___values_8)); } inline ValueCollection_t788B7F54157F3C4B25DB09F53C1F8D1C71E2DB2B * get_values_8() const { return ___values_8; } inline ValueCollection_t788B7F54157F3C4B25DB09F53C1F8D1C71E2DB2B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t788B7F54157F3C4B25DB09F53C1F8D1C71E2DB2B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.HashSet`1<System.Type>> struct Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2DF17F95ACBFB7967C984CF917FD3DCAFA81F82F* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tFB40EC389F72F702AF4D37D0DAB6365144696994 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tC91E1F2D4115F3AD401DC2F363CEFC0CF718D36E * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___entries_1)); } inline EntryU5BU5D_t2DF17F95ACBFB7967C984CF917FD3DCAFA81F82F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2DF17F95ACBFB7967C984CF917FD3DCAFA81F82F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2DF17F95ACBFB7967C984CF917FD3DCAFA81F82F* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___keys_7)); } inline KeyCollection_tFB40EC389F72F702AF4D37D0DAB6365144696994 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tFB40EC389F72F702AF4D37D0DAB6365144696994 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tFB40EC389F72F702AF4D37D0DAB6365144696994 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ___values_8)); } inline ValueCollection_tC91E1F2D4115F3AD401DC2F363CEFC0CF718D36E * get_values_8() const { return ___values_8; } inline ValueCollection_tC91E1F2D4115F3AD401DC2F363CEFC0CF718D36E ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tC91E1F2D4115F3AD401DC2F363CEFC0CF718D36E * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Type,System.Delegate> struct Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t60815C5143CE2309306B23DA2F8A1F1388277844* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t6155247D2D9F2D0631C418E84047527D3BD51CF2 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8DF2B19523CC28FC23B18AEC67237D3FAE3A62BD * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___entries_1)); } inline EntryU5BU5D_t60815C5143CE2309306B23DA2F8A1F1388277844* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t60815C5143CE2309306B23DA2F8A1F1388277844** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t60815C5143CE2309306B23DA2F8A1F1388277844* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___keys_7)); } inline KeyCollection_t6155247D2D9F2D0631C418E84047527D3BD51CF2 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6155247D2D9F2D0631C418E84047527D3BD51CF2 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6155247D2D9F2D0631C418E84047527D3BD51CF2 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ___values_8)); } inline ValueCollection_t8DF2B19523CC28FC23B18AEC67237D3FAE3A62BD * get_values_8() const { return ___values_8; } inline ValueCollection_t8DF2B19523CC28FC23B18AEC67237D3FAE3A62BD ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8DF2B19523CC28FC23B18AEC67237D3FAE3A62BD * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Type,System.String> struct Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8FD09C484A277397E48AE2F41F262989CFF0C4C0* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t2AA3595B98EF828F42FEE57CCD2966408A3EA9D1 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tC0073740DB49A62E9B86F3C3252DB5F0ACA8EE05 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___entries_1)); } inline EntryU5BU5D_t8FD09C484A277397E48AE2F41F262989CFF0C4C0* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8FD09C484A277397E48AE2F41F262989CFF0C4C0** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8FD09C484A277397E48AE2F41F262989CFF0C4C0* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___keys_7)); } inline KeyCollection_t2AA3595B98EF828F42FEE57CCD2966408A3EA9D1 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t2AA3595B98EF828F42FEE57CCD2966408A3EA9D1 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t2AA3595B98EF828F42FEE57CCD2966408A3EA9D1 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ___values_8)); } inline ValueCollection_tC0073740DB49A62E9B86F3C3252DB5F0ACA8EE05 * get_values_8() const { return ___values_8; } inline ValueCollection_tC0073740DB49A62E9B86F3C3252DB5F0ACA8EE05 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tC0073740DB49A62E9B86F3C3252DB5F0ACA8EE05 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Type,System.Type> struct Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2690A8BF41FCD129CC7892733318D6FF81B0BA76* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tE303E6D0331DB2A00B145030FA0FCB9A5CF05742 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t962951F6313574EF794D4A94438AC59053CD24AB * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___entries_1)); } inline EntryU5BU5D_t2690A8BF41FCD129CC7892733318D6FF81B0BA76* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2690A8BF41FCD129CC7892733318D6FF81B0BA76** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2690A8BF41FCD129CC7892733318D6FF81B0BA76* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___keys_7)); } inline KeyCollection_tE303E6D0331DB2A00B145030FA0FCB9A5CF05742 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tE303E6D0331DB2A00B145030FA0FCB9A5CF05742 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tE303E6D0331DB2A00B145030FA0FCB9A5CF05742 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ___values_8)); } inline ValueCollection_t962951F6313574EF794D4A94438AC59053CD24AB * get_values_8() const { return ___values_8; } inline ValueCollection_t962951F6313574EF794D4A94438AC59053CD24AB ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t962951F6313574EF794D4A94438AC59053CD24AB * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<UnityEngine.Object,System.Int32> struct Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tA97040F40D5D7332826828EACFDA328B115F3CB4* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tA0B2EED2E4A16B189B2D9B988CC700727850950E * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tA1DC78FFA99E0D5503BAED8731C8AB40B145080D * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___entries_1)); } inline EntryU5BU5D_tA97040F40D5D7332826828EACFDA328B115F3CB4* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tA97040F40D5D7332826828EACFDA328B115F3CB4** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tA97040F40D5D7332826828EACFDA328B115F3CB4* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___keys_7)); } inline KeyCollection_tA0B2EED2E4A16B189B2D9B988CC700727850950E * get_keys_7() const { return ___keys_7; } inline KeyCollection_tA0B2EED2E4A16B189B2D9B988CC700727850950E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tA0B2EED2E4A16B189B2D9B988CC700727850950E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ___values_8)); } inline ValueCollection_tA1DC78FFA99E0D5503BAED8731C8AB40B145080D * get_values_8() const { return ___values_8; } inline ValueCollection_tA1DC78FFA99E0D5503BAED8731C8AB40B145080D ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tA1DC78FFA99E0D5503BAED8731C8AB40B145080D * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.HashSet`1<System.String> struct HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____buckets_7; // System.Collections.Generic.HashSet`1_Slot<T>[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_t53602D6A0A2A8B3DB893B552E437E8C6321C5039* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ____siInfo_14; public: inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E, ____buckets_7)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__buckets_7() const { return ____buckets_7; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__buckets_7() { return &____buckets_7; } inline void set__buckets_7(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ____buckets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value); } inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E, ____slots_8)); } inline SlotU5BU5D_t53602D6A0A2A8B3DB893B552E437E8C6321C5039* get__slots_8() const { return ____slots_8; } inline SlotU5BU5D_t53602D6A0A2A8B3DB893B552E437E8C6321C5039** get_address_of__slots_8() { return &____slots_8; } inline void set__slots_8(SlotU5BU5D_t53602D6A0A2A8B3DB893B552E437E8C6321C5039* value) { ____slots_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value); } inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E, ____count_9)); } inline int32_t get__count_9() const { return ____count_9; } inline int32_t* get_address_of__count_9() { return &____count_9; } inline void set__count_9(int32_t value) { ____count_9 = value; } inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E, ____lastIndex_10)); } inline int32_t get__lastIndex_10() const { return ____lastIndex_10; } inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; } inline void set__lastIndex_10(int32_t value) { ____lastIndex_10 = value; } inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E, ____freeList_11)); } inline int32_t get__freeList_11() const { return ____freeList_11; } inline int32_t* get_address_of__freeList_11() { return &____freeList_11; } inline void set__freeList_11(int32_t value) { ____freeList_11 = value; } inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E, ____comparer_12)); } inline RuntimeObject* get__comparer_12() const { return ____comparer_12; } inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; } inline void set__comparer_12(RuntimeObject* value) { ____comparer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value); } inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E, ____version_13)); } inline int32_t get__version_13() const { return ____version_13; } inline int32_t* get_address_of__version_13() { return &____version_13; } inline void set__version_13(int32_t value) { ____version_13 = value; } inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E, ____siInfo_14)); } inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * get__siInfo_14() const { return ____siInfo_14; } inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** get_address_of__siInfo_14() { return &____siInfo_14; } inline void set__siInfo_14(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * value) { ____siInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value); } }; // System.Collections.Generic.HashSet`1<System.Type> struct HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____buckets_7; // System.Collections.Generic.HashSet`1_Slot<T>[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_t79DFABC9D18E9CFAAD627EF4F7C1937863FCF27C* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ____siInfo_14; public: inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093, ____buckets_7)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__buckets_7() const { return ____buckets_7; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__buckets_7() { return &____buckets_7; } inline void set__buckets_7(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ____buckets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value); } inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093, ____slots_8)); } inline SlotU5BU5D_t79DFABC9D18E9CFAAD627EF4F7C1937863FCF27C* get__slots_8() const { return ____slots_8; } inline SlotU5BU5D_t79DFABC9D18E9CFAAD627EF4F7C1937863FCF27C** get_address_of__slots_8() { return &____slots_8; } inline void set__slots_8(SlotU5BU5D_t79DFABC9D18E9CFAAD627EF4F7C1937863FCF27C* value) { ____slots_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value); } inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093, ____count_9)); } inline int32_t get__count_9() const { return ____count_9; } inline int32_t* get_address_of__count_9() { return &____count_9; } inline void set__count_9(int32_t value) { ____count_9 = value; } inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093, ____lastIndex_10)); } inline int32_t get__lastIndex_10() const { return ____lastIndex_10; } inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; } inline void set__lastIndex_10(int32_t value) { ____lastIndex_10 = value; } inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093, ____freeList_11)); } inline int32_t get__freeList_11() const { return ____freeList_11; } inline int32_t* get_address_of__freeList_11() { return &____freeList_11; } inline void set__freeList_11(int32_t value) { ____freeList_11 = value; } inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093, ____comparer_12)); } inline RuntimeObject* get__comparer_12() const { return ____comparer_12; } inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; } inline void set__comparer_12(RuntimeObject* value) { ____comparer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value); } inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093, ____version_13)); } inline int32_t get__version_13() const { return ____version_13; } inline int32_t* get_address_of__version_13() { return &____version_13; } inline void set__version_13(int32_t value) { ____version_13 = value; } inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093, ____siInfo_14)); } inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * get__siInfo_14() const { return ____siInfo_14; } inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** get_address_of__siInfo_14() { return &____siInfo_14; } inline void set__siInfo_14(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * value) { ____siInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value); } }; // System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification> struct List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617, ____items_1)); } inline PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9* get__items_1() const { return ____items_1; } inline PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9** get_address_of__items_1() { return &____items_1; } inline void set__items_1(PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617_StaticFields, ____emptyArray_5)); } inline PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9* get__emptyArray_5() const { return ____emptyArray_5; } inline PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(PrefabModificationU5BU5D_t54ED628466A0B41EC799F7E1CFD46DE33C5290E9* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode> struct List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB, ____items_1)); } inline SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A* get__items_1() const { return ____items_1; } inline SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB_StaticFields, ____emptyArray_5)); } inline SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A* get__emptyArray_5() const { return ____emptyArray_5; } inline SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Object> struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____items_1)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__items_1() const { return ____items_1; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<UnityEngine.Object> struct List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2, ____items_1)); } inline ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.Stack`1<System.Object> struct Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8 : public RuntimeObject { public: // T[] System.Collections.Generic.Stack`1::_array ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8, ____array_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Collections.Generic.Stack`1<System.Type> struct Stack_1_t9C602025E061B1E201C46568468C7528A6231383 : public RuntimeObject { public: // T[] System.Collections.Generic.Stack`1::_array TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t9C602025E061B1E201C46568468C7528A6231383, ____array_0)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__array_0() const { return ____array_0; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__array_0() { return &____array_0; } inline void set__array_0(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t9C602025E061B1E201C46568468C7528A6231383, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t9C602025E061B1E201C46568468C7528A6231383, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t9C602025E061B1E201C46568468C7528A6231383, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 : public RuntimeObject { public: public: }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14; public: inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); } inline int32_t get_m_codePage_9() const { return ___m_codePage_9; } inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; } inline void set_m_codePage_9(int32_t value) { ___m_codePage_9 = value; } inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; } inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value) { ___dataItem_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); } inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; } inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; } inline void set_m_deserializedFromEverett_11(bool value) { ___m_deserializedFromEverett_11 = value; } inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); } inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; } inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; } inline void set_m_isReadOnly_12(bool value) { ___m_isReadOnly_12 = value; } inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; } inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value) { ___encoderFallback_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value); } inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; } inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value) { ___decoderFallback_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value); } }; struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_15; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); } inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; } inline void set_s_InternalSyncObject_15(RuntimeObject * value) { ___s_InternalSyncObject_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value); } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // Sirenix.Serialization.BaseDataReader struct BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B : public BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B { public: // Sirenix.Serialization.DeserializationContext Sirenix.Serialization.BaseDataReader::context DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context_2; // System.IO.Stream Sirenix.Serialization.BaseDataReader::stream Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_3; public: inline static int32_t get_offset_of_context_2() { return static_cast<int32_t>(offsetof(BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B, ___context_2)); } inline DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * get_context_2() const { return ___context_2; } inline DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 ** get_address_of_context_2() { return &___context_2; } inline void set_context_2(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * value) { ___context_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___context_2), (void*)value); } inline static int32_t get_offset_of_stream_3() { return static_cast<int32_t>(offsetof(BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B, ___stream_3)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_3() const { return ___stream_3; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_3() { return &___stream_3; } inline void set_stream_3(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___stream_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_3), (void*)value); } }; // Sirenix.Serialization.BaseDataWriter struct BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 : public BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B { public: // Sirenix.Serialization.SerializationContext Sirenix.Serialization.BaseDataWriter::context SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context_2; // System.IO.Stream Sirenix.Serialization.BaseDataWriter::stream Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_3; public: inline static int32_t get_offset_of_context_2() { return static_cast<int32_t>(offsetof(BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012, ___context_2)); } inline SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * get_context_2() const { return ___context_2; } inline SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B ** get_address_of_context_2() { return &___context_2; } inline void set_context_2(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * value) { ___context_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___context_2), (void*)value); } inline static int32_t get_offset_of_stream_3() { return static_cast<int32_t>(offsetof(BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012, ___stream_3)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_3() const { return ___stream_3; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_3() { return &___stream_3; } inline void set_stream_3(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___stream_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_3), (void*)value); } }; // Sirenix.Serialization.DefaultSerializationBinder struct DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307 : public TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 { public: public: }; struct DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields { public: // System.Object Sirenix.Serialization.DefaultSerializationBinder::ASSEMBLY_LOOKUP_LOCK RuntimeObject * ___ASSEMBLY_LOOKUP_LOCK_1; // System.Collections.Generic.Dictionary`2<System.String,System.Reflection.Assembly> Sirenix.Serialization.DefaultSerializationBinder::assemblyNameLookUp Dictionary_2_tE95E06D73BE9F659DABDDDFFD6C2FDD528214175 * ___assemblyNameLookUp_2; // System.Collections.Generic.Dictionary`2<System.String,System.Type> Sirenix.Serialization.DefaultSerializationBinder::customTypeNameToTypeBindings Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * ___customTypeNameToTypeBindings_3; // System.Object Sirenix.Serialization.DefaultSerializationBinder::TYPETONAME_LOCK RuntimeObject * ___TYPETONAME_LOCK_4; // System.Collections.Generic.Dictionary`2<System.Type,System.String> Sirenix.Serialization.DefaultSerializationBinder::nameMap Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * ___nameMap_5; // System.Object Sirenix.Serialization.DefaultSerializationBinder::NAMETOTYPE_LOCK RuntimeObject * ___NAMETOTYPE_LOCK_6; // System.Collections.Generic.Dictionary`2<System.String,System.Type> Sirenix.Serialization.DefaultSerializationBinder::typeMap Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * ___typeMap_7; // System.Collections.Generic.List`1<System.String> Sirenix.Serialization.DefaultSerializationBinder::genericArgNamesList List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___genericArgNamesList_8; // System.Collections.Generic.List`1<System.Type> Sirenix.Serialization.DefaultSerializationBinder::genericArgTypesList List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___genericArgTypesList_9; // System.Object Sirenix.Serialization.DefaultSerializationBinder::ASSEMBLY_REGISTER_QUEUE_LOCK RuntimeObject * ___ASSEMBLY_REGISTER_QUEUE_LOCK_10; // System.Collections.Generic.List`1<System.Reflection.Assembly> Sirenix.Serialization.DefaultSerializationBinder::assembliesQueuedForRegister List_1_tADAFF4E53554D69184CDFB081796750626C37449 * ___assembliesQueuedForRegister_11; // System.Collections.Generic.List`1<System.AssemblyLoadEventArgs> Sirenix.Serialization.DefaultSerializationBinder::assemblyLoadEventsQueuedForRegister List_1_t79E8FB666FA80FFEA560D5D50411A5BEDD48B4F8 * ___assemblyLoadEventsQueuedForRegister_12; public: inline static int32_t get_offset_of_ASSEMBLY_LOOKUP_LOCK_1() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___ASSEMBLY_LOOKUP_LOCK_1)); } inline RuntimeObject * get_ASSEMBLY_LOOKUP_LOCK_1() const { return ___ASSEMBLY_LOOKUP_LOCK_1; } inline RuntimeObject ** get_address_of_ASSEMBLY_LOOKUP_LOCK_1() { return &___ASSEMBLY_LOOKUP_LOCK_1; } inline void set_ASSEMBLY_LOOKUP_LOCK_1(RuntimeObject * value) { ___ASSEMBLY_LOOKUP_LOCK_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ASSEMBLY_LOOKUP_LOCK_1), (void*)value); } inline static int32_t get_offset_of_assemblyNameLookUp_2() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___assemblyNameLookUp_2)); } inline Dictionary_2_tE95E06D73BE9F659DABDDDFFD6C2FDD528214175 * get_assemblyNameLookUp_2() const { return ___assemblyNameLookUp_2; } inline Dictionary_2_tE95E06D73BE9F659DABDDDFFD6C2FDD528214175 ** get_address_of_assemblyNameLookUp_2() { return &___assemblyNameLookUp_2; } inline void set_assemblyNameLookUp_2(Dictionary_2_tE95E06D73BE9F659DABDDDFFD6C2FDD528214175 * value) { ___assemblyNameLookUp_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___assemblyNameLookUp_2), (void*)value); } inline static int32_t get_offset_of_customTypeNameToTypeBindings_3() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___customTypeNameToTypeBindings_3)); } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * get_customTypeNameToTypeBindings_3() const { return ___customTypeNameToTypeBindings_3; } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A ** get_address_of_customTypeNameToTypeBindings_3() { return &___customTypeNameToTypeBindings_3; } inline void set_customTypeNameToTypeBindings_3(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * value) { ___customTypeNameToTypeBindings_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___customTypeNameToTypeBindings_3), (void*)value); } inline static int32_t get_offset_of_TYPETONAME_LOCK_4() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___TYPETONAME_LOCK_4)); } inline RuntimeObject * get_TYPETONAME_LOCK_4() const { return ___TYPETONAME_LOCK_4; } inline RuntimeObject ** get_address_of_TYPETONAME_LOCK_4() { return &___TYPETONAME_LOCK_4; } inline void set_TYPETONAME_LOCK_4(RuntimeObject * value) { ___TYPETONAME_LOCK_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___TYPETONAME_LOCK_4), (void*)value); } inline static int32_t get_offset_of_nameMap_5() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___nameMap_5)); } inline Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * get_nameMap_5() const { return ___nameMap_5; } inline Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 ** get_address_of_nameMap_5() { return &___nameMap_5; } inline void set_nameMap_5(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * value) { ___nameMap_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameMap_5), (void*)value); } inline static int32_t get_offset_of_NAMETOTYPE_LOCK_6() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___NAMETOTYPE_LOCK_6)); } inline RuntimeObject * get_NAMETOTYPE_LOCK_6() const { return ___NAMETOTYPE_LOCK_6; } inline RuntimeObject ** get_address_of_NAMETOTYPE_LOCK_6() { return &___NAMETOTYPE_LOCK_6; } inline void set_NAMETOTYPE_LOCK_6(RuntimeObject * value) { ___NAMETOTYPE_LOCK_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___NAMETOTYPE_LOCK_6), (void*)value); } inline static int32_t get_offset_of_typeMap_7() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___typeMap_7)); } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * get_typeMap_7() const { return ___typeMap_7; } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A ** get_address_of_typeMap_7() { return &___typeMap_7; } inline void set_typeMap_7(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * value) { ___typeMap_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeMap_7), (void*)value); } inline static int32_t get_offset_of_genericArgNamesList_8() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___genericArgNamesList_8)); } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_genericArgNamesList_8() const { return ___genericArgNamesList_8; } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_genericArgNamesList_8() { return &___genericArgNamesList_8; } inline void set_genericArgNamesList_8(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value) { ___genericArgNamesList_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___genericArgNamesList_8), (void*)value); } inline static int32_t get_offset_of_genericArgTypesList_9() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___genericArgTypesList_9)); } inline List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * get_genericArgTypesList_9() const { return ___genericArgTypesList_9; } inline List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 ** get_address_of_genericArgTypesList_9() { return &___genericArgTypesList_9; } inline void set_genericArgTypesList_9(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * value) { ___genericArgTypesList_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___genericArgTypesList_9), (void*)value); } inline static int32_t get_offset_of_ASSEMBLY_REGISTER_QUEUE_LOCK_10() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___ASSEMBLY_REGISTER_QUEUE_LOCK_10)); } inline RuntimeObject * get_ASSEMBLY_REGISTER_QUEUE_LOCK_10() const { return ___ASSEMBLY_REGISTER_QUEUE_LOCK_10; } inline RuntimeObject ** get_address_of_ASSEMBLY_REGISTER_QUEUE_LOCK_10() { return &___ASSEMBLY_REGISTER_QUEUE_LOCK_10; } inline void set_ASSEMBLY_REGISTER_QUEUE_LOCK_10(RuntimeObject * value) { ___ASSEMBLY_REGISTER_QUEUE_LOCK_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ASSEMBLY_REGISTER_QUEUE_LOCK_10), (void*)value); } inline static int32_t get_offset_of_assembliesQueuedForRegister_11() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___assembliesQueuedForRegister_11)); } inline List_1_tADAFF4E53554D69184CDFB081796750626C37449 * get_assembliesQueuedForRegister_11() const { return ___assembliesQueuedForRegister_11; } inline List_1_tADAFF4E53554D69184CDFB081796750626C37449 ** get_address_of_assembliesQueuedForRegister_11() { return &___assembliesQueuedForRegister_11; } inline void set_assembliesQueuedForRegister_11(List_1_tADAFF4E53554D69184CDFB081796750626C37449 * value) { ___assembliesQueuedForRegister_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___assembliesQueuedForRegister_11), (void*)value); } inline static int32_t get_offset_of_assemblyLoadEventsQueuedForRegister_12() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_StaticFields, ___assemblyLoadEventsQueuedForRegister_12)); } inline List_1_t79E8FB666FA80FFEA560D5D50411A5BEDD48B4F8 * get_assemblyLoadEventsQueuedForRegister_12() const { return ___assemblyLoadEventsQueuedForRegister_12; } inline List_1_t79E8FB666FA80FFEA560D5D50411A5BEDD48B4F8 ** get_address_of_assemblyLoadEventsQueuedForRegister_12() { return &___assemblyLoadEventsQueuedForRegister_12; } inline void set_assemblyLoadEventsQueuedForRegister_12(List_1_t79E8FB666FA80FFEA560D5D50411A5BEDD48B4F8 * value) { ___assemblyLoadEventsQueuedForRegister_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___assemblyLoadEventsQueuedForRegister_12), (void*)value); } }; // Sirenix.Serialization.Serializer`1<System.Object> struct Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB : public Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 { public: public: }; // Sirenix.Serialization.Serializer`1<System.Object[]> struct Serializer_1_tAE414B530B3E0769071794FC4AD82DBFCE8DE19F : public Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 { public: public: }; // Sirenix.Serialization.Serializer`1<System.Single> struct Serializer_1_t499D78B9DD9AC6B7283CF83AC1B3D9330C66DE83 : public Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 { public: public: }; // Sirenix.Serialization.Serializer`1<System.String> struct Serializer_1_tF81CA24ECBC43ED40CB4D65ED46CB4432BD882D5 : public Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 { public: public: }; // Sirenix.Serialization.Serializer`1<System.UInt16> struct Serializer_1_tB0717BBCE09985638B64CCF555B4ABF9D1EB63E9 : public Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 { public: public: }; // Sirenix.Serialization.Serializer`1<System.UInt32> struct Serializer_1_t1C25A01A2FFA085904188AFA499F9F8F553DE25F : public Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 { public: public: }; // Sirenix.Serialization.Serializer`1<System.UInt64> struct Serializer_1_t6F842F74A34468D4D1E363B9E095A2136CBCFCBD : public Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 { public: public: }; // Sirenix.Serialization.Serializer`1<System.UIntPtr> struct Serializer_1_t24F8BE1C52CD9405DFDF6876DF7F3D668286A27F : public Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 { public: public: }; // Sirenix.Serialization.TimeSpanFormatter struct TimeSpanFormatter_t5D3A28FD3888319F47D5F1BF0B4B50B127041F3D : public MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532 { public: public: }; // Sirenix.Serialization.TypeFormatter struct TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39 : public MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584 { public: public: }; // Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult struct CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 { public: // System.Boolean Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult::HasCalculatedSerializeUnityFieldsTrueResult bool ___HasCalculatedSerializeUnityFieldsTrueResult_0; // System.Boolean Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult::HasCalculatedSerializeUnityFieldsFalseResult bool ___HasCalculatedSerializeUnityFieldsFalseResult_1; // System.Boolean Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult::SerializeUnityFieldsTrueResult bool ___SerializeUnityFieldsTrueResult_2; // System.Boolean Sirenix.Serialization.UnitySerializationUtility_CachedSerializationBackendResult::SerializeUnityFieldsFalseResult bool ___SerializeUnityFieldsFalseResult_3; public: inline static int32_t get_offset_of_HasCalculatedSerializeUnityFieldsTrueResult_0() { return static_cast<int32_t>(offsetof(CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03, ___HasCalculatedSerializeUnityFieldsTrueResult_0)); } inline bool get_HasCalculatedSerializeUnityFieldsTrueResult_0() const { return ___HasCalculatedSerializeUnityFieldsTrueResult_0; } inline bool* get_address_of_HasCalculatedSerializeUnityFieldsTrueResult_0() { return &___HasCalculatedSerializeUnityFieldsTrueResult_0; } inline void set_HasCalculatedSerializeUnityFieldsTrueResult_0(bool value) { ___HasCalculatedSerializeUnityFieldsTrueResult_0 = value; } inline static int32_t get_offset_of_HasCalculatedSerializeUnityFieldsFalseResult_1() { return static_cast<int32_t>(offsetof(CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03, ___HasCalculatedSerializeUnityFieldsFalseResult_1)); } inline bool get_HasCalculatedSerializeUnityFieldsFalseResult_1() const { return ___HasCalculatedSerializeUnityFieldsFalseResult_1; } inline bool* get_address_of_HasCalculatedSerializeUnityFieldsFalseResult_1() { return &___HasCalculatedSerializeUnityFieldsFalseResult_1; } inline void set_HasCalculatedSerializeUnityFieldsFalseResult_1(bool value) { ___HasCalculatedSerializeUnityFieldsFalseResult_1 = value; } inline static int32_t get_offset_of_SerializeUnityFieldsTrueResult_2() { return static_cast<int32_t>(offsetof(CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03, ___SerializeUnityFieldsTrueResult_2)); } inline bool get_SerializeUnityFieldsTrueResult_2() const { return ___SerializeUnityFieldsTrueResult_2; } inline bool* get_address_of_SerializeUnityFieldsTrueResult_2() { return &___SerializeUnityFieldsTrueResult_2; } inline void set_SerializeUnityFieldsTrueResult_2(bool value) { ___SerializeUnityFieldsTrueResult_2 = value; } inline static int32_t get_offset_of_SerializeUnityFieldsFalseResult_3() { return static_cast<int32_t>(offsetof(CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03, ___SerializeUnityFieldsFalseResult_3)); } inline bool get_SerializeUnityFieldsFalseResult_3() const { return ___SerializeUnityFieldsFalseResult_3; } inline bool* get_address_of_SerializeUnityFieldsFalseResult_3() { return &___SerializeUnityFieldsFalseResult_3; } inline void set_SerializeUnityFieldsFalseResult_3(bool value) { ___SerializeUnityFieldsFalseResult_3 = value; } }; // Native definition for P/Invoke marshalling of Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult struct CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshaled_pinvoke { int32_t ___HasCalculatedSerializeUnityFieldsTrueResult_0; int32_t ___HasCalculatedSerializeUnityFieldsFalseResult_1; int32_t ___SerializeUnityFieldsTrueResult_2; int32_t ___SerializeUnityFieldsFalseResult_3; }; // Native definition for COM marshalling of Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult struct CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshaled_com { int32_t ___HasCalculatedSerializeUnityFieldsTrueResult_0; int32_t ___HasCalculatedSerializeUnityFieldsFalseResult_1; int32_t ___SerializeUnityFieldsTrueResult_2; int32_t ___SerializeUnityFieldsFalseResult_3; }; // Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Delegate> struct DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 : public Dictionary_2_t7EB6829323C37E07A6AFF57D88DFDDA0AA4EC249 { public: // System.Collections.Generic.IEqualityComparer`1<TSecondKey> Sirenix.Serialization.Utilities.DoubleLookupDictionary`3::secondKeyComparer RuntimeObject* ___secondKeyComparer_14; public: inline static int32_t get_offset_of_secondKeyComparer_14() { return static_cast<int32_t>(offsetof(DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012, ___secondKeyComparer_14)); } inline RuntimeObject* get_secondKeyComparer_14() const { return ___secondKeyComparer_14; } inline RuntimeObject** get_address_of_secondKeyComparer_14() { return &___secondKeyComparer_14; } inline void set_secondKeyComparer_14(RuntimeObject* value) { ___secondKeyComparer_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___secondKeyComparer_14), (void*)value); } }; // Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Func`2<System.Object,System.Object>> struct DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 : public Dictionary_2_t0F43E51952AD56ADA8E0FF6CFD5BA7E100D82CEF { public: // System.Collections.Generic.IEqualityComparer`1<TSecondKey> Sirenix.Serialization.Utilities.DoubleLookupDictionary`3::secondKeyComparer RuntimeObject* ___secondKeyComparer_14; public: inline static int32_t get_offset_of_secondKeyComparer_14() { return static_cast<int32_t>(offsetof(DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4, ___secondKeyComparer_14)); } inline RuntimeObject* get_secondKeyComparer_14() const { return ___secondKeyComparer_14; } inline RuntimeObject** get_address_of_secondKeyComparer_14() { return &___secondKeyComparer_14; } inline void set_secondKeyComparer_14(RuntimeObject* value) { ___secondKeyComparer_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___secondKeyComparer_14), (void*)value); } }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____fastRng_14; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value); } inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__fastRng_14() const { return ____fastRng_14; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__fastRng_14() { return &____fastRng_14; } inline void set__fastRng_14(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____fastRng_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value); } }; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3; public: inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); } inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; } inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; } inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value) { ____activeReadWriteTask_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_2), (void*)value); } inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); } inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; } inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; } inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value) { ____asyncActiveSemaphore_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value); } }; struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } }; // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Reflection.EventInfo struct EventInfo_t : public MemberInfo_t { public: // System.Reflection.EventInfo_AddEventAdapter System.Reflection.EventInfo::cached_add_event AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * ___cached_add_event_0; public: inline static int32_t get_offset_of_cached_add_event_0() { return static_cast<int32_t>(offsetof(EventInfo_t, ___cached_add_event_0)); } inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * get_cached_add_event_0() const { return ___cached_add_event_0; } inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B ** get_address_of_cached_add_event_0() { return &___cached_add_event_0; } inline void set_cached_add_event_0(AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * value) { ___cached_add_event_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_add_event_0), (void*)value); } }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { public: public: }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E { public: // System.Boolean[] System.Reflection.ParameterModifier::_byRef BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0; public: inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; } inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value) { ____byRef_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke { int32_t* ____byRef_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com { int32_t* ____byRef_0; }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // System.SByte struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; // System.Single struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.UIntPtr struct UIntPtr_t { public: // System.Void* System.UIntPtr::_pointer void* ____pointer_1; public: inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); } inline void* get__pointer_1() const { return ____pointer_1; } inline void** get_address_of__pointer_1() { return &____pointer_1; } inline void set__pointer_1(void* value) { ____pointer_1 = value; } }; struct UIntPtr_t_StaticFields { public: // System.UIntPtr System.UIntPtr::Zero uintptr_t ___Zero_0; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); } inline uintptr_t get_Zero_0() const { return ___Zero_0; } inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(uintptr_t value) { ___Zero_0 = value; } }; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; // UnityEngine.Quaternion struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___identityQuaternion_4 = value; } }; // Sirenix.Serialization.BinaryDataWriter struct BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A : public BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 { public: // System.Byte[] Sirenix.Serialization.BinaryDataWriter::small_buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___small_buffer_6; // System.Byte[] Sirenix.Serialization.BinaryDataWriter::buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_7; // System.Int32 Sirenix.Serialization.BinaryDataWriter::bufferIndex int32_t ___bufferIndex_8; // System.Collections.Generic.Dictionary`2<System.Type,System.Int32> Sirenix.Serialization.BinaryDataWriter::types Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * ___types_9; // System.Boolean Sirenix.Serialization.BinaryDataWriter::CompressStringsTo8BitWhenPossible bool ___CompressStringsTo8BitWhenPossible_10; public: inline static int32_t get_offset_of_small_buffer_6() { return static_cast<int32_t>(offsetof(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A, ___small_buffer_6)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_small_buffer_6() const { return ___small_buffer_6; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_small_buffer_6() { return &___small_buffer_6; } inline void set_small_buffer_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___small_buffer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___small_buffer_6), (void*)value); } inline static int32_t get_offset_of_buffer_7() { return static_cast<int32_t>(offsetof(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A, ___buffer_7)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_7() const { return ___buffer_7; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_7() { return &___buffer_7; } inline void set_buffer_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buffer_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_7), (void*)value); } inline static int32_t get_offset_of_bufferIndex_8() { return static_cast<int32_t>(offsetof(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A, ___bufferIndex_8)); } inline int32_t get_bufferIndex_8() const { return ___bufferIndex_8; } inline int32_t* get_address_of_bufferIndex_8() { return &___bufferIndex_8; } inline void set_bufferIndex_8(int32_t value) { ___bufferIndex_8 = value; } inline static int32_t get_offset_of_types_9() { return static_cast<int32_t>(offsetof(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A, ___types_9)); } inline Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * get_types_9() const { return ___types_9; } inline Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F ** get_address_of_types_9() { return &___types_9; } inline void set_types_9(Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * value) { ___types_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___types_9), (void*)value); } inline static int32_t get_offset_of_CompressStringsTo8BitWhenPossible_10() { return static_cast<int32_t>(offsetof(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A, ___CompressStringsTo8BitWhenPossible_10)); } inline bool get_CompressStringsTo8BitWhenPossible_10() const { return ___CompressStringsTo8BitWhenPossible_10; } inline bool* get_address_of_CompressStringsTo8BitWhenPossible_10() { return &___CompressStringsTo8BitWhenPossible_10; } inline void set_CompressStringsTo8BitWhenPossible_10(bool value) { ___CompressStringsTo8BitWhenPossible_10 = value; } }; struct BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.Type,System.Delegate> Sirenix.Serialization.BinaryDataWriter::PrimitiveGetBytesMethods Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * ___PrimitiveGetBytesMethods_4; // System.Collections.Generic.Dictionary`2<System.Type,System.Int32> Sirenix.Serialization.BinaryDataWriter::PrimitiveSizes Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * ___PrimitiveSizes_5; // System.Collections.Generic.Dictionary`2<System.Type,System.Action`2<Sirenix.Serialization.BinaryDataWriter,System.Object>> Sirenix.Serialization.BinaryDataWriter::PrimitiveArrayWriters Dictionary_2_tF4F3D8CB601FEAF580EC61700CDB5247E48E3E51 * ___PrimitiveArrayWriters_11; public: inline static int32_t get_offset_of_PrimitiveGetBytesMethods_4() { return static_cast<int32_t>(offsetof(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A_StaticFields, ___PrimitiveGetBytesMethods_4)); } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * get_PrimitiveGetBytesMethods_4() const { return ___PrimitiveGetBytesMethods_4; } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 ** get_address_of_PrimitiveGetBytesMethods_4() { return &___PrimitiveGetBytesMethods_4; } inline void set_PrimitiveGetBytesMethods_4(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * value) { ___PrimitiveGetBytesMethods_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimitiveGetBytesMethods_4), (void*)value); } inline static int32_t get_offset_of_PrimitiveSizes_5() { return static_cast<int32_t>(offsetof(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A_StaticFields, ___PrimitiveSizes_5)); } inline Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * get_PrimitiveSizes_5() const { return ___PrimitiveSizes_5; } inline Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F ** get_address_of_PrimitiveSizes_5() { return &___PrimitiveSizes_5; } inline void set_PrimitiveSizes_5(Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * value) { ___PrimitiveSizes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimitiveSizes_5), (void*)value); } inline static int32_t get_offset_of_PrimitiveArrayWriters_11() { return static_cast<int32_t>(offsetof(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A_StaticFields, ___PrimitiveArrayWriters_11)); } inline Dictionary_2_tF4F3D8CB601FEAF580EC61700CDB5247E48E3E51 * get_PrimitiveArrayWriters_11() const { return ___PrimitiveArrayWriters_11; } inline Dictionary_2_tF4F3D8CB601FEAF580EC61700CDB5247E48E3E51 ** get_address_of_PrimitiveArrayWriters_11() { return &___PrimitiveArrayWriters_11; } inline void set_PrimitiveArrayWriters_11(Dictionary_2_tF4F3D8CB601FEAF580EC61700CDB5247E48E3E51 * value) { ___PrimitiveArrayWriters_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimitiveArrayWriters_11), (void*)value); } }; // Sirenix.Serialization.BinaryEntryType struct BinaryEntryType_t0BAF363A7853EC8CBAB967F0A15CD75F022A17B3 { public: // System.Byte Sirenix.Serialization.BinaryEntryType::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BinaryEntryType_t0BAF363A7853EC8CBAB967F0A15CD75F022A17B3, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // Sirenix.Serialization.DataFormat struct DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83 { public: // System.Int32 Sirenix.Serialization.DataFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Sirenix.Serialization.EntryType struct EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814 { public: // System.Byte Sirenix.Serialization.EntryType::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // Sirenix.Serialization.ErrorHandlingPolicy struct ErrorHandlingPolicy_tB19BA3690B3020CCC313EADD780C7B6965E02BAA { public: // System.Int32 Sirenix.Serialization.ErrorHandlingPolicy::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ErrorHandlingPolicy_tB19BA3690B3020CCC313EADD780C7B6965E02BAA, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Sirenix.Serialization.FormatterLocationStep struct FormatterLocationStep_tE7ED662EB0AFDE9421E53F56B75F07677EE5FCDC { public: // System.Int32 Sirenix.Serialization.FormatterLocationStep::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterLocationStep_tE7ED662EB0AFDE9421E53F56B75F07677EE5FCDC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Sirenix.Serialization.JsonDataWriter struct JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B : public BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 { public: // System.Boolean Sirenix.Serialization.JsonDataWriter::justStarted bool ___justStarted_6; // System.Boolean Sirenix.Serialization.JsonDataWriter::forceNoSeparatorNextLine bool ___forceNoSeparatorNextLine_7; // System.Collections.Generic.Dictionary`2<System.Type,System.Delegate> Sirenix.Serialization.JsonDataWriter::primitiveTypeWriters Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * ___primitiveTypeWriters_8; // System.Collections.Generic.Dictionary`2<System.Type,System.Int32> Sirenix.Serialization.JsonDataWriter::seenTypes Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * ___seenTypes_9; // System.Byte[] Sirenix.Serialization.JsonDataWriter::buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_10; // System.Int32 Sirenix.Serialization.JsonDataWriter::bufferIndex int32_t ___bufferIndex_11; // System.Boolean Sirenix.Serialization.JsonDataWriter::FormatAsReadable bool ___FormatAsReadable_12; // System.Boolean Sirenix.Serialization.JsonDataWriter::EnableTypeOptimization bool ___EnableTypeOptimization_13; public: inline static int32_t get_offset_of_justStarted_6() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B, ___justStarted_6)); } inline bool get_justStarted_6() const { return ___justStarted_6; } inline bool* get_address_of_justStarted_6() { return &___justStarted_6; } inline void set_justStarted_6(bool value) { ___justStarted_6 = value; } inline static int32_t get_offset_of_forceNoSeparatorNextLine_7() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B, ___forceNoSeparatorNextLine_7)); } inline bool get_forceNoSeparatorNextLine_7() const { return ___forceNoSeparatorNextLine_7; } inline bool* get_address_of_forceNoSeparatorNextLine_7() { return &___forceNoSeparatorNextLine_7; } inline void set_forceNoSeparatorNextLine_7(bool value) { ___forceNoSeparatorNextLine_7 = value; } inline static int32_t get_offset_of_primitiveTypeWriters_8() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B, ___primitiveTypeWriters_8)); } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * get_primitiveTypeWriters_8() const { return ___primitiveTypeWriters_8; } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 ** get_address_of_primitiveTypeWriters_8() { return &___primitiveTypeWriters_8; } inline void set_primitiveTypeWriters_8(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * value) { ___primitiveTypeWriters_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___primitiveTypeWriters_8), (void*)value); } inline static int32_t get_offset_of_seenTypes_9() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B, ___seenTypes_9)); } inline Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * get_seenTypes_9() const { return ___seenTypes_9; } inline Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F ** get_address_of_seenTypes_9() { return &___seenTypes_9; } inline void set_seenTypes_9(Dictionary_2_tA4F27994EF77494F74F85FCFD482DBAD219E6E8F * value) { ___seenTypes_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___seenTypes_9), (void*)value); } inline static int32_t get_offset_of_buffer_10() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B, ___buffer_10)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_10() const { return ___buffer_10; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_10() { return &___buffer_10; } inline void set_buffer_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buffer_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_10), (void*)value); } inline static int32_t get_offset_of_bufferIndex_11() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B, ___bufferIndex_11)); } inline int32_t get_bufferIndex_11() const { return ___bufferIndex_11; } inline int32_t* get_address_of_bufferIndex_11() { return &___bufferIndex_11; } inline void set_bufferIndex_11(int32_t value) { ___bufferIndex_11 = value; } inline static int32_t get_offset_of_FormatAsReadable_12() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B, ___FormatAsReadable_12)); } inline bool get_FormatAsReadable_12() const { return ___FormatAsReadable_12; } inline bool* get_address_of_FormatAsReadable_12() { return &___FormatAsReadable_12; } inline void set_FormatAsReadable_12(bool value) { ___FormatAsReadable_12 = value; } inline static int32_t get_offset_of_EnableTypeOptimization_13() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B, ___EnableTypeOptimization_13)); } inline bool get_EnableTypeOptimization_13() const { return ___EnableTypeOptimization_13; } inline bool* get_address_of_EnableTypeOptimization_13() { return &___EnableTypeOptimization_13; } inline void set_EnableTypeOptimization_13(bool value) { ___EnableTypeOptimization_13 = value; } }; struct JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B_StaticFields { public: // System.UInt32[] Sirenix.Serialization.JsonDataWriter::ByteToHexCharLookup UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___ByteToHexCharLookup_4; // System.String Sirenix.Serialization.JsonDataWriter::NEW_LINE String_t* ___NEW_LINE_5; public: inline static int32_t get_offset_of_ByteToHexCharLookup_4() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B_StaticFields, ___ByteToHexCharLookup_4)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_ByteToHexCharLookup_4() const { return ___ByteToHexCharLookup_4; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_ByteToHexCharLookup_4() { return &___ByteToHexCharLookup_4; } inline void set_ByteToHexCharLookup_4(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___ByteToHexCharLookup_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ByteToHexCharLookup_4), (void*)value); } inline static int32_t get_offset_of_NEW_LINE_5() { return static_cast<int32_t>(offsetof(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B_StaticFields, ___NEW_LINE_5)); } inline String_t* get_NEW_LINE_5() const { return ___NEW_LINE_5; } inline String_t** get_address_of_NEW_LINE_5() { return &___NEW_LINE_5; } inline void set_NEW_LINE_5(String_t* value) { ___NEW_LINE_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___NEW_LINE_5), (void*)value); } }; // Sirenix.Serialization.LoggingPolicy struct LoggingPolicy_t57FEF084377C0A628A21A8ED77694C953C1EE801 { public: // System.Int32 Sirenix.Serialization.LoggingPolicy::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LoggingPolicy_t57FEF084377C0A628A21A8ED77694C953C1EE801, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Sirenix.Serialization.PrefabModificationType struct PrefabModificationType_t62E949E4265678EC61A9EF3F477FA4961F990C2B { public: // System.Int32 Sirenix.Serialization.PrefabModificationType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PrefabModificationType_t62E949E4265678EC61A9EF3F477FA4961F990C2B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Sirenix.Serialization.SerializationNodeDataWriter struct SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 : public BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 { public: // System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode> Sirenix.Serialization.SerializationNodeDataWriter::nodes List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * ___nodes_4; // System.Collections.Generic.Dictionary`2<System.Type,System.Delegate> Sirenix.Serialization.SerializationNodeDataWriter::primitiveTypeWriters Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * ___primitiveTypeWriters_5; public: inline static int32_t get_offset_of_nodes_4() { return static_cast<int32_t>(offsetof(SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1, ___nodes_4)); } inline List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * get_nodes_4() const { return ___nodes_4; } inline List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB ** get_address_of_nodes_4() { return &___nodes_4; } inline void set_nodes_4(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * value) { ___nodes_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___nodes_4), (void*)value); } inline static int32_t get_offset_of_primitiveTypeWriters_5() { return static_cast<int32_t>(offsetof(SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1, ___primitiveTypeWriters_5)); } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * get_primitiveTypeWriters_5() const { return ___primitiveTypeWriters_5; } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 ** get_address_of_primitiveTypeWriters_5() { return &___primitiveTypeWriters_5; } inline void set_primitiveTypeWriters_5(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * value) { ___primitiveTypeWriters_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___primitiveTypeWriters_5), (void*)value); } }; // Sirenix.Serialization.SingleSerializer struct SingleSerializer_t4E9F15C6707B09B4643053562D14B6D84F035F4D : public Serializer_1_t499D78B9DD9AC6B7283CF83AC1B3D9330C66DE83 { public: public: }; // Sirenix.Serialization.StringSerializer struct StringSerializer_t02226473DA6D1A109481D3FA85F87CCB2F2FE7AD : public Serializer_1_tF81CA24ECBC43ED40CB4D65ED46CB4432BD882D5 { public: public: }; // Sirenix.Serialization.UInt16Serializer struct UInt16Serializer_tB03F9299101183DF42C9BA9B5C251EB7E433E66E : public Serializer_1_tB0717BBCE09985638B64CCF555B4ABF9D1EB63E9 { public: public: }; // Sirenix.Serialization.UInt32Serializer struct UInt32Serializer_tCA35508AF0D7C5164C5E7C0DB1FF8874297BA826 : public Serializer_1_t1C25A01A2FFA085904188AFA499F9F8F553DE25F { public: public: }; // Sirenix.Serialization.UInt64Serializer struct UInt64Serializer_t046296E5E31B549A8704B8F86A7ACD06EAB25209 : public Serializer_1_t6F842F74A34468D4D1E363B9E095A2136CBCFCBD { public: public: }; // Sirenix.Serialization.UIntPtrSerializer struct UIntPtrSerializer_t570AAD1348E8C0F586B9B74E796867581B2334EE : public Serializer_1_t24F8BE1C52CD9405DFDF6876DF7F3D668286A27F { public: public: }; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.BinaryDataReader> struct Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 : public RuntimeObject { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::isFree bool ___isFree_2; // T Sirenix.Serialization.Utilities.Cache`1::Value BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * ___Value_5; public: inline static int32_t get_offset_of_isFree_2() { return static_cast<int32_t>(offsetof(Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06, ___isFree_2)); } inline bool get_isFree_2() const { return ___isFree_2; } inline bool* get_address_of_isFree_2() { return &___isFree_2; } inline void set_isFree_2(bool value) { ___isFree_2 = value; } inline static int32_t get_offset_of_Value_5() { return static_cast<int32_t>(offsetof(Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06, ___Value_5)); } inline BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * get_Value_5() const { return ___Value_5; } inline BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 ** get_address_of_Value_5() { return &___Value_5; } inline void set_Value_5(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * value) { ___Value_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_5), (void*)value); } }; struct Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06_StaticFields { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::IsNotificationReceiver bool ___IsNotificationReceiver_0; // System.Object[] Sirenix.Serialization.Utilities.Cache`1::FreeValues ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___FreeValues_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.Utilities.Cache`1::THREAD_LOCK_TOKEN int32_t ___THREAD_LOCK_TOKEN_3; // System.Int32 Sirenix.Serialization.Utilities.Cache`1::maxCacheSize int32_t ___maxCacheSize_4; public: inline static int32_t get_offset_of_IsNotificationReceiver_0() { return static_cast<int32_t>(offsetof(Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06_StaticFields, ___IsNotificationReceiver_0)); } inline bool get_IsNotificationReceiver_0() const { return ___IsNotificationReceiver_0; } inline bool* get_address_of_IsNotificationReceiver_0() { return &___IsNotificationReceiver_0; } inline void set_IsNotificationReceiver_0(bool value) { ___IsNotificationReceiver_0 = value; } inline static int32_t get_offset_of_FreeValues_1() { return static_cast<int32_t>(offsetof(Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06_StaticFields, ___FreeValues_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_FreeValues_1() const { return ___FreeValues_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_FreeValues_1() { return &___FreeValues_1; } inline void set_FreeValues_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___FreeValues_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeValues_1), (void*)value); } inline static int32_t get_offset_of_THREAD_LOCK_TOKEN_3() { return static_cast<int32_t>(offsetof(Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06_StaticFields, ___THREAD_LOCK_TOKEN_3)); } inline int32_t get_THREAD_LOCK_TOKEN_3() const { return ___THREAD_LOCK_TOKEN_3; } inline int32_t* get_address_of_THREAD_LOCK_TOKEN_3() { return &___THREAD_LOCK_TOKEN_3; } inline void set_THREAD_LOCK_TOKEN_3(int32_t value) { ___THREAD_LOCK_TOKEN_3 = value; } inline static int32_t get_offset_of_maxCacheSize_4() { return static_cast<int32_t>(offsetof(Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06_StaticFields, ___maxCacheSize_4)); } inline int32_t get_maxCacheSize_4() const { return ___maxCacheSize_4; } inline int32_t* get_address_of_maxCacheSize_4() { return &___maxCacheSize_4; } inline void set_maxCacheSize_4(int32_t value) { ___maxCacheSize_4 = value; } }; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.BinaryDataWriter> struct Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 : public RuntimeObject { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::isFree bool ___isFree_2; // T Sirenix.Serialization.Utilities.Cache`1::Value BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * ___Value_5; public: inline static int32_t get_offset_of_isFree_2() { return static_cast<int32_t>(offsetof(Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61, ___isFree_2)); } inline bool get_isFree_2() const { return ___isFree_2; } inline bool* get_address_of_isFree_2() { return &___isFree_2; } inline void set_isFree_2(bool value) { ___isFree_2 = value; } inline static int32_t get_offset_of_Value_5() { return static_cast<int32_t>(offsetof(Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61, ___Value_5)); } inline BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * get_Value_5() const { return ___Value_5; } inline BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A ** get_address_of_Value_5() { return &___Value_5; } inline void set_Value_5(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * value) { ___Value_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_5), (void*)value); } }; struct Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61_StaticFields { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::IsNotificationReceiver bool ___IsNotificationReceiver_0; // System.Object[] Sirenix.Serialization.Utilities.Cache`1::FreeValues ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___FreeValues_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.Utilities.Cache`1::THREAD_LOCK_TOKEN int32_t ___THREAD_LOCK_TOKEN_3; // System.Int32 Sirenix.Serialization.Utilities.Cache`1::maxCacheSize int32_t ___maxCacheSize_4; public: inline static int32_t get_offset_of_IsNotificationReceiver_0() { return static_cast<int32_t>(offsetof(Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61_StaticFields, ___IsNotificationReceiver_0)); } inline bool get_IsNotificationReceiver_0() const { return ___IsNotificationReceiver_0; } inline bool* get_address_of_IsNotificationReceiver_0() { return &___IsNotificationReceiver_0; } inline void set_IsNotificationReceiver_0(bool value) { ___IsNotificationReceiver_0 = value; } inline static int32_t get_offset_of_FreeValues_1() { return static_cast<int32_t>(offsetof(Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61_StaticFields, ___FreeValues_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_FreeValues_1() const { return ___FreeValues_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_FreeValues_1() { return &___FreeValues_1; } inline void set_FreeValues_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___FreeValues_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeValues_1), (void*)value); } inline static int32_t get_offset_of_THREAD_LOCK_TOKEN_3() { return static_cast<int32_t>(offsetof(Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61_StaticFields, ___THREAD_LOCK_TOKEN_3)); } inline int32_t get_THREAD_LOCK_TOKEN_3() const { return ___THREAD_LOCK_TOKEN_3; } inline int32_t* get_address_of_THREAD_LOCK_TOKEN_3() { return &___THREAD_LOCK_TOKEN_3; } inline void set_THREAD_LOCK_TOKEN_3(int32_t value) { ___THREAD_LOCK_TOKEN_3 = value; } inline static int32_t get_offset_of_maxCacheSize_4() { return static_cast<int32_t>(offsetof(Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61_StaticFields, ___maxCacheSize_4)); } inline int32_t get_maxCacheSize_4() const { return ___maxCacheSize_4; } inline int32_t* get_address_of_maxCacheSize_4() { return &___maxCacheSize_4; } inline void set_maxCacheSize_4(int32_t value) { ___maxCacheSize_4 = value; } }; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.CachedMemoryStream> struct Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA : public RuntimeObject { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::isFree bool ___isFree_2; // T Sirenix.Serialization.Utilities.Cache`1::Value CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * ___Value_5; public: inline static int32_t get_offset_of_isFree_2() { return static_cast<int32_t>(offsetof(Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA, ___isFree_2)); } inline bool get_isFree_2() const { return ___isFree_2; } inline bool* get_address_of_isFree_2() { return &___isFree_2; } inline void set_isFree_2(bool value) { ___isFree_2 = value; } inline static int32_t get_offset_of_Value_5() { return static_cast<int32_t>(offsetof(Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA, ___Value_5)); } inline CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * get_Value_5() const { return ___Value_5; } inline CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 ** get_address_of_Value_5() { return &___Value_5; } inline void set_Value_5(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * value) { ___Value_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_5), (void*)value); } }; struct Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA_StaticFields { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::IsNotificationReceiver bool ___IsNotificationReceiver_0; // System.Object[] Sirenix.Serialization.Utilities.Cache`1::FreeValues ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___FreeValues_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.Utilities.Cache`1::THREAD_LOCK_TOKEN int32_t ___THREAD_LOCK_TOKEN_3; // System.Int32 Sirenix.Serialization.Utilities.Cache`1::maxCacheSize int32_t ___maxCacheSize_4; public: inline static int32_t get_offset_of_IsNotificationReceiver_0() { return static_cast<int32_t>(offsetof(Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA_StaticFields, ___IsNotificationReceiver_0)); } inline bool get_IsNotificationReceiver_0() const { return ___IsNotificationReceiver_0; } inline bool* get_address_of_IsNotificationReceiver_0() { return &___IsNotificationReceiver_0; } inline void set_IsNotificationReceiver_0(bool value) { ___IsNotificationReceiver_0 = value; } inline static int32_t get_offset_of_FreeValues_1() { return static_cast<int32_t>(offsetof(Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA_StaticFields, ___FreeValues_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_FreeValues_1() const { return ___FreeValues_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_FreeValues_1() { return &___FreeValues_1; } inline void set_FreeValues_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___FreeValues_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeValues_1), (void*)value); } inline static int32_t get_offset_of_THREAD_LOCK_TOKEN_3() { return static_cast<int32_t>(offsetof(Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA_StaticFields, ___THREAD_LOCK_TOKEN_3)); } inline int32_t get_THREAD_LOCK_TOKEN_3() const { return ___THREAD_LOCK_TOKEN_3; } inline int32_t* get_address_of_THREAD_LOCK_TOKEN_3() { return &___THREAD_LOCK_TOKEN_3; } inline void set_THREAD_LOCK_TOKEN_3(int32_t value) { ___THREAD_LOCK_TOKEN_3 = value; } inline static int32_t get_offset_of_maxCacheSize_4() { return static_cast<int32_t>(offsetof(Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA_StaticFields, ___maxCacheSize_4)); } inline int32_t get_maxCacheSize_4() const { return ___maxCacheSize_4; } inline int32_t* get_address_of_maxCacheSize_4() { return &___maxCacheSize_4; } inline void set_maxCacheSize_4(int32_t value) { ___maxCacheSize_4 = value; } }; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.DeserializationContext> struct Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 : public RuntimeObject { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::isFree bool ___isFree_2; // T Sirenix.Serialization.Utilities.Cache`1::Value DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___Value_5; public: inline static int32_t get_offset_of_isFree_2() { return static_cast<int32_t>(offsetof(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08, ___isFree_2)); } inline bool get_isFree_2() const { return ___isFree_2; } inline bool* get_address_of_isFree_2() { return &___isFree_2; } inline void set_isFree_2(bool value) { ___isFree_2 = value; } inline static int32_t get_offset_of_Value_5() { return static_cast<int32_t>(offsetof(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08, ___Value_5)); } inline DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * get_Value_5() const { return ___Value_5; } inline DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 ** get_address_of_Value_5() { return &___Value_5; } inline void set_Value_5(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * value) { ___Value_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_5), (void*)value); } }; struct Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_StaticFields { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::IsNotificationReceiver bool ___IsNotificationReceiver_0; // System.Object[] Sirenix.Serialization.Utilities.Cache`1::FreeValues ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___FreeValues_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.Utilities.Cache`1::THREAD_LOCK_TOKEN int32_t ___THREAD_LOCK_TOKEN_3; // System.Int32 Sirenix.Serialization.Utilities.Cache`1::maxCacheSize int32_t ___maxCacheSize_4; public: inline static int32_t get_offset_of_IsNotificationReceiver_0() { return static_cast<int32_t>(offsetof(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_StaticFields, ___IsNotificationReceiver_0)); } inline bool get_IsNotificationReceiver_0() const { return ___IsNotificationReceiver_0; } inline bool* get_address_of_IsNotificationReceiver_0() { return &___IsNotificationReceiver_0; } inline void set_IsNotificationReceiver_0(bool value) { ___IsNotificationReceiver_0 = value; } inline static int32_t get_offset_of_FreeValues_1() { return static_cast<int32_t>(offsetof(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_StaticFields, ___FreeValues_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_FreeValues_1() const { return ___FreeValues_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_FreeValues_1() { return &___FreeValues_1; } inline void set_FreeValues_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___FreeValues_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeValues_1), (void*)value); } inline static int32_t get_offset_of_THREAD_LOCK_TOKEN_3() { return static_cast<int32_t>(offsetof(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_StaticFields, ___THREAD_LOCK_TOKEN_3)); } inline int32_t get_THREAD_LOCK_TOKEN_3() const { return ___THREAD_LOCK_TOKEN_3; } inline int32_t* get_address_of_THREAD_LOCK_TOKEN_3() { return &___THREAD_LOCK_TOKEN_3; } inline void set_THREAD_LOCK_TOKEN_3(int32_t value) { ___THREAD_LOCK_TOKEN_3 = value; } inline static int32_t get_offset_of_maxCacheSize_4() { return static_cast<int32_t>(offsetof(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_StaticFields, ___maxCacheSize_4)); } inline int32_t get_maxCacheSize_4() const { return ___maxCacheSize_4; } inline int32_t* get_address_of_maxCacheSize_4() { return &___maxCacheSize_4; } inline void set_maxCacheSize_4(int32_t value) { ___maxCacheSize_4 = value; } }; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.JsonDataReader> struct Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 : public RuntimeObject { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::isFree bool ___isFree_2; // T Sirenix.Serialization.Utilities.Cache`1::Value JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * ___Value_5; public: inline static int32_t get_offset_of_isFree_2() { return static_cast<int32_t>(offsetof(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59, ___isFree_2)); } inline bool get_isFree_2() const { return ___isFree_2; } inline bool* get_address_of_isFree_2() { return &___isFree_2; } inline void set_isFree_2(bool value) { ___isFree_2 = value; } inline static int32_t get_offset_of_Value_5() { return static_cast<int32_t>(offsetof(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59, ___Value_5)); } inline JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * get_Value_5() const { return ___Value_5; } inline JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 ** get_address_of_Value_5() { return &___Value_5; } inline void set_Value_5(JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * value) { ___Value_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_5), (void*)value); } }; struct Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_StaticFields { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::IsNotificationReceiver bool ___IsNotificationReceiver_0; // System.Object[] Sirenix.Serialization.Utilities.Cache`1::FreeValues ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___FreeValues_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.Utilities.Cache`1::THREAD_LOCK_TOKEN int32_t ___THREAD_LOCK_TOKEN_3; // System.Int32 Sirenix.Serialization.Utilities.Cache`1::maxCacheSize int32_t ___maxCacheSize_4; public: inline static int32_t get_offset_of_IsNotificationReceiver_0() { return static_cast<int32_t>(offsetof(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_StaticFields, ___IsNotificationReceiver_0)); } inline bool get_IsNotificationReceiver_0() const { return ___IsNotificationReceiver_0; } inline bool* get_address_of_IsNotificationReceiver_0() { return &___IsNotificationReceiver_0; } inline void set_IsNotificationReceiver_0(bool value) { ___IsNotificationReceiver_0 = value; } inline static int32_t get_offset_of_FreeValues_1() { return static_cast<int32_t>(offsetof(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_StaticFields, ___FreeValues_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_FreeValues_1() const { return ___FreeValues_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_FreeValues_1() { return &___FreeValues_1; } inline void set_FreeValues_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___FreeValues_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeValues_1), (void*)value); } inline static int32_t get_offset_of_THREAD_LOCK_TOKEN_3() { return static_cast<int32_t>(offsetof(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_StaticFields, ___THREAD_LOCK_TOKEN_3)); } inline int32_t get_THREAD_LOCK_TOKEN_3() const { return ___THREAD_LOCK_TOKEN_3; } inline int32_t* get_address_of_THREAD_LOCK_TOKEN_3() { return &___THREAD_LOCK_TOKEN_3; } inline void set_THREAD_LOCK_TOKEN_3(int32_t value) { ___THREAD_LOCK_TOKEN_3 = value; } inline static int32_t get_offset_of_maxCacheSize_4() { return static_cast<int32_t>(offsetof(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_StaticFields, ___maxCacheSize_4)); } inline int32_t get_maxCacheSize_4() const { return ___maxCacheSize_4; } inline int32_t* get_address_of_maxCacheSize_4() { return &___maxCacheSize_4; } inline void set_maxCacheSize_4(int32_t value) { ___maxCacheSize_4 = value; } }; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.JsonDataWriter> struct Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C : public RuntimeObject { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::isFree bool ___isFree_2; // T Sirenix.Serialization.Utilities.Cache`1::Value JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * ___Value_5; public: inline static int32_t get_offset_of_isFree_2() { return static_cast<int32_t>(offsetof(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C, ___isFree_2)); } inline bool get_isFree_2() const { return ___isFree_2; } inline bool* get_address_of_isFree_2() { return &___isFree_2; } inline void set_isFree_2(bool value) { ___isFree_2 = value; } inline static int32_t get_offset_of_Value_5() { return static_cast<int32_t>(offsetof(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C, ___Value_5)); } inline JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * get_Value_5() const { return ___Value_5; } inline JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B ** get_address_of_Value_5() { return &___Value_5; } inline void set_Value_5(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * value) { ___Value_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_5), (void*)value); } }; struct Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_StaticFields { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::IsNotificationReceiver bool ___IsNotificationReceiver_0; // System.Object[] Sirenix.Serialization.Utilities.Cache`1::FreeValues ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___FreeValues_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.Utilities.Cache`1::THREAD_LOCK_TOKEN int32_t ___THREAD_LOCK_TOKEN_3; // System.Int32 Sirenix.Serialization.Utilities.Cache`1::maxCacheSize int32_t ___maxCacheSize_4; public: inline static int32_t get_offset_of_IsNotificationReceiver_0() { return static_cast<int32_t>(offsetof(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_StaticFields, ___IsNotificationReceiver_0)); } inline bool get_IsNotificationReceiver_0() const { return ___IsNotificationReceiver_0; } inline bool* get_address_of_IsNotificationReceiver_0() { return &___IsNotificationReceiver_0; } inline void set_IsNotificationReceiver_0(bool value) { ___IsNotificationReceiver_0 = value; } inline static int32_t get_offset_of_FreeValues_1() { return static_cast<int32_t>(offsetof(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_StaticFields, ___FreeValues_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_FreeValues_1() const { return ___FreeValues_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_FreeValues_1() { return &___FreeValues_1; } inline void set_FreeValues_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___FreeValues_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeValues_1), (void*)value); } inline static int32_t get_offset_of_THREAD_LOCK_TOKEN_3() { return static_cast<int32_t>(offsetof(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_StaticFields, ___THREAD_LOCK_TOKEN_3)); } inline int32_t get_THREAD_LOCK_TOKEN_3() const { return ___THREAD_LOCK_TOKEN_3; } inline int32_t* get_address_of_THREAD_LOCK_TOKEN_3() { return &___THREAD_LOCK_TOKEN_3; } inline void set_THREAD_LOCK_TOKEN_3(int32_t value) { ___THREAD_LOCK_TOKEN_3 = value; } inline static int32_t get_offset_of_maxCacheSize_4() { return static_cast<int32_t>(offsetof(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_StaticFields, ___maxCacheSize_4)); } inline int32_t get_maxCacheSize_4() const { return ___maxCacheSize_4; } inline int32_t* get_address_of_maxCacheSize_4() { return &___maxCacheSize_4; } inline void set_maxCacheSize_4(int32_t value) { ___maxCacheSize_4 = value; } }; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.SerializationContext> struct Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE : public RuntimeObject { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::isFree bool ___isFree_2; // T Sirenix.Serialization.Utilities.Cache`1::Value SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___Value_5; public: inline static int32_t get_offset_of_isFree_2() { return static_cast<int32_t>(offsetof(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE, ___isFree_2)); } inline bool get_isFree_2() const { return ___isFree_2; } inline bool* get_address_of_isFree_2() { return &___isFree_2; } inline void set_isFree_2(bool value) { ___isFree_2 = value; } inline static int32_t get_offset_of_Value_5() { return static_cast<int32_t>(offsetof(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE, ___Value_5)); } inline SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * get_Value_5() const { return ___Value_5; } inline SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B ** get_address_of_Value_5() { return &___Value_5; } inline void set_Value_5(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * value) { ___Value_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_5), (void*)value); } }; struct Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_StaticFields { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::IsNotificationReceiver bool ___IsNotificationReceiver_0; // System.Object[] Sirenix.Serialization.Utilities.Cache`1::FreeValues ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___FreeValues_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.Utilities.Cache`1::THREAD_LOCK_TOKEN int32_t ___THREAD_LOCK_TOKEN_3; // System.Int32 Sirenix.Serialization.Utilities.Cache`1::maxCacheSize int32_t ___maxCacheSize_4; public: inline static int32_t get_offset_of_IsNotificationReceiver_0() { return static_cast<int32_t>(offsetof(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_StaticFields, ___IsNotificationReceiver_0)); } inline bool get_IsNotificationReceiver_0() const { return ___IsNotificationReceiver_0; } inline bool* get_address_of_IsNotificationReceiver_0() { return &___IsNotificationReceiver_0; } inline void set_IsNotificationReceiver_0(bool value) { ___IsNotificationReceiver_0 = value; } inline static int32_t get_offset_of_FreeValues_1() { return static_cast<int32_t>(offsetof(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_StaticFields, ___FreeValues_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_FreeValues_1() const { return ___FreeValues_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_FreeValues_1() { return &___FreeValues_1; } inline void set_FreeValues_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___FreeValues_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeValues_1), (void*)value); } inline static int32_t get_offset_of_THREAD_LOCK_TOKEN_3() { return static_cast<int32_t>(offsetof(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_StaticFields, ___THREAD_LOCK_TOKEN_3)); } inline int32_t get_THREAD_LOCK_TOKEN_3() const { return ___THREAD_LOCK_TOKEN_3; } inline int32_t* get_address_of_THREAD_LOCK_TOKEN_3() { return &___THREAD_LOCK_TOKEN_3; } inline void set_THREAD_LOCK_TOKEN_3(int32_t value) { ___THREAD_LOCK_TOKEN_3 = value; } inline static int32_t get_offset_of_maxCacheSize_4() { return static_cast<int32_t>(offsetof(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_StaticFields, ___maxCacheSize_4)); } inline int32_t get_maxCacheSize_4() const { return ___maxCacheSize_4; } inline int32_t* get_address_of_maxCacheSize_4() { return &___maxCacheSize_4; } inline void set_maxCacheSize_4(int32_t value) { ___maxCacheSize_4 = value; } }; // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.UnityReferenceResolver> struct Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B : public RuntimeObject { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::isFree bool ___isFree_2; // T Sirenix.Serialization.Utilities.Cache`1::Value UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * ___Value_5; public: inline static int32_t get_offset_of_isFree_2() { return static_cast<int32_t>(offsetof(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B, ___isFree_2)); } inline bool get_isFree_2() const { return ___isFree_2; } inline bool* get_address_of_isFree_2() { return &___isFree_2; } inline void set_isFree_2(bool value) { ___isFree_2 = value; } inline static int32_t get_offset_of_Value_5() { return static_cast<int32_t>(offsetof(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B, ___Value_5)); } inline UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * get_Value_5() const { return ___Value_5; } inline UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 ** get_address_of_Value_5() { return &___Value_5; } inline void set_Value_5(UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * value) { ___Value_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_5), (void*)value); } }; struct Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_StaticFields { public: // System.Boolean Sirenix.Serialization.Utilities.Cache`1::IsNotificationReceiver bool ___IsNotificationReceiver_0; // System.Object[] Sirenix.Serialization.Utilities.Cache`1::FreeValues ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___FreeValues_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.Utilities.Cache`1::THREAD_LOCK_TOKEN int32_t ___THREAD_LOCK_TOKEN_3; // System.Int32 Sirenix.Serialization.Utilities.Cache`1::maxCacheSize int32_t ___maxCacheSize_4; public: inline static int32_t get_offset_of_IsNotificationReceiver_0() { return static_cast<int32_t>(offsetof(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_StaticFields, ___IsNotificationReceiver_0)); } inline bool get_IsNotificationReceiver_0() const { return ___IsNotificationReceiver_0; } inline bool* get_address_of_IsNotificationReceiver_0() { return &___IsNotificationReceiver_0; } inline void set_IsNotificationReceiver_0(bool value) { ___IsNotificationReceiver_0 = value; } inline static int32_t get_offset_of_FreeValues_1() { return static_cast<int32_t>(offsetof(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_StaticFields, ___FreeValues_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_FreeValues_1() const { return ___FreeValues_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_FreeValues_1() { return &___FreeValues_1; } inline void set_FreeValues_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___FreeValues_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeValues_1), (void*)value); } inline static int32_t get_offset_of_THREAD_LOCK_TOKEN_3() { return static_cast<int32_t>(offsetof(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_StaticFields, ___THREAD_LOCK_TOKEN_3)); } inline int32_t get_THREAD_LOCK_TOKEN_3() const { return ___THREAD_LOCK_TOKEN_3; } inline int32_t* get_address_of_THREAD_LOCK_TOKEN_3() { return &___THREAD_LOCK_TOKEN_3; } inline void set_THREAD_LOCK_TOKEN_3(int32_t value) { ___THREAD_LOCK_TOKEN_3 = value; } inline static int32_t get_offset_of_maxCacheSize_4() { return static_cast<int32_t>(offsetof(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_StaticFields, ___maxCacheSize_4)); } inline int32_t get_maxCacheSize_4() const { return ___maxCacheSize_4; } inline int32_t* get_address_of_maxCacheSize_4() { return &___maxCacheSize_4; } inline void set_maxCacheSize_4(int32_t value) { ___maxCacheSize_4 = value; } }; // Sirenix.Serialization.Utilities.MemberAliasFieldInfo struct MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 : public FieldInfo_t { public: // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.MemberAliasFieldInfo::aliasedField FieldInfo_t * ___aliasedField_1; // System.String Sirenix.Serialization.Utilities.MemberAliasFieldInfo::mangledName String_t* ___mangledName_2; public: inline static int32_t get_offset_of_aliasedField_1() { return static_cast<int32_t>(offsetof(MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8, ___aliasedField_1)); } inline FieldInfo_t * get_aliasedField_1() const { return ___aliasedField_1; } inline FieldInfo_t ** get_address_of_aliasedField_1() { return &___aliasedField_1; } inline void set_aliasedField_1(FieldInfo_t * value) { ___aliasedField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___aliasedField_1), (void*)value); } inline static int32_t get_offset_of_mangledName_2() { return static_cast<int32_t>(offsetof(MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8, ___mangledName_2)); } inline String_t* get_mangledName_2() const { return ___mangledName_2; } inline String_t** get_address_of_mangledName_2() { return &___mangledName_2; } inline void set_mangledName_2(String_t* value) { ___mangledName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___mangledName_2), (void*)value); } }; // Sirenix.Serialization.Utilities.MemberAliasPropertyInfo struct MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F : public PropertyInfo_t { public: // System.Reflection.PropertyInfo Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::aliasedProperty PropertyInfo_t * ___aliasedProperty_1; // System.String Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::mangledName String_t* ___mangledName_2; public: inline static int32_t get_offset_of_aliasedProperty_1() { return static_cast<int32_t>(offsetof(MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F, ___aliasedProperty_1)); } inline PropertyInfo_t * get_aliasedProperty_1() const { return ___aliasedProperty_1; } inline PropertyInfo_t ** get_address_of_aliasedProperty_1() { return &___aliasedProperty_1; } inline void set_aliasedProperty_1(PropertyInfo_t * value) { ___aliasedProperty_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___aliasedProperty_1), (void*)value); } inline static int32_t get_offset_of_mangledName_2() { return static_cast<int32_t>(offsetof(MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F, ___mangledName_2)); } inline String_t* get_mangledName_2() const { return ___mangledName_2; } inline String_t** get_address_of_mangledName_2() { return &___mangledName_2; } inline void set_mangledName_2(String_t* value) { ___mangledName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___mangledName_2), (void*)value); } }; // Sirenix.Serialization.Utilities.Operator struct Operator_t1D0871A5FEA01EB2965716C3C95A74469518C6A7 { public: // System.Int32 Sirenix.Serialization.Utilities.Operator::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Operator_t1D0871A5FEA01EB2965716C3C95A74469518C6A7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ByteEnum struct ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD { public: // System.Byte System.ByteEnum::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // System.Configuration.Assemblies.AssemblyHashAlgorithm struct AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9 { public: // System.Int32 System.Configuration.Assemblies.AssemblyHashAlgorithm::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Configuration.Assemblies.AssemblyVersionCompatibility struct AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C { public: // System.Int32 System.Configuration.Assemblies.AssemblyVersionCompatibility::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Globalization.NumberStyles struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.FileAttributes struct FileAttributes_t224B42F6F82954C94B51791913857C005C559876 { public: // System.Int32 System.IO.FileAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileAttributes_t224B42F6F82954C94B51791913857C005C559876, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.MemoryStream struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 { public: // System.Byte[] System.IO.MemoryStream::_buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____buffer_4; // System.Int32 System.IO.MemoryStream::_origin int32_t ____origin_5; // System.Int32 System.IO.MemoryStream::_position int32_t ____position_6; // System.Int32 System.IO.MemoryStream::_length int32_t ____length_7; // System.Int32 System.IO.MemoryStream::_capacity int32_t ____capacity_8; // System.Boolean System.IO.MemoryStream::_expandable bool ____expandable_9; // System.Boolean System.IO.MemoryStream::_writable bool ____writable_10; // System.Boolean System.IO.MemoryStream::_exposable bool ____exposable_11; // System.Boolean System.IO.MemoryStream::_isOpen bool ____isOpen_12; // System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ____lastReadTask_13; public: inline static int32_t get_offset_of__buffer_4() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____buffer_4)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__buffer_4() const { return ____buffer_4; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__buffer_4() { return &____buffer_4; } inline void set__buffer_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ____buffer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____buffer_4), (void*)value); } inline static int32_t get_offset_of__origin_5() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____origin_5)); } inline int32_t get__origin_5() const { return ____origin_5; } inline int32_t* get_address_of__origin_5() { return &____origin_5; } inline void set__origin_5(int32_t value) { ____origin_5 = value; } inline static int32_t get_offset_of__position_6() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____position_6)); } inline int32_t get__position_6() const { return ____position_6; } inline int32_t* get_address_of__position_6() { return &____position_6; } inline void set__position_6(int32_t value) { ____position_6 = value; } inline static int32_t get_offset_of__length_7() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____length_7)); } inline int32_t get__length_7() const { return ____length_7; } inline int32_t* get_address_of__length_7() { return &____length_7; } inline void set__length_7(int32_t value) { ____length_7 = value; } inline static int32_t get_offset_of__capacity_8() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____capacity_8)); } inline int32_t get__capacity_8() const { return ____capacity_8; } inline int32_t* get_address_of__capacity_8() { return &____capacity_8; } inline void set__capacity_8(int32_t value) { ____capacity_8 = value; } inline static int32_t get_offset_of__expandable_9() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____expandable_9)); } inline bool get__expandable_9() const { return ____expandable_9; } inline bool* get_address_of__expandable_9() { return &____expandable_9; } inline void set__expandable_9(bool value) { ____expandable_9 = value; } inline static int32_t get_offset_of__writable_10() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____writable_10)); } inline bool get__writable_10() const { return ____writable_10; } inline bool* get_address_of__writable_10() { return &____writable_10; } inline void set__writable_10(bool value) { ____writable_10 = value; } inline static int32_t get_offset_of__exposable_11() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____exposable_11)); } inline bool get__exposable_11() const { return ____exposable_11; } inline bool* get_address_of__exposable_11() { return &____exposable_11; } inline void set__exposable_11(bool value) { ____exposable_11 = value; } inline static int32_t get_offset_of__isOpen_12() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____isOpen_12)); } inline bool get__isOpen_12() const { return ____isOpen_12; } inline bool* get_address_of__isOpen_12() { return &____isOpen_12; } inline void set__isOpen_12(bool value) { ____isOpen_12 = value; } inline static int32_t get_offset_of__lastReadTask_13() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____lastReadTask_13)); } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get__lastReadTask_13() const { return ____lastReadTask_13; } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of__lastReadTask_13() { return &____lastReadTask_13; } inline void set__lastReadTask_13(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value) { ____lastReadTask_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_13), (void*)value); } }; // System.Reflection.Assembly struct Assembly_t : public RuntimeObject { public: // System.IntPtr System.Reflection.Assembly::_mono_assembly intptr_t ____mono_assembly_0; // System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; // System.Object System.Reflection.Assembly::_evidence RuntimeObject * ____evidence_2; // System.Object System.Reflection.Assembly::_minimum RuntimeObject * ____minimum_3; // System.Object System.Reflection.Assembly::_optional RuntimeObject * ____optional_4; // System.Object System.Reflection.Assembly::_refuse RuntimeObject * ____refuse_5; // System.Object System.Reflection.Assembly::_granted RuntimeObject * ____granted_6; // System.Object System.Reflection.Assembly::_denied RuntimeObject * ____denied_7; // System.Boolean System.Reflection.Assembly::fromByteArray bool ___fromByteArray_8; // System.String System.Reflection.Assembly::assemblyName String_t* ___assemblyName_9; public: inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); } inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; } inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; } inline void set__mono_assembly_0(intptr_t value) { ____mono_assembly_0 = value; } inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; } inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value) { ___resolve_event_holder_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value); } inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); } inline RuntimeObject * get__evidence_2() const { return ____evidence_2; } inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; } inline void set__evidence_2(RuntimeObject * value) { ____evidence_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value); } inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); } inline RuntimeObject * get__minimum_3() const { return ____minimum_3; } inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; } inline void set__minimum_3(RuntimeObject * value) { ____minimum_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value); } inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); } inline RuntimeObject * get__optional_4() const { return ____optional_4; } inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; } inline void set__optional_4(RuntimeObject * value) { ____optional_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value); } inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); } inline RuntimeObject * get__refuse_5() const { return ____refuse_5; } inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; } inline void set__refuse_5(RuntimeObject * value) { ____refuse_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value); } inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); } inline RuntimeObject * get__granted_6() const { return ____granted_6; } inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; } inline void set__granted_6(RuntimeObject * value) { ____granted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value); } inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); } inline RuntimeObject * get__denied_7() const { return ____denied_7; } inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; } inline void set__denied_7(RuntimeObject * value) { ____denied_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value); } inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); } inline bool get_fromByteArray_8() const { return ___fromByteArray_8; } inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; } inline void set_fromByteArray_8(bool value) { ___fromByteArray_8 = value; } inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); } inline String_t* get_assemblyName_9() const { return ___assemblyName_9; } inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; } inline void set_assemblyName_9(String_t* value) { ___assemblyName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_pinvoke { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; char* ___assemblyName_9; }; // Native definition for COM marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_com { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; Il2CppChar* ___assemblyName_9; }; // System.Reflection.AssemblyContentType struct AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401 { public: // System.Int32 System.Reflection.AssemblyContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.AssemblyNameFlags struct AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256 { public: // System.Int32 System.Reflection.AssemblyNameFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.ConstructorInfo struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF : public MethodBase_t { public: public: }; struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields { public: // System.String System.Reflection.ConstructorInfo::ConstructorName String_t* ___ConstructorName_0; // System.String System.Reflection.ConstructorInfo::TypeConstructorName String_t* ___TypeConstructorName_1; public: inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___ConstructorName_0)); } inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; } inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; } inline void set_ConstructorName_0(String_t* value) { ___ConstructorName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value); } inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___TypeConstructorName_1)); } inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; } inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; } inline void set_TypeConstructorName_1(String_t* value) { ___TypeConstructorName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value); } }; // System.Reflection.FieldAttributes struct FieldAttributes_t53FAFABBE4087C280EE0ED26F8F0EF29D24CC0B1 { public: // System.Int32 System.Reflection.FieldAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FieldAttributes_t53FAFABBE4087C280EE0ED26F8F0EF29D24CC0B1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.GenericParameterAttributes struct GenericParameterAttributes_t63450AEBA1F27F81502722CE89E01BD01E27A8CE { public: // System.Int32 System.Reflection.GenericParameterAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GenericParameterAttributes_t63450AEBA1F27F81502722CE89E01BD01E27A8CE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MethodAttributes struct MethodAttributes_tBEF3274421B682BFF8D0FF0BEA84C8FD9D63F202 { public: // System.Int32 System.Reflection.MethodAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MethodAttributes_tBEF3274421B682BFF8D0FF0BEA84C8FD9D63F202, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MethodImplAttributes struct MethodImplAttributes_tBFAD430267FCF0F168BF37FFDA5F43B4CA95172E { public: // System.Int32 System.Reflection.MethodImplAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MethodImplAttributes_tBFAD430267FCF0F168BF37FFDA5F43B4CA95172E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Reflection.ParameterAttributes struct ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110 { public: // System.Int32 System.Reflection.ParameterAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.ProcessorArchitecture struct ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7 { public: // System.Int32 System.Reflection.ProcessorArchitecture::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.PropertyAttributes struct PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C { public: // System.Int32 System.Reflection.PropertyAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeMethodHandle struct RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F { public: // System.IntPtr System.RuntimeMethodHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.StringComparison struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TimeSpan struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com { intptr_t ___m_CachedPtr_0; }; // UnityEngine.RuntimePlatform struct RuntimePlatform_tD5F5737C1BBBCBB115EB104DF2B7876387E80132 { public: // System.Int32 UnityEngine.RuntimePlatform::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RuntimePlatform_tD5F5737C1BBBCBB115EB104DF2B7876387E80132, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Sirenix.Serialization.DebugContext struct DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD : public RuntimeObject { public: // System.Object Sirenix.Serialization.DebugContext::LOCK RuntimeObject * ___LOCK_0; // Sirenix.Serialization.ILogger modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.DebugContext::logger RuntimeObject* ___logger_1; // Sirenix.Serialization.LoggingPolicy modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.DebugContext::loggingPolicy int32_t ___loggingPolicy_2; // Sirenix.Serialization.ErrorHandlingPolicy modreq(System.Runtime.CompilerServices.IsVolatile) Sirenix.Serialization.DebugContext::errorHandlingPolicy int32_t ___errorHandlingPolicy_3; public: inline static int32_t get_offset_of_LOCK_0() { return static_cast<int32_t>(offsetof(DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD, ___LOCK_0)); } inline RuntimeObject * get_LOCK_0() const { return ___LOCK_0; } inline RuntimeObject ** get_address_of_LOCK_0() { return &___LOCK_0; } inline void set_LOCK_0(RuntimeObject * value) { ___LOCK_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___LOCK_0), (void*)value); } inline static int32_t get_offset_of_logger_1() { return static_cast<int32_t>(offsetof(DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD, ___logger_1)); } inline RuntimeObject* get_logger_1() const { return ___logger_1; } inline RuntimeObject** get_address_of_logger_1() { return &___logger_1; } inline void set_logger_1(RuntimeObject* value) { ___logger_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_1), (void*)value); } inline static int32_t get_offset_of_loggingPolicy_2() { return static_cast<int32_t>(offsetof(DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD, ___loggingPolicy_2)); } inline int32_t get_loggingPolicy_2() const { return ___loggingPolicy_2; } inline int32_t* get_address_of_loggingPolicy_2() { return &___loggingPolicy_2; } inline void set_loggingPolicy_2(int32_t value) { ___loggingPolicy_2 = value; } inline static int32_t get_offset_of_errorHandlingPolicy_3() { return static_cast<int32_t>(offsetof(DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD, ___errorHandlingPolicy_3)); } inline int32_t get_errorHandlingPolicy_3() const { return ___errorHandlingPolicy_3; } inline int32_t* get_address_of_errorHandlingPolicy_3() { return &___errorHandlingPolicy_3; } inline void set_errorHandlingPolicy_3(int32_t value) { ___errorHandlingPolicy_3 = value; } }; // Sirenix.Serialization.PrefabModification struct PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 : public RuntimeObject { public: // Sirenix.Serialization.PrefabModificationType Sirenix.Serialization.PrefabModification::ModificationType int32_t ___ModificationType_0; // System.String Sirenix.Serialization.PrefabModification::Path String_t* ___Path_1; // System.Collections.Generic.List`1<System.String> Sirenix.Serialization.PrefabModification::ReferencePaths List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___ReferencePaths_2; // System.Object Sirenix.Serialization.PrefabModification::ModifiedValue RuntimeObject * ___ModifiedValue_3; // System.Int32 Sirenix.Serialization.PrefabModification::NewLength int32_t ___NewLength_4; // System.Object[] Sirenix.Serialization.PrefabModification::DictionaryKeysAdded ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___DictionaryKeysAdded_5; // System.Object[] Sirenix.Serialization.PrefabModification::DictionaryKeysRemoved ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___DictionaryKeysRemoved_6; public: inline static int32_t get_offset_of_ModificationType_0() { return static_cast<int32_t>(offsetof(PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45, ___ModificationType_0)); } inline int32_t get_ModificationType_0() const { return ___ModificationType_0; } inline int32_t* get_address_of_ModificationType_0() { return &___ModificationType_0; } inline void set_ModificationType_0(int32_t value) { ___ModificationType_0 = value; } inline static int32_t get_offset_of_Path_1() { return static_cast<int32_t>(offsetof(PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45, ___Path_1)); } inline String_t* get_Path_1() const { return ___Path_1; } inline String_t** get_address_of_Path_1() { return &___Path_1; } inline void set_Path_1(String_t* value) { ___Path_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Path_1), (void*)value); } inline static int32_t get_offset_of_ReferencePaths_2() { return static_cast<int32_t>(offsetof(PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45, ___ReferencePaths_2)); } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_ReferencePaths_2() const { return ___ReferencePaths_2; } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_ReferencePaths_2() { return &___ReferencePaths_2; } inline void set_ReferencePaths_2(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value) { ___ReferencePaths_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReferencePaths_2), (void*)value); } inline static int32_t get_offset_of_ModifiedValue_3() { return static_cast<int32_t>(offsetof(PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45, ___ModifiedValue_3)); } inline RuntimeObject * get_ModifiedValue_3() const { return ___ModifiedValue_3; } inline RuntimeObject ** get_address_of_ModifiedValue_3() { return &___ModifiedValue_3; } inline void set_ModifiedValue_3(RuntimeObject * value) { ___ModifiedValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___ModifiedValue_3), (void*)value); } inline static int32_t get_offset_of_NewLength_4() { return static_cast<int32_t>(offsetof(PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45, ___NewLength_4)); } inline int32_t get_NewLength_4() const { return ___NewLength_4; } inline int32_t* get_address_of_NewLength_4() { return &___NewLength_4; } inline void set_NewLength_4(int32_t value) { ___NewLength_4 = value; } inline static int32_t get_offset_of_DictionaryKeysAdded_5() { return static_cast<int32_t>(offsetof(PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45, ___DictionaryKeysAdded_5)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_DictionaryKeysAdded_5() const { return ___DictionaryKeysAdded_5; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_DictionaryKeysAdded_5() { return &___DictionaryKeysAdded_5; } inline void set_DictionaryKeysAdded_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___DictionaryKeysAdded_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___DictionaryKeysAdded_5), (void*)value); } inline static int32_t get_offset_of_DictionaryKeysRemoved_6() { return static_cast<int32_t>(offsetof(PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45, ___DictionaryKeysRemoved_6)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_DictionaryKeysRemoved_6() const { return ___DictionaryKeysRemoved_6; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_DictionaryKeysRemoved_6() { return &___DictionaryKeysRemoved_6; } inline void set_DictionaryKeysRemoved_6(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___DictionaryKeysRemoved_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___DictionaryKeysRemoved_6), (void*)value); } }; // Sirenix.Serialization.SerializationAbortException struct SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB : public Exception_t { public: public: }; // Sirenix.Serialization.SerializationData struct SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 { public: // Sirenix.Serialization.DataFormat Sirenix.Serialization.SerializationData::SerializedFormat int32_t ___SerializedFormat_3; // System.Byte[] Sirenix.Serialization.SerializationData::SerializedBytes ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___SerializedBytes_4; // System.Collections.Generic.List`1<UnityEngine.Object> Sirenix.Serialization.SerializationData::ReferencedUnityObjects List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___ReferencedUnityObjects_5; // System.String Sirenix.Serialization.SerializationData::SerializedBytesString String_t* ___SerializedBytesString_6; // UnityEngine.Object Sirenix.Serialization.SerializationData::Prefab Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___Prefab_7; // System.Collections.Generic.List`1<UnityEngine.Object> Sirenix.Serialization.SerializationData::PrefabModificationsReferencedUnityObjects List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___PrefabModificationsReferencedUnityObjects_8; // System.Collections.Generic.List`1<System.String> Sirenix.Serialization.SerializationData::PrefabModifications List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___PrefabModifications_9; // System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode> Sirenix.Serialization.SerializationData::SerializationNodes List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * ___SerializationNodes_10; public: inline static int32_t get_offset_of_SerializedFormat_3() { return static_cast<int32_t>(offsetof(SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83, ___SerializedFormat_3)); } inline int32_t get_SerializedFormat_3() const { return ___SerializedFormat_3; } inline int32_t* get_address_of_SerializedFormat_3() { return &___SerializedFormat_3; } inline void set_SerializedFormat_3(int32_t value) { ___SerializedFormat_3 = value; } inline static int32_t get_offset_of_SerializedBytes_4() { return static_cast<int32_t>(offsetof(SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83, ___SerializedBytes_4)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_SerializedBytes_4() const { return ___SerializedBytes_4; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_SerializedBytes_4() { return &___SerializedBytes_4; } inline void set_SerializedBytes_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___SerializedBytes_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___SerializedBytes_4), (void*)value); } inline static int32_t get_offset_of_ReferencedUnityObjects_5() { return static_cast<int32_t>(offsetof(SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83, ___ReferencedUnityObjects_5)); } inline List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * get_ReferencedUnityObjects_5() const { return ___ReferencedUnityObjects_5; } inline List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** get_address_of_ReferencedUnityObjects_5() { return &___ReferencedUnityObjects_5; } inline void set_ReferencedUnityObjects_5(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * value) { ___ReferencedUnityObjects_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReferencedUnityObjects_5), (void*)value); } inline static int32_t get_offset_of_SerializedBytesString_6() { return static_cast<int32_t>(offsetof(SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83, ___SerializedBytesString_6)); } inline String_t* get_SerializedBytesString_6() const { return ___SerializedBytesString_6; } inline String_t** get_address_of_SerializedBytesString_6() { return &___SerializedBytesString_6; } inline void set_SerializedBytesString_6(String_t* value) { ___SerializedBytesString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___SerializedBytesString_6), (void*)value); } inline static int32_t get_offset_of_Prefab_7() { return static_cast<int32_t>(offsetof(SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83, ___Prefab_7)); } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_Prefab_7() const { return ___Prefab_7; } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_Prefab_7() { return &___Prefab_7; } inline void set_Prefab_7(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value) { ___Prefab_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prefab_7), (void*)value); } inline static int32_t get_offset_of_PrefabModificationsReferencedUnityObjects_8() { return static_cast<int32_t>(offsetof(SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83, ___PrefabModificationsReferencedUnityObjects_8)); } inline List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * get_PrefabModificationsReferencedUnityObjects_8() const { return ___PrefabModificationsReferencedUnityObjects_8; } inline List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** get_address_of_PrefabModificationsReferencedUnityObjects_8() { return &___PrefabModificationsReferencedUnityObjects_8; } inline void set_PrefabModificationsReferencedUnityObjects_8(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * value) { ___PrefabModificationsReferencedUnityObjects_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrefabModificationsReferencedUnityObjects_8), (void*)value); } inline static int32_t get_offset_of_PrefabModifications_9() { return static_cast<int32_t>(offsetof(SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83, ___PrefabModifications_9)); } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_PrefabModifications_9() const { return ___PrefabModifications_9; } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_PrefabModifications_9() { return &___PrefabModifications_9; } inline void set_PrefabModifications_9(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value) { ___PrefabModifications_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrefabModifications_9), (void*)value); } inline static int32_t get_offset_of_SerializationNodes_10() { return static_cast<int32_t>(offsetof(SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83, ___SerializationNodes_10)); } inline List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * get_SerializationNodes_10() const { return ___SerializationNodes_10; } inline List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB ** get_address_of_SerializationNodes_10() { return &___SerializationNodes_10; } inline void set_SerializationNodes_10(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * value) { ___SerializationNodes_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___SerializationNodes_10), (void*)value); } }; // Native definition for P/Invoke marshalling of Sirenix.Serialization.SerializationData struct SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83_marshaled_pinvoke { int32_t ___SerializedFormat_3; Il2CppSafeArray/*NONE*/* ___SerializedBytes_4; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___ReferencedUnityObjects_5; char* ___SerializedBytesString_6; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___Prefab_7; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___PrefabModificationsReferencedUnityObjects_8; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___PrefabModifications_9; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * ___SerializationNodes_10; }; // Native definition for COM marshalling of Sirenix.Serialization.SerializationData struct SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83_marshaled_com { int32_t ___SerializedFormat_3; Il2CppSafeArray/*NONE*/* ___SerializedBytes_4; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___ReferencedUnityObjects_5; Il2CppChar* ___SerializedBytesString_6; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___Prefab_7; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___PrefabModificationsReferencedUnityObjects_8; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___PrefabModifications_9; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * ___SerializationNodes_10; }; // Sirenix.Serialization.SerializationNode struct SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 { public: // System.String Sirenix.Serialization.SerializationNode::Name String_t* ___Name_0; // Sirenix.Serialization.EntryType Sirenix.Serialization.SerializationNode::Entry uint8_t ___Entry_1; // System.String Sirenix.Serialization.SerializationNode::Data String_t* ___Data_2; public: inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15, ___Name_0)); } inline String_t* get_Name_0() const { return ___Name_0; } inline String_t** get_address_of_Name_0() { return &___Name_0; } inline void set_Name_0(String_t* value) { ___Name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value); } inline static int32_t get_offset_of_Entry_1() { return static_cast<int32_t>(offsetof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15, ___Entry_1)); } inline uint8_t get_Entry_1() const { return ___Entry_1; } inline uint8_t* get_address_of_Entry_1() { return &___Entry_1; } inline void set_Entry_1(uint8_t value) { ___Entry_1 = value; } inline static int32_t get_offset_of_Data_2() { return static_cast<int32_t>(offsetof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15, ___Data_2)); } inline String_t* get_Data_2() const { return ___Data_2; } inline String_t** get_address_of_Data_2() { return &___Data_2; } inline void set_Data_2(String_t* value) { ___Data_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Data_2), (void*)value); } }; // Native definition for P/Invoke marshalling of Sirenix.Serialization.SerializationNode struct SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15_marshaled_pinvoke { char* ___Name_0; uint8_t ___Entry_1; char* ___Data_2; }; // Native definition for COM marshalling of Sirenix.Serialization.SerializationNode struct SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15_marshaled_com { Il2CppChar* ___Name_0; uint8_t ___Entry_1; Il2CppChar* ___Data_2; }; // Sirenix.Serialization.UnitySerializationInitializer struct UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD : public RuntimeObject { public: public: }; struct UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields { public: // System.Object Sirenix.Serialization.UnitySerializationInitializer::LOCK RuntimeObject * ___LOCK_0; // System.Boolean Sirenix.Serialization.UnitySerializationInitializer::initialized bool ___initialized_1; // UnityEngine.RuntimePlatform Sirenix.Serialization.UnitySerializationInitializer::<CurrentPlatform>k__BackingField int32_t ___U3CCurrentPlatformU3Ek__BackingField_2; public: inline static int32_t get_offset_of_LOCK_0() { return static_cast<int32_t>(offsetof(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields, ___LOCK_0)); } inline RuntimeObject * get_LOCK_0() const { return ___LOCK_0; } inline RuntimeObject ** get_address_of_LOCK_0() { return &___LOCK_0; } inline void set_LOCK_0(RuntimeObject * value) { ___LOCK_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___LOCK_0), (void*)value); } inline static int32_t get_offset_of_initialized_1() { return static_cast<int32_t>(offsetof(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields, ___initialized_1)); } inline bool get_initialized_1() const { return ___initialized_1; } inline bool* get_address_of_initialized_1() { return &___initialized_1; } inline void set_initialized_1(bool value) { ___initialized_1 = value; } inline static int32_t get_offset_of_U3CCurrentPlatformU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields, ___U3CCurrentPlatformU3Ek__BackingField_2)); } inline int32_t get_U3CCurrentPlatformU3Ek__BackingField_2() const { return ___U3CCurrentPlatformU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CCurrentPlatformU3Ek__BackingField_2() { return &___U3CCurrentPlatformU3Ek__BackingField_2; } inline void set_U3CCurrentPlatformU3Ek__BackingField_2(int32_t value) { ___U3CCurrentPlatformU3Ek__BackingField_2 = value; } }; // Sirenix.Serialization.Utilities.Flags struct Flags_t1816E20CB24DBCABCF980C28A7546467FCA53827 : public RuntimeObject { public: public: }; // Sirenix.Serialization.Utilities.MemberAliasMethodInfo struct MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 : public MethodInfo_t { public: // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.MemberAliasMethodInfo::aliasedMethod MethodInfo_t * ___aliasedMethod_1; // System.String Sirenix.Serialization.Utilities.MemberAliasMethodInfo::mangledName String_t* ___mangledName_2; public: inline static int32_t get_offset_of_aliasedMethod_1() { return static_cast<int32_t>(offsetof(MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466, ___aliasedMethod_1)); } inline MethodInfo_t * get_aliasedMethod_1() const { return ___aliasedMethod_1; } inline MethodInfo_t ** get_address_of_aliasedMethod_1() { return &___aliasedMethod_1; } inline void set_aliasedMethod_1(MethodInfo_t * value) { ___aliasedMethod_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___aliasedMethod_1), (void*)value); } inline static int32_t get_offset_of_mangledName_2() { return static_cast<int32_t>(offsetof(MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466, ___mangledName_2)); } inline String_t* get_mangledName_2() const { return ___mangledName_2; } inline String_t** get_address_of_mangledName_2() { return &___mangledName_2; } inline void set_mangledName_2(String_t* value) { ___mangledName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___mangledName_2), (void*)value); } }; // Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47 struct U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB : public RuntimeObject { public: // System.Int32 Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::<>1__state int32_t ___U3CU3E1__state_0; // System.Reflection.MemberInfo Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::<>2__current MemberInfo_t * ___U3CU3E2__current_1; // System.Int32 Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::type Type_t * ___type_3; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::<>3__type Type_t * ___U3CU3E3__type_4; // System.Reflection.BindingFlags Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::flags int32_t ___flags_5; // System.Reflection.BindingFlags Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::<>3__flags int32_t ___U3CU3E3__flags_6; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::<currentType>5__1 Type_t * ___U3CcurrentTypeU3E5__1_7; // System.Reflection.MemberInfo[] Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::<>7__wrap1 MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* ___U3CU3E7__wrap1_8; // System.Int32 Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__47::<>7__wrap2 int32_t ___U3CU3E7__wrap2_9; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___U3CU3E2__current_1)); } inline MemberInfo_t * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline MemberInfo_t ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(MemberInfo_t * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___type_3)); } inline Type_t * get_type_3() const { return ___type_3; } inline Type_t ** get_address_of_type_3() { return &___type_3; } inline void set_type_3(Type_t * value) { ___type_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__type_4() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___U3CU3E3__type_4)); } inline Type_t * get_U3CU3E3__type_4() const { return ___U3CU3E3__type_4; } inline Type_t ** get_address_of_U3CU3E3__type_4() { return &___U3CU3E3__type_4; } inline void set_U3CU3E3__type_4(Type_t * value) { ___U3CU3E3__type_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__type_4), (void*)value); } inline static int32_t get_offset_of_flags_5() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___flags_5)); } inline int32_t get_flags_5() const { return ___flags_5; } inline int32_t* get_address_of_flags_5() { return &___flags_5; } inline void set_flags_5(int32_t value) { ___flags_5 = value; } inline static int32_t get_offset_of_U3CU3E3__flags_6() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___U3CU3E3__flags_6)); } inline int32_t get_U3CU3E3__flags_6() const { return ___U3CU3E3__flags_6; } inline int32_t* get_address_of_U3CU3E3__flags_6() { return &___U3CU3E3__flags_6; } inline void set_U3CU3E3__flags_6(int32_t value) { ___U3CU3E3__flags_6 = value; } inline static int32_t get_offset_of_U3CcurrentTypeU3E5__1_7() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___U3CcurrentTypeU3E5__1_7)); } inline Type_t * get_U3CcurrentTypeU3E5__1_7() const { return ___U3CcurrentTypeU3E5__1_7; } inline Type_t ** get_address_of_U3CcurrentTypeU3E5__1_7() { return &___U3CcurrentTypeU3E5__1_7; } inline void set_U3CcurrentTypeU3E5__1_7(Type_t * value) { ___U3CcurrentTypeU3E5__1_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CcurrentTypeU3E5__1_7), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_8() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___U3CU3E7__wrap1_8)); } inline MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* get_U3CU3E7__wrap1_8() const { return ___U3CU3E7__wrap1_8; } inline MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6** get_address_of_U3CU3E7__wrap1_8() { return &___U3CU3E7__wrap1_8; } inline void set_U3CU3E7__wrap1_8(MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* value) { ___U3CU3E7__wrap1_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap1_8), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap2_9() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB, ___U3CU3E7__wrap2_9)); } inline int32_t get_U3CU3E7__wrap2_9() const { return ___U3CU3E7__wrap2_9; } inline int32_t* get_address_of_U3CU3E7__wrap2_9() { return &___U3CU3E7__wrap2_9; } inline void set_U3CU3E7__wrap2_9(int32_t value) { ___U3CU3E7__wrap2_9 = value; } }; // Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48 struct U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C : public RuntimeObject { public: // System.Int32 Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::<>1__state int32_t ___U3CU3E1__state_0; // System.Reflection.MemberInfo Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::<>2__current MemberInfo_t * ___U3CU3E2__current_1; // System.Int32 Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::type Type_t * ___type_3; // System.Type Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::<>3__type Type_t * ___U3CU3E3__type_4; // System.Reflection.BindingFlags Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::flags int32_t ___flags_5; // System.Reflection.BindingFlags Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::<>3__flags int32_t ___U3CU3E3__flags_6; // System.String Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::name String_t* ___name_7; // System.String Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::<>3__name String_t* ___U3CU3E3__name_8; // System.Collections.Generic.IEnumerator`1<System.Reflection.MemberInfo> Sirenix.Serialization.Utilities.TypeExtensions_<GetAllMembers>d__48::<>7__wrap1 RuntimeObject* ___U3CU3E7__wrap1_9; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___U3CU3E2__current_1)); } inline MemberInfo_t * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline MemberInfo_t ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(MemberInfo_t * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___type_3)); } inline Type_t * get_type_3() const { return ___type_3; } inline Type_t ** get_address_of_type_3() { return &___type_3; } inline void set_type_3(Type_t * value) { ___type_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__type_4() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___U3CU3E3__type_4)); } inline Type_t * get_U3CU3E3__type_4() const { return ___U3CU3E3__type_4; } inline Type_t ** get_address_of_U3CU3E3__type_4() { return &___U3CU3E3__type_4; } inline void set_U3CU3E3__type_4(Type_t * value) { ___U3CU3E3__type_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__type_4), (void*)value); } inline static int32_t get_offset_of_flags_5() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___flags_5)); } inline int32_t get_flags_5() const { return ___flags_5; } inline int32_t* get_address_of_flags_5() { return &___flags_5; } inline void set_flags_5(int32_t value) { ___flags_5 = value; } inline static int32_t get_offset_of_U3CU3E3__flags_6() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___U3CU3E3__flags_6)); } inline int32_t get_U3CU3E3__flags_6() const { return ___U3CU3E3__flags_6; } inline int32_t* get_address_of_U3CU3E3__flags_6() { return &___U3CU3E3__flags_6; } inline void set_U3CU3E3__flags_6(int32_t value) { ___U3CU3E3__flags_6 = value; } inline static int32_t get_offset_of_name_7() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___name_7)); } inline String_t* get_name_7() const { return ___name_7; } inline String_t** get_address_of_name_7() { return &___name_7; } inline void set_name_7(String_t* value) { ___name_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_7), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__name_8() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___U3CU3E3__name_8)); } inline String_t* get_U3CU3E3__name_8() const { return ___U3CU3E3__name_8; } inline String_t** get_address_of_U3CU3E3__name_8() { return &___U3CU3E3__name_8; } inline void set_U3CU3E3__name_8(String_t* value) { ___U3CU3E3__name_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__name_8), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_9() { return static_cast<int32_t>(offsetof(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C, ___U3CU3E7__wrap1_9)); } inline RuntimeObject* get_U3CU3E7__wrap1_9() const { return ___U3CU3E7__wrap1_9; } inline RuntimeObject** get_address_of_U3CU3E7__wrap1_9() { return &___U3CU3E7__wrap1_9; } inline void set_U3CU3E7__wrap1_9(RuntimeObject* value) { ___U3CU3E7__wrap1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap1_9), (void*)value); } }; // System.ApplicationException struct ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 : public Exception_t { public: public: }; // System.IO.MonoIOStat struct MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 { public: // System.IO.FileAttributes System.IO.MonoIOStat::fileAttributes int32_t ___fileAttributes_0; // System.Int64 System.IO.MonoIOStat::Length int64_t ___Length_1; // System.Int64 System.IO.MonoIOStat::CreationTime int64_t ___CreationTime_2; // System.Int64 System.IO.MonoIOStat::LastAccessTime int64_t ___LastAccessTime_3; // System.Int64 System.IO.MonoIOStat::LastWriteTime int64_t ___LastWriteTime_4; public: inline static int32_t get_offset_of_fileAttributes_0() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___fileAttributes_0)); } inline int32_t get_fileAttributes_0() const { return ___fileAttributes_0; } inline int32_t* get_address_of_fileAttributes_0() { return &___fileAttributes_0; } inline void set_fileAttributes_0(int32_t value) { ___fileAttributes_0 = value; } inline static int32_t get_offset_of_Length_1() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___Length_1)); } inline int64_t get_Length_1() const { return ___Length_1; } inline int64_t* get_address_of_Length_1() { return &___Length_1; } inline void set_Length_1(int64_t value) { ___Length_1 = value; } inline static int32_t get_offset_of_CreationTime_2() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___CreationTime_2)); } inline int64_t get_CreationTime_2() const { return ___CreationTime_2; } inline int64_t* get_address_of_CreationTime_2() { return &___CreationTime_2; } inline void set_CreationTime_2(int64_t value) { ___CreationTime_2 = value; } inline static int32_t get_offset_of_LastAccessTime_3() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___LastAccessTime_3)); } inline int64_t get_LastAccessTime_3() const { return ___LastAccessTime_3; } inline int64_t* get_address_of_LastAccessTime_3() { return &___LastAccessTime_3; } inline void set_LastAccessTime_3(int64_t value) { ___LastAccessTime_3 = value; } inline static int32_t get_offset_of_LastWriteTime_4() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___LastWriteTime_4)); } inline int64_t get_LastWriteTime_4() const { return ___LastWriteTime_4; } inline int64_t* get_address_of_LastWriteTime_4() { return &___LastWriteTime_4; } inline void set_LastWriteTime_4(int64_t value) { ___LastWriteTime_4 = value; } }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.Nullable`1<Sirenix.Serialization.EntryType> struct Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 { public: // T System.Nullable`1::value uint8_t ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869, ___value_0)); } inline uint8_t get_value_0() const { return ___value_0; } inline uint8_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(uint8_t value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Nullable`1<System.ByteEnum> struct Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152 { public: // T System.Nullable`1::value uint8_t ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152, ___value_0)); } inline uint8_t get_value_0() const { return ___value_0; } inline uint8_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(uint8_t value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 : public RuntimeObject { public: // System.String System.Reflection.AssemblyName::name String_t* ___name_0; // System.String System.Reflection.AssemblyName::codebase String_t* ___codebase_1; // System.Int32 System.Reflection.AssemblyName::major int32_t ___major_2; // System.Int32 System.Reflection.AssemblyName::minor int32_t ___minor_3; // System.Int32 System.Reflection.AssemblyName::build int32_t ___build_4; // System.Int32 System.Reflection.AssemblyName::revision int32_t ___revision_5; // System.Globalization.CultureInfo System.Reflection.AssemblyName::cultureinfo CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___cultureinfo_6; // System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::flags int32_t ___flags_7; // System.Configuration.Assemblies.AssemblyHashAlgorithm System.Reflection.AssemblyName::hashalg int32_t ___hashalg_8; // System.Reflection.StrongNameKeyPair System.Reflection.AssemblyName::keypair StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; // System.Byte[] System.Reflection.AssemblyName::publicKey ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___publicKey_10; // System.Byte[] System.Reflection.AssemblyName::keyToken ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keyToken_11; // System.Configuration.Assemblies.AssemblyVersionCompatibility System.Reflection.AssemblyName::versioncompat int32_t ___versioncompat_12; // System.Version System.Reflection.AssemblyName::version Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; // System.Reflection.ProcessorArchitecture System.Reflection.AssemblyName::processor_architecture int32_t ___processor_architecture_14; // System.Reflection.AssemblyContentType System.Reflection.AssemblyName::contentType int32_t ___contentType_15; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_codebase_1() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___codebase_1)); } inline String_t* get_codebase_1() const { return ___codebase_1; } inline String_t** get_address_of_codebase_1() { return &___codebase_1; } inline void set_codebase_1(String_t* value) { ___codebase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___codebase_1), (void*)value); } inline static int32_t get_offset_of_major_2() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___major_2)); } inline int32_t get_major_2() const { return ___major_2; } inline int32_t* get_address_of_major_2() { return &___major_2; } inline void set_major_2(int32_t value) { ___major_2 = value; } inline static int32_t get_offset_of_minor_3() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___minor_3)); } inline int32_t get_minor_3() const { return ___minor_3; } inline int32_t* get_address_of_minor_3() { return &___minor_3; } inline void set_minor_3(int32_t value) { ___minor_3 = value; } inline static int32_t get_offset_of_build_4() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___build_4)); } inline int32_t get_build_4() const { return ___build_4; } inline int32_t* get_address_of_build_4() { return &___build_4; } inline void set_build_4(int32_t value) { ___build_4 = value; } inline static int32_t get_offset_of_revision_5() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___revision_5)); } inline int32_t get_revision_5() const { return ___revision_5; } inline int32_t* get_address_of_revision_5() { return &___revision_5; } inline void set_revision_5(int32_t value) { ___revision_5 = value; } inline static int32_t get_offset_of_cultureinfo_6() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___cultureinfo_6)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_cultureinfo_6() const { return ___cultureinfo_6; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_cultureinfo_6() { return &___cultureinfo_6; } inline void set_cultureinfo_6(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___cultureinfo_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___cultureinfo_6), (void*)value); } inline static int32_t get_offset_of_flags_7() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___flags_7)); } inline int32_t get_flags_7() const { return ___flags_7; } inline int32_t* get_address_of_flags_7() { return &___flags_7; } inline void set_flags_7(int32_t value) { ___flags_7 = value; } inline static int32_t get_offset_of_hashalg_8() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___hashalg_8)); } inline int32_t get_hashalg_8() const { return ___hashalg_8; } inline int32_t* get_address_of_hashalg_8() { return &___hashalg_8; } inline void set_hashalg_8(int32_t value) { ___hashalg_8 = value; } inline static int32_t get_offset_of_keypair_9() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keypair_9)); } inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * get_keypair_9() const { return ___keypair_9; } inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD ** get_address_of_keypair_9() { return &___keypair_9; } inline void set_keypair_9(StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * value) { ___keypair_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___keypair_9), (void*)value); } inline static int32_t get_offset_of_publicKey_10() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___publicKey_10)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_publicKey_10() const { return ___publicKey_10; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_publicKey_10() { return &___publicKey_10; } inline void set_publicKey_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___publicKey_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKey_10), (void*)value); } inline static int32_t get_offset_of_keyToken_11() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keyToken_11)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_keyToken_11() const { return ___keyToken_11; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_keyToken_11() { return &___keyToken_11; } inline void set_keyToken_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___keyToken_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyToken_11), (void*)value); } inline static int32_t get_offset_of_versioncompat_12() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___versioncompat_12)); } inline int32_t get_versioncompat_12() const { return ___versioncompat_12; } inline int32_t* get_address_of_versioncompat_12() { return &___versioncompat_12; } inline void set_versioncompat_12(int32_t value) { ___versioncompat_12 = value; } inline static int32_t get_offset_of_version_13() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___version_13)); } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get_version_13() const { return ___version_13; } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of_version_13() { return &___version_13; } inline void set_version_13(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value) { ___version_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_13), (void*)value); } inline static int32_t get_offset_of_processor_architecture_14() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___processor_architecture_14)); } inline int32_t get_processor_architecture_14() const { return ___processor_architecture_14; } inline int32_t* get_address_of_processor_architecture_14() { return &___processor_architecture_14; } inline void set_processor_architecture_14(int32_t value) { ___processor_architecture_14 = value; } inline static int32_t get_offset_of_contentType_15() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___contentType_15)); } inline int32_t get_contentType_15() const { return ___contentType_15; } inline int32_t* get_address_of_contentType_15() { return &___contentType_15; } inline void set_contentType_15(int32_t value) { ___contentType_15 = value; } }; // Native definition for P/Invoke marshalling of System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_pinvoke { char* ___name_0; char* ___codebase_1; int32_t ___major_2; int32_t ___minor_3; int32_t ___build_4; int32_t ___revision_5; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___cultureinfo_6; int32_t ___flags_7; int32_t ___hashalg_8; StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; Il2CppSafeArray/*NONE*/* ___publicKey_10; Il2CppSafeArray/*NONE*/* ___keyToken_11; int32_t ___versioncompat_12; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; int32_t ___processor_architecture_14; int32_t ___contentType_15; }; // Native definition for COM marshalling of System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_com { Il2CppChar* ___name_0; Il2CppChar* ___codebase_1; int32_t ___major_2; int32_t ___minor_3; int32_t ___build_4; int32_t ___revision_5; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___cultureinfo_6; int32_t ___flags_7; int32_t ___hashalg_8; StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; Il2CppSafeArray/*NONE*/* ___publicKey_10; Il2CppSafeArray/*NONE*/* ___keyToken_11; int32_t ___versioncompat_12; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; int32_t ___processor_architecture_14; int32_t ___contentType_15; }; // System.Reflection.Module struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 : public RuntimeObject { public: // System.IntPtr System.Reflection.Module::_impl intptr_t ____impl_2; // System.Reflection.Assembly System.Reflection.Module::assembly Assembly_t * ___assembly_3; // System.String System.Reflection.Module::fqname String_t* ___fqname_4; // System.String System.Reflection.Module::name String_t* ___name_5; // System.String System.Reflection.Module::scopename String_t* ___scopename_6; // System.Boolean System.Reflection.Module::is_resource bool ___is_resource_7; // System.Int32 System.Reflection.Module::token int32_t ___token_8; public: inline static int32_t get_offset_of__impl_2() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ____impl_2)); } inline intptr_t get__impl_2() const { return ____impl_2; } inline intptr_t* get_address_of__impl_2() { return &____impl_2; } inline void set__impl_2(intptr_t value) { ____impl_2 = value; } inline static int32_t get_offset_of_assembly_3() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___assembly_3)); } inline Assembly_t * get_assembly_3() const { return ___assembly_3; } inline Assembly_t ** get_address_of_assembly_3() { return &___assembly_3; } inline void set_assembly_3(Assembly_t * value) { ___assembly_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___assembly_3), (void*)value); } inline static int32_t get_offset_of_fqname_4() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___fqname_4)); } inline String_t* get_fqname_4() const { return ___fqname_4; } inline String_t** get_address_of_fqname_4() { return &___fqname_4; } inline void set_fqname_4(String_t* value) { ___fqname_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___fqname_4), (void*)value); } inline static int32_t get_offset_of_name_5() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___name_5)); } inline String_t* get_name_5() const { return ___name_5; } inline String_t** get_address_of_name_5() { return &___name_5; } inline void set_name_5(String_t* value) { ___name_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_5), (void*)value); } inline static int32_t get_offset_of_scopename_6() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___scopename_6)); } inline String_t* get_scopename_6() const { return ___scopename_6; } inline String_t** get_address_of_scopename_6() { return &___scopename_6; } inline void set_scopename_6(String_t* value) { ___scopename_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___scopename_6), (void*)value); } inline static int32_t get_offset_of_is_resource_7() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___is_resource_7)); } inline bool get_is_resource_7() const { return ___is_resource_7; } inline bool* get_address_of_is_resource_7() { return &___is_resource_7; } inline void set_is_resource_7(bool value) { ___is_resource_7 = value; } inline static int32_t get_offset_of_token_8() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___token_8)); } inline int32_t get_token_8() const { return ___token_8; } inline int32_t* get_address_of_token_8() { return &___token_8; } inline void set_token_8(int32_t value) { ___token_8 = value; } }; struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields { public: // System.Reflection.TypeFilter System.Reflection.Module::FilterTypeName TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * ___FilterTypeName_0; // System.Reflection.TypeFilter System.Reflection.Module::FilterTypeNameIgnoreCase TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * ___FilterTypeNameIgnoreCase_1; public: inline static int32_t get_offset_of_FilterTypeName_0() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields, ___FilterTypeName_0)); } inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * get_FilterTypeName_0() const { return ___FilterTypeName_0; } inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 ** get_address_of_FilterTypeName_0() { return &___FilterTypeName_0; } inline void set_FilterTypeName_0(TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * value) { ___FilterTypeName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterTypeName_0), (void*)value); } inline static int32_t get_offset_of_FilterTypeNameIgnoreCase_1() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields, ___FilterTypeNameIgnoreCase_1)); } inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * get_FilterTypeNameIgnoreCase_1() const { return ___FilterTypeNameIgnoreCase_1; } inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 ** get_address_of_FilterTypeNameIgnoreCase_1() { return &___FilterTypeNameIgnoreCase_1; } inline void set_FilterTypeNameIgnoreCase_1(TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * value) { ___FilterTypeNameIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterTypeNameIgnoreCase_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.Module struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_marshaled_pinvoke { intptr_t ____impl_2; Assembly_t_marshaled_pinvoke* ___assembly_3; char* ___fqname_4; char* ___name_5; char* ___scopename_6; int32_t ___is_resource_7; int32_t ___token_8; }; // Native definition for COM marshalling of System.Reflection.Module struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_marshaled_com { intptr_t ____impl_2; Assembly_t_marshaled_com* ___assembly_3; Il2CppChar* ___fqname_4; Il2CppChar* ___name_5; Il2CppChar* ___scopename_6; int32_t ___is_resource_7; int32_t ___token_8; }; // System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB : public RuntimeObject { public: // System.Type System.Reflection.ParameterInfo::ClassImpl Type_t * ___ClassImpl_0; // System.Object System.Reflection.ParameterInfo::DefaultValueImpl RuntimeObject * ___DefaultValueImpl_1; // System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl MemberInfo_t * ___MemberImpl_2; // System.String System.Reflection.ParameterInfo::NameImpl String_t* ___NameImpl_3; // System.Int32 System.Reflection.ParameterInfo::PositionImpl int32_t ___PositionImpl_4; // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl int32_t ___AttrsImpl_5; // System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; public: inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___ClassImpl_0)); } inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; } inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; } inline void set_ClassImpl_0(Type_t * value) { ___ClassImpl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value); } inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___DefaultValueImpl_1)); } inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; } inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; } inline void set_DefaultValueImpl_1(RuntimeObject * value) { ___DefaultValueImpl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value); } inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___MemberImpl_2)); } inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; } inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; } inline void set_MemberImpl_2(MemberInfo_t * value) { ___MemberImpl_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value); } inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___NameImpl_3)); } inline String_t* get_NameImpl_3() const { return ___NameImpl_3; } inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; } inline void set_NameImpl_3(String_t* value) { ___NameImpl_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value); } inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___PositionImpl_4)); } inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; } inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; } inline void set_PositionImpl_4(int32_t value) { ___PositionImpl_4 = value; } inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___AttrsImpl_5)); } inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; } inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; } inline void set_AttrsImpl_5(int32_t value) { ___AttrsImpl_5 = value; } inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___marshalAs_6)); } inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * get_marshalAs_6() const { return ___marshalAs_6; } inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 ** get_address_of_marshalAs_6() { return &___marshalAs_6; } inline void set_marshalAs_6(MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * value) { ___marshalAs_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; char* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; }; // Native definition for COM marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; Il2CppChar* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // UnityEngine.ScriptableObject struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 { public: public: }; // Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.ScriptableObject struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com { }; // Sirenix.Serialization.BinaryDataReader struct BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 : public BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B { public: // System.Byte[] Sirenix.Serialization.BinaryDataReader::internalBufferBackup ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___internalBufferBackup_5; // System.Byte[] Sirenix.Serialization.BinaryDataReader::buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_6; // System.Int32 Sirenix.Serialization.BinaryDataReader::bufferIndex int32_t ___bufferIndex_7; // System.Int32 Sirenix.Serialization.BinaryDataReader::bufferEnd int32_t ___bufferEnd_8; // System.Nullable`1<Sirenix.Serialization.EntryType> Sirenix.Serialization.BinaryDataReader::peekedEntryType Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 ___peekedEntryType_9; // Sirenix.Serialization.BinaryEntryType Sirenix.Serialization.BinaryDataReader::peekedBinaryEntryType uint8_t ___peekedBinaryEntryType_10; // System.String Sirenix.Serialization.BinaryDataReader::peekedEntryName String_t* ___peekedEntryName_11; // System.Collections.Generic.Dictionary`2<System.Int32,System.Type> Sirenix.Serialization.BinaryDataReader::types Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180 * ___types_12; public: inline static int32_t get_offset_of_internalBufferBackup_5() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293, ___internalBufferBackup_5)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_internalBufferBackup_5() const { return ___internalBufferBackup_5; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_internalBufferBackup_5() { return &___internalBufferBackup_5; } inline void set_internalBufferBackup_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___internalBufferBackup_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalBufferBackup_5), (void*)value); } inline static int32_t get_offset_of_buffer_6() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293, ___buffer_6)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_6() const { return ___buffer_6; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_6() { return &___buffer_6; } inline void set_buffer_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buffer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_6), (void*)value); } inline static int32_t get_offset_of_bufferIndex_7() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293, ___bufferIndex_7)); } inline int32_t get_bufferIndex_7() const { return ___bufferIndex_7; } inline int32_t* get_address_of_bufferIndex_7() { return &___bufferIndex_7; } inline void set_bufferIndex_7(int32_t value) { ___bufferIndex_7 = value; } inline static int32_t get_offset_of_bufferEnd_8() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293, ___bufferEnd_8)); } inline int32_t get_bufferEnd_8() const { return ___bufferEnd_8; } inline int32_t* get_address_of_bufferEnd_8() { return &___bufferEnd_8; } inline void set_bufferEnd_8(int32_t value) { ___bufferEnd_8 = value; } inline static int32_t get_offset_of_peekedEntryType_9() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293, ___peekedEntryType_9)); } inline Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 get_peekedEntryType_9() const { return ___peekedEntryType_9; } inline Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * get_address_of_peekedEntryType_9() { return &___peekedEntryType_9; } inline void set_peekedEntryType_9(Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 value) { ___peekedEntryType_9 = value; } inline static int32_t get_offset_of_peekedBinaryEntryType_10() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293, ___peekedBinaryEntryType_10)); } inline uint8_t get_peekedBinaryEntryType_10() const { return ___peekedBinaryEntryType_10; } inline uint8_t* get_address_of_peekedBinaryEntryType_10() { return &___peekedBinaryEntryType_10; } inline void set_peekedBinaryEntryType_10(uint8_t value) { ___peekedBinaryEntryType_10 = value; } inline static int32_t get_offset_of_peekedEntryName_11() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293, ___peekedEntryName_11)); } inline String_t* get_peekedEntryName_11() const { return ___peekedEntryName_11; } inline String_t** get_address_of_peekedEntryName_11() { return &___peekedEntryName_11; } inline void set_peekedEntryName_11(String_t* value) { ___peekedEntryName_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___peekedEntryName_11), (void*)value); } inline static int32_t get_offset_of_types_12() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293, ___types_12)); } inline Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180 * get_types_12() const { return ___types_12; } inline Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180 ** get_address_of_types_12() { return &___types_12; } inline void set_types_12(Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180 * value) { ___types_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___types_12), (void*)value); } }; struct BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.Type,System.Delegate> Sirenix.Serialization.BinaryDataReader::PrimitiveFromByteMethods Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * ___PrimitiveFromByteMethods_4; public: inline static int32_t get_offset_of_PrimitiveFromByteMethods_4() { return static_cast<int32_t>(offsetof(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293_StaticFields, ___PrimitiveFromByteMethods_4)); } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * get_PrimitiveFromByteMethods_4() const { return ___PrimitiveFromByteMethods_4; } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 ** get_address_of_PrimitiveFromByteMethods_4() { return &___PrimitiveFromByteMethods_4; } inline void set_PrimitiveFromByteMethods_4(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * value) { ___PrimitiveFromByteMethods_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimitiveFromByteMethods_4), (void*)value); } }; // Sirenix.Serialization.DeserializationContext struct DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 : public RuntimeObject { public: // Sirenix.Serialization.SerializationConfig Sirenix.Serialization.DeserializationContext::config SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * ___config_0; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> Sirenix.Serialization.DeserializationContext::internalIdReferenceMap Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___internalIdReferenceMap_1; // System.Runtime.Serialization.StreamingContext Sirenix.Serialization.DeserializationContext::streamingContext StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___streamingContext_2; // System.Runtime.Serialization.IFormatterConverter Sirenix.Serialization.DeserializationContext::formatterConverter RuntimeObject* ___formatterConverter_3; // Sirenix.Serialization.TwoWaySerializationBinder Sirenix.Serialization.DeserializationContext::binder TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * ___binder_4; // Sirenix.Serialization.IExternalStringReferenceResolver Sirenix.Serialization.DeserializationContext::<StringReferenceResolver>k__BackingField RuntimeObject* ___U3CStringReferenceResolverU3Ek__BackingField_5; // Sirenix.Serialization.IExternalGuidReferenceResolver Sirenix.Serialization.DeserializationContext::<GuidReferenceResolver>k__BackingField RuntimeObject* ___U3CGuidReferenceResolverU3Ek__BackingField_6; // Sirenix.Serialization.IExternalIndexReferenceResolver Sirenix.Serialization.DeserializationContext::<IndexReferenceResolver>k__BackingField RuntimeObject* ___U3CIndexReferenceResolverU3Ek__BackingField_7; public: inline static int32_t get_offset_of_config_0() { return static_cast<int32_t>(offsetof(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413, ___config_0)); } inline SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * get_config_0() const { return ___config_0; } inline SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 ** get_address_of_config_0() { return &___config_0; } inline void set_config_0(SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * value) { ___config_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___config_0), (void*)value); } inline static int32_t get_offset_of_internalIdReferenceMap_1() { return static_cast<int32_t>(offsetof(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413, ___internalIdReferenceMap_1)); } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_internalIdReferenceMap_1() const { return ___internalIdReferenceMap_1; } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_internalIdReferenceMap_1() { return &___internalIdReferenceMap_1; } inline void set_internalIdReferenceMap_1(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value) { ___internalIdReferenceMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalIdReferenceMap_1), (void*)value); } inline static int32_t get_offset_of_streamingContext_2() { return static_cast<int32_t>(offsetof(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413, ___streamingContext_2)); } inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 get_streamingContext_2() const { return ___streamingContext_2; } inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * get_address_of_streamingContext_2() { return &___streamingContext_2; } inline void set_streamingContext_2(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 value) { ___streamingContext_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___streamingContext_2))->___m_additionalContext_0), (void*)NULL); } inline static int32_t get_offset_of_formatterConverter_3() { return static_cast<int32_t>(offsetof(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413, ___formatterConverter_3)); } inline RuntimeObject* get_formatterConverter_3() const { return ___formatterConverter_3; } inline RuntimeObject** get_address_of_formatterConverter_3() { return &___formatterConverter_3; } inline void set_formatterConverter_3(RuntimeObject* value) { ___formatterConverter_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___formatterConverter_3), (void*)value); } inline static int32_t get_offset_of_binder_4() { return static_cast<int32_t>(offsetof(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413, ___binder_4)); } inline TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * get_binder_4() const { return ___binder_4; } inline TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 ** get_address_of_binder_4() { return &___binder_4; } inline void set_binder_4(TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * value) { ___binder_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___binder_4), (void*)value); } inline static int32_t get_offset_of_U3CStringReferenceResolverU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413, ___U3CStringReferenceResolverU3Ek__BackingField_5)); } inline RuntimeObject* get_U3CStringReferenceResolverU3Ek__BackingField_5() const { return ___U3CStringReferenceResolverU3Ek__BackingField_5; } inline RuntimeObject** get_address_of_U3CStringReferenceResolverU3Ek__BackingField_5() { return &___U3CStringReferenceResolverU3Ek__BackingField_5; } inline void set_U3CStringReferenceResolverU3Ek__BackingField_5(RuntimeObject* value) { ___U3CStringReferenceResolverU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CStringReferenceResolverU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CGuidReferenceResolverU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413, ___U3CGuidReferenceResolverU3Ek__BackingField_6)); } inline RuntimeObject* get_U3CGuidReferenceResolverU3Ek__BackingField_6() const { return ___U3CGuidReferenceResolverU3Ek__BackingField_6; } inline RuntimeObject** get_address_of_U3CGuidReferenceResolverU3Ek__BackingField_6() { return &___U3CGuidReferenceResolverU3Ek__BackingField_6; } inline void set_U3CGuidReferenceResolverU3Ek__BackingField_6(RuntimeObject* value) { ___U3CGuidReferenceResolverU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CGuidReferenceResolverU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CIndexReferenceResolverU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413, ___U3CIndexReferenceResolverU3Ek__BackingField_7)); } inline RuntimeObject* get_U3CIndexReferenceResolverU3Ek__BackingField_7() const { return ___U3CIndexReferenceResolverU3Ek__BackingField_7; } inline RuntimeObject** get_address_of_U3CIndexReferenceResolverU3Ek__BackingField_7() { return &___U3CIndexReferenceResolverU3Ek__BackingField_7; } inline void set_U3CIndexReferenceResolverU3Ek__BackingField_7(RuntimeObject* value) { ___U3CIndexReferenceResolverU3Ek__BackingField_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CIndexReferenceResolverU3Ek__BackingField_7), (void*)value); } }; // Sirenix.Serialization.JsonDataReader struct JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 : public BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B { public: // Sirenix.Serialization.JsonTextReader Sirenix.Serialization.JsonDataReader::reader JsonTextReader_t0FCFEBDB9960FD5418C204DFACCD1D19C9D5D427 * ___reader_4; // System.Nullable`1<Sirenix.Serialization.EntryType> Sirenix.Serialization.JsonDataReader::peekedEntryType Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 ___peekedEntryType_5; // System.String Sirenix.Serialization.JsonDataReader::peekedEntryName String_t* ___peekedEntryName_6; // System.String Sirenix.Serialization.JsonDataReader::peekedEntryContent String_t* ___peekedEntryContent_7; // System.Collections.Generic.Dictionary`2<System.Int32,System.Type> Sirenix.Serialization.JsonDataReader::seenTypes Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180 * ___seenTypes_8; // System.Collections.Generic.Dictionary`2<System.Type,System.Delegate> Sirenix.Serialization.JsonDataReader::primitiveArrayReaders Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * ___primitiveArrayReaders_9; public: inline static int32_t get_offset_of_reader_4() { return static_cast<int32_t>(offsetof(JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8, ___reader_4)); } inline JsonTextReader_t0FCFEBDB9960FD5418C204DFACCD1D19C9D5D427 * get_reader_4() const { return ___reader_4; } inline JsonTextReader_t0FCFEBDB9960FD5418C204DFACCD1D19C9D5D427 ** get_address_of_reader_4() { return &___reader_4; } inline void set_reader_4(JsonTextReader_t0FCFEBDB9960FD5418C204DFACCD1D19C9D5D427 * value) { ___reader_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___reader_4), (void*)value); } inline static int32_t get_offset_of_peekedEntryType_5() { return static_cast<int32_t>(offsetof(JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8, ___peekedEntryType_5)); } inline Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 get_peekedEntryType_5() const { return ___peekedEntryType_5; } inline Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * get_address_of_peekedEntryType_5() { return &___peekedEntryType_5; } inline void set_peekedEntryType_5(Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 value) { ___peekedEntryType_5 = value; } inline static int32_t get_offset_of_peekedEntryName_6() { return static_cast<int32_t>(offsetof(JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8, ___peekedEntryName_6)); } inline String_t* get_peekedEntryName_6() const { return ___peekedEntryName_6; } inline String_t** get_address_of_peekedEntryName_6() { return &___peekedEntryName_6; } inline void set_peekedEntryName_6(String_t* value) { ___peekedEntryName_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___peekedEntryName_6), (void*)value); } inline static int32_t get_offset_of_peekedEntryContent_7() { return static_cast<int32_t>(offsetof(JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8, ___peekedEntryContent_7)); } inline String_t* get_peekedEntryContent_7() const { return ___peekedEntryContent_7; } inline String_t** get_address_of_peekedEntryContent_7() { return &___peekedEntryContent_7; } inline void set_peekedEntryContent_7(String_t* value) { ___peekedEntryContent_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___peekedEntryContent_7), (void*)value); } inline static int32_t get_offset_of_seenTypes_8() { return static_cast<int32_t>(offsetof(JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8, ___seenTypes_8)); } inline Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180 * get_seenTypes_8() const { return ___seenTypes_8; } inline Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180 ** get_address_of_seenTypes_8() { return &___seenTypes_8; } inline void set_seenTypes_8(Dictionary_2_t33600C0BB8E20B2BE08F1046C9851FB0A1261180 * value) { ___seenTypes_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___seenTypes_8), (void*)value); } inline static int32_t get_offset_of_primitiveArrayReaders_9() { return static_cast<int32_t>(offsetof(JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8, ___primitiveArrayReaders_9)); } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * get_primitiveArrayReaders_9() const { return ___primitiveArrayReaders_9; } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 ** get_address_of_primitiveArrayReaders_9() { return &___primitiveArrayReaders_9; } inline void set_primitiveArrayReaders_9(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * value) { ___primitiveArrayReaders_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___primitiveArrayReaders_9), (void*)value); } }; // Sirenix.Serialization.SerializationContext struct SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B : public RuntimeObject { public: // Sirenix.Serialization.SerializationConfig Sirenix.Serialization.SerializationContext::config SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * ___config_0; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> Sirenix.Serialization.SerializationContext::internalReferenceIdMap Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___internalReferenceIdMap_1; // System.Runtime.Serialization.StreamingContext Sirenix.Serialization.SerializationContext::streamingContext StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___streamingContext_2; // System.Runtime.Serialization.IFormatterConverter Sirenix.Serialization.SerializationContext::formatterConverter RuntimeObject* ___formatterConverter_3; // Sirenix.Serialization.TwoWaySerializationBinder Sirenix.Serialization.SerializationContext::binder TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * ___binder_4; // Sirenix.Serialization.IExternalIndexReferenceResolver Sirenix.Serialization.SerializationContext::<IndexReferenceResolver>k__BackingField RuntimeObject* ___U3CIndexReferenceResolverU3Ek__BackingField_5; // Sirenix.Serialization.IExternalStringReferenceResolver Sirenix.Serialization.SerializationContext::<StringReferenceResolver>k__BackingField RuntimeObject* ___U3CStringReferenceResolverU3Ek__BackingField_6; // Sirenix.Serialization.IExternalGuidReferenceResolver Sirenix.Serialization.SerializationContext::<GuidReferenceResolver>k__BackingField RuntimeObject* ___U3CGuidReferenceResolverU3Ek__BackingField_7; public: inline static int32_t get_offset_of_config_0() { return static_cast<int32_t>(offsetof(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B, ___config_0)); } inline SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * get_config_0() const { return ___config_0; } inline SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 ** get_address_of_config_0() { return &___config_0; } inline void set_config_0(SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * value) { ___config_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___config_0), (void*)value); } inline static int32_t get_offset_of_internalReferenceIdMap_1() { return static_cast<int32_t>(offsetof(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B, ___internalReferenceIdMap_1)); } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_internalReferenceIdMap_1() const { return ___internalReferenceIdMap_1; } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_internalReferenceIdMap_1() { return &___internalReferenceIdMap_1; } inline void set_internalReferenceIdMap_1(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * value) { ___internalReferenceIdMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalReferenceIdMap_1), (void*)value); } inline static int32_t get_offset_of_streamingContext_2() { return static_cast<int32_t>(offsetof(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B, ___streamingContext_2)); } inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 get_streamingContext_2() const { return ___streamingContext_2; } inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * get_address_of_streamingContext_2() { return &___streamingContext_2; } inline void set_streamingContext_2(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 value) { ___streamingContext_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___streamingContext_2))->___m_additionalContext_0), (void*)NULL); } inline static int32_t get_offset_of_formatterConverter_3() { return static_cast<int32_t>(offsetof(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B, ___formatterConverter_3)); } inline RuntimeObject* get_formatterConverter_3() const { return ___formatterConverter_3; } inline RuntimeObject** get_address_of_formatterConverter_3() { return &___formatterConverter_3; } inline void set_formatterConverter_3(RuntimeObject* value) { ___formatterConverter_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___formatterConverter_3), (void*)value); } inline static int32_t get_offset_of_binder_4() { return static_cast<int32_t>(offsetof(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B, ___binder_4)); } inline TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * get_binder_4() const { return ___binder_4; } inline TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 ** get_address_of_binder_4() { return &___binder_4; } inline void set_binder_4(TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * value) { ___binder_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___binder_4), (void*)value); } inline static int32_t get_offset_of_U3CIndexReferenceResolverU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B, ___U3CIndexReferenceResolverU3Ek__BackingField_5)); } inline RuntimeObject* get_U3CIndexReferenceResolverU3Ek__BackingField_5() const { return ___U3CIndexReferenceResolverU3Ek__BackingField_5; } inline RuntimeObject** get_address_of_U3CIndexReferenceResolverU3Ek__BackingField_5() { return &___U3CIndexReferenceResolverU3Ek__BackingField_5; } inline void set_U3CIndexReferenceResolverU3Ek__BackingField_5(RuntimeObject* value) { ___U3CIndexReferenceResolverU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CIndexReferenceResolverU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CStringReferenceResolverU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B, ___U3CStringReferenceResolverU3Ek__BackingField_6)); } inline RuntimeObject* get_U3CStringReferenceResolverU3Ek__BackingField_6() const { return ___U3CStringReferenceResolverU3Ek__BackingField_6; } inline RuntimeObject** get_address_of_U3CStringReferenceResolverU3Ek__BackingField_6() { return &___U3CStringReferenceResolverU3Ek__BackingField_6; } inline void set_U3CStringReferenceResolverU3Ek__BackingField_6(RuntimeObject* value) { ___U3CStringReferenceResolverU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CStringReferenceResolverU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CGuidReferenceResolverU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B, ___U3CGuidReferenceResolverU3Ek__BackingField_7)); } inline RuntimeObject* get_U3CGuidReferenceResolverU3Ek__BackingField_7() const { return ___U3CGuidReferenceResolverU3Ek__BackingField_7; } inline RuntimeObject** get_address_of_U3CGuidReferenceResolverU3Ek__BackingField_7() { return &___U3CGuidReferenceResolverU3Ek__BackingField_7; } inline void set_U3CGuidReferenceResolverU3Ek__BackingField_7(RuntimeObject* value) { ___U3CGuidReferenceResolverU3Ek__BackingField_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CGuidReferenceResolverU3Ek__BackingField_7), (void*)value); } }; // Sirenix.Serialization.SerializationNodeDataReader struct SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 : public BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B { public: // System.String Sirenix.Serialization.SerializationNodeDataReader::peekedEntryName String_t* ___peekedEntryName_4; // System.Nullable`1<Sirenix.Serialization.EntryType> Sirenix.Serialization.SerializationNodeDataReader::peekedEntryType Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 ___peekedEntryType_5; // System.String Sirenix.Serialization.SerializationNodeDataReader::peekedEntryData String_t* ___peekedEntryData_6; // System.Int32 Sirenix.Serialization.SerializationNodeDataReader::currentIndex int32_t ___currentIndex_7; // System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode> Sirenix.Serialization.SerializationNodeDataReader::nodes List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * ___nodes_8; // System.Collections.Generic.Dictionary`2<System.Type,System.Delegate> Sirenix.Serialization.SerializationNodeDataReader::primitiveTypeReaders Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * ___primitiveTypeReaders_9; public: inline static int32_t get_offset_of_peekedEntryName_4() { return static_cast<int32_t>(offsetof(SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290, ___peekedEntryName_4)); } inline String_t* get_peekedEntryName_4() const { return ___peekedEntryName_4; } inline String_t** get_address_of_peekedEntryName_4() { return &___peekedEntryName_4; } inline void set_peekedEntryName_4(String_t* value) { ___peekedEntryName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___peekedEntryName_4), (void*)value); } inline static int32_t get_offset_of_peekedEntryType_5() { return static_cast<int32_t>(offsetof(SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290, ___peekedEntryType_5)); } inline Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 get_peekedEntryType_5() const { return ___peekedEntryType_5; } inline Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * get_address_of_peekedEntryType_5() { return &___peekedEntryType_5; } inline void set_peekedEntryType_5(Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 value) { ___peekedEntryType_5 = value; } inline static int32_t get_offset_of_peekedEntryData_6() { return static_cast<int32_t>(offsetof(SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290, ___peekedEntryData_6)); } inline String_t* get_peekedEntryData_6() const { return ___peekedEntryData_6; } inline String_t** get_address_of_peekedEntryData_6() { return &___peekedEntryData_6; } inline void set_peekedEntryData_6(String_t* value) { ___peekedEntryData_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___peekedEntryData_6), (void*)value); } inline static int32_t get_offset_of_currentIndex_7() { return static_cast<int32_t>(offsetof(SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290, ___currentIndex_7)); } inline int32_t get_currentIndex_7() const { return ___currentIndex_7; } inline int32_t* get_address_of_currentIndex_7() { return &___currentIndex_7; } inline void set_currentIndex_7(int32_t value) { ___currentIndex_7 = value; } inline static int32_t get_offset_of_nodes_8() { return static_cast<int32_t>(offsetof(SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290, ___nodes_8)); } inline List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * get_nodes_8() const { return ___nodes_8; } inline List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB ** get_address_of_nodes_8() { return &___nodes_8; } inline void set_nodes_8(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * value) { ___nodes_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___nodes_8), (void*)value); } inline static int32_t get_offset_of_primitiveTypeReaders_9() { return static_cast<int32_t>(offsetof(SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290, ___primitiveTypeReaders_9)); } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * get_primitiveTypeReaders_9() const { return ___primitiveTypeReaders_9; } inline Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 ** get_address_of_primitiveTypeReaders_9() { return &___primitiveTypeReaders_9; } inline void set_primitiveTypeReaders_9(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * value) { ___primitiveTypeReaders_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___primitiveTypeReaders_9), (void*)value); } }; // Sirenix.Serialization.Utilities.WeakValueGetter struct WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE : public MulticastDelegate_t { public: public: }; // Sirenix.Serialization.Utilities.WeakValueSetter struct WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF : public MulticastDelegate_t { public: public: }; // Sirenix.Utilities.GlobalConfig`1<Sirenix.Serialization.GlobalSerializationConfig> struct GlobalConfig_1_t80786E040104EB0EFF34988283170EFE8596FE14 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 { public: public: }; struct GlobalConfig_1_t80786E040104EB0EFF34988283170EFE8596FE14_StaticFields { public: // Sirenix.Utilities.GlobalConfigAttribute Sirenix.Utilities.GlobalConfig`1::configAttribute GlobalConfigAttribute_t7C3DA12779B99DB512050CF78ECC24A65B52B18B * ___configAttribute_4; // T Sirenix.Utilities.GlobalConfig`1::instance GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * ___instance_5; public: inline static int32_t get_offset_of_configAttribute_4() { return static_cast<int32_t>(offsetof(GlobalConfig_1_t80786E040104EB0EFF34988283170EFE8596FE14_StaticFields, ___configAttribute_4)); } inline GlobalConfigAttribute_t7C3DA12779B99DB512050CF78ECC24A65B52B18B * get_configAttribute_4() const { return ___configAttribute_4; } inline GlobalConfigAttribute_t7C3DA12779B99DB512050CF78ECC24A65B52B18B ** get_address_of_configAttribute_4() { return &___configAttribute_4; } inline void set_configAttribute_4(GlobalConfigAttribute_t7C3DA12779B99DB512050CF78ECC24A65B52B18B * value) { ___configAttribute_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___configAttribute_4), (void*)value); } inline static int32_t get_offset_of_instance_5() { return static_cast<int32_t>(offsetof(GlobalConfig_1_t80786E040104EB0EFF34988283170EFE8596FE14_StaticFields, ___instance_5)); } inline GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * get_instance_5() const { return ___instance_5; } inline GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 ** get_address_of_instance_5() { return &___instance_5; } inline void set_instance_5(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * value) { ___instance_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_5), (void*)value); } }; // System.Action struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579 : public MulticastDelegate_t { public: public: }; // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Boolean> struct Action_2_tA4D387C88A3C439A4931A264E2DEFEC33886F455 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Byte> struct Action_2_tC7C745CBFBB7BB441C7BCA9701E7E9DD6294A0FF : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Char> struct Action_2_t7A81E682590B81DD40F667542176AA02DCAFA1E9 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Decimal> struct Action_2_t7674A6DB22EF71B11822201850D25105DE66987D : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Double> struct Action_2_t323013173C7106CFC5254A38ABC5D91D7535BD20 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Guid> struct Action_2_t50900BA30DEE837C385216BCF44E28E7C7BB95C8 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Int16> struct Action_2_t601D5C86A591692555079344CCB7898C03C50005 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Int32> struct Action_2_tDC912041941E8778D68BAE31B6E7CE869D420A59 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Int64> struct Action_2_t1C5018F55BC56EF9A077CA15281BD36D2672B5ED : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.SByte> struct Action_2_t5F075F0477DFF381250D578CFC9566C37B685087 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.Single> struct Action_2_tA44A311C6894DF2F28013A46BDCE66A5B02D20AF : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.UInt16> struct Action_2_tA822F465A415381AE24537CFAA66F9939772731E : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.UInt32> struct Action_2_tC9CC006F43344C8AE24F6EDBDE52190BF3592420 : public MulticastDelegate_t { public: public: }; // System.Action`2<System.String,System.UInt64> struct Action_2_t70253CD680198292E5DF471861B3D5822F8F33BE : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArithmeticException struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Comparison`1<Sirenix.Serialization.PrefabModification> struct Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 : public MulticastDelegate_t { public: public: }; // System.ExecutionEngineException struct ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Func`1<System.Boolean> struct Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Byte> struct Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Char> struct Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Decimal> struct Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Double> struct Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Guid> struct Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Int16> struct Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Int32> struct Func_1_t30631A63BE46FE93700939B764202D360449FE30 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Int64> struct Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Object> struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.SByte> struct Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Single> struct Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.UInt16> struct Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.UInt32> struct Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.UInt64> struct Func_1_tDA414705876081E1199F312C952348ED3884F17E : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Object> struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Reflection.MemberInfo,System.Boolean> struct Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Reflection.MethodInfo,System.Boolean> struct Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 : public MulticastDelegate_t { public: public: }; // System.Func`3<System.Double,System.Double,System.Boolean> struct Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 : public MulticastDelegate_t { public: public: }; // System.Func`3<System.Single,System.Single,System.Boolean> struct Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 : public MulticastDelegate_t { public: public: }; // System.Func`3<UnityEngine.Quaternion,UnityEngine.Quaternion,System.Boolean> struct Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C : public MulticastDelegate_t { public: public: }; // System.IO.FileSystemInfo struct FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.IO.MonoIOStat System.IO.FileSystemInfo::_data MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 ____data_1; // System.Int32 System.IO.FileSystemInfo::_dataInitialised int32_t ____dataInitialised_2; // System.String System.IO.FileSystemInfo::FullPath String_t* ___FullPath_3; // System.String System.IO.FileSystemInfo::OriginalPath String_t* ___OriginalPath_4; // System.String System.IO.FileSystemInfo::_displayPath String_t* ____displayPath_5; public: inline static int32_t get_offset_of__data_1() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ____data_1)); } inline MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 get__data_1() const { return ____data_1; } inline MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 * get_address_of__data_1() { return &____data_1; } inline void set__data_1(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 value) { ____data_1 = value; } inline static int32_t get_offset_of__dataInitialised_2() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ____dataInitialised_2)); } inline int32_t get__dataInitialised_2() const { return ____dataInitialised_2; } inline int32_t* get_address_of__dataInitialised_2() { return &____dataInitialised_2; } inline void set__dataInitialised_2(int32_t value) { ____dataInitialised_2 = value; } inline static int32_t get_offset_of_FullPath_3() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ___FullPath_3)); } inline String_t* get_FullPath_3() const { return ___FullPath_3; } inline String_t** get_address_of_FullPath_3() { return &___FullPath_3; } inline void set_FullPath_3(String_t* value) { ___FullPath_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___FullPath_3), (void*)value); } inline static int32_t get_offset_of_OriginalPath_4() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ___OriginalPath_4)); } inline String_t* get_OriginalPath_4() const { return ___OriginalPath_4; } inline String_t** get_address_of_OriginalPath_4() { return &___OriginalPath_4; } inline void set_OriginalPath_4(String_t* value) { ___OriginalPath_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___OriginalPath_4), (void*)value); } inline static int32_t get_offset_of__displayPath_5() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ____displayPath_5)); } inline String_t* get__displayPath_5() const { return ____displayPath_5; } inline String_t** get_address_of__displayPath_5() { return &____displayPath_5; } inline void set__displayPath_5(String_t* value) { ____displayPath_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____displayPath_5), (void*)value); } }; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotImplementedException struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Reflection.TargetInvocationException struct TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 : public ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 { public: public: }; // System.TypeInitializationException struct TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.TypeInitializationException::_typeName String_t* ____typeName_17; public: inline static int32_t get_offset_of__typeName_17() { return static_cast<int32_t>(offsetof(TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE, ____typeName_17)); } inline String_t* get__typeName_17() const { return ____typeName_17; } inline String_t** get_address_of__typeName_17() { return &____typeName_17; } inline void set__typeName_17(String_t* value) { ____typeName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____typeName_17), (void*)value); } }; // Sirenix.Serialization.GlobalSerializationConfig struct GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 : public GlobalConfig_1_t80786E040104EB0EFF34988283170EFE8596FE14 { public: // System.Boolean Sirenix.Serialization.GlobalSerializationConfig::HideSerializationCautionaryMessage bool ___HideSerializationCautionaryMessage_11; // System.Boolean Sirenix.Serialization.GlobalSerializationConfig::HidePrefabCautionaryMessage bool ___HidePrefabCautionaryMessage_12; // System.Boolean Sirenix.Serialization.GlobalSerializationConfig::HideOdinSerializeAttributeWarningMessages bool ___HideOdinSerializeAttributeWarningMessages_13; // System.Boolean Sirenix.Serialization.GlobalSerializationConfig::HideNonSerializedShowInInspectorWarningMessages bool ___HideNonSerializedShowInInspectorWarningMessages_14; // Sirenix.Serialization.DataFormat Sirenix.Serialization.GlobalSerializationConfig::buildSerializationFormat int32_t ___buildSerializationFormat_15; // Sirenix.Serialization.DataFormat Sirenix.Serialization.GlobalSerializationConfig::editorSerializationFormat int32_t ___editorSerializationFormat_16; // Sirenix.Serialization.LoggingPolicy Sirenix.Serialization.GlobalSerializationConfig::loggingPolicy int32_t ___loggingPolicy_17; // Sirenix.Serialization.ErrorHandlingPolicy Sirenix.Serialization.GlobalSerializationConfig::errorHandlingPolicy int32_t ___errorHandlingPolicy_18; public: inline static int32_t get_offset_of_HideSerializationCautionaryMessage_11() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288, ___HideSerializationCautionaryMessage_11)); } inline bool get_HideSerializationCautionaryMessage_11() const { return ___HideSerializationCautionaryMessage_11; } inline bool* get_address_of_HideSerializationCautionaryMessage_11() { return &___HideSerializationCautionaryMessage_11; } inline void set_HideSerializationCautionaryMessage_11(bool value) { ___HideSerializationCautionaryMessage_11 = value; } inline static int32_t get_offset_of_HidePrefabCautionaryMessage_12() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288, ___HidePrefabCautionaryMessage_12)); } inline bool get_HidePrefabCautionaryMessage_12() const { return ___HidePrefabCautionaryMessage_12; } inline bool* get_address_of_HidePrefabCautionaryMessage_12() { return &___HidePrefabCautionaryMessage_12; } inline void set_HidePrefabCautionaryMessage_12(bool value) { ___HidePrefabCautionaryMessage_12 = value; } inline static int32_t get_offset_of_HideOdinSerializeAttributeWarningMessages_13() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288, ___HideOdinSerializeAttributeWarningMessages_13)); } inline bool get_HideOdinSerializeAttributeWarningMessages_13() const { return ___HideOdinSerializeAttributeWarningMessages_13; } inline bool* get_address_of_HideOdinSerializeAttributeWarningMessages_13() { return &___HideOdinSerializeAttributeWarningMessages_13; } inline void set_HideOdinSerializeAttributeWarningMessages_13(bool value) { ___HideOdinSerializeAttributeWarningMessages_13 = value; } inline static int32_t get_offset_of_HideNonSerializedShowInInspectorWarningMessages_14() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288, ___HideNonSerializedShowInInspectorWarningMessages_14)); } inline bool get_HideNonSerializedShowInInspectorWarningMessages_14() const { return ___HideNonSerializedShowInInspectorWarningMessages_14; } inline bool* get_address_of_HideNonSerializedShowInInspectorWarningMessages_14() { return &___HideNonSerializedShowInInspectorWarningMessages_14; } inline void set_HideNonSerializedShowInInspectorWarningMessages_14(bool value) { ___HideNonSerializedShowInInspectorWarningMessages_14 = value; } inline static int32_t get_offset_of_buildSerializationFormat_15() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288, ___buildSerializationFormat_15)); } inline int32_t get_buildSerializationFormat_15() const { return ___buildSerializationFormat_15; } inline int32_t* get_address_of_buildSerializationFormat_15() { return &___buildSerializationFormat_15; } inline void set_buildSerializationFormat_15(int32_t value) { ___buildSerializationFormat_15 = value; } inline static int32_t get_offset_of_editorSerializationFormat_16() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288, ___editorSerializationFormat_16)); } inline int32_t get_editorSerializationFormat_16() const { return ___editorSerializationFormat_16; } inline int32_t* get_address_of_editorSerializationFormat_16() { return &___editorSerializationFormat_16; } inline void set_editorSerializationFormat_16(int32_t value) { ___editorSerializationFormat_16 = value; } inline static int32_t get_offset_of_loggingPolicy_17() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288, ___loggingPolicy_17)); } inline int32_t get_loggingPolicy_17() const { return ___loggingPolicy_17; } inline int32_t* get_address_of_loggingPolicy_17() { return &___loggingPolicy_17; } inline void set_loggingPolicy_17(int32_t value) { ___loggingPolicy_17 = value; } inline static int32_t get_offset_of_errorHandlingPolicy_18() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288, ___errorHandlingPolicy_18)); } inline int32_t get_errorHandlingPolicy_18() const { return ___errorHandlingPolicy_18; } inline int32_t* get_address_of_errorHandlingPolicy_18() { return &___errorHandlingPolicy_18; } inline void set_errorHandlingPolicy_18(int32_t value) { ___errorHandlingPolicy_18 = value; } }; struct GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288_StaticFields { public: // Sirenix.Serialization.DataFormat[] Sirenix.Serialization.GlobalSerializationConfig::BuildFormats DataFormatU5BU5D_t17594C066B3E8964DB9118043201345A3146B663* ___BuildFormats_10; public: inline static int32_t get_offset_of_BuildFormats_10() { return static_cast<int32_t>(offsetof(GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288_StaticFields, ___BuildFormats_10)); } inline DataFormatU5BU5D_t17594C066B3E8964DB9118043201345A3146B663* get_BuildFormats_10() const { return ___BuildFormats_10; } inline DataFormatU5BU5D_t17594C066B3E8964DB9118043201345A3146B663** get_address_of_BuildFormats_10() { return &___BuildFormats_10; } inline void set_BuildFormats_10(DataFormatU5BU5D_t17594C066B3E8964DB9118043201345A3146B663* value) { ___BuildFormats_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___BuildFormats_10), (void*)value); } }; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; // System.IO.DirectoryInfo struct DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F : public FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D { public: // System.String System.IO.DirectoryInfo::current String_t* ___current_6; // System.String System.IO.DirectoryInfo::parent String_t* ___parent_7; public: inline static int32_t get_offset_of_current_6() { return static_cast<int32_t>(offsetof(DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F, ___current_6)); } inline String_t* get_current_6() const { return ___current_6; } inline String_t** get_address_of_current_6() { return &___current_6; } inline void set_current_6(String_t* value) { ___current_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_6), (void*)value); } inline static int32_t get_offset_of_parent_7() { return static_cast<int32_t>(offsetof(DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F, ___parent_7)); } inline String_t* get_parent_7() const { return ___parent_7; } inline String_t** get_address_of_parent_7() { return &___parent_7; } inline void set_parent_7(String_t* value) { ___parent_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_7), (void*)value); } }; // System.OverflowException struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.MemberInfo[] struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6 : public RuntimeArray { public: ALIGN_FIELD (8) MemberInfo_t * m_Items[1]; public: inline MemberInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline MemberInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, MemberInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline MemberInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline MemberInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE : public RuntimeArray { public: ALIGN_FIELD (8) FieldInfo_t * m_Items[1]; public: inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline FieldInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, FieldInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694 : public RuntimeArray { public: ALIGN_FIELD (8) ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * m_Items[1]; public: inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.MethodInfo[] struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B : public RuntimeArray { public: ALIGN_FIELD (8) MethodInfo_t * m_Items[1]; public: inline MethodInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline MethodInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, MethodInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline MethodInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline MethodInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Attribute[] struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17 : public RuntimeArray { public: ALIGN_FIELD (8) Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * m_Items[1]; public: inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray { public: ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1]; public: inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } }; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // Sirenix.Serialization.SerializationNode[] struct SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A : public RuntimeArray { public: ALIGN_FIELD (8) SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 m_Items[1]; public: inline SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Data_2), (void*)NULL); #endif } inline SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Data_2), (void*)NULL); #endif } }; // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method); // System.Void System.Func`1<System.Char>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m8D661C0A7CCB815F851FD421663A9FDB0966EE67_gshared (Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Func`1<System.SByte>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mD07D20787F169ADC3615B0C9E4B03184AAF469B8_gshared (Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Int16>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mA200BE8D0404113F78BF1F5DE23826D4FF3930D7_gshared (Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Int32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527_gshared (Func_1_t30631A63BE46FE93700939B764202D360449FE30 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Int64>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m1448E78B4FDEB165B9D5A8A335A7648D75083F32_gshared (Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Byte>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mE16288D184D818DF2CFDD919E217023726FEC909_gshared (Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.UInt16>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m22906677CD9217D143B033D7F03C6D70EFF02D47_gshared (Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.UInt32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mBFAD3A42C5C2CA317218A9FDE7147363667E7EB2_gshared (Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.UInt64>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m7DE4AA7F3E05D2B3BB91CF01177F6EADA4FEF767_gshared (Func_1_tDA414705876081E1199F312C952348ED3884F17E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Decimal>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m3CD473997F1E9AEB22801D3B85AE59CA10E9D46E_gshared (Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Boolean>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m479BA9DCBE3F496111BD05CC90CB1044C5FFD552_gshared (Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Single>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mEBD709A28A932E8C76D0E30A777C8A2CDAD4B44D_gshared (Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Double>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m9BF255981B0B3BE38430653EEAB3FD9D2C0FA9C9_gshared (Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1<System.Guid>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m2F35DB4B2277558E38C3092BE5C01C2488DA9895_gshared (Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>::get_Count() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_gshared_inline (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mAFA74AC0EB11989ACA8AE7FE1EDA15C7AA61B807_gshared (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.ByteEnum>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m420882393EE1A0D24867403DB1BDBBB389366A27_gshared_inline (Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152 * __this, const RuntimeMethod* method); // !0 System.Nullable`1<System.ByteEnum>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Nullable_1_get_Value_m832EFBA0F7AB5258DDB2287DCB761730B9C1A411_gshared (Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>::get_Item(System.Int32) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_gshared_inline (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Nullable`1<System.ByteEnum>::.ctor(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m2337EA724740AD9DD9CCEFBE99AE89FC00A4BF02_gshared (Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152 * __this, uint8_t ___value0, const RuntimeMethod* method); // !0 System.Nullable`1<System.ByteEnum>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t Nullable_1_GetValueOrDefault_m7F2175891767B103AEFC18392E3D045D89B15E20_gshared_inline (Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152 * __this, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Char>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m98424BEFE39A27766A235C692AD14E508E9728B5_gshared (Action_2_tCDE3591D31EFA1B91AE14B02EC1EF00BE0627FD5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.SByte>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m18CE07A033F5A397884DA31AF393E61FD5F81485_gshared (Action_2_t9DB31785CD0EB61AD14C2C59C73B79549CD1B35A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Int16>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mE56A11B4F92F5BE7FF910CA6BB55C999EDA2C42D_gshared (Action_2_tBC18C6FB76D9182033B6E2B8DE3C3D53EABB03CF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Int32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m7C4C10BFE9EBA700085A37DEC767389244D68C52_gshared (Action_2_tFAC55F49A294F481F61CA285615BBDB6E4087C34 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Int64>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mA7A4DE1F6C83FDDF6C155718AEBDC781E8F37D33_gshared (Action_2_tE9FDD633C37649E0D301A9FED00C8011D9F9B186 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Byte>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mF5970CE14C1AC4482C96593B762A8A3BAAD3DEA6_gshared (Action_2_tDE24AA7AD021445D4C97C227CA75380D10DF8CAA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.UInt16>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mAFF90BE622DDC3EA9E37D7B62B5069C5CA3ABCF1_gshared (Action_2_t10C968BA3005F98FEE51E5486AADE0A2833FAFE9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.UInt32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m57A88D7E5F58FEFB73F2B75DC8A24D85FBC633DD_gshared (Action_2_tA993E11F68B49F6503DE96F9933A510F811AFC13 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.UInt64>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mA21A3263E853CC722450C708405CFC8396914CA0_gshared (Action_2_t18432FEF0355440B456F9D1DF25E8D2B058F267D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Decimal>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mEFAD2BE46DDB007C4BCC9FBA66B7659A2F7807CA_gshared (Action_2_tAA947688E4B8C13E17B10508BB466B25F959C2A7 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m657B1B0C1E9AC8EB5EBD8CF1E13727FDACB91441_gshared (Action_2_t429E4750D84EBAC7EB494EB565EE0C8E1177C576 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Single>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mED9376F1CECEC84A683DEA04B809A10019BDB03E_gshared (Action_2_t2C0D3AF1B268249B7EB63829B5CF369B86BDAA74 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Double>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m99320B8B508738EE3F50AF35A1ED7F3BFAB34846_gshared (Action_2_tF81CEB0E6E3AE73C7BE8F7E17FAF7A935613552B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Guid>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m04CA9BFB7ADD829708A924281B9A89EE360DF78B_gshared (Action_2_t2A8EE6DEB6622F44A18C3E1ED5B00F13E88CEA72 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_gshared (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 ___item0, const RuntimeMethod* method); // System.Void System.Func`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m52B660F7AF11A491D7A162298208BFA7A5CF26A3_gshared (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<System.Object>(System.Reflection.ICustomAttributeProvider,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfoExtensions_IsDefined_TisRuntimeObject_m837402512C221982C4B76A8FA0EBFC9B26AC3E92_gshared (RuntimeObject* ___member0, bool ___inherit1, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<System.Object>(System.Reflection.ICustomAttributeProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfoExtensions_IsDefined_TisRuntimeObject_mDAF294A75DB56B0C843F842AB83E7BBBA88C0AD1_gshared (RuntimeObject* ___member0, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsDefined<System.Object>(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsDefined_TisRuntimeObject_mF3A8092D44C7CD9DED68E3CBD0A93820E677FE43_gshared (Type_t * ___type0, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<System.Object>::Claim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Cache_1_t5B091A69EC40DE216B6DA93BCC7104A039D17FBD * Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared (const RuntimeMethod* method); // T Sirenix.Serialization.Utilities.Cache`1<System.Object>::op_Implicit(Sirenix.Serialization.Utilities.Cache`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Cache_1_op_Implicit_m966CB0F48E7B279ED791D2DFFF5AC10A3083C728_gshared (Cache_1_t5B091A69EC40DE216B6DA93BCC7104A039D17FBD * ___cache0, const RuntimeMethod* method); // Sirenix.Serialization.Serializer`1<T> Sirenix.Serialization.Serializer::Get<System.Object>() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1_gshared (const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationUtility::SerializeValue<System.Object>(T,System.IO.Stream,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValue_TisRuntimeObject_m1E89017B1C6494143CB6454F1C10B52433297807_gshared (RuntimeObject * ___value0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, int32_t ___format2, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___unityObjects3, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context4, const RuntimeMethod* method); // T Sirenix.Serialization.SerializationUtility::DeserializeValue<System.Object>(System.IO.Stream,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValue_TisRuntimeObject_m5E680C93F9932F74746318453FD8EE5E11E5DC1D_gshared (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, int32_t ___format1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects2, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context3, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.Single>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_1__ctor_m7A8238EDC32B7D323566B758EE82C5EF166D3470_gshared (Serializer_1_t499D78B9DD9AC6B7283CF83AC1B3D9330C66DE83 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_1__ctor_m322EE14FCE004995EB2E7A54E4F43A5E1D761B90_gshared (Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.MinimalBaseFormatter`1<System.TimeSpan>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MinimalBaseFormatter_1__ctor_mE9689C13D11CB2C1EA2EEF27A44D20DCF67CC936_gshared (MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.MinimalBaseFormatter`1<System.Object>::RegisterReferenceID(T,Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MinimalBaseFormatter_1_RegisterReferenceID_m76C4FBE4C71715B54F5912C4090BE46E60C4AC29_gshared (MinimalBaseFormatter_1_t7074B8C584931C4F1FE4466362A386A50C02CCB3 * __this, RuntimeObject * ___value0, RuntimeObject* ___reader1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.MinimalBaseFormatter`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MinimalBaseFormatter_1__ctor_m3F5F0B7DB83073E0DA356759C5440EB9DAFC06BE_gshared (MinimalBaseFormatter_1_t7074B8C584931C4F1FE4466362A386A50C02CCB3 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.UInt16>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_1__ctor_m383A30509A4D34E550528AFC0118139BC349C1F0_gshared (Serializer_1_tB0717BBCE09985638B64CCF555B4ABF9D1EB63E9 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.UInt32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_1__ctor_m738A38526C3AB2FC9D58533CEAD3C7DC39C53B73_gshared (Serializer_1_t1C25A01A2FFA085904188AFA499F9F8F553DE25F * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.UInt64>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_1__ctor_m3617D23F006E505B99AEA48875D3D922A9235DAD_gshared (Serializer_1_t6F842F74A34468D4D1E363B9E095A2136CBCFCBD * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.UIntPtr>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_1__ctor_m934F0DE383C8A9734B569982828B968946D3FDB5_gshared (Serializer_1_t24F8BE1C52CD9405DFDF6876DF7F3D668286A27F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m1AE18E6CB058FB9635AA69313F0AFEC4C168E25D_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m5BF977C6A62D42CBAFD0B85BFE21694A9676E862_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::ContainsKey(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mB52B1B96EEFC5261F10998A81DAA5A02ED025265_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Add(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m786A1D72D4E499C0776742D3B2921F47E3A54545_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mE7571EF8ACAF5941AF78909A00CD9CE5FB07C69C_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, int32_t* ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void Sirenix.Utilities.GlobalConfig`1<System.Object>::LoadInstanceIfAssetExists() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfig_1_LoadInstanceIfAssetExists_m9856CEBD900BD2D64CA027F01847FA58EC404C04_gshared (const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mBB62C733B6E40E207F964AC2CB23A23C49935A74_gshared (Dictionary_2_tA9C63D204BC82DC6FB70075963C6BE3F3B7A05DC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m4FC4B3365F73D535E332F12B08BEC2C7BE5401B6_gshared (Dictionary_2_tA9C63D204BC82DC6FB70075963C6BE3F3B7A05DC * __this, RuntimeObject * ___key0, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>::Add(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m318535B0A0BE2C4BFFC077E609ED59D2D34A2B65_gshared (Dictionary_2_tA9C63D204BC82DC6FB70075963C6BE3F3B7A05DC * __this, RuntimeObject * ___key0, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mB76AF097CA64DBB759F47C22C8F376C3735B21B7_gshared (Dictionary_2_tA9C63D204BC82DC6FB70075963C6BE3F3B7A05DC * __this, RuntimeObject * ___key0, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m2592536E260ED5D3C5470FE88C30E21520EB4D2C_gshared (Dictionary_2_t2C8E1AAACF23306CF00CADFFC35DB50456AEBC51 * __this, RuntimeObject * ___key0, bool* ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mC57619AF214A94D546CFA159A4B3E99CFBF1610D_gshared (Dictionary_2_t2C8E1AAACF23306CF00CADFFC35DB50456AEBC51 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Contains(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Contains_m76525371D7FFA91A1B054B1C65C86969133C2CD4_gshared (HashSet_1_t297CD7F944846107B388993164FCD9E317A338A3 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsDefined<System.Object>(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsDefined_TisRuntimeObject_m51229EAA274FC8AD78E99FF916EE4B1D4EE115AE_gshared (Type_t * ___type0, bool ___inherit1, const RuntimeMethod* method); // System.Boolean Sirenix.Utilities.GlobalConfig`1<System.Object>::get_HasInstanceLoaded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlobalConfig_1_get_HasInstanceLoaded_m36A7E0A6C5E9F2E8A52057572B4272C7C0EA378B_gshared (const RuntimeMethod* method); // !0 Sirenix.Utilities.GlobalConfig`1<System.Object>::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GlobalConfig_1_get_Instance_mF0BE8BA81EF02C5914FB5CEC7950D4900E1C3C42_gshared (const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.Cache`1<System.Object>::Release(Sirenix.Serialization.Utilities.Cache`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cache_1_Release_mB18DE735DA9503FBA6732AE931B735486D1FF5FA_gshared (Cache_1_t5B091A69EC40DE216B6DA93BCC7104A039D17FBD * ___cache0, const RuntimeMethod* method); // System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared (Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Comparison`1<!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mA3939603201EC0E13489EDA5975A07790CEDB483_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * ___comparison0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC9CB173526C44311D7B2B3B7C03782A9D4A66ED0_gshared (Dictionary_2_t2C8E1AAACF23306CF00CADFFC35DB50456AEBC51 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1__ctor_m8A209D312FD08A21AFB5551881E7A6946A07C0D5_gshared (HashSet_1_t297CD7F944846107B388993164FCD9E317A338A3 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Add_m91C02F120E47946E978515CDAF67DA4867A244C4_gshared (HashSet_1_t297CD7F944846107B388993164FCD9E317A338A3 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_gshared (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<T> Sirenix.Serialization.Utilities.MemberInfoExtensions::GetAttributes<System.Object>(System.Reflection.ICustomAttributeProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MemberInfoExtensions_GetAttributes_TisRuntimeObject_mFF7248FA6006F9C0EC86B88E9471A166413FB9F2_gshared (RuntimeObject* ___member0, const RuntimeMethod* method); // !!0[] System.Linq.Enumerable::ToArray<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Enumerable_ToArray_TisRuntimeObject_m90391AD23AB688BA42D238D4512C858F912D7A67_gshared (RuntimeObject* ___source0, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<T> Sirenix.Serialization.Utilities.MemberInfoExtensions::GetAttributes<System.Object>(System.Reflection.ICustomAttributeProvider,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MemberInfoExtensions_GetAttributes_TisRuntimeObject_m921A75207CA2CB8F4FE1A29231D64EEE0FABB8C1_gshared (RuntimeObject* ___member0, bool ___inherit1, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Skip<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Skip_TisRuntimeObject_m0368B9A611A0BDF090B403C25DFD95C4D94948D6_gshared (RuntimeObject* ___source0, int32_t ___count1, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Object,System.Object,System.Object>::TryGetInnerValue(TFirstKey,TSecondKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DoubleLookupDictionary_3_TryGetInnerValue_mDAFF70E4AEDB863609543EEF3E111B30B5181F98_gshared (DoubleLookupDictionary_3_tA9E93C3A4311BFF4918CFA8BB13F6D4E683B5433 * __this, RuntimeObject * ___firstKey0, RuntimeObject * ___secondKey1, RuntimeObject ** ___value2, const RuntimeMethod* method); // System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // TValue Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Object,System.Object,System.Object>::AddInner(TFirstKey,TSecondKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DoubleLookupDictionary_3_AddInner_mE973ABE1AC7939FA8B1D602556F218AD5E79DDBD_gshared (DoubleLookupDictionary_3_tA9E93C3A4311BFF4918CFA8BB13F6D4E683B5433 * __this, RuntimeObject * ___firstKey0, RuntimeObject * ___secondKey1, RuntimeObject * ___value2, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<T> Sirenix.Serialization.Utilities.TypeExtensions::GetAllMembers<System.Object>(System.Type,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeExtensions_GetAllMembers_TisRuntimeObject_m04040FDBBA072A0B09DA1966679267FFD9553B1C_gshared (Type_t * ___type0, int32_t ___flags1, const RuntimeMethod* method); // !!0 System.Linq.Enumerable::FirstOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_FirstOrDefault_TisRuntimeObject_m2EB31784A0D942DD62D9789D55F9B188757833C0_gshared (RuntimeObject* ___source0, Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate1, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Where_TisRuntimeObject_m77C4748BC22520E365AB1F6A46B2C8A8BF525492_gshared (RuntimeObject* ___source0, Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate1, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Concat<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Collections.Generic.IEnumerable`1<!!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Concat_TisRuntimeObject_m3AA74ABA7EF399A306E36C2171474C81486A4F71_gshared (RuntimeObject* ___first0, RuntimeObject* ___second1, const RuntimeMethod* method); // System.Boolean System.Linq.Enumerable::Contains<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,!!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_Contains_TisRuntimeObject_m94A2986332967C3E28F8779BF4BBB6E85B5F4A0A_gshared (RuntimeObject* ___source0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m0EC0FF0E4C6FE91D15CEE92696B25109A202B942_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m1B06EB9D28DDA7E38DDC20D88532DFF246F03DF6_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1<System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1_Clear_m388A2F05FCB0FA0E03CFC7FB5F3A8DF69B2D4D5A_gshared (HashSet_1_t297CD7F944846107B388993164FCD9E317A338A3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1<System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Clear_m4115814BCF6246BD6492360CDB54F118541E786B_gshared (Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1<System.Object>::Push(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_mEAE34C8EACBF792D1CCC0B69009BD7C521F27865_gshared (Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1<System.Object>::Pop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_1_Pop_m9886C5EBA07CB356DE616B11958360B7FC67F6DC_gshared (Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Stack`1<System.Object>::get_Count() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mADA59B620C88DF47CBB953A8941CFE545BDF556D_gshared_inline (Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8 * __this, const RuntimeMethod* method); // System.Void System.Func`3<System.Single,System.Single,System.Boolean>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m7C8D11A8C323E3447117CD8858686399E3F71DAD_gshared (Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`3<System.Double,System.Double,System.Boolean>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m44C13A80CB499D78387085A1448F2174E010365A_gshared (Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`3<UnityEngine.Quaternion,UnityEngine.Quaternion,System.Boolean>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m03BDCECA8C6CFB050E93144E74956034D6D48099_gshared (Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleLookupDictionary_3__ctor_m75EA1A6062E5D7BD162AE7E9F106AC74683CB2D0_gshared (DoubleLookupDictionary_3_tA9E93C3A4311BFF4918CFA8BB13F6D4E683B5433 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m9EA0E43EFB22CCD482720CE21296BDF1B86F44D8_gshared (Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BaseDataReader::.ctor(System.IO.Stream,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseDataReader__ctor_m8A41287BC43C5E81BEC692F37C6A23E00B6B835B (BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Delegate>::.ctor() inline void Dictionary_2__ctor_mEC7798EDEB6B0C29A4C35F33E1BD17AE3643ED17 (Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method); // System.Void System.Func`1<System.Char>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m8D661C0A7CCB815F851FD421663A9FDB0966EE67 (Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m8D661C0A7CCB815F851FD421663A9FDB0966EE67_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Delegate>::Add(!0,!1) inline void Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF (Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * __this, Type_t * ___key0, Delegate_t * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 *, Type_t *, Delegate_t *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Func`1<System.SByte>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_mD07D20787F169ADC3615B0C9E4B03184AAF469B8 (Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mD07D20787F169ADC3615B0C9E4B03184AAF469B8_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Int16>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_mA200BE8D0404113F78BF1F5DE23826D4FF3930D7 (Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mA200BE8D0404113F78BF1F5DE23826D4FF3930D7_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Int32>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527 (Func_1_t30631A63BE46FE93700939B764202D360449FE30 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_t30631A63BE46FE93700939B764202D360449FE30 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Int64>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m1448E78B4FDEB165B9D5A8A335A7648D75083F32 (Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m1448E78B4FDEB165B9D5A8A335A7648D75083F32_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Byte>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_mE16288D184D818DF2CFDD919E217023726FEC909 (Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mE16288D184D818DF2CFDD919E217023726FEC909_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.UInt16>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m22906677CD9217D143B033D7F03C6D70EFF02D47 (Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m22906677CD9217D143B033D7F03C6D70EFF02D47_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.UInt32>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_mBFAD3A42C5C2CA317218A9FDE7147363667E7EB2 (Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mBFAD3A42C5C2CA317218A9FDE7147363667E7EB2_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.UInt64>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m7DE4AA7F3E05D2B3BB91CF01177F6EADA4FEF767 (Func_1_tDA414705876081E1199F312C952348ED3884F17E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tDA414705876081E1199F312C952348ED3884F17E *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m7DE4AA7F3E05D2B3BB91CF01177F6EADA4FEF767_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Decimal>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m3CD473997F1E9AEB22801D3B85AE59CA10E9D46E (Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m3CD473997F1E9AEB22801D3B85AE59CA10E9D46E_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Boolean>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m479BA9DCBE3F496111BD05CC90CB1044C5FFD552 (Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m479BA9DCBE3F496111BD05CC90CB1044C5FFD552_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Single>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_mEBD709A28A932E8C76D0E30A777C8A2CDAD4B44D (Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mEBD709A28A932E8C76D0E30A777C8A2CDAD4B44D_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Double>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m9BF255981B0B3BE38430653EEAB3FD9D2C0FA9C9 (Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m9BF255981B0B3BE38430653EEAB3FD9D2C0FA9C9_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`1<System.Guid>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m2F35DB4B2277558E38C3092BE5C01C2488DA9895 (Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m2F35DB4B2277558E38C3092BE5C01C2488DA9895_gshared)(__this, ___object0, ___method1, method); } // System.Int32 System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>::get_Count() inline int32_t List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_inline (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB *, const RuntimeMethod*))List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>::.ctor() inline void List_1__ctor_mAFA74AC0EB11989ACA8AE7FE1EDA15C7AA61B807 (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, const RuntimeMethod* method) { (( void (*) (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB *, const RuntimeMethod*))List_1__ctor_mAFA74AC0EB11989ACA8AE7FE1EDA15C7AA61B807_gshared)(__this, method); } // System.Void System.ArgumentNullException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510 (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BaseDataReader::PrepareNewSerializationSession() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseDataReader_PrepareNewSerializationSession_mC8486AABD686A76E3B9299F8B18E93AD8BDCB305 (BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<Sirenix.Serialization.EntryType>::get_HasValue() inline bool Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline (Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *, const RuntimeMethod*))Nullable_1_get_HasValue_m420882393EE1A0D24867403DB1BDBBB389366A27_gshared_inline)(__this, method); } // !0 System.Nullable`1<Sirenix.Serialization.EntryType>::get_Value() inline uint8_t Nullable_1_get_Value_m91249764D6DABEB17643C0C8864A57C7BF0E545A (Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * __this, const RuntimeMethod* method) { return (( uint8_t (*) (Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *, const RuntimeMethod*))Nullable_1_get_Value_m832EFBA0F7AB5258DDB2287DCB761730B9C1A411_gshared)(__this, method); } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::get_IndexIsValid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_get_IndexIsValid_m470CFF2AFEAB19151F7901573BA3113E90F4C149 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>::get_Item(System.Int32) inline SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_inline (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, int32_t ___index0, const RuntimeMethod* method) { return (( SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 (*) (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB *, int32_t, const RuntimeMethod*))List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_gshared_inline)(__this, ___index0, method); } // System.Void System.Nullable`1<Sirenix.Serialization.EntryType>::.ctor(!0) inline void Nullable_1__ctor_m20ED2E7AAE2C55AA43D1ED744C12432E47B8FBDA (Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * __this, uint8_t ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *, uint8_t, const RuntimeMethod*))Nullable_1__ctor_m2337EA724740AD9DD9CCEFBE99AE89FC00A4BF02_gshared)(__this, ___value0, method); } // !0 System.Nullable`1<Sirenix.Serialization.EntryType>::GetValueOrDefault() inline uint8_t Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline (Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * __this, const RuntimeMethod* method) { return (( uint8_t (*) (Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m7F2175891767B103AEFC18392E3D045D89B15E20_gshared_inline)(__this, method); } // System.Void Sirenix.Serialization.BaseDataReaderWriter::PushArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseDataReaderWriter_PushArray_m59BE893F2995E7153327F7BE100436B6ECDB4A52 (BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B * __this, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method); // System.Boolean System.Int64::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_TryParse_m8CE5F89833C03A091273A4EF48C69E86E1F81ACC (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, int64_t* ___result3, const RuntimeMethod* method); // Sirenix.Serialization.DeserializationContext Sirenix.Serialization.BaseDataReader::get_Context() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6 (BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B * __this, const RuntimeMethod* method); // Sirenix.Serialization.SerializationConfig Sirenix.Serialization.DeserializationContext::get_Config() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629 (DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * __this, const RuntimeMethod* method); // Sirenix.Serialization.DebugContext Sirenix.Serialization.SerializationConfig::get_DebugContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86 (SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Void Sirenix.Serialization.DebugContext::LogError(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712 (DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationNodeDataReader::ConsumeCurrentEntry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mF9EA8429E9D1B7475D5A297E67435CF34E965F28 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.Boolean System.Int32::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m6ADA5D03EE325554346538B991A4C3566BD2A011 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, int32_t* ___result3, const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___values0, const RuntimeMethod* method); // System.Boolean System.Int32::TryParse(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m03D31CAB7050E8286A8A90711C896B181006AD00 (String_t* ___s0, int32_t* ___result1, const RuntimeMethod* method); // Sirenix.Serialization.TwoWaySerializationBinder Sirenix.Serialization.DeserializationContext::get_Binder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * DeserializationContext_get_Binder_mCF94C2B4E01A56F1285447039B8F909306CB5861 (DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BaseDataReaderWriter::PushNode(System.String,System.Int32,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseDataReaderWriter_PushNode_m21BC79BE8D6DE9301C83D778816473B7826FA761 (BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B * __this, String_t* ___name0, int32_t ___id1, Type_t * ___type2, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BaseDataReaderWriter::PopArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseDataReaderWriter_PopArray_m4DF3BD5CC9F49312DBE19F1B69757DD2647EBCC3 (BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B * __this, const RuntimeMethod* method); // System.String Sirenix.Serialization.BaseDataReader::get_CurrentNodeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BaseDataReader_get_CurrentNodeName_m54C77E658C4F8C004B9A88A72E42AAC156108D51 (BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BaseDataReaderWriter::PopNode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseDataReaderWriter_PopNode_mF24548A2D19B1005E2FA2E1E11C3CA3CBD3B9A55 (BaseDataReaderWriter_tA47B54A8256CED4CBA0099A252C023AF6BDC636B * __this, String_t* ___name0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.DebugContext::LogWarning(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED (DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Decimal::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_TryParse_m0EC8E3EC9023AE24ED07A99D208E10F0F5D614DE (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * ___result3, const RuntimeMethod* method); // System.Boolean System.Double::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Double&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m1A7BCBA90DE896E448E3CA09AAD1CA43846567D7 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, double* ___result3, const RuntimeMethod* method); // System.Void System.Guid::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079 (Guid_t * __this, String_t* ___g0, const RuntimeMethod* method); // System.Boolean System.Guid::op_Inequality(System.Guid,System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_op_Inequality_mD6164E39F3B741C9FF30714A661F225ABD38E583 (Guid_t ___a0, Guid_t ___b1, const RuntimeMethod* method); // System.Boolean System.Single::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Single&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_TryParse_m4FE60E3061A34FB7B835A80AC156A85649610744 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, float* ___result3, const RuntimeMethod* method); // System.Boolean System.UInt64::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt64_TryParse_m5119C451C7052149BC0994D3C7AB5D0AE289E8F3 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, uint64_t* ___result3, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::AppendLine(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::AppendLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9 (StringBuilder_t * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BaseDataWriter::.ctor(System.IO.Stream,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseDataWriter__ctor_mA2B0A294DA8CA6AEFF14B100EE08F3D6889176B6 (BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context1, const RuntimeMethod* method); // System.Void System.Action`2<System.String,System.Char>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m485C64E20D0C493D917DFF28017F0CFBAC49ABDA (Action_2_t7A81E682590B81DD40F667542176AA02DCAFA1E9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t7A81E682590B81DD40F667542176AA02DCAFA1E9 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_m98424BEFE39A27766A235C692AD14E508E9728B5_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.SByte>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_mAF6AD2F626A6909760BD159A557A012E28CB1B4C (Action_2_t5F075F0477DFF381250D578CFC9566C37B685087 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t5F075F0477DFF381250D578CFC9566C37B685087 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_m18CE07A033F5A397884DA31AF393E61FD5F81485_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Int16>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m3E3F11621ABB0A28B97496525F9F14CAA26132BE (Action_2_t601D5C86A591692555079344CCB7898C03C50005 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t601D5C86A591692555079344CCB7898C03C50005 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mE56A11B4F92F5BE7FF910CA6BB55C999EDA2C42D_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Int32>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m8A2A4A5281F15C044AA00C87B29024C6F2174DBC (Action_2_tDC912041941E8778D68BAE31B6E7CE869D420A59 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tDC912041941E8778D68BAE31B6E7CE869D420A59 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_m7C4C10BFE9EBA700085A37DEC767389244D68C52_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Int64>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_mD3AFF1FAC6D7829B6416F9103FF21A71A650F799 (Action_2_t1C5018F55BC56EF9A077CA15281BD36D2672B5ED * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t1C5018F55BC56EF9A077CA15281BD36D2672B5ED *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mA7A4DE1F6C83FDDF6C155718AEBDC781E8F37D33_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Byte>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m9AE4BB6CF48832A45FEB04472260C5FFA11C0996 (Action_2_tC7C745CBFBB7BB441C7BCA9701E7E9DD6294A0FF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tC7C745CBFBB7BB441C7BCA9701E7E9DD6294A0FF *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mF5970CE14C1AC4482C96593B762A8A3BAAD3DEA6_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.UInt16>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m8D1A299D9396006EC283BDF038E14459010ACAE6 (Action_2_tA822F465A415381AE24537CFAA66F9939772731E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tA822F465A415381AE24537CFAA66F9939772731E *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mAFF90BE622DDC3EA9E37D7B62B5069C5CA3ABCF1_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.UInt32>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m4B017524605FA5BD00B9D4B1C75C68A4F0CDD737 (Action_2_tC9CC006F43344C8AE24F6EDBDE52190BF3592420 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tC9CC006F43344C8AE24F6EDBDE52190BF3592420 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_m57A88D7E5F58FEFB73F2B75DC8A24D85FBC633DD_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.UInt64>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m3E84BC987DEFD9F0241B4C2A39988D27815FF748 (Action_2_t70253CD680198292E5DF471861B3D5822F8F33BE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t70253CD680198292E5DF471861B3D5822F8F33BE *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mA21A3263E853CC722450C708405CFC8396914CA0_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Decimal>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m5750437CF9F76A7E08B8AE8CFFF7EAACE26061B6 (Action_2_t7674A6DB22EF71B11822201850D25105DE66987D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t7674A6DB22EF71B11822201850D25105DE66987D *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mEFAD2BE46DDB007C4BCC9FBA66B7659A2F7807CA_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Boolean>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_mE2A3B1B42E56F3246BBEEFA3DBB4F3892B258F12 (Action_2_tA4D387C88A3C439A4931A264E2DEFEC33886F455 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tA4D387C88A3C439A4931A264E2DEFEC33886F455 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_m657B1B0C1E9AC8EB5EBD8CF1E13727FDACB91441_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Single>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m02A9CB843BE610FB51DC156BFBEA8C7F0FC3E23F (Action_2_tA44A311C6894DF2F28013A46BDCE66A5B02D20AF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tA44A311C6894DF2F28013A46BDCE66A5B02D20AF *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mED9376F1CECEC84A683DEA04B809A10019BDB03E_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Double>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m3ABB71CACEB89ADA73DB4A7223AC1F9C4EF7D432 (Action_2_t323013173C7106CFC5254A38ABC5D91D7535BD20 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t323013173C7106CFC5254A38ABC5D91D7535BD20 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_m99320B8B508738EE3F50AF35A1ED7F3BFAB34846_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.String,System.Guid>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m307BCB3F5B42CD72C66B9111DCA681B97AB55DFB (Action_2_t50900BA30DEE837C385216BCF44E28E7C7BB95C8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t50900BA30DEE837C385216BCF44E28E7C7BB95C8 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_m04CA9BFB7ADD829708A924281B9A89EE360DF78B_gshared)(__this, ___object0, ___method1, method); } // System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode> Sirenix.Serialization.SerializationNodeDataWriter::get_Nodes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, const RuntimeMethod* method); // System.String System.Int64::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>::Add(!0) inline void List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109 (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB *, SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 , const RuntimeMethod*))List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_gshared)(__this, ___item0, method); } // System.String System.Int32::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // Sirenix.Serialization.SerializationContext Sirenix.Serialization.BaseDataWriter::get_Context() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * BaseDataWriter_get_Context_m12CFE06A23067930EFEDF6884B66DD198114C954 (BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 * __this, const RuntimeMethod* method); // Sirenix.Serialization.TwoWaySerializationBinder Sirenix.Serialization.SerializationContext::get_Binder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * SerializationContext_get_Binder_m1EA22BD69060B0E4E284AA9568F215463709B91F (SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * __this, const RuntimeMethod* method); // Sirenix.Serialization.SerializationConfig Sirenix.Serialization.SerializationContext::get_Config() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8 (SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BaseDataWriter::PrepareNewSerializationSession() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseDataWriter_PrepareNewSerializationSession_mB478E28567215E0EEF44B11DA3430B9329DC7AF4 (BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 * __this, const RuntimeMethod* method); // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Char::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String System.Decimal::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Decimal_ToString_mDC8D45024F77E3D04FB6FBE74866CA11CC6B8BAD (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Single::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_mCF682C2751EC9B98F1CE5455066B92D7D3356756 (float* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Double::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616 (double* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Guid::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_mB5E607B4AFC58DCD842F03B5815C94B9E4BF2E45 (Guid_t * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Int32::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Int16::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A (int16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Int64::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517 (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.SByte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SByte_ToString_mAD063E83F82B38DAAA379DF61C14D563588034D1 (int8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.UInt16::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B (uint16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.UInt32::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_m57BE7A0F4A653986FEAC4794CD13B04CE012F4EE (uint32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.UInt64::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD (uint64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.SerializationPolicies::get_Everything() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationPolicies_get_Everything_mDE213BAA0B762DF663008E7DDEBD9A9144DB5D49 (const RuntimeMethod* method); // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.SerializationPolicies::get_Unity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712 (const RuntimeMethod* method); // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.SerializationPolicies::get_Strict() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationPolicies_get_Strict_m10E331DFA0E733250AFA359B589BB79283172F75 (const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Func`2<System.Reflection.MemberInfo,System.Boolean>::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979 (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m52B660F7AF11A491D7A162298208BFA7A5CF26A3_gshared)(__this, ___object0, ___method1, method); } // System.Void Sirenix.Serialization.CustomSerializationPolicy::.ctor(System.String,System.Boolean,System.Func`2<System.Reflection.MemberInfo,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomSerializationPolicy__ctor_m39454A4A379A917AB699E08CD704FDCB6B0FDB80 (CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1 * __this, String_t* ___id0, bool ___allowNonSerializableTypes1, Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___shouldSerializeFunc2, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationPolicies/<>c__DisplayClass8_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass8_0__ctor_m8A3F6EDD6C49B1BA03F62E93E88C8BE2FB7B40B0 (U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * __this, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationPolicies/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mC1EDB86867799A7593066288B48120D7B91B05C9 (U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * __this, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<Sirenix.Serialization.OdinSerializeAttribute>(System.Reflection.ICustomAttributeProvider,System.Boolean) inline bool MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mAE8D80673CB3522EEC77BC730EE1F2B20522F978 (RuntimeObject* ___member0, bool ___inherit1, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, bool, const RuntimeMethod*))MemberInfoExtensions_IsDefined_TisRuntimeObject_m837402512C221982C4B76A8FA0EBFC9B26AC3E92_gshared)(___member0, ___inherit1, method); } // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<System.NonSerializedAttribute>(System.Reflection.ICustomAttributeProvider,System.Boolean) inline bool MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m898FCF635A0798B453FD9D444A53EA11B0E3883F (RuntimeObject* ___member0, bool ___inherit1, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, bool, const RuntimeMethod*))MemberInfoExtensions_IsDefined_TisRuntimeObject_m837402512C221982C4B76A8FA0EBFC9B26AC3E92_gshared)(___member0, ___inherit1, method); } // System.Boolean Sirenix.Serialization.Utilities.PropertyInfoExtensions::IsAutoProperty(System.Reflection.PropertyInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyInfoExtensions_IsAutoProperty_m68AE118AC15FBBED6C356EA3D9BF1FA25FD2E0F8 (PropertyInfo_t * ___propInfo0, bool ___allowVirtual1, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<System.NonSerializedAttribute>(System.Reflection.ICustomAttributeProvider) inline bool MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m92278158A17F05F659896BC9539564EBFAA3AD70 (RuntimeObject* ___member0, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, const RuntimeMethod*))MemberInfoExtensions_IsDefined_TisRuntimeObject_mDAF294A75DB56B0C843F842AB83E7BBBA88C0AD1_gshared)(___member0, method); } // System.Boolean System.Type::get_IsNestedPrivate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsNestedPrivate_m3B15EC7047516CDF3CFC0F304EEBF25CC4DAECE4 (Type_t * __this, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsDefined<System.Runtime.CompilerServices.CompilerGeneratedAttribute>(System.Type) inline bool TypeExtensions_IsDefined_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m318D8AE203E9C8AE1DC438F99CA761E2BB3C16F5 (Type_t * ___type0, const RuntimeMethod* method) { return (( bool (*) (Type_t *, const RuntimeMethod*))TypeExtensions_IsDefined_TisRuntimeObject_mF3A8092D44C7CD9DED68E3CBD0A93820E677FE43_gshared)(___type0, method); } // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<UnityEngine.SerializeField>(System.Reflection.ICustomAttributeProvider,System.Boolean) inline bool MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m051E2A02F064E62AFF7041861D4F7F2188D65080 (RuntimeObject* ___member0, bool ___inherit1, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, bool, const RuntimeMethod*))MemberInfoExtensions_IsDefined_TisRuntimeObject_m837402512C221982C4B76A8FA0EBFC9B26AC3E92_gshared)(___member0, ___inherit1, method); } // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<Sirenix.Serialization.OdinSerializeAttribute>(System.Reflection.ICustomAttributeProvider) inline bool MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mF99D7C8B327C81D20920C1BBFBF7CBEB4915F2F9 (RuntimeObject* ___member0, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, const RuntimeMethod*))MemberInfoExtensions_IsDefined_TisRuntimeObject_mDAF294A75DB56B0C843F842AB83E7BBBA88C0AD1_gshared)(___member0, method); } // System.Boolean System.Reflection.FieldInfo::get_IsPublic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsPublic_m9265C7C7F78B6E7361D9C3A1D09B8360B699D1C6 (FieldInfo_t * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BinaryDataWriter::.ctor(System.IO.Stream,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryDataWriter__ctor_mECD38E70F171CAFF12A8901DD68373AE3449106F (BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.JsonDataWriter::.ctor(System.IO.Stream,Sirenix.Serialization.SerializationContext,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDataWriter__ctor_m82617520A6A7F75545B95A24FB7415598A0C34DB (JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context1, bool ___formatAsReadable2, const RuntimeMethod* method); // System.String System.String::Concat(System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC (RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogError(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.BinaryDataReader::.ctor(System.IO.Stream,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryDataReader__ctor_mE15FEBC1FBF7574C73ADCF8CA9D2373ACDA2B840 (BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.JsonDataReader::.ctor(System.IO.Stream,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDataReader__ctor_m44D8349D5911BA404E6277043FCB653F2036A117 (JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context1, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.BinaryDataWriter>::Claim() inline Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * Cache_1_Claim_mF29D323401A864DEAAD720ACA649217D1A1EA8AA (const RuntimeMethod* method) { return (( Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * (*) (const RuntimeMethod*))Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared)(method); } // System.Void Sirenix.Serialization.BaseDataWriter::set_Context(Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void BaseDataWriter_set_Context_mEE563E3E13FE5E5D22B8E78572293E04BC474BA7_inline (BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 * __this, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___value0, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.JsonDataWriter>::Claim() inline Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * Cache_1_Claim_m3D0E86AFDAA6216440B4E93EEA91DF34AD561A20 (const RuntimeMethod* method) { return (( Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * (*) (const RuntimeMethod*))Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared)(method); } // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.BinaryDataReader>::Claim() inline Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * Cache_1_Claim_mCD18E4724791F8E40BA81D9A5EF7A54D0C2B1EE3 (const RuntimeMethod* method) { return (( Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * (*) (const RuntimeMethod*))Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared)(method); } // System.Void Sirenix.Serialization.BaseDataReader::set_Context(Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void BaseDataReader_set_Context_mB0441E42B9E9CABD729ECEAAAA1302BE2CA6BF00_inline (BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B * __this, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___value0, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.JsonDataReader>::Claim() inline Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * Cache_1_Claim_mC72FC018F570A496E42E86BB6F17A33950A01B95 (const RuntimeMethod* method) { return (( Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * (*) (const RuntimeMethod*))Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared)(method); } // Sirenix.Serialization.Serializer Sirenix.Serialization.Serializer::GetForValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * Serializer_GetForValue_m2ED56379A29E1721E401FBA8ABA572D4DEF88A56 (RuntimeObject * ___value0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer::WriteValueWeak(System.Object,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_WriteValueWeak_mCE6C988C6E824ACDD9A3E25A2B3BA17417C5E7B9 (Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * __this, RuntimeObject * ___value0, RuntimeObject* ___writer1, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.UnityReferenceResolver>::Claim() inline Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA (const RuntimeMethod* method) { return (( Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * (*) (const RuntimeMethod*))Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared)(method); } // System.Void Sirenix.Serialization.SerializationContext::set_IndexReferenceResolver(Sirenix.Serialization.IExternalIndexReferenceResolver) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void SerializationContext_set_IndexReferenceResolver_mB8D8070FFE33FB9BED811EEF3B16D378036ADA94_inline (SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * __this, RuntimeObject* ___value0, const RuntimeMethod* method); // System.Collections.Generic.List`1<UnityEngine.Object> Sirenix.Serialization.UnityReferenceResolver::GetReferencedUnityObjects() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * UnityReferenceResolver_GetReferencedUnityObjects_m5338EFA1A48D67FD29C4BC471257AAFF9BA651E4_inline (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, const RuntimeMethod* method); // Sirenix.Serialization.IDataWriter Sirenix.Serialization.SerializationUtility::GetCachedWriter(System.IDisposable&,Sirenix.Serialization.DataFormat,System.IO.Stream,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0 (RuntimeObject** ___cache0, int32_t ___format1, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream2, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context3, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValueWeak_m37B62101CC8AB3F65C2F2AA58F190C28609C20C1 (RuntimeObject * ___value0, RuntimeObject* ___writer1, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.SerializationContext>::Claim() inline Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3 (const RuntimeMethod* method) { return (( Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * (*) (const RuntimeMethod*))Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared)(method); } // T Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.SerializationContext>::op_Implicit(Sirenix.Serialization.Utilities.Cache`1<T>) inline SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32 (Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * ___cache0, const RuntimeMethod* method) { return (( SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * (*) (Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE *, const RuntimeMethod*))Cache_1_op_Implicit_m966CB0F48E7B279ED791D2DFFF5AC10A3083C728_gshared)(___cache0, method); } // System.Void Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,Sirenix.Serialization.IDataWriter,System.Collections.Generic.List`1<UnityEngine.Object>&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValueWeak_m71C2C2EE28CFA876EC9DB9D9EB9C6DC64367BCF8 (RuntimeObject * ___value0, RuntimeObject* ___writer1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___unityObjects2, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.CachedMemoryStream> Sirenix.Serialization.CachedMemoryStream::Claim(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * CachedMemoryStream_Claim_m5DFD5A6F321403CEAD6DB6EEB41DD20F6C79E572 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, const RuntimeMethod* method); // System.IO.MemoryStream Sirenix.Serialization.CachedMemoryStream::get_MemoryStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07 (CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,System.IO.Stream,Sirenix.Serialization.DataFormat,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValueWeak_mC937F375B75CFB34CF3B048F6BA1146433B6A968 (RuntimeObject * ___value0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, int32_t ___format2, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context3, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,System.IO.Stream,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValueWeak_m90A710914AD92D54DE6DF948560DD9178F6E4F42 (RuntimeObject * ___value0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, int32_t ___format2, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___unityObjects3, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context4, const RuntimeMethod* method); // Sirenix.Serialization.Serializer`1<T> Sirenix.Serialization.Serializer::Get<System.Object>() inline Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1 (const RuntimeMethod* method) { return (( Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * (*) (const RuntimeMethod*))Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1_gshared)(method); } // System.Void Sirenix.Serialization.UnityReferenceResolver::SetReferencedUnityObjects(System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.DeserializationContext::set_IndexReferenceResolver(Sirenix.Serialization.IExternalIndexReferenceResolver) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DeserializationContext_set_IndexReferenceResolver_m0027EE73B5149E617BFAF47E94CD26CA5234E431_inline (DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * __this, RuntimeObject* ___value0, const RuntimeMethod* method); // Sirenix.Serialization.IDataReader Sirenix.Serialization.SerializationUtility::GetCachedReader(System.IDisposable&,Sirenix.Serialization.DataFormat,System.IO.Stream,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653 (RuntimeObject** ___cache0, int32_t ___format1, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream2, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context3, const RuntimeMethod* method); // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_m9581172659F072B2F7FBC1F4D4D98F51CD1B2155 (RuntimeObject* ___reader0, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.DeserializationContext>::Claim() inline Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA (const RuntimeMethod* method) { return (( Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * (*) (const RuntimeMethod*))Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared)(method); } // T Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.DeserializationContext>::op_Implicit(Sirenix.Serialization.Utilities.Cache`1<T>) inline DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3 (Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * ___cache0, const RuntimeMethod* method) { return (( DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * (*) (Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 *, const RuntimeMethod*))Cache_1_op_Implicit_m966CB0F48E7B279ED791D2DFFF5AC10A3083C728_gshared)(___cache0, method); } // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(Sirenix.Serialization.IDataReader,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_m3BCFAF0CDD4C7781E87BFF26DAA92AE14EFFF2C8 (RuntimeObject* ___reader0, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects1, const RuntimeMethod* method); // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(System.IO.Stream,Sirenix.Serialization.DataFormat,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_m7FCF67D3A434DBC1D78EA82E5AC4436FC6FDF1E1 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, int32_t ___format1, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context2, const RuntimeMethod* method); // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(System.IO.Stream,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_mB5E01A7533BD9F102A69C913B134E7D334276DB2 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, int32_t ___format1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects2, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context3, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::InheritsFrom(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_InheritsFrom_mE3C31521AF59D77C48BA59744008CFFB79FEF580 (Type_t * ___type0, Type_t * ___baseType1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationConfig::set_SerializationPolicy(Sirenix.Serialization.ISerializationPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationConfig_set_SerializationPolicy_m628BBBB68B4F7AAE9D4A8B94038E961C790EDD51 (SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * __this, RuntimeObject* ___value0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationUtility::SerializeValue<System.Object>(T,System.IO.Stream,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.SerializationContext) inline void SerializationUtility_SerializeValue_TisRuntimeObject_m1E89017B1C6494143CB6454F1C10B52433297807 (RuntimeObject * ___value0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, int32_t ___format2, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___unityObjects3, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context4, const RuntimeMethod* method) { (( void (*) (RuntimeObject *, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *, int32_t, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B *, const RuntimeMethod*))SerializationUtility_SerializeValue_TisRuntimeObject_m1E89017B1C6494143CB6454F1C10B52433297807_gshared)(___value0, ___stream1, ___format2, ___unityObjects3, ___context4, method); } // T Sirenix.Serialization.SerializationUtility::DeserializeValue<System.Object>(System.IO.Stream,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>,Sirenix.Serialization.DeserializationContext) inline RuntimeObject * SerializationUtility_DeserializeValue_TisRuntimeObject_m5E680C93F9932F74746318453FD8EE5E11E5DC1D (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, int32_t ___format1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects2, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context3, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *, int32_t, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 *, const RuntimeMethod*))SerializationUtility_DeserializeValue_TisRuntimeObject_m5E680C93F9932F74746318453FD8EE5E11E5DC1D_gshared)(___stream0, ___format1, ___referencedUnityObjects2, ___context3, method); } // Sirenix.Serialization.Serializer Sirenix.Serialization.Serializer::Get(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869 (Type_t * ___type0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,Sirenix.Serialization.Serializer>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m53EFB7FFCD352EFCE3505FD4D9E28F6531F5C220 (Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * __this, Type_t * ___key0, Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 *, Type_t *, Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // Sirenix.Serialization.Serializer Sirenix.Serialization.Serializer::Create(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * Serializer_Create_mE1586CF99DD6E788BF080BE5D53AC4DC7E395FF5 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Type,Sirenix.Serialization.Serializer>::Add(!0,!1) inline void Dictionary_2_Add_m69346B75A05C4F037E46A7FC561664C05076A1F6 (Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * __this, Type_t * ___key0, Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 *, Type_t *, Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Boolean Sirenix.Serialization.FormatterUtilities::IsPrimitiveType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FormatterUtilities_IsPrimitiveType_m3AECCC4A03A0C6B68DC03B2D9503682083CC7193 (Type_t * ___type0, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2<System.Type,System.Type>::get_Item(!0) inline Type_t * Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * __this, Type_t * ___key0, const RuntimeMethod* method) { return (( Type_t * (*) (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_gshared)(__this, ___key0, method); } // System.Object System.Activator::CreateInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16 (Type_t * ___type0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer::LogAOTError(System.Type,System.ExecutionEngineException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1 (Type_t * ___type0, ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * ___ex1, const RuntimeMethod* method); // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetNiceFullName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527 (Type_t * ___type0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationAbortException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationAbortException__ctor_mA221C3CF4D60BB1CF06F52186AAEF1D16E127914 (SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Type>::.ctor() inline void Dictionary_2__ctor_mF539C5E9ECC924AB2CC96934DA97A0040CB6797A (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Type>::Add(!0,!1) inline void Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410 (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * __this, Type_t * ___key0, Type_t * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *, Type_t *, Type_t *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,Sirenix.Serialization.Serializer>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) inline void Dictionary_2__ctor_m3FF81FB3B0B21B72CCFD9011E5C84E0B53EC9F3F (Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared)(__this, ___comparer0, method); } // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.Single>::.ctor() inline void Serializer_1__ctor_m7A8238EDC32B7D323566B758EE82C5EF166D3470 (Serializer_1_t499D78B9DD9AC6B7283CF83AC1B3D9330C66DE83 * __this, const RuntimeMethod* method) { (( void (*) (Serializer_1_t499D78B9DD9AC6B7283CF83AC1B3D9330C66DE83 *, const RuntimeMethod*))Serializer_1__ctor_m7A8238EDC32B7D323566B758EE82C5EF166D3470_gshared)(__this, method); } // System.Void Sirenix.Serialization.Serializer`1<System.String>::.ctor() inline void Serializer_1__ctor_m13BA881D22251A908B73FF39B9B9F830297A9F36 (Serializer_1_tF81CA24ECBC43ED40CB4D65ED46CB4432BD882D5 * __this, const RuntimeMethod* method) { (( void (*) (Serializer_1_tF81CA24ECBC43ED40CB4D65ED46CB4432BD882D5 *, const RuntimeMethod*))Serializer_1__ctor_m322EE14FCE004995EB2E7A54E4F43A5E1D761B90_gshared)(__this, method); } // System.Void System.TimeSpan::.ctor(System.Int64) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int64_t ___ticks0, const RuntimeMethod* method); // System.Int64 System.TimeSpan::get_Ticks() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.MinimalBaseFormatter`1<System.TimeSpan>::.ctor() inline void MinimalBaseFormatter_1__ctor_mE9689C13D11CB2C1EA2EEF27A44D20DCF67CC936 (MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532 * __this, const RuntimeMethod* method) { (( void (*) (MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532 *, const RuntimeMethod*))MinimalBaseFormatter_1__ctor_mE9689C13D11CB2C1EA2EEF27A44D20DCF67CC936_gshared)(__this, method); } // System.Void Sirenix.Serialization.DefaultSerializationBinder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultSerializationBinder__ctor_m910D35F406BA9AA48FE2DBDE2D1732DEB8BFDC67 (DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.MinimalBaseFormatter`1<System.Type>::RegisterReferenceID(T,Sirenix.Serialization.IDataReader) inline void MinimalBaseFormatter_1_RegisterReferenceID_mA94B978A70B58C551AB6228C5229141BB1D43A09 (MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584 * __this, Type_t * ___value0, RuntimeObject* ___reader1, const RuntimeMethod* method) { (( void (*) (MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584 *, Type_t *, RuntimeObject*, const RuntimeMethod*))MinimalBaseFormatter_1_RegisterReferenceID_m76C4FBE4C71715B54F5912C4090BE46E60C4AC29_gshared)(__this, ___value0, ___reader1, method); } // System.Void Sirenix.Serialization.MinimalBaseFormatter`1<System.Type>::.ctor() inline void MinimalBaseFormatter_1__ctor_mFC7ABE31E673D84F003C643FFAB42BDF86DB3E61 (MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584 * __this, const RuntimeMethod* method) { (( void (*) (MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584 *, const RuntimeMethod*))MinimalBaseFormatter_1__ctor_m3F5F0B7DB83073E0DA356759C5440EB9DAFC06BE_gshared)(__this, method); } // System.Void Sirenix.Serialization.TypeFormatter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeFormatter__ctor_m424A9248230C12595E871D7BF6487474FC7E24BD (TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.UInt16>::.ctor() inline void Serializer_1__ctor_m383A30509A4D34E550528AFC0118139BC349C1F0 (Serializer_1_tB0717BBCE09985638B64CCF555B4ABF9D1EB63E9 * __this, const RuntimeMethod* method) { (( void (*) (Serializer_1_tB0717BBCE09985638B64CCF555B4ABF9D1EB63E9 *, const RuntimeMethod*))Serializer_1__ctor_m383A30509A4D34E550528AFC0118139BC349C1F0_gshared)(__this, method); } // System.Void Sirenix.Serialization.Serializer`1<System.UInt32>::.ctor() inline void Serializer_1__ctor_m738A38526C3AB2FC9D58533CEAD3C7DC39C53B73 (Serializer_1_t1C25A01A2FFA085904188AFA499F9F8F553DE25F * __this, const RuntimeMethod* method) { (( void (*) (Serializer_1_t1C25A01A2FFA085904188AFA499F9F8F553DE25F *, const RuntimeMethod*))Serializer_1__ctor_m738A38526C3AB2FC9D58533CEAD3C7DC39C53B73_gshared)(__this, method); } // System.Void Sirenix.Serialization.Serializer`1<System.UInt64>::.ctor() inline void Serializer_1__ctor_m3617D23F006E505B99AEA48875D3D922A9235DAD (Serializer_1_t6F842F74A34468D4D1E363B9E095A2136CBCFCBD * __this, const RuntimeMethod* method) { (( void (*) (Serializer_1_t6F842F74A34468D4D1E363B9E095A2136CBCFCBD *, const RuntimeMethod*))Serializer_1__ctor_m3617D23F006E505B99AEA48875D3D922A9235DAD_gshared)(__this, method); } // System.Void System.UIntPtr::.ctor(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtr__ctor_m73E1422110234CF2323CBDC17B665871C84FACD2 (uintptr_t* __this, uint64_t ___value0, const RuntimeMethod* method); // System.UInt64 System.UIntPtr::op_Explicit(System.UIntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UIntPtr_op_Explicit_m0F6E9EC046D4A796A257B9C2192A21051DC90075 (uintptr_t ___value0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Serializer`1<System.UIntPtr>::.ctor() inline void Serializer_1__ctor_m934F0DE383C8A9734B569982828B968946D3FDB5 (Serializer_1_t24F8BE1C52CD9405DFDF6876DF7F3D668286A27F * __this, const RuntimeMethod* method) { (( void (*) (Serializer_1_t24F8BE1C52CD9405DFDF6876DF7F3D668286A27F *, const RuntimeMethod*))Serializer_1__ctor_m934F0DE383C8A9734B569982828B968946D3FDB5_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Object,System.Int32>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<!0>) inline void Dictionary_2__ctor_m98408F3F5238E6982CD965ABF86332FD0CE1A8A4 (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A *, int32_t, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m1AE18E6CB058FB9635AA69313F0AFEC4C168E25D_gshared)(__this, ___capacity0, ___comparer1, method); } // System.Void System.Collections.Generic.List`1<UnityEngine.Object>::.ctor() inline void List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Object,System.Int32>::Clear() inline void Dictionary_2_Clear_mA1B583DFC0F4843E7B762692CCCFB528483B3536 (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A *, const RuntimeMethod*))Dictionary_2_Clear_m5BF977C6A62D42CBAFD0B85BFE21694A9676E862_gshared)(__this, method); } // !0 System.Collections.Generic.List`1<UnityEngine.Object>::get_Item(System.Int32) inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_inline (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * (*) (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method); } // System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Object,System.Int32>::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_mAA0A67CCB67E2C3FFE791D6E134D8EC668D7A21C (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * __this, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A *, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *, const RuntimeMethod*))Dictionary_2_ContainsKey_mB52B1B96EEFC5261F10998A81DAA5A02ED025265_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Object,System.Int32>::Add(!0,!1) inline void Dictionary_2_Add_m2CDD187E7B3A7E8374F937954271C361239B6EF8 (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * __this, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A *, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *, int32_t, const RuntimeMethod*))Dictionary_2_Add_m786A1D72D4E499C0776742D3B2921F47E3A54545_gshared)(__this, ___key0, ___value1, method); } // System.Int32 System.Collections.Generic.List`1<UnityEngine.Object>::get_Count() inline int32_t List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_inline (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1<UnityEngine.Object>::.ctor(System.Int32) inline void List_1__ctor_mAF963F060FA1EBE3F85CB8BA18079FD42ACCC1C5 (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *, int32_t, const RuntimeMethod*))List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared)(__this, ___capacity0, method); } // System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Object,System.Int32>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m93A1AFAB83E35028A2EFE8D5C3E11134520C8366 (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * __this, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___key0, int32_t* ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A *, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_mE7571EF8ACAF5941AF78909A00CD9CE5FB07C69C_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.List`1<UnityEngine.Object>::Add(!0) inline void List_1_Add_m986F636DEAB8C4DF0C669D0F3FB8F91B79FBD4F3 (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * __this, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Void Sirenix.Serialization.UnityReferenceResolver::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityReferenceResolver_Reset_m20F4036024381C6CE511ED8510A8CE8FDDABE6E5 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, const RuntimeMethod* method); // System.Void Sirenix.Utilities.GlobalConfig`1<Sirenix.Serialization.GlobalSerializationConfig>::LoadInstanceIfAssetExists() inline void GlobalConfig_1_LoadInstanceIfAssetExists_mA5D9BB752BCCAA4D8851EF77DCB5674019589542 (const RuntimeMethod* method) { (( void (*) (const RuntimeMethod*))GlobalConfig_1_LoadInstanceIfAssetExists_m9856CEBD900BD2D64CA027F01847FA58EC404C04_gshared)(method); } // UnityEngine.RuntimePlatform UnityEngine.Application::get_platform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Application_get_platform_m6AFFFF3B077F4D5CA1F71CF14ABA86A83FC71672 (const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationInitializer::set_CurrentPlatform(UnityEngine.RuntimePlatform) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnitySerializationInitializer_set_CurrentPlatform_m87C95518B9FFE76BE258B2D3BD8C5D41B3B6C327_inline (int32_t ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.Application::get_isEditor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isEditor_m347E6EE16E5109EF613C83ED98DB1EC6E3EF5E26 (const RuntimeMethod* method); // UnityEngine.RuntimePlatform Sirenix.Serialization.UnitySerializationInitializer::get_CurrentPlatform() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t UnitySerializationInitializer_get_CurrentPlatform_mC3E00160B0C03A7B55900A907557C6A94A2777F3_inline (const RuntimeMethod* method); // System.Void Sirenix.Serialization.ArchitectureInfo::SetRuntimePlatform(UnityEngine.RuntimePlatform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArchitectureInfo_SetRuntimePlatform_mF5B0D5073B2FB5ABDAFEDFB48272FDCB29EC779E (int32_t ___platform0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationInitializer::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationInitializer_Initialize_mB69D9F1EDB32DB981FA4CE0107B0C12AE15B256B (const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m5C5000C6F7B6E40AEE2D5016A1A63A81867B1A46 (Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * __this, RuntimeObject* ___key0, Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E *, RuntimeObject*, Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) inline void Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191 (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_mBB62C733B6E40E207F964AC2CB23A23C49935A74_gshared)(__this, ___comparer0, method); } // System.Void System.Collections.Generic.Dictionary`2<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>>::Add(!0,!1) inline void Dictionary_2_Add_m79D000052E64F3BC63201DBA89FDC4EFBDABBD31 (Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * __this, RuntimeObject* ___key0, Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E *, RuntimeObject*, Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m92B5433B12E33D934253888A759D03A128B0AA53 (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * __this, MemberInfo_t * ___key0, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *, MemberInfo_t *, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 *, const RuntimeMethod*))Dictionary_2_TryGetValue_m4FC4B3365F73D535E332F12B08BEC2C7BE5401B6_gshared)(__this, ___key0, ___value1, method); } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::CalculateOdinWillSerialize(System.Reflection.MemberInfo,System.Boolean,Sirenix.Serialization.ISerializationPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_CalculateOdinWillSerialize_m1FFED8F181E2C234BFF0BB14E12ACB0FF3589E1A (MemberInfo_t * ___member0, bool ___serializeUnityFields1, RuntimeObject* ___policy2, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>::Add(!0,!1) inline void Dictionary_2_Add_m82CB5A3B2A2462CB9DADD1FF68998456B97C352D (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * __this, MemberInfo_t * ___key0, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *, MemberInfo_t *, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 , const RuntimeMethod*))Dictionary_2_Add_m318535B0A0BE2C4BFFC077E609ED59D2D34A2B65_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>::set_Item(!0,!1) inline void Dictionary_2_set_Item_m178FFDE1B4673EB24E148B45B9D8A9AE5B790862 (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * __this, MemberInfo_t * ___key0, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *, MemberInfo_t *, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 , const RuntimeMethod*))Dictionary_2_set_Item_mB76AF097CA64DBB759F47C22C8F376C3735B21B7_gshared)(__this, ___key0, ___value1, method); } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::GuessIfUnityWillSerialize(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_GuessIfUnityWillSerialize_mD0C315E4121BA830641EE0C9B428F862D204D121 (MemberInfo_t * ___member0, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,System.Boolean>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_mC4902336A15D84FF53ED4109CFFD94AC310C27F7 (Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * __this, MemberInfo_t * ___key0, bool* ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 *, MemberInfo_t *, bool*, const RuntimeMethod*))Dictionary_2_TryGetValue_m2592536E260ED5D3C5470FE88C30E21520EB4D2C_gshared)(__this, ___key0, ___value1, method); } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::GuessIfUnityWillSerializePrivate(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mFE1C88FD6105EC66741847AB56221B3AC2FED891 (MemberInfo_t * ___member0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,System.Boolean>::set_Item(!0,!1) inline void Dictionary_2_set_Item_mF5967C0BA249106E1F885BBEAD84AF240C75BDE9 (Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * __this, MemberInfo_t * ___key0, bool ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 *, MemberInfo_t *, bool, const RuntimeMethod*))Dictionary_2_set_Item_mC57619AF214A94D546CFA159A4B3E99CFBF1610D_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Reflection.FieldInfo::get_IsStatic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA (FieldInfo_t * __this, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<UnityEngine.SerializeField>(System.Reflection.ICustomAttributeProvider) inline bool MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m1DDA3C5BAD6CE5210AE4AE7D994F7EA118FAC8E4 (RuntimeObject* ___member0, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, const RuntimeMethod*))MemberInfoExtensions_IsDefined_TisRuntimeObject_mDAF294A75DB56B0C843F842AB83E7BBBA88C0AD1_gshared)(___member0, method); } // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsDefined<System.Runtime.CompilerServices.FixedBufferAttribute>(System.Reflection.ICustomAttributeProvider) inline bool MemberInfoExtensions_IsDefined_TisFixedBufferAttribute_tF3065E17C7BDDEAEDC5D80CED0509DB83C558743_mA7D9CD4BAEF6671FCC8590AC8BDE5DA8FC225661 (RuntimeObject* ___member0, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, const RuntimeMethod*))MemberInfoExtensions_IsDefined_TisRuntimeObject_mDAF294A75DB56B0C843F842AB83E7BBBA88C0AD1_gshared)(___member0, method); } // System.Boolean Sirenix.Serialization.Utilities.UnityVersion::IsVersionOrGreater(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityVersion_IsVersionOrGreater_mE80D07B971B5395CBB46EC558FC7A5D588CC045A (int32_t ___major0, int32_t ___minor1, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.UnitySerializationUtility::GuessIfUnityWillSerialize(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921 (Type_t * ___type0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Boolean>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_mB655745D2AC767ACC35EB2E031D49223B7CC5F18 (Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * __this, Type_t * ___key0, bool* ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 *, Type_t *, bool*, const RuntimeMethod*))Dictionary_2_TryGetValue_m2592536E260ED5D3C5470FE88C30E21520EB4D2C_gshared)(__this, ___key0, ___value1, method); } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::GuessIfUnityWillSerializePrivate(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mB6EDA795817D96631523ADFB059B15A741A207F6 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Boolean>::set_Item(!0,!1) inline void Dictionary_2_set_Item_mC4D295EA58699C8CA7A51B70892241A42B14CA8E (Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * __this, Type_t * ___key0, bool ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 *, Type_t *, bool, const RuntimeMethod*))Dictionary_2_set_Item_mC57619AF214A94D546CFA159A4B3E99CFBF1610D_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.HashSet`1<System.Type>::Contains(!0) inline bool HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * __this, Type_t * ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *, Type_t *, const RuntimeMethod*))HashSet_1_Contains_m76525371D7FFA91A1B054B1C65C86969133C2CD4_gshared)(__this, ___item0, method); } // System.Boolean System.Type::get_IsAbstract() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsAbstract_m769E8E92F368822B8AB5354BB0D123BDDD605D09 (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsInterface() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED (Type_t * __this, const RuntimeMethod* method); // System.Type System.Enum::GetUnderlyingType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1 (Type_t * ___enumType0, const RuntimeMethod* method); // System.Boolean System.Type::get_IsPrimitive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A (Type_t * __this, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsDefined<System.SerializableAttribute>(System.Type,System.Boolean) inline bool TypeExtensions_IsDefined_TisSerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_m2A609FDCBB9D0E72E14F1AD50445B5B4845E5C36 (Type_t * ___type0, bool ___inherit1, const RuntimeMethod* method) { return (( bool (*) (Type_t *, bool, const RuntimeMethod*))TypeExtensions_IsDefined_TisRuntimeObject_m51229EAA274FC8AD78E99FF916EE4B1D4EE115AE_gshared)(___type0, ___inherit1, method); } // System.Boolean System.Type::get_IsArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE (Type_t * __this, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::ImplementsOpenGenericClass(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B (Type_t * ___candidateType0, Type_t * ___openGenericType1, const RuntimeMethod* method); // System.Type[] Sirenix.Serialization.Utilities.TypeExtensions::GetArgumentsOfInheritedOpenGenericClass(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB (Type_t * ___candidateType0, Type_t * ___openGenericType1, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsClass() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsClass_m760C57B1D66D7CBF284495764BB7EFC6E7D74B0F (Type_t * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method); // System.Boolean Sirenix.Utilities.GlobalConfig`1<Sirenix.Serialization.GlobalSerializationConfig>::get_HasInstanceLoaded() inline bool GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F (const RuntimeMethod* method) { return (( bool (*) (const RuntimeMethod*))GlobalConfig_1_get_HasInstanceLoaded_m36A7E0A6C5E9F2E8A52057572B4272C7C0EA378B_gshared)(method); } // !0 Sirenix.Utilities.GlobalConfig`1<Sirenix.Serialization.GlobalSerializationConfig>::get_Instance() inline GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013 (const RuntimeMethod* method) { return (( GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * (*) (const RuntimeMethod*))GlobalConfig_1_get_Instance_mF0BE8BA81EF02C5914FB5CEC7950D4900E1C3C42_gshared)(method); } // Sirenix.Serialization.DataFormat Sirenix.Serialization.GlobalSerializationConfig::get_BuildSerializationFormat() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t GlobalSerializationConfig_get_BuildSerializationFormat_m7E9C213D72BF07EDD29AEF4F9CB4F8333E4C5813_inline (GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarning(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationUtility::SerializeUnityObject(UnityEngine.Object,System.Byte[]&,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.DataFormat,System.Boolean,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_SerializeUnityObject_mED7624B3AF4EB949D9B1B201BB46D14993EB6686 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___bytes1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___referencedUnityObjects2, int32_t ___format3, bool ___serializeUnityFields4, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context5, const RuntimeMethod* method); // System.String System.Convert::ToBase64String(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inArray0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<UnityEngine.Object>::Clear() inline void List_1_Clear_m323690E6AB15ABBB1CD3EFC1EB7DB14F9FD98C77 (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *, const RuntimeMethod*))List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared)(__this, method); } // Sirenix.Serialization.Utilities.Cache`1<T> Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.CachedMemoryStream>::Claim() inline Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * Cache_1_Claim_m79A458A3EE3C95261A515CF4AD83C1E3E141150C (const RuntimeMethod* method) { return (( Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * (*) (const RuntimeMethod*))Cache_1_Claim_m96892163958841389E8F9A2B7D1B69FF316C575D_gshared)(method); } // Sirenix.Serialization.Utilities.ICache Sirenix.Serialization.UnitySerializationUtility::GetCachedUnityWriter(Sirenix.Serialization.DataFormat,System.IO.Stream,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60 (int32_t ___format0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context2, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationUtility::SerializeUnityObject(UnityEngine.Object,Sirenix.Serialization.IDataWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, RuntimeObject* ___writer1, bool ___serializeUnityFields2, const RuntimeMethod* method); // Sirenix.Serialization.ErrorHandlingPolicy Sirenix.Serialization.GlobalSerializationConfig::get_ErrorHandlingPolicy() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t GlobalSerializationConfig_get_ErrorHandlingPolicy_mE779E5E188720C8AD1B507BBE698CD1EF2CE5F50_inline (GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.DebugContext::set_ErrorHandlingPolicy(Sirenix.Serialization.ErrorHandlingPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugContext_set_ErrorHandlingPolicy_m66620CA99ADB3E7C51D38914FD0E81A5A499F78B (DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * __this, int32_t ___value0, const RuntimeMethod* method); // Sirenix.Serialization.LoggingPolicy Sirenix.Serialization.GlobalSerializationConfig::get_LoggingPolicy() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t GlobalSerializationConfig_get_LoggingPolicy_m776ADBF2D937C50D07B53E3D96F9BD61176BB817_inline (GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.DebugContext::set_LoggingPolicy(Sirenix.Serialization.LoggingPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugContext_set_LoggingPolicy_mA371D2C17349359CFEC76DE41A0BD6132C5BD206 (DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * __this, int32_t ___value0, const RuntimeMethod* method); // Sirenix.Serialization.ILogger Sirenix.Serialization.GlobalSerializationConfig::get_Logger() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GlobalSerializationConfig_get_Logger_m5578A792C89480004AF50836DD9880F802813F42 (GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.DebugContext::set_Logger(Sirenix.Serialization.ILogger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugContext_set_Logger_m8AC2F6DEE88731C9A22604A4FE4A426737ADD122 (DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * __this, RuntimeObject* ___value0, const RuntimeMethod* method); // Sirenix.Serialization.ILogger Sirenix.Serialization.DefaultLoggers::get_UnityLogger() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DefaultLoggers_get_UnityLogger_mE48353CCB0FB37928DE9798A08329A00EF733EE5 (const RuntimeMethod* method); // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.SerializationConfig::get_SerializationPolicy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationConfig_get_SerializationPolicy_m81A1C272C40987C46DB64219E76CE9471D582F4E (SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * __this, const RuntimeMethod* method); // System.Reflection.MemberInfo[] Sirenix.Serialization.FormatterUtilities::GetSerializableMembers(System.Type,Sirenix.Serialization.ISerializationPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* FormatterUtilities_GetSerializableMembers_mD56C0890DE16C49088BD7AE93B5FD74E73DFE024 (Type_t * ___type0, RuntimeObject* ___policy1, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.UnitySerializationUtility::OdinWillSerialize(System.Reflection.MemberInfo,System.Boolean,Sirenix.Serialization.ISerializationPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_OdinWillSerialize_m0211AB253DACCC82CC0FAE56445F0EC2EA42B35A (MemberInfo_t * ___member0, bool ___serializeUnityFields1, RuntimeObject* ___policy2, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.WeakValueGetter Sirenix.Serialization.UnitySerializationUtility::GetCachedUnityMemberGetter(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * UnitySerializationUtility_GetCachedUnityMemberGetter_mD38504B4CCC191DD830BD317DC3B2D8791031BA2 (MemberInfo_t * ___member0, const RuntimeMethod* method); // System.Object Sirenix.Serialization.Utilities.WeakValueGetter::Invoke(System.Object&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * WeakValueGetter_Invoke_m219DF35FCF3383EAAB1DD55285D54CD8323E3F9F (WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * __this, RuntimeObject ** ___instance0, const RuntimeMethod* method); // System.Type Sirenix.Serialization.FormatterUtilities::GetContainedType(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * FormatterUtilities_GetContainedType_mB60046AA07D86CED1A5543B2DDD4AA69D7F7234A (MemberInfo_t * ___member0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.DebugContext::LogException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugContext_LogException_mED2AFEADBD205A487211F445000728C2BF976DC9 (DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * __this, Exception_t * ___exception0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationAbortException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationAbortException__ctor_mA3292212CAE83C264AC35ACC8C7277DABB944165 (SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogException_mBAA6702C240E37B2A834AA74E4FDC15A3A5589A9 (Exception_t * ___exception0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,Sirenix.Serialization.SerializationData&,Sirenix.Serialization.DeserializationContext,System.Boolean,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * ___data1, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context2, bool ___isPrefabData3, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___prefabInstanceUnityObjects4, const RuntimeMethod* method); // System.String Sirenix.Serialization.ProperBitConverter::BytesToHexString(System.Byte[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ProperBitConverter_BytesToHexString_m7EC93706A0EAA6D072CB45EF19EB51EF834315ED (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, bool ___lowerCaseHexChars1, const RuntimeMethod* method); // System.String System.String::Concat(System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,System.Byte[]&,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.DataFormat,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___bytes1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___referencedUnityObjects2, int32_t ___format3, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context4, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationUtility::ApplyPrefabModifications(UnityEngine.Object,System.Collections.Generic.List`1<System.String>,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___modificationData1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects2, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.UnityExtensions::SafeIsUnityNull(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityExtensions_SafeIsUnityNull_m68DA959E45700D91848FAAC9FA54073C7503A996 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___obj0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.String>::get_Count() inline int32_t List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method); } // System.Boolean Sirenix.Serialization.SerializationData::get_ContainsData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationData_get_ContainsData_mDD2CAD6940379F8EFAE8D36577F956694C28067C (SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * __this, const RuntimeMethod* method); // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetNiceName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF (Type_t * ___type0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationNodeDataReader::.ctor(Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader__ctor_m72E965EB8536039B0FE85DB63BB93ED5869BC725 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.SerializationNodeDataReader::set_Nodes(System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader_set_Nodes_mE1A9CEDB6F289B4B5B8D8301E7FB95BC1BCF2783 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * ___value0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, RuntimeObject* ___reader1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,System.String&,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.DataFormat,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_mC46BB39E5AEC2D1A4480AE8F0E6AA61AEA40BEFE (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, String_t** ___base64Bytes1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___referencedUnityObjects2, int32_t ___format3, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context4, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.DeserializationContext>::Release(Sirenix.Serialization.Utilities.Cache`1<T>) inline void Cache_1_Release_m6D40E6F13BB3ACD17963075A0DC874C767C51073 (Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * ___cache0, const RuntimeMethod* method) { (( void (*) (Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 *, const RuntimeMethod*))Cache_1_Release_mB18DE735DA9503FBA6732AE931B735486D1FF5FA_gshared)(___cache0, method); } // System.Byte[] System.Convert::FromBase64String(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156 (String_t* ___s0, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.ICache Sirenix.Serialization.UnitySerializationUtility::GetCachedUnityReader(Sirenix.Serialization.DataFormat,System.IO.Stream,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951 (int32_t ___format0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context2, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2<System.String,System.Reflection.MemberInfo> Sirenix.Serialization.FormatterUtilities::GetSerializableMembersMap(System.Type,Sirenix.Serialization.ISerializationPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D * FormatterUtilities_GetSerializableMembersMap_m3333775B4FF0EB0BFF050ED171B41C39630D3091 (Type_t * ___type0, RuntimeObject* ___policy1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Reflection.MemberInfo>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_mD0F62412FCE8ABF5DE647AE606ACA58FFA64F3A3 (Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D * __this, String_t* ___key0, MemberInfo_t ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D *, String_t*, MemberInfo_t **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // Sirenix.Serialization.Utilities.WeakValueSetter Sirenix.Serialization.UnitySerializationUtility::GetCachedUnityMemberSetter(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * UnitySerializationUtility_GetCachedUnityMemberSetter_m5160801024194D0C37814AFDDF369AA0B1B6CB36 (MemberInfo_t * ___member0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.WeakValueSetter::Invoke(System.Object&,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakValueSetter_Invoke_mF006E4E022D984B1A7152528E5C92D89D6929A41 (WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * __this, RuntimeObject ** ___instance0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification>::get_Count() inline int32_t List_1_get_Count_mA840B95ACBF14452864364DBAE0F48F465DF42DC_inline (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1<System.String>::.ctor() inline void List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Void System.Comparison`1<Sirenix.Serialization.PrefabModification>::.ctor(System.Object,System.IntPtr) inline void Comparison_1__ctor_m53393A19DD697FC82705BAEECC10761C9F81298B (Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification>::Sort(System.Comparison`1<!0>) inline void List_1_Sort_mE03E1EE3070E1329665B09F85FFD2CEF41F29A9E (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * __this, Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * ___comparison0, const RuntimeMethod* method) { (( void (*) (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 *, Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 *, const RuntimeMethod*))List_1_Sort_mA3939603201EC0E13489EDA5975A07790CEDB483_gshared)(__this, ___comparison0, method); } // !0 System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification>::get_Item(System.Int32) inline PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * List_1_get_Item_mF0361082F401D4F85BB421FAF39E04863C5E3325_inline (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * (*) (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method); } // System.Void Sirenix.Serialization.JsonDataWriter::MarkJustStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDataWriter_MarkJustStarted_m719923E02B4A96177CC82E36C398B71F08F375BD (JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * __this, const RuntimeMethod* method); // System.String Sirenix.Serialization.UnitySerializationUtility::GetStringFromStreamAndReset(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.String>::Add(!0) inline void List_1_Add_mA348FA1140766465189459D25B01EB179001DE83 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, String_t* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, String_t*, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // !0 System.Collections.Generic.List`1<System.String>::get_Item(System.Int32) inline String_t* List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( String_t* (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method); } // Sirenix.Serialization.Serializer`1<T> Sirenix.Serialization.Serializer::Get<System.Object[]>() inline Serializer_1_tAE414B530B3E0769071794FC4AD82DBFCE8DE19F * Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01 (const RuntimeMethod* method) { return (( Serializer_1_tAE414B530B3E0769071794FC4AD82DBFCE8DE19F * (*) (const RuntimeMethod*))Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1_gshared)(method); } // System.Void Sirenix.Serialization.SerializationContext::ResetInternalReferences() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationContext_ResetInternalReferences_m48C41892EEB81DF2328CA120781EB6C116563951 (SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * __this, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification>::.ctor() inline void List_1__ctor_m5C02E82E29E6254584862269A18C923A5C7DD8D4 (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // Sirenix.Serialization.Utilities.Cache`1<Sirenix.Serialization.CachedMemoryStream> Sirenix.Serialization.CachedMemoryStream::Claim(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * CachedMemoryStream_Claim_m4FB7B2DECCC5805BE31860AACFA1B85A5E8D17EF (int32_t ___minCapacity0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.PrefabModification::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefabModification__ctor_m11BEBCE1D4CD62043401DEE1EB7C8A5CB108FE61 (PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * __this, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification>::Add(!0) inline void List_1_Add_m63E0AE7BB9C07909BC9F257FD42A37FCB45F3E04 (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * __this, PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 *, PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Object Sirenix.Serialization.UnitySerializationUtility::CreateDefaultUnityInitializedObject(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * UnitySerializationUtility_CreateDefaultUnityInitializedObject_m536934F898F16BDD510FF69C740B70DA2B02DD99 (Type_t * ___type0, int32_t ___depth1, const RuntimeMethod* method); // System.Array System.Enum::GetValues(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C (Type_t * ___enumType0, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F (Type_t * ___enumType0, int32_t ___value1, const RuntimeMethod* method); // System.Object System.Array::GetValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method); // System.Array System.Array::CreateInstance(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F (Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method); // System.String System.Reflection.AssemblyName::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA (Type_t * __this, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.FormatterServices::GetUninitializedObject(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * FormatterServices_GetUninitializedObject_m291E01A0673976C75AA58AE3BFAFC19C42886A9D (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldInfo_SetValue_m9E7A4FBA27F835B6C26CC09CF609333967150E41 (FieldInfo_t * __this, RuntimeObject * ___obj0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification> Sirenix.Serialization.UnitySerializationUtility::DeserializePrefabModifications(System.Collections.Generic.List`1<System.String>,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * UnitySerializationUtility_DeserializePrefabModifications_m50B6E0B734E722F47ED23008D5A606CB05F399F7 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___modifications0, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.PrefabModification::Apply(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefabModification_Apply_mA4D53B386BF79BA831C2FD1BF851F128F775F1C7 (PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * __this, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, const RuntimeMethod* method); // System.Void UnityEngine.Debug::Log(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_m4B7C70BAFD477C6BDB59C88A0934F0B018D03708 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.UnitySerializationUtility/<>c__DisplayClass35_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0__ctor_mE06F4BB65BF7C6C96061D6A0E4077B87251A9748 (U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m62BFB3C4A7C53656A6785FE2A58590A4D95F6DA8 (Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * __this, MemberInfo_t * ___key0, WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 *, MemberInfo_t *, WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // Sirenix.Serialization.Utilities.WeakValueGetter Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstanceFieldGetter(System.Type,System.Reflection.FieldInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2 (Type_t * ___instanceType0, FieldInfo_t * ___fieldInfo1, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.WeakValueGetter Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstancePropertyGetter(System.Type,System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55 (Type_t * ___instanceType0, PropertyInfo_t * ___propertyInfo1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.WeakValueGetter::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakValueGetter__ctor_m5BAA20DB26F9A0E4E161C6C62FD99472FF6473FA (WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter>::Add(!0,!1) inline void Dictionary_2_Add_m3C1DA0F9D32CBB2127382DFE205FDBF7033190A2 (Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * __this, MemberInfo_t * ___key0, WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 *, MemberInfo_t *, WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Void Sirenix.Serialization.UnitySerializationUtility/<>c__DisplayClass36_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass36_0__ctor_mA09D72B70625EBD856AA41D40388141CB98A06AA (U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_mEDE516FE02CCA6EC3F7444B5B5E578AACA825D72 (Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * __this, MemberInfo_t * ___key0, WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF *, MemberInfo_t *, WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // Sirenix.Serialization.Utilities.WeakValueSetter Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstanceFieldSetter(System.Type,System.Reflection.FieldInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8 (Type_t * ___instanceType0, FieldInfo_t * ___fieldInfo1, const RuntimeMethod* method); // Sirenix.Serialization.Utilities.WeakValueSetter Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstancePropertySetter(System.Type,System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185 (Type_t * ___instanceType0, PropertyInfo_t * ___propertyInfo1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.WeakValueSetter::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakValueSetter__ctor_m7D502C99DDC1CD6C34C5C7262174E75322C49149 (WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter>::Add(!0,!1) inline void Dictionary_2_Add_mB2933567D2EB66EB398A5E90DD040A1CF811619C (Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * __this, MemberInfo_t * ___key0, WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF *, MemberInfo_t *, WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueGetter>::.ctor() inline void Dictionary_2__ctor_m3024055D140B14F001C4EA8F5B5B94D1A35E0B0B (Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.Utilities.WeakValueSetter>::.ctor() inline void Dictionary_2__ctor_mB6AFE754A7F1656C62987D53EA47001351F9D338 (Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,System.Boolean>::.ctor() inline void Dictionary_2__ctor_m4CB96E5F6DC15DFF4F62D9993F887C3992666E7A (Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 *, const RuntimeMethod*))Dictionary_2__ctor_mC9CB173526C44311D7B2B3B7C03782A9D4A66ED0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Boolean>::.ctor() inline void Dictionary_2__ctor_m38A63BECCB4DC6D730705C1A382315575304AD9F (Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 *, const RuntimeMethod*))Dictionary_2__ctor_mC9CB173526C44311D7B2B3B7C03782A9D4A66ED0_gshared)(__this, method); } // System.Void System.Collections.Generic.HashSet`1<System.Type>::.ctor() inline void HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0 (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * __this, const RuntimeMethod* method) { (( void (*) (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *, const RuntimeMethod*))HashSet_1__ctor_m8A209D312FD08A21AFB5551881E7A6946A07C0D5_gshared)(__this, method); } // System.Boolean System.Collections.Generic.HashSet`1<System.Type>::Add(!0) inline bool HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * __this, Type_t * ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *, Type_t *, const RuntimeMethod*))HashSet_1_Add_m91C02F120E47946E978515CDAF67DA4867A244C4_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.Dictionary`2<Sirenix.Serialization.ISerializationPolicy,System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult>>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) inline void Dictionary_2__ctor_m8D53D43FD4DD0DE79FCAA8F8005461D9287B8D8F (Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared)(__this, ___comparer0, method); } // System.Void Sirenix.Serialization.UnitySerializationUtility/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m36F731555F3C3361679F833445CAACED5B91EFE1 (U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 * __this, const RuntimeMethod* method); // System.Int32 System.String::CompareTo(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareTo_m9FAB33E920810E148EDAA4F64E37F231412312AB (String_t* __this, String_t* ___strB0, const RuntimeMethod* method); // System.Object Sirenix.Serialization.FormatterUtilities::GetMemberValue(System.Reflection.MemberInfo,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * FormatterUtilities_GetMemberValue_mCE2D8B9A65F25AC784553A01BAC9C6EB9318CBCF (MemberInfo_t * ___member0, RuntimeObject * ___obj1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.FormatterUtilities::SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatterUtilities_SetMemberValue_mA9530EB298AC0FF029AF6628E0A4ECFE8FAF5439 (MemberInfo_t * ___member0, RuntimeObject * ___obj1, RuntimeObject * ___value2, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass3_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass3_0__ctor_m58D5D778EAC28AA9324A362C04A950432D1450D8 (U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.FieldInfoExtensions::DeAliasField(System.Reflection.FieldInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfo_t * FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80 (FieldInfo_t * ___fieldInfo0, bool ___throwOnNotAliased1, const RuntimeMethod* method); // System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_gshared)(__this, ___object0, ___method1, method); } // System.Void Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass5_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass5_0__ctor_m80F1EA645E266BB31F5A102B47558E4599FF3721 (U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * __this, const RuntimeMethod* method); // System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510 (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared)(__this, ___object0, ___method1, method); } // System.Void Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass8_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass8_0__ctor_mF7A79B39E16B796C6E1C473C6EE229EE4EF4AB72 (U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass11_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_m4AEF7CBBBC15E8883BEC14A620C1D8AFAB57AE44 (U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass12_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_mC229CCB6875624B7F70315A9E24DFA355811001D (U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * __this, const RuntimeMethod* method); // System.Reflection.PropertyInfo Sirenix.Serialization.Utilities.PropertyInfoExtensions::DeAliasProperty(System.Reflection.PropertyInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * PropertyInfoExtensions_DeAliasProperty_m636A975B0A3C1695FC88CFABE03267605B28FCB0 (PropertyInfo_t * ___propertyInfo0, bool ___throwOnNotAliased1, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::get_IsStatic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5 (MethodBase_t * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass13_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass13_0__ctor_mBE2FA7DD65ABDF198351111872E71CF2F954C835 (U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * __this, const RuntimeMethod* method); // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.MethodInfoExtensions::DeAliasMethod(System.Reflection.MethodInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MethodInfoExtensions_DeAliasMethod_mAB8B413F3E4A66BD87EBDFBE84FD30F2B6AC2E1A (MethodInfo_t * ___methodInfo0, bool ___throwOnNotAliased1, const RuntimeMethod* method); // System.Delegate System.Delegate::CreateDelegate(System.Type,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_CreateDelegate_mD7C5EDDB32C63A9BD9DE43AC879AFF4EBC6641D1 (Type_t * ___type0, MethodInfo_t * ___method1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.EmitUtilities/<>c__DisplayClass21_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass21_0__ctor_mBC7EAC2152DDE7802151E23FFD4AE572FECA8267 (U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * __this, const RuntimeMethod* method); // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.FastTypeComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FastTypeComparer__ctor_mB98472FFCF0FADE10D4211BB6CBC7D5871ADBEA2 (FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * __this, const RuntimeMethod* method); // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_AliasedField() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR FieldInfo_t * MemberAliasFieldInfo_get_AliasedField_m21F4B3801BDA72BE06F247466CF800AA1CB9A083_inline (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method); // System.String Sirenix.Serialization.Utilities.MemberInfoExtensions::GetNiceName(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberInfoExtensions_GetNiceName_m804078AF053FDAAA249AEA0F420E63F1C1750881 (MemberInfo_t * ___member0, const RuntimeMethod* method); // System.Collections.IEnumerator Sirenix.Serialization.Utilities.ImmutableList::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ImmutableList_GetEnumerator_m43A58AA004DA4F30FF45A047C607BFA6016E4BFA (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.ImmutableList/<System-Collections-Generic-IEnumerable<System-Object>-GetEnumerator>d__25::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25__ctor_m0AC673CEB093DD3DC76E44139E0F8F7EAB58EFE8 (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.ImmutableList/<System-Collections-Generic-IEnumerable<System-Object>-GetEnumerator>d__25::<>m__Finally1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_U3CU3Em__Finally1_mAA73EF50A51A242560AC49613E4A609038B65FB0 (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.ImmutableList/<System-Collections-Generic-IEnumerable<System-Object>-GetEnumerator>d__25::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_IDisposable_Dispose_mFC0E0991EDB9F2F921618023C05C1D246C1DA125 (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method); // System.Void System.Reflection.FieldInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldInfo__ctor_mA7155594B8A101D076F12CC45AE64020834924DB (FieldInfo_t * __this, const RuntimeMethod* method); // System.Void System.Reflection.MethodInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodInfo__ctor_m31D0E4C8AC4F83DA1056313CB7143CC5D57AB965 (MethodInfo_t * __this, const RuntimeMethod* method); // System.Void System.Reflection.PropertyInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyInfo__ctor_mDC863EE09FBBA50C54674597B8BDCEF4BF43E5EC (PropertyInfo_t * __this, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<T> Sirenix.Serialization.Utilities.MemberInfoExtensions::GetAttributes<System.Attribute>(System.Reflection.ICustomAttributeProvider) inline RuntimeObject* MemberInfoExtensions_GetAttributes_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_m0C68194EA2F1290920EB416435D1F1DF7376DE9F (RuntimeObject* ___member0, const RuntimeMethod* method) { return (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))MemberInfoExtensions_GetAttributes_TisRuntimeObject_mFF7248FA6006F9C0EC86B88E9471A166413FB9F2_gshared)(___member0, method); } // !!0[] System.Linq.Enumerable::ToArray<System.Attribute>(System.Collections.Generic.IEnumerable`1<!!0>) inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Enumerable_ToArray_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mA493F45171E19BC621F3EABE9C319CD825F22C57 (RuntimeObject* ___source0, const RuntimeMethod* method) { return (( AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_m90391AD23AB688BA42D238D4512C858F912D7A67_gshared)(___source0, method); } // System.Collections.Generic.IEnumerable`1<T> Sirenix.Serialization.Utilities.MemberInfoExtensions::GetAttributes<System.Attribute>(System.Reflection.ICustomAttributeProvider,System.Boolean) inline RuntimeObject* MemberInfoExtensions_GetAttributes_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mE27B8842BFC910F821171688202749D4088AB9F0 (RuntimeObject* ___member0, bool ___inherit1, const RuntimeMethod* method) { return (( RuntimeObject* (*) (RuntimeObject*, bool, const RuntimeMethod*))MemberInfoExtensions_GetAttributes_TisRuntimeObject_m921A75207CA2CB8F4FE1A29231D64EEE0FABB8C1_gshared)(___member0, ___inherit1, method); } // System.String Sirenix.Serialization.Utilities.MethodInfoExtensions::GetFullName(System.Reflection.MethodBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodInfoExtensions_GetFullName_mBDF15702D4884A03C7F052B88E8353688B76541C (MethodBase_t * ___method0, const RuntimeMethod* method); // System.String Sirenix.Serialization.Utilities.StringExtensions::ToTitleCase(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringExtensions_ToTitleCase_m9E13DB001165FA20961B2B6CC9CDD7A31E3EEBDE (String_t* ___input0, const RuntimeMethod* method); // System.Boolean System.Type::get_IsSealed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsSealed_mC42D173AFAF7802291DEA2C3D691340F2375FD9A (Type_t * __this, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method); // System.Reflection.PropertyInfo Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_AliasedProperty() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR PropertyInfo_t * MemberAliasPropertyInfo_get_AliasedProperty_mF48B87F081230C7239CE228570EA7750BE6C969C_inline (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method); // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_AliasedMethod() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MethodInfo_t * MemberAliasMethodInfo_get_AliasedMethod_m84550753FCF647D3037205113DB54F425C6B40C2_inline (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.MethodInfoExtensions::IsExtensionMethod(System.Reflection.MethodBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfoExtensions_IsExtensionMethod_m8D9C0DF75101EE0412FFC8F43DBABF4016246F3D (MethodBase_t * ___method0, const RuntimeMethod* method); // System.String Sirenix.Serialization.Utilities.MethodInfoExtensions::GetParamsNames(System.Reflection.MethodBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodInfoExtensions_GetParamsNames_m623D068CB5070EF00147039EA44FB51492FD1936 (MethodBase_t * ___method0, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Skip<System.Reflection.ParameterInfo>(System.Collections.Generic.IEnumerable`1<!!0>,System.Int32) inline RuntimeObject* Enumerable_Skip_TisParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_m37F2F55CF8BF64B161BED63A1EDB46CCF7D23E29 (RuntimeObject* ___source0, int32_t ___count1, const RuntimeMethod* method) { return (( RuntimeObject* (*) (RuntimeObject*, int32_t, const RuntimeMethod*))Enumerable_Skip_TisRuntimeObject_m0368B9A611A0BDF090B403C25DFD95C4D94948D6_gshared)(___source0, ___count1, method); } // !!0[] System.Linq.Enumerable::ToArray<System.Reflection.ParameterInfo>(System.Collections.Generic.IEnumerable`1<!!0>) inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* Enumerable_ToArray_TisParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_m6ADA4AA49CAFA0DACCB66DC6F4B0E50DBA181E04 (RuntimeObject* ___source0, const RuntimeMethod* method) { return (( ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_m90391AD23AB688BA42D238D4512C858F912D7A67_gshared)(___source0, method); } // System.String Sirenix.Serialization.Utilities.MethodInfoExtensions::GetFullName(System.Reflection.MethodBase,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodInfoExtensions_GetFullName_mADD4F42C07FBA37C708976367FE70A9ABEC184AB (MethodBase_t * ___method0, String_t* ___extensionMethodPrefix1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsNested() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsNested_m0191026EDE15331C2DD97FC106E1C86825722F37 (Type_t * __this, const RuntimeMethod* method); // System.String System.String::TrimEnd(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimEnd_m8D4905B71A4AEBF9D0BC36C6003FC9A5AD630403 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimChars0, const RuntimeMethod* method); // System.IO.DirectoryInfo System.IO.DirectoryInfo::get_Parent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * DirectoryInfo_get_Parent_m3D5334F86808B91BC66CEB88A72AF3A2A849116B (DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * __this, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::get_IsAbstract() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsAbstract_mFE6CAF80BCF511BE090A541FD179CF5C418176A0 (MethodBase_t * __this, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::get_IsVirtual() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4 (MethodBase_t * __this, const RuntimeMethod* method); // System.Boolean System.String::Contains(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean System.Char::IsLower(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLower_mE89996F09044C07A991164C7E6A4A9C02867CC90 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Boolean System.Char::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.String>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m06979EEE8C572D71377242FAB11C8360789C7989 (Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * __this, Type_t * ___key0, String_t** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 *, Type_t *, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.String Sirenix.Serialization.Utilities.TypeExtensions::CreateNiceName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_CreateNiceName_m356329964E6B10E04DA264E4D1BE166837FFD349 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.String>::Add(!0,!1) inline void Dictionary_2_Add_m19CAF33F97051C271ACC0C28B0E5027503A679DE (Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * __this, Type_t * ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 *, Type_t *, String_t*, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Type::get_IsByRef() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8 (Type_t * __this, const RuntimeMethod* method); // System.String Sirenix.Serialization.Utilities.TypeExtensions::TypeNameGauntlet(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_TypeNameGauntlet_mF8BC41CCA4DC4132BFC88689AEFFF6B659089A56 (Type_t * ___type0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsCastableTo(System.Type,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84 (Type_t * ___from0, Type_t * ___to1, bool ___requireImplicitCast2, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.HashSet`1<System.Type>>::get_Item(!0) inline HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * Dictionary_2_get_Item_mD99BF3FEC9CDF301ED7A378286C3625B00AB733A (Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * __this, Type_t * ___key0, const RuntimeMethod* method) { return (( HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * (*) (Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_gshared)(__this, ___key0, method); } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.TypeExtensions::GetCastMethod(System.Type,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * TypeExtensions_GetCastMethod_m25E3FF694690FF9640FC32CD78913E3B95963919 (Type_t * ___from0, Type_t * ___to1, bool ___requireImplicitCast2, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.String[] System.String::Split(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* String_Split_m13262358217AD2C119FD1B9733C3C0289D608512 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___separator0, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsValidIdentifier(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValidIdentifier_mB499AD0C8A6CD81276D0594802E6613816CF9D04 (String_t* ___identifier0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1<System.String>::Contains(!0) inline bool HashSet_1_Contains_mC24456F12A19B3D01055678278492722A6988F98 (HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * __this, String_t* ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E *, String_t*, const RuntimeMethod*))HashSet_1_Contains_m76525371D7FFA91A1B054B1C65C86969133C2CD4_gshared)(__this, ___item0, method); } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsValidIdentifierStartCharacter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValidIdentifierStartCharacter_m6FD72B83F11534BF2368924869DEAD07CA897BCA (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsValidIdentifierPartCharacter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValidIdentifierPartCharacter_m31E0CF6588042F127F9BE6DABF33E2118DAC4DEE (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.Char::IsLetter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::HasCastDefined(System.Type,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_HasCastDefined_m013BDC7A056F085E63569EC70BC178D6750FD47A (Type_t * ___from0, Type_t * ___to1, bool ___requireImplicitCast2, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Func`2<System.Object,System.Object>>::TryGetInnerValue(TFirstKey,TSecondKey,TValue&) inline bool DoubleLookupDictionary_3_TryGetInnerValue_m08711D3EC3B7A1DCB2489801CAF2DBEB4EF233AA (DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * __this, Type_t * ___firstKey0, Type_t * ___secondKey1, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 ** ___value2, const RuntimeMethod* method) { return (( bool (*) (DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 *, Type_t *, Type_t *, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 **, const RuntimeMethod*))DoubleLookupDictionary_3_TryGetInnerValue_mDAFF70E4AEDB863609543EEF3E111B30B5181F98_gshared)(__this, ___firstKey0, ___secondKey1, ___value2, method); } // System.Void Sirenix.Serialization.Utilities.TypeExtensions/<>c__DisplayClass29_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass29_0__ctor_mB2D6D0C35B4E9F3BA89397144F8AC857139575DD (U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5 * __this, const RuntimeMethod* method); // System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8 (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared)(__this, ___object0, ___method1, method); } // TValue Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Func`2<System.Object,System.Object>>::AddInner(TFirstKey,TSecondKey,TValue) inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * DoubleLookupDictionary_3_AddInner_m2DC55A5DB103DC35ECC4F9226E229082C886BE62 (DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * __this, Type_t * ___firstKey0, Type_t * ___secondKey1, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___value2, const RuntimeMethod* method) { return (( Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * (*) (DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 *, Type_t *, Type_t *, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *, const RuntimeMethod*))DoubleLookupDictionary_3_AddInner_mE973ABE1AC7939FA8B1D602556F218AD5E79DDBD_gshared)(__this, ___firstKey0, ___secondKey1, ___value2, method); } // System.Collections.Generic.IEnumerable`1<T> Sirenix.Serialization.Utilities.TypeExtensions::GetAllMembers<System.Reflection.MethodInfo>(System.Type,System.Reflection.BindingFlags) inline RuntimeObject* TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3 (Type_t * ___type0, int32_t ___flags1, const RuntimeMethod* method) { return (( RuntimeObject* (*) (Type_t *, int32_t, const RuntimeMethod*))TypeExtensions_GetAllMembers_TisRuntimeObject_m04040FDBBA072A0B09DA1966679267FFD9553B1C_gshared)(___type0, ___flags1, method); } // System.Boolean System.Single::IsNaN(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB (float ___f0, const RuntimeMethod* method); // System.Boolean System.Double::IsNaN(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3 (double ___d0, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::ImplementsOpenGenericInterface(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_ImplementsOpenGenericInterface_mC328F85F1D7E0EA9DBB75953F6BBA5A67DF5C08A (Type_t * ___candidateType0, Type_t * ___openGenericInterfaceType1, const RuntimeMethod* method); // System.Type[] Sirenix.Serialization.Utilities.TypeExtensions::GetArgumentsOfInheritedOpenGenericInterface(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* TypeExtensions_GetArgumentsOfInheritedOpenGenericInterface_m0F0224E6428E8E7103DA2795E3AD67BA8E091725 (Type_t * ___candidateType0, Type_t * ___openGenericInterfaceType1, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types3, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers4, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.TypeExtensions/<>c__DisplayClass45_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass45_0__ctor_m283AE396D8B702BF71664FA79121537DE1D72FE2 (U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * __this, const RuntimeMethod* method); // System.Void System.Func`2<System.Reflection.MethodInfo,System.Boolean>::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_m4E1D198417EA6D3F91577C1A09385A0A6773E53C (Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m52B660F7AF11A491D7A162298208BFA7A5CF26A3_gshared)(__this, ___object0, ___method1, method); } // !!0 System.Linq.Enumerable::FirstOrDefault<System.Reflection.MethodInfo>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) inline MethodInfo_t * Enumerable_FirstOrDefault_TisMethodInfo_t_mE1F896EF6196D68677B86A786757DBD1F6961207 (RuntimeObject* ___source0, Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 * ___predicate1, const RuntimeMethod* method) { return (( MethodInfo_t * (*) (RuntimeObject*, Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 *, const RuntimeMethod*))Enumerable_FirstOrDefault_TisRuntimeObject_m2EB31784A0D942DD62D9789D55F9B188757833C0_gshared)(___source0, ___predicate1, method); } // System.Void Sirenix.Serialization.Utilities.TypeExtensions/<>c__DisplayClass46_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass46_0__ctor_mC6CDD53D4E6927515495C92E2BC202247BC2C982 (U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * __this, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<System.Reflection.MethodInfo>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) inline RuntimeObject* Enumerable_Where_TisMethodInfo_t_m9426DCAA38C5126A2543B240CB0E0D81F8A975C3 (RuntimeObject* ___source0, Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 * ___predicate1, const RuntimeMethod* method) { return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 *, const RuntimeMethod*))Enumerable_Where_TisRuntimeObject_m77C4748BC22520E365AB1F6A46B2C8A8BF525492_gshared)(___source0, ___predicate1, method); } // !!0[] System.Linq.Enumerable::ToArray<System.Reflection.MethodInfo>(System.Collections.Generic.IEnumerable`1<!!0>) inline MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* Enumerable_ToArray_TisMethodInfo_t_mB467F5AA11251FFDBF7F99F1FAE889DBA72716C6 (RuntimeObject* ___source0, const RuntimeMethod* method) { return (( MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_m90391AD23AB688BA42D238D4512C858F912D7A67_gshared)(___source0, method); } // System.Void Sirenix.Serialization.Utilities.TypeExtensions/<GetAllMembers>d__47::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetAllMembersU3Ed__47__ctor_m67E19A9D89EB437772AE5C7768994619A05918E0 (U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Void Sirenix.Serialization.Utilities.TypeExtensions/<GetAllMembers>d__48::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetAllMembersU3Ed__48__ctor_m4EFE43CF8938BDE27BE53A916B206AF577954964 (U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Type Sirenix.Serialization.Utilities.TypeExtensions::GetGenericBaseType(System.Type,System.Type,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083 (Type_t * ___type0, Type_t * ___baseType1, int32_t* ___depthCount2, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<System.Type> Sirenix.Serialization.Utilities.TypeExtensions::GetBaseClasses(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeExtensions_GetBaseClasses_mE82A31E50C001144D29935EF416FF8C2EC6C767E (Type_t * ___type0, bool ___includeSelf1, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Concat<System.Type>(System.Collections.Generic.IEnumerable`1<!!0>,System.Collections.Generic.IEnumerable`1<!!0>) inline RuntimeObject* Enumerable_Concat_TisType_t_m17D4A9549608C664264D46663759AFA2800ECC0F (RuntimeObject* ___first0, RuntimeObject* ___second1, const RuntimeMethod* method) { return (( RuntimeObject* (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Enumerable_Concat_TisRuntimeObject_m3AA74ABA7EF399A306E36C2171474C81486A4F71_gshared)(___first0, ___second1, method); } // System.Void Sirenix.Serialization.Utilities.TypeExtensions/<GetBaseClasses>d__53::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetBaseClassesU3Ed__53__ctor_mF2A2A480E025B7498E880867D8F52FCEE6CF9E5F (U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.String>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, String_t* ___key0, String_t** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, String_t*, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetCachedNiceName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetCachedNiceName_mFA299962CF542EC652E8ED4921C81D5F45255A3A (Type_t * ___type0, const RuntimeMethod* method); // System.String System.String::Replace(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9 (String_t* __this, Il2CppChar ___oldChar0, Il2CppChar ___newChar1, const RuntimeMethod* method); // System.Boolean System.Linq.Enumerable::Contains<System.Type>(System.Collections.Generic.IEnumerable`1<!!0>,!!0) inline bool Enumerable_Contains_TisType_t_mBDE1B1B6B7A069EDEA6F52FBFD461C6EA65D8E7B (RuntimeObject* ___source0, Type_t * ___value1, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, Type_t *, const RuntimeMethod*))Enumerable_Contains_TisRuntimeObject_m94A2986332967C3E28F8779BF4BBB6E85B5F4A0A_gshared)(___source0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Type>::Clear() inline void Dictionary_2_Clear_mC5E75CA7B533540550384F1C9301ED4AAA5118AC (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *, const RuntimeMethod*))Dictionary_2_Clear_m0EC0FF0E4C6FE91D15CEE92696B25109A202B942_gshared)(__this, method); } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsFullyConstructedGenericType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Type>::set_Item(!0,!1) inline void Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846 (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * __this, Type_t * ___key0, Type_t * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *, Type_t *, Type_t *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method); } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::AreGenericConstraintsSatisfiedBy(System.Type,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44 (Type_t * ___genericType0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___parameters1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Type>::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7 (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * __this, Type_t * ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *, Type_t *, const RuntimeMethod*))Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared)(__this, ___key0, method); } // System.Int32 System.Collections.Generic.Dictionary`2<System.Type,System.Type>::get_Count() inline int32_t Dictionary_2_get_Count_mCDBF8C6612DD8269CA45EFC0D29A21FF99D2C2B8 (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *, const RuntimeMethod*))Dictionary_2_get_Count_m1B06EB9D28DDA7E38DDC20D88532DFF246F03DF6_gshared)(__this, method); } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::AreGenericConstraintsSatisfiedBy(System.Type[],System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_AreGenericConstraintsSatisfiedBy_m8B58F22F37363C01AB0A430DCEF06884F35149B8 (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___definitions0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___parameters1, const RuntimeMethod* method); // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::GenericParameterIsFulfilledBy(System.Type,System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Type>,System.Collections.Generic.HashSet`1<System.Type>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871 (Type_t * ___genericParameterDefinition0, Type_t * ___parameterType1, Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * ___resolvedMap2, HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * ___processedParams3, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1<System.Type>::Clear() inline void HashSet_1_Clear_mF99B6395A097563394084CD017E28873027EC35F (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * __this, const RuntimeMethod* method) { (( void (*) (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *, const RuntimeMethod*))HashSet_1_Clear_m388A2F05FCB0FA0E03CFC7FB5F3A8DF69B2D4D5A_gshared)(__this, method); } // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method); // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetGenericParameterConstraintsString(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetGenericParameterConstraintsString_m65F62F38431EEFD27A98CCD57474F1077939AA68 (Type_t * ___type0, bool ___useFullTypeNames1, const RuntimeMethod* method); // System.String System.String::Join(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m49371BED70248F0FCE970CB4F2E39E9A688AAFA4 (String_t* ___separator0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1<System.Type>::Clear() inline void Stack_1_Clear_mE25383E984C17F1508540A8E2E821A3B216413B6 (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * __this, const RuntimeMethod* method) { (( void (*) (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 *, const RuntimeMethod*))Stack_1_Clear_m4115814BCF6246BD6492360CDB54F118541E786B_gshared)(__this, method); } // System.Void System.Collections.Generic.Stack`1<System.Type>::Push(!0) inline void Stack_1_Push_m65699E5B35D8426F8DDEEDD0CA5BA92B5305B03F (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * __this, Type_t * ___item0, const RuntimeMethod* method) { (( void (*) (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 *, Type_t *, const RuntimeMethod*))Stack_1_Push_mEAE34C8EACBF792D1CCC0B69009BD7C521F27865_gshared)(__this, ___item0, method); } // !0 System.Collections.Generic.Stack`1<System.Type>::Pop() inline Type_t * Stack_1_Pop_m76BFD44CDDBA6873B3FBD23CFE70B93BC01BE4E3 (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * __this, const RuntimeMethod* method) { return (( Type_t * (*) (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 *, const RuntimeMethod*))Stack_1_Pop_m9886C5EBA07CB356DE616B11958360B7FC67F6DC_gshared)(__this, method); } // System.Int32 System.Collections.Generic.Stack`1<System.Type>::get_Count() inline int32_t Stack_1_get_Count_mC12CE3CC0B800FD88AE5B76670655C6FF38C8BF4_inline (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 *, const RuntimeMethod*))Stack_1_get_Count_mADA59B620C88DF47CBB953A8941CFE545BDF556D_gshared_inline)(__this, method); } // System.Boolean System.Type::get_HasElementType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_HasElementType_m598BEFE66F168CE1D1132C87D394B2EF41F449BF (Type_t * __this, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Void System.Func`3<System.Single,System.Single,System.Boolean>::.ctor(System.Object,System.IntPtr) inline void Func_3__ctor_m7C8D11A8C323E3447117CD8858686399E3F71DAD (Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_3__ctor_m7C8D11A8C323E3447117CD8858686399E3F71DAD_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`3<System.Double,System.Double,System.Boolean>::.ctor(System.Object,System.IntPtr) inline void Func_3__ctor_m44C13A80CB499D78387085A1448F2174E010365A (Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_3__ctor_m44C13A80CB499D78387085A1448F2174E010365A_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`3<UnityEngine.Quaternion,UnityEngine.Quaternion,System.Boolean>::.ctor(System.Object,System.IntPtr) inline void Func_3__ctor_m03BDCECA8C6CFB050E93144E74956034D6D48099 (Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_3__ctor_m03BDCECA8C6CFB050E93144E74956034D6D48099_gshared)(__this, ___object0, ___method1, method); } // System.Void Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Func`2<System.Object,System.Object>>::.ctor() inline void DoubleLookupDictionary_3__ctor_m0625F57E72586494BFEF9E97FEA61EB5B87F9565 (DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * __this, const RuntimeMethod* method) { (( void (*) (DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 *, const RuntimeMethod*))DoubleLookupDictionary_3__ctor_m75EA1A6062E5D7BD162AE7E9F106AC74683CB2D0_gshared)(__this, method); } // System.Void Sirenix.Serialization.Utilities.DoubleLookupDictionary`3<System.Type,System.Type,System.Delegate>::.ctor() inline void DoubleLookupDictionary_3__ctor_m079D886666C1D02F05C5FBC2DABD6FEFC45F9435 (DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 * __this, const RuntimeMethod* method) { (( void (*) (DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 *, const RuntimeMethod*))DoubleLookupDictionary_3__ctor_m75EA1A6062E5D7BD162AE7E9F106AC74683CB2D0_gshared)(__this, method); } // System.Void System.Collections.Generic.Stack`1<System.Type>::.ctor() inline void Stack_1__ctor_mDC0123BC0420180C37297772F722C0CB0FBD6BAD (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * __this, const RuntimeMethod* method) { (( void (*) (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 *, const RuntimeMethod*))Stack_1__ctor_m9EA0E43EFB22CCD482720CE21296BDF1B86F44D8_gshared)(__this, method); } // System.Void System.Collections.Generic.HashSet`1<System.String>::.ctor() inline void HashSet_1__ctor_m99068A46E42F05504E434B1D6763629F4D94B87E (HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * __this, const RuntimeMethod* method) { (( void (*) (HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E *, const RuntimeMethod*))HashSet_1__ctor_m8A209D312FD08A21AFB5551881E7A6946A07C0D5_gshared)(__this, method); } // System.Boolean System.Collections.Generic.HashSet`1<System.String>::Add(!0) inline bool HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9 (HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * __this, String_t* ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E *, String_t*, const RuntimeMethod*))HashSet_1_Add_m91C02F120E47946E978515CDAF67DA4867A244C4_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor() inline void Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::Add(!0,!1) inline void Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.String>::.ctor() inline void Dictionary_2__ctor_m8451467B9EF17884648FE0F6DCD6C80CF453D96C (Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.HashSet`1<System.Type>>::.ctor() inline void Dictionary_2__ctor_m69B50D57FB083DE555DB604D6E24A36B4299E1B3 (Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.HashSet`1<System.Type>>::Add(!0,!1) inline void Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0 (Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * __this, Type_t * ___key0, HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B *, Type_t *, HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.SerializationNodeDataReader::.ctor(Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader__ctor_m72E965EB8536039B0FE85DB63BB93ED5869BC725 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader__ctor_m72E965EB8536039B0FE85DB63BB93ED5869BC725_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * V_0 = NULL; { __this->set_currentIndex_7((-1)); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_0 = ___context0; BaseDataReader__ctor_m8A41287BC43C5E81BEC692F37C6A23E00B6B835B(__this, (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *)NULL, L_0, /*hidden argument*/NULL); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_1 = (Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 *)il2cpp_codegen_object_new(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028_il2cpp_TypeInfo_var); Dictionary_2__ctor_mEC7798EDEB6B0C29A4C35F33E1BD17AE3643ED17(L_1, /*hidden argument*/Dictionary_2__ctor_mEC7798EDEB6B0C29A4C35F33E1BD17AE3643ED17_RuntimeMethod_var); V_0 = L_1; Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351 * L_5 = (Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351 *)il2cpp_codegen_object_new(Func_1_tB2CFBC6F5FDC873AC8A531EE23A59F54DBDD8351_il2cpp_TypeInfo_var); Func_1__ctor_m8D661C0A7CCB815F851FD421663A9FDB0966EE67(L_5, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_0_m5574D333371500C410C58B20DB7E49384660E648_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m8D661C0A7CCB815F851FD421663A9FDB0966EE67_RuntimeMethod_var); NullCheck(L_2); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_2, L_4, L_5, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA * L_9 = (Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA *)il2cpp_codegen_object_new(Func_1_tBB1B732887C87ACD9A1E8217B97EB10BC99C4ABA_il2cpp_TypeInfo_var); Func_1__ctor_mD07D20787F169ADC3615B0C9E4B03184AAF469B8(L_9, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_1_m41F11F69156A0F3BCE417349BC7BDECEFBAD2BDE_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_mD07D20787F169ADC3615B0C9E4B03184AAF469B8_RuntimeMethod_var); NullCheck(L_6); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_6, L_8, L_9, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_10 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2 * L_13 = (Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2 *)il2cpp_codegen_object_new(Func_1_tF9C8CC1300B777F574B9795B7138EF38FE629CC2_il2cpp_TypeInfo_var); Func_1__ctor_mA200BE8D0404113F78BF1F5DE23826D4FF3930D7(L_13, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_2_mCD9F3CCBC01587079BE458C7291465E3CAD516A2_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_mA200BE8D0404113F78BF1F5DE23826D4FF3930D7_RuntimeMethod_var); NullCheck(L_10); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_10, L_12, L_13, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_14 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); Func_1_t30631A63BE46FE93700939B764202D360449FE30 * L_17 = (Func_1_t30631A63BE46FE93700939B764202D360449FE30 *)il2cpp_codegen_object_new(Func_1_t30631A63BE46FE93700939B764202D360449FE30_il2cpp_TypeInfo_var); Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527(L_17, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_3_m625169DEA5703601132DB71571CD62B9BF8A388C_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527_RuntimeMethod_var); NullCheck(L_14); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_14, L_16, L_17, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_18 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL); Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9 * L_21 = (Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9 *)il2cpp_codegen_object_new(Func_1_tE4D6FF597C38ACEA4D791005BF1F0B8857340EA9_il2cpp_TypeInfo_var); Func_1__ctor_m1448E78B4FDEB165B9D5A8A335A7648D75083F32(L_21, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_4_m386B21D2244FACA981F46AE506A0CBB8D154B89D_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m1448E78B4FDEB165B9D5A8A335A7648D75083F32_RuntimeMethod_var); NullCheck(L_18); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_18, L_20, L_21, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_22 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL); Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED * L_25 = (Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED *)il2cpp_codegen_object_new(Func_1_t7AA74A291CD449CA91D4AAFC2916C2E18B3985ED_il2cpp_TypeInfo_var); Func_1__ctor_mE16288D184D818DF2CFDD919E217023726FEC909(L_25, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_5_mB030DE1A0D55626ABEF4FEE3B144BDB9CAE033E8_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_mE16288D184D818DF2CFDD919E217023726FEC909_RuntimeMethod_var); NullCheck(L_22); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_22, L_24, L_25, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_26 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038 * L_29 = (Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038 *)il2cpp_codegen_object_new(Func_1_tA67A43E61C99AD12F24042AEF8801C6C8354D038_il2cpp_TypeInfo_var); Func_1__ctor_m22906677CD9217D143B033D7F03C6D70EFF02D47(L_29, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_6_m132D7A3D5A59E3D87C2365D86BE295F4784E9F43_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m22906677CD9217D143B033D7F03C6D70EFF02D47_RuntimeMethod_var); NullCheck(L_26); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_26, L_28, L_29, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_30 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL); Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4 * L_33 = (Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4 *)il2cpp_codegen_object_new(Func_1_t564E2B6B7EF909CC95EEBA5257F96A5A6C6049E4_il2cpp_TypeInfo_var); Func_1__ctor_mBFAD3A42C5C2CA317218A9FDE7147363667E7EB2(L_33, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_7_mCD14A35C2AE274F6AFA289A0FC1228FD9495C591_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_mBFAD3A42C5C2CA317218A9FDE7147363667E7EB2_RuntimeMethod_var); NullCheck(L_30); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_30, L_32, L_33, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_34 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL); Func_1_tDA414705876081E1199F312C952348ED3884F17E * L_37 = (Func_1_tDA414705876081E1199F312C952348ED3884F17E *)il2cpp_codegen_object_new(Func_1_tDA414705876081E1199F312C952348ED3884F17E_il2cpp_TypeInfo_var); Func_1__ctor_m7DE4AA7F3E05D2B3BB91CF01177F6EADA4FEF767(L_37, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_8_mED983C9FAC2CAEB8EE0B6F06A25EBA023221B7B3_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m7DE4AA7F3E05D2B3BB91CF01177F6EADA4FEF767_RuntimeMethod_var); NullCheck(L_34); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_34, L_36, L_37, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_38 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_39, /*hidden argument*/NULL); Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB * L_41 = (Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB *)il2cpp_codegen_object_new(Func_1_tB2BC0F8E59E28B9C9EE47DCBAD0B89934DA7F6EB_il2cpp_TypeInfo_var); Func_1__ctor_m3CD473997F1E9AEB22801D3B85AE59CA10E9D46E(L_41, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_9_mDECF657D1D9CAD1B0069F5CE241BBEE6A94396A5_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m3CD473997F1E9AEB22801D3B85AE59CA10E9D46E_RuntimeMethod_var); NullCheck(L_38); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_38, L_40, L_41, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_42 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_43, /*hidden argument*/NULL); Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 * L_45 = (Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 *)il2cpp_codegen_object_new(Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1_il2cpp_TypeInfo_var); Func_1__ctor_m479BA9DCBE3F496111BD05CC90CB1044C5FFD552(L_45, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_10_m746330BE3C87C20F2E9FD1030D3F7F149FA3DFAF_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m479BA9DCBE3F496111BD05CC90CB1044C5FFD552_RuntimeMethod_var); NullCheck(L_42); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_42, L_44, L_45, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_46 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL); Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128 * L_49 = (Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128 *)il2cpp_codegen_object_new(Func_1_tB5FC0E8EF7AC2C9864EC623079563E9611A95128_il2cpp_TypeInfo_var); Func_1__ctor_mEBD709A28A932E8C76D0E30A777C8A2CDAD4B44D(L_49, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_11_mB0F2BC3D2ED1BDBFE295874C9E582AB287B9C7D8_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_mEBD709A28A932E8C76D0E30A777C8A2CDAD4B44D_RuntimeMethod_var); NullCheck(L_46); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_46, L_48, L_49, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_50 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_51 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_52 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_51, /*hidden argument*/NULL); Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50 * L_53 = (Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50 *)il2cpp_codegen_object_new(Func_1_t71116E99297FE9094FDF99AD5C0E352862924B50_il2cpp_TypeInfo_var); Func_1__ctor_m9BF255981B0B3BE38430653EEAB3FD9D2C0FA9C9(L_53, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_12_mC199A968351044692DD9E6804EE82956E1B57B52_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m9BF255981B0B3BE38430653EEAB3FD9D2C0FA9C9_RuntimeMethod_var); NullCheck(L_50); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_50, L_52, L_53, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_54 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_55 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) }; Type_t * L_56 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_55, /*hidden argument*/NULL); Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD * L_57 = (Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD *)il2cpp_codegen_object_new(Func_1_t6FE8730C1AB32C489D7B6B0588A24BEBED168EAD_il2cpp_TypeInfo_var); Func_1__ctor_m2F35DB4B2277558E38C3092BE5C01C2488DA9895(L_57, __this, (intptr_t)((intptr_t)SerializationNodeDataReader_U3C_ctorU3Eb__6_13_mD007F2613E6C977D3472CBE16A13794F03DEF079_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m2F35DB4B2277558E38C3092BE5C01C2488DA9895_RuntimeMethod_var); NullCheck(L_54); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_54, L_56, L_57, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_58 = V_0; __this->set_primitiveTypeReaders_9(L_58); return; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::get_IndexIsValid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_get_IndexIsValid_m470CFF2AFEAB19151F7901573BA3113E90F4C149 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_get_IndexIsValid_m470CFF2AFEAB19151F7901573BA3113E90F4C149_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = __this->get_nodes_8(); if (!L_0) { goto IL_0025; } } { int32_t L_1 = __this->get_currentIndex_7(); if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_0025; } } { int32_t L_2 = __this->get_currentIndex_7(); List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_3 = __this->get_nodes_8(); NullCheck(L_3); int32_t L_4 = List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_inline(L_3, /*hidden argument*/List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_RuntimeMethod_var); return (bool)((((int32_t)L_2) < ((int32_t)L_4))? 1 : 0); } IL_0025: { return (bool)0; } } // System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode> Sirenix.Serialization.SerializationNodeDataReader::get_Nodes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * SerializationNodeDataReader_get_Nodes_m3118CFBE09B19FCD795B8F9CC6E035C43198B776 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_get_Nodes_m3118CFBE09B19FCD795B8F9CC6E035C43198B776_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = __this->get_nodes_8(); if (L_0) { goto IL_0013; } } { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_1 = (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB *)il2cpp_codegen_object_new(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB_il2cpp_TypeInfo_var); List_1__ctor_mAFA74AC0EB11989ACA8AE7FE1EDA15C7AA61B807(L_1, /*hidden argument*/List_1__ctor_mAFA74AC0EB11989ACA8AE7FE1EDA15C7AA61B807_RuntimeMethod_var); __this->set_nodes_8(L_1); } IL_0013: { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_2 = __this->get_nodes_8(); return L_2; } } // System.Void Sirenix.Serialization.SerializationNodeDataReader::set_Nodes(System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader_set_Nodes_mE1A9CEDB6F289B4B5B8D8301E7FB95BC1BCF2783 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_set_Nodes_mE1A9CEDB6F289B4B5B8D8301E7FB95BC1BCF2783_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = ___value0; if (L_0) { goto IL_0009; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, SerializationNodeDataReader_set_Nodes_mE1A9CEDB6F289B4B5B8D8301E7FB95BC1BCF2783_RuntimeMethod_var); } IL_0009: { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_2 = ___value0; __this->set_nodes_8(L_2); return; } } // System.IO.Stream Sirenix.Serialization.SerializationNodeDataReader::get_Stream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * SerializationNodeDataReader_get_Stream_m5F83E89CEB501ACA4CA50919A357A336D42F00DF (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_get_Stream_m5F83E89CEB501ACA4CA50919A357A336D42F00DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral1FCC0EBF6FD35D9E02DF1007A23D8C6ED3B070E9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, SerializationNodeDataReader_get_Stream_m5F83E89CEB501ACA4CA50919A357A336D42F00DF_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.SerializationNodeDataReader::set_Stream(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader_set_Stream_mDFC80D45A1F4598C2A1A979F25B73F00B53908DF (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_set_Stream_mDFC80D45A1F4598C2A1A979F25B73F00B53908DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral1FCC0EBF6FD35D9E02DF1007A23D8C6ED3B070E9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, SerializationNodeDataReader_set_Stream_mDFC80D45A1F4598C2A1A979F25B73F00B53908DF_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.SerializationNodeDataReader::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader_Dispose_m4329FF41B4B0CE2DBCBF580C4C4B1D20DDBFB708 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { { __this->set_nodes_8((List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB *)NULL); __this->set_currentIndex_7((-1)); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataReader::PrepareNewSerializationSession() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader_PrepareNewSerializationSession_mA55381E6916C3E6616A28A86D71DADDA7B605A67 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { { BaseDataReader_PrepareNewSerializationSession_mC8486AABD686A76E3B9299F8B18E93AD8BDCB305(__this, /*hidden argument*/NULL); __this->set_currentIndex_7((-1)); return; } } // Sirenix.Serialization.EntryType Sirenix.Serialization.SerializationNodeDataReader::PeekEntry(System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SerializationNodeDataReader_PeekEntry_mBC06C30F47AC7438D768EEC8FEF7AAAC0DBBC892 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, String_t** ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_PeekEntry_mBC06C30F47AC7438D768EEC8FEF7AAAC0DBBC892_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * L_0 = __this->get_address_of_peekedEntryType_5(); bool L_1 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)L_0, /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); if (!L_1) { goto IL_0021; } } { String_t** L_2 = ___name0; String_t* L_3 = __this->get_peekedEntryName_4(); *((RuntimeObject **)L_2) = (RuntimeObject *)L_3; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_3); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * L_4 = __this->get_address_of_peekedEntryType_5(); uint8_t L_5 = Nullable_1_get_Value_m91249764D6DABEB17643C0C8864A57C7BF0E545A((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)L_4, /*hidden argument*/Nullable_1_get_Value_m91249764D6DABEB17643C0C8864A57C7BF0E545A_RuntimeMethod_var); return L_5; } IL_0021: { int32_t L_6 = __this->get_currentIndex_7(); __this->set_currentIndex_7(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1))); bool L_7 = SerializationNodeDataReader_get_IndexIsValid_m470CFF2AFEAB19151F7901573BA3113E90F4C149(__this, /*hidden argument*/NULL); if (!L_7) { goto IL_0074; } } { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_8 = __this->get_nodes_8(); int32_t L_9 = __this->get_currentIndex_7(); NullCheck(L_8); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_10 = List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_inline(L_8, L_9, /*hidden argument*/List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_RuntimeMethod_var); V_0 = L_10; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_11 = V_0; String_t* L_12 = L_11.get_Name_0(); __this->set_peekedEntryName_4(L_12); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_13 = V_0; uint8_t L_14 = L_13.get_Entry_1(); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_15; memset((&L_15), 0, sizeof(L_15)); Nullable_1__ctor_m20ED2E7AAE2C55AA43D1ED744C12432E47B8FBDA((&L_15), L_14, /*hidden argument*/Nullable_1__ctor_m20ED2E7AAE2C55AA43D1ED744C12432E47B8FBDA_RuntimeMethod_var); __this->set_peekedEntryType_5(L_15); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_16 = V_0; String_t* L_17 = L_16.get_Data_2(); __this->set_peekedEntryData_6(L_17); goto IL_008f; } IL_0074: { __this->set_peekedEntryName_4((String_t*)NULL); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_18; memset((&L_18), 0, sizeof(L_18)); Nullable_1__ctor_m20ED2E7AAE2C55AA43D1ED744C12432E47B8FBDA((&L_18), ((int32_t)15), /*hidden argument*/Nullable_1__ctor_m20ED2E7AAE2C55AA43D1ED744C12432E47B8FBDA_RuntimeMethod_var); __this->set_peekedEntryType_5(L_18); __this->set_peekedEntryData_6((String_t*)NULL); } IL_008f: { String_t** L_19 = ___name0; String_t* L_20 = __this->get_peekedEntryName_4(); *((RuntimeObject **)L_19) = (RuntimeObject *)L_20; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_19, (void*)(RuntimeObject *)L_20); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * L_21 = __this->get_address_of_peekedEntryType_5(); uint8_t L_22 = Nullable_1_get_Value_m91249764D6DABEB17643C0C8864A57C7BF0E545A((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)L_21, /*hidden argument*/Nullable_1_get_Value_m91249764D6DABEB17643C0C8864A57C7BF0E545A_RuntimeMethod_var); return L_22; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::EnterArray(System.Int64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_EnterArray_m651F8312F9DFD5E77DC5D2D6C9ABCFE0DE4130C6 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, int64_t* ___length0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_EnterArray_m651F8312F9DFD5E77DC5D2D6C9ABCFE0DE4130C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = ((int32_t)12); uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001e; } } { G_B3_0 = 0; goto IL_0025; } IL_001e: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0025: { if (!G_B3_0) { goto IL_007b; } } { BaseDataReaderWriter_PushArray_m59BE893F2995E7153327F7BE100436B6ECDB4A52(__this, /*hidden argument*/NULL); String_t* L_4 = __this->get_peekedEntryData_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); int64_t* L_6 = ___length0; bool L_7 = Int64_TryParse_m8CE5F89833C03A091273A4EF48C69E86E1F81ACC(L_4, ((int32_t)511), L_5, (int64_t*)L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0073; } } { int64_t* L_8 = ___length0; *((int64_t*)L_8) = (int64_t)(((int64_t)((int64_t)0))); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_9 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_9); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_10 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_9, /*hidden argument*/NULL); NullCheck(L_10); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_11 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_10, /*hidden argument*/NULL); String_t* L_12 = __this->get_peekedEntryData_6(); String_t* L_13 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral44F902A538D4F79106B57038AA488CD1E61415D1, L_12, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); NullCheck(L_11); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_11, L_13, /*hidden argument*/NULL); } IL_0073: { SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); return (bool)1; } IL_007b: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); int64_t* L_14 = ___length0; *((int64_t*)L_14) = (int64_t)(((int64_t)((int64_t)0))); return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::EnterNode(System.Type&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_EnterNode_m38B156E8EC36E66418D7C4D439F2B04EBCB97F93 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, Type_t ** ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_EnterNode_m38B156E8EC36E66418D7C4D439F2B04EBCB97F93_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; String_t* V_2 = NULL; int32_t V_3 = 0; String_t* V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; String_t* V_7 = NULL; int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 7; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (!G_B3_0) { goto IL_011b; } } { String_t* L_4 = __this->get_peekedEntryData_6(); V_2 = L_4; V_3 = (-1); Type_t ** L_5 = ___type0; *((RuntimeObject **)L_5) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_5, (void*)(RuntimeObject *)NULL); String_t* L_6 = V_2; bool L_7 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0104; } } { V_4 = (String_t*)NULL; String_t* L_8 = V_2; NullCheck(L_8); int32_t L_9 = String_IndexOf_mF9EA8429E9D1B7475D5A297E67435CF34E965F28(L_8, _stringLiteral3EB416223E9E69E6BB8EE19793911AD1AD2027D8, 2, /*hidden argument*/NULL); V_5 = L_9; int32_t L_10 = V_5; if ((((int32_t)L_10) < ((int32_t)0))) { goto IL_00ca; } } { String_t* L_11 = V_2; int32_t L_12 = V_5; NullCheck(L_11); String_t* L_13 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_11, ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)), /*hidden argument*/NULL); V_4 = L_13; String_t* L_14 = V_2; int32_t L_15 = V_5; NullCheck(L_14); String_t* L_16 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_14, 0, L_15, /*hidden argument*/NULL); V_7 = L_16; String_t* L_17 = V_7; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); bool L_19 = Int32_TryParse_m6ADA5D03EE325554346538B991A4C3566BD2A011(L_17, ((int32_t)511), L_18, (int32_t*)(&V_6), /*hidden argument*/NULL); if (!L_19) { goto IL_0087; } } { int32_t L_20 = V_6; V_3 = L_20; goto IL_00dc; } IL_0087: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_21 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_21); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_22 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_21, /*hidden argument*/NULL); NullCheck(L_22); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_23 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_22, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = L_24; NullCheck(L_25); ArrayElementTypeCheck (L_25, _stringLiteral86744B473AEAEE7F2E67ECC1B5F25CBAD910B45E); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral86744B473AEAEE7F2E67ECC1B5F25CBAD910B45E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_25; String_t* L_27 = V_7; NullCheck(L_26); ArrayElementTypeCheck (L_26, L_27); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_27); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = L_26; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteral56B84F7A85820DB525688949FB625AD280C576A0); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral56B84F7A85820DB525688949FB625AD280C576A0); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = L_28; String_t* L_30 = V_2; NullCheck(L_29); ArrayElementTypeCheck (L_29, L_30); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_30); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = L_29; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA); String_t* L_32 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_31, /*hidden argument*/NULL); NullCheck(L_23); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_23, L_32, /*hidden argument*/NULL); goto IL_00dc; } IL_00ca: { String_t* L_33 = V_2; bool L_34 = Int32_TryParse_m03D31CAB7050E8286A8A90711C896B181006AD00(L_33, (int32_t*)(&V_6), /*hidden argument*/NULL); if (!L_34) { goto IL_00d9; } } { int32_t L_35 = V_6; V_3 = L_35; goto IL_00dc; } IL_00d9: { String_t* L_36 = V_2; V_4 = L_36; } IL_00dc: { String_t* L_37 = V_4; if (!L_37) { goto IL_0104; } } { Type_t ** L_38 = ___type0; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_39 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_39); TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * L_40 = DeserializationContext_get_Binder_mCF94C2B4E01A56F1285447039B8F909306CB5861(L_39, /*hidden argument*/NULL); String_t* L_41 = V_4; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_42 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_42); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_43 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_42, /*hidden argument*/NULL); NullCheck(L_43); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_44 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_43, /*hidden argument*/NULL); NullCheck(L_40); Type_t * L_45 = VirtFuncInvoker2< Type_t *, String_t*, DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * >::Invoke(5 /* System.Type Sirenix.Serialization.TwoWaySerializationBinder::BindToType(System.String,Sirenix.Serialization.DebugContext) */, L_40, L_41, L_44); *((RuntimeObject **)L_38) = (RuntimeObject *)L_45; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_38, (void*)(RuntimeObject *)L_45); } IL_0104: { SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); String_t* L_46 = __this->get_peekedEntryName_4(); int32_t L_47 = V_3; Type_t ** L_48 = ___type0; Type_t * L_49 = *((Type_t **)L_48); BaseDataReaderWriter_PushNode_m21BC79BE8D6DE9301C83D778816473B7826FA761(__this, L_46, L_47, L_49, /*hidden argument*/NULL); return (bool)1; } IL_011b: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); Type_t ** L_50 = ___type0; *((RuntimeObject **)L_50) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_50, (void*)(RuntimeObject *)NULL); return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ExitArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ExitArray_m518C1035B160AD728CC55B5222CB5175118B02C8 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ExitArray_m518C1035B160AD728CC55B5222CB5175118B02C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; int32_t G_B4_0 = 0; int32_t G_B10_0 = 0; int32_t G_B14_0 = 0; int32_t G_B18_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); goto IL_004e; } IL_0009: { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 8; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001f; } } { G_B4_0 = 0; goto IL_0026; } IL_001f: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B4_0 = ((int32_t)(L_3)); } IL_0026: { if (!G_B4_0) { goto IL_0048; } } { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_4 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_4); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_5 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_4, /*hidden argument*/NULL); NullCheck(L_5); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_6 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_5, /*hidden argument*/NULL); NullCheck(L_6); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_6, _stringLiteralF8EB61114A6016EF9921BF0E4FAD687FD6BD5611, /*hidden argument*/NULL); SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); } IL_0048: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); } IL_004e: { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_7 = __this->get_peekedEntryType_5(); V_0 = L_7; V_1 = ((int32_t)13); uint8_t L_8 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_9 = V_1; if ((((int32_t)L_8) == ((int32_t)L_9))) { goto IL_0065; } } { G_B10_0 = 1; goto IL_006f; } IL_0065: { bool L_10 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B10_0 = ((((int32_t)L_10) == ((int32_t)0))? 1 : 0); } IL_006f: { if (!G_B10_0) { goto IL_0097; } } { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_11 = __this->get_peekedEntryType_5(); V_0 = L_11; V_1 = ((int32_t)15); uint8_t L_12 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_13 = V_1; if ((((int32_t)L_12) == ((int32_t)L_13))) { goto IL_0088; } } { G_B14_0 = 1; goto IL_0092; } IL_0088: { bool L_14 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B14_0 = ((((int32_t)L_14) == ((int32_t)0))? 1 : 0); } IL_0092: { if (G_B14_0) { goto IL_0009; } } IL_0097: { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_15 = __this->get_peekedEntryType_5(); V_0 = L_15; V_1 = ((int32_t)13); uint8_t L_16 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_17 = V_1; if ((((int32_t)L_16) == ((int32_t)L_17))) { goto IL_00ae; } } { G_B18_0 = 0; goto IL_00b5; } IL_00ae: { bool L_18 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B18_0 = ((int32_t)(L_18)); } IL_00b5: { if (!G_B18_0) { goto IL_00c5; } } { SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); BaseDataReaderWriter_PopArray_m4DF3BD5CC9F49312DBE19F1B69757DD2647EBCC3(__this, /*hidden argument*/NULL); return (bool)1; } IL_00c5: { return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ExitNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ExitNode_m8AF0355B54128785CA25DE822993FFD06D60F3A1 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ExitNode_m8AF0355B54128785CA25DE822993FFD06D60F3A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; int32_t G_B4_0 = 0; int32_t G_B10_0 = 0; int32_t G_B14_0 = 0; int32_t G_B18_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); goto IL_004f; } IL_0009: { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = ((int32_t)13); uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0020; } } { G_B4_0 = 0; goto IL_0027; } IL_0020: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B4_0 = ((int32_t)(L_3)); } IL_0027: { if (!G_B4_0) { goto IL_0049; } } { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_4 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_4); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_5 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_4, /*hidden argument*/NULL); NullCheck(L_5); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_6 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_5, /*hidden argument*/NULL); NullCheck(L_6); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_6, _stringLiteral383A968075ADE7EF660A8610AD189B250C399099, /*hidden argument*/NULL); SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); } IL_0049: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); } IL_004f: { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_7 = __this->get_peekedEntryType_5(); V_0 = L_7; V_1 = 8; uint8_t L_8 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_9 = V_1; if ((((int32_t)L_8) == ((int32_t)L_9))) { goto IL_0065; } } { G_B10_0 = 1; goto IL_006f; } IL_0065: { bool L_10 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B10_0 = ((((int32_t)L_10) == ((int32_t)0))? 1 : 0); } IL_006f: { if (!G_B10_0) { goto IL_0097; } } { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_11 = __this->get_peekedEntryType_5(); V_0 = L_11; V_1 = ((int32_t)15); uint8_t L_12 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_13 = V_1; if ((((int32_t)L_12) == ((int32_t)L_13))) { goto IL_0088; } } { G_B14_0 = 1; goto IL_0092; } IL_0088: { bool L_14 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B14_0 = ((((int32_t)L_14) == ((int32_t)0))? 1 : 0); } IL_0092: { if (G_B14_0) { goto IL_0009; } } IL_0097: { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_15 = __this->get_peekedEntryType_5(); V_0 = L_15; V_1 = 8; uint8_t L_16 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_17 = V_1; if ((((int32_t)L_16) == ((int32_t)L_17))) { goto IL_00ad; } } { G_B18_0 = 0; goto IL_00b4; } IL_00ad: { bool L_18 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B18_0 = ((int32_t)(L_18)); } IL_00b4: { if (!G_B18_0) { goto IL_00ca; } } { SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); String_t* L_19 = BaseDataReader_get_CurrentNodeName_m54C77E658C4F8C004B9A88A72E42AAC156108D51(__this, /*hidden argument*/NULL); BaseDataReaderWriter_PopNode_mF24548A2D19B1005E2FA2E1E11C3CA3CBD3B9A55(__this, L_19, /*hidden argument*/NULL); return (bool)1; } IL_00ca: { return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadBoolean(System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadBoolean_mDEB1718446A3F6C9D622A2D5AC5406643F72CC1D (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, bool* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadBoolean_mDEB1718446A3F6C9D622A2D5AC5406643F72CC1D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B4_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); } IL_0007: try { // begin try (depth: 1) { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 5; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } IL_001a: { G_B4_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B4_0 = ((int32_t)(L_3)); } IL_0024: { if (!G_B4_0) { goto IL_003c; } } IL_0026: { bool* L_4 = ___value0; String_t* L_5 = __this->get_peekedEntryData_6(); bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_5, _stringLiteral5FFE533B830F08A0326348A9160AFAFC8ADA44DB, /*hidden argument*/NULL); *((int8_t*)L_4) = (int8_t)L_6; V_2 = (bool)1; IL2CPP_LEAVE(0x4A, FINALLY_0043); } IL_003c: { bool* L_7 = ___value0; *((int8_t*)L_7) = (int8_t)0; V_2 = (bool)0; IL2CPP_LEAVE(0x4A, FINALLY_0043); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0043; } FINALLY_0043: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(67) } // end finally (depth: 1) IL2CPP_CLEANUP(67) { IL2CPP_JUMP_TBL(0x4A, IL_004a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_004a: { bool L_8 = V_2; return L_8; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadByte(System.Byte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadByte_m2C8C834E326E6A8BEED708DE2EAB4CE82E76E09A (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, uint8_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadByte_m2C8C834E326E6A8BEED708DE2EAB4CE82E76E09A_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = VirtFuncInvoker1< bool, uint64_t* >::Invoke(69 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadUInt64(System.UInt64&) */, __this, (uint64_t*)(&V_0)); if (!L_0) { goto IL_0018; } } IL_000a: try { // begin try (depth: 1) uint8_t* L_1 = ___value0; uint64_t L_2 = V_0; if ((uint64_t)(L_2) > 255LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), SerializationNodeDataReader_ReadByte_m2C8C834E326E6A8BEED708DE2EAB4CE82E76E09A_RuntimeMethod_var); *((int8_t*)L_1) = (int8_t)(((uint8_t)((uint8_t)L_2))); goto IL_0016; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0010; throw e; } CATCH_0010: { // begin catch(System.OverflowException) uint8_t* L_3 = ___value0; *((int8_t*)L_3) = (int8_t)0; goto IL_0016; } // end catch (depth: 1) IL_0016: { return (bool)1; } IL_0018: { uint8_t* L_4 = ___value0; *((int8_t*)L_4) = (int8_t)0; return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadChar(System.Char&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadChar_m398A23D26D4B56699CCD5B931BF9E4F0C4413425 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, Il2CppChar* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadChar_m398A23D26D4B56699CCD5B931BF9E4F0C4413425_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 1; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (!G_B3_0) { goto IL_006e; } } IL_0026: try { // begin try (depth: 1) { String_t* L_4 = __this->get_peekedEntryData_6(); NullCheck(L_4); int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_0046; } } IL_0034: { Il2CppChar* L_6 = ___value0; String_t* L_7 = __this->get_peekedEntryData_6(); NullCheck(L_7); Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, 0, /*hidden argument*/NULL); *((int16_t*)L_6) = (int16_t)L_8; V_2 = (bool)1; IL2CPP_LEAVE(0x79, FINALLY_0067); } IL_0046: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_9 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_9); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_10 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_9, /*hidden argument*/NULL); NullCheck(L_10); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_11 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_10, /*hidden argument*/NULL); NullCheck(L_11); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_11, _stringLiteral8A2F0DBFFB4BAEC55961E6C2CA86DAF38FF6B1DE, /*hidden argument*/NULL); Il2CppChar* L_12 = ___value0; *((int16_t*)L_12) = (int16_t)0; V_2 = (bool)0; IL2CPP_LEAVE(0x79, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_JUMP_TBL(0x79, IL_0079) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_006e: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); Il2CppChar* L_13 = ___value0; *((int16_t*)L_13) = (int16_t)0; return (bool)0; } IL_0079: { bool L_14 = V_2; return L_14; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadDecimal(System.Decimal&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadDecimal_mB892B03F94F3C9F8404A824DC7E506EF1401A599 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadDecimal_mB892B03F94F3C9F8404A824DC7E506EF1401A599_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; int32_t G_B7_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 4; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (G_B3_0) { goto IL_0045; } } { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_4 = __this->get_peekedEntryType_5(); V_0 = L_4; V_1 = 3; uint8_t L_5 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_6 = V_1; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_003c; } } { G_B7_0 = 0; goto IL_0043; } IL_003c: { bool L_7 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B7_0 = ((int32_t)(L_7)); } IL_0043: { if (!G_B7_0) { goto IL_0097; } } IL_0045: { } IL_0046: try { // begin try (depth: 1) { String_t* L_8 = __this->get_peekedEntryData_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_9 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * L_10 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); bool L_11 = Decimal_TryParse_m0EC8E3EC9023AE24ED07A99D208E10F0F5D614DE(L_8, ((int32_t)511), L_9, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)L_10, /*hidden argument*/NULL); if (L_11) { goto IL_008c; } } IL_005e: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_12 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_12); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_13 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_12, /*hidden argument*/NULL); NullCheck(L_13); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_14 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_13, /*hidden argument*/NULL); String_t* L_15 = __this->get_peekedEntryData_6(); String_t* L_16 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralCF05649554FE2EA509B487742527937C04A28905, L_15, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); NullCheck(L_14); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_14, L_16, /*hidden argument*/NULL); V_2 = (bool)0; IL2CPP_LEAVE(0xA6, FINALLY_0090); } IL_008c: { V_2 = (bool)1; IL2CPP_LEAVE(0xA6, FINALLY_0090); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0090; } FINALLY_0090: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(144) } // end finally (depth: 1) IL2CPP_CLEANUP(144) { IL2CPP_JUMP_TBL(0xA6, IL_00a6) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0097: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * L_17 = ___value0; il2cpp_codegen_initobj(L_17, sizeof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )); return (bool)0; } IL_00a6: { bool L_18 = V_2; return L_18; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadDouble(System.Double&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadDouble_m8B9D602D854599B2A4F0A69C974FC082878586CE (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, double* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadDouble_m8B9D602D854599B2A4F0A69C974FC082878586CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; int32_t G_B7_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 4; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (G_B3_0) { goto IL_0045; } } { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_4 = __this->get_peekedEntryType_5(); V_0 = L_4; V_1 = 3; uint8_t L_5 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_6 = V_1; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_003c; } } { G_B7_0 = 0; goto IL_0043; } IL_003c: { bool L_7 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B7_0 = ((int32_t)(L_7)); } IL_0043: { if (!G_B7_0) { goto IL_0097; } } IL_0045: { } IL_0046: try { // begin try (depth: 1) { String_t* L_8 = __this->get_peekedEntryData_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_9 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); double* L_10 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_11 = Double_TryParse_m1A7BCBA90DE896E448E3CA09AAD1CA43846567D7(L_8, ((int32_t)511), L_9, (double*)L_10, /*hidden argument*/NULL); if (L_11) { goto IL_008c; } } IL_005e: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_12 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_12); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_13 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_12, /*hidden argument*/NULL); NullCheck(L_13); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_14 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_13, /*hidden argument*/NULL); String_t* L_15 = __this->get_peekedEntryData_6(); String_t* L_16 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralA747FB9E1C414DF9A953EC3281BA1A3A2CB76077, L_15, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); NullCheck(L_14); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_14, L_16, /*hidden argument*/NULL); V_2 = (bool)0; IL2CPP_LEAVE(0xAA, FINALLY_0090); } IL_008c: { V_2 = (bool)1; IL2CPP_LEAVE(0xAA, FINALLY_0090); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0090; } FINALLY_0090: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(144) } // end finally (depth: 1) IL2CPP_CLEANUP(144) { IL2CPP_JUMP_TBL(0xAA, IL_00aa) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0097: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); double* L_17 = ___value0; *((double*)L_17) = (double)(0.0); return (bool)0; } IL_00aa: { bool L_18 = V_2; return L_18; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadExternalReference(System.Guid&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadExternalReference_mF27B613BB3FECF70EBA6EA012389B504F5A1BC14 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, Guid_t * ___guid0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadExternalReference_mF27B613BB3FECF70EBA6EA012389B504F5A1BC14_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; Guid_t V_2; memset((&V_2), 0, sizeof(V_2)); bool V_3 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = ((int32_t)11); uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001e; } } { G_B3_0 = 0; goto IL_0025; } IL_001e: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0025: { if (!G_B3_0) { goto IL_0081; } } IL_0027: try { // begin try (depth: 1) try { // begin try (depth: 2) { Guid_t * L_4 = ___guid0; String_t* L_5 = __this->get_peekedEntryData_6(); Guid_t L_6; memset((&L_6), 0, sizeof(L_6)); Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_6), L_5, /*hidden argument*/NULL); Guid_t L_7 = L_6; V_2 = L_7; *(Guid_t *)L_4 = L_7; Guid_t L_8 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_9 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); bool L_10 = Guid_op_Inequality_mD6164E39F3B741C9FF30714A661F225ABD38E583(L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004b; } } IL_0047: { V_3 = (bool)1; IL2CPP_LEAVE(0x94, FINALLY_007a); } IL_004b: { Guid_t * L_11 = ___guid0; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_12 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); *(Guid_t *)L_11 = L_12; V_3 = (bool)0; IL2CPP_LEAVE(0x94, FINALLY_007a); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_005a; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_006a; throw e; } CATCH_005a: { // begin catch(System.FormatException) Guid_t * L_13 = ___guid0; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_14 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); *(Guid_t *)L_13 = L_14; V_3 = (bool)0; IL2CPP_LEAVE(0x94, FINALLY_007a); } // end catch (depth: 2) CATCH_006a: { // begin catch(System.OverflowException) Guid_t * L_15 = ___guid0; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_16 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); *(Guid_t *)L_15 = L_16; V_3 = (bool)0; IL2CPP_LEAVE(0x94, FINALLY_007a); } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_007a; } FINALLY_007a: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(122) } // end finally (depth: 1) IL2CPP_CLEANUP(122) { IL2CPP_JUMP_TBL(0x94, IL_0094) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0081: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); Guid_t * L_17 = ___guid0; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_18 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); *(Guid_t *)L_17 = L_18; return (bool)0; } IL_0094: { bool L_19 = V_3; return L_19; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadExternalReference(System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadExternalReference_mBA844BAAA415BF8AEB5AC598970CE6D04670AB72 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, String_t** ___id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadExternalReference_mBA844BAAA415BF8AEB5AC598970CE6D04670AB72_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = ((int32_t)16); uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001e; } } { G_B3_0 = 0; goto IL_0025; } IL_001e: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0025: { if (!G_B3_0) { goto IL_0037; } } { String_t** L_4 = ___id0; String_t* L_5 = __this->get_peekedEntryData_6(); *((RuntimeObject **)L_4) = (RuntimeObject *)L_5; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_4, (void*)(RuntimeObject *)L_5); SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); return (bool)1; } IL_0037: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); String_t** L_6 = ___id0; *((RuntimeObject **)L_6) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_6, (void*)(RuntimeObject *)NULL); return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadExternalReference(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadExternalReference_m1EF7B520272A9C3A8983138F322D7F5AA1A36CA7 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, int32_t* ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadExternalReference_m1EF7B520272A9C3A8983138F322D7F5AA1A36CA7_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = ((int32_t)10); uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001e; } } { G_B3_0 = 0; goto IL_0025; } IL_001e: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0025: { if (!G_B3_0) { goto IL_0078; } } IL_0027: try { // begin try (depth: 1) { String_t* L_4 = __this->get_peekedEntryData_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); int32_t* L_6 = ___index0; bool L_7 = Int32_TryParse_m6ADA5D03EE325554346538B991A4C3566BD2A011(L_4, ((int32_t)511), L_5, (int32_t*)L_6, /*hidden argument*/NULL); if (L_7) { goto IL_006d; } } IL_003f: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_8 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_8); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_9 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_8, /*hidden argument*/NULL); NullCheck(L_9); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_10 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_9, /*hidden argument*/NULL); String_t* L_11 = __this->get_peekedEntryData_6(); String_t* L_12 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral7DD9C2031B5DC44CB8167139B3D486935BAB35A0, L_11, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); NullCheck(L_10); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_10, L_12, /*hidden argument*/NULL); V_2 = (bool)0; IL2CPP_LEAVE(0x83, FINALLY_0071); } IL_006d: { V_2 = (bool)1; IL2CPP_LEAVE(0x83, FINALLY_0071); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0071; } FINALLY_0071: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(113) } // end finally (depth: 1) IL2CPP_CLEANUP(113) { IL2CPP_JUMP_TBL(0x83, IL_0083) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0078: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); int32_t* L_13 = ___index0; *((int32_t*)L_13) = (int32_t)0; return (bool)0; } IL_0083: { bool L_14 = V_2; return L_14; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadGuid(System.Guid&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadGuid_m95FE67B6DAD4F98F5C47037B079ADAA48D5F7F3F (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, Guid_t * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadGuid_m95FE67B6DAD4F98F5C47037B079ADAA48D5F7F3F_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; Guid_t V_2; memset((&V_2), 0, sizeof(V_2)); bool V_3 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 2; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (!G_B3_0) { goto IL_0080; } } IL_0026: try { // begin try (depth: 1) try { // begin try (depth: 2) { Guid_t * L_4 = ___value0; String_t* L_5 = __this->get_peekedEntryData_6(); Guid_t L_6; memset((&L_6), 0, sizeof(L_6)); Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_6), L_5, /*hidden argument*/NULL); Guid_t L_7 = L_6; V_2 = L_7; *(Guid_t *)L_4 = L_7; Guid_t L_8 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_9 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); bool L_10 = Guid_op_Inequality_mD6164E39F3B741C9FF30714A661F225ABD38E583(L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } IL_0046: { V_3 = (bool)1; IL2CPP_LEAVE(0x93, FINALLY_0079); } IL_004a: { Guid_t * L_11 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_12 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); *(Guid_t *)L_11 = L_12; V_3 = (bool)0; IL2CPP_LEAVE(0x93, FINALLY_0079); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0059; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0069; throw e; } CATCH_0059: { // begin catch(System.FormatException) Guid_t * L_13 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_14 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); *(Guid_t *)L_13 = L_14; V_3 = (bool)0; IL2CPP_LEAVE(0x93, FINALLY_0079); } // end catch (depth: 2) CATCH_0069: { // begin catch(System.OverflowException) Guid_t * L_15 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_16 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); *(Guid_t *)L_15 = L_16; V_3 = (bool)0; IL2CPP_LEAVE(0x93, FINALLY_0079); } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0079; } FINALLY_0079: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(121) } // end finally (depth: 1) IL2CPP_CLEANUP(121) { IL2CPP_JUMP_TBL(0x93, IL_0093) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0080: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); Guid_t * L_17 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_18 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0(); *(Guid_t *)L_17 = L_18; return (bool)0; } IL_0093: { bool L_19 = V_3; return L_19; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadInt16(System.Int16&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadInt16_m8A6D66C3EE228FBA4EC7E10D0880E99AA342CF6B (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, int16_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadInt16_m8A6D66C3EE228FBA4EC7E10D0880E99AA342CF6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = VirtFuncInvoker1< bool, int64_t* >::Invoke(65 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadInt64(System.Int64&) */, __this, (int64_t*)(&V_0)); if (!L_0) { goto IL_0018; } } IL_000a: try { // begin try (depth: 1) int16_t* L_1 = ___value0; int64_t L_2 = V_0; if ((int64_t)(L_2) > 32767LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), SerializationNodeDataReader_ReadInt16_m8A6D66C3EE228FBA4EC7E10D0880E99AA342CF6B_RuntimeMethod_var); *((int16_t*)L_1) = (int16_t)(((int16_t)((int16_t)L_2))); goto IL_0016; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0010; throw e; } CATCH_0010: { // begin catch(System.OverflowException) int16_t* L_3 = ___value0; *((int16_t*)L_3) = (int16_t)0; goto IL_0016; } // end catch (depth: 1) IL_0016: { return (bool)1; } IL_0018: { int16_t* L_4 = ___value0; *((int16_t*)L_4) = (int16_t)0; return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadInt32(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadInt32_m8B85C469B34E315374927282F592D0BE3587E973 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, int32_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadInt32_m8B85C469B34E315374927282F592D0BE3587E973_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = VirtFuncInvoker1< bool, int64_t* >::Invoke(65 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadInt64(System.Int64&) */, __this, (int64_t*)(&V_0)); if (!L_0) { goto IL_0018; } } IL_000a: try { // begin try (depth: 1) int32_t* L_1 = ___value0; int64_t L_2 = V_0; if ((int64_t)(L_2) > 2147483647LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), SerializationNodeDataReader_ReadInt32_m8B85C469B34E315374927282F592D0BE3587E973_RuntimeMethod_var); *((int32_t*)L_1) = (int32_t)(((int32_t)((int32_t)L_2))); goto IL_0016; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0010; throw e; } CATCH_0010: { // begin catch(System.OverflowException) int32_t* L_3 = ___value0; *((int32_t*)L_3) = (int32_t)0; goto IL_0016; } // end catch (depth: 1) IL_0016: { return (bool)1; } IL_0018: { int32_t* L_4 = ___value0; *((int32_t*)L_4) = (int32_t)0; return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadInt64(System.Int64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadInt64_m763523523B8F21CCAD55F2A18A52FB98E92484F1 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, int64_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadInt64_m763523523B8F21CCAD55F2A18A52FB98E92484F1_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 3; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (!G_B3_0) { goto IL_0077; } } IL_0026: try { // begin try (depth: 1) { String_t* L_4 = __this->get_peekedEntryData_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); int64_t* L_6 = ___value0; bool L_7 = Int64_TryParse_m8CE5F89833C03A091273A4EF48C69E86E1F81ACC(L_4, ((int32_t)511), L_5, (int64_t*)L_6, /*hidden argument*/NULL); if (L_7) { goto IL_006c; } } IL_003e: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_8 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_8); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_9 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_8, /*hidden argument*/NULL); NullCheck(L_9); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_10 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_9, /*hidden argument*/NULL); String_t* L_11 = __this->get_peekedEntryData_6(); String_t* L_12 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralC3EB4E60C9644835B81A166383345CC4F9558091, L_11, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); NullCheck(L_10); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_10, L_12, /*hidden argument*/NULL); V_2 = (bool)0; IL2CPP_LEAVE(0x83, FINALLY_0070); } IL_006c: { V_2 = (bool)1; IL2CPP_LEAVE(0x83, FINALLY_0070); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0070; } FINALLY_0070: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(112) } // end finally (depth: 1) IL2CPP_CLEANUP(112) { IL2CPP_JUMP_TBL(0x83, IL_0083) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0077: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); int64_t* L_13 = ___value0; *((int64_t*)L_13) = (int64_t)(((int64_t)((int64_t)0))); return (bool)0; } IL_0083: { bool L_14 = V_2; return L_14; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadInternalReference(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadInternalReference_m8CBBBD126B3E959307518B1704A62FF92A521F9D (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, int32_t* ___id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadInternalReference_m8CBBBD126B3E959307518B1704A62FF92A521F9D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = ((int32_t)9); uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001e; } } { G_B3_0 = 0; goto IL_0025; } IL_001e: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0025: { if (!G_B3_0) { goto IL_0078; } } IL_0027: try { // begin try (depth: 1) { String_t* L_4 = __this->get_peekedEntryData_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); int32_t* L_6 = ___id0; bool L_7 = Int32_TryParse_m6ADA5D03EE325554346538B991A4C3566BD2A011(L_4, ((int32_t)511), L_5, (int32_t*)L_6, /*hidden argument*/NULL); if (L_7) { goto IL_006d; } } IL_003f: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_8 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_8); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_9 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_8, /*hidden argument*/NULL); NullCheck(L_9); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_10 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_9, /*hidden argument*/NULL); String_t* L_11 = __this->get_peekedEntryData_6(); String_t* L_12 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral751612008F4675E3998558095D4D8D8D6EEE2C1D, L_11, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); NullCheck(L_10); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_10, L_12, /*hidden argument*/NULL); V_2 = (bool)0; IL2CPP_LEAVE(0x83, FINALLY_0071); } IL_006d: { V_2 = (bool)1; IL2CPP_LEAVE(0x83, FINALLY_0071); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0071; } FINALLY_0071: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(113) } // end finally (depth: 1) IL2CPP_CLEANUP(113) { IL2CPP_JUMP_TBL(0x83, IL_0083) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0078: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); int32_t* L_13 = ___id0; *((int32_t*)L_13) = (int32_t)0; return (bool)0; } IL_0083: { bool L_14 = V_2; return L_14; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadNull() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadNull_m0BF0F7899A24769924D6CCCBDE4726E14A82F1D3 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadNull_m0BF0F7899A24769924D6CCCBDE4726E14A82F1D3_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 6; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (!G_B3_0) { goto IL_002e; } } { SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); return (bool)1; } IL_002e: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadSByte(System.SByte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadSByte_mA906AA84F79D9F2E6272A7CB102205960224EC6F (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, int8_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadSByte_mA906AA84F79D9F2E6272A7CB102205960224EC6F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = VirtFuncInvoker1< bool, int64_t* >::Invoke(65 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadInt64(System.Int64&) */, __this, (int64_t*)(&V_0)); if (!L_0) { goto IL_0018; } } IL_000a: try { // begin try (depth: 1) int8_t* L_1 = ___value0; int64_t L_2 = V_0; if ((int64_t)(L_2) > 127LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), SerializationNodeDataReader_ReadSByte_mA906AA84F79D9F2E6272A7CB102205960224EC6F_RuntimeMethod_var); *((int8_t*)L_1) = (int8_t)(((int8_t)((int8_t)L_2))); goto IL_0016; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0010; throw e; } CATCH_0010: { // begin catch(System.OverflowException) int8_t* L_3 = ___value0; *((int8_t*)L_3) = (int8_t)0; goto IL_0016; } // end catch (depth: 1) IL_0016: { return (bool)1; } IL_0018: { int8_t* L_4 = ___value0; *((int8_t*)L_4) = (int8_t)0; return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadSingle(System.Single&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadSingle_mC9B3B8DFB19FC92FF203194C9E1E953FBAC76A80 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, float* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadSingle_mC9B3B8DFB19FC92FF203194C9E1E953FBAC76A80_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; int32_t G_B7_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 4; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (G_B3_0) { goto IL_0045; } } { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_4 = __this->get_peekedEntryType_5(); V_0 = L_4; V_1 = 3; uint8_t L_5 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_6 = V_1; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_003c; } } { G_B7_0 = 0; goto IL_0043; } IL_003c: { bool L_7 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B7_0 = ((int32_t)(L_7)); } IL_0043: { if (!G_B7_0) { goto IL_0097; } } IL_0045: { } IL_0046: try { // begin try (depth: 1) { String_t* L_8 = __this->get_peekedEntryData_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_9 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); float* L_10 = ___value0; bool L_11 = Single_TryParse_m4FE60E3061A34FB7B835A80AC156A85649610744(L_8, ((int32_t)511), L_9, (float*)L_10, /*hidden argument*/NULL); if (L_11) { goto IL_008c; } } IL_005e: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_12 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_12); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_13 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_12, /*hidden argument*/NULL); NullCheck(L_13); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_14 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_13, /*hidden argument*/NULL); String_t* L_15 = __this->get_peekedEntryData_6(); String_t* L_16 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral3956655E20AAD2E8C3BB867538FBB1CB040A975C, L_15, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); NullCheck(L_14); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_14, L_16, /*hidden argument*/NULL); V_2 = (bool)0; IL2CPP_LEAVE(0xA6, FINALLY_0090); } IL_008c: { V_2 = (bool)1; IL2CPP_LEAVE(0xA6, FINALLY_0090); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0090; } FINALLY_0090: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(144) } // end finally (depth: 1) IL2CPP_CLEANUP(144) { IL2CPP_JUMP_TBL(0xA6, IL_00a6) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0097: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); float* L_17 = ___value0; *((float*)L_17) = (float)(0.0f); return (bool)0; } IL_00a6: { bool L_18 = V_2; return L_18; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadString(System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadString_m8130BAF2F817091B2352A4B5B5C402C913D92D4D (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, String_t** ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadString_m8130BAF2F817091B2352A4B5B5C402C913D92D4D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 1; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (!G_B3_0) { goto IL_0036; } } { String_t** L_4 = ___value0; String_t* L_5 = __this->get_peekedEntryData_6(); *((RuntimeObject **)L_4) = (RuntimeObject *)L_5; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_4, (void*)(RuntimeObject *)L_5); SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); return (bool)1; } IL_0036: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); String_t** L_6 = ___value0; *((RuntimeObject **)L_6) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_6, (void*)(RuntimeObject *)NULL); return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadUInt16(System.UInt16&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadUInt16_m5250967DD9E42FFEB64E6BB15CB471D3BEB959B5 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, uint16_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadUInt16_m5250967DD9E42FFEB64E6BB15CB471D3BEB959B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = VirtFuncInvoker1< bool, uint64_t* >::Invoke(69 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadUInt64(System.UInt64&) */, __this, (uint64_t*)(&V_0)); if (!L_0) { goto IL_0018; } } IL_000a: try { // begin try (depth: 1) uint16_t* L_1 = ___value0; uint64_t L_2 = V_0; if ((uint64_t)(L_2) > 65535LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), SerializationNodeDataReader_ReadUInt16_m5250967DD9E42FFEB64E6BB15CB471D3BEB959B5_RuntimeMethod_var); *((int16_t*)L_1) = (int16_t)(((uint16_t)((uint16_t)L_2))); goto IL_0016; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0010; throw e; } CATCH_0010: { // begin catch(System.OverflowException) uint16_t* L_3 = ___value0; *((int16_t*)L_3) = (int16_t)0; goto IL_0016; } // end catch (depth: 1) IL_0016: { return (bool)1; } IL_0018: { uint16_t* L_4 = ___value0; *((int16_t*)L_4) = (int16_t)0; return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadUInt32(System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadUInt32_m58C0F51E35822BD8B4A7E11E7ED7625D9200D6F5 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, uint32_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadUInt32_m58C0F51E35822BD8B4A7E11E7ED7625D9200D6F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = VirtFuncInvoker1< bool, uint64_t* >::Invoke(69 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadUInt64(System.UInt64&) */, __this, (uint64_t*)(&V_0)); if (!L_0) { goto IL_0018; } } IL_000a: try { // begin try (depth: 1) uint32_t* L_1 = ___value0; uint64_t L_2 = V_0; if ((uint64_t)(L_2) > 4294967295LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), SerializationNodeDataReader_ReadUInt32_m58C0F51E35822BD8B4A7E11E7ED7625D9200D6F5_RuntimeMethod_var); *((int32_t*)L_1) = (int32_t)(((uint32_t)((uint32_t)L_2))); goto IL_0016; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0010; throw e; } CATCH_0010: { // begin catch(System.OverflowException) uint32_t* L_3 = ___value0; *((int32_t*)L_3) = (int32_t)0; goto IL_0016; } // end catch (depth: 1) IL_0016: { return (bool)1; } IL_0018: { uint32_t* L_4 = ___value0; *((int32_t*)L_4) = (int32_t)0; return (bool)0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::ReadUInt64(System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_ReadUInt64_mDB2B3C193CD5DF2DBE54B5A3A28331FB4258B7E9 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, uint64_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ReadUInt64_mDB2B3C193CD5DF2DBE54B5A3A28331FB4258B7E9_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; { VirtFuncInvoker0< uint8_t >::Invoke(79 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry() */, __this); Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_0 = __this->get_peekedEntryType_5(); V_0 = L_0; V_1 = 3; uint8_t L_1 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_2 = V_1; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001d; } } { G_B3_0 = 0; goto IL_0024; } IL_001d: { bool L_3 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B3_0 = ((int32_t)(L_3)); } IL_0024: { if (!G_B3_0) { goto IL_0077; } } IL_0026: try { // begin try (depth: 1) { String_t* L_4 = __this->get_peekedEntryData_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); uint64_t* L_6 = ___value0; bool L_7 = UInt64_TryParse_m5119C451C7052149BC0994D3C7AB5D0AE289E8F3(L_4, ((int32_t)511), L_5, (uint64_t*)L_6, /*hidden argument*/NULL); if (L_7) { goto IL_006c; } } IL_003e: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_8 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(__this, /*hidden argument*/NULL); NullCheck(L_8); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_9 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_8, /*hidden argument*/NULL); NullCheck(L_9); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_10 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_9, /*hidden argument*/NULL); String_t* L_11 = __this->get_peekedEntryData_6(); String_t* L_12 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralC3EB4E60C9644835B81A166383345CC4F9558091, L_11, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); NullCheck(L_10); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_10, L_12, /*hidden argument*/NULL); V_2 = (bool)0; IL2CPP_LEAVE(0x83, FINALLY_0070); } IL_006c: { V_2 = (bool)1; IL2CPP_LEAVE(0x83, FINALLY_0070); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0070; } FINALLY_0070: { // begin finally (depth: 1) SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(112) } // end finally (depth: 1) IL2CPP_CLEANUP(112) { IL2CPP_JUMP_TBL(0x83, IL_0083) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0077: { VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, __this); uint64_t* L_13 = ___value0; *((int64_t*)L_13) = (int64_t)(((int64_t)((int64_t)0))); return (bool)0; } IL_0083: { bool L_14 = V_2; return L_14; } } // System.String Sirenix.Serialization.SerializationNodeDataReader::GetDataDump() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationNodeDataReader_GetDataDump_mAC3D56F8603D3B264406492C626DC8AAB9746057 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_GetDataDump_mAC3D56F8603D3B264406492C626DC8AAB9746057_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; int32_t V_1 = 0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_2; memset((&V_2), 0, sizeof(V_2)); { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL); V_0 = L_0; StringBuilder_t * L_1 = V_0; NullCheck(L_1); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteral1825416341A4674513A44A3F9965D8C77840CDB9, /*hidden argument*/NULL); V_1 = 0; goto IL_008f; } IL_0016: { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_2 = __this->get_nodes_8(); int32_t L_3 = V_1; NullCheck(L_2); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_inline(L_2, L_3, /*hidden argument*/List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_RuntimeMethod_var); V_2 = L_4; StringBuilder_t * L_5 = V_0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_6 = V_2; String_t* L_7 = L_6.get_Name_0(); String_t* L_8 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral2597F079BE5C91A1FD827E298163910FF12A932A, L_7, /*hidden argument*/NULL); NullCheck(L_5); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_5, L_8, /*hidden argument*/NULL); int32_t L_9 = V_1; int32_t L_10 = __this->get_currentIndex_7(); if ((!(((uint32_t)L_9) == ((uint32_t)L_10)))) { goto IL_0051; } } { StringBuilder_t * L_11 = V_0; NullCheck(L_11); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_11, _stringLiteral4E1F8AB3A9960E7BF63E2FB89498BEB8084903C2, /*hidden argument*/NULL); goto IL_0058; } IL_0051: { StringBuilder_t * L_12 = V_0; NullCheck(L_12); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_12, /*hidden argument*/NULL); } IL_0058: { StringBuilder_t * L_13 = V_0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_14 = V_2; uint8_t L_15 = L_14.get_Entry_1(); int32_t L_16 = ((int32_t)L_15); RuntimeObject * L_17 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_16); String_t* L_18 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteralC086A605DCC2D39C6479DBE69F9E54C33A7A4B5B, L_17, /*hidden argument*/NULL); NullCheck(L_13); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_13, L_18, /*hidden argument*/NULL); StringBuilder_t * L_19 = V_0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_20 = V_2; String_t* L_21 = L_20.get_Data_2(); String_t* L_22 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral0DC37C14FE8E613E0C92BCFAA5935D4AA0FFA532, L_21, /*hidden argument*/NULL); NullCheck(L_19); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_19, L_22, /*hidden argument*/NULL); int32_t L_23 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_008f: { int32_t L_24 = V_1; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_25 = __this->get_nodes_8(); NullCheck(L_25); int32_t L_26 = List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_inline(L_25, /*hidden argument*/List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_RuntimeMethod_var); if ((((int32_t)L_24) < ((int32_t)L_26))) { goto IL_0016; } } { StringBuilder_t * L_27 = V_0; NullCheck(L_27); String_t* L_28 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_27); return L_28; } } // System.Void Sirenix.Serialization.SerializationNodeDataReader::ConsumeCurrentEntry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 V_0; memset((&V_0), 0, sizeof(V_0)); uint8_t V_1 = 0; int32_t G_B4_0 = 0; { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * L_0 = __this->get_address_of_peekedEntryType_5(); bool L_1 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)L_0, /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); if (!L_1) { goto IL_003c; } } { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 L_2 = __this->get_peekedEntryType_5(); V_0 = L_2; V_1 = ((int32_t)15); uint8_t L_3 = Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m24D976894528630137B9107940C8AE28035E6DCE_RuntimeMethod_var); uint8_t L_4 = V_1; if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_0024; } } { G_B4_0 = 1; goto IL_002e; } IL_0024: { bool L_5 = Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_inline((Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mC6B10E25492DEF0D5BF0D96A49639E53C89857A4_RuntimeMethod_var); G_B4_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0); } IL_002e: { if (!G_B4_0) { goto IL_003c; } } { Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 * L_6 = __this->get_address_of_peekedEntryType_5(); il2cpp_codegen_initobj(L_6, sizeof(Nullable_1_t7F932D9DB5E02BE618AFC3D7CA392432BAD7A869 )); } IL_003c: { return; } } // Sirenix.Serialization.EntryType Sirenix.Serialization.SerializationNodeDataReader::PeekEntry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SerializationNodeDataReader_PeekEntry_m08793A131EE38D16A52EE3333E5ADBB4DBF1F389 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { String_t* V_0 = NULL; { uint8_t L_0 = VirtFuncInvoker1< uint8_t, String_t** >::Invoke(54 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry(System.String&) */, __this, (String_t**)(&V_0)); return L_0; } } // Sirenix.Serialization.EntryType Sirenix.Serialization.SerializationNodeDataReader::ReadToNextEntry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SerializationNodeDataReader_ReadToNextEntry_mF6AFDEBEC7241B593690C4BD69FFB857790ED1AE (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { String_t* V_0 = NULL; { SerializationNodeDataReader_ConsumeCurrentEntry_mB76DF70AA3BFF4D0A130C0F0588BE240DCB4C03B(__this, /*hidden argument*/NULL); uint8_t L_0 = VirtFuncInvoker1< uint8_t, String_t** >::Invoke(54 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry(System.String&) */, __this, (String_t**)(&V_0)); return L_0; } } // System.Char Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar SerializationNodeDataReader_U3C_ctorU3Eb__6_0_m5574D333371500C410C58B20DB7E49384660E648 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { Il2CppChar V_0 = 0x0; { VirtFuncInvoker1< bool, Il2CppChar* >::Invoke(59 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadChar(System.Char&) */, __this, (Il2CppChar*)(&V_0)); Il2CppChar L_0 = V_0; return L_0; } } // System.SByte Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t SerializationNodeDataReader_U3C_ctorU3Eb__6_1_m41F11F69156A0F3BCE417349BC7BDECEFBAD2BDE (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { int8_t V_0 = 0x0; { VirtFuncInvoker1< bool, int8_t* >::Invoke(62 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadSByte(System.SByte&) */, __this, (int8_t*)(&V_0)); int8_t L_0 = V_0; return L_0; } } // System.Int16 Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t SerializationNodeDataReader_U3C_ctorU3Eb__6_2_mCD9F3CCBC01587079BE458C7291465E3CAD516A2 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { int16_t V_0 = 0; { VirtFuncInvoker1< bool, int16_t* >::Invoke(63 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadInt16(System.Int16&) */, __this, (int16_t*)(&V_0)); int16_t L_0 = V_0; return L_0; } } // System.Int32 Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializationNodeDataReader_U3C_ctorU3Eb__6_3_m625169DEA5703601132DB71571CD62B9BF8A388C (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { VirtFuncInvoker1< bool, int32_t* >::Invoke(64 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadInt32(System.Int32&) */, __this, (int32_t*)(&V_0)); int32_t L_0 = V_0; return L_0; } } // System.Int64 Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t SerializationNodeDataReader_U3C_ctorU3Eb__6_4_m386B21D2244FACA981F46AE506A0CBB8D154B89D (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { int64_t V_0 = 0; { VirtFuncInvoker1< bool, int64_t* >::Invoke(65 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadInt64(System.Int64&) */, __this, (int64_t*)(&V_0)); int64_t L_0 = V_0; return L_0; } } // System.Byte Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_5() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SerializationNodeDataReader_U3C_ctorU3Eb__6_5_mB030DE1A0D55626ABEF4FEE3B144BDB9CAE033E8 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { uint8_t V_0 = 0x0; { VirtFuncInvoker1< bool, uint8_t* >::Invoke(66 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadByte(System.Byte&) */, __this, (uint8_t*)(&V_0)); uint8_t L_0 = V_0; return L_0; } } // System.UInt16 Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_6() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t SerializationNodeDataReader_U3C_ctorU3Eb__6_6_m132D7A3D5A59E3D87C2365D86BE295F4784E9F43 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { uint16_t V_0 = 0; { VirtFuncInvoker1< bool, uint16_t* >::Invoke(67 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadUInt16(System.UInt16&) */, __this, (uint16_t*)(&V_0)); uint16_t L_0 = V_0; return L_0; } } // System.UInt32 Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_7() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t SerializationNodeDataReader_U3C_ctorU3Eb__6_7_mCD14A35C2AE274F6AFA289A0FC1228FD9495C591 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { uint32_t V_0 = 0; { VirtFuncInvoker1< bool, uint32_t* >::Invoke(68 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadUInt32(System.UInt32&) */, __this, (uint32_t*)(&V_0)); uint32_t L_0 = V_0; return L_0; } } // System.UInt64 Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t SerializationNodeDataReader_U3C_ctorU3Eb__6_8_mED983C9FAC2CAEB8EE0B6F06A25EBA023221B7B3 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { uint64_t V_0 = 0; { VirtFuncInvoker1< bool, uint64_t* >::Invoke(69 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadUInt64(System.UInt64&) */, __this, (uint64_t*)(&V_0)); uint64_t L_0 = V_0; return L_0; } } // System.Decimal Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_9() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 SerializationNodeDataReader_U3C_ctorU3Eb__6_9_mDECF657D1D9CAD1B0069F5CE241BBEE6A94396A5 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_0; memset((&V_0), 0, sizeof(V_0)); { VirtFuncInvoker1< bool, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * >::Invoke(70 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadDecimal(System.Decimal&) */, __this, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_0)); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = V_0; return L_0; } } // System.Boolean Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_10() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationNodeDataReader_U3C_ctorU3Eb__6_10_m746330BE3C87C20F2E9FD1030D3F7F149FA3DFAF (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { bool V_0 = false; { VirtFuncInvoker1< bool, bool* >::Invoke(73 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadBoolean(System.Boolean&) */, __this, (bool*)(&V_0)); bool L_0 = V_0; return L_0; } } // System.Single Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_11() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SerializationNodeDataReader_U3C_ctorU3Eb__6_11_mB0F2BC3D2ED1BDBFE295874C9E582AB287B9C7D8 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { float V_0 = 0.0f; { VirtFuncInvoker1< bool, float* >::Invoke(71 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadSingle(System.Single&) */, __this, (float*)(&V_0)); float L_0 = V_0; return L_0; } } // System.Double Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_12() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double SerializationNodeDataReader_U3C_ctorU3Eb__6_12_mC199A968351044692DD9E6804EE82956E1B57B52 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { double V_0 = 0.0; { VirtFuncInvoker1< bool, double* >::Invoke(72 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadDouble(System.Double&) */, __this, (double*)(&V_0)); double L_0 = V_0; return L_0; } } // System.Guid Sirenix.Serialization.SerializationNodeDataReader::<.ctor>b__6_13() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t SerializationNodeDataReader_U3C_ctorU3Eb__6_13_mD007F2613E6C977D3472CBE16A13794F03DEF079 (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * __this, const RuntimeMethod* method) { Guid_t V_0; memset((&V_0), 0, sizeof(V_0)); { VirtFuncInvoker1< bool, Guid_t * >::Invoke(61 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadGuid(System.Guid&) */, __this, (Guid_t *)(&V_0)); Guid_t L_0 = V_0; return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode> Sirenix.Serialization.SerializationNodeDataWriter::get_Nodes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = __this->get_nodes_4(); if (L_0) { goto IL_0013; } } { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_1 = (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB *)il2cpp_codegen_object_new(List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB_il2cpp_TypeInfo_var); List_1__ctor_mAFA74AC0EB11989ACA8AE7FE1EDA15C7AA61B807(L_1, /*hidden argument*/List_1__ctor_mAFA74AC0EB11989ACA8AE7FE1EDA15C7AA61B807_RuntimeMethod_var); __this->set_nodes_4(L_1); } IL_0013: { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_2 = __this->get_nodes_4(); return L_2; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::set_Nodes(System.Collections.Generic.List`1<Sirenix.Serialization.SerializationNode>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_set_Nodes_mA35B26543A1C2E6547D90509F028195FE04F215A (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_set_Nodes_mA35B26543A1C2E6547D90509F028195FE04F215A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = ___value0; if (L_0) { goto IL_0009; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, SerializationNodeDataWriter_set_Nodes_mA35B26543A1C2E6547D90509F028195FE04F215A_RuntimeMethod_var); } IL_0009: { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_2 = ___value0; __this->set_nodes_4(L_2); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::.ctor(Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter__ctor_mED46B0803DC503DDB31FAAFFDD5341D9E0562BB5 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter__ctor_mED46B0803DC503DDB31FAAFFDD5341D9E0562BB5_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * V_0 = NULL; { SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_0 = ___context0; BaseDataWriter__ctor_mA2B0A294DA8CA6AEFF14B100EE08F3D6889176B6(__this, (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *)NULL, L_0, /*hidden argument*/NULL); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_1 = (Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 *)il2cpp_codegen_object_new(Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028_il2cpp_TypeInfo_var); Dictionary_2__ctor_mEC7798EDEB6B0C29A4C35F33E1BD17AE3643ED17(L_1, /*hidden argument*/Dictionary_2__ctor_mEC7798EDEB6B0C29A4C35F33E1BD17AE3643ED17_RuntimeMethod_var); V_0 = L_1; Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); Action_2_t7A81E682590B81DD40F667542176AA02DCAFA1E9 * L_5 = (Action_2_t7A81E682590B81DD40F667542176AA02DCAFA1E9 *)il2cpp_codegen_object_new(Action_2_t7A81E682590B81DD40F667542176AA02DCAFA1E9_il2cpp_TypeInfo_var); Action_2__ctor_m485C64E20D0C493D917DFF28017F0CFBAC49ABDA(L_5, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 58)), /*hidden argument*/Action_2__ctor_m485C64E20D0C493D917DFF28017F0CFBAC49ABDA_RuntimeMethod_var); NullCheck(L_2); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_2, L_4, L_5, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); Action_2_t5F075F0477DFF381250D578CFC9566C37B685087 * L_9 = (Action_2_t5F075F0477DFF381250D578CFC9566C37B685087 *)il2cpp_codegen_object_new(Action_2_t5F075F0477DFF381250D578CFC9566C37B685087_il2cpp_TypeInfo_var); Action_2__ctor_mAF6AD2F626A6909760BD159A557A012E28CB1B4C(L_9, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 61)), /*hidden argument*/Action_2__ctor_mAF6AD2F626A6909760BD159A557A012E28CB1B4C_RuntimeMethod_var); NullCheck(L_6); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_6, L_8, L_9, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_10 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); Action_2_t601D5C86A591692555079344CCB7898C03C50005 * L_13 = (Action_2_t601D5C86A591692555079344CCB7898C03C50005 *)il2cpp_codegen_object_new(Action_2_t601D5C86A591692555079344CCB7898C03C50005_il2cpp_TypeInfo_var); Action_2__ctor_m3E3F11621ABB0A28B97496525F9F14CAA26132BE(L_13, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 62)), /*hidden argument*/Action_2__ctor_m3E3F11621ABB0A28B97496525F9F14CAA26132BE_RuntimeMethod_var); NullCheck(L_10); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_10, L_12, L_13, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_14 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); Action_2_tDC912041941E8778D68BAE31B6E7CE869D420A59 * L_17 = (Action_2_tDC912041941E8778D68BAE31B6E7CE869D420A59 *)il2cpp_codegen_object_new(Action_2_tDC912041941E8778D68BAE31B6E7CE869D420A59_il2cpp_TypeInfo_var); Action_2__ctor_m8A2A4A5281F15C044AA00C87B29024C6F2174DBC(L_17, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 63)), /*hidden argument*/Action_2__ctor_m8A2A4A5281F15C044AA00C87B29024C6F2174DBC_RuntimeMethod_var); NullCheck(L_14); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_14, L_16, L_17, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_18 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL); Action_2_t1C5018F55BC56EF9A077CA15281BD36D2672B5ED * L_21 = (Action_2_t1C5018F55BC56EF9A077CA15281BD36D2672B5ED *)il2cpp_codegen_object_new(Action_2_t1C5018F55BC56EF9A077CA15281BD36D2672B5ED_il2cpp_TypeInfo_var); Action_2__ctor_mD3AFF1FAC6D7829B6416F9103FF21A71A650F799(L_21, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 64)), /*hidden argument*/Action_2__ctor_mD3AFF1FAC6D7829B6416F9103FF21A71A650F799_RuntimeMethod_var); NullCheck(L_18); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_18, L_20, L_21, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_22 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL); Action_2_tC7C745CBFBB7BB441C7BCA9701E7E9DD6294A0FF * L_25 = (Action_2_tC7C745CBFBB7BB441C7BCA9701E7E9DD6294A0FF *)il2cpp_codegen_object_new(Action_2_tC7C745CBFBB7BB441C7BCA9701E7E9DD6294A0FF_il2cpp_TypeInfo_var); Action_2__ctor_m9AE4BB6CF48832A45FEB04472260C5FFA11C0996(L_25, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 65)), /*hidden argument*/Action_2__ctor_m9AE4BB6CF48832A45FEB04472260C5FFA11C0996_RuntimeMethod_var); NullCheck(L_22); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_22, L_24, L_25, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_26 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); Action_2_tA822F465A415381AE24537CFAA66F9939772731E * L_29 = (Action_2_tA822F465A415381AE24537CFAA66F9939772731E *)il2cpp_codegen_object_new(Action_2_tA822F465A415381AE24537CFAA66F9939772731E_il2cpp_TypeInfo_var); Action_2__ctor_m8D1A299D9396006EC283BDF038E14459010ACAE6(L_29, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 66)), /*hidden argument*/Action_2__ctor_m8D1A299D9396006EC283BDF038E14459010ACAE6_RuntimeMethod_var); NullCheck(L_26); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_26, L_28, L_29, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_30 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL); Action_2_tC9CC006F43344C8AE24F6EDBDE52190BF3592420 * L_33 = (Action_2_tC9CC006F43344C8AE24F6EDBDE52190BF3592420 *)il2cpp_codegen_object_new(Action_2_tC9CC006F43344C8AE24F6EDBDE52190BF3592420_il2cpp_TypeInfo_var); Action_2__ctor_m4B017524605FA5BD00B9D4B1C75C68A4F0CDD737(L_33, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 67)), /*hidden argument*/Action_2__ctor_m4B017524605FA5BD00B9D4B1C75C68A4F0CDD737_RuntimeMethod_var); NullCheck(L_30); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_30, L_32, L_33, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_34 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL); Action_2_t70253CD680198292E5DF471861B3D5822F8F33BE * L_37 = (Action_2_t70253CD680198292E5DF471861B3D5822F8F33BE *)il2cpp_codegen_object_new(Action_2_t70253CD680198292E5DF471861B3D5822F8F33BE_il2cpp_TypeInfo_var); Action_2__ctor_m3E84BC987DEFD9F0241B4C2A39988D27815FF748(L_37, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 68)), /*hidden argument*/Action_2__ctor_m3E84BC987DEFD9F0241B4C2A39988D27815FF748_RuntimeMethod_var); NullCheck(L_34); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_34, L_36, L_37, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_38 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_39, /*hidden argument*/NULL); Action_2_t7674A6DB22EF71B11822201850D25105DE66987D * L_41 = (Action_2_t7674A6DB22EF71B11822201850D25105DE66987D *)il2cpp_codegen_object_new(Action_2_t7674A6DB22EF71B11822201850D25105DE66987D_il2cpp_TypeInfo_var); Action_2__ctor_m5750437CF9F76A7E08B8AE8CFFF7EAACE26061B6(L_41, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 69)), /*hidden argument*/Action_2__ctor_m5750437CF9F76A7E08B8AE8CFFF7EAACE26061B6_RuntimeMethod_var); NullCheck(L_38); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_38, L_40, L_41, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_42 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_43, /*hidden argument*/NULL); Action_2_tA4D387C88A3C439A4931A264E2DEFEC33886F455 * L_45 = (Action_2_tA4D387C88A3C439A4931A264E2DEFEC33886F455 *)il2cpp_codegen_object_new(Action_2_tA4D387C88A3C439A4931A264E2DEFEC33886F455_il2cpp_TypeInfo_var); Action_2__ctor_mE2A3B1B42E56F3246BBEEFA3DBB4F3892B258F12(L_45, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 72)), /*hidden argument*/Action_2__ctor_mE2A3B1B42E56F3246BBEEFA3DBB4F3892B258F12_RuntimeMethod_var); NullCheck(L_42); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_42, L_44, L_45, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_46 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL); Action_2_tA44A311C6894DF2F28013A46BDCE66A5B02D20AF * L_49 = (Action_2_tA44A311C6894DF2F28013A46BDCE66A5B02D20AF *)il2cpp_codegen_object_new(Action_2_tA44A311C6894DF2F28013A46BDCE66A5B02D20AF_il2cpp_TypeInfo_var); Action_2__ctor_m02A9CB843BE610FB51DC156BFBEA8C7F0FC3E23F(L_49, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 70)), /*hidden argument*/Action_2__ctor_m02A9CB843BE610FB51DC156BFBEA8C7F0FC3E23F_RuntimeMethod_var); NullCheck(L_46); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_46, L_48, L_49, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_50 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_51 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_52 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_51, /*hidden argument*/NULL); Action_2_t323013173C7106CFC5254A38ABC5D91D7535BD20 * L_53 = (Action_2_t323013173C7106CFC5254A38ABC5D91D7535BD20 *)il2cpp_codegen_object_new(Action_2_t323013173C7106CFC5254A38ABC5D91D7535BD20_il2cpp_TypeInfo_var); Action_2__ctor_m3ABB71CACEB89ADA73DB4A7223AC1F9C4EF7D432(L_53, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 71)), /*hidden argument*/Action_2__ctor_m3ABB71CACEB89ADA73DB4A7223AC1F9C4EF7D432_RuntimeMethod_var); NullCheck(L_50); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_50, L_52, L_53, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_54 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_55 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) }; Type_t * L_56 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_55, /*hidden argument*/NULL); Action_2_t50900BA30DEE837C385216BCF44E28E7C7BB95C8 * L_57 = (Action_2_t50900BA30DEE837C385216BCF44E28E7C7BB95C8 *)il2cpp_codegen_object_new(Action_2_t50900BA30DEE837C385216BCF44E28E7C7BB95C8_il2cpp_TypeInfo_var); Action_2__ctor_m307BCB3F5B42CD72C66B9111DCA681B97AB55DFB(L_57, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 60)), /*hidden argument*/Action_2__ctor_m307BCB3F5B42CD72C66B9111DCA681B97AB55DFB_RuntimeMethod_var); NullCheck(L_54); Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF(L_54, L_56, L_57, /*hidden argument*/Dictionary_2_Add_m4C7ADF442885EE6502A1243A589B1AE441F26AEF_RuntimeMethod_var); Dictionary_2_t240E9A8DEFF426535C4F439270B948D405003028 * L_58 = V_0; __this->set_primitiveTypeWriters_5(L_58); return; } } // System.IO.Stream Sirenix.Serialization.SerializationNodeDataWriter::get_Stream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * SerializationNodeDataWriter_get_Stream_mC021383DE623A26AE272F6EC17E3B9DA537E121D (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_get_Stream_mC021383DE623A26AE272F6EC17E3B9DA537E121D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral15881B28DCD619AC5996159A0B062D0F97203959, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, SerializationNodeDataWriter_get_Stream_mC021383DE623A26AE272F6EC17E3B9DA537E121D_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::set_Stream(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_set_Stream_m22219F616E005DA7C4FFEDC370EC1FDF5AF97786 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_set_Stream_m22219F616E005DA7C4FFEDC370EC1FDF5AF97786_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral15881B28DCD619AC5996159A0B062D0F97203959, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, SerializationNodeDataWriter_set_Stream_m22219F616E005DA7C4FFEDC370EC1FDF5AF97786_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::BeginArrayNode(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_BeginArrayNode_m9EF2BE148AA692942B594F349542A3C902877776 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, int64_t ___length0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_BeginArrayNode_m9EF2BE148AA692942B594F349542A3C902877776_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(((int32_t)12)); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A((int64_t*)(&___length0), L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); BaseDataReaderWriter_PushArray_m59BE893F2995E7153327F7BE100436B6ECDB4A52(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::BeginReferenceNode(System.String,System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_BeginReferenceNode_m3EC2CB37A99AC6CFF7F634F2F53821E3311A9295 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, Type_t * ___type1, int32_t ___id2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_BeginReferenceNode_m3EC2CB37A99AC6CFF7F634F2F53821E3311A9295_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B2_0 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B2_1 = NULL; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B1_0 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B1_1 = NULL; String_t* G_B3_0 = NULL; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B3_1 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B3_2 = NULL; { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(7); Type_t * L_2 = ___type1; G_B1_0 = (&V_0); G_B1_1 = L_0; if (L_2) { G_B2_0 = (&V_0); G_B2_1 = L_0; goto IL_0031; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_4 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&___id2), L_3, /*hidden argument*/NULL); G_B3_0 = L_4; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_0068; } IL_0031: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_6 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&___id2), L_5, /*hidden argument*/NULL); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_7 = BaseDataWriter_get_Context_m12CFE06A23067930EFEDF6884B66DD198114C954(__this, /*hidden argument*/NULL); NullCheck(L_7); TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * L_8 = SerializationContext_get_Binder_m1EA22BD69060B0E4E284AA9568F215463709B91F(L_7, /*hidden argument*/NULL); Type_t * L_9 = ___type1; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_10 = BaseDataWriter_get_Context_m12CFE06A23067930EFEDF6884B66DD198114C954(__this, /*hidden argument*/NULL); NullCheck(L_10); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_11 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_10, /*hidden argument*/NULL); NullCheck(L_11); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_12 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_11, /*hidden argument*/NULL); NullCheck(L_8); String_t* L_13 = VirtFuncInvoker2< String_t*, Type_t *, DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * >::Invoke(4 /* System.String Sirenix.Serialization.TwoWaySerializationBinder::BindToName(System.Type,Sirenix.Serialization.DebugContext) */, L_8, L_9, L_12); String_t* L_14 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_6, _stringLiteral3EB416223E9E69E6BB8EE19793911AD1AD2027D8, L_13, /*hidden argument*/NULL); G_B3_0 = L_14; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_0068: { G_B3_1->set_Data_2(G_B3_0); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_15 = V_0; NullCheck(G_B3_2); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(G_B3_2, L_15, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); String_t* L_16 = ___name0; int32_t L_17 = ___id2; Type_t * L_18 = ___type1; BaseDataReaderWriter_PushNode_m21BC79BE8D6DE9301C83D778816473B7826FA761(__this, L_16, L_17, L_18, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::BeginStructNode(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_BeginStructNode_m9BF1DA06F7D088E104AB9F5020439A774D9D1BD2 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_BeginStructNode_m9BF1DA06F7D088E104AB9F5020439A774D9D1BD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B2_0 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B2_1 = NULL; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B1_0 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B1_1 = NULL; String_t* G_B3_0 = NULL; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B3_1 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B3_2 = NULL; { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(7); Type_t * L_2 = ___type1; G_B1_0 = (&V_0); G_B1_1 = L_0; if (L_2) { G_B2_0 = (&V_0); G_B2_1 = L_0; goto IL_002a; } } { G_B3_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_004b; } IL_002a: { SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_3 = BaseDataWriter_get_Context_m12CFE06A23067930EFEDF6884B66DD198114C954(__this, /*hidden argument*/NULL); NullCheck(L_3); TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * L_4 = SerializationContext_get_Binder_m1EA22BD69060B0E4E284AA9568F215463709B91F(L_3, /*hidden argument*/NULL); Type_t * L_5 = ___type1; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_6 = BaseDataWriter_get_Context_m12CFE06A23067930EFEDF6884B66DD198114C954(__this, /*hidden argument*/NULL); NullCheck(L_6); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_7 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_6, /*hidden argument*/NULL); NullCheck(L_7); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_8 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_7, /*hidden argument*/NULL); NullCheck(L_4); String_t* L_9 = VirtFuncInvoker2< String_t*, Type_t *, DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * >::Invoke(4 /* System.String Sirenix.Serialization.TwoWaySerializationBinder::BindToName(System.Type,Sirenix.Serialization.DebugContext) */, L_4, L_5, L_8); G_B3_0 = L_9; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_004b: { G_B3_1->set_Data_2(G_B3_0); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_10 = V_0; NullCheck(G_B3_2); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(G_B3_2, L_10, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); String_t* L_11 = ___name0; Type_t * L_12 = ___type1; BaseDataReaderWriter_PushNode_m21BC79BE8D6DE9301C83D778816473B7826FA761(__this, L_11, (-1), L_12, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_Dispose_m34AE1FE237E5801B47726AE0540FB4AE04EBF2CD (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, const RuntimeMethod* method) { { __this->set_nodes_4((List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB *)NULL); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::EndArrayNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_EndArrayNode_m5B7E8BCB124AC5D85B1F25D71B8CDC430DC5A62C (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_EndArrayNode_m5B7E8BCB124AC5D85B1F25D71B8CDC430DC5A62C_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { BaseDataReaderWriter_PopArray_m4DF3BD5CC9F49312DBE19F1B69757DD2647EBCC3(__this, /*hidden argument*/NULL); List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(((int32_t)13)); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); (&V_0)->set_Data_2(L_2); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_3 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_3, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::EndNode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_EndNode_m315D2C24F1EFFAB3022D00E69BAFA53EF51FABA6 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_EndNode_m315D2C24F1EFFAB3022D00E69BAFA53EF51FABA6_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___name0; BaseDataReaderWriter_PopNode_mF24548A2D19B1005E2FA2E1E11C3CA3CBD3B9A55(__this, L_0, /*hidden argument*/NULL); List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_1 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); (&V_0)->set_Name_0(L_2); (&V_0)->set_Entry_1(8); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_1); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_1, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::PrepareNewSerializationSession() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_PrepareNewSerializationSession_m2DCB3E7F13C94536CB6F31935E934453B9981901 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, const RuntimeMethod* method) { { BaseDataWriter_PrepareNewSerializationSession_mB478E28567215E0EEF44B11DA3430B9329DC7AF4(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteBoolean(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteBoolean_mDB92CDA756D758B0A14E6BE20344D4EC6C02A3EF (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, bool ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteBoolean_mDB92CDA756D758B0A14E6BE20344D4EC6C02A3EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B2_0 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B2_1 = NULL; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B1_0 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B1_1 = NULL; String_t* G_B3_0 = NULL; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 * G_B3_1 = NULL; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * G_B3_2 = NULL; { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(5); bool L_2 = ___value1; G_B1_0 = (&V_0); G_B1_1 = L_0; if (L_2) { G_B2_0 = (&V_0); G_B2_1 = L_0; goto IL_002a; } } { G_B3_0 = _stringLiteral7CB6EFB98BA5972A9B5090DC2E517FE14D12CB04; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_002f; } IL_002a: { G_B3_0 = _stringLiteral5FFE533B830F08A0326348A9160AFAFC8ADA44DB; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_002f: { G_B3_1->set_Data_2(G_B3_0); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_3 = V_0; NullCheck(G_B3_2); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(G_B3_2, L_3, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteByte(System.String,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteByte_mF1523D4D83EB93384DD20125889DA316C76AE8A5 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, uint8_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteByte_mF1523D4D83EB93384DD20125889DA316C76AE8A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(3); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)(&___value1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteChar(System.String,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteChar_m29A3C9534BBB290AA0435F67F65189B48CFE4F1A (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, Il2CppChar ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteChar_m29A3C9534BBB290AA0435F67F65189B48CFE4F1A_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(1); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE((Il2CppChar*)(&___value1), L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteDecimal(System.String,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteDecimal_m16DF5390CC99D3C3A3936AE436E38EAB87D12738 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteDecimal_m16DF5390CC99D3C3A3936AE436E38EAB87D12738_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(4); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Decimal_ToString_mDC8D45024F77E3D04FB6FBE74866CA11CC6B8BAD((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&___value1), _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteSingle(System.String,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteSingle_mB0A75AF2D945CA6B175228BAB19CF591DEFAAC55 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, float ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteSingle_mB0A75AF2D945CA6B175228BAB19CF591DEFAAC55_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(4); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Single_ToString_mCF682C2751EC9B98F1CE5455066B92D7D3356756((float*)(&___value1), _stringLiteral06576556D1AD802F247CAD11AE748BE47B70CD9C, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteDouble(System.String,System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteDouble_mD1FC5AA5C97C64F495E0D1DCF1B1FF940E2A96A0 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, double ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteDouble_mD1FC5AA5C97C64F495E0D1DCF1B1FF940E2A96A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(4); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616((double*)(&___value1), _stringLiteral06576556D1AD802F247CAD11AE748BE47B70CD9C, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteExternalReference(System.String,System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteExternalReference_m6A0AAE6638592D59E1D3392A35A7120836559F4F (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, Guid_t ___guid1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteExternalReference_m6A0AAE6638592D59E1D3392A35A7120836559F4F_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(((int32_t)11)); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Guid_ToString_mB5E607B4AFC58DCD842F03B5815C94B9E4BF2E45((Guid_t *)(&___guid1), _stringLiteralB51A60734DA64BE0E618BACBEA2865A8A7DCD669, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteExternalReference(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteExternalReference_m1DBDA9D8C444CE2BFEDC0E6927D91A4B4A63EF7B (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, String_t* ___id1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteExternalReference_m1DBDA9D8C444CE2BFEDC0E6927D91A4B4A63EF7B_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(((int32_t)16)); String_t* L_2 = ___id1; (&V_0)->set_Data_2(L_2); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_3 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_3, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteExternalReference(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteExternalReference_m5E926CF7E70B30C4C8C0D30915C968A024FF6004 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteExternalReference_m5E926CF7E70B30C4C8C0D30915C968A024FF6004_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(((int32_t)10)); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&___index1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteGuid(System.String,System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteGuid_m6FBF51B5D2D52698A16E290AC9B568B5025686D8 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, Guid_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteGuid_m6FBF51B5D2D52698A16E290AC9B568B5025686D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(2); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Guid_ToString_mB5E607B4AFC58DCD842F03B5815C94B9E4BF2E45((Guid_t *)(&___value1), _stringLiteralB51A60734DA64BE0E618BACBEA2865A8A7DCD669, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteInt16(System.String,System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteInt16_m18B8919921B7D0C0239F1B16D9E662BB55C8051D (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, int16_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteInt16_m18B8919921B7D0C0239F1B16D9E662BB55C8051D_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(3); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A((int16_t*)(&___value1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteInt32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteInt32_m9DCC744EED12D3C40D0ECD2F73C10E29DA1F1EEE (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteInt32_m9DCC744EED12D3C40D0ECD2F73C10E29DA1F1EEE_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(3); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&___value1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteInt64(System.String,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteInt64_mB602E9D170BACA93D158C226A32BD619ED5BC34C (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, int64_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteInt64_mB602E9D170BACA93D158C226A32BD619ED5BC34C_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(3); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517((int64_t*)(&___value1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteInternalReference(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteInternalReference_m837EB751BE7D61B4370AD81A966AAEB0DA4E1F9D (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, int32_t ___id1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteInternalReference_m837EB751BE7D61B4370AD81A966AAEB0DA4E1F9D_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(((int32_t)9)); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&___id1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteNull(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteNull_m5FC8A0DC584CB838FEDCEFB7AD779DB61C32E4AB (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteNull_m5FC8A0DC584CB838FEDCEFB7AD779DB61C32E4AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(6); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); (&V_0)->set_Data_2(L_2); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_3 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_3, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteSByte(System.String,System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteSByte_mABB4CC7159DA80A3D04C7BC20270F818D8B3A0DA (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, int8_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteSByte_mABB4CC7159DA80A3D04C7BC20270F818D8B3A0DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(3); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = SByte_ToString_mAD063E83F82B38DAAA379DF61C14D563588034D1((int8_t*)(&___value1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteString(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteString_mD83D2316EA7048B144565538D586DF041623786C (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteString_mD83D2316EA7048B144565538D586DF041623786C_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(1); String_t* L_2 = ___value1; (&V_0)->set_Data_2(L_2); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_3 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_3, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteUInt16(System.String,System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteUInt16_m4AE4068CEC5D0F83CBCD7ED93E23937F7A62A5CE (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, uint16_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteUInt16_m4AE4068CEC5D0F83CBCD7ED93E23937F7A62A5CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(3); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B((uint16_t*)(&___value1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteUInt32(System.String,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteUInt32_mBBC42C7487D3F4ED50EC932780593AADCA66A227 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, uint32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteUInt32_mBBC42C7487D3F4ED50EC932780593AADCA66A227_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(3); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = UInt32_ToString_m57BE7A0F4A653986FEAC4794CD13B04CE012F4EE((uint32_t*)(&___value1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::WriteUInt64(System.String,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_WriteUInt64_m9B0194B7CAF6452E3B3B00892C936E402AE25799 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, String_t* ___name0, uint64_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_WriteUInt64_m9B0194B7CAF6452E3B3B00892C936E402AE25799_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_0; memset((&V_0), 0, sizeof(V_0)); { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_0 = SerializationNodeDataWriter_get_Nodes_m94A1D3458D733F0D1D03594816B1BC0BC1320BF8(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 )); String_t* L_1 = ___name0; (&V_0)->set_Name_0(L_1); (&V_0)->set_Entry_1(3); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_3 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&___value1), _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_2, /*hidden argument*/NULL); (&V_0)->set_Data_2(L_3); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = V_0; NullCheck(L_0); List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109(L_0, L_4, /*hidden argument*/List_1_Add_mFA4E272D5F25541DEE433B4E7FB9790294A25109_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.SerializationNodeDataWriter::FlushToStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationNodeDataWriter_FlushToStream_mFA3AA1360F5E7BDDD1E2EE1435787F37846ABB28 (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, const RuntimeMethod* method) { { return; } } // System.String Sirenix.Serialization.SerializationNodeDataWriter::GetDataDump() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationNodeDataWriter_GetDataDump_m5684F357F00B55B52972C1DE8601634C41B72B7F (SerializationNodeDataWriter_t6C1388E70EF2BE3A8B0DFCB1EB202B5D966776B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationNodeDataWriter_GetDataDump_m5684F357F00B55B52972C1DE8601634C41B72B7F_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; int32_t V_1 = 0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 V_2; memset((&V_2), 0, sizeof(V_2)); { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL); V_0 = L_0; StringBuilder_t * L_1 = V_0; NullCheck(L_1); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteral1825416341A4674513A44A3F9965D8C77840CDB9, /*hidden argument*/NULL); V_1 = 0; goto IL_0071; } IL_0016: { List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_2 = __this->get_nodes_4(); int32_t L_3 = V_1; NullCheck(L_2); SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_inline(L_2, L_3, /*hidden argument*/List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_RuntimeMethod_var); V_2 = L_4; StringBuilder_t * L_5 = V_0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_6 = V_2; String_t* L_7 = L_6.get_Name_0(); String_t* L_8 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral2597F079BE5C91A1FD827E298163910FF12A932A, L_7, /*hidden argument*/NULL); NullCheck(L_5); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_5, L_8, /*hidden argument*/NULL); StringBuilder_t * L_9 = V_0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_10 = V_2; uint8_t L_11 = L_10.get_Entry_1(); int32_t L_12 = ((int32_t)L_11); RuntimeObject * L_13 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_12); String_t* L_14 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteralC086A605DCC2D39C6479DBE69F9E54C33A7A4B5B, L_13, /*hidden argument*/NULL); NullCheck(L_9); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_9, L_14, /*hidden argument*/NULL); StringBuilder_t * L_15 = V_0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_16 = V_2; String_t* L_17 = L_16.get_Data_2(); String_t* L_18 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral0DC37C14FE8E613E0C92BCFAA5935D4AA0FFA532, L_17, /*hidden argument*/NULL); NullCheck(L_15); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_15, L_18, /*hidden argument*/NULL); int32_t L_19 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0071: { int32_t L_20 = V_1; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_21 = __this->get_nodes_4(); NullCheck(L_21); int32_t L_22 = List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_inline(L_21, /*hidden argument*/List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_RuntimeMethod_var); if ((((int32_t)L_20) < ((int32_t)L_22))) { goto IL_0016; } } { StringBuilder_t * L_23 = V_0; NullCheck(L_23); String_t* L_24 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_23); return L_24; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.SerializationPolicies::TryGetByID(System.String,Sirenix.Serialization.ISerializationPolicy&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationPolicies_TryGetByID_mECE8A5AC36D0D308381A5D6F9698DFC2BE48D823 (String_t* ___name0, RuntimeObject** ___policy1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationPolicies_TryGetByID_mECE8A5AC36D0D308381A5D6F9698DFC2BE48D823_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; bool L_1 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, _stringLiteralE6CD74331AD7D89119B29CDA1646665AD0D7AC6A, /*hidden argument*/NULL); if (L_1) { goto IL_0029; } } { String_t* L_2 = ___name0; bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, _stringLiteralAFE9577A23508A3977D8B04CD23DF5D51BD7666B, /*hidden argument*/NULL); if (L_3) { goto IL_0032; } } { String_t* L_4 = ___name0; bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, _stringLiteralCEBF154FA93CAA834296E0A53DAC12CF9BECDC42, /*hidden argument*/NULL); if (L_5) { goto IL_003b; } } { goto IL_0044; } IL_0029: { RuntimeObject** L_6 = ___policy1; IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_7 = SerializationPolicies_get_Everything_mDE213BAA0B762DF663008E7DDEBD9A9144DB5D49(/*hidden argument*/NULL); *((RuntimeObject **)L_6) = (RuntimeObject *)L_7; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_6, (void*)(RuntimeObject *)L_7); goto IL_0047; } IL_0032: { RuntimeObject** L_8 = ___policy1; IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_9 = SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712(/*hidden argument*/NULL); *((RuntimeObject **)L_8) = (RuntimeObject *)L_9; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_8, (void*)(RuntimeObject *)L_9); goto IL_0047; } IL_003b: { RuntimeObject** L_10 = ___policy1; IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_11 = SerializationPolicies_get_Strict_m10E331DFA0E733250AFA359B589BB79283172F75(/*hidden argument*/NULL); *((RuntimeObject **)L_10) = (RuntimeObject *)L_11; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_10, (void*)(RuntimeObject *)L_11); goto IL_0047; } IL_0044: { RuntimeObject** L_12 = ___policy1; *((RuntimeObject **)L_12) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_12, (void*)(RuntimeObject *)NULL); } IL_0047: { RuntimeObject** L_13 = ___policy1; RuntimeObject* L_14 = *((RuntimeObject**)L_13); return (bool)((!(((RuntimeObject*)(RuntimeObject*)L_14) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.SerializationPolicies::get_Everything() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationPolicies_get_Everything_mDE213BAA0B762DF663008E7DDEBD9A9144DB5D49 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationPolicies_get_Everything_mDE213BAA0B762DF663008E7DDEBD9A9144DB5D49_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B5_0 = NULL; int32_t G_B5_1 = 0; String_t* G_B5_2 = NULL; Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B4_0 = NULL; int32_t G_B4_1 = 0; String_t* G_B4_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_everythingPolicy_1(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0058; } } { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject * L_1 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_LOCK_0(); V_0 = L_1; RuntimeObject * L_2 = V_0; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_2, /*hidden argument*/NULL); } IL_0015: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_3 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_everythingPolicy_1(); il2cpp_codegen_memory_barrier(); if (L_3) { goto IL_004f; } } IL_001e: { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_4 = ((U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var))->get_U3CU3E9__6_0_1(); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_5 = L_4; G_B4_0 = L_5; G_B4_1 = 1; G_B4_2 = _stringLiteralE6CD74331AD7D89119B29CDA1646665AD0D7AC6A; if (L_5) { G_B5_0 = L_5; G_B5_1 = 1; G_B5_2 = _stringLiteralE6CD74331AD7D89119B29CDA1646665AD0D7AC6A; goto IL_0043; } } IL_002c: { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var); U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * L_6 = ((U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_7 = (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *)il2cpp_codegen_object_new(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var); Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979(L_7, L_6, (intptr_t)((intptr_t)U3CU3Ec_U3Cget_EverythingU3Eb__6_0_mA8C7868D84047119DE1166B0CFD973E8D072962D_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_8 = L_7; ((U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var))->set_U3CU3E9__6_0_1(L_8); G_B5_0 = L_8; G_B5_1 = G_B4_1; G_B5_2 = G_B4_2; } IL_0043: { CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1 * L_9 = (CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1 *)il2cpp_codegen_object_new(CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1_il2cpp_TypeInfo_var); CustomSerializationPolicy__ctor_m39454A4A379A917AB699E08CD704FDCB6B0FDB80(L_9, G_B5_2, (bool)G_B5_1, G_B5_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->set_everythingPolicy_1(L_9); } IL_004f: { IL2CPP_LEAVE(0x58, FINALLY_0051); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0051; } FINALLY_0051: { // begin finally (depth: 1) RuntimeObject * L_10 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_10, /*hidden argument*/NULL); IL2CPP_END_FINALLY(81) } // end finally (depth: 1) IL2CPP_CLEANUP(81) { IL2CPP_JUMP_TBL(0x58, IL_0058) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0058: { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_11 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_everythingPolicy_1(); il2cpp_codegen_memory_barrier(); return L_11; } } // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.SerializationPolicies::get_Unity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Type_t * G_B5_0 = NULL; U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * G_B5_1 = NULL; Type_t * G_B4_0 = NULL; U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * G_B4_1 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_unityPolicy_2(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0087; } } { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject * L_1 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_LOCK_0(); V_0 = L_1; RuntimeObject * L_2 = V_0; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_2, /*hidden argument*/NULL); } IL_0015: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_3 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_unityPolicy_2(); il2cpp_codegen_memory_barrier(); if (L_3) { goto IL_007e; } } IL_001e: { U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * L_4 = (U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass8_0__ctor_m8A3F6EDD6C49B1BA03F62E93E88C8BE2FB7B40B0(L_4, /*hidden argument*/NULL); V_1 = L_4; U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * L_5 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL); NullCheck(L_7); Assembly_t * L_8 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_7); NullCheck(L_8); Type_t * L_9 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(17 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_8, _stringLiteral85571E14BAE2842DCEBE5D7FD13DB2D8DDE777AD); Type_t * L_10 = L_9; G_B4_0 = L_10; G_B4_1 = L_5; if (L_10) { G_B5_0 = L_10; G_B5_1 = L_5; goto IL_005b; } } IL_0041: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); NullCheck(L_12); Assembly_t * L_13 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_12); NullCheck(L_13); Type_t * L_14 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(17 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_13, _stringLiteralF0CB7F34EA69F3D9331B4A6C6E3C10852F6E417E); G_B5_0 = L_14; G_B5_1 = G_B4_1; } IL_005b: { NullCheck(G_B5_1); G_B5_1->set_tupleInterface_0(G_B5_0); U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * L_15 = V_1; Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_16 = (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *)il2cpp_codegen_object_new(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var); Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979(L_16, L_15, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass8_0_U3Cget_UnityU3Eb__0_mBB7A55BEEF89DEB371F773205D58EC3216D58514_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var); CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1 * L_17 = (CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1 *)il2cpp_codegen_object_new(CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1_il2cpp_TypeInfo_var); CustomSerializationPolicy__ctor_m39454A4A379A917AB699E08CD704FDCB6B0FDB80(L_17, _stringLiteralAFE9577A23508A3977D8B04CD23DF5D51BD7666B, (bool)1, L_16, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->set_unityPolicy_2(L_17); } IL_007e: { IL2CPP_LEAVE(0x87, FINALLY_0080); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0080; } FINALLY_0080: { // begin finally (depth: 1) RuntimeObject * L_18 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_18, /*hidden argument*/NULL); IL2CPP_END_FINALLY(128) } // end finally (depth: 1) IL2CPP_CLEANUP(128) { IL2CPP_JUMP_TBL(0x87, IL_0087) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0087: { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_19 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_unityPolicy_2(); il2cpp_codegen_memory_barrier(); return L_19; } } // Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.SerializationPolicies::get_Strict() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationPolicies_get_Strict_m10E331DFA0E733250AFA359B589BB79283172F75 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationPolicies_get_Strict_m10E331DFA0E733250AFA359B589BB79283172F75_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B5_0 = NULL; int32_t G_B5_1 = 0; String_t* G_B5_2 = NULL; Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B4_0 = NULL; int32_t G_B4_1 = 0; String_t* G_B4_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_strictPolicy_3(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0058; } } { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject * L_1 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_LOCK_0(); V_0 = L_1; RuntimeObject * L_2 = V_0; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_2, /*hidden argument*/NULL); } IL_0015: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_3 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_strictPolicy_3(); il2cpp_codegen_memory_barrier(); if (L_3) { goto IL_004f; } } IL_001e: { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_4 = ((U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var))->get_U3CU3E9__10_0_2(); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_5 = L_4; G_B4_0 = L_5; G_B4_1 = 1; G_B4_2 = _stringLiteralCEBF154FA93CAA834296E0A53DAC12CF9BECDC42; if (L_5) { G_B5_0 = L_5; G_B5_1 = 1; G_B5_2 = _stringLiteralCEBF154FA93CAA834296E0A53DAC12CF9BECDC42; goto IL_0043; } } IL_002c: { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var); U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * L_6 = ((U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_7 = (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *)il2cpp_codegen_object_new(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var); Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979(L_7, L_6, (intptr_t)((intptr_t)U3CU3Ec_U3Cget_StrictU3Eb__10_0_m8B795724CFCD6C12E683D6B757C1573AAB651E6E_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var); Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_8 = L_7; ((U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var))->set_U3CU3E9__10_0_2(L_8); G_B5_0 = L_8; G_B5_1 = G_B4_1; G_B5_2 = G_B4_2; } IL_0043: { CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1 * L_9 = (CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1 *)il2cpp_codegen_object_new(CustomSerializationPolicy_tB90A577F9ED441FA2318B5952C8CB97949DB75F1_il2cpp_TypeInfo_var); CustomSerializationPolicy__ctor_m39454A4A379A917AB699E08CD704FDCB6B0FDB80(L_9, G_B5_2, (bool)G_B5_1, G_B5_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->set_strictPolicy_3(L_9); } IL_004f: { IL2CPP_LEAVE(0x58, FINALLY_0051); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0051; } FINALLY_0051: { // begin finally (depth: 1) RuntimeObject * L_10 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_10, /*hidden argument*/NULL); IL2CPP_END_FINALLY(81) } // end finally (depth: 1) IL2CPP_CLEANUP(81) { IL2CPP_JUMP_TBL(0x58, IL_0058) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0058: { IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_11 = ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->get_strictPolicy_3(); il2cpp_codegen_memory_barrier(); return L_11; } } // System.Void Sirenix.Serialization.SerializationPolicies::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationPolicies__cctor_m81D8788C9D8810EDC2447772C1D79277098BEEFD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationPolicies__cctor_m81D8788C9D8810EDC2447772C1D79277098BEEFD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL); ((SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_StaticFields*)il2cpp_codegen_static_fields_for(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var))->set_LOCK_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.SerializationPolicies_<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mD988BDF2D2A2CD3732988BF943AD158B3ABED18D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_mD988BDF2D2A2CD3732988BF943AD158B3ABED18D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * L_0 = (U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 *)il2cpp_codegen_object_new(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var); U3CU3Ec__ctor_mC1EDB86867799A7593066288B48120D7B91B05C9(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void Sirenix.Serialization.SerializationPolicies_<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mC1EDB86867799A7593066288B48120D7B91B05C9 (U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Boolean Sirenix.Serialization.SerializationPolicies_<>c::<get_Everything>b__6_0(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3Cget_EverythingU3Eb__6_0_mA8C7868D84047119DE1166B0CFD973E8D072962D (U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * __this, MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3Cget_EverythingU3Eb__6_0_mA8C7868D84047119DE1166B0CFD973E8D072962D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = ___member0; if (((FieldInfo_t *)IsInstClass((RuntimeObject*)L_0, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { MemberInfo_t * L_1 = ___member0; bool L_2 = MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mAE8D80673CB3522EEC77BC730EE1F2B20522F978(L_1, (bool)1, /*hidden argument*/MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mAE8D80673CB3522EEC77BC730EE1F2B20522F978_RuntimeMethod_var); if (!L_2) { goto IL_0015; } } { return (bool)1; } IL_0015: { MemberInfo_t * L_3 = ___member0; bool L_4 = MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m898FCF635A0798B453FD9D444A53EA11B0E3883F(L_3, (bool)1, /*hidden argument*/MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m898FCF635A0798B453FD9D444A53EA11B0E3883F_RuntimeMethod_var); return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0); } } // System.Boolean Sirenix.Serialization.SerializationPolicies_<>c::<get_Strict>b__10_0(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3Cget_StrictU3Eb__10_0_m8B795724CFCD6C12E683D6B757C1573AAB651E6E (U3CU3Ec_t599930B55760B0A21861043C12FC8C97A9CD1EA7 * __this, MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3Cget_StrictU3Eb__10_0_m8B795724CFCD6C12E683D6B757C1573AAB651E6E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = ___member0; if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_0, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0018; } } { MemberInfo_t * L_1 = ___member0; bool L_2 = PropertyInfoExtensions_IsAutoProperty_m68AE118AC15FBBED6C356EA3D9BF1FA25FD2E0F8(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_1, PropertyInfo_t_il2cpp_TypeInfo_var)), (bool)0, /*hidden argument*/NULL); if (L_2) { goto IL_0018; } } { return (bool)0; } IL_0018: { MemberInfo_t * L_3 = ___member0; bool L_4 = MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m92278158A17F05F659896BC9539564EBFAA3AD70(L_3, /*hidden argument*/MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m92278158A17F05F659896BC9539564EBFAA3AD70_RuntimeMethod_var); if (!L_4) { goto IL_0022; } } { return (bool)0; } IL_0022: { MemberInfo_t * L_5 = ___member0; if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_5, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_0046; } } { MemberInfo_t * L_6 = ___member0; NullCheck(L_6); Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_6); NullCheck(L_7); bool L_8 = Type_get_IsNestedPrivate_m3B15EC7047516CDF3CFC0F304EEBF25CC4DAECE4(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0046; } } { MemberInfo_t * L_9 = ___member0; NullCheck(L_9); Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_11 = TypeExtensions_IsDefined_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m318D8AE203E9C8AE1DC438F99CA761E2BB3C16F5(L_10, /*hidden argument*/TypeExtensions_IsDefined_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m318D8AE203E9C8AE1DC438F99CA761E2BB3C16F5_RuntimeMethod_var); if (!L_11) { goto IL_0046; } } { return (bool)1; } IL_0046: { MemberInfo_t * L_12 = ___member0; bool L_13 = MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m051E2A02F064E62AFF7041861D4F7F2188D65080(L_12, (bool)0, /*hidden argument*/MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m051E2A02F064E62AFF7041861D4F7F2188D65080_RuntimeMethod_var); if (L_13) { goto IL_006e; } } { MemberInfo_t * L_14 = ___member0; bool L_15 = MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mAE8D80673CB3522EEC77BC730EE1F2B20522F978(L_14, (bool)0, /*hidden argument*/MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mAE8D80673CB3522EEC77BC730EE1F2B20522F978_RuntimeMethod_var); if (L_15) { goto IL_006e; } } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Type_t * L_16 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_SerializeReferenceAttributeType_0(); if (!L_16) { goto IL_006c; } } { MemberInfo_t * L_17 = ___member0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Type_t * L_18 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_SerializeReferenceAttributeType_0(); NullCheck(L_17); bool L_19 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_17, L_18, (bool)0); return L_19; } IL_006c: { return (bool)0; } IL_006e: { return (bool)1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.SerializationPolicies_<>c__DisplayClass8_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass8_0__ctor_m8A3F6EDD6C49B1BA03F62E93E88C8BE2FB7B40B0 (U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Boolean Sirenix.Serialization.SerializationPolicies_<>c__DisplayClass8_0::<get_Unity>b__0(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass8_0_U3Cget_UnityU3Eb__0_mBB7A55BEEF89DEB371F773205D58EC3216D58514 (U3CU3Ec__DisplayClass8_0_t4B61FBA17F97AF71C17DB71ADC72627C7916765D * __this, MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass8_0_U3Cget_UnityU3Eb__0_mBB7A55BEEF89DEB371F773205D58EC3216D58514_MetadataUsageId); s_Il2CppMethodInitialized = true; } PropertyInfo_t * V_0 = NULL; { MemberInfo_t * L_0 = ___member0; if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_0, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0023; } } { MemberInfo_t * L_1 = ___member0; V_0 = ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_1, PropertyInfo_t_il2cpp_TypeInfo_var)); PropertyInfo_t * L_2 = V_0; NullCheck(L_2); MethodInfo_t * L_3 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(22 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_2, (bool)1); if (!L_3) { goto IL_0021; } } { PropertyInfo_t * L_4 = V_0; NullCheck(L_4); MethodInfo_t * L_5 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(25 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_4, (bool)1); if (L_5) { goto IL_0023; } } IL_0021: { return (bool)0; } IL_0023: { MemberInfo_t * L_6 = ___member0; bool L_7 = MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m898FCF635A0798B453FD9D444A53EA11B0E3883F(L_6, (bool)1, /*hidden argument*/MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m898FCF635A0798B453FD9D444A53EA11B0E3883F_RuntimeMethod_var); if (!L_7) { goto IL_0036; } } { MemberInfo_t * L_8 = ___member0; bool L_9 = MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mF99D7C8B327C81D20920C1BBFBF7CBEB4915F2F9(L_8, /*hidden argument*/MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mF99D7C8B327C81D20920C1BBFBF7CBEB4915F2F9_RuntimeMethod_var); if (L_9) { goto IL_0036; } } { return (bool)0; } IL_0036: { MemberInfo_t * L_10 = ___member0; if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_10, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_0082; } } { MemberInfo_t * L_11 = ___member0; NullCheck(((FieldInfo_t *)IsInstClass((RuntimeObject*)L_11, FieldInfo_t_il2cpp_TypeInfo_var))); bool L_12 = FieldInfo_get_IsPublic_m9265C7C7F78B6E7361D9C3A1D09B8360B699D1C6(((FieldInfo_t *)IsInstClass((RuntimeObject*)L_11, FieldInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_12) { goto IL_0080; } } { MemberInfo_t * L_13 = ___member0; NullCheck(L_13); Type_t * L_14 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_13); NullCheck(L_14); bool L_15 = Type_get_IsNestedPrivate_m3B15EC7047516CDF3CFC0F304EEBF25CC4DAECE4(L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0065; } } { MemberInfo_t * L_16 = ___member0; NullCheck(L_16); Type_t * L_17 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_16); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_18 = TypeExtensions_IsDefined_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m318D8AE203E9C8AE1DC438F99CA761E2BB3C16F5(L_17, /*hidden argument*/TypeExtensions_IsDefined_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m318D8AE203E9C8AE1DC438F99CA761E2BB3C16F5_RuntimeMethod_var); if (L_18) { goto IL_0080; } } IL_0065: { Type_t * L_19 = __this->get_tupleInterface_0(); if (!L_19) { goto IL_0082; } } { Type_t * L_20 = __this->get_tupleInterface_0(); MemberInfo_t * L_21 = ___member0; NullCheck(L_21); Type_t * L_22 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_21); NullCheck(L_20); bool L_23 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_20, L_22); if (!L_23) { goto IL_0082; } } IL_0080: { return (bool)1; } IL_0082: { MemberInfo_t * L_24 = ___member0; bool L_25 = MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m051E2A02F064E62AFF7041861D4F7F2188D65080(L_24, (bool)0, /*hidden argument*/MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m051E2A02F064E62AFF7041861D4F7F2188D65080_RuntimeMethod_var); if (L_25) { goto IL_00aa; } } { MemberInfo_t * L_26 = ___member0; bool L_27 = MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mAE8D80673CB3522EEC77BC730EE1F2B20522F978(L_26, (bool)0, /*hidden argument*/MemberInfoExtensions_IsDefined_TisOdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_mAE8D80673CB3522EEC77BC730EE1F2B20522F978_RuntimeMethod_var); if (L_27) { goto IL_00aa; } } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Type_t * L_28 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_SerializeReferenceAttributeType_0(); if (!L_28) { goto IL_00a8; } } { MemberInfo_t * L_29 = ___member0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Type_t * L_30 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_SerializeReferenceAttributeType_0(); NullCheck(L_29); bool L_31 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_29, L_30, (bool)0); return L_31; } IL_00a8: { return (bool)0; } IL_00aa: { return (bool)1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Sirenix.Serialization.IDataWriter Sirenix.Serialization.SerializationUtility::CreateWriter(System.IO.Stream,Sirenix.Serialization.SerializationContext,Sirenix.Serialization.DataFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationUtility_CreateWriter_m467D77ACEAB35AC0F87A3445C465EDF58DEA67D2 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_CreateWriter_m467D77ACEAB35AC0F87A3445C465EDF58DEA67D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format2; switch (L_0) { case 0: { goto IL_0014; } case 1: { goto IL_001c; } case 2: { goto IL_0025; } } } { goto IL_0041; } IL_0014: { Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = ___stream0; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_2 = ___context1; BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * L_3 = (BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A *)il2cpp_codegen_object_new(BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A_il2cpp_TypeInfo_var); BinaryDataWriter__ctor_mECD38E70F171CAFF12A8901DD68373AE3449106F(L_3, L_1, L_2, /*hidden argument*/NULL); return L_3; } IL_001c: { Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream0; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_5 = ___context1; JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_6 = (JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B *)il2cpp_codegen_object_new(JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B_il2cpp_TypeInfo_var); JsonDataWriter__ctor_m82617520A6A7F75545B95A24FB7415598A0C34DB(L_6, L_4, L_5, (bool)1, /*hidden argument*/NULL); return L_6; } IL_0025: { int32_t L_7 = ((int32_t)2); RuntimeObject * L_8 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, &L_7); String_t* L_9 = String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC(_stringLiteral26107C0E8EAF718AC5559FC9D47811FFEF65C611, L_8, _stringLiteral33C6A155A5272A3F8B362DBB152921A5E1BEDF22, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_9, /*hidden argument*/NULL); return (RuntimeObject*)NULL; } IL_0041: { RuntimeObject * L_10 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&___format2)); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); ___format2 = *(int32_t*)UnBox(L_10); NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_12 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, SerializationUtility_CreateWriter_m467D77ACEAB35AC0F87A3445C465EDF58DEA67D2_RuntimeMethod_var); } } // Sirenix.Serialization.IDataReader Sirenix.Serialization.SerializationUtility::CreateReader(System.IO.Stream,Sirenix.Serialization.DeserializationContext,Sirenix.Serialization.DataFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationUtility_CreateReader_mB72AFE4B76EB61270E7D5E97AA4BC3C1E3D30A90 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_CreateReader_mB72AFE4B76EB61270E7D5E97AA4BC3C1E3D30A90_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format2; switch (L_0) { case 0: { goto IL_0014; } case 1: { goto IL_001c; } case 2: { goto IL_0024; } } } { goto IL_0040; } IL_0014: { Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = ___stream0; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_2 = ___context1; BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * L_3 = (BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 *)il2cpp_codegen_object_new(BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293_il2cpp_TypeInfo_var); BinaryDataReader__ctor_mE15FEBC1FBF7574C73ADCF8CA9D2373ACDA2B840(L_3, L_1, L_2, /*hidden argument*/NULL); return L_3; } IL_001c: { Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream0; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_5 = ___context1; JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_6 = (JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 *)il2cpp_codegen_object_new(JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8_il2cpp_TypeInfo_var); JsonDataReader__ctor_m44D8349D5911BA404E6277043FCB653F2036A117(L_6, L_4, L_5, /*hidden argument*/NULL); return L_6; } IL_0024: { int32_t L_7 = ((int32_t)2); RuntimeObject * L_8 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, &L_7); String_t* L_9 = String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC(_stringLiteral983F612AB464902133354FA4B0E3780DB315F78A, L_8, _stringLiteral33C6A155A5272A3F8B362DBB152921A5E1BEDF22, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_9, /*hidden argument*/NULL); return (RuntimeObject*)NULL; } IL_0040: { RuntimeObject * L_10 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&___format2)); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); ___format2 = *(int32_t*)UnBox(L_10); NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_12 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, SerializationUtility_CreateReader_mB72AFE4B76EB61270E7D5E97AA4BC3C1E3D30A90_RuntimeMethod_var); } } // Sirenix.Serialization.IDataWriter Sirenix.Serialization.SerializationUtility::GetCachedWriter(System.IDisposable&,Sirenix.Serialization.DataFormat,System.IO.Stream,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0 (RuntimeObject** ___cache0, int32_t ___format1, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream2, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * V_1 = NULL; BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * V_2 = NULL; Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * V_3 = NULL; JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * V_4 = NULL; { int32_t L_0 = ___format1; if (L_0) { goto IL_002b; } } { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61_il2cpp_TypeInfo_var); Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * L_1 = Cache_1_Claim_mF29D323401A864DEAAD720ACA649217D1A1EA8AA(/*hidden argument*/Cache_1_Claim_mF29D323401A864DEAAD720ACA649217D1A1EA8AA_RuntimeMethod_var); V_1 = L_1; Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * L_2 = V_1; NullCheck(L_2); BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * L_3 = L_2->get_Value_5(); V_2 = L_3; BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * L_4 = V_2; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = ___stream2; NullCheck(L_4); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(45 /* System.Void Sirenix.Serialization.BaseDataWriter::set_Stream(System.IO.Stream) */, L_4, L_5); BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * L_6 = V_2; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_7 = ___context3; NullCheck(L_6); BaseDataWriter_set_Context_mEE563E3E13FE5E5D22B8E78572293E04BC474BA7_inline(L_6, L_7, /*hidden argument*/NULL); BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * L_8 = V_2; NullCheck(L_8); VirtActionInvoker0::Invoke(74 /* System.Void Sirenix.Serialization.BaseDataWriter::PrepareNewSerializationSession() */, L_8); BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * L_9 = V_2; V_0 = L_9; RuntimeObject** L_10 = ___cache0; Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * L_11 = V_1; *((RuntimeObject **)L_10) = (RuntimeObject *)L_11; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_10, (void*)(RuntimeObject *)L_11); goto IL_008e; } IL_002b: { int32_t L_12 = ___format1; if ((!(((uint32_t)L_12) == ((uint32_t)1)))) { goto IL_005c; } } { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_il2cpp_TypeInfo_var); Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_13 = Cache_1_Claim_m3D0E86AFDAA6216440B4E93EEA91DF34AD561A20(/*hidden argument*/Cache_1_Claim_m3D0E86AFDAA6216440B4E93EEA91DF34AD561A20_RuntimeMethod_var); V_3 = L_13; Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_14 = V_3; NullCheck(L_14); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_15 = L_14->get_Value_5(); V_4 = L_15; JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_16 = V_4; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_17 = ___stream2; NullCheck(L_16); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(45 /* System.Void Sirenix.Serialization.BaseDataWriter::set_Stream(System.IO.Stream) */, L_16, L_17); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_18 = V_4; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_19 = ___context3; NullCheck(L_18); BaseDataWriter_set_Context_mEE563E3E13FE5E5D22B8E78572293E04BC474BA7_inline(L_18, L_19, /*hidden argument*/NULL); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_20 = V_4; NullCheck(L_20); VirtActionInvoker0::Invoke(74 /* System.Void Sirenix.Serialization.BaseDataWriter::PrepareNewSerializationSession() */, L_20); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_21 = V_4; V_0 = L_21; RuntimeObject** L_22 = ___cache0; Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_23 = V_3; *((RuntimeObject **)L_22) = (RuntimeObject *)L_23; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_22, (void*)(RuntimeObject *)L_23); goto IL_008e; } IL_005c: { int32_t L_24 = ___format1; if ((!(((uint32_t)L_24) == ((uint32_t)2)))) { goto IL_007b; } } { int32_t L_25 = ((int32_t)2); RuntimeObject * L_26 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, &L_25); String_t* L_27 = String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC(_stringLiteral26107C0E8EAF718AC5559FC9D47811FFEF65C611, L_26, _stringLiteral33C6A155A5272A3F8B362DBB152921A5E1BEDF22, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_28 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_28, L_27, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0_RuntimeMethod_var); } IL_007b: { RuntimeObject * L_29 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&___format1)); NullCheck(L_29); String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_29); ___format1 = *(int32_t*)UnBox(L_29); NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_31 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C(L_31, L_30, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0_RuntimeMethod_var); } IL_008e: { RuntimeObject* L_32 = V_0; return L_32; } } // Sirenix.Serialization.IDataReader Sirenix.Serialization.SerializationUtility::GetCachedReader(System.IDisposable&,Sirenix.Serialization.DataFormat,System.IO.Stream,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653 (RuntimeObject** ___cache0, int32_t ___format1, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream2, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * V_1 = NULL; BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * V_2 = NULL; Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * V_3 = NULL; JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * V_4 = NULL; { int32_t L_0 = ___format1; if (L_0) { goto IL_002b; } } { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06_il2cpp_TypeInfo_var); Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * L_1 = Cache_1_Claim_mCD18E4724791F8E40BA81D9A5EF7A54D0C2B1EE3(/*hidden argument*/Cache_1_Claim_mCD18E4724791F8E40BA81D9A5EF7A54D0C2B1EE3_RuntimeMethod_var); V_1 = L_1; Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * L_2 = V_1; NullCheck(L_2); BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * L_3 = L_2->get_Value_5(); V_2 = L_3; BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * L_4 = V_2; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = ___stream2; NullCheck(L_4); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(48 /* System.Void Sirenix.Serialization.BaseDataReader::set_Stream(System.IO.Stream) */, L_4, L_5); BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * L_6 = V_2; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_7 = ___context3; NullCheck(L_6); BaseDataReader_set_Context_mB0441E42B9E9CABD729ECEAAAA1302BE2CA6BF00_inline(L_6, L_7, /*hidden argument*/NULL); BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * L_8 = V_2; NullCheck(L_8); VirtActionInvoker0::Invoke(77 /* System.Void Sirenix.Serialization.BaseDataReader::PrepareNewSerializationSession() */, L_8); BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * L_9 = V_2; V_0 = L_9; RuntimeObject** L_10 = ___cache0; Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * L_11 = V_1; *((RuntimeObject **)L_10) = (RuntimeObject *)L_11; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_10, (void*)(RuntimeObject *)L_11); goto IL_008e; } IL_002b: { int32_t L_12 = ___format1; if ((!(((uint32_t)L_12) == ((uint32_t)1)))) { goto IL_005c; } } { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_il2cpp_TypeInfo_var); Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_13 = Cache_1_Claim_mC72FC018F570A496E42E86BB6F17A33950A01B95(/*hidden argument*/Cache_1_Claim_mC72FC018F570A496E42E86BB6F17A33950A01B95_RuntimeMethod_var); V_3 = L_13; Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_14 = V_3; NullCheck(L_14); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_15 = L_14->get_Value_5(); V_4 = L_15; JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_16 = V_4; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_17 = ___stream2; NullCheck(L_16); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(48 /* System.Void Sirenix.Serialization.BaseDataReader::set_Stream(System.IO.Stream) */, L_16, L_17); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_18 = V_4; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_19 = ___context3; NullCheck(L_18); BaseDataReader_set_Context_mB0441E42B9E9CABD729ECEAAAA1302BE2CA6BF00_inline(L_18, L_19, /*hidden argument*/NULL); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_20 = V_4; NullCheck(L_20); VirtActionInvoker0::Invoke(77 /* System.Void Sirenix.Serialization.BaseDataReader::PrepareNewSerializationSession() */, L_20); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_21 = V_4; V_0 = L_21; RuntimeObject** L_22 = ___cache0; Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_23 = V_3; *((RuntimeObject **)L_22) = (RuntimeObject *)L_23; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_22, (void*)(RuntimeObject *)L_23); goto IL_008e; } IL_005c: { int32_t L_24 = ___format1; if ((!(((uint32_t)L_24) == ((uint32_t)2)))) { goto IL_007b; } } { int32_t L_25 = ((int32_t)2); RuntimeObject * L_26 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, &L_25); String_t* L_27 = String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC(_stringLiteral983F612AB464902133354FA4B0E3780DB315F78A, L_26, _stringLiteral33C6A155A5272A3F8B362DBB152921A5E1BEDF22, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_28 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_28, L_27, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653_RuntimeMethod_var); } IL_007b: { RuntimeObject * L_29 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&___format1)); NullCheck(L_29); String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_29); ___format1 = *(int32_t*)UnBox(L_29); NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_31 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C(L_31, L_30, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653_RuntimeMethod_var); } IL_008e: { RuntimeObject* L_32 = V_0; return L_32; } } // System.Void Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValueWeak_m37B62101CC8AB3F65C2F2AA58F190C28609C20C1 (RuntimeObject * ___value0, RuntimeObject* ___writer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_SerializeValueWeak_m37B62101CC8AB3F65C2F2AA58F190C28609C20C1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_1 = Serializer_GetForValue_m2ED56379A29E1721E401FBA8ABA572D4DEF88A56(L_0, /*hidden argument*/NULL); RuntimeObject * L_2 = ___value0; RuntimeObject* L_3 = ___writer1; NullCheck(L_1); Serializer_WriteValueWeak_mCE6C988C6E824ACDD9A3E25A2B3BA17417C5E7B9(L_1, L_2, L_3, /*hidden argument*/NULL); RuntimeObject* L_4 = ___writer1; NullCheck(L_4); InterfaceActionInvoker0::Invoke(8 /* System.Void Sirenix.Serialization.IDataWriter::FlushToStream() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_4); return; } } // System.Void Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,Sirenix.Serialization.IDataWriter,System.Collections.Generic.List`1<UnityEngine.Object>&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValueWeak_m71C2C2EE28CFA876EC9DB9D9EB9C6DC64367BCF8 (RuntimeObject * ___value0, RuntimeObject* ___writer1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___unityObjects2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_SerializeValueWeak_m71C2C2EE28CFA876EC9DB9D9EB9C6DC64367BCF8_MetadataUsageId); s_Il2CppMethodInitialized = true; } Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_il2cpp_TypeInfo_var); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_0 = Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA(/*hidden argument*/Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA_RuntimeMethod_var); V_0 = L_0; } IL_0006: try { // begin try (depth: 1) RuntimeObject* L_1 = ___writer1; NullCheck(L_1); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_2 = InterfaceFuncInvoker0< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(5 /* Sirenix.Serialization.SerializationContext Sirenix.Serialization.IDataWriter::get_Context() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_1); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_3 = V_0; NullCheck(L_3); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_4 = L_3->get_Value_5(); NullCheck(L_2); SerializationContext_set_IndexReferenceResolver_mB8D8070FFE33FB9BED811EEF3B16D378036ADA94_inline(L_2, L_4, /*hidden argument*/NULL); RuntimeObject * L_5 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_6 = Serializer_GetForValue_m2ED56379A29E1721E401FBA8ABA572D4DEF88A56(L_5, /*hidden argument*/NULL); RuntimeObject * L_7 = ___value0; RuntimeObject* L_8 = ___writer1; NullCheck(L_6); Serializer_WriteValueWeak_mCE6C988C6E824ACDD9A3E25A2B3BA17417C5E7B9(L_6, L_7, L_8, /*hidden argument*/NULL); RuntimeObject* L_9 = ___writer1; NullCheck(L_9); InterfaceActionInvoker0::Invoke(8 /* System.Void Sirenix.Serialization.IDataWriter::FlushToStream() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_9); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_10 = ___unityObjects2; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_11 = V_0; NullCheck(L_11); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_12 = L_11->get_Value_5(); NullCheck(L_12); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_13 = UnityReferenceResolver_GetReferencedUnityObjects_m5338EFA1A48D67FD29C4BC471257AAFF9BA651E4_inline(L_12, /*hidden argument*/NULL); *((RuntimeObject **)L_10) = (RuntimeObject *)L_13; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_10, (void*)(RuntimeObject *)L_13); IL2CPP_LEAVE(0x43, FINALLY_0039); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0039; } FINALLY_0039: { // begin finally (depth: 1) { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_14 = V_0; if (!L_14) { goto IL_0042; } } IL_003c: { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_15 = V_0; NullCheck(L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_15); } IL_0042: { IL2CPP_END_FINALLY(57) } } // end finally (depth: 1) IL2CPP_CLEANUP(57) { IL2CPP_JUMP_TBL(0x43, IL_0043) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0043: { return; } } // System.Void Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,System.IO.Stream,Sirenix.Serialization.DataFormat,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValueWeak_mC937F375B75CFB34CF3B048F6BA1146433B6A968 (RuntimeObject * ___value0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, int32_t ___format2, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_SerializeValueWeak_mC937F375B75CFB34CF3B048F6BA1146433B6A968_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = ___format2; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = ___stream1; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_2 = ___context3; RuntimeObject* L_3 = SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0((RuntimeObject**)(&V_0), L_0, L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; } IL_000b: try { // begin try (depth: 1) { SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_4 = ___context3; if (!L_4) { goto IL_0017; } } IL_000e: { RuntimeObject * L_5 = ___value0; RuntimeObject* L_6 = V_1; SerializationUtility_SerializeValueWeak_m37B62101CC8AB3F65C2F2AA58F190C28609C20C1(L_5, L_6, /*hidden argument*/NULL); IL2CPP_LEAVE(0x43, FINALLY_003c); } IL_0017: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_7 = Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3(/*hidden argument*/Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3_RuntimeMethod_var); V_2 = L_7; } IL_001d: try { // begin try (depth: 2) RuntimeObject* L_8 = V_1; Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_9 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_10 = Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32(L_9, /*hidden argument*/Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32_RuntimeMethod_var); NullCheck(L_8); InterfaceActionInvoker1< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(6 /* System.Void Sirenix.Serialization.IDataWriter::set_Context(Sirenix.Serialization.SerializationContext) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_8, L_10); RuntimeObject * L_11 = ___value0; RuntimeObject* L_12 = V_1; SerializationUtility_SerializeValueWeak_m37B62101CC8AB3F65C2F2AA58F190C28609C20C1(L_11, L_12, /*hidden argument*/NULL); IL2CPP_LEAVE(0x43, FINALLY_0032); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0032; } FINALLY_0032: { // begin finally (depth: 2) { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_13 = V_2; if (!L_13) { goto IL_003b; } } IL_0035: { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_14 = V_2; NullCheck(L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_14); } IL_003b: { IL2CPP_END_FINALLY(50) } } // end finally (depth: 2) IL2CPP_CLEANUP(50) { IL2CPP_END_CLEANUP(0x43, FINALLY_003c); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003c; } FINALLY_003c: { // begin finally (depth: 1) RuntimeObject* L_15 = V_0; NullCheck(L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_15); IL2CPP_END_FINALLY(60) } // end finally (depth: 1) IL2CPP_CLEANUP(60) { IL2CPP_JUMP_TBL(0x43, IL_0043) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0043: { return; } } // System.Void Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,System.IO.Stream,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationUtility_SerializeValueWeak_m90A710914AD92D54DE6DF948560DD9178F6E4F42 (RuntimeObject * ___value0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, int32_t ___format2, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___unityObjects3, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_SerializeValueWeak_m90A710914AD92D54DE6DF948560DD9178F6E4F42_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = ___format2; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = ___stream1; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_2 = ___context4; RuntimeObject* L_3 = SerializationUtility_GetCachedWriter_m440EC568B845741173BF7EB8B8AD4C5C3A6F67F0((RuntimeObject**)(&V_0), L_0, L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; } IL_000c: try { // begin try (depth: 1) { SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_4 = ___context4; if (!L_4) { goto IL_001a; } } IL_0010: { RuntimeObject * L_5 = ___value0; RuntimeObject* L_6 = V_1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_7 = ___unityObjects3; SerializationUtility_SerializeValueWeak_m71C2C2EE28CFA876EC9DB9D9EB9C6DC64367BCF8(L_5, L_6, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_7, /*hidden argument*/NULL); IL2CPP_LEAVE(0x47, FINALLY_0040); } IL_001a: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_8 = Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3(/*hidden argument*/Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3_RuntimeMethod_var); V_2 = L_8; } IL_0020: try { // begin try (depth: 2) RuntimeObject* L_9 = V_1; Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_10 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_11 = Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32(L_10, /*hidden argument*/Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32_RuntimeMethod_var); NullCheck(L_9); InterfaceActionInvoker1< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(6 /* System.Void Sirenix.Serialization.IDataWriter::set_Context(Sirenix.Serialization.SerializationContext) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_9, L_11); RuntimeObject * L_12 = ___value0; RuntimeObject* L_13 = V_1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_14 = ___unityObjects3; SerializationUtility_SerializeValueWeak_m71C2C2EE28CFA876EC9DB9D9EB9C6DC64367BCF8(L_12, L_13, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_14, /*hidden argument*/NULL); IL2CPP_LEAVE(0x47, FINALLY_0036); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0036; } FINALLY_0036: { // begin finally (depth: 2) { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_15 = V_2; if (!L_15) { goto IL_003f; } } IL_0039: { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_16 = V_2; NullCheck(L_16); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_16); } IL_003f: { IL2CPP_END_FINALLY(54) } } // end finally (depth: 2) IL2CPP_CLEANUP(54) { IL2CPP_END_CLEANUP(0x47, FINALLY_0040); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0040; } FINALLY_0040: { // begin finally (depth: 1) RuntimeObject* L_17 = V_0; NullCheck(L_17); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_17); IL2CPP_END_FINALLY(64) } // end finally (depth: 1) IL2CPP_CLEANUP(64) { IL2CPP_JUMP_TBL(0x47, IL_0047) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0047: { return; } } // System.Byte[] Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,Sirenix.Serialization.DataFormat,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* SerializationUtility_SerializeValueWeak_mAE47ED83B759463E3DE6ABE73DCE6430936BA394 (RuntimeObject * ___value0, int32_t ___format1, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_SerializeValueWeak_mAE47ED83B759463E3DE6ABE73DCE6430936BA394_MetadataUsageId); s_Il2CppMethodInitialized = true; } Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_0 = CachedMemoryStream_Claim_m5DFD5A6F321403CEAD6DB6EEB41DD20F6C79E572((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); V_0 = L_0; } IL_0007: try { // begin try (depth: 1) RuntimeObject * L_1 = ___value0; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_2 = V_0; NullCheck(L_2); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_3 = L_2->get_Value_5(); NullCheck(L_3); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_4 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_3, /*hidden argument*/NULL); int32_t L_5 = ___format1; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_6 = ___context2; SerializationUtility_SerializeValueWeak_mC937F375B75CFB34CF3B048F6BA1146433B6A968(L_1, L_4, L_5, L_6, /*hidden argument*/NULL); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_7 = V_0; NullCheck(L_7); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_8 = L_7->get_Value_5(); NullCheck(L_8); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_9 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_8, /*hidden argument*/NULL); NullCheck(L_9); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(29 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_9); V_1 = L_10; IL2CPP_LEAVE(0x37, FINALLY_002d); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002d; } FINALLY_002d: { // begin finally (depth: 1) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_11 = V_0; if (!L_11) { goto IL_0036; } } IL_0030: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_12 = V_0; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_12); } IL_0036: { IL2CPP_END_FINALLY(45) } } // end finally (depth: 1) IL2CPP_CLEANUP(45) { IL2CPP_JUMP_TBL(0x37, IL_0037) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0037: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_1; return L_13; } } // System.Byte[] Sirenix.Serialization.SerializationUtility::SerializeValueWeak(System.Object,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* SerializationUtility_SerializeValueWeak_m32A59E933A9246D1C329C5EC5B9CC5E5209775E1 (RuntimeObject * ___value0, int32_t ___format1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___unityObjects2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_SerializeValueWeak_m32A59E933A9246D1C329C5EC5B9CC5E5209775E1_MetadataUsageId); s_Il2CppMethodInitialized = true; } Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_0 = CachedMemoryStream_Claim_m5DFD5A6F321403CEAD6DB6EEB41DD20F6C79E572((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); V_0 = L_0; } IL_0007: try { // begin try (depth: 1) RuntimeObject * L_1 = ___value0; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_2 = V_0; NullCheck(L_2); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_3 = L_2->get_Value_5(); NullCheck(L_3); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_4 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_3, /*hidden argument*/NULL); int32_t L_5 = ___format1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_6 = ___unityObjects2; SerializationUtility_SerializeValueWeak_m90A710914AD92D54DE6DF948560DD9178F6E4F42(L_1, L_4, L_5, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_6, (SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B *)NULL, /*hidden argument*/NULL); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_7 = V_0; NullCheck(L_7); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_8 = L_7->get_Value_5(); NullCheck(L_8); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_9 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_8, /*hidden argument*/NULL); NullCheck(L_9); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(29 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_9); V_1 = L_10; IL2CPP_LEAVE(0x38, FINALLY_002e); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002e; } FINALLY_002e: { // begin finally (depth: 1) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_11 = V_0; if (!L_11) { goto IL_0037; } } IL_0031: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_12 = V_0; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_12); } IL_0037: { IL2CPP_END_FINALLY(46) } } // end finally (depth: 1) IL2CPP_CLEANUP(46) { IL2CPP_JUMP_TBL(0x38, IL_0038) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0038: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_1; return L_13; } } // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_m9581172659F072B2F7FBC1F4D4D98F51CD1B2155 (RuntimeObject* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_DeserializeValueWeak_m9581172659F072B2F7FBC1F4D4D98F51CD1B2155_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * L_0 = Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1(/*hidden argument*/Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1_RuntimeMethod_var); RuntimeObject* L_1 = ___reader0; NullCheck(L_0); RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject* >::Invoke(4 /* System.Object Sirenix.Serialization.Serializer::ReadValueWeak(Sirenix.Serialization.IDataReader) */, L_0, L_1); return L_2; } } // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(Sirenix.Serialization.IDataReader,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_m3BCFAF0CDD4C7781E87BFF26DAA92AE14EFFF2C8 (RuntimeObject* ___reader0, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_DeserializeValueWeak_m3BCFAF0CDD4C7781E87BFF26DAA92AE14EFFF2C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_il2cpp_TypeInfo_var); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_0 = Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA(/*hidden argument*/Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA_RuntimeMethod_var); V_0 = L_0; } IL_0006: try { // begin try (depth: 1) Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_1 = V_0; NullCheck(L_1); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_2 = L_1->get_Value_5(); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_3 = ___referencedUnityObjects1; NullCheck(L_2); UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05(L_2, L_3, /*hidden argument*/NULL); RuntimeObject* L_4 = ___reader0; NullCheck(L_4); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_5 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_4); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_6 = V_0; NullCheck(L_6); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_7 = L_6->get_Value_5(); NullCheck(L_5); DeserializationContext_set_IndexReferenceResolver_m0027EE73B5149E617BFAF47E94CD26CA5234E431_inline(L_5, L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * L_8 = Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1(/*hidden argument*/Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1_RuntimeMethod_var); RuntimeObject* L_9 = ___reader0; NullCheck(L_8); RuntimeObject * L_10 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject* >::Invoke(4 /* System.Object Sirenix.Serialization.Serializer::ReadValueWeak(Sirenix.Serialization.IDataReader) */, L_8, L_9); V_1 = L_10; IL2CPP_LEAVE(0x3B, FINALLY_0031); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0031; } FINALLY_0031: { // begin finally (depth: 1) { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_11 = V_0; if (!L_11) { goto IL_003a; } } IL_0034: { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_12 = V_0; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_12); } IL_003a: { IL2CPP_END_FINALLY(49) } } // end finally (depth: 1) IL2CPP_CLEANUP(49) { IL2CPP_JUMP_TBL(0x3B, IL_003b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_003b: { RuntimeObject * L_13 = V_1; return L_13; } } // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(System.IO.Stream,Sirenix.Serialization.DataFormat,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_m7FCF67D3A434DBC1D78EA82E5AC4436FC6FDF1E1 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, int32_t ___format1, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_DeserializeValueWeak_m7FCF67D3A434DBC1D78EA82E5AC4436FC6FDF1E1_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject * V_2 = NULL; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = ___format1; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = ___stream0; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_2 = ___context2; RuntimeObject* L_3 = SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653((RuntimeObject**)(&V_0), L_0, L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; } IL_000b: try { // begin try (depth: 1) { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_4 = ___context2; if (!L_4) { goto IL_0017; } } IL_000e: { RuntimeObject* L_5 = V_1; RuntimeObject * L_6 = SerializationUtility_DeserializeValueWeak_m9581172659F072B2F7FBC1F4D4D98F51CD1B2155(L_5, /*hidden argument*/NULL); V_2 = L_6; IL2CPP_LEAVE(0x43, FINALLY_003c); } IL_0017: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_7 = Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA(/*hidden argument*/Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA_RuntimeMethod_var); V_3 = L_7; } IL_001d: try { // begin try (depth: 2) RuntimeObject* L_8 = V_1; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_9 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_10 = Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3(L_9, /*hidden argument*/Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3_RuntimeMethod_var); NullCheck(L_8); InterfaceActionInvoker1< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(9 /* System.Void Sirenix.Serialization.IDataReader::set_Context(Sirenix.Serialization.DeserializationContext) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_8, L_10); RuntimeObject* L_11 = V_1; RuntimeObject * L_12 = SerializationUtility_DeserializeValueWeak_m9581172659F072B2F7FBC1F4D4D98F51CD1B2155(L_11, /*hidden argument*/NULL); V_2 = L_12; IL2CPP_LEAVE(0x43, FINALLY_0032); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0032; } FINALLY_0032: { // begin finally (depth: 2) { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_13 = V_3; if (!L_13) { goto IL_003b; } } IL_0035: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_14 = V_3; NullCheck(L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_14); } IL_003b: { IL2CPP_END_FINALLY(50) } } // end finally (depth: 2) IL2CPP_CLEANUP(50) { IL2CPP_END_CLEANUP(0x43, FINALLY_003c); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003c; } FINALLY_003c: { // begin finally (depth: 1) RuntimeObject* L_15 = V_0; NullCheck(L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_15); IL2CPP_END_FINALLY(60) } // end finally (depth: 1) IL2CPP_CLEANUP(60) { IL2CPP_JUMP_TBL(0x43, IL_0043) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0043: { RuntimeObject * L_16 = V_2; return L_16; } } // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(System.IO.Stream,Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_mB5E01A7533BD9F102A69C913B134E7D334276DB2 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, int32_t ___format1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects2, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_DeserializeValueWeak_mB5E01A7533BD9F102A69C913B134E7D334276DB2_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject * V_2 = NULL; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = ___format1; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = ___stream0; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_2 = ___context3; RuntimeObject* L_3 = SerializationUtility_GetCachedReader_mA55EF3B9AB46E41895127D01733E05C3DA723653((RuntimeObject**)(&V_0), L_0, L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; } IL_000b: try { // begin try (depth: 1) { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_4 = ___context3; if (!L_4) { goto IL_0018; } } IL_000e: { RuntimeObject* L_5 = V_1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_6 = ___referencedUnityObjects2; RuntimeObject * L_7 = SerializationUtility_DeserializeValueWeak_m3BCFAF0CDD4C7781E87BFF26DAA92AE14EFFF2C8(L_5, L_6, /*hidden argument*/NULL); V_2 = L_7; IL2CPP_LEAVE(0x45, FINALLY_003e); } IL_0018: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_8 = Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA(/*hidden argument*/Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA_RuntimeMethod_var); V_3 = L_8; } IL_001e: try { // begin try (depth: 2) RuntimeObject* L_9 = V_1; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_10 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_11 = Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3(L_10, /*hidden argument*/Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3_RuntimeMethod_var); NullCheck(L_9); InterfaceActionInvoker1< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(9 /* System.Void Sirenix.Serialization.IDataReader::set_Context(Sirenix.Serialization.DeserializationContext) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_9, L_11); RuntimeObject* L_12 = V_1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_13 = ___referencedUnityObjects2; RuntimeObject * L_14 = SerializationUtility_DeserializeValueWeak_m3BCFAF0CDD4C7781E87BFF26DAA92AE14EFFF2C8(L_12, L_13, /*hidden argument*/NULL); V_2 = L_14; IL2CPP_LEAVE(0x45, FINALLY_0034); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0034; } FINALLY_0034: { // begin finally (depth: 2) { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_15 = V_3; if (!L_15) { goto IL_003d; } } IL_0037: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_16 = V_3; NullCheck(L_16); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_16); } IL_003d: { IL2CPP_END_FINALLY(52) } } // end finally (depth: 2) IL2CPP_CLEANUP(52) { IL2CPP_END_CLEANUP(0x45, FINALLY_003e); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003e; } FINALLY_003e: { // begin finally (depth: 1) RuntimeObject* L_17 = V_0; NullCheck(L_17); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_17); IL2CPP_END_FINALLY(62) } // end finally (depth: 1) IL2CPP_CLEANUP(62) { IL2CPP_JUMP_TBL(0x45, IL_0045) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0045: { RuntimeObject * L_18 = V_2; return L_18; } } // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(System.Byte[],Sirenix.Serialization.DataFormat,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_m22BC386FE62247361A2E418B1E8A4DB0B5558B4B (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___format1, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_DeserializeValueWeak_m22BC386FE62247361A2E418B1E8A4DB0B5558B4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0; IL2CPP_RUNTIME_CLASS_INIT(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_1 = CachedMemoryStream_Claim_m5DFD5A6F321403CEAD6DB6EEB41DD20F6C79E572(L_0, /*hidden argument*/NULL); V_0 = L_1; } IL_0007: try { // begin try (depth: 1) Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_2 = V_0; NullCheck(L_2); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_3 = L_2->get_Value_5(); NullCheck(L_3); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_4 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_3, /*hidden argument*/NULL); int32_t L_5 = ___format1; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_6 = ___context2; RuntimeObject * L_7 = SerializationUtility_DeserializeValueWeak_m7FCF67D3A434DBC1D78EA82E5AC4436FC6FDF1E1(L_4, L_5, L_6, /*hidden argument*/NULL); V_1 = L_7; IL2CPP_LEAVE(0x26, FINALLY_001c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001c; } FINALLY_001c: { // begin finally (depth: 1) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_8 = V_0; if (!L_8) { goto IL_0025; } } IL_001f: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_9 = V_0; NullCheck(L_9); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_9); } IL_0025: { IL2CPP_END_FINALLY(28) } } // end finally (depth: 1) IL2CPP_CLEANUP(28) { IL2CPP_JUMP_TBL(0x26, IL_0026) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0026: { RuntimeObject * L_10 = V_1; return L_10; } } // System.Object Sirenix.Serialization.SerializationUtility::DeserializeValueWeak(System.Byte[],Sirenix.Serialization.DataFormat,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_DeserializeValueWeak_m6E96D031A8B22E267A070A6302C2A478C7093E03 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___format1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_DeserializeValueWeak_m6E96D031A8B22E267A070A6302C2A478C7093E03_MetadataUsageId); s_Il2CppMethodInitialized = true; } Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0; IL2CPP_RUNTIME_CLASS_INIT(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_1 = CachedMemoryStream_Claim_m5DFD5A6F321403CEAD6DB6EEB41DD20F6C79E572(L_0, /*hidden argument*/NULL); V_0 = L_1; } IL_0007: try { // begin try (depth: 1) Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_2 = V_0; NullCheck(L_2); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_3 = L_2->get_Value_5(); NullCheck(L_3); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_4 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_3, /*hidden argument*/NULL); int32_t L_5 = ___format1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_6 = ___referencedUnityObjects2; RuntimeObject * L_7 = SerializationUtility_DeserializeValueWeak_mB5E01A7533BD9F102A69C913B134E7D334276DB2(L_4, L_5, L_6, (DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 *)NULL, /*hidden argument*/NULL); V_1 = L_7; IL2CPP_LEAVE(0x27, FINALLY_001d); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001d; } FINALLY_001d: { // begin finally (depth: 1) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_8 = V_0; if (!L_8) { goto IL_0026; } } IL_0020: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_9 = V_0; NullCheck(L_9); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_9); } IL_0026: { IL2CPP_END_FINALLY(29) } } // end finally (depth: 1) IL2CPP_CLEANUP(29) { IL2CPP_JUMP_TBL(0x27, IL_0027) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0027: { RuntimeObject * L_10 = V_1; return L_10; } } // System.Object Sirenix.Serialization.SerializationUtility::CreateCopy(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationUtility_CreateCopy_mDD6A0513F672D6806141625AC047FDAED00D6B2E (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SerializationUtility_CreateCopy_mDD6A0513F672D6806141625AC047FDAED00D6B2E_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_1 = NULL; Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * V_2 = NULL; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * V_3 = NULL; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * V_4 = NULL; RuntimeObject * V_5 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return NULL; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var))) { goto IL_000f; } } { RuntimeObject * L_2 = ___obj0; return L_2; } IL_000f: { RuntimeObject * L_3 = ___obj0; NullCheck(L_3); Type_t * L_4 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_3, /*hidden argument*/NULL); V_0 = L_4; Type_t * L_5 = V_0; NullCheck(L_5); bool L_6 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0020; } } { RuntimeObject * L_7 = ___obj0; return L_7; } IL_0020: { Type_t * L_8 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_11 = TypeExtensions_InheritsFrom_mE3C31521AF59D77C48BA59744008CFFB79FEF580(L_8, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0034; } } { RuntimeObject * L_12 = ___obj0; return L_12; } IL_0034: { IL2CPP_RUNTIME_CLASS_INIT(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_13 = CachedMemoryStream_Claim_m5DFD5A6F321403CEAD6DB6EEB41DD20F6C79E572((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); V_1 = L_13; } IL_003b: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_14 = Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3(/*hidden argument*/Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3_RuntimeMethod_var); V_2 = L_14; } IL_0041: try { // begin try (depth: 2) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_15 = Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA(/*hidden argument*/Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA_RuntimeMethod_var); V_3 = L_15; } IL_0047: try { // begin try (depth: 3) Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_16 = V_2; NullCheck(L_16); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_17 = L_16->get_Value_5(); NullCheck(L_17); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_18 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_17, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_19 = SerializationPolicies_get_Everything_mDE213BAA0B762DF663008E7DDEBD9A9144DB5D49(/*hidden argument*/NULL); NullCheck(L_18); SerializationConfig_set_SerializationPolicy_m628BBBB68B4F7AAE9D4A8B94038E961C790EDD51(L_18, L_19, /*hidden argument*/NULL); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_20 = V_3; NullCheck(L_20); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_21 = L_20->get_Value_5(); NullCheck(L_21); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_22 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_21, /*hidden argument*/NULL); RuntimeObject* L_23 = SerializationPolicies_get_Everything_mDE213BAA0B762DF663008E7DDEBD9A9144DB5D49(/*hidden argument*/NULL); NullCheck(L_22); SerializationConfig_set_SerializationPolicy_m628BBBB68B4F7AAE9D4A8B94038E961C790EDD51(L_22, L_23, /*hidden argument*/NULL); RuntimeObject * L_24 = ___obj0; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_25 = V_1; NullCheck(L_25); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_26 = L_25->get_Value_5(); NullCheck(L_26); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_27 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_26, /*hidden argument*/NULL); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_28 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_29 = Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32(L_28, /*hidden argument*/Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32_RuntimeMethod_var); SerializationUtility_SerializeValue_TisRuntimeObject_m1E89017B1C6494143CB6454F1C10B52433297807(L_24, L_27, 0, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)(&V_4), L_29, /*hidden argument*/SerializationUtility_SerializeValue_TisRuntimeObject_m1E89017B1C6494143CB6454F1C10B52433297807_RuntimeMethod_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_30 = V_1; NullCheck(L_30); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_31 = L_30->get_Value_5(); NullCheck(L_31); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_32 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_31, /*hidden argument*/NULL); NullCheck(L_32); VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_32, (((int64_t)((int64_t)0)))); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_33 = V_1; NullCheck(L_33); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_34 = L_33->get_Value_5(); NullCheck(L_34); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_35 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_34, /*hidden argument*/NULL); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_36 = V_4; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_37 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_38 = Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3(L_37, /*hidden argument*/Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3_RuntimeMethod_var); RuntimeObject * L_39 = SerializationUtility_DeserializeValue_TisRuntimeObject_m5E680C93F9932F74746318453FD8EE5E11E5DC1D(L_35, 0, L_36, L_38, /*hidden argument*/SerializationUtility_DeserializeValue_TisRuntimeObject_m5E680C93F9932F74746318453FD8EE5E11E5DC1D_RuntimeMethod_var); V_5 = L_39; IL2CPP_LEAVE(0xD8, FINALLY_00ba); } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ba; } FINALLY_00ba: { // begin finally (depth: 3) { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_40 = V_3; if (!L_40) { goto IL_00c3; } } IL_00bd: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_41 = V_3; NullCheck(L_41); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_41); } IL_00c3: { IL2CPP_END_FINALLY(186) } } // end finally (depth: 3) IL2CPP_CLEANUP(186) { IL2CPP_END_CLEANUP(0xD8, FINALLY_00c4); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00c4; } FINALLY_00c4: { // begin finally (depth: 2) { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_42 = V_2; if (!L_42) { goto IL_00cd; } } IL_00c7: { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_43 = V_2; NullCheck(L_43); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_43); } IL_00cd: { IL2CPP_END_FINALLY(196) } } // end finally (depth: 2) IL2CPP_CLEANUP(196) { IL2CPP_END_CLEANUP(0xD8, FINALLY_00ce); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ce; } FINALLY_00ce: { // begin finally (depth: 1) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_44 = V_1; if (!L_44) { goto IL_00d7; } } IL_00d1: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_45 = V_1; NullCheck(L_45); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_45); } IL_00d7: { IL2CPP_END_FINALLY(206) } } // end finally (depth: 1) IL2CPP_CLEANUP(206) { IL2CPP_JUMP_TBL(0xD8, IL_00d8) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00d8: { RuntimeObject * L_46 = V_5; return L_46; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Serializer::FireOnSerializedType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_FireOnSerializedType_m36FF08CE8999F596DE891168113B445159762D5B (Type_t * ___type0, const RuntimeMethod* method) { { return; } } // Sirenix.Serialization.Serializer Sirenix.Serialization.Serializer::GetForValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * Serializer_GetForValue_m2ED56379A29E1721E401FBA8ABA572D4DEF88A56 (RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Serializer_GetForValue_m2ED56379A29E1721E401FBA8ABA572D4DEF88A56_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0013; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_3 = Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869(L_2, /*hidden argument*/NULL); return L_3; } IL_0013: { RuntimeObject * L_4 = ___value0; NullCheck(L_4); Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_6 = Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869(L_5, /*hidden argument*/NULL); return L_6; } } // Sirenix.Serialization.Serializer Sirenix.Serialization.Serializer::Get(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869_MetadataUsageId); s_Il2CppMethodInitialized = true; } Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Type_t * L_0 = ___type0; if (L_0) { goto IL_0009; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869_RuntimeMethod_var); } IL_0009: { IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); RuntimeObject * L_2 = ((Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields*)il2cpp_codegen_static_fields_for(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var))->get_LOCK_1(); V_1 = L_2; RuntimeObject * L_3 = V_1; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_3, /*hidden argument*/NULL); } IL_0015: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * L_4 = ((Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields*)il2cpp_codegen_static_fields_for(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var))->get_ReaderWriterCache_2(); Type_t * L_5 = ___type0; NullCheck(L_4); bool L_6 = Dictionary_2_TryGetValue_m53EFB7FFCD352EFCE3505FD4D9E28F6531F5C220(L_4, L_5, (Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m53EFB7FFCD352EFCE3505FD4D9E28F6531F5C220_RuntimeMethod_var); if (L_6) { goto IL_0037; } } IL_0024: { Type_t * L_7 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_8 = Serializer_Create_mE1586CF99DD6E788BF080BE5D53AC4DC7E395FF5(L_7, /*hidden argument*/NULL); V_0 = L_8; Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * L_9 = ((Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields*)il2cpp_codegen_static_fields_for(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var))->get_ReaderWriterCache_2(); Type_t * L_10 = ___type0; Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_11 = V_0; NullCheck(L_9); Dictionary_2_Add_m69346B75A05C4F037E46A7FC561664C05076A1F6(L_9, L_10, L_11, /*hidden argument*/Dictionary_2_Add_m69346B75A05C4F037E46A7FC561664C05076A1F6_RuntimeMethod_var); } IL_0037: { IL2CPP_LEAVE(0x40, FINALLY_0039); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0039; } FINALLY_0039: { // begin finally (depth: 1) RuntimeObject * L_12 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_12, /*hidden argument*/NULL); IL2CPP_END_FINALLY(57) } // end finally (depth: 1) IL2CPP_CLEANUP(57) { IL2CPP_JUMP_TBL(0x40, IL_0040) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0040: { Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_13 = V_0; return L_13; } } // System.Void Sirenix.Serialization.Serializer::WriteValueWeak(System.Object,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_WriteValueWeak_mCE6C988C6E824ACDD9A3E25A2B3BA17417C5E7B9 (Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * __this, RuntimeObject * ___value0, RuntimeObject* ___writer1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; RuntimeObject* L_1 = ___writer1; VirtActionInvoker3< String_t*, RuntimeObject *, RuntimeObject* >::Invoke(5 /* System.Void Sirenix.Serialization.Serializer::WriteValueWeak(System.String,System.Object,Sirenix.Serialization.IDataWriter) */, __this, (String_t*)NULL, L_0, L_1); return; } } // Sirenix.Serialization.Serializer Sirenix.Serialization.Serializer::Create(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * Serializer_Create_mE1586CF99DD6E788BF080BE5D53AC4DC7E395FF5 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Serializer_Create_mE1586CF99DD6E788BF080BE5D53AC4DC7E395FF5_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * V_1 = NULL; TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 * V_2 = NULL; TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE * V_3 = NULL; ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * V_4 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 6); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) { V_0 = (Type_t *)NULL; Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsEnum() */, L_0); if (!L_1) { goto IL_0026; } } IL_000a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (EnumSerializer_1_t9735D2A6B2F4AFD9D77EA583C69C0B1659D34169_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = L_4; Type_t * L_6 = ___type0; NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_6); NullCheck(L_3); Type_t * L_7 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(101 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_3, L_5); V_0 = L_7; goto IL_006e; } IL_0026: { Type_t * L_8 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(FormatterUtilities_t57774B5EC22582F32EFABAB74510CF01808ABA90_il2cpp_TypeInfo_var); bool L_9 = FormatterUtilities_IsPrimitiveType_m3AECCC4A03A0C6B68DC03B2D9503682083CC7193(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0054; } } IL_002e: try { // begin try (depth: 2) IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_10 = ((Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields*)il2cpp_codegen_static_fields_for(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var))->get_PrimitiveReaderWriterTypes_0(); Type_t * L_11 = ___type0; NullCheck(L_10); Type_t * L_12 = Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B(L_10, L_11, /*hidden argument*/Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B_RuntimeMethod_var); V_0 = L_12; goto IL_006e; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_003c; throw e; } CATCH_003c: { // begin catch(System.Collections.Generic.KeyNotFoundException) Type_t * L_13 = ___type0; NullCheck(L_13); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13); String_t* L_15 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralC1537762DCCF911FF5A317D9DA32DD9CA04D8C83, L_14, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_15, /*hidden argument*/NULL); goto IL_006e; } // end catch (depth: 2) IL_0054: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (ComplexTypeSerializer_1_t6797801A2B475406B82228EE83ECBA76BB3E8557_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_16, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = L_18; Type_t * L_20 = ___type0; NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_20); NullCheck(L_17); Type_t * L_21 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(101 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_17, L_19); V_0 = L_21; } IL_006e: { Type_t * L_22 = V_0; RuntimeObject * L_23 = Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16(L_22, /*hidden argument*/NULL); V_1 = ((Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 *)CastclassClass((RuntimeObject*)L_23, Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var)); goto IL_00d4; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_007c; if(il2cpp_codegen_class_is_assignable_from (TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00a1; if(il2cpp_codegen_class_is_assignable_from (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00c6; throw e; } CATCH_007c: { // begin catch(System.Reflection.TargetInvocationException) { V_2 = ((TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 *)__exception_local); TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 * L_24 = V_2; NullCheck(L_24); Exception_t * L_25 = VirtFuncInvoker0< Exception_t * >::Invoke(7 /* System.Exception System.Exception::GetBaseException() */, L_24); if (!((ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 *)IsInstSealed((RuntimeObject*)L_25, ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var))) { goto IL_009f; } } IL_008a: { Type_t * L_26 = ___type0; TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 * L_27 = V_2; NullCheck(L_27); Exception_t * L_28 = VirtFuncInvoker0< Exception_t * >::Invoke(7 /* System.Exception System.Exception::GetBaseException() */, L_27); IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1(L_26, ((ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 *)IsInstSealed((RuntimeObject*)L_28, ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_1 = (Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 *)NULL; goto IL_00d4; } IL_009f: { TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 * L_29 = V_2; IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, Serializer_Create_mE1586CF99DD6E788BF080BE5D53AC4DC7E395FF5_RuntimeMethod_var); } } // end catch (depth: 1) CATCH_00a1: { // begin catch(System.TypeInitializationException) { V_3 = ((TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE *)__exception_local); TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE * L_30 = V_3; NullCheck(L_30); Exception_t * L_31 = VirtFuncInvoker0< Exception_t * >::Invoke(7 /* System.Exception System.Exception::GetBaseException() */, L_30); if (!((ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 *)IsInstSealed((RuntimeObject*)L_31, ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var))) { goto IL_00c4; } } IL_00af: { Type_t * L_32 = ___type0; TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE * L_33 = V_3; NullCheck(L_33); Exception_t * L_34 = VirtFuncInvoker0< Exception_t * >::Invoke(7 /* System.Exception System.Exception::GetBaseException() */, L_33); IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1(L_32, ((ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 *)IsInstSealed((RuntimeObject*)L_34, ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_1 = (Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 *)NULL; goto IL_00d4; } IL_00c4: { TypeInitializationException_t5223A07113C97D6DC875A82C68D4C132737ADEAE * L_35 = V_3; IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, Serializer_Create_mE1586CF99DD6E788BF080BE5D53AC4DC7E395FF5_RuntimeMethod_var); } } // end catch (depth: 1) CATCH_00c6: { // begin catch(System.ExecutionEngineException) V_4 = ((ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 *)__exception_local); Type_t * L_36 = ___type0; ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * L_37 = V_4; IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1(L_36, L_37, /*hidden argument*/NULL); V_1 = (Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 *)NULL; goto IL_00d4; } // end catch (depth: 1) IL_00d4: { Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_38 = V_1; return L_38; } } // System.Void Sirenix.Serialization.Serializer::LogAOTError(System.Type,System.ExecutionEngineException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1 (Type_t * ___type0, ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * ___ex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral28B9913E0577DF72F2E64584BF9772628721F819); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral28B9913E0577DF72F2E64584BF9772628721F819); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1; Type_t * L_3 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_4 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_3, /*hidden argument*/NULL); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_4); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_4); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_2; NullCheck(L_5); ArrayElementTypeCheck (L_5, _stringLiteral625761A6C90D399B66FEDC91A669C591C9B7ED9F); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral625761A6C90D399B66FEDC91A669C591C9B7ED9F); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = L_5; Type_t * L_7 = ___type0; String_t* L_8 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_7, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_8); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = L_6; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteralF7349998A0400885BAADF897DC9511CA6712211F); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralF7349998A0400885BAADF897DC9511CA6712211F); String_t* L_10 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_10, /*hidden argument*/NULL); Type_t * L_11 = ___type0; String_t* L_12 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_11, /*hidden argument*/NULL); String_t* L_13 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral87EA099F7165B3E246DBC262308E639672018595, L_12, _stringLiteralFAFBA073700296227A7D1B4785C63F0194C967FA, /*hidden argument*/NULL); SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * L_14 = (SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB *)il2cpp_codegen_object_new(SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB_il2cpp_TypeInfo_var); SerializationAbortException__ctor_mA221C3CF4D60BB1CF06F52186AAEF1D16E127914(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, Serializer_LogAOTError_m4266A4C6D13EAF8ECEB623249315D8023561C6C1_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Serializer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer__ctor_m29C534DDAF2E0D4DBAE53571396F8D63A39CC9E1 (Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.Serializer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Serializer__cctor_m20EBEE4D4143C51016FCD6518C9D5907C83B5A2B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Serializer__cctor_m20EBEE4D4143C51016FCD6518C9D5907C83B5A2B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * V_0 = NULL; { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_0 = (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *)il2cpp_codegen_object_new(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A_il2cpp_TypeInfo_var); Dictionary_2__ctor_mF539C5E9ECC924AB2CC96934DA97A0040CB6797A(L_0, /*hidden argument*/Dictionary_2__ctor_mF539C5E9ECC924AB2CC96934DA97A0040CB6797A_RuntimeMethod_var); V_0 = L_0; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_1 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (CharSerializer_t5747E71DBE11D9599DE7E1AA1676DFF2CB59FAFD_0_0_0_var) }; Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL); NullCheck(L_1); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_1, L_3, L_5, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (StringSerializer_t02226473DA6D1A109481D3FA85F87CCB2F2FE7AD_0_0_0_var) }; Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL); NullCheck(L_6); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_6, L_8, L_10, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_11 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (SByteSerializer_tA54D2DF6B2DB87B5697BD9ED5FE4625170B842C9_0_0_0_var) }; Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL); NullCheck(L_11); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_11, L_13, L_15, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_17, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (Int16Serializer_t21D6F1938C7816D4A00E7C911EB5ABD7D0E1AC32_0_0_0_var) }; Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL); NullCheck(L_16); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_16, L_18, L_20, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_21 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Int32Serializer_t55A4CEC9A75DE4EF452E4D14846AE402141A2435_0_0_0_var) }; Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_24, /*hidden argument*/NULL); NullCheck(L_21); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_21, L_23, L_25, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_26 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (Int64Serializer_t7E51F54952ABE03B59170B233AB3B8CB12B07695_0_0_0_var) }; Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_29, /*hidden argument*/NULL); NullCheck(L_26); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_26, L_28, L_30, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_31 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_32 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_33 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_32, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (ByteSerializer_tB3A839615F74D201309846BA4ADEF330DF7FDAEB_0_0_0_var) }; Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_34, /*hidden argument*/NULL); NullCheck(L_31); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_31, L_33, L_35, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_36 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_37 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_38 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_37, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (UInt16Serializer_tB03F9299101183DF42C9BA9B5C251EB7E433E66E_0_0_0_var) }; Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_39, /*hidden argument*/NULL); NullCheck(L_36); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_36, L_38, L_40, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_41 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_42 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_43 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_42, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_44 = { reinterpret_cast<intptr_t> (UInt32Serializer_tCA35508AF0D7C5164C5E7C0DB1FF8874297BA826_0_0_0_var) }; Type_t * L_45 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_44, /*hidden argument*/NULL); NullCheck(L_41); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_41, L_43, L_45, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_46 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (UInt64Serializer_t046296E5E31B549A8704B8F86A7ACD06EAB25209_0_0_0_var) }; Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_49, /*hidden argument*/NULL); NullCheck(L_46); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_46, L_48, L_50, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_51 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_52 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_53 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_52, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (DecimalSerializer_t6F2337FADB1FC591AD0C7F87CFBF8A9692E6D399_0_0_0_var) }; Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_54, /*hidden argument*/NULL); NullCheck(L_51); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_51, L_53, L_55, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_56 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_57, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_59 = { reinterpret_cast<intptr_t> (BooleanSerializer_t90F3AF8010413718FE0A024C7A938402535FCFB8_0_0_0_var) }; Type_t * L_60 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_59, /*hidden argument*/NULL); NullCheck(L_56); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_56, L_58, L_60, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_61 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_62 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_63 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_62, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_64 = { reinterpret_cast<intptr_t> (SingleSerializer_t4E9F15C6707B09B4643053562D14B6D84F035F4D_0_0_0_var) }; Type_t * L_65 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_64, /*hidden argument*/NULL); NullCheck(L_61); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_61, L_63, L_65, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_66 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_67 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_68 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_67, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (DoubleSerializer_t1354B1024E94840C87035102D75672A411361D84_0_0_0_var) }; Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_69, /*hidden argument*/NULL); NullCheck(L_66); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_66, L_68, L_70, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_71 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_72 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; Type_t * L_73 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_72, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_74 = { reinterpret_cast<intptr_t> (IntPtrSerializer_tEA3316B72AE7C05A7AEA4854200F22772CC03F9D_0_0_0_var) }; Type_t * L_75 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_74, /*hidden argument*/NULL); NullCheck(L_71); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_71, L_73, L_75, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_76 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_77 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) }; Type_t * L_78 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_77, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_79 = { reinterpret_cast<intptr_t> (UIntPtrSerializer_t570AAD1348E8C0F586B9B74E796867581B2334EE_0_0_0_var) }; Type_t * L_80 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_79, /*hidden argument*/NULL); NullCheck(L_76); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_76, L_78, L_80, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_81 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_82 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) }; Type_t * L_83 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_82, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_84 = { reinterpret_cast<intptr_t> (GuidSerializer_t1B91C58C0AB27A34C471C177F4F489BBEE8466D7_0_0_0_var) }; Type_t * L_85 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_84, /*hidden argument*/NULL); NullCheck(L_81); Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410(L_81, L_83, L_85, /*hidden argument*/Dictionary_2_Add_mDB29057D252B6467070E15E80632C735804CB410_RuntimeMethod_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_86 = V_0; ((Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields*)il2cpp_codegen_static_fields_for(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var))->set_PrimitiveReaderWriterTypes_0(L_86); RuntimeObject * L_87 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_87, /*hidden argument*/NULL); ((Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields*)il2cpp_codegen_static_fields_for(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var))->set_LOCK_1(L_87); IL2CPP_RUNTIME_CLASS_INIT(FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_il2cpp_TypeInfo_var); FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * L_88 = ((FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_StaticFields*)il2cpp_codegen_static_fields_for(FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_il2cpp_TypeInfo_var))->get_Instance_0(); Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 * L_89 = (Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60 *)il2cpp_codegen_object_new(Dictionary_2_t34737B42CC060555A46226D94BEFBB29171F0C60_il2cpp_TypeInfo_var); Dictionary_2__ctor_m3FF81FB3B0B21B72CCFD9011E5C84E0B53EC9F3F(L_89, L_88, /*hidden argument*/Dictionary_2__ctor_m3FF81FB3B0B21B72CCFD9011E5C84E0B53EC9F3F_RuntimeMethod_var); ((Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_StaticFields*)il2cpp_codegen_static_fields_for(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var))->set_ReaderWriterCache_2(L_89); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Single Sirenix.Serialization.SingleSerializer::ReadValue(Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SingleSerializer_ReadValue_m7BF0658E27C734591F62508DDC75FB916FD00766 (SingleSerializer_t4E9F15C6707B09B4643053562D14B6D84F035F4D * __this, RuntimeObject* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleSerializer_ReadValue_m7BF0658E27C734591F62508DDC75FB916FD00766_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; uint8_t V_1 = 0; float V_2 = 0.0f; uint8_t V_3 = 0; { RuntimeObject* L_0 = ___reader0; NullCheck(L_0); uint8_t L_1 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_0, (String_t**)(&V_0)); V_1 = L_1; uint8_t L_2 = V_1; if ((((int32_t)L_2) == ((int32_t)4))) { goto IL_0011; } } { uint8_t L_3 = V_1; if ((!(((uint32_t)L_3) == ((uint32_t)3)))) { goto IL_004f; } } IL_0011: { RuntimeObject* L_4 = ___reader0; NullCheck(L_4); bool L_5 = InterfaceFuncInvoker1< bool, float* >::Invoke(33 /* System.Boolean Sirenix.Serialization.IDataReader::ReadSingle(System.Single&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_4, (float*)(&V_2)); if (L_5) { goto IL_004d; } } { RuntimeObject* L_6 = ___reader0; NullCheck(L_6); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_7 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_6); NullCheck(L_7); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_8 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_7, /*hidden argument*/NULL); NullCheck(L_8); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_9 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_8, /*hidden argument*/NULL); String_t* L_10 = V_0; RuntimeObject * L_11 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_11); String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11); V_1 = *(uint8_t*)UnBox(L_11); String_t* L_13 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral2A5174FC38B29D258AB846616A9D4A5279931877, L_10, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185, L_12, /*hidden argument*/NULL); NullCheck(L_9); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_9, L_13, /*hidden argument*/NULL); } IL_004d: { float L_14 = V_2; return L_14; } IL_004f: { RuntimeObject* L_15 = ___reader0; NullCheck(L_15); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_16 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_15); NullCheck(L_16); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_17 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_16, /*hidden argument*/NULL); NullCheck(L_17); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_18 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_17, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)8); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_20; V_3 = 4; RuntimeObject * L_22 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_3)); NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22); V_3 = *(uint8_t*)UnBox(L_22); NullCheck(L_21); ArrayElementTypeCheck (L_21, L_23); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_23); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = L_21; NullCheck(L_24); ArrayElementTypeCheck (L_24, _stringLiteral439AC6327D9E85C6128D568E206F852F3E18A74C); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral439AC6327D9E85C6128D568E206F852F3E18A74C); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = L_24; V_3 = 3; RuntimeObject * L_26 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_3)); NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_26); V_3 = *(uint8_t*)UnBox(L_26); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_27); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_27); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = L_25; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = L_28; String_t* L_30 = V_0; NullCheck(L_29); ArrayElementTypeCheck (L_29, L_30); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_30); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = L_29; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = L_31; RuntimeObject * L_33 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_33); String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_33); V_1 = *(uint8_t*)UnBox(L_33); NullCheck(L_32); ArrayElementTypeCheck (L_32, L_34); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)L_34); String_t* L_35 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_32, /*hidden argument*/NULL); NullCheck(L_18); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_18, L_35, /*hidden argument*/NULL); RuntimeObject* L_36 = ___reader0; NullCheck(L_36); InterfaceActionInvoker0::Invoke(37 /* System.Void Sirenix.Serialization.IDataReader::SkipEntry() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_36); return (0.0f); } } // System.Void Sirenix.Serialization.SingleSerializer::WriteValue(System.String,System.Single,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleSerializer_WriteValue_mECCB65094A6A225F6276B76CB4E1610252E51BB4 (SingleSerializer_t4E9F15C6707B09B4643053562D14B6D84F035F4D * __this, String_t* ___name0, float ___value1, RuntimeObject* ___writer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleSerializer_WriteValue_mECCB65094A6A225F6276B76CB4E1610252E51BB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___writer2; String_t* L_1 = ___name0; float L_2 = ___value1; NullCheck(L_0); InterfaceActionInvoker2< String_t*, float >::Invoke(32 /* System.Void Sirenix.Serialization.IDataWriter::WriteSingle(System.String,System.Single) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_0, L_1, L_2); return; } } // System.Void Sirenix.Serialization.SingleSerializer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleSerializer__ctor_m8AFB0FDC1D5959F45738B0ECEF10E543C3076CDA (SingleSerializer_t4E9F15C6707B09B4643053562D14B6D84F035F4D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleSerializer__ctor_m8AFB0FDC1D5959F45738B0ECEF10E543C3076CDA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Serializer_1__ctor_m7A8238EDC32B7D323566B758EE82C5EF166D3470(__this, /*hidden argument*/Serializer_1__ctor_m7A8238EDC32B7D323566B758EE82C5EF166D3470_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String Sirenix.Serialization.StringSerializer::ReadValue(Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringSerializer_ReadValue_m4477629F0FEDFC1C90355035E062A6F7A6A9FD6C (StringSerializer_t02226473DA6D1A109481D3FA85F87CCB2F2FE7AD * __this, RuntimeObject* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringSerializer_ReadValue_m4477629F0FEDFC1C90355035E062A6F7A6A9FD6C_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; uint8_t V_1 = 0; String_t* V_2 = NULL; uint8_t V_3 = 0; { RuntimeObject* L_0 = ___reader0; NullCheck(L_0); uint8_t L_1 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_0, (String_t**)(&V_0)); V_1 = L_1; uint8_t L_2 = V_1; if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_004b; } } { RuntimeObject* L_3 = ___reader0; NullCheck(L_3); bool L_4 = InterfaceFuncInvoker1< bool, String_t** >::Invoke(22 /* System.Boolean Sirenix.Serialization.IDataReader::ReadString(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_3, (String_t**)(&V_2)); if (L_4) { goto IL_0049; } } { RuntimeObject* L_5 = ___reader0; NullCheck(L_5); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_6 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_5); NullCheck(L_6); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_7 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_6, /*hidden argument*/NULL); NullCheck(L_7); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_8 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_7, /*hidden argument*/NULL); String_t* L_9 = V_0; RuntimeObject * L_10 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); V_1 = *(uint8_t*)UnBox(L_10); String_t* L_12 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral2A5174FC38B29D258AB846616A9D4A5279931877, L_9, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185, L_11, /*hidden argument*/NULL); NullCheck(L_8); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_8, L_12, /*hidden argument*/NULL); } IL_0049: { String_t* L_13 = V_2; return L_13; } IL_004b: { uint8_t L_14 = V_1; if ((!(((uint32_t)L_14) == ((uint32_t)6)))) { goto IL_008b; } } { RuntimeObject* L_15 = ___reader0; NullCheck(L_15); bool L_16 = InterfaceFuncInvoker0< bool >::Invoke(36 /* System.Boolean Sirenix.Serialization.IDataReader::ReadNull() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_15); if (L_16) { goto IL_0089; } } { RuntimeObject* L_17 = ___reader0; NullCheck(L_17); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_18 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_17); NullCheck(L_18); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_19 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_18, /*hidden argument*/NULL); NullCheck(L_19); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_20 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_19, /*hidden argument*/NULL); String_t* L_21 = V_0; RuntimeObject * L_22 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22); V_1 = *(uint8_t*)UnBox(L_22); String_t* L_24 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral2A5174FC38B29D258AB846616A9D4A5279931877, L_21, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185, L_23, /*hidden argument*/NULL); NullCheck(L_20); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_20, L_24, /*hidden argument*/NULL); } IL_0089: { return (String_t*)NULL; } IL_008b: { RuntimeObject* L_25 = ___reader0; NullCheck(L_25); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_26 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_25); NullCheck(L_26); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_27 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_26, /*hidden argument*/NULL); NullCheck(L_27); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_28 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_27, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)8); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = L_29; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = L_30; V_3 = 1; RuntimeObject * L_32 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_3)); NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_32); V_3 = *(uint8_t*)UnBox(L_32); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_33); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_33); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = L_31; NullCheck(L_34); ArrayElementTypeCheck (L_34, _stringLiteral439AC6327D9E85C6128D568E206F852F3E18A74C); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral439AC6327D9E85C6128D568E206F852F3E18A74C); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = L_34; V_3 = 6; RuntimeObject * L_36 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_3)); NullCheck(L_36); String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_36); V_3 = *(uint8_t*)UnBox(L_36); NullCheck(L_35); ArrayElementTypeCheck (L_35, L_37); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_37); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = L_35; NullCheck(L_38); ArrayElementTypeCheck (L_38, _stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_39 = L_38; String_t* L_40 = V_0; NullCheck(L_39); ArrayElementTypeCheck (L_39, L_40); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_40); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = L_39; NullCheck(L_41); ArrayElementTypeCheck (L_41, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); (L_41)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_42 = L_41; RuntimeObject * L_43 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_43); String_t* L_44 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_43); V_1 = *(uint8_t*)UnBox(L_43); NullCheck(L_42); ArrayElementTypeCheck (L_42, L_44); (L_42)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)L_44); String_t* L_45 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_42, /*hidden argument*/NULL); NullCheck(L_28); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_28, L_45, /*hidden argument*/NULL); RuntimeObject* L_46 = ___reader0; NullCheck(L_46); InterfaceActionInvoker0::Invoke(37 /* System.Void Sirenix.Serialization.IDataReader::SkipEntry() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_46); return (String_t*)NULL; } } // System.Void Sirenix.Serialization.StringSerializer::WriteValue(System.String,System.String,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringSerializer_WriteValue_m3E1524668EAA33A1572E0BC2DDC8952DF52D7172 (StringSerializer_t02226473DA6D1A109481D3FA85F87CCB2F2FE7AD * __this, String_t* ___name0, String_t* ___value1, RuntimeObject* ___writer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringSerializer_WriteValue_m3E1524668EAA33A1572E0BC2DDC8952DF52D7172_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value1; if (L_0) { goto IL_000b; } } { RuntimeObject* L_1 = ___writer2; String_t* L_2 = ___name0; NullCheck(L_1); InterfaceActionInvoker1< String_t* >::Invoke(15 /* System.Void Sirenix.Serialization.IDataWriter::WriteNull(System.String) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_1, L_2); return; } IL_000b: { RuntimeObject* L_3 = ___writer2; String_t* L_4 = ___name0; String_t* L_5 = ___value1; NullCheck(L_3); InterfaceActionInvoker2< String_t*, String_t* >::Invoke(21 /* System.Void Sirenix.Serialization.IDataWriter::WriteString(System.String,System.String) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_3, L_4, L_5); return; } } // System.Void Sirenix.Serialization.StringSerializer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringSerializer__ctor_m5C7C92A261EAEB4027AB39D58574382AA527B601 (StringSerializer_t02226473DA6D1A109481D3FA85F87CCB2F2FE7AD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringSerializer__ctor_m5C7C92A261EAEB4027AB39D58574382AA527B601_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Serializer_1__ctor_m13BA881D22251A908B73FF39B9B9F830297A9F36(__this, /*hidden argument*/Serializer_1__ctor_m13BA881D22251A908B73FF39B9B9F830297A9F36_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.TimeSpanFormatter::Read(System.TimeSpan&,Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanFormatter_Read_mE35CD4BD0FF6501725E013D0F066490600797BEA (TimeSpanFormatter_t5D3A28FD3888319F47D5F1BF0B4B50B127041F3D * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___value0, RuntimeObject* ___reader1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanFormatter_Read_mE35CD4BD0FF6501725E013D0F066490600797BEA_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int64_t V_1 = 0; { RuntimeObject* L_0 = ___reader1; NullCheck(L_0); uint8_t L_1 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_0, (String_t**)(&V_0)); if ((!(((uint32_t)L_1) == ((uint32_t)3)))) { goto IL_0020; } } { RuntimeObject* L_2 = ___reader1; NullCheck(L_2); InterfaceFuncInvoker1< bool, int64_t* >::Invoke(27 /* System.Boolean Sirenix.Serialization.IDataReader::ReadInt64(System.Int64&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_2, (int64_t*)(&V_1)); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_3 = ___value0; int64_t L_4 = V_1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_5; memset((&L_5), 0, sizeof(L_5)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_5), L_4, /*hidden argument*/NULL); *(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_3 = L_5; } IL_0020: { return; } } // System.Void Sirenix.Serialization.TimeSpanFormatter::Write(System.TimeSpan&,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanFormatter_Write_m2D59D6071866D5DAEC91AB37F43FAA7D6775FB60 (TimeSpanFormatter_t5D3A28FD3888319F47D5F1BF0B4B50B127041F3D * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___value0, RuntimeObject* ___writer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanFormatter_Write_m2D59D6071866D5DAEC91AB37F43FAA7D6775FB60_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___writer1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_1 = ___value0; int64_t L_2 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_1, /*hidden argument*/NULL); NullCheck(L_0); InterfaceActionInvoker2< String_t*, int64_t >::Invoke(26 /* System.Void Sirenix.Serialization.IDataWriter::WriteInt64(System.String,System.Int64) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_0, (String_t*)NULL, L_2); return; } } // System.Void Sirenix.Serialization.TimeSpanFormatter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanFormatter__ctor_m97879CDB3ADAE32AFECC773466022A60D32A99F7 (TimeSpanFormatter_t5D3A28FD3888319F47D5F1BF0B4B50B127041F3D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanFormatter__ctor_m97879CDB3ADAE32AFECC773466022A60D32A99F7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(MinimalBaseFormatter_1_t118CC2EEA9ADCE616F915155B1FB7E8C9FC1C532_il2cpp_TypeInfo_var); MinimalBaseFormatter_1__ctor_mE9689C13D11CB2C1EA2EEF27A44D20DCF67CC936(__this, /*hidden argument*/MinimalBaseFormatter_1__ctor_mE9689C13D11CB2C1EA2EEF27A44D20DCF67CC936_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.TwoWaySerializationBinder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoWaySerializationBinder__ctor_m55A3399F822ECF741FFDD55EBBD1793DA36F8CCB (TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.TwoWaySerializationBinder::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoWaySerializationBinder__cctor_m7C2A83FCFE4AF4FCFE750D7C199590EC1823246A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TwoWaySerializationBinder__cctor_m7C2A83FCFE4AF4FCFE750D7C199590EC1823246A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307 * L_0 = (DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307 *)il2cpp_codegen_object_new(DefaultSerializationBinder_tB1ACB74DA0AE382E7EDA94049BC5632A8C1C7307_il2cpp_TypeInfo_var); DefaultSerializationBinder__ctor_m910D35F406BA9AA48FE2DBDE2D1732DEB8BFDC67(L_0, /*hidden argument*/NULL); ((TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4_StaticFields*)il2cpp_codegen_static_fields_for(TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4_il2cpp_TypeInfo_var))->set_Default_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.TypeFormatter::Read(System.Type&,Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeFormatter_Read_m0312F000BC60A527CA0F9C9E8147A0CD01CC0F5A (TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39 * __this, Type_t ** ___value0, RuntimeObject* ___reader1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeFormatter_Read_m0312F000BC60A527CA0F9C9E8147A0CD01CC0F5A_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { RuntimeObject* L_0 = ___reader1; NullCheck(L_0); uint8_t L_1 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_0, (String_t**)(&V_0)); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0044; } } { RuntimeObject* L_2 = ___reader1; NullCheck(L_2); InterfaceFuncInvoker1< bool, String_t** >::Invoke(22 /* System.Boolean Sirenix.Serialization.IDataReader::ReadString(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_2, (String_t**)(&V_0)); Type_t ** L_3 = ___value0; RuntimeObject* L_4 = ___reader1; NullCheck(L_4); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_5 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_4); NullCheck(L_5); TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * L_6 = DeserializationContext_get_Binder_mCF94C2B4E01A56F1285447039B8F909306CB5861(L_5, /*hidden argument*/NULL); String_t* L_7 = V_0; RuntimeObject* L_8 = ___reader1; NullCheck(L_8); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_9 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_8); NullCheck(L_9); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_10 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_9, /*hidden argument*/NULL); NullCheck(L_10); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_11 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_10, /*hidden argument*/NULL); NullCheck(L_6); Type_t * L_12 = VirtFuncInvoker2< Type_t *, String_t*, DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * >::Invoke(5 /* System.Type Sirenix.Serialization.TwoWaySerializationBinder::BindToType(System.String,Sirenix.Serialization.DebugContext) */, L_6, L_7, L_11); *((RuntimeObject **)L_3) = (RuntimeObject *)L_12; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)(RuntimeObject *)L_12); Type_t ** L_13 = ___value0; Type_t * L_14 = *((Type_t **)L_13); if (!L_14) { goto IL_0044; } } { Type_t ** L_15 = ___value0; Type_t * L_16 = *((Type_t **)L_15); RuntimeObject* L_17 = ___reader1; MinimalBaseFormatter_1_RegisterReferenceID_mA94B978A70B58C551AB6228C5229141BB1D43A09(__this, L_16, L_17, /*hidden argument*/MinimalBaseFormatter_1_RegisterReferenceID_mA94B978A70B58C551AB6228C5229141BB1D43A09_RuntimeMethod_var); } IL_0044: { return; } } // System.Void Sirenix.Serialization.TypeFormatter::Write(System.Type&,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeFormatter_Write_m64A2EC426D667F3AE27A747367E2FFECAD52C876 (TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39 * __this, Type_t ** ___value0, RuntimeObject* ___writer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeFormatter_Write_m64A2EC426D667F3AE27A747367E2FFECAD52C876_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___writer1; RuntimeObject* L_1 = ___writer1; NullCheck(L_1); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_2 = InterfaceFuncInvoker0< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(5 /* Sirenix.Serialization.SerializationContext Sirenix.Serialization.IDataWriter::get_Context() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_1); NullCheck(L_2); TwoWaySerializationBinder_t5E00559A150F81EAA046E221D2AFDB634AB07AB4 * L_3 = SerializationContext_get_Binder_m1EA22BD69060B0E4E284AA9568F215463709B91F(L_2, /*hidden argument*/NULL); Type_t ** L_4 = ___value0; Type_t * L_5 = *((Type_t **)L_4); RuntimeObject* L_6 = ___writer1; NullCheck(L_6); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_7 = InterfaceFuncInvoker0< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(5 /* Sirenix.Serialization.SerializationContext Sirenix.Serialization.IDataWriter::get_Context() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_6); NullCheck(L_7); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_8 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_7, /*hidden argument*/NULL); NullCheck(L_8); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_9 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_8, /*hidden argument*/NULL); NullCheck(L_3); String_t* L_10 = VirtFuncInvoker2< String_t*, Type_t *, DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * >::Invoke(4 /* System.String Sirenix.Serialization.TwoWaySerializationBinder::BindToName(System.Type,Sirenix.Serialization.DebugContext) */, L_3, L_5, L_9); NullCheck(L_0); InterfaceActionInvoker2< String_t*, String_t* >::Invoke(21 /* System.Void Sirenix.Serialization.IDataWriter::WriteString(System.String,System.String) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_0, (String_t*)NULL, L_10); return; } } // System.Type Sirenix.Serialization.TypeFormatter::GetUninitializedObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeFormatter_GetUninitializedObject_mB00297CD953114852585AE5D92A63629A0F5DB1B (TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39 * __this, const RuntimeMethod* method) { { return (Type_t *)NULL; } } // System.Void Sirenix.Serialization.TypeFormatter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeFormatter__ctor_m424A9248230C12595E871D7BF6487474FC7E24BD (TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeFormatter__ctor_m424A9248230C12595E871D7BF6487474FC7E24BD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(MinimalBaseFormatter_1_tA35E7AE5FDD4924FE2BB59BDE7E779C96C3E1584_il2cpp_TypeInfo_var); MinimalBaseFormatter_1__ctor_mFC7ABE31E673D84F003C643FFAB42BDF86DB3E61(__this, /*hidden argument*/MinimalBaseFormatter_1__ctor_mFC7ABE31E673D84F003C643FFAB42BDF86DB3E61_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.TypeFormatterLocator::TryGetFormatter(System.Type,Sirenix.Serialization.FormatterLocationStep,Sirenix.Serialization.ISerializationPolicy,Sirenix.Serialization.IFormatter&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeFormatterLocator_TryGetFormatter_m88222B20D874243C759A012053BFCD2EE97FE38D (TypeFormatterLocator_t14B1D1D4867D6C9E29E1B57EA7060EA77EB0C25A * __this, Type_t * ___type0, int32_t ___step1, RuntimeObject* ___policy2, RuntimeObject** ___formatter3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeFormatterLocator_TryGetFormatter_m88222B20D874243C759A012053BFCD2EE97FE38D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL); Type_t * L_2 = ___type0; NullCheck(L_1); bool L_3 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_1, L_2); if (L_3) { goto IL_0018; } } { RuntimeObject** L_4 = ___formatter3; *((RuntimeObject **)L_4) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_4, (void*)(RuntimeObject *)NULL); return (bool)0; } IL_0018: { RuntimeObject** L_5 = ___formatter3; TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39 * L_6 = (TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39 *)il2cpp_codegen_object_new(TypeFormatter_tC98C99F06595990B3C72A46B8553E29614316D39_il2cpp_TypeInfo_var); TypeFormatter__ctor_m424A9248230C12595E871D7BF6487474FC7E24BD(L_6, /*hidden argument*/NULL); *((RuntimeObject **)L_5) = (RuntimeObject *)L_6; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_5, (void*)(RuntimeObject *)L_6); return (bool)1; } } // System.Void Sirenix.Serialization.TypeFormatterLocator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeFormatterLocator__ctor_m3EA527BFB4B3058A66374ADC87F64EAED63162F4 (TypeFormatterLocator_t14B1D1D4867D6C9E29E1B57EA7060EA77EB0C25A * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt16 Sirenix.Serialization.UInt16Serializer::ReadValue(Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t UInt16Serializer_ReadValue_mBA05A37AD9FE45B5DB8AAA482C02EC803E8FC00A (UInt16Serializer_tB03F9299101183DF42C9BA9B5C251EB7E433E66E * __this, RuntimeObject* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16Serializer_ReadValue_mBA05A37AD9FE45B5DB8AAA482C02EC803E8FC00A_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; uint8_t V_1 = 0; uint16_t V_2 = 0; uint8_t V_3 = 0; { RuntimeObject* L_0 = ___reader0; NullCheck(L_0); uint8_t L_1 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_0, (String_t**)(&V_0)); V_1 = L_1; uint8_t L_2 = V_1; if ((!(((uint32_t)L_2) == ((uint32_t)3)))) { goto IL_004b; } } { RuntimeObject* L_3 = ___reader0; NullCheck(L_3); bool L_4 = InterfaceFuncInvoker1< bool, uint16_t* >::Invoke(29 /* System.Boolean Sirenix.Serialization.IDataReader::ReadUInt16(System.UInt16&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_3, (uint16_t*)(&V_2)); if (L_4) { goto IL_0049; } } { RuntimeObject* L_5 = ___reader0; NullCheck(L_5); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_6 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_5); NullCheck(L_6); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_7 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_6, /*hidden argument*/NULL); NullCheck(L_7); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_8 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_7, /*hidden argument*/NULL); String_t* L_9 = V_0; RuntimeObject * L_10 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); V_1 = *(uint8_t*)UnBox(L_10); String_t* L_12 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral2A5174FC38B29D258AB846616A9D4A5279931877, L_9, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185, L_11, /*hidden argument*/NULL); NullCheck(L_8); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_8, L_12, /*hidden argument*/NULL); } IL_0049: { uint16_t L_13 = V_2; return L_13; } IL_004b: { RuntimeObject* L_14 = ___reader0; NullCheck(L_14); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_15 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_14); NullCheck(L_15); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_16 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_15, /*hidden argument*/NULL); NullCheck(L_16); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_17 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_16, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19; V_3 = 3; RuntimeObject * L_21 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_3)); NullCheck(L_21); String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_21); V_3 = *(uint8_t*)UnBox(L_21); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_22); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_22); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_20; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = L_23; String_t* L_25 = V_0; NullCheck(L_24); ArrayElementTypeCheck (L_24, L_25); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_25); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_24; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = L_26; RuntimeObject * L_28 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28); V_1 = *(uint8_t*)UnBox(L_28); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_29); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_29); String_t* L_30 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_27, /*hidden argument*/NULL); NullCheck(L_17); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_17, L_30, /*hidden argument*/NULL); RuntimeObject* L_31 = ___reader0; NullCheck(L_31); InterfaceActionInvoker0::Invoke(37 /* System.Void Sirenix.Serialization.IDataReader::SkipEntry() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_31); return (uint16_t)0; } } // System.Void Sirenix.Serialization.UInt16Serializer::WriteValue(System.String,System.UInt16,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16Serializer_WriteValue_m5A5865CA4E06FE6CFF9CAA193DDD9CB52D8EA69C (UInt16Serializer_tB03F9299101183DF42C9BA9B5C251EB7E433E66E * __this, String_t* ___name0, uint16_t ___value1, RuntimeObject* ___writer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16Serializer_WriteValue_m5A5865CA4E06FE6CFF9CAA193DDD9CB52D8EA69C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___writer2; String_t* L_1 = ___name0; uint16_t L_2 = ___value1; NullCheck(L_0); InterfaceActionInvoker2< String_t*, uint16_t >::Invoke(28 /* System.Void Sirenix.Serialization.IDataWriter::WriteUInt16(System.String,System.UInt16) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_0, L_1, L_2); return; } } // System.Void Sirenix.Serialization.UInt16Serializer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16Serializer__ctor_m1779D6B82ACE313C1E3A7A981AB974F3B4D5D6D0 (UInt16Serializer_tB03F9299101183DF42C9BA9B5C251EB7E433E66E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16Serializer__ctor_m1779D6B82ACE313C1E3A7A981AB974F3B4D5D6D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Serializer_1__ctor_m383A30509A4D34E550528AFC0118139BC349C1F0(__this, /*hidden argument*/Serializer_1__ctor_m383A30509A4D34E550528AFC0118139BC349C1F0_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt32 Sirenix.Serialization.UInt32Serializer::ReadValue(Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UInt32Serializer_ReadValue_mDCB7E3D3EB0115C9886C52F716710A58104F2B4E (UInt32Serializer_tCA35508AF0D7C5164C5E7C0DB1FF8874297BA826 * __this, RuntimeObject* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32Serializer_ReadValue_mDCB7E3D3EB0115C9886C52F716710A58104F2B4E_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; uint8_t V_1 = 0; uint32_t V_2 = 0; uint8_t V_3 = 0; { RuntimeObject* L_0 = ___reader0; NullCheck(L_0); uint8_t L_1 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_0, (String_t**)(&V_0)); V_1 = L_1; uint8_t L_2 = V_1; if ((!(((uint32_t)L_2) == ((uint32_t)3)))) { goto IL_004b; } } { RuntimeObject* L_3 = ___reader0; NullCheck(L_3); bool L_4 = InterfaceFuncInvoker1< bool, uint32_t* >::Invoke(30 /* System.Boolean Sirenix.Serialization.IDataReader::ReadUInt32(System.UInt32&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_3, (uint32_t*)(&V_2)); if (L_4) { goto IL_0049; } } { RuntimeObject* L_5 = ___reader0; NullCheck(L_5); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_6 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_5); NullCheck(L_6); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_7 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_6, /*hidden argument*/NULL); NullCheck(L_7); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_8 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_7, /*hidden argument*/NULL); String_t* L_9 = V_0; RuntimeObject * L_10 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); V_1 = *(uint8_t*)UnBox(L_10); String_t* L_12 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral2A5174FC38B29D258AB846616A9D4A5279931877, L_9, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185, L_11, /*hidden argument*/NULL); NullCheck(L_8); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_8, L_12, /*hidden argument*/NULL); } IL_0049: { uint32_t L_13 = V_2; return L_13; } IL_004b: { RuntimeObject* L_14 = ___reader0; NullCheck(L_14); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_15 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_14); NullCheck(L_15); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_16 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_15, /*hidden argument*/NULL); NullCheck(L_16); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_17 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_16, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19; V_3 = 3; RuntimeObject * L_21 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_3)); NullCheck(L_21); String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_21); V_3 = *(uint8_t*)UnBox(L_21); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_22); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_22); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_20; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = L_23; String_t* L_25 = V_0; NullCheck(L_24); ArrayElementTypeCheck (L_24, L_25); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_25); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_24; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = L_26; RuntimeObject * L_28 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28); V_1 = *(uint8_t*)UnBox(L_28); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_29); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_29); String_t* L_30 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_27, /*hidden argument*/NULL); NullCheck(L_17); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_17, L_30, /*hidden argument*/NULL); RuntimeObject* L_31 = ___reader0; NullCheck(L_31); InterfaceActionInvoker0::Invoke(37 /* System.Void Sirenix.Serialization.IDataReader::SkipEntry() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_31); return 0; } } // System.Void Sirenix.Serialization.UInt32Serializer::WriteValue(System.String,System.UInt32,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32Serializer_WriteValue_m3F4CBC088E8890A99C5EA955948D1D76F48673A5 (UInt32Serializer_tCA35508AF0D7C5164C5E7C0DB1FF8874297BA826 * __this, String_t* ___name0, uint32_t ___value1, RuntimeObject* ___writer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32Serializer_WriteValue_m3F4CBC088E8890A99C5EA955948D1D76F48673A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___writer2; String_t* L_1 = ___name0; uint32_t L_2 = ___value1; NullCheck(L_0); InterfaceActionInvoker2< String_t*, uint32_t >::Invoke(29 /* System.Void Sirenix.Serialization.IDataWriter::WriteUInt32(System.String,System.UInt32) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_0, L_1, L_2); return; } } // System.Void Sirenix.Serialization.UInt32Serializer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32Serializer__ctor_m1830EE9FD42E2B81CAEEBAF113582FBF73BA019A (UInt32Serializer_tCA35508AF0D7C5164C5E7C0DB1FF8874297BA826 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32Serializer__ctor_m1830EE9FD42E2B81CAEEBAF113582FBF73BA019A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Serializer_1__ctor_m738A38526C3AB2FC9D58533CEAD3C7DC39C53B73(__this, /*hidden argument*/Serializer_1__ctor_m738A38526C3AB2FC9D58533CEAD3C7DC39C53B73_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt64 Sirenix.Serialization.UInt64Serializer::ReadValue(Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UInt64Serializer_ReadValue_m31061E8C0D920070E87E6CF4D48E74C62FE9956E (UInt64Serializer_t046296E5E31B549A8704B8F86A7ACD06EAB25209 * __this, RuntimeObject* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64Serializer_ReadValue_m31061E8C0D920070E87E6CF4D48E74C62FE9956E_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; uint8_t V_1 = 0; uint64_t V_2 = 0; uint8_t V_3 = 0; { RuntimeObject* L_0 = ___reader0; NullCheck(L_0); uint8_t L_1 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_0, (String_t**)(&V_0)); V_1 = L_1; uint8_t L_2 = V_1; if ((!(((uint32_t)L_2) == ((uint32_t)3)))) { goto IL_004b; } } { RuntimeObject* L_3 = ___reader0; NullCheck(L_3); bool L_4 = InterfaceFuncInvoker1< bool, uint64_t* >::Invoke(31 /* System.Boolean Sirenix.Serialization.IDataReader::ReadUInt64(System.UInt64&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_3, (uint64_t*)(&V_2)); if (L_4) { goto IL_0049; } } { RuntimeObject* L_5 = ___reader0; NullCheck(L_5); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_6 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_5); NullCheck(L_6); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_7 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_6, /*hidden argument*/NULL); NullCheck(L_7); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_8 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_7, /*hidden argument*/NULL); String_t* L_9 = V_0; RuntimeObject * L_10 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); V_1 = *(uint8_t*)UnBox(L_10); String_t* L_12 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral2A5174FC38B29D258AB846616A9D4A5279931877, L_9, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185, L_11, /*hidden argument*/NULL); NullCheck(L_8); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_8, L_12, /*hidden argument*/NULL); } IL_0049: { uint64_t L_13 = V_2; return L_13; } IL_004b: { RuntimeObject* L_14 = ___reader0; NullCheck(L_14); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_15 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_14); NullCheck(L_15); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_16 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_15, /*hidden argument*/NULL); NullCheck(L_16); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_17 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_16, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19; V_3 = 3; RuntimeObject * L_21 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_3)); NullCheck(L_21); String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_21); V_3 = *(uint8_t*)UnBox(L_21); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_22); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_22); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_20; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = L_23; String_t* L_25 = V_0; NullCheck(L_24); ArrayElementTypeCheck (L_24, L_25); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_25); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_24; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = L_26; RuntimeObject * L_28 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28); V_1 = *(uint8_t*)UnBox(L_28); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_29); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_29); String_t* L_30 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_27, /*hidden argument*/NULL); NullCheck(L_17); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_17, L_30, /*hidden argument*/NULL); RuntimeObject* L_31 = ___reader0; NullCheck(L_31); InterfaceActionInvoker0::Invoke(37 /* System.Void Sirenix.Serialization.IDataReader::SkipEntry() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_31); return (((int64_t)((int64_t)0))); } } // System.Void Sirenix.Serialization.UInt64Serializer::WriteValue(System.String,System.UInt64,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64Serializer_WriteValue_m4F753FDC129407D34AA6AEBE607581696354ECE2 (UInt64Serializer_t046296E5E31B549A8704B8F86A7ACD06EAB25209 * __this, String_t* ___name0, uint64_t ___value1, RuntimeObject* ___writer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64Serializer_WriteValue_m4F753FDC129407D34AA6AEBE607581696354ECE2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___writer2; String_t* L_1 = ___name0; uint64_t L_2 = ___value1; NullCheck(L_0); InterfaceActionInvoker2< String_t*, uint64_t >::Invoke(30 /* System.Void Sirenix.Serialization.IDataWriter::WriteUInt64(System.String,System.UInt64) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_0, L_1, L_2); return; } } // System.Void Sirenix.Serialization.UInt64Serializer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64Serializer__ctor_mEBA926A1F82C51D6DD17AD896EB1F49DD02195B6 (UInt64Serializer_t046296E5E31B549A8704B8F86A7ACD06EAB25209 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64Serializer__ctor_mEBA926A1F82C51D6DD17AD896EB1F49DD02195B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Serializer_1__ctor_m3617D23F006E505B99AEA48875D3D922A9235DAD(__this, /*hidden argument*/Serializer_1__ctor_m3617D23F006E505B99AEA48875D3D922A9235DAD_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UIntPtr Sirenix.Serialization.UIntPtrSerializer::ReadValue(Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t UIntPtrSerializer_ReadValue_m3D288D8FAA327D57999FFC5405FEF43E2FE8A723 (UIntPtrSerializer_t570AAD1348E8C0F586B9B74E796867581B2334EE * __this, RuntimeObject* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrSerializer_ReadValue_m3D288D8FAA327D57999FFC5405FEF43E2FE8A723_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; uint8_t V_1 = 0; uint64_t V_2 = 0; uint8_t V_3 = 0; { RuntimeObject* L_0 = ___reader0; NullCheck(L_0); uint8_t L_1 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_0, (String_t**)(&V_0)); V_1 = L_1; uint8_t L_2 = V_1; if ((!(((uint32_t)L_2) == ((uint32_t)3)))) { goto IL_0050; } } { RuntimeObject* L_3 = ___reader0; NullCheck(L_3); bool L_4 = InterfaceFuncInvoker1< bool, uint64_t* >::Invoke(31 /* System.Boolean Sirenix.Serialization.IDataReader::ReadUInt64(System.UInt64&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_3, (uint64_t*)(&V_2)); if (L_4) { goto IL_0049; } } { RuntimeObject* L_5 = ___reader0; NullCheck(L_5); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_6 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_5); NullCheck(L_6); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_7 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_6, /*hidden argument*/NULL); NullCheck(L_7); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_8 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_7, /*hidden argument*/NULL); String_t* L_9 = V_0; RuntimeObject * L_10 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); V_1 = *(uint8_t*)UnBox(L_10); String_t* L_12 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral2A5174FC38B29D258AB846616A9D4A5279931877, L_9, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185, L_11, /*hidden argument*/NULL); NullCheck(L_8); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_8, L_12, /*hidden argument*/NULL); } IL_0049: { uint64_t L_13 = V_2; uintptr_t L_14; memset((&L_14), 0, sizeof(L_14)); UIntPtr__ctor_m73E1422110234CF2323CBDC17B665871C84FACD2((&L_14), L_13, /*hidden argument*/NULL); return L_14; } IL_0050: { RuntimeObject* L_15 = ___reader0; NullCheck(L_15); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_16 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_15); NullCheck(L_16); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_17 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_16, /*hidden argument*/NULL); NullCheck(L_17); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_18 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_17, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5AED3E9E329FC08E660E05F020173DE4F019253E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_20; V_3 = 3; RuntimeObject * L_22 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_3)); NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22); V_3 = *(uint8_t*)UnBox(L_22); NullCheck(L_21); ArrayElementTypeCheck (L_21, L_23); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_23); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = L_21; NullCheck(L_24); ArrayElementTypeCheck (L_24, _stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral6F6E30D9F2D658966C3AF579127903E60B9323C9); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = L_24; String_t* L_26 = V_0; NullCheck(L_25); ArrayElementTypeCheck (L_25, L_26); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_26); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = L_25; NullCheck(L_27); ArrayElementTypeCheck (L_27, _stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral57EEB958265BD0E3434FC856EF684E0DD496D185); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = L_27; RuntimeObject * L_29 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, (&V_1)); NullCheck(L_29); String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_29); V_1 = *(uint8_t*)UnBox(L_29); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_30); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_30); String_t* L_31 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_28, /*hidden argument*/NULL); NullCheck(L_18); DebugContext_LogWarning_mB5ABC254B561319B7F65981A3521BA52336BB0ED(L_18, L_31, /*hidden argument*/NULL); RuntimeObject* L_32 = ___reader0; NullCheck(L_32); InterfaceActionInvoker0::Invoke(37 /* System.Void Sirenix.Serialization.IDataReader::SkipEntry() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_32); return (((uintptr_t)0)); } } // System.Void Sirenix.Serialization.UIntPtrSerializer::WriteValue(System.String,System.UIntPtr,Sirenix.Serialization.IDataWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrSerializer_WriteValue_mB656CD2DD563328D92289F36371C8B9D51FCC73C (UIntPtrSerializer_t570AAD1348E8C0F586B9B74E796867581B2334EE * __this, String_t* ___name0, uintptr_t ___value1, RuntimeObject* ___writer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrSerializer_WriteValue_mB656CD2DD563328D92289F36371C8B9D51FCC73C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___writer2; String_t* L_1 = ___name0; uintptr_t L_2 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); uint64_t L_3 = UIntPtr_op_Explicit_m0F6E9EC046D4A796A257B9C2192A21051DC90075(L_2, /*hidden argument*/NULL); NullCheck(L_0); InterfaceActionInvoker2< String_t*, uint64_t >::Invoke(30 /* System.Void Sirenix.Serialization.IDataWriter::WriteUInt64(System.String,System.UInt64) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_0, L_1, L_3); return; } } // System.Void Sirenix.Serialization.UIntPtrSerializer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrSerializer__ctor_m5C99908E13BB9DF5853DA594FE079D12795D566F (UIntPtrSerializer_t570AAD1348E8C0F586B9B74E796867581B2334EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrSerializer__ctor_m5C99908E13BB9DF5853DA594FE079D12795D566F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Serializer_1__ctor_m934F0DE383C8A9734B569982828B968946D3FDB5(__this, /*hidden argument*/Serializer_1__ctor_m934F0DE383C8A9734B569982828B968946D3FDB5_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.UnityReferenceResolver::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityReferenceResolver__ctor_m2356D5E36966A635CA6707EF5835DBEF30CED157 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityReferenceResolver__ctor_m2356D5E36966A635CA6707EF5835DBEF30CED157_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_il2cpp_TypeInfo_var); ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D * L_0 = ((ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_il2cpp_TypeInfo_var))->get_Default_0(); Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * L_1 = (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A *)il2cpp_codegen_object_new(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A_il2cpp_TypeInfo_var); Dictionary_2__ctor_m98408F3F5238E6982CD965ABF86332FD0CE1A8A4(L_1, ((int32_t)32), L_0, /*hidden argument*/Dictionary_2__ctor_m98408F3F5238E6982CD965ABF86332FD0CE1A8A4_RuntimeMethod_var); __this->set_referenceIndexMapping_0(L_1); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_2 = (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)il2cpp_codegen_object_new(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_il2cpp_TypeInfo_var); List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF(L_2, /*hidden argument*/List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF_RuntimeMethod_var); __this->set_referencedUnityObjects_1(L_2); return; } } // System.Void Sirenix.Serialization.UnityReferenceResolver::.ctor(System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityReferenceResolver__ctor_m3BEDD370C7842E7FC69EE5C1A13BA8C96925CD17 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityReferenceResolver__ctor_m3BEDD370C7842E7FC69EE5C1A13BA8C96925CD17_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_il2cpp_TypeInfo_var); ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D * L_0 = ((ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceEqualityComparer_1_tB81961D5B0214ECCB38E5816586A5C9797965B1D_il2cpp_TypeInfo_var))->get_Default_0(); Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * L_1 = (Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A *)il2cpp_codegen_object_new(Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A_il2cpp_TypeInfo_var); Dictionary_2__ctor_m98408F3F5238E6982CD965ABF86332FD0CE1A8A4(L_1, ((int32_t)32), L_0, /*hidden argument*/Dictionary_2__ctor_m98408F3F5238E6982CD965ABF86332FD0CE1A8A4_RuntimeMethod_var); __this->set_referenceIndexMapping_0(L_1); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_2 = ___referencedUnityObjects0; UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05(__this, L_2, /*hidden argument*/NULL); return; } } // System.Collections.Generic.List`1<UnityEngine.Object> Sirenix.Serialization.UnityReferenceResolver::GetReferencedUnityObjects() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * UnityReferenceResolver_GetReferencedUnityObjects_m5338EFA1A48D67FD29C4BC471257AAFF9BA651E4 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, const RuntimeMethod* method) { { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_0 = __this->get_referencedUnityObjects_1(); return L_0; } } // System.Void Sirenix.Serialization.UnityReferenceResolver::SetReferencedUnityObjects(System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_0 = ___referencedUnityObjects0; if (L_0) { goto IL_000a; } } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_1 = (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)il2cpp_codegen_object_new(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_il2cpp_TypeInfo_var); List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF(L_1, /*hidden argument*/List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF_RuntimeMethod_var); ___referencedUnityObjects0 = L_1; } IL_000a: { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_2 = ___referencedUnityObjects0; __this->set_referencedUnityObjects_1(L_2); Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * L_3 = __this->get_referenceIndexMapping_0(); NullCheck(L_3); Dictionary_2_Clear_mA1B583DFC0F4843E7B762692CCCFB528483B3536(L_3, /*hidden argument*/Dictionary_2_Clear_mA1B583DFC0F4843E7B762692CCCFB528483B3536_RuntimeMethod_var); V_0 = 0; goto IL_0063; } IL_0020: { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_4 = __this->get_referencedUnityObjects_1(); int32_t L_5 = V_0; NullCheck(L_4); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_6 = List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_RuntimeMethod_var); if (!L_6) { goto IL_005f; } } { Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * L_7 = __this->get_referenceIndexMapping_0(); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_8 = __this->get_referencedUnityObjects_1(); int32_t L_9 = V_0; NullCheck(L_8); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_10 = List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_inline(L_8, L_9, /*hidden argument*/List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_RuntimeMethod_var); NullCheck(L_7); bool L_11 = Dictionary_2_ContainsKey_mAA0A67CCB67E2C3FFE791D6E134D8EC668D7A21C(L_7, L_10, /*hidden argument*/Dictionary_2_ContainsKey_mAA0A67CCB67E2C3FFE791D6E134D8EC668D7A21C_RuntimeMethod_var); if (L_11) { goto IL_005f; } } { Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * L_12 = __this->get_referenceIndexMapping_0(); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_13 = __this->get_referencedUnityObjects_1(); int32_t L_14 = V_0; NullCheck(L_13); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_15 = List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_inline(L_13, L_14, /*hidden argument*/List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_RuntimeMethod_var); int32_t L_16 = V_0; NullCheck(L_12); Dictionary_2_Add_m2CDD187E7B3A7E8374F937954271C361239B6EF8(L_12, L_15, L_16, /*hidden argument*/Dictionary_2_Add_m2CDD187E7B3A7E8374F937954271C361239B6EF8_RuntimeMethod_var); } IL_005f: { int32_t L_17 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0063: { int32_t L_18 = V_0; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_19 = __this->get_referencedUnityObjects_1(); NullCheck(L_19); int32_t L_20 = List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_inline(L_19, /*hidden argument*/List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_RuntimeMethod_var); if ((((int32_t)L_18) < ((int32_t)L_20))) { goto IL_0020; } } { return; } } // System.Boolean Sirenix.Serialization.UnityReferenceResolver::CanReference(System.Object,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityReferenceResolver_CanReference_mDBB014DDC137B3D53199FDADCF7925CBEF29A96E (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, RuntimeObject * ___value0, int32_t* ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityReferenceResolver_CanReference_mDBB014DDC137B3D53199FDADCF7925CBEF29A96E_MetadataUsageId); s_Il2CppMethodInitialized = true; } Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * V_0 = NULL; { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_0 = __this->get_referencedUnityObjects_1(); if (L_0) { goto IL_0015; } } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_1 = (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)il2cpp_codegen_object_new(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_il2cpp_TypeInfo_var); List_1__ctor_mAF963F060FA1EBE3F85CB8BA18079FD42ACCC1C5(L_1, ((int32_t)32), /*hidden argument*/List_1__ctor_mAF963F060FA1EBE3F85CB8BA18079FD42ACCC1C5_RuntimeMethod_var); __this->set_referencedUnityObjects_1(L_1); } IL_0015: { RuntimeObject * L_2 = ___value0; V_0 = ((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)IsInstClass((RuntimeObject*)L_2, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var)); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_3 = V_0; if (!L_3) { goto IL_0057; } } { Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * L_4 = __this->get_referenceIndexMapping_0(); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_5 = V_0; int32_t* L_6 = ___index1; NullCheck(L_4); bool L_7 = Dictionary_2_TryGetValue_m93A1AFAB83E35028A2EFE8D5C3E11134520C8366(L_4, L_5, (int32_t*)L_6, /*hidden argument*/Dictionary_2_TryGetValue_m93A1AFAB83E35028A2EFE8D5C3E11134520C8366_RuntimeMethod_var); if (L_7) { goto IL_0055; } } { int32_t* L_8 = ___index1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_9 = __this->get_referencedUnityObjects_1(); NullCheck(L_9); int32_t L_10 = List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_inline(L_9, /*hidden argument*/List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_RuntimeMethod_var); *((int32_t*)L_8) = (int32_t)L_10; Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * L_11 = __this->get_referenceIndexMapping_0(); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_12 = V_0; int32_t* L_13 = ___index1; int32_t L_14 = *((int32_t*)L_13); NullCheck(L_11); Dictionary_2_Add_m2CDD187E7B3A7E8374F937954271C361239B6EF8(L_11, L_12, L_14, /*hidden argument*/Dictionary_2_Add_m2CDD187E7B3A7E8374F937954271C361239B6EF8_RuntimeMethod_var); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_15 = __this->get_referencedUnityObjects_1(); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_16 = V_0; NullCheck(L_15); List_1_Add_m986F636DEAB8C4DF0C669D0F3FB8F91B79FBD4F3(L_15, L_16, /*hidden argument*/List_1_Add_m986F636DEAB8C4DF0C669D0F3FB8F91B79FBD4F3_RuntimeMethod_var); } IL_0055: { return (bool)1; } IL_0057: { int32_t* L_17 = ___index1; *((int32_t*)L_17) = (int32_t)(-1); return (bool)0; } } // System.Boolean Sirenix.Serialization.UnityReferenceResolver::TryResolveReference(System.Int32,System.Object&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityReferenceResolver_TryResolveReference_m299E74DDEBF70646758958CA5C8A761C3D3D1E66 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, int32_t ___index0, RuntimeObject ** ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityReferenceResolver_TryResolveReference_m299E74DDEBF70646758958CA5C8A761C3D3D1E66_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_0 = __this->get_referencedUnityObjects_1(); if (!L_0) { goto IL_001a; } } { int32_t L_1 = ___index0; if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_001a; } } { int32_t L_2 = ___index0; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_3 = __this->get_referencedUnityObjects_1(); NullCheck(L_3); int32_t L_4 = List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_inline(L_3, /*hidden argument*/List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_RuntimeMethod_var); if ((((int32_t)L_2) < ((int32_t)L_4))) { goto IL_001f; } } IL_001a: { RuntimeObject ** L_5 = ___value1; *((RuntimeObject **)L_5) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_5, (void*)(RuntimeObject *)NULL); return (bool)1; } IL_001f: { RuntimeObject ** L_6 = ___value1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_7 = __this->get_referencedUnityObjects_1(); int32_t L_8 = ___index0; NullCheck(L_7); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_9 = List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_inline(L_7, L_8, /*hidden argument*/List_1_get_Item_m5A09FA8A4B94B4106B502CE162D8D747E18BAA6C_RuntimeMethod_var); *((RuntimeObject **)L_6) = (RuntimeObject *)L_9; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_6, (void*)(RuntimeObject *)L_9); return (bool)1; } } // System.Void Sirenix.Serialization.UnityReferenceResolver::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityReferenceResolver_Reset_m20F4036024381C6CE511ED8510A8CE8FDDABE6E5 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityReferenceResolver_Reset_m20F4036024381C6CE511ED8510A8CE8FDDABE6E5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_referencedUnityObjects_1((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)NULL); Dictionary_2_t20C8330E7B385CB448F25A2D6ED6EF750FB0E10A * L_0 = __this->get_referenceIndexMapping_0(); NullCheck(L_0); Dictionary_2_Clear_mA1B583DFC0F4843E7B762692CCCFB528483B3536(L_0, /*hidden argument*/Dictionary_2_Clear_mA1B583DFC0F4843E7B762692CCCFB528483B3536_RuntimeMethod_var); return; } } // System.Void Sirenix.Serialization.UnityReferenceResolver::Sirenix.Serialization.Utilities.ICacheNotificationReceiver.OnFreed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityReferenceResolver_Sirenix_Serialization_Utilities_ICacheNotificationReceiver_OnFreed_mC503E74F3E64453B7EC8957BF04632C8343220A4 (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, const RuntimeMethod* method) { { UnityReferenceResolver_Reset_m20F4036024381C6CE511ED8510A8CE8FDDABE6E5(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.UnityReferenceResolver::Sirenix.Serialization.Utilities.ICacheNotificationReceiver.OnClaimed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityReferenceResolver_Sirenix_Serialization_Utilities_ICacheNotificationReceiver_OnClaimed_mF2F6BD3F6D5BC2FD2EBF5F534C07BDECBD106A1C (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.UnitySerializationInitializer::get_Initialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationInitializer_get_Initialized_m35DD24C31636024F4ACAAD3C98DA3810331BEB78 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationInitializer_get_Initialized_m35DD24C31636024F4ACAAD3C98DA3810331BEB78_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); bool L_0 = ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->get_initialized_1(); return L_0; } } // UnityEngine.RuntimePlatform Sirenix.Serialization.UnitySerializationInitializer::get_CurrentPlatform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnitySerializationInitializer_get_CurrentPlatform_mC3E00160B0C03A7B55900A907557C6A94A2777F3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationInitializer_get_CurrentPlatform_mC3E00160B0C03A7B55900A907557C6A94A2777F3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); int32_t L_0 = ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->get_U3CCurrentPlatformU3Ek__BackingField_2(); return L_0; } } // System.Void Sirenix.Serialization.UnitySerializationInitializer::set_CurrentPlatform(UnityEngine.RuntimePlatform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationInitializer_set_CurrentPlatform_m87C95518B9FFE76BE258B2D3BD8C5D41B3B6C327 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationInitializer_set_CurrentPlatform_m87C95518B9FFE76BE258B2D3BD8C5D41B3B6C327_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->set_U3CCurrentPlatformU3Ek__BackingField_2(L_0); return; } } // System.Void Sirenix.Serialization.UnitySerializationInitializer::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationInitializer_Initialize_mB69D9F1EDB32DB981FA4CE0107B0C12AE15B256B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationInitializer_Initialize_mB69D9F1EDB32DB981FA4CE0107B0C12AE15B256B_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); bool L_0 = ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->get_initialized_1(); if (L_0) { goto IL_004e; } } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); RuntimeObject * L_1 = ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->get_LOCK_0(); V_0 = L_1; RuntimeObject * L_2 = V_0; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_2, /*hidden argument*/NULL); } IL_0013: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); bool L_3 = ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->get_initialized_1(); if (L_3) { goto IL_0045; } } IL_001a: try { // begin try (depth: 2) { GlobalConfig_1_LoadInstanceIfAssetExists_mA5D9BB752BCCAA4D8851EF77DCB5674019589542(/*hidden argument*/GlobalConfig_1_LoadInstanceIfAssetExists_mA5D9BB752BCCAA4D8851EF77DCB5674019589542_RuntimeMethod_var); int32_t L_4 = Application_get_platform_m6AFFFF3B077F4D5CA1F71CF14ABA86A83FC71672(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); UnitySerializationInitializer_set_CurrentPlatform_m87C95518B9FFE76BE258B2D3BD8C5D41B3B6C327_inline(L_4, /*hidden argument*/NULL); bool L_5 = Application_get_isEditor_m347E6EE16E5109EF613C83ED98DB1EC6E3EF5E26(/*hidden argument*/NULL); if (!L_5) { goto IL_0032; } } IL_0030: { IL2CPP_LEAVE(0x4E, FINALLY_003e); } IL_0032: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); int32_t L_6 = UnitySerializationInitializer_get_CurrentPlatform_mC3E00160B0C03A7B55900A907557C6A94A2777F3_inline(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(ArchitectureInfo_t74FBE7FBA037762026C32109526DD0EC8BAD2F12_il2cpp_TypeInfo_var); ArchitectureInfo_SetRuntimePlatform_mF5B0D5073B2FB5ABDAFEDFB48272FDCB29EC779E(L_6, /*hidden argument*/NULL); IL2CPP_LEAVE(0x4E, FINALLY_003e); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003e; } FINALLY_003e: { // begin finally (depth: 2) IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->set_initialized_1((bool)1); IL2CPP_END_FINALLY(62) } // end finally (depth: 2) IL2CPP_CLEANUP(62) { IL2CPP_END_CLEANUP(0x4E, FINALLY_0047); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0045: { IL2CPP_LEAVE(0x4E, FINALLY_0047); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0047; } FINALLY_0047: { // begin finally (depth: 1) RuntimeObject * L_7 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL); IL2CPP_END_FINALLY(71) } // end finally (depth: 1) IL2CPP_CLEANUP(71) { IL2CPP_JUMP_TBL(0x4E, IL_004e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_004e: { return; } } // System.Void Sirenix.Serialization.UnitySerializationInitializer::InitializeRuntime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationInitializer_InitializeRuntime_m6127E0FE3C069745E692B4EA970FD7D27F5300EA (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationInitializer_InitializeRuntime_m6127E0FE3C069745E692B4EA970FD7D27F5300EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); UnitySerializationInitializer_Initialize_mB69D9F1EDB32DB981FA4CE0107B0C12AE15B256B(/*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.UnitySerializationInitializer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationInitializer__cctor_mFDF3B021377E56A7ABB7273C48E42A49BA676509 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationInitializer__cctor_mFDF3B021377E56A7ABB7273C48E42A49BA676509_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL); ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->set_LOCK_0(L_0); ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->set_initialized_1((bool)0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.UnitySerializationUtility::OdinWillSerialize(System.Reflection.MemberInfo,System.Boolean,Sirenix.Serialization.ISerializationPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_OdinWillSerialize_m0211AB253DACCC82CC0FAE56445F0EC2EA42B35A (MemberInfo_t * ___member0, bool ___serializeUnityFields1, RuntimeObject* ___policy2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_OdinWillSerialize_m0211AB253DACCC82CC0FAE56445F0EC2EA42B35A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * V_0 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 V_1; memset((&V_1), 0, sizeof(V_1)); Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * V_2 = NULL; Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * V_3 = NULL; bool V_4 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); RuntimeObject* G_B17_0 = NULL; bool G_B17_1 = false; MemberInfo_t * G_B17_2 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * G_B17_3 = NULL; RuntimeObject* G_B16_0 = NULL; bool G_B16_1 = false; MemberInfo_t * G_B16_2 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * G_B16_3 = NULL; RuntimeObject* G_B20_0 = NULL; bool G_B20_1 = false; MemberInfo_t * G_B20_2 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * G_B20_3 = NULL; RuntimeObject* G_B19_0 = NULL; bool G_B19_1 = false; MemberInfo_t * G_B19_2 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * G_B19_3 = NULL; RuntimeObject* G_B26_0 = NULL; bool G_B26_1 = false; MemberInfo_t * G_B26_2 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * G_B26_3 = NULL; RuntimeObject* G_B25_0 = NULL; bool G_B25_1 = false; MemberInfo_t * G_B25_2 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * G_B25_3 = NULL; RuntimeObject* G_B31_0 = NULL; bool G_B31_1 = false; MemberInfo_t * G_B31_2 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * G_B31_3 = NULL; RuntimeObject* G_B30_0 = NULL; bool G_B30_1 = false; MemberInfo_t * G_B30_2 = NULL; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 * G_B30_3 = NULL; bool G_B35_0 = false; { RuntimeObject* L_0 = ___policy2; if (!L_0) { goto IL_000b; } } { RuntimeObject* L_1 = ___policy2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_2 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityPolicy_6(); if ((!(((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)L_2)))) { goto IL_0013; } } IL_000b: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_3 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_OdinWillSerializeCache_UnityPolicy_9(); V_0 = L_3; goto IL_006e; } IL_0013: { RuntimeObject* L_4 = ___policy2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_5 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_EverythingPolicy_7(); if ((!(((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)L_5)))) { goto IL_0023; } } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_6 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_OdinWillSerializeCache_EverythingPolicy_10(); V_0 = L_6; goto IL_006e; } IL_0023: { RuntimeObject* L_7 = ___policy2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_8 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_StrictPolicy_8(); if ((!(((RuntimeObject*)(RuntimeObject*)L_7) == ((RuntimeObject*)(RuntimeObject*)L_8)))) { goto IL_0033; } } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_9 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_OdinWillSerializeCache_StrictPolicy_11(); V_0 = L_9; goto IL_006e; } IL_0033: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * L_10 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_OdinWillSerializeCache_CustomPolicies_12(); V_2 = L_10; Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * L_11 = V_2; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_11, /*hidden argument*/NULL); } IL_003f: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * L_12 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_OdinWillSerializeCache_CustomPolicies_12(); RuntimeObject* L_13 = ___policy2; NullCheck(L_12); bool L_14 = Dictionary_2_TryGetValue_m5C5000C6F7B6E40AEE2D5016A1A63A81867B1A46(L_12, L_13, (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m5C5000C6F7B6E40AEE2D5016A1A63A81867B1A46_RuntimeMethod_var); if (L_14) { goto IL_0065; } } IL_004e: { IL2CPP_RUNTIME_CLASS_INIT(ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_il2cpp_TypeInfo_var); ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 * L_15 = ((ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_il2cpp_TypeInfo_var))->get_Default_0(); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_16 = (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *)il2cpp_codegen_object_new(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F_il2cpp_TypeInfo_var); Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191(L_16, L_15, /*hidden argument*/Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191_RuntimeMethod_var); V_0 = L_16; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * L_17 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_OdinWillSerializeCache_CustomPolicies_12(); RuntimeObject* L_18 = ___policy2; Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_19 = V_0; NullCheck(L_17); Dictionary_2_Add_m79D000052E64F3BC63201DBA89FDC4EFBDABBD31(L_17, L_18, L_19, /*hidden argument*/Dictionary_2_Add_m79D000052E64F3BC63201DBA89FDC4EFBDABBD31_RuntimeMethod_var); } IL_0065: { IL2CPP_LEAVE(0x6E, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * L_20 = V_2; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_20, /*hidden argument*/NULL); IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_JUMP_TBL(0x6E, IL_006e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_006e: { Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_21 = V_0; V_3 = L_21; Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_22 = V_3; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_22, /*hidden argument*/NULL); } IL_0076: try { // begin try (depth: 1) { Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_23 = V_0; MemberInfo_t * L_24 = ___member0; NullCheck(L_23); bool L_25 = Dictionary_2_TryGetValue_m92B5433B12E33D934253888A759D03A128B0AA53(L_23, L_24, (CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 *)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m92B5433B12E33D934253888A759D03A128B0AA53_RuntimeMethod_var); if (L_25) { goto IL_00d8; } } IL_0081: { il2cpp_codegen_initobj((&V_1), sizeof(CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 )); bool L_26 = ___serializeUnityFields1; if (!L_26) { goto IL_00ae; } } IL_008c: { MemberInfo_t * L_27 = ___member0; bool L_28 = ___serializeUnityFields1; RuntimeObject* L_29 = ___policy2; RuntimeObject* L_30 = L_29; G_B16_0 = L_30; G_B16_1 = L_28; G_B16_2 = L_27; G_B16_3 = (&V_1); if (L_30) { G_B17_0 = L_30; G_B17_1 = L_28; G_B17_2 = L_27; G_B17_3 = (&V_1); goto IL_009a; } } IL_0094: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_31 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityPolicy_6(); G_B17_0 = L_31; G_B17_1 = G_B16_1; G_B17_2 = G_B16_2; G_B17_3 = G_B16_3; } IL_009a: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_32 = UnitySerializationUtility_CalculateOdinWillSerialize_m1FFED8F181E2C234BFF0BB14E12ACB0FF3589E1A(G_B17_2, G_B17_1, G_B17_0, /*hidden argument*/NULL); G_B17_3->set_SerializeUnityFieldsTrueResult_2(L_32); (&V_1)->set_HasCalculatedSerializeUnityFieldsTrueResult_0((bool)1); goto IL_00ce; } IL_00ae: { MemberInfo_t * L_33 = ___member0; bool L_34 = ___serializeUnityFields1; RuntimeObject* L_35 = ___policy2; RuntimeObject* L_36 = L_35; G_B19_0 = L_36; G_B19_1 = L_34; G_B19_2 = L_33; G_B19_3 = (&V_1); if (L_36) { G_B20_0 = L_36; G_B20_1 = L_34; G_B20_2 = L_33; G_B20_3 = (&V_1); goto IL_00bc; } } IL_00b6: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_37 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityPolicy_6(); G_B20_0 = L_37; G_B20_1 = G_B19_1; G_B20_2 = G_B19_2; G_B20_3 = G_B19_3; } IL_00bc: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_38 = UnitySerializationUtility_CalculateOdinWillSerialize_m1FFED8F181E2C234BFF0BB14E12ACB0FF3589E1A(G_B20_2, G_B20_1, G_B20_0, /*hidden argument*/NULL); G_B20_3->set_SerializeUnityFieldsFalseResult_3(L_38); (&V_1)->set_HasCalculatedSerializeUnityFieldsFalseResult_1((bool)1); } IL_00ce: { Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_39 = V_0; MemberInfo_t * L_40 = ___member0; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 L_41 = V_1; NullCheck(L_39); Dictionary_2_Add_m82CB5A3B2A2462CB9DADD1FF68998456B97C352D(L_39, L_40, L_41, /*hidden argument*/Dictionary_2_Add_m82CB5A3B2A2462CB9DADD1FF68998456B97C352D_RuntimeMethod_var); goto IL_0140; } IL_00d8: { bool L_42 = ___serializeUnityFields1; if (!L_42) { goto IL_010d; } } IL_00db: { CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 L_43 = V_1; bool L_44 = L_43.get_HasCalculatedSerializeUnityFieldsTrueResult_0(); if (L_44) { goto IL_010d; } } IL_00e3: { MemberInfo_t * L_45 = ___member0; bool L_46 = ___serializeUnityFields1; RuntimeObject* L_47 = ___policy2; RuntimeObject* L_48 = L_47; G_B25_0 = L_48; G_B25_1 = L_46; G_B25_2 = L_45; G_B25_3 = (&V_1); if (L_48) { G_B26_0 = L_48; G_B26_1 = L_46; G_B26_2 = L_45; G_B26_3 = (&V_1); goto IL_00f1; } } IL_00eb: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_49 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityPolicy_6(); G_B26_0 = L_49; G_B26_1 = G_B25_1; G_B26_2 = G_B25_2; G_B26_3 = G_B25_3; } IL_00f1: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_50 = UnitySerializationUtility_CalculateOdinWillSerialize_m1FFED8F181E2C234BFF0BB14E12ACB0FF3589E1A(G_B26_2, G_B26_1, G_B26_0, /*hidden argument*/NULL); G_B26_3->set_SerializeUnityFieldsTrueResult_2(L_50); (&V_1)->set_HasCalculatedSerializeUnityFieldsTrueResult_0((bool)1); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_51 = V_0; MemberInfo_t * L_52 = ___member0; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 L_53 = V_1; NullCheck(L_51); Dictionary_2_set_Item_m178FFDE1B4673EB24E148B45B9D8A9AE5B790862(L_51, L_52, L_53, /*hidden argument*/Dictionary_2_set_Item_m178FFDE1B4673EB24E148B45B9D8A9AE5B790862_RuntimeMethod_var); goto IL_0140; } IL_010d: { bool L_54 = ___serializeUnityFields1; if (L_54) { goto IL_0140; } } IL_0110: { CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 L_55 = V_1; bool L_56 = L_55.get_HasCalculatedSerializeUnityFieldsFalseResult_1(); if (L_56) { goto IL_0140; } } IL_0118: { MemberInfo_t * L_57 = ___member0; bool L_58 = ___serializeUnityFields1; RuntimeObject* L_59 = ___policy2; RuntimeObject* L_60 = L_59; G_B30_0 = L_60; G_B30_1 = L_58; G_B30_2 = L_57; G_B30_3 = (&V_1); if (L_60) { G_B31_0 = L_60; G_B31_1 = L_58; G_B31_2 = L_57; G_B31_3 = (&V_1); goto IL_0126; } } IL_0120: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_61 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityPolicy_6(); G_B31_0 = L_61; G_B31_1 = G_B30_1; G_B31_2 = G_B30_2; G_B31_3 = G_B30_3; } IL_0126: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_62 = UnitySerializationUtility_CalculateOdinWillSerialize_m1FFED8F181E2C234BFF0BB14E12ACB0FF3589E1A(G_B31_2, G_B31_1, G_B31_0, /*hidden argument*/NULL); G_B31_3->set_SerializeUnityFieldsFalseResult_3(L_62); (&V_1)->set_HasCalculatedSerializeUnityFieldsFalseResult_1((bool)1); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_63 = V_0; MemberInfo_t * L_64 = ___member0; CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 L_65 = V_1; NullCheck(L_63); Dictionary_2_set_Item_m178FFDE1B4673EB24E148B45B9D8A9AE5B790862(L_63, L_64, L_65, /*hidden argument*/Dictionary_2_set_Item_m178FFDE1B4673EB24E148B45B9D8A9AE5B790862_RuntimeMethod_var); } IL_0140: { bool L_66 = ___serializeUnityFields1; if (L_66) { goto IL_014b; } } IL_0143: { CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 L_67 = V_1; bool L_68 = L_67.get_SerializeUnityFieldsFalseResult_3(); G_B35_0 = L_68; goto IL_0151; } IL_014b: { CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03 L_69 = V_1; bool L_70 = L_69.get_SerializeUnityFieldsTrueResult_2(); G_B35_0 = L_70; } IL_0151: { V_4 = G_B35_0; IL2CPP_LEAVE(0x15C, FINALLY_0155); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0155; } FINALLY_0155: { // begin finally (depth: 1) Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_71 = V_3; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_71, /*hidden argument*/NULL); IL2CPP_END_FINALLY(341) } // end finally (depth: 1) IL2CPP_CLEANUP(341) { IL2CPP_JUMP_TBL(0x15C, IL_015c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_015c: { bool L_72 = V_4; return L_72; } } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::CalculateOdinWillSerialize(System.Reflection.MemberInfo,System.Boolean,Sirenix.Serialization.ISerializationPolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_CalculateOdinWillSerialize_m1FFED8F181E2C234BFF0BB14E12ACB0FF3589E1A (MemberInfo_t * ___member0, bool ___serializeUnityFields1, RuntimeObject* ___policy2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_CalculateOdinWillSerialize_m1FFED8F181E2C234BFF0BB14E12ACB0FF3589E1A_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { MemberInfo_t * L_0 = ___member0; NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_0); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_1) == ((RuntimeObject*)(Type_t *)L_3)))) { goto IL_0014; } } { return (bool)0; } IL_0014: { RuntimeObject* L_4 = ___policy2; MemberInfo_t * L_5 = ___member0; NullCheck(L_4); bool L_6 = InterfaceFuncInvoker1< bool, MemberInfo_t * >::Invoke(2 /* System.Boolean Sirenix.Serialization.ISerializationPolicy::ShouldSerializeMember(System.Reflection.MemberInfo) */, ISerializationPolicy_t0EC70AB63FD4875F21660481646E6267EA50C6CC_il2cpp_TypeInfo_var, L_4, L_5); if (L_6) { goto IL_001f; } } { return (bool)0; } IL_001f: { MemberInfo_t * L_7 = ___member0; if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_7, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_003c; } } { MemberInfo_t * L_8 = ___member0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (OdinSerializeAttribute_t17E13FF897481DD49CE9641A2DABA1EE539A5C32_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL); NullCheck(L_8); bool L_11 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_8, L_10, (bool)1); if (!L_11) { goto IL_003c; } } { return (bool)1; } IL_003c: { bool L_12 = ___serializeUnityFields1; if (!L_12) { goto IL_0041; } } { return (bool)1; } IL_0041: { } IL_0042: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Type_t * L_13 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_SerializeReferenceAttributeType_0(); if (!L_13) { goto IL_005b; } } IL_0049: { MemberInfo_t * L_14 = ___member0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Type_t * L_15 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_SerializeReferenceAttributeType_0(); NullCheck(L_14); bool L_16 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_14, L_15, (bool)1); if (!L_16) { goto IL_005b; } } IL_0057: { V_0 = (bool)0; goto IL_006c; } IL_005b: { goto IL_0060; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_005d; throw e; } CATCH_005d: { // begin catch(System.Object) goto IL_0060; } // end catch (depth: 1) IL_0060: { MemberInfo_t * L_17 = ___member0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_18 = UnitySerializationUtility_GuessIfUnityWillSerialize_mD0C315E4121BA830641EE0C9B428F862D204D121(L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_006a; } } { return (bool)0; } IL_006a: { return (bool)1; } IL_006c: { bool L_19 = V_0; return L_19; } } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::GuessIfUnityWillSerialize(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_GuessIfUnityWillSerialize_mD0C315E4121BA830641EE0C9B428F862D204D121 (MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GuessIfUnityWillSerialize_mD0C315E4121BA830641EE0C9B428F862D204D121_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { MemberInfo_t * L_0 = ___member0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral6467BAA3B187373E3931422E2A8EF22F3E447D77, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, UnitySerializationUtility_GuessIfUnityWillSerialize_mD0C315E4121BA830641EE0C9B428F862D204D121_RuntimeMethod_var); } IL_000e: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * L_2 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityWillSerializeMembersCache_3(); V_1 = L_2; Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * L_3 = V_1; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_3, /*hidden argument*/NULL); } IL_001a: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * L_4 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityWillSerializeMembersCache_3(); MemberInfo_t * L_5 = ___member0; NullCheck(L_4); bool L_6 = Dictionary_2_TryGetValue_mC4902336A15D84FF53ED4109CFFD94AC310C27F7(L_4, L_5, (bool*)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mC4902336A15D84FF53ED4109CFFD94AC310C27F7_RuntimeMethod_var); if (L_6) { goto IL_003c; } } IL_0029: { MemberInfo_t * L_7 = ___member0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_8 = UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mFE1C88FD6105EC66741847AB56221B3AC2FED891(L_7, /*hidden argument*/NULL); V_0 = L_8; Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * L_9 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityWillSerializeMembersCache_3(); MemberInfo_t * L_10 = ___member0; bool L_11 = V_0; NullCheck(L_9); Dictionary_2_set_Item_mF5967C0BA249106E1F885BBEAD84AF240C75BDE9(L_9, L_10, L_11, /*hidden argument*/Dictionary_2_set_Item_mF5967C0BA249106E1F885BBEAD84AF240C75BDE9_RuntimeMethod_var); } IL_003c: { IL2CPP_LEAVE(0x45, FINALLY_003e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003e; } FINALLY_003e: { // begin finally (depth: 1) Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * L_12 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_12, /*hidden argument*/NULL); IL2CPP_END_FINALLY(62) } // end finally (depth: 1) IL2CPP_CLEANUP(62) { IL2CPP_JUMP_TBL(0x45, IL_0045) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0045: { bool L_13 = V_0; return L_13; } } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::GuessIfUnityWillSerializePrivate(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mFE1C88FD6105EC66741847AB56221B3AC2FED891 (MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mFE1C88FD6105EC66741847AB56221B3AC2FED891_MetadataUsageId); s_Il2CppMethodInitialized = true; } FieldInfo_t * V_0 = NULL; { MemberInfo_t * L_0 = ___member0; V_0 = ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_0, FieldInfo_t_il2cpp_TypeInfo_var)); FieldInfo_t * L_1 = V_0; if (!L_1) { goto IL_0012; } } { FieldInfo_t * L_2 = V_0; NullCheck(L_2); bool L_3 = FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0014; } } IL_0012: { return (bool)0; } IL_0014: { FieldInfo_t * L_4 = V_0; bool L_5 = MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m92278158A17F05F659896BC9539564EBFAA3AD70(L_4, /*hidden argument*/MemberInfoExtensions_IsDefined_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m92278158A17F05F659896BC9539564EBFAA3AD70_RuntimeMethod_var); if (!L_5) { goto IL_001e; } } { return (bool)0; } IL_001e: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Type_t * L_6 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_SerializeReferenceAttributeType_0(); if (!L_6) { goto IL_0035; } } { FieldInfo_t * L_7 = V_0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Type_t * L_8 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_SerializeReferenceAttributeType_0(); NullCheck(L_7); bool L_9 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_7, L_8, (bool)1); if (!L_9) { goto IL_0035; } } { return (bool)1; } IL_0035: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL); FieldInfo_t * L_12 = V_0; NullCheck(L_12); Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_12); NullCheck(L_11); bool L_14 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_11, L_13); if (L_14) { goto IL_005c; } } { FieldInfo_t * L_15 = V_0; NullCheck(L_15); Type_t * L_16 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_15); FieldInfo_t * L_17 = V_0; NullCheck(L_17); Type_t * L_18 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_17); if ((!(((RuntimeObject*)(Type_t *)L_16) == ((RuntimeObject*)(Type_t *)L_18)))) { goto IL_005c; } } { return (bool)0; } IL_005c: { FieldInfo_t * L_19 = V_0; NullCheck(L_19); bool L_20 = FieldInfo_get_IsPublic_m9265C7C7F78B6E7361D9C3A1D09B8360B699D1C6(L_19, /*hidden argument*/NULL); if (L_20) { goto IL_006e; } } { FieldInfo_t * L_21 = V_0; bool L_22 = MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m1DDA3C5BAD6CE5210AE4AE7D994F7EA118FAC8E4(L_21, /*hidden argument*/MemberInfoExtensions_IsDefined_TisSerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_m1DDA3C5BAD6CE5210AE4AE7D994F7EA118FAC8E4_RuntimeMethod_var); if (L_22) { goto IL_006e; } } { return (bool)0; } IL_006e: { FieldInfo_t * L_23 = V_0; bool L_24 = MemberInfoExtensions_IsDefined_TisFixedBufferAttribute_tF3065E17C7BDDEAEDC5D80CED0509DB83C558743_mA7D9CD4BAEF6671FCC8590AC8BDE5DA8FC225661(L_23, /*hidden argument*/MemberInfoExtensions_IsDefined_TisFixedBufferAttribute_tF3065E17C7BDDEAEDC5D80CED0509DB83C558743_mA7D9CD4BAEF6671FCC8590AC8BDE5DA8FC225661_RuntimeMethod_var); if (!L_24) { goto IL_0082; } } { IL2CPP_RUNTIME_CLASS_INIT(UnityVersion_tBCEF23F602ED1958A9B361B4BE4B7FC7318FF537_il2cpp_TypeInfo_var); bool L_25 = UnityVersion_IsVersionOrGreater_mE80D07B971B5395CBB46EC558FC7A5D588CC045A(((int32_t)2017), 1, /*hidden argument*/NULL); return L_25; } IL_0082: { FieldInfo_t * L_26 = V_0; NullCheck(L_26); Type_t * L_27 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_26); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_28 = UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921(L_27, /*hidden argument*/NULL); return L_28; } } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::GuessIfUnityWillSerialize(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Type_t * L_0 = ___type0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921_RuntimeMethod_var); } IL_000e: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * L_2 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityWillSerializeTypesCache_4(); V_1 = L_2; Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * L_3 = V_1; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_3, /*hidden argument*/NULL); } IL_001a: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * L_4 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityWillSerializeTypesCache_4(); Type_t * L_5 = ___type0; NullCheck(L_4); bool L_6 = Dictionary_2_TryGetValue_mB655745D2AC767ACC35EB2E031D49223B7CC5F18(L_4, L_5, (bool*)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mB655745D2AC767ACC35EB2E031D49223B7CC5F18_RuntimeMethod_var); if (L_6) { goto IL_003c; } } IL_0029: { Type_t * L_7 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_8 = UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mB6EDA795817D96631523ADFB059B15A741A207F6(L_7, /*hidden argument*/NULL); V_0 = L_8; Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * L_9 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityWillSerializeTypesCache_4(); Type_t * L_10 = ___type0; bool L_11 = V_0; NullCheck(L_9); Dictionary_2_set_Item_mC4D295EA58699C8CA7A51B70892241A42B14CA8E(L_9, L_10, L_11, /*hidden argument*/Dictionary_2_set_Item_mC4D295EA58699C8CA7A51B70892241A42B14CA8E_RuntimeMethod_var); } IL_003c: { IL2CPP_LEAVE(0x45, FINALLY_003e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003e; } FINALLY_003e: { // begin finally (depth: 1) Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * L_12 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_12, /*hidden argument*/NULL); IL2CPP_END_FINALLY(62) } // end finally (depth: 1) IL2CPP_CLEANUP(62) { IL2CPP_JUMP_TBL(0x45, IL_0045) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0045: { bool L_13 = V_0; return L_13; } } // System.Boolean Sirenix.Serialization.UnitySerializationUtility::GuessIfUnityWillSerializePrivate(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mB6EDA795817D96631523ADFB059B15A741A207F6 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GuessIfUnityWillSerializePrivate_mB6EDA795817D96631523ADFB059B15A741A207F6_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; Type_t * V_3 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_0 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityNeverSerializesTypes_5(); Type_t * L_1 = ___type0; NullCheck(L_0); bool L_2 = HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED(L_0, L_1, /*hidden argument*/HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED_RuntimeMethod_var); if (!L_2) { goto IL_000f; } } { return (bool)0; } IL_000f: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); Type_t * L_5 = ___type0; NullCheck(L_4); bool L_6 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_4, L_5); if (!L_6) { goto IL_002c; } } { Type_t * L_7 = ___type0; NullCheck(L_7); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_7); NullCheck(L_8); if ((((RuntimeArray*)L_8)->max_length)) { goto IL_002c; } } { return (bool)1; } IL_002c: { Type_t * L_9 = ___type0; NullCheck(L_9); bool L_10 = Type_get_IsAbstract_m769E8E92F368822B8AB5354BB0D123BDDD605D09(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0049; } } { Type_t * L_11 = ___type0; NullCheck(L_11); bool L_12 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_0049; } } { Type_t * L_13 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_13) == ((RuntimeObject*)(Type_t *)L_15)))) { goto IL_004b; } } IL_0049: { return (bool)0; } IL_004b: { Type_t * L_16 = ___type0; NullCheck(L_16); bool L_17 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsEnum() */, L_16); if (!L_17) { goto IL_00a0; } } { Type_t * L_18 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_19 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_18, /*hidden argument*/NULL); V_0 = L_19; IL2CPP_RUNTIME_CLASS_INIT(UnityVersion_tBCEF23F602ED1958A9B361B4BE4B7FC7318FF537_il2cpp_TypeInfo_var); bool L_20 = UnityVersion_IsVersionOrGreater_mE80D07B971B5395CBB46EC558FC7A5D588CC045A(5, 6, /*hidden argument*/NULL); if (!L_20) { goto IL_0083; } } { Type_t * L_21 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_21) == ((RuntimeObject*)(Type_t *)L_23))) { goto IL_0081; } } { Type_t * L_24 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_25, /*hidden argument*/NULL); return (bool)((((int32_t)((((RuntimeObject*)(Type_t *)L_24) == ((RuntimeObject*)(Type_t *)L_26))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0081: { return (bool)0; } IL_0083: { Type_t * L_27 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_28 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_28, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_27) == ((RuntimeObject*)(Type_t *)L_29))) { goto IL_009e; } } { Type_t * L_30 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL); return (bool)((((RuntimeObject*)(Type_t *)L_30) == ((RuntimeObject*)(Type_t *)L_32))? 1 : 0); } IL_009e: { return (bool)1; } IL_00a0: { Type_t * L_33 = ___type0; NullCheck(L_33); bool L_34 = Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A(L_33, /*hidden argument*/NULL); if (L_34) { goto IL_00b5; } } { Type_t * L_35 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_36 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_37 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_36, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_35) == ((RuntimeObject*)(Type_t *)L_37)))) { goto IL_00b7; } } IL_00b5: { return (bool)1; } IL_00b7: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_38 = { reinterpret_cast<intptr_t> (Delegate_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_38, /*hidden argument*/NULL); Type_t * L_40 = ___type0; NullCheck(L_39); bool L_41 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_39, L_40); if (!L_41) { goto IL_00cb; } } { return (bool)0; } IL_00cb: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_42 = { reinterpret_cast<intptr_t> (UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_43 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_42, /*hidden argument*/NULL); Type_t * L_44 = ___type0; NullCheck(L_43); bool L_45 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_43, L_44); if (!L_45) { goto IL_010b; } } { Type_t * L_46 = ___type0; NullCheck(L_46); bool L_47 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_46); if (!L_47) { goto IL_00f4; } } { IL2CPP_RUNTIME_CLASS_INIT(UnityVersion_tBCEF23F602ED1958A9B361B4BE4B7FC7318FF537_il2cpp_TypeInfo_var); bool L_48 = UnityVersion_IsVersionOrGreater_mE80D07B971B5395CBB46EC558FC7A5D588CC045A(((int32_t)2020), 1, /*hidden argument*/NULL); if (L_48) { goto IL_00f4; } } { return (bool)0; } IL_00f4: { Type_t * L_49 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_50 = { reinterpret_cast<intptr_t> (UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_51 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_50, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_49) == ((RuntimeObject*)(Type_t *)L_51))) { goto IL_0109; } } { Type_t * L_52 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_53 = TypeExtensions_IsDefined_TisSerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_m2A609FDCBB9D0E72E14F1AD50445B5B4845E5C36(L_52, (bool)0, /*hidden argument*/TypeExtensions_IsDefined_TisSerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_m2A609FDCBB9D0E72E14F1AD50445B5B4845E5C36_RuntimeMethod_var); return L_53; } IL_0109: { return (bool)1; } IL_010b: { Type_t * L_54 = ___type0; NullCheck(L_54); bool L_55 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_0146; } } { Type_t * L_56 = ___type0; NullCheck(L_56); Type_t * L_57 = VirtFuncInvoker0< Type_t * >::Invoke(104 /* System.Type System.Type::GetElementType() */, L_56); V_1 = L_57; Type_t * L_58 = ___type0; NullCheck(L_58); int32_t L_59 = VirtFuncInvoker0< int32_t >::Invoke(28 /* System.Int32 System.Type::GetArrayRank() */, L_58); if ((!(((uint32_t)L_59) == ((uint32_t)1)))) { goto IL_0144; } } { Type_t * L_60 = V_1; NullCheck(L_60); bool L_61 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_60, /*hidden argument*/NULL); if (L_61) { goto IL_0144; } } { Type_t * L_62 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_63 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_63, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_65 = TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B(L_62, L_64, /*hidden argument*/NULL); if (L_65) { goto IL_0144; } } { Type_t * L_66 = V_1; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_67 = UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921(L_66, /*hidden argument*/NULL); return L_67; } IL_0144: { return (bool)0; } IL_0146: { Type_t * L_68 = ___type0; NullCheck(L_68); bool L_69 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_68); if (!L_69) { goto IL_019e; } } { Type_t * L_70 = ___type0; NullCheck(L_70); bool L_71 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_70); if (L_71) { goto IL_019e; } } { Type_t * L_72 = ___type0; NullCheck(L_72); Type_t * L_73 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_72); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_74 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_75 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_74, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_73) == ((RuntimeObject*)(Type_t *)L_75)))) { goto IL_019e; } } { Type_t * L_76 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_77 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_78 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_77, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_79 = TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB(L_76, L_78, /*hidden argument*/NULL); NullCheck(L_79); int32_t L_80 = 0; Type_t * L_81 = (L_79)->GetAt(static_cast<il2cpp_array_size_t>(L_80)); V_2 = L_81; Type_t * L_82 = V_2; NullCheck(L_82); bool L_83 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_82, /*hidden argument*/NULL); if (L_83) { goto IL_0195; } } { Type_t * L_84 = V_2; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_85 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_86 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_85, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_87 = TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B(L_84, L_86, /*hidden argument*/NULL); if (!L_87) { goto IL_0197; } } IL_0195: { return (bool)0; } IL_0197: { Type_t * L_88 = V_2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_89 = UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921(L_88, /*hidden argument*/NULL); return L_89; } IL_019e: { Type_t * L_90 = ___type0; NullCheck(L_90); Assembly_t * L_91 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_90); NullCheck(L_91); String_t* L_92 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.Assembly::get_FullName() */, L_91); NullCheck(L_92); bool L_93 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_92, _stringLiteral50D86FCBE2ABB9A65B07323B311FF2296682029D, 2, /*hidden argument*/NULL); if (L_93) { goto IL_01ce; } } { Type_t * L_94 = ___type0; NullCheck(L_94); Assembly_t * L_95 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_94); NullCheck(L_95); String_t* L_96 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.Assembly::get_FullName() */, L_95); NullCheck(L_96); bool L_97 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_96, _stringLiteral1A1DCCB1D5BC0A7A3EFB09F20E038D03DC5D80A1, 2, /*hidden argument*/NULL); if (!L_97) { goto IL_01d0; } } IL_01ce: { return (bool)1; } IL_01d0: { Type_t * L_98 = ___type0; NullCheck(L_98); bool L_99 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_98); if (!L_99) { goto IL_01e7; } } { IL2CPP_RUNTIME_CLASS_INIT(UnityVersion_tBCEF23F602ED1958A9B361B4BE4B7FC7318FF537_il2cpp_TypeInfo_var); bool L_100 = UnityVersion_IsVersionOrGreater_mE80D07B971B5395CBB46EC558FC7A5D588CC045A(((int32_t)2020), 1, /*hidden argument*/NULL); if (L_100) { goto IL_01e7; } } { return (bool)0; } IL_01e7: { Type_t * L_101 = ___type0; NullCheck(L_101); Assembly_t * L_102 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_101); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_103 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_104 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_103, /*hidden argument*/NULL); NullCheck(L_104); Assembly_t * L_105 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_104); if ((!(((RuntimeObject*)(Assembly_t *)L_102) == ((RuntimeObject*)(Assembly_t *)L_105)))) { goto IL_0200; } } { return (bool)0; } IL_0200: { Type_t * L_106 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_107 = TypeExtensions_IsDefined_TisSerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_m2A609FDCBB9D0E72E14F1AD50445B5B4845E5C36(L_106, (bool)0, /*hidden argument*/TypeExtensions_IsDefined_TisSerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_m2A609FDCBB9D0E72E14F1AD50445B5B4845E5C36_RuntimeMethod_var); if (!L_107) { goto IL_021b; } } { IL2CPP_RUNTIME_CLASS_INIT(UnityVersion_tBCEF23F602ED1958A9B361B4BE4B7FC7318FF537_il2cpp_TypeInfo_var); bool L_108 = UnityVersion_IsVersionOrGreater_mE80D07B971B5395CBB46EC558FC7A5D588CC045A(4, 5, /*hidden argument*/NULL); if (!L_108) { goto IL_0214; } } { return (bool)1; } IL_0214: { Type_t * L_109 = ___type0; NullCheck(L_109); bool L_110 = Type_get_IsClass_m760C57B1D66D7CBF284495764BB7EFC6E7D74B0F(L_109, /*hidden argument*/NULL); return L_110; } IL_021b: { IL2CPP_RUNTIME_CLASS_INIT(UnityVersion_tBCEF23F602ED1958A9B361B4BE4B7FC7318FF537_il2cpp_TypeInfo_var); bool L_111 = UnityVersion_IsVersionOrGreater_mE80D07B971B5395CBB46EC558FC7A5D588CC045A(((int32_t)2018), 2, /*hidden argument*/NULL); if (L_111) { goto IL_0269; } } { Type_t * L_112 = ___type0; NullCheck(L_112); Type_t * L_113 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_112); V_3 = L_113; goto IL_0259; } IL_0231: { Type_t * L_114 = V_3; NullCheck(L_114); bool L_115 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_114); if (!L_115) { goto IL_0252; } } { Type_t * L_116 = V_3; NullCheck(L_116); Type_t * L_117 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_116); NullCheck(L_117); String_t* L_118 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_117); bool L_119 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_118, _stringLiteral71902792EE428D8159A3DD4FF444E8ECF6CFF10D, /*hidden argument*/NULL); if (!L_119) { goto IL_0252; } } { return (bool)1; } IL_0252: { Type_t * L_120 = V_3; NullCheck(L_120); Type_t * L_121 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_120); V_3 = L_121; } IL_0259: { Type_t * L_122 = V_3; if (!L_122) { goto IL_0269; } } { Type_t * L_123 = V_3; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_124 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_125 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_124, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_123) == ((RuntimeObject*)(Type_t *)L_125)))) { goto IL_0231; } } IL_0269: { return (bool)0; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::SerializeUnityObject(UnityEngine.Object,Sirenix.Serialization.SerializationData&,System.Boolean,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_SerializeUnityObject_mACF598F763D3E3A1463530F7B6721007E27972F9 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * ___data1, bool ___serializeUnityFields2, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_SerializeUnityObject_mACF598F763D3E3A1463530F7B6721007E27972F9_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject* V_1 = NULL; int32_t V_2 = 0; { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral70B87F25C6C6D5AC0261895F65BF75DF7803B5FB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnitySerializationUtility_SerializeUnityObject_mACF598F763D3E3A1463530F7B6721007E27972F9_RuntimeMethod_var); } IL_0014: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_3 = ___unityObject0; V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IOverridesSerializationFormat_tD8CDA40ED353491C31DA82DF6243EBB3B04A65EC_il2cpp_TypeInfo_var)); RuntimeObject* L_4 = V_1; if (!L_4) { goto IL_0028; } } { RuntimeObject* L_5 = V_1; NullCheck(L_5); int32_t L_6 = InterfaceFuncInvoker1< int32_t, bool >::Invoke(0 /* Sirenix.Serialization.DataFormat Sirenix.Serialization.IOverridesSerializationFormat::GetFormatToSerializeAs(System.Boolean) */, IOverridesSerializationFormat_tD8CDA40ED353491C31DA82DF6243EBB3B04A65EC_il2cpp_TypeInfo_var, L_5, (bool)1); V_0 = L_6; goto IL_003e; } IL_0028: { bool L_7 = GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F(/*hidden argument*/GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F_RuntimeMethod_var); if (!L_7) { goto IL_003c; } } { GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_8 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_8); int32_t L_9 = GlobalSerializationConfig_get_BuildSerializationFormat_m7E9C213D72BF07EDD29AEF4F9CB4F8333E4C5813_inline(L_8, /*hidden argument*/NULL); V_0 = L_9; goto IL_003e; } IL_003c: { V_0 = 0; } IL_003e: { int32_t L_10 = V_0; if ((!(((uint32_t)L_10) == ((uint32_t)2)))) { goto IL_008e; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = L_11; NullCheck(L_12); ArrayElementTypeCheck (L_12, _stringLiteralD8CB3C57C846A58E9A9C6E1E961A85E845190A89); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD8CB3C57C846A58E9A9C6E1E961A85E845190A89); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_12; RuntimeObject * L_14 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&V_0)); NullCheck(L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14); V_0 = *(int32_t*)UnBox(L_14); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_15); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = L_13; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteralDFE3FC31D8AB9AE3F459C96F22A4CDE251BC4CA1); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralDFE3FC31D8AB9AE3F459C96F22A4CDE251BC4CA1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = L_16; V_2 = 0; RuntimeObject * L_18 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&V_2)); NullCheck(L_18); String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_18); V_2 = *(int32_t*)UnBox(L_18); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_19); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_19); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_17; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteral2E27CF6311053B7AD8FEBAD592275AD7D6FE7A49); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral2E27CF6311053B7AD8FEBAD592275AD7D6FE7A49); String_t* L_21 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_20, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568(L_21, /*hidden argument*/NULL); V_0 = 0; } IL_008e: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_22 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_23 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_24 = L_23->get_address_of_SerializedBytes_4(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_25 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_26 = L_25->get_address_of_ReferencedUnityObjects_5(); int32_t L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_SerializeUnityObject_mED7624B3AF4EB949D9B1B201BB46D14993EB6686(L_22, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_24, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_26, L_27, (bool)0, (SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B *)NULL, /*hidden argument*/NULL); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_28 = ___data1; int32_t L_29 = V_0; L_28->set_SerializedFormat_3(L_29); return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::SerializeUnityObject(UnityEngine.Object,System.String&,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.DataFormat,System.Boolean,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_SerializeUnityObject_mDF4E0D4D3F72CD944A36A94A7B058BF7146D220F (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, String_t** ___base64Bytes1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___referencedUnityObjects2, int32_t ___format3, bool ___serializeUnityFields4, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_SerializeUnityObject_mDF4E0D4D3F72CD944A36A94A7B058BF7146D220F_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_1 = ___referencedUnityObjects2; int32_t L_2 = ___format3; bool L_3 = ___serializeUnityFields4; SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_4 = ___context5; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_SerializeUnityObject_mED7624B3AF4EB949D9B1B201BB46D14993EB6686(L_0, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)(&V_0), (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_1, L_2, L_3, L_4, /*hidden argument*/NULL); String_t** L_5 = ___base64Bytes1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); String_t* L_7 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_6, /*hidden argument*/NULL); *((RuntimeObject **)L_5) = (RuntimeObject *)L_7; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_5, (void*)(RuntimeObject *)L_7); return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::SerializeUnityObject(UnityEngine.Object,System.Byte[]&,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.DataFormat,System.Boolean,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_SerializeUnityObject_mED7624B3AF4EB949D9B1B201BB46D14993EB6686 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___bytes1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___referencedUnityObjects2, int32_t ___format3, bool ___serializeUnityFields4, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_SerializeUnityObject_mED7624B3AF4EB949D9B1B201BB46D14993EB6686_MetadataUsageId); s_Il2CppMethodInitialized = true; } Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_0 = NULL; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * V_1 = NULL; RuntimeObject* V_2 = NULL; Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * V_3 = NULL; RuntimeObject* V_4 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral70B87F25C6C6D5AC0261895F65BF75DF7803B5FB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnitySerializationUtility_SerializeUnityObject_mED7624B3AF4EB949D9B1B201BB46D14993EB6686_RuntimeMethod_var); } IL_0014: { int32_t L_3 = ___format3; if ((!(((uint32_t)L_3) == ((uint32_t)2)))) { goto IL_003a; } } { RuntimeObject * L_4 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&___format3)); NullCheck(L_4); String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_4); ___format3 = *(int32_t*)UnBox(L_4); String_t* L_6 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral56F36372E215E61D95FA761BFF21841F526AE1F4, L_5, _stringLiteral7D057B436FD19437674057990E5F731C1F469951, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_6, /*hidden argument*/NULL); return; } IL_003a: { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_7 = ___referencedUnityObjects2; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_8 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_7); if (L_8) { goto IL_0047; } } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_9 = ___referencedUnityObjects2; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_10 = (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)il2cpp_codegen_object_new(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_il2cpp_TypeInfo_var); List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF(L_10, /*hidden argument*/List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF_RuntimeMethod_var); *((RuntimeObject **)L_9) = (RuntimeObject *)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_9, (void*)(RuntimeObject *)L_10); goto IL_004e; } IL_0047: { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_11 = ___referencedUnityObjects2; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_12 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_11); NullCheck(L_12); List_1_Clear_m323690E6AB15ABBB1CD3EFC1EB7DB14F9FD98C77(L_12, /*hidden argument*/List_1_Clear_m323690E6AB15ABBB1CD3EFC1EB7DB14F9FD98C77_RuntimeMethod_var); } IL_004e: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_13 = Cache_1_Claim_m79A458A3EE3C95261A515CF4AD83C1E3E141150C(/*hidden argument*/Cache_1_Claim_m79A458A3EE3C95261A515CF4AD83C1E3E141150C_RuntimeMethod_var); V_0 = L_13; } IL_0054: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_il2cpp_TypeInfo_var); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_14 = Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA(/*hidden argument*/Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA_RuntimeMethod_var); V_1 = L_14; } IL_005a: try { // begin try (depth: 2) { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_15 = V_1; NullCheck(L_15); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_16 = L_15->get_Value_5(); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_17 = ___referencedUnityObjects2; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_18 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_17); NullCheck(L_16); UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05(L_16, L_18, /*hidden argument*/NULL); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_19 = ___context5; if (!L_19) { goto IL_00ae; } } IL_006b: { SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_20 = ___context5; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_21 = V_1; NullCheck(L_21); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_22 = L_21->get_Value_5(); NullCheck(L_20); SerializationContext_set_IndexReferenceResolver_mB8D8070FFE33FB9BED811EEF3B16D378036ADA94_inline(L_20, L_22, /*hidden argument*/NULL); int32_t L_23 = ___format3; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_24 = V_0; NullCheck(L_24); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_25 = L_24->get_Value_5(); NullCheck(L_25); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_26 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_25, /*hidden argument*/NULL); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_27 = ___context5; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_28 = UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60(L_23, L_26, L_27, /*hidden argument*/NULL); V_2 = L_28; } IL_008c: try { // begin try (depth: 3) Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_29 = ___unityObject0; RuntimeObject* L_30 = V_2; NullCheck(L_30); RuntimeObject * L_31 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Sirenix.Serialization.Utilities.ICache::get_Value() */, ICache_tBDCB67E358355A1D7E139EEF788B57FB4C1CF7DA_il2cpp_TypeInfo_var, L_30); bool L_32 = ___serializeUnityFields4; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2(L_29, ((RuntimeObject*)IsInst((RuntimeObject*)L_31, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var)), L_32, /*hidden argument*/NULL); IL2CPP_LEAVE(0x1CB, FINALLY_00a4); } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00a4; } FINALLY_00a4: { // begin finally (depth: 3) { RuntimeObject* L_33 = V_2; if (!L_33) { goto IL_00ad; } } IL_00a7: { RuntimeObject* L_34 = V_2; NullCheck(L_34); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_34); } IL_00ad: { IL2CPP_END_FINALLY(164) } } // end finally (depth: 3) IL2CPP_CLEANUP(164) { IL2CPP_JUMP_TBL(0x1CB, IL_01cb) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ae: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_35 = Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3(/*hidden argument*/Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3_RuntimeMethod_var); V_3 = L_35; } IL_00b4: try { // begin try (depth: 3) { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_36 = V_3; NullCheck(L_36); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_37 = L_36->get_Value_5(); NullCheck(L_37); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_38 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_37, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_39 = SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712(/*hidden argument*/NULL); NullCheck(L_38); SerializationConfig_set_SerializationPolicy_m628BBBB68B4F7AAE9D4A8B94038E961C790EDD51(L_38, L_39, /*hidden argument*/NULL); bool L_40 = GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F(/*hidden argument*/GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F_RuntimeMethod_var); if (!L_40) { goto IL_012f; } } IL_00d0: { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_41 = V_3; NullCheck(L_41); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_42 = L_41->get_Value_5(); NullCheck(L_42); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_43 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_42, /*hidden argument*/NULL); NullCheck(L_43); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_44 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_43, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_45 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_45); int32_t L_46 = GlobalSerializationConfig_get_ErrorHandlingPolicy_mE779E5E188720C8AD1B507BBE698CD1EF2CE5F50_inline(L_45, /*hidden argument*/NULL); NullCheck(L_44); DebugContext_set_ErrorHandlingPolicy_m66620CA99ADB3E7C51D38914FD0E81A5A499F78B(L_44, L_46, /*hidden argument*/NULL); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_47 = V_3; NullCheck(L_47); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_48 = L_47->get_Value_5(); NullCheck(L_48); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_49 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_48, /*hidden argument*/NULL); NullCheck(L_49); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_50 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_49, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_51 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_51); int32_t L_52 = GlobalSerializationConfig_get_LoggingPolicy_m776ADBF2D937C50D07B53E3D96F9BD61176BB817_inline(L_51, /*hidden argument*/NULL); NullCheck(L_50); DebugContext_set_LoggingPolicy_mA371D2C17349359CFEC76DE41A0BD6132C5BD206(L_50, L_52, /*hidden argument*/NULL); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_53 = V_3; NullCheck(L_53); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_54 = L_53->get_Value_5(); NullCheck(L_54); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_55 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_54, /*hidden argument*/NULL); NullCheck(L_55); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_56 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_55, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_57 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_57); RuntimeObject* L_58 = GlobalSerializationConfig_get_Logger_m5578A792C89480004AF50836DD9880F802813F42(L_57, /*hidden argument*/NULL); NullCheck(L_56); DebugContext_set_Logger_m8AC2F6DEE88731C9A22604A4FE4A426737ADD122(L_56, L_58, /*hidden argument*/NULL); goto IL_0175; } IL_012f: { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_59 = V_3; NullCheck(L_59); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_60 = L_59->get_Value_5(); NullCheck(L_60); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_61 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_60, /*hidden argument*/NULL); NullCheck(L_61); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_62 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_61, /*hidden argument*/NULL); NullCheck(L_62); DebugContext_set_ErrorHandlingPolicy_m66620CA99ADB3E7C51D38914FD0E81A5A499F78B(L_62, 0, /*hidden argument*/NULL); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_63 = V_3; NullCheck(L_63); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_64 = L_63->get_Value_5(); NullCheck(L_64); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_65 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_64, /*hidden argument*/NULL); NullCheck(L_65); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_66 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_65, /*hidden argument*/NULL); NullCheck(L_66); DebugContext_set_LoggingPolicy_mA371D2C17349359CFEC76DE41A0BD6132C5BD206(L_66, 0, /*hidden argument*/NULL); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_67 = V_3; NullCheck(L_67); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_68 = L_67->get_Value_5(); NullCheck(L_68); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_69 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_68, /*hidden argument*/NULL); NullCheck(L_69); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_70 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_69, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DefaultLoggers_t6E67C654C04340C3E7DE5982F9945E409B2CCD31_il2cpp_TypeInfo_var); RuntimeObject* L_71 = DefaultLoggers_get_UnityLogger_mE48353CCB0FB37928DE9798A08329A00EF733EE5(/*hidden argument*/NULL); NullCheck(L_70); DebugContext_set_Logger_m8AC2F6DEE88731C9A22604A4FE4A426737ADD122(L_70, L_71, /*hidden argument*/NULL); } IL_0175: { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_72 = V_3; NullCheck(L_72); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_73 = L_72->get_Value_5(); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_74 = V_1; NullCheck(L_74); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_75 = L_74->get_Value_5(); NullCheck(L_73); SerializationContext_set_IndexReferenceResolver_mB8D8070FFE33FB9BED811EEF3B16D378036ADA94_inline(L_73, L_75, /*hidden argument*/NULL); int32_t L_76 = ___format3; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_77 = V_0; NullCheck(L_77); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_78 = L_77->get_Value_5(); NullCheck(L_78); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_79 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_78, /*hidden argument*/NULL); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_80 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_81 = Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32(L_80, /*hidden argument*/Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_82 = UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60(L_76, L_79, L_81, /*hidden argument*/NULL); V_4 = L_82; } IL_019f: try { // begin try (depth: 4) Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_83 = ___unityObject0; RuntimeObject* L_84 = V_4; NullCheck(L_84); RuntimeObject * L_85 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Sirenix.Serialization.Utilities.ICache::get_Value() */, ICache_tBDCB67E358355A1D7E139EEF788B57FB4C1CF7DA_il2cpp_TypeInfo_var, L_84); bool L_86 = ___serializeUnityFields4; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2(L_83, ((RuntimeObject*)IsInst((RuntimeObject*)L_85, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var)), L_86, /*hidden argument*/NULL); IL2CPP_LEAVE(0x1CB, FINALLY_01b5); } // end try (depth: 4) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01b5; } FINALLY_01b5: { // begin finally (depth: 4) { RuntimeObject* L_87 = V_4; if (!L_87) { goto IL_01c0; } } IL_01b9: { RuntimeObject* L_88 = V_4; NullCheck(L_88); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_88); } IL_01c0: { IL2CPP_END_FINALLY(437) } } // end finally (depth: 4) IL2CPP_CLEANUP(437) { IL2CPP_END_CLEANUP(0x1CB, FINALLY_01c1); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01c1; } FINALLY_01c1: { // begin finally (depth: 3) { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_89 = V_3; if (!L_89) { goto IL_01ca; } } IL_01c4: { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_90 = V_3; NullCheck(L_90); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_90); } IL_01ca: { IL2CPP_END_FINALLY(449) } } // end finally (depth: 3) IL2CPP_CLEANUP(449) { IL2CPP_JUMP_TBL(0x1CB, IL_01cb) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_01cb: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_91 = ___bytes1; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_92 = V_0; NullCheck(L_92); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_93 = L_92->get_Value_5(); NullCheck(L_93); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_94 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_93, /*hidden argument*/NULL); NullCheck(L_94); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_95 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(29 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_94); *((RuntimeObject **)L_91) = (RuntimeObject *)L_95; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_91, (void*)(RuntimeObject *)L_95); IL2CPP_LEAVE(0x1F3, FINALLY_01df); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01df; } FINALLY_01df: { // begin finally (depth: 2) { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_96 = V_1; if (!L_96) { goto IL_01e8; } } IL_01e2: { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_97 = V_1; NullCheck(L_97); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_97); } IL_01e8: { IL2CPP_END_FINALLY(479) } } // end finally (depth: 2) IL2CPP_CLEANUP(479) { IL2CPP_END_CLEANUP(0x1F3, FINALLY_01e9); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01e9; } FINALLY_01e9: { // begin finally (depth: 1) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_98 = V_0; if (!L_98) { goto IL_01f2; } } IL_01ec: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_99 = V_0; NullCheck(L_99); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_99); } IL_01f2: { IL2CPP_END_FINALLY(489) } } // end finally (depth: 1) IL2CPP_CLEANUP(489) { IL2CPP_JUMP_TBL(0x1F3, IL_01f3) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_01f3: { return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::SerializeUnityObject(UnityEngine.Object,Sirenix.Serialization.IDataWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, RuntimeObject* ___writer1, bool ___serializeUnityFields2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2_MetadataUsageId); s_Il2CppMethodInitialized = true; } MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* V_0 = NULL; RuntimeObject * V_1 = NULL; int32_t V_2 = 0; MemberInfo_t * V_3 = NULL; WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * V_4 = NULL; RuntimeObject * V_5 = NULL; bool V_6 = false; Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * V_7 = NULL; Exception_t * V_8 = NULL; SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * V_9 = NULL; Exception_t * V_10 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral70B87F25C6C6D5AC0261895F65BF75DF7803B5FB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2_RuntimeMethod_var); } IL_0014: { RuntimeObject* L_3 = ___writer1; if (L_3) { goto IL_0022; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralFE28F10D2C6DAB4E315F2659ADAA6A4F16B5E4B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2_RuntimeMethod_var); } IL_0022: { } IL_0023: try { // begin try (depth: 1) { RuntimeObject* L_5 = ___writer1; NullCheck(L_5); InterfaceActionInvoker0::Invoke(35 /* System.Void Sirenix.Serialization.IDataWriter::PrepareNewSerializationSession() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_5); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_6 = ___unityObject0; NullCheck(L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_6, /*hidden argument*/NULL); RuntimeObject* L_8 = ___writer1; NullCheck(L_8); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_9 = InterfaceFuncInvoker0< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(5 /* Sirenix.Serialization.SerializationContext Sirenix.Serialization.IDataWriter::get_Context() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_8); NullCheck(L_9); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_10 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_9, /*hidden argument*/NULL); NullCheck(L_10); RuntimeObject* L_11 = SerializationConfig_get_SerializationPolicy_m81A1C272C40987C46DB64219E76CE9471D582F4E(L_10, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(FormatterUtilities_t57774B5EC22582F32EFABAB74510CF01808ABA90_il2cpp_TypeInfo_var); MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_12 = FormatterUtilities_GetSerializableMembers_mD56C0890DE16C49088BD7AE93B5FD74E73DFE024(L_7, L_11, /*hidden argument*/NULL); V_0 = L_12; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_13 = ___unityObject0; V_1 = L_13; V_2 = 0; goto IL_00e0; } IL_004e: { MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_14 = V_0; int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; MemberInfo_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); V_3 = L_17; V_4 = (WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE *)NULL; MemberInfo_t * L_18 = V_3; bool L_19 = ___serializeUnityFields2; RuntimeObject* L_20 = ___writer1; NullCheck(L_20); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_21 = InterfaceFuncInvoker0< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(5 /* Sirenix.Serialization.SerializationContext Sirenix.Serialization.IDataWriter::get_Context() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_20); NullCheck(L_21); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_22 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_21, /*hidden argument*/NULL); NullCheck(L_22); RuntimeObject* L_23 = SerializationConfig_get_SerializationPolicy_m81A1C272C40987C46DB64219E76CE9471D582F4E(L_22, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_24 = UnitySerializationUtility_OdinWillSerialize_m0211AB253DACCC82CC0FAE56445F0EC2EA42B35A(L_18, L_19, L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_00dc; } } IL_006e: { MemberInfo_t * L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_26 = UnitySerializationUtility_GetCachedUnityMemberGetter_mD38504B4CCC191DD830BD317DC3B2D8791031BA2(L_25, /*hidden argument*/NULL); WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_27 = L_26; V_4 = L_27; if (!L_27) { goto IL_00dc; } } IL_0079: { WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_28 = V_4; NullCheck(L_28); RuntimeObject * L_29 = WeakValueGetter_Invoke_m219DF35FCF3383EAAB1DD55285D54CD8323E3F9F(L_28, (RuntimeObject **)(&V_1), /*hidden argument*/NULL); V_5 = L_29; RuntimeObject * L_30 = V_5; V_6 = (bool)((((RuntimeObject*)(RuntimeObject *)L_30) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_31 = V_6; if (L_31) { goto IL_00a2; } } IL_008f: { RuntimeObject * L_32 = V_5; NullCheck(L_32); Type_t * L_33 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_32, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_34, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_33) == ((RuntimeObject*)(Type_t *)L_35))) { goto IL_00dc; } } IL_00a2: { MemberInfo_t * L_36 = V_3; IL2CPP_RUNTIME_CLASS_INIT(FormatterUtilities_t57774B5EC22582F32EFABAB74510CF01808ABA90_il2cpp_TypeInfo_var); Type_t * L_37 = FormatterUtilities_GetContainedType_mB60046AA07D86CED1A5543B2DDD4AA69D7F7234A(L_36, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_38 = Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869(L_37, /*hidden argument*/NULL); V_7 = L_38; } IL_00af: try { // begin try (depth: 2) Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_39 = V_7; MemberInfo_t * L_40 = V_3; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_40); RuntimeObject * L_42 = V_5; RuntimeObject* L_43 = ___writer1; NullCheck(L_39); VirtActionInvoker3< String_t*, RuntimeObject *, RuntimeObject* >::Invoke(5 /* System.Void Sirenix.Serialization.Serializer::WriteValueWeak(System.String,System.Object,Sirenix.Serialization.IDataWriter) */, L_39, L_41, L_42, L_43); goto IL_00dc; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00c1; throw e; } CATCH_00c1: { // begin catch(System.Exception) V_8 = ((Exception_t *)__exception_local); RuntimeObject* L_44 = ___writer1; NullCheck(L_44); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_45 = InterfaceFuncInvoker0< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(5 /* Sirenix.Serialization.SerializationContext Sirenix.Serialization.IDataWriter::get_Context() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_44); NullCheck(L_45); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_46 = SerializationContext_get_Config_m41B5D605948DAEBCD6B0F410A8BF85058052D4B8(L_45, /*hidden argument*/NULL); NullCheck(L_46); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_47 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_46, /*hidden argument*/NULL); Exception_t * L_48 = V_8; NullCheck(L_47); DebugContext_LogException_mED2AFEADBD205A487211F445000728C2BF976DC9(L_47, L_48, /*hidden argument*/NULL); goto IL_00dc; } // end catch (depth: 2) IL_00dc: { int32_t L_49 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)); } IL_00e0: { int32_t L_50 = V_2; MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_51 = V_0; NullCheck(L_51); if ((((int32_t)L_50) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length))))))) { goto IL_004e; } } IL_00e9: { RuntimeObject* L_52 = ___writer1; NullCheck(L_52); InterfaceActionInvoker0::Invoke(8 /* System.Void Sirenix.Serialization.IDataWriter::FlushToStream() */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, L_52); goto IL_0146; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00f1; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0115; throw e; } CATCH_00f1: { // begin catch(Sirenix.Serialization.SerializationAbortException) V_9 = ((SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB *)__exception_local); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_53 = ___unityObject0; NullCheck(L_53); Type_t * L_54 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_55 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_54, /*hidden argument*/NULL); String_t* L_56 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral79828E2482531CB2B3CF26D4BFD0212066903B23, L_55, _stringLiteralEB562E52244B5BA025A128B0209C45A9AFB51CCF, /*hidden argument*/NULL); SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * L_57 = V_9; SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * L_58 = (SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB *)il2cpp_codegen_object_new(SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB_il2cpp_TypeInfo_var); SerializationAbortException__ctor_mA3292212CAE83C264AC35ACC8C7277DABB944165(L_58, L_56, L_57, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, UnitySerializationUtility_SerializeUnityObject_mA10140CEB2C5ECCB28F0BFC42EB98CD43EE8E3A2_RuntimeMethod_var); } // end catch (depth: 1) CATCH_0115: { // begin catch(System.Exception) V_10 = ((Exception_t *)__exception_local); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_59 = ___unityObject0; NullCheck(L_59); Type_t * L_60 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_59, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_61 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_60, /*hidden argument*/NULL); Exception_t * L_62 = V_10; NullCheck(L_62); String_t* L_63 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_62); String_t* L_64 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral0EFDFF5176AA3D23EC15D954E0A290E1B304D29C, L_61, _stringLiteral1D3A2BE303E3EB4C7150D40B39B97A4BCAD5A999, L_63, /*hidden argument*/NULL); Exception_t * L_65 = V_10; Exception_t * L_66 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(L_66, L_64, L_65, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogException_mBAA6702C240E37B2A834AA74E4FDC15A3A5589A9(L_66, /*hidden argument*/NULL); goto IL_0146; } // end catch (depth: 1) IL_0146: { return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,Sirenix.Serialization.SerializationData&,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_mF95284CFC748858DAB11C7B8C5FB6076E38B190F (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * ___data1, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_DeserializeUnityObject_mF95284CFC748858DAB11C7B8C5FB6076E38B190F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_1 = ___data1; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_2 = ___context2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515(L_0, (SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 *)L_1, L_2, (bool)0, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)NULL, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,Sirenix.Serialization.SerializationData&,Sirenix.Serialization.DeserializationContext,System.Boolean,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * ___data1, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context2, bool ___isPrefabData3, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___prefabInstanceUnityObjects4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * V_2 = NULL; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * V_3 = NULL; RuntimeObject* V_4 = NULL; RuntimeObject* V_5 = NULL; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 V_6; memset((&V_6), 0, sizeof(V_6)); SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * V_7 = NULL; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * V_8 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 5); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B13_0 = 0; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * G_B42_0 = NULL; { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral70B87F25C6C6D5AC0261895F65BF75DF7803B5FB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515_RuntimeMethod_var); } IL_0014: { bool L_3 = ___isPrefabData3; if (!L_3) { goto IL_0022; } } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_4 = ___prefabInstanceUnityObjects4; if (L_4) { goto IL_0022; } } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_5 = (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)il2cpp_codegen_object_new(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_il2cpp_TypeInfo_var); List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF(L_5, /*hidden argument*/List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF_RuntimeMethod_var); ___prefabInstanceUnityObjects4 = L_5; } IL_0022: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_6 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = L_6->get_SerializedBytes_4(); if (!L_7) { goto IL_00ec; } } { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_8 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = L_8->get_SerializedBytes_4(); NullCheck(L_9); if (!(((RuntimeArray*)L_9)->max_length)) { goto IL_00ec; } } { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_10 = ___data1; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_11 = L_10->get_SerializationNodes_10(); if (!L_11) { goto IL_0051; } } { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_12 = ___data1; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_13 = L_12->get_SerializationNodes_10(); NullCheck(L_13); int32_t L_14 = List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_inline(L_13, /*hidden argument*/List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_RuntimeMethod_var); if (L_14) { goto IL_00ec; } } IL_0051: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_15 = ___data1; int32_t L_16 = L_15->get_SerializedFormat_3(); if ((!(((uint32_t)L_16) == ((uint32_t)2)))) { goto IL_00c0; } } { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_17 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = L_17->get_SerializedBytes_4(); NullCheck(L_18); int32_t L_19 = 0; uint8_t L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); if ((((int32_t)L_20) == ((int32_t)((int32_t)123)))) { goto IL_0069; } } { G_B13_0 = 0; goto IL_006a; } IL_0069: { G_B13_0 = 1; } IL_006a: { V_0 = G_B13_0; } IL_006b: try { // begin try (depth: 1) SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_21 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = L_21->get_SerializedBytes_4(); IL2CPP_RUNTIME_CLASS_INIT(ProperBitConverter_t43E1694607182227A44751CA372E98E3A304302E_il2cpp_TypeInfo_var); String_t* L_23 = ProperBitConverter_BytesToHexString_m7EC93706A0EAA6D072CB45EF19EB51EF834315ED(L_22, (bool)1, /*hidden argument*/NULL); V_1 = L_23; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = L_24; NullCheck(L_25); ArrayElementTypeCheck (L_25, _stringLiteral1E54FF520C928430AD33BDF75860113BFCBC0D4F); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral1E54FF520C928430AD33BDF75860113BFCBC0D4F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = L_25; int32_t L_27 = V_0; int32_t L_28 = L_27; RuntimeObject * L_29 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, &L_28); NullCheck(L_26); ArrayElementTypeCheck (L_26, L_29); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_29); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = L_26; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteral1C561BAA0E2C78356232BAFFE0244F95FA4E6BC8); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral1C561BAA0E2C78356232BAFFE0244F95FA4E6BC8); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = L_30; String_t* L_32 = V_1; NullCheck(L_31); ArrayElementTypeCheck (L_31, L_32); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_32); String_t* L_33 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_31, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568(L_33, /*hidden argument*/NULL); goto IL_00aa; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00a7; throw e; } CATCH_00a7: { // begin catch(System.Object) goto IL_00aa; } // end catch (depth: 1) IL_00aa: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_34 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_35 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_36 = L_35->get_address_of_SerializedBytes_4(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_37 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_38 = L_37->get_address_of_ReferencedUnityObjects_5(); int32_t L_39 = V_0; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_40 = ___context2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152(L_34, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_36, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_38, L_39, L_40, /*hidden argument*/NULL); goto IL_00d9; } IL_00c0: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_41 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_42 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_43 = L_42->get_address_of_SerializedBytes_4(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_44 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_45 = L_44->get_address_of_ReferencedUnityObjects_5(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_46 = ___data1; int32_t L_47 = L_46->get_SerializedFormat_3(); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_48 = ___context2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152(L_41, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_43, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_45, L_47, L_48, /*hidden argument*/NULL); } IL_00d9: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_49 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_50 = ___data1; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_51 = L_50->get_PrefabModifications_9(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_52 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_53 = L_52->get_PrefabModificationsReferencedUnityObjects_8(); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150(L_49, L_51, L_53, /*hidden argument*/NULL); return; } IL_00ec: { V_2 = (Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 *)NULL; } IL_00ee: try { // begin try (depth: 1) { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_54 = ___context2; if (L_54) { goto IL_01a0; } } IL_00f4: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_55 = Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA(/*hidden argument*/Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA_RuntimeMethod_var); V_2 = L_55; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_56 = V_2; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_57 = Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3(L_56, /*hidden argument*/Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3_RuntimeMethod_var); ___context2 = L_57; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_58 = ___context2; NullCheck(L_58); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_59 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_58, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_60 = SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712(/*hidden argument*/NULL); NullCheck(L_59); SerializationConfig_set_SerializationPolicy_m628BBBB68B4F7AAE9D4A8B94038E961C790EDD51(L_59, L_60, /*hidden argument*/NULL); bool L_61 = GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F(/*hidden argument*/GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F_RuntimeMethod_var); if (!L_61) { goto IL_0169; } } IL_0119: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_62 = ___context2; NullCheck(L_62); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_63 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_62, /*hidden argument*/NULL); NullCheck(L_63); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_64 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_63, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_65 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_65); int32_t L_66 = GlobalSerializationConfig_get_ErrorHandlingPolicy_mE779E5E188720C8AD1B507BBE698CD1EF2CE5F50_inline(L_65, /*hidden argument*/NULL); NullCheck(L_64); DebugContext_set_ErrorHandlingPolicy_m66620CA99ADB3E7C51D38914FD0E81A5A499F78B(L_64, L_66, /*hidden argument*/NULL); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_67 = ___context2; NullCheck(L_67); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_68 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_67, /*hidden argument*/NULL); NullCheck(L_68); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_69 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_68, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_70 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_70); int32_t L_71 = GlobalSerializationConfig_get_LoggingPolicy_m776ADBF2D937C50D07B53E3D96F9BD61176BB817_inline(L_70, /*hidden argument*/NULL); NullCheck(L_69); DebugContext_set_LoggingPolicy_mA371D2C17349359CFEC76DE41A0BD6132C5BD206(L_69, L_71, /*hidden argument*/NULL); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_72 = ___context2; NullCheck(L_72); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_73 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_72, /*hidden argument*/NULL); NullCheck(L_73); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_74 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_73, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_75 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_75); RuntimeObject* L_76 = GlobalSerializationConfig_get_Logger_m5578A792C89480004AF50836DD9880F802813F42(L_75, /*hidden argument*/NULL); NullCheck(L_74); DebugContext_set_Logger_m8AC2F6DEE88731C9A22604A4FE4A426737ADD122(L_74, L_76, /*hidden argument*/NULL); goto IL_01a0; } IL_0169: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_77 = ___context2; NullCheck(L_77); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_78 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_77, /*hidden argument*/NULL); NullCheck(L_78); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_79 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_78, /*hidden argument*/NULL); NullCheck(L_79); DebugContext_set_ErrorHandlingPolicy_m66620CA99ADB3E7C51D38914FD0E81A5A499F78B(L_79, 0, /*hidden argument*/NULL); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_80 = ___context2; NullCheck(L_80); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_81 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_80, /*hidden argument*/NULL); NullCheck(L_81); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_82 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_81, /*hidden argument*/NULL); NullCheck(L_82); DebugContext_set_LoggingPolicy_mA371D2C17349359CFEC76DE41A0BD6132C5BD206(L_82, 0, /*hidden argument*/NULL); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_83 = ___context2; NullCheck(L_83); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_84 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_83, /*hidden argument*/NULL); NullCheck(L_84); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_85 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_84, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DefaultLoggers_t6E67C654C04340C3E7DE5982F9945E409B2CCD31_il2cpp_TypeInfo_var); RuntimeObject* L_86 = DefaultLoggers_get_UnityLogger_mE48353CCB0FB37928DE9798A08329A00EF733EE5(/*hidden argument*/NULL); NullCheck(L_85); DebugContext_set_Logger_m8AC2F6DEE88731C9A22604A4FE4A426737ADD122(L_85, L_86, /*hidden argument*/NULL); } IL_01a0: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_87 = ___unityObject0; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_87, IOverridesSerializationPolicy_t51B99C668B49C41702682D47D94B4BA22DA0BBE9_il2cpp_TypeInfo_var)); RuntimeObject* L_88 = V_4; if (!L_88) { goto IL_01c6; } } IL_01ac: { RuntimeObject* L_89 = V_4; NullCheck(L_89); RuntimeObject* L_90 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.IOverridesSerializationPolicy::get_SerializationPolicy() */, IOverridesSerializationPolicy_t51B99C668B49C41702682D47D94B4BA22DA0BBE9_il2cpp_TypeInfo_var, L_89); V_5 = L_90; RuntimeObject* L_91 = V_5; if (!L_91) { goto IL_01c6; } } IL_01b9: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_92 = ___context2; NullCheck(L_92); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_93 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_92, /*hidden argument*/NULL); RuntimeObject* L_94 = V_5; NullCheck(L_93); SerializationConfig_set_SerializationPolicy_m628BBBB68B4F7AAE9D4A8B94038E961C790EDD51(L_93, L_94, /*hidden argument*/NULL); } IL_01c6: { bool L_95 = ___isPrefabData3; if (L_95) { goto IL_02c2; } } IL_01cc: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_96 = ___data1; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_97 = L_96->get_Prefab_7(); IL2CPP_RUNTIME_CLASS_INIT(UnityExtensions_tC5019430BD0E2D24ECAFA79F28A119009815F65D_il2cpp_TypeInfo_var); bool L_98 = UnityExtensions_SafeIsUnityNull_m68DA959E45700D91848FAAC9FA54073C7503A996(L_97, /*hidden argument*/NULL); if (L_98) { goto IL_02c2; } } IL_01dc: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_99 = ___data1; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_100 = L_99->get_Prefab_7(); if (!((RuntimeObject*)IsInst((RuntimeObject*)L_100, ISupportsPrefabSerialization_t60C402CD1DF48262E4E7DAF9EE66A77C13AEE8DB_il2cpp_TypeInfo_var))) { goto IL_025e; } } IL_01e9: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_101 = ___data1; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_102 = L_101->get_Prefab_7(); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_103 = ___unityObject0; if ((!(((RuntimeObject*)(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_102) == ((RuntimeObject*)(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_103)))) { goto IL_020b; } } IL_01f2: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_104 = ___data1; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_105 = L_104->get_PrefabModifications_9(); if (!L_105) { goto IL_020b; } } IL_01fa: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_106 = ___data1; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_107 = L_106->get_PrefabModifications_9(); NullCheck(L_107); int32_t L_108 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_107, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var); if ((((int32_t)L_108) > ((int32_t)0))) { goto IL_02c2; } } IL_020b: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_109 = ___data1; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_110 = L_109->get_Prefab_7(); NullCheck(((RuntimeObject*)IsInst((RuntimeObject*)L_110, ISupportsPrefabSerialization_t60C402CD1DF48262E4E7DAF9EE66A77C13AEE8DB_il2cpp_TypeInfo_var))); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 L_111 = InterfaceFuncInvoker0< SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 >::Invoke(0 /* Sirenix.Serialization.SerializationData Sirenix.Serialization.ISupportsPrefabSerialization::get_SerializationData() */, ISupportsPrefabSerialization_t60C402CD1DF48262E4E7DAF9EE66A77C13AEE8DB_il2cpp_TypeInfo_var, ((RuntimeObject*)IsInst((RuntimeObject*)L_110, ISupportsPrefabSerialization_t60C402CD1DF48262E4E7DAF9EE66A77C13AEE8DB_il2cpp_TypeInfo_var))); V_6 = L_111; bool L_112 = SerializationData_get_ContainsData_mDD2CAD6940379F8EFAE8D36577F956694C28067C((SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 *)(&V_6), /*hidden argument*/NULL); if (L_112) { goto IL_0237; } } IL_0226: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_113 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_114 = ___data1; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_115 = ___context2; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_116 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_117 = L_116->get_ReferencedUnityObjects_5(); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515(L_113, (SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 *)L_114, L_115, (bool)1, L_117, /*hidden argument*/NULL); goto IL_0247; } IL_0237: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_118 = ___unityObject0; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_119 = ___context2; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_120 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_121 = L_120->get_ReferencedUnityObjects_5(); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_mBA0D5407F6F056B351DE76A25C23D14F3A450515(L_118, (SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 *)(&V_6), L_119, (bool)1, L_121, /*hidden argument*/NULL); } IL_0247: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_122 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_123 = ___data1; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_124 = L_123->get_PrefabModifications_9(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_125 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_126 = L_125->get_PrefabModificationsReferencedUnityObjects_8(); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150(L_122, L_124, L_126, /*hidden argument*/NULL); IL2CPP_LEAVE(0x38C, FINALLY_0382); } IL_025e: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_127 = ___data1; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_128 = L_127->get_Prefab_7(); NullCheck(L_128); Type_t * L_129 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_128, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_130 = { reinterpret_cast<intptr_t> (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_131 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_130, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_129) == ((RuntimeObject*)(Type_t *)L_131))) { goto IL_02c2; } } IL_0275: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_132 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_133 = L_132; NullCheck(L_133); ArrayElementTypeCheck (L_133, _stringLiteral4EC2E8C55A0712E26335A79A34AE8D9CA36A97B4); (L_133)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral4EC2E8C55A0712E26335A79A34AE8D9CA36A97B4); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_134 = L_133; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_135 = ___data1; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_136 = L_135->get_Prefab_7(); NullCheck(L_136); Type_t * L_137 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_136, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_138 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_137, /*hidden argument*/NULL); NullCheck(L_134); ArrayElementTypeCheck (L_134, L_138); (L_134)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_138); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_139 = L_134; NullCheck(L_139); ArrayElementTypeCheck (L_139, _stringLiteralF34DF34263C8837B42A927F9F2F3EFCD97D70ABC); (L_139)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralF34DF34263C8837B42A927F9F2F3EFCD97D70ABC); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_140 = L_139; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_141 = { reinterpret_cast<intptr_t> (ISupportsPrefabSerialization_t60C402CD1DF48262E4E7DAF9EE66A77C13AEE8DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_142 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_141, /*hidden argument*/NULL); String_t* L_143 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_142, /*hidden argument*/NULL); NullCheck(L_140); ArrayElementTypeCheck (L_140, L_143); (L_140)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_143); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_144 = L_140; NullCheck(L_144); ArrayElementTypeCheck (L_144, _stringLiteral97E936AE1DC7765335401FB36B5404A86EF3EE14); (L_144)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral97E936AE1DC7765335401FB36B5404A86EF3EE14); String_t* L_145 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_144, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568(L_145, /*hidden argument*/NULL); } IL_02c2: { bool L_146 = ___isPrefabData3; if (L_146) { goto IL_02cd; } } IL_02c5: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_147 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_148 = L_147->get_ReferencedUnityObjects_5(); G_B42_0 = L_148; goto IL_02cf; } IL_02cd: { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_149 = ___prefabInstanceUnityObjects4; G_B42_0 = L_149; } IL_02cf: { V_3 = G_B42_0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_150 = ___data1; int32_t L_151 = L_150->get_SerializedFormat_3(); if ((!(((uint32_t)L_151) == ((uint32_t)2)))) { goto IL_0331; } } IL_02d9: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_152 = ___context2; SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * L_153 = (SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 *)il2cpp_codegen_object_new(SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290_il2cpp_TypeInfo_var); SerializationNodeDataReader__ctor_m72E965EB8536039B0FE85DB63BB93ED5869BC725(L_153, L_152, /*hidden argument*/NULL); V_7 = L_153; } IL_02e1: try { // begin try (depth: 2) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_il2cpp_TypeInfo_var); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_154 = Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA(/*hidden argument*/Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA_RuntimeMethod_var); V_8 = L_154; } IL_02e8: try { // begin try (depth: 3) Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_155 = V_8; NullCheck(L_155); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_156 = L_155->get_Value_5(); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_157 = V_3; NullCheck(L_156); UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05(L_156, L_157, /*hidden argument*/NULL); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_158 = ___context2; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_159 = V_8; NullCheck(L_159); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_160 = L_159->get_Value_5(); NullCheck(L_158); DeserializationContext_set_IndexReferenceResolver_m0027EE73B5149E617BFAF47E94CD26CA5234E431_inline(L_158, L_160, /*hidden argument*/NULL); SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * L_161 = V_7; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_162 = ___data1; List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * L_163 = L_162->get_SerializationNodes_10(); NullCheck(L_161); SerializationNodeDataReader_set_Nodes_mE1A9CEDB6F289B4B5B8D8301E7FB95BC1BCF2783(L_161, L_163, /*hidden argument*/NULL); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_164 = ___unityObject0; SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * L_165 = V_7; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926(L_164, L_165, /*hidden argument*/NULL); IL2CPP_LEAVE(0x36E, FINALLY_0319); } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0319; } FINALLY_0319: { // begin finally (depth: 3) { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_166 = V_8; if (!L_166) { goto IL_0324; } } IL_031d: { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_167 = V_8; NullCheck(L_167); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_167); } IL_0324: { IL2CPP_END_FINALLY(793) } } // end finally (depth: 3) IL2CPP_CLEANUP(793) { IL2CPP_END_CLEANUP(0x36E, FINALLY_0325); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0325; } FINALLY_0325: { // begin finally (depth: 2) { SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * L_168 = V_7; if (!L_168) { goto IL_0330; } } IL_0329: { SerializationNodeDataReader_t1AD1CE27F9A6E1A4F58C849701DD21E67E33C290 * L_169 = V_7; NullCheck(L_169); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_169); } IL_0330: { IL2CPP_END_FINALLY(805) } } // end finally (depth: 2) IL2CPP_CLEANUP(805) { IL2CPP_JUMP_TBL(0x36E, IL_036e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0331: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_170 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_171 = L_170->get_SerializedBytes_4(); if (!L_171) { goto IL_0359; } } IL_0339: { SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_172 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_173 = L_172->get_SerializedBytes_4(); NullCheck(L_173); if (!(((RuntimeArray*)L_173)->max_length)) { goto IL_0359; } } IL_0342: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_174 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_175 = ___data1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_176 = L_175->get_address_of_SerializedBytes_4(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_177 = ___data1; int32_t L_178 = L_177->get_SerializedFormat_3(); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_179 = ___context2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152(L_174, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_176, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)(&V_3), L_178, L_179, /*hidden argument*/NULL); goto IL_036e; } IL_0359: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_180 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_181 = ___data1; String_t** L_182 = L_181->get_address_of_SerializedBytesString_6(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_183 = ___data1; int32_t L_184 = L_183->get_SerializedFormat_3(); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_185 = ___context2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_mC46BB39E5AEC2D1A4480AE8F0E6AA61AEA40BEFE(L_180, (String_t**)L_182, (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)(&V_3), L_184, L_185, /*hidden argument*/NULL); } IL_036e: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_186 = ___unityObject0; SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_187 = ___data1; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_188 = L_187->get_PrefabModifications_9(); SerializationData_t8072FE328C9BF6F55F64D38521497EE5C426DE83 * L_189 = ___data1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_190 = L_189->get_PrefabModificationsReferencedUnityObjects_8(); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150(L_186, L_188, L_190, /*hidden argument*/NULL); IL2CPP_LEAVE(0x38C, FINALLY_0382); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0382; } FINALLY_0382: { // begin finally (depth: 1) { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_191 = V_2; if (!L_191) { goto IL_038b; } } IL_0385: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_192 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); Cache_1_Release_m6D40E6F13BB3ACD17963075A0DC874C767C51073(L_192, /*hidden argument*/Cache_1_Release_m6D40E6F13BB3ACD17963075A0DC874C767C51073_RuntimeMethod_var); } IL_038b: { IL2CPP_END_FINALLY(898) } } // end finally (depth: 1) IL2CPP_CLEANUP(898) { IL2CPP_JUMP_TBL(0x38C, IL_038c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_038c: { return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,System.String&,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.DataFormat,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_mC46BB39E5AEC2D1A4480AE8F0E6AA61AEA40BEFE (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, String_t** ___base64Bytes1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___referencedUnityObjects2, int32_t ___format3, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_DeserializeUnityObject_mC46BB39E5AEC2D1A4480AE8F0E6AA61AEA40BEFE_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { String_t** L_0 = ___base64Bytes1; String_t* L_1 = *((String_t**)L_0); bool L_2 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_000a; } } { return; } IL_000a: { V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; } IL_000c: try { // begin try (depth: 1) String_t** L_3 = ___base64Bytes1; String_t* L_4 = *((String_t**)L_3); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156(L_4, /*hidden argument*/NULL); V_0 = L_5; goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0016; throw e; } CATCH_0016: { // begin catch(System.FormatException) String_t** L_6 = ___base64Bytes1; String_t* L_7 = *((String_t**)L_6); String_t* L_8 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral656CADE1C9F2129E2FAE77F8869378102E5E1337, L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_8, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; if (!L_9) { goto IL_0039; } } { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_10 = ___unityObject0; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_11 = ___referencedUnityObjects2; int32_t L_12 = ___format3; DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_13 = ___context4; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152(L_10, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)(&V_0), (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_11, L_12, L_13, /*hidden argument*/NULL); } IL_0039: { return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,System.Byte[]&,System.Collections.Generic.List`1<UnityEngine.Object>&,Sirenix.Serialization.DataFormat,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___bytes1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___referencedUnityObjects2, int32_t ___format3, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152_MetadataUsageId); s_Il2CppMethodInitialized = true; } Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_0 = NULL; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * V_1 = NULL; RuntimeObject* V_2 = NULL; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * V_3 = NULL; RuntimeObject* V_4 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral70B87F25C6C6D5AC0261895F65BF75DF7803B5FB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnitySerializationUtility_DeserializeUnityObject_m903664F36B52E23340ECD84C5182CFD37106B152_RuntimeMethod_var); } IL_0014: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_3 = ___bytes1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = *((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_3); if (!L_4) { goto IL_001d; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_5 = ___bytes1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = *((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_5); NullCheck(L_6); if ((((RuntimeArray*)L_6)->max_length)) { goto IL_001e; } } IL_001d: { return; } IL_001e: { int32_t L_7 = ___format3; if ((!(((uint32_t)L_7) == ((uint32_t)2)))) { goto IL_0049; } } IL_0022: try { // begin try (depth: 1) RuntimeObject * L_8 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&___format3)); NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8); ___format3 = *(int32_t*)UnBox(L_8); String_t* L_10 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral56F36372E215E61D95FA761BFF21841F526AE1F4, L_9, _stringLiteral1DF7EC0E1A2171F6DDAD0DFFD10D771D5BCFBA22, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_10, /*hidden argument*/NULL); goto IL_0048; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0045; throw e; } CATCH_0045: { // begin catch(System.Object) goto IL_0048; } // end catch (depth: 1) IL_0048: { return; } IL_0049: { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_11 = ___referencedUnityObjects2; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_12 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_11); if (L_12) { goto IL_0054; } } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_13 = ___referencedUnityObjects2; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_14 = (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)il2cpp_codegen_object_new(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_il2cpp_TypeInfo_var); List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF(L_14, /*hidden argument*/List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF_RuntimeMethod_var); *((RuntimeObject **)L_13) = (RuntimeObject *)L_14; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_13, (void*)(RuntimeObject *)L_14); } IL_0054: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_15 = Cache_1_Claim_m79A458A3EE3C95261A515CF4AD83C1E3E141150C(/*hidden argument*/Cache_1_Claim_m79A458A3EE3C95261A515CF4AD83C1E3E141150C_RuntimeMethod_var); V_0 = L_15; } IL_005a: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_il2cpp_TypeInfo_var); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_16 = Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA(/*hidden argument*/Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA_RuntimeMethod_var); V_1 = L_16; } IL_0060: try { // begin try (depth: 2) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_17 = V_0; NullCheck(L_17); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_18 = L_17->get_Value_5(); NullCheck(L_18); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_19 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_18, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_20 = ___bytes1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = *((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_20); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_22 = ___bytes1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = *((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_22); NullCheck(L_23); NullCheck(L_19); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(24 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_19, L_21, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))))); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_24 = V_0; NullCheck(L_24); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_25 = L_24->get_Value_5(); NullCheck(L_25); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_26 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_25, /*hidden argument*/NULL); NullCheck(L_26); VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_26, (((int64_t)((int64_t)0)))); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_27 = V_1; NullCheck(L_27); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_28 = L_27->get_Value_5(); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_29 = ___referencedUnityObjects2; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_30 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_29); NullCheck(L_28); UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05(L_28, L_30, /*hidden argument*/NULL); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_31 = ___context4; if (!L_31) { goto IL_00db; } } IL_009a: { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_32 = ___context4; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_33 = V_1; NullCheck(L_33); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_34 = L_33->get_Value_5(); NullCheck(L_32); DeserializationContext_set_IndexReferenceResolver_m0027EE73B5149E617BFAF47E94CD26CA5234E431_inline(L_32, L_34, /*hidden argument*/NULL); int32_t L_35 = ___format3; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_36 = V_0; NullCheck(L_36); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_37 = L_36->get_Value_5(); NullCheck(L_37); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_38 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_37, /*hidden argument*/NULL); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_39 = ___context4; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_40 = UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951(L_35, L_38, L_39, /*hidden argument*/NULL); V_2 = L_40; } IL_00bb: try { // begin try (depth: 3) Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_41 = ___unityObject0; RuntimeObject* L_42 = V_2; NullCheck(L_42); RuntimeObject * L_43 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Sirenix.Serialization.Utilities.ICache::get_Value() */, ICache_tBDCB67E358355A1D7E139EEF788B57FB4C1CF7DA_il2cpp_TypeInfo_var, L_42); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926(L_41, ((RuntimeObject*)IsInst((RuntimeObject*)L_43, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_LEAVE(0x20A, FINALLY_00d1); } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00d1; } FINALLY_00d1: { // begin finally (depth: 3) { RuntimeObject* L_44 = V_2; if (!L_44) { goto IL_00da; } } IL_00d4: { RuntimeObject* L_45 = V_2; NullCheck(L_45); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_45); } IL_00da: { IL2CPP_END_FINALLY(209) } } // end finally (depth: 3) IL2CPP_CLEANUP(209) { IL2CPP_END_CLEANUP(0x20A, FINALLY_01f6); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00db: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_46 = Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA(/*hidden argument*/Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA_RuntimeMethod_var); V_3 = L_46; } IL_00e1: try { // begin try (depth: 3) { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_47 = V_3; NullCheck(L_47); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_48 = L_47->get_Value_5(); NullCheck(L_48); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_49 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_48, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_50 = SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712(/*hidden argument*/NULL); NullCheck(L_49); SerializationConfig_set_SerializationPolicy_m628BBBB68B4F7AAE9D4A8B94038E961C790EDD51(L_49, L_50, /*hidden argument*/NULL); bool L_51 = GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F(/*hidden argument*/GlobalConfig_1_get_HasInstanceLoaded_m70915A1B197EA7B05122424933CCF9CF6D4D678F_RuntimeMethod_var); if (!L_51) { goto IL_015c; } } IL_00fd: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_52 = V_3; NullCheck(L_52); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_53 = L_52->get_Value_5(); NullCheck(L_53); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_54 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_53, /*hidden argument*/NULL); NullCheck(L_54); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_55 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_54, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_56 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_56); int32_t L_57 = GlobalSerializationConfig_get_ErrorHandlingPolicy_mE779E5E188720C8AD1B507BBE698CD1EF2CE5F50_inline(L_56, /*hidden argument*/NULL); NullCheck(L_55); DebugContext_set_ErrorHandlingPolicy_m66620CA99ADB3E7C51D38914FD0E81A5A499F78B(L_55, L_57, /*hidden argument*/NULL); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_58 = V_3; NullCheck(L_58); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_59 = L_58->get_Value_5(); NullCheck(L_59); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_60 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_59, /*hidden argument*/NULL); NullCheck(L_60); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_61 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_60, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_62 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_62); int32_t L_63 = GlobalSerializationConfig_get_LoggingPolicy_m776ADBF2D937C50D07B53E3D96F9BD61176BB817_inline(L_62, /*hidden argument*/NULL); NullCheck(L_61); DebugContext_set_LoggingPolicy_mA371D2C17349359CFEC76DE41A0BD6132C5BD206(L_61, L_63, /*hidden argument*/NULL); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_64 = V_3; NullCheck(L_64); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_65 = L_64->get_Value_5(); NullCheck(L_65); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_66 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_65, /*hidden argument*/NULL); NullCheck(L_66); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_67 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_66, /*hidden argument*/NULL); GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * L_68 = GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013(/*hidden argument*/GlobalConfig_1_get_Instance_m16DBBBD6B78A6AACCC35D989D410A21FC17A0013_RuntimeMethod_var); NullCheck(L_68); RuntimeObject* L_69 = GlobalSerializationConfig_get_Logger_m5578A792C89480004AF50836DD9880F802813F42(L_68, /*hidden argument*/NULL); NullCheck(L_67); DebugContext_set_Logger_m8AC2F6DEE88731C9A22604A4FE4A426737ADD122(L_67, L_69, /*hidden argument*/NULL); goto IL_01a2; } IL_015c: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_70 = V_3; NullCheck(L_70); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_71 = L_70->get_Value_5(); NullCheck(L_71); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_72 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_71, /*hidden argument*/NULL); NullCheck(L_72); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_73 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_72, /*hidden argument*/NULL); NullCheck(L_73); DebugContext_set_ErrorHandlingPolicy_m66620CA99ADB3E7C51D38914FD0E81A5A499F78B(L_73, 0, /*hidden argument*/NULL); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_74 = V_3; NullCheck(L_74); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_75 = L_74->get_Value_5(); NullCheck(L_75); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_76 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_75, /*hidden argument*/NULL); NullCheck(L_76); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_77 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_76, /*hidden argument*/NULL); NullCheck(L_77); DebugContext_set_LoggingPolicy_mA371D2C17349359CFEC76DE41A0BD6132C5BD206(L_77, 0, /*hidden argument*/NULL); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_78 = V_3; NullCheck(L_78); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_79 = L_78->get_Value_5(); NullCheck(L_79); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_80 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_79, /*hidden argument*/NULL); NullCheck(L_80); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_81 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_80, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DefaultLoggers_t6E67C654C04340C3E7DE5982F9945E409B2CCD31_il2cpp_TypeInfo_var); RuntimeObject* L_82 = DefaultLoggers_get_UnityLogger_mE48353CCB0FB37928DE9798A08329A00EF733EE5(/*hidden argument*/NULL); NullCheck(L_81); DebugContext_set_Logger_m8AC2F6DEE88731C9A22604A4FE4A426737ADD122(L_81, L_82, /*hidden argument*/NULL); } IL_01a2: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_83 = V_3; NullCheck(L_83); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_84 = L_83->get_Value_5(); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_85 = V_1; NullCheck(L_85); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_86 = L_85->get_Value_5(); NullCheck(L_84); DeserializationContext_set_IndexReferenceResolver_m0027EE73B5149E617BFAF47E94CD26CA5234E431_inline(L_84, L_86, /*hidden argument*/NULL); int32_t L_87 = ___format3; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_88 = V_0; NullCheck(L_88); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_89 = L_88->get_Value_5(); NullCheck(L_89); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_90 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_89, /*hidden argument*/NULL); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_91 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_92 = Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3(L_91, /*hidden argument*/Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject* L_93 = UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951(L_87, L_90, L_92, /*hidden argument*/NULL); V_4 = L_93; } IL_01cc: try { // begin try (depth: 4) Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_94 = ___unityObject0; RuntimeObject* L_95 = V_4; NullCheck(L_95); RuntimeObject * L_96 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Sirenix.Serialization.Utilities.ICache::get_Value() */, ICache_tBDCB67E358355A1D7E139EEF788B57FB4C1CF7DA_il2cpp_TypeInfo_var, L_95); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926(L_94, ((RuntimeObject*)IsInst((RuntimeObject*)L_96, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_LEAVE(0x20A, FINALLY_01e0); } // end try (depth: 4) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01e0; } FINALLY_01e0: { // begin finally (depth: 4) { RuntimeObject* L_97 = V_4; if (!L_97) { goto IL_01eb; } } IL_01e4: { RuntimeObject* L_98 = V_4; NullCheck(L_98); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_98); } IL_01eb: { IL2CPP_END_FINALLY(480) } } // end finally (depth: 4) IL2CPP_CLEANUP(480) { IL2CPP_END_CLEANUP(0x20A, FINALLY_01ec); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01ec; } FINALLY_01ec: { // begin finally (depth: 3) { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_99 = V_3; if (!L_99) { goto IL_01f5; } } IL_01ef: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_100 = V_3; NullCheck(L_100); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_100); } IL_01f5: { IL2CPP_END_FINALLY(492) } } // end finally (depth: 3) IL2CPP_CLEANUP(492) { IL2CPP_END_CLEANUP(0x20A, FINALLY_01f6); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01f6; } FINALLY_01f6: { // begin finally (depth: 2) { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_101 = V_1; if (!L_101) { goto IL_01ff; } } IL_01f9: { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_102 = V_1; NullCheck(L_102); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_102); } IL_01ff: { IL2CPP_END_FINALLY(502) } } // end finally (depth: 2) IL2CPP_CLEANUP(502) { IL2CPP_END_CLEANUP(0x20A, FINALLY_0200); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0200; } FINALLY_0200: { // begin finally (depth: 1) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_103 = V_0; if (!L_103) { goto IL_0209; } } IL_0203: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_104 = V_0; NullCheck(L_104); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_104); } IL_0209: { IL2CPP_END_FINALLY(512) } } // end finally (depth: 1) IL2CPP_CLEANUP(512) { IL2CPP_JUMP_TBL(0x20A, IL_020a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_020a: { return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::DeserializeUnityObject(UnityEngine.Object,Sirenix.Serialization.IDataReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, RuntimeObject* ___reader1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D * V_2 = NULL; int32_t V_3 = 0; String_t* V_4 = NULL; uint8_t V_5 = 0; RuntimeObject * V_6 = NULL; MemberInfo_t * V_7 = NULL; WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * V_8 = NULL; bool V_9 = false; String_t* V_10 = NULL; Type_t * V_11 = NULL; Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * V_12 = NULL; RuntimeObject * V_13 = NULL; Exception_t * V_14 = NULL; SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * V_15 = NULL; Exception_t * V_16 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 5); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral70B87F25C6C6D5AC0261895F65BF75DF7803B5FB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926_RuntimeMethod_var); } IL_0014: { RuntimeObject* L_3 = ___reader1; if (L_3) { goto IL_0022; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926_RuntimeMethod_var); } IL_0022: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_5 = ___unityObject0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IOverridesSerializationPolicy_t51B99C668B49C41702682D47D94B4BA22DA0BBE9_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_0; if (!L_6) { goto IL_0047; } } { RuntimeObject* L_7 = V_0; NullCheck(L_7); RuntimeObject* L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* Sirenix.Serialization.ISerializationPolicy Sirenix.Serialization.IOverridesSerializationPolicy::get_SerializationPolicy() */, IOverridesSerializationPolicy_t51B99C668B49C41702682D47D94B4BA22DA0BBE9_il2cpp_TypeInfo_var, L_7); V_1 = L_8; RuntimeObject* L_9 = V_1; if (!L_9) { goto IL_0047; } } { RuntimeObject* L_10 = ___reader1; NullCheck(L_10); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_11 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_10); NullCheck(L_11); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_12 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_11, /*hidden argument*/NULL); RuntimeObject* L_13 = V_1; NullCheck(L_12); SerializationConfig_set_SerializationPolicy_m628BBBB68B4F7AAE9D4A8B94038E961C790EDD51(L_12, L_13, /*hidden argument*/NULL); } IL_0047: { } IL_0048: try { // begin try (depth: 1) { RuntimeObject* L_14 = ___reader1; NullCheck(L_14); InterfaceActionInvoker0::Invoke(38 /* System.Void Sirenix.Serialization.IDataReader::PrepareNewSerializationSession() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_14); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_15 = ___unityObject0; NullCheck(L_15); Type_t * L_16 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_15, /*hidden argument*/NULL); RuntimeObject* L_17 = ___reader1; NullCheck(L_17); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_18 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_17); NullCheck(L_18); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_19 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_18, /*hidden argument*/NULL); NullCheck(L_19); RuntimeObject* L_20 = SerializationConfig_get_SerializationPolicy_m81A1C272C40987C46DB64219E76CE9471D582F4E(L_19, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(FormatterUtilities_t57774B5EC22582F32EFABAB74510CF01808ABA90_il2cpp_TypeInfo_var); Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D * L_21 = FormatterUtilities_GetSerializableMembersMap_m3333775B4FF0EB0BFF050ED171B41C39630D3091(L_16, L_20, /*hidden argument*/NULL); V_2 = L_21; V_3 = 0; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_22 = ___unityObject0; V_6 = L_22; goto IL_01db; } IL_0074: { V_7 = (MemberInfo_t *)NULL; V_8 = (WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF *)NULL; V_9 = (bool)0; uint8_t L_23 = V_5; if (L_23) { goto IL_00ef; } } IL_0081: { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_24 = ___unityObject0; NullCheck(L_24); Type_t * L_25 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_24, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_26 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_25, /*hidden argument*/NULL); String_t* L_27 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral30005B95D4FEF461EC791BD93EE4DF10144AF005, L_26, _stringLiteralD90EEACFED8F2EB55A26C0011B5DB8E58D94AD2C, /*hidden argument*/NULL); V_10 = L_27; String_t* L_28 = V_10; RuntimeObject* L_29 = ___reader1; NullCheck(L_29); Type_t * L_30 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_29, /*hidden argument*/NULL); NullCheck(L_30); String_t* L_31 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_30); String_t* L_32 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_28, _stringLiteral656984D8EE8DFAC1B9C4CF08956E0C982D43FBCC, L_31, _stringLiteralADC83B19E793491B1C6EA0FD8B46CD9F32E592FC, /*hidden argument*/NULL); V_10 = L_32; } IL_00bb: try { // begin try (depth: 2) String_t* L_33 = V_10; RuntimeObject* L_34 = ___reader1; NullCheck(L_34); String_t* L_35 = InterfaceFuncInvoker0< String_t* >::Invoke(10 /* System.String Sirenix.Serialization.IDataReader::GetDataDump() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_34); String_t* L_36 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_33, _stringLiteralD4B0C22995B3AF32D61339242291D8E7D19065D9, L_35, /*hidden argument*/NULL); V_10 = L_36; IL2CPP_LEAVE(0x163, FINALLY_00d4); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00d4; } FINALLY_00d4: { // begin finally (depth: 2) RuntimeObject* L_37 = ___reader1; NullCheck(L_37); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_38 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_37); NullCheck(L_38); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_39 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_38, /*hidden argument*/NULL); NullCheck(L_39); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_40 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_39, /*hidden argument*/NULL); String_t* L_41 = V_10; NullCheck(L_40); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_40, L_41, /*hidden argument*/NULL); V_9 = (bool)1; IL2CPP_END_FINALLY(212) } // end finally (depth: 2) IL2CPP_CLEANUP(212) { IL2CPP_JUMP_TBL(0x163, IL_0163) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ef: { String_t* L_42 = V_4; bool L_43 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0148; } } IL_00f8: { RuntimeObject* L_44 = ___reader1; NullCheck(L_44); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_45 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_44); NullCheck(L_45); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_46 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_45, /*hidden argument*/NULL); NullCheck(L_46); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_47 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_46, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_49 = L_48; NullCheck(L_49); ArrayElementTypeCheck (L_49, _stringLiteralDA0A07A1A78EC20BD06F06DBAFE250B09F4503CB); (L_49)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralDA0A07A1A78EC20BD06F06DBAFE250B09F4503CB); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_50 = L_49; uint8_t L_51 = V_5; uint8_t L_52 = L_51; RuntimeObject * L_53 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, &L_52); NullCheck(L_50); ArrayElementTypeCheck (L_50, L_53); (L_50)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_53); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = L_50; NullCheck(L_54); ArrayElementTypeCheck (L_54, _stringLiteral181882FEA73764EC5B9A7EE9687EE3BB23C8B3ED); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral181882FEA73764EC5B9A7EE9687EE3BB23C8B3ED); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = L_54; RuntimeObject* L_56 = ___reader1; NullCheck(L_56); String_t* L_57 = InterfaceFuncInvoker0< String_t* >::Invoke(5 /* System.String Sirenix.Serialization.IDataReader::get_CurrentNodeName() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_56); NullCheck(L_55); ArrayElementTypeCheck (L_55, L_57); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_57); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_58 = L_55; NullCheck(L_58); ArrayElementTypeCheck (L_58, _stringLiteralAF29FBA53AB62346AA3210494ED26F4DED8635B1); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteralAF29FBA53AB62346AA3210494ED26F4DED8635B1); String_t* L_59 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_58, /*hidden argument*/NULL); NullCheck(L_47); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_47, L_59, /*hidden argument*/NULL); V_9 = (bool)1; goto IL_0163; } IL_0148: { Dictionary_2_t6D866EC39B6751A2A4D3A5455A853A54F8BCFB2D * L_60 = V_2; String_t* L_61 = V_4; NullCheck(L_60); bool L_62 = Dictionary_2_TryGetValue_mD0F62412FCE8ABF5DE647AE606ACA58FFA64F3A3(L_60, L_61, (MemberInfo_t **)(&V_7), /*hidden argument*/Dictionary_2_TryGetValue_mD0F62412FCE8ABF5DE647AE606ACA58FFA64F3A3_RuntimeMethod_var); if (!L_62) { goto IL_0160; } } IL_0154: { MemberInfo_t * L_63 = V_7; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_64 = UnitySerializationUtility_GetCachedUnityMemberSetter_m5160801024194D0C37814AFDDF369AA0B1B6CB36(L_63, /*hidden argument*/NULL); WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_65 = L_64; V_8 = L_65; if (L_65) { goto IL_0163; } } IL_0160: { V_9 = (bool)1; } IL_0163: { bool L_66 = V_9; if (!L_66) { goto IL_016f; } } IL_0167: { RuntimeObject* L_67 = ___reader1; NullCheck(L_67); InterfaceActionInvoker0::Invoke(37 /* System.Void Sirenix.Serialization.IDataReader::SkipEntry() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_67); goto IL_01db; } IL_016f: { MemberInfo_t * L_68 = V_7; IL2CPP_RUNTIME_CLASS_INIT(FormatterUtilities_t57774B5EC22582F32EFABAB74510CF01808ABA90_il2cpp_TypeInfo_var); Type_t * L_69 = FormatterUtilities_GetContainedType_mB60046AA07D86CED1A5543B2DDD4AA69D7F7234A(L_68, /*hidden argument*/NULL); V_11 = L_69; Type_t * L_70 = V_11; IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_71 = Serializer_Get_mAF629480190E7ADB8C155B2616203F8749774869(L_70, /*hidden argument*/NULL); V_12 = L_71; } IL_0181: try { // begin try (depth: 2) Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1 * L_72 = V_12; RuntimeObject* L_73 = ___reader1; NullCheck(L_72); RuntimeObject * L_74 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject* >::Invoke(4 /* System.Object Sirenix.Serialization.Serializer::ReadValueWeak(Sirenix.Serialization.IDataReader) */, L_72, L_73); V_13 = L_74; WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_75 = V_8; RuntimeObject * L_76 = V_13; NullCheck(L_75); WeakValueSetter_Invoke_mF006E4E022D984B1A7152528E5C92D89D6929A41(L_75, (RuntimeObject **)(&V_6), L_76, /*hidden argument*/NULL); goto IL_01b3; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0198; throw e; } CATCH_0198: { // begin catch(System.Exception) V_14 = ((Exception_t *)__exception_local); RuntimeObject* L_77 = ___reader1; NullCheck(L_77); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_78 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_77); NullCheck(L_78); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_79 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_78, /*hidden argument*/NULL); NullCheck(L_79); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_80 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_79, /*hidden argument*/NULL); Exception_t * L_81 = V_14; NullCheck(L_80); DebugContext_LogException_mED2AFEADBD205A487211F445000728C2BF976DC9(L_80, L_81, /*hidden argument*/NULL); goto IL_01b3; } // end catch (depth: 2) IL_01b3: { int32_t L_82 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_82, (int32_t)1)); int32_t L_83 = V_3; if ((((int32_t)L_83) <= ((int32_t)((int32_t)1000)))) { goto IL_01db; } } IL_01bf: { RuntimeObject* L_84 = ___reader1; NullCheck(L_84); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_85 = InterfaceFuncInvoker0< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(8 /* Sirenix.Serialization.DeserializationContext Sirenix.Serialization.IDataReader::get_Context() */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_84); NullCheck(L_85); SerializationConfig_t243C6FBE3D12881ADC8F64759EBE8795C8166EE6 * L_86 = DeserializationContext_get_Config_m792E3AE91FB3BCC3CA31C74B827CC74ECA42A629(L_85, /*hidden argument*/NULL); NullCheck(L_86); DebugContext_tF6018F4A0D4CB2A73D93A3E74759655A1016A4BD * L_87 = SerializationConfig_get_DebugContext_m573309C8BBEC5E332E0A5E931A881E9D4F6C9C86(L_86, /*hidden argument*/NULL); NullCheck(L_87); DebugContext_LogError_m083AD4C3EF27F465904EC2CB5EC5039873C54712(L_87, _stringLiteralB1AAE7B93D753FBB11F88144D285DF2314548EA6, /*hidden argument*/NULL); goto IL_01f8; } IL_01db: { RuntimeObject* L_88 = ___reader1; NullCheck(L_88); uint8_t L_89 = InterfaceFuncInvoker1< uint8_t, String_t** >::Invoke(16 /* Sirenix.Serialization.EntryType Sirenix.Serialization.IDataReader::PeekEntry(System.String&) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, L_88, (String_t**)(&V_4)); uint8_t L_90 = L_89; V_5 = L_90; if ((((int32_t)L_90) == ((int32_t)8))) { goto IL_01f8; } } IL_01e9: { uint8_t L_91 = V_5; if ((((int32_t)L_91) == ((int32_t)((int32_t)13)))) { goto IL_01f8; } } IL_01ef: { uint8_t L_92 = V_5; if ((!(((uint32_t)L_92) == ((uint32_t)((int32_t)15))))) { goto IL_0074; } } IL_01f8: { goto IL_024f; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_01fa; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_021e; throw e; } CATCH_01fa: { // begin catch(Sirenix.Serialization.SerializationAbortException) V_15 = ((SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB *)__exception_local); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_93 = ___unityObject0; NullCheck(L_93); Type_t * L_94 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_93, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_95 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_94, /*hidden argument*/NULL); String_t* L_96 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralCC93C3346B48884743A789A2B282B62578660CEF, L_95, _stringLiteralEB562E52244B5BA025A128B0209C45A9AFB51CCF, /*hidden argument*/NULL); SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * L_97 = V_15; SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB * L_98 = (SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB *)il2cpp_codegen_object_new(SerializationAbortException_tD2ACF16DC030E25F7AA9E3B655DD68AE363BAAAB_il2cpp_TypeInfo_var); SerializationAbortException__ctor_mA3292212CAE83C264AC35ACC8C7277DABB944165(L_98, L_96, L_97, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_98, UnitySerializationUtility_DeserializeUnityObject_m448A7881800AF2E060CDE497971065F9424C2926_RuntimeMethod_var); } // end catch (depth: 1) CATCH_021e: { // begin catch(System.Exception) V_16 = ((Exception_t *)__exception_local); Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_99 = ___unityObject0; NullCheck(L_99); Type_t * L_100 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_99, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_101 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_100, /*hidden argument*/NULL); Exception_t * L_102 = V_16; NullCheck(L_102); String_t* L_103 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_102); String_t* L_104 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral1F4A58B1B3D9A5E2A62A9AF9F315A9434189F2D3, L_101, _stringLiteral1D3A2BE303E3EB4C7150D40B39B97A4BCAD5A999, L_103, /*hidden argument*/NULL); Exception_t * L_105 = V_16; Exception_t * L_106 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(L_106, L_104, L_105, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogException_mBAA6702C240E37B2A834AA74E4FDC15A3A5589A9(L_106, /*hidden argument*/NULL); goto IL_024f; } // end catch (depth: 1) IL_024f: { return; } } // System.Collections.Generic.List`1<System.String> Sirenix.Serialization.UnitySerializationUtility::SerializePrefabModifications(System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification>,System.Collections.Generic.List`1<UnityEngine.Object>&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * UnitySerializationUtility_SerializePrefabModifications_mDE1C057826BBED60720FDD7936DF3FED68C0FA10 (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * ___modifications0, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** ___referencedUnityObjects1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_SerializePrefabModifications_mDE1C057826BBED60720FDD7936DF3FED68C0FA10_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * V_0 = NULL; Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * V_1 = NULL; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_2 = NULL; Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * V_3 = NULL; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * V_4 = NULL; JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * V_5 = NULL; int32_t V_6 = 0; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * V_7 = NULL; Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * V_8 = NULL; int32_t V_9 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * G_B9_0 = NULL; List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * G_B9_1 = NULL; Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * G_B8_0 = NULL; List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * G_B8_1 = NULL; { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_0 = ___referencedUnityObjects1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_1 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_0); if (L_1) { goto IL_000d; } } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_2 = ___referencedUnityObjects1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_3 = (List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 *)il2cpp_codegen_object_new(List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2_il2cpp_TypeInfo_var); List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF(L_3, /*hidden argument*/List_1__ctor_mDCE7E3020677A9D6B3B4247C3ABC005F1E9A1AFF_RuntimeMethod_var); *((RuntimeObject **)L_2) = (RuntimeObject *)L_3; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_3); goto IL_001e; } IL_000d: { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_4 = ___referencedUnityObjects1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_5 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_4); NullCheck(L_5); int32_t L_6 = List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_inline(L_5, /*hidden argument*/List_1_get_Count_m98657494EC4443B6FA85265D8745867722E8E0B3_RuntimeMethod_var); if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_001e; } } { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_7 = ___referencedUnityObjects1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_8 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_7); NullCheck(L_8); List_1_Clear_m323690E6AB15ABBB1CD3EFC1EB7DB14F9FD98C77(L_8, /*hidden argument*/List_1_Clear_m323690E6AB15ABBB1CD3EFC1EB7DB14F9FD98C77_RuntimeMethod_var); } IL_001e: { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_9 = ___modifications0; if (!L_9) { goto IL_0029; } } { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_10 = ___modifications0; NullCheck(L_10); int32_t L_11 = List_1_get_Count_mA840B95ACBF14452864364DBAE0F48F465DF42DC_inline(L_10, /*hidden argument*/List_1_get_Count_mA840B95ACBF14452864364DBAE0F48F465DF42DC_RuntimeMethod_var); if (L_11) { goto IL_002f; } } IL_0029: { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_12 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var); List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_12, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var); return L_12; } IL_002f: { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_13 = ___modifications0; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_il2cpp_TypeInfo_var); Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * L_14 = ((U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_il2cpp_TypeInfo_var))->get_U3CU3E9__29_0_1(); Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * L_15 = L_14; G_B8_0 = L_15; G_B8_1 = L_13; if (L_15) { G_B9_0 = L_15; G_B9_1 = L_13; goto IL_004f; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_il2cpp_TypeInfo_var); U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 * L_16 = ((U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * L_17 = (Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 *)il2cpp_codegen_object_new(Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5_il2cpp_TypeInfo_var); Comparison_1__ctor_m53393A19DD697FC82705BAEECC10761C9F81298B(L_17, L_16, (intptr_t)((intptr_t)U3CU3Ec_U3CSerializePrefabModificationsU3Eb__29_0_mE5BC9A1D9B29390F4499D9F898B6FAC2D0B26CD5_RuntimeMethod_var), /*hidden argument*/Comparison_1__ctor_m53393A19DD697FC82705BAEECC10761C9F81298B_RuntimeMethod_var); Comparison_1_tC4107EFB9F71614C2F2F48C2D947DFAAE50DD8B5 * L_18 = L_17; ((U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_il2cpp_TypeInfo_var))->set_U3CU3E9__29_0_1(L_18); G_B9_0 = L_18; G_B9_1 = G_B8_1; } IL_004f: { NullCheck(G_B9_1); List_1_Sort_mE03E1EE3070E1329665B09F85FFD2CEF41F29A9E(G_B9_1, G_B9_0, /*hidden argument*/List_1_Sort_mE03E1EE3070E1329665B09F85FFD2CEF41F29A9E_RuntimeMethod_var); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_19 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var); List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_19, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var); V_0 = L_19; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_20 = Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3(/*hidden argument*/Cache_1_Claim_m37B9DACC8AEA1234A8814994011D1E0C047A4ED3_RuntimeMethod_var); V_1 = L_20; } IL_0060: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_21 = CachedMemoryStream_Claim_m5DFD5A6F321403CEAD6DB6EEB41DD20F6C79E572((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); V_2 = L_21; } IL_0067: try { // begin try (depth: 2) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_il2cpp_TypeInfo_var); Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_22 = Cache_1_Claim_m3D0E86AFDAA6216440B4E93EEA91DF34AD561A20(/*hidden argument*/Cache_1_Claim_m3D0E86AFDAA6216440B4E93EEA91DF34AD561A20_RuntimeMethod_var); V_3 = L_22; } IL_006d: try { // begin try (depth: 3) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_il2cpp_TypeInfo_var); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_23 = Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA(/*hidden argument*/Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA_RuntimeMethod_var); V_4 = L_23; } IL_0074: try { // begin try (depth: 4) { Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_24 = V_3; NullCheck(L_24); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_25 = L_24->get_Value_5(); V_5 = L_25; JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_26 = V_5; Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_27 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE_il2cpp_TypeInfo_var); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_28 = Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32(L_27, /*hidden argument*/Cache_1_op_Implicit_mEBB7DD6E3B603616DCCE138D8DACBE85C7139A32_RuntimeMethod_var); NullCheck(L_26); BaseDataWriter_set_Context_mEE563E3E13FE5E5D22B8E78572293E04BC474BA7_inline(L_26, L_28, /*hidden argument*/NULL); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_29 = V_5; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_30 = V_2; NullCheck(L_30); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_31 = L_30->get_Value_5(); NullCheck(L_31); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_32 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_31, /*hidden argument*/NULL); NullCheck(L_29); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(45 /* System.Void Sirenix.Serialization.BaseDataWriter::set_Stream(System.IO.Stream) */, L_29, L_32); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_33 = V_5; NullCheck(L_33); VirtActionInvoker0::Invoke(74 /* System.Void Sirenix.Serialization.BaseDataWriter::PrepareNewSerializationSession() */, L_33); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_34 = V_5; NullCheck(L_34); L_34->set_FormatAsReadable_12((bool)0); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_35 = V_5; NullCheck(L_35); L_35->set_EnableTypeOptimization_13((bool)0); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_36 = V_4; NullCheck(L_36); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_37 = L_36->get_Value_5(); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 ** L_38 = ___referencedUnityObjects1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_39 = *((List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 **)L_38); NullCheck(L_37); UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05(L_37, L_39, /*hidden argument*/NULL); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_40 = V_5; NullCheck(L_40); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_41 = BaseDataWriter_get_Context_m12CFE06A23067930EFEDF6884B66DD198114C954(L_40, /*hidden argument*/NULL); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_42 = V_4; NullCheck(L_42); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_43 = L_42->get_Value_5(); NullCheck(L_41); SerializationContext_set_IndexReferenceResolver_mB8D8070FFE33FB9BED811EEF3B16D378036ADA94_inline(L_41, L_43, /*hidden argument*/NULL); V_6 = 0; goto IL_0284; } IL_00db: { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_44 = ___modifications0; int32_t L_45 = V_6; NullCheck(L_44); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_46 = List_1_get_Item_mF0361082F401D4F85BB421FAF39E04863C5E3325_inline(L_44, L_45, /*hidden argument*/List_1_get_Item_mF0361082F401D4F85BB421FAF39E04863C5E3325_RuntimeMethod_var); V_7 = L_46; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_47 = V_7; NullCheck(L_47); int32_t L_48 = L_47->get_ModificationType_0(); if ((!(((uint32_t)L_48) == ((uint32_t)1)))) { goto IL_013e; } } IL_00ef: { JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_49 = V_5; NullCheck(L_49); JsonDataWriter_MarkJustStarted_m719923E02B4A96177CC82E36C398B71F08F375BD(L_49, /*hidden argument*/NULL); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_50 = V_5; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_51 = V_7; NullCheck(L_51); String_t* L_52 = L_51->get_Path_1(); NullCheck(L_50); VirtActionInvoker2< String_t*, String_t* >::Invoke(59 /* System.Void Sirenix.Serialization.BaseDataWriter::WriteString(System.String,System.String) */, L_50, _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774, L_52); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_53 = V_5; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_54 = V_7; NullCheck(L_54); int32_t L_55 = L_54->get_NewLength_4(); NullCheck(L_53); VirtActionInvoker2< String_t*, int32_t >::Invoke(63 /* System.Void Sirenix.Serialization.BaseDataWriter::WriteInt32(System.String,System.Int32) */, L_53, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_55); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_56 = V_5; NullCheck(L_56); VirtActionInvoker0::Invoke(46 /* System.Void Sirenix.Serialization.BaseDataWriter::FlushToStream() */, L_56); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_57 = V_0; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_58 = V_2; NullCheck(L_58); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_59 = L_58->get_Value_5(); NullCheck(L_59); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_60 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_59, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); String_t* L_61 = UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25(L_60, /*hidden argument*/NULL); NullCheck(L_57); List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_57, L_61, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var); goto IL_0272; } IL_013e: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_62 = V_7; NullCheck(L_62); int32_t L_63 = L_62->get_ModificationType_0(); if (L_63) { goto IL_0201; } } IL_014a: { JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_64 = V_5; NullCheck(L_64); JsonDataWriter_MarkJustStarted_m719923E02B4A96177CC82E36C398B71F08F375BD(L_64, /*hidden argument*/NULL); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_65 = V_5; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_66 = V_7; NullCheck(L_66); String_t* L_67 = L_66->get_Path_1(); NullCheck(L_65); VirtActionInvoker2< String_t*, String_t* >::Invoke(59 /* System.Void Sirenix.Serialization.BaseDataWriter::WriteString(System.String,System.String) */, L_65, _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774, L_67); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_68 = V_7; NullCheck(L_68); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_69 = L_68->get_ReferencePaths_2(); if (!L_69) { goto IL_01c6; } } IL_016d: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_70 = V_7; NullCheck(L_70); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_71 = L_70->get_ReferencePaths_2(); NullCheck(L_71); int32_t L_72 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_71, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var); if ((((int32_t)L_72) <= ((int32_t)0))) { goto IL_01c6; } } IL_017c: { JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_73 = V_5; NullCheck(L_73); VirtActionInvoker2< String_t*, Type_t * >::Invoke(48 /* System.Void Sirenix.Serialization.BaseDataWriter::BeginStructNode(System.String,System.Type) */, L_73, _stringLiteralF4C9A69F715C3C60AA2FC15795B3834D2DC51B9D, (Type_t *)NULL); V_9 = 0; goto IL_01aa; } IL_018e: { JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_74 = V_5; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_75 = V_7; NullCheck(L_75); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_76 = L_75->get_ReferencePaths_2(); int32_t L_77 = V_9; NullCheck(L_76); String_t* L_78 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline(L_76, L_77, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var); NullCheck(L_74); VirtActionInvoker2< String_t*, String_t* >::Invoke(59 /* System.Void Sirenix.Serialization.BaseDataWriter::WriteString(System.String,System.String) */, L_74, (String_t*)NULL, L_78); int32_t L_79 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_79, (int32_t)1)); } IL_01aa: { int32_t L_80 = V_9; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_81 = V_7; NullCheck(L_81); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_82 = L_81->get_ReferencePaths_2(); NullCheck(L_82); int32_t L_83 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_82, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var); if ((((int32_t)L_80) < ((int32_t)L_83))) { goto IL_018e; } } IL_01ba: { JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_84 = V_5; NullCheck(L_84); VirtActionInvoker1< String_t* >::Invoke(49 /* System.Void Sirenix.Serialization.BaseDataWriter::EndNode(System.String) */, L_84, _stringLiteralF4C9A69F715C3C60AA2FC15795B3834D2DC51B9D); } IL_01c6: { IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * L_85 = Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1(/*hidden argument*/Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1_RuntimeMethod_var); V_8 = L_85; Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * L_86 = V_8; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_87 = V_7; NullCheck(L_87); RuntimeObject * L_88 = L_87->get_ModifiedValue_3(); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_89 = V_5; NullCheck(L_86); VirtActionInvoker3< String_t*, RuntimeObject *, RuntimeObject* >::Invoke(5 /* System.Void Sirenix.Serialization.Serializer::WriteValueWeak(System.String,System.Object,Sirenix.Serialization.IDataWriter) */, L_86, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_88, L_89); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_90 = V_5; NullCheck(L_90); VirtActionInvoker0::Invoke(46 /* System.Void Sirenix.Serialization.BaseDataWriter::FlushToStream() */, L_90); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_91 = V_0; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_92 = V_2; NullCheck(L_92); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_93 = L_92->get_Value_5(); NullCheck(L_93); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_94 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_93, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); String_t* L_95 = UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25(L_94, /*hidden argument*/NULL); NullCheck(L_91); List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_91, L_95, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var); goto IL_0272; } IL_0201: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_96 = V_7; NullCheck(L_96); int32_t L_97 = L_96->get_ModificationType_0(); if ((!(((uint32_t)L_97) == ((uint32_t)2)))) { goto IL_0272; } } IL_020b: { JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_98 = V_5; NullCheck(L_98); JsonDataWriter_MarkJustStarted_m719923E02B4A96177CC82E36C398B71F08F375BD(L_98, /*hidden argument*/NULL); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_99 = V_5; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_100 = V_7; NullCheck(L_100); String_t* L_101 = L_100->get_Path_1(); NullCheck(L_99); VirtActionInvoker2< String_t*, String_t* >::Invoke(59 /* System.Void Sirenix.Serialization.BaseDataWriter::WriteString(System.String,System.String) */, L_99, _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774, L_101); IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_1_tAE414B530B3E0769071794FC4AD82DBFCE8DE19F * L_102 = Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01(/*hidden argument*/Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01_RuntimeMethod_var); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_103 = V_7; NullCheck(L_103); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_104 = L_103->get_DictionaryKeysAdded_5(); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_105 = V_5; NullCheck(L_102); VirtActionInvoker3< String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject* >::Invoke(7 /* System.Void Sirenix.Serialization.Serializer`1<System.Object[]>::WriteValue(System.String,T,Sirenix.Serialization.IDataWriter) */, L_102, _stringLiteralFC7C12157CEB3E4DB684366DCB08A05AE335D789, L_104, L_105); Serializer_1_tAE414B530B3E0769071794FC4AD82DBFCE8DE19F * L_106 = Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01(/*hidden argument*/Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01_RuntimeMethod_var); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_107 = V_7; NullCheck(L_107); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_108 = L_107->get_DictionaryKeysRemoved_6(); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_109 = V_5; NullCheck(L_106); VirtActionInvoker3< String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject* >::Invoke(7 /* System.Void Sirenix.Serialization.Serializer`1<System.Object[]>::WriteValue(System.String,T,Sirenix.Serialization.IDataWriter) */, L_106, _stringLiteralB6A4C12DF9DFFF378209C158F29DAD6259D47276, L_108, L_109); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_110 = V_5; NullCheck(L_110); VirtActionInvoker0::Invoke(46 /* System.Void Sirenix.Serialization.BaseDataWriter::FlushToStream() */, L_110); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_111 = V_0; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_112 = V_2; NullCheck(L_112); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_113 = L_112->get_Value_5(); NullCheck(L_113); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_114 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_113, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); String_t* L_115 = UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25(L_114, /*hidden argument*/NULL); NullCheck(L_111); List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_111, L_115, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var); } IL_0272: { JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_116 = V_5; NullCheck(L_116); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_117 = BaseDataWriter_get_Context_m12CFE06A23067930EFEDF6884B66DD198114C954(L_116, /*hidden argument*/NULL); NullCheck(L_117); SerializationContext_ResetInternalReferences_m48C41892EEB81DF2328CA120781EB6C116563951(L_117, /*hidden argument*/NULL); int32_t L_118 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_118, (int32_t)1)); } IL_0284: { int32_t L_119 = V_6; List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_120 = ___modifications0; NullCheck(L_120); int32_t L_121 = List_1_get_Count_mA840B95ACBF14452864364DBAE0F48F465DF42DC_inline(L_120, /*hidden argument*/List_1_get_Count_mA840B95ACBF14452864364DBAE0F48F465DF42DC_RuntimeMethod_var); if ((((int32_t)L_119) < ((int32_t)L_121))) { goto IL_00db; } } IL_0291: { IL2CPP_LEAVE(0x2BD, FINALLY_0293); } } // end try (depth: 4) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0293; } FINALLY_0293: { // begin finally (depth: 4) { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_122 = V_4; if (!L_122) { goto IL_029e; } } IL_0297: { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_123 = V_4; NullCheck(L_123); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_123); } IL_029e: { IL2CPP_END_FINALLY(659) } } // end finally (depth: 4) IL2CPP_CLEANUP(659) { IL2CPP_END_CLEANUP(0x2BD, FINALLY_029f); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_029f; } FINALLY_029f: { // begin finally (depth: 3) { Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_124 = V_3; if (!L_124) { goto IL_02a8; } } IL_02a2: { Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_125 = V_3; NullCheck(L_125); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_125); } IL_02a8: { IL2CPP_END_FINALLY(671) } } // end finally (depth: 3) IL2CPP_CLEANUP(671) { IL2CPP_END_CLEANUP(0x2BD, FINALLY_02a9); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_02a9; } FINALLY_02a9: { // begin finally (depth: 2) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_126 = V_2; if (!L_126) { goto IL_02b2; } } IL_02ac: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_127 = V_2; NullCheck(L_127); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_127); } IL_02b2: { IL2CPP_END_FINALLY(681) } } // end finally (depth: 2) IL2CPP_CLEANUP(681) { IL2CPP_END_CLEANUP(0x2BD, FINALLY_02b3); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_02b3; } FINALLY_02b3: { // begin finally (depth: 1) { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_128 = V_1; if (!L_128) { goto IL_02bc; } } IL_02b6: { Cache_1_t6B0E9B84F67616F51BC05FEB0B509578700349AE * L_129 = V_1; NullCheck(L_129); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_129); } IL_02bc: { IL2CPP_END_FINALLY(691) } } // end finally (depth: 1) IL2CPP_CLEANUP(691) { IL2CPP_JUMP_TBL(0x2BD, IL_02bd) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_02bd: { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_130 = V_0; return L_130; } } // System.String Sirenix.Serialization.UnitySerializationUtility::GetStringFromStreamAndReset(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0; NullCheck(L_0); int64_t L_1 = VirtFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Position() */, L_0); if ((int64_t)(L_1) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), UnitySerializationUtility_GetStringFromStreamAndReset_mCE923322133C313FFCBA053B9861C67BA37E4C25_RuntimeMethod_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)(((intptr_t)L_1))); V_0 = L_2; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_3 = ___stream0; NullCheck(L_3); VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_3, (((int64_t)((int64_t)0)))); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0; NullCheck(L_6); NullCheck(L_4); VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(22 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_4, L_5, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_7 = ___stream0; NullCheck(L_7); VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_7, (((int64_t)((int64_t)0)))); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_8 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; NullCheck(L_8); String_t* L_10 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(32 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_8, L_9); return L_10; } } // System.Collections.Generic.List`1<Sirenix.Serialization.PrefabModification> Sirenix.Serialization.UnitySerializationUtility::DeserializePrefabModifications(System.Collections.Generic.List`1<System.String>,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * UnitySerializationUtility_DeserializePrefabModifications_m50B6E0B734E722F47ED23008D5A606CB05F399F7 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___modifications0, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_DeserializePrefabModifications_m50B6E0B734E722F47ED23008D5A606CB05F399F7_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * V_4 = NULL; Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * V_5 = NULL; Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * V_6 = NULL; Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * V_7 = NULL; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_8 = NULL; JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * V_9 = NULL; int32_t V_10 = 0; String_t* V_11 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_12 = NULL; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * V_13 = NULL; String_t* V_14 = NULL; uint8_t V_15 = 0; Type_t * V_16 = NULL; String_t* V_17 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_0 = ___modifications0; if (!L_0) { goto IL_000b; } } { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_1 = ___modifications0; NullCheck(L_1); int32_t L_2 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_1, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var); if (L_2) { goto IL_0011; } } IL_000b: { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_3 = (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 *)il2cpp_codegen_object_new(List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617_il2cpp_TypeInfo_var); List_1__ctor_m5C02E82E29E6254584862269A18C923A5C7DD8D4(L_3, /*hidden argument*/List_1__ctor_m5C02E82E29E6254584862269A18C923A5C7DD8D4_RuntimeMethod_var); return L_3; } IL_0011: { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_4 = (List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 *)il2cpp_codegen_object_new(List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617_il2cpp_TypeInfo_var); List_1__ctor_m5C02E82E29E6254584862269A18C923A5C7DD8D4(L_4, /*hidden argument*/List_1__ctor_m5C02E82E29E6254584862269A18C923A5C7DD8D4_RuntimeMethod_var); V_0 = L_4; V_1 = 0; V_2 = 0; goto IL_0036; } IL_001d: { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_5 = ___modifications0; int32_t L_6 = V_2; NullCheck(L_5); String_t* L_7 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var); NullCheck(L_7); int32_t L_8 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_7, /*hidden argument*/NULL); V_3 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_8, (int32_t)2)); int32_t L_9 = V_3; int32_t L_10 = V_1; if ((((int32_t)L_9) <= ((int32_t)L_10))) { goto IL_0032; } } { int32_t L_11 = V_3; V_1 = L_11; } IL_0032: { int32_t L_12 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0036: { int32_t L_13 = V_2; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_14 = ___modifications0; NullCheck(L_14); int32_t L_15 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_14, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var); if ((((int32_t)L_13) < ((int32_t)L_15))) { goto IL_001d; } } { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_16 = Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA(/*hidden argument*/Cache_1_Claim_m8325F440A791EE8FDC9BE94298DC320CDEEB5FAA_RuntimeMethod_var); V_4 = L_16; } IL_0046: try { // begin try (depth: 1) { int32_t L_17 = V_1; IL2CPP_RUNTIME_CLASS_INIT(CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6_il2cpp_TypeInfo_var); Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_18 = CachedMemoryStream_Claim_m4FB7B2DECCC5805BE31860AACFA1B85A5E8D17EF(L_17, /*hidden argument*/NULL); V_5 = L_18; } IL_004e: try { // begin try (depth: 2) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_il2cpp_TypeInfo_var); Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_19 = Cache_1_Claim_mC72FC018F570A496E42E86BB6F17A33950A01B95(/*hidden argument*/Cache_1_Claim_mC72FC018F570A496E42E86BB6F17A33950A01B95_RuntimeMethod_var); V_6 = L_19; } IL_0055: try { // begin try (depth: 3) { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B_il2cpp_TypeInfo_var); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_20 = Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA(/*hidden argument*/Cache_1_Claim_m4E632C3D4220274D6F8117143407B5E3DC036DDA_RuntimeMethod_var); V_7 = L_20; } IL_005c: try { // begin try (depth: 4) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_21 = V_5; NullCheck(L_21); CachedMemoryStream_t37E9A444F273A3F9B17D287B5FE0D9A9F1F80AB6 * L_22 = L_21->get_Value_5(); NullCheck(L_22); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_23 = CachedMemoryStream_get_MemoryStream_mBDFBF6864C7C3D53379294195F8884DF018ADE07(L_22, /*hidden argument*/NULL); V_8 = L_23; Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_24 = V_6; NullCheck(L_24); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_25 = L_24->get_Value_5(); V_9 = L_25; JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_26 = V_9; Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_27 = V_4; IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08_il2cpp_TypeInfo_var); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_28 = Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3(L_27, /*hidden argument*/Cache_1_op_Implicit_mA033CC2B4689C2A7A7D2FA471BB8ECD76763C3F3_RuntimeMethod_var); NullCheck(L_26); BaseDataReader_set_Context_mB0441E42B9E9CABD729ECEAAAA1302BE2CA6BF00_inline(L_26, L_28, /*hidden argument*/NULL); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_29 = V_9; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_30 = V_8; NullCheck(L_29); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(48 /* System.Void Sirenix.Serialization.BaseDataReader::set_Stream(System.IO.Stream) */, L_29, L_30); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_31 = V_7; NullCheck(L_31); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_32 = L_31->get_Value_5(); List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_33 = ___referencedUnityObjects1; NullCheck(L_32); UnityReferenceResolver_SetReferencedUnityObjects_mCF69E38CEE544DF1DC3ECE89D70B3688397C7A05(L_32, L_33, /*hidden argument*/NULL); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_34 = V_9; NullCheck(L_34); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_35 = BaseDataReader_get_Context_mC6E720862192EA4503F40C1904926E81810CBAB6(L_34, /*hidden argument*/NULL); Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_36 = V_7; NullCheck(L_36); UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * L_37 = L_36->get_Value_5(); NullCheck(L_35); DeserializationContext_set_IndexReferenceResolver_m0027EE73B5149E617BFAF47E94CD26CA5234E431_inline(L_35, L_37, /*hidden argument*/NULL); V_10 = 0; goto IL_02cb; } IL_00b2: { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_38 = ___modifications0; int32_t L_39 = V_10; NullCheck(L_38); String_t* L_40 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline(L_38, L_39, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var); V_11 = L_40; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_41 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_42 = V_11; NullCheck(L_41); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_41, L_42); V_12 = L_43; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_44 = V_8; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = V_12; NullCheck(L_45); NullCheck(L_44); VirtActionInvoker1< int64_t >::Invoke(21 /* System.Void System.IO.Stream::SetLength(System.Int64) */, L_44, (((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_46 = V_8; NullCheck(L_46); VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_46, (((int64_t)((int64_t)0)))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_47 = V_8; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = V_12; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = V_12; NullCheck(L_49); NullCheck(L_47); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(24 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_47, L_48, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_50 = V_8; NullCheck(L_50); VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_50, (((int64_t)((int64_t)0)))); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_51 = (PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 *)il2cpp_codegen_object_new(PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45_il2cpp_TypeInfo_var); PrefabModification__ctor_m11BEBCE1D4CD62043401DEE1EB7C8A5CB108FE61(L_51, /*hidden argument*/NULL); V_13 = L_51; JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_52 = V_9; NullCheck(L_52); VirtActionInvoker0::Invoke(77 /* System.Void Sirenix.Serialization.BaseDataReader::PrepareNewSerializationSession() */, L_52); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_53 = V_9; NullCheck(L_53); uint8_t L_54 = VirtFuncInvoker1< uint8_t, String_t** >::Invoke(54 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry(System.String&) */, L_53, (String_t**)(&V_14)); V_15 = L_54; uint8_t L_55 = V_15; if ((!(((uint32_t)L_55) == ((uint32_t)((int32_t)15))))) { goto IL_0296; } } IL_0118: { JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_56 = V_9; NullCheck(L_56); VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, L_56); goto IL_0296; } IL_0124: { String_t* L_57 = V_14; if (L_57) { goto IL_014f; } } IL_0128: { uint8_t L_58 = V_15; uint8_t L_59 = L_58; RuntimeObject * L_60 = Box(EntryType_t08966DCC9ADC9FB65D9ACD4F856B7BB4CB437814_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC(_stringLiteral769D8BC93F3AB194ECABFE9692722969DFC2549E, L_60, _stringLiteral45C3F53D35AAECA3EB2C7CE659B7F63EB6608009, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_61, /*hidden argument*/NULL); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_62 = V_9; NullCheck(L_62); VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, L_62); goto IL_0296; } IL_014f: { String_t* L_63 = V_14; NullCheck(L_63); bool L_64 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_63, _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774, 3, /*hidden argument*/NULL); if (!L_64) { goto IL_0172; } } IL_015e: { JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_65 = V_9; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_66 = V_13; NullCheck(L_66); String_t** L_67 = L_66->get_address_of_Path_1(); NullCheck(L_65); VirtFuncInvoker1< bool, String_t** >::Invoke(60 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadString(System.String&) */, L_65, (String_t**)L_67); goto IL_0296; } IL_0172: { String_t* L_68 = V_14; NullCheck(L_68); bool L_69 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_68, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, 3, /*hidden argument*/NULL); if (!L_69) { goto IL_019d; } } IL_0181: { JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_70 = V_9; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_71 = V_13; NullCheck(L_71); int32_t* L_72 = L_71->get_address_of_NewLength_4(); NullCheck(L_70); VirtFuncInvoker1< bool, int32_t* >::Invoke(64 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadInt32(System.Int32&) */, L_70, (int32_t*)L_72); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_73 = V_13; NullCheck(L_73); L_73->set_ModificationType_0(1); goto IL_0296; } IL_019d: { String_t* L_74 = V_14; NullCheck(L_74); bool L_75 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_74, _stringLiteralF4C9A69F715C3C60AA2FC15795B3834D2DC51B9D, 3, /*hidden argument*/NULL); if (!L_75) { goto IL_01f5; } } IL_01ac: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_76 = V_13; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_77 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var); List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_77, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var); NullCheck(L_76); L_76->set_ReferencePaths_2(L_77); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_78 = V_9; NullCheck(L_78); VirtFuncInvoker1< bool, Type_t ** >::Invoke(49 /* System.Boolean Sirenix.Serialization.BaseDataReader::EnterNode(System.Type&) */, L_78, (Type_t **)(&V_16)); goto IL_01dc; } IL_01c4: { JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_79 = V_9; NullCheck(L_79); VirtFuncInvoker1< bool, String_t** >::Invoke(60 /* System.Boolean Sirenix.Serialization.BaseDataReader::ReadString(System.String&) */, L_79, (String_t**)(&V_17)); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_80 = V_13; NullCheck(L_80); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_81 = L_80->get_ReferencePaths_2(); String_t* L_82 = V_17; NullCheck(L_81); List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_81, L_82, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var); } IL_01dc: { JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_83 = V_9; NullCheck(L_83); uint8_t L_84 = VirtFuncInvoker1< uint8_t, String_t** >::Invoke(54 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry(System.String&) */, L_83, (String_t**)(&V_14)); if ((((int32_t)L_84) == ((int32_t)1))) { goto IL_01c4; } } IL_01e8: { JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_85 = V_9; NullCheck(L_85); VirtFuncInvoker0< bool >::Invoke(50 /* System.Boolean Sirenix.Serialization.BaseDataReader::ExitNode() */, L_85); goto IL_0296; } IL_01f5: { String_t* L_86 = V_14; NullCheck(L_86); bool L_87 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_86, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, 3, /*hidden argument*/NULL); if (!L_87) { goto IL_0221; } } IL_0204: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_88 = V_13; IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_1_tA41C285A46407380001F9FF742BE184491DEC4FB * L_89 = Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1(/*hidden argument*/Serializer_Get_TisRuntimeObject_mD38B1BC7149BD769F15DBBAE1B7CCB0EF9EDB3D1_RuntimeMethod_var); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_90 = V_9; NullCheck(L_89); RuntimeObject * L_91 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject* >::Invoke(6 /* T Sirenix.Serialization.Serializer`1<System.Object>::ReadValue(Sirenix.Serialization.IDataReader) */, L_89, L_90); NullCheck(L_88); L_88->set_ModifiedValue_3(L_91); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_92 = V_13; NullCheck(L_92); L_92->set_ModificationType_0(0); goto IL_0296; } IL_0221: { String_t* L_93 = V_14; NullCheck(L_93); bool L_94 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_93, _stringLiteralFC7C12157CEB3E4DB684366DCB08A05AE335D789, 3, /*hidden argument*/NULL); if (!L_94) { goto IL_024d; } } IL_0230: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_95 = V_13; IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_1_tAE414B530B3E0769071794FC4AD82DBFCE8DE19F * L_96 = Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01(/*hidden argument*/Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01_RuntimeMethod_var); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_97 = V_9; NullCheck(L_96); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_98 = VirtFuncInvoker1< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject* >::Invoke(6 /* T Sirenix.Serialization.Serializer`1<System.Object[]>::ReadValue(Sirenix.Serialization.IDataReader) */, L_96, L_97); NullCheck(L_95); L_95->set_DictionaryKeysAdded_5(L_98); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_99 = V_13; NullCheck(L_99); L_99->set_ModificationType_0(2); goto IL_0296; } IL_024d: { String_t* L_100 = V_14; NullCheck(L_100); bool L_101 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_100, _stringLiteralB6A4C12DF9DFFF378209C158F29DAD6259D47276, 3, /*hidden argument*/NULL); if (!L_101) { goto IL_0279; } } IL_025c: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_102 = V_13; IL2CPP_RUNTIME_CLASS_INIT(Serializer_t6087C5899A10ACA013322F4AE746588E2DA177E1_il2cpp_TypeInfo_var); Serializer_1_tAE414B530B3E0769071794FC4AD82DBFCE8DE19F * L_103 = Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01(/*hidden argument*/Serializer_Get_TisObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_m90A8BECE8B923263C405F3969E16862CEFBD4C01_RuntimeMethod_var); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_104 = V_9; NullCheck(L_103); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_105 = VirtFuncInvoker1< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject* >::Invoke(6 /* T Sirenix.Serialization.Serializer`1<System.Object[]>::ReadValue(Sirenix.Serialization.IDataReader) */, L_103, L_104); NullCheck(L_102); L_102->set_DictionaryKeysRemoved_6(L_105); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_106 = V_13; NullCheck(L_106); L_106->set_ModificationType_0(2); goto IL_0296; } IL_0279: { String_t* L_107 = V_14; String_t* L_108 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral26DA866E342BABA6F74F48EC4B9D589CCA3CD644, L_107, _stringLiteralD72F87A2D7A0F57C16C045F2ECB5F3710D8AB3FA, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_108, /*hidden argument*/NULL); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_109 = V_9; NullCheck(L_109); VirtActionInvoker0::Invoke(75 /* System.Void Sirenix.Serialization.BaseDataReader::SkipEntry() */, L_109); } IL_0296: { JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_110 = V_9; NullCheck(L_110); uint8_t L_111 = VirtFuncInvoker1< uint8_t, String_t** >::Invoke(54 /* Sirenix.Serialization.EntryType Sirenix.Serialization.BaseDataReader::PeekEntry(System.String&) */, L_110, (String_t**)(&V_14)); uint8_t L_112 = L_111; V_15 = L_112; if ((((int32_t)L_112) == ((int32_t)8))) { goto IL_02b4; } } IL_02a5: { uint8_t L_113 = V_15; if ((((int32_t)L_113) == ((int32_t)((int32_t)13)))) { goto IL_02b4; } } IL_02ab: { uint8_t L_114 = V_15; if ((!(((uint32_t)L_114) == ((uint32_t)((int32_t)15))))) { goto IL_0124; } } IL_02b4: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_115 = V_13; NullCheck(L_115); String_t* L_116 = L_115->get_Path_1(); if (!L_116) { goto IL_02c5; } } IL_02bd: { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_117 = V_0; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_118 = V_13; NullCheck(L_117); List_1_Add_m63E0AE7BB9C07909BC9F257FD42A37FCB45F3E04(L_117, L_118, /*hidden argument*/List_1_Add_m63E0AE7BB9C07909BC9F257FD42A37FCB45F3E04_RuntimeMethod_var); } IL_02c5: { int32_t L_119 = V_10; V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_119, (int32_t)1)); } IL_02cb: { int32_t L_120 = V_10; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_121 = ___modifications0; NullCheck(L_121); int32_t L_122 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_121, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var); if ((((int32_t)L_120) < ((int32_t)L_122))) { goto IL_00b2; } } IL_02d8: { IL2CPP_LEAVE(0x30A, FINALLY_02da); } } // end try (depth: 4) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_02da; } FINALLY_02da: { // begin finally (depth: 4) { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_123 = V_7; if (!L_123) { goto IL_02e5; } } IL_02de: { Cache_1_tB5FA7C34E0D9D436D2CED11E84D5A163E96F362B * L_124 = V_7; NullCheck(L_124); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_124); } IL_02e5: { IL2CPP_END_FINALLY(730) } } // end finally (depth: 4) IL2CPP_CLEANUP(730) { IL2CPP_END_CLEANUP(0x30A, FINALLY_02e6); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_02e6; } FINALLY_02e6: { // begin finally (depth: 3) { Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_125 = V_6; if (!L_125) { goto IL_02f1; } } IL_02ea: { Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_126 = V_6; NullCheck(L_126); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_126); } IL_02f1: { IL2CPP_END_FINALLY(742) } } // end finally (depth: 3) IL2CPP_CLEANUP(742) { IL2CPP_END_CLEANUP(0x30A, FINALLY_02f2); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_02f2; } FINALLY_02f2: { // begin finally (depth: 2) { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_127 = V_5; if (!L_127) { goto IL_02fd; } } IL_02f6: { Cache_1_t0A8C6F2454C35579E6E0826DF3F6E4225E64D9BA * L_128 = V_5; NullCheck(L_128); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_128); } IL_02fd: { IL2CPP_END_FINALLY(754) } } // end finally (depth: 2) IL2CPP_CLEANUP(754) { IL2CPP_END_CLEANUP(0x30A, FINALLY_02fe); IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_02fe; } FINALLY_02fe: { // begin finally (depth: 1) { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_129 = V_4; if (!L_129) { goto IL_0309; } } IL_0302: { Cache_1_t11BFAD8F348182B9660C544A7E226AFAF80C8B08 * L_130 = V_4; NullCheck(L_130); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_130); } IL_0309: { IL2CPP_END_FINALLY(766) } } // end finally (depth: 1) IL2CPP_CLEANUP(766) { IL2CPP_JUMP_TBL(0x30A, IL_030a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_030a: { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_131 = V_0; return L_131; } } // System.Object Sirenix.Serialization.UnitySerializationUtility::CreateDefaultUnityInitializedObject(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * UnitySerializationUtility_CreateDefaultUnityInitializedObject_mA9EFCDCE141DFD9A271CD5F4A875525AE67EF949 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_CreateDefaultUnityInitializedObject_mA9EFCDCE141DFD9A271CD5F4A875525AE67EF949_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject * L_1 = UnitySerializationUtility_CreateDefaultUnityInitializedObject_m536934F898F16BDD510FF69C740B70DA2B02DD99(L_0, 0, /*hidden argument*/NULL); return L_1; } } // System.Object Sirenix.Serialization.UnitySerializationUtility::CreateDefaultUnityInitializedObject(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * UnitySerializationUtility_CreateDefaultUnityInitializedObject_m536934F898F16BDD510FF69C740B70DA2B02DD99 (Type_t * ___type0, int32_t ___depth1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_CreateDefaultUnityInitializedObject_m536934F898F16BDD510FF69C740B70DA2B02DD99_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_1 = NULL; RuntimeArray * V_2 = NULL; RuntimeObject * V_3 = NULL; Exception_t * V_4 = NULL; int32_t V_5 = 0; FieldInfo_t * V_6 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = ___depth1; if ((((int32_t)L_0) <= ((int32_t)5))) { goto IL_0006; } } { return NULL; } IL_0006: { Type_t * L_1 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_2 = UnitySerializationUtility_GuessIfUnityWillSerialize_m2EA5DA1B66E86808C9E9A58613BD86F55B4D4921(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_001f; } } { Type_t * L_3 = ___type0; NullCheck(L_3); bool L_4 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0018; } } { return NULL; } IL_0018: { Type_t * L_5 = ___type0; RuntimeObject * L_6 = Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16(L_5, /*hidden argument*/NULL); return L_6; } IL_001f: { Type_t * L_7 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_7) == ((RuntimeObject*)(Type_t *)L_9)))) { goto IL_0032; } } { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0032: { Type_t * L_10 = ___type0; NullCheck(L_10); bool L_11 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsEnum() */, L_10); if (!L_11) { goto IL_005a; } } { Type_t * L_12 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeArray * L_13 = Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C(L_12, /*hidden argument*/NULL); V_2 = L_13; RuntimeArray * L_14 = V_2; NullCheck(L_14); int32_t L_15 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_14, /*hidden argument*/NULL); if ((((int32_t)L_15) > ((int32_t)0))) { goto IL_0052; } } { Type_t * L_16 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_17 = Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F(L_16, 0, /*hidden argument*/NULL); return L_17; } IL_0052: { RuntimeArray * L_18 = V_2; NullCheck(L_18); RuntimeObject * L_19 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_18, 0, /*hidden argument*/NULL); return L_19; } IL_005a: { Type_t * L_20 = ___type0; NullCheck(L_20); bool L_21 = Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A(L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0069; } } { Type_t * L_22 = ___type0; RuntimeObject * L_23 = Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16(L_22, /*hidden argument*/NULL); return L_23; } IL_0069: { Type_t * L_24 = ___type0; NullCheck(L_24); bool L_25 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_007e; } } { Type_t * L_26 = ___type0; NullCheck(L_26); Type_t * L_27 = VirtFuncInvoker0< Type_t * >::Invoke(104 /* System.Type System.Type::GetElementType() */, L_26); RuntimeArray * L_28 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_27, 0, /*hidden argument*/NULL); return L_28; } IL_007e: { Type_t * L_29 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_32 = TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B(L_29, L_31, /*hidden argument*/NULL); if (L_32) { goto IL_00a2; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_33 = { reinterpret_cast<intptr_t> (UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_33, /*hidden argument*/NULL); Type_t * L_35 = ___type0; NullCheck(L_34); bool L_36 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_34, L_35); if (!L_36) { goto IL_00b7; } } IL_00a2: { } IL_00a3: try { // begin try (depth: 1) Type_t * L_37 = ___type0; RuntimeObject * L_38 = Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16(L_37, /*hidden argument*/NULL); V_3 = L_38; goto IL_0184; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00af; throw e; } CATCH_00af: { // begin catch(System.Object) V_3 = NULL; goto IL_0184; } // end catch (depth: 1) IL_00b7: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_39, /*hidden argument*/NULL); Type_t * L_41 = ___type0; NullCheck(L_40); bool L_42 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_40, L_41); if (!L_42) { goto IL_00cb; } } { return NULL; } IL_00cb: { Type_t * L_43 = ___type0; NullCheck(L_43); Assembly_t * L_44 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_43); NullCheck(L_44); AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_45 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(19 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_44); NullCheck(L_45); String_t* L_46 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_45, /*hidden argument*/NULL); NullCheck(L_46); bool L_47 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_46, _stringLiteral50D86FCBE2ABB9A65B07323B311FF2296682029D, /*hidden argument*/NULL); if (L_47) { goto IL_0103; } } { Type_t * L_48 = ___type0; NullCheck(L_48); Assembly_t * L_49 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_48); NullCheck(L_49); AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_50 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(19 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_49); NullCheck(L_50); String_t* L_51 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_50, /*hidden argument*/NULL); NullCheck(L_51); bool L_52 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_51, _stringLiteral1A1DCCB1D5BC0A7A3EFB09F20E038D03DC5D80A1, /*hidden argument*/NULL); if (!L_52) { goto IL_0126; } } IL_0103: { Type_t * L_53 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_54 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); NullCheck(L_53); ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_55 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_53, L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_0126; } } IL_0110: try { // begin try (depth: 1) Type_t * L_56 = ___type0; RuntimeObject * L_57 = Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16(L_56, /*hidden argument*/NULL); V_3 = L_57; goto IL_0184; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0119; throw e; } CATCH_0119: { // begin catch(System.Exception) V_4 = ((Exception_t *)__exception_local); Exception_t * L_58 = V_4; IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogException_mBAA6702C240E37B2A834AA74E4FDC15A3A5589A9(L_58, /*hidden argument*/NULL); V_3 = NULL; goto IL_0184; } // end catch (depth: 1) IL_0126: { Type_t * L_59 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_60 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); NullCheck(L_59); ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_61 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_59, L_60, /*hidden argument*/NULL); if (!L_61) { goto IL_013a; } } { Type_t * L_62 = ___type0; RuntimeObject * L_63 = Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16(L_62, /*hidden argument*/NULL); return L_63; } IL_013a: { Type_t * L_64 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(FormatterServices_t5148825402E5545974E9C2BAC017D843551A880E_il2cpp_TypeInfo_var); RuntimeObject * L_65 = FormatterServices_GetUninitializedObject_m291E01A0673976C75AA58AE3BFAFC19C42886A9D(L_64, /*hidden argument*/NULL); V_0 = L_65; Type_t * L_66 = ___type0; NullCheck(L_66); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_67 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(44 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_66, ((int32_t)52)); V_1 = L_67; V_5 = 0; goto IL_017b; } IL_014f: { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_68 = V_1; int32_t L_69 = V_5; NullCheck(L_68); int32_t L_70 = L_69; FieldInfo_t * L_71 = (L_68)->GetAt(static_cast<il2cpp_array_size_t>(L_70)); V_6 = L_71; FieldInfo_t * L_72 = V_6; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); bool L_73 = UnitySerializationUtility_GuessIfUnityWillSerialize_mD0C315E4121BA830641EE0C9B428F862D204D121(L_72, /*hidden argument*/NULL); if (!L_73) { goto IL_0175; } } { FieldInfo_t * L_74 = V_6; RuntimeObject * L_75 = V_0; FieldInfo_t * L_76 = V_6; NullCheck(L_76); Type_t * L_77 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_76); int32_t L_78 = ___depth1; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); RuntimeObject * L_79 = UnitySerializationUtility_CreateDefaultUnityInitializedObject_m536934F898F16BDD510FF69C740B70DA2B02DD99(L_77, ((int32_t)il2cpp_codegen_add((int32_t)L_78, (int32_t)1)), /*hidden argument*/NULL); NullCheck(L_74); FieldInfo_SetValue_m9E7A4FBA27F835B6C26CC09CF609333967150E41(L_74, L_75, L_79, /*hidden argument*/NULL); } IL_0175: { int32_t L_80 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1)); } IL_017b: { int32_t L_81 = V_5; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_82 = V_1; NullCheck(L_82); if ((((int32_t)L_81) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_82)->max_length))))))) { goto IL_014f; } } { RuntimeObject * L_83 = V_0; return L_83; } IL_0184: { RuntimeObject * L_84 = V_3; return L_84; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::ApplyPrefabModifications(UnityEngine.Object,System.Collections.Generic.List`1<System.String>,System.Collections.Generic.List`1<UnityEngine.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___unityObject0, List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___modificationData1, List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * ___referencedUnityObjects2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * V_0 = NULL; int32_t V_1 = 0; PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * V_2 = NULL; Exception_t * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_0 = ___unityObject0; IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral70B87F25C6C6D5AC0261895F65BF75DF7803B5FB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnitySerializationUtility_ApplyPrefabModifications_m90F095128816432F5E3BE1F0E76A52998515A150_RuntimeMethod_var); } IL_0014: { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_3 = ___modificationData1; if (!L_3) { goto IL_001f; } } { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_4 = ___modificationData1; NullCheck(L_4); int32_t L_5 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_4, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var); if (L_5) { goto IL_0020; } } IL_001f: { return; } IL_0020: { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_6 = ___modificationData1; List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_7 = ___referencedUnityObjects2; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_8 = UnitySerializationUtility_DeserializePrefabModifications_m50B6E0B734E722F47ED23008D5A606CB05F399F7(L_6, L_7, /*hidden argument*/NULL); V_0 = L_8; V_1 = 0; goto IL_0064; } IL_002c: { List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_9 = V_0; int32_t L_10 = V_1; NullCheck(L_9); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_11 = List_1_get_Item_mF0361082F401D4F85BB421FAF39E04863C5E3325_inline(L_9, L_10, /*hidden argument*/List_1_get_Item_mF0361082F401D4F85BB421FAF39E04863C5E3325_RuntimeMethod_var); V_2 = L_11; } IL_0034: try { // begin try (depth: 1) PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_12 = V_2; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_13 = ___unityObject0; NullCheck(L_12); PrefabModification_Apply_mA4D53B386BF79BA831C2FD1BF851F128F775F1C7(L_12, L_13, /*hidden argument*/NULL); goto IL_0060; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_003d; throw e; } CATCH_003d: { // begin catch(System.Exception) V_3 = ((Exception_t *)__exception_local); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_14 = V_2; NullCheck(L_14); String_t* L_15 = L_14->get_Path_1(); String_t* L_16 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralAB13FA2FC1CFA72E78F32CD559FFE42651C8F763, L_15, _stringLiteral7876AFFE7C50E661250695B2FE096BE0EC80E737, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_Log_m4B7C70BAFD477C6BDB59C88A0934F0B018D03708(L_16, /*hidden argument*/NULL); Exception_t * L_17 = V_3; Debug_LogException_mBAA6702C240E37B2A834AA74E4FDC15A3A5589A9(L_17, /*hidden argument*/NULL); goto IL_0060; } // end catch (depth: 1) IL_0060: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0064: { int32_t L_19 = V_1; List_1_t25371C15A77B1F9344C65917E0FD7A63FFF8A617 * L_20 = V_0; NullCheck(L_20); int32_t L_21 = List_1_get_Count_mA840B95ACBF14452864364DBAE0F48F465DF42DC_inline(L_20, /*hidden argument*/List_1_get_Count_mA840B95ACBF14452864364DBAE0F48F465DF42DC_RuntimeMethod_var); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_002c; } } { return; } } // Sirenix.Serialization.Utilities.WeakValueGetter Sirenix.Serialization.UnitySerializationUtility::GetCachedUnityMemberGetter(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * UnitySerializationUtility_GetCachedUnityMemberGetter_mD38504B4CCC191DD830BD317DC3B2D8791031BA2 (MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GetCachedUnityMemberGetter_mD38504B4CCC191DD830BD317DC3B2D8791031BA2_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * V_0 = NULL; Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * V_1 = NULL; WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * V_2 = NULL; WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_0 = (U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass35_0__ctor_mE06F4BB65BF7C6C96061D6A0E4077B87251A9748(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_1 = V_0; MemberInfo_t * L_2 = ___member0; NullCheck(L_1); L_1->set_member_0(L_2); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * L_3 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityMemberGetters_1(); V_1 = L_3; Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * L_4 = V_1; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_4, /*hidden argument*/NULL); } IL_0019: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * L_5 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityMemberGetters_1(); U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_6 = V_0; NullCheck(L_6); MemberInfo_t * L_7 = L_6->get_member_0(); NullCheck(L_5); bool L_8 = Dictionary_2_TryGetValue_m62BFB3C4A7C53656A6785FE2A58590A4D95F6DA8(L_5, L_7, (WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE **)(&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m62BFB3C4A7C53656A6785FE2A58590A4D95F6DA8_RuntimeMethod_var); if (L_8) { goto IL_00a1; } } IL_002d: { U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_9 = V_0; NullCheck(L_9); MemberInfo_t * L_10 = L_9->get_member_0(); if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_10, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_0058; } } IL_003a: { U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_11 = V_0; NullCheck(L_11); MemberInfo_t * L_12 = L_11->get_member_0(); NullCheck(L_12); Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_12); U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_14 = V_0; NullCheck(L_14); MemberInfo_t * L_15 = L_14->get_member_0(); WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_16 = EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2(L_13, ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_15, FieldInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_2 = L_16; goto IL_0090; } IL_0058: { U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_17 = V_0; NullCheck(L_17); MemberInfo_t * L_18 = L_17->get_member_0(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_18, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0083; } } IL_0065: { U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_19 = V_0; NullCheck(L_19); MemberInfo_t * L_20 = L_19->get_member_0(); NullCheck(L_20); Type_t * L_21 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_20); U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_22 = V_0; NullCheck(L_22); MemberInfo_t * L_23 = L_22->get_member_0(); WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_24 = EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55(L_21, ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_23, PropertyInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_2 = L_24; goto IL_0090; } IL_0083: { U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_25 = V_0; WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_26 = (WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE *)il2cpp_codegen_object_new(WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE_il2cpp_TypeInfo_var); WeakValueGetter__ctor_m5BAA20DB26F9A0E4E161C6C62FD99472FF6473FA(L_26, L_25, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass35_0_U3CGetCachedUnityMemberGetterU3Eb__0_mFB6FE6433D0DA026EAE9CF839C742EFECDA326B5_RuntimeMethod_var), /*hidden argument*/NULL); V_2 = L_26; } IL_0090: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * L_27 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityMemberGetters_1(); U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * L_28 = V_0; NullCheck(L_28); MemberInfo_t * L_29 = L_28->get_member_0(); WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_30 = V_2; NullCheck(L_27); Dictionary_2_Add_m3C1DA0F9D32CBB2127382DFE205FDBF7033190A2(L_27, L_29, L_30, /*hidden argument*/Dictionary_2_Add_m3C1DA0F9D32CBB2127382DFE205FDBF7033190A2_RuntimeMethod_var); } IL_00a1: { WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_31 = V_2; V_3 = L_31; IL2CPP_LEAVE(0xAC, FINALLY_00a5); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00a5; } FINALLY_00a5: { // begin finally (depth: 1) Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * L_32 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_32, /*hidden argument*/NULL); IL2CPP_END_FINALLY(165) } // end finally (depth: 1) IL2CPP_CLEANUP(165) { IL2CPP_JUMP_TBL(0xAC, IL_00ac) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ac: { WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_33 = V_3; return L_33; } } // Sirenix.Serialization.Utilities.WeakValueSetter Sirenix.Serialization.UnitySerializationUtility::GetCachedUnityMemberSetter(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * UnitySerializationUtility_GetCachedUnityMemberSetter_m5160801024194D0C37814AFDDF369AA0B1B6CB36 (MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GetCachedUnityMemberSetter_m5160801024194D0C37814AFDDF369AA0B1B6CB36_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * V_0 = NULL; Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * V_1 = NULL; WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * V_2 = NULL; WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_0 = (U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass36_0__ctor_mA09D72B70625EBD856AA41D40388141CB98A06AA(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_1 = V_0; MemberInfo_t * L_2 = ___member0; NullCheck(L_1); L_1->set_member_0(L_2); IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * L_3 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityMemberSetters_2(); V_1 = L_3; Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * L_4 = V_1; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_4, /*hidden argument*/NULL); } IL_0019: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * L_5 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityMemberSetters_2(); U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_6 = V_0; NullCheck(L_6); MemberInfo_t * L_7 = L_6->get_member_0(); NullCheck(L_5); bool L_8 = Dictionary_2_TryGetValue_mEDE516FE02CCA6EC3F7444B5B5E578AACA825D72(L_5, L_7, (WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF **)(&V_2), /*hidden argument*/Dictionary_2_TryGetValue_mEDE516FE02CCA6EC3F7444B5B5E578AACA825D72_RuntimeMethod_var); if (L_8) { goto IL_00a1; } } IL_002d: { U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_9 = V_0; NullCheck(L_9); MemberInfo_t * L_10 = L_9->get_member_0(); if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_10, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_0058; } } IL_003a: { U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_11 = V_0; NullCheck(L_11); MemberInfo_t * L_12 = L_11->get_member_0(); NullCheck(L_12); Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_12); U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_14 = V_0; NullCheck(L_14); MemberInfo_t * L_15 = L_14->get_member_0(); WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_16 = EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8(L_13, ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_15, FieldInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_2 = L_16; goto IL_0090; } IL_0058: { U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_17 = V_0; NullCheck(L_17); MemberInfo_t * L_18 = L_17->get_member_0(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_18, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0083; } } IL_0065: { U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_19 = V_0; NullCheck(L_19); MemberInfo_t * L_20 = L_19->get_member_0(); NullCheck(L_20); Type_t * L_21 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_20); U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_22 = V_0; NullCheck(L_22); MemberInfo_t * L_23 = L_22->get_member_0(); WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_24 = EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185(L_21, ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_23, PropertyInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_2 = L_24; goto IL_0090; } IL_0083: { U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_25 = V_0; WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_26 = (WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF *)il2cpp_codegen_object_new(WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF_il2cpp_TypeInfo_var); WeakValueSetter__ctor_m7D502C99DDC1CD6C34C5C7262174E75322C49149(L_26, L_25, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass36_0_U3CGetCachedUnityMemberSetterU3Eb__0_mAA74D0AA8A401A3F190058CD99C88EEBC05D2B61_RuntimeMethod_var), /*hidden argument*/NULL); V_2 = L_26; } IL_0090: { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var); Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * L_27 = ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->get_UnityMemberSetters_2(); U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * L_28 = V_0; NullCheck(L_28); MemberInfo_t * L_29 = L_28->get_member_0(); WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_30 = V_2; NullCheck(L_27); Dictionary_2_Add_mB2933567D2EB66EB398A5E90DD040A1CF811619C(L_27, L_29, L_30, /*hidden argument*/Dictionary_2_Add_mB2933567D2EB66EB398A5E90DD040A1CF811619C_RuntimeMethod_var); } IL_00a1: { WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_31 = V_2; V_3 = L_31; IL2CPP_LEAVE(0xAC, FINALLY_00a5); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00a5; } FINALLY_00a5: { // begin finally (depth: 1) Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * L_32 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_32, /*hidden argument*/NULL); IL2CPP_END_FINALLY(165) } // end finally (depth: 1) IL2CPP_CLEANUP(165) { IL2CPP_JUMP_TBL(0xAC, IL_00ac) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ac: { WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_33 = V_3; return L_33; } } // Sirenix.Serialization.Utilities.ICache Sirenix.Serialization.UnitySerializationUtility::GetCachedUnityWriter(Sirenix.Serialization.DataFormat,System.IO.Stream,Sirenix.Serialization.SerializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60 (int32_t ___format0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___context2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * V_1 = NULL; Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * V_2 = NULL; { int32_t L_0 = ___format0; switch (L_0) { case 0: { goto IL_0014; } case 1: { goto IL_002a; } case 2: { goto IL_0040; } } } { goto IL_004b; } IL_0014: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61_il2cpp_TypeInfo_var); Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * L_1 = Cache_1_Claim_mF29D323401A864DEAAD720ACA649217D1A1EA8AA(/*hidden argument*/Cache_1_Claim_mF29D323401A864DEAAD720ACA649217D1A1EA8AA_RuntimeMethod_var); V_1 = L_1; Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * L_2 = V_1; NullCheck(L_2); BinaryDataWriter_tBE4BBFE8C9F847DCAF95CDA572F3235F9BE5CC1A * L_3 = L_2->get_Value_5(); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream1; NullCheck(L_3); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(45 /* System.Void Sirenix.Serialization.BaseDataWriter::set_Stream(System.IO.Stream) */, L_3, L_4); Cache_1_t24910B31026ECC229FA79611F03AD736468E3B61 * L_5 = V_1; V_0 = L_5; goto IL_005e; } IL_002a: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C_il2cpp_TypeInfo_var); Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_6 = Cache_1_Claim_m3D0E86AFDAA6216440B4E93EEA91DF34AD561A20(/*hidden argument*/Cache_1_Claim_m3D0E86AFDAA6216440B4E93EEA91DF34AD561A20_RuntimeMethod_var); V_2 = L_6; Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_7 = V_2; NullCheck(L_7); JsonDataWriter_tD9B13A36F5D69EA85BF8DF1E8EE5BF9C17969C4B * L_8 = L_7->get_Value_5(); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_9 = ___stream1; NullCheck(L_8); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(45 /* System.Void Sirenix.Serialization.BaseDataWriter::set_Stream(System.IO.Stream) */, L_8, L_9); Cache_1_t13DD3AF2E802F676C2C66297FCA7EF41244C3A8C * L_10 = V_2; V_0 = L_10; goto IL_005e; } IL_0040: { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_11 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_11, _stringLiteral648F8BB895C7096BA7F5B6AEC9BC6D4AF0C16DAB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60_RuntimeMethod_var); } IL_004b: { RuntimeObject * L_12 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&___format0)); NullCheck(L_12); String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12); ___format0 = *(int32_t*)UnBox(L_12); NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_14 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, UnitySerializationUtility_GetCachedUnityWriter_mB36F2759BD8DDA88C5272D5AE3642134A488BA60_RuntimeMethod_var); } IL_005e: { RuntimeObject* L_15 = V_0; NullCheck(L_15); RuntimeObject * L_16 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Sirenix.Serialization.Utilities.ICache::get_Value() */, ICache_tBDCB67E358355A1D7E139EEF788B57FB4C1CF7DA_il2cpp_TypeInfo_var, L_15); SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_17 = ___context2; NullCheck(((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var))); InterfaceActionInvoker1< SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * >::Invoke(6 /* System.Void Sirenix.Serialization.IDataWriter::set_Context(Sirenix.Serialization.SerializationContext) */, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var, ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDataWriter_tBF88A0B4B483CCDDF14957168A5442AF251EB723_il2cpp_TypeInfo_var)), L_17); RuntimeObject* L_18 = V_0; return L_18; } } // Sirenix.Serialization.Utilities.ICache Sirenix.Serialization.UnitySerializationUtility::GetCachedUnityReader(Sirenix.Serialization.DataFormat,System.IO.Stream,Sirenix.Serialization.DeserializationContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951 (int32_t ___format0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___context2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * V_1 = NULL; Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * V_2 = NULL; { int32_t L_0 = ___format0; switch (L_0) { case 0: { goto IL_0014; } case 1: { goto IL_002a; } case 2: { goto IL_0040; } } } { goto IL_004b; } IL_0014: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06_il2cpp_TypeInfo_var); Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * L_1 = Cache_1_Claim_mCD18E4724791F8E40BA81D9A5EF7A54D0C2B1EE3(/*hidden argument*/Cache_1_Claim_mCD18E4724791F8E40BA81D9A5EF7A54D0C2B1EE3_RuntimeMethod_var); V_1 = L_1; Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * L_2 = V_1; NullCheck(L_2); BinaryDataReader_t63484E41557913FF775C26D34F76DEB593F21293 * L_3 = L_2->get_Value_5(); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream1; NullCheck(L_3); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(48 /* System.Void Sirenix.Serialization.BaseDataReader::set_Stream(System.IO.Stream) */, L_3, L_4); Cache_1_t3C0B53450061F083177E5AC3D3672B74AA047D06 * L_5 = V_1; V_0 = L_5; goto IL_005e; } IL_002a: { IL2CPP_RUNTIME_CLASS_INIT(Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59_il2cpp_TypeInfo_var); Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_6 = Cache_1_Claim_mC72FC018F570A496E42E86BB6F17A33950A01B95(/*hidden argument*/Cache_1_Claim_mC72FC018F570A496E42E86BB6F17A33950A01B95_RuntimeMethod_var); V_2 = L_6; Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_7 = V_2; NullCheck(L_7); JsonDataReader_t35CD66813EC089D6C767EA198C694491D2D20FE8 * L_8 = L_7->get_Value_5(); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_9 = ___stream1; NullCheck(L_8); VirtActionInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(48 /* System.Void Sirenix.Serialization.BaseDataReader::set_Stream(System.IO.Stream) */, L_8, L_9); Cache_1_tCAC980904DC3F8E3050140C808C534070AE1FF59 * L_10 = V_2; V_0 = L_10; goto IL_005e; } IL_0040: { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_11 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_11, _stringLiteral648F8BB895C7096BA7F5B6AEC9BC6D4AF0C16DAB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951_RuntimeMethod_var); } IL_004b: { RuntimeObject * L_12 = Box(DataFormat_tE9F490B7907DB6FC0F38C2DA7B18F9EAA4D76A83_il2cpp_TypeInfo_var, (&___format0)); NullCheck(L_12); String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12); ___format0 = *(int32_t*)UnBox(L_12); NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_14 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, UnitySerializationUtility_GetCachedUnityReader_mE1DAD0494BB01A9D945D5B96F487A341189EC951_RuntimeMethod_var); } IL_005e: { RuntimeObject* L_15 = V_0; NullCheck(L_15); RuntimeObject * L_16 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Sirenix.Serialization.Utilities.ICache::get_Value() */, ICache_tBDCB67E358355A1D7E139EEF788B57FB4C1CF7DA_il2cpp_TypeInfo_var, L_15); DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_17 = ___context2; NullCheck(((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var))); InterfaceActionInvoker1< DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * >::Invoke(9 /* System.Void Sirenix.Serialization.IDataReader::set_Context(Sirenix.Serialization.DeserializationContext) */, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var, ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDataReader_tE3E62E4881AEED31AD428B9650772A1BC55A946F_il2cpp_TypeInfo_var)), L_17); RuntimeObject* L_18 = V_0; return L_18; } } // System.Void Sirenix.Serialization.UnitySerializationUtility::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationUtility__cctor_m533C29AC98E183BC4F3B533103CCEEEDC3A07242 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationUtility__cctor_m533C29AC98E183BC4F3B533103CCEEEDC3A07242_MetadataUsageId); s_Il2CppMethodInitialized = true; } HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * V_0 = NULL; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (SerializeField_t2C7845E4134D47F2D89267492CB6B955DC4787A5_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL); NullCheck(L_1); Assembly_t * L_2 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_1); NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(17 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_2, _stringLiteralC55492616545B2F578FA96448F687ACD4F38D323); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_SerializeReferenceAttributeType_0(L_3); Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 * L_4 = (Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263 *)il2cpp_codegen_object_new(Dictionary_2_tAC19C2714A4D567BF4CF23BB3F74FFC69BD23263_il2cpp_TypeInfo_var); Dictionary_2__ctor_m3024055D140B14F001C4EA8F5B5B94D1A35E0B0B(L_4, /*hidden argument*/Dictionary_2__ctor_m3024055D140B14F001C4EA8F5B5B94D1A35E0B0B_RuntimeMethod_var); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_UnityMemberGetters_1(L_4); Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF * L_5 = (Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF *)il2cpp_codegen_object_new(Dictionary_2_tB36B74456D79A8AFD2BA5277AD2FA891BC6003CF_il2cpp_TypeInfo_var); Dictionary_2__ctor_mB6AFE754A7F1656C62987D53EA47001351F9D338(L_5, /*hidden argument*/Dictionary_2__ctor_mB6AFE754A7F1656C62987D53EA47001351F9D338_RuntimeMethod_var); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_UnityMemberSetters_2(L_5); Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 * L_6 = (Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181 *)il2cpp_codegen_object_new(Dictionary_2_tD97C9717445B3AA9E9DC091F2DF75BE7C1101181_il2cpp_TypeInfo_var); Dictionary_2__ctor_m4CB96E5F6DC15DFF4F62D9993F887C3992666E7A(L_6, /*hidden argument*/Dictionary_2__ctor_m4CB96E5F6DC15DFF4F62D9993F887C3992666E7A_RuntimeMethod_var); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_UnityWillSerializeMembersCache_3(L_6); Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 * L_7 = (Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4 *)il2cpp_codegen_object_new(Dictionary_2_tD104A3A0D21C15AA262D8A3B909847AD14470CA4_il2cpp_TypeInfo_var); Dictionary_2__ctor_m38A63BECCB4DC6D730705C1A382315575304AD9F(L_7, /*hidden argument*/Dictionary_2__ctor_m38A63BECCB4DC6D730705C1A382315575304AD9F_RuntimeMethod_var); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_UnityWillSerializeTypesCache_4(L_7); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_8 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_8, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_0 = L_8; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_9 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC_0_0_0_var) }; Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL); NullCheck(L_9); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_9, L_11, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_12 = V_0; ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_UnityNeverSerializesTypes_5(L_12); IL2CPP_RUNTIME_CLASS_INIT(SerializationPolicies_t39F9E5BAD21C22D40D3C394E178B22892508737F_il2cpp_TypeInfo_var); RuntimeObject* L_13 = SerializationPolicies_get_Unity_m13E85D29BF416C4405F5022F4D7402179148B712(/*hidden argument*/NULL); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_UnityPolicy_6(L_13); RuntimeObject* L_14 = SerializationPolicies_get_Everything_mDE213BAA0B762DF663008E7DDEBD9A9144DB5D49(/*hidden argument*/NULL); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_EverythingPolicy_7(L_14); RuntimeObject* L_15 = SerializationPolicies_get_Strict_m10E331DFA0E733250AFA359B589BB79283172F75(/*hidden argument*/NULL); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_StrictPolicy_8(L_15); IL2CPP_RUNTIME_CLASS_INIT(ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_il2cpp_TypeInfo_var); ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 * L_16 = ((ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_il2cpp_TypeInfo_var))->get_Default_0(); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_17 = (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *)il2cpp_codegen_object_new(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F_il2cpp_TypeInfo_var); Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191(L_17, L_16, /*hidden argument*/Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191_RuntimeMethod_var); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_OdinWillSerializeCache_UnityPolicy_9(L_17); ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 * L_18 = ((ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_il2cpp_TypeInfo_var))->get_Default_0(); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_19 = (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *)il2cpp_codegen_object_new(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F_il2cpp_TypeInfo_var); Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191(L_19, L_18, /*hidden argument*/Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191_RuntimeMethod_var); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_OdinWillSerializeCache_EverythingPolicy_10(L_19); ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3 * L_20 = ((ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceEqualityComparer_1_tB814B392162880446F6E955C4ED6E9A33555B0B3_il2cpp_TypeInfo_var))->get_Default_0(); Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F * L_21 = (Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F *)il2cpp_codegen_object_new(Dictionary_2_t0E2A944E69DADC4FEED1B5EFE686FF7159F1975F_il2cpp_TypeInfo_var); Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191(L_21, L_20, /*hidden argument*/Dictionary_2__ctor_m12B73FCBBC5060AB20DC39045195B526B8BD0191_RuntimeMethod_var); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_OdinWillSerializeCache_StrictPolicy_11(L_21); IL2CPP_RUNTIME_CLASS_INIT(ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0_il2cpp_TypeInfo_var); ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0 * L_22 = ((ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0_StaticFields*)il2cpp_codegen_static_fields_for(ReferenceEqualityComparer_1_t977FC71A8AC063CF14FF32A5C55A6200A87FEAD0_il2cpp_TypeInfo_var))->get_Default_0(); Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E * L_23 = (Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E *)il2cpp_codegen_object_new(Dictionary_2_t4A1AFF334E6D68C626A992DF0DBCDA085616898E_il2cpp_TypeInfo_var); Dictionary_2__ctor_m8D53D43FD4DD0DE79FCAA8F8005461D9287B8D8F(L_23, L_22, /*hidden argument*/Dictionary_2__ctor_m8D53D43FD4DD0DE79FCAA8F8005461D9287B8D8F_RuntimeMethod_var); ((UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationUtility_t5BBA253C5C0BAD3079078479A8226C46C50D1B65_il2cpp_TypeInfo_var))->set_OdinWillSerializeCache_CustomPolicies_12(L_23); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.UnitySerializationUtility_<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mC3473BEC8AC1BF65DCC7B7DD6DC2BBB0C6D2FDC3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_mC3473BEC8AC1BF65DCC7B7DD6DC2BBB0C6D2FDC3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 * L_0 = (U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 *)il2cpp_codegen_object_new(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m36F731555F3C3361679F833445CAACED5B91EFE1(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility_<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m36F731555F3C3361679F833445CAACED5B91EFE1 (U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 Sirenix.Serialization.UnitySerializationUtility_<>c::<SerializePrefabModifications>b__29_0(Sirenix.Serialization.PrefabModification,Sirenix.Serialization.PrefabModification) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CSerializePrefabModificationsU3Eb__29_0_mE5BC9A1D9B29390F4499D9F898B6FAC2D0B26CD5 (U3CU3Ec_t59B1BA37B7ECD37D5616CE84438A42D6F72B3F32 * __this, PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * ___a0, PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * ___b1, const RuntimeMethod* method) { int32_t V_0 = 0; { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_0 = ___a0; NullCheck(L_0); String_t* L_1 = L_0->get_Path_1(); PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_2 = ___b1; NullCheck(L_2); String_t* L_3 = L_2->get_Path_1(); NullCheck(L_1); int32_t L_4 = String_CompareTo_m9FAB33E920810E148EDAA4F64E37F231412312AB(L_1, L_3, /*hidden argument*/NULL); V_0 = L_4; int32_t L_5 = V_0; if (L_5) { goto IL_004d; } } { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_6 = ___a0; NullCheck(L_6); int32_t L_7 = L_6->get_ModificationType_0(); if ((((int32_t)L_7) == ((int32_t)1))) { goto IL_0027; } } { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_8 = ___a0; NullCheck(L_8); int32_t L_9 = L_8->get_ModificationType_0(); if ((!(((uint32_t)L_9) == ((uint32_t)2)))) { goto IL_0031; } } IL_0027: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_10 = ___b1; NullCheck(L_10); int32_t L_11 = L_10->get_ModificationType_0(); if (L_11) { goto IL_0031; } } { return 1; } IL_0031: { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_12 = ___a0; NullCheck(L_12); int32_t L_13 = L_12->get_ModificationType_0(); if (L_13) { goto IL_004d; } } { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_14 = ___b1; NullCheck(L_14); int32_t L_15 = L_14->get_ModificationType_0(); if ((((int32_t)L_15) == ((int32_t)1))) { goto IL_004b; } } { PrefabModification_tCE4B1B6775C87A10F36FF623C33D76DD8670DA45 * L_16 = ___b1; NullCheck(L_16); int32_t L_17 = L_16->get_ModificationType_0(); if ((!(((uint32_t)L_17) == ((uint32_t)2)))) { goto IL_004d; } } IL_004b: { return (-1); } IL_004d: { int32_t L_18 = V_0; return L_18; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.UnitySerializationUtility_<>c__DisplayClass35_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0__ctor_mE06F4BB65BF7C6C96061D6A0E4077B87251A9748 (U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Object Sirenix.Serialization.UnitySerializationUtility_<>c__DisplayClass35_0::<GetCachedUnityMemberGetter>b__0(System.Object&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CU3Ec__DisplayClass35_0_U3CGetCachedUnityMemberGetterU3Eb__0_mFB6FE6433D0DA026EAE9CF839C742EFECDA326B5 (U3CU3Ec__DisplayClass35_0_t0F65F35DF9DDBE07627F6668265BC6470D0D35EE * __this, RuntimeObject ** ___instance0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass35_0_U3CGetCachedUnityMemberGetterU3Eb__0_mFB6FE6433D0DA026EAE9CF839C742EFECDA326B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = __this->get_member_0(); RuntimeObject ** L_1 = ___instance0; RuntimeObject * L_2 = *((RuntimeObject **)L_1); IL2CPP_RUNTIME_CLASS_INIT(FormatterUtilities_t57774B5EC22582F32EFABAB74510CF01808ABA90_il2cpp_TypeInfo_var); RuntimeObject * L_3 = FormatterUtilities_GetMemberValue_mCE2D8B9A65F25AC784553A01BAC9C6EB9318CBCF(L_0, L_2, /*hidden argument*/NULL); return L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.UnitySerializationUtility_<>c__DisplayClass36_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass36_0__ctor_mA09D72B70625EBD856AA41D40388141CB98A06AA (U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.UnitySerializationUtility_<>c__DisplayClass36_0::<GetCachedUnityMemberSetter>b__0(System.Object&,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass36_0_U3CGetCachedUnityMemberSetterU3Eb__0_mAA74D0AA8A401A3F190058CD99C88EEBC05D2B61 (U3CU3Ec__DisplayClass36_0_tA84C5FD10BF71718590AB152083789735C3A96CA * __this, RuntimeObject ** ___instance0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass36_0_U3CGetCachedUnityMemberSetterU3Eb__0_mAA74D0AA8A401A3F190058CD99C88EEBC05D2B61_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = __this->get_member_0(); RuntimeObject ** L_1 = ___instance0; RuntimeObject * L_2 = *((RuntimeObject **)L_1); RuntimeObject * L_3 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(FormatterUtilities_t57774B5EC22582F32EFABAB74510CF01808ABA90_il2cpp_TypeInfo_var); FormatterUtilities_SetMemberValue_mA9530EB298AC0FF029AF6628E0A4ECFE8FAF5439(L_0, L_2, L_3, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult IL2CPP_EXTERN_C void CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshal_pinvoke(const CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03& unmarshaled, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshaled_pinvoke& marshaled) { marshaled.___HasCalculatedSerializeUnityFieldsTrueResult_0 = static_cast<int32_t>(unmarshaled.get_HasCalculatedSerializeUnityFieldsTrueResult_0()); marshaled.___HasCalculatedSerializeUnityFieldsFalseResult_1 = static_cast<int32_t>(unmarshaled.get_HasCalculatedSerializeUnityFieldsFalseResult_1()); marshaled.___SerializeUnityFieldsTrueResult_2 = static_cast<int32_t>(unmarshaled.get_SerializeUnityFieldsTrueResult_2()); marshaled.___SerializeUnityFieldsFalseResult_3 = static_cast<int32_t>(unmarshaled.get_SerializeUnityFieldsFalseResult_3()); } IL2CPP_EXTERN_C void CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshal_pinvoke_back(const CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshaled_pinvoke& marshaled, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03& unmarshaled) { bool unmarshaled_HasCalculatedSerializeUnityFieldsTrueResult_temp_0 = false; unmarshaled_HasCalculatedSerializeUnityFieldsTrueResult_temp_0 = static_cast<bool>(marshaled.___HasCalculatedSerializeUnityFieldsTrueResult_0); unmarshaled.set_HasCalculatedSerializeUnityFieldsTrueResult_0(unmarshaled_HasCalculatedSerializeUnityFieldsTrueResult_temp_0); bool unmarshaled_HasCalculatedSerializeUnityFieldsFalseResult_temp_1 = false; unmarshaled_HasCalculatedSerializeUnityFieldsFalseResult_temp_1 = static_cast<bool>(marshaled.___HasCalculatedSerializeUnityFieldsFalseResult_1); unmarshaled.set_HasCalculatedSerializeUnityFieldsFalseResult_1(unmarshaled_HasCalculatedSerializeUnityFieldsFalseResult_temp_1); bool unmarshaled_SerializeUnityFieldsTrueResult_temp_2 = false; unmarshaled_SerializeUnityFieldsTrueResult_temp_2 = static_cast<bool>(marshaled.___SerializeUnityFieldsTrueResult_2); unmarshaled.set_SerializeUnityFieldsTrueResult_2(unmarshaled_SerializeUnityFieldsTrueResult_temp_2); bool unmarshaled_SerializeUnityFieldsFalseResult_temp_3 = false; unmarshaled_SerializeUnityFieldsFalseResult_temp_3 = static_cast<bool>(marshaled.___SerializeUnityFieldsFalseResult_3); unmarshaled.set_SerializeUnityFieldsFalseResult_3(unmarshaled_SerializeUnityFieldsFalseResult_temp_3); } // Conversion method for clean up from marshalling of: Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult IL2CPP_EXTERN_C void CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshal_pinvoke_cleanup(CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult IL2CPP_EXTERN_C void CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshal_com(const CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03& unmarshaled, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshaled_com& marshaled) { marshaled.___HasCalculatedSerializeUnityFieldsTrueResult_0 = static_cast<int32_t>(unmarshaled.get_HasCalculatedSerializeUnityFieldsTrueResult_0()); marshaled.___HasCalculatedSerializeUnityFieldsFalseResult_1 = static_cast<int32_t>(unmarshaled.get_HasCalculatedSerializeUnityFieldsFalseResult_1()); marshaled.___SerializeUnityFieldsTrueResult_2 = static_cast<int32_t>(unmarshaled.get_SerializeUnityFieldsTrueResult_2()); marshaled.___SerializeUnityFieldsFalseResult_3 = static_cast<int32_t>(unmarshaled.get_SerializeUnityFieldsFalseResult_3()); } IL2CPP_EXTERN_C void CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshal_com_back(const CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshaled_com& marshaled, CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03& unmarshaled) { bool unmarshaled_HasCalculatedSerializeUnityFieldsTrueResult_temp_0 = false; unmarshaled_HasCalculatedSerializeUnityFieldsTrueResult_temp_0 = static_cast<bool>(marshaled.___HasCalculatedSerializeUnityFieldsTrueResult_0); unmarshaled.set_HasCalculatedSerializeUnityFieldsTrueResult_0(unmarshaled_HasCalculatedSerializeUnityFieldsTrueResult_temp_0); bool unmarshaled_HasCalculatedSerializeUnityFieldsFalseResult_temp_1 = false; unmarshaled_HasCalculatedSerializeUnityFieldsFalseResult_temp_1 = static_cast<bool>(marshaled.___HasCalculatedSerializeUnityFieldsFalseResult_1); unmarshaled.set_HasCalculatedSerializeUnityFieldsFalseResult_1(unmarshaled_HasCalculatedSerializeUnityFieldsFalseResult_temp_1); bool unmarshaled_SerializeUnityFieldsTrueResult_temp_2 = false; unmarshaled_SerializeUnityFieldsTrueResult_temp_2 = static_cast<bool>(marshaled.___SerializeUnityFieldsTrueResult_2); unmarshaled.set_SerializeUnityFieldsTrueResult_2(unmarshaled_SerializeUnityFieldsTrueResult_temp_2); bool unmarshaled_SerializeUnityFieldsFalseResult_temp_3 = false; unmarshaled_SerializeUnityFieldsFalseResult_temp_3 = static_cast<bool>(marshaled.___SerializeUnityFieldsFalseResult_3); unmarshaled.set_SerializeUnityFieldsFalseResult_3(unmarshaled_SerializeUnityFieldsFalseResult_temp_3); } // Conversion method for clean up from marshalling of: Sirenix.Serialization.UnitySerializationUtility/CachedSerializationBackendResult IL2CPP_EXTERN_C void CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshal_com_cleanup(CachedSerializationBackendResult_tC65D0768EE6FC8F02C419F607FD252997AF69E03_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.Utilities.EmitUtilities::get_CanEmit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmitUtilities_get_CanEmit_m99E64F353F06519AAD62DFA8C8408617D398E0B5 (const RuntimeMethod* method) { { return (bool)0; } } // System.Func`1<System.Object> Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakStaticFieldGetter(System.Reflection.FieldInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * EmitUtilities_CreateWeakStaticFieldGetter_m66AA3F87FA36E5D292F8AAE0893A7B9735553463 (FieldInfo_t * ___fieldInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EmitUtilities_CreateWeakStaticFieldGetter_m66AA3F87FA36E5D292F8AAE0893A7B9735553463_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * V_0 = NULL; { U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * L_0 = (U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass3_0__ctor_m58D5D778EAC28AA9324A362C04A950432D1450D8(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * L_1 = V_0; FieldInfo_t * L_2 = ___fieldInfo0; NullCheck(L_1); L_1->set_fieldInfo_0(L_2); U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * L_3 = V_0; NullCheck(L_3); FieldInfo_t * L_4 = L_3->get_fieldInfo_0(); if (L_4) { goto IL_0020; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteral8A5413560FC9B67F0F39819A78764949F9F181CE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EmitUtilities_CreateWeakStaticFieldGetter_m66AA3F87FA36E5D292F8AAE0893A7B9735553463_RuntimeMethod_var); } IL_0020: { U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * L_6 = V_0; NullCheck(L_6); FieldInfo_t * L_7 = L_6->get_fieldInfo_0(); NullCheck(L_7); bool L_8 = FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA(L_7, /*hidden argument*/NULL); if (L_8) { goto IL_0038; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, _stringLiteral3DE67C19DAD28BA3A92665447E371B320FB42C6D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EmitUtilities_CreateWeakStaticFieldGetter_m66AA3F87FA36E5D292F8AAE0893A7B9735553463_RuntimeMethod_var); } IL_0038: { U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * L_10 = V_0; U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * L_11 = V_0; NullCheck(L_11); FieldInfo_t * L_12 = L_11->get_fieldInfo_0(); FieldInfo_t * L_13 = FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80(L_12, (bool)0, /*hidden argument*/NULL); NullCheck(L_10); L_10->set_fieldInfo_0(L_13); U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * L_14 = V_0; Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_15 = (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)il2cpp_codegen_object_new(Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386_il2cpp_TypeInfo_var); Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F(L_15, L_14, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass3_0_U3CCreateWeakStaticFieldGetterU3Eb__0_mBCB9AD66EBFF132D3621C8A056AF2CA4DD348222_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_RuntimeMethod_var); return L_15; } } // System.Action`1<System.Object> Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakStaticFieldSetter(System.Reflection.FieldInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * EmitUtilities_CreateWeakStaticFieldSetter_m2D24A5B0298E8AF67BE9314DDF368CBB2A2875CA (FieldInfo_t * ___fieldInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EmitUtilities_CreateWeakStaticFieldSetter_m2D24A5B0298E8AF67BE9314DDF368CBB2A2875CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * V_0 = NULL; { U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * L_0 = (U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass5_0__ctor_m80F1EA645E266BB31F5A102B47558E4599FF3721(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * L_1 = V_0; FieldInfo_t * L_2 = ___fieldInfo0; NullCheck(L_1); L_1->set_fieldInfo_0(L_2); U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * L_3 = V_0; NullCheck(L_3); FieldInfo_t * L_4 = L_3->get_fieldInfo_0(); if (L_4) { goto IL_0020; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteral8A5413560FC9B67F0F39819A78764949F9F181CE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EmitUtilities_CreateWeakStaticFieldSetter_m2D24A5B0298E8AF67BE9314DDF368CBB2A2875CA_RuntimeMethod_var); } IL_0020: { U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * L_6 = V_0; NullCheck(L_6); FieldInfo_t * L_7 = L_6->get_fieldInfo_0(); NullCheck(L_7); bool L_8 = FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA(L_7, /*hidden argument*/NULL); if (L_8) { goto IL_0038; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, _stringLiteral3DE67C19DAD28BA3A92665447E371B320FB42C6D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EmitUtilities_CreateWeakStaticFieldSetter_m2D24A5B0298E8AF67BE9314DDF368CBB2A2875CA_RuntimeMethod_var); } IL_0038: { U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * L_10 = V_0; U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * L_11 = V_0; NullCheck(L_11); FieldInfo_t * L_12 = L_11->get_fieldInfo_0(); FieldInfo_t * L_13 = FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80(L_12, (bool)0, /*hidden argument*/NULL); NullCheck(L_10); L_10->set_fieldInfo_0(L_13); U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * L_14 = V_0; Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_15 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var); Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_15, L_14, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass5_0_U3CCreateWeakStaticFieldSetterU3Eb__0_mB4797702673C7821F7A294D3BC1C276EEBA7C34B_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var); return L_15; } } // Sirenix.Serialization.Utilities.WeakValueGetter Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstanceFieldGetter(System.Type,System.Reflection.FieldInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2 (Type_t * ___instanceType0, FieldInfo_t * ___fieldInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * V_0 = NULL; { U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * L_0 = (U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass8_0__ctor_mF7A79B39E16B796C6E1C473C6EE229EE4EF4AB72(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * L_1 = V_0; FieldInfo_t * L_2 = ___fieldInfo1; NullCheck(L_1); L_1->set_fieldInfo_0(L_2); U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * L_3 = V_0; NullCheck(L_3); FieldInfo_t * L_4 = L_3->get_fieldInfo_0(); if (L_4) { goto IL_0020; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteral8A5413560FC9B67F0F39819A78764949F9F181CE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2_RuntimeMethod_var); } IL_0020: { Type_t * L_6 = ___instanceType0; if (L_6) { goto IL_002e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_7 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_7, _stringLiteralB67C45015CE97B7B173BD1EB1017B21175679675, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2_RuntimeMethod_var); } IL_002e: { U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * L_8 = V_0; NullCheck(L_8); FieldInfo_t * L_9 = L_8->get_fieldInfo_0(); NullCheck(L_9); bool L_10 = FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_11, _stringLiteralDEF7B856937909FA62B4005E8141F46A676421DB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, EmitUtilities_CreateWeakInstanceFieldGetter_m033818548EA635D34AFDF6FEED3DB01C0C8120E2_RuntimeMethod_var); } IL_0046: { U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * L_12 = V_0; U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * L_13 = V_0; NullCheck(L_13); FieldInfo_t * L_14 = L_13->get_fieldInfo_0(); FieldInfo_t * L_15 = FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80(L_14, (bool)0, /*hidden argument*/NULL); NullCheck(L_12); L_12->set_fieldInfo_0(L_15); U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * L_16 = V_0; WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_17 = (WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE *)il2cpp_codegen_object_new(WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE_il2cpp_TypeInfo_var); WeakValueGetter__ctor_m5BAA20DB26F9A0E4E161C6C62FD99472FF6473FA(L_17, L_16, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass8_0_U3CCreateWeakInstanceFieldGetterU3Eb__0_mC31970CDCC506AA3B17439AE1AE9B5623F9C3D4B_RuntimeMethod_var), /*hidden argument*/NULL); return L_17; } } // Sirenix.Serialization.Utilities.WeakValueSetter Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstanceFieldSetter(System.Type,System.Reflection.FieldInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8 (Type_t * ___instanceType0, FieldInfo_t * ___fieldInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * V_0 = NULL; { U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * L_0 = (U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass11_0__ctor_m4AEF7CBBBC15E8883BEC14A620C1D8AFAB57AE44(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * L_1 = V_0; FieldInfo_t * L_2 = ___fieldInfo1; NullCheck(L_1); L_1->set_fieldInfo_0(L_2); U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * L_3 = V_0; NullCheck(L_3); FieldInfo_t * L_4 = L_3->get_fieldInfo_0(); if (L_4) { goto IL_0020; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteral8A5413560FC9B67F0F39819A78764949F9F181CE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8_RuntimeMethod_var); } IL_0020: { Type_t * L_6 = ___instanceType0; if (L_6) { goto IL_002e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_7 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_7, _stringLiteralB67C45015CE97B7B173BD1EB1017B21175679675, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8_RuntimeMethod_var); } IL_002e: { U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * L_8 = V_0; NullCheck(L_8); FieldInfo_t * L_9 = L_8->get_fieldInfo_0(); NullCheck(L_9); bool L_10 = FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_11, _stringLiteralDEF7B856937909FA62B4005E8141F46A676421DB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, EmitUtilities_CreateWeakInstanceFieldSetter_m42CFD213E18CF6147366230EAB4B95835E3548C8_RuntimeMethod_var); } IL_0046: { U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * L_12 = V_0; U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * L_13 = V_0; NullCheck(L_13); FieldInfo_t * L_14 = L_13->get_fieldInfo_0(); FieldInfo_t * L_15 = FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80(L_14, (bool)0, /*hidden argument*/NULL); NullCheck(L_12); L_12->set_fieldInfo_0(L_15); U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * L_16 = V_0; WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_17 = (WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF *)il2cpp_codegen_object_new(WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF_il2cpp_TypeInfo_var); WeakValueSetter__ctor_m7D502C99DDC1CD6C34C5C7262174E75322C49149(L_17, L_16, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass11_0_U3CCreateWeakInstanceFieldSetterU3Eb__0_mA38724315F40507039FDB52D1B502D922A086C2C_RuntimeMethod_var), /*hidden argument*/NULL); return L_17; } } // Sirenix.Serialization.Utilities.WeakValueGetter Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstancePropertyGetter(System.Type,System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55 (Type_t * ___instanceType0, PropertyInfo_t * ___propertyInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * V_0 = NULL; MethodInfo_t * V_1 = NULL; { U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * L_0 = (U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass12_0__ctor_mC229CCB6875624B7F70315A9E24DFA355811001D(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * L_1 = V_0; PropertyInfo_t * L_2 = ___propertyInfo1; NullCheck(L_1); L_1->set_propertyInfo_0(L_2); U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * L_3 = V_0; NullCheck(L_3); PropertyInfo_t * L_4 = L_3->get_propertyInfo_0(); if (L_4) { goto IL_0020; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralF8782D2DD7FF852FD93E8B6A61DBEA0FD086BCF7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55_RuntimeMethod_var); } IL_0020: { Type_t * L_6 = ___instanceType0; if (L_6) { goto IL_002e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_7 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_7, _stringLiteralB67C45015CE97B7B173BD1EB1017B21175679675, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55_RuntimeMethod_var); } IL_002e: { U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * L_8 = V_0; U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * L_9 = V_0; NullCheck(L_9); PropertyInfo_t * L_10 = L_9->get_propertyInfo_0(); PropertyInfo_t * L_11 = PropertyInfoExtensions_DeAliasProperty_m636A975B0A3C1695FC88CFABE03267605B28FCB0(L_10, (bool)0, /*hidden argument*/NULL); NullCheck(L_8); L_8->set_propertyInfo_0(L_11); U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * L_12 = V_0; NullCheck(L_12); PropertyInfo_t * L_13 = L_12->get_propertyInfo_0(); NullCheck(L_13); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_14 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(23 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_13); NullCheck(L_14); if (!(((RuntimeArray*)L_14)->max_length)) { goto IL_0059; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, _stringLiteral30FADF3F3EC7DB67814A6D8D104F417CBE041F96, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55_RuntimeMethod_var); } IL_0059: { U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * L_16 = V_0; NullCheck(L_16); PropertyInfo_t * L_17 = L_16->get_propertyInfo_0(); NullCheck(L_17); MethodInfo_t * L_18 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(22 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_17, (bool)1); V_1 = L_18; MethodInfo_t * L_19 = V_1; if (L_19) { goto IL_0074; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, _stringLiteralB8146F1D9727A4D9EA8A44D91CDB630F09E6076A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55_RuntimeMethod_var); } IL_0074: { MethodInfo_t * L_21 = V_1; NullCheck(L_21); bool L_22 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_0087; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_23 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_23, _stringLiteralDDBAB9739BA0CDFD2DD930A782A1A30A53738A83, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, EmitUtilities_CreateWeakInstancePropertyGetter_m1BB4BE6559DC71C0C8E91B1F6DBD46163AE22A55_RuntimeMethod_var); } IL_0087: { U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * L_24 = V_0; WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE * L_25 = (WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE *)il2cpp_codegen_object_new(WeakValueGetter_t131A6199B247A982956E5F2081CE4DDEF32409AE_il2cpp_TypeInfo_var); WeakValueGetter__ctor_m5BAA20DB26F9A0E4E161C6C62FD99472FF6473FA(L_25, L_24, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass12_0_U3CCreateWeakInstancePropertyGetterU3Eb__0_m57311FB845CA16C2CD8A06A7E542C336EE0C73EE_RuntimeMethod_var), /*hidden argument*/NULL); return L_25; } } // Sirenix.Serialization.Utilities.WeakValueSetter Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstancePropertySetter(System.Type,System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185 (Type_t * ___instanceType0, PropertyInfo_t * ___propertyInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * V_0 = NULL; MethodInfo_t * V_1 = NULL; { U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * L_0 = (U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass13_0__ctor_mBE2FA7DD65ABDF198351111872E71CF2F954C835(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * L_1 = V_0; PropertyInfo_t * L_2 = ___propertyInfo1; NullCheck(L_1); L_1->set_propertyInfo_0(L_2); U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * L_3 = V_0; NullCheck(L_3); PropertyInfo_t * L_4 = L_3->get_propertyInfo_0(); if (L_4) { goto IL_0020; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralF8782D2DD7FF852FD93E8B6A61DBEA0FD086BCF7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185_RuntimeMethod_var); } IL_0020: { Type_t * L_6 = ___instanceType0; if (L_6) { goto IL_002e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_7 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_7, _stringLiteralB67C45015CE97B7B173BD1EB1017B21175679675, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185_RuntimeMethod_var); } IL_002e: { U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * L_8 = V_0; U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * L_9 = V_0; NullCheck(L_9); PropertyInfo_t * L_10 = L_9->get_propertyInfo_0(); PropertyInfo_t * L_11 = PropertyInfoExtensions_DeAliasProperty_m636A975B0A3C1695FC88CFABE03267605B28FCB0(L_10, (bool)0, /*hidden argument*/NULL); NullCheck(L_8); L_8->set_propertyInfo_0(L_11); U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * L_12 = V_0; NullCheck(L_12); PropertyInfo_t * L_13 = L_12->get_propertyInfo_0(); NullCheck(L_13); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_14 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(23 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_13); NullCheck(L_14); if (!(((RuntimeArray*)L_14)->max_length)) { goto IL_0059; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, _stringLiteral30FADF3F3EC7DB67814A6D8D104F417CBE041F96, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185_RuntimeMethod_var); } IL_0059: { U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * L_16 = V_0; NullCheck(L_16); PropertyInfo_t * L_17 = L_16->get_propertyInfo_0(); NullCheck(L_17); MethodInfo_t * L_18 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(25 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_17, (bool)1); V_1 = L_18; MethodInfo_t * L_19 = V_1; NullCheck(L_19); bool L_20 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_0079; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, _stringLiteralDDBAB9739BA0CDFD2DD930A782A1A30A53738A83, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, EmitUtilities_CreateWeakInstancePropertySetter_m4DE1171CB9AB38D9ED757ED5BC41A01611509185_RuntimeMethod_var); } IL_0079: { U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * L_22 = V_0; WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF * L_23 = (WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF *)il2cpp_codegen_object_new(WeakValueSetter_t95050274AAC7DDB2FC3068D2B9DBE80D394BEFAF_il2cpp_TypeInfo_var); WeakValueSetter__ctor_m7D502C99DDC1CD6C34C5C7262174E75322C49149(L_23, L_22, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass13_0_U3CCreateWeakInstancePropertySetterU3Eb__0_m049C9E290CC25EBB4335EF2393582891E4A31941_RuntimeMethod_var), /*hidden argument*/NULL); return L_23; } } // System.Action Sirenix.Serialization.Utilities.EmitUtilities::CreateStaticMethodCaller(System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * EmitUtilities_CreateStaticMethodCaller_mEB3DAA5008C13E0359EED2F7FFD64E670A51F18E (MethodInfo_t * ___methodInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EmitUtilities_CreateStaticMethodCaller_mEB3DAA5008C13E0359EED2F7FFD64E670A51F18E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MethodInfo_t * L_0 = ___methodInfo0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral09100586B001873A1EEC3ACEB2DB396DE287AA18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EmitUtilities_CreateStaticMethodCaller_mEB3DAA5008C13E0359EED2F7FFD64E670A51F18E_RuntimeMethod_var); } IL_000e: { MethodInfo_t * L_2 = ___methodInfo0; NullCheck(L_2); bool L_3 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0031; } } { MethodInfo_t * L_4 = ___methodInfo0; NullCheck(L_4); String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_4); String_t* L_6 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralCFB19E12599AB08B95C5D13A7B18A447E1160F81, L_5, _stringLiteral88944D6BF661203152B0C7B98804A8F4B7F060DD, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EmitUtilities_CreateStaticMethodCaller_mEB3DAA5008C13E0359EED2F7FFD64E670A51F18E_RuntimeMethod_var); } IL_0031: { MethodInfo_t * L_8 = ___methodInfo0; NullCheck(L_8); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_9 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_8); NullCheck(L_9); if (!(((RuntimeArray*)L_9)->max_length)) { goto IL_0045; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, _stringLiteralE270E4186E13A18116069DF73C5A9D34A8EF1194, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, EmitUtilities_CreateStaticMethodCaller_mEB3DAA5008C13E0359EED2F7FFD64E670A51F18E_RuntimeMethod_var); } IL_0045: { MethodInfo_t * L_11 = ___methodInfo0; MethodInfo_t * L_12 = MethodInfoExtensions_DeAliasMethod_mAB8B413F3E4A66BD87EBDFBE84FD30F2B6AC2E1A(L_11, (bool)0, /*hidden argument*/NULL); ___methodInfo0 = L_12; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (Action_t591D2A86165F896B4B800BB5C25CE18672A55579_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL); MethodInfo_t * L_15 = ___methodInfo0; Delegate_t * L_16 = Delegate_CreateDelegate_mD7C5EDDB32C63A9BD9DE43AC879AFF4EBC6641D1(L_14, L_15, /*hidden argument*/NULL); return ((Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)CastclassSealed((RuntimeObject*)L_16, Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var)); } } // System.Action`1<System.Object> Sirenix.Serialization.Utilities.EmitUtilities::CreateWeakInstanceMethodCaller(System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * EmitUtilities_CreateWeakInstanceMethodCaller_mBA468CE8098499C1E9BA0B847773DE4A887A8992 (MethodInfo_t * ___methodInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EmitUtilities_CreateWeakInstanceMethodCaller_mBA468CE8098499C1E9BA0B847773DE4A887A8992_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * V_0 = NULL; { U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_0 = (U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass21_0__ctor_mBC7EAC2152DDE7802151E23FFD4AE572FECA8267(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_1 = V_0; MethodInfo_t * L_2 = ___methodInfo0; NullCheck(L_1); L_1->set_methodInfo_0(L_2); U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_3 = V_0; NullCheck(L_3); MethodInfo_t * L_4 = L_3->get_methodInfo_0(); if (L_4) { goto IL_0020; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteral09100586B001873A1EEC3ACEB2DB396DE287AA18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EmitUtilities_CreateWeakInstanceMethodCaller_mBA468CE8098499C1E9BA0B847773DE4A887A8992_RuntimeMethod_var); } IL_0020: { U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_6 = V_0; NullCheck(L_6); MethodInfo_t * L_7 = L_6->get_methodInfo_0(); NullCheck(L_7); bool L_8 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_004d; } } { U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_9 = V_0; NullCheck(L_9); MethodInfo_t * L_10 = L_9->get_methodInfo_0(); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_10); String_t* L_12 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralCFB19E12599AB08B95C5D13A7B18A447E1160F81, L_11, _stringLiteral7F6AC00155118D39CB6AE7AB1093DDF53AD26B88, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, EmitUtilities_CreateWeakInstanceMethodCaller_mBA468CE8098499C1E9BA0B847773DE4A887A8992_RuntimeMethod_var); } IL_004d: { U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_14 = V_0; NullCheck(L_14); MethodInfo_t * L_15 = L_14->get_methodInfo_0(); NullCheck(L_15); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_16 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_15); NullCheck(L_16); if (!(((RuntimeArray*)L_16)->max_length)) { goto IL_0066; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_17, _stringLiteralE270E4186E13A18116069DF73C5A9D34A8EF1194, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, EmitUtilities_CreateWeakInstanceMethodCaller_mBA468CE8098499C1E9BA0B847773DE4A887A8992_RuntimeMethod_var); } IL_0066: { U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_18 = V_0; U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_19 = V_0; NullCheck(L_19); MethodInfo_t * L_20 = L_19->get_methodInfo_0(); MethodInfo_t * L_21 = MethodInfoExtensions_DeAliasMethod_mAB8B413F3E4A66BD87EBDFBE84FD30F2B6AC2E1A(L_20, (bool)0, /*hidden argument*/NULL); NullCheck(L_18); L_18->set_methodInfo_0(L_21); U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * L_22 = V_0; Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_23 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var); Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_23, L_22, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass21_0_U3CCreateWeakInstanceMethodCallerU3Eb__0_m132AD3E1ACE5F85057422EA65041C60EE34EA1CA_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var); return L_23; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass11_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_m4AEF7CBBBC15E8883BEC14A620C1D8AFAB57AE44 (U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass11_0::<CreateWeakInstanceFieldSetter>b__0(System.Object&,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0_U3CCreateWeakInstanceFieldSetterU3Eb__0_mA38724315F40507039FDB52D1B502D922A086C2C (U3CU3Ec__DisplayClass11_0_tCDFB746DBEBA9333B044625CA3183589389B0733 * __this, RuntimeObject ** ___classInstance0, RuntimeObject * ___value1, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_fieldInfo_0(); RuntimeObject ** L_1 = ___classInstance0; RuntimeObject * L_2 = *((RuntimeObject **)L_1); RuntimeObject * L_3 = ___value1; NullCheck(L_0); FieldInfo_SetValue_m9E7A4FBA27F835B6C26CC09CF609333967150E41(L_0, L_2, L_3, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass12_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_mC229CCB6875624B7F70315A9E24DFA355811001D (U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Object Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass12_0::<CreateWeakInstancePropertyGetter>b__0(System.Object&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CU3Ec__DisplayClass12_0_U3CCreateWeakInstancePropertyGetterU3Eb__0_m57311FB845CA16C2CD8A06A7E542C336EE0C73EE (U3CU3Ec__DisplayClass12_0_t2483B89F08B106BDD00B8A31A94710D1F2C1AEE4 * __this, RuntimeObject ** ___classInstance0, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_propertyInfo_0(); RuntimeObject ** L_1 = ___classInstance0; RuntimeObject * L_2 = *((RuntimeObject **)L_1); NullCheck(L_0); RuntimeObject * L_3 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_0, L_2, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL); return L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass13_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass13_0__ctor_mBE2FA7DD65ABDF198351111872E71CF2F954C835 (U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass13_0::<CreateWeakInstancePropertySetter>b__0(System.Object&,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass13_0_U3CCreateWeakInstancePropertySetterU3Eb__0_m049C9E290CC25EBB4335EF2393582891E4A31941 (U3CU3Ec__DisplayClass13_0_tCF1C2C40A005A5BB11E4DED6DED903BC74C03C0E * __this, RuntimeObject ** ___classInstance0, RuntimeObject * ___value1, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_propertyInfo_0(); RuntimeObject ** L_1 = ___classInstance0; RuntimeObject * L_2 = *((RuntimeObject **)L_1); RuntimeObject * L_3 = ___value1; NullCheck(L_0); VirtActionInvoker3< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(28 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, L_0, L_2, L_3, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass21_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass21_0__ctor_mBC7EAC2152DDE7802151E23FFD4AE572FECA8267 (U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass21_0::<CreateWeakInstanceMethodCaller>b__0(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass21_0_U3CCreateWeakInstanceMethodCallerU3Eb__0_m132AD3E1ACE5F85057422EA65041C60EE34EA1CA (U3CU3Ec__DisplayClass21_0_t9AFF7BEF07896500AE28D0D04DB8E32154E5FBD6 * __this, RuntimeObject * ___classInstance0, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_methodInfo_0(); RuntimeObject * L_1 = ___classInstance0; NullCheck(L_0); MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_0, L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass3_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass3_0__ctor_m58D5D778EAC28AA9324A362C04A950432D1450D8 (U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Object Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass3_0::<CreateWeakStaticFieldGetter>b__0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CU3Ec__DisplayClass3_0_U3CCreateWeakStaticFieldGetterU3Eb__0_mBCB9AD66EBFF132D3621C8A056AF2CA4DD348222 (U3CU3Ec__DisplayClass3_0_t5A2D51D000E0A96839DB40091EC1FDD76F052784 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_fieldInfo_0(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_0, NULL); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass5_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass5_0__ctor_m80F1EA645E266BB31F5A102B47558E4599FF3721 (U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass5_0::<CreateWeakStaticFieldSetter>b__0(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass5_0_U3CCreateWeakStaticFieldSetterU3Eb__0_mB4797702673C7821F7A294D3BC1C276EEBA7C34B (U3CU3Ec__DisplayClass5_0_t9E91CE970CE0EC99E9EE19A4E7827744C5E30B12 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_fieldInfo_0(); RuntimeObject * L_1 = ___value0; NullCheck(L_0); FieldInfo_SetValue_m9E7A4FBA27F835B6C26CC09CF609333967150E41(L_0, NULL, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass8_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass8_0__ctor_mF7A79B39E16B796C6E1C473C6EE229EE4EF4AB72 (U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Object Sirenix.Serialization.Utilities.EmitUtilities_<>c__DisplayClass8_0::<CreateWeakInstanceFieldGetter>b__0(System.Object&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CU3Ec__DisplayClass8_0_U3CCreateWeakInstanceFieldGetterU3Eb__0_mC31970CDCC506AA3B17439AE1AE9B5623F9C3D4B (U3CU3Ec__DisplayClass8_0_t83E474FCA8BE63640038E091FB308D9FD74EC614 * __this, RuntimeObject ** ___classInstance0, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_fieldInfo_0(); RuntimeObject ** L_1 = ___classInstance0; RuntimeObject * L_2 = *((RuntimeObject **)L_1); NullCheck(L_0); RuntimeObject * L_3 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_0, L_2); return L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.Utilities.FastTypeComparer::Equals(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FastTypeComparer_Equals_m2230CBD2044F24DE23D1F904A0A27C7290F264FC (FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * __this, Type_t * ___x0, Type_t * ___y1, const RuntimeMethod* method) { { Type_t * L_0 = ___x0; Type_t * L_1 = ___y1; if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { Type_t * L_2 = ___x0; Type_t * L_3 = ___y1; return (bool)((((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3))? 1 : 0); } } // System.Int32 Sirenix.Serialization.Utilities.FastTypeComparer::GetHashCode(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FastTypeComparer_GetHashCode_m78C331563553290768EA5EDBA0EC9C5121D8E9AD (FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * __this, Type_t * ___obj0, const RuntimeMethod* method) { { Type_t * L_0 = ___obj0; NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); return L_1; } } // System.Void Sirenix.Serialization.Utilities.FastTypeComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FastTypeComparer__ctor_mB98472FFCF0FADE10D4211BB6CBC7D5871ADBEA2 (FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void Sirenix.Serialization.Utilities.FastTypeComparer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FastTypeComparer__cctor_mF250E6E603BA93A4E55CA84630988C2F4D9A7CEA (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FastTypeComparer__cctor_mF250E6E603BA93A4E55CA84630988C2F4D9A7CEA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 * L_0 = (FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389 *)il2cpp_codegen_object_new(FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_il2cpp_TypeInfo_var); FastTypeComparer__ctor_mB98472FFCF0FADE10D4211BB6CBC7D5871ADBEA2(L_0, /*hidden argument*/NULL); ((FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_StaticFields*)il2cpp_codegen_static_fields_for(FastTypeComparer_t9A26E6BD1397148F9A37F9ABF9299F7A86A90389_il2cpp_TypeInfo_var))->set_Instance_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.Utilities.FieldInfoExtensions::IsAliasField(System.Reflection.FieldInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfoExtensions_IsAliasField_m626B2702D965BD3A31910E534C60EBDC5EC7E78F (FieldInfo_t * ___fieldInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldInfoExtensions_IsAliasField_m626B2702D965BD3A31910E534C60EBDC5EC7E78F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { FieldInfo_t * L_0 = ___fieldInfo0; return (bool)((!(((RuntimeObject*)(MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 *)((MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 *)IsInstSealed((RuntimeObject*)L_0, MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.FieldInfoExtensions::DeAliasField(System.Reflection.FieldInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfo_t * FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80 (FieldInfo_t * ___fieldInfo0, bool ___throwOnNotAliased1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80_MetadataUsageId); s_Il2CppMethodInitialized = true; } MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * V_0 = NULL; { FieldInfo_t * L_0 = ___fieldInfo0; V_0 = ((MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 *)IsInstSealed((RuntimeObject*)L_0, MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8_il2cpp_TypeInfo_var)); MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * L_1 = V_0; if (!L_1) { goto IL_002c; } } { goto IL_0018; } IL_000c: { MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * L_2 = V_0; NullCheck(L_2); FieldInfo_t * L_3 = MemberAliasFieldInfo_get_AliasedField_m21F4B3801BDA72BE06F247466CF800AA1CB9A083_inline(L_2, /*hidden argument*/NULL); V_0 = ((MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 *)IsInstSealed((RuntimeObject*)L_3, MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8_il2cpp_TypeInfo_var)); } IL_0018: { MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * L_4 = V_0; NullCheck(L_4); FieldInfo_t * L_5 = MemberAliasFieldInfo_get_AliasedField_m21F4B3801BDA72BE06F247466CF800AA1CB9A083_inline(L_4, /*hidden argument*/NULL); if (((MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 *)IsInstSealed((RuntimeObject*)L_5, MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8_il2cpp_TypeInfo_var))) { goto IL_000c; } } { MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * L_6 = V_0; NullCheck(L_6); FieldInfo_t * L_7 = MemberAliasFieldInfo_get_AliasedField_m21F4B3801BDA72BE06F247466CF800AA1CB9A083_inline(L_6, /*hidden argument*/NULL); return L_7; } IL_002c: { bool L_8 = ___throwOnNotAliased1; if (!L_8) { goto IL_004a; } } { FieldInfo_t * L_9 = ___fieldInfo0; String_t* L_10 = MemberInfoExtensions_GetNiceName_m804078AF053FDAAA249AEA0F420E63F1C1750881(L_9, /*hidden argument*/NULL); String_t* L_11 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralE189167A5B2CDF8E97AED41CAD97AF9D09349D04, L_10, _stringLiteralCF6C4EE7957B6F4BE116A890E08871F57C051080, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, FieldInfoExtensions_DeAliasField_m7E94287E33F2AAA1796C322422E192A18E4B9A80_RuntimeMethod_var); } IL_004a: { FieldInfo_t * L_13 = ___fieldInfo0; return L_13; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.ImmutableList::.ctor(System.Collections.IList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList__ctor_m20EA015914F29221BB79B2F6D56DCB839E961820 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, RuntimeObject* ___innerList0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList__ctor_m20EA015914F29221BB79B2F6D56DCB839E961820_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___innerList0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralC6A82388B3324E08FDE793C1A03DE948917D49F8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ImmutableList__ctor_m20EA015914F29221BB79B2F6D56DCB839E961820_RuntimeMethod_var); } IL_0014: { RuntimeObject* L_2 = ___innerList0; __this->set_innerList_0(L_2); return; } } // System.Int32 Sirenix.Serialization.Utilities.ImmutableList::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ImmutableList_get_Count_m7004A73772BAFC4C0C4E4BA7DD8FC3556DE80A54 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_get_Count_m7004A73772BAFC4C0C4E4BA7DD8FC3556DE80A54_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); NullCheck(L_0); int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Boolean Sirenix.Serialization.Utilities.ImmutableList::get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableList_get_IsFixedSize_m40F736175998B2C5FC548EE431EE147C91D99E04 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean Sirenix.Serialization.Utilities.ImmutableList::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableList_get_IsReadOnly_m436DACAE8B823473301BD9F17FA8A174E00EA3E4 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean Sirenix.Serialization.Utilities.ImmutableList::get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableList_get_IsSynchronized_mF84998F99A9A0E2E53D4C36B2D76C47FFB02CB3C (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_get_IsSynchronized_mF84998F99A9A0E2E53D4C36B2D76C47FFB02CB3C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); NullCheck(L_0); bool L_1 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.Collections.ICollection::get_IsSynchronized() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Object Sirenix.Serialization.Utilities.ImmutableList::get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ImmutableList_get_SyncRoot_m54243D435F83C0E46442410867A76481278C816F (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_get_SyncRoot_m54243D435F83C0E46442410867A76481278C816F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); NullCheck(L_0); RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Object Sirenix.Serialization.Utilities.ImmutableList::System.Collections.IList.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ImmutableList_System_Collections_IList_get_Item_mFE31436D026C99C12EF6B8CD9423BBF23B1DEA38 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_IList_get_Item_mFE31436D026C99C12EF6B8CD9423BBF23B1DEA38_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); int32_t L_1 = ___index0; NullCheck(L_0); RuntimeObject * L_2 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.IList.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_IList_set_Item_m1D4374C01F195CCEDFAEFB832BC3ADCD0257E6C2 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_IList_set_Item_m1D4374C01F195CCEDFAEFB832BC3ADCD0257E6C2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_IList_set_Item_m1D4374C01F195CCEDFAEFB832BC3ADCD0257E6C2_RuntimeMethod_var); } } // System.Object Sirenix.Serialization.Utilities.ImmutableList::System.Collections.Generic.IList<System.Object>.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_get_Item_mCE7AFAD3EABF5B952E15F910AE82B28CB917BFC5 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_get_Item_mCE7AFAD3EABF5B952E15F910AE82B28CB917BFC5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); int32_t L_1 = ___index0; NullCheck(L_0); RuntimeObject * L_2 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.Generic.IList<System.Object>.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_set_Item_m6B978B5E35F054074CF8F082377B7595A6A5BCB1 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_set_Item_m6B978B5E35F054074CF8F082377B7595A6A5BCB1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_set_Item_m6B978B5E35F054074CF8F082377B7595A6A5BCB1_RuntimeMethod_var); } } // System.Object Sirenix.Serialization.Utilities.ImmutableList::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ImmutableList_get_Item_mFE6D92DCA215CF1E1B5A1F0BC698276A9EE309C6 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_get_Item_mFE6D92DCA215CF1E1B5A1F0BC698276A9EE309C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); int32_t L_1 = ___index0; NullCheck(L_0); RuntimeObject * L_2 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.Boolean Sirenix.Serialization.Utilities.ImmutableList::Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableList_Contains_m3B0DAFD822E63CE2BFCC230E3F6357684774728F (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_Contains_m3B0DAFD822E63CE2BFCC230E3F6357684774728F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); RuntimeObject * L_1 = ___value0; NullCheck(L_0); bool L_2 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(3 /* System.Boolean System.Collections.IList::Contains(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::CopyTo(System.Object[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_CopyTo_m42CAE603EBB13199C6E618A5FB57F805C84E2CEA (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_CopyTo_m42CAE603EBB13199C6E618A5FB57F805C84E2CEA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; NullCheck(L_0); InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0, (RuntimeArray *)(RuntimeArray *)L_1, L_2); return; } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_CopyTo_m4D21059634C4665807D63BFCECF16480A1267867 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_CopyTo_m4D21059634C4665807D63BFCECF16480A1267867_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); RuntimeArray * L_1 = ___array0; int32_t L_2 = ___index1; NullCheck(L_0); InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0, L_1, L_2); return; } } // System.Collections.IEnumerator Sirenix.Serialization.Utilities.ImmutableList::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ImmutableList_GetEnumerator_m43A58AA004DA4F30FF45A047C607BFA6016E4BFA (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_GetEnumerator_m43A58AA004DA4F30FF45A047C607BFA6016E4BFA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); NullCheck(L_0); RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Collections.IEnumerator Sirenix.Serialization.Utilities.ImmutableList::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ImmutableList_System_Collections_IEnumerable_GetEnumerator_mB0631293B6F6E589F5CFA934F239B764B5B68785 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = ImmutableList_GetEnumerator_m43A58AA004DA4F30FF45A047C607BFA6016E4BFA(__this, /*hidden argument*/NULL); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Object> Sirenix.Serialization.Utilities.ImmutableList::System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ImmutableList_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m5B22C7E2FD21519CF144F50541980FFA2631F056 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m5B22C7E2FD21519CF144F50541980FFA2631F056_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * L_0 = (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 *)il2cpp_codegen_object_new(U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480_il2cpp_TypeInfo_var); U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25__ctor_m0AC673CEB093DD3DC76E44139E0F8F7EAB58EFE8(L_0, 0, /*hidden argument*/NULL); U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return L_1; } } // System.Int32 Sirenix.Serialization.Utilities.ImmutableList::System.Collections.IList.Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ImmutableList_System_Collections_IList_Add_mB6DBA9FBA554F10BE4D851F77DAE22221074815D (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_IList_Add_mB6DBA9FBA554F10BE4D851F77DAE22221074815D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_IList_Add_mB6DBA9FBA554F10BE4D851F77DAE22221074815D_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.IList.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_IList_Clear_m4EEB90F0682E2A50899286887FA3CD33DC2A99D6 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_IList_Clear_m4EEB90F0682E2A50899286887FA3CD33DC2A99D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_IList_Clear_m4EEB90F0682E2A50899286887FA3CD33DC2A99D6_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.IList.Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_IList_Insert_m1409394749DC395949727FF10A2C6FA98E69BD0A (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_IList_Insert_m1409394749DC395949727FF10A2C6FA98E69BD0A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_IList_Insert_m1409394749DC395949727FF10A2C6FA98E69BD0A_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.IList.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_IList_Remove_mFDEFC94FCFB363D251AC1EBA11B257E670C2F6AF (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_IList_Remove_mFDEFC94FCFB363D251AC1EBA11B257E670C2F6AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_IList_Remove_mFDEFC94FCFB363D251AC1EBA11B257E670C2F6AF_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.IList.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_IList_RemoveAt_m261ED842BA366FF4CF4FA4A1529590664B72FB36 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_IList_RemoveAt_m261ED842BA366FF4CF4FA4A1529590664B72FB36_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_IList_RemoveAt_m261ED842BA366FF4CF4FA4A1529590664B72FB36_RuntimeMethod_var); } } // System.Int32 Sirenix.Serialization.Utilities.ImmutableList::IndexOf(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ImmutableList_IndexOf_m1E2C8F204D85C23E9C5857FFFCC1146FD2910783 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_IndexOf_m1E2C8F204D85C23E9C5857FFFCC1146FD2910783_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_innerList_0(); RuntimeObject * L_1 = ___value0; NullCheck(L_0); int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(7 /* System.Int32 System.Collections.IList::IndexOf(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.Generic.IList<System.Object>.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_RemoveAt_m51322BEFD7F011BC18C4106F77910672E15CCCD3 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_RemoveAt_m51322BEFD7F011BC18C4106F77910672E15CCCD3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_RemoveAt_m51322BEFD7F011BC18C4106F77910672E15CCCD3_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.Generic.IList<System.Object>.Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_Insert_mC7327E67C295D63A4339A6968D40D4DE1E80D6EA (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_Insert_mC7327E67C295D63A4339A6968D40D4DE1E80D6EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_Generic_IListU3CSystem_ObjectU3E_Insert_mC7327E67C295D63A4339A6968D40D4DE1E80D6EA_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.Generic.ICollection<System.Object>.Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Add_mAF4B02C8D2E54C5142CDEE379DEE8CF394257821 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Add_mAF4B02C8D2E54C5142CDEE379DEE8CF394257821_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Add_mAF4B02C8D2E54C5142CDEE379DEE8CF394257821_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Utilities.ImmutableList::System.Collections.Generic.ICollection<System.Object>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Clear_mE5B074C710502B470F83ED4A1B1AACC3165E1E0B (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Clear_mE5B074C710502B470F83ED4A1B1AACC3165E1E0B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Clear_mE5B074C710502B470F83ED4A1B1AACC3165E1E0B_RuntimeMethod_var); } } // System.Boolean Sirenix.Serialization.Utilities.ImmutableList::System.Collections.Generic.ICollection<System.Object>.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Remove_m6F97D8E1FD12E1CFB382B0BA52FFAC8719D1D4F5 (ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Remove_m6F97D8E1FD12E1CFB382B0BA52FFAC8719D1D4F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral46AC5D13FE0770E65B8B6D5D0747F6C1A8C61870, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ImmutableList_System_Collections_Generic_ICollectionU3CSystem_ObjectU3E_Remove_m6F97D8E1FD12E1CFB382B0BA52FFAC8719D1D4F5_RuntimeMethod_var); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25__ctor_m0AC673CEB093DD3DC76E44139E0F8F7EAB58EFE8 (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_IDisposable_Dispose_mFC0E0991EDB9F2F921618023C05C1D246C1DA125 (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; int32_t L_1 = V_0; if ((((int32_t)L_1) == ((int32_t)((int32_t)-3)))) { goto IL_0010; } } { int32_t L_2 = V_0; if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_001a; } } IL_0010: { } IL_0011: try { // begin try (depth: 1) IL2CPP_LEAVE(0x1A, FINALLY_0013); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0013; } FINALLY_0013: { // begin finally (depth: 1) U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_U3CU3Em__Finally1_mAA73EF50A51A242560AC49613E4A609038B65FB0(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(19) } // end finally (depth: 1) IL2CPP_CLEANUP(19) { IL2CPP_JUMP_TBL(0x1A, IL_001a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_001a: { return; } } // System.Boolean Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_MoveNext_mD6DDB9B453B608B161C5C1B64D7E28AFD91C06EB (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_MoveNext_mD6DDB9B453B608B161C5C1B64D7E28AFD91C06EB_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * V_2 = NULL; RuntimeObject * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_1 = L_0; ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * L_1 = __this->get_U3CU3E4__this_2(); V_2 = L_1; int32_t L_2 = V_1; if (!L_2) { goto IL_0019; } } IL_0011: { int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0059; } } IL_0015: { V_0 = (bool)0; goto IL_0086; } IL_0019: { __this->set_U3CU3E1__state_0((-1)); ImmutableList_t2025B9374BB370CB3DF5A6426E5813A22F4080EE * L_4 = V_2; NullCheck(L_4); RuntimeObject* L_5 = L_4->get_innerList_0(); NullCheck(L_5); RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_5); __this->set_U3CU3E7__wrap1_3(L_6); __this->set_U3CU3E1__state_0(((int32_t)-3)); goto IL_0061; } IL_003b: { RuntimeObject* L_7 = __this->get_U3CU3E7__wrap1_3(); NullCheck(L_7); RuntimeObject * L_8 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_7); V_3 = L_8; RuntimeObject * L_9 = V_3; __this->set_U3CU3E2__current_1(L_9); __this->set_U3CU3E1__state_0(1); V_0 = (bool)1; goto IL_0086; } IL_0059: { __this->set_U3CU3E1__state_0(((int32_t)-3)); } IL_0061: { RuntimeObject* L_10 = __this->get_U3CU3E7__wrap1_3(); NullCheck(L_10); bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_10); if (L_11) { goto IL_003b; } } IL_006e: { U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_U3CU3Em__Finally1_mAA73EF50A51A242560AC49613E4A609038B65FB0(__this, /*hidden argument*/NULL); __this->set_U3CU3E7__wrap1_3((RuntimeObject*)NULL); V_0 = (bool)0; goto IL_0086; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FAULT_007f; } FAULT_007f: { // begin fault (depth: 1) U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_IDisposable_Dispose_mFC0E0991EDB9F2F921618023C05C1D246C1DA125(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(127) } // end fault IL2CPP_CLEANUP(127) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0086: { bool L_12 = V_0; return L_12; } } // System.Void Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::<>m__Finally1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_U3CU3Em__Finally1_mAA73EF50A51A242560AC49613E4A609038B65FB0 (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_U3CU3Em__Finally1_mAA73EF50A51A242560AC49613E4A609038B65FB0_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { __this->set_U3CU3E1__state_0((-1)); RuntimeObject* L_0 = __this->get_U3CU3E7__wrap1_3(); V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var)); RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_001c; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_2); } IL_001c: { return; } } // System.Object Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::System.Collections.Generic.IEnumerator<System.Object>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mEF7992DDA271FAB4111C7BC75AAD751B3386D8FB (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_Collections_IEnumerator_Reset_m662E34BF3119419604905F0EB8D244AA52938BF4 (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_Collections_IEnumerator_Reset_m662E34BF3119419604905F0EB8D244AA52938BF4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_Collections_IEnumerator_Reset_m662E34BF3119419604905F0EB8D244AA52938BF4_RuntimeMethod_var); } } // System.Object Sirenix.Serialization.Utilities.ImmutableList_<SystemU2DCollectionsU2DGenericU2DIEnumerable<SystemU2DObject>U2DGetEnumerator>d__25::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_System_Collections_IEnumerator_get_Current_mC1E86F51DD0BE5929697CCDC7924BE08BD3BA56F (U3CSystemU2DCollectionsU2DGenericU2DIEnumerableU3CSystemU2DObjectU3EU2DGetEnumeratorU3Ed__25_tA14B825415C9072D6F4F74636D0FB4D9DF1F8480 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.MemberAliasFieldInfo::.ctor(System.Reflection.FieldInfo,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAliasFieldInfo__ctor_m0FE3C351DD64ADD4EF2B74A4FF2A4CBF47287DEB (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, FieldInfo_t * ___field0, String_t* ___namePrefix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberAliasFieldInfo__ctor_m0FE3C351DD64ADD4EF2B74A4FF2A4CBF47287DEB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { FieldInfo__ctor_mA7155594B8A101D076F12CC45AE64020834924DB(__this, /*hidden argument*/NULL); FieldInfo_t * L_0 = ___field0; __this->set_aliasedField_1(L_0); String_t* L_1 = ___namePrefix1; FieldInfo_t * L_2 = __this->get_aliasedField_1(); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_2); String_t* L_4 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_1, _stringLiteralA979EF10CC6F6A36DF6B8A323307EE3BB2E2DB9C, L_3, /*hidden argument*/NULL); __this->set_mangledName_2(L_4); return; } } // System.Void Sirenix.Serialization.Utilities.MemberAliasFieldInfo::.ctor(System.Reflection.FieldInfo,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAliasFieldInfo__ctor_mAB7E5E1E1CFD9D440D9EAFABED2D0BBAA6B1655C (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, FieldInfo_t * ___field0, String_t* ___namePrefix1, String_t* ___separatorString2, const RuntimeMethod* method) { { FieldInfo__ctor_mA7155594B8A101D076F12CC45AE64020834924DB(__this, /*hidden argument*/NULL); FieldInfo_t * L_0 = ___field0; __this->set_aliasedField_1(L_0); String_t* L_1 = ___namePrefix1; String_t* L_2 = ___separatorString2; FieldInfo_t * L_3 = __this->get_aliasedField_1(); NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3); String_t* L_5 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_1, L_2, L_4, /*hidden argument*/NULL); __this->set_mangledName_2(L_5); return; } } // System.Reflection.FieldInfo Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_AliasedField() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfo_t * MemberAliasFieldInfo_get_AliasedField_m21F4B3801BDA72BE06F247466CF800AA1CB9A083 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); return L_0; } } // System.Reflection.Module Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_Module() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * MemberAliasFieldInfo_get_Module_m3BCE85A7B9CC04B515342098B9A9F9348025A1C4 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); NullCheck(L_0); Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_1 = VirtFuncInvoker0< Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * >::Invoke(15 /* System.Reflection.Module System.Reflection.MemberInfo::get_Module() */, L_0); return L_1; } } // System.Int32 Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_MetadataToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberAliasFieldInfo_get_MetadataToken_mDF3D761D9573F2E2AA8C74DAE9D5A3C09C7671CA (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Reflection.MemberInfo::get_MetadataToken() */, L_0); return L_1; } } // System.String Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberAliasFieldInfo_get_Name_m7CC54FA041D2424BEBD60E185C0AE3B752DFC1C5 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_mangledName_2(); return L_0; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_DeclaringType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasFieldInfo_get_DeclaringType_m6D81C6B00B7DD32F2CC7B238026880FC518230F5 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_0); return L_1; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_ReflectedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasFieldInfo_get_ReflectedType_m276656ECA0C6B927CE810D12744041D1BE301BF0 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_ReflectedType() */, L_0); return L_1; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_FieldType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasFieldInfo_get_FieldType_m6148A93EAF4CCD7EA68CF9962EABDABB1209B3A5 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_0); return L_1; } } // System.RuntimeFieldHandle Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_FieldHandle() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF MemberAliasFieldInfo_get_FieldHandle_m0E98096D18D2DB756983D3A199692414D315D5BA (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); NullCheck(L_0); RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_1 = VirtFuncInvoker0< RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF >::Invoke(17 /* System.RuntimeFieldHandle System.Reflection.FieldInfo::get_FieldHandle() */, L_0); return L_1; } } // System.Reflection.FieldAttributes Sirenix.Serialization.Utilities.MemberAliasFieldInfo::get_Attributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberAliasFieldInfo_get_Attributes_m3A1A28839A1277CBD35F04FBED3A93B679E03029 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Reflection.FieldAttributes System.Reflection.FieldInfo::get_Attributes() */, L_0); return L_1; } } // System.Object[] Sirenix.Serialization.Utilities.MemberAliasFieldInfo::GetCustomAttributes(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MemberAliasFieldInfo_GetCustomAttributes_m1549453903F99A2E90D48917E42AF99918AB250B (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, bool ___inherit0, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); bool L_1 = ___inherit0; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = VirtFuncInvoker1< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool >::Invoke(10 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_0, L_1); return L_2; } } // System.Object[] Sirenix.Serialization.Utilities.MemberAliasFieldInfo::GetCustomAttributes(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MemberAliasFieldInfo_GetCustomAttributes_m26EB4C8E93DEDD616654789A1A37A3BEEC1E0AD9 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, Type_t * ___attributeType0, bool ___inherit1, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, L_2); return L_3; } } // System.Boolean Sirenix.Serialization.Utilities.MemberAliasFieldInfo::IsDefined(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberAliasFieldInfo_IsDefined_m32C95A9FB34BC84149ADBD6AF70A95D06722C57A (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, Type_t * ___attributeType0, bool ___inherit1, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); bool L_3 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_0, L_1, L_2); return L_3; } } // System.Object Sirenix.Serialization.Utilities.MemberAliasFieldInfo::GetValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MemberAliasFieldInfo_GetValue_m28623CAAB188E27378FCDAB2787D5B77EE7BC1F8 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); RuntimeObject * L_1 = ___obj0; NullCheck(L_0); RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_0, L_1); return L_2; } } // System.Void Sirenix.Serialization.Utilities.MemberAliasFieldInfo::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAliasFieldInfo_SetValue_m77104E66FCB91A894F562071881A7FE0861B7523 (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, RuntimeObject * ___obj0, RuntimeObject * ___value1, int32_t ___invokeAttr2, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder3, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture4, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); RuntimeObject * L_1 = ___obj0; RuntimeObject * L_2 = ___value1; int32_t L_3 = ___invokeAttr2; Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_4 = ___binder3; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = ___culture4; NullCheck(L_0); VirtActionInvoker5< RuntimeObject *, RuntimeObject *, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(26 /* System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo) */, L_0, L_1, L_2, L_3, L_4, L_5); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.MemberAliasMethodInfo::.ctor(System.Reflection.MethodInfo,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAliasMethodInfo__ctor_mD6518FE32AD099781ABC05BFFE4533808F711C52 (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, MethodInfo_t * ___method0, String_t* ___namePrefix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberAliasMethodInfo__ctor_mD6518FE32AD099781ABC05BFFE4533808F711C52_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MethodInfo__ctor_m31D0E4C8AC4F83DA1056313CB7143CC5D57AB965(__this, /*hidden argument*/NULL); MethodInfo_t * L_0 = ___method0; __this->set_aliasedMethod_1(L_0); String_t* L_1 = ___namePrefix1; MethodInfo_t * L_2 = __this->get_aliasedMethod_1(); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_2); String_t* L_4 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_1, _stringLiteralA979EF10CC6F6A36DF6B8A323307EE3BB2E2DB9C, L_3, /*hidden argument*/NULL); __this->set_mangledName_2(L_4); return; } } // System.Void Sirenix.Serialization.Utilities.MemberAliasMethodInfo::.ctor(System.Reflection.MethodInfo,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAliasMethodInfo__ctor_m5EA69F2D735998099C9CF080EF98AE3D69BE37EE (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, MethodInfo_t * ___method0, String_t* ___namePrefix1, String_t* ___separatorString2, const RuntimeMethod* method) { { MethodInfo__ctor_m31D0E4C8AC4F83DA1056313CB7143CC5D57AB965(__this, /*hidden argument*/NULL); MethodInfo_t * L_0 = ___method0; __this->set_aliasedMethod_1(L_0); String_t* L_1 = ___namePrefix1; String_t* L_2 = ___separatorString2; MethodInfo_t * L_3 = __this->get_aliasedMethod_1(); NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3); String_t* L_5 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_1, L_2, L_4, /*hidden argument*/NULL); __this->set_mangledName_2(L_5); return; } } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_AliasedMethod() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberAliasMethodInfo_get_AliasedMethod_m84550753FCF647D3037205113DB54F425C6B40C2 (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); return L_0; } } // System.Reflection.ICustomAttributeProvider Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_ReturnTypeCustomAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MemberAliasMethodInfo_get_ReturnTypeCustomAttributes_m0CEBC074DAA864FFAD0A6961B4B6218448F1D9AE (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(41 /* System.Reflection.ICustomAttributeProvider System.Reflection.MethodInfo::get_ReturnTypeCustomAttributes() */, L_0); return L_1; } } // System.RuntimeMethodHandle Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_MethodHandle() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F MemberAliasMethodInfo_get_MethodHandle_mFA399257B3B5781E62288423E52425CB36DC915D (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F L_1 = VirtFuncInvoker0< RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F >::Invoke(19 /* System.RuntimeMethodHandle System.Reflection.MethodBase::get_MethodHandle() */, L_0); return L_1; } } // System.Reflection.MethodAttributes Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_Attributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberAliasMethodInfo_get_Attributes_m6963BF94CFCA3B198625907B0230DD7C4D9EF737 (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Reflection.MethodAttributes System.Reflection.MethodBase::get_Attributes() */, L_0); return L_1; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_ReturnType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasMethodInfo_get_ReturnType_mFFF17FC7CC2199FA9DFA54D95731BA060453C02F (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_0); return L_1; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_DeclaringType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasMethodInfo_get_DeclaringType_mB013031F1226256F594848224F769C58CCF2E043 (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_0); return L_1; } } // System.String Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberAliasMethodInfo_get_Name_m237303148DF04F925439D681EB54A322DA43CF55 (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_mangledName_2(); return L_0; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasMethodInfo::get_ReflectedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasMethodInfo_get_ReflectedType_m8CB73E2855B8C19343D70E9812E108DF46BE1FDE (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_ReflectedType() */, L_0); return L_1; } } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.MemberAliasMethodInfo::GetBaseDefinition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberAliasMethodInfo_GetBaseDefinition_m45A2A1DA86CFBA5999ABACD6B174F48D9E2DD718 (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); MethodInfo_t * L_1 = VirtFuncInvoker0< MethodInfo_t * >::Invoke(42 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseDefinition() */, L_0); return L_1; } } // System.Object[] Sirenix.Serialization.Utilities.MemberAliasMethodInfo::GetCustomAttributes(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MemberAliasMethodInfo_GetCustomAttributes_m255BC2EB68E31A85343DECAAF018B035C07F483E (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, bool ___inherit0, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); bool L_1 = ___inherit0; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = VirtFuncInvoker1< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool >::Invoke(10 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_0, L_1); return L_2; } } // System.Object[] Sirenix.Serialization.Utilities.MemberAliasMethodInfo::GetCustomAttributes(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MemberAliasMethodInfo_GetCustomAttributes_m45573EDF69D4A33629ACCB3EF436BC33336141AE (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, Type_t * ___attributeType0, bool ___inherit1, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, L_2); return L_3; } } // System.Reflection.MethodImplAttributes Sirenix.Serialization.Utilities.MemberAliasMethodInfo::GetMethodImplementationFlags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberAliasMethodInfo_GetMethodImplementationFlags_m2F9D073585DD71D07BDA48739F068701D4645D24 (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Reflection.MethodImplAttributes System.Reflection.MethodBase::GetMethodImplementationFlags() */, L_0); return L_1; } } // System.Reflection.ParameterInfo[] Sirenix.Serialization.Utilities.MemberAliasMethodInfo::GetParameters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* MemberAliasMethodInfo_GetParameters_m4CBF6D3EF63CE8CB34A5118CB2A3067CBBC53F1E (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); NullCheck(L_0); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_1 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_0); return L_1; } } // System.Object Sirenix.Serialization.Utilities.MemberAliasMethodInfo::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MemberAliasMethodInfo_Invoke_m14DA20CE252B1DEF717F011DF97AB40A203ABC2C (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, RuntimeObject * ___obj0, int32_t ___invokeAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters3, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture4, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); RuntimeObject * L_1 = ___obj0; int32_t L_2 = ___invokeAttr1; Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_3 = ___binder2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___parameters3; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = ___culture4; NullCheck(L_0); RuntimeObject * L_6 = VirtFuncInvoker5< RuntimeObject *, RuntimeObject *, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(21 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, L_0, L_1, L_2, L_3, L_4, L_5); return L_6; } } // System.Boolean Sirenix.Serialization.Utilities.MemberAliasMethodInfo::IsDefined(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberAliasMethodInfo_IsDefined_m63F173C68C22EF799D770F6BD41985FC07C7A1D5 (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, Type_t * ___attributeType0, bool ___inherit1, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); bool L_3 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_0, L_1, L_2); return L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::.ctor(System.Reflection.PropertyInfo,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAliasPropertyInfo__ctor_mED4ABDF630A271D4FE42419DF494FD69A8507552 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, PropertyInfo_t * ___prop0, String_t* ___namePrefix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberAliasPropertyInfo__ctor_mED4ABDF630A271D4FE42419DF494FD69A8507552_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PropertyInfo__ctor_mDC863EE09FBBA50C54674597B8BDCEF4BF43E5EC(__this, /*hidden argument*/NULL); PropertyInfo_t * L_0 = ___prop0; __this->set_aliasedProperty_1(L_0); String_t* L_1 = ___namePrefix1; PropertyInfo_t * L_2 = __this->get_aliasedProperty_1(); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_2); String_t* L_4 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_1, _stringLiteralA979EF10CC6F6A36DF6B8A323307EE3BB2E2DB9C, L_3, /*hidden argument*/NULL); __this->set_mangledName_2(L_4); return; } } // System.Void Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::.ctor(System.Reflection.PropertyInfo,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAliasPropertyInfo__ctor_mD7FBBC23A683E300F7082D59FB7452FA94C36E70 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, PropertyInfo_t * ___prop0, String_t* ___namePrefix1, String_t* ___separatorString2, const RuntimeMethod* method) { { PropertyInfo__ctor_mDC863EE09FBBA50C54674597B8BDCEF4BF43E5EC(__this, /*hidden argument*/NULL); PropertyInfo_t * L_0 = ___prop0; __this->set_aliasedProperty_1(L_0); String_t* L_1 = ___namePrefix1; String_t* L_2 = ___separatorString2; PropertyInfo_t * L_3 = __this->get_aliasedProperty_1(); NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3); String_t* L_5 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_1, L_2, L_4, /*hidden argument*/NULL); __this->set_mangledName_2(L_5); return; } } // System.Reflection.PropertyInfo Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_AliasedProperty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * MemberAliasPropertyInfo_get_AliasedProperty_mF48B87F081230C7239CE228570EA7750BE6C969C (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); return L_0; } } // System.Reflection.Module Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_Module() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * MemberAliasPropertyInfo_get_Module_m33ACD5C88014B6D724CF69643A55448E3A5D77EF (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_1 = VirtFuncInvoker0< Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * >::Invoke(15 /* System.Reflection.Module System.Reflection.MemberInfo::get_Module() */, L_0); return L_1; } } // System.Int32 Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_MetadataToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberAliasPropertyInfo_get_MetadataToken_mA9642385B107B62910594791019FFD0220B58314 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Reflection.MemberInfo::get_MetadataToken() */, L_0); return L_1; } } // System.String Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberAliasPropertyInfo_get_Name_m91C6478F866F03295F4789E35D853038075D67C3 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_mangledName_2(); return L_0; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_DeclaringType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasPropertyInfo_get_DeclaringType_m446A8BF15281DF5F3598D1A9793F8DB7C604E7EC (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_0); return L_1; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_ReflectedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasPropertyInfo_get_ReflectedType_m01772695D4C4CD05005C6261D81DED4C5AB71F5A (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_ReflectedType() */, L_0); return L_1; } } // System.Type Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_PropertyType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MemberAliasPropertyInfo_get_PropertyType_mDC8707F30CD859C91AF2FBEA59D1CE748558BAE8 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_0); return L_1; } } // System.Reflection.PropertyAttributes Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_Attributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberAliasPropertyInfo_get_Attributes_m211B8E86249E7A3A21476251F4B07671E1F3A2FC (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Reflection.PropertyAttributes System.Reflection.PropertyInfo::get_Attributes() */, L_0); return L_1; } } // System.Boolean Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_CanRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberAliasPropertyInfo_get_CanRead_m88919FEA82B92314C32D2E8F3DC4C5DB8D58898D (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_0); return L_1; } } // System.Boolean Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::get_CanWrite() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberAliasPropertyInfo_get_CanWrite_m5621AEB496AC5809B2EED4196CD9ADD9E04CF47B (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_0); return L_1; } } // System.Object[] Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::GetCustomAttributes(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MemberAliasPropertyInfo_GetCustomAttributes_m8D63E0CA997227A793C1690E3DAF033B0125ED47 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, bool ___inherit0, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); bool L_1 = ___inherit0; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = VirtFuncInvoker1< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool >::Invoke(10 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_0, L_1); return L_2; } } // System.Object[] Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::GetCustomAttributes(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MemberAliasPropertyInfo_GetCustomAttributes_m88F10B0845F8C7F27886D64C24E514BC5F158E35 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, Type_t * ___attributeType0, bool ___inherit1, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, L_2); return L_3; } } // System.Boolean Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::IsDefined(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberAliasPropertyInfo_IsDefined_mFB2B0B8BE36A4D8FB7FE0E13D0AD25A30385404D (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, Type_t * ___attributeType0, bool ___inherit1, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); bool L_3 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_0, L_1, L_2); return L_3; } } // System.Reflection.MethodInfo[] Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::GetAccessors(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* MemberAliasPropertyInfo_GetAccessors_mD01D8238B1103609716762341DF47489AF96545E (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, bool ___nonPublic0, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); bool L_1 = ___nonPublic0; NullCheck(L_0); MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_2 = VirtFuncInvoker1< MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B*, bool >::Invoke(20 /* System.Reflection.MethodInfo[] System.Reflection.PropertyInfo::GetAccessors(System.Boolean) */, L_0, L_1); return L_2; } } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::GetGetMethod(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberAliasPropertyInfo_GetGetMethod_m566AA731D6D2DCE4C704B628069168C4DB98ECB6 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, bool ___nonPublic0, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); bool L_1 = ___nonPublic0; NullCheck(L_0); MethodInfo_t * L_2 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(22 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_0, L_1); return L_2; } } // System.Reflection.ParameterInfo[] Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::GetIndexParameters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* MemberAliasPropertyInfo_GetIndexParameters_mED99B21C625B0AE0763CD5A65369DC73ED527C22 (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); NullCheck(L_0); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_1 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(23 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_0); return L_1; } } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::GetSetMethod(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberAliasPropertyInfo_GetSetMethod_m7E3003AA9C53CBCBB91B3EB9000ED98BAD8362DC (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, bool ___nonPublic0, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); bool L_1 = ___nonPublic0; NullCheck(L_0); MethodInfo_t * L_2 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(25 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_0, L_1); return L_2; } } // System.Object Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MemberAliasPropertyInfo_GetValue_mF2C8F129AAD54CA2641ADDF90F1E829DC3FFB18E (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, RuntimeObject * ___obj0, int32_t ___invokeAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___index3, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture4, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); RuntimeObject * L_1 = ___obj0; int32_t L_2 = ___invokeAttr1; Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_3 = ___binder2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___index3; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = ___culture4; NullCheck(L_0); RuntimeObject * L_6 = VirtFuncInvoker5< RuntimeObject *, RuntimeObject *, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(27 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, L_0, L_1, L_2, L_3, L_4, L_5); return L_6; } } // System.Void Sirenix.Serialization.Utilities.MemberAliasPropertyInfo::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAliasPropertyInfo_SetValue_m63F93D854A2AFD99F84C6B835322D4AB882D3F5C (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, RuntimeObject * ___obj0, RuntimeObject * ___value1, int32_t ___invokeAttr2, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder3, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___index4, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture5, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); RuntimeObject * L_1 = ___obj0; RuntimeObject * L_2 = ___value1; int32_t L_3 = ___invokeAttr2; Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_4 = ___binder3; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___index4; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = ___culture5; NullCheck(L_0); VirtActionInvoker6< RuntimeObject *, RuntimeObject *, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(29 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, L_0, L_1, L_2, L_3, L_4, L_5, L_6); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Attribute[] Sirenix.Serialization.Utilities.MemberInfoExtensions::GetAttributes(System.Reflection.ICustomAttributeProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* MemberInfoExtensions_GetAttributes_mA715E13C8E72D2FBEFDB9F1A4360EDE8DA01F0E8 (RuntimeObject* ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoExtensions_GetAttributes_mA715E13C8E72D2FBEFDB9F1A4360EDE8DA01F0E8_MetadataUsageId); s_Il2CppMethodInitialized = true; } AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) RuntimeObject* L_0 = ___member0; RuntimeObject* L_1 = MemberInfoExtensions_GetAttributes_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_m0C68194EA2F1290920EB416435D1F1DF7376DE9F(L_0, /*hidden argument*/MemberInfoExtensions_GetAttributes_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_m0C68194EA2F1290920EB416435D1F1DF7376DE9F_RuntimeMethod_var); AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = Enumerable_ToArray_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mA493F45171E19BC621F3EABE9C319CD825F22C57(L_1, /*hidden argument*/Enumerable_ToArray_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mA493F45171E19BC621F3EABE9C319CD825F22C57_RuntimeMethod_var); V_0 = L_2; goto IL_0018; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_000e; throw e; } CATCH_000e: { // begin catch(System.Object) AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)0); V_0 = L_3; goto IL_0018; } // end catch (depth: 1) IL_0018: { AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_4 = V_0; return L_4; } } // System.Attribute[] Sirenix.Serialization.Utilities.MemberInfoExtensions::GetAttributes(System.Reflection.ICustomAttributeProvider,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* MemberInfoExtensions_GetAttributes_m18299A14FE035FBD9541B23F9EE55E01FC9B1D38 (RuntimeObject* ___member0, bool ___inherit1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoExtensions_GetAttributes_m18299A14FE035FBD9541B23F9EE55E01FC9B1D38_MetadataUsageId); s_Il2CppMethodInitialized = true; } AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) RuntimeObject* L_0 = ___member0; bool L_1 = ___inherit1; RuntimeObject* L_2 = MemberInfoExtensions_GetAttributes_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mE27B8842BFC910F821171688202749D4088AB9F0(L_0, L_1, /*hidden argument*/MemberInfoExtensions_GetAttributes_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mE27B8842BFC910F821171688202749D4088AB9F0_RuntimeMethod_var); AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = Enumerable_ToArray_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mA493F45171E19BC621F3EABE9C319CD825F22C57(L_2, /*hidden argument*/Enumerable_ToArray_TisAttribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_mA493F45171E19BC621F3EABE9C319CD825F22C57_RuntimeMethod_var); V_0 = L_3; goto IL_0019; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_000f; throw e; } CATCH_000f: { // begin catch(System.Object) AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_4 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)0); V_0 = L_4; goto IL_0019; } // end catch (depth: 1) IL_0019: { AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = V_0; return L_5; } } // System.String Sirenix.Serialization.Utilities.MemberInfoExtensions::GetNiceName(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberInfoExtensions_GetNiceName_m804078AF053FDAAA249AEA0F420E63F1C1750881 (MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoExtensions_GetNiceName_m804078AF053FDAAA249AEA0F420E63F1C1750881_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodBase_t * V_0 = NULL; String_t* V_1 = NULL; { MemberInfo_t * L_0 = ___member0; V_0 = ((MethodBase_t *)IsInstClass((RuntimeObject*)L_0, MethodBase_t_il2cpp_TypeInfo_var)); MethodBase_t * L_1 = V_0; if (!L_1) { goto IL_0013; } } { MethodBase_t * L_2 = V_0; String_t* L_3 = MethodInfoExtensions_GetFullName_mBDF15702D4884A03C7F052B88E8353688B76541C(L_2, /*hidden argument*/NULL); V_1 = L_3; goto IL_001a; } IL_0013: { MemberInfo_t * L_4 = ___member0; NullCheck(L_4); String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_4); V_1 = L_5; } IL_001a: { String_t* L_6 = V_1; String_t* L_7 = StringExtensions_ToTitleCase_m9E13DB001165FA20961B2B6CC9CDD7A31E3EEBDE(L_6, /*hidden argument*/NULL); return L_7; } } // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsStatic(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfoExtensions_IsStatic_mA43E27BF6A1CB09EA93A5EF4100003F1F3921658 (MemberInfo_t * ___member0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoExtensions_IsStatic_mA43E27BF6A1CB09EA93A5EF4100003F1F3921658_MetadataUsageId); s_Il2CppMethodInitialized = true; } FieldInfo_t * V_0 = NULL; PropertyInfo_t * V_1 = NULL; MethodBase_t * V_2 = NULL; EventInfo_t * V_3 = NULL; Type_t * V_4 = NULL; String_t* V_5 = NULL; { MemberInfo_t * L_0 = ___member0; V_0 = ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_0, FieldInfo_t_il2cpp_TypeInfo_var)); FieldInfo_t * L_1 = V_0; if (!L_1) { goto IL_0011; } } { FieldInfo_t * L_2 = V_0; NullCheck(L_2); bool L_3 = FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA(L_2, /*hidden argument*/NULL); return L_3; } IL_0011: { MemberInfo_t * L_4 = ___member0; V_1 = ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var)); PropertyInfo_t * L_5 = V_1; if (!L_5) { goto IL_003d; } } { PropertyInfo_t * L_6 = V_1; NullCheck(L_6); bool L_7 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_6); if (L_7) { goto IL_0030; } } { PropertyInfo_t * L_8 = V_1; NullCheck(L_8); MethodInfo_t * L_9 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(25 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_8, (bool)1); NullCheck(L_9); bool L_10 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_9, /*hidden argument*/NULL); return L_10; } IL_0030: { PropertyInfo_t * L_11 = V_1; NullCheck(L_11); MethodInfo_t * L_12 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(22 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_11, (bool)1); NullCheck(L_12); bool L_13 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_12, /*hidden argument*/NULL); return L_13; } IL_003d: { MemberInfo_t * L_14 = ___member0; V_2 = ((MethodBase_t *)IsInstClass((RuntimeObject*)L_14, MethodBase_t_il2cpp_TypeInfo_var)); MethodBase_t * L_15 = V_2; if (!L_15) { goto IL_004e; } } { MethodBase_t * L_16 = V_2; NullCheck(L_16); bool L_17 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_16, /*hidden argument*/NULL); return L_17; } IL_004e: { MemberInfo_t * L_18 = ___member0; V_3 = ((EventInfo_t *)IsInstClass((RuntimeObject*)L_18, EventInfo_t_il2cpp_TypeInfo_var)); EventInfo_t * L_19 = V_3; if (!L_19) { goto IL_0065; } } { EventInfo_t * L_20 = V_3; NullCheck(L_20); MethodInfo_t * L_21 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(19 /* System.Reflection.MethodInfo System.Reflection.EventInfo::GetRaiseMethod(System.Boolean) */, L_20, (bool)1); NullCheck(L_21); bool L_22 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_21, /*hidden argument*/NULL); return L_22; } IL_0065: { MemberInfo_t * L_23 = ___member0; V_4 = ((Type_t *)IsInstClass((RuntimeObject*)L_23, Type_t_il2cpp_TypeInfo_var)); Type_t * L_24 = V_4; if (!L_24) { goto IL_0084; } } { Type_t * L_25 = V_4; NullCheck(L_25); bool L_26 = Type_get_IsSealed_mC42D173AFAF7802291DEA2C3D691340F2375FD9A(L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_0082; } } { Type_t * L_27 = V_4; NullCheck(L_27); bool L_28 = Type_get_IsAbstract_m769E8E92F368822B8AB5354BB0D123BDDD605D09(L_27, /*hidden argument*/NULL); return L_28; } IL_0082: { return (bool)0; } IL_0084: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_29 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = L_30; MemberInfo_t * L_32 = ___member0; NullCheck(L_32); Type_t * L_33 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_32); NullCheck(L_33); String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_33); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_34); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_34); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = L_31; MemberInfo_t * L_36 = ___member0; NullCheck(L_36); String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_36); NullCheck(L_35); ArrayElementTypeCheck (L_35, L_37); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_37); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = L_35; MemberInfo_t * L_39 = ___member0; NullCheck(L_39); Type_t * L_40 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_39, /*hidden argument*/NULL); NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_40); NullCheck(L_38); ArrayElementTypeCheck (L_38, L_41); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_41); String_t* L_42 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_29, _stringLiteral6BD96DD996BAB362F9BE35766B90320ABA61A05E, L_38, /*hidden argument*/NULL); V_5 = L_42; String_t* L_43 = V_5; NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_44 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_44, L_43, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, MemberInfoExtensions_IsStatic_mA43E27BF6A1CB09EA93A5EF4100003F1F3921658_RuntimeMethod_var); } } // System.Boolean Sirenix.Serialization.Utilities.MemberInfoExtensions::IsAlias(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfoExtensions_IsAlias_mB01B756B632C99C4D488E454635A3014143B31B5 (MemberInfo_t * ___memberInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoExtensions_IsAlias_mB01B756B632C99C4D488E454635A3014143B31B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = ___memberInfo0; if (((MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 *)IsInstSealed((RuntimeObject*)L_0, MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8_il2cpp_TypeInfo_var))) { goto IL_001a; } } { MemberInfo_t * L_1 = ___memberInfo0; if (((MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F *)IsInstSealed((RuntimeObject*)L_1, MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F_il2cpp_TypeInfo_var))) { goto IL_001a; } } { MemberInfo_t * L_2 = ___memberInfo0; return (bool)((!(((RuntimeObject*)(MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 *)((MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 *)IsInstSealed((RuntimeObject*)L_2, MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } IL_001a: { return (bool)1; } } // System.Reflection.MemberInfo Sirenix.Serialization.Utilities.MemberInfoExtensions::DeAlias(System.Reflection.MemberInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfo_t * MemberInfoExtensions_DeAlias_m594F5FA3120FACC3E0E59BE8A9B1C053A44295C9 (MemberInfo_t * ___memberInfo0, bool ___throwOnNotAliased1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoExtensions_DeAlias_m594F5FA3120FACC3E0E59BE8A9B1C053A44295C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * V_0 = NULL; MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * V_1 = NULL; MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * V_2 = NULL; { MemberInfo_t * L_0 = ___memberInfo0; V_0 = ((MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 *)IsInstSealed((RuntimeObject*)L_0, MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8_il2cpp_TypeInfo_var)); MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * L_1 = V_0; if (!L_1) { goto IL_0011; } } { MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * L_2 = V_0; NullCheck(L_2); FieldInfo_t * L_3 = MemberAliasFieldInfo_get_AliasedField_m21F4B3801BDA72BE06F247466CF800AA1CB9A083_inline(L_2, /*hidden argument*/NULL); return L_3; } IL_0011: { MemberInfo_t * L_4 = ___memberInfo0; V_1 = ((MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F *)IsInstSealed((RuntimeObject*)L_4, MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F_il2cpp_TypeInfo_var)); MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * L_5 = V_1; if (!L_5) { goto IL_0022; } } { MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * L_6 = V_1; NullCheck(L_6); PropertyInfo_t * L_7 = MemberAliasPropertyInfo_get_AliasedProperty_mF48B87F081230C7239CE228570EA7750BE6C969C_inline(L_6, /*hidden argument*/NULL); return L_7; } IL_0022: { MemberInfo_t * L_8 = ___memberInfo0; V_2 = ((MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 *)IsInstSealed((RuntimeObject*)L_8, MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466_il2cpp_TypeInfo_var)); MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * L_9 = V_2; if (!L_9) { goto IL_0033; } } { MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * L_10 = V_2; NullCheck(L_10); MethodInfo_t * L_11 = MemberAliasMethodInfo_get_AliasedMethod_m84550753FCF647D3037205113DB54F425C6B40C2_inline(L_10, /*hidden argument*/NULL); return L_11; } IL_0033: { bool L_12 = ___throwOnNotAliased1; if (!L_12) { goto IL_0051; } } { MemberInfo_t * L_13 = ___memberInfo0; String_t* L_14 = MemberInfoExtensions_GetNiceName_m804078AF053FDAAA249AEA0F420E63F1C1750881(L_13, /*hidden argument*/NULL); String_t* L_15 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralCF60A752968ECE9220E66286B38230E6CA2B97F9, L_14, _stringLiteralCF6C4EE7957B6F4BE116A890E08871F57C051080, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_16 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, MemberInfoExtensions_DeAlias_m594F5FA3120FACC3E0E59BE8A9B1C053A44295C9_RuntimeMethod_var); } IL_0051: { MemberInfo_t * L_17 = ___memberInfo0; return L_17; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String Sirenix.Serialization.Utilities.MethodInfoExtensions::GetFullName(System.Reflection.MethodBase,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodInfoExtensions_GetFullName_mADD4F42C07FBA37C708976367FE70A9ABEC184AB (MethodBase_t * ___method0, String_t* ___extensionMethodPrefix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodInfoExtensions_GetFullName_mADD4F42C07FBA37C708976367FE70A9ABEC184AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; bool V_1 = false; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL); V_0 = L_0; MethodBase_t * L_1 = ___method0; bool L_2 = MethodInfoExtensions_IsExtensionMethod_m8D9C0DF75101EE0412FFC8F43DBABF4016246F3D(L_1, /*hidden argument*/NULL); V_1 = L_2; bool L_3 = V_1; if (!L_3) { goto IL_0018; } } { StringBuilder_t * L_4 = V_0; String_t* L_5 = ___extensionMethodPrefix1; NullCheck(L_4); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_4, L_5, /*hidden argument*/NULL); } IL_0018: { StringBuilder_t * L_6 = V_0; MethodBase_t * L_7 = ___method0; NullCheck(L_7); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7); NullCheck(L_6); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_6, L_8, /*hidden argument*/NULL); StringBuilder_t * L_9 = V_0; NullCheck(L_9); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_9, _stringLiteral28ED3A797DA3C48C309A4EF792147F3C56CFEC40, /*hidden argument*/NULL); StringBuilder_t * L_10 = V_0; MethodBase_t * L_11 = ___method0; String_t* L_12 = MethodInfoExtensions_GetParamsNames_m623D068CB5070EF00147039EA44FB51492FD1936(L_11, /*hidden argument*/NULL); NullCheck(L_10); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_10, L_12, /*hidden argument*/NULL); StringBuilder_t * L_13 = V_0; NullCheck(L_13); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_13, _stringLiteralE7064F0B80F61DBC65915311032D27BAA569AE2A, /*hidden argument*/NULL); StringBuilder_t * L_14 = V_0; NullCheck(L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14); return L_15; } } // System.String Sirenix.Serialization.Utilities.MethodInfoExtensions::GetParamsNames(System.Reflection.MethodBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodInfoExtensions_GetParamsNames_m623D068CB5070EF00147039EA44FB51492FD1936 (MethodBase_t * ___method0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodInfoExtensions_GetParamsNames_m623D068CB5070EF00147039EA44FB51492FD1936_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_0 = NULL; StringBuilder_t * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * V_4 = NULL; String_t* V_5 = NULL; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* G_B3_0 = NULL; { MethodBase_t * L_0 = ___method0; bool L_1 = MethodInfoExtensions_IsExtensionMethod_m8D9C0DF75101EE0412FFC8F43DBABF4016246F3D(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0010; } } { MethodBase_t * L_2 = ___method0; NullCheck(L_2); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_3 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_2); G_B3_0 = L_3; goto IL_0021; } IL_0010: { MethodBase_t * L_4 = ___method0; NullCheck(L_4); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_5 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_4); RuntimeObject* L_6 = Enumerable_Skip_TisParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_m37F2F55CF8BF64B161BED63A1EDB46CCF7D23E29((RuntimeObject*)(RuntimeObject*)L_5, 1, /*hidden argument*/Enumerable_Skip_TisParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_m37F2F55CF8BF64B161BED63A1EDB46CCF7D23E29_RuntimeMethod_var); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_7 = Enumerable_ToArray_TisParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_m6ADA4AA49CAFA0DACCB66DC6F4B0E50DBA181E04(L_6, /*hidden argument*/Enumerable_ToArray_TisParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_m6ADA4AA49CAFA0DACCB66DC6F4B0E50DBA181E04_RuntimeMethod_var); G_B3_0 = L_7; } IL_0021: { V_0 = G_B3_0; StringBuilder_t * L_8 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_8, /*hidden argument*/NULL); V_1 = L_8; V_2 = 0; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_9 = V_0; NullCheck(L_9); V_3 = (((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))); goto IL_007c; } IL_0030: { ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_10 = V_0; int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); V_4 = L_13; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_14 = V_4; NullCheck(L_14); Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_14); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_16 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_15, /*hidden argument*/NULL); V_5 = L_16; StringBuilder_t * L_17 = V_1; String_t* L_18 = V_5; NullCheck(L_17); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_17, L_18, /*hidden argument*/NULL); StringBuilder_t * L_19 = V_1; NullCheck(L_19); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_19, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL); StringBuilder_t * L_20 = V_1; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_21 = V_4; NullCheck(L_21); String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_21); NullCheck(L_20); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_20, L_22, /*hidden argument*/NULL); int32_t L_23 = V_2; int32_t L_24 = V_3; if ((((int32_t)L_23) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1))))) { goto IL_0078; } } { StringBuilder_t * L_25 = V_1; NullCheck(L_25); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_25, _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46, /*hidden argument*/NULL); } IL_0078: { int32_t L_26 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); } IL_007c: { int32_t L_27 = V_2; int32_t L_28 = V_3; if ((((int32_t)L_27) < ((int32_t)L_28))) { goto IL_0030; } } { StringBuilder_t * L_29 = V_1; NullCheck(L_29); String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_29); return L_30; } } // System.String Sirenix.Serialization.Utilities.MethodInfoExtensions::GetFullName(System.Reflection.MethodBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodInfoExtensions_GetFullName_mBDF15702D4884A03C7F052B88E8353688B76541C (MethodBase_t * ___method0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodInfoExtensions_GetFullName_mBDF15702D4884A03C7F052B88E8353688B76541C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MethodBase_t * L_0 = ___method0; String_t* L_1 = MethodInfoExtensions_GetFullName_mADD4F42C07FBA37C708976367FE70A9ABEC184AB(L_0, _stringLiteralC01BBDAEED34891D4444FE6A7112D16F1D546B81, /*hidden argument*/NULL); return L_1; } } // System.Boolean Sirenix.Serialization.Utilities.MethodInfoExtensions::IsExtensionMethod(System.Reflection.MethodBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfoExtensions_IsExtensionMethod_m8D9C0DF75101EE0412FFC8F43DBABF4016246F3D (MethodBase_t * ___method0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodInfoExtensions_IsExtensionMethod_m8D9C0DF75101EE0412FFC8F43DBABF4016246F3D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { MethodBase_t * L_0 = ___method0; NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_0); V_0 = L_1; Type_t * L_2 = V_0; NullCheck(L_2); bool L_3 = Type_get_IsSealed_mC42D173AFAF7802291DEA2C3D691340F2375FD9A(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0031; } } { Type_t * L_4 = V_0; NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_4); if (L_5) { goto IL_0031; } } { Type_t * L_6 = V_0; NullCheck(L_6); bool L_7 = Type_get_IsNested_m0191026EDE15331C2DD97FC106E1C86825722F37(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0031; } } { MethodBase_t * L_8 = ___method0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (ExtensionAttribute_t34A17741DB6F2A390F30532BD50B269ECDB8F124_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL); NullCheck(L_8); bool L_11 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_8, L_10, (bool)0); return L_11; } IL_0031: { return (bool)0; } } // System.Boolean Sirenix.Serialization.Utilities.MethodInfoExtensions::IsAliasMethod(System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfoExtensions_IsAliasMethod_m4D49EE88BBD140889E54EE9E3DC2649C464D2CBF (MethodInfo_t * ___methodInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodInfoExtensions_IsAliasMethod_m4D49EE88BBD140889E54EE9E3DC2649C464D2CBF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MethodInfo_t * L_0 = ___methodInfo0; return (bool)((!(((RuntimeObject*)(MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 *)((MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 *)IsInstSealed((RuntimeObject*)L_0, MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.MethodInfoExtensions::DeAliasMethod(System.Reflection.MethodInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MethodInfoExtensions_DeAliasMethod_mAB8B413F3E4A66BD87EBDFBE84FD30F2B6AC2E1A (MethodInfo_t * ___methodInfo0, bool ___throwOnNotAliased1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodInfoExtensions_DeAliasMethod_mAB8B413F3E4A66BD87EBDFBE84FD30F2B6AC2E1A_MetadataUsageId); s_Il2CppMethodInitialized = true; } MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * V_0 = NULL; { MethodInfo_t * L_0 = ___methodInfo0; V_0 = ((MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 *)IsInstSealed((RuntimeObject*)L_0, MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466_il2cpp_TypeInfo_var)); MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * L_1 = V_0; if (!L_1) { goto IL_002c; } } { goto IL_0018; } IL_000c: { MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * L_2 = V_0; NullCheck(L_2); MethodInfo_t * L_3 = MemberAliasMethodInfo_get_AliasedMethod_m84550753FCF647D3037205113DB54F425C6B40C2_inline(L_2, /*hidden argument*/NULL); V_0 = ((MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 *)IsInstSealed((RuntimeObject*)L_3, MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466_il2cpp_TypeInfo_var)); } IL_0018: { MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * L_4 = V_0; NullCheck(L_4); MethodInfo_t * L_5 = MemberAliasMethodInfo_get_AliasedMethod_m84550753FCF647D3037205113DB54F425C6B40C2_inline(L_4, /*hidden argument*/NULL); if (((MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 *)IsInstSealed((RuntimeObject*)L_5, MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466_il2cpp_TypeInfo_var))) { goto IL_000c; } } { MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * L_6 = V_0; NullCheck(L_6); MethodInfo_t * L_7 = MemberAliasMethodInfo_get_AliasedMethod_m84550753FCF647D3037205113DB54F425C6B40C2_inline(L_6, /*hidden argument*/NULL); return L_7; } IL_002c: { bool L_8 = ___throwOnNotAliased1; if (!L_8) { goto IL_004a; } } { MethodInfo_t * L_9 = ___methodInfo0; String_t* L_10 = MemberInfoExtensions_GetNiceName_m804078AF053FDAAA249AEA0F420E63F1C1750881(L_9, /*hidden argument*/NULL); String_t* L_11 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralA21DCA76C64DA1C9A9E332AA96CAEDBBD553F7A8, L_10, _stringLiteralCF6C4EE7957B6F4BE116A890E08871F57C051080, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, MethodInfoExtensions_DeAliasMethod_mAB8B413F3E4A66BD87EBDFBE84FD30F2B6AC2E1A_RuntimeMethod_var); } IL_004a: { MethodInfo_t * L_13 = ___methodInfo0; return L_13; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.Utilities.PathUtilities::HasSubDirectory(System.IO.DirectoryInfo,System.IO.DirectoryInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PathUtilities_HasSubDirectory_m919B449361770AF4AB5E2D32AD8028AE287454B6 (DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * ___parentDir0, DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * ___subDir1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PathUtilities_HasSubDirectory_m919B449361770AF4AB5E2D32AD8028AE287454B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * L_0 = ___parentDir0; NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.IO.FileSystemInfo::get_FullName() */, L_0); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)2); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = L_2; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)92)); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = L_3; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)47)); NullCheck(L_1); String_t* L_5 = String_TrimEnd_m8D4905B71A4AEBF9D0BC36C6003FC9A5AD630403(L_1, L_4, /*hidden argument*/NULL); V_0 = L_5; goto IL_004b; } IL_001e: { DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * L_6 = ___subDir1; NullCheck(L_6); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.IO.FileSystemInfo::get_FullName() */, L_6); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)2); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = L_8; NullCheck(L_9); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)92)); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = L_9; NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)47)); NullCheck(L_7); String_t* L_11 = String_TrimEnd_m8D4905B71A4AEBF9D0BC36C6003FC9A5AD630403(L_7, L_10, /*hidden argument*/NULL); String_t* L_12 = V_0; bool L_13 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0043; } } { return (bool)1; } IL_0043: { DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * L_14 = ___subDir1; NullCheck(L_14); DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * L_15 = DirectoryInfo_get_Parent_m3D5334F86808B91BC66CEB88A72AF3A2A849116B(L_14, /*hidden argument*/NULL); ___subDir1 = L_15; } IL_004b: { DirectoryInfo_t432CD06DF148701E930708371CB985BC0E8EF87F * L_16 = ___subDir1; if (L_16) { goto IL_001e; } } { return (bool)0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Sirenix.Serialization.Utilities.PropertyInfoExtensions::IsAutoProperty(System.Reflection.PropertyInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyInfoExtensions_IsAutoProperty_m68AE118AC15FBBED6C356EA3D9BF1FA25FD2E0F8 (PropertyInfo_t * ___propInfo0, bool ___allowVirtual1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyInfoExtensions_IsAutoProperty_m68AE118AC15FBBED6C356EA3D9BF1FA25FD2E0F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_2 = NULL; MethodInfo_t * V_3 = NULL; MethodInfo_t * V_4 = NULL; int32_t V_5 = 0; { PropertyInfo_t * L_0 = ___propInfo0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_0); if (!L_1) { goto IL_0010; } } { PropertyInfo_t * L_2 = ___propInfo0; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_2); if (L_3) { goto IL_0012; } } IL_0010: { return (bool)0; } IL_0012: { bool L_4 = ___allowVirtual1; if (L_4) { goto IL_0051; } } { PropertyInfo_t * L_5 = ___propInfo0; NullCheck(L_5); MethodInfo_t * L_6 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(22 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_5, (bool)1); V_3 = L_6; PropertyInfo_t * L_7 = ___propInfo0; NullCheck(L_7); MethodInfo_t * L_8 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(25 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_7, (bool)1); V_4 = L_8; MethodInfo_t * L_9 = V_3; if (!L_9) { goto IL_0039; } } { MethodInfo_t * L_10 = V_3; NullCheck(L_10); bool L_11 = MethodBase_get_IsAbstract_mFE6CAF80BCF511BE090A541FD179CF5C418176A0(L_10, /*hidden argument*/NULL); if (L_11) { goto IL_004f; } } { MethodInfo_t * L_12 = V_3; NullCheck(L_12); bool L_13 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_12, /*hidden argument*/NULL); if (L_13) { goto IL_004f; } } IL_0039: { MethodInfo_t * L_14 = V_4; if (!L_14) { goto IL_0051; } } { MethodInfo_t * L_15 = V_4; NullCheck(L_15); bool L_16 = MethodBase_get_IsAbstract_mFE6CAF80BCF511BE090A541FD179CF5C418176A0(L_15, /*hidden argument*/NULL); if (L_16) { goto IL_004f; } } { MethodInfo_t * L_17 = V_4; NullCheck(L_17); bool L_18 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_0051; } } IL_004f: { return (bool)0; } IL_0051: { V_0 = ((int32_t)44); PropertyInfo_t * L_19 = ___propInfo0; NullCheck(L_19); String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_19); String_t* L_21 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralC4DD3C8CDD8D7C95603DD67F1CD873D5F9148B29, L_20, _stringLiteral091385BE99B45F459A231582D583EC9F3FA3D194, /*hidden argument*/NULL); V_1 = L_21; PropertyInfo_t * L_22 = ___propInfo0; NullCheck(L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_22); int32_t L_24 = V_0; NullCheck(L_23); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_25 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(44 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_23, L_24); V_2 = L_25; V_5 = 0; goto IL_0095; } IL_007c: { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_26 = V_2; int32_t L_27 = V_5; NullCheck(L_26); int32_t L_28 = L_27; FieldInfo_t * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); NullCheck(L_29); String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_29); String_t* L_31 = V_1; NullCheck(L_30); bool L_32 = String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B(L_30, L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_008f; } } { return (bool)1; } IL_008f: { int32_t L_33 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); } IL_0095: { int32_t L_34 = V_5; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_35 = V_2; NullCheck(L_35); if ((((int32_t)L_34) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length))))))) { goto IL_007c; } } { return (bool)0; } } // System.Boolean Sirenix.Serialization.Utilities.PropertyInfoExtensions::IsAliasProperty(System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyInfoExtensions_IsAliasProperty_mFE3CB9973C1AFBBC4F70989F222CEF1884B870E8 (PropertyInfo_t * ___propertyInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyInfoExtensions_IsAliasProperty_mFE3CB9973C1AFBBC4F70989F222CEF1884B870E8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PropertyInfo_t * L_0 = ___propertyInfo0; return (bool)((!(((RuntimeObject*)(MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F *)((MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F *)IsInstSealed((RuntimeObject*)L_0, MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Reflection.PropertyInfo Sirenix.Serialization.Utilities.PropertyInfoExtensions::DeAliasProperty(System.Reflection.PropertyInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * PropertyInfoExtensions_DeAliasProperty_m636A975B0A3C1695FC88CFABE03267605B28FCB0 (PropertyInfo_t * ___propertyInfo0, bool ___throwOnNotAliased1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyInfoExtensions_DeAliasProperty_m636A975B0A3C1695FC88CFABE03267605B28FCB0_MetadataUsageId); s_Il2CppMethodInitialized = true; } MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * V_0 = NULL; { PropertyInfo_t * L_0 = ___propertyInfo0; V_0 = ((MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F *)IsInstSealed((RuntimeObject*)L_0, MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F_il2cpp_TypeInfo_var)); MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * L_1 = V_0; if (!L_1) { goto IL_002c; } } { goto IL_0018; } IL_000c: { MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * L_2 = V_0; NullCheck(L_2); PropertyInfo_t * L_3 = MemberAliasPropertyInfo_get_AliasedProperty_mF48B87F081230C7239CE228570EA7750BE6C969C_inline(L_2, /*hidden argument*/NULL); V_0 = ((MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F *)IsInstSealed((RuntimeObject*)L_3, MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F_il2cpp_TypeInfo_var)); } IL_0018: { MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * L_4 = V_0; NullCheck(L_4); PropertyInfo_t * L_5 = MemberAliasPropertyInfo_get_AliasedProperty_mF48B87F081230C7239CE228570EA7750BE6C969C_inline(L_4, /*hidden argument*/NULL); if (((MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F *)IsInstSealed((RuntimeObject*)L_5, MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F_il2cpp_TypeInfo_var))) { goto IL_000c; } } { MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * L_6 = V_0; NullCheck(L_6); PropertyInfo_t * L_7 = MemberAliasPropertyInfo_get_AliasedProperty_mF48B87F081230C7239CE228570EA7750BE6C969C_inline(L_6, /*hidden argument*/NULL); return L_7; } IL_002c: { bool L_8 = ___throwOnNotAliased1; if (!L_8) { goto IL_004a; } } { PropertyInfo_t * L_9 = ___propertyInfo0; String_t* L_10 = MemberInfoExtensions_GetNiceName_m804078AF053FDAAA249AEA0F420E63F1C1750881(L_9, /*hidden argument*/NULL); String_t* L_11 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralBE8DC55A45663FE086C5F00C8FA3D0DB9C116BA1, L_10, _stringLiteralCF6C4EE7957B6F4BE116A890E08871F57C051080, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, PropertyInfoExtensions_DeAliasProperty_m636A975B0A3C1695FC88CFABE03267605B28FCB0_RuntimeMethod_var); } IL_004a: { PropertyInfo_t * L_13 = ___propertyInfo0; return L_13; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String Sirenix.Serialization.Utilities.StringExtensions::ToTitleCase(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringExtensions_ToTitleCase_m9E13DB001165FA20961B2B6CC9CDD7A31E3EEBDE (String_t* ___input0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringExtensions_ToTitleCase_m9E13DB001165FA20961B2B6CC9CDD7A31E3EEBDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; Il2CppChar V_3 = 0x0; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL); V_0 = L_0; V_1 = 0; goto IL_005a; } IL_000a: { String_t* L_1 = ___input0; int32_t L_2 = V_1; NullCheck(L_1); Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL); V_2 = L_3; Il2CppChar L_4 = V_2; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)95))))) { goto IL_004e; } } { int32_t L_5 = V_1; String_t* L_6 = ___input0; NullCheck(L_6); int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))) >= ((int32_t)L_7))) { goto IL_004e; } } { String_t* L_8 = ___input0; int32_t L_9 = V_1; NullCheck(L_8); Il2CppChar L_10 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_8, ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)), /*hidden argument*/NULL); V_3 = L_10; Il2CppChar L_11 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_12 = Char_IsLower_mE89996F09044C07A991164C7E6A4A9C02867CC90(L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0040; } } { Il2CppChar L_13 = V_3; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_14 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); Il2CppChar L_15 = Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02(L_13, L_14, /*hidden argument*/NULL); V_3 = L_15; } IL_0040: { StringBuilder_t * L_16 = V_0; Il2CppChar L_17 = V_3; NullCheck(L_16); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_16, L_17, /*hidden argument*/NULL); int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); goto IL_0056; } IL_004e: { StringBuilder_t * L_19 = V_0; Il2CppChar L_20 = V_2; NullCheck(L_19); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_19, L_20, /*hidden argument*/NULL); } IL_0056: { int32_t L_21 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_005a: { int32_t L_22 = V_1; String_t* L_23 = ___input0; NullCheck(L_23); int32_t L_24 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_23, /*hidden argument*/NULL); if ((((int32_t)L_22) < ((int32_t)L_24))) { goto IL_000a; } } { StringBuilder_t * L_25 = V_0; NullCheck(L_25); String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_25); return L_26; } } // System.Boolean Sirenix.Serialization.Utilities.StringExtensions::IsNullOrWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringExtensions_IsNullOrWhitespace_m415B4EB43726242C0F6EF39E571718BD2D7AC115 (String_t* ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringExtensions_IsNullOrWhitespace_m415B4EB43726242C0F6EF39E571718BD2D7AC115_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t* L_0 = ___str0; bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0029; } } { V_0 = 0; goto IL_0020; } IL_000c: { String_t* L_2 = ___str0; int32_t L_3 = V_0; NullCheck(L_2); Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_5 = Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_001c; } } { return (bool)0; } IL_001c: { int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0020: { int32_t L_7 = V_0; String_t* L_8 = ___str0; NullCheck(L_8); int32_t L_9 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_8, /*hidden argument*/NULL); if ((((int32_t)L_7) < ((int32_t)L_9))) { goto IL_000c; } } IL_0029: { return (bool)1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetCachedNiceName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetCachedNiceName_mFA299962CF542EC652E8ED4921C81D5F45255A3A (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetCachedNiceName_mFA299962CF542EC652E8ED4921C81D5F45255A3A_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_CachedNiceNames_LOCK_17(); V_1 = L_0; RuntimeObject * L_1 = V_1; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * L_2 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_CachedNiceNames_18(); Type_t * L_3 = ___type0; NullCheck(L_2); bool L_4 = Dictionary_2_TryGetValue_m06979EEE8C572D71377242FAB11C8360789C7989(L_2, L_3, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m06979EEE8C572D71377242FAB11C8360789C7989_RuntimeMethod_var); if (L_4) { goto IL_002e; } } IL_001b: { Type_t * L_5 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_6 = TypeExtensions_CreateNiceName_m356329964E6B10E04DA264E4D1BE166837FFD349(L_5, /*hidden argument*/NULL); V_0 = L_6; Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * L_7 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_CachedNiceNames_18(); Type_t * L_8 = ___type0; String_t* L_9 = V_0; NullCheck(L_7); Dictionary_2_Add_m19CAF33F97051C271ACC0C28B0E5027503A679DE(L_7, L_8, L_9, /*hidden argument*/Dictionary_2_Add_m19CAF33F97051C271ACC0C28B0E5027503A679DE_RuntimeMethod_var); } IL_002e: { IL2CPP_LEAVE(0x37, FINALLY_0030); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0030; } FINALLY_0030: { // begin finally (depth: 1) RuntimeObject * L_10 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_10, /*hidden argument*/NULL); IL2CPP_END_FINALLY(48) } // end finally (depth: 1) IL2CPP_CLEANUP(48) { IL2CPP_JUMP_TBL(0x37, IL_0037) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0037: { String_t* L_11 = V_0; return L_11; } } // System.String Sirenix.Serialization.Utilities.TypeExtensions::CreateNiceName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_CreateNiceName_m356329964E6B10E04DA264E4D1BE166837FFD349 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_CreateNiceName_m356329964E6B10E04DA264E4D1BE166837FFD349_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; Type_t * V_6 = NULL; String_t* G_B3_0 = NULL; String_t* G_B2_0 = NULL; String_t* G_B4_0 = NULL; String_t* G_B4_1 = NULL; { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0032; } } { Type_t * L_2 = ___type0; NullCheck(L_2); int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(28 /* System.Int32 System.Type::GetArrayRank() */, L_2); V_4 = L_3; Type_t * L_4 = ___type0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(104 /* System.Type System.Type::GetElementType() */, L_4); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_6 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_5, /*hidden argument*/NULL); int32_t L_7 = V_4; G_B2_0 = L_6; if ((((int32_t)L_7) == ((int32_t)1))) { G_B3_0 = L_6; goto IL_0027; } } { G_B4_0 = _stringLiteralA35870ABFE36C5087C497BEA881BB345206835DF; G_B4_1 = G_B2_0; goto IL_002c; } IL_0027: { G_B4_0 = _stringLiteral97D170E1550EEE4AFC0AF065B78CDA302A97674C; G_B4_1 = G_B3_0; } IL_002c: { String_t* L_8 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(G_B4_1, G_B4_0, /*hidden argument*/NULL); return L_8; } IL_0032: { Type_t * L_9 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_12 = TypeExtensions_InheritsFrom_mE3C31521AF59D77C48BA59744008CFFB79FEF580(L_9, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_005c; } } { Type_t * L_13 = ___type0; NullCheck(L_13); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_13); NullCheck(L_14); int32_t L_15 = 0; Type_t * L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_17 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_16, /*hidden argument*/NULL); String_t* L_18 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_17, _stringLiteral5BAB61EB53176449E25C2C82F172B82CB13FFB9D, /*hidden argument*/NULL); return L_18; } IL_005c: { Type_t * L_19 = ___type0; NullCheck(L_19); bool L_20 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_007a; } } { Type_t * L_21 = ___type0; NullCheck(L_21); Type_t * L_22 = VirtFuncInvoker0< Type_t * >::Invoke(104 /* System.Type System.Type::GetElementType() */, L_21); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_23 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_22, /*hidden argument*/NULL); String_t* L_24 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralE0C7141204ADB4B0C13FEF5B9BD5EB53871DA3BB, L_23, /*hidden argument*/NULL); return L_24; } IL_007a: { Type_t * L_25 = ___type0; NullCheck(L_25); bool L_26 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_25); if (L_26) { goto IL_008a; } } { Type_t * L_27 = ___type0; NullCheck(L_27); bool L_28 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_27); if (L_28) { goto IL_0091; } } IL_008a: { Type_t * L_29 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_30 = TypeExtensions_TypeNameGauntlet_mF8BC41CCA4DC4132BFC88689AEFFF6B659089A56(L_29, /*hidden argument*/NULL); return L_30; } IL_0091: { StringBuilder_t * L_31 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_31, /*hidden argument*/NULL); V_0 = L_31; Type_t * L_32 = ___type0; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_32); V_1 = L_33; String_t* L_34 = V_1; NullCheck(L_34); int32_t L_35 = String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B(L_34, _stringLiteral7E15BB5C01E7DD56499E37C634CF791D3A519AEE, /*hidden argument*/NULL); V_2 = L_35; int32_t L_36 = V_2; if ((((int32_t)L_36) == ((int32_t)(-1)))) { goto IL_00bf; } } { StringBuilder_t * L_37 = V_0; String_t* L_38 = V_1; int32_t L_39 = V_2; NullCheck(L_38); String_t* L_40 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_38, 0, L_39, /*hidden argument*/NULL); NullCheck(L_37); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_37, L_40, /*hidden argument*/NULL); goto IL_00c7; } IL_00bf: { StringBuilder_t * L_41 = V_0; String_t* L_42 = V_1; NullCheck(L_41); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_41, L_42, /*hidden argument*/NULL); } IL_00c7: { StringBuilder_t * L_43 = V_0; NullCheck(L_43); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_43, ((int32_t)60), /*hidden argument*/NULL); Type_t * L_44 = ___type0; NullCheck(L_44); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_45 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_44); V_3 = L_45; V_5 = 0; goto IL_0106; } IL_00dc: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_46 = V_3; int32_t L_47 = V_5; NullCheck(L_46); int32_t L_48 = L_47; Type_t * L_49 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_48)); V_6 = L_49; int32_t L_50 = V_5; if (!L_50) { goto IL_00f2; } } { StringBuilder_t * L_51 = V_0; NullCheck(L_51); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_51, _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46, /*hidden argument*/NULL); } IL_00f2: { StringBuilder_t * L_52 = V_0; Type_t * L_53 = V_6; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_54 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_53, /*hidden argument*/NULL); NullCheck(L_52); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_52, L_54, /*hidden argument*/NULL); int32_t L_55 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)); } IL_0106: { int32_t L_56 = V_5; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_57 = V_3; NullCheck(L_57); if ((((int32_t)L_56) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_57)->max_length))))))) { goto IL_00dc; } } { StringBuilder_t * L_58 = V_0; NullCheck(L_58); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_58, ((int32_t)62), /*hidden argument*/NULL); StringBuilder_t * L_59 = V_0; NullCheck(L_59); String_t* L_60 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_59); return L_60; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::HasCastDefined(System.Type,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_HasCastDefined_m013BDC7A056F085E63569EC70BC178D6750FD47A (Type_t * ___from0, Type_t * ___to1, bool ___requireImplicitCast2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_HasCastDefined_m013BDC7A056F085E63569EC70BC178D6750FD47A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___from0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsEnum() */, L_0); if (!L_1) { goto IL_0016; } } { Type_t * L_2 = ___from0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_3 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_2, /*hidden argument*/NULL); Type_t * L_4 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_5 = TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84(L_3, L_4, (bool)0, /*hidden argument*/NULL); return L_5; } IL_0016: { Type_t * L_6 = ___to1; NullCheck(L_6); bool L_7 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsEnum() */, L_6); if (!L_7) { goto IL_002c; } } { Type_t * L_8 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_9 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_8, /*hidden argument*/NULL); Type_t * L_10 = ___from0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_11 = TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84(L_9, L_10, (bool)0, /*hidden argument*/NULL); return L_11; } IL_002c: { Type_t * L_12 = ___from0; NullCheck(L_12); bool L_13 = Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A(L_12, /*hidden argument*/NULL); if (L_13) { goto IL_003f; } } { Type_t * L_14 = ___from0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Type_t * L_15 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_VoidPointerType_19(); if ((!(((RuntimeObject*)(Type_t *)L_14) == ((RuntimeObject*)(Type_t *)L_15)))) { goto IL_00cb; } } IL_003f: { Type_t * L_16 = ___to1; NullCheck(L_16); bool L_17 = Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_004f; } } { Type_t * L_18 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Type_t * L_19 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_VoidPointerType_19(); if ((!(((RuntimeObject*)(Type_t *)L_18) == ((RuntimeObject*)(Type_t *)L_19)))) { goto IL_00cb; } } IL_004f: { bool L_20 = ___requireImplicitCast2; if (!L_20) { goto IL_0064; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_21 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_PrimitiveImplicitCasts_20(); Type_t * L_22 = ___from0; NullCheck(L_21); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_23 = Dictionary_2_get_Item_mD99BF3FEC9CDF301ED7A378286C3625B00AB733A(L_21, L_22, /*hidden argument*/Dictionary_2_get_Item_mD99BF3FEC9CDF301ED7A378286C3625B00AB733A_RuntimeMethod_var); Type_t * L_24 = ___to1; NullCheck(L_23); bool L_25 = HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED(L_23, L_24, /*hidden argument*/HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED_RuntimeMethod_var); return L_25; } IL_0064: { Type_t * L_26 = ___from0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_26) == ((RuntimeObject*)(Type_t *)L_28)))) { goto IL_008a; } } { Type_t * L_29 = ___to1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_29) == ((RuntimeObject*)(Type_t *)L_31)))) { goto IL_0080; } } { return (bool)0; } IL_0080: { Type_t * L_32 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Type_t * L_33 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_VoidPointerType_19(); if ((!(((RuntimeObject*)(Type_t *)L_32) == ((RuntimeObject*)(Type_t *)L_33)))) { goto IL_00b0; } } { return (bool)1; } IL_008a: { Type_t * L_34 = ___from0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_34) == ((RuntimeObject*)(Type_t *)L_36)))) { goto IL_00b0; } } { Type_t * L_37 = ___to1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_38 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_38, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_37) == ((RuntimeObject*)(Type_t *)L_39)))) { goto IL_00a6; } } { return (bool)0; } IL_00a6: { Type_t * L_40 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Type_t * L_41 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_VoidPointerType_19(); if ((!(((RuntimeObject*)(Type_t *)L_40) == ((RuntimeObject*)(Type_t *)L_41)))) { goto IL_00b0; } } { return (bool)1; } IL_00b0: { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_42 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_ExplicitCastIntegrals_21(); Type_t * L_43 = ___from0; NullCheck(L_42); bool L_44 = HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED(L_42, L_43, /*hidden argument*/HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED_RuntimeMethod_var); if (!L_44) { goto IL_00c9; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_45 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_ExplicitCastIntegrals_21(); Type_t * L_46 = ___to1; NullCheck(L_45); bool L_47 = HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED(L_45, L_46, /*hidden argument*/HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED_RuntimeMethod_var); return L_47; } IL_00c9: { return (bool)0; } IL_00cb: { Type_t * L_48 = ___from0; Type_t * L_49 = ___to1; bool L_50 = ___requireImplicitCast2; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); MethodInfo_t * L_51 = TypeExtensions_GetCastMethod_m25E3FF694690FF9640FC32CD78913E3B95963919(L_48, L_49, L_50, /*hidden argument*/NULL); return (bool)((!(((RuntimeObject*)(MethodInfo_t *)L_51) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsValidIdentifier(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValidIdentifier_mB499AD0C8A6CD81276D0594802E6613816CF9D04 (String_t* ___identifier0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_IsValidIdentifier_mB499AD0C8A6CD81276D0594802E6613816CF9D04_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { String_t* L_0 = ___identifier0; if (!L_0) { goto IL_000b; } } { String_t* L_1 = ___identifier0; NullCheck(L_1); int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { String_t* L_3 = ___identifier0; NullCheck(L_3); int32_t L_4 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_3, ((int32_t)46), /*hidden argument*/NULL); V_0 = L_4; int32_t L_5 = V_0; if ((((int32_t)L_5) < ((int32_t)0))) { goto IL_0048; } } { String_t* L_6 = ___identifier0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = L_7; NullCheck(L_8); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)46)); NullCheck(L_6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = String_Split_m13262358217AD2C119FD1B9733C3C0289D608512(L_6, L_8, /*hidden argument*/NULL); V_1 = L_9; V_2 = 0; goto IL_0040; } IL_0030: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = V_1; int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; String_t* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_14 = TypeExtensions_IsValidIdentifier_mB499AD0C8A6CD81276D0594802E6613816CF9D04(L_13, /*hidden argument*/NULL); if (L_14) { goto IL_003c; } } { return (bool)0; } IL_003c: { int32_t L_15 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0040: { int32_t L_16 = V_2; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = V_1; NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0030; } } { return (bool)1; } IL_0048: { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_18 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_ReservedCSharpKeywords_15(); String_t* L_19 = ___identifier0; NullCheck(L_18); bool L_20 = HashSet_1_Contains_mC24456F12A19B3D01055678278492722A6988F98(L_18, L_19, /*hidden argument*/HashSet_1_Contains_mC24456F12A19B3D01055678278492722A6988F98_RuntimeMethod_var); if (!L_20) { goto IL_0057; } } { return (bool)0; } IL_0057: { String_t* L_21 = ___identifier0; NullCheck(L_21); Il2CppChar L_22 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_21, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_23 = TypeExtensions_IsValidIdentifierStartCharacter_m6FD72B83F11534BF2368924869DEAD07CA897BCA(L_22, /*hidden argument*/NULL); if (L_23) { goto IL_0067; } } { return (bool)0; } IL_0067: { V_3 = 1; goto IL_007f; } IL_006b: { String_t* L_24 = ___identifier0; int32_t L_25 = V_3; NullCheck(L_24); Il2CppChar L_26 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_24, L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_27 = TypeExtensions_IsValidIdentifierPartCharacter_m31E0CF6588042F127F9BE6DABF33E2118DAC4DEE(L_26, /*hidden argument*/NULL); if (L_27) { goto IL_007b; } } { return (bool)0; } IL_007b: { int32_t L_28 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_007f: { int32_t L_29 = V_3; String_t* L_30 = ___identifier0; NullCheck(L_30); int32_t L_31 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_30, /*hidden argument*/NULL); if ((((int32_t)L_29) < ((int32_t)L_31))) { goto IL_006b; } } { return (bool)1; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsValidIdentifierStartCharacter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValidIdentifierStartCharacter_m6FD72B83F11534BF2368924869DEAD07CA897BCA (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_IsValidIdentifierStartCharacter_m6FD72B83F11534BF2368924869DEAD07CA897BCA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) < ((int32_t)((int32_t)97)))) { goto IL_000a; } } { Il2CppChar L_1 = ___c0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)122)))) { goto IL_0025; } } IL_000a: { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) < ((int32_t)((int32_t)65)))) { goto IL_0014; } } { Il2CppChar L_3 = ___c0; if ((((int32_t)L_3) <= ((int32_t)((int32_t)90)))) { goto IL_0025; } } IL_0014: { Il2CppChar L_4 = ___c0; if ((((int32_t)L_4) == ((int32_t)((int32_t)95)))) { goto IL_0025; } } { Il2CppChar L_5 = ___c0; if ((((int32_t)L_5) == ((int32_t)((int32_t)64)))) { goto IL_0025; } } { Il2CppChar L_6 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_7 = Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE(L_6, /*hidden argument*/NULL); return L_7; } IL_0025: { return (bool)1; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsValidIdentifierPartCharacter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValidIdentifierPartCharacter_m31E0CF6588042F127F9BE6DABF33E2118DAC4DEE (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_IsValidIdentifierPartCharacter_m31E0CF6588042F127F9BE6DABF33E2118DAC4DEE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) < ((int32_t)((int32_t)97)))) { goto IL_000a; } } { Il2CppChar L_1 = ___c0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)122)))) { goto IL_002a; } } IL_000a: { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) < ((int32_t)((int32_t)65)))) { goto IL_0014; } } { Il2CppChar L_3 = ___c0; if ((((int32_t)L_3) <= ((int32_t)((int32_t)90)))) { goto IL_002a; } } IL_0014: { Il2CppChar L_4 = ___c0; if ((((int32_t)L_4) == ((int32_t)((int32_t)95)))) { goto IL_002a; } } { Il2CppChar L_5 = ___c0; if ((((int32_t)L_5) < ((int32_t)((int32_t)48)))) { goto IL_0023; } } { Il2CppChar L_6 = ___c0; if ((((int32_t)L_6) <= ((int32_t)((int32_t)57)))) { goto IL_002a; } } IL_0023: { Il2CppChar L_7 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_8 = Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE(L_7, /*hidden argument*/NULL); return L_8; } IL_002a: { return (bool)1; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsCastableTo(System.Type,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84 (Type_t * ___from0, Type_t * ___to1, bool ___requireImplicitCast2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___from0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral0B1E95CFD9775191A7224D0A218AE79187E80C1D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = ___to1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral4374AAEE247FB237CE6C97D5C8D64BBE474D16DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeExtensions_IsCastableTo_m92C3F48F4469EA82B3895256CF6B2ACBF665EC84_RuntimeMethod_var); } IL_001c: { Type_t * L_4 = ___from0; Type_t * L_5 = ___to1; if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5)))) { goto IL_0022; } } { return (bool)1; } IL_0022: { Type_t * L_6 = ___to1; Type_t * L_7 = ___from0; NullCheck(L_6); bool L_8 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_6, L_7); if (L_8) { goto IL_0034; } } { Type_t * L_9 = ___from0; Type_t * L_10 = ___to1; bool L_11 = ___requireImplicitCast2; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_12 = TypeExtensions_HasCastDefined_m013BDC7A056F085E63569EC70BC178D6750FD47A(L_9, L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_0034: { return (bool)1; } } // System.Func`2<System.Object,System.Object> Sirenix.Serialization.Utilities.TypeExtensions::GetCastMethodDelegate(System.Type,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * TypeExtensions_GetCastMethodDelegate_m2963BEECD3C14E8FC042F31798F1E1E4535FD6F3 (Type_t * ___from0, Type_t * ___to1, bool ___requireImplicitCast2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetCastMethodDelegate_m2963BEECD3C14E8FC042F31798F1E1E4535FD6F3_MetadataUsageId); s_Il2CppMethodInitialized = true; } Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * V_0 = NULL; RuntimeObject * V_1 = NULL; U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5 * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_WeaklyTypedTypeCastDelegates_LOCK_9(); V_1 = L_0; RuntimeObject * L_1 = V_1; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * L_2 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_WeaklyTypedTypeCastDelegates_11(); Type_t * L_3 = ___from0; Type_t * L_4 = ___to1; NullCheck(L_2); bool L_5 = DoubleLookupDictionary_3_TryGetInnerValue_m08711D3EC3B7A1DCB2489801CAF2DBEB4EF233AA(L_2, L_3, L_4, (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 **)(&V_0), /*hidden argument*/DoubleLookupDictionary_3_TryGetInnerValue_m08711D3EC3B7A1DCB2489801CAF2DBEB4EF233AA_RuntimeMethod_var); if (L_5) { goto IL_0053; } } IL_001c: { U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5 * L_6 = (U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass29_0__ctor_mB2D6D0C35B4E9F3BA89397144F8AC857139575DD(L_6, /*hidden argument*/NULL); V_2 = L_6; U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5 * L_7 = V_2; Type_t * L_8 = ___from0; Type_t * L_9 = ___to1; bool L_10 = ___requireImplicitCast2; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); MethodInfo_t * L_11 = TypeExtensions_GetCastMethod_m25E3FF694690FF9640FC32CD78913E3B95963919(L_8, L_9, L_10, /*hidden argument*/NULL); NullCheck(L_7); L_7->set_method_0(L_11); U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5 * L_12 = V_2; NullCheck(L_12); MethodInfo_t * L_13 = L_12->get_method_0(); if (!L_13) { goto IL_0045; } } IL_0038: { U3CU3Ec__DisplayClass29_0_t0872C035ACB6502960E87253E96B411F93946EB5 * L_14 = V_2; Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_15 = (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)il2cpp_codegen_object_new(Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4_il2cpp_TypeInfo_var); Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8(L_15, L_14, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass29_0_U3CGetCastMethodDelegateU3Eb__0_m00A07E9181A315C279DF5463BA696E3D5D5D5796_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_RuntimeMethod_var); V_0 = L_15; } IL_0045: { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * L_16 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_WeaklyTypedTypeCastDelegates_11(); Type_t * L_17 = ___from0; Type_t * L_18 = ___to1; Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_19 = V_0; NullCheck(L_16); DoubleLookupDictionary_3_AddInner_m2DC55A5DB103DC35ECC4F9226E229082C886BE62(L_16, L_17, L_18, L_19, /*hidden argument*/DoubleLookupDictionary_3_AddInner_m2DC55A5DB103DC35ECC4F9226E229082C886BE62_RuntimeMethod_var); } IL_0053: { IL2CPP_LEAVE(0x5C, FINALLY_0055); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0055; } FINALLY_0055: { // begin finally (depth: 1) RuntimeObject * L_20 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_20, /*hidden argument*/NULL); IL2CPP_END_FINALLY(85) } // end finally (depth: 1) IL2CPP_CLEANUP(85) { IL2CPP_JUMP_TBL(0x5C, IL_005c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_005c: { Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_21 = V_0; return L_21; } } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.TypeExtensions::GetCastMethod(System.Type,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * TypeExtensions_GetCastMethod_m25E3FF694690FF9640FC32CD78913E3B95963919 (Type_t * ___from0, Type_t * ___to1, bool ___requireImplicitCast2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetCastMethod_m25E3FF694690FF9640FC32CD78913E3B95963919_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject* V_2 = NULL; MethodInfo_t * V_3 = NULL; MethodInfo_t * V_4 = NULL; RuntimeObject* V_5 = NULL; MethodInfo_t * V_6 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Type_t * L_0 = ___from0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject* L_1 = TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3(L_0, ((int32_t)24), /*hidden argument*/TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3_RuntimeMethod_var); V_0 = L_1; RuntimeObject* L_2 = V_0; NullCheck(L_2); RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>::GetEnumerator() */, IEnumerable_1_tB6ECBCACB08DC25AD256ED59CCE6DDFA9B5DD0FC_il2cpp_TypeInfo_var, L_2); V_2 = L_3; } IL_0010: try { // begin try (depth: 1) { goto IL_0056; } IL_0012: { RuntimeObject* L_4 = V_2; NullCheck(L_4); MethodInfo_t * L_5 = InterfaceFuncInvoker0< MethodInfo_t * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Reflection.MethodInfo>::get_Current() */, IEnumerator_1_t2937F0DC3A50683F70456A2E57B37AEB5AFCC3CE_il2cpp_TypeInfo_var, L_4); V_3 = L_5; MethodInfo_t * L_6 = V_3; NullCheck(L_6); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6); bool L_8 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_7, _stringLiteral973776CA0AE32EA889FC2291F84C4925F2285DDE, /*hidden argument*/NULL); if (L_8) { goto IL_0040; } } IL_002b: { bool L_9 = ___requireImplicitCast2; if (L_9) { goto IL_0056; } } IL_002e: { MethodInfo_t * L_10 = V_3; NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_10); bool L_12 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_11, _stringLiteralA7D46B8B9686D5BA1426F1CA47E9D441E1326BF9, /*hidden argument*/NULL); if (!L_12) { goto IL_0056; } } IL_0040: { Type_t * L_13 = ___to1; MethodInfo_t * L_14 = V_3; NullCheck(L_14); Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_14); NullCheck(L_13); bool L_16 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_13, L_15); if (!L_16) { goto IL_0056; } } IL_004e: { MethodInfo_t * L_17 = V_3; V_4 = L_17; IL2CPP_LEAVE(0xE4, FINALLY_0060); } IL_0056: { RuntimeObject* L_18 = V_2; NullCheck(L_18); bool L_19 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_18); if (L_19) { goto IL_0012; } } IL_005e: { IL2CPP_LEAVE(0x6A, FINALLY_0060); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0060; } FINALLY_0060: { // begin finally (depth: 1) { RuntimeObject* L_20 = V_2; if (!L_20) { goto IL_0069; } } IL_0063: { RuntimeObject* L_21 = V_2; NullCheck(L_21); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_21); } IL_0069: { IL2CPP_END_FINALLY(96) } } // end finally (depth: 1) IL2CPP_CLEANUP(96) { IL2CPP_JUMP_TBL(0xE4, IL_00e4) IL2CPP_JUMP_TBL(0x6A, IL_006a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_006a: { Type_t * L_22 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject* L_23 = TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3(L_22, ((int32_t)24), /*hidden argument*/TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3_RuntimeMethod_var); V_1 = L_23; RuntimeObject* L_24 = V_1; NullCheck(L_24); RuntimeObject* L_25 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>::GetEnumerator() */, IEnumerable_1_tB6ECBCACB08DC25AD256ED59CCE6DDFA9B5DD0FC_il2cpp_TypeInfo_var, L_24); V_5 = L_25; } IL_007b: try { // begin try (depth: 1) { goto IL_00cb; } IL_007d: { RuntimeObject* L_26 = V_5; NullCheck(L_26); MethodInfo_t * L_27 = InterfaceFuncInvoker0< MethodInfo_t * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Reflection.MethodInfo>::get_Current() */, IEnumerator_1_t2937F0DC3A50683F70456A2E57B37AEB5AFCC3CE_il2cpp_TypeInfo_var, L_26); V_6 = L_27; MethodInfo_t * L_28 = V_6; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_28); bool L_30 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_29, _stringLiteral973776CA0AE32EA889FC2291F84C4925F2285DDE, /*hidden argument*/NULL); if (L_30) { goto IL_00af; } } IL_0099: { bool L_31 = ___requireImplicitCast2; if (L_31) { goto IL_00cb; } } IL_009c: { MethodInfo_t * L_32 = V_6; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_32); bool L_34 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_33, _stringLiteralA7D46B8B9686D5BA1426F1CA47E9D441E1326BF9, /*hidden argument*/NULL); if (!L_34) { goto IL_00cb; } } IL_00af: { MethodInfo_t * L_35 = V_6; NullCheck(L_35); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_36 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_35); NullCheck(L_36); int32_t L_37 = 0; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_38 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); NullCheck(L_38); Type_t * L_39 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_38); Type_t * L_40 = ___from0; NullCheck(L_39); bool L_41 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_39, L_40); if (!L_41) { goto IL_00cb; } } IL_00c5: { MethodInfo_t * L_42 = V_6; V_4 = L_42; IL2CPP_LEAVE(0xE4, FINALLY_00d6); } IL_00cb: { RuntimeObject* L_43 = V_5; NullCheck(L_43); bool L_44 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_43); if (L_44) { goto IL_007d; } } IL_00d4: { IL2CPP_LEAVE(0xE2, FINALLY_00d6); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00d6; } FINALLY_00d6: { // begin finally (depth: 1) { RuntimeObject* L_45 = V_5; if (!L_45) { goto IL_00e1; } } IL_00da: { RuntimeObject* L_46 = V_5; NullCheck(L_46); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_46); } IL_00e1: { IL2CPP_END_FINALLY(214) } } // end finally (depth: 1) IL2CPP_CLEANUP(214) { IL2CPP_JUMP_TBL(0xE4, IL_00e4) IL2CPP_JUMP_TBL(0xE2, IL_00e2) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00e2: { return (MethodInfo_t *)NULL; } IL_00e4: { MethodInfo_t * L_47 = V_4; return L_47; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::FloatEqualityComparer(System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_FloatEqualityComparer_mACF6B0C6C1C9BAAC6E799918957E6ABA6B11411A (float ___a0, float ___b1, const RuntimeMethod* method) { { float L_0 = ___a0; bool L_1 = Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0012; } } { float L_2 = ___b1; bool L_3 = Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0012; } } { return (bool)1; } IL_0012: { float L_4 = ___a0; float L_5 = ___b1; return (bool)((((float)L_4) == ((float)L_5))? 1 : 0); } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::DoubleEqualityComparer(System.Double,System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_DoubleEqualityComparer_mA8107430F92BA7A68E23A85099841505C72E5BAC (double ___a0, double ___b1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_DoubleEqualityComparer_mA8107430F92BA7A68E23A85099841505C72E5BAC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___a0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_1 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0012; } } { double L_2 = ___b1; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_3 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0012; } } { return (bool)1; } IL_0012: { double L_4 = ___a0; double L_5 = ___b1; return (bool)((((double)L_4) == ((double)L_5))? 1 : 0); } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::QuaternionEqualityComparer(UnityEngine.Quaternion,UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_QuaternionEqualityComparer_mC45B498897DC7C3F5D1EC6731E1B022CF8295FB4 (Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___a0, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___b1, const RuntimeMethod* method) { { Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_0 = ___a0; float L_1 = L_0.get_x_0(); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_2 = ___b1; float L_3 = L_2.get_x_0(); if ((!(((float)L_1) == ((float)L_3)))) { goto IL_0039; } } { Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_4 = ___a0; float L_5 = L_4.get_y_1(); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_6 = ___b1; float L_7 = L_6.get_y_1(); if ((!(((float)L_5) == ((float)L_7)))) { goto IL_0039; } } { Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_8 = ___a0; float L_9 = L_8.get_z_2(); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_10 = ___b1; float L_11 = L_10.get_z_2(); if ((!(((float)L_9) == ((float)L_11)))) { goto IL_0039; } } { Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_12 = ___a0; float L_13 = L_12.get_w_3(); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_14 = ___b1; float L_15 = L_14.get_w_3(); return (bool)((((float)L_13) == ((float)L_15))? 1 : 0); } IL_0039: { return (bool)0; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::ImplementsOrInherits(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_ImplementsOrInherits_mFB9EB2970D576155187921D63206AA59E96C486C (Type_t * ___type0, Type_t * ___to1, const RuntimeMethod* method) { { Type_t * L_0 = ___to1; Type_t * L_1 = ___type0; NullCheck(L_0); bool L_2 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_0, L_1); return L_2; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::ImplementsOpenGenericType(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_ImplementsOpenGenericType_mE77339998BC40FBE8A48FE1EC35DA9A3B6AF26C6 (Type_t * ___candidateType0, Type_t * ___openGenericType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_ImplementsOpenGenericType_mE77339998BC40FBE8A48FE1EC35DA9A3B6AF26C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___openGenericType1; NullCheck(L_0); bool L_1 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0010; } } { Type_t * L_2 = ___candidateType0; Type_t * L_3 = ___openGenericType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_4 = TypeExtensions_ImplementsOpenGenericInterface_mC328F85F1D7E0EA9DBB75953F6BBA5A67DF5C08A(L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0010: { Type_t * L_5 = ___candidateType0; Type_t * L_6 = ___openGenericType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_7 = TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B(L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::ImplementsOpenGenericInterface(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_ImplementsOpenGenericInterface_mC328F85F1D7E0EA9DBB75953F6BBA5A67DF5C08A (Type_t * ___candidateType0, Type_t * ___openGenericInterfaceType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_ImplementsOpenGenericInterface_mC328F85F1D7E0EA9DBB75953F6BBA5A67DF5C08A_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL; int32_t V_1 = 0; { Type_t * L_0 = ___candidateType0; Type_t * L_1 = ___openGenericInterfaceType1; if ((!(((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { Type_t * L_2 = ___candidateType0; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_2); if (!L_3) { goto IL_0019; } } { Type_t * L_4 = ___candidateType0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_4); Type_t * L_6 = ___openGenericInterfaceType1; if ((!(((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_6)))) { goto IL_0019; } } { return (bool)1; } IL_0019: { Type_t * L_7 = ___candidateType0; NullCheck(L_7); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(45 /* System.Type[] System.Type::GetInterfaces() */, L_7); V_0 = L_8; V_1 = 0; goto IL_0035; } IL_0024: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = V_0; int32_t L_10 = V_1; NullCheck(L_9); int32_t L_11 = L_10; Type_t * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); Type_t * L_13 = ___openGenericInterfaceType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_14 = TypeExtensions_ImplementsOpenGenericInterface_mC328F85F1D7E0EA9DBB75953F6BBA5A67DF5C08A(L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0031; } } { return (bool)1; } IL_0031: { int32_t L_15 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0035: { int32_t L_16 = V_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = V_0; NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::ImplementsOpenGenericClass(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B (Type_t * ___candidateType0, Type_t * ___openGenericType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { Type_t * L_0 = ___candidateType0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_0); if (!L_1) { goto IL_0013; } } { Type_t * L_2 = ___candidateType0; NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_2); Type_t * L_4 = ___openGenericType1; if ((!(((RuntimeObject*)(Type_t *)L_3) == ((RuntimeObject*)(Type_t *)L_4)))) { goto IL_0013; } } { return (bool)1; } IL_0013: { Type_t * L_5 = ___candidateType0; NullCheck(L_5); Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_5); V_0 = L_6; Type_t * L_7 = V_0; if (!L_7) { goto IL_0028; } } { Type_t * L_8 = V_0; Type_t * L_9 = ___openGenericType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_10 = TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B(L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0028; } } { return (bool)1; } IL_0028: { return (bool)0; } } // System.Type[] Sirenix.Serialization.Utilities.TypeExtensions::GetArgumentsOfInheritedOpenGenericType(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* TypeExtensions_GetArgumentsOfInheritedOpenGenericType_m1972914E449E969F4E66DD4E31017DCB2776D669 (Type_t * ___candidateType0, Type_t * ___openGenericType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetArgumentsOfInheritedOpenGenericType_m1972914E449E969F4E66DD4E31017DCB2776D669_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___openGenericType1; NullCheck(L_0); bool L_1 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0010; } } { Type_t * L_2 = ___candidateType0; Type_t * L_3 = ___openGenericType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = TypeExtensions_GetArgumentsOfInheritedOpenGenericInterface_m0F0224E6428E8E7103DA2795E3AD67BA8E091725(L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0010: { Type_t * L_5 = ___candidateType0; Type_t * L_6 = ___openGenericType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB(L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Type[] Sirenix.Serialization.Utilities.TypeExtensions::GetArgumentsOfInheritedOpenGenericClass(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB (Type_t * ___candidateType0, Type_t * ___openGenericType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { Type_t * L_0 = ___candidateType0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_0); if (!L_1) { goto IL_0018; } } { Type_t * L_2 = ___candidateType0; NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_2); Type_t * L_4 = ___openGenericType1; if ((!(((RuntimeObject*)(Type_t *)L_3) == ((RuntimeObject*)(Type_t *)L_4)))) { goto IL_0018; } } { Type_t * L_5 = ___candidateType0; NullCheck(L_5); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_5); return L_6; } IL_0018: { Type_t * L_7 = ___candidateType0; NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_7); V_0 = L_8; Type_t * L_9 = V_0; if (!L_9) { goto IL_002a; } } { Type_t * L_10 = V_0; Type_t * L_11 = ___openGenericType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB(L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_002a: { return (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL; } } // System.Type[] Sirenix.Serialization.Utilities.TypeExtensions::GetArgumentsOfInheritedOpenGenericInterface(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* TypeExtensions_GetArgumentsOfInheritedOpenGenericInterface_m0F0224E6428E8E7103DA2795E3AD67BA8E091725 (Type_t * ___candidateType0, Type_t * ___openGenericInterfaceType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetArgumentsOfInheritedOpenGenericInterface_m0F0224E6428E8E7103DA2795E3AD67BA8E091725_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL; int32_t V_1 = 0; Type_t * V_2 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_3 = NULL; { Type_t * L_0 = ___openGenericInterfaceType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Type_t * L_1 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericListInterface_7(); if ((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1))) { goto IL_0010; } } { Type_t * L_2 = ___openGenericInterfaceType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Type_t * L_3 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericCollectionInterface_8(); if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3)))) { goto IL_0028; } } IL_0010: { Type_t * L_4 = ___candidateType0; NullCheck(L_4); bool L_5 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0028; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = L_6; Type_t * L_8 = ___candidateType0; NullCheck(L_8); Type_t * L_9 = VirtFuncInvoker0< Type_t * >::Invoke(104 /* System.Type System.Type::GetElementType() */, L_8); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_9); return L_7; } IL_0028: { Type_t * L_10 = ___candidateType0; Type_t * L_11 = ___openGenericInterfaceType1; if ((!(((RuntimeObject*)(Type_t *)L_10) == ((RuntimeObject*)(Type_t *)L_11)))) { goto IL_0033; } } { Type_t * L_12 = ___candidateType0; NullCheck(L_12); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_12); return L_13; } IL_0033: { Type_t * L_14 = ___candidateType0; NullCheck(L_14); bool L_15 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_14); if (!L_15) { goto IL_004b; } } { Type_t * L_16 = ___candidateType0; NullCheck(L_16); Type_t * L_17 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_16); Type_t * L_18 = ___openGenericInterfaceType1; if ((!(((RuntimeObject*)(Type_t *)L_17) == ((RuntimeObject*)(Type_t *)L_18)))) { goto IL_004b; } } { Type_t * L_19 = ___candidateType0; NullCheck(L_19); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_19); return L_20; } IL_004b: { Type_t * L_21 = ___candidateType0; NullCheck(L_21); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_22 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(45 /* System.Type[] System.Type::GetInterfaces() */, L_21); V_0 = L_22; V_1 = 0; goto IL_0073; } IL_0056: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = V_0; int32_t L_24 = V_1; NullCheck(L_23); int32_t L_25 = L_24; Type_t * L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); V_2 = L_26; Type_t * L_27 = V_2; NullCheck(L_27); bool L_28 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_27); if (!L_28) { goto IL_006f; } } { Type_t * L_29 = V_2; Type_t * L_30 = ___openGenericInterfaceType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_31 = TypeExtensions_GetArgumentsOfInheritedOpenGenericInterface_m0F0224E6428E8E7103DA2795E3AD67BA8E091725(L_29, L_30, /*hidden argument*/NULL); V_3 = L_31; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_32 = V_3; if (!L_32) { goto IL_006f; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = V_3; return L_33; } IL_006f: { int32_t L_34 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); } IL_0073: { int32_t L_35 = V_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_36 = V_0; NullCheck(L_36); if ((((int32_t)L_35) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length))))))) { goto IL_0056; } } { return (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL; } } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.TypeExtensions::GetOperatorMethod(System.Type,Sirenix.Serialization.Utilities.Operator,System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * TypeExtensions_GetOperatorMethod_m67F84DBFC5B5E2F6B3A437E06A977187A0EE8EE5 (Type_t * ___type0, int32_t ___op1, Type_t * ___leftOperand2, Type_t * ___rightOperand3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetOperatorMethod_m67F84DBFC5B5E2F6B3A437E06A977187A0EE8EE5_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_2 = NULL; MethodInfo_t * V_3 = NULL; MethodInfo_t * V_4 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = ___op1; switch (L_0) { case 0: { goto IL_005b; } case 1: { goto IL_0066; } case 2: { goto IL_0071; } case 3: { goto IL_007c; } case 4: { goto IL_0084; } case 5: { goto IL_008c; } case 6: { goto IL_0094; } case 7: { goto IL_009c; } case 8: { goto IL_00a4; } case 9: { goto IL_00ac; } case 10: { goto IL_00b4; } case 11: { goto IL_00bc; } case 12: { goto IL_00c4; } case 13: { goto IL_00cc; } case 14: { goto IL_00d4; } case 15: { goto IL_00dc; } case 16: { goto IL_00e4; } case 17: { goto IL_00f4; } case 18: { goto IL_00f4; } case 19: { goto IL_00ec; } } } { goto IL_00f6; } IL_005b: { V_0 = _stringLiteralF734DF88E92F49B672EE53D7480E1343D0753F4D; goto IL_00fc; } IL_0066: { V_0 = _stringLiteral1C550A44AFC9938A6DA37EDCAB5FE5D10573FD26; goto IL_00fc; } IL_0071: { V_0 = _stringLiteral51DCF177FE7988EB16D7D643F73C4D736BBE5AAF; goto IL_00fc; } IL_007c: { V_0 = _stringLiteral9C33613FED7391F5ADB03ADCB74EEB30715294BA; goto IL_00fc; } IL_0084: { V_0 = _stringLiteral1ECDED7E63D79AD91F6AE6EB4050AA7E924E9EA1; goto IL_00fc; } IL_008c: { V_0 = _stringLiteral10597E310D0ABD6D81AA9DC58A6FB817B16709F5; goto IL_00fc; } IL_0094: { V_0 = _stringLiteral82786075324B71C370AF745CE2DFC58A4C31A9DB; goto IL_00fc; } IL_009c: { V_0 = _stringLiteralAEE40AF56D1DC6166A5A5DB109D9FCF3A65E9CDF; goto IL_00fc; } IL_00a4: { V_0 = _stringLiteralEEEB710BA70C6DEE62FDD7CB9CF079C93CA0E6BA; goto IL_00fc; } IL_00ac: { V_0 = _stringLiteralAC663947D3143D2C303F23FF24B02C747126D0E6; goto IL_00fc; } IL_00b4: { V_0 = _stringLiteral4F2D205CC3250317317325A36DD312BD4EAC3D18; goto IL_00fc; } IL_00bc: { V_0 = _stringLiteralBA03045BA4E49817DF77BFC248796AA6FD04C288; goto IL_00fc; } IL_00c4: { V_0 = _stringLiteralEA79A75596A62A7534FCFBB9D7B332C10030C272; goto IL_00fc; } IL_00cc: { V_0 = _stringLiteral6882087222CB7E956F09BE22661B24ACC2E95E56; goto IL_00fc; } IL_00d4: { V_0 = _stringLiteralFAB98F3ACA7BFAB30C7C67A5960A06E6841287DF; goto IL_00fc; } IL_00dc: { V_0 = _stringLiteral3D87F1C6DFCC7CA3E436685B256D2D6CF1B7E4BD; goto IL_00fc; } IL_00e4: { V_0 = _stringLiteralF2EF4B446549B0A441D4658CE65545756F63EF66; goto IL_00fc; } IL_00ec: { V_0 = _stringLiteral50E7CD0628F3504F9531B528A9F276997A437042; goto IL_00fc; } IL_00f4: { return (MethodInfo_t *)NULL; } IL_00f6: { NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_1 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_GetOperatorMethod_m67F84DBFC5B5E2F6B3A437E06A977187A0EE8EE5_RuntimeMethod_var); } IL_00fc: { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_TwoLengthTypeArray_Cached_13(); V_1 = L_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = V_1; V_2 = L_3; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = V_2; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102((RuntimeObject *)(RuntimeObject *)L_4, /*hidden argument*/NULL); } IL_010a: try { // begin try (depth: 1) { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = V_1; Type_t * L_6 = ___leftOperand2; NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_6); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = V_1; Type_t * L_8 = ___rightOperand3; NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_8); Type_t * L_9 = ___type0; String_t* L_10 = V_0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = V_1; NullCheck(L_9); MethodInfo_t * L_12 = Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA(L_9, L_10, ((int32_t)56), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_11, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL); V_3 = L_12; MethodInfo_t * L_13 = V_3; if (!L_13) { goto IL_0139; } } IL_0122: { MethodInfo_t * L_14 = V_3; NullCheck(L_14); Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_14); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_16, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_15) == ((RuntimeObject*)(Type_t *)L_17))) { goto IL_0139; } } IL_0134: { V_4 = (MethodInfo_t *)NULL; IL2CPP_LEAVE(0x145, FINALLY_013e); } IL_0139: { MethodInfo_t * L_18 = V_3; V_4 = L_18; IL2CPP_LEAVE(0x145, FINALLY_013e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_013e; } FINALLY_013e: { // begin finally (depth: 1) TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = V_2; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2((RuntimeObject *)(RuntimeObject *)L_19, /*hidden argument*/NULL); IL2CPP_END_FINALLY(318) } // end finally (depth: 1) IL2CPP_CLEANUP(318) { IL2CPP_JUMP_TBL(0x145, IL_0145) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0145: { MethodInfo_t * L_20 = V_4; return L_20; } } // System.Reflection.MethodInfo Sirenix.Serialization.Utilities.TypeExtensions::GetOperatorMethod(System.Type,Sirenix.Serialization.Utilities.Operator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * TypeExtensions_GetOperatorMethod_mF4E8FB063C0DB4900CEA5EB0BC035B54A0C941F0 (Type_t * ___type0, int32_t ___op1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetOperatorMethod_mF4E8FB063C0DB4900CEA5EB0BC035B54A0C941F0_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * V_0 = NULL; { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_0 = (U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass45_0__ctor_m283AE396D8B702BF71664FA79121537DE1D72FE2(L_0, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = ___op1; switch (L_1) { case 0: { goto IL_0061; } case 1: { goto IL_0071; } case 2: { goto IL_0081; } case 3: { goto IL_0091; } case 4: { goto IL_00a1; } case 5: { goto IL_00b1; } case 6: { goto IL_00c1; } case 7: { goto IL_00d1; } case 8: { goto IL_00e1; } case 9: { goto IL_00ee; } case 10: { goto IL_00fb; } case 11: { goto IL_0108; } case 12: { goto IL_0115; } case 13: { goto IL_0122; } case 14: { goto IL_012f; } case 15: { goto IL_013c; } case 16: { goto IL_0149; } case 17: { goto IL_0163; } case 18: { goto IL_0163; } case 19: { goto IL_0156; } } } { goto IL_0165; } IL_0061: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_2 = V_0; NullCheck(L_2); L_2->set_methodName_0(_stringLiteralF734DF88E92F49B672EE53D7480E1343D0753F4D); goto IL_016b; } IL_0071: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_3 = V_0; NullCheck(L_3); L_3->set_methodName_0(_stringLiteral1C550A44AFC9938A6DA37EDCAB5FE5D10573FD26); goto IL_016b; } IL_0081: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_4 = V_0; NullCheck(L_4); L_4->set_methodName_0(_stringLiteral51DCF177FE7988EB16D7D643F73C4D736BBE5AAF); goto IL_016b; } IL_0091: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_5 = V_0; NullCheck(L_5); L_5->set_methodName_0(_stringLiteral9C33613FED7391F5ADB03ADCB74EEB30715294BA); goto IL_016b; } IL_00a1: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_6 = V_0; NullCheck(L_6); L_6->set_methodName_0(_stringLiteral1ECDED7E63D79AD91F6AE6EB4050AA7E924E9EA1); goto IL_016b; } IL_00b1: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_7 = V_0; NullCheck(L_7); L_7->set_methodName_0(_stringLiteral10597E310D0ABD6D81AA9DC58A6FB817B16709F5); goto IL_016b; } IL_00c1: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_8 = V_0; NullCheck(L_8); L_8->set_methodName_0(_stringLiteral82786075324B71C370AF745CE2DFC58A4C31A9DB); goto IL_016b; } IL_00d1: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_9 = V_0; NullCheck(L_9); L_9->set_methodName_0(_stringLiteralAEE40AF56D1DC6166A5A5DB109D9FCF3A65E9CDF); goto IL_016b; } IL_00e1: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_10 = V_0; NullCheck(L_10); L_10->set_methodName_0(_stringLiteralEEEB710BA70C6DEE62FDD7CB9CF079C93CA0E6BA); goto IL_016b; } IL_00ee: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_11 = V_0; NullCheck(L_11); L_11->set_methodName_0(_stringLiteralAC663947D3143D2C303F23FF24B02C747126D0E6); goto IL_016b; } IL_00fb: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_12 = V_0; NullCheck(L_12); L_12->set_methodName_0(_stringLiteral4F2D205CC3250317317325A36DD312BD4EAC3D18); goto IL_016b; } IL_0108: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_13 = V_0; NullCheck(L_13); L_13->set_methodName_0(_stringLiteralBA03045BA4E49817DF77BFC248796AA6FD04C288); goto IL_016b; } IL_0115: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_14 = V_0; NullCheck(L_14); L_14->set_methodName_0(_stringLiteralEA79A75596A62A7534FCFBB9D7B332C10030C272); goto IL_016b; } IL_0122: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_15 = V_0; NullCheck(L_15); L_15->set_methodName_0(_stringLiteral6882087222CB7E956F09BE22661B24ACC2E95E56); goto IL_016b; } IL_012f: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_16 = V_0; NullCheck(L_16); L_16->set_methodName_0(_stringLiteralFAB98F3ACA7BFAB30C7C67A5960A06E6841287DF); goto IL_016b; } IL_013c: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_17 = V_0; NullCheck(L_17); L_17->set_methodName_0(_stringLiteral3D87F1C6DFCC7CA3E436685B256D2D6CF1B7E4BD); goto IL_016b; } IL_0149: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_18 = V_0; NullCheck(L_18); L_18->set_methodName_0(_stringLiteralF2EF4B446549B0A441D4658CE65545756F63EF66); goto IL_016b; } IL_0156: { U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_19 = V_0; NullCheck(L_19); L_19->set_methodName_0(_stringLiteral50E7CD0628F3504F9531B528A9F276997A437042); goto IL_016b; } IL_0163: { return (MethodInfo_t *)NULL; } IL_0165: { NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_20 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4(L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, TypeExtensions_GetOperatorMethod_mF4E8FB063C0DB4900CEA5EB0BC035B54A0C941F0_RuntimeMethod_var); } IL_016b: { Type_t * L_21 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject* L_22 = TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3(L_21, ((int32_t)56), /*hidden argument*/TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3_RuntimeMethod_var); U3CU3Ec__DisplayClass45_0_tD114B8BF1C16E23AC718605EF1A6257023D96832 * L_23 = V_0; Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 * L_24 = (Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 *)il2cpp_codegen_object_new(Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700_il2cpp_TypeInfo_var); Func_2__ctor_m4E1D198417EA6D3F91577C1A09385A0A6773E53C(L_24, L_23, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass45_0_U3CGetOperatorMethodU3Eb__0_mA1BAA382445BB991F8D80DAA99451EA189CE2394_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m4E1D198417EA6D3F91577C1A09385A0A6773E53C_RuntimeMethod_var); MethodInfo_t * L_25 = Enumerable_FirstOrDefault_TisMethodInfo_t_mE1F896EF6196D68677B86A786757DBD1F6961207(L_22, L_24, /*hidden argument*/Enumerable_FirstOrDefault_TisMethodInfo_t_mE1F896EF6196D68677B86A786757DBD1F6961207_RuntimeMethod_var); return L_25; } } // System.Reflection.MethodInfo[] Sirenix.Serialization.Utilities.TypeExtensions::GetOperatorMethods(System.Type,Sirenix.Serialization.Utilities.Operator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* TypeExtensions_GetOperatorMethods_m3D8260A48749A264F684DEFD307370FC77B5D284 (Type_t * ___type0, int32_t ___op1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetOperatorMethods_m3D8260A48749A264F684DEFD307370FC77B5D284_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * V_0 = NULL; { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_0 = (U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass46_0__ctor_mC6CDD53D4E6927515495C92E2BC202247BC2C982(L_0, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = ___op1; switch (L_1) { case 0: { goto IL_0061; } case 1: { goto IL_0071; } case 2: { goto IL_0081; } case 3: { goto IL_0091; } case 4: { goto IL_00a1; } case 5: { goto IL_00b1; } case 6: { goto IL_00c1; } case 7: { goto IL_00d1; } case 8: { goto IL_00e1; } case 9: { goto IL_00ee; } case 10: { goto IL_00fb; } case 11: { goto IL_0108; } case 12: { goto IL_0115; } case 13: { goto IL_0122; } case 14: { goto IL_012f; } case 15: { goto IL_013c; } case 16: { goto IL_0149; } case 17: { goto IL_0163; } case 18: { goto IL_0163; } case 19: { goto IL_0156; } } } { goto IL_0165; } IL_0061: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_2 = V_0; NullCheck(L_2); L_2->set_methodName_0(_stringLiteralF734DF88E92F49B672EE53D7480E1343D0753F4D); goto IL_016b; } IL_0071: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_3 = V_0; NullCheck(L_3); L_3->set_methodName_0(_stringLiteral1C550A44AFC9938A6DA37EDCAB5FE5D10573FD26); goto IL_016b; } IL_0081: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_4 = V_0; NullCheck(L_4); L_4->set_methodName_0(_stringLiteral51DCF177FE7988EB16D7D643F73C4D736BBE5AAF); goto IL_016b; } IL_0091: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_5 = V_0; NullCheck(L_5); L_5->set_methodName_0(_stringLiteral9C33613FED7391F5ADB03ADCB74EEB30715294BA); goto IL_016b; } IL_00a1: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_6 = V_0; NullCheck(L_6); L_6->set_methodName_0(_stringLiteral1ECDED7E63D79AD91F6AE6EB4050AA7E924E9EA1); goto IL_016b; } IL_00b1: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_7 = V_0; NullCheck(L_7); L_7->set_methodName_0(_stringLiteral10597E310D0ABD6D81AA9DC58A6FB817B16709F5); goto IL_016b; } IL_00c1: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_8 = V_0; NullCheck(L_8); L_8->set_methodName_0(_stringLiteral82786075324B71C370AF745CE2DFC58A4C31A9DB); goto IL_016b; } IL_00d1: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_9 = V_0; NullCheck(L_9); L_9->set_methodName_0(_stringLiteralAEE40AF56D1DC6166A5A5DB109D9FCF3A65E9CDF); goto IL_016b; } IL_00e1: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_10 = V_0; NullCheck(L_10); L_10->set_methodName_0(_stringLiteralEEEB710BA70C6DEE62FDD7CB9CF079C93CA0E6BA); goto IL_016b; } IL_00ee: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_11 = V_0; NullCheck(L_11); L_11->set_methodName_0(_stringLiteralAC663947D3143D2C303F23FF24B02C747126D0E6); goto IL_016b; } IL_00fb: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_12 = V_0; NullCheck(L_12); L_12->set_methodName_0(_stringLiteral4F2D205CC3250317317325A36DD312BD4EAC3D18); goto IL_016b; } IL_0108: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_13 = V_0; NullCheck(L_13); L_13->set_methodName_0(_stringLiteralBA03045BA4E49817DF77BFC248796AA6FD04C288); goto IL_016b; } IL_0115: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_14 = V_0; NullCheck(L_14); L_14->set_methodName_0(_stringLiteralEA79A75596A62A7534FCFBB9D7B332C10030C272); goto IL_016b; } IL_0122: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_15 = V_0; NullCheck(L_15); L_15->set_methodName_0(_stringLiteral6882087222CB7E956F09BE22661B24ACC2E95E56); goto IL_016b; } IL_012f: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_16 = V_0; NullCheck(L_16); L_16->set_methodName_0(_stringLiteralFAB98F3ACA7BFAB30C7C67A5960A06E6841287DF); goto IL_016b; } IL_013c: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_17 = V_0; NullCheck(L_17); L_17->set_methodName_0(_stringLiteral3D87F1C6DFCC7CA3E436685B256D2D6CF1B7E4BD); goto IL_016b; } IL_0149: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_18 = V_0; NullCheck(L_18); L_18->set_methodName_0(_stringLiteralF2EF4B446549B0A441D4658CE65545756F63EF66); goto IL_016b; } IL_0156: { U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_19 = V_0; NullCheck(L_19); L_19->set_methodName_0(_stringLiteral50E7CD0628F3504F9531B528A9F276997A437042); goto IL_016b; } IL_0163: { return (MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B*)NULL; } IL_0165: { NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_20 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4(L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, TypeExtensions_GetOperatorMethods_m3D8260A48749A264F684DEFD307370FC77B5D284_RuntimeMethod_var); } IL_016b: { Type_t * L_21 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject* L_22 = TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3(L_21, ((int32_t)56), /*hidden argument*/TypeExtensions_GetAllMembers_TisMethodInfo_t_mACD2CAF4541350BE0BF5E4C87A392700849473E3_RuntimeMethod_var); U3CU3Ec__DisplayClass46_0_t3F4106E50E06601653B3E44E7E0A2C3306E5563B * L_23 = V_0; Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 * L_24 = (Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700 *)il2cpp_codegen_object_new(Func_2_t700F138C5EC09499E3EDA24457CFF42DF0828700_il2cpp_TypeInfo_var); Func_2__ctor_m4E1D198417EA6D3F91577C1A09385A0A6773E53C(L_24, L_23, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass46_0_U3CGetOperatorMethodsU3Eb__0_mEBFD5B61B0A0975D2972090883FF0752E8B88D13_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m4E1D198417EA6D3F91577C1A09385A0A6773E53C_RuntimeMethod_var); RuntimeObject* L_25 = Enumerable_Where_TisMethodInfo_t_m9426DCAA38C5126A2543B240CB0E0D81F8A975C3(L_22, L_24, /*hidden argument*/Enumerable_Where_TisMethodInfo_t_m9426DCAA38C5126A2543B240CB0E0D81F8A975C3_RuntimeMethod_var); MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_26 = Enumerable_ToArray_TisMethodInfo_t_mB467F5AA11251FFDBF7F99F1FAE889DBA72716C6(L_25, /*hidden argument*/Enumerable_ToArray_TisMethodInfo_t_mB467F5AA11251FFDBF7F99F1FAE889DBA72716C6_RuntimeMethod_var); return L_26; } } // System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo> Sirenix.Serialization.Utilities.TypeExtensions::GetAllMembers(System.Type,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeExtensions_GetAllMembers_m48D2BD760B116825656A08CE347BD5F63905B553 (Type_t * ___type0, int32_t ___flags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetAllMembers_m48D2BD760B116825656A08CE347BD5F63905B553_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB * L_0 = (U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB *)il2cpp_codegen_object_new(U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB_il2cpp_TypeInfo_var); U3CGetAllMembersU3Ed__47__ctor_m67E19A9D89EB437772AE5C7768994619A05918E0(L_0, ((int32_t)-2), /*hidden argument*/NULL); U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB * L_1 = L_0; Type_t * L_2 = ___type0; NullCheck(L_1); L_1->set_U3CU3E3__type_4(L_2); U3CGetAllMembersU3Ed__47_tCB6E816712643CA560CF0C51A7861350DAE57FAB * L_3 = L_1; int32_t L_4 = ___flags1; NullCheck(L_3); L_3->set_U3CU3E3__flags_6(L_4); return L_3; } } // System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo> Sirenix.Serialization.Utilities.TypeExtensions::GetAllMembers(System.Type,System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeExtensions_GetAllMembers_m67DA955DD1879F31063F38FCB98A01EFAEDC14C9 (Type_t * ___type0, String_t* ___name1, int32_t ___flags2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetAllMembers_m67DA955DD1879F31063F38FCB98A01EFAEDC14C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C * L_0 = (U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C *)il2cpp_codegen_object_new(U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C_il2cpp_TypeInfo_var); U3CGetAllMembersU3Ed__48__ctor_m4EFE43CF8938BDE27BE53A916B206AF577954964(L_0, ((int32_t)-2), /*hidden argument*/NULL); U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C * L_1 = L_0; Type_t * L_2 = ___type0; NullCheck(L_1); L_1->set_U3CU3E3__type_4(L_2); U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C * L_3 = L_1; String_t* L_4 = ___name1; NullCheck(L_3); L_3->set_U3CU3E3__name_8(L_4); U3CGetAllMembersU3Ed__48_t521897388B55F997E9C17FA6A2F91008E28FA95C * L_5 = L_3; int32_t L_6 = ___flags2; NullCheck(L_5); L_5->set_U3CU3E3__flags_6(L_6); return L_5; } } // System.Type Sirenix.Serialization.Utilities.TypeExtensions::GetGenericBaseType(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeExtensions_GetGenericBaseType_m76D2D3754AFBCFF4489C03C9947AA0B2E684E395 (Type_t * ___type0, Type_t * ___baseType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetGenericBaseType_m76D2D3754AFBCFF4489C03C9947AA0B2E684E395_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Type_t * L_0 = ___type0; Type_t * L_1 = ___baseType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Type_t * L_2 = TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083(L_0, L_1, (int32_t*)(&V_0), /*hidden argument*/NULL); return L_2; } } // System.Type Sirenix.Serialization.Utilities.TypeExtensions::GetGenericBaseType(System.Type,System.Type,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083 (Type_t * ___type0, Type_t * ___baseType1, int32_t* ___depthCount2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { Type_t * L_0 = ___type0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = ___baseType1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralB08989ED8064747E023183953C843E68F9E99B96, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083_RuntimeMethod_var); } IL_001c: { Type_t * L_4 = ___baseType1; NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_4); if (L_5) { goto IL_003f; } } { Type_t * L_6 = ___baseType1; NullCheck(L_6); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6); String_t* L_8 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralE298B0EC36231C1B64B22D748FE01A717E94566F, L_7, _stringLiteral2D706216A4F5899028DA0C2B9AC0DD4043FEFA97, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083_RuntimeMethod_var); } IL_003f: { Type_t * L_10 = ___type0; Type_t * L_11 = ___baseType1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_12 = TypeExtensions_InheritsFrom_mE3C31521AF59D77C48BA59744008CFFB79FEF580(L_10, L_11, /*hidden argument*/NULL); if (L_12) { goto IL_0083; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = L_13; NullCheck(L_14); ArrayElementTypeCheck (L_14, _stringLiteralE298B0EC36231C1B64B22D748FE01A717E94566F); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE298B0EC36231C1B64B22D748FE01A717E94566F); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_15 = L_14; Type_t * L_16 = ___type0; NullCheck(L_16); String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_16); NullCheck(L_15); ArrayElementTypeCheck (L_15, L_17); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_17); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = L_15; NullCheck(L_18); ArrayElementTypeCheck (L_18, _stringLiteral14AEAC748A2110E85F586D19ADBDC06EED3AE571); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral14AEAC748A2110E85F586D19ADBDC06EED3AE571); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_18; Type_t * L_20 = ___baseType1; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_20); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_21); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_21); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = L_19; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727); String_t* L_23 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_22, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_24 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083_RuntimeMethod_var); } IL_0083: { Type_t * L_25 = ___type0; V_0 = L_25; int32_t* L_26 = ___depthCount2; *((int32_t*)L_26) = (int32_t)0; goto IL_0097; } IL_008a: { int32_t* L_27 = ___depthCount2; int32_t* L_28 = ___depthCount2; int32_t L_29 = *((int32_t*)L_28); *((int32_t*)L_27) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); Type_t * L_30 = V_0; NullCheck(L_30); Type_t * L_31 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_30); V_0 = L_31; } IL_0097: { Type_t * L_32 = V_0; if (!L_32) { goto IL_00ab; } } { Type_t * L_33 = V_0; NullCheck(L_33); bool L_34 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_33); if (!L_34) { goto IL_008a; } } { Type_t * L_35 = V_0; NullCheck(L_35); Type_t * L_36 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_35); Type_t * L_37 = ___baseType1; if ((!(((RuntimeObject*)(Type_t *)L_36) == ((RuntimeObject*)(Type_t *)L_37)))) { goto IL_008a; } } IL_00ab: { Type_t * L_38 = V_0; if (L_38) { goto IL_00cf; } } { Type_t * L_39 = ___type0; NullCheck(L_39); String_t* L_40 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_39); Type_t * L_41 = ___baseType1; NullCheck(L_41); String_t* L_42 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_41); String_t* L_43 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_40, _stringLiteral14F6057218654AEAB94086C523653451E72D4EEF, L_42, _stringLiteral1CBEA9C050ADC6EA7658B20B44D2428973B1C4E5, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_44 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_44, L_43, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, TypeExtensions_GetGenericBaseType_m76C1383E473813F94023CFEEF1FBF6ED11CFB083_RuntimeMethod_var); } IL_00cf: { Type_t * L_45 = V_0; return L_45; } } // System.Collections.Generic.IEnumerable`1<System.Type> Sirenix.Serialization.Utilities.TypeExtensions::GetBaseTypes(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeExtensions_GetBaseTypes_mDEAA2F9719E8A1A836EAABBEE3F3EBF657797520 (Type_t * ___type0, bool ___includeSelf1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetBaseTypes_mDEAA2F9719E8A1A836EAABBEE3F3EBF657797520_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { Type_t * L_0 = ___type0; bool L_1 = ___includeSelf1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject* L_2 = TypeExtensions_GetBaseClasses_mE82A31E50C001144D29935EF416FF8C2EC6C767E(L_0, L_1, /*hidden argument*/NULL); Type_t * L_3 = ___type0; NullCheck(L_3); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(45 /* System.Type[] System.Type::GetInterfaces() */, L_3); RuntimeObject* L_5 = Enumerable_Concat_TisType_t_m17D4A9549608C664264D46663759AFA2800ECC0F(L_2, (RuntimeObject*)(RuntimeObject*)L_4, /*hidden argument*/Enumerable_Concat_TisType_t_m17D4A9549608C664264D46663759AFA2800ECC0F_RuntimeMethod_var); V_0 = L_5; bool L_6 = ___includeSelf1; if (!L_6) { goto IL_002f; } } { Type_t * L_7 = ___type0; NullCheck(L_7); bool L_8 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_002f; } } { RuntimeObject* L_9 = V_0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10; Type_t * L_12 = ___type0; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_12); Enumerable_Concat_TisType_t_m17D4A9549608C664264D46663759AFA2800ECC0F(L_9, (RuntimeObject*)(RuntimeObject*)L_11, /*hidden argument*/Enumerable_Concat_TisType_t_m17D4A9549608C664264D46663759AFA2800ECC0F_RuntimeMethod_var); } IL_002f: { RuntimeObject* L_13 = V_0; return L_13; } } // System.Collections.Generic.IEnumerable`1<System.Type> Sirenix.Serialization.Utilities.TypeExtensions::GetBaseClasses(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TypeExtensions_GetBaseClasses_mE82A31E50C001144D29935EF416FF8C2EC6C767E (Type_t * ___type0, bool ___includeSelf1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetBaseClasses_mE82A31E50C001144D29935EF416FF8C2EC6C767E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F * L_0 = (U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F *)il2cpp_codegen_object_new(U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F_il2cpp_TypeInfo_var); U3CGetBaseClassesU3Ed__53__ctor_mF2A2A480E025B7498E880867D8F52FCEE6CF9E5F(L_0, ((int32_t)-2), /*hidden argument*/NULL); U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F * L_1 = L_0; Type_t * L_2 = ___type0; NullCheck(L_1); L_1->set_U3CU3E3__type_4(L_2); U3CGetBaseClassesU3Ed__53_t558FEF521FCAF5B71E189AEE8CC6D44BD1C3002F * L_3 = L_1; bool L_4 = ___includeSelf1; NullCheck(L_3); L_3->set_U3CU3E3__includeSelf_6(L_4); return L_3; } } // System.String Sirenix.Serialization.Utilities.TypeExtensions::TypeNameGauntlet(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_TypeNameGauntlet_mF8BC41CCA4DC4132BFC88689AEFFF6B659089A56 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_TypeNameGauntlet_mF8BC41CCA4DC4132BFC88689AEFFF6B659089A56_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { Type_t * L_0 = ___type0; NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0); V_0 = L_1; String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_1 = L_2; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_3 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_TypeNameAlternatives_16(); String_t* L_4 = V_0; NullCheck(L_3); bool L_5 = Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B(L_3, L_4, (String_t**)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var); if (!L_5) { goto IL_001e; } } { String_t* L_6 = V_1; V_0 = L_6; } IL_001e: { String_t* L_7 = V_0; return L_7; } } // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetNiceName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = Type_get_IsNested_m0191026EDE15331C2DD97FC106E1C86825722F37(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002c; } } { Type_t * L_2 = ___type0; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_2); if (L_3) { goto IL_002c; } } { Type_t * L_4 = ___type0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_4); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_6 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_5, /*hidden argument*/NULL); Type_t * L_7 = ___type0; String_t* L_8 = TypeExtensions_GetCachedNiceName_mFA299962CF542EC652E8ED4921C81D5F45255A3A(L_7, /*hidden argument*/NULL); String_t* L_9 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_6, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_8, /*hidden argument*/NULL); return L_9; } IL_002c: { Type_t * L_10 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_11 = TypeExtensions_GetCachedNiceName_mFA299962CF542EC652E8ED4921C81D5F45255A3A(L_10, /*hidden argument*/NULL); return L_11; } } // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetNiceFullName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = Type_get_IsNested_m0191026EDE15331C2DD97FC106E1C86825722F37(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002c; } } { Type_t * L_2 = ___type0; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_2); if (L_3) { goto IL_002c; } } { Type_t * L_4 = ___type0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_4); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_6 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_5, /*hidden argument*/NULL); Type_t * L_7 = ___type0; String_t* L_8 = TypeExtensions_GetCachedNiceName_mFA299962CF542EC652E8ED4921C81D5F45255A3A(L_7, /*hidden argument*/NULL); String_t* L_9 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_6, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_8, /*hidden argument*/NULL); return L_9; } IL_002c: { Type_t * L_10 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_11 = TypeExtensions_GetCachedNiceName_mFA299962CF542EC652E8ED4921C81D5F45255A3A(L_10, /*hidden argument*/NULL); V_0 = L_11; Type_t * L_12 = ___type0; NullCheck(L_12); String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_Namespace() */, L_12); if (!L_13) { goto IL_004d; } } { Type_t * L_14 = ___type0; NullCheck(L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_Namespace() */, L_14); String_t* L_16 = V_0; String_t* L_17 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_15, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_16, /*hidden argument*/NULL); V_0 = L_17; } IL_004d: { String_t* L_18 = V_0; return L_18; } } // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetCompilableNiceName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetCompilableNiceName_m192EFC4BDC82F37A1CF235AE76342B8402DC1E3B (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetCompilableNiceName_m192EFC4BDC82F37A1CF235AE76342B8402DC1E3B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_1 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_0, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2 = String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9(L_1, ((int32_t)60), ((int32_t)95), /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9(L_2, ((int32_t)62), ((int32_t)95), /*hidden argument*/NULL); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = L_4; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)95)); NullCheck(L_3); String_t* L_6 = String_TrimEnd_m8D4905B71A4AEBF9D0BC36C6003FC9A5AD630403(L_3, L_5, /*hidden argument*/NULL); return L_6; } } // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetCompilableNiceFullName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetCompilableNiceFullName_mCA8290EE956749FE9875B636A3963E455BBFAAE1 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetCompilableNiceFullName_mCA8290EE956749FE9875B636A3963E455BBFAAE1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_1 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_0, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2 = String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9(L_1, ((int32_t)60), ((int32_t)95), /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9(L_2, ((int32_t)62), ((int32_t)95), /*hidden argument*/NULL); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = L_4; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)95)); NullCheck(L_3); String_t* L_6 = String_TrimEnd_m8D4905B71A4AEBF9D0BC36C6003FC9A5AD630403(L_3, L_5, /*hidden argument*/NULL); return L_6; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::InheritsFrom(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_InheritsFrom_mE3C31521AF59D77C48BA59744008CFFB79FEF580 (Type_t * ___type0, Type_t * ___baseType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_InheritsFrom_mE3C31521AF59D77C48BA59744008CFFB79FEF580_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { Type_t * L_0 = ___baseType1; Type_t * L_1 = ___type0; NullCheck(L_0); bool L_2 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_0, L_1); if (!L_2) { goto IL_000b; } } { return (bool)1; } IL_000b: { Type_t * L_3 = ___type0; NullCheck(L_3); bool L_4 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_001d; } } { Type_t * L_5 = ___baseType1; NullCheck(L_5); bool L_6 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_001d; } } { return (bool)0; } IL_001d: { Type_t * L_7 = ___baseType1; NullCheck(L_7); bool L_8 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0032; } } { Type_t * L_9 = ___type0; NullCheck(L_9); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(45 /* System.Type[] System.Type::GetInterfaces() */, L_9); Type_t * L_11 = ___baseType1; bool L_12 = Enumerable_Contains_TisType_t_mBDE1B1B6B7A069EDEA6F52FBFD461C6EA65D8E7B((RuntimeObject*)(RuntimeObject*)L_10, L_11, /*hidden argument*/Enumerable_Contains_TisType_t_mBDE1B1B6B7A069EDEA6F52FBFD461C6EA65D8E7B_RuntimeMethod_var); return L_12; } IL_0032: { Type_t * L_13 = ___type0; V_0 = L_13; goto IL_005e; } IL_0036: { Type_t * L_14 = V_0; Type_t * L_15 = ___baseType1; if ((!(((RuntimeObject*)(Type_t *)L_14) == ((RuntimeObject*)(Type_t *)L_15)))) { goto IL_003c; } } { return (bool)1; } IL_003c: { Type_t * L_16 = ___baseType1; NullCheck(L_16); bool L_17 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_16); if (!L_17) { goto IL_0057; } } { Type_t * L_18 = V_0; NullCheck(L_18); bool L_19 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_18); if (!L_19) { goto IL_0057; } } { Type_t * L_20 = V_0; NullCheck(L_20); Type_t * L_21 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_20); Type_t * L_22 = ___baseType1; if ((!(((RuntimeObject*)(Type_t *)L_21) == ((RuntimeObject*)(Type_t *)L_22)))) { goto IL_0057; } } { return (bool)1; } IL_0057: { Type_t * L_23 = V_0; NullCheck(L_23); Type_t * L_24 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_23); V_0 = L_24; } IL_005e: { Type_t * L_25 = V_0; if (L_25) { goto IL_0036; } } { return (bool)0; } } // System.Int32 Sirenix.Serialization.Utilities.TypeExtensions::GetInheritanceDistance(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeExtensions_GetInheritanceDistance_mA4CD051E6DDA83D7C9B20A2E295D8F11979902E2 (Type_t * ___type0, Type_t * ___baseType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetInheritanceDistance_mA4CD051E6DDA83D7C9B20A2E295D8F11979902E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_4 = NULL; int32_t V_5 = 0; { Type_t * L_0 = ___type0; Type_t * L_1 = ___baseType1; NullCheck(L_0); bool L_2 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_0, L_1); if (!L_2) { goto IL_000f; } } { Type_t * L_3 = ___type0; V_1 = L_3; Type_t * L_4 = ___baseType1; V_0 = L_4; goto IL_0059; } IL_000f: { Type_t * L_5 = ___baseType1; Type_t * L_6 = ___type0; NullCheck(L_5); bool L_7 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_5, L_6); if (!L_7) { goto IL_001e; } } { Type_t * L_8 = ___baseType1; V_1 = L_8; Type_t * L_9 = ___type0; V_0 = L_9; goto IL_0059; } IL_001e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10; NullCheck(L_11); ArrayElementTypeCheck (L_11, _stringLiteralE95F262BED1E2FE52C34343F29107BC825DE715F); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE95F262BED1E2FE52C34343F29107BC825DE715F); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = L_11; Type_t * L_13 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_14 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_13, /*hidden argument*/NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_14); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_14); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_15 = L_12; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral4916EC2F580C77A4D1B5E63910F76B907C733A98); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4916EC2F580C77A4D1B5E63910F76B907C733A98); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = L_15; Type_t * L_17 = ___baseType1; String_t* L_18 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_17, /*hidden argument*/NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_18); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_18); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_16; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral679FBC58F69EF78D527B6ECB09782F3FC8200DCD); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral679FBC58F69EF78D527B6ECB09782F3FC8200DCD); String_t* L_20 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_19, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, TypeExtensions_GetInheritanceDistance_mA4CD051E6DDA83D7C9B20A2E295D8F11979902E2_RuntimeMethod_var); } IL_0059: { Type_t * L_22 = V_0; V_2 = L_22; V_3 = 0; Type_t * L_23 = V_1; NullCheck(L_23); bool L_24 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_00b6; } } { goto IL_0099; } IL_0067: { int32_t L_25 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); Type_t * L_26 = V_2; NullCheck(L_26); Type_t * L_27 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_26); V_2 = L_27; Type_t * L_28 = V_2; NullCheck(L_28); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_29 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(45 /* System.Type[] System.Type::GetInterfaces() */, L_28); V_4 = L_29; V_5 = 0; goto IL_0091; } IL_007f: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_30 = V_4; int32_t L_31 = V_5; NullCheck(L_30); int32_t L_32 = L_31; Type_t * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); Type_t * L_34 = V_1; if ((!(((RuntimeObject*)(Type_t *)L_33) == ((RuntimeObject*)(Type_t *)L_34)))) { goto IL_008b; } } { V_2 = (Type_t *)NULL; goto IL_0099; } IL_008b: { int32_t L_35 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); } IL_0091: { int32_t L_36 = V_5; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_37 = V_4; NullCheck(L_37); if ((((int32_t)L_36) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length))))))) { goto IL_007f; } } IL_0099: { Type_t * L_38 = V_2; if (!L_38) { goto IL_00ca; } } { Type_t * L_39 = V_2; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_40 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_41 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_40, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_39) == ((RuntimeObject*)(Type_t *)L_41)))) { goto IL_0067; } } { goto IL_00ca; } IL_00ab: { int32_t L_42 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); Type_t * L_43 = V_2; NullCheck(L_43); Type_t * L_44 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_43); V_2 = L_44; } IL_00b6: { Type_t * L_45 = V_2; Type_t * L_46 = V_1; if ((((RuntimeObject*)(Type_t *)L_45) == ((RuntimeObject*)(Type_t *)L_46))) { goto IL_00ca; } } { Type_t * L_47 = V_2; if (!L_47) { goto IL_00ca; } } { Type_t * L_48 = V_2; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_49, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_48) == ((RuntimeObject*)(Type_t *)L_50)))) { goto IL_00ab; } } IL_00ca: { int32_t L_51 = V_3; return L_51; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::HasParamaters(System.Reflection.MethodInfo,System.Collections.Generic.IList`1<System.Type>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_HasParamaters_m1B4497A11C26B13AFE5721E231483A8E30997FE9 (MethodInfo_t * ___methodInfo0, RuntimeObject* ___paramTypes1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_HasParamaters_m1B4497A11C26B13AFE5721E231483A8E30997FE9_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_0 = NULL; int32_t V_1 = 0; { MethodInfo_t * L_0 = ___methodInfo0; NullCheck(L_0); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_1 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_0); V_0 = L_1; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = V_0; NullCheck(L_2); RuntimeObject* L_3 = ___paramTypes1; NullCheck(L_3); int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Type>::get_Count() */, ICollection_1_tB48ABEDDBCFC95CF586057A60B65E25D630F108C_il2cpp_TypeInfo_var, L_3); if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))) == ((uint32_t)L_4)))) { goto IL_0050; } } { V_1 = 0; goto IL_0048; } IL_0016: { bool L_5 = ___inherit2; if (!L_5) { goto IL_0031; } } { RuntimeObject* L_6 = ___paramTypes1; int32_t L_7 = V_1; NullCheck(L_6); Type_t * L_8 = InterfaceFuncInvoker1< Type_t *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Type>::get_Item(System.Int32) */, IList_1_tCA3E57B304A3039DD84683EFBC19B23C17BF4579_il2cpp_TypeInfo_var, L_6, L_7); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_9 = V_0; int32_t L_10 = V_1; NullCheck(L_9); int32_t L_11 = L_10; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); NullCheck(L_12); Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_12); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_14 = TypeExtensions_InheritsFrom_mE3C31521AF59D77C48BA59744008CFFB79FEF580(L_8, L_13, /*hidden argument*/NULL); if (L_14) { goto IL_0031; } } { return (bool)0; } IL_0031: { ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_15 = V_0; int32_t L_16 = V_1; NullCheck(L_15); int32_t L_17 = L_16; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17)); NullCheck(L_18); Type_t * L_19 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_18); RuntimeObject* L_20 = ___paramTypes1; int32_t L_21 = V_1; NullCheck(L_20); Type_t * L_22 = InterfaceFuncInvoker1< Type_t *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Type>::get_Item(System.Int32) */, IList_1_tCA3E57B304A3039DD84683EFBC19B23C17BF4579_il2cpp_TypeInfo_var, L_20, L_21); if ((((RuntimeObject*)(Type_t *)L_19) == ((RuntimeObject*)(Type_t *)L_22))) { goto IL_0044; } } { return (bool)0; } IL_0044: { int32_t L_23 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0048: { int32_t L_24 = V_1; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_25 = V_0; NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))))) { goto IL_0016; } } { return (bool)1; } IL_0050: { return (bool)0; } } // System.Type Sirenix.Serialization.Utilities.TypeExtensions::GetReturnType(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeExtensions_GetReturnType_m2E7443B4412DA8151730B3D9B4BB40EADC3A7E24 (MemberInfo_t * ___memberInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetReturnType_m2E7443B4412DA8151730B3D9B4BB40EADC3A7E24_MetadataUsageId); s_Il2CppMethodInitialized = true; } FieldInfo_t * V_0 = NULL; PropertyInfo_t * V_1 = NULL; MethodInfo_t * V_2 = NULL; EventInfo_t * V_3 = NULL; { MemberInfo_t * L_0 = ___memberInfo0; V_0 = ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_0, FieldInfo_t_il2cpp_TypeInfo_var)); FieldInfo_t * L_1 = V_0; if (!L_1) { goto IL_0011; } } { FieldInfo_t * L_2 = V_0; NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_2); return L_3; } IL_0011: { MemberInfo_t * L_4 = ___memberInfo0; V_1 = ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var)); PropertyInfo_t * L_5 = V_1; if (!L_5) { goto IL_0022; } } { PropertyInfo_t * L_6 = V_1; NullCheck(L_6); Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_6); return L_7; } IL_0022: { MemberInfo_t * L_8 = ___memberInfo0; V_2 = ((MethodInfo_t *)IsInstClass((RuntimeObject*)L_8, MethodInfo_t_il2cpp_TypeInfo_var)); MethodInfo_t * L_9 = V_2; if (!L_9) { goto IL_0033; } } { MethodInfo_t * L_10 = V_2; NullCheck(L_10); Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_10); return L_11; } IL_0033: { MemberInfo_t * L_12 = ___memberInfo0; V_3 = ((EventInfo_t *)IsInstClass((RuntimeObject*)L_12, EventInfo_t_il2cpp_TypeInfo_var)); EventInfo_t * L_13 = V_3; if (!L_13) { goto IL_0044; } } { EventInfo_t * L_14 = V_3; NullCheck(L_14); Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(16 /* System.Type System.Reflection.EventInfo::get_EventHandlerType() */, L_14); return L_15; } IL_0044: { return (Type_t *)NULL; } } // System.Object Sirenix.Serialization.Utilities.TypeExtensions::GetMemberValue(System.Reflection.MemberInfo,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeExtensions_GetMemberValue_m40346AF69D66B5238B1609008B50478C232DE1D2 (MemberInfo_t * ___member0, RuntimeObject * ___obj1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetMemberValue_m40346AF69D66B5238B1609008B50478C232DE1D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = ___member0; if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_0, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_0015; } } { MemberInfo_t * L_1 = ___member0; RuntimeObject * L_2 = ___obj1; NullCheck(((FieldInfo_t *)IsInstClass((RuntimeObject*)L_1, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_3 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_1, FieldInfo_t_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0015: { MemberInfo_t * L_4 = ___member0; if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0031; } } { MemberInfo_t * L_5 = ___member0; NullCheck(((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var))); MethodInfo_t * L_6 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(22 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var)), (bool)1); RuntimeObject * L_7 = ___obj1; NullCheck(L_6); RuntimeObject * L_8 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_6, L_7, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL); return L_8; } IL_0031: { MemberInfo_t * L_9 = ___member0; NullCheck(L_9); Type_t * L_10 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_9, /*hidden argument*/NULL); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_10); String_t* L_12 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral86CC58E4072965CB033566BC6DAD762C036A6947, L_11, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, TypeExtensions_GetMemberValue_m40346AF69D66B5238B1609008B50478C232DE1D2_RuntimeMethod_var); } } // System.Void Sirenix.Serialization.Utilities.TypeExtensions::SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeExtensions_SetMemberValue_m129CFE227E8094840A8343AA09D389ED0EE43C67 (MemberInfo_t * ___member0, RuntimeObject * ___obj1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_SetMemberValue_m129CFE227E8094840A8343AA09D389ED0EE43C67_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; { MemberInfo_t * L_0 = ___member0; if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_0, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_0016; } } { MemberInfo_t * L_1 = ___member0; RuntimeObject * L_2 = ___obj1; RuntimeObject * L_3 = ___value2; NullCheck(((FieldInfo_t *)IsInstClass((RuntimeObject*)L_1, FieldInfo_t_il2cpp_TypeInfo_var))); FieldInfo_SetValue_m9E7A4FBA27F835B6C26CC09CF609333967150E41(((FieldInfo_t *)IsInstClass((RuntimeObject*)L_1, FieldInfo_t_il2cpp_TypeInfo_var)), L_2, L_3, /*hidden argument*/NULL); return; } IL_0016: { MemberInfo_t * L_4 = ___member0; if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_005c; } } { MemberInfo_t * L_5 = ___member0; NullCheck(((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var))); MethodInfo_t * L_6 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(25 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var)), (bool)1); V_0 = L_6; MethodInfo_t * L_7 = V_0; if (!L_7) { goto IL_0041; } } { MethodInfo_t * L_8 = V_0; RuntimeObject * L_9 = ___obj1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_10; RuntimeObject * L_12 = ___value2; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12); NullCheck(L_8); MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_8, L_9, L_11, /*hidden argument*/NULL); return; } IL_0041: { MemberInfo_t * L_13 = ___member0; NullCheck(L_13); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13); String_t* L_15 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral84A6235784FCCED38AC73D40C3F97ED8FE185EF3, L_14, _stringLiteral639158C4A75A341BED2D81FD5A91F7DA79BB3778, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_16 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, TypeExtensions_SetMemberValue_m129CFE227E8094840A8343AA09D389ED0EE43C67_RuntimeMethod_var); } IL_005c: { MemberInfo_t * L_17 = ___member0; NullCheck(L_17); Type_t * L_18 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_17, /*hidden argument*/NULL); NullCheck(L_18); String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_18); String_t* L_20 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral77A2687FB6DCFC279EFAABE39A5C7F3D6B195FA5, L_19, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, TypeExtensions_SetMemberValue_m129CFE227E8094840A8343AA09D389ED0EE43C67_RuntimeMethod_var); } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::TryInferGenericParameters(System.Type,System.Type[]&,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_TryInferGenericParameters_m3CF6BAD95827B7F8CA64A3318D131E3E4C00AC91 (Type_t * ___genericTypeDefinition0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** ___inferredParams1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___knownParameters2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_TryInferGenericParameters_m3CF6BAD95827B7F8CA64A3318D131E3E4C00AC91_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * V_1 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_2 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; bool V_8 = false; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_9 = NULL; int32_t V_10 = 0; Type_t * V_11 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_12 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_13 = NULL; int32_t V_14 = 0; Type_t * V_15 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_16 = NULL; int32_t V_17 = 0; Type_t * V_18 = NULL; Type_t * V_19 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_20 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_21 = NULL; int32_t V_22 = 0; int32_t V_23 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Type_t * L_0 = ___genericTypeDefinition0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralDE2B18EE7911E29B8BD20595F289062E8150B0D3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_TryInferGenericParameters_m3CF6BAD95827B7F8CA64A3318D131E3E4C00AC91_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___knownParameters2; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralCD83D94FD8A8949897E035426383AA24FC65EB30, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeExtensions_TryInferGenericParameters_m3CF6BAD95827B7F8CA64A3318D131E3E4C00AC91_RuntimeMethod_var); } IL_001c: { Type_t * L_4 = ___genericTypeDefinition0; NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_4); if (L_5) { goto IL_002f; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, _stringLiteral8C89893DF75EA62099F61D3475854B09F3F1FDFB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, TypeExtensions_TryInferGenericParameters_m3CF6BAD95827B7F8CA64A3318D131E3E4C00AC91_RuntimeMethod_var); } IL_002f: { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject * L_7 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericConstraintsSatisfaction_LOCK_3(); V_0 = L_7; RuntimeObject * L_8 = V_0; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_8, /*hidden argument*/NULL); } IL_003b: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_9 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericConstraintsSatisfactionInferredParameters_4(); V_1 = L_9; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_10 = V_1; NullCheck(L_10); Dictionary_2_Clear_mC5E75CA7B533540550384F1C9301ED4AAA5118AC(L_10, /*hidden argument*/Dictionary_2_Clear_mC5E75CA7B533540550384F1C9301ED4AAA5118AC_RuntimeMethod_var); Type_t * L_11 = ___genericTypeDefinition0; NullCheck(L_11); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_11); V_2 = L_12; Type_t * L_13 = ___genericTypeDefinition0; NullCheck(L_13); bool L_14 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_13); if (L_14) { goto IL_00fe; } } IL_0059: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_15 = V_2; V_3 = L_15; Type_t * L_16 = ___genericTypeDefinition0; NullCheck(L_16); Type_t * L_17 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_16); ___genericTypeDefinition0 = L_17; Type_t * L_18 = ___genericTypeDefinition0; NullCheck(L_18); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_18); V_2 = L_19; V_4 = 0; V_5 = 0; goto IL_00af; } IL_0072: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = V_3; int32_t L_21 = V_5; NullCheck(L_20); int32_t L_22 = L_21; Type_t * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); NullCheck(L_23); bool L_24 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_23); if (L_24) { goto IL_00a3; } } IL_007d: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = V_3; int32_t L_26 = V_5; NullCheck(L_25); int32_t L_27 = L_26; Type_t * L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27)); NullCheck(L_28); bool L_29 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_28); if (!L_29) { goto IL_0093; } } IL_0088: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); int32_t L_32 = L_31; Type_t * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_34 = TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC(L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_00a3; } } IL_0093: { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_35 = V_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_36 = V_2; int32_t L_37 = V_5; NullCheck(L_36); int32_t L_38 = L_37; Type_t * L_39 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38)); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_40 = V_3; int32_t L_41 = V_5; NullCheck(L_40); int32_t L_42 = L_41; Type_t * L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42)); NullCheck(L_35); Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846(L_35, L_39, L_43, /*hidden argument*/Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846_RuntimeMethod_var); goto IL_00a9; } IL_00a3: { int32_t L_44 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00a9: { int32_t L_45 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1)); } IL_00af: { int32_t L_46 = V_5; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_47 = V_3; NullCheck(L_47); if ((((int32_t)L_46) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length))))))) { goto IL_0072; } } IL_00b6: { int32_t L_48 = V_4; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_49 = ___knownParameters2; NullCheck(L_49); if ((!(((uint32_t)L_48) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))))) { goto IL_00fe; } } IL_00bd: { V_6 = 0; V_7 = 0; goto IL_00e3; } IL_00c5: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_50 = V_3; int32_t L_51 = V_7; NullCheck(L_50); int32_t L_52 = L_51; Type_t * L_53 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_52)); NullCheck(L_53); bool L_54 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_53); if (!L_54) { goto IL_00dd; } } IL_00d0: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_55 = V_3; int32_t L_56 = V_7; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_57 = ___knownParameters2; int32_t L_58 = V_6; int32_t L_59 = L_58; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1)); NullCheck(L_57); int32_t L_60 = L_59; Type_t * L_61 = (L_57)->GetAt(static_cast<il2cpp_array_size_t>(L_60)); NullCheck(L_55); ArrayElementTypeCheck (L_55, L_61); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (Type_t *)L_61); } IL_00dd: { int32_t L_62 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1)); } IL_00e3: { int32_t L_63 = V_7; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_64 = V_3; NullCheck(L_64); if ((((int32_t)L_63) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_64)->max_length))))))) { goto IL_00c5; } } IL_00ea: { Type_t * L_65 = ___genericTypeDefinition0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_66 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_67 = TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44(L_65, L_66, /*hidden argument*/NULL); if (!L_67) { goto IL_00fe; } } IL_00f3: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** L_68 = ___inferredParams1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_69 = V_3; *((RuntimeObject **)L_68) = (RuntimeObject *)L_69; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_68, (void*)(RuntimeObject *)L_69); V_8 = (bool)1; IL2CPP_LEAVE(0x2A7, FINALLY_02a0); } IL_00fe: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_70 = V_2; NullCheck(L_70); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_71 = ___knownParameters2; NullCheck(L_71); if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_71)->max_length)))))))) { goto IL_011a; } } IL_0106: { Type_t * L_72 = ___genericTypeDefinition0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_73 = ___knownParameters2; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_74 = TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44(L_72, L_73, /*hidden argument*/NULL); if (!L_74) { goto IL_011a; } } IL_010f: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** L_75 = ___inferredParams1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_76 = ___knownParameters2; *((RuntimeObject **)L_75) = (RuntimeObject *)L_76; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_75, (void*)(RuntimeObject *)L_76); V_8 = (bool)1; IL2CPP_LEAVE(0x2A7, FINALLY_02a0); } IL_011a: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_77 = V_2; V_9 = L_77; V_10 = 0; goto IL_0245; } IL_0125: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_78 = V_9; int32_t L_79 = V_10; NullCheck(L_78); int32_t L_80 = L_79; Type_t * L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80)); V_11 = L_81; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_82 = V_1; Type_t * L_83 = V_11; NullCheck(L_82); bool L_84 = Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7(L_82, L_83, /*hidden argument*/Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7_RuntimeMethod_var); if (L_84) { goto IL_023f; } } IL_0139: { Type_t * L_85 = V_11; NullCheck(L_85); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_86 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(86 /* System.Type[] System.Type::GetGenericParameterConstraints() */, L_85); V_12 = L_86; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_87 = V_12; V_13 = L_87; V_14 = 0; goto IL_0234; } IL_014e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_88 = V_13; int32_t L_89 = V_14; NullCheck(L_88); int32_t L_90 = L_89; Type_t * L_91 = (L_88)->GetAt(static_cast<il2cpp_array_size_t>(L_90)); V_15 = L_91; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_92 = ___knownParameters2; V_16 = L_92; V_17 = 0; goto IL_0223; } IL_0160: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_93 = V_16; int32_t L_94 = V_17; NullCheck(L_93); int32_t L_95 = L_94; Type_t * L_96 = (L_93)->GetAt(static_cast<il2cpp_array_size_t>(L_95)); V_18 = L_96; Type_t * L_97 = V_15; NullCheck(L_97); bool L_98 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_97); if (!L_98) { goto IL_021d; } } IL_0173: { Type_t * L_99 = V_15; NullCheck(L_99); Type_t * L_100 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_99); V_19 = L_100; Type_t * L_101 = V_15; NullCheck(L_101); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_102 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_101); V_20 = L_102; Type_t * L_103 = V_18; NullCheck(L_103); bool L_104 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_103); if (!L_104) { goto IL_01a4; } } IL_018e: { Type_t * L_105 = V_19; Type_t * L_106 = V_18; NullCheck(L_106); Type_t * L_107 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_106); if ((!(((RuntimeObject*)(Type_t *)L_105) == ((RuntimeObject*)(Type_t *)L_107)))) { goto IL_01a4; } } IL_0199: { Type_t * L_108 = V_18; NullCheck(L_108); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_109 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_108); V_21 = L_109; goto IL_01e4; } IL_01a4: { Type_t * L_110 = V_19; NullCheck(L_110); bool L_111 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_110, /*hidden argument*/NULL); if (!L_111) { goto IL_01c5; } } IL_01ad: { Type_t * L_112 = V_18; Type_t * L_113 = V_19; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_114 = TypeExtensions_ImplementsOpenGenericInterface_mC328F85F1D7E0EA9DBB75953F6BBA5A67DF5C08A(L_112, L_113, /*hidden argument*/NULL); if (!L_114) { goto IL_01c5; } } IL_01b8: { Type_t * L_115 = V_18; Type_t * L_116 = V_19; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_117 = TypeExtensions_GetArgumentsOfInheritedOpenGenericInterface_m0F0224E6428E8E7103DA2795E3AD67BA8E091725(L_115, L_116, /*hidden argument*/NULL); V_21 = L_117; goto IL_01e4; } IL_01c5: { Type_t * L_118 = V_19; NullCheck(L_118); bool L_119 = Type_get_IsClass_m760C57B1D66D7CBF284495764BB7EFC6E7D74B0F(L_118, /*hidden argument*/NULL); if (!L_119) { goto IL_021d; } } IL_01ce: { Type_t * L_120 = V_18; Type_t * L_121 = V_19; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_122 = TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B(L_120, L_121, /*hidden argument*/NULL); if (!L_122) { goto IL_021d; } } IL_01d9: { Type_t * L_123 = V_18; Type_t * L_124 = V_19; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_125 = TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB(L_123, L_124, /*hidden argument*/NULL); V_21 = L_125; } IL_01e4: { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_126 = V_1; Type_t * L_127 = V_11; Type_t * L_128 = V_18; NullCheck(L_126); Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846(L_126, L_127, L_128, /*hidden argument*/Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846_RuntimeMethod_var); V_22 = 0; goto IL_0215; } IL_01f3: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_129 = V_20; int32_t L_130 = V_22; NullCheck(L_129); int32_t L_131 = L_130; Type_t * L_132 = (L_129)->GetAt(static_cast<il2cpp_array_size_t>(L_131)); NullCheck(L_132); bool L_133 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_132); if (!L_133) { goto IL_020f; } } IL_01ff: { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_134 = V_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_135 = V_20; int32_t L_136 = V_22; NullCheck(L_135); int32_t L_137 = L_136; Type_t * L_138 = (L_135)->GetAt(static_cast<il2cpp_array_size_t>(L_137)); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_139 = V_21; int32_t L_140 = V_22; NullCheck(L_139); int32_t L_141 = L_140; Type_t * L_142 = (L_139)->GetAt(static_cast<il2cpp_array_size_t>(L_141)); NullCheck(L_134); Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846(L_134, L_138, L_142, /*hidden argument*/Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846_RuntimeMethod_var); } IL_020f: { int32_t L_143 = V_22; V_22 = ((int32_t)il2cpp_codegen_add((int32_t)L_143, (int32_t)1)); } IL_0215: { int32_t L_144 = V_22; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_145 = V_20; NullCheck(L_145); if ((((int32_t)L_144) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_145)->max_length))))))) { goto IL_01f3; } } IL_021d: { int32_t L_146 = V_17; V_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_146, (int32_t)1)); } IL_0223: { int32_t L_147 = V_17; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_148 = V_16; NullCheck(L_148); if ((((int32_t)L_147) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_148)->max_length))))))) { goto IL_0160; } } IL_022e: { int32_t L_149 = V_14; V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_149, (int32_t)1)); } IL_0234: { int32_t L_150 = V_14; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_151 = V_13; NullCheck(L_151); if ((((int32_t)L_150) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_151)->max_length))))))) { goto IL_014e; } } IL_023f: { int32_t L_152 = V_10; V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_152, (int32_t)1)); } IL_0245: { int32_t L_153 = V_10; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_154 = V_9; NullCheck(L_154); if ((((int32_t)L_153) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_154)->max_length))))))) { goto IL_0125; } } IL_0250: { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_155 = V_1; NullCheck(L_155); int32_t L_156 = Dictionary_2_get_Count_mCDBF8C6612DD8269CA45EFC0D29A21FF99D2C2B8(L_155, /*hidden argument*/Dictionary_2_get_Count_mCDBF8C6612DD8269CA45EFC0D29A21FF99D2C2B8_RuntimeMethod_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_157 = V_2; NullCheck(L_157); if ((!(((uint32_t)L_156) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_157)->max_length)))))))) { goto IL_0298; } } IL_025b: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** L_158 = ___inferredParams1; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_159 = V_1; NullCheck(L_159); int32_t L_160 = Dictionary_2_get_Count_mCDBF8C6612DD8269CA45EFC0D29A21FF99D2C2B8(L_159, /*hidden argument*/Dictionary_2_get_Count_mCDBF8C6612DD8269CA45EFC0D29A21FF99D2C2B8_RuntimeMethod_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_161 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)L_160); *((RuntimeObject **)L_158) = (RuntimeObject *)L_161; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_158, (void*)(RuntimeObject *)L_161); V_23 = 0; goto IL_0282; } IL_026d: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** L_162 = ___inferredParams1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_163 = *((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F**)L_162); int32_t L_164 = V_23; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_165 = V_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_166 = V_2; int32_t L_167 = V_23; NullCheck(L_166); int32_t L_168 = L_167; Type_t * L_169 = (L_166)->GetAt(static_cast<il2cpp_array_size_t>(L_168)); NullCheck(L_165); Type_t * L_170 = Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B(L_165, L_169, /*hidden argument*/Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B_RuntimeMethod_var); NullCheck(L_163); ArrayElementTypeCheck (L_163, L_170); (L_163)->SetAt(static_cast<il2cpp_array_size_t>(L_164), (Type_t *)L_170); int32_t L_171 = V_23; V_23 = ((int32_t)il2cpp_codegen_add((int32_t)L_171, (int32_t)1)); } IL_0282: { int32_t L_172 = V_23; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_173 = V_2; NullCheck(L_173); if ((((int32_t)L_172) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_173)->max_length))))))) { goto IL_026d; } } IL_0289: { Type_t * L_174 = ___genericTypeDefinition0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** L_175 = ___inferredParams1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_176 = *((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F**)L_175); IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_177 = TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44(L_174, L_176, /*hidden argument*/NULL); if (!L_177) { goto IL_0298; } } IL_0293: { V_8 = (bool)1; IL2CPP_LEAVE(0x2A7, FINALLY_02a0); } IL_0298: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** L_178 = ___inferredParams1; *((RuntimeObject **)L_178) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_178, (void*)(RuntimeObject *)NULL); V_8 = (bool)0; IL2CPP_LEAVE(0x2A7, FINALLY_02a0); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_02a0; } FINALLY_02a0: { // begin finally (depth: 1) RuntimeObject * L_179 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_179, /*hidden argument*/NULL); IL2CPP_END_FINALLY(672) } // end finally (depth: 1) IL2CPP_CLEANUP(672) { IL2CPP_JUMP_TBL(0x2A7, IL_02a7) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_02a7: { bool L_180 = V_8; return L_180; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::AreGenericConstraintsSatisfiedBy(System.Type,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44 (Type_t * ___genericType0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___parameters1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___genericType0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8497A104F96BB0AEEE19714934988FAC19477AC9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___parameters1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralF1F1425B65E5770C87BE308DD6BFEE4B3FA1B113, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44_RuntimeMethod_var); } IL_001c: { Type_t * L_4 = ___genericType0; NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_4); if (L_5) { goto IL_002f; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, _stringLiteral8C89893DF75EA62099F61D3475854B09F3F1FDFB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, TypeExtensions_AreGenericConstraintsSatisfiedBy_m431FC7F9C117450C3BBEE516C412843C5EDA7A44_RuntimeMethod_var); } IL_002f: { Type_t * L_7 = ___genericType0; NullCheck(L_7); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_7); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = ___parameters1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_10 = TypeExtensions_AreGenericConstraintsSatisfiedBy_m8B58F22F37363C01AB0A430DCEF06884F35149B8(L_8, L_9, /*hidden argument*/NULL); return L_10; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::AreGenericConstraintsSatisfiedBy(System.Reflection.MethodBase,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_AreGenericConstraintsSatisfiedBy_m745C466D9303B67013F6153FA02095333EFC8DD6 (MethodBase_t * ___genericMethod0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___parameters1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_AreGenericConstraintsSatisfiedBy_m745C466D9303B67013F6153FA02095333EFC8DD6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MethodBase_t * L_0 = ___genericMethod0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral84F8B552B515B3378688E6588D688C8BA82EB363, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_AreGenericConstraintsSatisfiedBy_m745C466D9303B67013F6153FA02095333EFC8DD6_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___parameters1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralF1F1425B65E5770C87BE308DD6BFEE4B3FA1B113, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeExtensions_AreGenericConstraintsSatisfiedBy_m745C466D9303B67013F6153FA02095333EFC8DD6_RuntimeMethod_var); } IL_001c: { MethodBase_t * L_4 = ___genericMethod0; NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethod() */, L_4); if (L_5) { goto IL_002f; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, _stringLiteral38665A40D3B3760E2A62498B8AB65539B8B7C5C3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, TypeExtensions_AreGenericConstraintsSatisfiedBy_m745C466D9303B67013F6153FA02095333EFC8DD6_RuntimeMethod_var); } IL_002f: { MethodBase_t * L_7 = ___genericMethod0; NullCheck(L_7); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(23 /* System.Type[] System.Reflection.MethodBase::GetGenericArguments() */, L_7); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = ___parameters1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_10 = TypeExtensions_AreGenericConstraintsSatisfiedBy_m8B58F22F37363C01AB0A430DCEF06884F35149B8(L_8, L_9, /*hidden argument*/NULL); return L_10; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::AreGenericConstraintsSatisfiedBy(System.Type[],System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_AreGenericConstraintsSatisfiedBy_m8B58F22F37363C01AB0A430DCEF06884F35149B8 (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___definitions0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___parameters1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_AreGenericConstraintsSatisfiedBy_m8B58F22F37363C01AB0A430DCEF06884F35149B8_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * V_1 = NULL; int32_t V_2 = 0; Type_t * V_3 = NULL; Type_t * V_4 = NULL; bool V_5 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___definitions0; NullCheck(L_0); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = ___parameters1; NullCheck(L_1); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))) { goto IL_000a; } } { return (bool)0; } IL_000a: { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject * L_2 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericConstraintsSatisfaction_LOCK_3(); V_0 = L_2; RuntimeObject * L_3 = V_0; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_3, /*hidden argument*/NULL); } IL_0016: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_4 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericConstraintsSatisfactionResolvedMap_5(); V_1 = L_4; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_5 = V_1; NullCheck(L_5); Dictionary_2_Clear_mC5E75CA7B533540550384F1C9301ED4AAA5118AC(L_5, /*hidden argument*/Dictionary_2_Clear_mC5E75CA7B533540550384F1C9301ED4AAA5118AC_RuntimeMethod_var); V_2 = 0; goto IL_0044; } IL_0026: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = ___definitions0; int32_t L_7 = V_2; NullCheck(L_6); int32_t L_8 = L_7; Type_t * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); V_3 = L_9; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = ___parameters1; int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; Type_t * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); V_4 = L_13; Type_t * L_14 = V_3; Type_t * L_15 = V_4; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_16 = V_1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_17 = TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871(L_14, L_15, L_16, (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)NULL, /*hidden argument*/NULL); if (L_17) { goto IL_0040; } } IL_003b: { V_5 = (bool)0; IL2CPP_LEAVE(0x56, FINALLY_004f); } IL_0040: { int32_t L_18 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0044: { int32_t L_19 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = ___definitions0; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))))) { goto IL_0026; } } IL_004a: { V_5 = (bool)1; IL2CPP_LEAVE(0x56, FINALLY_004f); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_004f; } FINALLY_004f: { // begin finally (depth: 1) RuntimeObject * L_21 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_21, /*hidden argument*/NULL); IL2CPP_END_FINALLY(79) } // end finally (depth: 1) IL2CPP_CLEANUP(79) { IL2CPP_JUMP_TBL(0x56, IL_0056) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0056: { bool L_22 = V_5; return L_22; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::GenericParameterIsFulfilledBy(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_GenericParameterIsFulfilledBy_m8AD725442EA406DF5D9472B1FA5469889F9E7293 (Type_t * ___genericParameterDefinition0, Type_t * ___parameterType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GenericParameterIsFulfilledBy_m8AD725442EA406DF5D9472B1FA5469889F9E7293_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericConstraintsSatisfaction_LOCK_3(); V_0 = L_0; RuntimeObject * L_1 = V_0; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_1, /*hidden argument*/NULL); } IL_000c: try { // begin try (depth: 1) IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_2 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericConstraintsSatisfactionResolvedMap_5(); NullCheck(L_2); Dictionary_2_Clear_mC5E75CA7B533540550384F1C9301ED4AAA5118AC(L_2, /*hidden argument*/Dictionary_2_Clear_mC5E75CA7B533540550384F1C9301ED4AAA5118AC_RuntimeMethod_var); Type_t * L_3 = ___genericParameterDefinition0; Type_t * L_4 = ___parameterType1; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_5 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericConstraintsSatisfactionResolvedMap_5(); bool L_6 = TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871(L_3, L_4, L_5, (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)NULL, /*hidden argument*/NULL); V_1 = L_6; IL2CPP_LEAVE(0x2D, FINALLY_0026); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0026; } FINALLY_0026: { // begin finally (depth: 1) RuntimeObject * L_7 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL); IL2CPP_END_FINALLY(38) } // end finally (depth: 1) IL2CPP_CLEANUP(38) { IL2CPP_JUMP_TBL(0x2D, IL_002d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_002d: { bool L_8 = V_1; return L_8; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::GenericParameterIsFulfilledBy(System.Type,System.Type,System.Collections.Generic.Dictionary`2<System.Type,System.Type>,System.Collections.Generic.HashSet`1<System.Type>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871 (Type_t * ___genericParameterDefinition0, Type_t * ___parameterType1, Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * ___resolvedMap2, HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * ___processedParams3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL; int32_t V_2 = 0; Type_t * V_3 = NULL; Type_t * V_4 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_5 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_6 = NULL; int32_t V_7 = 0; Type_t * V_8 = NULL; Type_t * V_9 = NULL; { Type_t * L_0 = ___genericParameterDefinition0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8D0B0970628C4F47572136C2B0C19CE699D59C36, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = ___parameterType1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral6401B5D75D8795DDAC107B6C4081E4A24B23C49B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871_RuntimeMethod_var); } IL_001c: { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_4 = ___resolvedMap2; if (L_4) { goto IL_002a; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralDFB660BB10289E54C5F9C5C9663650773F680C02, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871_RuntimeMethod_var); } IL_002a: { Type_t * L_6 = ___genericParameterDefinition0; NullCheck(L_6); bool L_7 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_6); if (L_7) { goto IL_0038; } } { Type_t * L_8 = ___genericParameterDefinition0; Type_t * L_9 = ___parameterType1; if ((!(((RuntimeObject*)(Type_t *)L_8) == ((RuntimeObject*)(Type_t *)L_9)))) { goto IL_0038; } } { return (bool)1; } IL_0038: { Type_t * L_10 = ___genericParameterDefinition0; NullCheck(L_10); bool L_11 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_10); if (L_11) { goto IL_0042; } } { return (bool)0; } IL_0042: { HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_12 = ___processedParams3; if (L_12) { goto IL_0052; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_13 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericConstraintsSatisfactionProcessedParams_6(); ___processedParams3 = L_13; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_14 = ___processedParams3; NullCheck(L_14); HashSet_1_Clear_mF99B6395A097563394084CD017E28873027EC35F(L_14, /*hidden argument*/HashSet_1_Clear_mF99B6395A097563394084CD017E28873027EC35F_RuntimeMethod_var); } IL_0052: { HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_15 = ___processedParams3; Type_t * L_16 = ___genericParameterDefinition0; NullCheck(L_15); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_15, L_16, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); Type_t * L_17 = ___genericParameterDefinition0; NullCheck(L_17); int32_t L_18 = VirtFuncInvoker0< int32_t >::Invoke(65 /* System.Reflection.GenericParameterAttributes System.Type::get_GenericParameterAttributes() */, L_17); V_0 = L_18; int32_t L_19 = V_0; if (!L_19) { goto IL_00c5; } } { int32_t L_20 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_20&(int32_t)8))) == ((uint32_t)8)))) { goto IL_008e; } } { Type_t * L_21 = ___parameterType1; NullCheck(L_21); bool L_22 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_008c; } } { Type_t * L_23 = ___parameterType1; NullCheck(L_23); bool L_24 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_23); if (!L_24) { goto IL_009e; } } { Type_t * L_25 = ___parameterType1; NullCheck(L_25); Type_t * L_26 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_25); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_26) == ((RuntimeObject*)(Type_t *)L_28)))) { goto IL_009e; } } IL_008c: { return (bool)0; } IL_008e: { int32_t L_29 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_29&(int32_t)4))) == ((uint32_t)4)))) { goto IL_009e; } } { Type_t * L_30 = ___parameterType1; NullCheck(L_30); bool L_31 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_009e; } } { return (bool)0; } IL_009e: { int32_t L_32 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_32&(int32_t)((int32_t)16)))) == ((uint32_t)((int32_t)16))))) { goto IL_00c5; } } { Type_t * L_33 = ___parameterType1; NullCheck(L_33); bool L_34 = Type_get_IsAbstract_m769E8E92F368822B8AB5354BB0D123BDDD605D09(L_33, /*hidden argument*/NULL); if (L_34) { goto IL_00c3; } } { Type_t * L_35 = ___parameterType1; NullCheck(L_35); bool L_36 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_35, /*hidden argument*/NULL); if (L_36) { goto IL_00c5; } } { Type_t * L_37 = ___parameterType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_38 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); NullCheck(L_37); ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_39 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_37, L_38, /*hidden argument*/NULL); if (L_39) { goto IL_00c5; } } IL_00c3: { return (bool)0; } IL_00c5: { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_40 = ___resolvedMap2; Type_t * L_41 = ___genericParameterDefinition0; NullCheck(L_40); bool L_42 = Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7(L_40, L_41, /*hidden argument*/Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7_RuntimeMethod_var); if (!L_42) { goto IL_00df; } } { Type_t * L_43 = ___parameterType1; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_44 = ___resolvedMap2; Type_t * L_45 = ___genericParameterDefinition0; NullCheck(L_44); Type_t * L_46 = Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B(L_44, L_45, /*hidden argument*/Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B_RuntimeMethod_var); NullCheck(L_43); bool L_47 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_43, L_46); if (L_47) { goto IL_00df; } } { return (bool)0; } IL_00df: { Type_t * L_48 = ___genericParameterDefinition0; NullCheck(L_48); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_49 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(86 /* System.Type[] System.Type::GetGenericParameterConstraints() */, L_48); V_1 = L_49; V_2 = 0; goto IL_0247; } IL_00ed: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_50 = V_1; int32_t L_51 = V_2; NullCheck(L_50); int32_t L_52 = L_51; Type_t * L_53 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_52)); V_3 = L_53; Type_t * L_54 = V_3; NullCheck(L_54); bool L_55 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_54); if (!L_55) { goto IL_010a; } } { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_56 = ___resolvedMap2; Type_t * L_57 = V_3; NullCheck(L_56); bool L_58 = Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7(L_56, L_57, /*hidden argument*/Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7_RuntimeMethod_var); if (!L_58) { goto IL_010a; } } { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_59 = ___resolvedMap2; Type_t * L_60 = V_3; NullCheck(L_59); Type_t * L_61 = Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B(L_59, L_60, /*hidden argument*/Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B_RuntimeMethod_var); V_3 = L_61; } IL_010a: { Type_t * L_62 = V_3; NullCheck(L_62); bool L_63 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_62); if (!L_63) { goto IL_0122; } } { Type_t * L_64 = V_3; Type_t * L_65 = ___parameterType1; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_66 = ___resolvedMap2; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_67 = ___processedParams3; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_68 = TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871(L_64, L_65, L_66, L_67, /*hidden argument*/NULL); if (L_68) { goto IL_0243; } } { return (bool)0; } IL_0122: { Type_t * L_69 = V_3; NullCheck(L_69); bool L_70 = Type_get_IsClass_m760C57B1D66D7CBF284495764BB7EFC6E7D74B0F(L_69, /*hidden argument*/NULL); if (L_70) { goto IL_013d; } } { Type_t * L_71 = V_3; NullCheck(L_71); bool L_72 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_71, /*hidden argument*/NULL); if (L_72) { goto IL_013d; } } { Type_t * L_73 = V_3; NullCheck(L_73); bool L_74 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_73, /*hidden argument*/NULL); if (!L_74) { goto IL_022d; } } IL_013d: { Type_t * L_75 = V_3; NullCheck(L_75); bool L_76 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_75); if (!L_76) { goto IL_0222; } } { Type_t * L_77 = V_3; NullCheck(L_77); Type_t * L_78 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_77); V_4 = L_78; Type_t * L_79 = V_3; NullCheck(L_79); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_80 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_79); V_5 = L_80; Type_t * L_81 = ___parameterType1; NullCheck(L_81); bool L_82 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_81); if (!L_82) { goto IL_0174; } } { Type_t * L_83 = V_4; Type_t * L_84 = ___parameterType1; NullCheck(L_84); Type_t * L_85 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_84); if ((!(((RuntimeObject*)(Type_t *)L_83) == ((RuntimeObject*)(Type_t *)L_85)))) { goto IL_0174; } } { Type_t * L_86 = ___parameterType1; NullCheck(L_86); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_87 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_86); V_6 = L_87; goto IL_01ad; } IL_0174: { Type_t * L_88 = V_4; NullCheck(L_88); bool L_89 = Type_get_IsClass_m760C57B1D66D7CBF284495764BB7EFC6E7D74B0F(L_88, /*hidden argument*/NULL); if (!L_89) { goto IL_0195; } } { Type_t * L_90 = ___parameterType1; Type_t * L_91 = V_4; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_92 = TypeExtensions_ImplementsOpenGenericClass_mB36DA21005EA8A53C6C814DFA8DEE7F4DE473E1B(L_90, L_91, /*hidden argument*/NULL); if (!L_92) { goto IL_0193; } } { Type_t * L_93 = ___parameterType1; Type_t * L_94 = V_4; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_95 = TypeExtensions_GetArgumentsOfInheritedOpenGenericClass_m15AC6A2CBC17AC05AD1B0B52AB1C5296DC674ACB(L_93, L_94, /*hidden argument*/NULL); V_6 = L_95; goto IL_01ad; } IL_0193: { return (bool)0; } IL_0195: { Type_t * L_96 = ___parameterType1; Type_t * L_97 = V_4; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_98 = TypeExtensions_ImplementsOpenGenericInterface_mC328F85F1D7E0EA9DBB75953F6BBA5A67DF5C08A(L_96, L_97, /*hidden argument*/NULL); if (!L_98) { goto IL_01ab; } } { Type_t * L_99 = ___parameterType1; Type_t * L_100 = V_4; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_101 = TypeExtensions_GetArgumentsOfInheritedOpenGenericInterface_m0F0224E6428E8E7103DA2795E3AD67BA8E091725(L_99, L_100, /*hidden argument*/NULL); V_6 = L_101; goto IL_01ad; } IL_01ab: { return (bool)0; } IL_01ad: { V_7 = 0; goto IL_0218; } IL_01b2: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_102 = V_5; int32_t L_103 = V_7; NullCheck(L_102); int32_t L_104 = L_103; Type_t * L_105 = (L_102)->GetAt(static_cast<il2cpp_array_size_t>(L_104)); V_8 = L_105; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_106 = V_6; int32_t L_107 = V_7; NullCheck(L_106); int32_t L_108 = L_107; Type_t * L_109 = (L_106)->GetAt(static_cast<il2cpp_array_size_t>(L_108)); V_9 = L_109; Type_t * L_110 = V_8; NullCheck(L_110); bool L_111 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_110); if (!L_111) { goto IL_01dd; } } { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_112 = ___resolvedMap2; Type_t * L_113 = V_8; NullCheck(L_112); bool L_114 = Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7(L_112, L_113, /*hidden argument*/Dictionary_2_ContainsKey_m4148C30AA8D8E87896E09A37E2A1AE45D0CEDAD7_RuntimeMethod_var); if (!L_114) { goto IL_01dd; } } { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_115 = ___resolvedMap2; Type_t * L_116 = V_8; NullCheck(L_115); Type_t * L_117 = Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B(L_115, L_116, /*hidden argument*/Dictionary_2_get_Item_m4A07751DD207E1CDEC92DD92FD7BE06E018D609B_RuntimeMethod_var); V_8 = L_117; } IL_01dd: { Type_t * L_118 = V_8; NullCheck(L_118); bool L_119 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_118); if (!L_119) { goto IL_01ff; } } { HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_120 = ___processedParams3; Type_t * L_121 = V_8; NullCheck(L_120); bool L_122 = HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED(L_120, L_121, /*hidden argument*/HashSet_1_Contains_mBC5E03D78E4508DF583DDF8329ECE852C9C89BED_RuntimeMethod_var); if (L_122) { goto IL_0212; } } { Type_t * L_123 = V_8; Type_t * L_124 = V_9; Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_125 = ___resolvedMap2; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_126 = ___processedParams3; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_127 = TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871(L_123, L_124, L_125, L_126, /*hidden argument*/NULL); if (L_127) { goto IL_0212; } } { return (bool)0; } IL_01ff: { Type_t * L_128 = V_8; Type_t * L_129 = V_9; if ((((RuntimeObject*)(Type_t *)L_128) == ((RuntimeObject*)(Type_t *)L_129))) { goto IL_0212; } } { Type_t * L_130 = V_8; Type_t * L_131 = V_9; NullCheck(L_130); bool L_132 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_130, L_131); if (L_132) { goto IL_0212; } } { return (bool)0; } IL_0212: { int32_t L_133 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_133, (int32_t)1)); } IL_0218: { int32_t L_134 = V_7; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_135 = V_5; NullCheck(L_135); if ((((int32_t)L_134) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_135)->max_length))))))) { goto IL_01b2; } } { goto IL_0243; } IL_0222: { Type_t * L_136 = V_3; Type_t * L_137 = ___parameterType1; NullCheck(L_136); bool L_138 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_136, L_137); if (L_138) { goto IL_0243; } } { return (bool)0; } IL_022d: { Type_t * L_139 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_140 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_139, /*hidden argument*/NULL); String_t* L_141 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral13B4B741279EEFA62903F5C03D524F958A96D3B7, L_140, /*hidden argument*/NULL); Exception_t * L_142 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(L_142, L_141, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_142, TypeExtensions_GenericParameterIsFulfilledBy_mCF59C19D8C7DE87769CC6DA808BD4468E7DDA871_RuntimeMethod_var); } IL_0243: { int32_t L_143 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_143, (int32_t)1)); } IL_0247: { int32_t L_144 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_145 = V_1; NullCheck(L_145); if ((((int32_t)L_144) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_145)->max_length))))))) { goto IL_00ed; } } { Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_146 = ___resolvedMap2; Type_t * L_147 = ___genericParameterDefinition0; Type_t * L_148 = ___parameterType1; NullCheck(L_146); Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846(L_146, L_147, L_148, /*hidden argument*/Dictionary_2_set_Item_m37657FA01F2B208D8487AA6AAA2392113427C846_RuntimeMethod_var); return (bool)1; } } // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetGenericConstraintsString(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetGenericConstraintsString_m48AF12321F2078DBED84C2752972873FE1A98F2F (Type_t * ___type0, bool ___useFullTypeNames1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetGenericConstraintsString_m48AF12321F2078DBED84C2752972873FE1A98F2F_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; int32_t V_2 = 0; { Type_t * L_0 = ___type0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_GetGenericConstraintsString_m48AF12321F2078DBED84C2752972873FE1A98F2F_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = ___type0; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_2); if (L_3) { goto IL_0031; } } { Type_t * L_4 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_5 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_4, /*hidden argument*/NULL); String_t* L_6 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralBA116CF06D94D1851DD437DF3914E487FD3FE2E2, L_5, _stringLiteralDFD51F1582E947E73EA538109E860B58D986B653, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TypeExtensions_GetGenericConstraintsString_m48AF12321F2078DBED84C2752972873FE1A98F2F_RuntimeMethod_var); } IL_0031: { Type_t * L_8 = ___type0; NullCheck(L_8); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_8); V_0 = L_9; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = V_0; NullCheck(L_10); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))); V_1 = L_11; V_2 = 0; goto IL_0055; } IL_0045: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = V_1; int32_t L_13 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = V_0; int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; Type_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); bool L_18 = ___useFullTypeNames1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_19 = TypeExtensions_GetGenericParameterConstraintsString_m65F62F38431EEFD27A98CCD57474F1077939AA68(L_17, L_18, /*hidden argument*/NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_19); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (String_t*)L_19); int32_t L_20 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0055: { int32_t L_21 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_22 = V_0; NullCheck(L_22); if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))) { goto IL_0045; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = V_1; String_t* L_24 = String_Join_m49371BED70248F0FCE970CB4F2E39E9A688AAFA4(_stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, L_23, /*hidden argument*/NULL); return L_24; } } // System.String Sirenix.Serialization.Utilities.TypeExtensions::GetGenericParameterConstraintsString(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeExtensions_GetGenericParameterConstraintsString_m65F62F38431EEFD27A98CCD57474F1077939AA68 (Type_t * ___type0, bool ___useFullTypeNames1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetGenericParameterConstraintsString_m65F62F38431EEFD27A98CCD57474F1077939AA68_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_3 = NULL; int32_t V_4 = 0; Type_t * V_5 = NULL; { Type_t * L_0 = ___type0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_GetGenericParameterConstraintsString_m65F62F38431EEFD27A98CCD57474F1077939AA68_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = ___type0; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_2); if (L_3) { goto IL_0031; } } { Type_t * L_4 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_5 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_4, /*hidden argument*/NULL); String_t* L_6 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralBA116CF06D94D1851DD437DF3914E487FD3FE2E2, L_5, _stringLiteral2077CAAF1ADE2A5DD1F751B410D033667BDC3060, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TypeExtensions_GetGenericParameterConstraintsString_m65F62F38431EEFD27A98CCD57474F1077939AA68_RuntimeMethod_var); } IL_0031: { StringBuilder_t * L_8 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_8, /*hidden argument*/NULL); V_0 = L_8; V_1 = (bool)0; Type_t * L_9 = ___type0; NullCheck(L_9); int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(65 /* System.Reflection.GenericParameterAttributes System.Type::get_GenericParameterAttributes() */, L_9); V_2 = L_10; int32_t L_11 = V_2; if ((!(((uint32_t)((int32_t)((int32_t)L_11&(int32_t)8))) == ((uint32_t)8)))) { goto IL_006b; } } { StringBuilder_t * L_12 = V_0; NullCheck(L_12); StringBuilder_t * L_13 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, _stringLiteral1E19EF4AFB2390E544B29512E9956A40E0BEF7BE, /*hidden argument*/NULL); Type_t * L_14 = ___type0; NullCheck(L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_14); NullCheck(L_13); StringBuilder_t * L_16 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_13, L_15, /*hidden argument*/NULL); NullCheck(L_16); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_16, _stringLiteral8BDAC809EC6E895823B34F40236CA2C1CF3EDA27, /*hidden argument*/NULL); V_1 = (bool)1; goto IL_0094; } IL_006b: { int32_t L_17 = V_2; if ((!(((uint32_t)((int32_t)((int32_t)L_17&(int32_t)4))) == ((uint32_t)4)))) { goto IL_0094; } } { StringBuilder_t * L_18 = V_0; NullCheck(L_18); StringBuilder_t * L_19 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_18, _stringLiteral1E19EF4AFB2390E544B29512E9956A40E0BEF7BE, /*hidden argument*/NULL); Type_t * L_20 = ___type0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_20); NullCheck(L_19); StringBuilder_t * L_22 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_19, L_21, /*hidden argument*/NULL); NullCheck(L_22); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_22, _stringLiteral98F7F5CC931CC2BED378AFA656D4BBF3FC74FCC2, /*hidden argument*/NULL); V_1 = (bool)1; } IL_0094: { int32_t L_23 = V_2; if ((!(((uint32_t)((int32_t)((int32_t)L_23&(int32_t)((int32_t)16)))) == ((uint32_t)((int32_t)16))))) { goto IL_00d0; } } { bool L_24 = V_1; if (!L_24) { goto IL_00ad; } } { StringBuilder_t * L_25 = V_0; NullCheck(L_25); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_25, _stringLiteral4664E2DEFF04A806C1771194AA96F071C8128E49, /*hidden argument*/NULL); goto IL_00d0; } IL_00ad: { StringBuilder_t * L_26 = V_0; NullCheck(L_26); StringBuilder_t * L_27 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_26, _stringLiteral1E19EF4AFB2390E544B29512E9956A40E0BEF7BE, /*hidden argument*/NULL); Type_t * L_28 = ___type0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_28); NullCheck(L_27); StringBuilder_t * L_30 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_27, L_29, /*hidden argument*/NULL); NullCheck(L_30); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_30, _stringLiteral8CA57CFDB3DD222F7F4BEF910ADE1A42ED24047C, /*hidden argument*/NULL); V_1 = (bool)1; } IL_00d0: { Type_t * L_31 = ___type0; NullCheck(L_31); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_32 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(86 /* System.Type[] System.Type::GetGenericParameterConstraints() */, L_31); V_3 = L_32; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = V_3; NullCheck(L_33); if (!(((RuntimeArray*)L_33)->max_length)) { goto IL_0172; } } { V_4 = 0; goto IL_0168; } IL_00e6: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = V_3; int32_t L_35 = V_4; NullCheck(L_34); int32_t L_36 = L_35; Type_t * L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36)); V_5 = L_37; bool L_38 = V_1; if (!L_38) { goto IL_011e; } } { StringBuilder_t * L_39 = V_0; NullCheck(L_39); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_39, _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46, /*hidden argument*/NULL); bool L_40 = ___useFullTypeNames1; if (!L_40) { goto IL_010e; } } { StringBuilder_t * L_41 = V_0; Type_t * L_42 = V_5; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_43 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_42, /*hidden argument*/NULL); NullCheck(L_41); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_41, L_43, /*hidden argument*/NULL); goto IL_0162; } IL_010e: { StringBuilder_t * L_44 = V_0; Type_t * L_45 = V_5; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_46 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_45, /*hidden argument*/NULL); NullCheck(L_44); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_44, L_46, /*hidden argument*/NULL); goto IL_0162; } IL_011e: { StringBuilder_t * L_47 = V_0; NullCheck(L_47); StringBuilder_t * L_48 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_47, _stringLiteral1E19EF4AFB2390E544B29512E9956A40E0BEF7BE, /*hidden argument*/NULL); Type_t * L_49 = ___type0; NullCheck(L_49); String_t* L_50 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_49); NullCheck(L_48); StringBuilder_t * L_51 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_48, L_50, /*hidden argument*/NULL); NullCheck(L_51); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_51, _stringLiteralD98411EB70B07EDF83E993EE9DBA073BEE0DDDEB, /*hidden argument*/NULL); bool L_52 = ___useFullTypeNames1; if (!L_52) { goto IL_0152; } } { StringBuilder_t * L_53 = V_0; Type_t * L_54 = V_5; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_55 = TypeExtensions_GetNiceFullName_m62FA52D9D86E8927078F55BC102C2D7E494B9527(L_54, /*hidden argument*/NULL); NullCheck(L_53); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_53, L_55, /*hidden argument*/NULL); goto IL_0160; } IL_0152: { StringBuilder_t * L_56 = V_0; Type_t * L_57 = V_5; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); String_t* L_58 = TypeExtensions_GetNiceName_mA72C44C4F78676BD9850D9DAC8C7DD091E7385DF(L_57, /*hidden argument*/NULL); NullCheck(L_56); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_56, L_58, /*hidden argument*/NULL); } IL_0160: { V_1 = (bool)1; } IL_0162: { int32_t L_59 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1)); } IL_0168: { int32_t L_60 = V_4; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_61 = V_3; NullCheck(L_61); if ((((int32_t)L_60) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_61)->max_length))))))) { goto IL_00e6; } } IL_0172: { StringBuilder_t * L_62 = V_0; NullCheck(L_62); String_t* L_63 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_62); return L_63; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::GenericArgumentsContainsTypes(System.Type,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_GenericArgumentsContainsTypes_m28EC1A965F91FED88E4808C554974C375F194174 (Type_t * ___type0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GenericArgumentsContainsTypes_m28EC1A965F91FED88E4808C554974C375F194174_MetadataUsageId); s_Il2CppMethodInitialized = true; } BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* V_0 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL; Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * V_2 = NULL; Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * V_3 = NULL; int32_t V_4 = 0; Type_t * V_5 = NULL; int32_t V_6 = 0; Type_t * V_7 = NULL; bool V_8 = false; int32_t V_9 = 0; bool V_10 = false; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_11 = NULL; int32_t V_12 = 0; Type_t * V_13 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Type_t * L_0 = ___type0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_GenericArgumentsContainsTypes_m28EC1A965F91FED88E4808C554974C375F194174_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = ___type0; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_2); if (L_3) { goto IL_0018; } } { return (bool)0; } IL_0018: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = ___types1; NullCheck(L_4); BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_5 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)SZArrayNew(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))); V_0 = L_5; Type_t * L_6 = ___type0; NullCheck(L_6); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_6); V_1 = L_7; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_8 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_GenericArgumentsContainsTypes_ArgsToCheckCached_14(); V_2 = L_8; Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_9 = V_2; V_3 = L_9; Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_10 = V_3; Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_10, /*hidden argument*/NULL); } IL_0036: try { // begin try (depth: 1) { Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_11 = V_2; NullCheck(L_11); Stack_1_Clear_mE25383E984C17F1508540A8E2E821A3B216413B6(L_11, /*hidden argument*/Stack_1_Clear_mE25383E984C17F1508540A8E2E821A3B216413B6_RuntimeMethod_var); V_4 = 0; goto IL_0051; } IL_0041: { Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_12 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = V_1; int32_t L_14 = V_4; NullCheck(L_13); int32_t L_15 = L_14; Type_t * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); NullCheck(L_12); Stack_1_Push_m65699E5B35D8426F8DDEEDD0CA5BA92B5305B03F(L_12, L_16, /*hidden argument*/Stack_1_Push_m65699E5B35D8426F8DDEEDD0CA5BA92B5305B03F_RuntimeMethod_var); int32_t L_17 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0051: { int32_t L_18 = V_4; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = V_1; NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))))) { goto IL_0041; } } IL_0058: { goto IL_0112; } IL_005d: { Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_20 = V_2; NullCheck(L_20); Type_t * L_21 = Stack_1_Pop_m76BFD44CDDBA6873B3FBD23CFE70B93BC01BE4E3(L_20, /*hidden argument*/Stack_1_Pop_m76BFD44CDDBA6873B3FBD23CFE70B93BC01BE4E3_RuntimeMethod_var); V_5 = L_21; V_6 = 0; goto IL_00ae; } IL_006a: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_22 = ___types1; int32_t L_23 = V_6; NullCheck(L_22); int32_t L_24 = L_23; Type_t * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24)); V_7 = L_25; Type_t * L_26 = V_7; Type_t * L_27 = V_5; if ((!(((RuntimeObject*)(Type_t *)L_26) == ((RuntimeObject*)(Type_t *)L_27)))) { goto IL_007d; } } IL_0076: { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_28 = V_0; int32_t L_29 = V_6; NullCheck(L_28); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_29), (bool)1); goto IL_00a8; } IL_007d: { Type_t * L_30 = V_7; NullCheck(L_30); bool L_31 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_30); if (!L_31) { goto IL_00a8; } } IL_0086: { Type_t * L_32 = V_5; NullCheck(L_32); bool L_33 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_32); if (!L_33) { goto IL_00a8; } } IL_008f: { Type_t * L_34 = V_5; NullCheck(L_34); bool L_35 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_34); if (L_35) { goto IL_00a8; } } IL_0098: { Type_t * L_36 = V_5; NullCheck(L_36); Type_t * L_37 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::GetGenericTypeDefinition() */, L_36); Type_t * L_38 = V_7; if ((!(((RuntimeObject*)(Type_t *)L_37) == ((RuntimeObject*)(Type_t *)L_38)))) { goto IL_00a8; } } IL_00a3: { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_39 = V_0; int32_t L_40 = V_6; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (bool)1); } IL_00a8: { int32_t L_41 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_00ae: { int32_t L_42 = V_6; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_43 = ___types1; NullCheck(L_43); if ((((int32_t)L_42) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length))))))) { goto IL_006a; } } IL_00b5: { V_8 = (bool)1; V_9 = 0; goto IL_00ce; } IL_00bd: { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_44 = V_0; int32_t L_45 = V_9; NullCheck(L_44); int32_t L_46 = L_45; uint8_t L_47 = (uint8_t)(L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46)); if (L_47) { goto IL_00c8; } } IL_00c3: { V_8 = (bool)0; goto IL_00d5; } IL_00c8: { int32_t L_48 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1)); } IL_00ce: { int32_t L_49 = V_9; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_50 = V_0; NullCheck(L_50); if ((((int32_t)L_49) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_50)->max_length))))))) { goto IL_00bd; } } IL_00d5: { bool L_51 = V_8; if (!L_51) { goto IL_00de; } } IL_00d9: { V_10 = (bool)1; IL2CPP_LEAVE(0x129, FINALLY_0120); } IL_00de: { Type_t * L_52 = V_5; NullCheck(L_52); bool L_53 = VirtFuncInvoker0< bool >::Invoke(81 /* System.Boolean System.Type::get_IsGenericType() */, L_52); if (!L_53) { goto IL_0112; } } IL_00e7: { Type_t * L_54 = V_5; NullCheck(L_54); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_55 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_54); V_11 = L_55; V_12 = 0; goto IL_010a; } IL_00f5: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_56 = V_11; int32_t L_57 = V_12; NullCheck(L_56); int32_t L_58 = L_57; Type_t * L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58)); V_13 = L_59; Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_60 = V_2; Type_t * L_61 = V_13; NullCheck(L_60); Stack_1_Push_m65699E5B35D8426F8DDEEDD0CA5BA92B5305B03F(L_60, L_61, /*hidden argument*/Stack_1_Push_m65699E5B35D8426F8DDEEDD0CA5BA92B5305B03F_RuntimeMethod_var); int32_t L_62 = V_12; V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1)); } IL_010a: { int32_t L_63 = V_12; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_64 = V_11; NullCheck(L_64); if ((((int32_t)L_63) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_64)->max_length))))))) { goto IL_00f5; } } IL_0112: { Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_65 = V_2; NullCheck(L_65); int32_t L_66 = Stack_1_get_Count_mC12CE3CC0B800FD88AE5B76670655C6FF38C8BF4_inline(L_65, /*hidden argument*/Stack_1_get_Count_mC12CE3CC0B800FD88AE5B76670655C6FF38C8BF4_RuntimeMethod_var); if ((((int32_t)L_66) > ((int32_t)0))) { goto IL_005d; } } IL_011e: { IL2CPP_LEAVE(0x127, FINALLY_0120); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0120; } FINALLY_0120: { // begin finally (depth: 1) Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_67 = V_3; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_67, /*hidden argument*/NULL); IL2CPP_END_FINALLY(288) } // end finally (depth: 1) IL2CPP_CLEANUP(288) { IL2CPP_JUMP_TBL(0x129, IL_0129) IL2CPP_JUMP_TBL(0x127, IL_0127) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0127: { return (bool)0; } IL_0129: { bool L_68 = V_10; return L_68; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsFullyConstructedGenericType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL; Type_t * V_1 = NULL; int32_t V_2 = 0; Type_t * V_3 = NULL; { Type_t * L_0 = ___type0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = ___type0; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_2); if (!L_3) { goto IL_0018; } } { return (bool)0; } IL_0018: { Type_t * L_4 = ___type0; NullCheck(L_4); bool L_5 = Type_get_HasElementType_m598BEFE66F168CE1D1132C87D394B2EF41F449BF(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0039; } } { Type_t * L_6 = ___type0; NullCheck(L_6); Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(104 /* System.Type System.Type::GetElementType() */, L_6); V_1 = L_7; Type_t * L_8 = V_1; NullCheck(L_8); bool L_9 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_8); if (L_9) { goto IL_0037; } } { Type_t * L_10 = V_1; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_11 = TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC(L_10, /*hidden argument*/NULL); if (L_11) { goto IL_0039; } } IL_0037: { return (bool)0; } IL_0039: { Type_t * L_12 = ___type0; NullCheck(L_12); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(105 /* System.Type[] System.Type::GetGenericArguments() */, L_12); V_0 = L_13; V_2 = 0; goto IL_0060; } IL_0044: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = V_0; int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; Type_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); V_3 = L_17; Type_t * L_18 = V_3; NullCheck(L_18); bool L_19 = VirtFuncInvoker0< bool >::Invoke(83 /* System.Boolean System.Type::get_IsGenericParameter() */, L_18); if (!L_19) { goto IL_0052; } } { return (bool)0; } IL_0052: { Type_t * L_20 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var); bool L_21 = TypeExtensions_IsFullyConstructedGenericType_mB9F03159F159DE4345EA004C33E75142C172B6FC(L_20, /*hidden argument*/NULL); if (L_21) { goto IL_005c; } } { return (bool)0; } IL_005c: { int32_t L_22 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_0060: { int32_t L_23 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = V_0; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))))))) { goto IL_0044; } } { Type_t * L_25 = ___type0; NullCheck(L_25); bool L_26 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_25); return (bool)((((int32_t)L_26) == ((int32_t)0))? 1 : 0); } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::IsNullableType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsNullableType_m314153ABB4D3F2147750055E936170806E4BEF8E (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_001a; } } { Type_t * L_2 = ___type0; NullCheck(L_2); bool L_3 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_001a; } } { Type_t * L_4 = ___type0; NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsEnum() */, L_4); return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0); } IL_001a: { return (bool)0; } } // System.UInt64 Sirenix.Serialization.Utilities.TypeExtensions::GetEnumBitmask(System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t TypeExtensions_GetEnumBitmask_m0A382A82CE1B28746E451267EEB38594746A8069 (RuntimeObject * ___value0, Type_t * ___enumType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_GetEnumBitmask_m0A382A82CE1B28746E451267EEB38594746A8069_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Type_t * L_0 = ___enumType1; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsEnum() */, L_0); if (L_1) { goto IL_0013; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TypeExtensions_GetEnumBitmask_m0A382A82CE1B28746E451267EEB38594746A8069_RuntimeMethod_var); } IL_0013: { } IL_0014: try { // begin try (depth: 1) RuntimeObject * L_3 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_5 = Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2(L_3, L_4, /*hidden argument*/NULL); V_0 = L_5; goto IL_0031; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0022; throw e; } CATCH_0022: { // begin catch(System.OverflowException) RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_8 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_6, L_7, /*hidden argument*/NULL); V_0 = L_8; goto IL_0031; } // end catch (depth: 1) IL_0031: { uint64_t L_9 = V_0; return L_9; } } // System.Type[] Sirenix.Serialization.Utilities.TypeExtensions::SafeGetTypes(System.Reflection.Assembly) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* TypeExtensions_SafeGetTypes_m81ACAF67CE980AA3323BCB1D2947441EFAB45560 (Assembly_t * ___assembly0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_SafeGetTypes_m81ACAF67CE980AA3323BCB1D2947441EFAB45560_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) Assembly_t * L_0 = ___assembly0; NullCheck(L_0); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(15 /* System.Type[] System.Reflection.Assembly::GetTypes() */, L_0); V_0 = L_1; goto IL_0012; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0009; throw e; } CATCH_0009: { // begin catch(System.Object) IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); V_0 = L_2; goto IL_0012; } // end catch (depth: 1) IL_0012: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = V_0; return L_3; } } // System.Boolean Sirenix.Serialization.Utilities.TypeExtensions::SafeIsDefined(System.Reflection.Assembly,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_SafeIsDefined_m2C9B8A957ABF4B6B39451DB73E17C5E0A36D8FBA (Assembly_t * ___assembly0, Type_t * ___attribute1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_SafeIsDefined_m2C9B8A957ABF4B6B39451DB73E17C5E0A36D8FBA_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) Assembly_t * L_0 = ___assembly0; Type_t * L_1 = ___attribute1; bool L_2 = ___inherit2; NullCheck(L_0); bool L_3 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(11 /* System.Boolean System.Reflection.Assembly::IsDefined(System.Type,System.Boolean) */, L_0, L_1, L_2); V_0 = L_3; goto IL_0010; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_000b; throw e; } CATCH_000b: { // begin catch(System.Object) V_0 = (bool)0; goto IL_0010; } // end catch (depth: 1) IL_0010: { bool L_4 = V_0; return L_4; } } // System.Object[] Sirenix.Serialization.Utilities.TypeExtensions::SafeGetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* TypeExtensions_SafeGetCustomAttributes_mFF3DCE9B7B6C258DF0FDA5BB8BBD62A6E62FC469 (Assembly_t * ___assembly0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions_SafeGetCustomAttributes_mFF3DCE9B7B6C258DF0FDA5BB8BBD62A6E62FC469_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) Assembly_t * L_0 = ___assembly0; Type_t * L_1 = ___type1; bool L_2 = ___inherit2; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(12 /* System.Object[] System.Reflection.Assembly::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, L_2); V_0 = L_3; goto IL_0015; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_000b; throw e; } CATCH_000b: { // begin catch(System.Object) ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0); V_0 = L_4; goto IL_0015; } // end catch (depth: 1) IL_0015: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_0; return L_5; } } // System.Void Sirenix.Serialization.Utilities.TypeExtensions::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeExtensions__cctor_mA2BA952F5557E5911B6D54E2C854A4E2D7E6F9A5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeExtensions__cctor_mA2BA952F5557E5911B6D54E2C854A4E2D7E6F9A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * V_0 = NULL; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * V_1 = NULL; { Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 * L_0 = (Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5 *)il2cpp_codegen_object_new(Func_3_tA280701478D658DE82627E5CD6DBB6E0950704B5_il2cpp_TypeInfo_var); Func_3__ctor_m7C8D11A8C323E3447117CD8858686399E3F71DAD(L_0, NULL, (intptr_t)((intptr_t)TypeExtensions_FloatEqualityComparer_mACF6B0C6C1C9BAAC6E799918957E6ABA6B11411A_RuntimeMethod_var), /*hidden argument*/Func_3__ctor_m7C8D11A8C323E3447117CD8858686399E3F71DAD_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_FloatEqualityComparerFunc_0(L_0); Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 * L_1 = (Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112 *)il2cpp_codegen_object_new(Func_3_t00B858DFCD890F2065B3EF27BC3B3AE6A2D5C112_il2cpp_TypeInfo_var); Func_3__ctor_m44C13A80CB499D78387085A1448F2174E010365A(L_1, NULL, (intptr_t)((intptr_t)TypeExtensions_DoubleEqualityComparer_mA8107430F92BA7A68E23A85099841505C72E5BAC_RuntimeMethod_var), /*hidden argument*/Func_3__ctor_m44C13A80CB499D78387085A1448F2174E010365A_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_DoubleEqualityComparerFunc_1(L_1); Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C * L_2 = (Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C *)il2cpp_codegen_object_new(Func_3_tBFB075F7E7311582F159C86B39ABC382251C943C_il2cpp_TypeInfo_var); Func_3__ctor_m03BDCECA8C6CFB050E93144E74956034D6D48099(L_2, NULL, (intptr_t)((intptr_t)TypeExtensions_QuaternionEqualityComparer_mC45B498897DC7C3F5D1EC6731E1B022CF8295FB4_RuntimeMethod_var), /*hidden argument*/Func_3__ctor_m03BDCECA8C6CFB050E93144E74956034D6D48099_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_QuaternionEqualityComparerFunc_2(L_2); RuntimeObject * L_3 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_3, /*hidden argument*/NULL); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_GenericConstraintsSatisfaction_LOCK_3(L_3); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_4 = (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *)il2cpp_codegen_object_new(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A_il2cpp_TypeInfo_var); Dictionary_2__ctor_mF539C5E9ECC924AB2CC96934DA97A0040CB6797A(L_4, /*hidden argument*/Dictionary_2__ctor_mF539C5E9ECC924AB2CC96934DA97A0040CB6797A_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_GenericConstraintsSatisfactionInferredParameters_4(L_4); Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A * L_5 = (Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A *)il2cpp_codegen_object_new(Dictionary_2_t8A9CF8D5841CD80050386F6DCD8209C6E5853F2A_il2cpp_TypeInfo_var); Dictionary_2__ctor_mF539C5E9ECC924AB2CC96934DA97A0040CB6797A(L_5, /*hidden argument*/Dictionary_2__ctor_mF539C5E9ECC924AB2CC96934DA97A0040CB6797A_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_GenericConstraintsSatisfactionResolvedMap_5(L_5); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_6 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_6, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_GenericConstraintsSatisfactionProcessedParams_6(L_6); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IList_1_t257B383712C1A4815237BFC535F7FB44AD7C7D36_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_GenericListInterface_7(L_8); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (ICollection_1_t47D08429F331C3A21D3F5AA174BFE3BB7C6DEF53_0_0_0_var) }; Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_GenericCollectionInterface_8(L_10); RuntimeObject * L_11 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_11, /*hidden argument*/NULL); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_WeaklyTypedTypeCastDelegates_LOCK_9(L_11); RuntimeObject * L_12 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_12, /*hidden argument*/NULL); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_StronglyTypedTypeCastDelegates_LOCK_10(L_12); DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 * L_13 = (DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4 *)il2cpp_codegen_object_new(DoubleLookupDictionary_3_tDB88C636B6DBA6EEEC4525E2A1494ED6AE873BC4_il2cpp_TypeInfo_var); DoubleLookupDictionary_3__ctor_m0625F57E72586494BFEF9E97FEA61EB5B87F9565(L_13, /*hidden argument*/DoubleLookupDictionary_3__ctor_m0625F57E72586494BFEF9E97FEA61EB5B87F9565_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_WeaklyTypedTypeCastDelegates_11(L_13); DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 * L_14 = (DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012 *)il2cpp_codegen_object_new(DoubleLookupDictionary_3_t01B8AF3DCAAC4307DD7501782C92207F47DB3012_il2cpp_TypeInfo_var); DoubleLookupDictionary_3__ctor_m079D886666C1D02F05C5FBC2DABD6FEFC45F9435(L_14, /*hidden argument*/DoubleLookupDictionary_3__ctor_m079D886666C1D02F05C5FBC2DABD6FEFC45F9435_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_StronglyTypedTypeCastDelegates_12(L_14); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_15 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_TwoLengthTypeArray_Cached_13(L_15); Stack_1_t9C602025E061B1E201C46568468C7528A6231383 * L_16 = (Stack_1_t9C602025E061B1E201C46568468C7528A6231383 *)il2cpp_codegen_object_new(Stack_1_t9C602025E061B1E201C46568468C7528A6231383_il2cpp_TypeInfo_var); Stack_1__ctor_mDC0123BC0420180C37297772F722C0CB0FBD6BAD(L_16, /*hidden argument*/Stack_1__ctor_mDC0123BC0420180C37297772F722C0CB0FBD6BAD_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_GenericArgumentsContainsTypes_ArgsToCheckCached_14(L_16); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_17 = (HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E *)il2cpp_codegen_object_new(HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E_il2cpp_TypeInfo_var); HashSet_1__ctor_m99068A46E42F05504E434B1D6763629F4D94B87E(L_17, /*hidden argument*/HashSet_1__ctor_m99068A46E42F05504E434B1D6763629F4D94B87E_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_18 = L_17; NullCheck(L_18); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_18, _stringLiteralEC3EC33367AE71405E35BD1B8B9135D59E173C1A, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_19 = L_18; NullCheck(L_19); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_19, _stringLiteralDF211CCDD94A63E0BCB9E6AE427A249484A49D60, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_20 = L_19; NullCheck(L_20); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_20, _stringLiteral1405DF66CBE219B0BF6355BC3D60361A8376B6B4, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_21 = L_20; NullCheck(L_21); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_21, _stringLiteral5039D155A71C0A5F7A2B2654AD49CB7EE47A8980, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_22 = L_21; NullCheck(L_22); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_22, _stringLiteral4F9CAC8DBC4C67A388B8379DCC126C90C7C5E72A, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_23 = L_22; NullCheck(L_23); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_23, _stringLiteral8CF1783FA99F62CA581F6FE8F3CD66B0F9AB9FC3, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_24 = L_23; NullCheck(L_24); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_24, _stringLiteral6406510C31E0C9925733C7F21414BF6428333ED2, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_25 = L_24; NullCheck(L_25); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_25, _stringLiteral9EBAD64E5D2B9542779537FCE0354F34C099E7FF, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_26 = L_25; NullCheck(L_26); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_26, _stringLiteral71FAFC4E2FC1E47E234762A96B80512B6B5534C2, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_27 = L_26; NullCheck(L_27); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_27, _stringLiteral75E4AEDCE48FAF384F3535FFEB842E9A0718A25C, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_28 = L_27; NullCheck(L_28); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_28, _stringLiteral8D767BF5B72373D12F0EFD4406677E9ED076F592, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_29 = L_28; NullCheck(L_29); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_29, _stringLiteralB42F3F6F796FA3CFCB6B1B8D49C7BCCCC3A7164C, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_30 = L_29; NullCheck(L_30); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_30, _stringLiteralEEE0BBBA4FF92ADBEB038A77DF0466D660F15716, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_31 = L_30; NullCheck(L_31); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_31, _stringLiteral45932D6FA98F39C5CD3F08CD951D8DC70FC5F7DE, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_32 = L_31; NullCheck(L_32); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_32, _stringLiteral7505D64A54E061B7ACD54CCD58B49DC43500B635, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_33 = L_32; NullCheck(L_33); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_33, _stringLiteral52934C29CA4A1A7572C6905BD6AB705A2C135973, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_34 = L_33; NullCheck(L_34); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_34, _stringLiteralEADCD9BD2A09C75AEF04954E6799E50278EE124A, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_35 = L_34; NullCheck(L_35); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_35, _stringLiteralBDB36BB22DEB169275B3094BA9005A29EEDDD195, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_36 = L_35; NullCheck(L_36); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_36, _stringLiteralAE050F5B7FB8D383D62139276081853B47E7A03E, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_37 = L_36; NullCheck(L_37); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_37, _stringLiteralE338E8E3D1DDEB83DF4ACE416A87E89ED797CD19, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_38 = L_37; NullCheck(L_38); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_38, _stringLiteral5006ED0248A019713B762563076292379DAF07B4, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_39 = L_38; NullCheck(L_39); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_39, _stringLiteralA45C2264B8CAB0F1E0637F6C44501C0F34F7E227, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_40 = L_39; NullCheck(L_40); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_40, _stringLiteralBF1EE3119B17A03B304FFD2BBEDD11E450B1D13D, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_41 = L_40; NullCheck(L_41); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_41, _stringLiteral7CB6EFB98BA5972A9B5090DC2E517FE14D12CB04, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_42 = L_41; NullCheck(L_42); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_42, _stringLiteral8F4E3E3C24BAC71B4FFDF2BC0F73246D601766D4, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_43 = L_42; NullCheck(L_43); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_43, _stringLiteral7BC555991DBAB41AA198FBD77899D49A277D4D6D, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_44 = L_43; NullCheck(L_44); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_44, _stringLiteral685E80366130387CB75C055248326976D16FDF8D, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_45 = L_44; NullCheck(L_45); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_45, _stringLiteral43EEF9A62ABB8B1E1654F8A890AAE054ABFFA82B, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_46 = L_45; NullCheck(L_46); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_46, _stringLiteral4D3E8614703EA126434CC11D59E3C7A70C66D624, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_47 = L_46; NullCheck(L_47); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_47, _stringLiteral51344E2445B5305E316973E98702BB0098AEF055, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_48 = L_47; NullCheck(L_48); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_48, _stringLiteral958F57F57D72A30F329EE5538F21B0257A49A46E, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_49 = L_48; NullCheck(L_49); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_49, _stringLiteral09D7304DC0A40D12A940A73706708CBFAD2740DC, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_50 = L_49; NullCheck(L_50); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_50, _stringLiteralAF10EF20DD9060BBEEAD0AFBC55381A66AF442EF, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_51 = L_50; NullCheck(L_51); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_51, _stringLiteral46F8AB7C0CFF9DF7CD124852E26022A6BF89E315, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_52 = L_51; NullCheck(L_52); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_52, _stringLiteral5EA2D81A89E0CDC89BAF7CD1FF38CDFEFA33BA78, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_53 = L_52; NullCheck(L_53); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_53, _stringLiteral9F33A7C798AF6FD6ABB28049D9C1B3EDFA2FD24A, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_54 = L_53; NullCheck(L_54); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_54, _stringLiteralB47F363E2B430C0647F14DEEA3ECED9B0EF300CE, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_55 = L_54; NullCheck(L_55); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_55, _stringLiteralE117797422D35CE52F036963C7E9603E9955B5C7, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_56 = L_55; NullCheck(L_56); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_56, _stringLiteralBD3027FA569EA15CA76D84DB21C67E2D514C1A5A, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_57 = L_56; NullCheck(L_57); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_57, _stringLiteral1963EBC61173A88A0385135580DC1B7CD78E2C17, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_58 = L_57; NullCheck(L_58); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_58, _stringLiteralC2A6B03F190DFB2B4AA91F8AF8D477A9BC3401DC, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_59 = L_58; NullCheck(L_59); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_59, _stringLiteral2BE88CA4242C76E8253AC62474851065032D6833, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_60 = L_59; NullCheck(L_60); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_60, _stringLiteral1615307CC4523F183E777DF67F168C86908E8007, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_61 = L_60; NullCheck(L_61); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_61, _stringLiteralFE96DD39756AC41B74283A9292652D366D73931F, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_62 = L_61; NullCheck(L_62); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_62, _stringLiteralF4800DF8D1BC61FC95220645938CD65532A64067, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_63 = L_62; NullCheck(L_63); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_63, _stringLiteral1A95769F3608D94E2E3437861B788D1372B0D1CF, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_64 = L_63; NullCheck(L_64); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_64, _stringLiteralFD7B034E09B752C24942CD9B0B20C29DB2DC3E90, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_65 = L_64; NullCheck(L_65); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_65, _stringLiteralE80721793C24AE14EDFCA9B26AD406A9815CD3FF, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_66 = L_65; NullCheck(L_66); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_66, _stringLiteral964CAB4BB4A5111731B0C00DBB43F794698D8731, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_67 = L_66; NullCheck(L_67); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_67, _stringLiteral61C9B2B17DB77A27841BBEEABFF923448B0F6388, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_68 = L_67; NullCheck(L_68); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_68, _stringLiteral9A27718297218C3757C365D357D13F49D0FA3065, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_69 = L_68; NullCheck(L_69); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_69, _stringLiteral69449F994D55805535B9E8FAB16F6C39934E9BA4, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_70 = L_69; NullCheck(L_70); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_70, _stringLiteral63143B6F8007B98C53CA2149822777B3566F9241, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_71 = L_70; NullCheck(L_71); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_71, _stringLiteral681D15313A93F5907C45ABC0E6A97EE59E13FABA, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_72 = L_71; NullCheck(L_72); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_72, _stringLiteral5D2B90A4C4A5C2194F672A4120FFFF9F77E35D30, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_73 = L_72; NullCheck(L_73); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_73, _stringLiteralA0F4EA7D91495DF92BBAC2E2149DFB850FE81396, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_74 = L_73; NullCheck(L_74); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_74, _stringLiteral14D0732DC7A1327AAD3CED727D5FED17F8263B48, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_75 = L_74; NullCheck(L_75); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_75, _stringLiteral4DED6183E8606D87278B9342C752D397250EFF37, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_76 = L_75; NullCheck(L_76); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_76, _stringLiteralA381562AFA0E16C5548E829B2F1A659A8C2E7C11, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_77 = L_76; NullCheck(L_77); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_77, _stringLiteralECB252044B5EA0F679EE78EC1A12904739E2904D, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_78 = L_77; NullCheck(L_78); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_78, _stringLiteralD118E5A3CC15B182D1286373A60C787E58D3166F, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_79 = L_78; NullCheck(L_79); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_79, _stringLiteral01BA7992F85DE477E8E630428EB5ED14769F9155, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_80 = L_79; NullCheck(L_80); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_80, _stringLiteralC2543FFF3BFA6F144C2F06A7DE6CD10C0B650CAE, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_81 = L_80; NullCheck(L_81); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_81, _stringLiteralF793522355B5EF88DA6D4D202946D3F8289DC953, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_82 = L_81; NullCheck(L_82); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_82, _stringLiteral5FFE533B830F08A0326348A9160AFAFC8ADA44DB, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_83 = L_82; NullCheck(L_83); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_83, _stringLiteral3240AA0FE3CA15051680641A59E8D7B61C286B23, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_84 = L_83; NullCheck(L_84); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_84, _stringLiteral1BCC59B324708CC856541522BD845C53A709D932, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_85 = L_84; NullCheck(L_85); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_85, _stringLiteralFCDBC880C3D7454F7AED7A672C34EBC2395648A2, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_86 = L_85; NullCheck(L_86); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_86, _stringLiteralEBABC9B6E6F06B857E70FF9361A38C584DAFDB10, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_87 = L_86; NullCheck(L_87); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_87, _stringLiteralCEE47310E7A40661885DD10053B823AA6755CD29, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_88 = L_87; NullCheck(L_88); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_88, _stringLiteral752BB3FF18055FEFCDDFCD87881FCE12273DDF47, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_89 = L_88; NullCheck(L_89); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_89, _stringLiteral42CD4CC09795FD30CE71C875DA59944B9099B15F, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_90 = L_89; NullCheck(L_90); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_90, _stringLiteral92BD75EBD8FD2B0179172217B15350CC6D4002F0, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_91 = L_90; NullCheck(L_91); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_91, _stringLiteralA381562AFA0E16C5548E829B2F1A659A8C2E7C11, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_92 = L_91; NullCheck(L_92); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_92, _stringLiteralE9CEDE9B80EA3ABD89C755F1117337D429162C86, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_93 = L_92; NullCheck(L_93); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_93, _stringLiteral5B12B97A4B6689B1A7EFEDD75929E9F7AF9DE63E, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_94 = L_93; NullCheck(L_94); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_94, _stringLiteral6517F89C46C3F0D6DB9CB009B8C7D1F98C371FA0, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_95 = L_94; NullCheck(L_95); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_95, _stringLiteralAF10EF20DD9060BBEEAD0AFBC55381A66AF442EF, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_96 = L_95; NullCheck(L_96); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_96, _stringLiteral783923E57BA5E8F1044632C31FD806EE24814BB5, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_97 = L_96; NullCheck(L_97); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_97, _stringLiteral65C10DC3549FE07424148A8A4790A3341ECBC253, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); HashSet_1_tC8214FEC830040D37F12A482FF0284D9C2B9001E * L_98 = L_97; NullCheck(L_98); HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9(L_98, _stringLiteralE5B4E786E382D03C28E9EDFAB2D8149378AE69DF, /*hidden argument*/HashSet_1_Add_m73EFAE0E6A574BC59B1B8977088B4F5A802176F9_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_ReservedCSharpKeywords_15(L_98); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_99 = (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *)il2cpp_codegen_object_new(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var); Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B(L_99, /*hidden argument*/Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_100 = L_99; NullCheck(L_100); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_100, _stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5, _stringLiteral685E80366130387CB75C055248326976D16FDF8D, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_101 = L_100; NullCheck(L_101); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_101, _stringLiteral81581597044514BF54D4F97266022FC991F3915E, _stringLiteralBDB36BB22DEB169275B3094BA9005A29EEDDD195, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_102 = L_101; NullCheck(L_102); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_102, _stringLiteral9B30C1BF65712BDA061818365704D06F3871C202, _stringLiteral681D15313A93F5907C45ABC0E6A97EE59E13FABA, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_103 = L_102; NullCheck(L_103); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_103, _stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C, _stringLiteralA0F4EA7D91495DF92BBAC2E2149DFB850FE81396, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_104 = L_103; NullCheck(L_104); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_104, _stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE, _stringLiteral46F8AB7C0CFF9DF7CD124852E26022A6BF89E315, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_105 = L_104; NullCheck(L_105); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_105, _stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01, _stringLiteralBD3027FA569EA15CA76D84DB21C67E2D514C1A5A, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_106 = L_105; NullCheck(L_106); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_106, _stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD, _stringLiteral8CF1783FA99F62CA581F6FE8F3CD66B0F9AB9FC3, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_107 = L_106; NullCheck(L_107); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_107, _stringLiteral70B4BB2684C3F8969E2FE9E14B470906FD4CF3C6, _stringLiteral42CD4CC09795FD30CE71C875DA59944B9099B15F, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_108 = L_107; NullCheck(L_108); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_108, _stringLiteralE71E7BC3FE9E9F3C39E46B53FFFF0C83D9CC9A36, _stringLiteralFCDBC880C3D7454F7AED7A672C34EBC2395648A2, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_109 = L_108; NullCheck(L_109); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_109, _stringLiteral69A99906F5A06EA1BDBFC02E6132D35DE781D3F1, _stringLiteralEBABC9B6E6F06B857E70FF9361A38C584DAFDB10, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_110 = L_109; NullCheck(L_110); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_110, _stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A, _stringLiteral45932D6FA98F39C5CD3F08CD951D8DC70FC5F7DE, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_111 = L_110; NullCheck(L_111); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_111, _stringLiteral3DF63B7ACB0522DA685DAD5FE84B81FDD7B25264, _stringLiteralECB252044B5EA0F679EE78EC1A12904739E2904D, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_112 = L_111; NullCheck(L_112); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_112, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9, _stringLiteral71FAFC4E2FC1E47E234762A96B80512B6B5534C2, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_113 = L_112; NullCheck(L_113); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_113, _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C, _stringLiteral5039D155A71C0A5F7A2B2654AD49CB7EE47A8980, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_114 = L_113; NullCheck(L_114); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_114, _stringLiteralEE6B1F617DD5320B23FBED018C38AC092DB5E40A, _stringLiteral5F0AA0A07864876F6AA0BA0AAC735E16C3D6438B, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_115 = L_114; NullCheck(L_115); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_115, _stringLiteral52E093F031914CA7E106736561510C494D385061, _stringLiteral576A84A4AB20460B41D8166B856B7B36532C9ADA, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_116 = L_115; NullCheck(L_116); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_116, _stringLiteralFC29CFA083F82DAC88746A4978C292584F78282A, _stringLiteral91D75EDEB06425673FCCB04F00870ADF88F4D93E, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_117 = L_116; NullCheck(L_117); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_117, _stringLiteralA75179FA33469FBAAD209EBEBD746B4E40921B4D, _stringLiteralC81006ABEE1828546A13529B40F9711CF9315B96, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_118 = L_117; NullCheck(L_118); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_118, _stringLiteral4567FDAA1C4C47B31F79C3980E9B1D43EFB25944, _stringLiteral56228F0A744C9DFF4526DFD989994CBB1DCA6A2D, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_119 = L_118; NullCheck(L_119); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_119, _stringLiteral4BEA1C22EA5E1A083C155A651DA39B45AEEC1A89, _stringLiteralAF1B4359CAC26EE2FEA3865D21B820D7A3532E1A, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_120 = L_119; NullCheck(L_120); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_120, _stringLiteralAC987B3DED360E93359BF6A9730EC1DAA4B9C87E, _stringLiteral37207C72F4F34E6FF1C0F3099500053F6762405B, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_121 = L_120; NullCheck(L_121); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_121, _stringLiteral55733506AD969D73AB32F988F687594C8A4C75F8, _stringLiteralF8A56BEA94B606AE0E18DCB944E942C113065F9C, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_122 = L_121; NullCheck(L_122); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_122, _stringLiteral798A022DEF5A521DF6CF7D3A586F171F348CD11D, _stringLiteral7761887BBDBBCAFF220F60679C23B21B0AFEFC30, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_123 = L_122; NullCheck(L_123); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_123, _stringLiteral2C437769EE10019CCCFD2B3C7A064EAFC4B93A6C, _stringLiteralEC1F172C61B5106ECFAA8A91AEADFB500F792444, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_124 = L_123; NullCheck(L_124); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_124, _stringLiteral72F2FC6FA993904AE8107B3E626AA62FCF4BEADA, _stringLiteralB57D3B44E84A0C5DDE49DD8FDF35A2B431967798, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_125 = L_124; NullCheck(L_125); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_125, _stringLiteral7B320CFEDE5DFB62207FD258205DEC29002DED0B, _stringLiteral8F01B293637F2084FCCC10E652BCDB985727ADA0, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_126 = L_125; NullCheck(L_126); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_126, _stringLiteralB26B5234992836A760CDFDA9B55169871E7330E7, _stringLiteral2A5A0A203F16ADF5ED8660CDA9F5216B37D0ADDA, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_127 = L_126; NullCheck(L_127); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_127, _stringLiteralE60350ECE81E5E478A18558CE97B120A79A08F79, _stringLiteralB7D571A9D6D855BDAC31EE4361D82131A9F2A06A, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_TypeNameAlternatives_16(L_127); RuntimeObject * L_128 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_128, /*hidden argument*/NULL); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_CachedNiceNames_LOCK_17(L_128); Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 * L_129 = (Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9 *)il2cpp_codegen_object_new(Dictionary_2_tF23D66A0E3650DC116E79AE2B79E0313074F3DF9_il2cpp_TypeInfo_var); Dictionary_2__ctor_m8451467B9EF17884648FE0F6DCD6C80CF453D96C(L_129, /*hidden argument*/Dictionary_2__ctor_m8451467B9EF17884648FE0F6DCD6C80CF453D96C_RuntimeMethod_var); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_CachedNiceNames_18(L_129); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_130 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) }; Type_t * L_131 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_130, /*hidden argument*/NULL); NullCheck(L_131); Type_t * L_132 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::MakePointerType() */, L_131); ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_VoidPointerType_19(L_132); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_133 = (Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B *)il2cpp_codegen_object_new(Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B_il2cpp_TypeInfo_var); Dictionary_2__ctor_m69B50D57FB083DE555DB604D6E24A36B4299E1B3(L_133, /*hidden argument*/Dictionary_2__ctor_m69B50D57FB083DE555DB604D6E24A36B4299E1B3_RuntimeMethod_var); V_0 = L_133; Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_134 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_135 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_136 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_135, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_137 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_137, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_137; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_138 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_139 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_140 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_139, /*hidden argument*/NULL); NullCheck(L_138); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_138, L_140, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_141 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_142 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_143 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_142, /*hidden argument*/NULL); NullCheck(L_141); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_141, L_143, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_144 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_145 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_146 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_145, /*hidden argument*/NULL); NullCheck(L_144); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_144, L_146, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_147 = V_1; NullCheck(L_134); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_134, L_136, L_147, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_148 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_149 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_150 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_149, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_151 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_151, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_151; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_152 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_153 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_154 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_153, /*hidden argument*/NULL); NullCheck(L_152); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_152, L_154, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_155 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_156 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_157 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_156, /*hidden argument*/NULL); NullCheck(L_155); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_155, L_157, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_158 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_159 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_160 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_159, /*hidden argument*/NULL); NullCheck(L_158); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_158, L_160, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_161 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_162 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_163 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_162, /*hidden argument*/NULL); NullCheck(L_161); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_161, L_163, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_164 = V_1; NullCheck(L_148); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_148, L_150, L_164, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_165 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_166 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_167 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_166, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_168 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_168, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_168; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_169 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_170 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_171 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_170, /*hidden argument*/NULL); NullCheck(L_169); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_169, L_171, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_172 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_173 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_174 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_173, /*hidden argument*/NULL); NullCheck(L_172); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_172, L_174, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_175 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_176 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_177 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_176, /*hidden argument*/NULL); NullCheck(L_175); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_175, L_177, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_178 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_179 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_180 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_179, /*hidden argument*/NULL); NullCheck(L_178); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_178, L_180, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_181 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_182 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_183 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_182, /*hidden argument*/NULL); NullCheck(L_181); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_181, L_183, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_184 = V_1; NullCheck(L_165); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_165, L_167, L_184, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_185 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_186 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_187 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_186, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_188 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_188, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_188; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_189 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_190 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_191 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_190, /*hidden argument*/NULL); NullCheck(L_189); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_189, L_191, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_192 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_193 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_194 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_193, /*hidden argument*/NULL); NullCheck(L_192); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_192, L_194, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_195 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_196 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_197 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_196, /*hidden argument*/NULL); NullCheck(L_195); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_195, L_197, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_198 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_199 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_200 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_199, /*hidden argument*/NULL); NullCheck(L_198); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_198, L_200, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_201 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_202 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_203 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_202, /*hidden argument*/NULL); NullCheck(L_201); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_201, L_203, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_204 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_205 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_206 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_205, /*hidden argument*/NULL); NullCheck(L_204); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_204, L_206, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_207 = V_1; NullCheck(L_185); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_185, L_187, L_207, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_208 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_209 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_210 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_209, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_211 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_211, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_211; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_212 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_213 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_214 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_213, /*hidden argument*/NULL); NullCheck(L_212); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_212, L_214, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_215 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_216 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_217 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_216, /*hidden argument*/NULL); NullCheck(L_215); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_215, L_217, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_218 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_219 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_220 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_219, /*hidden argument*/NULL); NullCheck(L_218); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_218, L_220, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_221 = V_1; NullCheck(L_208); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_208, L_210, L_221, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_222 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_223 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_224 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_223, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_225 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_225, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_225; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_226 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_227 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_228 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_227, /*hidden argument*/NULL); NullCheck(L_226); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_226, L_228, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_229 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_230 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_231 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_230, /*hidden argument*/NULL); NullCheck(L_229); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_229, L_231, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_232 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_233 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_234 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_233, /*hidden argument*/NULL); NullCheck(L_232); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_232, L_234, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_235 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_236 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_237 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_236, /*hidden argument*/NULL); NullCheck(L_235); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_235, L_237, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_238 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_239 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_240 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_239, /*hidden argument*/NULL); NullCheck(L_238); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_238, L_240, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_241 = V_1; NullCheck(L_222); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_222, L_224, L_241, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_242 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_243 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_244 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_243, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_245 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_245, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_245; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_246 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_247 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_248 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_247, /*hidden argument*/NULL); NullCheck(L_246); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_246, L_248, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_249 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_250 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_251 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_250, /*hidden argument*/NULL); NullCheck(L_249); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_249, L_251, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_252 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_253 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_254 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_253, /*hidden argument*/NULL); NullCheck(L_252); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_252, L_254, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_255 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_256 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_257 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_256, /*hidden argument*/NULL); NullCheck(L_255); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_255, L_257, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_258 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_259 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_260 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_259, /*hidden argument*/NULL); NullCheck(L_258); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_258, L_260, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_261 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_262 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_263 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_262, /*hidden argument*/NULL); NullCheck(L_261); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_261, L_263, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_264 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_265 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_266 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_265, /*hidden argument*/NULL); NullCheck(L_264); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_264, L_266, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_267 = V_1; NullCheck(L_242); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_242, L_244, L_267, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_268 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_269 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_270 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_269, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_271 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_271, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_271; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_272 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_273 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_274 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_273, /*hidden argument*/NULL); NullCheck(L_272); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_272, L_274, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_275 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_276 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_277 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_276, /*hidden argument*/NULL); NullCheck(L_275); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_275, L_277, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_278 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_279 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_280 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_279, /*hidden argument*/NULL); NullCheck(L_278); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_278, L_280, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_281 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_282 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_283 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_282, /*hidden argument*/NULL); NullCheck(L_281); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_281, L_283, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_284 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_285 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_286 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_285, /*hidden argument*/NULL); NullCheck(L_284); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_284, L_286, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_287 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_288 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_289 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_288, /*hidden argument*/NULL); NullCheck(L_287); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_287, L_289, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_290 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_291 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_292 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_291, /*hidden argument*/NULL); NullCheck(L_290); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_290, L_292, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_293 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_294 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_295 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_294, /*hidden argument*/NULL); NullCheck(L_293); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_293, L_295, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_296 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_297 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_298 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_297, /*hidden argument*/NULL); NullCheck(L_296); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_296, L_298, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_299 = V_1; NullCheck(L_268); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_268, L_270, L_299, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_300 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_301 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; Type_t * L_302 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_301, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_303 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_303, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_303; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_304 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_305 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_306 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_305, /*hidden argument*/NULL); NullCheck(L_304); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_304, L_306, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_307 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_308 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_309 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_308, /*hidden argument*/NULL); NullCheck(L_307); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_307, L_309, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_310 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_311 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_312 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_311, /*hidden argument*/NULL); NullCheck(L_310); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_310, L_312, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_313 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_314 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_315 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_314, /*hidden argument*/NULL); NullCheck(L_313); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_313, L_315, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_316 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_317 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_318 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_317, /*hidden argument*/NULL); NullCheck(L_316); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_316, L_318, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_319 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_320 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_321 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_320, /*hidden argument*/NULL); NullCheck(L_319); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_319, L_321, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_322 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_323 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_324 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_323, /*hidden argument*/NULL); NullCheck(L_322); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_322, L_324, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_325 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_326 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_327 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_326, /*hidden argument*/NULL); NullCheck(L_325); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_325, L_327, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_328 = V_1; NullCheck(L_300); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_300, L_302, L_328, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_329 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_330 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_331 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_330, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_332 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_332, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); NullCheck(L_329); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_329, L_331, L_332, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_333 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_334 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_335 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_334, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_336 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_336, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); NullCheck(L_333); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_333, L_335, L_336, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_337 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_338 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_339 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_338, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_340 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_340, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_340; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_341 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_342 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_343 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_342, /*hidden argument*/NULL); NullCheck(L_341); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_341, L_343, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_344 = V_1; NullCheck(L_337); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_337, L_339, L_344, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_345 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_346 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_347 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_346, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_348 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_348, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); NullCheck(L_345); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_345, L_347, L_348, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_349 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_350 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; Type_t * L_351 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_350, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_352 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_352, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); NullCheck(L_349); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_349, L_351, L_352, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_353 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_354 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) }; Type_t * L_355 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_354, /*hidden argument*/NULL); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_356 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_356, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); NullCheck(L_353); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_353, L_355, L_356, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_357 = V_0; Type_t * L_358 = ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->get_VoidPointerType_19(); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_359 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_359, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); NullCheck(L_357); Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0(L_357, L_358, L_359, /*hidden argument*/Dictionary_2_Add_m3256E57D216AEC2C229AE97D55AEFD946AD46CE0_RuntimeMethod_var); Dictionary_2_t185BAA5CB15F26377B7EF8B74167146647EE342B * L_360 = V_0; ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_PrimitiveImplicitCasts_20(L_360); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_361 = (HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 *)il2cpp_codegen_object_new(HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093_il2cpp_TypeInfo_var); HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0(L_361, /*hidden argument*/HashSet_1__ctor_m1B967CBCA23D9992812EF3E0F7B134513C5B2CD0_RuntimeMethod_var); V_1 = L_361; HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_362 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_363 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_364 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_363, /*hidden argument*/NULL); NullCheck(L_362); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_362, L_364, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_365 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_366 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_367 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_366, /*hidden argument*/NULL); NullCheck(L_365); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_365, L_367, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_368 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_369 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_370 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_369, /*hidden argument*/NULL); NullCheck(L_368); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_368, L_370, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_371 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_372 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_373 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_372, /*hidden argument*/NULL); NullCheck(L_371); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_371, L_373, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_374 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_375 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_376 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_375, /*hidden argument*/NULL); NullCheck(L_374); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_374, L_376, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_377 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_378 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_379 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_378, /*hidden argument*/NULL); NullCheck(L_377); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_377, L_379, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_380 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_381 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_382 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_381, /*hidden argument*/NULL); NullCheck(L_380); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_380, L_382, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_383 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_384 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_385 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_384, /*hidden argument*/NULL); NullCheck(L_383); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_383, L_385, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_386 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_387 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; Type_t * L_388 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_387, /*hidden argument*/NULL); NullCheck(L_386); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_386, L_388, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_389 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_390 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_391 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_390, /*hidden argument*/NULL); NullCheck(L_389); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_389, L_391, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_392 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_393 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_394 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_393, /*hidden argument*/NULL); NullCheck(L_392); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_392, L_394, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_395 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_396 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_397 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_396, /*hidden argument*/NULL); NullCheck(L_395); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_395, L_397, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_398 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_399 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; Type_t * L_400 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_399, /*hidden argument*/NULL); NullCheck(L_398); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_398, L_400, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_401 = V_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_402 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) }; Type_t * L_403 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_402, /*hidden argument*/NULL); NullCheck(L_401); HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF(L_401, L_403, /*hidden argument*/HashSet_1_Add_m6CC7F74DF1AF5EE0B4A6DB31A69DBA1394DFCFBF_RuntimeMethod_var); HashSet_1_t544AC11AC60DAE1E8BEF227538C0A211EFE62093 * L_404 = V_1; ((TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_StaticFields*)il2cpp_codegen_static_fields_for(TypeExtensions_t0AA4B844C2A12EE7496DC82FBBC6611B37BDCD59_il2cpp_TypeInfo_var))->set_ExplicitCastIntegrals_21(L_404); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void BaseDataWriter_set_Context_mEE563E3E13FE5E5D22B8E78572293E04BC474BA7_inline (BaseDataWriter_t0F4103DC682D267E967D88271F6910D34145C012 * __this, SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * ___value0, const RuntimeMethod* method) { { SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * L_0 = ___value0; __this->set_context_2(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void BaseDataReader_set_Context_mB0441E42B9E9CABD729ECEAAAA1302BE2CA6BF00_inline (BaseDataReader_tA01AF6603C68EDBFA3B3CF4A6F8BA962D526E72B * __this, DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * ___value0, const RuntimeMethod* method) { { DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * L_0 = ___value0; __this->set_context_2(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void SerializationContext_set_IndexReferenceResolver_mB8D8070FFE33FB9BED811EEF3B16D378036ADA94_inline (SerializationContext_t833B75EFA3598C8EAD3643E789357B39E9E0FE0B * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___value0; __this->set_U3CIndexReferenceResolverU3Ek__BackingField_5(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * UnityReferenceResolver_GetReferencedUnityObjects_m5338EFA1A48D67FD29C4BC471257AAFF9BA651E4_inline (UnityReferenceResolver_tCFF938B32B9943E999468375CFF81FA7EEABE663 * __this, const RuntimeMethod* method) { { List_1_tFBE5EAC904D61656042F7DB9EFCB3F82219BF7F2 * L_0 = __this->get_referencedUnityObjects_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DeserializationContext_set_IndexReferenceResolver_m0027EE73B5149E617BFAF47E94CD26CA5234E431_inline (DeserializationContext_tA0D61413AD799EF5536AAE4292FA670063BFA413 * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___value0; __this->set_U3CIndexReferenceResolverU3Ek__BackingField_7(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int64_t ___ticks0, const RuntimeMethod* method) { { int64_t L_0 = ___ticks0; __this->set__ticks_3(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnitySerializationInitializer_set_CurrentPlatform_m87C95518B9FFE76BE258B2D3BD8C5D41B3B6C327_inline (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationInitializer_set_CurrentPlatform_m87C95518B9FFE76BE258B2D3BD8C5D41B3B6C327Sirenix_Serialization2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->set_U3CCurrentPlatformU3Ek__BackingField_2(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t UnitySerializationInitializer_get_CurrentPlatform_mC3E00160B0C03A7B55900A907557C6A94A2777F3_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnitySerializationInitializer_get_CurrentPlatform_mC3E00160B0C03A7B55900A907557C6A94A2777F3Sirenix_Serialization2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var); int32_t L_0 = ((UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_StaticFields*)il2cpp_codegen_static_fields_for(UnitySerializationInitializer_tD76EBC4B2F3A229640DF8C569A3FA81EAF5663FD_il2cpp_TypeInfo_var))->get_U3CCurrentPlatformU3Ek__BackingField_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t GlobalSerializationConfig_get_BuildSerializationFormat_m7E9C213D72BF07EDD29AEF4F9CB4F8333E4C5813_inline (GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_buildSerializationFormat_15(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t GlobalSerializationConfig_get_ErrorHandlingPolicy_mE779E5E188720C8AD1B507BBE698CD1EF2CE5F50_inline (GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_errorHandlingPolicy_18(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t GlobalSerializationConfig_get_LoggingPolicy_m776ADBF2D937C50D07B53E3D96F9BD61176BB817_inline (GlobalSerializationConfig_tD429CB39159AAC824B11C48596A495E7DFA2C288 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_loggingPolicy_17(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR FieldInfo_t * MemberAliasFieldInfo_get_AliasedField_m21F4B3801BDA72BE06F247466CF800AA1CB9A083_inline (MemberAliasFieldInfo_tB01202D342052BAC2C6B8DE57CD015269D99D4B8 * __this, const RuntimeMethod* method) { { FieldInfo_t * L_0 = __this->get_aliasedField_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR PropertyInfo_t * MemberAliasPropertyInfo_get_AliasedProperty_mF48B87F081230C7239CE228570EA7750BE6C969C_inline (MemberAliasPropertyInfo_tBEF727C5D17C9FA6823FE00A94827430B8A6647F * __this, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = __this->get_aliasedProperty_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MethodInfo_t * MemberAliasMethodInfo_get_AliasedMethod_m84550753FCF647D3037205113DB54F425C6B40C2_inline (MemberAliasMethodInfo_t32EF1F8B6FFF13D310596F8E39492C28D2D7B466 * __this, const RuntimeMethod* method) { { MethodInfo_t * L_0 = __this->get_aliasedMethod_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE65F2C717B6857E8EFA2D236B94D321EDE174836_gshared_inline (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m420882393EE1A0D24867403DB1BDBBB389366A27_gshared_inline (Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_has_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 List_1_get_Item_m3753CC86C9DF54981DAB86088A4051A23BCCBDEC_gshared_inline (List_1_t3629CCF07195463A5842714B45BC14EF20CB1ECB * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL); } IL_000e: { SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A* L_2 = (SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A*)__this->get__items_1(); int32_t L_3 = ___index0; SerializationNode_tD6B78952C244B520E52E0BC180DF35C044F35A15 L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((SerializationNodeU5BU5D_tAEA191C5ECF2CE4D3AF5A5CC64AB02727E5CED0A*)L_2, (int32_t)L_3); return L_4; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t Nullable_1_GetValueOrDefault_m7F2175891767B103AEFC18392E3D045D89B15E20_gshared_inline (Nullable_1_tAD3D374B25057F9C5F22F267FE9A4F0EE5F82152 * __this, const RuntimeMethod* method) { { uint8_t L_0 = (uint8_t)__this->get_value_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3); return L_4; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mADA59B620C88DF47CBB953A8941CFE545BDF556D_gshared_inline (Stack_1_t576E16A8DBBF0430E26B9525C7A047671F793CA8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_1(); return L_0; } }
3b7d295e05f2b3ac1a4469235bda12e3ca392587
9af4d26e7e1ae54f5337311da3a39f3531ff2f46
/src/tester.cc
217d6b836cf78f8fc4e0c275a864a7105021b9df
[]
no_license
AndiLi99/catan
80beff0cfa8f75dc5a4e3e8c6a89f136bdc72cd0
8f22ec6dddd6aeff31d48ceaa11cd1ca3688504a
refs/heads/master
2020-06-16T11:46:46.590007
2020-05-08T06:24:18
2020-05-08T06:24:18
195,561,636
0
2
null
null
null
null
UTF-8
C++
false
false
5,718
cc
tester.cc
#include <iostream> #include "hexagonGrid/edge.h" #include "hexagonGrid/hexagon.h" #include "hexagonGrid/vertex.h" #include "hexagonGrid.h" #include "gameState.h" #include "textDisplayObserver.h" #include "hexagonGridBuilder.h" #include "commandParser.h" #include "defaultGridBuilder.h" #include "randomGridBuilder.h" void complain(const char* name){ std::cout << "Test failed: " << name << std::endl; } void equal_hex(const char* name, Hexagon hex1, Hexagon hex2){ if (!(hex1.a == hex2.a && hex1.b == hex2.b)){ complain(name); } } void equal_int(const char* name, int a, int b){ if (a != b) complain(name); } void equal_edge(const char* name, Edge e1, Edge e2){ if (!(e1.a == e2.a && e1.b == e2.b && e1.s == e2.s)){ complain(name); } } void equal_vertex(const char* name, Vertex v1, Vertex v2){ if (!(v1.a == v2.a && v1.b == v2.b && v1.c == v2.c)){ complain(name); } } void test_hex_math(){ equal_hex("hex_add_1", Hexagon(1,2) + Hexagon(2, 3), Hexagon(3,5)); equal_hex("hex_subtract_1", Hexagon(2, 3) - Hexagon(5,5), Hexagon(-3,-2)); equal_hex("hex_multiply_1", Hexagon(3,1) * 4, Hexagon(12,4)); } void test_hex_equals(){ if (Hexagon(2,3) != Hexagon(2,3)){ complain("hex_inequality"); } if (Hexagon(1,1) == Hexagon (0,1)){ complain("hex_equality"); } } void test_edge_equals(){ if (Edge(2,3, Side::W) != Edge(2,3, Side::W)){ complain("edge_inequality"); } if (Edge(1,1, Side::W) == Edge (0,1, Side::W)){ complain("edge_equality_1"); } if (Edge(1,1, Side::W) == Edge (1,1, Side::N)){ complain("edge_equality_2"); } } void test_vertex_equals(){ if (Vertex(2,3, Corner::L) != Vertex(2,3, Corner::L)){ complain("Vertex_inequality"); } if (Vertex(1,1, Corner::L) == Vertex (0,1, Corner::L)){ complain("Vertex_equality_1"); } if (Vertex(1,1, Corner::R) == Vertex (1,1, Corner::L)){ complain("Vertex_equality_2"); } } void test_hex_directions(){ equal_hex("hex_direction_0", Hexagon(1,0), Hexagon::hex_direction(0)); equal_hex("hex_direction_1", Hexagon(1,-1), Hexagon::hex_direction(1)); equal_hex("hex_direction_2", Hexagon(0,-1), Hexagon::hex_direction(2)); equal_hex("hex_direction_3", Hexagon(-1,0), Hexagon::hex_direction(3)); equal_hex("hex_direction_4", Hexagon(-1,1), Hexagon::hex_direction(4)); equal_hex("hex_direction_5", Hexagon(0,1), Hexagon::hex_direction(5)); } void test_hex_neighbour(){ equal_hex("hex_neighbour", Hexagon(1,-1), Hexagon(1,-2).neighbour(5).neighbour(2).neighbour(5)); equal_hex("hex_neighbour_1", Hexagon(4,3), Hexagon(1,1) + 3 * Hexagon::hex_direction(0) + 2*Hexagon::hex_direction(5)); } void test_hex_length(){ equal_int("hex_length", 2, Hexagon(2,-1).length()); } void print_relationships(){ std::cout << "Testing Hexagon neighbours" << std::endl; for (Hexagon h: Hexagon(0,0).neighbours()){ std::cout << h; } std::cout << "Testing Hexagon borders" << std::endl; for (Edge h: Hexagon(0,0).borders()){ std::cout << h; } std::cout << "Testing Hexagon corners" << std::endl; for (Vertex h: Hexagon(0,0).corners()){ std::cout << h; } std::cout << "Testing Edge joins" << std::endl; for (Hexagon h: Edge(0,0, Side::N).joins()){ std::cout << h; } std::cout << "Testing Edge continues" << std::endl; for (Edge h: Edge(0,0, Side::N).continues()){ std::cout << h; } std::cout << "Testing Edge endpoints" << std::endl; for (Vertex h: Edge(0,0, Side::N).endpoints()){ std::cout << h; } std::cout << "Testing Vertex touches" << std::endl; for (Hexagon h: Vertex(0,0, Corner::R).touches()){ std::cout << h; } std::cout << "Testing Vertex protrudes" << std::endl; for (Edge h: Vertex(0,0, Corner::R).protrudes()){ std::cout << h; } std::cout << "Testing Vertex adjacent" << std::endl; for (Vertex h: Vertex(0,0, Corner::R).adjacent()){ std::cout << h; } } void printHexVect(std::vector<Hexagon> vect){ for (Hexagon h: vect){ std::cout << h; } } void printVertVect(std::vector<Vertex> vect){ for (Vertex h: vect){ std::cout << h; } } void printEdgeVect(std::vector<Edge> vect){ for (Edge h: vect){ std::cout << h; } } void test_hexagon_gen(){ DefaultGridBuilder defBuilder; HexagonGrid hexagonGrid = defBuilder.build(); std::vector<Hexagon> vect = hexagonGrid.getHexPrintOrder(); printHexVect(vect); std::cout << vect.size() << std::endl; } void test_vertex_gen(){ DefaultGridBuilder defBuilder; HexagonGrid hexagonGrid = defBuilder.build(); std::vector<Vertex> vect = hexagonGrid.getVertexPrintOrder(); printVertVect(vect); std::cout << vect.size() << std::endl; } void test_edge_gen(){ DefaultGridBuilder defBuilder; HexagonGrid hexagonGrid = defBuilder.build(); std::vector<Edge> vect = hexagonGrid.getEdgePrintOrder(); printEdgeVect(vect); std::cout << vect.size() << std::endl; } void test_game_state(){ DefaultGridBuilder defBuilder; RandomGridBuilder randomBuilder; HexagonGrid hexGrid = randomBuilder.build(); Board board{hexGrid}; std::vector<Player> players{Player{"Andi"}, Player{"Gracie"}}; DiceRoll dice; GameState gameState{board, players, dice}; TextDisplay textDisplay{&gameState}; CommandParser commandParser{&gameState}; std::string input; while (std::getline(std::cin,input)){ commandParser.parse(input); } } void test_all(){ test_game_state(); } // int main(){ // test_all(); // }
e90441a81152cc4f9c1e46800a2a7029aa719f44
a4df9119111b4fbb7607b8fe208721b4caa8cf47
/AtS Project/AtS Project/SpriteRenderer.h
5b86a7e8870c766b6750eade6a6d3a52b371d96f
[]
no_license
StillOP/Ats-Engine
9d1cf1ebffc69f3c8c4b5461d73db4270226e47e
9f1128782e212fc774ef441869300e483db02d44
refs/heads/master
2023-02-01T12:25:36.064522
2020-12-21T14:13:54
2020-12-21T14:13:54
199,670,444
0
0
null
null
null
null
UTF-8
C++
false
false
543
h
SpriteRenderer.h
#pragma once #include <d2d1.h> #include "Component.h" #include "Transform.h" #include "Math.h" class SpriteRenderer : public Component { public: SpriteRenderer(); ~SpriteRenderer(); void bitmap(ID2D1Bitmap** bitmap); void bitmap(ID2D1Bitmap** bitmap, Rect& sourceRect); void bitmap(ID2D1Bitmap** bitmap, Rect&& sourceRect); ID2D1Bitmap* bitmap(); Rect& sourceRect(); float& opacity(); float& scale(); Vector2 size(); private: ID2D1Bitmap** m_pbitmap; Rect m_sourceRect; Vector2 m_size; float m_opacity; float m_scale; };
d3003946049908b55f5541d06eb49bd9e4e59620
0ee14f34e00344c1baba75be93c8725272e5cef5
/Unit-Tests/Test-CFPP-Object.cpp
9548c2a7ef7871d0f27e3cb73a5f447de4a42e23
[ "MIT" ]
permissive
DigiDNA/CFPP
08bf8ba362e8f1bf5a2f269405bfb388431a21f4
bf8b2e6d67431007ebd165f0d075ff7b113a91c6
refs/heads/main
2023-04-27T19:27:11.592809
2023-04-14T19:48:54
2023-04-14T19:48:54
17,489,452
6
2
null
null
null
null
UTF-8
C++
false
false
4,969
cpp
Test-CFPP-Object.cpp
/******************************************************************************* * The MIT License (MIT) * * Copyright (c) 2014 Jean-David Gadina - www.xs-labs.com / www.digidna.net * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. ******************************************************************************/ /*! * @file Test-CFPP-Object.cpp * @copyright (c) 2014 - Jean-David Gadina - www.xs-labs.com / www.digidna.net * @abstract Unit tests for CF::Object */ #include <CF++.hpp> #include "Constants.hpp" #define XSTEST_GTEST_COMPAT #include <XSTest/XSTest.hpp> TEST( CFPP_Object, CTOR ) { CF::Object< CFBagRef > o; ASSERT_FALSE( o.IsValid() ); } TEST( CFPP_Object, CTOR_AutoPointer ) { CF::Object< CFBagRef > o1( CF::AutoPointer( CFBagCreate( nullptr, nullptr, 0, nullptr ) ) ); CF::Object< CFBagRef > o2( CF::AutoPointer( nullptr ) ); ASSERT_TRUE( o1.IsValid() ); ASSERT_FALSE( o2.IsValid() ); } TEST( CFPP_Object, CTOR_CFBag ) { CFBagRef cfB; cfB = CFBagCreate( nullptr, nullptr, 0, nullptr ); { CF::Object< CFBagRef > o1( static_cast< CFBagRef >( cfB ) ); CF::Object< CFBagRef > o2( static_cast< CFBagRef >( nullptr ) ); ASSERT_TRUE( o1.IsValid() ); ASSERT_FALSE( o2.IsValid() ); } CFRelease( cfB ); } TEST( CFPP_Object, CCTOR ) { CFBagRef cfB; cfB = CFBagCreate( nullptr, nullptr, 0, nullptr ); { CF::Object< CFBagRef > o1( cfB ); CF::Object< CFBagRef > o2( o1 ); ASSERT_TRUE( o2.IsValid() ); ASSERT_EQ( o1.GetCFObject(), o2.GetCFObject() ); } CFRelease( cfB ); } TEST( CFPP_Object, MCTOR ) { CFBagRef cfB; cfB = CFBagCreate( nullptr, nullptr, 0, nullptr ); { CF::Object< CFBagRef > o1( cfB ); CF::Object< CFBagRef > o2( std::move( o1 ) ); ASSERT_FALSE( o1.IsValid() ); ASSERT_TRUE( o2.IsValid() ); } CFRelease( cfB ); } TEST( CFPP_Object, OperatorAssignBag ) { CFBagRef cfB; cfB = CFBagCreate( nullptr, nullptr, 0, nullptr ); { CF::Object< CFBagRef > o1( cfB ); CF::Object< CFBagRef > o2; o2 = o1; ASSERT_TRUE( o1.IsValid() ); ASSERT_TRUE( o2.IsValid() ); ASSERT_EQ( o1.GetCFObject(), o2.GetCFObject() ); } CFRelease( cfB ); } TEST( CFPP_Object, OperatorAssignAutoPointer ) { CF::Object< CFBagRef > o1; ASSERT_FALSE( o1.IsValid() ); o1 = CF::AutoPointer( CFBagCreate( nullptr, nullptr, 0, nullptr ) ); ASSERT_TRUE( o1.IsValid() ); } TEST( CFPP_Object, OperatorAssignCFBag ) { CFBagRef cfB; cfB = CFBagCreate( nullptr, nullptr, 0, nullptr ); { CF::Object< CFBagRef > o1; o1 = static_cast< CFBagRef >( cfB ); ASSERT_TRUE( o1.IsValid() ); o1 = static_cast< CFBagRef >( nullptr ); ASSERT_FALSE( o1.IsValid() ); } CFRelease( cfB ); } TEST( CFPP_Object, GetTypeID ) { CF::Object< CFBagRef > o1; ASSERT_EQ( o1.GetTypeID(), static_cast< CFTypeID >( 0 ) ); o1 = CF::AutoPointer( CFBagCreate( nullptr, nullptr, 0, nullptr ) ); ASSERT_EQ( o1.GetTypeID(), CFBagGetTypeID() ); } TEST( CFPP_Object, GetCFObject ) { CF::Object< CFBagRef > o1( CF::AutoPointer( CFBagCreate( nullptr, nullptr, 0, nullptr ) ) ); CF::Object< CFBagRef > o2; ASSERT_TRUE( o1.GetCFObject() != nullptr ); ASSERT_TRUE( o2.GetCFObject() == nullptr ); ASSERT_EQ( CFGetTypeID( o1.GetCFObject() ), CFBagGetTypeID() ); } TEST( CFPP_Object, Swap ) { CF::Object< CFBagRef > o1( CF::AutoPointer( CFBagCreate( nullptr, nullptr, 0, nullptr ) ) ); CF::Object< CFBagRef > o2; swap( o1, o2 ); ASSERT_FALSE( o1.IsValid() ); ASSERT_TRUE( o2.IsValid() ); }
6855225577705c5f0f695db2cfeb8566fa613512
480e33f95eec2e471c563d4c0661784c92396368
/Alignment/MuonAlignment/interface/MuonAlignmentInputDB.h
c6ad85431d7b3c53979595cc126b57dac8e3e3b0
[ "Apache-2.0" ]
permissive
cms-nanoAOD/cmssw
4d836e5b76ae5075c232de5e062d286e2026e8bd
4eccb8a758b605875003124dd55ea58552b86af1
refs/heads/master-cmsswmaster
2021-01-23T21:19:52.295420
2020-08-27T08:01:20
2020-08-27T08:01:20
102,867,729
7
14
Apache-2.0
2022-05-23T07:58:09
2017-09-08T14:03:57
C++
UTF-8
C++
false
false
1,525
h
MuonAlignmentInputDB.h
#ifndef Alignment_MuonAlignment_MuonAlignmentInputDB_h #define Alignment_MuonAlignment_MuonAlignmentInputDB_h // -*- C++ -*- // // Package: MuonAlignment // Class : MuonAlignmentInputDB // /**\class MuonAlignmentInputDB MuonAlignmentInputDB.h Alignment/MuonAlignment/interface/MuonAlignmentInputDB.h Description: <one line class summary> Usage: <usage> */ // // Original Author: Jim Pivarski // Created: Thu Mar 6 17:30:40 CST 2008 // $Id: MuonAlignmentInputDB.h,v 1.1 2008/03/15 20:26:46 pivarski Exp $ // // system include files // user include files #include "Alignment/MuonAlignment/interface/MuonAlignmentInputMethod.h" // forward declarations class MuonAlignmentInputDB : public MuonAlignmentInputMethod { public: MuonAlignmentInputDB(); MuonAlignmentInputDB(std::string dtLabel, std::string cscLabel, std::string idealLabel, bool getAPEs); ~MuonAlignmentInputDB() override; // ---------- const member functions --------------------- // ---------- static member functions -------------------- // ---------- member functions --------------------------- AlignableMuon *newAlignableMuon(const edm::EventSetup &iSetup) const override; private: MuonAlignmentInputDB(const MuonAlignmentInputDB &) = delete; // stop default const MuonAlignmentInputDB &operator=(const MuonAlignmentInputDB &) = delete; // stop default // ---------- member data -------------------------------- std::string m_dtLabel, m_cscLabel, idealGeometryLabel; bool m_getAPEs; }; #endif
500af241adff37b6fcf777aefc973d506d26a17e
a5a99f646e371b45974a6fb6ccc06b0a674818f2
/TrackingTools/MeasurementDet/interface/LayerMeasurements.h
9e5d49471d16fa1d21d6dfee20aadf8c283b6b34
[ "Apache-2.0" ]
permissive
cms-sw/cmssw
4ecd2c1105d59c66d385551230542c6615b9ab58
19c178740257eb48367778593da55dcad08b7a4f
refs/heads/master
2023-08-23T21:57:42.491143
2023-08-22T20:22:40
2023-08-22T20:22:40
10,969,551
1,006
3,696
Apache-2.0
2023-09-14T19:14:28
2013-06-26T14:09:07
C++
UTF-8
C++
false
false
1,884
h
LayerMeasurements.h
#ifndef LayerMeasurements_H #define LayerMeasurements_H #include "TrackingTools/MeasurementDet/interface/MeasurementDetSystem.h" #include "DataFormats/TrackerRecHit2D/interface/BaseTrackerRecHit.h" #include <vector> class TrajectoryStateOnSurface; class Propagator; class MeasurementEstimator; class TrajectoryMeasurement; class TrajectoryMeasurementGroup; class MeasurementTrackerEvent; class DetLayer; class DetGroup; class LayerMeasurements { public: LayerMeasurements(const MeasurementDetSystem& detSystem, const MeasurementTrackerEvent& data) : detSystem_(detSystem), data_(data) {} // return just valid hits, no sorting (for seeding mostly) std::vector<BaseTrackerRecHit*> recHits(const DetLayer& layer, const TrajectoryStateOnSurface& startingState, const Propagator& prop, const MeasurementEstimator& est) const; std::vector<TrajectoryMeasurement> measurements(const DetLayer& layer, const TrajectoryStateOnSurface& startingState, const Propagator& prop, const MeasurementEstimator& est) const; std::vector<TrajectoryMeasurementGroup> groupedMeasurements(const DetLayer& layer, const TrajectoryStateOnSurface& startingState, const Propagator& prop, const MeasurementEstimator& est) const; MeasurementDetWithData idToDet(const DetId& id) const { return detSystem_.idToDet(id, data_); } private: MeasurementDetSystem const& detSystem_; MeasurementTrackerEvent const& data_; }; #endif
6460745828424b04cdd9dfcb4d6b70e500ffd9e6
b6f38c6bc4626db2422477a03c2616fe4f94427a
/unittests/system/UnixFake.cpp
3b37a2a5b527f47133d029b6da58e149b9afa282
[ "BSD-3-Clause" ]
permissive
chyla/OutputMatchTestingTool
ae0b6f5bd833aef497d665d29e52065051948cb6
d45fe3433e15e0dc396f62577c49d2673a531359
refs/heads/master
2023-08-11T13:34:59.332006
2023-07-29T09:02:27
2023-07-29T09:02:27
209,099,990
5
0
BSD-3-Clause
2021-07-18T17:30:43
2019-09-17T16:10:44
C++
UTF-8
C++
false
false
1,649
cpp
UnixFake.cpp
/* * Copyright (c) 2019-2023, Adam Chyła <adam@chyla.org>. * All rights reserved. * * Distributed under the terms of the BSD 3-Clause License. */ #include "unittests/system/UnixFake.hpp" namespace omtt::system::unix { const Pipe MakePipe(const PipeOptions option) { return GlobalFake().MakePipeAction(option); } ssize_t Read(int fd, void *buf, size_t count) { return GlobalFake().ReadAction(fd, buf, count); } ssize_t Write(int fd, const void *buf, size_t count, WriteOptions options) { return GlobalFake().WriteAction(fd, buf, count, options); } void Close(int fd) { GlobalFake().CloseAction(fd); } ssize_t Fork() { return GlobalFake().ForkAction(); } int WaitPid(pid_t pid, int *wstatus, int options) { return GlobalFake().WaitPidAction(pid, wstatus, options); } void DuplicateFd(int oldFd, int newFd) { GlobalFake().DuplicateFdAction(oldFd, newFd); } void Exec(const std::string &path, const std::vector<std::string> &arguments) { GlobalFake().ExecAction(path, arguments); } void Terminate(const int status) { GlobalFake().TerminateAction(status); } void SigAction(int signum, const struct sigaction *act, struct sigaction *oldact) { GlobalFake().SigAction(signum, act, oldact); } void Signal(int signum, sighandler_t handler) { GlobalFake().Signal(signum, handler); } int Poll(struct pollfd *fds, nfds_t nfds, int timeout) { return GlobalFake().PollAction(fds, nfds, timeout); } int Fcntl(int fd, int cmd, int arg) { return GlobalFake().FcntlAction(fd, cmd, arg); } void Kill(pid_t pid, int sig) { return GlobalFake().KillAction(pid, sig); } } // omtt::system::unix
fd9dfcffb551300141e70c67d5ab325d62a82460
cde370fb119bd2495b39f5b4e46201f35d86cd0b
/common/qtEventAndThread.h
fe2419c48a564e4bb1f12f04475570eb18e649a4
[]
no_license
channyHuang/baseProject
7d7f0ab228d3aafdb3d25b3bc2b41498a810d2bb
658fe58e1b5c7783a63b7f2a35d03a0b6e1ad0e5
refs/heads/master
2023-01-30T08:22:07.602255
2023-01-20T13:49:55
2023-01-20T13:49:55
186,633,226
0
0
null
null
null
null
UTF-8
C++
false
false
1,079
h
qtEventAndThread.h
#ifndef QTEVENTANDTHREAD_H #define QTEVENTANDTHREAD_H #include <QCoreApplication> #include <QThread> class QtEvent { public: QtEvent() { if(NULL == QCoreApplication::instance()) { int argc=1; QString name = "demoDll"; char *argv = (char*)name.toStdString().c_str(); m_pApp = new QCoreApplication(argc,&argv); } } virtual ~QtEvent() { if(m_pApp) delete m_pApp; m_pApp = nullptr; } private: QCoreApplication *m_pApp; }; template<typename T> class DllThread : public QThread { public: explicit DllThread(QObject *parent = Q_NULLPTR) :QThread(parent),m_pt(nullptr){} virtual ~DllThread(){} void bind(T* pt) { m_pt = pt; m_pt->moveToThread(this); } protected: virtual void run() { if(nullptr == m_pt) return; m_pt->initInThread(); exec(); m_pt->deinitInThread(); } public: T* m_pt; }; #endif // QTEVENTANDTHREAD_H
086a823c14d3c5d8ec17d35286a683e5baeb7de3
4867ab9a788e01032e89de504dfdfbd2e0b9db31
/PPC_Equivalency_Test/main.cpp
9410ff67d4abe03e021464284d623f33bf21d13b
[]
no_license
Nakeymonkey/Periodic_Crystal_Structures_Project
2372f9d8c9c1ef2df1181411e093e41aa9358933
3bd2e8c6456b9a0adca77fbe70232e654046c8bc
refs/heads/master
2020-03-22T04:01:12.088011
2018-06-21T16:18:49
2018-06-21T16:18:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,286
cpp
main.cpp
#include <gemmi/cif.hpp> #include <fstream> #include "Read_Cell_Shape.h" #include "Read_Atom_Coords.h" #include "Obtain_Cloud_Of_T2_Centres.h" #include "Min_Dist_Within_Cell.h" #include "Extend_Cell_And_Cloud.h" #include "Min_Dist_Within_Nbhd_Cells.h" #include "Print_Summary.h" const int num_distances = 2; const int iterations = 5688; const string dataset_directory = "/Users/philsmith/Documents/Xcode Projects/PPC_Equivalency_Test/T2_Dataset/"; bool Increasing_Distance ( pair<int, Point2d>const& p1, pair<int, Point2d>const& p2 ) { return p2.second.x > p1.second.x; } int main ( int, char*[] ) { clock_t start_time = clock(); // Start time. vector<pair<int, Point2d>> output_cloud; for (int counter_1 = 1; counter_1 < iterations + 1; ++counter_1) { string filename = "T2_" + to_string( counter_1 ) + "_num_molGeom.cif"; string file_path = dataset_directory + filename; cif::Document cif_file = cif::read_file( file_path ); // Accessing CIF file. cif::Block * block = &(*(++cif_file.blocks.begin())); // Pointer to relevant block. vector<pair<string, double>> cell_shape; Read_Cell_Shape( block, cell_shape ); // Reading cell shape. int min_cell_length = Min_Cell_Length( cell_shape[0].second, cell_shape[1].second, cell_shape[2].second ); double ** matrix; matrix = new double *[3]; for (int counter_2 = 0; counter_2 < 3; ++counter_2) { matrix[counter_2] = new double [3]; } Transformation_Matrix( cell_shape, matrix ); // Calculating the transformation matrix. vector<Atom> atom_cloud; Read_Atom_Coords( block, matrix, atom_cloud ); // Obtaining the atom cloud. vector<Atom> T2_centre_cloud; Obtain_Cloud_Of_T2_Centres( atom_cloud, matrix, T2_centre_cloud ); // Obtaining the cloud of molecule centres. vector<pair<double, pair<Atom, Atom>>> min_dist; size_t unit_cloud_size = T2_centre_cloud.size(); Min_Dist_Within_Cell( T2_centre_cloud, unit_cloud_size, num_distances, min_dist ); // Calculating the minimum distances within the cell. vector<Atom> extended_cloud; bool extension = false; int cell_length_scale_factor[3] = { 1, 1, 1 }; while (min_dist[0].first > 1e9) // Not enough distances. { extension = true; Extend_Cell_And_Cloud_2( cell_length_scale_factor, matrix, T2_centre_cloud, extended_cloud ); Min_Dist_Within_Cell( extended_cloud, unit_cloud_size, num_distances, min_dist ); } if (min_dist[0].first > cell_shape[min_cell_length].second) // Extending the cloud if necessary. { extension = true; Extend_Cell_And_Cloud( min_dist[0].first, min_cell_length, cell_shape, cell_length_scale_factor, matrix, T2_centre_cloud, extended_cloud ); Min_Dist_Within_Cell( extended_cloud, unit_cloud_size, num_distances, min_dist ); } // Calculating the minimum distances including neighbouring cells. if (extension) Min_Dist_Within_Nbhd_Cells( cell_length_scale_factor, matrix, extended_cloud, num_distances, min_dist ); else Min_Dist_Within_Nbhd_Cells( cell_length_scale_factor, matrix, T2_centre_cloud, num_distances, min_dist ); output_cloud.push_back( pair<int, Point2d>( counter_1, Point2d( min_dist[1].first, min_dist[0].first ) ) ); Print_Info( counter_1, min_dist ); } sort( output_cloud.begin(), output_cloud.end(), Increasing_Distance ); ofstream ofs( "/Users/philsmith/Documents/Xcode Projects/PPC_Equivalency_Test/Results/ppc" + to_string( iterations ) + ".txt" ); for (int counter = 0; counter < output_cloud.size(); ++counter) { ofs << "T2_" + to_string( output_cloud[counter].first ) + "_num_molGeom.cif " << output_cloud[counter].second.x << " " << output_cloud[counter].second.y << endl; } Print_Summary( start_time ); // Printing the summary. return 0; }
55f23199f769b7eb86933ac0c1cbe4d694f2c63d
6ef2bc4962cb8093e34022dd956553e43a0d737e
/Source/Models/DialogueTree.cpp
15250a686846f772edb93646b75c698341a848fc
[]
no_license
marciodrosa/sc-game-2
19d6b214ab09e5c3074636adde99f82f77de2ef3
bd15ff3300c14fa6d891ad9fed0baa37db9ae2b9
refs/heads/master
2022-11-23T03:49:52.022563
2020-07-26T00:16:31
2020-07-26T00:16:31
277,205,775
0
0
null
null
null
null
ISO-8859-1
C++
false
false
6,718
cpp
DialogueTree.cpp
#include "DialogueTree.h" using namespace sc; using namespace std; DialogueLine::DialogueLine() { Character = CharacterId::UNKNOW; } DialogueLine::DialogueLine(CharacterId character, std::string text) { this->Character = character; this->Text = text; } DialogueLine::DialogueLine(CharacterId character, std::string text, std::string next) { this->Character = character; this->Text = text; this->NextDialoguesKeys.push_back(next); } DialogueTree DialogueTree::InitialDialogueTree() { DialogueTree Tree; Tree.FirstLineKey = "luka.welcome"; Tree.CurrentDialogueLineKey = "luka.welcome"; Tree.Lines["luka.welcome"] = DialogueLine(CharacterId::LUKA, "Miau. Seja bem vindo ao CINELUKA. O meu nome é Luka e eu sou uma gata. Qual é o seu nome, forasteiro?"); Tree.Lines["luka.welcome"].NextDialoguesKeys.push_back("player.myNameIs"); Tree.Lines["luka.welcome"].NextDialoguesKeys.push_back("player.willNotTellYou"); Tree.Lines["player.myNameIs"] = DialogueLine(CharacterId::PLAYER, "Bem, o meu nome é..."); Tree.Lines["player.willNotTellYou"] = DialogueLine(CharacterId::PLAYER, "Não te interessa o meu nome!", "luka.howHude"); Tree.Lines["luka.howHude"] = DialogueLine(CharacterId::LUKA, "FFFSSST!! Que rude! Sinto muito, mas você não pode passar enquanto não me disser o seu nome."); Tree.Lines["luka.howHude"].NextDialoguesKeys.push_back("player.myNameIs"); Tree.Lines["luka.howHude"].NextDialoguesKeys.push_back("player.willNotTellYou"); return Tree; } DialogueTree DialogueTree::AfterNameDialogueTree() { DialogueTree Tree; Tree.FirstLineKey = "luka.youAreAHuman"; Tree.CurrentDialogueLineKey = "luka.youAreAHuman"; Tree.Lines["luka.youAreAHuman"] = DialogueLine(CharacterId::LUKA, "GASP! Você é um humano?! Humanos não podem entrar no cinema. Vocês estão em meio a uma pandemia!", "luka.onlyCatsCanGetIn"); Tree.Lines["luka.onlyCatsCanGetIn"] = DialogueLine(CharacterId::LUKA, "Nós, gatos, tomamos a administração dos cinemas enquanto vocês estão fora. Só gatos podem entrar, nós não pegamos Coronga.", "luka.humansAndDogsCantGetIn"); Tree.Lines["luka.humansAndDogsCantGetIn"] = DialogueLine(CharacterId::LUKA, "Não permitimos nem humanos, nem cachorros. Exceto o Joey. O Joey é legal."); Tree.Lines["luka.humansAndDogsCantGetIn"].NextDialoguesKeys.push_back("player.whatNow"); Tree.Lines["luka.humansAndDogsCantGetIn"].NextDialoguesKeys.push_back("player.IAmACat"); Tree.Lines["player.IAmACat"] = DialogueLine(CharacterId::PLAYER, "Eu não sou um humano! Eu sou um gato! Miau, Miau.", "luka.youCantFoolMe"); Tree.Lines["luka.youCantFoolMe"] = DialogueLine(CharacterId::LUKA, "Você não me engana, humano. Você tem nome de gente."); Tree.Lines["luka.youCantFoolMe"].NextDialoguesKeys.push_back("player.whatNow"); Tree.Lines["luka.youCantFoolMe"].NextDialoguesKeys.push_back("player.IAmACat"); Tree.Lines["player.whatNow"] = DialogueLine(CharacterId::PLAYER, "E agora? A Segunda Cinéfila está chegando...", "luka.IHaveAnIdea"); Tree.Lines["luka.IHaveAnIdea"] = DialogueLine(CharacterId::LUKA, "Tenho uma ideia. Vou mostrar a você a programação da semana.", "luka.watchItFromHome"); Tree.Lines["luka.watchItFromHome"] = DialogueLine(CharacterId::LUKA, "Então você e seus amigos podem votar no filme preferido e assistir no conforto do lar.", "luka.IWillBeThereToo"); Tree.Lines["luka.IWillBeThereToo"] = DialogueLine(CharacterId::LUKA, "Eu mesmo estarei lá talvez, assistindo o filme da minha maneira preferida (dormindo).", "luka.themeOfTheWeek"); Tree.Lines["luka.themeOfTheWeek"] = DialogueLine(CharacterId::LUKA, "O tema da semana é: FILMES COM GATOS... é o tema de todas as semanas aqui no CINELUKA, na verdade.", "luka.theseAreTheMovies"); Tree.Lines["luka.theseAreTheMovies"] = DialogueLine(CharacterId::LUKA, "A seleção de filmes é a seguinte:"); return Tree; } DialogueTree DialogueTree::ExtraMovieDialogueTree() { DialogueTree Tree; Tree.FirstLineKey = "ringo.extraMovie"; Tree.CurrentDialogueLineKey = "ringo.extraMovie"; Tree.Lines["ringo.extraMovie"] = DialogueLine(CharacterId::RINGO, "Olá. Eu sou Ringo, o projecionista. Desci aqui para informá-lo que, além da programação normal, há um FILME EXTRA.", "ringo.notAvailableInLegalMeans"); Tree.Lines["ringo.notAvailableInLegalMeans"] = DialogueLine(CharacterId::RINGO, "Esse filme, porém, não está disponível no país por meios legais.", "ringo.someoneNeedsToDownloadTheMovie"); Tree.Lines["ringo.someoneNeedsToDownloadTheMovie"] = DialogueLine(CharacterId::RINGO, "Então alguém tem que se disponibilizar para baixar da DEEP WEB ou coisa parecida.", "ringo.shouldNotBeAProblem"); Tree.Lines["ringo.shouldNotBeAProblem"] = DialogueLine(CharacterId::RINGO, "O que não deve ser um problema para vocês, humanos, que fazem coisas bem mais moralmente duvidosas. Como passar cheque sem fundo etc.", "ringo.thisIsTheMovie"); Tree.Lines["ringo.thisIsTheMovie"] = DialogueLine(CharacterId::RINGO, "O filme é o seguinte:"); return Tree; } DialogueTree DialogueTree::VotingDialogueTree() { DialogueTree Tree; Tree.FirstLineKey = "luka.seeOnlyMoviesWithCats"; Tree.CurrentDialogueLineKey = "luka.seeOnlyMoviesWithCats"; Tree.Lines["luka.seeOnlyMoviesWithCats"] = DialogueLine(CharacterId::LUKA, "Viu? Apenas filmes com gatos. Robert Pattinson, Ana de Armas etc.", "luka.doYouWantToVote"); Tree.Lines["luka.doYouWantToVote"] = DialogueLine(CharacterId::LUKA, "Agora que eu apresentei a você os filmes selecionados, gostaria de computar os votos dos seus favoritos e enviar pelo sistema COSMONET?"); Tree.Lines["luka.doYouWantToVote"].NextDialoguesKeys.push_back("player.yesIWantToVoteNow"); Tree.Lines["luka.doYouWantToVote"].NextDialoguesKeys.push_back("player.reviewMovies"); Tree.Lines["luka.doYouWantToVote"].NextDialoguesKeys.push_back("player.noIDontWantToVote"); Tree.Lines["player.yesIWantToVoteNow"] = DialogueLine(CharacterId::PLAYER, "Sim, gostaria de votar agora."); Tree.Lines["player.reviewMovies"] = DialogueLine(CharacterId::PLAYER, "Primeiro eu gostaria de rever a apresentação dos filmes."); Tree.Lines["player.noIDontWantToVote"] = DialogueLine(CharacterId::PLAYER, "Não, vou votar outra hora.", "luka.byeWithoutVote"); Tree.Lines["luka.byeWithoutVote"] = DialogueLine(CharacterId::LUKA, "Ok, você pode jogar o game mais tarde e votar. Por hora, muito obrigada por nos visitar, mas agora vaza. Bons filmes (em casa)!"); return Tree; } DialogueTree DialogueTree::EndingDialogueTree() { DialogueTree Tree; Tree.FirstLineKey = "luka.bye"; Tree.CurrentDialogueLineKey = "luka.bye"; Tree.Lines["luka.bye"] = DialogueLine(CharacterId::LUKA, "Muito obrigada por nos visitar, mas agora vaza. Bons filmes (em casa)!"); return Tree; }
5e00beb27f17de282d9c61ff337ba759a6070156
02fec111191ecede92d844422125ac8482171bde
/Contests/Seletiva2020/e.cpp
f1f5fdaa9a6da42103376673d15b0539921f0320
[]
no_license
Lucas3H/Maratona
475825b249659e376a1f63a6b3b6a1e15c0d4287
97a2e2a91fb60243124fc2ffb4193e1b72924c3c
refs/heads/master
2020-11-24T18:35:24.456960
2020-11-06T14:00:56
2020-11-06T14:00:56
228,292,025
0
0
null
null
null
null
UTF-8
C++
false
false
2,227
cpp
e.cpp
#include<bits/stdc++.h> using namespace std; #define fr(i, n) for(int i = 0; i < n; i++) #define frr(i, n) for(int i = 1; i <= n; i++) #define frm(i, n) for(int i = n-1; i >= 0; i--) #define pb push_back #define f first #define s second typedef long long ll; typedef pair<int,int> pii; typedef pair<double, double> ponto; typedef vector<vector<ll>> matrix; #define mem(v, k) memset(v, k, sizeof(v)); #define db cout << "Debug" << endl; #define mp make_pair #define pq priority_queue #define mx(a, b) a = max(a, b); #define mod(a, b) a = a%b; #define MAXN 100010 #define MOD 1000000007 #define MAXL 30 #define ROOT 1 #define INF 987654321 int n, m, v1, v2; vector<int> adj[MAXN]; int pr[MAXN], milk[MAXN], ans[MAXN]; int tin[MAXN], tout[MAXN]; int tempo = 0; int ancestor[MAXN][MAXL + 3]; void dfsLCA(int v, int pai){ pr[v] = 1; ancestor[v][0] = pai; for(int i = 1; i <= MAXL; i++){ ancestor[v][i] = ancestor[ancestor[v][i-1]][i-1]; } tin[v] = tempo++; for(auto u: adj[v]){ if(!pr[u]) dfsLCA(u, v); } tout[v] = tempo++; } bool is_ancestor(int v, int u){ return (tin[v] <= tin[u] && tout[v] >= tout[u]); } int lca(int a, int b){ if(is_ancestor(a, b)) return a; if(is_ancestor(b, a)) return b; for (int i = MAXL; i >= 0; --i) { if (!is_ancestor(ancestor[a][i], b)) a = ancestor[a][i]; } return ancestor[a][0]; } vector<pair<int, pii>> q[MAXN]; void read(){ cin >> n >> m; frr(i, n) cin >> milk[i]; fr(i, n-1){ cin >> v1 >> v2; adj[v1].pb(v2); adj[v2].pb(v1); } dfsLCA(1, 1); frr(i, m){ int a, b, c; cin >> a >> b >> c; int l = lca(a, b); q[a].pb(mp(i, mp(l, c))); q[b].pb(mp(i, mp(l, c))); } frr(i, n) pr[i] = 0; } stack<int> available[MAXN]; void dfs(int v){ pr[v] = 1; available[milk[v]].push(v); for(auto x: q[v]){ if(!available[x.s.s].empty() && is_ancestor(x.s.f, available[x.s.s].top())){ ans[x.f] = 1; } } for(auto x: adj[v]){ if(!pr[x]) dfs(x); } available[milk[v]].pop(); } int main(){ ios::sync_with_stdio(false); read(); dfs(1); frr(i, m)cout << ans[i]; cout << endl; }
84f5cdc054e9d0a70c62cf2a3d0d209bc59b47e1
fa6dad74043bbbe609f41789e43ccae6537ebda4
/boxGenerator/coord.h
97c0c1168f39ad2c7e097c12290addbbcce2b07e
[]
no_license
imacross/cppProject
ec40b73406f6084a44c44da2ec2aec2a7235679e
4dc370c4bdaeca688580462649e477be129590ef
refs/heads/master
2020-04-29T05:41:09.479389
2019-03-15T21:23:55
2019-03-15T21:23:55
175,891,420
1
0
null
null
null
null
UTF-8
C++
false
false
327
h
coord.h
//başlangıç coord.h #ifndef COORD_H_INCLUDED #define COORD_H_INCLUDED class coord{ public: coord(); coord(double,double); double getCoordX(); double getCoordY(); void setCoordX(double); void setCoordY(double); private: double x; double y; }; #endif // COORD_H_INCLUDED //bitiş coord.h
971cd72021bc41e7737ed42a96fbd32965b836f4
fb8c24e8e2849f6df6782d44f13815e7fb5689b4
/ActionDetectionSoftware/Project1.0/words_svm.cpp
33fbdd8918543165d0c458ee5d29867fbbeffb46
[]
no_license
grantlj/MyCode
e690149cd47c290f70d30bcf89db8ca65309eece
bdc7a1199776fbf98ae7b4d273c10a24281c7d3a
refs/heads/master
2020-04-06T06:48:07.869561
2015-05-26T14:02:32
2015-05-26T14:02:32
null
0
0
null
null
null
null
GB18030
C++
false
false
3,047
cpp
words_svm.cpp
#include"words_svm.h" #include<iostream> #include<fstream> using namespace std; Words_SVM::Words_SVM(const char * WordsFile, const char * ModelFile, const char *MapFile) { ifstream FileInStream; FileInStream.open(WordsFile); FileInStream >> WordsNum; FileInStream >> WordsLength; WordsData = new float[WordsNum*WordsLength]; for (unsigned long long i = 0; i < WordsNum*WordsLength; i++) FileInStream >> WordsData[i]; FileInStream.close(); //首先读出model Model = svm_load_model(ModelFile); //然后读出动作映射表 FileInStream.open(MapFile); //循环读取 while (true) { Map * NowMap = new Map; FileInStream >> NowMap->index; FileInStream >> NowMap->ActionName; if (FileInStream) MapVector.push_back(*NowMap); else { delete NowMap; break; } } FileInStream.close(); } //根据threadFeatureVector使用bagOfWords模型 void Words_SVM::bow_svm(FeatrueVector & ThreadVector,AllResult & Result) { //bag of words double * BOWHistogram = new double[WordsNum]; for (unsigned int i = 0; i < WordsNum; i++) BOWHistogram[i] = 0; for (unsigned int v = 0; v < ThreadVector.get_VectorLength(); v++) { Feature * NowFeature = ThreadVector.get_feature_point(v); for (unsigned int i = 0; i < NowFeature->get_Number(); i++) { //与words找距离 (顺序按照table中数据来) //记录一个feat到所有words的距离,并初始化 double * Distance = new double[WordsNum]; for (unsigned int n = 0; n < WordsNum; n++) Distance[n] = 0; //当前feature开始的指针 for (unsigned int n = 0; n < WordsNum; n++) { float * NowWord = WordsData + n*WordsLength; //计算距离 for (unsigned int j = 0; j < WordsLength; j++) { float featData = NowFeature->get_feature_data_2D(i, j); Distance[n] += (featData - NowWord[j])*(featData - NowWord[j]); } } //求出distance最小值的下标 int MinIndex = 0; for (unsigned int n = 0; n < WordsNum; n++) if (Distance[MinIndex]>Distance[n]) MinIndex = n; BOWHistogram[MinIndex]++; delete [] Distance; } } //直方图归一化 double Sum = 0; for (unsigned int n = 0; n < WordsNum; n++) Sum += BOWHistogram[n]; for (unsigned int n = 0; n < WordsNum; n++) BOWHistogram[n] /= Sum; //svm //数据准备 svm_node * Nodes = new svm_node[WordsNum + 1]; for (unsigned int n = 0; n < WordsNum; n++) { Nodes[n].value = BOWHistogram[n]; Nodes[n].index = n + 1; } Nodes[WordsNum].index = -1; //svm判决 double sp = svm_predict(Model, Nodes); int d = (int)sp; bool isNotHaveMap = true; for (int i = 0; i < MapVector.size(); i++) { if (d == MapVector[i].index) { isNotHaveMap = false; Result.set_ActionMessage(MapVector[i].ActionName); } } if (isNotHaveMap) { Result.set_ActionMessage("Unkown"); } //delete[] BOWHistogram; delete[] Nodes; } Words_SVM::~Words_SVM() { delete[] WordsData; int MapNum = (int)MapVector.size(); for (; MapNum > 0; MapNum--) { delete &MapVector[MapNum - 1]; MapVector.pop_back(); } }
791adc75fc58bd8e85f708bb44578cacf00dca69
f492f7e81eb06f75ebab7b316df946c26cedbb84
/change_freq_timer1/change_freq_timer1.ino
8d336a8efa304d54eca235db3c3f8bc86a1ee2d3
[]
no_license
killahbeez/arduino
dca07cf3e4f6f55ea9b210ce4c9548d65b75be36
8115e7f0c44e340290ddf2283b9cb9fe2ba7cee3
refs/heads/master
2021-06-03T21:42:51.037888
2021-02-15T07:37:31
2021-02-15T07:37:31
101,776,921
0
0
null
null
null
null
UTF-8
C++
false
false
247
ino
change_freq_timer1.ino
void setup() { DDRB |= 1<<PB1 | 1<<PB2; TCCR1A = 1<<COM1A0 | 1<<COM1B1 | 1<<WGM11 | 1<<WGM10; TCCR1B = 1<<WGM13 | 1<<WGM12 | 1<<CS12 ; OCR1A = 6250; OCR1B = OCR1A/4; } void loop() { // put your main code here, to run repeatedly: }
3fba5175859dbcb40e1614280695d98d98b2f81d
35facc085dee29c7d9a1a3f036c403bbef89fa9c
/Tree/4. Height of Binary tree.cpp
2e9a549da4a0ef86ff02b92a213d2fa11df26175
[]
no_license
riya-bindra/Data-Structures-and-Algorithms
2a39ea9fd4f312b809a407d22f00822fd3910e9c
8790b68b36ba658b30e380a7dc74878417265929
refs/heads/main
2023-07-17T12:40:16.978599
2021-08-28T12:14:41
2021-08-28T12:14:41
370,926,520
0
0
null
null
null
null
UTF-8
C++
false
false
621
cpp
4. Height of Binary tree.cpp
#include <iostream> using namespace std; struct Node { int key; Node* left; Node* right; Node(int k) { key=k; left=NULL; right=NULL; } }; int height(Node* root) { if(root==NULL) return 0; else { return (max(height(root->left),height(root->right))+1); } } int main() { Node* root=new Node(10); root->left=new Node(8); root->right=new Node(30); root->right->left=new Node(40); root->right->right=new Node(50); cout<<height(root)<<endl; Node* root2=new Node(10); cout<<height(root2)<<endl; return 0; } //Time Complexity: O(n) //Auxiliary Space: O(H)
667b032ede80bd4945affc4ac4cac64a9077d331
6bcdb9e8836cd60e972be865beb50fbfefdfa650
/libs/core/include/fcppt/either/success_opt.hpp
261dbacbb8d90979bba41c10d1a6e01d15726dbc
[ "BSL-1.0" ]
permissive
pmiddend/fcppt
4dbba03f7386c1e0d35c21aa0e88e96ed824957f
9f437acbb10258e6df6982a550213a05815eb2be
refs/heads/master
2020-09-22T08:54:49.438518
2019-11-30T14:14:04
2019-11-30T14:14:04
225,129,546
0
0
BSL-1.0
2019-12-01T08:31:12
2019-12-01T08:31:11
null
UTF-8
C++
false
false
1,304
hpp
success_opt.hpp
// Copyright Carl Philipp Reh 2009 - 2018. // 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 FCPPT_EITHER_SUCCESS_OPT_HPP_INCLUDED #define FCPPT_EITHER_SUCCESS_OPT_HPP_INCLUDED #include <fcppt/move_if_rvalue.hpp> #include <fcppt/either/is_object.hpp> #include <fcppt/either/object_impl.hpp> #include <fcppt/either/success_type.hpp> #include <fcppt/optional/object_impl.hpp> #include <fcppt/type_traits/remove_cv_ref_t.hpp> namespace fcppt { namespace either { /** \brief Returns the success type as an optional \ingroup fcppteither */ template< typename Either > fcppt::optional::object< fcppt::either::success_type< fcppt::type_traits::remove_cv_ref_t< Either > > > success_opt( Either &&_either ) { typedef fcppt::type_traits::remove_cv_ref_t< Either > either; static_assert( fcppt::either::is_object< either >::value, "Either must be an either" ); typedef fcppt::optional::object< fcppt::either::success_type< either > > result_type; return _either.has_success() ? result_type( fcppt::move_if_rvalue< Either >( _either.get_success_unsafe() ) ) : result_type() ; } } } #endif
317e3a444930d0d92c4e3ad72bd909e4ee99d32e
de7e771699065ec21a340ada1060a3cf0bec3091
/core/src/java/org/apache/lucene/index/DocumentsWriterFlushControl.cpp
c3e815dd13508d02c978b93fdc32e930b9087c0f
[]
no_license
sraihan73/Lucene-
0d7290bacba05c33b8d5762e0a2a30c1ec8cf110
1fe2b48428dcbd1feb3e10202ec991a5ca0d54f3
refs/heads/master
2020-03-31T07:23:46.505891
2018-12-08T14:57:54
2018-12-08T14:57:54
152,020,180
7
0
null
null
null
null
UTF-8
C++
false
false
29,734
cpp
DocumentsWriterFlushControl.cpp
using namespace std; #include "DocumentsWriterFlushControl.h" namespace org::apache::lucene::index { using ThreadState = org::apache::lucene::index::DocumentsWriterPerThreadPool::ThreadState; using Accountable = org::apache::lucene::util::Accountable; using InfoStream = org::apache::lucene::util::InfoStream; using ThreadInterruptedException = org::apache::lucene::util::ThreadInterruptedException; DocumentsWriterFlushControl::DocumentsWriterFlushControl( shared_ptr<DocumentsWriter> documentsWriter, shared_ptr<LiveIndexWriterConfig> config) : hardMaxBytesPerDWPT(config->getRAMPerThreadHardLimitMB() * 1024 * 1024), stallControl(make_shared<DocumentsWriterStallControl>()), perThreadPool(documentsWriter->perThreadPool), flushPolicy(documentsWriter->flushPolicy), documentsWriter(documentsWriter), config(config), infoStream(config->getInfoStream()) { } // C++ WARNING: The following method was originally marked 'synchronized': int64_t DocumentsWriterFlushControl::activeBytes() { return activeBytes_; } // C++ WARNING: The following method was originally marked 'synchronized': int64_t DocumentsWriterFlushControl::flushBytes() { return flushBytes_; } // C++ WARNING: The following method was originally marked 'synchronized': int64_t DocumentsWriterFlushControl::netBytes() { return flushBytes_ + activeBytes_; } int64_t DocumentsWriterFlushControl::stallLimitBytes() { constexpr double maxRamMB = config->getRAMBufferSizeMB(); return maxRamMB != IndexWriterConfig::DISABLE_AUTO_FLUSH ? static_cast<int64_t>(2 * (maxRamMB * 1024 * 1024)) : numeric_limits<int64_t>::max(); } bool DocumentsWriterFlushControl::assertMemory() { constexpr double maxRamMB = config->getRAMBufferSizeMB(); // We can only assert if we have always been flushing by RAM usage; otherwise // the assert will false trip if e.g. the flush-by-doc-count * doc size was // large enough to use far more RAM than the sudden change to IWC's // maxRAMBufferSizeMB: if (maxRamMB != IndexWriterConfig::DISABLE_AUTO_FLUSH && flushByRAMWasDisabled == false) { // for this assert we must be tolerant to ram buffer changes! maxConfiguredRamBuffer = max(maxRamMB, maxConfiguredRamBuffer); constexpr int64_t ram = flushBytes_ + activeBytes_; constexpr int64_t ramBufferBytes = static_cast<int64_t>(maxConfiguredRamBuffer * 1024 * 1024); // take peakDelta into account - worst case is that all flushing, pending // and blocked DWPT had maxMem and the last doc had the peakDelta // 2 * ramBufferBytes -> before we stall we need to cross the 2xRAM Buffer // border this is still a valid limit (numPending + numFlushingDWPT() + // numBlockedFlushes()) * peakDelta) -> those are the total number of DWPT // that are not active but not yet fully flushed all of them could // theoretically be taken out of the loop once they crossed the RAM buffer // and the last document was the peak delta (numDocsSinceStalled * // peakDelta) -> at any given time there could be n threads in flight that // crossed the stall control before we reached the limit and each of them // could hold a peak document constexpr int64_t expected = (2 * ramBufferBytes) + ((numPending + numFlushingDWPT() + numBlockedFlushes()) * peakDelta) + (numDocsSinceStalled * peakDelta); // the expected ram consumption is an upper bound at this point and not // really the expected consumption if (peakDelta < (ramBufferBytes >> 1)) { /* * if we are indexing with very low maxRamBuffer like 0.1MB memory can * easily overflow if we check out some DWPT based on docCount and have * several DWPT in flight indexing large documents (compared to the ram * buffer). This means that those DWPT and their threads will not hit * the stall control before asserting the memory which would in turn * fail. To prevent this we only assert if the the largest document seen * is smaller than the 1/2 of the maxRamBufferMB */ assert((ram <= expected, L"actual mem: " + to_wstring(ram) + L" byte, expected mem: " + to_wstring(expected) + L" byte, flush mem: " + to_wstring(flushBytes_) + L", active mem: " + to_wstring(activeBytes_) + L", pending DWPT: " + to_wstring(numPending) + L", flushing DWPT: ")); +to_wstring(numFlushingDWPT()) + L", blocked DWPT: " + to_wstring(numBlockedFlushes()) + L", peakDelta mem: " + to_wstring(peakDelta) + L" bytes, ramBufferBytes=" + to_wstring(ramBufferBytes) + L", maxConfiguredRamBuffer=" + to_wstring(maxConfiguredRamBuffer); } } else { flushByRAMWasDisabled = true; } return true; } void DocumentsWriterFlushControl::commitPerThreadBytes( shared_ptr<ThreadState> perThread) { constexpr int64_t delta = perThread->dwpt->bytesUsed() - perThread->bytesUsed; perThread->bytesUsed += delta; /* * We need to differentiate here if we are pending since setFlushPending * moves the perThread memory to the flushBytes and we could be set to * pending during a delete */ if (perThread->flushPending) { flushBytes_ += delta; } else { activeBytes_ += delta; } assert(updatePeaks(delta)); } bool DocumentsWriterFlushControl::updatePeaks(int64_t delta) { peakActiveBytes = max(peakActiveBytes, activeBytes_); peakFlushBytes = max(peakFlushBytes, flushBytes_); peakNetBytes = max(peakNetBytes, netBytes()); peakDelta = max(peakDelta, delta); return true; } // C++ WARNING: The following method was originally marked 'synchronized': shared_ptr<DocumentsWriterPerThread> DocumentsWriterFlushControl::doAfterDocument(shared_ptr<ThreadState> perThread, bool isUpdate) { try { commitPerThreadBytes(perThread); if (!perThread->flushPending) { if (isUpdate) { flushPolicy->onUpdate(shared_from_this(), perThread); } else { flushPolicy->onInsert(shared_from_this(), perThread); } if (!perThread->flushPending && perThread->bytesUsed > hardMaxBytesPerDWPT) { // Safety check to prevent a single DWPT exceeding its RAM limit. This // is super important since we can not address more than 2048 MB per // DWPT setFlushPending(perThread); } } return checkout(perThread, false); } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { bool stalled = updateStallState(); assert(assertNumDocsSinceStalled(stalled) && assertMemory()); } } shared_ptr<DocumentsWriterPerThread> DocumentsWriterFlushControl::checkout(shared_ptr<ThreadState> perThread, bool markPending) { if (fullFlush) { if (perThread->flushPending) { checkoutAndBlock(perThread); return nextPendingFlush(); } else { return nullptr; } } else { if (markPending) { assert(perThread->isFlushPending() == false); setFlushPending(perThread); } return tryCheckoutForFlush(perThread); } } bool DocumentsWriterFlushControl::assertNumDocsSinceStalled(bool stalled) { /* * updates the number of documents "finished" while we are in a stalled * state. this is important for asserting memory upper bounds since it * corresponds to the number of threads that are in-flight and crossed the * stall control check before we actually stalled. see #assertMemory() */ if (stalled) { numDocsSinceStalled++; } else { numDocsSinceStalled = 0; } return true; } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::doAfterFlush( shared_ptr<DocumentsWriterPerThread> dwpt) { assert(flushingWriters->containsKey(dwpt)); try { optional<int64_t> bytes = flushingWriters->remove(dwpt); flushBytes_ -= bytes.value(); perThreadPool->recycle(dwpt); assert(assertMemory()); } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { try { updateStallState(); } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { notifyAll(); } } } bool DocumentsWriterFlushControl::updateStallState() { assert(Thread::holdsLock(shared_from_this())); constexpr int64_t limit = stallLimitBytes(); /* * we block indexing threads if net byte grows due to slow flushes * yet, for small ram buffers and large documents we can easily * reach the limit without any ongoing flushes. we need to ensure * that we don't stall/block if an ongoing or pending flush can * not free up enough memory to release the stall lock. */ constexpr bool stall = (activeBytes_ + flushBytes_) > limit && activeBytes_ < limit && !closed; if (infoStream->isEnabled(L"DWFC")) { if (stall != stallControl->anyStalledThreads()) { if (stall) { infoStream->message( L"DW", wstring::format(Locale::ROOT, L"now stalling flushes: netBytes: %.1f MB " L"flushBytes: %.1f MB fullFlush: %b", netBytes() / 1024.0 / 1024.0, flushBytes() / 1024.0 / 1024.0, fullFlush)); stallStartNS = System::nanoTime(); } else { infoStream->message( L"DW", wstring::format(Locale::ROOT, L"done stalling flushes for %.1f msec: netBytes: " L"%.1f MB flushBytes: %.1f MB fullFlush: %b", (System::nanoTime() - stallStartNS) / 1000000.0, netBytes() / 1024.0 / 1024.0, flushBytes() / 1024.0 / 1024.0, fullFlush)); } } } stallControl->updateStalled(stall); return stall; } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::waitForFlush() { while (flushingWriters->size() != 0) { try { this->wait(); } catch (const InterruptedException &e) { throw make_shared<ThreadInterruptedException>(e); } } } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::setFlushPending( shared_ptr<ThreadState> perThread) { assert(!perThread->flushPending); if (perThread->dwpt->getNumDocsInRAM() > 0) { perThread->flushPending = true; // write access synced constexpr int64_t bytes = perThread->bytesUsed; flushBytes_ += bytes; activeBytes_ -= bytes; numPending++; // write access synced assert(assertMemory()); } // don't assert on numDocs since we could hit an abort excp. while selecting // that dwpt for flushing } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::doOnAbort(shared_ptr<ThreadState> state) { try { if (state->flushPending) { flushBytes_ -= state->bytesUsed; } else { activeBytes_ -= state->bytesUsed; } assert(assertMemory()); // Take it out of the loop this DWPT is stale perThreadPool->reset(state); } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { updateStallState(); } } // C++ WARNING: The following method was originally marked 'synchronized': shared_ptr<DocumentsWriterPerThread> DocumentsWriterFlushControl::tryCheckoutForFlush( shared_ptr<ThreadState> perThread) { return perThread->flushPending ? internalTryCheckOutForFlush(perThread) : nullptr; } void DocumentsWriterFlushControl::checkoutAndBlock( shared_ptr<ThreadState> perThread) { perThread->lock(); try { assert((perThread->flushPending, L"can not block non-pending threadstate")); assert((fullFlush, L"can not block if fullFlush == false")); shared_ptr<DocumentsWriterPerThread> *const dwpt; constexpr int64_t bytes = perThread->bytesUsed; dwpt = perThreadPool->reset(perThread); numPending--; blockedFlushes.push_back(make_shared<BlockedFlush>(dwpt, bytes)); } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { perThread->unlock(); } } shared_ptr<DocumentsWriterPerThread> DocumentsWriterFlushControl::internalTryCheckOutForFlush( shared_ptr<ThreadState> perThread) { assert(Thread::holdsLock(shared_from_this())); assert(perThread->flushPending); try { // We are pending so all memory is already moved to flushBytes if (perThread->tryLock()) { try { if (perThread->isInitialized()) { assert(perThread->isHeldByCurrentThread()); shared_ptr<DocumentsWriterPerThread> *const dwpt; constexpr int64_t bytes = perThread->bytesUsed; // do that before // replace! dwpt = perThreadPool->reset(perThread); assert((!flushingWriters->containsKey(dwpt), L"DWPT is already flushing")); // Record the flushing DWPT to reduce flushBytes in doAfterFlush flushingWriters->put(dwpt, static_cast<int64_t>(bytes)); numPending--; // write access synced return dwpt; } } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { perThread->unlock(); } } return nullptr; } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { updateStallState(); } } wstring DocumentsWriterFlushControl::toString() { return L"DocumentsWriterFlushControl [activeBytes=" + to_wstring(activeBytes_) + L", flushBytes=" + to_wstring(flushBytes_) + L"]"; } shared_ptr<DocumentsWriterPerThread> DocumentsWriterFlushControl::nextPendingFlush() { int numPending; bool fullFlush; // C++ TODO: Multithread locking on 'this' is not converted to native C++: synchronized(shared_from_this()) { shared_ptr<DocumentsWriterPerThread> *const poll; if ((poll = flushQueue.pop_front()) != nullptr) { updateStallState(); return poll; } fullFlush = this->fullFlush; numPending = this->numPending; } if (numPending > 0 && !fullFlush) { // don't check if we are doing a full flush constexpr int limit = perThreadPool->getActiveThreadStateCount(); for (int i = 0; i < limit && numPending > 0; i++) { shared_ptr<ThreadState> *const next = perThreadPool->getThreadState(i); if (next->flushPending) { shared_ptr<DocumentsWriterPerThread> *const dwpt = tryCheckoutForFlush(next); if (dwpt != nullptr) { return dwpt; } } } } return nullptr; } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::setClosed() { // set by DW to signal that we should not release new DWPT after close this->closed = true; } shared_ptr<Iterator<std::shared_ptr<ThreadState>>> DocumentsWriterFlushControl::allActiveThreadStates() { return getPerThreadsIterator(perThreadPool->getActiveThreadStateCount()); } shared_ptr<Iterator<std::shared_ptr<ThreadState>>> DocumentsWriterFlushControl::getPerThreadsIterator(int const upto) { return make_shared<IteratorAnonymousInnerClass>(shared_from_this(), upto); } DocumentsWriterFlushControl::IteratorAnonymousInnerClass:: IteratorAnonymousInnerClass( shared_ptr<DocumentsWriterFlushControl> outerInstance, int upto) { this->outerInstance = outerInstance; this->upto = upto; i = 0; } bool DocumentsWriterFlushControl::IteratorAnonymousInnerClass::hasNext() { return i < upto; } shared_ptr<ThreadState> DocumentsWriterFlushControl::IteratorAnonymousInnerClass::next() { return outerInstance->perThreadPool->getThreadState(i++); } void DocumentsWriterFlushControl::IteratorAnonymousInnerClass::remove() { throw make_shared<UnsupportedOperationException>(L"remove() not supported."); } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::doOnDelete() { // pass null this is a global delete no update flushPolicy->onDelete(shared_from_this(), nullptr); } int64_t DocumentsWriterFlushControl::getDeleteBytesUsed() { return documentsWriter->deleteQueue->ramBytesUsed(); } int64_t DocumentsWriterFlushControl::ramBytesUsed() { // TODO: improve this to return more detailed info? return getDeleteBytesUsed() + netBytes(); } // C++ WARNING: The following method was originally marked 'synchronized': int DocumentsWriterFlushControl::numFlushingDWPT() { return flushingWriters->size(); } bool DocumentsWriterFlushControl::getAndResetApplyAllDeletes() { return flushDeletes->getAndSet(false); } void DocumentsWriterFlushControl::setApplyAllDeletes() { flushDeletes->set(true); } shared_ptr<ThreadState> DocumentsWriterFlushControl::obtainAndLock() { shared_ptr<ThreadState> *const perThread = perThreadPool->getAndLock(Thread::currentThread(), documentsWriter); bool success = false; try { if (perThread->isInitialized() && perThread->dwpt->deleteQueue != documentsWriter->deleteQueue) { // There is a flush-all in process and this DWPT is // now stale -- enroll it for flush and try for // another DWPT: addFlushableState(perThread); } success = true; // simply return the ThreadState even in a flush all case sine we already // hold the lock return perThread; } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { if (!success) { // make sure we unlock if this fails perThreadPool->release(perThread); } } } int64_t DocumentsWriterFlushControl::markForFullFlush() { shared_ptr<DocumentsWriterDeleteQueue> *const flushingQueue; int64_t seqNo; // C++ TODO: Multithread locking on 'this' is not converted to native C++: synchronized(shared_from_this()) { assert( (!fullFlush, L"called DWFC#markForFullFlush() while full flush is still running")); assert((fullFlushBuffer.empty(), L"full flush buffer should be empty: " + fullFlushBuffer)); fullFlush = true; flushingQueue = documentsWriter->deleteQueue; // Set a new delete queue - all subsequent DWPT will use this queue until // we do another full flush // Insert a gap in seqNo of current active thread count, in the worst case // each of those threads now have one operation in flight. It's fine if we // have some sequence numbers that were never assigned: seqNo = documentsWriter->deleteQueue->getLastSequenceNumber() + perThreadPool->getActiveThreadStateCount() + 2; flushingQueue->maxSeqNo = seqNo + 1; shared_ptr<DocumentsWriterDeleteQueue> newQueue = make_shared<DocumentsWriterDeleteQueue>( infoStream, flushingQueue->generation + 1, seqNo + 1); documentsWriter->deleteQueue = newQueue; } constexpr int limit = perThreadPool->getActiveThreadStateCount(); for (int i = 0; i < limit; i++) { shared_ptr<ThreadState> *const next = perThreadPool->getThreadState(i); next->lock(); try { if (!next->isInitialized()) { continue; } assert((next->dwpt->deleteQueue == flushingQueue || next->dwpt->deleteQueue == documentsWriter->deleteQueue, L" flushingQueue: ")); +flushingQueue + L" currentqueue: " + documentsWriter->deleteQueue + L" perThread queue: " + next->dwpt->deleteQueue + L" numDocsInRam: " + to_wstring(next->dwpt->getNumDocsInRAM()); if (next->dwpt->deleteQueue != flushingQueue) { // this one is already a new DWPT continue; } addFlushableState(next); } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { next->unlock(); } } // C++ TODO: Multithread locking on 'this' is not converted to native C++: synchronized(shared_from_this()) { /* make sure we move all DWPT that are where concurrently marked as * pending and moved to blocked are moved over to the flushQueue. There is * a chance that this happens since we marking DWPT for full flush without * blocking indexing.*/ pruneBlockedQueue(flushingQueue); assert(assertBlockedFlushes(documentsWriter->deleteQueue)); flushQueue.addAll(fullFlushBuffer); fullFlushBuffer.clear(); updateStallState(); } assert(assertActiveDeleteQueue(documentsWriter->deleteQueue)); return seqNo; } bool DocumentsWriterFlushControl::assertActiveDeleteQueue( shared_ptr<DocumentsWriterDeleteQueue> queue) { constexpr int limit = perThreadPool->getActiveThreadStateCount(); for (int i = 0; i < limit; i++) { shared_ptr<ThreadState> *const next = perThreadPool->getThreadState(i); next->lock(); try { assert( (!next->isInitialized() || next->dwpt->deleteQueue == queue, L"isInitialized: " + StringHelper::toString(next->isInitialized()) + L" numDocs: " + to_wstring(next->isInitialized() ? next->dwpt->getNumDocsInRAM() : 0))); } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { next->unlock(); } } return true; } void DocumentsWriterFlushControl::addFlushableState( shared_ptr<ThreadState> perThread) { if (infoStream->isEnabled(L"DWFC")) { infoStream->message(L"DWFC", L"addFlushableState " + perThread->dwpt); } shared_ptr<DocumentsWriterPerThread> *const dwpt = perThread->dwpt; assert(perThread->isHeldByCurrentThread()); assert(perThread->isInitialized()); assert(fullFlush); assert(dwpt->deleteQueue != documentsWriter->deleteQueue); if (dwpt->getNumDocsInRAM() > 0) { // C++ TODO: Multithread locking on 'this' is not converted to native C++: synchronized(shared_from_this()) { if (!perThread->flushPending) { setFlushPending(perThread); } shared_ptr<DocumentsWriterPerThread> *const flushingDWPT = internalTryCheckOutForFlush(perThread); assert( (flushingDWPT != nullptr, L"DWPT must never be null here since we " L"hold the lock and it holds documents")); assert((dwpt == flushingDWPT, L"flushControl returned different DWPT")); fullFlushBuffer.push_back(flushingDWPT); } } else { perThreadPool->reset(perThread); // make this state inactive } } void DocumentsWriterFlushControl::pruneBlockedQueue( shared_ptr<DocumentsWriterDeleteQueue> flushingQueue) { deque<std::shared_ptr<BlockedFlush>>::const_iterator iterator = blockedFlushes.begin(); while (iterator != blockedFlushes.end()) { shared_ptr<BlockedFlush> blockedFlush = *iterator; if (blockedFlush->dwpt->deleteQueue == flushingQueue) { (*iterator)->remove(); assert((!flushingWriters->containsKey(blockedFlush->dwpt), L"DWPT is already flushing")); // Record the flushing DWPT to reduce flushBytes in doAfterFlush flushingWriters->put(blockedFlush->dwpt, static_cast<int64_t>(blockedFlush->bytes)); // don't decr pending here - it's already done when DWPT is blocked flushQueue.push_back(blockedFlush->dwpt); } iterator++; } } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::finishFullFlush() { assert(fullFlush); assert(flushQueue.empty()); assert(flushingWriters->isEmpty()); try { if (!blockedFlushes.empty()) { assert(assertBlockedFlushes(documentsWriter->deleteQueue)); pruneBlockedQueue(documentsWriter->deleteQueue); assert(blockedFlushes.empty()); } } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { fullFlush = false; updateStallState(); } } bool DocumentsWriterFlushControl::assertBlockedFlushes( shared_ptr<DocumentsWriterDeleteQueue> flushingQueue) { for (auto blockedFlush : blockedFlushes) { assert(blockedFlush->dwpt->deleteQueue == flushingQueue); } return true; } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::abortFullFlushes() { try { abortPendingFlushes(); } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { fullFlush = false; } } // C++ WARNING: The following method was originally marked 'synchronized': void DocumentsWriterFlushControl::abortPendingFlushes() { try { for (auto dwpt : flushQueue) { try { documentsWriter->subtractFlushedNumDocs(dwpt->getNumDocsInRAM()); dwpt->abort(); } catch (const runtime_error &ex) { // that's fine we just abort everything here this is best effort } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { doAfterFlush(dwpt); } } for (auto blockedFlush : blockedFlushes) { try { flushingWriters->put(blockedFlush->dwpt, static_cast<int64_t>(blockedFlush->bytes)); documentsWriter->subtractFlushedNumDocs( blockedFlush->dwpt->getNumDocsInRAM()); blockedFlush->dwpt->abort(); } catch (const runtime_error &ex) { // that's fine we just abort everything here this is best effort } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { doAfterFlush(blockedFlush->dwpt); } } } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { flushQueue.clear(); blockedFlushes.clear(); updateStallState(); } } // C++ WARNING: The following method was originally marked 'synchronized': bool DocumentsWriterFlushControl::isFullFlush() { return fullFlush; } // C++ WARNING: The following method was originally marked 'synchronized': int DocumentsWriterFlushControl::numQueuedFlushes() { return flushQueue.size(); } // C++ WARNING: The following method was originally marked 'synchronized': int DocumentsWriterFlushControl::numBlockedFlushes() { return blockedFlushes.size(); } // C++ TODO: No base class can be determined: DocumentsWriterFlushControl::BlockedFlush::BlockedFlush( shared_ptr<DocumentsWriterPerThread> dwpt, int64_t bytes) : dwpt(dwpt), bytes(bytes) { } void DocumentsWriterFlushControl::waitIfStalled() { stallControl->waitIfStalled(); } bool DocumentsWriterFlushControl::anyStalledThreads() { return stallControl->anyStalledThreads(); } shared_ptr<InfoStream> DocumentsWriterFlushControl::getInfoStream() { return infoStream; } // C++ WARNING: The following method was originally marked 'synchronized': shared_ptr<ThreadState> DocumentsWriterFlushControl::findLargestNonPendingWriter() { shared_ptr<ThreadState> maxRamUsingThreadState = nullptr; int64_t maxRamSoFar = 0; Iterator<std::shared_ptr<ThreadState>> activePerThreadsIterator = allActiveThreadStates(); int count = 0; while (activePerThreadsIterator->hasNext()) { shared_ptr<ThreadState> next = activePerThreadsIterator->next(); if (!next->flushPending) { constexpr int64_t nextRam = next->bytesUsed; if (nextRam > 0 && next->dwpt->getNumDocsInRAM() > 0) { if (infoStream->isEnabled(L"FP")) { infoStream->message(L"FP", L"thread state has " + to_wstring(nextRam) + L" bytes; docInRAM=" + to_wstring(next->dwpt->getNumDocsInRAM())); } count++; if (nextRam > maxRamSoFar) { maxRamSoFar = nextRam; maxRamUsingThreadState = next; } } } activePerThreadsIterator++; } if (infoStream->isEnabled(L"FP")) { infoStream->message(L"FP", to_wstring(count) + L" in-use non-flushing threads states"); } return maxRamUsingThreadState; } shared_ptr<DocumentsWriterPerThread> DocumentsWriterFlushControl::checkoutLargestNonPendingWriter() { shared_ptr<ThreadState> largestNonPendingWriter = findLargestNonPendingWriter(); if (largestNonPendingWriter != nullptr) { // we only lock this very briefly to swap it's DWPT out - we don't go // through the DWPTPool and it's free queue largestNonPendingWriter->lock(); try { // C++ TODO: Multithread locking on 'this' is not converted to native C++: synchronized(shared_from_this()) { try { if (largestNonPendingWriter->isInitialized() == false) { return nextPendingFlush(); } else { return checkout(largestNonPendingWriter, largestNonPendingWriter->isFlushPending() == false); } } // C++ TODO: There is no native C++ equivalent to the exception // 'finally' clause: finally { updateStallState(); } } } // C++ TODO: There is no native C++ equivalent to the exception 'finally' // clause: finally { largestNonPendingWriter->unlock(); } } return nullptr; } } // namespace org::apache::lucene::index
0efaea5a13f86e870a5538746635211326005eb9
a34ac1d315fb5916752d0c3e3bdde0fbf876c08d
/testpack/wen/2018.1.4/src/杨欣烨/bst.cpp
67535991e73276466504210c60315d77827b9065
[]
no_license
RiverHamster/OI-Works
ae9f7543bb75501552042dc3d4346ff83dfd47df
7828a21183c49dde173e355a8d20ca7cebb4cd56
refs/heads/master
2021-05-14T11:46:57.198588
2018-01-06T09:29:35
2018-01-06T09:29:35
116,372,561
0
0
null
null
null
null
UTF-8
C++
false
false
252
cpp
bst.cpp
#include <stdio.h> int main(){ freopen("bst.in","r",stdin); freopen("bst.out","w",stdout); int DataC; long long x,tmp; scanf("%d",&DataC); while(DataC--){ scanf("%lld",&x); tmp=x&(-x); printf("%lld %lld\n",x-tmp+1,x+tmp-1); } return 0; }
8019e965b0b5dc35fc7e5e9ba4179f66e51ca8b9
a68797b068d427dd6b016eb1485340edaf871cdf
/Ch4Test/sec4_7-1.cpp
77712ac06e9773a3b8f1d4e9968e23f64166a0e1
[]
no_license
FranzEricSchneider/learncpp
0411c4d0b8cf5101d91fd6477e63d3668a1875c4
85eb1df23a7bf4d7ea368ac946ddccd94dd35f86
refs/heads/master
2021-05-30T06:34:33.786953
2016-01-15T20:19:25
2016-01-15T20:19:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,093
cpp
sec4_7-1.cpp
#include <iostream> struct Advertising { int ads_shown_to_users = 0; double percentage_users_click = 0.0; double profit_per_click = 0.0; }; Advertising captureAdData() { Advertising adInfo; std::cout << "Enter ads shown to users (int): "; std::cin >> adInfo.ads_shown_to_users; std::cout << "Enter fraction of users who click (float): "; std::cin >> adInfo.percentage_users_click; std::cout << "Enter profit per click (float): "; std::cin >> adInfo.profit_per_click; return adInfo; } void printAdvertisingRevenues(Advertising adInfo) { std::cout << "With " << adInfo.ads_shown_to_users << " ads shown where " << adInfo.percentage_users_click << " fraction of users usually click, and " << adInfo.profit_per_click << " dollars per click, we predict we will make " << adInfo.ads_shown_to_users * adInfo.percentage_users_click * adInfo.profit_per_click << " dollars\n"; } //int main() //{ // Advertising adInfo = captureAdData(); // printAdvertisingRevenues(adInfo); // return 0; //}
c182525f7cdf04402b67ec398883bd0527d742b5
e6b20b3c26216d4c0652fd753a24e7372bf707c4
/include/smooth/internal/so2.hpp
1522574c6f66291428433989dba00eebddf2368e
[ "MIT" ]
permissive
chengwei920412/smooth-lie-groups
b90e1cd9536665984ff1144b57cd7e7000a5bc96
d1c916f95397acc879b4e778cf33a394c8af06e7
refs/heads/master
2023-06-12T23:02:15.413442
2021-07-08T14:47:30
2021-07-08T14:57:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,432
hpp
so2.hpp
// smooth: Lie Theory for Robotics // https://github.com/pettni/smooth // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright (c) 2021 Petter Nilsson // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #ifndef SMOOTH__IMPL__SO2_HPP_ #define SMOOTH__IMPL__SO2_HPP_ #include <Eigen/Core> #include "common.hpp" namespace smooth { /** * @brief SO(2) Lie Group represented as C^1 * * Memory layout * ------------- * Group: qz qw * Tangent: Ωz * * Lie group Matrix form * --------------------- * [ qw -qz ] * [ qz qw ] * * Lie algebra Matrix form * ----------------------- * [ 0 -Ωz ] * [ Ωz 0 ] * * Constraints * ----------- * Group: qz * qz + qw * qw = 1 * Tangent: -pi < Ωz <= pi */ template<typename _Scalar> class SO2Impl { public: using Scalar = _Scalar; static constexpr Eigen::Index RepSize = 2; static constexpr Eigen::Index Dim = 2; static constexpr Eigen::Index Dof = 1; SMOOTH_DEFINE_REFS; static void setIdentity(GRefOut g_out) { g_out << Scalar(0), Scalar(1); } static void setRandom(GRefOut g_out) { using std::sin, std::cos; const Scalar u = Eigen::internal::template random_impl<Scalar>::run(0, 2 * M_PI); g_out << sin(u), cos(u); } static void matrix(GRefIn g_in, MRefOut m_out) { m_out << g_in(1), -g_in(0), g_in(0), g_in(1); } static void composition(GRefIn g_in1, GRefIn g_in2, GRefOut g_out) { g_out << g_in1[0] * g_in2[1] + g_in1[1] * g_in2[0], g_in1[1] * g_in2[1] - g_in1[0] * g_in2[0]; } static void inverse(GRefIn g_in, GRefOut g_out) { g_out << -g_in[0], g_in[1]; } static void log(GRefIn g_in, TRefOut a_out) { using std::atan2; a_out << atan2(g_in[0], g_in[1]); } static void Ad(GRefIn, TMapRefOut A_out) { A_out.setIdentity(); } static void exp(TRefIn a_in, GRefOut g_out) { using std::cos, std::sin; g_out << sin(a_in.x()), cos(a_in.x()); } static void hat(TRefIn a_in, MRefOut A_out) { A_out << Scalar(0), -a_in(0), a_in(0), Scalar(0); } static void vee(MRefIn A_in, TRefOut a_out) { a_out << (A_in(1, 0) - A_in(0, 1)) / Scalar(2); } static void ad(TRefIn, TMapRefOut A_out) { A_out.setZero(); } static void dr_exp(TRefIn, TMapRefOut A_out) { A_out.setIdentity(); } static void dr_expinv(TRefIn, TMapRefOut A_out) { A_out.setIdentity(); } }; } // namespace smooth #endif // SMOOTH__IMPL__SO2_HPP_
a866c54dd5c9d2351b2f8785204bb101f1ff3fcf
2ed49b4402963f307ec929fb05313a6ef3520d63
/Assignment2/primenumber.cpp
629217176827a718158634395ce481e66b66bcc2
[]
no_license
iyers16/COEN243Concordia
103bee2395fd3f330c222daf676855ae7d19da2b
0a737df728c134895c7acacaf1cbd72f962442b8
refs/heads/main
2023-04-22T17:58:08.881487
2021-05-10T02:26:50
2021-05-10T02:26:50
361,180,438
0
0
null
null
null
null
UTF-8
C++
false
false
977
cpp
primenumber.cpp
#include <iostream> #include <cmath> using namespace std; int main() { //Declare user input variable and internal counter variable int userNumber, i; //Declare boolean variable to test condition of primality bool primality = true; //Recieve user input integer cout << "Enter a positive integer: "; cin >> userNumber; //Anything less than 1 is not prime (negatives aren't prime, 0 and 1 aren't prime) if(userNumber <= 1) { primality = false; } //Check for a modulo other than 0 from 2 to square root of the number to change primality to false for(i = 2; i <= sqrt(userNumber); i++) { if(userNumber % i == 0) { primality = false; break; } } //if boolean value of primality variable is true, it is prime; if it's false it is not prime if(primality) { cout << userNumber << " is a prime number." <<endl; }else { cout << userNumber << " is not a prime number." <<endl; } return EXIT_SUCCESS; }
a58c1e8355b62cd9eb957a053e8195b6b576cb62
ec65189850a31bbf352bd6569c83e2da9496e857
/main.cpp
c25b4b19b3875db0ba49cc7057a8cb77bc0daa6e
[]
no_license
Azokah/TTS-Vengine
1e10c886737f7b3c4290db2bb3fc9ce85f25b90b
6321a3abb0b066166f67ed262ffebc53128a3574
refs/heads/master
2021-01-15T17:09:54.280697
2017-10-09T06:01:11
2017-10-09T06:01:11
99,735,686
0
0
null
null
null
null
UTF-8
C++
false
false
202
cpp
main.cpp
#include <iostream> #include "Game.h" int main(int argc, char * argv[]){ std::cout<<"Iniciando V-Engine..."<<std::endl; Game * game = &game->getInstance(); game->run(); return 0; };
0fa02d79fa8452685f9c12d3fed106427f698fbf
a6f7828a6030d8af6db5468916b05b8359d33e8f
/II-PARCIAL/Extras/Ordenamiento_Mezcla_Natural/Ordenamiento_Mezcla_Natural/mystring.h
8d8b3c97e83e4af061244e97d472fca54aeb5e12
[]
no_license
M4t3B4rriga/Team5-DataStructure-3688
f485f83cb56790aa0bd9af42b14c24d3f486b735
55770225e1d54281c469c5538f28c98954ca800c
refs/heads/main
2023-08-14T19:11:11.664816
2021-09-06T15:51:51
2021-09-06T15:51:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
515
h
mystring.h
#pragma once #include <string> using namespace std; class mystring { public: char to_lower( char); char to_upper(char); string capitalize(string); string minusculize(string); int find_character(string, char, int); int find(string, string, int); int length(string); string substract(string, int, int); bool is_equal(string, string); int atoi(char); int stoi(string); long stol(string); double stod(string); string reverse(string); bool is_number(string); double potencia(double num, double pot); };
40bce725bf1be59cdac2776edb8bc504c83d1f56
bae4d234b9e842abc121d4b5e139b3b3eb7cd735
/Game/Source/Game/BulletManager.cpp
78712a1f7251b575e571e3c061eea42e64774286
[]
no_license
F1xx/2DBoshy
8ebf213ef21b5934d844c722e27f74c49fe44fbe
8e643013508ea4181861462571e395fcbb3a2840
refs/heads/master
2022-02-27T04:08:03.003172
2019-07-20T00:40:41
2019-07-20T00:40:41
197,859,792
0
0
null
null
null
null
UTF-8
C++
false
false
2,241
cpp
BulletManager.cpp
#include "GamePCH.h" #include "BulletManager.h" #undef new //defined as new(__FILE__, __LINE__) by MyMemory.h BulletManager::BulletManager() { ///-----initialization_start----- ///collision configuration contains default setup for memory, collision setup. Advanced users can create their own configuration. collisionConfiguration = new btDefaultCollisionConfiguration(); ///use the default collision dispatcher. For parallel processing you can use a diffent dispatcher (see Extras/BulletMultiThreaded) dispatcher = new btCollisionDispatcher(collisionConfiguration); ///btDbvtBroadphase is a good general purpose broadphase. You can also try out btAxis3Sweep. overlappingPairCache = new btDbvtBroadphase(); ///the default constraint solver. For parallel processing you can use a different solver (see Extras/BulletMultiThreaded) solver = new btSequentialImpulseConstraintSolver; dynamicsWorld = new btDiscreteDynamicsWorld(dispatcher, overlappingPairCache, solver, collisionConfiguration); dynamicsWorld->setGravity(btVector3(0, -10, 0)); gContactStartedCallback = ContactStartedCallback; gContactEndedCallback = ContactEndedCallback; ///-----initialization_end----- } BulletManager::~BulletManager() { delete dynamicsWorld; delete solver; delete overlappingPairCache; delete dispatcher; delete collisionConfiguration; } void BulletManager::Update(float delta) { ///-----stepsimulation_start----- dynamicsWorld->stepSimulation(1.f / 60.f, 10); //print positions of all objects for (int j = dynamicsWorld->getNumCollisionObjects() - 1; j >= 0; j--) { btCollisionObject* obj = dynamicsWorld->getCollisionObjectArray()[j]; btRigidBody* body = btRigidBody::upcast(obj); btTransform trans; if (body && body->getMotionState()) { body->getMotionState()->getWorldTransform(trans); } else { trans = obj->getWorldTransform(); } //printf("world pos object %d = %f,%f,%f\n", j, float(trans.getOrigin().getX()), float(trans.getOrigin().getY()), float(trans.getOrigin().getZ())); } ///-----stepsimulation_end----- } void BulletManager::ContactStartedCallback(btPersistentManifold* const& manifold) { } void BulletManager::ContactEndedCallback(btPersistentManifold* const& manifold) { }
a2f91f9bd5d9b46ee1ad7e2141e3384a04eebd36
1f577c4b33e1516b63cae6df827d5298696c5d64
/Bioinformatics-Algorithms/Project_1/complementary_seq.cpp
8ae79e16abaf96203865f5e0fdc44e0956fa9fcc
[]
no_license
Tasari/University_things
825c0bbcbdd1e60b0fcff30958ba53ee5a1179a0
7da0ddc1bbb841c1052eb6f6cd1e4d1f2ea16032
refs/heads/master
2021-07-08T07:56:41.723826
2021-01-26T14:03:40
2021-01-26T14:03:40
227,456,295
0
0
null
null
null
null
UTF-8
C++
false
false
603
cpp
complementary_seq.cpp
#include "complementary_seq.h" void complementary_sequence(string starting_sequence, string &complementary_sequence){ for(int i=starting_sequence.size();i>=0;i--){ if(int(starting_sequence[i]) == 65){ complementary_sequence.append("T"); } else if(int(starting_sequence[i]) == 84){ complementary_sequence.append("A"); } else if(int(starting_sequence[i]) == 67){ complementary_sequence.append("G"); } else if(int(starting_sequence[i]) == 71){ complementary_sequence.append("C"); } } }
1eac515857f2313ded56c58be686d8433f42d85c
bfd0e0c98f9eb7885de7739d7a914679ced0f8fd
/Arduino/house/user-libraries/COA/ButtonComponent.cpp
262d823d5e398024b1327bb1326db6664f7cf91a
[]
no_license
DonLuigi/Homino
c063dc360b9ee2b330e441a906f7e30d5d4cacbe
c299ea1b75e798954cb90255ee0dbc4dfe23f8b3
refs/heads/master
2020-04-12T06:37:19.876594
2018-02-22T21:45:28
2018-02-22T21:45:28
65,416,879
0
0
null
null
null
null
UTF-8
C++
false
false
1,064
cpp
ButtonComponent.cpp
#include <Command.h> #include "ButtonComponent.h" /////////////////// // // Component // /////////////////// ButtonComponent::ButtonComponent (uint8_t pin, uint16_t intervalMillis, const char* name) : Component (name) { pinMode (pin, INPUT_PULLUP); bounce.attach (pin); bounce.interval (intervalMillis); pressStartMillis = 0; } int ButtonComponent::readFromComponent (Message* message) { bounce.update (); return (0); } /////////////////// // // API // /////////////////// bool ButtonComponent::isPressed () { bounce.update (); return (bounce.read () == LOW); } bool ButtonComponent::onPress () { bounce.update (); bool fell = bounce.fell (); if (fell) { COA_DEBUG (F("BT[%s]:PRESS"), name); pressStartMillis = millis (); } return (fell); } uint32_t ButtonComponent::onRelease () { uint32_t ret = 0; bool rose = bounce.rose (); if (rose) { ret = millis () - pressStartMillis; COA_DEBUG (F("BT[%s]:RELEASE:%dMS"), name, ret); } return (ret); }
143a5180af12c83b54e371e2370a65ee4bec23d7
8cef651d56b0dc30a4deadeda480faf626698898
/Other Projects/WIX/3.0/src/src/ca/wixca/dll/CloseApps.cpp
982189e7a32e6a995f26409530ab0d593277aa88
[]
no_license
cpamoth/Projects
f6a005797095ce17bab57c6477145c247cbfe77c
d9addfc7b3218cb51f66d800da1959414e416601
refs/heads/master
2023-03-07T16:08:59.986612
2022-11-20T16:38:34
2022-11-20T16:38:34
38,752,439
3
1
null
2023-03-02T23:10:11
2015-07-08T12:24:44
C#
UTF-8
C++
false
false
7,876
cpp
CloseApps.cpp
//------------------------------------------------------------------------------------------------- // <copyright file="CloseApps.cpp" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> // // <summary> // Code to close applications via custom actions when the installer cannot. // </summary> //------------------------------------------------------------------------------------------------- #include "precomp.h" // WixCloseApplication Target Description Condition Attributes Sequence // structs LPCWSTR wzQUERY_CLOSEAPPS = L"SELECT `WixCloseApplication`, `Target`, `Description`, `Condition`, `Attributes` FROM `WixCloseApplication` ORDER BY `Sequence`"; enum eQUERY_CLOSEAPPS { QCA_ID = 1, QCA_TARGET, QCA_DESCRIPTION, QCA_CONDITION, QCA_ATTRIBUTES }; /****************************************************************** WixCloseApplications - entry point for WixCloseApplications Custom Action called as Type 1 CustomAction (binary DLL) from Windows Installer in InstallExecuteSequence before InstallFiles ******************************************************************/ extern "C" UINT __stdcall WixCloseApplications( __in MSIHANDLE hInstall ) { // AssertSz(FALSE, "debug WixCloseApplications"); HRESULT hr = S_OK; UINT er = ERROR_SUCCESS; LPWSTR pwzData = NULL; LPWSTR pwzId = NULL; LPWSTR pwzTarget = NULL; LPWSTR pwzDescription = NULL; LPWSTR pwzCondition = NULL; DWORD dwAttributes = 0; MSICONDITION condition = MSICONDITION_NONE; DWORD cCloseApps = 0; PMSIHANDLE hView = NULL; PMSIHANDLE hRec = NULL; MSIHANDLE hListboxTable = NULL; MSIHANDLE hListboxColumns = NULL; LPWSTR pwzCustomActionData = NULL; DWORD cchCustomActionData = 0; // // initialize // hr = WcaInitialize(hInstall, "WixCloseApplications"); ExitOnFailure(hr, "failed to initialize"); // // loop through all the objects to be secured // hr = WcaOpenExecuteView(wzQUERY_CLOSEAPPS, &hView); ExitOnFailure(hr, "failed to open view on WixCloseApplication table"); while (S_OK == (hr = WcaFetchRecord(hView, &hRec))) { hr = WcaGetRecordString(hRec, QCA_ID, &pwzId); ExitOnFailure(hr, "failed to get id from WixCloseApplication table"); hr = WcaGetRecordString(hRec, QCA_CONDITION, &pwzCondition); ExitOnFailure(hr, "failed to get condition from WixCloseApplication table"); if (pwzCondition && *pwzCondition) { condition = ::MsiEvaluateConditionW(hInstall, pwzCondition); if (MSICONDITION_ERROR == condition) { hr = E_INVALIDARG; ExitOnFailure1(hr, "failed to process condition for WixCloseApplication '%S'", pwzId); } else if (MSICONDITION_FALSE == condition) { continue; // skip processing this target } } hr = WcaGetRecordFormattedString(hRec, QCA_TARGET, &pwzTarget); ExitOnFailure(hr, "failed to get target from WixCloseApplication table"); hr = WcaGetRecordFormattedString(hRec, QCA_DESCRIPTION, &pwzDescription); ExitOnFailure(hr, "failed to get description from WixCloseApplication table"); hr = WcaGetRecordInteger(hRec, QCA_ATTRIBUTES, reinterpret_cast<int*>(&dwAttributes)); ExitOnFailure(hr, "failed to get attributes from WixCloseApplication table"); // // Pass all of the targets to the deferred action in case the app comes back // even if we close it now. // hr = WcaWriteStringToCaData(pwzTarget, &pwzCustomActionData); ExitOnFailure(hr, "failed to add target data to CustomActionData"); hr = WcaWriteIntegerToCaData(dwAttributes, &pwzCustomActionData); ExitOnFailure(hr, "failed to add attribute data to CustomActionData"); cCloseApps++; } // if we looped through all records all is well if (E_NOMOREITEMS == hr) hr = S_OK; ExitOnFailure(hr, "failed while looping through all apps to close"); // // Do the UI dance now. // /* TODO: Do this eventually if (cCloseApps) { while (TRUE) { for (DWORD i = 0; i < cCloseApps; ++i) { hr = WcaAddTempRecord(&hListboxTable, &hListboxColumns, L"Listbox", 0, 4, L"FileInUseProcess", i, target, description); if (FAILED(hr)) { } } } } */ // // schedule the custom action and add to progress bar // if (pwzCustomActionData && *pwzCustomActionData) { Assert(0 < cCloseApps); hr = WcaDoDeferredAction(L"WixCloseApplicationsDeferred", pwzCustomActionData, cCloseApps * COST_CLOSEAPP); ExitOnFailure(hr, "failed to schedule WixCloseApplicationsDeferred action"); } LExit: if (hListboxColumns) { ::MsiCloseHandle(hListboxColumns); } if (hListboxTable) { ::MsiCloseHandle(hListboxTable); } ReleaseStr(pwzCustomActionData); ReleaseStr(pwzData); ReleaseStr(pwzCondition); ReleaseStr(pwzDescription); ReleaseStr(pwzTarget); ReleaseStr(pwzId); if (FAILED(hr)) er = ERROR_INSTALL_FAILURE; return WcaFinalize(er); } /****************************************************************** WixCloseApplicationsDeferred - entry point for WixCloseApplicationsDeferred Custom Action called as Type 1025 CustomAction (deferred binary DLL) NOTE: deferred CustomAction since it modifies the machine NOTE: CustomActionData == wzTarget\tdwAttributes\t... ******************************************************************/ extern "C" UINT __stdcall WixCloseApplicationsDeferred( __in MSIHANDLE hInstall ) { // AssertSz(FALSE, "debug WixCloseApplicationsDeferred"); HRESULT hr = S_OK; DWORD er = ERROR_SUCCESS; LPWSTR pwz = NULL; LPWSTR pwzData = NULL; LPWSTR pwzTarget = NULL; DWORD dwAttributes = 0; DWORD *prgProcessIds = NULL; DWORD cProcessIds = 0; // // initialize // hr = WcaInitialize(hInstall, "WixCloseApplicationsDeferred"); ExitOnFailure(hr, "failed to initialize"); hr = WcaGetProperty(L"CustomActionData", &pwzData); ExitOnFailure(hr, "failed to get CustomActionData"); WcaLog(LOGMSG_TRACEONLY, "CustomActionData: %S", pwzData); pwz = pwzData; // // loop through all the passed in data // while (pwz && *pwz) { hr = WcaReadStringFromCaData(&pwz, &pwzTarget); ExitOnFailure(hr, "failed to process CustomActionData"); hr = WcaReadIntegerFromCaData(&pwz, reinterpret_cast<int*>(&dwAttributes)); ExitOnFailure(hr, "failed to processCustomActionData"); WcaLog(LOGMSG_VERBOSE, "Checking for App: %S Attributes: %d", pwzTarget, dwAttributes); // // If we find that an app that we need closed is still runing, require a // reboot and bail since we can do no more than require *anohter* // reboot. // ProcFindAllIdsFromExeName(pwzTarget, &prgProcessIds, &cProcessIds); if (0 < cProcessIds) { WcaLog(LOGMSG_VERBOSE, "App: %S found running, requiring a reboot.", pwzTarget); WcaDeferredActionRequiresReboot(); break; } hr = WcaProgressMessage(COST_CLOSEAPP, FALSE); ExitOnFailure(hr, "failed to send progress message"); } LExit: if (prgProcessIds) { MemFree(prgProcessIds); } ReleaseStr(pwzTarget); ReleaseStr(pwzData); if (FAILED(hr)) er = ERROR_INSTALL_FAILURE; return WcaFinalize(er); }
f113b4ec0fb4dc4f09f1032155b85c67eef3b56f
fc35f8872f8960e90c765231022a410b528d09c6
/trunk/other/tiago/pong/ball.h
612b619df40e9abb7d6071980e8cc7a88b94829c
[]
no_license
BGCX261/z-one-svn-to-git
576b2b958a783238d11159ca175a54d79c988a64
bc8bfbcb0267e27ce637844f762032ae6f49a9ee
refs/heads/master
2021-01-25T09:59:22.856790
2015-08-25T15:46:24
2015-08-25T15:46:24
42,317,186
0
0
null
null
null
null
UTF-8
C++
false
false
697
h
ball.h
#include <SDL/SDL.h> #include <SDL/SDL_mixer.h> #ifndef BALL_H #define BALL_H class ball{ //int x, y; //coordenadas da posição // não precisa pois o box tem x e y int xvel, yvel; //velocidades de movimento SDL_Surface* image; //imagem da bola SDL_Rect box; //representa a bola (colisões e tals) bool collision(SDL_Rect* rect1, SDL_Rect* rect2); public: ball(SDL_Surface* img, int x, int y, int w, int h, int xVel, int yVel); //Construtor ~ball(); //destrutor void show(); //mostra a bola na tela void move(SDL_Rect* player1, SDL_Rect* player2, Mix_Chunk* effect); //mexe de acordo com velocidade int isOut(); void setBack(int x, int y, int w, int h, int xVel, int yVel); }; #endif
df78cbde7abf99fda17a9c2d41592142d4fa4c1d
6a089ffb69a7805ab163746a560c195e371bfe32
/InverseKinematics/input.cpp
b836f04097a3a721bb4b96171546d37e72e24b33
[]
no_license
kaandemiroz/InverseKinematics
b3f052adc86a4c6ff0f792bed7b9e4538a2e470d
298440fcd8dae1965209b5f123cfe5b1496dc993
refs/heads/master
2020-03-11T08:34:36.371575
2018-04-19T07:14:14
2018-04-19T07:14:14
129,887,615
0
0
null
null
null
null
UTF-8
C++
false
false
2,290
cpp
input.cpp
#include "ik.h" #include "input.h" /* Write a screenshot, in the PPM format, to the specified filename, in PPM format */ void saveScreenshot(int windowWidth, int windowHeight, char *filename) { if (filename == NULL) return; // Allocate a picture buffer Pic * in = pic_alloc(windowWidth, windowHeight, 3, NULL); printf("File to save to: %s\n", filename); for (int i = windowHeight - 1; i >= 0; i--) { glReadPixels(0, windowHeight - i - 1, windowWidth, 1, GL_RGB, GL_UNSIGNED_BYTE, &in->pix[i*in->nx*in->bpp]); } if (ppm_write(filename, in)) printf("File saved Successfully\n"); else printf("Error in Saving\n"); pic_free(in); } /* converts mouse drags into information about rotation/translation/scaling */ void mouseMotionDrag(int x, int y) { int vMouseDelta[2] = { x - g_vMousePos[0], y - g_vMousePos[1] }; if (g_iRightMouseButton) // handle camera rotations { Phi += -vMouseDelta[0] * 0.01; Theta += vMouseDelta[1] * 0.01; if (Phi>2 * pi) Phi -= 2 * pi; if (Phi<0) Phi += 2 * pi; if (Theta>pi / 2 - 0.01) // dont let the point enter the north pole Theta = pi / 2 - 0.01; if (Theta<-pi / 2 + 0.01) Theta = -pi / 2 + 0.01; } g_vMousePos[0] = x; g_vMousePos[1] = y; } void mouseMotion(int x, int y) { g_vMousePos[0] = x; g_vMousePos[1] = y; } void mouseButton(int button, int state, int x, int y) { switch (button) { case GLUT_LEFT_BUTTON: g_iLeftMouseButton = (state == GLUT_DOWN); break; case GLUT_MIDDLE_BUTTON: g_iMiddleMouseButton = (state == GLUT_DOWN); break; case GLUT_RIGHT_BUTTON: g_iRightMouseButton = (state == GLUT_DOWN); break; } g_vMousePos[0] = x; g_vMousePos[1] = y; } // gets called whenever a key is pressed void keyboardFunc(unsigned char key, int x, int y) { switch (key) { case 27: exit(0); break; case '[': decrementBones(); break; case ']': incrementBones(); break; case 'd': dots = 1 - dots; break; case 'b': box = 1 - box; break; case 'g': grid = 1 - grid; break; case 'r': Theta = -pi / 24; Phi = -pi / 2 - pi / 24; R = 12; break; case 'p': pause = 1 - pause; break; case 'z': R -= 1; if (R < 1) R = 1; break; case 'x': R += 1; break; case ' ': saveScreenToFile = 1 - saveScreenToFile; break; } }
1cf6cad5f934b6ea4b44ff01dbfe75d01a881916
2f10f807d3307b83293a521da600c02623cdda82
/deps/boost/win/debug/include/boost/callable_traits/add_member_volatile.hpp
d7bbf34073c3415ab4499bbb778861b9d31836c2
[]
no_license
xpierrohk/dpt-rp1-cpp
2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e
643d053983fce3e6b099e2d3c9ab8387d0ea5a75
refs/heads/master
2021-05-23T08:19:48.823198
2019-07-26T17:35:28
2019-07-26T17:35:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
129
hpp
add_member_volatile.hpp
version https://git-lfs.github.com/spec/v1 oid sha256:2e62297b61116930ae638578051d997a6b3fe6a6fc665d1fb6f1f82bb9aaf6da size 3152
eaed8f3eca2e8c09c55b43a7bc8ec35634ba20e5
0abdd78697aa5f09fcd3e8bb8c2c79866f98004b
/craft_work02Ver.0.0.0/src/scene/result.cpp
238d221ef76e216590c51dc03047de31c532f1c1
[]
no_license
ryou62525/GameStorage
f8069e9aad6040a900708d1e160ca9dedb24e6f6
1cc01d9287566d5557e6319426681aa0f83b91ea
refs/heads/master
2021-01-10T03:54:28.047200
2016-01-14T13:34:47
2016-01-14T13:34:47
49,485,386
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
394
cpp
result.cpp
#include "result.h" Result::Result() { isEnd = FALSE; } Result::~Result() { } void Result::Update() { if (isPresskey(KEY_INPUT_SPACE)) { isEnd = TRUE; } } void Result::Draw() { DrawString(pos.u, pos.v, "ƒŠƒUƒ‹ƒg", fontColor); } int Result::SceneEnd() { if (isEnd == TRUE) { return (int)SceneID::TITLE; } return (int)SceneID::RESULT; }
d2a2a10b3a93183b47b87a85a03c24e0c5a24bf1
134108a93f19afeeb91cf95e9246f8dc05954cfe
/include/tao/config/internal/forward.hpp
57c066db37bdaf2df95552a97243b9f9ba2d17ae
[ "MIT" ]
permissive
uilianries/config
7376a2b742b5d89c39b7dacd8e071424922a77a5
5b1c793b666afce56a8508a44a7a3508d66ff7e8
refs/heads/master
2021-03-31T02:57:58.134396
2020-03-15T20:25:36
2020-03-15T20:25:36
248,070,050
1
0
MIT
2020-03-17T20:47:48
2020-03-17T20:47:47
null
UTF-8
C++
false
false
770
hpp
forward.hpp
// Copyright (c) 2019-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/config/ #ifndef TAO_CONFIG_INTERNAL_FORWARD_HPP #define TAO_CONFIG_INTERNAL_FORWARD_HPP namespace tao::config::schema { struct builtin; struct validator; namespace internal { inline json::value phase2_from_file_and_validate( const std::string& schema_filename, builtin b, const value& config_value ); } // namespace internal } // namespace tao::config::schema namespace tao::config::internal { class entry; class entry_array; class entry_object; template< typename T > struct value_traits; using json_t = tao::json::basic_value< value_traits >; } // namespace tao::config::internal #endif
faf269304a51808e1bfc2bbaf05333ee78e1f96e
0efb71923c02367a1194a9b47779e8def49a7b9f
/Oblig1/les/0.26/phi
3d9530571e7b8cca9944123d7855dd0405eefae3
[]
no_license
andergsv/blandet
bbff505e8663c7547b5412700f51e3f42f088d78
f648b164ea066c918e297001a8049dd5e6f786f9
refs/heads/master
2021-01-17T13:23:44.372215
2016-06-14T21:32:00
2016-06-14T21:32:00
41,495,450
0
0
null
null
null
null
UTF-8
C++
false
false
214,085
phi
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "0.26"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 17320 ( 1.76348e-05 7.36521e-06 1.16155e-05 6.01926e-06 8.685e-06 2.93052e-06 7.35312e-06 1.33188e-06 6.71866e-06 6.34469e-07 6.34322e-06 3.75431e-07 6.07721e-06 2.66011e-07 5.8617e-06 2.15508e-07 5.71456e-06 1.4714e-07 5.57227e-06 1.42297e-07 5.47211e-06 1.00158e-07 5.37064e-06 1.01467e-07 5.29775e-06 7.28936e-08 5.18698e-06 1.10769e-07 5.09474e-06 9.22384e-08 4.97797e-06 1.16767e-07 4.86172e-06 1.16258e-07 4.67644e-06 1.85272e-07 4.42896e-06 2.4748e-07 1.16472e-07 4.31249e-06 2.54534e-05 6.91183e-06 2.3247e-05 8.22568e-06 2.09908e-05 5.18668e-06 1.93142e-05 3.00848e-06 1.80769e-05 1.87178e-06 1.71128e-05 1.33955e-06 1.63634e-05 1.01541e-06 1.5767e-05 8.11852e-07 1.53149e-05 5.99225e-07 1.49202e-05 5.36991e-07 1.46247e-05 3.95665e-07 1.43483e-05 3.77912e-07 1.41344e-05 2.86751e-07 1.38776e-05 3.67648e-07 1.36772e-05 2.92579e-07 1.34159e-05 3.78074e-07 1.31756e-05 3.56568e-07 1.28006e-05 5.60239e-07 1.24801e-05 5.68015e-07 6.22847e-07 1.19737e-05 2.66084e-05 5.30345e-06 2.71585e-05 7.67555e-06 2.67821e-05 5.56314e-06 2.62448e-05 3.54577e-06 2.5604e-05 2.51255e-06 2.48743e-05 2.06925e-06 2.41557e-05 1.73399e-06 2.34976e-05 1.46997e-06 2.29422e-05 1.15463e-06 2.24307e-05 1.04849e-06 2.20292e-05 7.97166e-07 2.16473e-05 7.59762e-07 2.13484e-05 5.85688e-07 2.10057e-05 7.10386e-07 2.07472e-05 5.51052e-07 2.04122e-05 7.13085e-07 2.01177e-05 6.51044e-07 1.96374e-05 1.04053e-06 1.9314e-05 8.91458e-07 1.31907e-06 1.86177e-05 2.63081e-05 3.9953e-06 2.75427e-05 6.44095e-06 2.80868e-05 5.01912e-06 2.84519e-05 3.18067e-06 2.86429e-05 2.32151e-06 2.86252e-05 2.08699e-06 2.84715e-05 1.88771e-06 2.82236e-05 1.71781e-06 2.79809e-05 1.39737e-06 2.76785e-05 1.35088e-06 2.7433e-05 1.04266e-06 2.71412e-05 1.05159e-06 2.69164e-05 8.10451e-07 2.6613e-05 1.01379e-06 2.63952e-05 7.68839e-07 2.60876e-05 1.02072e-06 2.58217e-05 9.16889e-07 2.53393e-05 1.52296e-06 2.48921e-05 1.33864e-06 2.37278e-06 2.38384e-05 2.60304e-05 2.96488e-06 2.72365e-05 5.23488e-06 2.80448e-05 4.21082e-06 2.85148e-05 2.71069e-06 2.89755e-05 1.86073e-06 2.93211e-05 1.74145e-06 2.95788e-05 1.62996e-06 2.97246e-05 1.57205e-06 2.98573e-05 1.26467e-06 2.99015e-05 1.30668e-06 2.99694e-05 9.74794e-07 2.9948e-05 1.07291e-06 2.99582e-05 8.00288e-07 2.98864e-05 1.08557e-06 2.98479e-05 8.07387e-07 2.9759e-05 1.10955e-06 2.95952e-05 1.08075e-06 2.94938e-05 1.62429e-06 2.95577e-05 1.27476e-06 2.25412e-06 2.96764e-05 2.58373e-05 2.12761e-06 2.69479e-05 4.12429e-06 2.78016e-05 3.35712e-06 2.82527e-05 2.25959e-06 2.87259e-05 1.38748e-06 2.91046e-05 1.36279e-06 2.94395e-05 1.29498e-06 2.9713e-05 1.29863e-06 2.99711e-05 1.00653e-06 3.0163e-05 1.11474e-06 3.03973e-05 7.40548e-07 3.05619e-05 9.08278e-07 3.07163e-05 6.45879e-07 3.08372e-05 9.64651e-07 3.09493e-05 6.95335e-07 3.10889e-05 9.69948e-07 3.10738e-05 1.09584e-06 3.13277e-05 1.37043e-06 3.16195e-05 9.82975e-07 1.95031e-06 3.19233e-05 2.56858e-05 1.44179e-06 2.67429e-05 3.06724e-06 2.75967e-05 2.5033e-06 2.80842e-05 1.77212e-06 2.84884e-05 9.8319e-07 2.88343e-05 1.01697e-06 2.91775e-05 9.51721e-07 2.9504e-05 9.72188e-07 2.97479e-05 7.6258e-07 2.99849e-05 8.77746e-07 3.02285e-05 4.97008e-07 3.04335e-05 7.03203e-07 3.05941e-05 4.85356e-07 3.0784e-05 7.74734e-07 3.0968e-05 5.11356e-07 3.11674e-05 7.70467e-07 3.12585e-05 1.00473e-06 3.15645e-05 1.0645e-06 3.19762e-05 5.71255e-07 1.42552e-06 3.2501e-05 2.55615e-05 8.80271e-07 2.65834e-05 2.04538e-06 2.74318e-05 1.6549e-06 2.79967e-05 1.20715e-06 2.83338e-05 6.46107e-07 2.86883e-05 6.62527e-07 2.89771e-05 6.62892e-07 2.92896e-05 6.59653e-07 2.95987e-05 4.53527e-07 2.99022e-05 5.74247e-07 3.00305e-05 3.68676e-07 3.0206e-05 5.27762e-07 3.03844e-05 3.06884e-07 3.06712e-05 4.8796e-07 3.08452e-05 3.37346e-07 3.10145e-05 6.01217e-07 3.11797e-05 8.39493e-07 3.14654e-05 7.78805e-07 3.17916e-05 2.45103e-07 8.66396e-07 3.23507e-05 2.54611e-05 4.19155e-07 2.6479e-05 1.02748e-06 2.73039e-05 8.29974e-07 2.7896e-05 6.15107e-07 2.82927e-05 2.49436e-07 2.86013e-05 3.53858e-07 2.88328e-05 4.31464e-07 2.91787e-05 3.1376e-07 2.95173e-05 1.14897e-07 2.97804e-05 3.11114e-07 2.99208e-05 2.28259e-07 3.01338e-05 3.14833e-07 3.03037e-05 1.36959e-07 3.05538e-05 2.37847e-07 3.07101e-05 1.81008e-07 3.08847e-05 4.26639e-07 3.11592e-05 5.64971e-07 3.14443e-05 4.93756e-07 3.15127e-05 1.76643e-07 3.65029e-07 3.20141e-05 2.54182e-05 9.26948e-10 2.64489e-05 -3.21269e-09 2.72704e-05 8.4778e-09 2.78864e-05 -8.7825e-10 2.82171e-05 -8.12233e-08 2.85038e-05 6.70906e-08 2.88463e-05 8.89915e-08 2.9167e-05 -6.91231e-09 2.93794e-05 -9.75158e-08 2.96884e-05 2.049e-09 2.99517e-05 -3.49605e-08 3.01352e-05 1.31303e-07 3.02257e-05 4.6438e-08 3.04459e-05 1.771e-08 3.0642e-05 -1.51145e-08 3.08392e-05 2.29384e-07 3.11508e-05 2.53389e-07 3.14545e-05 1.90095e-07 3.14376e-05 1.93482e-07 1.45333e-07 3.16573e-05 2.54332e-05 -4.32251e-07 2.64689e-05 -1.0389e-06 2.72808e-05 -8.03497e-07 2.78479e-05 -5.67913e-07 2.8151e-05 -3.84352e-07 2.8542e-05 -3.23878e-07 2.89174e-05 -2.86425e-07 2.91315e-05 -2.21043e-07 2.93427e-05 -3.0873e-07 2.97141e-05 -3.69336e-07 2.99363e-05 -2.57092e-07 3.01133e-05 -4.57365e-08 3.02479e-05 -8.8183e-08 3.0469e-05 -2.03376e-07 3.06271e-05 -1.73217e-07 3.08436e-05 1.2902e-08 3.11536e-05 -5.6638e-08 3.14385e-05 -9.47988e-08 3.15437e-05 8.83226e-08 1.32765e-07 3.15562e-05 2.54634e-05 -8.9566e-07 2.64837e-05 -2.05924e-06 2.73226e-05 -1.64236e-06 2.79248e-05 -1.17006e-06 2.82378e-05 -6.97424e-07 2.85775e-05 -6.63565e-07 2.88902e-05 -5.99069e-07 2.92045e-05 -5.3541e-07 2.94809e-05 -5.85136e-07 2.97446e-05 -6.3303e-07 2.99199e-05 -4.32376e-07 3.01826e-05 -3.08412e-07 3.03456e-05 -2.512e-07 3.05095e-05 -3.67242e-07 3.06572e-05 -3.20978e-07 3.09556e-05 -2.85476e-07 3.11941e-05 -2.95181e-07 3.14007e-05 -3.01312e-07 3.1621e-05 -1.32039e-07 -1.86584e-07 3.19404e-05 2.55419e-05 -1.43757e-06 2.6577e-05 -3.0943e-06 2.74385e-05 -2.50389e-06 2.80476e-05 -1.77915e-06 2.8345e-05 -9.94817e-07 2.86214e-05 -9.40018e-07 2.894e-05 -9.17598e-07 2.9375e-05 -9.70406e-07 2.96582e-05 -8.68361e-07 2.98409e-05 -8.15736e-07 2.9982e-05 -5.73493e-07 3.02617e-05 -5.88065e-07 3.04319e-05 -4.2142e-07 3.06188e-05 -5.54126e-07 3.07948e-05 -4.97016e-07 3.10857e-05 -5.76378e-07 3.12658e-05 -4.75312e-07 3.15066e-05 -5.42048e-07 3.18039e-05 -4.29361e-07 -5.82768e-07 3.22001e-05 2.56805e-05 -2.11803e-06 2.67387e-05 -4.15252e-06 2.75975e-05 -3.36271e-06 2.806e-05 -2.24167e-06 2.84691e-05 -1.40389e-06 2.88409e-05 -1.31181e-06 2.91832e-05 -1.25992e-06 2.95317e-05 -1.31887e-06 2.9778e-05 -1.11468e-06 2.99766e-05 -1.01431e-06 3.01605e-05 -7.5746e-07 3.04298e-05 -8.57305e-07 3.06055e-05 -5.97196e-07 3.08126e-05 -7.61201e-07 3.09576e-05 -6.41951e-07 3.11994e-05 -8.18253e-07 3.1375e-05 -6.50934e-07 3.16992e-05 -8.66242e-07 3.1982e-05 -7.12089e-07 -8.52312e-07 3.22515e-05 2.58443e-05 -2.96237e-06 2.69564e-05 -5.26459e-06 2.78067e-05 -4.213e-06 2.82262e-05 -2.66118e-06 2.87068e-05 -1.88451e-06 2.91125e-05 -1.71748e-06 2.94633e-05 -1.61074e-06 2.97367e-05 -1.59222e-06 2.99694e-05 -1.34742e-06 3.01478e-05 -1.19274e-06 3.03642e-05 -9.73785e-07 3.05586e-05 -1.05171e-06 3.07201e-05 -7.58768e-07 3.08604e-05 -9.01418e-07 3.09813e-05 -7.62858e-07 3.11303e-05 -9.67269e-07 3.12384e-05 -7.59068e-07 3.14772e-05 -1.10503e-06 3.16509e-05 -8.85784e-07 -1.11149e-06 3.19101e-05 2.6041e-05 -4.00336e-06 2.72272e-05 -6.45076e-06 2.80252e-05 -5.01105e-06 2.85092e-05 -3.14519e-06 2.89901e-05 -2.36544e-06 2.93317e-05 -2.05908e-06 2.95932e-05 -1.87221e-06 2.97325e-05 -1.73148e-06 2.98411e-05 -1.456e-06 2.98879e-05 -1.2396e-06 2.99593e-05 -1.04518e-06 2.99546e-05 -1.04696e-06 2.99758e-05 -7.79964e-07 2.99317e-05 -8.57393e-07 2.99026e-05 -7.33669e-07 2.9827e-05 -8.91756e-07 2.97634e-05 -6.95416e-07 2.97351e-05 -1.07678e-06 2.96852e-05 -8.35822e-07 -1.23399e-06 2.98077e-05 2.63073e-05 -5.31061e-06 2.75328e-05 -7.67632e-06 2.80779e-05 -5.55613e-06 2.84603e-05 -3.52764e-06 2.86414e-05 -2.54652e-06 2.86279e-05 -2.0456e-06 2.84792e-05 -1.7235e-06 2.82258e-05 -1.478e-06 2.79608e-05 -1.19108e-06 2.76914e-05 -9.70129e-07 2.74401e-05 -7.93904e-07 2.71578e-05 -7.64669e-07 2.69393e-05 -5.61514e-07 2.66796e-05 -5.9766e-07 2.64594e-05 -5.13433e-07 2.61937e-05 -6.26134e-07 2.59866e-05 -4.88262e-07 2.5699e-05 -7.89183e-07 2.55217e-05 -6.58541e-07 -1.18081e-06 2.54685e-05 2.66047e-05 -6.91528e-06 2.71537e-05 -8.22532e-06 2.67817e-05 -5.18419e-06 2.62527e-05 -2.99858e-06 2.55965e-05 -1.89035e-06 2.48783e-05 -1.32743e-06 2.41618e-05 -1.00697e-06 2.34982e-05 -8.14421e-07 2.29302e-05 -6.23069e-07 2.24522e-05 -4.92126e-07 2.20447e-05 -3.86381e-07 2.16676e-05 -3.87534e-07 2.13772e-05 -2.71116e-07 2.10791e-05 -2.99624e-07 2.08258e-05 -2.60117e-07 2.05361e-05 -3.36427e-07 2.03099e-05 -2.62044e-07 1.99426e-05 -4.21904e-07 1.96486e-05 -3.64558e-07 -3.81389e-07 1.88492e-05 2.54509e-05 -7.36623e-06 2.32448e-05 -6.01915e-06 2.09907e-05 -2.93012e-06 1.93195e-05 -1.32738e-06 1.80708e-05 -6.41684e-07 1.71158e-05 -3.72433e-07 1.6369e-05 -2.60166e-07 1.57702e-05 -2.15592e-07 1.5307e-05 -1.59871e-07 1.494e-05 -1.25057e-07 1.46443e-05 -9.07777e-08 1.43672e-05 -1.10354e-07 1.41625e-05 -6.64683e-08 1.39468e-05 -8.39501e-08 1.37596e-05 -7.2868e-08 1.35333e-05 -1.10155e-07 1.33489e-05 -7.7611e-08 1.30652e-05 -1.38226e-07 1.28716e-05 -1.70968e-07 -3.69502e-08 1.25272e-05 1.76338e-05 1.16146e-05 8.68449e-06 7.35711e-06 6.71542e-06 6.34299e-06 6.08283e-06 5.86723e-06 5.70736e-06 5.58231e-06 5.49153e-06 5.38117e-06 5.31471e-06 5.23076e-06 5.15789e-06 5.04773e-06 4.97012e-06 4.8319e-06 4.66093e-06 4.62398e-06 4.94604e-06 6.43557e-07 -1.27711e-06 5.9029e-06 1.03984e-06 -1.9967e-06 6.85707e-06 9.49862e-07 -1.90404e-06 7.4754e-06 5.76144e-07 -1.19447e-06 7.80155e-06 1.80939e-07 -5.0709e-07 7.88292e-06 -8.98902e-08 8.51817e-09 7.94659e-06 -2.37271e-07 1.73601e-07 8.00383e-06 -2.67992e-07 2.10755e-07 8.09161e-06 -2.70776e-07 1.82997e-07 8.19139e-06 -2.69516e-07 1.69737e-07 8.27621e-06 -2.48916e-07 1.64087e-07 8.37796e-06 -2.62899e-07 1.61156e-07 8.48922e-06 -2.32003e-07 1.20742e-07 8.64021e-06 -2.32419e-07 8.14342e-08 8.81179e-06 -2.02017e-07 3.04372e-08 8.99811e-06 -2.01762e-07 1.54438e-08 9.18713e-06 -2.24169e-07 3.514e-08 9.35313e-06 -2.61911e-07 9.59112e-08 9.50816e-06 -3.27977e-07 1.72948e-07 9.62058e-06 -3.84531e-07 2.72115e-07 9.69332e-06 -4.36192e-07 3.63447e-07 9.70403e-06 -4.84434e-07 4.73726e-07 9.72629e-06 -4.89862e-07 4.67609e-07 9.69804e-06 -4.45537e-07 4.7378e-07 9.71243e-06 -3.48542e-07 3.34153e-07 9.77722e-06 -7.80094e-08 1.32179e-08 9.96819e-06 1.34733e-07 -3.25701e-07 1.032e-05 4.08442e-07 -7.6028e-07 1.07573e-05 5.74592e-07 -1.01183e-06 1.12974e-05 6.16844e-07 -1.15699e-06 1.18268e-05 5.50303e-07 -1.07966e-06 1.23531e-05 3.18305e-07 -8.4467e-07 1.27856e-05 7.14933e-08 -5.03942e-07 1.31352e-05 -3.11115e-07 -3.8467e-08 1.34544e-05 -7.03635e-07 3.84376e-07 1.36902e-05 -1.05289e-06 8.17135e-07 1.38987e-05 -1.44888e-06 1.24037e-06 1.40663e-05 -1.76386e-06 1.59626e-06 1.41807e-05 -2.06806e-06 1.95365e-06 1.42627e-05 -2.3201e-06 2.23815e-06 1.42605e-05 -2.46488e-06 2.46704e-06 1.42059e-05 -2.58921e-06 2.64375e-06 1.40855e-05 -2.57198e-06 2.69242e-06 1.39171e-05 -2.47592e-06 2.64432e-06 1.36927e-05 -2.27417e-06 2.49854e-06 1.34222e-05 -1.96706e-06 2.23761e-06 1.3144e-05 -1.50922e-06 1.78736e-06 1.29625e-05 -1.00271e-06 1.18427e-06 1.29856e-05 -4.67723e-07 4.44586e-07 1.31973e-05 1.56657e-07 -3.68321e-07 1.36722e-05 7.94294e-07 -1.26923e-06 1.44567e-05 1.34304e-06 -2.12754e-06 1.53499e-05 1.90915e-06 -2.80231e-06 1.64219e-05 2.18113e-06 -3.25315e-06 1.75864e-05 2.30817e-06 -3.47271e-06 1.85789e-05 2.46204e-06 -3.45451e-06 1.95997e-05 1.89162e-06 -2.91243e-06 2.0523e-05 1.58706e-06 -2.51034e-06 2.1288e-05 1.32149e-06 -2.08653e-06 2.21255e-05 1.33524e-07 -9.70975e-07 2.28587e-05 -2.53312e-07 -4.79949e-07 2.35405e-05 -7.9187e-07 1.10132e-07 2.41817e-05 -2.18399e-06 1.54281e-06 2.47258e-05 -2.73375e-06 2.18956e-06 2.53683e-05 -3.57695e-06 2.93451e-06 2.59397e-05 -4.93806e-06 4.36665e-06 2.64353e-05 -5.63834e-06 5.14271e-06 2.71414e-05 -6.61668e-06 5.91065e-06 2.7895e-05 -7.86059e-06 7.10693e-06 2.86572e-05 -8.66065e-06 7.89843e-06 2.9596e-05 -9.46834e-06 8.52959e-06 3.05981e-05 -1.04668e-05 9.46469e-06 3.16236e-05 -1.13501e-05 1.03246e-05 3.25645e-05 -1.16829e-05 1.0742e-05 3.34197e-05 -1.22213e-05 1.1366e-05 3.42723e-05 -1.30192e-05 1.21666e-05 3.4915e-05 -1.29244e-05 1.22817e-05 3.53602e-05 -1.28197e-05 1.23745e-05 3.57532e-05 -1.34891e-05 1.30961e-05 3.60483e-05 -1.31431e-05 1.2848e-05 3.60869e-05 -1.2445e-05 1.24064e-05 3.59477e-05 -1.28402e-05 1.29794e-05 3.58358e-05 -1.2182e-05 1.2294e-05 3.55153e-05 -1.12163e-05 1.15367e-05 3.48934e-05 -1.11981e-05 1.182e-05 3.42581e-05 -9.97657e-06 1.06119e-05 3.34413e-05 -8.96276e-06 9.77954e-06 3.23374e-05 -8.50723e-06 9.61117e-06 3.1054e-05 -6.5866e-06 7.86993e-06 2.97063e-05 -5.62035e-06 6.96812e-06 2.82346e-05 -4.69822e-06 6.16987e-06 2.66381e-05 -2.59206e-06 4.18856e-06 2.51258e-05 -1.87618e-06 3.38851e-06 2.3697e-05 -9.21331e-07 2.35016e-06 2.23103e-05 1.18299e-06 2.03651e-07 2.10973e-05 1.54932e-06 -3.36268e-07 1.99891e-05 1.67217e-06 -5.64006e-07 1.9062e-05 3.44461e-06 -2.51751e-06 1.8224e-05 3.97587e-06 -3.13787e-06 1.73992e-05 3.31698e-06 -2.49212e-06 1.6613e-05 3.97149e-06 -3.18536e-06 1.6102e-05 5.4492e-06 -4.93814e-06 1.58524e-05 5.10732e-06 -4.85781e-06 1.56157e-05 3.51944e-06 -3.28271e-06 1.51041e-05 2.8424e-06 -2.33075e-06 1.45548e-05 4.39239e-06 -3.84314e-06 1.43094e-05 6.39573e-06 -6.15027e-06 1.44561e-05 7.64046e-06 -7.78719e-06 1.46547e-05 7.08428e-06 -7.28287e-06 1.48907e-05 4.50098e-06 -4.73703e-06 1.50506e-05 -3.8091e-07 2.21086e-07 1.53172e-05 -7.65974e-06 7.39307e-06 1.5617e-05 -1.6126e-05 1.58262e-05 1.61613e-05 -2.29116e-05 2.23674e-05 1.69551e-05 -2.67379e-05 2.59441e-05 1.7783e-05 -2.78386e-05 2.70107e-05 1.83946e-05 -2.61982e-05 2.55866e-05 1.92241e-05 -2.41854e-05 2.33559e-05 1.97976e-05 -2.12265e-05 2.06531e-05 2.04502e-05 -1.7278e-05 1.66254e-05 2.10372e-05 -1.20019e-05 1.1415e-05 2.14646e-05 -7.28226e-06 6.85485e-06 2.22992e-05 -2.1519e-06 1.31727e-06 2.2862e-05 4.03967e-06 -4.60246e-06 2.31426e-05 9.15518e-06 -9.43574e-06 2.36581e-05 1.40047e-05 -1.45202e-05 2.42804e-05 1.97541e-05 -2.03764e-05 2.43701e-05 2.52818e-05 -2.53715e-05 2.35773e-05 2.90484e-05 -2.82556e-05 2.21322e-05 3.04752e-05 -2.90301e-05 2.04022e-05 3.04981e-05 -2.87682e-05 1.85793e-05 2.99388e-05 -2.81159e-05 1.7312e-05 2.86648e-05 -2.73975e-05 1.60873e-05 2.7872e-05 -2.66472e-05 1.53812e-05 2.57567e-05 -2.50507e-05 1.48797e-05 2.48701e-05 -2.43686e-05 1.46908e-05 2.2258e-05 -2.2069e-05 1.47519e-05 2.11983e-05 -2.12594e-05 1.51722e-05 1.83837e-05 -1.88041e-05 1.54847e-05 1.7271e-05 -1.75835e-05 1.59968e-05 1.35958e-05 -1.41079e-05 1.65111e-05 1.13606e-05 -1.18749e-05 1.70775e-05 7.42614e-06 -7.99259e-06 1.72976e-05 5.94106e-06 -6.16115e-06 1.7643e-05 2.20994e-06 -2.55534e-06 1.81418e-05 1.08288e-06 -1.58166e-06 1.86443e-05 -2.87624e-06 2.37368e-06 1.89417e-05 -3.30418e-06 3.00687e-06 1.91577e-05 -7.27187e-06 7.05584e-06 1.96215e-05 -9.19918e-06 8.73541e-06 2.02808e-05 -1.24975e-05 1.18381e-05 2.05928e-05 -1.52479e-05 1.4936e-05 2.09595e-05 -1.90505e-05 1.86837e-05 2.09788e-05 -1.97082e-05 1.96889e-05 2.09167e-05 -2.10144e-05 2.10766e-05 2.06146e-05 -2.05817e-05 2.08838e-05 2.01963e-05 -2.06488e-05 2.10671e-05 1.98773e-05 -1.98598e-05 2.01789e-05 1.96172e-05 -1.9922e-05 2.01822e-05 1.92317e-05 -1.73567e-05 1.77422e-05 1.89936e-05 -1.59953e-05 1.62333e-05 1.88573e-05 -1.57464e-05 1.58828e-05 1.87304e-05 -1.59054e-05 1.60322e-05 1.82875e-05 -1.53069e-05 1.57498e-05 1.83058e-05 -1.46065e-05 1.45882e-05 1.87883e-05 -1.31365e-05 1.26541e-05 1.96898e-05 -1.16844e-05 1.07828e-05 2.09087e-05 -1.21405e-05 1.09216e-05 2.19742e-05 -1.35069e-05 1.24414e-05 2.30562e-05 -1.45422e-05 1.34602e-05 2.39116e-05 -1.39908e-05 1.31354e-05 2.44207e-05 -1.20993e-05 1.15902e-05 2.48153e-05 -9.68208e-06 9.28756e-06 2.51451e-05 -7.44399e-06 7.11412e-06 2.57348e-05 -6.27831e-06 5.6886e-06 2.59623e-05 -5.51107e-06 5.28364e-06 2.59765e-05 -4.50201e-06 4.48777e-06 2.54817e-05 -2.48758e-06 2.98241e-06 2.51405e-05 -3.7817e-07 7.1937e-07 2.41797e-05 2.42598e-06 -1.46518e-06 2.33678e-05 6.48314e-06 -5.6713e-06 2.20496e-05 1.0474e-05 -9.15576e-06 2.12086e-05 1.18872e-05 -1.10463e-05 1.94147e-05 1.49677e-05 -1.31737e-05 1.81247e-05 1.84517e-05 -1.71617e-05 1.74297e-05 2.23979e-05 -2.17029e-05 1.58358e-05 2.39046e-05 -2.23107e-05 1.56318e-05 2.26734e-05 -2.24694e-05 1.50255e-05 2.2868e-05 -2.22618e-05 1.39397e-05 2.24421e-05 -2.13562e-05 1.41142e-05 2.30911e-05 -2.32656e-05 1.39778e-05 2.46473e-05 -2.4511e-05 1.35449e-05 2.43981e-05 -2.39652e-05 1.33561e-05 2.29627e-05 -2.27738e-05 1.27851e-05 2.24914e-05 -2.19204e-05 1.19498e-05 2.16221e-05 -2.07868e-05 1.15513e-05 2.17085e-05 -2.131e-05 1.0291e-05 2.30406e-05 -2.17802e-05 1.10714e-05 2.34224e-05 -2.42028e-05 3.01426e-05 -3.05076e-05 1.14364e-05 1.20809e-05 5.36353e-07 1.24462e-05 6.74612e-07 1.28417e-05 5.54342e-07 1.31399e-05 2.77897e-07 1.33145e-05 6.3423e-09 1.34248e-05 -2.00146e-07 1.35012e-05 -3.13708e-07 1.35491e-05 -3.15904e-07 1.36001e-05 -3.21789e-07 1.36541e-05 -3.23517e-07 1.36964e-05 -2.91187e-07 1.37469e-05 -3.13423e-07 1.38096e-05 -2.94684e-07 1.38957e-05 -3.18533e-07 1.40225e-05 -3.28823e-07 1.41553e-05 -3.3452e-07 1.43078e-05 -3.76685e-07 1.44503e-05 -4.04429e-07 1.45835e-05 -4.61186e-07 1.47149e-05 -5.15897e-07 1.48148e-05 -5.36045e-07 1.49031e-05 -5.72731e-07 1.49746e-05 -5.61419e-07 1.50342e-05 -5.05084e-07 1.51153e-05 -4.29662e-07 1.52682e-05 -2.30949e-07 1.55098e-05 -1.0686e-07 1.58319e-05 8.63983e-08 1.62145e-05 1.91978e-07 1.66539e-05 1.77434e-07 1.70718e-05 1.3243e-07 1.75085e-05 -1.18445e-07 1.79e-05 -3.20027e-07 1.82521e-05 -6.63167e-07 1.8555e-05 -1.00653e-06 1.88337e-05 -1.33163e-06 1.90572e-05 -1.67234e-06 1.92542e-05 -1.96089e-06 1.9398e-05 -2.21186e-06 1.94792e-05 -2.40126e-06 1.95228e-05 -2.50848e-06 1.95087e-05 -2.57515e-06 1.94471e-05 -2.51035e-06 1.93587e-05 -2.38749e-06 1.92367e-05 -2.15224e-06 1.90958e-05 -1.82613e-06 1.89857e-05 -1.39913e-06 1.88617e-05 -8.78733e-07 1.8821e-05 -4.2704e-07 1.87776e-05 2.00088e-07 1.88319e-05 7.40003e-07 1.9111e-05 1.06392e-06 1.94365e-05 1.5837e-06 1.99489e-05 1.66865e-06 2.06358e-05 1.62134e-06 2.1288e-05 1.80985e-06 2.20091e-05 1.17053e-06 2.27553e-05 8.40864e-07 2.34874e-05 5.89338e-07 2.41715e-05 -5.50523e-07 2.48775e-05 -9.5936e-07 2.56535e-05 -1.56788e-06 2.63419e-05 -2.87236e-06 2.70228e-05 -3.41463e-06 2.78598e-05 -4.414e-06 2.8637e-05 -5.71521e-06 2.94198e-05 -6.42119e-06 3.03365e-05 -7.53333e-06 3.12008e-05 -8.72497e-06 3.20582e-05 -9.51797e-06 3.29137e-05 -1.03239e-05 3.36805e-05 -1.12336e-05 3.4344e-05 -1.20135e-05 3.48981e-05 -1.2237e-05 3.53159e-05 -1.26391e-05 3.55681e-05 -1.32714e-05 3.57464e-05 -1.31028e-05 3.58608e-05 -1.29342e-05 3.57838e-05 -1.3412e-05 3.57303e-05 -1.30896e-05 3.56919e-05 -1.24066e-05 3.54365e-05 -1.25849e-05 3.52526e-05 -1.19981e-05 3.50578e-05 -1.10214e-05 3.45841e-05 -1.07244e-05 3.4038e-05 -9.43041e-06 3.34351e-05 -8.35991e-06 3.24823e-05 -7.55443e-06 3.13474e-05 -5.45165e-06 3.01457e-05 -4.41875e-06 2.87901e-05 -3.34257e-06 2.73147e-05 -1.11668e-06 2.58462e-05 -4.07695e-07 2.43771e-05 5.47822e-07 2.29392e-05 2.62091e-06 2.17006e-05 2.78787e-06 2.05919e-05 2.78084e-06 1.95729e-05 4.46364e-06 1.86243e-05 4.92447e-06 1.78806e-05 4.0607e-06 1.72777e-05 4.57439e-06 1.674e-05 5.98688e-06 1.6215e-05 5.63237e-06 1.56439e-05 4.09045e-06 1.49654e-05 3.52091e-06 1.4454e-05 4.90378e-06 1.42596e-05 6.59016e-06 1.43117e-05 7.58836e-06 1.44947e-05 6.90127e-06 1.46562e-05 4.33953e-06 1.47523e-05 -4.77005e-07 1.49252e-05 -7.83272e-06 1.50515e-05 -1.62523e-05 1.56542e-05 -2.35143e-05 1.639e-05 -2.74738e-05 1.69506e-05 -2.83992e-05 1.74921e-05 -2.67398e-05 1.823e-05 -2.49233e-05 1.87949e-05 -2.17914e-05 1.93076e-05 -1.77907e-05 1.98628e-05 -1.25572e-05 2.02329e-05 -7.65234e-06 2.09914e-05 -2.91044e-06 2.18757e-05 3.15536e-06 2.2273e-05 8.7579e-06 2.28489e-05 1.34287e-05 2.36379e-05 1.89651e-05 2.42839e-05 2.46358e-05 2.41194e-05 2.92129e-05 2.31174e-05 3.14772e-05 2.18562e-05 3.17593e-05 2.03522e-05 3.14428e-05 1.91217e-05 2.98953e-05 1.79816e-05 2.90121e-05 1.72556e-05 2.64827e-05 1.68676e-05 2.52581e-05 1.67236e-05 2.2402e-05 1.66383e-05 2.12836e-05 1.7035e-05 1.79871e-05 1.75212e-05 1.67848e-05 1.8118e-05 1.2999e-05 1.85457e-05 1.09329e-05 1.88388e-05 7.13303e-06 1.90905e-05 5.68938e-06 1.91504e-05 2.15005e-06 1.97366e-05 4.96642e-07 2.00332e-05 -3.17281e-06 2.062e-05 -3.89102e-06 2.07914e-05 -7.44323e-06 2.12648e-05 -9.67253e-06 2.19186e-05 -1.31514e-05 2.23459e-05 -1.56751e-05 2.25333e-05 -1.9238e-05 2.21085e-05 -1.92834e-05 2.19565e-05 -2.08624e-05 2.16629e-05 -2.02881e-05 2.15317e-05 -2.05175e-05 2.11291e-05 -1.94573e-05 2.01977e-05 -1.89907e-05 1.95913e-05 -1.67503e-05 1.92113e-05 -1.56153e-05 1.89602e-05 -1.54953e-05 1.88199e-05 -1.5765e-05 1.81555e-05 -1.46425e-05 1.81376e-05 -1.45886e-05 1.86879e-05 -1.36868e-05 1.96541e-05 -1.26506e-05 2.06964e-05 -1.31828e-05 2.18297e-05 -1.46401e-05 2.27595e-05 -1.5472e-05 2.33951e-05 -1.46264e-05 2.40523e-05 -1.27565e-05 2.43226e-05 -9.95247e-06 2.46157e-05 -7.73704e-06 2.4881e-05 -6.54365e-06 2.4807e-05 -5.43701e-06 2.4374e-05 -4.069e-06 2.38001e-05 -1.91375e-06 2.33679e-05 5.41151e-08 2.23974e-05 3.39638e-06 2.14534e-05 7.42717e-06 2.03654e-05 1.15621e-05 1.94382e-05 1.28144e-05 1.83233e-05 1.60825e-05 1.63805e-05 2.03944e-05 1.62145e-05 2.2564e-05 1.55575e-05 2.45615e-05 1.41659e-05 2.4065e-05 1.46526e-05 2.23813e-05 1.39154e-05 2.31794e-05 1.37569e-05 2.32495e-05 1.44869e-05 2.39174e-05 1.41827e-05 2.47023e-05 1.38848e-05 2.32606e-05 1.38193e-05 2.25569e-05 1.33475e-05 2.20939e-05 1.42313e-05 2.08246e-05 1.38635e-05 2.34084e-05 1.75136e-05 1.97723e-05 3.03029e-05 1.73533e-05 1.86767e-05 4.7744e-07 1.89928e-05 3.58471e-07 1.93577e-05 1.89402e-07 1.95982e-05 3.73867e-08 1.97629e-05 -1.58286e-07 1.97939e-05 -2.3114e-07 1.98026e-05 -3.2242e-07 1.98156e-05 -3.28898e-07 1.98202e-05 -3.26407e-07 1.98421e-05 -3.45385e-07 1.98563e-05 -3.05389e-07 1.98837e-05 -3.40876e-07 1.99162e-05 -3.27139e-07 1.99578e-05 -3.60204e-07 2.00227e-05 -3.93636e-07 2.01063e-05 -4.18195e-07 2.01941e-05 -4.64482e-07 2.02938e-05 -5.04123e-07 2.03818e-05 -5.4917e-07 2.04685e-05 -6.02596e-07 2.05529e-05 -6.20457e-07 2.06261e-05 -6.45927e-07 2.0691e-05 -6.26347e-07 2.07615e-05 -5.75537e-07 2.08653e-05 -5.33496e-07 2.10108e-05 -3.76432e-07 2.12389e-05 -3.34951e-07 2.14907e-05 -1.65413e-07 2.1812e-05 -1.29267e-07 2.21602e-05 -1.708e-07 2.24794e-05 -1.8675e-07 2.28497e-05 -4.88738e-07 2.31385e-05 -6.08861e-07 2.3442e-05 -9.66619e-07 2.36839e-05 -1.24845e-06 2.38783e-05 -1.52609e-06 2.40714e-05 -1.86541e-06 2.41757e-05 -2.06517e-06 2.42895e-05 -2.32572e-06 2.43114e-05 -2.4231e-06 2.4318e-05 -2.51513e-06 2.4284e-05 -2.54108e-06 2.41769e-05 -2.40329e-06 2.40901e-05 -2.30072e-06 2.39503e-05 -2.01243e-06 2.38231e-05 -1.69886e-06 2.37528e-05 -1.32886e-06 2.36674e-05 -7.93383e-07 2.36894e-05 -4.49046e-07 2.37633e-05 1.26221e-07 2.38513e-05 6.51988e-07 2.41121e-05 8.03168e-07 2.43691e-05 1.32665e-06 2.47443e-05 1.29348e-06 2.51576e-05 1.20799e-06 2.56509e-05 1.31655e-06 2.61874e-05 6.34054e-07 2.66657e-05 3.62547e-07 2.7317e-05 -6.19329e-08 2.7907e-05 -1.14054e-06 2.84817e-05 -1.53404e-06 2.927e-05 -2.35616e-06 2.99372e-05 -3.53957e-06 3.06449e-05 -4.1223e-06 3.14477e-05 -5.21685e-06 3.21492e-05 -6.4167e-06 3.28778e-05 -7.14983e-06 3.35956e-05 -8.25114e-06 3.41478e-05 -9.27713e-06 3.46722e-05 -1.00424e-05 3.51378e-05 -1.07894e-05 3.53753e-05 -1.14712e-05 3.54613e-05 -1.20995e-05 3.55891e-05 -1.23648e-05 3.55326e-05 -1.25826e-05 3.53271e-05 -1.30659e-05 3.52429e-05 -1.30185e-05 3.52176e-05 -1.29089e-05 3.50807e-05 -1.3275e-05 3.50004e-05 -1.30093e-05 3.51316e-05 -1.25377e-05 3.51529e-05 -1.26062e-05 3.51263e-05 -1.19716e-05 3.51369e-05 -1.1032e-05 3.49293e-05 -1.05169e-05 3.45982e-05 -9.09926e-06 3.41216e-05 -7.88337e-06 3.32439e-05 -6.67667e-06 3.2289e-05 -4.49682e-06 3.12304e-05 -3.3601e-06 2.98704e-05 -1.98259e-06 2.83355e-05 4.1823e-07 2.68168e-05 1.11102e-06 2.52408e-05 2.12381e-06 2.37901e-05 4.07167e-06 2.25026e-05 4.07534e-06 2.13062e-05 3.97725e-06 2.01971e-05 5.57276e-06 1.92437e-05 5.87782e-06 1.84224e-05 4.882e-06 1.76751e-05 5.32168e-06 1.70638e-05 6.59819e-06 1.65862e-05 6.10996e-06 1.61936e-05 4.48304e-06 1.56535e-05 4.06105e-06 1.51668e-05 5.39042e-06 1.47406e-05 7.01641e-06 1.4515e-05 7.81395e-06 1.44687e-05 6.94761e-06 1.45648e-05 4.2434e-06 1.46665e-05 -5.78722e-07 1.46567e-05 -7.82289e-06 1.45927e-05 -1.61882e-05 1.50153e-05 -2.39369e-05 1.54417e-05 -2.79002e-05 1.58305e-05 -2.8788e-05 1.64663e-05 -2.73756e-05 1.70595e-05 -2.55165e-05 1.75431e-05 -2.22751e-05 1.79653e-05 -1.82129e-05 1.84913e-05 -1.30831e-05 1.8991e-05 -8.15203e-06 1.95518e-05 -3.4712e-06 2.06026e-05 2.10449e-06 2.12374e-05 8.12314e-06 2.18936e-05 1.27725e-05 2.28575e-05 1.80011e-05 2.37288e-05 2.37645e-05 2.42615e-05 2.86802e-05 2.38039e-05 3.19349e-05 2.29579e-05 3.26053e-05 2.17525e-05 3.26482e-05 2.06846e-05 3.09631e-05 1.98693e-05 2.98275e-05 1.92087e-05 2.71433e-05 1.87071e-05 2.57598e-05 1.85886e-05 2.25204e-05 1.86587e-05 2.12135e-05 1.88842e-05 1.77615e-05 1.92918e-05 1.63772e-05 1.96562e-05 1.26346e-05 2.02126e-05 1.03765e-05 2.04525e-05 6.89309e-06 2.0988e-05 5.15394e-06 2.09441e-05 2.19393e-06 2.15688e-05 -1.28048e-07 2.15482e-05 -3.15222e-06 2.21672e-05 -4.51007e-06 2.23604e-05 -7.63646e-06 2.31146e-05 -1.04267e-05 2.36344e-05 -1.36711e-05 2.39548e-05 -1.59956e-05 2.39756e-05 -1.92588e-05 2.3677e-05 -1.89848e-05 2.326e-05 -2.04454e-05 2.25375e-05 -1.95656e-05 2.19506e-05 -1.99305e-05 2.11051e-05 -1.86118e-05 2.0304e-05 -1.81896e-05 1.97487e-05 -1.61949e-05 1.93369e-05 -1.52036e-05 1.8863e-05 -1.50214e-05 1.83869e-05 -1.52889e-05 1.80326e-05 -1.42883e-05 1.80987e-05 -1.46547e-05 1.84806e-05 -1.40686e-05 1.95523e-05 -1.37223e-05 2.04114e-05 -1.4042e-05 2.15301e-05 -1.57588e-05 2.23138e-05 -1.62557e-05 2.2828e-05 -1.51406e-05 2.31991e-05 -1.31275e-05 2.34655e-05 -1.02189e-05 2.37241e-05 -7.99564e-06 2.35901e-05 -6.40963e-06 2.32739e-05 -5.12083e-06 2.24255e-05 -3.22059e-06 2.16995e-05 -1.18782e-06 2.06702e-05 1.08347e-06 1.95974e-05 4.46917e-06 1.86227e-05 8.40188e-06 1.84909e-05 1.16939e-05 1.7597e-05 1.37084e-05 1.71794e-05 1.65001e-05 1.55411e-05 2.20327e-05 1.39886e-05 2.41166e-05 1.46036e-05 2.39465e-05 1.38478e-05 2.48208e-05 1.3344e-05 2.28851e-05 1.37038e-05 2.28196e-05 1.34075e-05 2.35458e-05 1.45283e-05 2.27965e-05 1.51041e-05 2.41265e-05 1.45602e-05 2.38045e-05 1.53574e-05 2.17597e-05 1.52626e-05 2.21887e-05 1.68256e-05 1.92615e-05 1.61859e-05 2.40481e-05 2.10966e-05 1.48616e-05 2.893e-05 2.24695e-05 2.40974e-05 2.18488e-07 2.46283e-05 -1.72496e-07 2.51008e-05 -2.83051e-07 2.53744e-05 -2.36181e-07 2.54947e-05 -2.78632e-07 2.5496e-05 -2.32462e-07 2.54697e-05 -2.96112e-07 2.54029e-05 -2.62091e-07 2.53867e-05 -3.10251e-07 2.53637e-05 -3.223e-07 2.53644e-05 -3.06176e-07 2.53837e-05 -3.60085e-07 2.53856e-05 -3.29098e-07 2.54318e-05 -4.06389e-07 2.54483e-05 -4.10084e-07 2.54998e-05 -4.69722e-07 2.55488e-05 -5.13478e-07 2.55891e-05 -5.44495e-07 2.56528e-05 -6.12863e-07 2.56948e-05 -6.4458e-07 2.57422e-05 -6.67853e-07 2.5812e-05 -7.15706e-07 2.5841e-05 -6.55352e-07 2.5924e-05 -6.58503e-07 2.60179e-05 -6.27448e-07 2.61188e-05 -4.77265e-07 2.63262e-05 -5.42429e-07 2.64961e-05 -3.35284e-07 2.67558e-05 -3.88939e-07 2.70256e-05 -4.40613e-07 2.72532e-05 -4.14401e-07 2.75311e-05 -7.66573e-07 2.77311e-05 -8.0886e-07 2.79216e-05 -1.15712e-06 2.80921e-05 -1.41902e-06 2.81722e-05 -1.60613e-06 2.82709e-05 -1.96415e-06 2.82773e-05 -2.07155e-06 2.82735e-05 -2.32195e-06 2.82244e-05 -2.37398e-06 2.81396e-05 -2.43036e-06 2.80326e-05 -2.43402e-06 2.79007e-05 -2.27139e-06 2.77816e-05 -2.18168e-06 2.76379e-05 -1.86867e-06 2.75514e-05 -1.61234e-06 2.74865e-05 -1.26405e-06 2.74563e-05 -7.6311e-07 2.75324e-05 -5.25203e-07 2.76086e-05 5.00929e-08 2.78203e-05 4.40276e-07 2.8059e-05 5.64409e-07 2.83151e-05 1.07054e-06 2.87604e-05 8.48271e-07 2.91148e-05 8.53528e-07 2.9557e-05 8.74332e-07 3.00795e-05 1.11612e-07 3.04664e-05 -2.43537e-08 3.10556e-05 -6.51116e-07 3.15408e-05 -1.62579e-06 3.20565e-05 -2.04975e-06 3.26632e-05 -2.96285e-06 3.31488e-05 -4.02514e-06 3.37233e-05 -4.6968e-06 3.42312e-05 -5.72478e-06 3.46071e-05 -6.79259e-06 3.50204e-05 -7.56314e-06 3.53155e-05 -8.54623e-06 3.54272e-05 -9.38884e-06 3.54733e-05 -1.00884e-05 3.55059e-05 -1.08221e-05 3.52949e-05 -1.12601e-05 3.50202e-05 -1.18248e-05 3.48971e-05 -1.22417e-05 3.46731e-05 -1.23585e-05 3.44531e-05 -1.28459e-05 3.44501e-05 -1.30155e-05 3.45882e-05 -1.30471e-05 3.46925e-05 -1.33793e-05 3.48764e-05 -1.31932e-05 3.52691e-05 -1.29304e-05 3.55535e-05 -1.28906e-05 3.56509e-05 -1.2069e-05 3.57979e-05 -1.11789e-05 3.57757e-05 -1.04946e-05 3.547e-05 -8.79363e-06 3.49773e-05 -7.39063e-06 3.42411e-05 -5.94041e-06 3.33597e-05 -3.61551e-06 3.22172e-05 -2.21752e-06 3.08361e-05 -6.01542e-07 2.93103e-05 1.94408e-06 2.77758e-05 2.64545e-06 2.61051e-05 3.79459e-06 2.46711e-05 5.50559e-06 2.3409e-05 5.33744e-06 2.2013e-05 5.37324e-06 2.0682e-05 6.90382e-06 1.97113e-05 6.84851e-06 1.90142e-05 5.57914e-06 1.81899e-05 6.14593e-06 1.7336e-05 7.45205e-06 1.65644e-05 6.88162e-06 1.60292e-05 5.01822e-06 1.55513e-05 4.53895e-06 1.51557e-05 5.78605e-06 1.46463e-05 7.52582e-06 1.43043e-05 8.15597e-06 1.4202e-05 7.0499e-06 1.42687e-05 4.17665e-06 1.42587e-05 -5.68654e-07 1.41236e-05 -7.68779e-06 1.41058e-05 -1.61705e-05 1.42779e-05 -2.4109e-05 1.43833e-05 -2.80056e-05 1.49479e-05 -2.93525e-05 1.55707e-05 -2.79985e-05 1.58754e-05 -2.58212e-05 1.62536e-05 -2.26532e-05 1.64881e-05 -1.84474e-05 1.71141e-05 -1.37091e-05 1.76105e-05 -8.64843e-06 1.81606e-05 -4.0213e-06 1.91515e-05 1.11363e-06 2.00327e-05 7.24196e-06 2.06566e-05 1.21486e-05 2.17851e-05 1.68726e-05 2.29503e-05 2.25993e-05 2.39778e-05 2.76528e-05 2.41951e-05 3.17175e-05 2.37714e-05 3.3029e-05 2.3076e-05 3.33436e-05 2.22141e-05 3.18251e-05 2.13662e-05 3.06753e-05 2.0903e-05 2.76065e-05 2.0546e-05 2.61168e-05 2.04327e-05 2.26337e-05 2.05335e-05 2.11127e-05 2.06006e-05 1.76945e-05 2.11197e-05 1.58581e-05 2.13042e-05 1.24501e-05 2.17098e-05 9.97094e-06 2.19608e-05 6.64209e-06 2.25848e-05 4.52994e-06 2.26463e-05 2.1325e-06 2.30418e-05 -5.2357e-07 2.3013e-05 -3.12344e-06 2.36328e-05 -5.1299e-06 2.4066e-05 -8.06957e-06 2.48192e-05 -1.118e-05 2.5184e-05 -1.40359e-05 2.55938e-05 -1.64054e-05 2.51315e-05 -1.87965e-05 2.47177e-05 -1.8571e-05 2.39265e-05 -1.96543e-05 2.32933e-05 -1.89324e-05 2.27233e-05 -1.93606e-05 2.15287e-05 -1.74172e-05 2.0584e-05 -1.7245e-05 1.95902e-05 -1.5201e-05 1.89678e-05 -1.45812e-05 1.8426e-05 -1.44796e-05 1.7998e-05 -1.48608e-05 1.79352e-05 -1.42255e-05 1.78209e-05 -1.45404e-05 1.80663e-05 -1.4314e-05 1.89339e-05 -1.45898e-05 1.9853e-05 -1.4961e-05 2.08318e-05 -1.67377e-05 2.12633e-05 -1.66871e-05 2.17197e-05 -1.5597e-05 2.18943e-05 -1.33021e-05 2.21712e-05 -1.04958e-05 2.22156e-05 -8.04006e-06 2.17645e-05 -5.95856e-06 2.1032e-05 -4.38829e-06 2.00566e-05 -2.24517e-06 1.9194e-05 -3.25263e-07 1.79559e-05 2.32156e-06 1.70524e-05 5.37274e-06 1.6154e-05 9.30022e-06 1.63514e-05 1.14965e-05 1.57124e-05 1.43474e-05 1.48372e-05 1.73753e-05 1.4534e-05 2.23359e-05 1.30525e-05 2.55981e-05 1.26393e-05 2.43596e-05 1.33414e-05 2.41187e-05 1.24381e-05 2.37884e-05 1.34659e-05 2.17919e-05 1.39756e-05 2.30361e-05 1.42012e-05 2.2571e-05 1.58965e-05 2.24313e-05 1.57391e-05 2.39619e-05 1.6636e-05 2.08629e-05 1.62082e-05 2.26165e-05 1.96094e-05 1.58603e-05 1.8303e-05 2.53546e-05 2.0865e-05 1.22995e-05 2.56094e-05 2.41856e-05 2.94687e-05 4.26197e-07 2.93536e-05 -5.73711e-08 2.93243e-05 -2.53807e-07 2.9411e-05 -3.22867e-07 2.95138e-05 -3.81439e-07 2.95435e-05 -2.62187e-07 2.96027e-05 -3.55301e-07 2.95846e-05 -2.43975e-07 2.95764e-05 -3.0205e-07 2.95634e-05 -3.09306e-07 2.95288e-05 -2.7152e-07 2.95541e-05 -3.85407e-07 2.95331e-05 -3.08132e-07 2.95631e-05 -4.3633e-07 2.9572e-05 -4.19074e-07 2.95758e-05 -4.73437e-07 2.96014e-05 -5.39131e-07 2.95882e-05 -5.31251e-07 2.95889e-05 -6.13549e-07 2.95847e-05 -6.4045e-07 2.95607e-05 -6.4383e-07 2.9579e-05 -7.33972e-07 2.96003e-05 -6.76685e-07 2.96351e-05 -6.93279e-07 2.97492e-05 -7.41605e-07 2.98165e-05 -5.44495e-07 2.99958e-05 -7.21756e-07 3.01398e-05 -4.79328e-07 3.03278e-05 -5.76874e-07 3.0533e-05 -6.4588e-07 3.06879e-05 -5.69281e-07 3.08572e-05 -9.35856e-07 3.09596e-05 -9.11303e-07 3.10445e-05 -1.24194e-06 3.10808e-05 -1.45536e-06 3.10876e-05 -1.61294e-06 3.10187e-05 -1.89525e-06 3.09696e-05 -2.02245e-06 3.08107e-05 -2.16309e-06 3.0678e-05 -2.24122e-06 3.05235e-05 -2.27589e-06 3.03126e-05 -2.22316e-06 3.01791e-05 -2.13783e-06 2.99953e-05 -1.99787e-06 2.98407e-05 -1.71408e-06 2.97686e-05 -1.54029e-06 2.96921e-05 -1.18753e-06 2.96981e-05 -7.69119e-07 2.98137e-05 -6.40792e-07 2.99086e-05 -4.4786e-08 3.02125e-05 1.36326e-07 3.0459e-05 3.17956e-07 3.08118e-05 7.17729e-07 3.12059e-05 4.54139e-07 3.15561e-05 5.03397e-07 3.20419e-05 3.88495e-07 3.24049e-05 -2.51412e-07 3.28617e-05 -4.81164e-07 3.33191e-05 -1.10846e-06 3.36381e-05 -1.94486e-06 3.4106e-05 -2.51765e-06 3.44605e-05 -3.31734e-06 3.47128e-05 -4.27736e-06 3.50592e-05 -5.04329e-06 3.52169e-05 -5.88241e-06 3.52903e-05 -6.86598e-06 3.53659e-05 -7.63879e-06 3.5267e-05 -8.44731e-06 3.50944e-05 -9.21627e-06 3.48675e-05 -9.8615e-06 3.46326e-05 -1.05872e-05 3.43385e-05 -1.09661e-05 3.40916e-05 -1.1578e-05 3.39934e-05 -1.21435e-05 3.39589e-05 -1.2324e-05 3.40297e-05 -1.29167e-05 3.42619e-05 -1.32476e-05 3.45907e-05 -1.3376e-05 3.4892e-05 -1.36806e-05 3.5228e-05 -1.35292e-05 3.56571e-05 -1.33595e-05 3.58843e-05 -1.31178e-05 3.59494e-05 -1.21341e-05 3.60992e-05 -1.13287e-05 3.59573e-05 -1.03528e-05 3.55961e-05 -8.4324e-06 3.5127e-05 -6.92153e-06 3.44483e-05 -5.26174e-06 3.35533e-05 -2.7205e-06 3.24896e-05 -1.15382e-06 3.10745e-05 8.1357e-07 2.96714e-05 3.34714e-06 2.81611e-05 4.15571e-06 2.66995e-05 5.25625e-06 2.51599e-05 7.04521e-06 2.35965e-05 6.90077e-06 2.22685e-05 6.70124e-06 2.12373e-05 7.93508e-06 2.01061e-05 7.9797e-06 1.91128e-05 6.57238e-06 1.84395e-05 6.81924e-06 1.78979e-05 7.99372e-06 1.72069e-05 7.57258e-06 1.62474e-05 5.97773e-06 1.54319e-05 5.35445e-06 1.48162e-05 6.40177e-06 1.42669e-05 8.07514e-06 1.39228e-05 8.50003e-06 1.38756e-05 7.09706e-06 1.3954e-05 4.09833e-06 1.39569e-05 -5.71643e-07 1.3745e-05 -7.47584e-06 1.36165e-05 -1.6042e-05 1.33975e-05 -2.38899e-05 1.36546e-05 -2.82627e-05 1.42573e-05 -2.99552e-05 1.44283e-05 -2.81695e-05 1.47305e-05 -2.61233e-05 1.47428e-05 -2.26655e-05 1.50581e-05 -1.87627e-05 1.57436e-05 -1.43947e-05 1.61692e-05 -9.07402e-06 1.6813e-05 -4.66506e-06 1.75355e-05 3.91095e-07 1.86611e-05 6.11632e-06 1.93551e-05 1.14547e-05 2.05066e-05 1.57211e-05 2.18337e-05 2.12721e-05 2.31947e-05 2.62918e-05 2.40452e-05 3.0867e-05 2.421e-05 3.28642e-05 2.3867e-05 3.36866e-05 2.34797e-05 3.22124e-05 2.28437e-05 3.13112e-05 2.2381e-05 2.80693e-05 2.2133e-05 2.63648e-05 2.1877e-05 2.28898e-05 2.21703e-05 2.08194e-05 2.23561e-05 1.75086e-05 2.28152e-05 1.5399e-05 2.31263e-05 1.21389e-05 2.33669e-05 9.73043e-06 2.34092e-05 6.59976e-06 2.38438e-05 4.09532e-06 2.40741e-05 1.90217e-06 2.43807e-05 -8.30156e-07 2.46074e-05 -3.35009e-06 2.52757e-05 -5.79824e-06 2.58388e-05 -8.63269e-06 2.64712e-05 -1.18123e-05 2.68099e-05 -1.43746e-05 2.69079e-05 -1.65034e-05 2.61132e-05 -1.80018e-05 2.56921e-05 -1.81499e-05 2.47703e-05 -1.87325e-05 2.41741e-05 -1.83362e-05 2.30883e-05 -1.82747e-05 2.18115e-05 -1.61404e-05 2.07402e-05 -1.61736e-05 1.96236e-05 -1.40845e-05 1.90494e-05 -1.4007e-05 1.82169e-05 -1.36471e-05 1.78371e-05 -1.44811e-05 1.76146e-05 -1.40029e-05 1.70899e-05 -1.40158e-05 1.72842e-05 -1.45083e-05 1.80713e-05 -1.53769e-05 1.91417e-05 -1.60314e-05 1.99625e-05 -1.75585e-05 2.02285e-05 -1.69532e-05 2.04415e-05 -1.581e-05 2.03269e-05 -1.31874e-05 2.05029e-05 -1.06718e-05 2.00895e-05 -7.6267e-06 1.94328e-05 -5.30189e-06 1.83906e-05 -3.34601e-06 1.75728e-05 -1.42742e-06 1.66806e-05 5.66969e-07 1.54573e-05 3.54481e-06 1.45407e-05 6.28942e-06 1.4173e-05 9.66789e-06 1.41061e-05 1.15633e-05 1.38166e-05 1.46369e-05 1.23556e-05 1.88363e-05 1.23424e-05 2.23491e-05 1.25627e-05 2.53778e-05 1.11519e-05 2.57705e-05 1.23146e-05 2.2956e-05 1.28616e-05 2.32414e-05 1.31471e-05 2.15063e-05 1.45793e-05 2.16038e-05 1.41302e-05 2.30201e-05 1.56285e-05 2.0933e-05 1.6283e-05 2.33074e-05 1.85877e-05 1.85582e-05 1.71547e-05 2.40495e-05 2.01347e-05 1.28804e-05 2.05187e-05 2.49706e-05 2.04489e-05 1.23693e-05 2.19758e-05 2.40824e-05 3.1845e-05 5.04492e-07 3.16906e-05 9.69713e-08 3.15496e-05 -1.12797e-07 3.14708e-05 -2.44017e-07 3.14772e-05 -3.8785e-07 3.1522e-05 -3.06996e-07 3.15661e-05 -3.99412e-07 3.1633e-05 -3.10824e-07 3.16504e-05 -3.19529e-07 3.16968e-05 -3.55662e-07 3.16934e-05 -2.68087e-07 3.16943e-05 -3.86335e-07 3.17108e-05 -3.24694e-07 3.16824e-05 -4.07873e-07 3.17116e-05 -4.48263e-07 3.16974e-05 -4.5924e-07 3.17024e-05 -5.4411e-07 3.16891e-05 -5.18016e-07 3.16479e-05 -5.72314e-07 3.15834e-05 -5.75964e-07 3.15256e-05 -5.86023e-07 3.14452e-05 -6.53594e-07 3.1447e-05 -6.78432e-07 3.14384e-05 -6.84684e-07 3.15043e-05 -8.07527e-07 3.16178e-05 -6.57951e-07 3.17151e-05 -8.19113e-07 3.18954e-05 -6.59574e-07 3.2013e-05 -6.94523e-07 3.21677e-05 -8.00553e-07 3.22734e-05 -6.7497e-07 3.23454e-05 -1.00784e-06 3.23859e-05 -9.51871e-07 3.23668e-05 -1.22281e-06 3.23235e-05 -1.41204e-06 3.22223e-05 -1.51175e-06 3.2086e-05 -1.759e-06 3.19066e-05 -1.84306e-06 3.16959e-05 -1.95234e-06 3.14778e-05 -2.02313e-06 3.12693e-05 -2.06743e-06 3.10318e-05 -1.98556e-06 3.08873e-05 -1.99342e-06 3.06687e-05 -1.77926e-06 3.0559e-05 -1.60433e-06 3.04497e-05 -1.431e-06 3.03759e-05 -1.1137e-06 3.04527e-05 -8.45905e-07 3.04611e-05 -6.49267e-07 3.06641e-05 -2.47746e-07 3.08851e-05 -8.47352e-08 3.11255e-05 7.75956e-08 3.15741e-05 2.691e-07 3.18548e-05 1.73476e-07 3.22736e-05 8.45718e-08 3.27506e-05 -8.85064e-08 3.29962e-05 -4.96938e-07 3.34896e-05 -9.74562e-07 3.3786e-05 -1.4049e-06 3.40081e-05 -2.16694e-06 3.43514e-05 -2.861e-06 3.44909e-05 -3.45681e-06 3.45969e-05 -4.38333e-06 3.47283e-05 -5.17475e-06 3.46842e-05 -5.83832e-06 3.4599e-05 -6.78074e-06 3.44804e-05 -7.52018e-06 3.4258e-05 -8.22487e-06 3.40591e-05 -9.01738e-06 3.38664e-05 -9.66887e-06 3.36455e-05 -1.03663e-05 3.3581e-05 -1.09016e-05 3.35543e-05 -1.15512e-05 3.36018e-05 -1.2191e-05 3.38092e-05 -1.25314e-05 3.40246e-05 -1.31321e-05 3.42693e-05 -1.34923e-05 3.45709e-05 -1.36776e-05 3.48154e-05 -1.3925e-05 3.49969e-05 -1.37107e-05 3.52198e-05 -1.35824e-05 3.52012e-05 -1.30992e-05 3.51637e-05 -1.20966e-05 3.51247e-05 -1.12897e-05 3.47838e-05 -1.00119e-05 3.44282e-05 -8.07673e-06 3.40138e-05 -6.50714e-06 3.33315e-05 -4.57949e-06 3.25313e-05 -1.92028e-06 3.15667e-05 -1.89213e-07 3.02945e-05 2.08573e-06 2.91233e-05 4.51838e-06 2.77335e-05 5.54554e-06 2.62354e-05 6.75433e-06 2.48598e-05 8.4208e-06 2.35436e-05 8.21701e-06 2.22458e-05 7.99904e-06 2.11168e-05 9.06399e-06 2.00882e-05 9.00834e-06 1.90069e-05 7.65365e-06 1.81911e-05 7.63506e-06 1.77876e-05 8.39725e-06 1.74653e-05 7.89485e-06 1.68287e-05 6.61437e-06 1.59645e-05 6.21864e-06 1.50935e-05 7.27278e-06 1.431e-05 8.85857e-06 1.38269e-05 8.9832e-06 1.36615e-05 7.26243e-06 1.3686e-05 4.07378e-06 1.37293e-05 -6.14939e-07 1.35289e-05 -7.27543e-06 1.30553e-05 -1.55684e-05 1.26637e-05 -2.34983e-05 1.29884e-05 -2.85874e-05 1.31484e-05 -3.01153e-05 1.32153e-05 -2.82364e-05 1.33405e-05 -2.62485e-05 1.31437e-05 -2.24687e-05 1.3632e-05 -1.9251e-05 1.4144e-05 -1.49067e-05 1.46261e-05 -9.55615e-06 1.54139e-05 -5.45286e-06 1.58969e-05 -9.18711e-08 1.69712e-05 5.04204e-06 1.78054e-05 1.06204e-05 1.89041e-05 1.46224e-05 2.0503e-05 1.96733e-05 2.21022e-05 2.46926e-05 2.34641e-05 2.95051e-05 2.42418e-05 3.20865e-05 2.43682e-05 3.35602e-05 2.43259e-05 3.22546e-05 2.40982e-05 3.1539e-05 2.36164e-05 2.85511e-05 2.36036e-05 2.63776e-05 2.34075e-05 2.30858e-05 2.35664e-05 2.06605e-05 2.37205e-05 1.73546e-05 2.40546e-05 1.50648e-05 2.44241e-05 1.17695e-05 2.47044e-05 9.45013e-06 2.49962e-05 6.30792e-06 2.51601e-05 3.93142e-06 2.54399e-05 1.62239e-06 2.58731e-05 -1.26336e-06 2.62547e-05 -3.73173e-06 2.69129e-05 -6.45638e-06 2.76995e-05 -9.41931e-06 2.80752e-05 -1.2188e-05 2.81695e-05 -1.44689e-05 2.7888e-05 -1.6222e-05 2.70508e-05 -1.71645e-05 2.63335e-05 -1.74326e-05 2.51381e-05 -1.75371e-05 2.43867e-05 -1.75847e-05 2.29396e-05 -1.68277e-05 2.18485e-05 -1.50492e-05 2.04767e-05 -1.48018e-05 1.93373e-05 -1.29451e-05 1.86999e-05 -1.33696e-05 1.77663e-05 -1.27136e-05 1.74559e-05 -1.41706e-05 1.69746e-05 -1.35217e-05 1.6495e-05 -1.35362e-05 1.65756e-05 -1.45889e-05 1.73644e-05 -1.61657e-05 1.84387e-05 -1.71057e-05 1.88786e-05 -1.79984e-05 1.8881e-05 -1.69556e-05 1.87319e-05 -1.5661e-05 1.8416e-05 -1.28715e-05 1.81614e-05 -1.04172e-05 1.75801e-05 -7.04548e-06 1.70515e-05 -4.77324e-06 1.60869e-05 -2.38144e-06 1.52613e-05 -6.01823e-07 1.41461e-05 1.68219e-06 1.3359e-05 4.33185e-06 1.25721e-05 7.0764e-06 1.25607e-05 9.67931e-06 1.21614e-05 1.19626e-05 1.20856e-05 1.47127e-05 1.08462e-05 2.00757e-05 9.7387e-06 2.34566e-05 1.12046e-05 2.39119e-05 1.13448e-05 2.56303e-05 1.13424e-05 2.29584e-05 1.29715e-05 2.16123e-05 1.2715e-05 2.17628e-05 1.43382e-05 1.99806e-05 1.46112e-05 2.27471e-05 1.64018e-05 1.91424e-05 1.65225e-05 2.31866e-05 1.97264e-05 1.53543e-05 1.90188e-05 2.47571e-05 1.96063e-05 1.22929e-05 2.15061e-05 2.30708e-05 2.08368e-05 1.30386e-05 1.87916e-05 2.4021e-05 3.2488e-05 5.17449e-07 3.23359e-05 2.49143e-07 3.21597e-05 6.33406e-08 3.19873e-05 -7.15817e-08 3.18544e-05 -2.54936e-07 3.18209e-05 -2.735e-07 3.177e-05 -3.48519e-07 3.18498e-05 -3.90611e-07 3.18987e-05 -3.68462e-07 3.20081e-05 -4.65083e-07 3.21212e-05 -3.8115e-07 3.21559e-05 -4.21092e-07 3.22447e-05 -4.13495e-07 3.22162e-05 -3.79372e-07 3.22453e-05 -4.77365e-07 3.22188e-05 -4.32667e-07 3.21976e-05 -5.22892e-07 3.21718e-05 -4.92292e-07 3.20895e-05 -4.89964e-07 3.19941e-05 -4.8058e-07 3.18882e-05 -4.8016e-07 3.17625e-05 -5.27818e-07 3.17096e-05 -6.25607e-07 3.17048e-05 -6.79898e-07 3.17033e-05 -8.06007e-07 3.18651e-05 -8.19752e-07 3.18938e-05 -8.47748e-07 3.20954e-05 -8.61198e-07 3.21848e-05 -7.83987e-07 3.22976e-05 -9.13329e-07 3.24311e-05 -8.0845e-07 3.24041e-05 -9.80825e-07 3.24983e-05 -1.04609e-06 3.23778e-05 -1.10229e-06 3.23424e-05 -1.37662e-06 3.21699e-05 -1.33931e-06 3.19905e-05 -1.57958e-06 3.1748e-05 -1.6005e-06 3.14777e-05 -1.68208e-06 3.12595e-05 -1.80496e-06 3.09906e-05 -1.79849e-06 3.08502e-05 -1.84519e-06 3.0655e-05 -1.79825e-06 3.05276e-05 -1.65177e-06 3.04666e-05 -1.54336e-06 3.03613e-05 -1.32569e-06 3.03688e-05 -1.12119e-06 3.0431e-05 -9.08127e-07 3.0408e-05 -6.26223e-07 3.06226e-05 -4.62411e-07 3.0713e-05 -1.75122e-07 3.09369e-05 -1.46278e-07 3.12734e-05 -6.74417e-08 3.14892e-05 -4.2304e-08 3.19181e-05 -3.44365e-07 3.2265e-05 -4.35328e-07 3.25733e-05 -8.05293e-07 3.2942e-05 -1.34324e-06 3.32106e-05 -1.67356e-06 3.34175e-05 -2.37383e-06 3.3606e-05 -3.04944e-06 3.37353e-05 -3.58609e-06 3.37935e-05 -4.44159e-06 3.38115e-05 -5.19275e-06 3.37841e-05 -5.81096e-06 3.36874e-05 -6.68395e-06 3.35643e-05 -7.3971e-06 3.34809e-05 -8.14148e-06 3.33722e-05 -8.90872e-06 3.32992e-05 -9.59589e-06 3.32519e-05 -1.03189e-05 3.33078e-05 -1.09575e-05 3.3379e-05 -1.16224e-05 3.34353e-05 -1.22473e-05 3.35919e-05 -1.2688e-05 3.3689e-05 -1.32292e-05 3.37437e-05 -1.35471e-05 3.3821e-05 -1.37549e-05 3.37933e-05 -1.38973e-05 3.36904e-05 -1.36078e-05 3.35495e-05 -1.34415e-05 3.32248e-05 -1.27745e-05 3.29419e-05 -1.18138e-05 3.26608e-05 -1.10086e-05 3.21751e-05 -9.52621e-06 3.18525e-05 -7.75417e-06 3.14873e-05 -6.14196e-06 3.08715e-05 -3.96362e-06 3.04082e-05 -1.45695e-06 2.95823e-05 6.36679e-07 2.85913e-05 3.07671e-06 2.75702e-05 5.53942e-06 2.63675e-05 6.74832e-06 2.49949e-05 8.1269e-06 2.39157e-05 9.50003e-06 2.28468e-05 9.28584e-06 2.15655e-05 9.28036e-06 2.04526e-05 1.01769e-05 1.97746e-05 9.6863e-06 1.89785e-05 8.44981e-06 1.80746e-05 8.53898e-06 1.74511e-05 9.02075e-06 1.71475e-05 8.19844e-06 1.68281e-05 6.93374e-06 1.63478e-05 6.6989e-06 1.54829e-05 8.13777e-06 1.46019e-05 9.73957e-06 1.38705e-05 9.7146e-06 1.35222e-05 7.61071e-06 1.34552e-05 4.14076e-06 1.35714e-05 -7.31139e-07 1.33982e-05 -7.10228e-06 1.28487e-05 -1.50188e-05 1.22491e-05 -2.28987e-05 1.20094e-05 -2.83477e-05 1.17819e-05 -2.98878e-05 1.18415e-05 -2.8296e-05 1.18749e-05 -2.62819e-05 1.17644e-05 -2.23583e-05 1.22276e-05 -1.97141e-05 1.22674e-05 -1.49465e-05 1.29627e-05 -1.02514e-05 1.36323e-05 -6.12254e-06 1.40987e-05 -5.58244e-07 1.51241e-05 4.01664e-06 1.62177e-05 9.52681e-06 1.71899e-05 1.36502e-05 1.87566e-05 1.81066e-05 2.06728e-05 2.27765e-05 2.23564e-05 2.78215e-05 2.37542e-05 3.06887e-05 2.44078e-05 3.29066e-05 2.46318e-05 3.20307e-05 2.49094e-05 3.12613e-05 2.47569e-05 2.87036e-05 2.47587e-05 2.63758e-05 2.46748e-05 2.31697e-05 2.48049e-05 2.05305e-05 2.51235e-05 1.70359e-05 2.54614e-05 1.47269e-05 2.56786e-05 1.15523e-05 2.58427e-05 9.28608e-06 2.6113e-05 6.03758e-06 2.63908e-05 3.6536e-06 2.68606e-05 1.15267e-06 2.73651e-05 -1.76793e-06 2.80323e-05 -4.39889e-06 2.87185e-05 -7.14255e-06 2.92884e-05 -9.98922e-06 2.93166e-05 -1.22162e-05 2.91947e-05 -1.4347e-05 2.86095e-05 -1.56367e-05 2.7648e-05 -1.6203e-05 2.66075e-05 -1.63922e-05 2.56534e-05 -1.6583e-05 2.46297e-05 -1.6561e-05 2.28717e-05 -1.50697e-05 2.15523e-05 -1.37299e-05 1.98647e-05 -1.31142e-05 1.90588e-05 -1.21392e-05 1.81657e-05 -1.24765e-05 1.7368e-05 -1.19158e-05 1.68056e-05 -1.36082e-05 1.58515e-05 -1.25676e-05 1.5503e-05 -1.31876e-05 1.57491e-05 -1.4835e-05 1.65666e-05 -1.69832e-05 1.73365e-05 -1.78756e-05 1.73702e-05 -1.80322e-05 1.71166e-05 -1.67019e-05 1.65581e-05 -1.51025e-05 1.62321e-05 -1.25455e-05 1.58384e-05 -1.00234e-05 1.52665e-05 -6.47361e-06 1.46397e-05 -4.14645e-06 1.37726e-05 -1.51428e-06 1.30374e-05 1.33339e-07 1.19831e-05 2.73653e-06 1.13895e-05 4.92542e-06 1.08009e-05 7.66499e-06 1.07988e-05 9.68143e-06 1.03174e-05 1.2444e-05 9.8292e-06 1.52008e-05 9.79699e-06 2.01079e-05 8.492e-06 2.47616e-05 8.79611e-06 2.36078e-05 1.10035e-05 2.34229e-05 1.08136e-05 2.31482e-05 1.27562e-05 1.96698e-05 1.30545e-05 2.14645e-05 1.483e-05 1.8205e-05 1.52578e-05 2.23194e-05 1.7881e-05 1.65192e-05 1.74944e-05 2.35732e-05 1.91517e-05 1.36971e-05 2.00631e-05 2.38456e-05 1.96621e-05 1.2694e-05 2.2265e-05 2.04679e-05 2.17205e-05 1.35831e-05 1.64198e-05 2.40923e-05 3.2408e-05 4.60176e-07 3.23134e-05 3.43736e-07 3.21736e-05 2.03096e-07 3.19709e-05 1.31142e-07 3.18015e-05 -8.55693e-08 3.16986e-05 -1.70595e-07 3.16285e-05 -2.78387e-07 3.16728e-05 -4.3494e-07 3.17167e-05 -4.12311e-07 3.17902e-05 -5.38635e-07 3.1912e-05 -5.02982e-07 3.1952e-05 -4.61048e-07 3.20561e-05 -5.17625e-07 3.20662e-05 -3.89454e-07 3.21005e-05 -5.11687e-07 3.20875e-05 -4.19662e-07 3.20565e-05 -4.91896e-07 3.20253e-05 -4.61072e-07 3.19404e-05 -4.05081e-07 3.18953e-05 -4.35476e-07 3.17768e-05 -3.61606e-07 3.17231e-05 -4.74193e-07 3.16411e-05 -5.43558e-07 3.16305e-05 -6.6929e-07 3.16167e-05 -7.92201e-07 3.16909e-05 -8.93957e-07 3.17317e-05 -8.88558e-07 3.18404e-05 -9.69886e-07 3.19472e-05 -8.90791e-07 3.19775e-05 -9.43605e-07 3.21412e-05 -9.72158e-07 3.21037e-05 -9.43358e-07 3.21996e-05 -1.14195e-06 3.2161e-05 -1.06372e-06 3.20517e-05 -1.26733e-06 3.19602e-05 -1.24777e-06 3.16954e-05 -1.31485e-06 3.15228e-05 -1.42784e-06 3.12428e-05 -1.40208e-06 3.10518e-05 -1.61397e-06 3.08558e-05 -1.60256e-06 3.07134e-05 -1.70277e-06 3.05771e-05 -1.66195e-06 3.05054e-05 -1.58007e-06 3.04222e-05 -1.46012e-06 3.03879e-05 -1.29146e-06 3.03761e-05 -1.10934e-06 3.03777e-05 -9.09704e-07 3.04246e-05 -6.73145e-07 3.04742e-05 -5.12068e-07 3.06095e-05 -3.10343e-07 3.07387e-05 -2.7547e-07 3.09538e-05 -2.82597e-07 3.12479e-05 -3.36402e-07 3.14853e-05 -5.81715e-07 3.18376e-05 -7.87699e-07 3.21395e-05 -1.10718e-06 3.23655e-05 -1.56925e-06 3.2672e-05 -1.98003e-06 3.28434e-05 -2.54518e-06 3.29906e-05 -3.19664e-06 3.3169e-05 -3.76451e-06 3.32214e-05 -4.49406e-06 3.32111e-05 -5.18242e-06 3.32399e-05 -5.83974e-06 3.31708e-05 -6.61482e-06 3.31035e-05 -7.32979e-06 3.30923e-05 -8.13031e-06 3.30274e-05 -8.84383e-06 3.29716e-05 -9.54008e-06 3.29702e-05 -1.03175e-05 3.29506e-05 -1.09379e-05 3.2911e-05 -1.15828e-05 3.28462e-05 -1.21826e-05 3.27861e-05 -1.26279e-05 3.26307e-05 -1.30738e-05 3.24219e-05 -1.33382e-05 3.21181e-05 -1.34512e-05 3.16576e-05 -1.34368e-05 3.11136e-05 -1.30637e-05 3.03996e-05 -1.27276e-05 2.96755e-05 -1.20504e-05 2.90651e-05 -1.12034e-05 2.85021e-05 -1.04455e-05 2.79175e-05 -8.94165e-06 2.76753e-05 -7.51198e-06 2.75171e-05 -5.98374e-06 2.71417e-05 -3.5882e-06 2.69257e-05 -1.24099e-06 2.65215e-05 1.04085e-06 2.58907e-05 3.70749e-06 2.52773e-05 6.15282e-06 2.44409e-05 7.58473e-06 2.33644e-05 9.20345e-06 2.24018e-05 1.04626e-05 2.13295e-05 1.03581e-05 2.02419e-05 1.0368e-05 1.95326e-05 1.08863e-05 1.89595e-05 1.02594e-05 1.80473e-05 9.36204e-06 1.70484e-05 9.53786e-06 1.65324e-05 9.53671e-06 1.62933e-05 8.43761e-06 1.60862e-05 7.14078e-06 1.57049e-05 7.08021e-06 1.50474e-05 8.79532e-06 1.43341e-05 1.04528e-05 1.36951e-05 1.03537e-05 1.32434e-05 8.06243e-06 1.32044e-05 4.17972e-06 1.33409e-05 -8.67635e-07 1.32318e-05 -6.99316e-06 1.2517e-05 -1.43041e-05 1.15981e-05 -2.19798e-05 1.09966e-05 -2.77462e-05 1.05522e-05 -2.94434e-05 1.0564e-05 -2.83079e-05 1.03866e-05 -2.61045e-05 1.04078e-05 -2.23795e-05 1.04489e-05 -1.97553e-05 1.02166e-05 -1.47142e-05 1.10805e-05 -1.11153e-05 1.15168e-05 -6.55879e-06 1.20251e-05 -1.06652e-06 1.29593e-05 3.08236e-06 1.40771e-05 8.409e-06 1.5318e-05 1.24093e-05 1.67868e-05 1.66378e-05 1.88325e-05 2.07308e-05 2.08047e-05 2.58493e-05 2.26665e-05 2.8827e-05 2.39644e-05 3.16087e-05 2.4671e-05 3.13241e-05 2.52141e-05 3.07182e-05 2.53855e-05 2.85321e-05 2.57294e-05 2.60319e-05 2.58702e-05 2.30289e-05 2.59265e-05 2.04741e-05 2.60547e-05 1.69078e-05 2.64564e-05 1.43252e-05 2.68175e-05 1.11912e-05 2.72212e-05 8.88232e-06 2.75809e-05 5.67794e-06 2.79895e-05 3.24495e-06 2.86196e-05 5.22556e-07 2.91651e-05 -2.31341e-06 2.98173e-05 -5.05115e-06 3.03467e-05 -7.67193e-06 3.05354e-05 -1.01779e-05 3.03043e-05 -1.19851e-05 2.9896e-05 -1.39387e-05 2.89297e-05 -1.46705e-05 2.79561e-05 -1.52294e-05 2.67546e-05 -1.51907e-05 2.56406e-05 -1.54689e-05 2.39156e-05 -1.4836e-05 2.2209e-05 -1.33631e-05 2.09227e-05 -1.24436e-05 1.9436e-05 -1.16274e-05 1.85798e-05 -1.1283e-05 1.73145e-05 -1.12113e-05 1.66138e-05 -1.12151e-05 1.5507e-05 -1.25013e-05 1.46468e-05 -1.17075e-05 1.46773e-05 -1.32181e-05 1.50056e-05 -1.51633e-05 1.56808e-05 -1.76583e-05 1.58702e-05 -1.80651e-05 1.54645e-05 -1.76264e-05 1.48745e-05 -1.61119e-05 1.41771e-05 -1.44051e-05 1.38146e-05 -1.21829e-05 1.31944e-05 -9.40326e-06 1.27009e-05 -5.98008e-06 1.19986e-05 -3.44413e-06 1.13882e-05 -9.03961e-07 1.06282e-05 8.9334e-07 9.80688e-06 3.5579e-06 9.29218e-06 5.44012e-06 9.10905e-06 7.84811e-06 8.75037e-06 1.00401e-05 8.03509e-06 1.31593e-05 6.87198e-06 1.63639e-05 7.19737e-06 1.97825e-05 8.01664e-06 2.39423e-05 6.94797e-06 2.46765e-05 1.00772e-05 2.02937e-05 1.09666e-05 2.22588e-05 1.31812e-05 1.74552e-05 1.38639e-05 2.07819e-05 1.63133e-05 1.57556e-05 1.61061e-05 2.25266e-05 1.79565e-05 1.46687e-05 1.8301e-05 2.32287e-05 1.89252e-05 1.30729e-05 2.10101e-05 2.17607e-05 2.0417e-05 1.32871e-05 2.27871e-05 1.80979e-05 2.23295e-05 1.40407e-05 1.47024e-05 2.40469e-05 3.21607e-05 3.13614e-07 3.21675e-05 3.36931e-07 3.21602e-05 2.10407e-07 3.20798e-05 2.11505e-07 3.19649e-05 2.93417e-08 3.18704e-05 -7.60791e-08 3.17681e-05 -1.76103e-07 3.17086e-05 -3.75491e-07 3.16824e-05 -3.86027e-07 3.16582e-05 -5.14457e-07 3.16638e-05 -5.08553e-07 3.16651e-05 -4.62436e-07 3.1701e-05 -5.53482e-07 3.17322e-05 -4.20698e-07 3.17702e-05 -5.49628e-07 3.18214e-05 -4.70853e-07 3.17961e-05 -4.66658e-07 3.18265e-05 -4.91481e-07 3.17815e-05 -3.59997e-07 3.17745e-05 -4.28543e-07 3.17605e-05 -3.47618e-07 3.17253e-05 -4.38954e-07 3.17209e-05 -5.39134e-07 3.16955e-05 -6.43953e-07 3.16961e-05 -7.92771e-07 3.16867e-05 -8.84552e-07 3.16967e-05 -8.9856e-07 3.17121e-05 -9.85305e-07 3.17506e-05 -9.29229e-07 3.18034e-05 -9.96488e-07 3.18674e-05 -1.03613e-06 3.19238e-05 -9.99765e-07 3.19265e-05 -1.14466e-06 3.18969e-05 -1.0341e-06 3.17853e-05 -1.15574e-06 3.16746e-05 -1.13705e-06 3.1498e-05 -1.1382e-06 3.13644e-05 -1.29424e-06 3.1204e-05 -1.24168e-06 3.1046e-05 -1.45599e-06 3.09363e-05 -1.49282e-06 3.07729e-05 -1.5394e-06 3.07265e-05 -1.61558e-06 3.05915e-05 -1.445e-06 3.05588e-05 -1.4275e-06 3.05072e-05 -1.23985e-06 3.04167e-05 -1.01884e-06 3.04423e-05 -9.35235e-07 3.03983e-05 -6.29235e-07 3.04348e-05 -5.485e-07 3.05666e-05 -4.42168e-07 3.06364e-05 -3.45266e-07 3.08725e-05 -5.18681e-07 3.10614e-05 -5.25326e-07 3.12717e-05 -7.92037e-07 3.15648e-05 -1.08081e-06 3.17618e-05 -1.30415e-06 3.20139e-05 -1.82132e-06 3.2252e-05 -2.21813e-06 3.24355e-05 -2.72868e-06 3.25991e-05 -3.36025e-06 3.27169e-05 -3.88234e-06 3.27684e-05 -4.54551e-06 3.27659e-05 -5.17991e-06 3.27762e-05 -5.85012e-06 3.27418e-05 -6.58035e-06 3.26986e-05 -7.28665e-06 3.26431e-05 -8.07482e-06 3.2567e-05 -8.76767e-06 3.2496e-05 -9.46909e-06 3.2387e-05 -1.02085e-05 3.22343e-05 -1.07852e-05 3.20283e-05 -1.13768e-05 3.17547e-05 -1.1909e-05 3.13735e-05 -1.22467e-05 3.08157e-05 -1.2516e-05 3.01136e-05 -1.26361e-05 2.91523e-05 -1.24899e-05 2.79502e-05 -1.22347e-05 2.66971e-05 -1.18106e-05 2.53631e-05 -1.13936e-05 2.42337e-05 -1.0921e-05 2.33313e-05 -1.0301e-05 2.25865e-05 -9.70065e-06 2.22957e-05 -8.65081e-06 2.22652e-05 -7.48148e-06 2.21257e-05 -5.84431e-06 2.20912e-05 -3.55369e-06 2.2355e-05 -1.5048e-06 2.24536e-05 9.42232e-07 2.22701e-05 3.89103e-06 2.21855e-05 6.23738e-06 2.16804e-05 8.08986e-06 2.09113e-05 9.97261e-06 2.03269e-05 1.1047e-05 1.96238e-05 1.10612e-05 1.86524e-05 1.13393e-05 1.80483e-05 1.14904e-05 1.77334e-05 1.05743e-05 1.70731e-05 1.00223e-05 1.62554e-05 1.03556e-05 1.58652e-05 9.92694e-06 1.58753e-05 8.42741e-06 1.59731e-05 7.04304e-06 1.57271e-05 7.32615e-06 1.51514e-05 9.37111e-06 1.4389e-05 1.12151e-05 1.36609e-05 1.10818e-05 1.31293e-05 8.59406e-06 1.30039e-05 4.30511e-06 1.32177e-05 -1.08147e-06 1.32079e-05 -6.98329e-06 1.24162e-05 -1.35124e-05 1.12418e-05 -2.08054e-05 1.0214e-05 -2.67184e-05 9.66715e-06 -2.88965e-05 9.35703e-06 -2.79978e-05 8.9167e-06 -2.56641e-05 8.71508e-06 -2.21778e-05 8.18986e-06 -1.92301e-05 8.1778e-06 -1.47021e-05 8.93121e-06 -1.18688e-05 9.00649e-06 -6.63407e-06 9.6709e-06 -1.73093e-06 1.06887e-05 2.06458e-06 1.17313e-05 7.36638e-06 1.32147e-05 1.0926e-05 1.4646e-05 1.52065e-05 1.67371e-05 1.86396e-05 1.88968e-05 2.36896e-05 2.11146e-05 2.66091e-05 2.30112e-05 2.97121e-05 2.42502e-05 3.00852e-05 2.51469e-05 2.98215e-05 2.57796e-05 2.78994e-05 2.62916e-05 2.55199e-05 2.66423e-05 2.26782e-05 2.69933e-05 2.01232e-05 2.73165e-05 1.65846e-05 2.77919e-05 1.38499e-05 2.8076e-05 1.0907e-05 2.85567e-05 8.40165e-06 2.90289e-05 5.20571e-06 2.95755e-05 2.69832e-06 3.02821e-05 -1.84023e-07 3.08351e-05 -2.86644e-06 3.12826e-05 -5.4986e-06 3.15079e-05 -7.89721e-06 3.13844e-05 -1.00545e-05 3.09091e-05 -1.15097e-05 3.01509e-05 -1.31805e-05 2.90633e-05 -1.35829e-05 2.78339e-05 -1.4e-05 2.6518e-05 -1.38749e-05 2.5222e-05 -1.41729e-05 2.34327e-05 -1.30467e-05 2.18347e-05 -1.17651e-05 2.00817e-05 -1.06906e-05 1.87761e-05 -1.03218e-05 1.76694e-05 -1.01763e-05 1.64635e-05 -1.00055e-05 1.55385e-05 -1.02901e-05 1.39976e-05 -1.09604e-05 1.36073e-05 -1.13172e-05 1.38962e-05 -1.3507e-05 1.42525e-05 -1.55197e-05 1.42567e-05 -1.76625e-05 1.35077e-05 -1.73161e-05 1.26594e-05 -1.67781e-05 1.19698e-05 -1.54224e-05 1.14253e-05 -1.38606e-05 1.07935e-05 -1.15511e-05 1.02537e-05 -8.86346e-06 9.91185e-06 -5.63828e-06 9.28402e-06 -2.8163e-06 8.78717e-06 -4.07107e-07 7.959e-06 1.72151e-06 7.55461e-06 3.96229e-06 6.86042e-06 6.1343e-06 6.65087e-06 8.05767e-06 6.38707e-06 1.03039e-05 5.7917e-06 1.37546e-05 4.5802e-06 1.75754e-05 3.34898e-06 2.10138e-05 7.00297e-06 2.02883e-05 6.86612e-06 2.48133e-05 9.73114e-06 1.74286e-05 1.10614e-05 2.09285e-05 1.40308e-05 1.44858e-05 1.42532e-05 2.05595e-05 1.65915e-05 1.34173e-05 1.69067e-05 2.22114e-05 1.80008e-05 1.35745e-05 1.93537e-05 2.18758e-05 1.9414e-05 1.30126e-05 2.14692e-05 1.97055e-05 2.07227e-05 1.40336e-05 2.23321e-05 1.64884e-05 2.25271e-05 1.38458e-05 1.3017e-05 2.42124e-05 3.18549e-05 1.16059e-07 3.1963e-05 2.28837e-07 3.20232e-05 1.50149e-07 3.20577e-05 1.77054e-07 3.20065e-05 8.05383e-08 3.19833e-05 -5.28324e-08 3.18885e-05 -8.13055e-08 3.18114e-05 -2.98449e-07 3.17274e-05 -3.01994e-07 3.16287e-05 -4.15765e-07 3.15906e-05 -4.70489e-07 3.15463e-05 -4.18105e-07 3.15464e-05 -5.53562e-07 3.15529e-05 -4.27209e-07 3.15505e-05 -5.47234e-07 3.1581e-05 -5.01358e-07 3.15633e-05 -4.48927e-07 3.15986e-05 -5.2679e-07 3.16153e-05 -3.76686e-07 3.16319e-05 -4.45205e-07 3.17267e-05 -4.42386e-07 3.17419e-05 -4.54115e-07 3.18194e-05 -6.16704e-07 3.18232e-05 -6.47718e-07 3.18131e-05 -7.82707e-07 3.17904e-05 -8.61811e-07 3.17289e-05 -8.37101e-07 3.17208e-05 -9.77186e-07 3.16904e-05 -8.98793e-07 3.17181e-05 -1.02421e-06 3.17024e-05 -1.02045e-06 3.17257e-05 -1.02307e-06 3.16957e-05 -1.11461e-06 3.16353e-05 -9.73767e-07 3.1609e-05 -1.12946e-06 3.14973e-05 -1.02528e-06 3.14675e-05 -1.10841e-06 3.13885e-05 -1.21525e-06 3.12941e-05 -1.14727e-06 3.12356e-05 -1.39749e-06 3.10819e-05 -1.33919e-06 3.09651e-05 -1.42253e-06 3.0846e-05 -1.49646e-06 3.06694e-05 -1.26845e-06 3.05994e-05 -1.35752e-06 3.04497e-05 -1.0901e-06 3.03966e-05 -9.65784e-07 3.0374e-05 -9.1255e-07 3.03423e-05 -5.97623e-07 3.04446e-05 -6.50721e-07 3.04971e-05 -4.94675e-07 3.06415e-05 -4.89654e-07 3.07891e-05 -6.6633e-07 3.09496e-05 -6.85777e-07 3.11591e-05 -1.00158e-06 3.13362e-05 -1.25787e-06 3.1571e-05 -1.53901e-06 3.17693e-05 -2.01962e-06 3.19463e-05 -2.39515e-06 3.21101e-05 -2.89241e-06 3.22062e-05 -3.45638e-06 3.2269e-05 -3.94519e-06 3.22953e-05 -4.57176e-06 3.23004e-05 -5.18504e-06 3.22801e-05 -5.82984e-06 3.22657e-05 -6.56591e-06 3.22255e-05 -7.2465e-06 3.21114e-05 -7.9607e-06 3.20139e-05 -8.67013e-06 3.18236e-05 -9.27878e-06 3.15015e-05 -9.88641e-06 3.1139e-05 -1.04227e-05 3.06069e-05 -1.08447e-05 2.98529e-05 -1.1155e-05 2.88826e-05 -1.12764e-05 2.76109e-05 -1.12443e-05 2.60082e-05 -1.10334e-05 2.41585e-05 -1.06403e-05 2.21876e-05 -1.02637e-05 2.03629e-05 -9.98588e-06 1.88311e-05 -9.86181e-06 1.77151e-05 -9.80498e-06 1.70224e-05 -9.60833e-06 1.66272e-05 -9.30542e-06 1.65603e-05 -8.58392e-06 1.65162e-05 -7.43736e-06 1.65665e-05 -5.89466e-06 1.70466e-05 -4.03378e-06 1.75002e-05 -1.95846e-06 1.75925e-05 8.5e-07 1.77474e-05 3.73608e-06 1.81074e-05 5.87741e-06 1.80722e-05 8.12509e-06 1.78383e-05 1.02065e-05 1.78387e-05 1.10466e-05 1.7576e-05 1.13239e-05 1.68171e-05 1.20981e-05 1.626e-05 1.20475e-05 1.60315e-05 1.08028e-05 1.56735e-05 1.03803e-05 1.53687e-05 1.06603e-05 1.52447e-05 1.00509e-05 1.53121e-05 8.36003e-06 1.54542e-05 6.90097e-06 1.54539e-05 7.32641e-06 1.52012e-05 9.62386e-06 1.46083e-05 1.1808e-05 1.38167e-05 1.18734e-05 1.30811e-05 9.32973e-06 1.28548e-05 4.53138e-06 1.32777e-05 -1.50443e-06 1.34802e-05 -7.18572e-06 1.26673e-05 -1.26996e-05 1.10425e-05 -1.91806e-05 9.50879e-06 -2.51847e-05 8.52312e-06 -2.79108e-05 7.94526e-06 -2.74199e-05 7.25943e-06 -2.49783e-05 6.81623e-06 -2.17346e-05 6.18772e-06 -1.86016e-05 6.35225e-06 -1.48666e-05 6.45488e-06 -1.19714e-05 6.39227e-06 -6.57145e-06 7.23612e-06 -2.57478e-06 8.11684e-06 1.18386e-06 9.0646e-06 6.41861e-06 1.07684e-05 9.22217e-06 1.21923e-05 1.37826e-05 1.40869e-05 1.67449e-05 1.66404e-05 2.11361e-05 1.90246e-05 2.42249e-05 2.12607e-05 2.7476e-05 2.32917e-05 2.80542e-05 2.46517e-05 2.84615e-05 2.56564e-05 2.68947e-05 2.65967e-05 2.45796e-05 2.72736e-05 2.20012e-05 2.78251e-05 1.95717e-05 2.8213e-05 1.61967e-05 2.8831e-05 1.32318e-05 2.9388e-05 1.035e-05 3.01364e-05 7.65325e-06 3.06428e-05 4.69933e-06 3.11908e-05 2.15027e-06 3.17522e-05 -7.45363e-07 3.20781e-05 -3.1924e-06 3.22262e-05 -5.64662e-06 3.21463e-05 -7.81737e-06 3.15966e-05 -9.5047e-06 3.09426e-05 -1.08558e-05 2.99481e-05 -1.2186e-05 2.87715e-05 -1.24063e-05 2.75651e-05 -1.27935e-05 2.63893e-05 -1.26991e-05 2.45619e-05 -1.23456e-05 2.25271e-05 -1.10119e-05 2.08879e-05 -1.01259e-05 1.93999e-05 -9.20266e-06 1.83907e-05 -9.31254e-06 1.7107e-05 -8.89262e-06 1.58085e-05 -8.70691e-06 1.43054e-05 -8.78705e-06 1.28666e-05 -9.52157e-06 1.28093e-05 -1.12599e-05 1.31158e-05 -1.38135e-05 1.30505e-05 -1.54544e-05 1.21566e-05 -1.67685e-05 1.07203e-05 -1.58798e-05 9.71154e-06 -1.57694e-05 8.87438e-06 -1.45852e-05 8.33283e-06 -1.3319e-05 7.62393e-06 -1.08422e-05 7.23877e-06 -8.4783e-06 6.8274e-06 -5.2269e-06 6.17453e-06 -2.16343e-06 5.79069e-06 -2.32667e-08 5.05648e-06 2.45572e-06 5.03131e-06 3.98746e-06 4.71147e-06 6.45414e-06 4.32591e-06 8.44323e-06 3.56551e-06 1.10643e-05 2.85907e-06 1.44611e-05 3.1129e-06 1.73216e-05 1.03076e-06 2.30959e-05 4.95842e-06 1.63607e-05 6.71511e-06 2.30566e-05 1.03342e-05 1.38095e-05 1.12083e-05 2.00545e-05 1.42643e-05 1.14298e-05 1.4682e-05 2.01418e-05 1.62519e-05 1.18473e-05 1.76087e-05 2.08547e-05 1.81061e-05 1.30771e-05 1.98785e-05 2.01034e-05 1.93761e-05 1.3515e-05 2.10703e-05 1.80113e-05 2.10563e-05 1.40476e-05 2.24223e-05 1.51224e-05 2.33101e-05 1.29579e-05 1.14109e-05 2.49162e-05 3.16712e-05 1.06436e-09 3.18047e-05 9.53958e-08 3.18557e-05 9.90829e-08 3.19133e-05 1.19497e-07 3.18912e-05 1.02601e-07 3.18903e-05 -5.19097e-08 3.18516e-05 -4.25755e-08 3.1819e-05 -2.65873e-07 3.17857e-05 -2.687e-07 3.16941e-05 -3.24199e-07 3.16544e-05 -4.30783e-07 3.15633e-05 -3.27021e-07 3.15195e-05 -5.09746e-07 3.14845e-05 -3.92176e-07 3.14414e-05 -5.0412e-07 3.14492e-05 -5.09126e-07 3.14202e-05 -4.19936e-07 3.14606e-05 -5.67212e-07 3.14943e-05 -4.10379e-07 3.15848e-05 -5.3574e-07 3.17084e-05 -5.65995e-07 3.18096e-05 -5.55326e-07 3.19132e-05 -7.20233e-07 3.19356e-05 -6.70147e-07 3.19316e-05 -7.78733e-07 3.18815e-05 -8.11731e-07 3.18305e-05 -7.86034e-07 3.17663e-05 -9.13024e-07 3.17324e-05 -8.64918e-07 3.16778e-05 -9.6956e-07 3.16416e-05 -9.84251e-07 3.16062e-05 -9.87679e-07 3.15616e-05 -1.07004e-06 3.15535e-05 -9.65594e-07 3.14998e-05 -1.07579e-06 3.15052e-05 -1.03069e-06 3.14754e-05 -1.07857e-06 3.1447e-05 -1.18687e-06 3.1438e-05 -1.13828e-06 3.13373e-05 -1.29683e-06 3.12577e-05 -1.25958e-06 3.11033e-05 -1.2681e-06 3.09035e-05 -1.29664e-06 3.07965e-05 -1.16149e-06 3.05779e-05 -1.13898e-06 3.051e-05 -1.02217e-06 3.04367e-05 -8.92445e-07 3.03492e-05 -8.25087e-07 3.04433e-05 -6.91715e-07 3.04094e-05 -6.16795e-07 3.05358e-05 -6.21135e-07 3.06573e-05 -6.11131e-07 3.07502e-05 -7.5922e-07 3.09831e-05 -9.18653e-07 3.10913e-05 -1.1098e-06 3.1279e-05 -1.44553e-06 3.14498e-05 -1.70983e-06 3.15385e-05 -2.10832e-06 3.16857e-05 -2.54238e-06 3.17334e-05 -2.94017e-06 3.17727e-05 -3.49568e-06 3.18231e-05 -3.99559e-06 3.18017e-05 -4.55033e-06 3.18196e-05 -5.20289e-06 3.17896e-05 -5.79984e-06 3.17118e-05 -6.48817e-06 3.16065e-05 -7.14115e-06 3.13863e-05 -7.74057e-06 3.10421e-05 -8.32585e-06 3.05543e-05 -8.79106e-06 2.989e-05 -9.22207e-06 2.90168e-05 -9.54955e-06 2.78717e-05 -9.69954e-06 2.63919e-05 -9.67521e-06 2.45508e-05 -9.43533e-06 2.23613e-05 -9.05481e-06 1.99608e-05 -8.63286e-06 1.76091e-05 -8.2886e-06 1.557e-05 -8.22468e-06 1.40627e-05 -8.4785e-06 1.30723e-05 -8.87146e-06 1.24759e-05 -9.20851e-06 1.21866e-05 -9.31902e-06 1.20013e-05 -9.12021e-06 1.18892e-05 -8.47179e-06 1.19417e-05 -7.48988e-06 1.22123e-05 -6.16528e-06 1.24592e-05 -4.28064e-06 1.245e-05 -1.94921e-06 1.26832e-05 6.16741e-07 1.35225e-05 2.89678e-06 1.42793e-05 5.12062e-06 1.45322e-05 7.8722e-06 1.46655e-05 1.00732e-05 1.49328e-05 1.07793e-05 1.47899e-05 1.14668e-05 1.44523e-05 1.24357e-05 1.45364e-05 1.19634e-05 1.46897e-05 1.06495e-05 1.45113e-05 1.05587e-05 1.41826e-05 1.0989e-05 1.40356e-05 1.0198e-05 1.42459e-05 8.14973e-06 1.46642e-05 6.48265e-06 1.49951e-05 6.99547e-06 1.49248e-05 9.6942e-06 1.45452e-05 1.21875e-05 1.39442e-05 1.24745e-05 1.31885e-05 1.00854e-05 1.29948e-05 4.72511e-06 1.3592e-05 -2.10166e-06 1.38533e-05 -7.44702e-06 1.29368e-05 -1.1783e-05 1.0931e-05 -1.71748e-05 8.81704e-06 -2.30708e-05 7.42866e-06 -2.65224e-05 6.40738e-06 -2.63986e-05 5.55417e-06 -2.41251e-05 4.99857e-06 -2.1179e-05 4.46808e-06 -1.80711e-05 4.20617e-06 -1.46047e-05 3.55903e-06 -1.13243e-05 3.80111e-06 -6.81353e-06 4.72433e-06 -3.49801e-06 5.47753e-06 4.30655e-07 6.49097e-06 5.40518e-06 8.21678e-06 7.49636e-06 9.92341e-06 1.2076e-05 1.169e-05 1.49784e-05 1.40017e-05 1.88244e-05 1.65556e-05 2.1671e-05 1.90668e-05 2.49647e-05 2.14994e-05 2.56217e-05 2.35832e-05 2.63776e-05 2.51233e-05 2.53547e-05 2.633e-05 2.33729e-05 2.73279e-05 2.10033e-05 2.83687e-05 1.85309e-05 2.91298e-05 1.54355e-05 2.98253e-05 1.25363e-05 3.03204e-05 9.85494e-06 3.11126e-05 6.86104e-06 3.16427e-05 4.1693e-06 3.22366e-05 1.5563e-06 3.26216e-05 -1.13033e-06 3.28039e-05 -3.37473e-06 3.26423e-05 -5.48495e-06 3.22817e-05 -7.45678e-06 3.1501e-05 -8.724e-06 3.07489e-05 -1.01037e-05 2.95218e-05 -1.09589e-05 2.81792e-05 -1.10637e-05 2.67424e-05 -1.13567e-05 2.52274e-05 -1.1184e-05 2.3408e-05 -1.05262e-05 2.15936e-05 -9.19749e-06 1.99481e-05 -8.48039e-06 1.87032e-05 -7.95773e-06 1.76123e-05 -8.22164e-06 1.6481e-05 -7.76131e-06 1.49726e-05 -7.19856e-06 1.33099e-05 -7.12428e-06 1.215e-05 -8.36169e-06 1.21349e-05 -1.12448e-05 1.20928e-05 -1.37714e-05 1.11412e-05 -1.45029e-05 9.6867e-06 -1.5314e-05 8.45891e-06 -1.4652e-05 7.40763e-06 -1.47181e-05 6.04836e-06 -1.32259e-05 5.1473e-06 -1.2418e-05 4.62617e-06 -1.03211e-05 4.27087e-06 -8.12299e-06 3.62626e-06 -4.5823e-06 3.33365e-06 -1.87082e-06 3.14519e-06 1.65189e-07 2.64754e-06 2.95337e-06 2.57454e-06 4.06047e-06 2.08812e-06 6.94055e-06 1.43089e-06 9.10047e-06 -1.51836e-07 1.2647e-05 -1.34609e-06 1.56553e-05 1.06266e-06 1.49129e-05 8.67058e-07 2.32915e-05 4.2122e-06 1.30155e-05 6.4835e-06 2.07853e-05 1.07641e-05 9.52891e-06 1.15992e-05 1.92194e-05 1.37806e-05 9.24837e-06 1.49476e-05 1.89748e-05 1.58067e-05 1.09882e-05 1.75615e-05 1.90999e-05 1.72816e-05 1.33571e-05 1.91378e-05 1.82471e-05 1.89471e-05 1.37057e-05 2.08856e-05 1.60727e-05 2.18773e-05 1.3056e-05 2.33931e-05 1.36065e-05 2.47237e-05 1.16274e-05 1.02254e-05 2.59091e-05 3.19762e-05 -3.48049e-08 3.1984e-05 8.76566e-08 3.19467e-05 1.36324e-07 3.19053e-05 1.60897e-07 3.18438e-05 1.64097e-07 3.17574e-05 3.45581e-08 3.17271e-05 -1.23411e-08 3.16407e-05 -1.79425e-07 3.16127e-05 -2.40705e-07 3.16022e-05 -3.13717e-07 3.15779e-05 -4.06494e-07 3.15995e-05 -3.48552e-07 3.15983e-05 -5.08563e-07 3.16177e-05 -4.11597e-07 3.16001e-05 -4.86497e-07 3.16265e-05 -5.35572e-07 3.16138e-05 -4.07176e-07 3.1631e-05 -5.84475e-07 3.16687e-05 -4.48082e-07 3.1712e-05 -5.79012e-07 3.17693e-05 -6.23278e-07 3.18084e-05 -5.94426e-07 3.18522e-05 -7.64045e-07 3.18439e-05 -6.6182e-07 3.18649e-05 -7.99812e-07 3.18276e-05 -7.74361e-07 3.18228e-05 -7.81291e-07 3.17974e-05 -8.87598e-07 3.17669e-05 -8.34417e-07 3.17535e-05 -9.56127e-07 3.17207e-05 -9.5147e-07 3.16824e-05 -9.49409e-07 3.16387e-05 -1.02631e-06 3.16212e-05 -9.48106e-07 3.15615e-05 -1.01608e-06 3.15867e-05 -1.05588e-06 3.15387e-05 -1.03054e-06 3.1537e-05 -1.18519e-06 3.15082e-05 -1.10945e-06 3.1394e-05 -1.18268e-06 3.13345e-05 -1.20005e-06 3.11477e-05 -1.08133e-06 3.10223e-05 -1.17122e-06 3.08774e-05 -1.01664e-06 3.07384e-05 -9.99911e-07 3.06696e-05 -9.53395e-07 3.05634e-05 -7.86246e-07 3.05431e-05 -8.0476e-07 3.05186e-05 -6.67229e-07 3.05519e-05 -6.50081e-07 3.06463e-05 -7.15583e-07 3.07443e-05 -7.09086e-07 3.08761e-05 -8.91024e-07 3.09962e-05 -1.03881e-06 3.10973e-05 -1.21089e-06 3.11738e-05 -1.52203e-06 3.12444e-05 -1.78039e-06 3.12759e-05 -2.13984e-06 3.13075e-05 -2.57399e-06 3.13238e-05 -2.95648e-06 3.13041e-05 -3.47592e-06 3.12971e-05 -3.98862e-06 3.12652e-05 -4.51844e-06 3.11831e-05 -5.12081e-06 3.10529e-05 -5.6696e-06 3.08024e-05 -6.23764e-06 3.04096e-05 -6.74838e-06 2.98536e-05 -7.18453e-06 2.90882e-05 -7.56043e-06 2.81264e-05 -7.82932e-06 2.6892e-05 -7.98764e-06 2.53391e-05 -7.99667e-06 2.34335e-05 -7.79388e-06 2.11253e-05 -7.36708e-06 1.85449e-05 -6.85491e-06 1.59187e-05 -6.42856e-06 1.35807e-05 -6.29486e-06 1.18019e-05 -6.50981e-06 1.0573e-05 -6.99577e-06 9.757e-06 -7.66254e-06 9.21603e-06 -8.3305e-06 8.78773e-06 -8.7802e-06 8.40991e-06 -8.9412e-06 8.13965e-06 -8.84995e-06 8.04696e-06 -8.37909e-06 8.04075e-06 -7.48367e-06 8.02169e-06 -6.14622e-06 8.09506e-06 -4.354e-06 8.37894e-06 -2.2331e-06 8.91809e-06 7.75878e-08 9.39663e-06 2.41824e-06 9.61737e-06 4.89988e-06 9.96809e-06 7.52148e-06 1.08028e-05 9.23848e-06 1.1622e-05 9.96004e-06 1.20005e-05 1.10884e-05 1.23557e-05 1.20805e-05 1.28751e-05 1.14441e-05 1.30515e-05 1.0473e-05 1.29807e-05 1.06296e-05 1.30201e-05 1.09497e-05 1.32533e-05 9.96482e-06 1.34991e-05 7.90384e-06 1.38649e-05 6.11691e-06 1.43034e-05 6.55696e-06 1.47882e-05 9.20943e-06 1.50815e-05 1.18941e-05 1.48249e-05 1.2731e-05 1.40858e-05 1.08245e-05 1.3851e-05 4.95994e-06 1.43896e-05 -2.6403e-06 1.46353e-05 -7.6927e-06 1.34419e-05 -1.05896e-05 1.08862e-05 -1.46191e-05 8.23382e-06 -2.04184e-05 6.25446e-06 -2.45431e-05 4.89025e-06 -2.50344e-05 3.92539e-06 -2.31602e-05 3.15273e-06 -2.04064e-05 2.40652e-06 -1.73249e-05 1.77508e-06 -1.39733e-05 1.19987e-06 -1.0749e-05 1.67013e-06 -7.28379e-06 1.88864e-06 -3.71651e-06 2.52448e-06 -2.05183e-07 3.90274e-06 4.02691e-06 5.41707e-06 5.98203e-06 7.01154e-06 1.04815e-05 8.78601e-06 1.32039e-05 1.1014e-05 1.65964e-05 1.37648e-05 1.89202e-05 1.63987e-05 2.23308e-05 1.90749e-05 2.29455e-05 2.17397e-05 2.37129e-05 2.36969e-05 2.33974e-05 2.54641e-05 2.16058e-05 2.69429e-05 1.95245e-05 2.81812e-05 1.72926e-05 2.91214e-05 1.44954e-05 3.00906e-05 1.15671e-05 3.09544e-05 8.99112e-06 3.17513e-05 6.06413e-06 3.20384e-05 3.88226e-06 3.25022e-05 1.09243e-06 3.25101e-05 -1.13822e-06 3.24263e-05 -3.29087e-06 3.20574e-05 -5.11609e-06 3.14629e-05 -6.86228e-06 3.0652e-05 -7.9131e-06 2.97275e-05 -9.1792e-06 2.83306e-05 -9.56199e-06 2.70263e-05 -9.75941e-06 2.56909e-05 -1.00213e-05 2.39272e-05 -9.42036e-06 2.20142e-05 -8.61316e-06 2.03998e-05 -7.5831e-06 1.91085e-05 -7.18913e-06 1.81937e-05 -7.04285e-06 1.716e-05 -7.188e-06 1.58583e-05 -6.45958e-06 1.38865e-05 -5.2268e-06 1.22694e-05 -5.50715e-06 1.15443e-05 -7.63662e-06 1.14398e-05 -1.11403e-05 1.04338e-05 -1.27654e-05 9.00982e-06 -1.30789e-05 7.72846e-06 -1.40327e-05 6.52861e-06 -1.34522e-05 4.98785e-06 -1.31773e-05 3.56806e-06 -1.18061e-05 2.70668e-06 -1.15566e-05 1.7615e-06 -9.37589e-06 8.00771e-07 -7.16226e-06 5.72183e-07 -4.35371e-06 2.13362e-07 -1.512e-06 -8.74014e-09 3.87292e-07 -3.29476e-07 3.27411e-06 -9.38539e-07 4.66953e-06 -1.88245e-06 7.88447e-06 -2.25505e-06 9.47307e-06 -2.15264e-06 1.25446e-05 -4.15447e-06 1.76572e-05 -9.52642e-07 1.1711e-05 1.51379e-06 2.08251e-05 5.46037e-06 9.06896e-06 6.85569e-06 1.939e-05 9.62954e-06 6.75505e-06 1.12986e-05 1.75503e-05 1.26208e-05 7.92618e-06 1.43114e-05 1.72842e-05 1.44784e-05 1.08212e-05 1.62531e-05 1.73252e-05 1.63327e-05 1.32774e-05 1.86761e-05 1.59037e-05 1.93694e-05 1.30125e-05 2.14431e-05 1.3999e-05 2.27479e-05 1.17512e-05 2.41134e-05 1.2241e-05 2.54662e-05 1.02745e-05 9.44206e-06 2.62496e-05 3.21847e-05 -1.94497e-08 3.20986e-05 1.73765e-07 3.19822e-05 2.52709e-07 3.18173e-05 3.258e-07 3.17343e-05 2.47129e-07 3.16266e-05 1.42238e-07 3.16153e-05 -9.70736e-10 3.16147e-05 -1.78883e-07 3.16294e-05 -2.55402e-07 3.16943e-05 -3.78628e-07 3.17295e-05 -4.4167e-07 3.18238e-05 -4.42892e-07 3.18302e-05 -5.14921e-07 3.18719e-05 -4.53344e-07 3.18535e-05 -4.68048e-07 3.18193e-05 -5.01406e-07 3.18381e-05 -4.25928e-07 3.17958e-05 -5.42165e-07 3.18285e-05 -4.80804e-07 3.18254e-05 -5.7589e-07 3.1826e-05 -6.23917e-07 3.18343e-05 -6.02718e-07 3.18272e-05 -7.56938e-07 3.18344e-05 -6.6903e-07 3.18377e-05 -8.03078e-07 3.18508e-05 -7.87544e-07 3.18588e-05 -7.8929e-07 3.18789e-05 -9.07628e-07 3.18627e-05 -8.18286e-07 3.18562e-05 -9.49586e-07 3.18155e-05 -9.10715e-07 3.17864e-05 -9.20387e-07 3.17452e-05 -9.85048e-07 3.17207e-05 -9.23677e-07 3.17242e-05 -1.0195e-06 3.16628e-05 -9.94528e-07 3.16706e-05 -1.03833e-06 3.15704e-05 -1.08497e-06 3.15071e-05 -1.04619e-06 3.14147e-05 -1.09023e-06 3.12763e-05 -1.06172e-06 3.12121e-05 -1.01714e-06 3.10489e-05 -1.00794e-06 3.09691e-05 -9.36923e-07 3.08453e-05 -8.76076e-07 3.0721e-05 -8.29119e-07 3.06844e-05 -7.49612e-07 3.05908e-05 -7.11194e-07 3.06071e-05 -6.83449e-07 3.06403e-05 -6.83371e-07 3.06533e-05 -7.28518e-07 3.07452e-05 -8.01057e-07 3.07688e-05 -9.14564e-07 3.07978e-05 -1.06783e-06 3.08444e-05 -1.25749e-06 3.08172e-05 -1.49484e-06 3.0826e-05 -1.78919e-06 3.0806e-05 -2.11986e-06 3.07339e-05 -2.50182e-06 3.06948e-05 -2.91741e-06 3.05876e-05 -3.36875e-06 3.04455e-05 -3.84651e-06 3.02475e-05 -4.32044e-06 2.99214e-05 -4.79475e-06 2.94771e-05 -5.22528e-06 2.88476e-05 -5.60811e-06 2.80265e-05 -5.92728e-06 2.69872e-05 -6.14523e-06 2.57045e-05 -6.2778e-06 2.41334e-05 -6.25817e-06 2.2236e-05 -6.09026e-06 1.99714e-05 -5.73207e-06 1.73968e-05 -5.21933e-06 1.47314e-05 -4.70168e-06 1.22767e-05 -4.40017e-06 1.03715e-05 -4.52339e-06 9.06054e-06 -4.98386e-06 8.09299e-06 -5.54226e-06 7.26815e-06 -6.17092e-06 6.49504e-06 -6.88944e-06 5.74237e-06 -7.57783e-06 5.08926e-06 -8.12709e-06 4.65402e-06 -8.50596e-06 4.40619e-06 -8.60211e-06 4.25242e-06 -8.22533e-06 4.18202e-06 -7.41327e-06 4.25041e-06 -6.21461e-06 4.41987e-06 -4.52346e-06 4.66357e-06 -2.4768e-06 4.8801e-06 -1.38937e-07 5.0649e-06 2.23344e-06 5.50429e-06 4.46049e-06 6.55733e-06 6.46844e-06 7.82751e-06 7.9683e-06 8.51602e-06 9.27153e-06 8.93495e-06 1.06695e-05 9.80463e-06 1.12108e-05 1.07979e-05 1.04508e-05 1.12717e-05 9.99925e-06 1.13797e-05 1.05216e-05 1.17213e-05 1.0608e-05 1.232e-05 9.36618e-06 1.30435e-05 7.18029e-06 1.3692e-05 5.46848e-06 1.42705e-05 5.97847e-06 1.49225e-05 8.55733e-06 1.55427e-05 1.1274e-05 1.56564e-05 1.26173e-05 1.53558e-05 1.1125e-05 1.52875e-05 5.02821e-06 1.57871e-05 -3.13989e-06 1.57453e-05 -7.65084e-06 1.40366e-05 -8.88091e-06 1.09883e-05 -1.15708e-05 7.65697e-06 -1.70871e-05 5.12188e-06 -2.2008e-05 3.41079e-06 -2.33233e-05 2.26073e-06 -2.20102e-05 1.26746e-06 -1.94131e-05 4.89849e-07 -1.65473e-05 -1.40627e-07 -1.33428e-05 -6.30628e-07 -1.0259e-05 -6.50098e-07 -7.26432e-06 -7.65929e-07 -3.60068e-06 2.21316e-07 -1.19243e-06 1.42148e-06 2.82675e-06 2.56091e-06 4.84261e-06 4.13825e-06 8.90418e-06 6.13228e-06 1.12099e-05 8.17661e-06 1.45521e-05 1.04752e-05 1.66216e-05 1.35007e-05 1.93053e-05 1.63276e-05 2.01187e-05 1.91411e-05 2.08994e-05 2.15898e-05 2.09487e-05 2.37952e-05 1.94004e-05 2.56186e-05 1.77011e-05 2.72906e-05 1.56205e-05 2.85741e-05 1.3212e-05 2.95496e-05 1.05916e-05 3.03908e-05 8.14994e-06 3.11754e-05 5.27947e-06 3.17335e-05 3.32414e-06 3.20943e-05 7.31636e-07 3.20866e-05 -1.13051e-06 3.18393e-05 -3.04354e-06 3.12889e-05 -4.56568e-06 3.03886e-05 -5.96205e-06 2.94248e-05 -6.94929e-06 2.8222e-05 -7.97634e-06 2.67991e-05 -8.13909e-06 2.54526e-05 -8.41296e-06 2.3821e-05 -8.38966e-06 2.20273e-05 -7.6267e-06 2.04819e-05 -7.06777e-06 1.94456e-05 -6.54675e-06 1.8541e-05 -6.28455e-06 1.7593e-05 -6.09484e-06 1.62914e-05 -5.88643e-06 1.46164e-05 -4.78458e-06 1.26736e-05 -3.28405e-06 1.12503e-05 -4.08376e-06 1.07909e-05 -7.17726e-06 9.82785e-06 -1.01772e-05 7.97675e-06 -1.09143e-05 7.13367e-06 -1.22358e-05 5.6833e-06 -1.25823e-05 3.78782e-06 -1.15567e-05 2.36043e-06 -1.17499e-05 1.34853e-06 -1.07942e-05 1.03703e-09 -1.02091e-05 -1.3778e-06 -7.99705e-06 -1.84381e-06 -6.69626e-06 -2.26219e-06 -3.93533e-06 -2.99914e-06 -7.75046e-07 -3.71519e-06 1.10334e-06 -3.74464e-06 3.30356e-06 -4.11187e-06 5.03677e-06 -5.17653e-06 8.94912e-06 -5.99439e-06 1.02909e-05 -3.79454e-06 1.03448e-05 -3.97422e-06 1.78369e-05 -9.5398e-07 8.69079e-06 1.93681e-06 1.79343e-05 5.83214e-06 5.17363e-06 7.34697e-06 1.78752e-05 8.69593e-06 5.40609e-06 1.07868e-05 1.54595e-05 1.1127e-05 7.58598e-06 1.31461e-05 1.5265e-05 1.32295e-05 1.07378e-05 1.55286e-05 1.50261e-05 1.65708e-05 1.22352e-05 1.89784e-05 1.34961e-05 2.03756e-05 1.16153e-05 2.23949e-05 1.19798e-05 2.34888e-05 1.06572e-05 2.44599e-05 1.127e-05 2.55898e-05 9.14466e-06 8.79337e-06 2.62385e-05 3.21895e-05 4.25552e-08 3.20688e-05 2.94505e-07 3.19509e-05 3.70533e-07 3.18228e-05 4.53944e-07 3.17678e-05 3.02118e-07 3.17524e-05 1.57678e-07 3.17666e-05 -1.5179e-08 3.18194e-05 -2.31721e-07 3.18768e-05 -3.12813e-07 3.19287e-05 -4.30495e-07 3.19387e-05 -4.51668e-07 3.19608e-05 -4.65042e-07 3.19101e-05 -4.64182e-07 3.18885e-05 -4.31713e-07 3.18709e-05 -4.50509e-07 3.18219e-05 -4.52321e-07 3.18448e-05 -4.48883e-07 3.18178e-05 -5.15157e-07 3.18389e-05 -5.01953e-07 3.18387e-05 -5.75682e-07 3.18382e-05 -6.23338e-07 3.18512e-05 -6.15795e-07 3.18321e-05 -7.37839e-07 3.18566e-05 -6.93462e-07 3.1821e-05 -7.67548e-07 3.18369e-05 -8.0337e-07 3.18224e-05 -7.74792e-07 3.17866e-05 -8.71848e-07 3.17817e-05 -8.13388e-07 3.17129e-05 -8.8076e-07 3.16821e-05 -8.79977e-07 3.16298e-05 -8.68067e-07 3.15749e-05 -9.30184e-07 3.15385e-05 -8.87201e-07 3.14752e-05 -9.56254e-07 3.14306e-05 -9.49904e-07 3.13432e-05 -9.5098e-07 3.12612e-05 -1.00295e-06 3.11671e-05 -9.52085e-07 3.10467e-05 -9.69764e-07 3.09454e-05 -9.60463e-07 3.08229e-05 -8.94659e-07 3.07017e-05 -8.86724e-07 3.0582e-05 -8.17201e-07 3.04611e-05 -7.55142e-07 3.03475e-05 -7.15578e-07 3.02601e-05 -6.62202e-07 3.01994e-05 -6.5051e-07 3.01489e-05 -6.32939e-07 3.01254e-05 -6.59844e-07 3.00893e-05 -6.92438e-07 3.00514e-05 -7.63175e-07 3.00139e-05 -8.77019e-07 2.99528e-05 -1.00676e-06 2.98966e-05 -1.2013e-06 2.98172e-05 -1.41542e-06 2.97068e-05 -1.67885e-06 2.95802e-05 -1.99321e-06 2.94099e-05 -2.33152e-06 2.91876e-05 -2.69511e-06 2.88826e-05 -3.0638e-06 2.84675e-05 -3.43139e-06 2.7918e-05 -3.77096e-06 2.72208e-05 -4.09751e-06 2.63532e-05 -4.35764e-06 2.52848e-05 -4.53974e-06 2.39917e-05 -4.63423e-06 2.24551e-05 -4.60862e-06 2.06279e-05 -4.45061e-06 1.85065e-05 -4.13669e-06 1.60993e-05 -3.68312e-06 1.35996e-05 -3.23234e-06 1.1356e-05 -2.97574e-06 9.55298e-06 -2.89866e-06 8.21789e-06 -3.06508e-06 7.19516e-06 -3.50065e-06 6.20003e-06 -3.98873e-06 5.21294e-06 -4.55518e-06 4.28049e-06 -5.23848e-06 3.39628e-06 -6.00523e-06 2.64572e-06 -6.82727e-06 2.05617e-06 -7.53754e-06 1.57751e-06 -8.0273e-06 1.25246e-06 -8.27706e-06 1.02007e-06 -7.99293e-06 8.12145e-07 -7.20535e-06 7.45525e-07 -6.14798e-06 8.79935e-07 -4.65787e-06 1.11659e-06 -2.71345e-06 1.3879e-06 -4.1025e-07 1.78442e-06 1.83692e-06 2.39594e-06 3.84897e-06 3.30393e-06 5.56045e-06 4.10584e-06 7.1664e-06 4.68687e-06 8.69049e-06 5.50727e-06 9.84908e-06 6.76015e-06 9.9579e-06 7.84901e-06 9.36193e-06 8.47928e-06 9.36898e-06 9.17116e-06 9.82971e-06 1.02598e-05 9.51934e-06 1.1483e-05 8.143e-06 1.25214e-05 6.14187e-06 1.31161e-05 4.87387e-06 1.36739e-05 5.4206e-06 1.46835e-05 7.54775e-06 1.59279e-05 1.00296e-05 1.67803e-05 1.1765e-05 1.7033e-05 1.08724e-05 1.72009e-05 4.86027e-06 1.74127e-05 -3.35166e-06 1.6872e-05 -7.11018e-06 1.47293e-05 -6.73815e-06 1.12303e-05 -8.07185e-06 7.40017e-06 -1.32569e-05 4.10891e-06 -1.87167e-05 1.92185e-06 -2.11363e-05 3.52527e-07 -2.04408e-05 -6.93378e-07 -1.83672e-05 -1.55548e-06 -1.56852e-05 -2.28858e-06 -1.26097e-05 -2.82248e-06 -9.72515e-06 -3.05124e-06 -7.03556e-06 -2.90179e-06 -3.75014e-06 -2.15338e-06 -1.94084e-06 -1.04628e-06 1.71965e-06 -2.05315e-07 4.00164e-06 1.20572e-06 7.49315e-06 3.0153e-06 9.4003e-06 5.05568e-06 1.25117e-05 7.20886e-06 1.44684e-05 1.0448e-05 1.60661e-05 1.31959e-05 1.73708e-05 1.60061e-05 1.80892e-05 1.89165e-05 1.80383e-05 2.14784e-05 1.68385e-05 2.34962e-05 1.56833e-05 2.54406e-05 1.36761e-05 2.69668e-05 1.16858e-05 2.81449e-05 9.41344e-06 2.92685e-05 7.02639e-06 2.98231e-05 4.72482e-06 3.02545e-05 2.89276e-06 3.03786e-05 6.0755e-07 3.04926e-05 -1.24452e-06 3.02402e-05 -2.79114e-06 2.97368e-05 -4.06231e-06 2.89642e-05 -5.18946e-06 2.80877e-05 -6.07274e-06 2.66562e-05 -6.54484e-06 2.52379e-05 -6.72082e-06 2.37747e-05 -6.94976e-06 2.2005e-05 -6.61989e-06 2.04536e-05 -6.07537e-06 1.9257e-05 -5.87117e-06 1.8414e-05 -5.70367e-06 1.76168e-05 -5.4874e-06 1.66669e-05 -5.14491e-06 1.5152e-05 -4.37151e-06 1.29901e-05 -2.6227e-06 1.09311e-05 -1.22511e-06 9.87826e-06 -3.03087e-06 9.35106e-06 -6.65007e-06 7.47822e-06 -8.30437e-06 6.00074e-06 -9.43682e-06 5.01809e-06 -1.12532e-05 2.78492e-06 -1.03491e-05 1.26284e-06 -1.00346e-05 5.22597e-07 -1.10097e-05 -8.86446e-07 -9.38519e-06 -2.73589e-06 -8.35966e-06 -3.84972e-06 -6.88322e-06 -4.59526e-06 -5.95072e-06 -6.08913e-06 -2.44145e-06 -6.37346e-06 -4.90718e-07 -6.83386e-06 1.56373e-06 -7.45564e-06 3.92534e-06 -7.3269e-06 4.90802e-06 -6.37314e-06 7.99536e-06 -7.95849e-06 1.18763e-05 -4.94137e-06 7.32766e-06 -2.8207e-06 1.57162e-05 5.3301e-07 5.33708e-06 2.36004e-06 1.61073e-05 4.56195e-06 2.97173e-06 7.0283e-06 1.54088e-05 7.65556e-06 4.77883e-06 9.72184e-06 1.33932e-05 9.90218e-06 7.40564e-06 1.21959e-05 1.29713e-05 1.28245e-05 1.01093e-05 1.58034e-05 1.20472e-05 1.75343e-05 1.05043e-05 1.94688e-05 1.15617e-05 2.08682e-05 1.02158e-05 2.25717e-05 1.02763e-05 2.36221e-05 9.60686e-06 2.44574e-05 1.04346e-05 2.53576e-05 8.24447e-06 7.88729e-06 2.62637e-05 3.18306e-05 1.22022e-07 3.16851e-05 4.40063e-07 3.15435e-05 5.12044e-07 3.14765e-05 5.20993e-07 3.14569e-05 3.21751e-07 3.14761e-05 1.38422e-07 3.15015e-05 -4.05349e-08 3.15089e-05 -2.39186e-07 3.15104e-05 -3.14272e-07 3.14882e-05 -4.08313e-07 3.14445e-05 -4.07918e-07 3.13937e-05 -4.14275e-07 3.13445e-05 -4.14989e-07 3.13012e-05 -3.88402e-07 3.1267e-05 -4.16324e-07 3.12403e-05 -4.25588e-07 3.12314e-05 -4.40035e-07 3.12127e-05 -4.96409e-07 3.12171e-05 -5.06335e-07 3.11964e-05 -5.55054e-07 3.11727e-05 -5.9964e-07 3.11526e-05 -5.95621e-07 3.10918e-05 -6.77085e-07 3.10555e-05 -6.57143e-07 3.09821e-05 -6.94161e-07 3.09172e-05 -7.38476e-07 3.08536e-05 -7.11185e-07 3.07617e-05 -7.79906e-07 3.06985e-05 -7.50271e-07 3.06017e-05 -7.83892e-07 3.05254e-05 -8.03753e-07 3.04391e-05 -7.81759e-07 3.03456e-05 -8.36687e-07 3.02631e-05 -8.04654e-07 3.01524e-05 -8.45543e-07 3.00532e-05 -8.50746e-07 2.99359e-05 -8.33622e-07 2.98109e-05 -8.78002e-07 2.96803e-05 -8.2143e-07 2.95315e-05 -8.2097e-07 2.93716e-05 -8.00575e-07 2.92105e-05 -7.33538e-07 2.90463e-05 -7.2261e-07 2.88924e-05 -6.63274e-07 2.87579e-05 -6.20635e-07 2.86259e-05 -5.83559e-07 2.85191e-05 -5.55439e-07 2.84143e-05 -5.4564e-07 2.8313e-05 -5.31722e-07 2.82184e-05 -5.6516e-07 2.81143e-05 -5.88364e-07 2.7999e-05 -6.47855e-07 2.78757e-05 -7.53755e-07 2.77367e-05 -8.67747e-07 2.75681e-05 -1.03268e-06 2.73846e-05 -1.23197e-06 2.71495e-05 -1.44371e-06 2.68443e-05 -1.68803e-06 2.64692e-05 -1.95647e-06 2.59818e-05 -2.20762e-06 2.53794e-05 -2.46145e-06 2.46405e-05 -2.69243e-06 2.3751e-05 -2.88153e-06 2.27164e-05 -3.0629e-06 2.15034e-05 -3.14464e-06 2.00786e-05 -3.1149e-06 1.84041e-05 -2.95979e-06 1.64955e-05 -2.69994e-06 1.44181e-05 -2.37327e-06 1.23056e-05 -2.0242e-06 1.03861e-05 -1.76358e-06 8.88877e-06 -1.73501e-06 7.69485e-06 -1.78183e-06 6.56781e-06 -1.77161e-06 5.47596e-06 -1.97322e-06 4.52578e-06 -2.55047e-06 3.73742e-06 -3.20038e-06 3.03885e-06 -3.8566e-06 2.33866e-06 -4.53829e-06 1.6041e-06 -5.27066e-06 8.04495e-07 -6.02766e-06 3.94733e-08 -6.77252e-06 -5.54316e-07 -7.43352e-06 -1.01969e-06 -7.81169e-06 -1.50013e-06 -7.5125e-06 -1.97292e-06 -6.73256e-06 -2.18892e-06 -5.93198e-06 -2.14819e-06 -4.6986e-06 -2.10181e-06 -2.75983e-06 -1.92488e-06 -5.87175e-07 -1.51118e-06 1.42322e-06 -9.66339e-07 3.30412e-06 -2.68232e-07 4.86234e-06 5.8285e-07 6.31532e-06 1.65936e-06 7.61398e-06 3.18003e-06 8.32842e-06 4.8858e-06 8.25212e-06 6.14341e-06 8.10431e-06 6.90291e-06 8.60948e-06 7.70522e-06 9.0274e-06 8.73958e-06 8.48498e-06 9.98459e-06 6.89799e-06 1.11674e-05 4.9591e-06 1.21764e-05 3.86479e-06 1.32576e-05 4.33947e-06 1.46004e-05 6.20495e-06 1.60917e-05 8.53832e-06 1.72933e-05 1.05634e-05 1.81189e-05 1.00467e-05 1.862e-05 4.35922e-06 1.8638e-05 -3.36964e-06 1.77039e-05 -6.17607e-06 1.52539e-05 -4.28817e-06 1.15027e-05 -4.32065e-06 7.15135e-06 -8.90559e-06 3.22909e-06 -1.47945e-05 3.69816e-07 -1.8277e-05 -1.4147e-06 -1.86563e-05 -2.71411e-06 -1.70678e-05 -3.87813e-06 -1.45211e-05 -4.69743e-06 -1.17904e-05 -5.22762e-06 -9.19496e-06 -5.60586e-06 -6.65732e-06 -5.36367e-06 -3.99233e-06 -5.07264e-06 -2.23186e-06 -4.51322e-06 1.16023e-06 -3.75082e-06 3.23923e-06 -1.79367e-06 5.536e-06 -2.62964e-07 7.86959e-06 1.75512e-06 1.04936e-05 3.94505e-06 1.22785e-05 7.17997e-06 1.28312e-05 9.67473e-06 1.48761e-05 1.26856e-05 1.50783e-05 1.59094e-05 1.48144e-05 1.85412e-05 1.42067e-05 2.08679e-05 1.33567e-05 2.29177e-05 1.16263e-05 2.46774e-05 9.92607e-06 2.60543e-05 8.03654e-06 2.72797e-05 5.80097e-06 2.79961e-05 4.00845e-06 2.86706e-05 2.2183e-06 2.87725e-05 5.05623e-07 2.86011e-05 -1.07314e-06 2.81482e-05 -2.33817e-06 2.75067e-05 -3.42089e-06 2.673e-05 -4.41269e-06 2.57234e-05 -5.06622e-06 2.43867e-05 -5.20805e-06 2.31529e-05 -5.48709e-06 2.16585e-05 -5.45531e-06 2.01078e-05 -5.06922e-06 1.93004e-05 -5.26793e-06 1.85973e-05 -5.16809e-06 1.76293e-05 -4.73568e-06 1.64649e-05 -4.32307e-06 1.52427e-05 -3.92268e-06 1.33833e-05 -2.51207e-06 1.1271e-05 -5.10448e-07 9.72398e-06 3.21921e-07 8.93518e-06 -2.24207e-06 7.4905e-06 -5.20539e-06 5.26632e-06 -6.08019e-06 3.82532e-06 -7.99581e-06 1.85287e-06 -9.28074e-06 3.44222e-07 -8.84048e-06 -1.92218e-07 -9.49815e-06 -1.20938e-06 -9.99255e-06 -3.15326e-06 -7.44131e-06 -4.71985e-06 -6.79306e-06 -5.56165e-06 -6.04142e-06 -7.58682e-06 -3.92556e-06 -9.111e-06 -9.17271e-07 -8.89976e-06 -7.01959e-07 -9.35433e-06 2.0183e-06 -9.54928e-06 4.12029e-06 -1.04675e-05 5.82619e-06 -7.48477e-06 5.01268e-06 -6.27495e-06 1.06665e-05 -4.30803e-06 5.36074e-06 -1.89019e-06 1.32983e-05 7.42434e-07 2.70445e-06 2.51185e-06 1.43378e-05 3.1029e-06 2.38068e-06 5.74724e-06 1.27645e-05 6.07056e-06 4.45552e-06 8.41236e-06 1.10514e-05 9.00706e-06 6.81094e-06 1.18785e-05 1.00998e-05 1.30673e-05 8.92053e-06 1.57814e-05 9.33318e-06 1.78519e-05 8.43371e-06 1.97091e-05 9.7045e-06 2.08247e-05 9.10018e-06 2.20769e-05 9.02413e-06 2.32514e-05 8.43234e-06 2.45319e-05 9.15417e-06 2.57429e-05 7.03348e-06 6.51872e-06 2.71115e-05 2.97597e-05 1.69982e-07 2.9655e-05 5.4479e-07 2.95538e-05 6.13246e-07 2.95293e-05 5.45433e-07 2.94973e-05 3.53755e-07 2.94935e-05 1.42259e-07 2.94786e-05 -2.56205e-08 2.94492e-05 -2.09829e-07 2.94076e-05 -2.72606e-07 2.9333e-05 -3.33742e-07 2.92716e-05 -3.46524e-07 2.92033e-05 -3.45949e-07 2.9151e-05 -3.62717e-07 2.91083e-05 -3.45724e-07 2.90637e-05 -3.71729e-07 2.90196e-05 -3.81451e-07 2.89756e-05 -3.96051e-07 2.89136e-05 -4.344e-07 2.88527e-05 -4.45467e-07 2.87789e-05 -4.81223e-07 2.86876e-05 -5.08378e-07 2.86062e-05 -5.14177e-07 2.84919e-05 -5.62797e-07 2.83927e-05 -5.57963e-07 2.82792e-05 -5.80611e-07 2.81594e-05 -6.18739e-07 2.80533e-05 -6.05097e-07 2.79192e-05 -6.4579e-07 2.78069e-05 -6.37928e-07 2.76735e-05 -6.50525e-07 2.75412e-05 -6.71432e-07 2.74164e-05 -6.56911e-07 2.72654e-05 -6.85736e-07 2.71312e-05 -6.70487e-07 2.69685e-05 -6.82759e-07 2.68016e-05 -6.83878e-07 2.66313e-05 -6.63342e-07 2.64308e-05 -6.77481e-07 2.62531e-05 -6.43738e-07 2.60568e-05 -6.24716e-07 2.58689e-05 -6.12593e-07 2.57017e-05 -5.66404e-07 2.55218e-05 -5.42689e-07 2.53674e-05 -5.08919e-07 2.52082e-05 -4.61355e-07 2.50615e-05 -4.36899e-07 2.49159e-05 -4.09802e-07 2.47678e-05 -3.97541e-07 2.46326e-05 -3.96557e-07 2.44786e-05 -4.11121e-07 2.43348e-05 -4.44604e-07 2.41714e-05 -4.84481e-07 2.39811e-05 -5.63391e-07 2.37676e-05 -6.54333e-07 2.34976e-05 -7.62588e-07 2.31778e-05 -9.12213e-07 2.27852e-05 -1.0511e-06 2.23119e-05 -1.21477e-06 2.17457e-05 -1.39021e-06 2.10766e-05 -1.53859e-06 2.02962e-05 -1.68105e-06 1.93726e-05 -1.76878e-06 1.82732e-05 -1.78213e-06 1.70077e-05 -1.7974e-06 1.55866e-05 -1.72357e-06 1.40003e-05 -1.52855e-06 1.23315e-05 -1.29102e-06 1.07273e-05 -1.09572e-06 9.26499e-06 -9.11e-07 8.00941e-06 -7.68625e-07 6.91188e-06 -6.66048e-07 5.91103e-06 -7.34158e-07 4.9639e-06 -8.34691e-07 4.10367e-06 -9.11386e-07 3.5225e-06 -1.39206e-06 3.23357e-06 -2.26154e-06 2.94551e-06 -2.91232e-06 2.48208e-06 -3.39318e-06 1.75502e-06 -3.81122e-06 7.98417e-07 -4.31406e-06 -2.90781e-07 -4.93847e-06 -1.40128e-06 -5.66202e-06 -2.25547e-06 -6.57932e-06 -2.94444e-06 -7.12272e-06 -3.73564e-06 -6.72129e-06 -4.44577e-06 -6.02243e-06 -4.8343e-06 -5.54345e-06 -5.01985e-06 -4.51305e-06 -5.19816e-06 -2.58152e-06 -5.26815e-06 -5.17185e-07 -4.96698e-06 1.12206e-06 -4.3166e-06 2.65374e-06 -3.3961e-06 3.94184e-06 -2.15546e-06 5.07468e-06 -6.23637e-07 6.08216e-06 9.80416e-07 6.72436e-06 2.23456e-06 6.99799e-06 2.90777e-06 7.4311e-06 3.56707e-06 7.95018e-06 4.79719e-06 7.79729e-06 6.56947e-06 6.7127e-06 8.40397e-06 5.06349e-06 9.76088e-06 3.60218e-06 1.05777e-05 3.048e-06 1.12998e-05 3.61738e-06 1.26518e-05 4.8529e-06 1.46994e-05 6.49077e-06 1.65645e-05 8.69823e-06 1.78194e-05 8.79175e-06 1.88964e-05 3.28221e-06 1.94163e-05 -3.88948e-06 1.84483e-05 -5.20805e-06 1.58129e-05 -1.65278e-06 1.19103e-05 -4.1813e-07 7.399e-06 -4.39424e-06 3.00933e-06 -1.04048e-05 -3.81851e-07 -1.48858e-05 -2.80222e-06 -1.6236e-05 -4.61831e-06 -1.52517e-05 -6.01824e-06 -1.31212e-05 -7.01512e-06 -1.07935e-05 -7.75204e-06 -8.45804e-06 -8.31215e-06 -6.09721e-06 -8.23922e-06 -4.06526e-06 -8.25862e-06 -2.21246e-06 -7.60274e-06 5.04352e-07 -6.55818e-06 2.19467e-06 -5.16078e-06 4.1386e-06 -3.75866e-06 6.46748e-06 -1.28586e-06 8.02082e-06 7.37003e-07 1.02556e-05 3.27742e-06 1.02908e-05 6.34775e-06 1.18057e-05 9.75536e-06 1.16707e-05 1.26388e-05 1.1931e-05 1.53077e-05 1.15378e-05 1.79034e-05 1.0761e-05 2.01436e-05 9.38605e-06 2.20429e-05 8.02681e-06 2.34494e-05 6.63001e-06 2.46433e-05 4.6071e-06 2.55173e-05 3.13446e-06 2.59384e-05 1.79723e-06 2.6235e-05 2.09034e-07 2.63185e-05 -1.15673e-06 2.59708e-05 -1.99046e-06 2.52949e-05 -2.74497e-06 2.42489e-05 -3.36667e-06 2.31388e-05 -3.95609e-06 2.19331e-05 -4.00236e-06 2.08107e-05 -4.36465e-06 1.95153e-05 -4.15994e-06 1.87891e-05 -4.34308e-06 1.82619e-05 -4.7407e-06 1.7334e-05 -4.24017e-06 1.60241e-05 -3.42574e-06 1.45651e-05 -2.86412e-06 1.3104e-05 -2.46158e-06 1.13335e-05 -7.41569e-07 9.62017e-06 1.2029e-06 8.76597e-06 1.17612e-06 7.69563e-06 -1.17173e-06 5.76999e-06 -3.27974e-06 3.90883e-06 -4.21904e-06 2.02069e-06 -6.10767e-06 2.19087e-07 -7.47914e-06 -5.82164e-07 -8.03923e-06 -1.38009e-06 -8.70023e-06 -2.92091e-06 -8.45172e-06 -4.32711e-06 -6.03511e-06 -5.89799e-06 -5.22218e-06 -7.58228e-06 -4.35713e-06 -9.56222e-06 -1.94562e-06 -1.03954e-05 -8.41235e-08 -1.04115e-05 -6.85783e-07 -1.17864e-05 3.39315e-06 -9.47559e-06 1.80949e-06 -9.90531e-06 6.25591e-06 -9.02632e-06 4.13369e-06 -5.56137e-06 7.2015e-06 -4.0425e-06 3.84186e-06 -2.07191e-06 1.13278e-05 -5.63361e-07 1.1959e-06 1.42796e-06 1.23465e-05 2.075e-06 1.73364e-06 4.29782e-06 1.05417e-05 5.01688e-06 3.73645e-06 7.72143e-06 8.34686e-06 8.72752e-06 5.80484e-06 1.17893e-05 7.03799e-06 1.3276e-05 7.43385e-06 1.53729e-05 7.23628e-06 1.73191e-05 6.48754e-06 1.93219e-05 7.70169e-06 2.08051e-05 7.617e-06 2.23432e-05 7.486e-06 2.3731e-05 7.04448e-06 2.55837e-05 7.30153e-06 2.7368e-05 5.24915e-06 4.74743e-06 2.91393e-05 2.53664e-05 2.72151e-07 2.5317e-05 5.94168e-07 2.53365e-05 5.93686e-07 2.53832e-05 4.98732e-07 2.54153e-05 3.21752e-07 2.5428e-05 1.29496e-07 2.54188e-05 -1.64175e-08 2.53727e-05 -1.63687e-07 2.53163e-05 -2.16247e-07 2.52452e-05 -2.62629e-07 2.51758e-05 -2.77154e-07 2.51082e-05 -2.78292e-07 2.5035e-05 -2.89518e-07 2.49697e-05 -2.80425e-07 2.48949e-05 -2.9698e-07 2.48156e-05 -3.02108e-07 2.47351e-05 -3.1553e-07 2.46405e-05 -3.39806e-07 2.45442e-05 -3.49217e-07 2.44379e-05 -3.74944e-07 2.43205e-05 -3.90925e-07 2.4204e-05 -3.97691e-07 2.40661e-05 -4.24848e-07 2.39304e-05 -4.22289e-07 2.37868e-05 -4.36986e-07 2.36284e-05 -4.60411e-07 2.34808e-05 -4.57501e-07 2.33174e-05 -4.82333e-07 2.31589e-05 -4.79426e-07 2.2993e-05 -4.84679e-07 2.28146e-05 -4.92973e-07 2.26408e-05 -4.83125e-07 2.24482e-05 -4.93128e-07 2.22613e-05 -4.83596e-07 2.20643e-05 -4.85775e-07 2.18628e-05 -4.82342e-07 2.16684e-05 -4.68979e-07 2.14596e-05 -4.68728e-07 2.12657e-05 -4.49787e-07 2.10714e-05 -4.30395e-07 2.08745e-05 -4.15705e-07 2.06933e-05 -3.85264e-07 2.0509e-05 -3.5832e-07 2.03329e-05 -3.3289e-07 2.01683e-05 -2.96751e-07 2.00061e-05 -2.74687e-07 1.98517e-05 -2.55344e-07 1.96968e-05 -2.4268e-07 1.95407e-05 -2.40464e-07 1.9378e-05 -2.48415e-07 1.91995e-05 -2.66136e-07 1.90034e-05 -2.88368e-07 1.87718e-05 -3.31791e-07 1.84964e-05 -3.78932e-07 1.81714e-05 -4.37588e-07 1.77674e-05 -5.08234e-07 1.72846e-05 -5.68287e-07 1.67204e-05 -6.50558e-07 1.60555e-05 -7.25284e-07 1.52949e-05 -7.7796e-07 1.44306e-05 -8.16757e-07 1.34567e-05 -7.94897e-07 1.23763e-05 -7.01682e-07 1.11889e-05 -6.10095e-07 9.95557e-06 -4.90194e-07 8.78185e-06 -3.54828e-07 7.72009e-06 -2.29259e-07 6.7137e-06 -8.933e-08 5.74762e-06 5.50812e-08 4.9219e-06 5.70921e-08 4.36468e-06 -1.08829e-07 4.10846e-06 -4.77934e-07 3.98349e-06 -7.0972e-07 3.88976e-06 -8.17656e-07 3.70206e-06 -1.20436e-06 3.17976e-06 -1.73924e-06 2.3808e-06 -2.11336e-06 1.39005e-06 -2.40243e-06 3.20514e-07 -2.74169e-06 -7.85393e-07 -3.20815e-06 -1.98167e-06 -3.74219e-06 -3.14719e-06 -4.4965e-06 -4.17676e-06 -5.54975e-06 -5.26108e-06 -6.0384e-06 -6.36574e-06 -5.61663e-06 -7.16442e-06 -5.22376e-06 -7.63455e-06 -5.07331e-06 -8.04597e-06 -4.10162e-06 -8.44604e-06 -2.18146e-06 -8.49471e-06 -4.68523e-07 -8.21076e-06 8.38112e-07 -7.56336e-06 2.00634e-06 -6.62162e-06 3.0001e-06 -5.41877e-06 3.87182e-06 -4.01051e-06 4.6739e-06 -2.57049e-06 5.28434e-06 -1.33439e-06 5.76189e-06 -2.25483e-08 6.11926e-06 1.89941e-06 6.02821e-06 4.21344e-06 5.48326e-06 6.30472e-06 4.62142e-06 7.66665e-06 3.70156e-06 8.36187e-06 2.90696e-06 8.99424e-06 2.41563e-06 1.02082e-05 2.40337e-06 1.2116e-05 2.94519e-06 1.39946e-05 4.61215e-06 1.56074e-05 7.08542e-06 1.77341e-05 6.66506e-06 1.96271e-05 1.38915e-06 1.96813e-05 -3.94364e-06 1.80628e-05 -3.58954e-06 1.55455e-05 8.64494e-07 1.25909e-05 2.53653e-06 8.67119e-06 -4.74577e-07 4.04454e-06 -5.77816e-06 -2.32789e-07 -1.06085e-05 -3.56129e-06 -1.29075e-05 -6.01107e-06 -1.28019e-05 -7.8077e-06 -1.13246e-05 -9.19175e-06 -9.40948e-06 -1.02922e-05 -7.35763e-06 -1.09393e-05 -5.45008e-06 -1.1157e-05 -3.84752e-06 -1.12658e-05 -2.10366e-06 -1.07452e-05 -1.63209e-08 -9.93011e-06 1.37962e-06 -8.74556e-06 2.95404e-06 -7.02519e-06 4.74711e-06 -4.99612e-06 5.99175e-06 -2.83448e-06 8.09396e-06 -8.91143e-08 7.54539e-06 3.31578e-06 8.40082e-06 6.34573e-06 8.64077e-06 9.07059e-06 9.20611e-06 1.1974e-05 8.63443e-06 1.47175e-05 8.01747e-06 1.70113e-05 7.09226e-06 1.89677e-05 6.0704e-06 2.07464e-05 4.85132e-06 2.19003e-05 3.45319e-06 2.27301e-05 2.30462e-06 2.33893e-05 1.13808e-06 2.3789e-05 -1.90637e-07 2.36607e-05 -1.02848e-06 2.32466e-05 -1.57638e-06 2.24208e-05 -1.91915e-06 2.15212e-05 -2.46706e-06 2.07764e-05 -3.21129e-06 1.96581e-05 -2.88403e-06 1.85932e-05 -3.29982e-06 1.79457e-05 -3.5124e-06 1.75975e-05 -3.99495e-06 1.61021e-05 -3.24521e-06 1.44212e-05 -2.55927e-06 1.29875e-05 -1.99205e-06 1.19905e-05 -1.8671e-06 1.07319e-05 -1.20308e-06 9.73687e-06 2.53506e-07 9.30081e-06 1.63897e-06 8.96739e-06 1.50954e-06 7.62833e-06 1.67323e-07 5.77425e-06 -1.42567e-06 3.8782e-06 -2.32298e-06 1.76291e-06 -3.99238e-06 -2.61951e-08 -5.69004e-06 -1.69287e-06 -6.37256e-06 -3.05941e-06 -7.33369e-06 -3.99418e-06 -7.51695e-06 -5.01632e-06 -5.01298e-06 -7.11871e-06 -3.11978e-06 -9.26257e-06 -2.21327e-06 -1.00463e-05 -1.16192e-06 -9.57418e-06 -5.56217e-07 -9.67345e-06 -5.86517e-07 -1.15553e-05 5.27497e-06 -9.39487e-06 -3.50897e-07 -8.17095e-06 5.03199e-06 -8.60959e-06 4.57233e-06 -5.49388e-06 4.08579e-06 -4.24648e-06 2.59446e-06 -2.19637e-06 9.27765e-06 -1.9502e-06 9.49724e-07 9.31331e-07 9.46498e-06 2.01365e-06 6.51324e-07 4.50801e-06 8.04731e-06 5.39002e-06 2.85444e-06 8.05321e-06 5.68367e-06 9.6326e-06 4.22546e-06 1.21042e-05 4.56637e-06 1.38715e-05 5.66658e-06 1.58617e-05 5.24611e-06 1.75488e-05 4.80045e-06 1.95137e-05 5.73674e-06 2.14648e-05 5.66585e-06 2.34667e-05 5.48414e-06 2.53523e-05 5.15888e-06 2.77124e-05 4.94148e-06 2.97913e-05 3.17025e-06 2.68822e-06 3.18505e-05 1.8983e-05 1.38312e-07 1.93172e-05 2.60019e-07 1.95865e-05 3.24336e-07 1.97495e-05 3.35763e-07 1.98402e-05 2.3102e-07 1.98747e-05 9.50324e-08 1.9878e-05 -1.9741e-08 1.98253e-05 -1.10921e-07 1.97679e-05 -1.58865e-07 1.96985e-05 -1.93283e-07 1.96258e-05 -2.04465e-07 1.95501e-05 -2.02559e-07 1.94667e-05 -2.06156e-07 1.93871e-05 -2.00745e-07 1.92979e-05 -2.07849e-07 1.92051e-05 -2.09252e-07 1.91045e-05 -2.14936e-07 1.89902e-05 -2.25507e-07 1.8871e-05 -2.30048e-07 1.87389e-05 -2.42795e-07 1.85989e-05 -2.50943e-07 1.84571e-05 -2.55895e-07 1.82995e-05 -2.67295e-07 1.81443e-05 -2.67008e-07 1.79798e-05 -2.72547e-07 1.78025e-05 -2.83059e-07 1.76267e-05 -2.81695e-07 1.7435e-05 -2.90716e-07 1.72452e-05 -2.89574e-07 1.70496e-05 -2.8906e-07 1.68481e-05 -2.91483e-07 1.66504e-05 -2.85442e-07 1.64451e-05 -2.87817e-07 1.6244e-05 -2.82541e-07 1.60389e-05 -2.80632e-07 1.58336e-05 -2.77028e-07 1.56329e-05 -2.68325e-07 1.54297e-05 -2.65513e-07 1.52326e-05 -2.52628e-07 1.50422e-05 -2.40071e-07 1.48542e-05 -2.27685e-07 1.46756e-05 -2.06612e-07 1.45051e-05 -1.87872e-07 1.43395e-05 -1.67311e-07 1.41857e-05 -1.42917e-07 1.40359e-05 -1.24939e-07 1.38896e-05 -1.0902e-07 1.37428e-05 -9.58214e-08 1.35902e-05 -8.79045e-08 1.34294e-05 -8.764e-08 1.32498e-05 -8.647e-08 1.30485e-05 -8.70567e-08 1.28091e-05 -9.24377e-08 1.25258e-05 -9.56758e-08 1.21859e-05 -9.765e-08 1.17734e-05 -9.57486e-08 1.129e-05 -8.48709e-08 1.07042e-05 -6.47498e-08 1.0043e-05 -6.41219e-08 9.36244e-06 -9.73621e-08 8.7032e-06 -1.57518e-07 8.0523e-06 -1.43998e-07 7.32406e-06 2.65518e-08 6.47867e-06 2.35302e-07 5.68954e-06 2.98931e-07 5.10781e-06 2.26907e-07 4.74038e-06 1.38163e-07 4.53177e-06 1.19286e-07 4.44139e-06 1.45458e-07 4.38485e-06 1.13636e-07 4.33591e-06 -5.98941e-08 4.15321e-06 -2.95229e-07 3.877e-06 -4.33514e-07 3.5807e-06 -5.21354e-07 3.11818e-06 -7.41847e-07 2.45125e-06 -1.07231e-06 1.68314e-06 -1.34525e-06 8.62299e-07 -1.58158e-06 -2.06576e-08 -1.85873e-06 -1.13033e-06 -2.09848e-06 -2.4546e-06 -2.41791e-06 -3.90108e-06 -3.05003e-06 -5.66006e-06 -3.79077e-06 -7.64187e-06 -4.05659e-06 -9.25976e-06 -3.99874e-06 -1.03782e-05 -4.10527e-06 -1.13387e-05 -4.11286e-06 -1.20231e-05 -3.41723e-06 -1.21463e-05 -2.05822e-06 -1.19688e-05 -6.46036e-07 -1.14926e-05 3.61947e-07 -1.06414e-05 1.15514e-06 -9.56167e-06 1.92032e-06 -8.30344e-06 2.6136e-06 -6.81885e-06 3.18931e-06 -5.18494e-06 3.65043e-06 -3.43537e-06 4.01232e-06 -1.4738e-06 4.15769e-06 5.58918e-07 3.99549e-06 2.37597e-06 3.6662e-06 3.79877e-06 3.19862e-06 4.95099e-06 2.54934e-06 5.99786e-06 1.8601e-06 7.02036e-06 1.39314e-06 7.97097e-06 1.45276e-06 8.68693e-06 2.22922e-06 9.61404e-06 3.68505e-06 1.21336e-05 4.56585e-06 1.5997e-05 2.80165e-06 1.82597e-05 -8.73553e-07 1.76789e-05 -3.3628e-06 1.63336e-05 -2.24428e-06 1.56921e-05 1.50604e-06 1.45255e-05 3.70307e-06 1.14898e-05 2.56119e-06 6.70961e-06 -9.98011e-07 1.39142e-06 -5.29029e-06 -3.07876e-06 -8.43728e-06 -6.49788e-06 -9.38279e-06 -9.06885e-06 -8.75362e-06 -1.1056e-05 -7.42229e-06 -1.25842e-05 -5.82948e-06 -1.36008e-05 -4.43347e-06 -1.42138e-05 -3.23456e-06 -1.44204e-05 -1.89701e-06 -1.4024e-05 -4.12729e-07 -1.33168e-05 6.7238e-07 -1.22024e-05 1.83973e-06 -1.05095e-05 3.05412e-06 -8.56561e-06 4.0479e-06 -5.65694e-06 5.18529e-06 -3.08621e-06 4.97466e-06 -3.40245e-07 5.65486e-06 2.64011e-06 5.66041e-06 5.79355e-06 6.05266e-06 8.69137e-06 5.73662e-06 1.14457e-05 5.26313e-06 1.38631e-05 4.67491e-06 1.59068e-05 4.02662e-06 1.7684e-05 3.07416e-06 1.88109e-05 2.3263e-06 1.97488e-05 1.36668e-06 2.03331e-05 5.53784e-07 2.04298e-05 -2.87301e-07 2.0298e-05 -8.96727e-07 2.00636e-05 -1.34195e-06 1.97426e-05 -1.59813e-06 1.91793e-05 -1.90381e-06 1.83518e-05 -2.38371e-06 1.76392e-05 -2.17143e-06 1.66858e-05 -2.34643e-06 1.5435e-05 -2.26162e-06 1.36372e-05 -2.19711e-06 1.20966e-05 -1.70466e-06 1.06217e-05 -1.08436e-06 9.48726e-06 -8.57615e-07 8.2341e-06 -6.13945e-07 7.05725e-06 -2.62239e-08 6.87442e-06 4.3634e-07 7.68345e-06 8.29932e-07 8.19013e-06 1.00286e-06 7.67192e-06 6.85531e-07 6.27223e-06 -2.59793e-08 4.42872e-06 -4.7947e-07 2.19159e-06 -1.75525e-06 -2.4916e-07 -3.24928e-06 -2.53811e-06 -4.08361e-06 -4.73752e-06 -5.13428e-06 -6.55529e-06 -5.69917e-06 -8.02056e-06 -3.54771e-06 -9.32832e-06 -1.81202e-06 -9.43689e-06 -2.10469e-06 -9.00619e-06 -1.59262e-06 -9.19759e-06 -3.64813e-07 -9.93234e-06 1.48232e-07 -8.56134e-06 3.90397e-06 -7.15157e-06 -1.76067e-06 -7.47517e-06 5.35559e-06 -6.70338e-06 3.80054e-06 -4.2301e-06 1.61252e-06 -3.60458e-06 1.96894e-06 -1.04365e-06 6.71672e-06 -5.41309e-07 4.4738e-07 2.58344e-06 6.34023e-06 2.97952e-06 2.55248e-07 5.98922e-06 5.03761e-06 6.91716e-06 1.9265e-06 9.3951e-06 3.20573e-06 1.10405e-05 2.58003e-06 1.2812e-05 2.79492e-06 1.48755e-05 3.60308e-06 1.68463e-05 3.27531e-06 1.85114e-05 3.13531e-06 2.06442e-05 3.60397e-06 2.28235e-05 3.4865e-06 2.51945e-05 3.11318e-06 2.75082e-05 2.84517e-06 3.01354e-05 2.31427e-06 3.21284e-05 1.17724e-06 5.4528e-07 3.42714e-05 1.25136e-05 1.51879e-07 1.26552e-05 1.18462e-07 1.28513e-05 1.28255e-07 1.30509e-05 1.36157e-07 1.31824e-05 9.94681e-08 1.32413e-05 3.61944e-08 1.32447e-05 -2.31457e-08 1.32051e-05 -7.1377e-08 1.3143e-05 -9.67992e-08 1.30609e-05 -1.1115e-07 1.29705e-05 -1.14077e-07 1.28772e-05 -1.09238e-07 1.27758e-05 -1.04772e-07 1.26737e-05 -9.85837e-08 1.25638e-05 -9.80316e-08 1.24502e-05 -9.56437e-08 1.23303e-05 -9.49514e-08 1.22017e-05 -9.69254e-08 1.20689e-05 -9.72817e-08 1.1926e-05 -9.98944e-08 1.17761e-05 -1.01012e-07 1.16219e-05 -1.0172e-07 1.14588e-05 -1.04198e-07 1.12939e-05 -1.02142e-07 1.11239e-05 -1.02492e-07 1.09457e-05 -1.04918e-07 1.07679e-05 -1.03856e-07 1.05831e-05 -1.05922e-07 1.03984e-05 -1.04827e-07 1.02134e-05 -1.0409e-07 1.00262e-05 -1.04335e-07 9.8432e-06 -1.024e-07 9.65859e-06 -1.03209e-07 9.47781e-06 -1.01755e-07 9.29853e-06 -1.01354e-07 9.1214e-06 -9.99023e-08 8.95009e-06 -9.70086e-08 8.7799e-06 -9.53282e-08 8.6171e-06 -8.98305e-08 8.46062e-06 -8.35859e-08 8.30902e-06 -7.60829e-08 8.16715e-06 -6.47507e-08 8.03272e-06 -5.34349e-08 7.90572e-06 -4.03182e-08 7.78797e-06 -2.51584e-08 7.6743e-06 -1.1271e-08 7.56324e-06 2.03435e-09 7.45534e-06 1.20787e-08 7.34609e-06 2.13439e-08 7.23243e-06 2.60258e-08 7.11292e-06 3.30373e-08 6.97459e-06 5.12745e-08 6.80441e-06 7.77443e-08 6.59727e-06 1.11463e-07 6.34708e-06 1.52539e-07 6.06428e-06 1.87052e-07 5.76479e-06 2.14616e-07 5.4714e-06 2.28642e-07 5.21313e-06 1.94146e-07 5.00546e-06 1.10306e-07 4.8268e-06 2.11436e-08 4.66394e-06 1.88589e-08 4.57456e-06 1.15935e-07 4.60124e-06 2.08622e-07 4.68235e-06 2.17817e-07 4.74498e-06 1.64282e-07 4.77923e-06 1.03914e-07 4.818e-06 8.05099e-08 4.88594e-06 7.75228e-08 4.94582e-06 5.37562e-08 4.90315e-06 -1.72251e-08 4.73532e-06 -1.27402e-07 4.4943e-06 -1.92488e-07 4.26731e-06 -2.94369e-07 3.93909e-06 -4.1363e-07 3.35351e-06 -4.86724e-07 2.55782e-06 -5.49559e-07 1.61354e-06 -6.37305e-07 5.20557e-07 -7.65746e-07 -7.08467e-07 -8.69458e-07 -2.10574e-06 -1.02064e-06 -3.93486e-06 -1.22091e-06 -6.40342e-06 -1.3222e-06 -8.98987e-06 -1.47014e-06 -1.1106e-05 -1.88259e-06 -1.30296e-05 -2.18174e-06 -1.48868e-05 -2.25564e-06 -1.6007e-05 -2.29703e-06 -1.6348e-05 -1.71716e-06 -1.63012e-05 -6.92837e-07 -1.589e-05 -4.92557e-08 -1.50179e-05 2.8297e-07 -1.38734e-05 7.75821e-07 -1.24405e-05 1.18073e-06 -1.07512e-05 1.50005e-06 -8.87662e-06 1.7758e-06 -6.81736e-06 1.95307e-06 -4.71735e-06 2.05768e-06 -2.69856e-06 1.9767e-06 -8.2057e-07 1.78821e-06 9.36967e-07 1.44109e-06 2.42913e-06 1.05718e-06 3.54489e-06 7.44342e-07 4.35019e-06 5.87836e-07 5.07535e-06 7.27601e-07 6.18137e-06 1.12321e-06 8.35645e-06 1.50996e-06 1.15935e-05 1.32877e-06 1.41117e-05 2.83456e-07 1.38863e-05 -6.48095e-07 1.16848e-05 -1.16136e-06 1.00468e-05 -6.06224e-07 1.06712e-05 8.81606e-07 1.23739e-05 2.00042e-06 1.27597e-05 2.17531e-06 1.03442e-05 1.41756e-06 5.51142e-06 -4.5755e-07 1.18435e-09 -2.92704e-06 -4.71503e-06 -4.66657e-06 -8.69951e-06 -4.76914e-06 -1.1873e-05 -4.24877e-06 -1.4246e-05 -3.45653e-06 -1.5946e-05 -2.7334e-06 -1.70943e-05 -2.08627e-06 -1.75968e-05 -1.3945e-06 -1.73731e-05 -6.36505e-07 -1.67843e-05 8.36504e-08 -1.56376e-05 6.92984e-07 -1.38749e-05 1.29138e-06 -1.17485e-05 1.92157e-06 -8.98349e-06 2.42026e-06 -6.49607e-06 2.48724e-06 -3.64698e-06 2.80577e-06 -6.43457e-07 2.65689e-06 2.53482e-06 2.87439e-06 5.47128e-06 2.80016e-06 8.20269e-06 2.53172e-06 1.0639e-05 2.23857e-06 1.27837e-05 1.88192e-06 1.44797e-05 1.37818e-06 1.58531e-05 9.52929e-07 1.67879e-05 4.31854e-07 1.73528e-05 -1.1126e-08 1.75405e-05 -4.75018e-07 1.75248e-05 -8.80969e-07 1.73133e-05 -1.13046e-06 1.69609e-05 -1.24579e-06 1.61386e-05 -1.08147e-06 1.47252e-05 -9.70319e-07 1.31553e-05 -6.01533e-07 1.12676e-05 -4.58715e-07 9.47533e-06 -4.69356e-07 7.7582e-06 -4.79976e-07 6.74711e-06 -6.93565e-07 5.93221e-06 -2.69451e-07 5.36877e-06 -2.9418e-07 5.00275e-06 -2.47923e-07 5.14965e-06 -1.73126e-07 5.7554e-06 -1.69408e-07 6.70552e-06 -1.20188e-07 7.52242e-06 1.85968e-07 7.4952e-06 7.12744e-07 6.45553e-06 1.0137e-06 5.20753e-06 7.68533e-07 3.49034e-06 -3.80711e-08 1.31134e-06 -1.07028e-06 -1.00794e-06 -1.76432e-06 -4.1003e-06 -2.04192e-06 -7.21753e-06 -2.58194e-06 -8.61552e-06 -2.14973e-06 -9.0979e-06 -1.32965e-06 -9.51567e-06 -1.68692e-06 -9.92759e-06 -1.1807e-06 -1.04305e-05 1.38053e-07 -1.09756e-05 6.93367e-07 -8.06241e-06 9.90789e-07 -7.63297e-06 -2.19012e-06 -6.35309e-06 4.07571e-06 -4.62485e-06 2.07229e-06 -3.21522e-06 2.02892e-07 -2.18438e-06 9.38099e-07 1.03386e-06 3.49848e-06 1.3971e-06 8.41458e-08 4.98676e-06 2.75056e-06 5.09891e-06 1.43099e-07 8.05309e-06 2.08343e-06 9.1651e-06 8.14493e-07 1.12606e-05 1.11023e-06 1.27716e-05 1.06905e-06 1.43232e-05 1.24332e-06 1.63985e-05 1.52778e-06 1.83182e-05 1.35561e-06 2.01701e-05 1.2834e-06 2.2343e-05 1.43108e-06 2.45129e-05 1.31661e-06 2.67454e-05 8.8065e-07 2.88498e-05 7.40743e-07 3.09674e-05 1.96704e-07 3.22612e-05 -1.16615e-07 -6.94095e-07 3.35006e-05 4.77586e-06 4.89432e-06 5.02257e-06 5.15873e-06 5.2582e-06 5.29439e-06 5.27125e-06 5.19987e-06 5.10307e-06 4.99192e-06 4.87785e-06 4.76861e-06 4.66384e-06 4.56525e-06 4.46722e-06 4.37158e-06 4.27663e-06 4.1797e-06 4.08242e-06 3.98252e-06 3.88151e-06 3.77979e-06 3.67559e-06 3.57345e-06 3.47096e-06 3.36604e-06 3.26219e-06 3.15626e-06 3.05144e-06 2.94735e-06 2.84301e-06 2.74061e-06 2.6374e-06 2.53565e-06 2.43429e-06 2.33439e-06 2.23738e-06 2.14205e-06 2.05222e-06 1.96864e-06 1.89255e-06 1.8278e-06 1.77437e-06 1.73405e-06 1.70889e-06 1.69762e-06 1.69966e-06 1.71173e-06 1.73308e-06 1.7591e-06 1.79214e-06 1.84342e-06 1.92116e-06 2.03262e-06 2.18516e-06 2.37221e-06 2.58683e-06 2.81547e-06 3.00962e-06 3.11992e-06 3.14107e-06 3.15993e-06 3.27586e-06 3.48448e-06 3.7023e-06 3.86658e-06 3.9705e-06 4.05101e-06 4.12853e-06 4.18229e-06 4.16506e-06 4.03766e-06 3.84517e-06 3.5508e-06 3.13717e-06 2.65045e-06 2.10089e-06 1.46358e-06 6.97838e-07 -1.7162e-07 -1.19226e-06 -2.41317e-06 -3.73538e-06 -5.20552e-06 -7.08811e-06 -9.26985e-06 -1.15255e-05 -1.38225e-05 -1.55397e-05 -1.62325e-05 -1.62818e-05 -1.59988e-05 -1.5223e-05 -1.40422e-05 -1.25422e-05 -1.07664e-05 -8.81333e-06 -6.75564e-06 -4.77894e-06 -2.99073e-06 -1.54964e-06 -4.92465e-07 2.51877e-07 8.39712e-07 1.56731e-06 2.69052e-06 4.20048e-06 5.52924e-06 5.8127e-06 5.1646e-06 4.00325e-06 3.39702e-06 4.27863e-06 6.27905e-06 8.45436e-06 9.87192e-06 9.41437e-06 6.48733e-06 1.82076e-06 -2.94838e-06 -7.19715e-06 -1.06537e-05 -1.33871e-05 -1.54734e-05 -1.68679e-05 -1.75044e-05 -1.74207e-05 -1.67277e-05 -1.54363e-05 -1.35148e-05 -1.10945e-05 -8.60728e-06 -5.8015e-06 -3.14462e-06 -2.70232e-07 2.52992e-06 5.06164e-06 7.30021e-06 9.18213e-06 1.05603e-05 1.15132e-05 1.19451e-05 1.1934e-05 1.14589e-05 1.0578e-05 9.44752e-06 8.20172e-06 7.12025e-06 6.14994e-06 5.5484e-06 5.08969e-06 4.62033e-06 4.14036e-06 3.44679e-06 3.17734e-06 2.88316e-06 2.63524e-06 2.46211e-06 2.2927e-06 2.17252e-06 2.35848e-06 3.07123e-06 4.08492e-06 4.85346e-06 4.81539e-06 3.7451e-06 1.98078e-06 -6.11385e-08 -2.64308e-06 -4.79281e-06 -6.12245e-06 -7.80937e-06 -8.99007e-06 -8.85202e-06 -8.15865e-06 -7.16786e-06 -9.35798e-06 -5.28227e-06 -3.20997e-06 -3.00708e-06 -2.06898e-06 1.4295e-06 1.51365e-06 4.26421e-06 4.40731e-06 6.49074e-06 7.30523e-06 8.41546e-06 9.48451e-06 1.07278e-05 1.22556e-05 1.36112e-05 1.48946e-05 1.63257e-05 1.76423e-05 1.8523e-05 1.92637e-05 1.94604e-05 1.93438e-05 1.86497e-05 -2.03836e-07 2.03836e-07 7.36952e-07 -9.40788e-07 2.14732e-06 -1.41037e-06 3.61246e-06 -1.46514e-06 4.84064e-06 -1.22817e-06 5.78728e-06 -9.46645e-07 6.37039e-06 -5.83109e-07 6.54717e-06 -1.76785e-07 6.31713e-06 2.3004e-07 5.68568e-06 6.31451e-07 4.70666e-06 9.79026e-07 3.39569e-06 1.31097e-06 1.6914e-06 1.70429e-06 -4.17182e-07 2.10858e-06 -2.34371e-06 1.92653e-06 -3.22478e-06 8.81076e-07 -3.30969e-06 8.49088e-08 -3.37075e-06 6.10603e-08 -3.69901e-06 3.28261e-07 -4.09632e-06 3.97306e-07 -4.4128e-06 3.16481e-07 -4.68558e-06 2.72784e-07 -4.68358e-06 -2.00396e-09 -4.36538e-06 -3.18204e-07 -3.90741e-06 -4.57968e-07 -3.16982e-06 -7.37587e-07 -2.30356e-06 -8.66257e-07 -1.63213e-06 -6.71436e-07 -7.46561e-07 -8.85567e-07 4.08634e-07 -1.1552e-06 1.42789e-06 -1.01926e-06 2.23564e-06 -8.0775e-07 2.99767e-06 -7.62026e-07 3.75149e-06 -7.53822e-07 4.60047e-06 -8.48974e-07 5.67158e-06 -1.07111e-06 6.93383e-06 -1.26225e-06 8.24888e-06 -1.31505e-06 9.49929e-06 -1.25041e-06 1.0496e-05 -9.96728e-07 1.10605e-05 -5.6446e-07 1.10945e-05 -3.40484e-08 1.04523e-05 6.42268e-07 9.07404e-06 1.37822e-06 6.93442e-06 2.13962e-06 4.06659e-06 2.86783e-06 1.08055e-06 2.98604e-06 -1.07298e-06 2.15353e-06 -1.93386e-06 8.6088e-07 -1.74525e-06 -1.88614e-07 -1.05514e-06 -6.90106e-07 -2.36648e-07 -8.18496e-07 5.33311e-07 -7.69958e-07 1.34107e-06 -8.07761e-07 2.42559e-06 -1.08452e-06 3.62639e-06 -1.2008e-06 4.86182e-06 -1.23544e-06 5.74665e-06 -8.84825e-07 6.65951e-06 -9.12863e-07 7.26354e-06 -6.04025e-07 7.34308e-06 -7.95401e-08 6.82237e-06 5.20705e-07 5.03368e-06 1.78869e-06 1.8117e-06 3.22198e-06 -1.58851e-06 3.40021e-06 -4.28788e-06 2.69937e-06 -6.40305e-06 2.11517e-06 -8.07261e-06 1.66955e-06 -9.43469e-06 1.36208e-06 -1.06531e-05 1.21843e-06 -1.1678e-05 1.02484e-06 -1.25967e-05 9.18712e-07 -1.34766e-05 8.79971e-07 -1.4204e-05 7.27345e-07 -1.48765e-05 6.72499e-07 -1.55121e-05 6.35638e-07 -1.59331e-05 4.21012e-07 -1.627e-05 3.36876e-07 -1.65068e-05 2.36744e-07 -1.65398e-05 3.30205e-08 -1.6494e-05 -4.57448e-08 -1.62834e-05 -2.10621e-07 -1.58465e-05 -4.36954e-07 -1.5319e-05 -5.27437e-07 -1.46884e-05 -6.30585e-07 -1.3835e-05 -8.53431e-07 -1.27751e-05 -1.05991e-06 -1.16973e-05 -1.07782e-06 -1.05035e-05 -1.19374e-06 -9.24855e-06 -1.25499e-06 -7.95912e-06 -1.28943e-06 -6.72815e-06 -1.23097e-06 -5.55736e-06 -1.17079e-06 -4.47456e-06 -1.0828e-06 -3.5035e-06 -9.7106e-07 -2.64994e-06 -8.53562e-07 -1.91624e-06 -7.337e-07 -1.30486e-06 -6.11376e-07 -7.78996e-07 -5.25864e-07 -3.33939e-07 -4.45057e-07 4.54818e-08 -3.79421e-07 3.76113e-07 -3.30631e-07 6.69268e-07 -2.93155e-07 9.35151e-07 -2.65883e-07 1.18203e-06 -2.46877e-07 1.42408e-06 -2.42052e-07 1.66563e-06 -2.41546e-07 1.91499e-06 -2.49366e-07 2.1918e-06 -2.76807e-07 2.5103e-06 -3.18505e-07 2.88643e-06 -3.76129e-07 3.3263e-06 -4.39871e-07 3.83251e-06 -5.06204e-07 4.39926e-06 -5.66748e-07 4.9909e-06 -5.91647e-07 5.56946e-06 -5.7856e-07 6.1404e-06 -5.70936e-07 6.73188e-06 -5.91482e-07 7.37468e-06 -6.42804e-07 8.07937e-06 -7.04689e-07 8.81076e-06 -7.31389e-07 9.48498e-06 -6.74215e-07 1.00068e-05 -5.21802e-07 1.03024e-05 -2.95656e-07 1.03683e-05 -6.58893e-08 1.02315e-05 1.36783e-07 1.0016e-05 2.15544e-07 9.6704e-06 3.45595e-07 9.04106e-06 6.29341e-07 8.07285e-06 9.68206e-07 6.84282e-06 1.23003e-06 5.58942e-06 1.2534e-06 4.57099e-06 1.01843e-06 3.90061e-06 6.70383e-07 3.56192e-06 3.38689e-07 3.52773e-06 3.41836e-08 3.63148e-06 -1.03746e-07 3.2567e-06 3.7478e-07 1.97463e-06 1.28207e-06 -3.1834e-07 2.29297e-06 -3.23176e-06 2.91342e-06 -6.1588e-06 2.92704e-06 -8.68827e-06 2.52947e-06 -1.0679e-05 1.99075e-06 -1.21604e-05 1.48142e-06 -1.31208e-05 9.60331e-07 -1.36331e-05 5.12313e-07 -1.38244e-05 1.91322e-07 -1.36634e-05 -1.61059e-07 -1.31644e-05 -4.98924e-07 -1.24155e-05 -7.48934e-07 -1.13874e-05 -1.02807e-06 -1.01533e-05 -1.23416e-06 -8.85743e-06 -1.29584e-06 -7.51416e-06 -1.34326e-06 -6.18614e-06 -1.32803e-06 -4.8929e-06 -1.29323e-06 -3.66783e-06 -1.22508e-06 -2.53783e-06 -1.13e-06 -1.51052e-06 -1.0273e-06 -5.64993e-07 -9.45529e-07 3.0136e-07 -8.66353e-07 1.08689e-06 -7.85533e-07 1.75615e-06 -6.69257e-07 2.29643e-06 -5.40282e-07 2.76726e-06 -4.7083e-07 3.16046e-06 -3.93194e-07 3.45279e-06 -2.92329e-07 3.66641e-06 -2.1362e-07 3.84235e-06 -1.75948e-07 4.07863e-06 -2.36281e-07 4.24739e-06 -1.68755e-07 4.311e-06 -6.36152e-08 4.31619e-06 -5.18395e-09 4.34223e-06 -2.60409e-08 4.41524e-06 -7.3013e-08 4.44663e-06 -3.13891e-08 4.47148e-06 -2.48484e-08 4.58253e-06 -1.11049e-07 4.60088e-06 -1.83492e-08 4.62091e-06 -2.00362e-08 4.67203e-06 -5.11158e-08 4.38323e-06 2.888e-07 4.19178e-06 1.91454e-07 4.2394e-06 -4.76278e-08 4.19626e-06 4.31459e-08 4.36394e-06 -1.67683e-07 5.11623e-06 -7.52294e-07 5.74541e-06 -6.29171e-07 5.6215e-06 1.23901e-07 5.14118e-06 4.80326e-07 4.95348e-06 1.87698e-07 5.17121e-06 -2.17735e-07 5.37074e-06 -1.99524e-07 5.17724e-06 1.93494e-07 4.4786e-06 6.98643e-07 3.54541e-06 9.33189e-07 2.64275e-06 9.02665e-07 1.49999e-06 1.14276e-06 1.49999e-06 3.76147e-07 -1.72311e-07 1.79898e-06 -2.36362e-06 3.23449e-06 -2.84588e-06 4.6364e-06 -2.86705e-06 5.89983e-06 -2.4916e-06 6.91767e-06 -1.96449e-06 7.61777e-06 -1.28321e-06 8.02512e-06 -5.84131e-07 8.14537e-06 1.09788e-07 7.95344e-06 8.23385e-07 7.49829e-06 1.43417e-06 6.78316e-06 2.02611e-06 5.91946e-06 2.56799e-06 4.86052e-06 3.16752e-06 3.26961e-06 3.51744e-06 1.00893e-06 3.14175e-06 -1.2706e-06 2.36444e-06 -2.86431e-06 1.65477e-06 -3.58958e-06 1.05353e-06 -3.87451e-06 6.82242e-07 -3.98752e-06 4.29483e-07 -3.89679e-06 1.82059e-07 -3.70532e-06 -1.93474e-07 -3.35104e-06 -6.72483e-07 -2.87267e-06 -9.36341e-07 -2.31155e-06 -1.2987e-06 -1.56716e-06 -1.61065e-06 -6.11866e-07 -1.62673e-06 3.49929e-07 -1.84736e-06 1.31589e-06 -2.12116e-06 2.1167e-06 -1.82006e-06 2.74624e-06 -1.4373e-06 3.28402e-06 -1.2998e-06 3.84446e-06 -1.31426e-06 4.5944e-06 -1.59891e-06 5.59404e-06 -2.07076e-06 6.85918e-06 -2.52739e-06 8.28483e-06 -2.7407e-06 9.79078e-06 -2.75636e-06 1.11525e-05 -2.35841e-06 1.22442e-05 -1.65618e-06 1.29624e-05 -7.52252e-07 1.333e-05 2.74601e-07 1.31863e-05 1.52199e-06 1.25052e-05 2.82066e-06 1.13759e-05 3.99712e-06 9.57133e-06 4.79066e-06 7.21197e-06 4.51288e-06 4.58494e-06 3.48792e-06 2.17938e-06 2.21694e-06 7.23033e-07 7.6624e-07 2.73629e-07 -3.69092e-07 5.86404e-07 -1.08273e-06 1.52699e-06 -1.74834e-06 2.79644e-06 -2.35397e-06 4.31657e-06 -2.72093e-06 5.27228e-06 -2.19114e-06 4.5736e-06 -1.86149e-07 2.45177e-06 1.20897e-06 -1.43242e-06 3.28016e-06 -5.64115e-06 4.1292e-06 -9.30945e-06 4.189e-06 -1.21366e-05 4.61581e-06 -1.39556e-05 5.041e-06 -1.53227e-05 4.76737e-06 -1.66752e-05 4.05179e-06 -1.79029e-05 3.34292e-06 -1.8875e-05 2.64167e-06 -1.95914e-05 2.07843e-06 -2.01736e-05 1.80064e-06 -2.05966e-05 1.44782e-06 -2.08669e-05 1.18908e-06 -2.10804e-05 1.09343e-06 -2.11515e-05 7.98422e-07 -2.11215e-05 6.42527e-07 -2.1001e-05 5.1514e-07 -2.06978e-05 1.17775e-07 -2.03441e-05 -1.67531e-08 -1.98675e-05 -2.39889e-07 -1.92762e-05 -5.58308e-07 -1.85838e-05 -7.38167e-07 -1.77079e-05 -1.0865e-06 -1.67761e-05 -1.36874e-06 -1.58224e-05 -1.48114e-06 -1.46613e-05 -1.79167e-06 -1.33789e-05 -2.13586e-06 -1.20945e-05 -2.34428e-06 -1.07057e-05 -2.46662e-06 -9.24751e-06 -2.65193e-06 -7.79175e-06 -2.71075e-06 -6.36876e-06 -2.71242e-06 -5.01879e-06 -2.58094e-06 -3.75171e-06 -2.43787e-06 -2.62263e-06 -2.21188e-06 -1.62462e-06 -1.96907e-06 -7.55813e-07 -1.72237e-06 -3.63616e-08 -1.45315e-06 5.85111e-07 -1.23285e-06 1.09973e-06 -1.04048e-06 1.52841e-06 -8.73739e-07 1.89203e-06 -7.43042e-07 2.20111e-06 -6.3971e-07 2.48181e-06 -5.73855e-07 2.74275e-06 -5.26818e-07 2.98918e-06 -4.93314e-07 3.23923e-06 -4.92097e-07 3.50284e-06 -5.05155e-07 3.78028e-06 -5.26803e-07 4.0912e-06 -5.87731e-07 4.45245e-06 -6.79751e-07 4.89316e-06 -8.16843e-07 5.40541e-06 -9.52123e-07 5.99306e-06 -1.09386e-06 6.68179e-06 -1.25548e-06 7.42021e-06 -1.33007e-06 8.11202e-06 -1.27037e-06 8.74661e-06 -1.20553e-06 9.39668e-06 -1.24156e-06 1.01065e-05 -1.35261e-06 1.09115e-05 -1.50965e-06 1.18514e-05 -1.67136e-06 1.29055e-05 -1.72826e-06 1.39905e-05 -1.60687e-06 1.49688e-05 -1.27393e-06 1.55962e-05 -6.93243e-07 1.56835e-05 4.93962e-08 1.52001e-05 6.99001e-07 1.42948e-05 1.25084e-06 1.30165e-05 1.90765e-06 1.13965e-05 2.58823e-06 9.53496e-06 3.09158e-06 7.44142e-06 3.34695e-06 5.26829e-06 3.19156e-06 3.31902e-06 2.61965e-06 1.8534e-06 1.80432e-06 8.76247e-07 1.01133e-06 -8.35615e-08 8.56063e-07 -1.95887e-06 2.25008e-06 -4.78752e-06 4.11073e-06 -7.76173e-06 5.26718e-06 -1.03911e-05 5.54281e-06 -1.25552e-05 5.09111e-06 -1.42087e-05 4.18304e-06 -1.53225e-05 3.10452e-06 -1.59388e-05 2.09774e-06 -1.61336e-05 1.15513e-06 -1.59952e-05 3.7393e-07 -1.55978e-05 -2.06149e-07 -1.49535e-05 -8.05319e-07 -1.40764e-05 -1.37602e-06 -1.29666e-05 -1.85876e-06 -1.16372e-05 -2.35743e-06 -1.01927e-05 -2.67868e-06 -8.69642e-06 -2.79214e-06 -7.20324e-06 -2.83644e-06 -5.77748e-06 -2.75379e-06 -4.40792e-06 -2.6628e-06 -3.10939e-06 -2.5236e-06 -1.89669e-06 -2.34271e-06 -7.57695e-07 -2.1663e-06 3.36696e-07 -2.03992e-06 1.36628e-06 -1.89593e-06 2.35656e-06 -1.77581e-06 3.26843e-06 -1.58113e-06 4.08403e-06 -1.35588e-06 4.7989e-06 -1.1857e-06 5.37143e-06 -9.65715e-07 5.87236e-06 -7.93265e-07 6.3689e-06 -7.1016e-07 6.84258e-06 -6.49622e-07 7.40956e-06 -8.03261e-07 7.92291e-06 -6.82107e-07 8.40911e-06 -5.49812e-07 9.05455e-06 -6.50624e-07 1.00013e-05 -9.72805e-07 1.08921e-05 -9.63829e-07 1.11769e-05 -3.16122e-07 1.11116e-05 4.0394e-08 1.09796e-05 2.09973e-08 1.05097e-05 4.51536e-07 1.01279e-05 3.6172e-07 1.00585e-05 1.83549e-08 1.01621e-05 1.85198e-07 1.00909e-05 2.62656e-07 9.56529e-06 4.77942e-07 8.65601e-06 9.52427e-07 8.3015e-06 1.86828e-07 8.70916e-06 -1.15995e-06 9.10004e-06 -1.02005e-06 9.25717e-06 -3.32273e-08 9.39023e-06 3.47267e-07 9.31867e-06 2.59248e-07 8.69246e-06 4.08477e-07 7.56175e-06 9.31184e-07 6.07683e-06 1.67842e-06 4.55945e-06 2.21602e-06 3.37004e-06 2.1226e-06 2.43642e-06 1.83628e-06 1.39832e-06 2.18086e-06 2.89831e-06 1.10805e-06 -1.28036e-06 2.41032e-06 -3.6659e-06 3.75413e-06 -4.18969e-06 4.98125e-06 -4.09417e-06 6.07579e-06 -3.58614e-06 6.92866e-06 -2.81736e-06 7.52725e-06 -1.8818e-06 7.90247e-06 -9.59346e-07 8.02697e-06 -1.47184e-08 7.95292e-06 8.97441e-07 7.733e-06 1.65409e-06 7.48001e-06 2.27909e-06 7.19134e-06 2.85666e-06 6.83962e-06 3.51925e-06 6.18905e-06 4.168e-06 4.8365e-06 4.4943e-06 3.05556e-06 4.14539e-06 1.5258e-06 3.18452e-06 3.64397e-07 2.21493e-06 -2.94337e-07 1.34098e-06 -5.2902e-07 6.64165e-07 -5.83427e-07 2.36467e-07 -4.62334e-07 -3.14566e-07 -3.47882e-07 -7.86935e-07 -2.29557e-07 -1.05467e-06 4.82619e-08 -1.57652e-06 2.60609e-07 -1.823e-06 7.28618e-07 -2.09474e-06 1.40047e-06 -2.51922e-06 1.8041e-06 -2.52478e-06 1.9618e-06 -1.97776e-06 1.8973e-06 -1.3728e-06 1.70606e-06 -1.10856e-06 1.62971e-06 -1.23791e-06 1.80029e-06 -1.76949e-06 2.3462e-06 -2.61667e-06 3.35807e-06 -3.53926e-06 4.75675e-06 -4.13937e-06 6.35932e-06 -4.35893e-06 7.84406e-06 -3.84315e-06 9.10967e-06 -2.92179e-06 1.01017e-05 -1.7443e-06 1.09175e-05 -5.41218e-07 1.14976e-05 9.41897e-07 1.1878e-05 2.44027e-06 1.19694e-05 3.90573e-06 1.14148e-05 5.34523e-06 1.02379e-05 5.6898e-06 8.17879e-06 5.54706e-06 6.19464e-06 4.20109e-06 4.24411e-06 2.71677e-06 2.76401e-06 1.11101e-06 2.12999e-06 -4.48713e-07 2.77111e-06 -2.38947e-06 3.78504e-06 -3.3679e-06 2.68864e-06 -1.62453e-06 -9.35246e-07 1.43274e-06 -5.43113e-06 4.30974e-06 -9.48658e-06 5.26442e-06 -1.22293e-05 6.02287e-06 -1.44478e-05 6.3477e-06 -1.65366e-05 6.27778e-06 -1.8075e-05 6.1542e-06 -1.87291e-05 5.69516e-06 -1.8945e-05 4.98323e-06 -1.91236e-05 4.23039e-06 -1.93049e-05 3.5242e-06 -1.94421e-05 2.77894e-06 -1.95498e-05 2.18611e-06 -1.95567e-05 1.80749e-06 -1.96152e-05 1.50632e-06 -1.95296e-05 1.10356e-06 -1.93345e-05 8.98328e-07 -1.91655e-05 6.29423e-07 -1.89449e-05 4.21879e-07 -1.85856e-05 1.55847e-07 -1.8218e-05 -2.49866e-07 -1.77272e-05 -5.07477e-07 -1.70736e-05 -8.93547e-07 -1.64398e-05 -1.19213e-06 -1.57492e-05 -1.42872e-06 -1.49038e-05 -1.93195e-06 -1.3934e-05 -2.33845e-06 -1.29046e-05 -2.51059e-06 -1.18035e-05 -2.89278e-06 -1.05842e-05 -3.35512e-06 -9.274e-06 -3.6545e-06 -7.83555e-06 -3.90506e-06 -6.34172e-06 -4.14576e-06 -4.8456e-06 -4.20687e-06 -3.3707e-06 -4.18732e-06 -1.93842e-06 -4.01322e-06 -6.3673e-07 -3.73956e-06 5.61628e-07 -3.41024e-06 1.60605e-06 -3.01349e-06 2.50747e-06 -2.62379e-06 3.26091e-06 -2.2066e-06 3.85365e-06 -1.82558e-06 4.3529e-06 -1.53974e-06 4.77383e-06 -1.29467e-06 5.11649e-06 -1.0857e-06 5.39929e-06 -9.22515e-07 5.64828e-06 -8.22844e-07 5.87543e-06 -7.53964e-07 6.07626e-06 -6.94146e-07 6.27081e-06 -6.86644e-07 6.4646e-06 -6.98951e-07 6.66158e-06 -7.23783e-07 6.86854e-06 -7.94687e-07 7.11083e-06 -9.22037e-07 7.43505e-06 -1.14106e-06 7.80888e-06 -1.32596e-06 8.21424e-06 -1.49922e-06 8.70219e-06 -1.74342e-06 9.26469e-06 -1.89256e-06 9.82933e-06 -1.83501e-06 1.03147e-05 -1.69088e-06 1.07011e-05 -1.62802e-06 1.10221e-05 -1.67362e-06 1.13155e-05 -1.80295e-06 1.16687e-05 -2.02459e-06 1.22212e-05 -2.28076e-06 1.29523e-05 -2.33796e-06 1.37331e-05 -2.05479e-06 1.44075e-05 -1.36759e-06 1.46421e-05 -1.85222e-07 1.43325e-05 1.00858e-06 1.37012e-05 1.8822e-06 1.28415e-05 2.76734e-06 1.17439e-05 3.68576e-06 1.04024e-05 4.43313e-06 8.84561e-06 4.90372e-06 7.08713e-06 4.95004e-06 5.16085e-06 4.54593e-06 3.07441e-06 3.89076e-06 8.5231e-07 3.23343e-06 -1.715e-06 3.42337e-06 -4.65371e-06 5.1888e-06 -7.62242e-06 7.07943e-06 -1.00368e-05 7.68157e-06 -1.18465e-05 7.35246e-06 -1.31481e-05 6.39276e-06 -1.39159e-05 4.95079e-06 -1.42784e-05 3.46706e-06 -1.4293e-05 2.11233e-06 -1.40997e-05 9.61865e-07 -1.3789e-05 6.32224e-08 -1.32741e-05 -7.21072e-07 -1.25887e-05 -1.49074e-06 -1.17297e-05 -2.23497e-06 -1.06233e-05 -2.96515e-06 -9.31486e-06 -3.6659e-06 -7.88765e-06 -4.10589e-06 -6.41648e-06 -4.2633e-06 -5.0074e-06 -4.24553e-06 -3.68844e-06 -4.07274e-06 -2.4655e-06 -3.88573e-06 -1.33859e-06 -3.6505e-06 -2.86036e-07 -3.39526e-06 7.07102e-07 -3.15943e-06 1.62418e-06 -2.957e-06 2.49874e-06 -2.7705e-06 3.33335e-06 -2.61042e-06 4.12947e-06 -2.37726e-06 4.86005e-06 -2.08646e-06 5.49493e-06 -1.82059e-06 6.02293e-06 -1.49371e-06 6.44124e-06 -1.21157e-06 6.79011e-06 -1.05903e-06 7.10834e-06 -9.67856e-07 7.50205e-06 -1.19697e-06 7.8159e-06 -9.95954e-07 8.00082e-06 -7.34727e-07 8.32388e-06 -9.73683e-07 9.08457e-06 -1.7335e-06 1.04204e-05 -2.29969e-06 1.1837e-05 -1.73265e-06 1.29091e-05 -1.03175e-06 1.38826e-05 -9.52488e-07 1.45405e-05 -2.06396e-07 1.40281e-05 8.74114e-07 1.26556e-05 1.39091e-06 1.17626e-05 1.07817e-06 1.17236e-05 3.0162e-07 1.18288e-05 3.72774e-07 1.17918e-05 9.89405e-07 1.14393e-05 5.39316e-07 1.05591e-05 -2.79736e-07 9.70698e-06 -1.67922e-07 9.72851e-06 -5.47515e-08 1.0357e-05 -2.81188e-07 1.05549e-05 6.12647e-08 9.59941e-06 1.36401e-06 7.84328e-06 2.68731e-06 5.8649e-06 3.6568e-06 4.21724e-06 3.86368e-06 2.9705e-06 3.36934e-06 1.95756e-06 2.84921e-06 1.07116e-06 3.06726e-06 3.96947e-06 1.45319e-06 -2.73355e-06 2.58556e-06 -4.79826e-06 3.80378e-06 -5.40791e-06 4.88586e-06 -5.17626e-06 5.7547e-06 -4.45498e-06 6.41305e-06 -3.4757e-06 6.89005e-06 -2.3588e-06 7.15458e-06 -1.22388e-06 7.22812e-06 -8.82559e-08 7.18656e-06 9.38993e-07 7.11033e-06 1.73033e-06 7.0668e-06 2.32262e-06 6.99892e-06 2.92455e-06 6.9936e-06 3.52456e-06 6.95067e-06 4.21093e-06 6.58235e-06 4.86262e-06 5.68752e-06 5.04022e-06 4.45563e-06 4.41641e-06 3.22531e-06 3.44526e-06 2.33675e-06 2.22953e-06 2.01911e-06 9.81804e-07 1.98111e-06 2.74466e-07 2.02344e-06 -3.5689e-07 2.20086e-06 -9.64355e-07 2.18697e-06 -1.04078e-06 2.08018e-06 -1.46974e-06 1.93303e-06 -1.67585e-06 1.77172e-06 -1.93343e-06 1.61432e-06 -2.36182e-06 1.09932e-06 -2.00978e-06 3.00913e-07 -1.17935e-06 -5.77625e-07 -4.94266e-07 -1.42679e-06 -2.59404e-07 -2.01577e-06 -6.48925e-07 -2.02565e-06 -1.75961e-06 -1.39875e-06 -3.24357e-06 -2.56759e-07 -4.68125e-06 1.28774e-06 -5.68387e-06 2.96797e-06 -6.03916e-06 4.45723e-06 -5.33241e-06 5.69247e-06 -4.15703e-06 6.73358e-06 -2.78541e-06 7.65186e-06 -1.4595e-06 8.51138e-06 8.23754e-08 9.36196e-06 1.58969e-06 9.86357e-06 3.40411e-06 1.0238e-05 4.97081e-06 9.82662e-06 6.10117e-06 9.00195e-06 6.37172e-06 7.5948e-06 5.60824e-06 5.75747e-06 4.5541e-06 4.13054e-06 2.73794e-06 3.33738e-06 3.44446e-07 3.03144e-06 -2.08353e-06 4.59192e-07 -7.95658e-07 -4.30824e-06 3.14291e-06 -8.77013e-06 5.89463e-06 -1.17755e-05 7.31509e-06 -1.43441e-05 7.83301e-06 -1.61387e-05 7.81749e-06 -1.7183e-05 7.39206e-06 -1.7863e-05 6.95769e-06 -1.81577e-05 6.44894e-06 -1.81678e-05 5.70525e-06 -1.7972e-05 4.78741e-06 -1.77759e-05 4.03428e-06 -1.75806e-05 3.32897e-06 -1.74651e-05 2.66341e-06 -1.74573e-05 2.17829e-06 -1.7335e-05 1.6852e-06 -1.72511e-05 1.42246e-06 -1.71416e-05 9.94008e-07 -1.69642e-05 7.2096e-07 -1.68353e-05 5.00537e-07 -1.66123e-05 1.98843e-07 -1.62172e-05 -2.39201e-07 -1.58837e-05 -5.83441e-07 -1.54749e-05 -9.16274e-07 -1.49247e-05 -1.44368e-06 -1.42828e-05 -1.83407e-06 -1.35181e-05 -2.19337e-06 -1.27367e-05 -2.71342e-06 -1.19271e-05 -3.14801e-06 -1.09505e-05 -3.4872e-06 -9.82373e-06 -4.01953e-06 -8.67027e-06 -4.50858e-06 -7.40716e-06 -4.91762e-06 -5.94497e-06 -5.36725e-06 -4.39605e-06 -5.69468e-06 -2.81648e-06 -5.78644e-06 -1.25125e-06 -5.75256e-06 2.94128e-07 -5.5586e-06 1.71924e-06 -5.16467e-06 2.96781e-06 -4.65881e-06 4.05819e-06 -4.10387e-06 4.99267e-06 -3.55826e-06 5.75465e-06 -2.96858e-06 6.32831e-06 -2.39924e-06 6.79169e-06 -2.00312e-06 7.20659e-06 -1.70957e-06 7.56038e-06 -1.43949e-06 7.84388e-06 -1.20601e-06 8.10177e-06 -1.08074e-06 8.34637e-06 -9.98568e-07 8.5756e-06 -9.23374e-07 8.80607e-06 -9.17113e-07 9.03272e-06 -9.25595e-07 9.26507e-06 -9.56139e-07 9.48533e-06 -1.01495e-06 9.75947e-06 -1.19618e-06 1.01395e-05 -1.52105e-06 1.05709e-05 -1.75737e-06 1.106e-05 -1.98833e-06 1.16586e-05 -2.342e-06 1.23539e-05 -2.58795e-06 1.30975e-05 -2.57856e-06 1.37965e-05 -2.38987e-06 1.42698e-05 -2.10133e-06 1.43663e-05 -1.77009e-06 1.41274e-05 -1.5641e-06 1.3655e-05 -1.55214e-06 1.32455e-05 -1.87126e-06 1.31717e-05 -2.26419e-06 1.3282e-05 -2.1651e-06 1.34494e-05 -1.53497e-06 1.36438e-05 -3.79619e-07 1.35943e-05 1.05807e-06 1.32024e-05 2.27408e-06 1.26182e-05 3.35158e-06 1.1775e-05 4.52895e-06 1.07706e-05 5.4375e-06 9.72805e-06 5.94629e-06 8.38716e-06 6.29093e-06 6.44966e-06 6.48342e-06 4.05057e-06 6.28985e-06 1.34028e-06 5.94372e-06 -1.78319e-06 6.54684e-06 -4.82475e-06 8.23036e-06 -7.4416e-06 9.69627e-06 -9.38846e-06 9.62843e-06 -1.06015e-05 8.56547e-06 -1.12947e-05 7.08598e-06 -1.15962e-05 5.2523e-06 -1.1588e-05 3.45882e-06 -1.13957e-05 1.92011e-06 -1.11538e-05 7.19958e-07 -1.08569e-05 -2.33741e-07 -1.04506e-05 -1.12734e-06 -9.91091e-06 -2.03045e-06 -9.17083e-06 -2.97504e-06 -8.11908e-06 -4.01691e-06 -6.78329e-06 -5.00169e-06 -5.21467e-06 -5.67451e-06 -3.58277e-06 -5.8952e-06 -2.02109e-06 -5.80721e-06 -5.69335e-07 -5.5245e-06 8.18492e-07 -5.27356e-06 2.09376e-06 -4.92577e-06 3.24944e-06 -4.55095e-06 4.27553e-06 -4.18553e-06 5.19953e-06 -3.88099e-06 6.06023e-06 -3.6312e-06 6.87869e-06 -3.42888e-06 7.67378e-06 -3.17234e-06 8.37211e-06 -2.78479e-06 8.86028e-06 -2.30876e-06 9.20593e-06 -1.83936e-06 9.48429e-06 -1.48993e-06 9.66308e-06 -1.23782e-06 9.68385e-06 -9.8863e-07 9.71337e-06 -1.22649e-06 1.00157e-05 -1.29827e-06 1.0231e-05 -9.50012e-07 9.96708e-06 -7.09793e-07 9.22255e-06 -9.88964e-07 9.14178e-06 -2.21893e-06 1.05035e-05 -3.09441e-06 1.21538e-05 -2.68202e-06 1.33229e-05 -2.12154e-06 1.46969e-05 -1.58039e-06 1.59463e-05 -3.7531e-07 1.57706e-05 1.56656e-06 1.43286e-05 2.52024e-06 1.28493e-05 1.78087e-06 1.23372e-05 8.84934e-07 1.26332e-05 6.93329e-07 1.24827e-05 6.89818e-07 1.1425e-05 7.78019e-07 1.05993e-05 6.57765e-07 1.07209e-05 -1.76353e-07 1.10296e-05 -5.89941e-07 1.05713e-05 5.19631e-07 9.22297e-06 2.71233e-06 7.3169e-06 4.59339e-06 5.37377e-06 5.59993e-06 3.82364e-06 5.41381e-06 2.52549e-06 4.66749e-06 1.42342e-06 3.95129e-06 7.46823e-07 3.74386e-06 4.71629e-06 1.36682e-06 -4.10037e-06 2.54603e-06 -5.97748e-06 3.51617e-06 -6.37805e-06 4.26644e-06 -5.92653e-06 4.85351e-06 -5.04205e-06 5.29241e-06 -3.91461e-06 5.60628e-06 -2.67266e-06 5.79199e-06 -1.40959e-06 5.88471e-06 -1.80974e-07 5.94943e-06 8.74278e-07 5.96134e-06 1.71841e-06 6.01324e-06 2.27072e-06 6.11073e-06 2.82706e-06 6.27223e-06 3.36306e-06 6.51217e-06 3.97099e-06 6.66672e-06 4.70808e-06 6.48505e-06 5.22189e-06 5.8615e-06 5.03996e-06 5.07558e-06 4.23118e-06 4.3779e-06 2.92721e-06 3.74771e-06 1.61199e-06 3.33202e-06 6.90159e-07 3.00639e-06 -3.1264e-08 2.79657e-06 -7.54531e-07 2.64337e-06 -8.87576e-07 2.30148e-06 -1.12785e-06 1.79777e-06 -1.17214e-06 1.38078e-06 -1.51644e-06 5.27052e-07 -1.50809e-06 -8.39856e-07 -6.42873e-07 -2.3477e-06 3.28497e-07 -3.76477e-06 9.22796e-07 -4.75852e-06 7.34351e-07 -5.20356e-06 -2.03884e-07 -5.01352e-06 -1.94966e-06 -4.30017e-06 -3.95692e-06 -3.24322e-06 -5.7382e-06 -1.88473e-06 -7.04236e-06 -5.09642e-07 -7.41425e-06 8.92835e-07 -6.73489e-06 2.08839e-06 -5.35258e-06 3.09705e-06 -3.79407e-06 4.10202e-06 -2.46447e-06 5.1589e-06 -9.74508e-07 6.13081e-06 6.17788e-07 6.98503e-06 2.54989e-06 7.72153e-06 4.23431e-06 7.8744e-06 5.94831e-06 7.60349e-06 6.64263e-06 6.42348e-06 6.78825e-06 5.21294e-06 5.76464e-06 3.85073e-06 4.10015e-06 3.11196e-06 1.08322e-06 5.18626e-07 5.09804e-07 -4.31102e-06 4.03399e-06 -8.6906e-06 7.52249e-06 -1.19917e-05 9.19573e-06 -1.40786e-05 9.40203e-06 -1.54124e-05 9.16675e-06 -1.61524e-05 8.55754e-06 -1.65525e-05 7.79208e-06 -1.65957e-05 7.00091e-06 -1.63765e-05 6.22978e-06 -1.61455e-05 5.47421e-06 -1.58462e-05 4.48818e-06 -1.567e-05 3.85802e-06 -1.54461e-05 3.10512e-06 -1.52331e-05 2.45038e-06 -1.51043e-05 2.04947e-06 -1.49415e-05 1.52244e-06 -1.47281e-05 1.20903e-06 -1.45911e-05 8.57025e-07 -1.44217e-05 5.51516e-07 -1.41464e-05 2.25267e-07 -1.38636e-05 -8.39305e-08 -1.35595e-05 -5.4329e-07 -1.318e-05 -9.63016e-07 -1.27048e-05 -1.39148e-06 -1.21631e-05 -1.98531e-06 -1.15492e-05 -2.44804e-06 -1.08653e-05 -2.87719e-06 -1.01588e-05 -3.41992e-06 -9.38834e-06 -3.91852e-06 -8.49597e-06 -4.37957e-06 -7.5744e-06 -4.94111e-06 -6.56719e-06 -5.51579e-06 -5.40228e-06 -6.08252e-06 -4.04182e-06 -6.72771e-06 -2.48339e-06 -7.25311e-06 -8.17591e-07 -7.45223e-06 8.54102e-07 -7.42425e-06 2.4825e-06 -7.18699e-06 4.06532e-06 -6.7475e-06 5.44162e-06 -6.03511e-06 6.58178e-06 -5.24404e-06 7.54723e-06 -4.5237e-06 8.31379e-06 -3.73514e-06 8.84546e-06 -2.93091e-06 9.19676e-06 -2.35441e-06 9.47683e-06 -1.98965e-06 9.72303e-06 -1.68568e-06 9.91863e-06 -1.40161e-06 1.00902e-05 -1.2523e-06 1.02348e-05 -1.14319e-06 1.03737e-05 -1.06223e-06 1.05162e-05 -1.05963e-06 1.06491e-05 -1.05853e-06 1.0779e-05 -1.08608e-06 1.08849e-05 -1.12079e-06 1.10399e-05 -1.3512e-06 1.12644e-05 -1.74556e-06 1.15559e-05 -2.04883e-06 1.20335e-05 -2.46593e-06 1.27513e-05 -3.05977e-06 1.36503e-05 -3.48698e-06 1.4669e-05 -3.59725e-06 1.57936e-05 -3.51452e-06 1.68224e-05 -3.1301e-06 1.74222e-05 -2.36992e-06 1.72694e-05 -1.4112e-06 1.64952e-05 -7.77956e-07 1.54052e-05 -7.81314e-07 1.44408e-05 -1.29977e-06 1.39587e-05 -1.68302e-06 1.35794e-05 -1.1557e-06 1.32515e-05 -5.16527e-08 1.31038e-05 1.20572e-06 1.28509e-05 2.527e-06 1.23733e-05 3.8292e-06 1.17435e-05 5.15869e-06 1.09232e-05 6.25787e-06 9.95251e-06 6.91695e-06 8.79145e-06 7.45198e-06 7.22773e-06 8.04715e-06 5.06809e-06 8.44949e-06 2.26302e-06 8.74879e-06 -8.87308e-07 9.69717e-06 -3.74272e-06 1.10858e-05 -5.93189e-06 1.18854e-05 -7.51324e-06 1.12098e-05 -8.49194e-06 9.54417e-06 -8.91913e-06 7.51318e-06 -9.01121e-06 5.34438e-06 -8.98758e-06 3.43518e-06 -9.03548e-06 1.96801e-06 -9.17803e-06 8.62508e-07 -9.25062e-06 -1.61154e-07 -9.16545e-06 -1.21251e-06 -8.92318e-06 -2.27271e-06 -8.43015e-06 -3.46807e-06 -7.50169e-06 -4.94538e-06 -6.18661e-06 -6.31677e-06 -4.52143e-06 -7.33969e-06 -2.74413e-06 -7.67251e-06 -1.00755e-06 -7.54379e-06 6.35299e-07 -7.16734e-06 2.2136e-06 -6.85186e-06 3.78727e-06 -6.49944e-06 5.28372e-06 -6.0474e-06 6.63962e-06 -5.54143e-06 7.86093e-06 -5.1023e-06 8.9814e-06 -4.75167e-06 1.0143e-05 -4.59051e-06 1.13652e-05 -4.39455e-06 1.24837e-05 -3.90322e-06 1.3304e-05 -3.12906e-06 1.37551e-05 -2.29046e-06 1.38014e-05 -1.5363e-06 1.36636e-05 -1.1e-06 1.35359e-05 -8.60939e-07 1.29165e-05 -6.07022e-07 1.23422e-05 -7.24056e-07 1.23755e-05 -9.83235e-07 1.27884e-05 -1.1227e-06 1.26859e-05 -8.86534e-07 1.17394e-05 -1.27235e-06 1.12876e-05 -2.64265e-06 1.20553e-05 -3.44971e-06 1.3001e-05 -3.06719e-06 1.40948e-05 -2.67422e-06 1.56319e-05 -1.91239e-06 1.68766e-05 3.21813e-07 1.66502e-05 2.74666e-06 1.51092e-05 3.32182e-06 1.38341e-05 2.16008e-06 1.34921e-05 1.0353e-06 1.3061e-05 1.12097e-06 1.21495e-05 1.6895e-06 1.15557e-05 1.25151e-06 1.13414e-05 3.8008e-08 1.08082e-05 -5.67163e-08 9.59461e-06 1.73319e-06 7.89509e-06 4.41184e-06 6.12167e-06 6.36681e-06 4.53906e-06 7.18254e-06 3.25321e-06 6.69966e-06 2.10759e-06 5.81311e-06 1.08468e-06 4.9742e-06 5.24932e-07 4.3036e-06 5.24122e-06 1.22184e-06 -5.32221e-06 2.17077e-06 -6.92641e-06 2.69524e-06 -6.90252e-06 3.01975e-06 -6.25103e-06 3.25156e-06 -5.27386e-06 3.42239e-06 -4.08544e-06 3.56126e-06 -2.81153e-06 3.68624e-06 -1.53457e-06 3.86046e-06 -3.55194e-07 4.0976e-06 6.37131e-07 4.33471e-06 1.4813e-06 4.5829e-06 2.02253e-06 4.83366e-06 2.5763e-06 5.09614e-06 3.10058e-06 5.42993e-06 3.63721e-06 5.80126e-06 4.33674e-06 6.0546e-06 4.96855e-06 5.9622e-06 5.13236e-06 5.55696e-06 4.63641e-06 4.99592e-06 3.48826e-06 4.39335e-06 2.21456e-06 3.89695e-06 1.18656e-06 3.49212e-06 3.73566e-07 3.04022e-06 -3.02631e-07 2.66138e-06 -5.08734e-07 2.06991e-06 -5.36376e-07 1.45766e-06 -5.59892e-07 8.80969e-07 -9.39746e-07 -3.47207e-07 -2.79914e-07 -2.28838e-06 1.2983e-06 -4.46888e-06 2.50899e-06 -6.23539e-06 2.68931e-06 -7.21082e-06 1.70978e-06 -7.42487e-06 1.01593e-08 -7.28072e-06 -2.0938e-06 -6.87413e-06 -4.36351e-06 -6.18608e-06 -6.42624e-06 -5.15254e-06 -8.0759e-06 -3.92607e-06 -8.64072e-06 -2.6075e-06 -8.05346e-06 -1.43654e-06 -6.52355e-06 -3.88601e-07 -4.84201e-06 6.70526e-07 -3.5236e-06 1.79949e-06 -2.10347e-06 2.88517e-06 -4.67887e-07 3.95241e-06 1.48264e-06 4.72757e-06 3.45915e-06 5.2526e-06 5.42328e-06 5.30726e-06 6.58797e-06 5.11963e-06 6.97588e-06 4.15948e-06 6.7248e-06 3.21187e-06 5.04776e-06 1.44021e-06 2.85487e-06 -2.69237e-06 4.64239e-06 -7.22975e-06 8.57137e-06 -1.06446e-05 1.09373e-05 -1.26664e-05 1.12175e-05 -1.38373e-05 1.05729e-05 -1.44286e-05 9.75811e-06 -1.46016e-05 8.73046e-06 -1.46252e-05 7.8157e-06 -1.44827e-05 6.85844e-06 -1.41952e-05 5.94227e-06 -1.39173e-05 5.19631e-06 -1.36248e-05 4.19566e-06 -1.33819e-05 3.61511e-06 -1.31433e-05 2.86652e-06 -1.28659e-05 2.173e-06 -1.25626e-05 1.74615e-06 -1.23329e-05 1.29278e-06 -1.20472e-05 9.23316e-07 -1.17435e-05 5.53295e-07 -1.14459e-05 2.53917e-07 -1.10858e-05 -1.34767e-07 -1.07281e-05 -4.41694e-07 -1.04198e-05 -8.51591e-07 -9.99668e-06 -1.3861e-06 -9.47607e-06 -1.91208e-06 -8.99733e-06 -2.46405e-06 -8.4656e-06 -2.97977e-06 -7.84187e-06 -3.50092e-06 -7.19086e-06 -4.07094e-06 -6.55637e-06 -4.553e-06 -5.84137e-06 -5.09458e-06 -5.10452e-06 -5.67795e-06 -4.29544e-06 -6.32487e-06 -3.35368e-06 -7.02429e-06 -2.2728e-06 -7.80858e-06 -9.04339e-07 -8.62158e-06 7.12218e-07 -9.06879e-06 2.42287e-06 -9.1349e-06 4.07718e-06 -8.84131e-06 5.74488e-06 -8.41519e-06 7.35252e-06 -7.64275e-06 8.70214e-06 -6.59366e-06 9.82201e-06 -5.64357e-06 1.07034e-05 -4.61656e-06 1.13313e-05 -3.55881e-06 1.17319e-05 -2.75502e-06 1.19457e-05 -2.20344e-06 1.20517e-05 -1.79169e-06 1.21246e-05 -1.47449e-06 1.21957e-05 -1.32334e-06 1.22363e-05 -1.1838e-06 1.22338e-05 -1.05979e-06 1.22342e-05 -1.06002e-06 1.22364e-05 -1.06073e-06 1.21839e-05 -1.03352e-06 1.21052e-05 -1.04207e-06 1.20856e-05 -1.33168e-06 1.20535e-05 -1.71338e-06 1.20749e-05 -2.07029e-06 1.23414e-05 -2.73245e-06 1.29857e-05 -3.70408e-06 1.39113e-05 -4.41259e-06 1.49565e-05 -4.64244e-06 1.6082e-05 -4.64e-06 1.73488e-05 -4.39689e-06 1.865e-05 -3.67112e-06 1.94707e-05 -2.23187e-06 1.93426e-05 -6.49904e-07 1.83094e-05 2.51882e-07 1.66934e-05 3.16278e-07 1.52431e-05 -2.32756e-07 1.44285e-05 -3.41119e-07 1.38225e-05 5.54334e-07 1.32398e-05 1.78849e-06 1.28353e-05 2.93142e-06 1.23614e-05 4.30319e-06 1.17147e-05 5.80533e-06 1.09666e-05 7.00603e-06 9.97972e-06 7.90379e-06 8.623e-06 8.8087e-06 7.02613e-06 9.64402e-06 5.23453e-06 1.02411e-05 2.99541e-06 1.09879e-05 3.41259e-07 1.23513e-05 -2.11633e-06 1.35434e-05 -3.93491e-06 1.3704e-05 -5.21544e-06 1.24903e-05 -6.04581e-06 1.03745e-05 -6.44905e-06 7.91643e-06 -6.62981e-06 5.52513e-06 -6.90574e-06 3.71112e-06 -7.48829e-06 2.55056e-06 -8.2325e-06 1.60672e-06 -8.70216e-06 3.08507e-07 -8.7763e-06 -1.13837e-06 -8.5572e-06 -2.49181e-06 -8.06211e-06 -3.96316e-06 -7.09984e-06 -5.90765e-06 -5.7812e-06 -7.63541e-06 -4.04132e-06 -9.07957e-06 -2.18575e-06 -9.52807e-06 -4.58087e-07 -9.27146e-06 1.12339e-06 -8.74881e-06 2.5275e-06 -8.25597e-06 3.94083e-06 -7.91277e-06 5.45294e-06 -7.55952e-06 6.99143e-06 -7.07992e-06 8.44457e-06 -6.55544e-06 9.72551e-06 -6.03261e-06 1.10333e-05 -5.89831e-06 1.26894e-05 -6.05065e-06 1.4495e-05 -5.70881e-06 1.5964e-05 -4.59811e-06 1.70717e-05 -3.39816e-06 1.77468e-05 -2.21134e-06 1.76347e-05 -9.87869e-07 1.73549e-05 -5.81214e-07 1.71247e-05 -3.76777e-07 1.63734e-05 2.71881e-08 1.51504e-05 2.39795e-07 1.43398e-05 -3.12064e-07 1.45007e-05 -1.04744e-06 1.44953e-05 -1.26694e-06 1.38773e-05 -2.02465e-06 1.36222e-05 -3.19459e-06 1.37786e-05 -3.22367e-06 1.41172e-05 -3.0128e-06 1.52744e-05 -3.0696e-06 1.7026e-05 -1.42981e-06 1.77375e-05 2.03517e-06 1.65949e-05 4.46448e-06 1.49444e-05 3.81055e-06 1.40233e-05 1.95642e-06 1.33654e-05 1.77882e-06 1.25293e-05 2.52557e-06 1.18632e-05 1.91762e-06 1.12826e-05 6.18645e-07 1.02204e-05 1.00543e-06 8.68876e-06 3.26487e-06 7.10169e-06 5.99891e-06 5.5915e-06 7.87701e-06 4.27942e-06 8.49461e-06 3.20302e-06 7.77606e-06 2.26805e-06 6.74808e-06 1.2973e-06 5.94495e-06 5.16638e-07 5.08426e-06 5.75786e-06 8.61934e-07 -6.18414e-06 1.29912e-06 -7.36359e-06 1.42149e-06 -7.02489e-06 1.40651e-06 -6.23605e-06 1.30443e-06 -5.17178e-06 1.20025e-06 -3.98126e-06 1.20442e-06 -2.8157e-06 1.29615e-06 -1.6263e-06 1.51358e-06 -5.7262e-07 1.89019e-06 2.60522e-07 2.40351e-06 9.67983e-07 2.90386e-06 1.52218e-06 3.35424e-06 2.12592e-06 3.77112e-06 2.6837e-06 4.09444e-06 3.31389e-06 4.40619e-06 4.025e-06 4.72502e-06 4.64972e-06 4.91748e-06 4.9399e-06 4.89602e-06 4.65787e-06 4.73237e-06 3.65191e-06 4.40484e-06 2.54209e-06 3.9874e-06 1.604e-06 3.52758e-06 8.33385e-07 2.98699e-06 2.37962e-07 2.42665e-06 5.16049e-08 1.69305e-06 1.97221e-07 9.59073e-07 1.74085e-07 -2.1914e-07 2.38467e-07 -2.23332e-06 1.73427e-06 -4.49199e-06 3.55697e-06 -6.34562e-06 4.36262e-06 -7.59035e-06 3.93404e-06 -8.3597e-06 2.47913e-06 -8.6072e-06 2.57665e-07 -8.73785e-06 -1.96315e-06 -8.67118e-06 -4.43018e-06 -8.33649e-06 -6.76093e-06 -7.66915e-06 -8.74324e-06 -6.70705e-06 -9.60282e-06 -5.51152e-06 -9.24899e-06 -4.36867e-06 -7.66639e-06 -3.35958e-06 -5.8511e-06 -2.30256e-06 -4.58062e-06 -1.18116e-06 -3.22487e-06 -5.39953e-08 -1.59505e-06 1.13042e-06 2.98225e-07 2.14379e-06 2.44579e-06 3.01283e-06 4.55423e-06 3.47978e-06 6.12103e-06 3.21017e-06 7.24549e-06 2.49225e-06 7.44271e-06 1.92559e-06 5.61442e-06 -6.9372e-07 5.47418e-06 -4.9673e-06 8.91597e-06 -8.66169e-06 1.22658e-05 -1.08923e-05 1.31679e-05 -1.19599e-05 1.22852e-05 -1.24994e-05 1.11124e-05 -1.26552e-05 9.91393e-06 -1.25719e-05 8.64712e-06 -1.2427e-05 7.67084e-06 -1.21896e-05 6.62101e-06 -1.19419e-05 5.69465e-06 -1.16385e-05 4.89291e-06 -1.13771e-05 3.93419e-06 -1.10016e-05 3.23959e-06 -1.06546e-05 2.51955e-06 -1.03227e-05 1.84111e-06 -9.88892e-06 1.31237e-06 -9.46415e-06 8.68004e-07 -9.06558e-06 5.24754e-07 -8.56432e-06 5.20282e-08 -8.05253e-06 -2.57875e-07 -7.63097e-06 -5.56327e-07 -7.1733e-06 -8.99356e-07 -6.67902e-06 -1.34588e-06 -6.19176e-06 -1.87336e-06 -5.69056e-06 -2.41329e-06 -5.18948e-06 -2.96513e-06 -4.62277e-06 -3.54647e-06 -4.05083e-06 -4.07286e-06 -3.5166e-06 -4.60516e-06 -2.96256e-06 -5.10704e-06 -2.40121e-06 -5.65593e-06 -1.78836e-06 -6.2908e-06 -1.12085e-06 -6.99238e-06 -4.49599e-07 -7.69554e-06 2.6991e-07 -8.52809e-06 1.21881e-06 -9.57048e-06 2.53598e-06 -1.0386e-05 4.02153e-06 -1.06204e-05 5.5614e-06 -1.03812e-05 7.07797e-06 -9.93176e-06 8.61354e-06 -9.17831e-06 1.0051e-05 -8.03108e-06 1.12853e-05 -6.87791e-06 1.22791e-05 -5.61038e-06 1.304e-05 -4.31971e-06 1.35883e-05 -3.30329e-06 1.39084e-05 -2.52357e-06 1.40369e-05 -1.92016e-06 1.40582e-05 -1.49581e-06 1.40066e-05 -1.27168e-06 1.39013e-05 -1.07853e-06 1.38014e-05 -9.59921e-07 1.36261e-05 -8.84661e-07 1.34017e-05 -8.36384e-07 1.31251e-05 -7.56921e-07 1.27544e-05 -6.71353e-07 1.22871e-05 -8.64379e-07 1.18376e-05 -1.26392e-06 1.15315e-05 -1.76413e-06 1.15264e-05 -2.72741e-06 1.196e-05 -4.13761e-06 1.30107e-05 -5.46337e-06 1.45523e-05 -6.184e-06 1.612e-05 -6.20772e-06 1.74905e-05 -5.76736e-06 1.87614e-05 -4.94196e-06 2.00607e-05 -3.53116e-06 2.09516e-05 -1.54087e-06 2.06466e-05 5.56919e-07 1.9212e-05 1.75084e-06 1.73099e-05 1.66933e-06 1.57336e-05 1.23517e-06 1.47713e-05 1.51668e-06 1.40247e-05 2.53511e-06 1.32621e-05 3.69402e-06 1.25902e-05 4.97511e-06 1.19192e-05 6.47628e-06 1.10159e-05 7.90934e-06 9.96158e-06 8.95809e-06 8.93416e-06 9.83612e-06 7.76821e-06 1.081e-05 6.09186e-06 1.19174e-05 3.97805e-06 1.31017e-05 1.76305e-06 1.45663e-05 -2.74577e-07 1.5581e-05 -1.73771e-06 1.51672e-05 -2.81577e-06 1.35684e-05 -3.58722e-06 1.1146e-05 -4.07215e-06 8.40136e-06 -4.49815e-06 5.95113e-06 -5.27064e-06 4.4836e-06 -6.39292e-06 3.67284e-06 -7.43195e-06 2.64574e-06 -7.83583e-06 7.12396e-07 -7.73594e-06 -1.23826e-06 -7.29156e-06 -2.93619e-06 -6.66354e-06 -4.59117e-06 -5.72232e-06 -6.84887e-06 -4.56087e-06 -8.79686e-06 -2.92693e-06 -1.07135e-05 -1.04047e-06 -1.14145e-05 8.24582e-07 -1.11365e-05 2.52012e-06 -1.04444e-05 3.85488e-06 -9.59073e-06 4.91628e-06 -8.97417e-06 6.03141e-06 -8.67465e-06 7.31251e-06 -8.36102e-06 8.70744e-06 -7.95037e-06 1.00665e-05 -7.39169e-06 1.12506e-05 -7.0824e-06 1.26218e-05 -7.42185e-06 1.4505e-05 -7.59204e-06 1.64751e-05 -6.56816e-06 1.80422e-05 -4.96528e-06 1.94508e-05 -3.61988e-06 2.01699e-05 -1.70703e-06 1.99567e-05 -3.68e-07 1.97574e-05 -1.77454e-07 1.99876e-05 -2.03045e-07 1.97316e-05 4.9581e-07 1.84334e-05 9.86128e-07 1.72038e-05 1.8216e-07 1.67143e-05 -7.77465e-07 1.62877e-05 -1.59804e-06 1.57678e-05 -2.67472e-06 1.55543e-05 -3.01012e-06 1.53448e-05 -2.80333e-06 1.55051e-05 -3.22983e-06 1.68477e-05 -2.77244e-06 1.83928e-05 4.90066e-07 1.83355e-05 4.52176e-06 1.65237e-05 5.62237e-06 1.44251e-05 4.05507e-06 1.29801e-05 3.22375e-06 1.23469e-05 3.15885e-06 1.21031e-05 2.16135e-06 1.15857e-05 1.13611e-06 1.04168e-05 2.1743e-06 8.709e-06 4.97265e-06 6.95655e-06 7.75135e-06 5.49425e-06 9.33931e-06 4.37009e-06 9.61877e-06 3.48076e-06 8.66539e-06 2.60661e-06 7.62223e-06 1.65046e-06 6.90111e-06 6.94192e-07 6.04053e-06 6.45205e-06 3.28604e-07 -6.51275e-06 2.94012e-07 -7.329e-06 7.3297e-08 -6.80418e-06 -2.58004e-07 -5.90475e-06 -5.94731e-07 -4.83505e-06 -8.82591e-07 -3.6934e-06 -1.01695e-06 -2.68134e-06 -9.62265e-07 -1.68099e-06 -6.91984e-07 -8.42901e-07 -1.80854e-07 -2.50608e-07 4.75174e-07 3.11956e-07 1.14921e-06 8.48138e-07 1.74537e-06 1.52976e-06 2.23435e-06 2.19471e-06 2.60169e-06 2.94655e-06 2.95808e-06 3.66861e-06 3.3282e-06 4.2796e-06 3.66393e-06 4.60417e-06 3.91225e-06 4.40955e-06 3.9221e-06 3.64206e-06 3.73472e-06 2.72947e-06 3.45563e-06 1.88309e-06 3.11694e-06 1.17207e-06 2.60945e-06 7.45457e-07 1.85903e-06 8.02023e-07 9.71394e-07 1.08486e-06 5.69418e-09 1.13979e-06 -1.6476e-06 1.89176e-06 -3.87722e-06 3.96389e-06 -5.82763e-06 5.50738e-06 -7.17575e-06 5.71075e-06 -8.02559e-06 4.78388e-06 -8.43817e-06 2.89171e-06 -8.6377e-06 4.57194e-07 -8.79206e-06 -1.80879e-06 -8.99289e-06 -4.22936e-06 -9.16762e-06 -6.5862e-06 -9.12951e-06 -8.78135e-06 -8.66753e-06 -1.00648e-05 -7.71991e-06 -1.01966e-05 -6.53459e-06 -8.85171e-06 -5.48271e-06 -6.90297e-06 -4.62823e-06 -5.43511e-06 -3.71456e-06 -4.13854e-06 -2.71163e-06 -2.59798e-06 -1.71077e-06 -7.02632e-07 -7.01371e-07 1.43639e-06 1.85029e-07 3.66783e-06 6.64004e-07 5.64205e-06 8.08384e-07 7.10111e-06 1.22071e-06 7.03038e-06 3.48609e-07 6.48652e-06 -2.88016e-06 8.70295e-06 -6.49065e-06 1.25265e-05 -8.99078e-06 1.47659e-05 -1.01257e-05 1.43028e-05 -1.05325e-05 1.2692e-05 -1.06583e-05 1.12382e-05 -1.0574e-05 9.82962e-06 -1.04196e-05 8.49268e-06 -1.02329e-05 7.48413e-06 -9.9052e-06 6.29333e-06 -9.64967e-06 5.43911e-06 -9.28739e-06 4.53064e-06 -9.00214e-06 3.64894e-06 -8.57862e-06 2.81607e-06 -8.10018e-06 2.04111e-06 -7.61794e-06 1.35887e-06 -7.1316e-06 8.26032e-07 -6.51023e-06 2.46628e-07 -5.80098e-06 -1.84493e-07 -5.14369e-06 -6.05264e-07 -4.49769e-06 -9.03877e-07 -3.83773e-06 -1.21628e-06 -3.20486e-06 -1.53223e-06 -2.58402e-06 -1.96672e-06 -2.0051e-06 -2.45227e-06 -1.42696e-06 -2.99143e-06 -8.61713e-07 -3.53038e-06 -3.04171e-07 -4.10401e-06 2.55074e-07 -4.63211e-06 7.6864e-07 -5.11873e-06 1.27554e-06 -5.61395e-06 1.67262e-06 -6.05301e-06 2.06975e-06 -6.68793e-06 2.57753e-06 -7.50016e-06 3.12978e-06 -8.24779e-06 3.61853e-06 -9.01684e-06 4.18204e-06 -1.0134e-05 5.15834e-06 -1.13623e-05 6.32667e-06 -1.17888e-05 7.55671e-06 -1.16112e-05 8.84308e-06 -1.12181e-05 1.01047e-05 -1.04399e-05 1.13272e-05 -9.25358e-06 1.23881e-05 -7.93886e-06 1.32448e-05 -6.46707e-06 1.39981e-05 -5.07305e-06 1.45814e-05 -3.88649e-06 1.49744e-05 -2.9166e-06 1.51699e-05 -2.11568e-06 1.52452e-05 -1.57113e-06 1.52139e-05 -1.24032e-06 1.50232e-05 -8.87864e-07 1.47831e-05 -7.19854e-07 1.44555e-05 -5.57052e-07 1.39301e-05 -3.10949e-07 1.34039e-05 -2.30751e-07 1.27312e-05 1.33861e-09 1.16384e-05 2.28435e-07 1.05372e-05 -1.62716e-07 1.00154e-05 -1.24237e-06 1.01971e-05 -2.90912e-06 1.08917e-05 -4.83215e-06 1.19689e-05 -6.54057e-06 1.35925e-05 -7.80757e-06 1.5625e-05 -8.24028e-06 1.74293e-05 -7.57164e-06 1.87565e-05 -6.2692e-06 2.01079e-05 -4.88252e-06 2.13639e-05 -2.79688e-06 2.19358e-05 -1.50145e-08 2.12588e-05 2.42783e-06 1.93985e-05 3.52962e-06 1.74039e-05 3.22985e-06 1.59198e-05 3.00078e-06 1.48262e-05 3.62865e-06 1.39569e-05 4.56332e-06 1.31713e-05 5.76071e-06 1.22846e-05 7.36303e-06 1.12901e-05 8.90377e-06 1.01569e-05 1.00913e-05 9.0169e-06 1.09762e-05 7.97975e-06 1.18471e-05 6.84758e-06 1.30496e-05 5.32515e-06 1.46242e-05 3.66933e-06 1.62221e-05 2.02104e-06 1.72293e-05 4.57923e-07 1.67303e-05 -6.22104e-07 1.46484e-05 -1.34544e-06 1.18693e-05 -1.8214e-06 8.87731e-06 -2.52817e-06 6.65791e-06 -3.73653e-06 5.69195e-06 -5.09676e-06 5.03308e-06 -5.9969e-06 3.54588e-06 -6.11267e-06 8.28168e-07 -5.8885e-06 -1.46243e-06 -5.32679e-06 -3.4979e-06 -4.74139e-06 -5.17657e-06 -3.97013e-06 -7.62013e-06 -3.16949e-06 -9.5975e-06 -1.95286e-06 -1.19301e-05 -2.70854e-07 -1.30965e-05 1.51721e-06 -1.29246e-05 3.37455e-06 -1.23017e-05 5.11156e-06 -1.13277e-05 6.43295e-06 -1.02956e-05 7.47072e-06 -9.71242e-06 8.45591e-06 -9.34621e-06 9.60387e-06 -9.09833e-06 1.10479e-05 -8.83571e-06 1.23648e-05 -8.39928e-06 1.3488e-05 -8.54503e-06 1.50951e-05 -9.19922e-06 1.69178e-05 -8.39084e-06 1.81188e-05 -6.16627e-06 1.90606e-05 -4.56166e-06 2.06707e-05 -3.31713e-06 2.16962e-05 -1.39353e-06 2.16634e-05 -1.44672e-07 2.13784e-05 8.2029e-08 2.16285e-05 2.45638e-07 2.16318e-05 9.82877e-07 2.06764e-05 1.13759e-06 1.96329e-05 2.6597e-07 1.87496e-05 -7.14702e-07 1.78877e-05 -1.81285e-06 1.72426e-05 -2.36499e-06 1.68783e-05 -2.43899e-06 1.6568e-05 -2.91959e-06 1.69464e-05 -3.15079e-06 1.7981e-05 -5.44611e-07 1.87333e-05 3.76945e-06 1.85668e-05 5.78891e-06 1.72789e-05 5.34299e-06 1.55459e-05 4.95676e-06 1.38824e-05 4.82229e-06 1.23729e-05 3.67088e-06 1.07139e-05 2.7951e-06 8.9468e-06 3.94141e-06 7.42479e-06 6.49465e-06 6.07516e-06 9.10099e-06 4.88781e-06 1.05267e-05 3.92115e-06 1.05854e-05 3.17474e-06 9.41179e-06 2.62964e-06 8.16733e-06 1.93437e-06 7.59638e-06 9.59503e-07 7.01539e-06 7.41156e-06 -1.97612e-07 -6.31513e-06 -6.91234e-07 -6.83538e-06 -1.30207e-06 -6.19334e-06 -1.90107e-06 -5.30575e-06 -2.40884e-06 -4.32728e-06 -2.75669e-06 -3.34555e-06 -2.88579e-06 -2.55225e-06 -2.7928e-06 -1.77397e-06 -2.47849e-06 -1.15721e-06 -2.01256e-06 -7.16532e-07 -1.47711e-06 -2.23502e-07 -9.41767e-07 3.12798e-07 -4.19793e-07 1.00779e-06 2.86442e-08 1.74627e-06 4.65673e-07 2.50952e-06 8.76388e-07 3.25789e-06 1.28292e-06 3.87306e-06 1.63908e-06 4.24801e-06 2.05827e-06 3.99036e-06 2.36701e-06 3.33332e-06 2.57269e-06 2.52379e-06 2.64716e-06 1.80861e-06 2.45688e-06 1.36236e-06 1.86778e-06 1.33455e-06 9.82265e-07 1.68754e-06 -8.37414e-09 2.0755e-06 -1.32192e-06 2.45333e-06 -3.05895e-06 3.6288e-06 -4.8179e-06 5.72284e-06 -6.21533e-06 6.90481e-06 -6.97179e-06 6.46721e-06 -7.31921e-06 5.13129e-06 -7.39142e-06 2.96392e-06 -7.43968e-06 5.05451e-07 -7.63551e-06 -1.61296e-06 -8.05792e-06 -3.80695e-06 -8.68636e-06 -5.95777e-06 -9.33682e-06 -8.13088e-06 -9.58698e-06 -9.81464e-06 -9.22209e-06 -1.05615e-05 -8.21638e-06 -9.85743e-06 -7.05687e-06 -8.06247e-06 -6.18206e-06 -6.30992e-06 -5.41186e-06 -4.90873e-06 -4.69879e-06 -3.31106e-06 -3.88815e-06 -1.51327e-06 -3.00633e-06 5.5457e-07 -2.08804e-06 2.74954e-06 -1.1669e-06 4.72092e-06 -1.81745e-07 6.11595e-06 8.11034e-08 6.76753e-06 -1.80567e-06 8.3733e-06 -4.8555e-06 1.17528e-05 -7.37918e-06 1.50501e-05 -8.64394e-06 1.60306e-05 -8.88776e-06 1.45466e-05 -8.80143e-06 1.26057e-05 -8.65333e-06 1.10901e-05 -8.38366e-06 9.55995e-06 -8.14556e-06 8.25459e-06 -7.94903e-06 7.2876e-06 -7.61117e-06 5.95547e-06 -7.31333e-06 5.14127e-06 -6.95138e-06 4.16869e-06 -6.59234e-06 3.2899e-06 -6.08946e-06 2.31319e-06 -5.62711e-06 1.57877e-06 -5.07283e-06 8.0459e-07 -4.36569e-06 1.18886e-07 -3.58952e-06 -5.29541e-07 -2.74541e-06 -1.0286e-06 -1.87022e-06 -1.48045e-06 -9.89721e-07 -1.78438e-06 -1.05364e-07 -2.10064e-06 7.32963e-07 -2.37056e-06 1.51301e-06 -2.74676e-06 2.24663e-06 -3.1859e-06 2.89329e-06 -3.63809e-06 3.45322e-06 -4.0903e-06 3.96842e-06 -4.61922e-06 4.43445e-06 -5.09813e-06 4.85527e-06 -5.53955e-06 5.33798e-06 -6.09665e-06 5.74668e-06 -6.4617e-06 5.93227e-06 -6.87353e-06 6.23413e-06 -7.80202e-06 6.70707e-06 -8.72073e-06 7.13222e-06 -9.44199e-06 7.45944e-06 -1.04612e-05 8.05674e-06 -1.19596e-05 8.97702e-06 -1.27091e-05 9.90455e-06 -1.25387e-05 1.09167e-05 -1.22303e-05 1.1967e-05 -1.14902e-05 1.29016e-05 -1.01882e-05 1.36386e-05 -8.67592e-06 1.41931e-05 -7.02153e-06 1.47104e-05 -5.59037e-06 1.51434e-05 -4.31944e-06 1.54207e-05 -3.19398e-06 1.56123e-05 -2.30726e-06 1.56305e-05 -1.58927e-06 1.55748e-05 -1.1846e-06 1.5399e-05 -7.12074e-07 1.49617e-05 -2.82627e-07 1.44545e-05 -4.98515e-08 1.37532e-05 3.90409e-07 1.26646e-05 8.57829e-07 1.1539e-05 1.12694e-06 1.03569e-05 1.41055e-06 9.11907e-06 1.07509e-06 8.49064e-06 -6.13935e-07 8.94422e-06 -3.3627e-06 1.03421e-05 -6.23005e-06 1.22447e-05 -8.4432e-06 1.41202e-05 -9.68301e-06 1.60037e-05 -1.01238e-05 1.79509e-05 -9.5188e-06 1.93606e-05 -7.67897e-06 2.02626e-05 -5.78451e-06 2.13853e-05 -3.91961e-06 2.24108e-05 -1.04046e-06 2.2565e-05 2.27361e-06 2.13817e-05 4.71293e-06 1.91793e-05 5.43227e-06 1.71998e-05 4.98021e-06 1.59114e-05 4.91711e-06 1.47817e-05 5.69298e-06 1.36722e-05 6.87028e-06 1.27151e-05 8.3201e-06 1.17505e-05 9.86835e-06 1.05601e-05 1.12818e-05 9.16558e-06 1.23706e-05 7.93274e-06 1.308e-05 6.9205e-06 1.40618e-05 5.80768e-06 1.5737e-05 4.51421e-06 1.75156e-05 3.23142e-06 1.85121e-05 2.00733e-06 1.79544e-05 1.06864e-06 1.55871e-05 6.42887e-07 1.22951e-05 2.25266e-07 9.29493e-06 -9.11439e-07 7.79461e-06 -2.50753e-06 7.28804e-06 -3.6955e-06 6.22105e-06 -4.21968e-06 4.07005e-06 -4.22069e-06 8.29181e-07 -4.1435e-06 -1.53962e-06 -3.64617e-06 -3.99523e-06 -3.0891e-06 -5.73364e-06 -2.33197e-06 -8.37726e-06 -1.72918e-06 -1.02003e-05 -9.54906e-07 -1.27044e-05 3.89742e-07 -1.44412e-05 1.99389e-06 -1.45287e-05 3.57e-06 -1.38778e-05 5.2715e-06 -1.30292e-05 7.0069e-06 -1.2031e-05 8.54878e-06 -1.12543e-05 9.66597e-06 -1.04634e-05 1.05279e-05 -9.96021e-06 1.17425e-05 -1.00504e-05 1.33618e-05 -1.00186e-05 1.46371e-05 -9.82027e-06 1.57775e-05 -1.03396e-05 1.75674e-05 -1.01808e-05 1.89823e-05 -7.58119e-06 1.9454e-05 -5.03332e-06 2.00081e-05 -3.87118e-06 2.12765e-05 -2.662e-06 2.20498e-05 -9.17989e-07 2.18946e-05 2.37267e-07 2.16377e-05 5.02537e-07 2.16359e-05 9.84727e-07 2.11902e-05 1.58326e-06 2.04536e-05 1.00259e-06 1.96595e-05 7.93759e-08 1.90888e-05 -1.24211e-06 1.8838e-05 -2.11419e-06 1.82024e-05 -1.80341e-06 1.7417e-05 -2.1342e-06 1.75271e-05 -3.26088e-06 1.83288e-05 -1.34637e-06 1.85331e-05 3.56519e-06 1.82496e-05 6.07238e-06 1.77049e-05 5.88769e-06 1.67989e-05 5.86277e-06 1.56819e-05 5.93934e-06 1.41248e-05 5.22795e-06 1.21527e-05 4.76718e-06 1.00694e-05 6.02472e-06 8.06114e-06 8.50292e-06 6.53049e-06 1.06316e-05 5.51053e-06 1.15466e-05 4.97082e-06 1.11251e-05 4.51939e-06 9.86322e-06 3.57227e-06 9.11445e-06 2.56822e-06 8.60043e-06 1.18797e-06 8.39564e-06 8.59953e-06 -7.62472e-07 -5.55266e-06 -1.70214e-06 -5.89571e-06 -2.6078e-06 -5.28769e-06 -3.33713e-06 -4.57641e-06 -3.88586e-06 -3.77854e-06 -4.23632e-06 -2.99509e-06 -4.36962e-06 -2.41894e-06 -4.34641e-06 -1.79718e-06 -4.15414e-06 -1.34949e-06 -3.8854e-06 -9.85271e-07 -3.56854e-06 -5.40355e-07 -3.22731e-06 -2.8434e-08 -2.84656e-06 6.27036e-07 -2.43713e-06 1.33685e-06 -1.99585e-06 2.06825e-06 -1.51188e-06 2.77392e-06 -9.22579e-07 3.28376e-06 -2.00466e-07 3.5259e-06 5.64231e-07 3.22566e-06 1.21385e-06 2.68371e-06 1.61608e-06 2.12155e-06 1.66345e-06 1.76124e-06 1.34116e-06 1.68465e-06 7.42554e-07 1.93315e-06 4.35044e-08 2.38659e-06 -7.23244e-07 2.84224e-06 -1.90433e-06 3.63441e-06 -3.52333e-06 5.24779e-06 -4.92411e-06 7.12362e-06 -5.7275e-06 7.7082e-06 -5.99523e-06 6.73494e-06 -5.97837e-06 5.11443e-06 -5.82736e-06 2.81291e-06 -5.73209e-06 4.10174e-07 -5.79691e-06 -1.54813e-06 -6.19445e-06 -3.40941e-06 -6.99651e-06 -5.15571e-06 -8.11089e-06 -7.0165e-06 -9.2153e-06 -8.71023e-06 -9.79845e-06 -9.97836e-06 -9.43991e-06 -1.0216e-05 -8.37321e-06 -9.12918e-06 -7.33722e-06 -7.34591e-06 -6.44463e-06 -5.80132e-06 -5.63712e-06 -4.11856e-06 -4.8648e-06 -2.28559e-06 -3.89106e-06 -4.19175e-07 -2.85663e-06 1.71511e-06 -1.88009e-06 3.74437e-06 -1.32902e-06 5.56488e-06 -2.03923e-06 7.47775e-06 -4.06724e-06 1.04013e-05 -6.23703e-06 1.39226e-05 -7.49934e-06 1.63125e-05 -7.72224e-06 1.62535e-05 -7.40991e-06 1.42343e-05 -7.03897e-06 1.22348e-05 -6.69807e-06 1.07492e-05 -6.24559e-06 9.10746e-06 -5.83877e-06 7.84777e-06 -5.52367e-06 6.9725e-06 -5.23008e-06 5.66187e-06 -4.9172e-06 4.82839e-06 -4.52199e-06 3.77348e-06 -4.12487e-06 2.89277e-06 -3.74239e-06 1.93072e-06 -3.21984e-06 1.05621e-06 -2.57385e-06 1.58605e-07 -1.85167e-06 -6.03294e-07 -9.9132e-07 -1.38989e-06 -1.31549e-08 -2.00677e-06 1.02709e-06 -2.5207e-06 2.13558e-06 -2.89287e-06 3.24457e-06 -3.20962e-06 4.26701e-06 -3.393e-06 5.18593e-06 -3.66568e-06 6.04398e-06 -4.04394e-06 6.73234e-06 -4.32646e-06 7.29376e-06 -4.65172e-06 7.83567e-06 -5.16112e-06 8.28207e-06 -5.54453e-06 8.53457e-06 -5.79206e-06 8.86654e-06 -6.42862e-06 9.37912e-06 -6.97428e-06 9.60508e-06 -7.09949e-06 9.69674e-06 -7.89368e-06 1.00404e-05 -9.06441e-06 1.0438e-05 -9.83959e-06 1.07097e-05 -1.07329e-05 1.10692e-05 -1.23191e-05 1.17028e-05 -1.33426e-05 1.23487e-05 -1.31846e-05 1.30279e-05 -1.29095e-05 1.38157e-05 -1.2278e-05 1.44699e-05 -1.08424e-05 1.49064e-05 -9.11243e-06 1.5207e-05 -7.32211e-06 1.5438e-05 -5.82142e-06 1.56166e-05 -4.49797e-06 1.56602e-05 -3.23759e-06 1.56902e-05 -2.33731e-06 1.57273e-05 -1.62636e-06 1.55815e-05 -1.03875e-06 1.53261e-05 -4.56749e-07 1.47754e-05 2.6807e-07 1.3841e-05 8.846e-07 1.29012e-05 1.33015e-06 1.17754e-05 1.98366e-06 1.02905e-05 2.61184e-06 8.92838e-06 2.77269e-06 8.19422e-06 1.80925e-06 8.28917e-06 -7.08887e-07 9.21796e-06 -4.29149e-06 1.08251e-05 -7.8372e-06 1.29241e-05 -1.05422e-05 1.5151e-05 -1.191e-05 1.70365e-05 -1.20092e-05 1.88457e-05 -1.1328e-05 2.05354e-05 -9.36869e-06 2.13576e-05 -6.60673e-06 2.18831e-05 -4.44505e-06 2.27718e-05 -1.92913e-06 2.32759e-05 1.76949e-06 2.272e-05 5.26883e-06 2.09915e-05 7.16077e-06 1.87112e-05 7.2605e-06 1.69125e-05 6.71576e-06 1.56347e-05 6.97083e-06 1.43823e-05 8.1227e-06 1.32301e-05 9.47233e-06 1.22899e-05 1.08085e-05 1.12418e-05 1.23298e-05 9.93562e-06 1.36768e-05 8.46102e-06 1.45546e-05 7.06275e-06 1.54601e-05 5.92966e-06 1.68701e-05 5.02491e-06 1.84204e-05 4.34902e-06 1.91879e-05 3.84568e-06 1.84577e-05 3.3613e-06 1.60715e-05 2.79842e-06 1.2858e-05 1.64457e-06 1.04488e-05 4.02336e-08 9.39895e-06 -1.37149e-06 8.69977e-06 -1.95301e-06 6.80257e-06 -2.0356e-06 4.15264e-06 -2.08385e-06 8.77433e-07 -2.14174e-06 -1.48173e-06 -1.6778e-06 -4.45917e-06 -1.05149e-06 -6.35995e-06 -1.21937e-07 -9.30682e-06 5.43188e-07 -1.08654e-05 9.80892e-07 -1.31421e-05 1.90259e-06 -1.53629e-05 3.30176e-06 -1.59279e-05 4.64746e-06 -1.52235e-05 5.89706e-06 -1.42788e-05 7.31066e-06 -1.34446e-05 8.95921e-06 -1.29028e-05 1.04858e-05 -1.199e-05 1.15346e-05 -1.10091e-05 1.24465e-05 -1.09623e-05 1.38394e-05 -1.14115e-05 1.54738e-05 -1.14547e-05 1.67239e-05 -1.15897e-05 1.77558e-05 -1.12127e-05 1.89085e-05 -8.73384e-06 1.95893e-05 -5.71409e-06 2.00047e-05 -4.28659e-06 2.07827e-05 -3.43997e-06 2.16979e-05 -1.8332e-06 2.21617e-05 -2.26603e-07 2.22749e-05 3.89405e-07 2.2118e-05 1.14158e-06 2.17858e-05 1.91545e-06 2.14285e-05 1.35993e-06 2.10853e-05 4.22618e-07 2.02742e-05 -4.31018e-07 1.97761e-05 -1.61614e-06 1.98875e-05 -1.9148e-06 1.92373e-05 -1.48402e-06 1.83951e-05 -2.41868e-06 1.87643e-05 -1.71557e-06 1.92911e-05 3.03845e-06 1.8624e-05 6.73944e-06 1.74665e-05 7.04523e-06 1.63405e-05 6.98875e-06 1.51354e-05 7.14443e-06 1.36342e-05 6.72915e-06 1.18219e-05 6.5795e-06 9.74586e-06 8.10073e-06 8.03417e-06 1.02146e-05 6.64253e-06 1.20233e-05 5.63711e-06 1.2552e-05 4.64726e-06 1.2115e-05 3.69231e-06 1.08182e-05 3.13729e-06 9.66947e-06 2.22333e-06 9.51439e-06 1.24585e-06 9.37312e-06 9.84538e-06 -1.32895e-06 -4.22371e-06 -2.60957e-06 -4.61509e-06 -3.69496e-06 -4.2023e-06 -4.53504e-06 -3.73633e-06 -5.14631e-06 -3.16728e-06 -5.51401e-06 -2.6274e-06 -5.65932e-06 -2.27363e-06 -5.71909e-06 -1.73741e-06 -5.63665e-06 -1.43194e-06 -5.43911e-06 -1.18281e-06 -5.19651e-06 -7.82957e-07 -4.89575e-06 -3.29194e-07 -4.58528e-06 3.16567e-07 -4.15787e-06 9.09439e-07 -3.669e-06 1.57937e-06 -3.11122e-06 2.21615e-06 -2.39949e-06 2.57203e-06 -1.66645e-06 2.79286e-06 -9.82043e-07 2.54125e-06 -5.38047e-07 2.23971e-06 -3.48954e-07 1.93246e-06 -3.03679e-07 1.71597e-06 -3.96345e-07 1.77732e-06 -5.56259e-07 2.09307e-06 -7.58232e-07 2.58856e-06 -1.1917e-06 3.27571e-06 -2.18058e-06 4.6233e-06 -3.42799e-06 6.4952e-06 -4.28434e-06 7.97997e-06 -4.59443e-06 8.01828e-06 -4.5708e-06 6.71131e-06 -4.38257e-06 4.9262e-06 -4.19843e-06 2.62877e-06 -4.13194e-06 3.43689e-07 -4.13279e-06 -1.54729e-06 -4.4091e-06 -3.1331e-06 -5.04516e-06 -4.51964e-06 -6.12144e-06 -5.94022e-06 -7.58821e-06 -7.24346e-06 -9.04744e-06 -8.51913e-06 -9.76679e-06 -9.49661e-06 -9.45751e-06 -9.43845e-06 -8.62144e-06 -8.18199e-06 -7.777e-06 -6.64576e-06 -6.81641e-06 -5.07915e-06 -5.91695e-06 -3.18504e-06 -5.06965e-06 -1.26647e-06 -4.19447e-06 8.39935e-07 -3.55899e-06 3.10888e-06 -3.5375e-06 5.54339e-06 -4.38556e-06 8.32581e-06 -5.65857e-06 1.16743e-05 -6.60841e-06 1.48724e-05 -6.76762e-06 1.64717e-05 -6.24742e-06 1.57333e-05 -5.50502e-06 1.34919e-05 -4.92125e-06 1.1651e-05 -4.4897e-06 1.03176e-05 -4.04661e-06 8.66437e-06 -3.59476e-06 7.39592e-06 -3.10483e-06 6.48256e-06 -2.74265e-06 5.2997e-06 -2.36688e-06 4.45262e-06 -2.0319e-06 3.4385e-06 -1.6289e-06 2.48977e-06 -1.21191e-06 1.51373e-06 -7.07556e-07 5.51861e-07 -1.07431e-07 -4.4152e-07 6.04176e-07 -1.3149e-06 1.4375e-06 -2.22322e-06 2.44736e-06 -3.01662e-06 3.5828e-06 -3.65614e-06 4.74689e-06 -4.05696e-06 5.93705e-06 -4.39978e-06 7.09332e-06 -4.54928e-06 8.08072e-06 -4.65309e-06 9.03321e-06 -4.99643e-06 9.84373e-06 -5.13698e-06 1.03623e-05 -5.17029e-06 1.08957e-05 -5.69451e-06 1.15191e-05 -6.16799e-06 1.18107e-05 -6.08367e-06 1.19216e-05 -6.5395e-06 1.23633e-05 -7.41592e-06 1.27926e-05 -7.52882e-06 1.29104e-05 -8.01151e-06 1.31969e-05 -9.35092e-06 1.36218e-05 -1.02645e-05 1.39126e-05 -1.10237e-05 1.41936e-05 -1.26001e-05 1.45886e-05 -1.37377e-05 1.4945e-05 -1.3541e-05 1.53066e-05 -1.32711e-05 1.57145e-05 -1.26859e-05 1.59378e-05 -1.10657e-05 1.59889e-05 -9.1636e-06 1.60764e-05 -7.40953e-06 1.61594e-05 -5.90446e-06 1.60349e-05 -4.37352e-06 1.57438e-05 -2.94643e-06 1.55267e-05 -2.12023e-06 1.55131e-05 -1.61281e-06 1.54266e-05 -9.52232e-07 1.4935e-05 3.48725e-08 1.40127e-05 1.19032e-06 1.29377e-05 1.95962e-06 1.20061e-05 2.26179e-06 1.11201e-05 2.86969e-06 9.8468e-06 3.8851e-06 8.4856e-06 4.13389e-06 7.95008e-06 2.34476e-06 8.56918e-06 -1.32798e-06 1.00052e-05 -5.72755e-06 1.17693e-05 -9.60123e-06 1.37567e-05 -1.25296e-05 1.60418e-05 -1.41951e-05 1.80477e-05 -1.40151e-05 1.96292e-05 -1.29095e-05 2.13661e-05 -1.11056e-05 2.26639e-05 -7.90451e-06 2.29955e-05 -4.77664e-06 2.32621e-05 -2.1957e-06 2.37767e-05 1.25489e-06 2.36573e-05 5.38817e-06 2.24072e-05 8.41086e-06 2.02454e-05 9.42236e-06 1.8e-05 8.96118e-06 1.6368e-05 8.60276e-06 1.51148e-05 9.37592e-06 1.38103e-05 1.07769e-05 1.25955e-05 1.20232e-05 1.17184e-05 1.3207e-05 1.07891e-05 1.46061e-05 9.53691e-06 1.58067e-05 8.10776e-06 1.68893e-05 6.9183e-06 1.80595e-05 6.11663e-06 1.9222e-05 5.46871e-06 1.98359e-05 4.95131e-06 1.89751e-05 4.46899e-06 1.65538e-05 3.46261e-06 1.38643e-05 1.91619e-06 1.19952e-05 5.49779e-07 1.07654e-05 1.26579e-08 9.23689e-06 1.75396e-07 6.63983e-06 4.59396e-07 3.86864e-06 4.7102e-07 8.65809e-07 2.93968e-07 -1.30468e-06 4.40455e-07 -4.60566e-06 8.27348e-07 -6.74684e-06 1.71534e-06 -1.01948e-05 2.45249e-06 -1.16026e-05 2.95431e-06 -1.36439e-05 3.5858e-06 -1.59944e-05 4.73862e-06 -1.70807e-05 6.09167e-06 -1.65766e-05 7.43033e-06 -1.56175e-05 8.63306e-06 -1.46473e-05 9.9018e-06 -1.41716e-05 1.12023e-05 -1.32904e-05 1.23545e-05 -1.21613e-05 1.33909e-05 -1.19986e-05 1.4482e-05 -1.25026e-05 1.58478e-05 -1.28206e-05 1.71216e-05 -1.28634e-05 1.80613e-05 -1.21524e-05 1.8957e-05 -9.62955e-06 1.93622e-05 -6.11934e-06 1.93836e-05 -4.30799e-06 1.97179e-05 -3.77421e-06 2.06985e-05 -2.81384e-06 2.16431e-05 -1.17118e-06 2.19584e-05 7.40999e-08 2.2284e-05 8.15994e-07 2.28123e-05 1.38713e-06 2.31763e-05 9.95862e-07 2.32937e-05 3.05221e-07 2.27907e-05 7.20141e-08 2.19171e-05 -7.42498e-07 2.17177e-05 -1.71542e-06 2.1525e-05 -1.29129e-06 2.02958e-05 -1.18952e-06 1.95508e-05 -9.70591e-07 1.97666e-05 2.8227e-06 1.92512e-05 7.25482e-06 1.73088e-05 8.98764e-06 1.51983e-05 9.0992e-06 1.37291e-05 8.61369e-06 1.25911e-05 7.86707e-06 1.11278e-05 8.04288e-06 9.53627e-06 9.69222e-06 7.94759e-06 1.18033e-05 7.01304e-06 1.29578e-05 5.86564e-06 1.36994e-05 4.87203e-06 1.31086e-05 3.64533e-06 1.20449e-05 2.59877e-06 1.0716e-05 1.53975e-06 1.05734e-05 3.34021e-07 1.05789e-05 1.01794e-05 -1.76183e-06 -2.46188e-06 -3.32427e-06 -3.05265e-06 -4.60359e-06 -2.92298e-06 -5.63118e-06 -2.70874e-06 -6.27078e-06 -2.52767e-06 -6.67203e-06 -2.22615e-06 -6.88819e-06 -2.05747e-06 -6.98966e-06 -1.63594e-06 -6.9604e-06 -1.46119e-06 -6.82325e-06 -1.31996e-06 -6.64561e-06 -9.60601e-07 -6.39071e-06 -5.84091e-07 -6.16968e-06 9.55441e-08 -5.79494e-06 5.34691e-07 -5.34064e-06 1.12507e-06 -4.8605e-06 1.73601e-06 -4.28024e-06 1.99178e-06 -3.66595e-06 2.17857e-06 -3.08816e-06 1.96347e-06 -2.62295e-06 1.7745e-06 -2.1476e-06 1.45711e-06 -1.70777e-06 1.27614e-06 -1.3532e-06 1.42275e-06 -1.09946e-06 1.83933e-06 -1.06309e-06 2.55219e-06 -1.40192e-06 3.61455e-06 -2.10835e-06 5.32973e-06 -2.85741e-06 7.24427e-06 -3.2231e-06 8.34566e-06 -3.22762e-06 8.0228e-06 -3.06712e-06 6.55081e-06 -2.85123e-06 4.71031e-06 -2.7308e-06 2.50834e-06 -2.73058e-06 3.43465e-07 -2.81407e-06 -1.4638e-06 -3.1181e-06 -2.82907e-06 -3.59468e-06 -4.04306e-06 -4.33082e-06 -5.20408e-06 -5.4791e-06 -6.09519e-06 -7.06204e-06 -6.93618e-06 -8.62677e-06 -7.93189e-06 -9.43414e-06 -8.63108e-06 -9.3059e-06 -8.31023e-06 -8.8268e-06 -7.12486e-06 -8.23221e-06 -5.67375e-06 -7.50064e-06 -3.91661e-06 -6.8549e-06 -1.91221e-06 -6.30306e-06 2.88098e-07 -5.8905e-06 2.69633e-06 -5.81368e-06 5.46657e-06 -6.07749e-06 8.58962e-06 -6.341e-06 1.19378e-05 -6.20397e-06 1.47354e-05 -5.47879e-06 1.57465e-05 -4.47566e-06 1.47302e-05 -3.52401e-06 1.25403e-05 -2.75579e-06 1.08828e-05 -2.1129e-06 9.67472e-06 -1.58452e-06 8.136e-06 -1.10071e-06 6.91211e-06 -5.88068e-07 5.96992e-06 -1.62175e-07 4.87381e-06 2.7574e-07 4.0147e-06 6.78115e-07 3.03613e-06 1.06428e-06 2.10361e-06 1.49678e-06 1.08123e-06 1.99682e-06 5.18217e-08 2.54641e-06 -9.9111e-07 3.2682e-06 -2.03669e-06 4.11188e-06 -3.06691e-06 5.11467e-06 -4.01941e-06 6.17063e-06 -4.7121e-06 7.23326e-06 -5.11959e-06 8.37525e-06 -5.54177e-06 9.53678e-06 -5.71081e-06 1.04351e-05 -5.55142e-06 1.13113e-05 -5.87265e-06 1.2276e-05 -6.10166e-06 1.28869e-05 -5.78121e-06 1.32669e-05 -6.07451e-06 1.39183e-05 -6.81935e-06 1.44955e-05 -6.6609e-06 1.46594e-05 -6.70337e-06 1.4966e-05 -7.72248e-06 1.54966e-05 -8.05944e-06 1.57968e-05 -8.31176e-06 1.61444e-05 -9.6985e-06 1.65988e-05 -1.07189e-05 1.69462e-05 -1.1371e-05 1.72391e-05 -1.2893e-05 1.74547e-05 -1.39533e-05 1.75193e-05 -1.36055e-05 1.75899e-05 -1.33417e-05 1.76375e-05 -1.27334e-05 1.73783e-05 -1.08065e-05 1.70233e-05 -8.80865e-06 1.68918e-05 -7.27802e-06 1.67507e-05 -5.76338e-06 1.63199e-05 -3.94268e-06 1.57487e-05 -2.37521e-06 1.54962e-05 -1.86773e-06 1.54136e-05 -1.53019e-06 1.50373e-05 -5.7598e-07 1.40338e-05 1.03842e-06 1.2813e-05 2.41104e-06 1.21647e-05 2.60794e-06 1.18652e-05 2.56128e-06 1.09966e-05 3.73836e-06 9.60482e-06 5.27683e-06 8.63161e-06 5.1071e-06 8.58923e-06 2.38715e-06 9.31521e-06 -2.05396e-06 1.07681e-05 -7.18044e-06 1.28009e-05 -1.1634e-05 1.47428e-05 -1.44715e-05 1.67154e-05 -1.61677e-05 1.88251e-05 -1.61249e-05 2.03664e-05 -1.44508e-05 2.17662e-05 -1.25055e-05 2.32883e-05 -9.42664e-06 2.39451e-05 -5.43344e-06 2.39836e-05 -2.2342e-06 2.42193e-05 1.01921e-06 2.43114e-05 5.2961e-06 2.34583e-05 9.264e-06 2.15798e-05 1.13008e-05 1.91758e-05 1.13652e-05 1.70606e-05 1.0718e-05 1.55133e-05 1.09233e-05 1.42938e-05 1.19963e-05 1.31426e-05 1.31744e-05 1.21602e-05 1.41894e-05 1.12668e-05 1.54996e-05 1.02423e-05 1.68312e-05 9.18266e-06 1.79489e-05 8.12024e-06 1.91219e-05 7.33687e-06 2.00054e-05 6.84835e-06 2.03244e-05 6.36338e-06 1.94601e-05 5.59516e-06 1.7322e-05 4.32076e-06 1.51387e-05 2.90192e-06 1.3414e-05 2.13061e-06 1.15367e-05 2.00404e-06 9.36346e-06 2.49474e-06 6.14913e-06 2.77287e-06 3.59052e-06 3.04319e-06 5.95485e-07 2.68589e-06 -9.47376e-07 2.36407e-06 -4.28384e-06 2.25699e-06 -6.63977e-06 2.82829e-06 -1.07661e-05 3.60642e-06 -1.23807e-05 4.3373e-06 -1.43748e-05 4.88001e-06 -1.65371e-05 5.83784e-06 -1.80385e-05 6.94562e-06 -1.76843e-05 8.2024e-06 -1.68743e-05 9.6562e-06 -1.61011e-05 1.10019e-05 -1.55172e-05 1.21966e-05 -1.44852e-05 1.3148e-05 -1.31127e-05 1.41508e-05 -1.30014e-05 1.53293e-05 -1.3681e-05 1.65518e-05 -1.40431e-05 1.74787e-05 -1.37903e-05 1.7876e-05 -1.25497e-05 1.79868e-05 -9.74036e-06 1.83508e-05 -6.48332e-06 1.87126e-05 -4.66979e-06 1.92156e-05 -4.2772e-06 1.99383e-05 -3.5366e-06 2.08929e-05 -2.1257e-06 2.14506e-05 -4.83673e-07 2.19395e-05 3.27082e-07 2.25881e-05 7.38572e-07 2.33449e-05 2.39104e-07 2.39078e-05 -2.57725e-07 2.38893e-05 9.05291e-08 2.34219e-05 -2.75123e-07 2.33606e-05 -1.65414e-06 2.32101e-05 -1.14076e-06 2.19304e-05 9.01994e-08 2.05777e-05 3.82063e-07 2.04154e-05 2.98507e-06 1.98376e-05 7.83253e-06 1.79111e-05 1.09142e-05 1.55405e-05 1.14698e-05 1.35544e-05 1.05998e-05 1.23593e-05 9.06223e-06 1.11879e-05 9.21425e-06 9.89784e-06 1.09823e-05 8.46793e-06 1.32332e-05 7.08006e-06 1.43457e-05 6.2086e-06 1.45709e-05 4.82345e-06 1.44937e-05 3.96914e-06 1.28992e-05 2.74724e-06 1.19379e-05 2.16955e-06 1.11511e-05 1.91825e-06 1.08301e-05 1.20976e-05 -1.95647e-06 -5.05412e-07 -3.71657e-06 -1.29254e-06 -5.38289e-06 -1.25667e-06 -6.62218e-06 -1.46946e-06 -7.2398e-06 -1.91005e-06 -7.69703e-06 -1.76892e-06 -7.91485e-06 -1.83965e-06 -7.99494e-06 -1.55585e-06 -8.01908e-06 -1.43706e-06 -7.90564e-06 -1.4334e-06 -7.78448e-06 -1.08176e-06 -7.66309e-06 -7.05481e-07 -7.45907e-06 -1.08476e-07 -7.12251e-06 1.98129e-07 -6.75952e-06 7.62078e-07 -6.32029e-06 1.29677e-06 -5.72452e-06 1.39601e-06 -5.04899e-06 1.50304e-06 -4.41528e-06 1.32976e-06 -3.75005e-06 1.10926e-06 -3.05703e-06 7.64093e-07 -2.3888e-06 6.07909e-07 -1.86104e-06 8.9499e-07 -1.5232e-06 1.50149e-06 -1.43272e-06 2.46171e-06 -1.59305e-06 3.77488e-06 -1.88808e-06 5.62476e-06 -2.16779e-06 7.52398e-06 -2.12772e-06 8.30559e-06 -1.91443e-06 7.80951e-06 -1.68199e-06 6.31837e-06 -1.43012e-06 4.45844e-06 -1.29559e-06 2.37381e-06 -1.31423e-06 3.62107e-07 -1.50359e-06 -1.27444e-06 -1.8967e-06 -2.43595e-06 -2.43788e-06 -3.50189e-06 -3.10361e-06 -4.53835e-06 -3.84429e-06 -5.35451e-06 -4.82414e-06 -5.95633e-06 -6.28101e-06 -6.47502e-06 -7.87317e-06 -7.03892e-06 -8.73767e-06 -7.44573e-06 -8.84722e-06 -7.01531e-06 -8.72122e-06 -5.79974e-06 -8.35348e-06 -4.28436e-06 -7.90498e-06 -2.3607e-06 -7.50255e-06 -1.14333e-07 -7.08347e-06 2.27724e-06 -6.76726e-06 5.15037e-06 -6.46531e-06 8.28767e-06 -5.93695e-06 1.14095e-05 -5.0085e-06 1.38069e-05 -3.82119e-06 1.45592e-05 -2.60605e-06 1.35151e-05 -1.45595e-06 1.13902e-05 -5.33984e-07 9.96081e-06 2.41888e-07 8.89885e-06 9.12142e-07 7.46574e-06 1.50119e-06 6.32305e-06 2.09176e-06 5.37936e-06 2.57384e-06 4.39172e-06 3.07242e-06 3.51613e-06 3.51742e-06 2.59113e-06 3.98231e-06 1.63871e-06 4.47227e-06 5.91268e-07 4.97676e-06 -4.52662e-07 5.62379e-06 -1.63815e-06 6.39615e-06 -2.80905e-06 7.15189e-06 -3.82264e-06 8.12396e-06 -4.99148e-06 9.167e-06 -5.75514e-06 1.0018e-05 -5.97063e-06 1.0949e-05 -6.47276e-06 1.20413e-05 -6.80308e-06 1.28185e-05 -6.32858e-06 1.33905e-05 -6.44472e-06 1.42667e-05 -6.97779e-06 1.50556e-05 -6.5702e-06 1.54207e-05 -6.43959e-06 1.59262e-05 -7.32487e-06 1.6657e-05 -7.39167e-06 1.70922e-05 -7.13861e-06 1.74885e-05 -8.11876e-06 1.81051e-05 -8.67604e-06 1.86154e-05 -8.82206e-06 1.91176e-05 -1.02007e-05 1.96136e-05 -1.12148e-05 1.99265e-05 -1.16839e-05 2.01724e-05 -1.3139e-05 2.02073e-05 -1.39882e-05 1.99515e-05 -1.33497e-05 1.96809e-05 -1.30712e-05 1.93544e-05 -1.24069e-05 1.86949e-05 -1.0147e-05 1.79852e-05 -8.09893e-06 1.75913e-05 -6.88409e-06 1.71135e-05 -5.28556e-06 1.6374e-05 -3.20316e-06 1.58037e-05 -1.80496e-06 1.56054e-05 -1.66941e-06 1.53148e-05 -1.23957e-06 1.4251e-05 4.87793e-07 1.27485e-05 2.54093e-06 1.20544e-05 3.10507e-06 1.22537e-05 2.40868e-06 1.21434e-05 2.67161e-06 1.11292e-05 4.75256e-06 9.7977e-06 6.60831e-06 9.15109e-06 5.75371e-06 9.45864e-06 2.0796e-06 1.05025e-05 -3.09786e-06 1.17705e-05 -8.44841e-06 1.35653e-05 -1.34288e-05 1.57763e-05 -1.66825e-05 1.75521e-05 -1.79434e-05 1.94257e-05 -1.79985e-05 2.10853e-05 -1.61104e-05 2.21603e-05 -1.35805e-05 2.34466e-05 -1.07129e-05 2.44673e-05 -6.45415e-06 2.46463e-05 -2.41327e-06 2.46285e-05 1.037e-06 2.47211e-05 5.20351e-06 2.42597e-05 9.72547e-06 2.26884e-05 1.28721e-05 2.03667e-05 1.36869e-05 1.79363e-05 1.31484e-05 1.60136e-05 1.2846e-05 1.4581e-05 1.34289e-05 1.33673e-05 1.43882e-05 1.23434e-05 1.52133e-05 1.15164e-05 1.63265e-05 1.06124e-05 1.77352e-05 9.69579e-06 1.88655e-05 8.8114e-06 2.00063e-05 8.08039e-06 2.07364e-05 7.66071e-06 2.07441e-05 7.1457e-06 1.99751e-05 6.12294e-06 1.83448e-05 4.91846e-06 1.63432e-05 3.9846e-06 1.43479e-05 3.70704e-06 1.18142e-05 3.75302e-06 9.31748e-06 4.17243e-06 5.72971e-06 4.39684e-06 3.36611e-06 4.97106e-06 2.12671e-08 5.14755e-06 -1.12386e-06 4.99655e-06 -4.13284e-06 4.67693e-06 -6.32014e-06 4.83807e-06 -1.09272e-05 5.5837e-06 -1.31263e-05 6.50016e-06 -1.52913e-05 7.01645e-06 -1.70534e-05 7.71777e-06 -1.87398e-05 8.53971e-06 -1.85063e-05 9.40593e-06 -1.77405e-05 1.04949e-05 -1.71901e-05 1.17149e-05 -1.67372e-05 1.29001e-05 -1.56703e-05 1.38334e-05 -1.40461e-05 1.45523e-05 -1.37203e-05 1.54815e-05 -1.46102e-05 1.65237e-05 -1.50854e-05 1.73555e-05 -1.46221e-05 1.75703e-05 -1.27645e-05 1.74468e-05 -9.61692e-06 1.73747e-05 -6.41122e-06 1.76571e-05 -4.95217e-06 1.81787e-05 -4.79879e-06 1.90599e-05 -4.41781e-06 2.01292e-05 -3.19498e-06 2.12788e-05 -1.63332e-06 2.2176e-05 -5.70095e-07 2.31578e-05 -2.43181e-07 2.39181e-05 -5.21186e-07 2.45122e-05 -8.51908e-07 2.4727e-05 -1.24256e-07 2.46979e-05 -2.46036e-07 2.46897e-05 -1.64592e-06 2.4431e-05 -8.82009e-07 2.33895e-05 1.13164e-06 2.21245e-05 1.64705e-06 2.13324e-05 3.77717e-06 2.0798e-05 8.367e-06 1.93449e-05 1.23673e-05 1.70268e-05 1.37879e-05 1.48125e-05 1.2814e-05 1.29239e-05 1.09508e-05 1.14931e-05 1.0645e-05 9.64358e-06 1.28318e-05 8.43754e-06 1.44393e-05 7.22074e-06 1.55625e-05 5.95432e-06 1.58373e-05 5.55318e-06 1.48949e-05 4.50283e-06 1.39495e-05 3.97957e-06 1.24612e-05 1.72949e-06 1.34012e-05 -1.28734e-07 1.26884e-05 1.19689e-05 -2.27861e-06 1.7732e-06 -4.58611e-06 1.01496e-06 -6.30211e-06 4.59337e-07 -7.52023e-06 -2.51341e-07 -8.23585e-06 -1.19443e-06 -8.52679e-06 -1.47799e-06 -8.69697e-06 -1.66946e-06 -8.64612e-06 -1.6067e-06 -8.58966e-06 -1.49352e-06 -8.47363e-06 -1.54943e-06 -8.42146e-06 -1.13393e-06 -8.31146e-06 -8.15473e-07 -7.97855e-06 -4.41385e-07 -7.73962e-06 -4.08018e-08 -7.4324e-06 4.54856e-07 -7.0007e-06 8.65068e-07 -6.49966e-06 8.94975e-07 -5.91064e-06 9.14013e-07 -5.32647e-06 7.45595e-07 -4.69318e-06 4.75968e-07 -4.04268e-06 1.136e-07 -3.35713e-06 -7.76445e-08 -2.76157e-06 2.99433e-07 -2.2808e-06 1.02072e-06 -1.92514e-06 2.10605e-06 -1.74541e-06 3.59516e-06 -1.62921e-06 5.50856e-06 -1.42163e-06 7.3164e-06 -1.0302e-06 7.91416e-06 -5.71076e-07 7.35038e-06 -1.45696e-07 5.893e-06 1.24144e-07 4.1886e-06 2.55988e-07 2.24196e-06 1.70937e-07 4.47158e-07 -1.91479e-07 -9.12022e-07 -6.77486e-07 -1.94995e-06 -1.2721e-06 -2.90727e-06 -1.94869e-06 -3.86176e-06 -2.60621e-06 -4.69699e-06 -3.20026e-06 -5.36228e-06 -3.94863e-06 -5.72665e-06 -5.17537e-06 -5.81218e-06 -6.62471e-06 -5.99639e-06 -7.55108e-06 -6.08894e-06 -7.89138e-06 -5.45944e-06 -8.03112e-06 -4.14462e-06 -7.88254e-06 -2.50928e-06 -7.53799e-06 -4.58882e-07 -7.02583e-06 1.76507e-06 -6.35569e-06 4.48023e-06 -5.52685e-06 7.45883e-06 -4.41873e-06 1.03014e-05 -3.00249e-06 1.23907e-05 -1.58236e-06 1.3139e-05 -2.68037e-07 1.22008e-05 8.56897e-07 1.02652e-05 1.85287e-06 8.96484e-06 2.80352e-06 7.9482e-06 3.52158e-06 6.74769e-06 4.1634e-06 5.68123e-06 4.8264e-06 4.71635e-06 5.41379e-06 3.80434e-06 5.96876e-06 2.96115e-06 6.48446e-06 2.07542e-06 7.01456e-06 1.10862e-06 7.5772e-06 2.86292e-08 8.16238e-06 -1.03784e-06 8.87751e-06 -2.35327e-06 9.74385e-06 -3.6754e-06 1.04685e-05 -4.54725e-06 1.12718e-05 -5.79481e-06 1.23298e-05 -6.81314e-06 1.30746e-05 -6.71543e-06 1.36361e-05 -7.03424e-06 1.45483e-05 -7.71525e-06 1.53712e-05 -7.15151e-06 1.57118e-05 -6.78533e-06 1.62679e-05 -7.53391e-06 1.71156e-05 -7.4179e-06 1.76556e-05 -6.9796e-06 1.81043e-05 -7.77355e-06 1.88609e-05 -8.14827e-06 1.95671e-05 -7.84478e-06 2.01764e-05 -8.72807e-06 2.08667e-05 -9.36632e-06 2.15169e-05 -9.47224e-06 2.21445e-05 -1.08283e-05 2.26555e-05 -1.17259e-05 2.28815e-05 -1.19099e-05 2.2961e-05 -1.32184e-05 2.27648e-05 -1.3792e-05 2.22019e-05 -1.27868e-05 2.15508e-05 -1.242e-05 2.07701e-05 -1.16262e-05 1.9774e-05 -9.15087e-06 1.88676e-05 -7.19256e-06 1.81736e-05 -6.19005e-06 1.73553e-05 -4.46726e-06 1.6407e-05 -2.25495e-06 1.58874e-05 -1.28529e-06 1.57129e-05 -1.49499e-06 1.48934e-05 -4.20013e-07 1.32531e-05 2.1281e-06 1.20958e-05 3.69819e-06 1.23323e-05 2.86861e-06 1.2914e-05 1.82691e-06 1.25919e-05 2.99371e-06 1.14662e-05 5.87831e-06 1.0509e-05 7.5655e-06 1.0084e-05 6.17872e-06 1.03738e-05 1.78982e-06 1.14193e-05 -4.14342e-06 1.29165e-05 -9.94558e-06 1.45829e-05 -1.50952e-05 1.66797e-05 -1.87793e-05 1.84723e-05 -1.97361e-05 1.98895e-05 -1.94156e-05 2.15554e-05 -1.77763e-05 2.25801e-05 -1.46052e-05 2.34688e-05 -1.16016e-05 2.45779e-05 -7.56328e-06 2.50254e-05 -2.86077e-06 2.49723e-05 1.09006e-06 2.50093e-05 5.1665e-06 2.4765e-05 9.96984e-06 2.35855e-05 1.40515e-05 2.145e-05 1.58224e-05 1.89347e-05 1.56636e-05 1.65809e-05 1.51998e-05 1.4756e-05 1.52538e-05 1.33263e-05 1.58178e-05 1.20556e-05 1.6484e-05 1.1117e-05 1.72651e-05 1.02657e-05 1.85865e-05 9.41635e-06 1.97149e-05 8.79932e-06 2.06234e-05 8.2267e-06 2.1309e-05 7.73142e-06 2.12394e-05 7.10345e-06 2.0603e-05 6.31741e-06 1.91308e-05 5.73829e-06 1.69223e-05 5.29081e-06 1.47954e-05 5.37148e-06 1.17336e-05 5.49779e-06 9.19117e-06 5.84388e-06 5.38363e-06 6.00868e-06 3.20131e-06 6.71854e-06 -6.8859e-07 7.28913e-06 -1.69446e-06 7.58274e-06 -4.42644e-06 7.2837e-06 -6.02111e-06 6.98697e-06 -1.06305e-05 7.38027e-06 -1.35196e-05 8.10162e-06 -1.60126e-05 8.7704e-06 -1.77222e-05 9.40459e-06 -1.9374e-05 1.01637e-05 -1.92654e-05 1.10442e-05 -1.8621e-05 1.20067e-05 -1.81526e-05 1.30546e-05 -1.77851e-05 1.40823e-05 -1.66981e-05 1.4841e-05 -1.48047e-05 1.5413e-05 -1.42923e-05 1.60082e-05 -1.52054e-05 1.6649e-05 -1.57262e-05 1.70514e-05 -1.50244e-05 1.69116e-05 -1.26247e-05 1.65307e-05 -9.23608e-06 1.64816e-05 -6.36206e-06 1.69161e-05 -5.38671e-06 1.77781e-05 -5.66075e-06 1.88429e-05 -5.48257e-06 2.00645e-05 -4.41667e-06 2.14437e-05 -3.01251e-06 2.27587e-05 -1.88506e-06 2.39618e-05 -1.44625e-06 2.47446e-05 -1.30402e-06 2.53394e-05 -1.44665e-06 2.59335e-05 -7.18426e-07 2.6191e-05 -5.03481e-07 2.60403e-05 -1.49524e-06 2.55344e-05 -3.76122e-07 2.43599e-05 2.3061e-06 2.28246e-05 3.18236e-06 2.18346e-05 4.76721e-06 2.1184e-05 9.0176e-06 2.01149e-05 1.34364e-05 1.80368e-05 1.58659e-05 1.59984e-05 1.48524e-05 1.35332e-05 1.34161e-05 1.15378e-05 1.26404e-05 1.03086e-05 1.4061e-05 8.57066e-06 1.61772e-05 7.43757e-06 1.66956e-05 6.13455e-06 1.71403e-05 5.17973e-06 1.58497e-05 4.77949e-06 1.43498e-05 3.62598e-06 1.36147e-05 3.53808e-06 1.34891e-05 1.61275e-06 1.46137e-05 1.35817e-05 -1.48373e-06 3.25693e-06 -4.08723e-06 3.61846e-06 -6.37489e-06 2.74699e-06 -7.7435e-06 1.11727e-06 -8.57213e-06 -3.65798e-07 -8.87805e-06 -1.17206e-06 -9.00909e-06 -1.53842e-06 -8.96441e-06 -1.65138e-06 -8.87522e-06 -1.58271e-06 -8.88246e-06 -1.54219e-06 -8.79475e-06 -1.22164e-06 -8.62191e-06 -9.88314e-07 -8.35468e-06 -7.08607e-07 -8.22653e-06 -1.68961e-07 -8.00886e-06 2.37193e-07 -7.60411e-06 4.60317e-07 -7.32623e-06 6.17091e-07 -6.96538e-06 5.5316e-07 -6.50447e-06 2.84694e-07 -6.00816e-06 -2.03444e-08 -5.3959e-06 -4.9866e-07 -4.67851e-06 -7.95034e-07 -3.85937e-06 -5.19709e-07 -3.08559e-06 2.46933e-07 -2.42698e-06 1.44744e-06 -1.8068e-06 2.97498e-06 -1.14566e-06 4.84742e-06 -4.49061e-07 6.6198e-06 2.64734e-07 7.20037e-06 9.90892e-07 6.62422e-06 1.51953e-06 5.36436e-06 1.79049e-06 3.91764e-06 1.80689e-06 2.22556e-06 1.59911e-06 6.54932e-07 1.17012e-06 -4.83032e-07 6.93459e-07 -1.47328e-06 2.0349e-07 -2.4173e-06 -3.76871e-07 -3.2814e-06 -9.83616e-07 -4.09024e-06 -1.59064e-06 -4.75526e-06 -2.14165e-06 -5.17564e-06 -2.7208e-06 -5.23303e-06 -3.71276e-06 -5.00444e-06 -5.02039e-06 -4.78131e-06 -5.91822e-06 -4.56161e-06 -6.2029e-06 -3.85994e-06 -6.27146e-06 -2.44072e-06 -6.063e-06 -6.67345e-07 -5.71239e-06 1.41446e-06 -4.9752e-06 3.74304e-06 -3.85086e-06 6.33448e-06 -2.35397e-06 8.80446e-06 -6.36821e-07 1.06735e-05 1.00841e-06 1.14938e-05 2.43452e-06 1.07746e-05 3.47971e-06 9.22004e-06 4.45342e-06 7.99112e-06 5.39717e-06 7.00445e-06 6.21634e-06 5.92851e-06 6.96853e-06 4.92905e-06 7.64241e-06 4.04248e-06 8.27023e-06 3.17652e-06 8.90212e-06 2.32926e-06 9.45167e-06 1.52587e-06 1.00383e-05 5.21961e-07 1.07619e-05 -6.94964e-07 1.13869e-05 -1.66287e-06 1.20985e-05 -3.06484e-06 1.30769e-05 -4.65379e-06 1.38632e-05 -5.33354e-06 1.4372e-05 -6.30357e-06 1.52193e-05 -7.66048e-06 1.60449e-05 -7.541e-06 1.6348e-05 -7.33733e-06 1.67933e-05 -8.16057e-06 1.76309e-05 -7.98914e-06 1.8115e-05 -7.26941e-06 1.84853e-05 -7.90426e-06 1.92677e-05 -8.20028e-06 2.00718e-05 -7.7837e-06 2.06946e-05 -8.39634e-06 2.14635e-05 -8.91717e-06 2.23229e-05 -8.7042e-06 2.31522e-05 -9.55732e-06 2.39588e-05 -1.0173e-05 2.46336e-05 -1.01471e-05 2.52341e-05 -1.14288e-05 2.56455e-05 -1.21373e-05 2.56986e-05 -1.1963e-05 2.55108e-05 -1.30306e-05 2.49579e-05 -1.32392e-05 2.40587e-05 -1.18876e-05 2.30813e-05 -1.14426e-05 2.19297e-05 -1.04747e-05 2.05732e-05 -7.79433e-06 1.95076e-05 -6.12693e-06 1.86315e-05 -5.314e-06 1.74747e-05 -3.31042e-06 1.63879e-05 -1.16816e-06 1.60471e-05 -9.44466e-07 1.56754e-05 -1.12328e-06 1.43176e-05 9.37701e-07 1.28014e-05 3.64435e-06 1.25208e-05 3.97882e-06 1.33033e-05 2.08603e-06 1.36065e-05 1.5238e-06 1.29267e-05 3.67351e-06 1.20313e-05 6.77369e-06 1.1436e-05 8.16081e-06 1.13568e-05 6.25789e-06 1.1611e-05 1.53559e-06 1.25082e-05 -5.04059e-06 1.39137e-05 -1.13511e-05 1.55172e-05 -1.66987e-05 1.73239e-05 -2.05859e-05 1.90763e-05 -2.14884e-05 2.01744e-05 -2.05138e-05 2.15481e-05 -1.915e-05 2.27933e-05 -1.58504e-05 2.3536e-05 -1.23443e-05 2.44869e-05 -8.51416e-06 2.51092e-05 -3.48301e-06 2.51021e-05 1.09709e-06 2.51129e-05 5.15577e-06 2.50496e-05 1.00331e-05 2.42837e-05 1.48175e-05 2.24024e-05 1.77037e-05 1.99083e-05 1.81578e-05 1.74287e-05 1.76794e-05 1.51756e-05 1.75069e-05 1.33883e-05 1.76051e-05 1.17348e-05 1.81374e-05 1.04017e-05 1.85982e-05 9.47984e-06 1.95084e-05 8.58351e-06 2.06112e-05 8.03613e-06 2.11707e-05 7.66371e-06 2.16815e-05 7.3245e-06 2.15786e-05 7.0587e-06 2.08688e-05 6.65451e-06 1.9535e-05 6.53913e-06 1.70377e-05 6.66528e-06 1.46693e-05 7.14193e-06 1.12569e-05 7.3313e-06 9.0018e-06 7.60056e-06 5.11436e-06 7.65266e-06 3.14921e-06 8.23911e-06 -1.27504e-06 8.85586e-06 -2.31121e-06 9.57072e-06 -5.1413e-06 9.54156e-06 -5.99196e-06 9.25771e-06 -1.03467e-05 9.35789e-06 -1.36198e-05 9.93439e-06 -1.65891e-05 1.04497e-05 -1.82375e-05 1.08428e-05 -1.97671e-05 1.14482e-05 -1.98708e-05 1.2262e-05 -1.94348e-05 1.30757e-05 -1.89663e-05 1.39935e-05 -1.87029e-05 1.48902e-05 -1.75947e-05 1.5593e-05 -1.55076e-05 1.60828e-05 -1.47821e-05 1.65551e-05 -1.56777e-05 1.69333e-05 -1.61044e-05 1.68878e-05 -1.4979e-05 1.66015e-05 -1.23384e-05 1.62765e-05 -8.91103e-06 1.64811e-05 -6.56666e-06 1.72052e-05 -6.1108e-06 1.82576e-05 -6.71319e-06 1.94128e-05 -6.63779e-06 2.07722e-05 -5.7761e-06 2.23165e-05 -4.55681e-06 2.37341e-05 -3.30266e-06 2.4786e-05 -2.49808e-06 2.57277e-05 -2.24582e-06 2.63893e-05 -2.10818e-06 2.70851e-05 -1.41424e-06 2.73618e-05 -7.80212e-07 2.71272e-05 -1.2606e-06 2.62132e-05 5.3785e-07 2.49667e-05 3.55258e-06 2.34455e-05 4.70359e-06 2.24629e-05 5.74984e-06 2.13625e-05 1.01179e-05 2.01173e-05 1.46817e-05 1.883e-05 1.71532e-05 1.66679e-05 1.70145e-05 1.50872e-05 1.49968e-05 1.28583e-05 1.48693e-05 1.09407e-05 1.59786e-05 9.23036e-06 1.78875e-05 7.45941e-06 1.84665e-05 7.01886e-06 1.75809e-05 5.91252e-06 1.69561e-05 5.11159e-06 1.51507e-05 4.16627e-06 1.456e-05 1.87621e-06 1.57791e-05 1.54757e-06 1.49423e-05 1.51292e-05 -1.97161e-06 5.22854e-06 -3.88055e-06 5.52739e-06 -5.42625e-06 4.2927e-06 -6.4066e-06 2.09762e-06 -7.0295e-06 2.571e-07 -7.35512e-06 -8.46444e-07 -7.54128e-06 -1.35226e-06 -7.72761e-06 -1.46505e-06 -7.90266e-06 -1.40767e-06 -8.09429e-06 -1.35056e-06 -8.12679e-06 -1.18914e-06 -8.11896e-06 -9.96142e-07 -8.09169e-06 -7.35879e-07 -7.9579e-06 -3.02753e-07 -7.80595e-06 8.52463e-08 -7.5922e-06 2.46566e-07 -7.39222e-06 4.17108e-07 -7.16924e-06 3.30183e-07 -6.88514e-06 5.97593e-10 -6.58189e-06 -3.23601e-07 -6.19283e-06 -8.8772e-07 -5.65297e-06 -1.33489e-06 -4.84146e-06 -1.33122e-06 -3.77427e-06 -8.20262e-07 -2.73893e-06 4.12099e-07 -1.72111e-06 1.95716e-06 -6.17034e-07 3.74334e-06 4.9561e-07 5.50715e-06 1.50523e-06 6.19074e-06 2.34356e-06 5.78589e-06 3.02613e-06 4.6818e-06 3.45945e-06 3.48432e-06 3.51527e-06 2.16973e-06 3.37952e-06 7.90687e-07 3.20718e-06 -3.1069e-07 2.95149e-06 -1.21759e-06 2.65522e-06 -2.12104e-06 2.27193e-06 -2.89811e-06 1.72319e-06 -3.54149e-06 9.53099e-07 -3.98518e-06 4.87531e-08 -4.27129e-06 -7.19785e-07 -4.46449e-06 -1.22082e-06 -4.5034e-06 -1.86083e-06 -4.1413e-06 -2.8958e-06 -3.52664e-06 -3.8358e-06 -2.91994e-06 -4.20413e-06 -2.07238e-06 -4.08473e-06 -7.86745e-07 -3.57333e-06 9.03063e-07 -2.76374e-06 2.93345e-06 -1.50013e-06 5.07087e-06 1.88349e-07 7.11599e-06 2.13623e-06 8.72566e-06 4.00295e-06 9.62707e-06 5.47047e-06 9.30712e-06 6.53998e-06 8.15053e-06 7.48238e-06 7.04872e-06 8.37181e-06 6.11502e-06 9.15222e-06 5.1481e-06 9.86824e-06 4.21302e-06 1.05062e-05 3.40452e-06 1.11046e-05 2.57817e-06 1.17662e-05 1.66761e-06 1.23589e-05 9.3315e-07 1.2989e-05 -1.08112e-07 1.38461e-05 -1.55207e-06 1.46253e-05 -2.44209e-06 1.52519e-05 -3.69146e-06 1.61431e-05 -5.54497e-06 1.70534e-05 -6.24378e-06 1.74423e-05 -6.69247e-06 1.7814e-05 -8.03225e-06 1.85099e-05 -8.23685e-06 1.88742e-05 -7.70164e-06 1.9016e-05 -8.30238e-06 1.96529e-05 -8.62599e-06 2.04141e-05 -8.03061e-06 2.0943e-05 -8.43317e-06 2.17067e-05 -8.964e-06 2.26944e-05 -8.77144e-06 2.36085e-05 -9.31044e-06 2.45266e-05 -9.83529e-06 2.54719e-05 -9.64949e-06 2.63795e-05 -1.04648e-05 2.72304e-05 -1.1024e-05 2.78186e-05 -1.07353e-05 2.82396e-05 -1.18497e-05 2.84295e-05 -1.23272e-05 2.82435e-05 -1.17771e-05 2.76895e-05 -1.24765e-05 2.67258e-05 -1.22755e-05 2.55288e-05 -1.06907e-05 2.4255e-05 -1.01687e-05 2.27297e-05 -8.94938e-06 2.11261e-05 -6.19076e-06 2.00124e-05 -5.01323e-06 1.89045e-05 -4.20605e-06 1.74725e-05 -1.87843e-06 1.65554e-05 -2.51035e-07 1.62735e-05 -6.6263e-07 1.55087e-05 -3.58481e-07 1.40099e-05 2.43657e-06 1.3169e-05 4.48519e-06 1.35447e-05 3.60315e-06 1.41698e-05 1.46087e-06 1.40463e-05 1.64734e-06 1.34457e-05 4.2741e-06 1.26989e-05 7.52049e-06 1.241e-05 8.44977e-06 1.24547e-05 6.21311e-06 1.28517e-05 1.13868e-06 1.36491e-05 -5.83808e-06 1.48519e-05 -1.25539e-05 1.63383e-05 -1.81851e-05 1.77362e-05 -2.19837e-05 1.92849e-05 -2.30371e-05 2.04103e-05 -2.16392e-05 2.14522e-05 -2.01919e-05 2.26522e-05 -1.70505e-05 2.3404e-05 -1.30961e-05 2.41585e-05 -9.26861e-06 2.49575e-05 -4.28202e-06 2.51288e-05 9.25749e-07 2.51019e-05 5.18267e-06 2.51205e-05 1.00145e-05 2.46889e-05 1.52491e-05 2.32701e-05 1.91225e-05 2.09214e-05 2.05065e-05 1.83659e-05 2.02349e-05 1.59294e-05 1.99434e-05 1.36873e-05 1.98472e-05 1.17808e-05 2.0044e-05 1.00365e-05 2.03425e-05 8.81511e-06 2.07298e-05 7.88556e-06 2.15408e-05 7.22357e-06 2.18327e-05 7.04808e-06 2.18569e-05 6.97723e-06 2.16494e-05 7.17517e-06 2.06709e-05 7.35835e-06 1.93518e-05 7.65957e-06 1.67365e-05 7.96257e-06 1.43663e-05 8.66938e-06 1.05501e-05 9.03479e-06 8.6364e-06 9.49961e-06 4.64954e-06 9.39125e-06 3.25758e-06 9.70537e-06 -1.58916e-06 1.00942e-05 -2.70004e-06 1.0954e-05 -6.00111e-06 1.12899e-05 -6.32786e-06 1.13363e-05 -1.03931e-05 1.13304e-05 -1.36138e-05 1.20644e-05 -1.73231e-05 1.26432e-05 -1.88163e-05 1.29756e-05 -2.00995e-05 1.34985e-05 -2.03937e-05 1.40216e-05 -1.99579e-05 1.47108e-05 -1.96555e-05 1.52836e-05 -1.92757e-05 1.55765e-05 -1.78876e-05 1.61204e-05 -1.60514e-05 1.6506e-05 -1.51677e-05 1.69055e-05 -1.60772e-05 1.70994e-05 -1.62983e-05 1.70103e-05 -1.48899e-05 1.66847e-05 -1.20128e-05 1.65629e-05 -8.78926e-06 1.70179e-05 -7.02162e-06 1.8046e-05 -7.13887e-06 1.93718e-05 -8.03907e-06 2.08022e-05 -8.06816e-06 2.21788e-05 -7.15266e-06 2.35882e-05 -5.96623e-06 2.48915e-05 -4.60593e-06 2.58553e-05 -3.46188e-06 2.67053e-05 -3.09586e-06 2.74056e-05 -2.8085e-06 2.78797e-05 -1.88829e-06 2.79479e-05 -8.48381e-07 2.74861e-05 -7.98873e-07 2.66972e-05 1.32677e-06 2.55278e-05 4.72198e-06 2.43292e-05 5.90224e-06 2.2886e-05 7.19297e-06 2.17799e-05 1.1224e-05 2.00954e-05 1.63662e-05 1.90498e-05 1.81988e-05 1.77842e-05 1.82801e-05 1.57677e-05 1.70133e-05 1.39445e-05 1.66925e-05 1.15101e-05 1.84131e-05 1.0067e-05 1.93306e-05 8.73274e-06 1.98008e-05 7.14792e-06 1.91657e-05 6.5778e-06 1.75262e-05 5.2179e-06 1.65106e-05 3.76555e-06 1.60124e-05 2.33904e-06 1.72057e-05 -2.23274e-07 1.75046e-05 1.4906e-05 -6.95173e-07 5.92372e-06 -1.38753e-06 6.21975e-06 -1.82155e-06 4.72672e-06 -2.08757e-06 2.36365e-06 -2.35011e-06 5.19644e-07 -2.67897e-06 -5.17592e-07 -3.18733e-06 -8.43898e-07 -3.82325e-06 -8.29121e-07 -4.38004e-06 -8.50875e-07 -4.82836e-06 -9.02241e-07 -5.13504e-06 -8.8246e-07 -5.33694e-06 -7.94247e-07 -5.47184e-06 -6.00975e-07 -5.47589e-06 -2.98705e-07 -5.3558e-06 -3.48389e-08 -5.26072e-06 1.51486e-07 -5.11544e-06 2.71822e-07 -4.97769e-06 1.9244e-07 -4.94375e-06 -3.33474e-08 -4.92869e-06 -3.38655e-07 -5.02575e-06 -7.9066e-07 -5.10865e-06 -1.252e-06 -4.86435e-06 -1.57551e-06 -4.12011e-06 -1.5645e-06 -2.84392e-06 -8.64089e-07 -1.37058e-06 4.83816e-07 1.04489e-07 2.26828e-06 1.55911e-06 4.05253e-06 2.88745e-06 4.8624e-06 3.8921e-06 4.78125e-06 4.57973e-06 3.99417e-06 5.06714e-06 2.9969e-06 5.33535e-06 1.90152e-06 5.35744e-06 7.68597e-07 5.28664e-06 -2.39891e-07 5.16676e-06 -1.09771e-06 4.90989e-06 -1.86417e-06 4.51794e-06 -2.50616e-06 3.98314e-06 -3.00669e-06 3.35026e-06 -3.3523e-06 2.61762e-06 -3.53865e-06 1.77184e-06 -3.61871e-06 9.01182e-07 -3.63274e-06 3.18964e-07 -3.55908e-06 4.22407e-08 -3.24992e-06 -2.77454e-07 -2.60025e-06 -6.99044e-07 -1.6508e-06 -8.57314e-07 -6.28475e-07 -6.59364e-07 7.05113e-07 -3.94293e-08 2.31351e-06 1.07728e-06 3.95416e-06 2.62843e-06 5.56483e-06 4.53373e-06 6.82036e-06 6.46409e-06 7.69672e-06 8.08347e-06 7.68774e-06 9.25634e-06 6.97766e-06 1.02173e-05 6.08775e-06 1.10674e-05 5.26491e-06 1.17989e-05 4.41661e-06 1.24854e-05 3.52657e-06 1.31054e-05 2.78444e-06 1.37074e-05 1.97621e-06 1.44883e-05 8.86696e-07 1.5212e-05 2.09416e-07 1.58972e-05 -7.93299e-07 1.68187e-05 -2.47355e-06 1.77644e-05 -3.3878e-06 1.83845e-05 -4.31153e-06 1.89719e-05 -6.13239e-06 1.9726e-05 -6.9979e-06 2.01417e-05 -7.10815e-06 2.02111e-05 -8.10163e-06 2.05907e-05 -8.6165e-06 2.11082e-05 -8.21908e-06 2.13749e-05 -8.56906e-06 2.19002e-05 -9.15132e-06 2.28693e-05 -8.99977e-06 2.37349e-05 -9.29876e-06 2.46742e-05 -9.90332e-06 2.57849e-05 -9.88212e-06 2.68481e-05 -1.03736e-05 2.7899e-05 -1.08862e-05 2.88484e-05 -1.05989e-05 2.96296e-05 -1.12461e-05 3.03816e-05 -1.1776e-05 3.08263e-05 -1.11799e-05 3.08666e-05 -1.189e-05 3.0696e-05 -1.21566e-05 3.01925e-05 -1.12735e-05 2.92092e-05 -1.14932e-05 2.78722e-05 -1.09385e-05 2.64497e-05 -9.26815e-06 2.48615e-05 -8.58057e-06 2.30634e-05 -7.15124e-06 2.15121e-05 -4.63945e-06 2.03314e-05 -3.83255e-06 1.90005e-05 -2.87516e-06 1.76189e-05 -4.96865e-07 1.69037e-05 4.64185e-07 1.63795e-05 -1.38377e-07 1.53134e-05 7.07596e-07 1.42059e-05 3.5441e-06 1.39732e-05 4.71788e-06 1.44553e-05 3.12106e-06 1.46623e-05 1.25381e-06 1.41989e-05 2.1108e-06 1.35707e-05 4.90226e-06 1.33446e-05 7.74664e-06 1.36255e-05 8.16884e-06 1.3748e-05 6.0906e-06 1.3861e-05 1.02564e-06 1.44415e-05 -6.41854e-06 1.55075e-05 -1.362e-05 1.69203e-05 -1.95979e-05 1.81146e-05 -2.3178e-05 1.92759e-05 -2.41985e-05 2.04192e-05 -2.27824e-05 2.12533e-05 -2.10259e-05 2.24086e-05 -1.82057e-05 2.3194e-05 -1.38816e-05 2.38017e-05 -9.87628e-06 2.4567e-05 -5.04733e-06 2.49282e-05 5.64558e-07 2.4923e-05 5.18788e-06 2.5039e-05 9.89849e-06 2.48881e-05 1.54e-05 2.39468e-05 2.00638e-05 2.19492e-05 2.2504e-05 1.93922e-05 2.2792e-05 1.697e-05 2.23656e-05 1.45971e-05 2.22201e-05 1.25118e-05 2.21293e-05 1.06188e-05 2.22355e-05 9.07935e-06 2.22692e-05 8.14406e-06 2.2476e-05 7.54962e-06 2.24272e-05 7.31501e-06 2.20916e-05 7.33073e-06 2.16337e-05 7.93993e-06 2.00617e-05 8.49085e-06 1.88009e-05 9.19405e-06 1.60333e-05 9.49563e-06 1.40647e-05 1.01919e-05 9.8538e-06 1.07759e-05 8.0524e-06 1.13679e-05 4.05759e-06 1.15611e-05 3.06438e-06 1.15453e-05 -1.57342e-06 1.16914e-05 -2.84616e-06 1.22388e-05 -6.54846e-06 1.28793e-05 -6.96839e-06 1.31121e-05 -1.06259e-05 1.31741e-05 -1.36758e-05 1.37305e-05 -1.78796e-05 1.39777e-05 -1.90634e-05 1.44931e-05 -2.0615e-05 1.48548e-05 -2.07554e-05 1.53343e-05 -2.04373e-05 1.59264e-05 -2.02476e-05 1.63288e-05 -1.96782e-05 1.66486e-05 -1.82074e-05 1.68866e-05 -1.62895e-05 1.72119e-05 -1.5493e-05 1.74106e-05 -1.62758e-05 1.74089e-05 -1.62966e-05 1.72295e-05 -1.47105e-05 1.68928e-05 -1.16761e-05 1.70272e-05 -8.92358e-06 1.7789e-05 -7.78348e-06 1.91299e-05 -8.4798e-06 2.05471e-05 -9.45618e-06 2.20178e-05 -9.53895e-06 2.34627e-05 -8.59749e-06 2.48159e-05 -7.31949e-06 2.57687e-05 -5.55868e-06 2.65871e-05 -4.28032e-06 2.71833e-05 -3.69205e-06 2.77246e-05 -3.34979e-06 2.80538e-05 -2.21745e-06 2.81724e-05 -9.6702e-07 2.75745e-05 -2.00925e-07 2.68323e-05 2.06889e-06 2.56663e-05 5.88797e-06 2.46597e-05 6.90888e-06 2.30772e-05 8.77546e-06 2.14749e-05 1.28263e-05 2.02672e-05 1.75739e-05 1.87194e-05 1.97466e-05 1.77897e-05 1.92098e-05 1.60016e-05 1.88014e-05 1.43974e-05 1.82968e-05 1.28143e-05 1.99961e-05 1.06236e-05 2.15213e-05 9.58632e-06 2.08381e-05 8.54035e-06 2.02117e-05 6.96825e-06 1.90983e-05 6.18855e-06 1.72903e-05 4.89529e-06 1.73056e-05 4.02992e-06 1.8071e-05 3.66862e-06 1.78659e-05 1.85746e-05 8.29723e-07 5.09399e-06 1.42128e-06 5.62819e-06 1.77278e-06 4.37522e-06 1.83652e-06 2.2999e-06 1.79109e-06 5.65077e-07 1.65354e-06 -3.80037e-07 1.44501e-06 -6.35374e-07 1.1489e-06 -5.33009e-07 7.54697e-07 -4.56671e-07 3.03352e-07 -4.50897e-07 -1.54256e-07 -4.24851e-07 -5.6873e-07 -3.79773e-07 -8.94243e-07 -2.75462e-07 -1.05939e-06 -1.33555e-07 -1.09045e-06 -3.7862e-09 -1.02456e-06 8.56035e-08 -8.67337e-07 1.14596e-07 -7.1674e-07 4.18432e-08 -6.1773e-07 -1.32357e-07 -6.40321e-07 -3.16065e-07 -8.79086e-07 -5.51895e-07 -1.39882e-06 -7.32266e-07 -2.07281e-06 -9.0152e-07 -2.52958e-06 -1.10773e-06 -2.30339e-06 -1.09028e-06 -1.3216e-06 -4.97969e-07 3.35371e-07 6.11305e-07 2.17731e-06 2.21059e-06 3.83967e-06 3.20004e-06 5.26284e-06 3.35808e-06 6.28336e-06 2.97365e-06 6.94538e-06 2.33489e-06 7.32807e-06 1.51882e-06 7.45198e-06 6.44691e-07 7.41836e-06 -2.06269e-07 7.25757e-06 -9.36913e-07 6.93488e-06 -1.54149e-06 6.49281e-06 -2.06408e-06 5.95898e-06 -2.47287e-06 5.42837e-06 -2.82169e-06 4.96422e-06 -3.0745e-06 4.52778e-06 -3.18227e-06 4.02776e-06 -3.13272e-06 3.3916e-06 -2.92293e-06 2.74558e-06 -2.6039e-06 2.33968e-06 -2.19434e-06 2.22608e-06 -1.53719e-06 2.26167e-06 -6.64072e-07 2.57903e-06 3.87757e-07 3.20003e-06 1.69251e-06 4.15323e-06 3.00096e-06 5.44971e-06 4.26834e-06 7.03431e-06 5.23576e-06 8.75669e-06 5.97434e-06 1.03341e-05 6.11038e-06 1.15744e-05 5.73731e-06 1.25955e-05 5.06663e-06 1.34865e-05 4.37392e-06 1.42427e-05 3.66042e-06 1.50267e-05 2.74262e-06 1.57318e-05 2.07934e-06 1.63957e-05 1.3123e-06 1.72813e-05 1.04044e-09 1.81622e-05 -6.71483e-07 1.88944e-05 -1.52542e-06 1.96989e-05 -3.27813e-06 2.0582e-05 -4.27089e-06 2.12161e-05 -4.94559e-06 2.15408e-05 -6.45714e-06 2.18946e-05 -7.35163e-06 2.22582e-05 -7.4718e-06 2.23917e-05 -8.23512e-06 2.26435e-05 -8.86829e-06 2.3278e-05 -8.85356e-06 2.3957e-05 -9.24806e-06 2.47137e-05 -9.90806e-06 2.58285e-05 -1.01146e-05 2.69467e-05 -1.0417e-05 2.80698e-05 -1.10263e-05 2.92337e-05 -1.10461e-05 3.02252e-05 -1.13651e-05 3.12666e-05 -1.19276e-05 3.21151e-05 -1.14474e-05 3.25617e-05 -1.16927e-05 3.30299e-05 -1.22442e-05 3.32224e-05 -1.13724e-05 3.2771e-05 -1.14386e-05 3.22066e-05 -1.15922e-05 3.13568e-05 -1.04238e-05 2.99706e-05 -1.0107e-05 2.83954e-05 -9.36326e-06 2.67679e-05 -7.64068e-06 2.49616e-05 -6.77429e-06 2.32265e-05 -5.41613e-06 2.17646e-05 -3.17757e-06 2.04019e-05 -2.46984e-06 1.90932e-05 -1.56649e-06 1.79675e-05 6.28859e-07 1.71545e-05 1.27723e-06 1.63267e-05 6.89435e-07 1.53348e-05 1.69949e-06 1.47686e-05 4.11022e-06 1.47717e-05 4.71485e-06 1.49095e-05 2.98324e-06 1.48202e-05 1.34309e-06 1.4262e-05 2.66899e-06 1.35936e-05 5.57064e-06 1.33046e-05 8.03571e-06 1.37982e-05 7.67516e-06 1.44157e-05 5.47311e-06 1.47951e-05 6.46282e-07 1.5134e-05 -6.75742e-06 1.5915e-05 -1.4401e-05 1.70555e-05 -2.07385e-05 1.81008e-05 -2.42232e-05 1.91295e-05 -2.52273e-05 2.02207e-05 -2.38736e-05 2.09196e-05 -2.17248e-05 2.19377e-05 -1.92238e-05 2.28579e-05 -1.48019e-05 2.33886e-05 -1.0407e-05 2.40423e-05 -5.70101e-06 2.45736e-05 3.32859e-08 2.46289e-05 5.13254e-06 2.47894e-05 9.73799e-06 2.48846e-05 1.53048e-05 2.43731e-05 2.05754e-05 2.28971e-05 2.398e-05 2.05896e-05 2.50994e-05 1.81575e-05 2.47977e-05 1.5866e-05 2.45116e-05 1.37384e-05 2.4257e-05 1.18126e-05 2.41612e-05 1.02894e-05 2.37924e-05 9.27565e-06 2.34898e-05 8.7509e-06 2.29519e-05 8.85552e-06 2.19869e-05 8.88954e-06 2.15997e-05 9.4502e-06 1.95011e-05 9.98806e-06 1.8263e-05 1.07297e-05 1.52917e-05 1.12978e-05 1.34965e-05 1.18314e-05 9.32028e-06 1.25754e-05 7.30835e-06 1.31134e-05 3.51962e-06 1.35522e-05 2.62562e-06 1.3471e-05 -1.49232e-06 1.35503e-05 -2.9254e-06 1.38363e-05 -6.83448e-06 1.46572e-05 -7.78929e-06 1.49297e-05 -1.08984e-05 1.53104e-05 -1.40565e-05 1.56861e-05 -1.82552e-05 1.58375e-05 -1.92149e-05 1.6231e-05 -2.10085e-05 1.62528e-05 -2.07771e-05 1.67626e-05 -2.09472e-05 1.695e-05 -2.0435e-05 1.71536e-05 -1.98818e-05 1.72638e-05 -1.83175e-05 1.73295e-05 -1.63552e-05 1.76907e-05 -1.58542e-05 1.76983e-05 -1.62834e-05 1.7627e-05 -1.62254e-05 1.74591e-05 -1.45426e-05 1.74809e-05 -1.16979e-05 1.78526e-05 -9.29529e-06 1.87961e-05 -8.72698e-06 2.01944e-05 -9.87815e-06 2.16622e-05 -1.0924e-05 2.31223e-05 -1.09991e-05 2.43326e-05 -9.8078e-06 2.53036e-05 -8.29045e-06 2.60581e-05 -6.3132e-06 2.65504e-05 -4.77266e-06 2.70389e-05 -4.18055e-06 2.75559e-05 -3.86673e-06 2.7852e-05 -2.51361e-06 2.7826e-05 -9.41011e-07 2.72424e-05 3.82658e-07 2.62808e-05 3.03051e-06 2.53843e-05 6.78451e-06 2.39699e-05 8.32327e-06 2.2483e-05 1.02624e-05 2.05881e-05 1.47212e-05 1.97766e-05 1.83854e-05 1.8543e-05 2.09802e-05 1.73565e-05 2.03962e-05 1.65291e-05 1.96288e-05 1.45854e-05 2.02405e-05 1.34674e-05 2.11141e-05 1.22551e-05 2.27336e-05 1.05507e-05 2.25426e-05 9.56958e-06 2.11928e-05 8.40574e-06 2.02621e-05 7.17398e-06 1.85221e-05 6.38383e-06 1.80958e-05 4.56607e-06 1.98888e-05 1.36969e-06 2.10623e-05 1.99443e-05 1.89055e-06 3.20344e-06 3.54802e-06 3.97072e-06 4.64174e-06 3.2815e-06 5.10875e-06 1.83289e-06 5.05765e-06 6.16181e-07 4.77122e-06 -9.36104e-08 4.45255e-06 -3.16709e-07 4.22346e-06 -3.03919e-07 4.00278e-06 -2.35984e-07 3.77057e-06 -2.18687e-07 3.55292e-06 -2.072e-07 3.33702e-06 -1.63873e-07 3.14787e-06 -8.63149e-08 3.01054e-06 3.77169e-09 2.93983e-06 6.69252e-08 2.92626e-06 9.91786e-08 2.96059e-06 8.02587e-08 3.00157e-06 8.66279e-10 2.98568e-06 -1.1647e-07 2.92907e-06 -2.59452e-07 2.81154e-06 -4.34365e-07 2.69083e-06 -6.11551e-07 2.47421e-06 -6.84904e-07 2.10142e-06 -7.3494e-07 1.51522e-06 -5.04089e-07 1.14751e-06 -1.30259e-07 1.4257e-06 3.33116e-07 2.51668e-06 1.11962e-06 4.03339e-06 1.68333e-06 5.40141e-06 1.99006e-06 6.53038e-06 1.84468e-06 7.3481e-06 1.51717e-06 7.86519e-06 1.00174e-06 8.1391e-06 3.70775e-07 8.16836e-06 -2.35527e-07 8.01284e-06 -7.8139e-07 7.73366e-06 -1.26231e-06 7.35209e-06 -1.68251e-06 6.92339e-06 -2.04417e-06 6.4683e-06 -2.3666e-06 6.03439e-06 -2.64059e-06 5.67121e-06 -2.81909e-06 5.46827e-06 -2.92977e-06 5.45215e-06 -2.90681e-06 5.53332e-06 -2.68506e-06 5.62267e-06 -2.2837e-06 5.73047e-06 -1.64499e-06 5.94346e-06 -8.77065e-07 6.3016e-06 2.96156e-08 6.86692e-06 1.1272e-06 7.67569e-06 2.19219e-06 8.72414e-06 3.21989e-06 9.97468e-06 3.98521e-06 1.13939e-05 4.55515e-06 1.27731e-05 4.73112e-06 1.39726e-05 4.53786e-06 1.50464e-05 3.99282e-06 1.59735e-05 3.44678e-06 1.67689e-05 2.86505e-06 1.76672e-05 1.84434e-06 1.84769e-05 1.26959e-06 1.91876e-05 6.01633e-07 2.00454e-05 -8.56776e-07 2.09122e-05 -1.53834e-06 2.16663e-05 -2.27946e-06 2.22788e-05 -3.89066e-06 2.28342e-05 -4.82626e-06 2.3345e-05 -5.45636e-06 2.3589e-05 -6.70118e-06 2.37568e-05 -7.51945e-06 2.41388e-05 -7.85374e-06 2.45622e-05 -8.65856e-06 2.51117e-05 -9.41784e-06 2.59726e-05 -9.71446e-06 2.69871e-05 -1.02625e-05 2.80633e-05 -1.09842e-05 2.92192e-05 -1.12705e-05 3.03385e-05 -1.15363e-05 3.14964e-05 -1.21842e-05 3.25592e-05 -1.21089e-05 3.32664e-05 -1.20722e-05 3.40284e-05 -1.26896e-05 3.46523e-05 -1.20713e-05 3.47111e-05 -1.17515e-05 3.47274e-05 -1.22605e-05 3.45218e-05 -1.11668e-05 3.37268e-05 -1.06436e-05 3.28359e-05 -1.07012e-05 3.16726e-05 -9.26054e-06 3.0084e-05 -8.51835e-06 2.84159e-05 -7.69521e-06 2.66669e-05 -5.89168e-06 2.49154e-05 -5.02273e-06 2.33364e-05 -3.83712e-06 2.18588e-05 -1.70007e-06 2.0395e-05 -1.00595e-06 1.92446e-05 -4.16164e-07 1.83e-05 1.57348e-06 1.73977e-05 2.17956e-06 1.64555e-05 1.63157e-06 1.56422e-05 2.51284e-06 1.52233e-05 4.52911e-06 1.52556e-05 4.68253e-06 1.52124e-05 3.02651e-06 1.47998e-05 1.7557e-06 1.42289e-05 3.23984e-06 1.38612e-05 5.93835e-06 1.37863e-05 8.11057e-06 1.39142e-05 7.54726e-06 1.4327e-05 5.06033e-06 1.48763e-05 9.70363e-08 1.52519e-05 -7.13311e-06 1.61085e-05 -1.52575e-05 1.70298e-05 -2.16597e-05 1.79266e-05 -2.512e-05 1.8837e-05 -2.61376e-05 1.98124e-05 -2.48491e-05 2.05969e-05 -2.25093e-05 2.13591e-05 -1.9986e-05 2.23095e-05 -1.57522e-05 2.27852e-05 -1.08827e-05 2.34047e-05 -6.32046e-06 2.40381e-05 -6.00111e-07 2.4219e-05 4.95159e-06 2.43443e-05 9.61269e-06 2.47075e-05 1.49416e-05 2.46033e-05 2.06796e-05 2.36253e-05 2.49581e-05 2.1784e-05 2.69407e-05 1.94935e-05 2.70881e-05 1.7249e-05 2.67562e-05 1.52818e-05 2.62241e-05 1.35715e-05 2.58715e-05 1.21592e-05 2.52047e-05 1.1244e-05 2.4405e-05 1.04305e-05 2.37654e-05 1.05478e-05 2.18697e-05 1.07666e-05 2.13809e-05 1.11263e-05 1.91413e-05 1.15125e-05 1.78768e-05 1.21589e-05 1.46453e-05 1.30047e-05 1.26508e-05 1.36702e-05 8.65478e-06 1.43459e-05 6.63257e-06 1.48149e-05 3.05069e-06 1.53383e-05 2.10221e-06 1.57097e-05 -1.86372e-06 1.5741e-05 -2.95669e-06 1.58647e-05 -6.95818e-06 1.64234e-05 -8.34802e-06 1.67431e-05 -1.12181e-05 1.71527e-05 -1.44661e-05 1.73566e-05 -1.84591e-05 1.77688e-05 -1.96271e-05 1.79639e-05 -2.12036e-05 1.79912e-05 -2.08044e-05 1.80816e-05 -2.10376e-05 1.79177e-05 -2.0271e-05 1.82188e-05 -2.01829e-05 1.80733e-05 -1.8172e-05 1.79893e-05 -1.62713e-05 1.79942e-05 -1.58591e-05 1.78928e-05 -1.6182e-05 1.77837e-05 -1.61163e-05 1.78624e-05 -1.46212e-05 1.82729e-05 -1.21084e-05 1.88831e-05 -9.90549e-06 1.99857e-05 -9.82957e-06 2.13236e-05 -1.1216e-05 2.26364e-05 -1.22368e-05 2.38044e-05 -1.21671e-05 2.48179e-05 -1.08213e-05 2.53497e-05 -8.82221e-06 2.58787e-05 -6.84226e-06 2.632e-05 -5.21397e-06 2.68542e-05 -4.71475e-06 2.71526e-05 -4.16508e-06 2.7505e-05 -2.86598e-06 2.74404e-05 -8.76485e-07 2.70486e-05 7.74457e-07 2.57812e-05 4.29796e-06 2.46953e-05 7.8704e-06 2.30435e-05 9.9751e-06 2.17633e-05 1.15425e-05 2.02526e-05 1.6232e-05 1.87988e-05 1.98392e-05 1.85311e-05 2.12479e-05 1.68988e-05 2.20284e-05 1.57987e-05 2.07289e-05 1.50581e-05 2.09811e-05 1.36203e-05 2.25519e-05 1.27563e-05 2.35977e-05 1.16232e-05 2.36756e-05 1.05074e-05 2.23086e-05 9.98869e-06 2.07808e-05 8.48749e-06 2.00233e-05 6.66625e-06 1.9917e-05 5.91981e-06 2.06353e-05 4.67354e-06 2.23086e-05 2.46178e-05 1.92633e-06 3.90035e-06 5.27782e-06 5.91624e-06 6.02533e-06 5.94024e-06 5.79713e-06 5.70397e-06 5.65098e-06 5.60203e-06 5.55892e-06 5.5562e-06 5.59063e-06 5.67583e-06 5.7732e-06 5.88782e-06 6.00322e-06 6.09999e-06 6.15647e-06 6.16913e-06 6.09822e-06 5.96039e-06 5.7431e-06 5.48194e-06 5.312e-06 5.19496e-06 5.20238e-06 5.56172e-06 6.23321e-06 7.06628e-06 7.8313e-06 8.5038e-06 9.0016e-06 9.3339e-06 9.48275e-06 9.5185e-06 9.49655e-06 9.4103e-06 9.31978e-06 9.19134e-06 9.01779e-06 8.84245e-06 8.60509e-06 8.34261e-06 8.15608e-06 8.11e-06 8.25237e-06 8.55958e-06 9.03378e-06 9.79265e-06 1.07156e-05 1.1808e-05 1.29909e-05 1.42929e-05 1.55513e-05 1.66346e-05 1.7715e-05 1.86515e-05 1.943e-05 2.03034e-05 2.1093e-05 2.18048e-05 2.24908e-05 2.3142e-05 2.37971e-05 2.42731e-05 2.45895e-05 2.50438e-05 2.54495e-05 2.58285e-05 2.65044e-05 2.73105e-05 2.82172e-05 2.92448e-05 3.03483e-05 3.15307e-05 3.25419e-05 3.33801e-05 3.4292e-05 3.50311e-05 3.53653e-05 3.56551e-05 3.58777e-05 3.5663e-05 3.52224e-05 3.46675e-05 3.38035e-05 3.27134e-05 3.13228e-05 2.97726e-05 2.82472e-05 2.65441e-05 2.49099e-05 2.34229e-05 2.19265e-05 2.05843e-05 1.96041e-05 1.86601e-05 1.77018e-05 1.68412e-05 1.61687e-05 1.57597e-05 1.55844e-05 1.53282e-05 1.47532e-05 1.41499e-05 1.39379e-05 1.42613e-05 1.45257e-05 1.4849e-05 1.51671e-05 1.54271e-05 1.59958e-05 1.67034e-05 1.75275e-05 1.84005e-05 1.91381e-05 1.99847e-05 2.06517e-05 2.15248e-05 2.20571e-05 2.25915e-05 2.33087e-05 2.36578e-05 2.38348e-05 2.42562e-05 2.45593e-05 2.41459e-05 2.2831e-05 2.0889e-05 1.88771e-05 1.69852e-05 1.54592e-05 1.40168e-05 1.33711e-05 1.27679e-05 1.25686e-05 1.269e-05 1.30272e-05 1.33206e-05 1.3858e-05 1.46339e-05 1.52961e-05 1.57675e-05 1.62628e-05 1.67834e-05 1.72933e-05 1.73435e-05 1.74412e-05 1.78286e-05 1.84485e-05 1.89184e-05 1.91431e-05 1.92049e-05 1.90778e-05 1.91571e-05 1.91866e-05 1.90944e-05 1.90937e-05 1.86639e-05 1.86259e-05 1.86496e-05 1.84999e-05 1.81334e-05 1.81003e-05 1.8646e-05 1.95233e-05 2.06153e-05 2.18407e-05 2.30641e-05 2.40324e-05 2.48013e-05 2.52666e-05 2.55385e-05 2.60131e-05 2.6582e-05 2.69047e-05 2.70211e-05 2.6864e-05 2.61733e-05 2.47999e-05 2.35146e-05 2.24434e-05 2.08122e-05 1.98825e-05 1.80187e-05 1.6956e-05 1.6515e-05 1.49822e-05 1.46071e-05 1.38933e-05 1.298e-05 1.26904e-05 1.22251e-05 1.10855e-05 1.0322e-05 8.92898e-06 7.78401e-06 5.8898e-06 6.2148e-07 1.08149e-05 -3.15098e-06 3.77246e-06 1.17454e-06 -4.32552e-06 1.64833e-06 -4.73784e-07 2.79677e-06 -1.14844e-06 3.51315e-06 -7.16383e-07 4.11855e-06 -6.05395e-07 4.32282e-06 -2.04276e-07 4.30725e-06 1.55736e-08 4.36908e-06 -6.18253e-08 4.17443e-06 1.94644e-07 3.80404e-06 3.70398e-07 3.45516e-06 3.48873e-07 3.51897e-06 -6.38027e-08 3.90778e-06 -3.8881e-07 4.42478e-06 -5.17004e-07 4.6614e-06 -2.36624e-07 4.9031e-06 -2.41696e-07 5.05061e-06 -1.47511e-07 3.02418e-07 8.28196e-06 1.98863e-05 4.44752e-06 7.60689e-06 6.98904e-06 -6.86703e-06 8.16472e-06 -1.64947e-06 8.97564e-06 -1.95936e-06 9.78547e-06 -1.52621e-06 1.04067e-05 -1.22659e-06 1.05801e-05 -3.77741e-07 1.05392e-05 5.65067e-08 1.05876e-05 -1.10181e-07 1.03462e-05 4.35978e-07 1.00332e-05 6.834e-07 9.92355e-06 4.58545e-07 1.0328e-05 -4.68258e-07 1.10131e-05 -1.07392e-06 1.16878e-05 -1.19167e-06 1.18339e-05 -3.82779e-07 1.18989e-05 -3.06634e-07 1.13983e-05 3.53042e-07 1.11506e-06 1.64527e-05 2.5903e-05 1.35589e-05 1.05007e-05 1.36851e-05 -6.99323e-06 1.51055e-05 -3.06991e-06 1.54647e-05 -2.31852e-06 1.58975e-05 -1.95902e-06 1.61455e-05 -1.47463e-06 1.59749e-05 -2.07131e-07 1.57186e-05 3.12835e-07 1.56528e-05 -4.445e-08 1.53719e-05 7.16901e-07 1.50218e-05 1.03351e-06 1.50147e-05 4.65706e-07 1.56152e-05 -1.06885e-06 1.65179e-05 -1.97654e-06 1.74098e-05 -2.08356e-06 1.75065e-05 -4.79514e-07 1.75345e-05 -3.34685e-07 1.66974e-05 1.19016e-06 2.22523e-06 2.11653e-05 2.89233e-05 1.93737e-05 1.22924e-05 1.83092e-05 -5.92876e-06 2.01894e-05 -4.95008e-06 2.10644e-05 -3.1936e-06 2.16302e-05 -2.52481e-06 2.17435e-05 -1.58795e-06 2.12253e-05 3.11119e-07 2.06862e-05 8.5192e-07 2.03877e-05 2.54014e-07 1.9884e-05 1.22065e-06 1.92126e-05 1.70491e-06 1.8954e-05 7.24356e-07 1.95747e-05 -1.68957e-06 2.06247e-05 -3.02652e-06 2.18459e-05 -3.30483e-06 2.20445e-05 -6.7808e-07 2.22696e-05 -5.59775e-07 2.15121e-05 1.94766e-06 3.42782e-06 2.27156e-05 3.02901e-05 2.12471e-05 1.37609e-05 1.95302e-05 -4.2118e-06 2.14545e-05 -6.87439e-06 2.35387e-05 -5.27777e-06 2.52306e-05 -4.21672e-06 2.60893e-05 -2.44669e-06 2.57201e-05 6.80327e-07 2.51448e-05 1.42722e-06 2.4868e-05 5.30792e-07 2.43323e-05 1.75638e-06 2.3418e-05 2.61916e-06 2.26222e-05 1.52021e-06 2.2897e-05 -1.9644e-06 2.3814e-05 -3.94346e-06 2.51706e-05 -4.66152e-06 2.53714e-05 -8.78833e-07 2.5792e-05 -9.80402e-07 2.55194e-05 2.22023e-06 4.42814e-06 2.31353e-05 3.11758e-05 2.17787e-05 1.51175e-05 2.05705e-05 -3.00356e-06 2.19845e-05 -8.28836e-06 2.3938e-05 -7.23129e-06 2.62307e-05 -6.50944e-06 2.81608e-05 -4.37679e-06 2.8483e-05 3.58129e-07 2.80816e-05 1.82866e-06 2.80918e-05 5.2055e-07 2.81018e-05 1.74639e-06 2.77555e-05 2.96545e-06 2.68287e-05 2.44709e-06 2.65478e-05 -1.68355e-06 2.68896e-05 -4.28524e-06 2.80559e-05 -5.82783e-06 2.81371e-05 -9.60015e-07 2.82694e-05 -1.11275e-06 2.83833e-05 2.10631e-06 4.99658e-06 2.33565e-05 3.19116e-05 2.21791e-05 1.62949e-05 2.26144e-05 -3.43891e-06 2.41341e-05 -9.80803e-06 2.54574e-05 -8.55457e-06 2.72789e-05 -8.33102e-06 2.91877e-05 -6.28553e-06 2.9802e-05 -2.56146e-07 2.94676e-05 2.163e-06 2.9516e-05 4.7215e-07 3.01512e-05 1.11122e-06 3.10118e-05 2.10486e-06 3.07524e-05 2.70647e-06 3.03383e-05 -1.26943e-06 3.00598e-05 -4.00678e-06 3.06071e-05 -6.37509e-06 3.06849e-05 -1.03784e-06 3.05296e-05 -9.57448e-07 3.05445e-05 2.09145e-06 5.28435e-06 2.37633e-05 3.21952e-05 2.33599e-05 1.66984e-05 2.48073e-05 -4.88637e-06 2.65144e-05 -1.15151e-05 2.75937e-05 -9.63378e-06 2.89312e-05 -9.66858e-06 3.04676e-05 -7.82187e-06 3.09267e-05 -7.15242e-07 3.04202e-05 2.6694e-06 3.01841e-05 7.08257e-07 3.06684e-05 6.26941e-07 3.2181e-05 5.92309e-07 3.28784e-05 2.00906e-06 3.27951e-05 -1.18616e-06 3.24597e-05 -3.67139e-06 3.25952e-05 -6.5106e-06 3.26011e-05 -1.04373e-06 3.23976e-05 -7.53861e-07 3.23629e-05 2.1261e-06 5.40387e-06 2.41955e-05 3.22122e-05 2.47535e-05 1.61403e-05 2.67218e-05 -6.85463e-06 2.86829e-05 -1.34763e-05 2.99909e-05 -1.09418e-05 3.0609e-05 -1.02867e-05 3.15117e-05 -8.72458e-06 3.20643e-05 -1.26787e-06 3.14941e-05 3.23961e-06 3.11492e-05 1.0532e-06 3.12588e-05 5.17329e-07 3.21676e-05 -3.16508e-07 3.32164e-05 9.60243e-07 3.37531e-05 -1.72278e-06 3.35955e-05 -3.51382e-06 3.35602e-05 -6.47532e-06 3.36619e-05 -1.14543e-06 3.36008e-05 -6.92727e-07 3.36801e-05 2.04674e-06 5.32512e-06 2.50279e-05 3.21005e-05 2.67266e-05 1.44416e-05 2.88096e-05 -8.93756e-06 3.02406e-05 -1.49073e-05 3.15097e-05 -1.22109e-05 3.17059e-05 -1.04828e-05 3.19076e-05 -8.92636e-06 3.2587e-05 -1.94727e-06 3.24292e-05 3.3974e-06 3.23551e-05 1.12737e-06 3.26951e-05 1.77308e-07 3.29683e-05 -5.89673e-07 3.37125e-05 2.16005e-07 3.47861e-05 -2.79639e-06 3.48991e-05 -3.62678e-06 3.41965e-05 -5.77278e-06 3.37877e-05 -7.36585e-07 3.37125e-05 -6.17565e-07 3.41043e-05 1.65499e-06 4.8708e-06 2.62068e-05 3.18028e-05 2.9257e-05 1.13915e-05 3.12761e-05 -1.09567e-05 3.16098e-05 -1.52409e-05 3.20934e-05 -1.26946e-05 3.20135e-05 -1.04029e-05 3.184e-05 -8.75284e-06 3.23669e-05 -2.47413e-06 3.27107e-05 3.05359e-06 3.30883e-05 7.4974e-07 3.38455e-05 -5.79924e-07 3.39988e-05 -7.42898e-07 3.45285e-05 -3.13768e-07 3.578e-05 -4.0479e-06 3.61938e-05 -4.04056e-06 3.49301e-05 -4.50902e-06 3.38208e-05 3.72654e-07 3.34299e-05 -2.2664e-07 3.39549e-05 1.12994e-06 4.04691e-06 2.76864e-05 3.0366e-05 3.18646e-05 7.21329e-06 3.346e-05 -1.25521e-05 3.29589e-05 -1.47397e-05 3.30396e-05 -1.27753e-05 3.29975e-05 -1.03609e-05 3.2411e-05 -8.1663e-06 3.23197e-05 -2.38289e-06 3.28252e-05 2.54809e-06 3.32403e-05 3.3471e-07 3.3767e-05 -1.10662e-06 3.39394e-05 -9.15371e-07 3.48574e-05 -1.23173e-06 3.62476e-05 -5.43811e-06 3.67121e-05 -4.50503e-06 3.52617e-05 -3.05861e-06 3.39924e-05 1.64192e-06 3.34625e-05 3.03243e-07 3.39571e-05 6.35358e-07 3.06193e-06 2.95574e-05 2.7047e-05 3.44222e-05 2.34853e-06 3.55555e-05 -1.36855e-05 3.46178e-05 -1.3802e-05 3.42257e-05 -1.23832e-05 3.40503e-05 -1.01855e-05 3.30159e-05 -7.13188e-06 3.24103e-05 -1.77723e-06 3.31929e-05 1.76549e-06 3.36762e-05 -1.48669e-07 3.36109e-05 -1.04126e-06 3.36871e-05 -9.91622e-07 3.51347e-05 -2.67929e-06 3.64916e-05 -6.79497e-06 3.65389e-05 -4.55238e-06 3.48499e-05 -1.3696e-06 3.37503e-05 2.74151e-06 3.33806e-05 6.72953e-07 3.39387e-05 7.72772e-08 2.00347e-06 3.17702e-05 2.15405e-05 3.65147e-05 -2.39598e-06 3.71414e-05 -1.43122e-05 3.63288e-05 -1.29894e-05 3.54567e-05 -1.15111e-05 3.44332e-05 -9.16199e-06 3.26408e-05 -5.33947e-06 3.19683e-05 -1.10469e-06 3.33421e-05 3.91677e-07 3.39949e-05 -8.01471e-07 3.36015e-05 -6.47839e-07 3.38508e-05 -1.24096e-06 3.5588e-05 -4.41642e-06 3.65042e-05 -7.71119e-06 3.57382e-05 -3.78636e-06 3.36513e-05 7.1723e-07 3.27905e-05 3.6023e-06 3.27789e-05 6.84618e-07 3.35617e-05 -7.05561e-07 9.2174e-07 3.42049e-05 1.4447e-05 3.8168e-05 -6.35909e-06 3.83225e-05 -1.44667e-05 3.77614e-05 -1.24282e-05 3.63697e-05 -1.01194e-05 3.39899e-05 -6.7822e-06 3.15538e-05 -2.9034e-06 3.13274e-05 -8.78259e-07 3.27185e-05 -9.99459e-07 3.30454e-05 -1.12836e-06 3.29865e-05 -5.88909e-07 3.3897e-05 -2.15151e-06 3.52645e-05 -5.78391e-06 3.49241e-05 -7.37073e-06 3.3141e-05 -2.00328e-06 3.12056e-05 2.65264e-06 3.10852e-05 3.72269e-06 3.16105e-05 1.59244e-07 3.24444e-05 -1.53941e-06 7.13062e-08 3.67384e-05 6.84793e-06 3.97288e-05 -9.34949e-06 3.93176e-05 -1.40555e-05 3.80588e-05 -1.11694e-05 3.55691e-05 -7.62972e-06 3.26092e-05 -3.82234e-06 3.09588e-05 -1.25299e-06 3.13544e-05 -1.27386e-06 3.1997e-05 -1.64211e-06 3.19477e-05 -1.07898e-06 3.23281e-05 -9.69385e-07 3.29415e-05 -2.76493e-06 3.25984e-05 -5.44075e-06 3.06193e-05 -5.39163e-06 2.87257e-05 -1.09637e-07 2.80726e-05 3.30566e-06 2.89224e-05 2.87296e-06 2.95426e-05 -4.60971e-07 2.98572e-05 -1.85404e-06 -3.05437e-07 3.90691e-05 -3.707e-07 4.04485e-05 -1.07289e-05 3.83564e-05 -1.19635e-05 3.53945e-05 -8.20744e-06 3.24632e-05 -4.6984e-06 3.06292e-05 -1.98835e-06 3.00751e-05 -6.98951e-07 3.00258e-05 -1.22456e-06 2.96821e-05 -1.29837e-06 2.94151e-05 -8.11957e-07 2.93601e-05 -9.1436e-07 2.86726e-05 -2.07743e-06 2.69261e-05 -3.69425e-06 2.47939e-05 -3.25942e-06 2.40802e-05 6.04018e-07 2.46551e-05 2.7308e-06 2.56385e-05 1.88954e-06 2.5714e-05 -5.36473e-07 2.53879e-05 -1.528e-06 -3.39684e-07 3.92943e-05 -5.3936e-06 3.72607e-05 -8.69531e-06 3.28083e-05 -7.51108e-06 2.90384e-05 -4.43752e-06 2.65988e-05 -2.25879e-06 2.54982e-05 -8.87738e-07 2.50385e-05 -2.39254e-07 2.44719e-05 -6.58009e-07 2.38558e-05 -6.82207e-07 2.34616e-05 -4.17765e-07 2.29449e-05 -3.97646e-07 2.1806e-05 -9.38577e-07 2.0045e-05 -1.93326e-06 1.86287e-05 -1.84313e-06 1.88095e-05 4.23256e-07 1.97716e-05 1.76871e-06 2.04719e-05 1.18917e-06 2.01653e-05 -2.29796e-07 1.95859e-05 -9.48586e-07 -2.63381e-07 3.25877e-05 -4.48063e-06 2.73011e-05 -3.40873e-06 2.2292e-05 -2.50201e-06 1.92257e-05 -1.37121e-06 1.76063e-05 -6.39378e-07 1.69354e-05 -2.16841e-07 1.66577e-05 3.84673e-08 1.6169e-05 -1.69331e-07 1.56899e-05 -2.0315e-07 1.53537e-05 -8.15615e-08 1.49326e-05 2.34244e-08 1.41265e-05 -1.32437e-07 1.28425e-05 -6.49291e-07 1.18489e-05 -8.49493e-07 1.22126e-05 5.95901e-08 1.32103e-05 7.70981e-07 1.37971e-05 6.02422e-07 1.35247e-05 4.2599e-08 1.29697e-05 -3.93591e-07 -1.49615e-07 1.41691e-05 1.07603e-05 8.25833e-06 6.88712e-06 6.24774e-06 6.0309e-06 6.06937e-06 5.90003e-06 5.69688e-06 5.61532e-06 5.63875e-06 5.50631e-06 4.85702e-06 4.00753e-06 4.06712e-06 4.8381e-06 5.44052e-06 5.48312e-06 5.08953e-06 ) ; boundaryField { inlet { type calculated; value nonuniform List<scalar> 20 ( -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 -2.5e-05 ) ; } outlet { type calculated; value nonuniform List<scalar> 20 ( 4.74819e-06 1.05857e-05 1.55872e-05 2.03095e-05 2.45191e-05 2.78149e-05 3.02567e-05 3.22434e-05 3.37589e-05 3.45586e-05 3.47788e-05 3.49421e-05 3.49971e-05 3.46434e-05 3.32948e-05 3.0234e-05 2.54222e-05 1.95095e-05 1.28559e-05 4.93991e-06 ) ; } walls { type calculated; value uniform 0; } frontAndBack { type empty; value nonuniform 0(); } } // ************************************************************************* //
977e3ed6e5c443709581670957d56655aa68233b
02fbc0487972fbdedcd4cdb48cc553e62bb0dbfa
/C++/bitmask/BOJ_2098.cpp
7cea281bc8cd0e572c69915ffd1afe21e8810b8c
[]
no_license
sckimynwa/ProblemSolving
e93d02bd44e89ac6fbb1e274d173b3f8a0569848
ed1cb624135b962adaddf10b977c14ad3e943ad1
refs/heads/master
2020-09-16T06:58:20.658828
2020-07-07T14:19:57
2020-07-07T14:19:57
223,690,383
0
0
null
null
null
null
UTF-8
C++
false
false
860
cpp
BOJ_2098.cpp
#include <stdio.h> #include <string.h> #include <algorithm> using namespace std; const static int INF = 99999999; int n; int map[16][16]; int memo[16][1<<16]; // bitmask int tsp(int cur, int visited) { int& ret = memo[cur][visited]; if(ret!=-1) return ret; // visited all cities if(visited == (1<<n)-1) { if(map[cur][0] != 0) return map[cur][0]; else return INF; } ret = INF; for(int i=0;i<n;i++){ if(map[cur][i] && !(visited & (1 << i))) { int visit = visited | (1 << i); ret = min(ret, tsp(i, visit) + map[cur][i]); } } return ret; } int main() { scanf("%d", &n); for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ scanf("%d", &map[i][j]); } } memset(memo, -1, sizeof(memo)); printf("%d", tsp(0, 1)); return 0; }
ccfca632158135256424ce1b5fdf5d1bdb68ad05
fb7c30623a203faef64c6d408def1258b39c2154
/src/DiskFile.h
3f1c7d7c83524720a320b6b67c17a4139e5ede15
[]
no_license
gmargari/keyvaluestore
c8c70267cf43868c0035d4e19ebc51a13e4d9440
24771700c3d928f797681fc7524478fd57e37400
refs/heads/master
2023-04-02T12:40:53.096689
2021-04-03T08:14:38
2021-04-03T08:14:38
9,856,486
0
0
null
null
null
null
UTF-8
C++
false
false
3,157
h
DiskFile.h
// Copyright (c) 2011 Giorgos Margaritis. All rights reserved. #ifndef SRC_DISKFILE_H_ #define SRC_DISKFILE_H_ #include <stdint.h> #include <sys/types.h> #include "./Global.h" #include "./leveldb/slice.h" class VFile; class VFileIndex; class Buffer; class DiskFile { public: /** * constructor */ DiskFile(); /** * destructor */ ~DiskFile(); /** * open an existing file * * @return true if file exists and was succesfully opened. otherwise false */ bool open_existing(char *filename); /** * create a new, unique file in $ROOT_DIR (see Global.h) * * @return normally, should return true */ bool open_new_unique(); /** * delete file from disk */ void delete_from_disk(); /** * return number of keys (or tuples) stored on disk file */ uint64_t get_num_keys(); /** * return size of disk file */ uint64_t get_size(); /** * return first and last term stored in disk file */ void get_first_last_term(Slice *first, Slice *last); /** * name of this disk file */ char *get_name(); /** * set/get value of 'max_dfile_num' (set once, during initialization of * diskstore) */ static void set_max_dfile_num(int num); static int get_max_dfile_num(); /** * fill free space in buffer 'buf' by reading at most 'bytes' bytes from * offset 'offs' of this diskfile * * @return number of bytes read */ uint32_t fill(Buffer *buf, uint32_t bytes, off_t offs); /** * fill free space in buffer 'buf' by reading bytes from offset 'offs' of * this diskfile * * @return number of bytes read */ uint32_t fill(Buffer *buf, off_t offs); /** * append all buffer bytes to this diskfile, clear buffer */ uint32_t append(Buffer *buf); /** * sync pending diskfile writes to disk */ void sync(); /** * find the location on disk where the value corresponding to key 'term' * might have been stored. normally, after this call we would read all * bytes stored on diskfile between 'start_off' and 'end_off' and linearly * search for a <'term', value> pair. * * @param key (in) key to search for * @param start_off (out) start offset on disk file * @param end_off (out) end offset on disk file */ bool search(Slice key, off_t *start_off, off_t *end_off); /** * set the index for this diskfile */ void set_file_index(VFileIndex *index); /** * set the number of keys stored on this diskfile */ void set_num_keys(uint64_t num_keys); // Undefined methods (just remove Weffc++ warning) DiskFile(const DiskFile&); DiskFile& operator=(const DiskFile&); private: VFile *m_file; // file in which we store KVs VFileIndex *m_index; // index of <key,offs> for diskfile static int m_max_dfile_num; // create unique filenames bool m_deleted; // whether this file was delete from disk }; #endif // SRC_DISKFILE_H_
545c1b8829e71884ccb0ffdcdf029be40a77b2b9
bc84c328d1cc2a318160d42ed1faa1961bdf1e87
/C++/base_4/oct2dec.cpp
83ffa91a0614936de1de3b2cf7e42ff76571f7ee
[ "MIT" ]
permissive
liangjisheng/C-Cpp
25d07580b5dd1ff364087c3cf8e13cebdc9280a5
8b33ba1f43580a7bdded8bb4ce3d92983ccedb81
refs/heads/master
2021-07-10T14:40:20.006051
2019-01-26T09:24:04
2019-01-26T09:24:04
136,299,205
7
2
null
null
null
null
UTF-8
C++
false
false
370
cpp
oct2dec.cpp
//八进制转换为十进制 //C++版本 /*#include"iostream" using namespace std; int main(int argc,char *argv[]) { int num; cout<<"input a number(oct):"; cin>>oct>>num; cout<<dec<<num<<endl; return 0; }*/ //C版本 #include"stdio.h" int main(int argc,char *argv[]) { int num; printf("input a number(oct):"); scanf("%o",&num); printf("%d\n",num); return 0; }
711d7a62e861e018f714cb3bd2773d9a0ffb7e62
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/xgboost/xgboost-gumtree/dmlc_xgboost_new_hunk_440.cpp
912972996ee33c03dc43564e359ed59393c611b0
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,271
cpp
dmlc_xgboost_new_hunk_440.cpp
inline void Listen(int backlog = 16) { listen(sockfd, backlog); } /*! \brief get a new connection */ TCPSocket Accept(void) { int newfd = accept(sockfd, NULL, NULL); if (newfd == -1) { SockError("Accept", errno); } return TCPSocket(newfd); } /*! * \brief bind the socket to an address * \param addr */ inline void Bind(const SockAddr &addr) { if (bind(sockfd, (sockaddr*)&addr.addr, sizeof(addr.addr)) == -1) { SockError("Bind", errno); } } /*! * \brief try bind the socket to host, from start_port to end_port * \param start_port starting port number to try * \param end_port ending port number to try * \param out_addr the binding address, if successful * \return whether the binding is successful */ inline int TryBindHost(int start_port, int end_port) { for (int port = start_port; port < end_port; ++port) { SockAddr addr("0.0.0.0", port); if (bind(sockfd, (sockaddr*)&addr.addr, sizeof(addr.addr)) == 0) { return port; } if (errno != EADDRINUSE) { SockError("TryBindHost", errno); } } return -1; } /*! * \brief connect to an address * \param addr the address to connect to */
d091487a05efcd27ecd460c4f46b87c945845222
3ed65d78b28a224ce4b0db304d9260d2bc99c519
/libraries/LEDMatrix/LEDMatrix.h
a83f9af3936bbf3a3ed243c839464794b8ce3bb6
[]
no_license
tmcls/ButscoLedDisplay
c99d9f1e17dc236bf676305dbaf84e8aefb7d8fd
abf8dcc73869218fba93c6b61b6c337e9657639a
refs/heads/master
2021-06-20T08:33:41.393013
2017-08-03T12:29:34
2017-08-03T12:29:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,923
h
LEDMatrix.h
#ifndef LEDMatrix_h #define LEDMatrix_h enum MatrixType_t { HORIZONTAL_MATRIX, VERTICAL_MATRIX, HORIZONTAL_ZIGZAG_MATRIX, VERTICAL_ZIGZAG_MATRIX }; class cLEDMatrixBase { protected: int16_t m_Width, m_Height; MatrixType_t m_Type; struct CRGB *m_LED; struct CRGB m_OutOfBounds; public: cLEDMatrixBase(); virtual uint16_t mXY(uint16_t x, uint16_t y)=0; struct CRGB *operator[](int n); int Size(); struct CRGB &operator()(int16_t x, int16_t y); void HorizontalMirror(bool FullHeight = true); void VerticalMirror(); void QuadrantMirror(); void QuadrantRotateMirror(); void TriangleTopMirror(bool FullHeight = true); void TriangleBottomMirror(bool FullHeight = true); void QuadrantTopTriangleMirror(); void QuadrantBottomTriangleMirror(); }; template<int16_t Width, int16_t Height, MatrixType_t MType> class cLEDMatrix : public cLEDMatrixBase { private: struct CRGB p_LED[(Width * ((Width < 0) * -1 + (Width > 0))) * (Height * ((Height < 0) * -1 + (Height > 0)))]; //Do absolutes of Width & Height public: cLEDMatrix() { m_Width = abs(Width); m_Height = abs(Height); m_Type = MType; m_LED = p_LED; } virtual uint16_t mXY(uint16_t x, uint16_t y) { if (Width < 0) x = (m_Width - 1) - x; if (Height < 0) y = (m_Height - 1) - y; if (MType == HORIZONTAL_MATRIX) return((y * m_Width) + x); if (MType == VERTICAL_MATRIX) return((x * m_Height) + y); if (MType == HORIZONTAL_ZIGZAG_MATRIX) { if (y % 2) return((((y + 1) * m_Width) - 1) - x); else return((y * m_Width) + x); } if (MType == VERTICAL_ZIGZAG_MATRIX) { if (x % 2) return((((x + 1) * m_Height) - 1) - y); else return((x * m_Height) + y); } } }; #endif
5589a4b6934257505b5c53b2b1c23a109f755a6d
d1e081b57f8a63452a581c6185bd0f873abd34c7
/502-IPO.cpp
93142dc147226619b92e26950a463d9b9d317de0
[]
no_license
zixuan-chen/LeetCode-OJ
dbc5069db4a34d751634dc9b4424856e48244f9d
d78d3ef91e52e79bcfc85c81950be8b55741bd3b
refs/heads/master
2022-01-12T13:52:54.176505
2019-05-23T00:18:23
2019-05-23T00:18:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,117
cpp
502-IPO.cpp
#include <iostream> #include <vector> #include <map> using namespace std; void swap(int &a, int &b) {int tmp = a; a = b; b = tmp;} int findMaximizedCapital(int k, int W, vector<int>& Profits, vector<int>& Capital) { bool flag = true; const int N = Profits.size(); if(N == 0) return W; bool vis[N] = {false}; while(flag) { flag = false; for(int i = 0; i < N - 1; i++) { if(Profits[i] < Profits[i + 1]) { swap(Profits[i], Profits[i + 1]); swap(Capital[i], Capital[i + 1]); flag = true; } } } while(k > 0) { int i; for(i = 0; i < N; i++) { if(!vis[i] && W >= Capital[i]){ W += Profits[i]; --k; vis[i] = true; break; } } if(i == N) break; } return W; } int main(int argc, char const *argv[]) { vector<int> cap({0, 1, 1}); vector<int> pro({1, 2, 3}); cout << findMaximizedCapital(2, 0, pro, cap) << endl; return 0; }
1a77f4745930a3270259f5e17b171bcb2a6282f6
88416cf743dbda0630e60ff618cfe485be349c8e
/source/vgraphics/vix_glcamera3d.cpp
e7487d067cf6a536c32587a63bb291888da663e4
[ "MIT" ]
permissive
pbuttler/Vixen
a56dc36a228099a794534536eb65607ed8a199cf
72563e3989ba7ccfa54f2988d5a901fee5210338
refs/heads/master
2021-01-18T01:43:06.300597
2015-03-03T22:27:44
2015-03-03T22:27:44
31,687,372
1
0
null
2015-03-05T00:26:32
2015-03-05T00:26:32
null
UTF-8
C++
false
false
1,231
cpp
vix_glcamera3d.cpp
#include <vix_glcamera3d.h> namespace Vixen { GLCamera3D::GLCamera3D() : m_aspect(0.0f), m_fov(0.0f), m_znear(1.0f), m_zfar(1000.0f), m_position(0.0f), m_target(0.0f, 0.0f, -1.0f), m_up(0.0f, 1.0f, 0.0f) { } void GLCamera3D::SetPerspective(float aspect, float fov, float znear, float zfar) { /*should probably check for stupid fov ranges*/ m_aspect = aspect; m_fov = fov; m_znear = znear; m_zfar = zfar; m_projection = glm::perspective(m_fov, m_aspect, m_znear, m_zfar); } void GLCamera3D::SetView(const Vec3& pos, const Vec3& target, const Vec3& up) { m_position = pos; m_target = target; m_up = up; m_view = glm::lookAt(m_position, m_target, m_up); } void GLCamera3D::Move(C3D_DIRECTION cam_dir) { switch (cam_dir) { case Vixen::C3D_DIRECTION::UP: break; case Vixen::C3D_DIRECTION::DOWN: break; case Vixen::C3D_DIRECTION::LEFT: break; case Vixen::C3D_DIRECTION::RIGHT: break; case Vixen::C3D_DIRECTION::FORWARD: break; case Vixen::C3D_DIRECTION::BACKWARD: break; default: break; } } const Mat4& GLCamera3D::Projection() const { return m_projection; } const Mat4& GLCamera3D::View() const { return m_view; } }
d9e99ebc766f4c9968efc691902f5abe51855c66
3ac79de991b07748b2c5d5e19c20327ec5235b00
/src/lib/kh/math/kh_intrin.cpp
420dac22dc730e76b7ded4d68e9e212ac16b15a7
[ "WTFPL" ]
permissive
khujara/practice
1270c2d52a32d6d7ab5eff4d50fe90b7ed48b02e
50880b5e05ba8c0b295867ba624fa0f6ee6513d4
refs/heads/master
2020-12-30T16:46:42.355997
2018-03-13T16:32:41
2018-03-13T16:32:41
91,030,902
1
0
null
null
null
null
UTF-8
C++
false
false
1,429
cpp
kh_intrin.cpp
/* --------------------------- NOTE: INTRINSICS IMPLEMENTATION --------------------------- */ inline u32 kh_shift_left(u32 data, u32 shift) { u32 res = data << shift; return(res); } inline u32 kh_shift_right(u32 data, u32 shift) { u32 res = data >> shift; return(res); } inline u32 kh_rot_left(u32 val, i32 shift) { #if COMPILER_MSVC u32 res = _rotl(val, shift); #else u32 res = ((val >> (~shift)) >> 1) | (val << shift); #endif return(res); } inline u32 kh_rot_right(u32 val, i32 shift) { #if COMPILER_MSVC u32 res = _rotr(val, shift); #else u32 res = ((val << (~shift)) << 1) | (val >> shift); #endif return(res); } inline BitScan kh_find_least_significant_set_bit_U32(u32 val) { BitScan res = {}; #if COMPILER_MSVC res.found = _BitScanForward((unsigned long *)&res.index, val); #else for(u32 test = 0; test < 32; ++test) { if(val & (1 << test)) { res.found = true; res.index = test; break; } } #endif return(res); } inline BitScan kh_find_most_significant_set_bit_U32(u32 val) { BitScan res = {}; #if COMPILER_MSVC res.found = _BitScanReverse((i32 *)&res.index, val); #else for(u32 test = 32; test > 0; --test) { if(val & (1 >> test)) { res.found = true; res.index = test; break; } } #endif return(res); } inline u32 kh_exchange_significant_bits(u32 val) { u8 *e = (u8 *)&val; u32 res = ((e[0] << 24) | (e[1] << 16) | (e[2] << 8) | (e[3] << 0)); return(res); }
85f3810026412fb7f0022b6741d5947d704715e1
08ca77ec37c3634305c9bf4ee30ea85e856b26da
/TeamKTextTwist/Player.cpp
117df7db3b4354379e149ff2db3ace9906e4c995
[]
no_license
Joeaculberson/TextTwist
d10e298ae4ea4da34300421f5d26a29455b3875c
bea156a92da95d34da3cee2958f312186b72ae35
refs/heads/master
2021-01-13T16:26:56.571497
2016-09-27T09:04:18
2016-09-27T09:04:18
69,336,888
0
0
null
null
null
null
UTF-8
C++
false
false
3,552
cpp
Player.cpp
#include "Player.h" namespace model { /// <summary> /// Default constructer for the player class. /// </summary> /// <pre>None.</pre> Player::Player() { this->name = ""; this->score = 0; } /// <summary> /// Creates a player object with assigned values. /// </summary> /// <pre>name != nullptr</pre> /// <post> name == this->getName() /// <param value="name">The name of the player</param> Player::Player(String^ name) { if(name == nullptr) { throw gcnew ArgumentException("Name cannot be null."); } this->name = name; this->score = 0; } /// <summary> /// Returns the player's score. /// </summary> /// <pre>None.</pre> /// <returns>The player's score.</returns> int Player::getScore() { return this->score; } /// <summary> /// Sets the player's score /// </summary> /// <pre>score > 0</pre> /// <param value="score">The player's score</param> /// <returns>The point value of the word</returns> void Player::setScore(int score) { if (score < 0) { throw gcnew ArgumentException("Score cannot be negative."); } this->score = score; } /// <summary> /// Returns the player's coins. /// </summary> /// <pre>None.</pre> /// <returns>The player's coins.</returns> int Player::getCoins() { return this->coins; } /// <summary> /// Sets the player's coin. /// </summary> /// <pre>coin > 0</pre> /// <param value="coins">The player's coins to set.</param> void Player::setCoins(int coins) { if (coins < 0) { throw gcnew ArgumentException("Coins cannot be negative"); } this->coins = coins; } /// <summary> /// Returns the player's name. /// </summary> /// <pre>None.</pre> /// <returns>The name of the player.</returns> String^ Player::getName() { return this->name; } /// <summary> /// Sets the name of the player. /// </summary> /// <pre>name != nullptr</pre> /// <param value="name">The name of the player</param> void Player::setName(String^ name) { if (name == nullptr) { throw gcnew ArgumentException("Name of the player was null."); } this->name = name; } /// <summary> /// The overload operator < for the player. Compares by score. /// </summary> /// <pre>None.</pre> /// <param value="player">The player to compare to.</param> /// <returns>True if this player has a lower score than the passed player.</returns> bool Player::operator<(const Player^ player) { return this->score < player->score; } /// <summary> /// The overload operator <= for the player. Compares by score. /// </summary> /// <pre>None.</pre> /// <param value="player">The player to compare to.</param> /// <returns>True if this player has a score that is less than or equal to than the passed player.</returns> bool Player::operator<=(const Player^ player) { return this->score <= player->score; } /// <summary> /// The overload operator > for the player. Compares by score. /// </summary> /// <pre>None.</pre> /// <param value="player">The player to compare to.</param> /// <returns>True if this player has a higher score than the passed player.</returns> bool Player::operator>(const Player^ player) { return this->score > player->score; } /// <summary> /// The overload operator >= for the player. Compares by score. /// </summary> /// <pre>None.</pre> /// <param value="player">The player to compare to.</param> /// <returns>True if this player has a greater than or equal to score than the passed player.</returns> bool Player::operator>=(const Player^ player) { return this->score >= player->score; } }
bdf084359941c439c85c5db0b017dfbeaa7117d2
dcb7dae56932f62292fd0d607e32dc2f238d5551
/514-B/main.cpp
683f024cbd450ce96380ec883151e861b51cd1f2
[]
no_license
alielrafeiFCIH/Problem_Solving
b5f330d115d3ca1c34613eb2639226c271f0052b
15863cd43012831867fa2035fc92733a059dcfbf
refs/heads/master
2020-06-27T03:33:15.668655
2019-09-03T09:49:26
2019-09-03T09:49:26
199,831,566
0
0
null
null
null
null
UTF-8
C++
false
false
1,066
cpp
main.cpp
#include <bits/stdc++.h> using namespace std; map<pair<double,double>,int>mp; pair<double,double>p; double cal_slope(int x1,int y1,int x2,int y2){ return (double)(y2-y1)/(double)(x2-x1); } int main() { int n; scanf("%d",&n); int x,y,x1,y1; scanf("%d%d",&x,&y); double slope=0.0; int count=0; double b = 0.0; bool flag1=true,flag2=true,flag3=true; for(int i=0;i<n;i++){ scanf("%d%d",&x1,&y1); if(x==x1&&flag1){ count++; flag1=false; }else if(y==y1&&flag2){ count++; flag2=false; }else if(x1==x&&y==y1&&flag3){ count++; flag3=false; }else if(x==x1&&!flag1){ continue; }else if(y==y1&&!flag2){ continue; }else if(x1==x&&y==y1&&!flag3){ continue; }else{ slope=cal_slope(x,y,x1,y1); b=(double)y-slope*(double)x; p = make_pair(slope,b); if(!mp[p])count++,mp[p]++; } } printf("%d",count); return 0; }
764551a8a7dde8b70a55a15aa6cd9ae75a0629c9
a223dc9035a90b6d2183099f9ab08a20d8a4d861
/sketchbook/AnalogInOut/AnalogInOut.ino
d3bd258ade130e6b0bd8ce5c91336850bb854551
[]
no_license
labodejuguete/gamelin
19cf71b12ac4526ac3fb7d858e75c88ebb08a6c0
f5b7cded109086a4a749ee0fa33b0fc476efbd72
refs/heads/master
2021-07-17T22:05:19.100545
2017-10-23T15:08:03
2017-10-23T15:08:03
94,558,026
6
0
null
null
null
null
UTF-8
C++
false
false
1,228
ino
AnalogInOut.ino
/* Analog input, analog output. Leo el pin analógico donde tengo conectado el potenciómetro (pin D) escalo el valor y lo escribo como PWM en el pin C para controlar la velocidad de un motor o el brillo de una tira de leds. El pin C integra un transistor por lo que no es necesario sumar componentes (conectar el cable positivo de la tira de leds o motor al pin V) */ // const int analogInPin = A2; // pin donde está conectado el potenciómetro (al ser declarada como "const" su valor será fijo e invariable) const int analogOutPin = 1; // pin donde está conectado el motor/tira de leds (al ser declarada como "const" su valor será fijo e invariable) int valorSensor = 0; // valor leido del potenciómetro int valorPWM = 0; // valor de salida de la señal de control PWM void setup() { } void loop() { valorSensor = analogRead(analogInPin); //leo el sensor y albergo su valor en la variable valorPWM = map(valorSensor, 0, 1023, 0, 255); //debido a que la entrada analógica va de 0 a 1023 (10bits) y la salida PWM de 0 a 255 (8 bits), debo escalarla. analogWrite(analogOutPin, valorPWM); //escribo la señalPWW correspondiente a la operación matemática realizada en la línea superior }
e95da7eda7bbb711be5c97f72b15c9f326f0f946
9eef5fe8ee6e840c98b936eedc904c1acc6bd91e
/UsagiTest/Input/ShipController.cpp
e663d66c13e9a6159c695f38788271e3dd0d93ea
[ "MIT" ]
permissive
vitei/UsagiTest
d0418a25d8f9b2793ec5da0e0c6517e17aee0bdf
2b5e7a530dad3dc38be695403837fe050c95edd3
refs/heads/master
2021-07-06T11:13:56.346530
2020-07-12T13:51:53
2020-07-12T13:51:53
130,922,324
2
1
null
null
null
null
UTF-8
C++
false
false
1,573
cpp
ShipController.cpp
#include "Engine/Common/Common.h" #include "Engine/Framework/SystemCoordinator.h" #include "ShipController.h" using namespace usg; ShipController::ShipController(uint32 uPadId) : Controller(uPadId) { MemSet(m_buttons, 0, sizeof(usg::Controller::MappingOutput) * SHIP_BOOL_COUNT); MemSet(m_axes, 0, sizeof(usg::Controller::MappingOutput) * SHIP_AXIS_COUNT); } ShipController::~ShipController() { } void ShipController::Init() { ResetDetails(); Inherited::CreateAxisMapping(GAMEPAD_AXIS_LEFT_X, AXIS_TYPE_ABSOLUTE, m_axes[SHIP_AXIS_YAW]); Inherited::CreateAxisMapping(GAMEPAD_AXIS_LEFT_Y, AXIS_TYPE_ABSOLUTE, m_axes[SHIP_AXIS_PITCH]); Inherited::CreateAxisMapping(GAMEPAD_AXIS_RIGHT_X, AXIS_TYPE_ABSOLUTE, m_axes[SHIP_AXIS_ROLL]); Inherited::CreateButtonMapping(GAMEPAD_BUTTON_R, m_axes[SHIP_AXIS_THROTTLE], usg::BUTTON_STATE_HELD); Inherited::CreateButtonMapping(GAMEPAD_BUTTON_ZR, m_buttons[SHIP_BOOL_FIRE]); Inherited::CreateButtonMapping(GAMEPAD_BUTTON_X, m_debugCam); } void ShipController::Update(float timeDelta) { ClearInputMappings(); Inherited::Update(timeDelta); } void ShipController::ClearInputMappings() { for (int i = 0; i < SHIP_BOOL_COUNT; i++) { m_buttons[i].Clear(); } for (int i = 0; i < SHIP_AXIS_COUNT; i++) { m_axes[i].Clear(); } m_debugCam.Clear(); } void ShipController::GetInput(ShipControlInput& input) const { for (uint32 i = 0; i < SHIP_AXIS_COUNT; i++) { input.inputAxes[i] = m_axes[i].GetFloat(); } for (uint32 i = 0; i < SHIP_BOOL_COUNT; i++) { input.inputBools[i] = m_buttons[i].GetBool(); } }
728fc9ee6db85a103b9b812821bddae2e5f9c763
c5892750253cb6cd0bcc0ea118ea4e56d7e50259
/ATCommand.h
19559c1788e1b1cf01c7fc8d97a68cce125fcd87
[]
no_license
BotBallARDroneAPI/KIPR-Copter
2391d2841f42c32f24c3d12bfd30a13dc90e42fc
ffe99372148ec6c783147c6d35d6a1e3e605dcef
refs/heads/master
2020-12-24T13:52:23.310817
2012-12-02T20:46:29
2012-12-02T20:46:29
6,237,544
1
1
null
null
null
null
UTF-8
C++
false
false
297
h
ATCommand.h
/// ATCommand.h #ifndef ATCOMMANND_H #define ATCOMMANND_H #include <string> namespace ARDrone { /** @brief This structure defines structure of a ARDrone ATCommand **/ struct ATCommand { std::string strCommandHeader; std::string strCommandData; }; }//namespace ARDrone #endif
26775e4edee228f4419fc02517f81a4b203b9b2a
20cb62d1ae0fa72d22a65022e06c46d35d4c0750
/exeinject/src/PeParser.cpp
de3ae241c08fdc43d5bc674fa9b6cffb35408331
[]
no_license
andrascii/exeinject
58661da80554077f77531e1dad78ba06b4fc6241
e2bbf8791fc9c0ddf78e3342755c002e78453d08
refs/heads/master
2023-03-17T04:48:53.303686
2021-03-05T18:06:02
2021-03-05T18:06:02
342,956,233
0
0
null
null
null
null
UTF-8
C++
false
false
4,722
cpp
PeParser.cpp
#include "PeParser.h" #include "ImageDosHeader.h" #include "ImageSectionHeader.h" #include "OptionalHeaderMagicValues.h" #include "ImageImportDescriptor.h" #include "ImageThunkData.h" namespace exe_inject { auto PeParser::Parse(const std::filesystem::path& path) const -> Info { auto file = std::fstream{ path.string(), std::ios::binary | std::ios::in }; if (!file.is_open()) { throw std::runtime_error{ "Open file error" }; } std::stringstream pe_data; copy( std::istreambuf_iterator<char>(file), std::istreambuf_iterator<char>(), std::ostreambuf_iterator<char>(pe_data) ); const auto binary_payload = pe_data.str(); ImageDosHeader image_dos_header{}; memcpy(&image_dos_header, binary_payload.data(), sizeof(ImageDosHeader)); ImageNtHeaders image_nt_headers{}; const auto signature_offset = binary_payload.data() + image_dos_header.e_lfanew; const auto file_header_offset = signature_offset + sizeof(image_nt_headers.signature); const auto optional_header_offset = file_header_offset + sizeof(image_nt_headers.image_file_header); memcpy(&image_nt_headers.signature, signature_offset, sizeof(image_nt_headers.signature)); memcpy(&image_nt_headers.image_file_header, file_header_offset, sizeof(image_nt_headers.image_file_header)); auto is_pe32_plus{ false }; if (image_nt_headers.image_file_header.size_of_optional_header) { uint16_t magic; memcpy(&magic, optional_header_offset, sizeof(magic)); switch (magic) { case kImageNtOptionalHdr32Magic: { ImageOptionalHeader32 optional_header{}; memcpy(&optional_header, optional_header_offset, sizeof(optional_header)); image_nt_headers.image_optional_header = optional_header; break; } case kImageNtOptionalHdr64Magic: { ImageOptionalHeader64 optional_header{}; memcpy(&optional_header, optional_header_offset, sizeof(optional_header)); image_nt_headers.image_optional_header = optional_header; is_pe32_plus = true; break; } default: { throw std::runtime_error{ "Unsupported PE magic value " + std::to_string(magic) }; } } } const auto import_directory_rva = ImportDirectoryRva(image_nt_headers.image_optional_header); auto section_offset = optional_header_offset + image_nt_headers.image_file_header.size_of_optional_header; ImportInfo import_info; std::vector<ImageSectionHeader> sections; for (auto i{ 0 }; i < image_nt_headers.image_file_header.number_of_sections; ++i) { ImageSectionHeader section_header; memcpy(&section_header, section_offset, sizeof(ImageSectionHeader)); const auto is_import_section = import_directory_rva >= section_header.virtual_address && import_directory_rva < section_header.virtual_address + section_header.misc.virtual_size; if (is_import_section) { import_info = FetchImportInfo(import_directory_rva, binary_payload.data(), section_header); } sections.push_back(section_header); section_offset += sizeof(ImageSectionHeader); } return Info{ image_nt_headers, sections, import_info }; } auto PeParser::ImportDirectoryRva(const ImageOptionalHeader& optional_header) noexcept -> uint32_t { return std::visit([](const auto& header) { return header.data_directory[kImageDirectoryEntryImport].virtual_address; }, optional_header); } auto PeParser::FetchImportInfo( uint32_t import_directory_rva, const char* payload, const ImageSectionHeader& import_section ) noexcept -> ImportInfo { ImportInfo import_info; const auto import_offset = payload + import_section.pointer_to_raw_data; const auto import_descriptor_offset = import_offset + import_directory_rva - import_section.virtual_address; const auto* import_descriptor = reinterpret_cast<const ImageImportDescriptor*>(import_descriptor_offset); for (; import_descriptor->name; ++import_descriptor) { const auto thunk = import_descriptor->original_first_thunk == 0 ? import_descriptor->first_thunk : import_descriptor->original_first_thunk; const auto* thunk_data = reinterpret_cast<const ImageThunkData64*>(import_offset + thunk - import_section.virtual_address); const auto module_name = std::string{ import_offset + import_descriptor->name - import_section.virtual_address }; for (; thunk_data->u1.address_of_data != 0; ++thunk_data) { import_info[module_name].push_back(import_offset + thunk_data->u1.address_of_data - import_section.virtual_address + 2); } } return import_info; } } // namespace exe_inject
0997b38f2d58533d03e32855d8c68598905d978d
09d28b91c7f024af9857b766fc1569193150ffff
/queue/node.hpp
bd1d351330b55f5670c7a72f66fcdf508fbdfff5
[]
no_license
a1exwang/concurrency_in_action
96ec3369a3bbee38c0a1ad713dccb5cd3573e50c
8663cee6b65a6ddcb669e0da054149783bc9e1ed
refs/heads/master
2021-03-10T09:19:33.070718
2020-07-16T00:48:55
2020-07-16T00:48:55
246,442,133
0
0
null
null
null
null
UTF-8
C++
false
false
1,081
hpp
node.hpp
#pragma once #include "concurrent_queue.hpp" #include <memory> /** * Owning pointer for Node<T>. Performs better than raw unique_ptr when destructing linked-list. * @tparam T */ template <typename T> class Node; template <typename T> using DeleterType = void(*)(Node<T>*); template <typename T> class NodePtr : public std::unique_ptr<Node<T>, DeleterType<T>> { public: using NodeDeleterType = DeleterType<T>; NodePtr(); explicit NodePtr(Node<T> *ptr); private: static void queue_node_deleter(Node<T> *ptr); }; template <typename T> class Node { public: NodePtr<T> next_; std::unique_ptr<T> data_; }; template<typename T> NodePtr<T>::NodePtr(Node<T> *ptr) :std::unique_ptr<Node<T>, NodeDeleterType>(ptr, queue_node_deleter) { } template<typename T> NodePtr<T>::NodePtr() :std::unique_ptr<Node<T>, NodeDeleterType>(nullptr, queue_node_deleter) { } template<typename T> void NodePtr<T>::queue_node_deleter(Node<T> *ptr) { auto current = ptr; while (current) { auto next = current->next_.release(); delete current; current = next; } }
bdf148143ffdcaec6af7bd25e77298fe952ed08c
c25fa228e19f6ef4d63dc11d59baaae4981101c0
/src_smartcontract_db/scan_select/scan_columns/scan_columns_exp/FunctionCallScanColumnTarget.cpp
f23d63d0ca9b8180ab98caf83593c428b186849b
[ "MIT" ]
permissive
alinous-core/codablecash
b994e710144af3f6b69bda2f3d1dff080b2fd2b0
030fa9ee2e79ae2cade33aa80e80fb532c5b66ee
refs/heads/master
2023-08-31T04:30:14.333123
2023-08-12T11:33:06
2023-08-12T11:33:06
129,185,961
11
4
MIT
2023-08-13T14:10:25
2018-04-12T03:14:00
C++
UTF-8
C++
false
false
2,423
cpp
FunctionCallScanColumnTarget.cpp
/* * FunctionCallScanColumn.cpp * * Created on: 2020/08/20 * Author: iizuka */ #include "scan_select/scan_columns/scan_columns_exp/FunctionCallScanColumnTarget.h" #include "base/UnicodeString.h" #include "base/StackRelease.h" #include "scan_select/scan_condition/exp/FunctionCallScanCondition.h" #include "schema_table/record/table_record/CdbRecord.h" namespace codablecash { FunctionCallScanColumnTarget::FunctionCallScanColumnTarget() { this->name = nullptr; this->cond = nullptr; } FunctionCallScanColumnTarget::~FunctionCallScanColumnTarget() { delete this->name; this->arguments.deleteElements(); delete this->cond; } void FunctionCallScanColumnTarget::setName(const UnicodeString* name) noexcept { this->name = new UnicodeString(name); } void FunctionCallScanColumnTarget::addArgument(AbstractScanColumnsTarget* arg) noexcept { this->arguments.addElement(arg); } const UnicodeString* FunctionCallScanColumnTarget::toStringCode() noexcept { if(this->str == nullptr){ this->str = new UnicodeString(L""); this->str->append(this->name); this->str->append(L"("); int maxLoop = this->arguments.size(); for(int i = 0; i != maxLoop; ++i){ if(i > 0){ this->str->append(L", "); } AbstractScanColumnsTarget* value = this->arguments.get(i); this->str->append(value->toStringCode()); } this->str->append(L")"); } return this->str; } void FunctionCallScanColumnTarget::resolveColumns(VirtualMachine* vm, SelectScanPlanner* planner) { int maxLoop = this->arguments.size(); for(int i = 0; i != maxLoop; ++i){ AbstractScanColumnsTarget* value = this->arguments.get(i); value->resolveColumns(vm, planner); } this->cond = new FunctionCallScanCondition(); this->cond->setName(new UnicodeString(this->name)); for(int i = 0; i != maxLoop; ++i){ AbstractScanColumnsTarget* value = this->arguments.get(i); this->cond->addArgument(value->toValueProvider()); } } void FunctionCallScanColumnTarget::scanColumns(VirtualMachine* vm, const CdbRecord* record, const ScanResultMetadata* metadata, CdbRecord* newRecord) { FunctionCallScanCondition* cnd = dynamic_cast<FunctionCallScanCondition*>(toValueProvider()); __STP(cnd); AbstractCdbValue* value = cnd->evaluate(vm, record, metadata); newRecord->addValue(value); } IValueProvider* FunctionCallScanColumnTarget::toValueProvider() { return this->cond->cloneCondition(); } } /* namespace codablecash */
5cb227637c410286452871240c664360fd314061
dad8d118e5a19112e96318dc93a0a623fc9fae73
/src/kadane2d.cpp
ec733eef97097c5b5552648f1f2eaaf62510a49a
[ "MIT" ]
permissive
MaratonaAtUFSCar/notebook
2571d832a86703d52800471a93d7af1cebf2fc65
d485e9507f9c203a18c733f2d2b88c02f4f2d20a
refs/heads/master
2021-01-01T06:23:41.177077
2017-07-17T00:55:04
2017-07-17T00:55:04
97,419,713
3
0
null
null
null
null
UTF-8
C++
false
false
572
cpp
kadane2d.cpp
#define MAX -1 int v[MAX][MAX]; int n; int solve() { int max_all = 0; int max_elem = -500; for (int i = 0; i < n*n; ++i) max_elem = max(max_elem, v[i/n][i%n]); if (max_elem < 0) return max_elem; for (int i = 0; i < n; ++i) { int sum[n]; memset(sum, 0, sizeof sum); // kadane: for (int j = i; j < n; ++j) { int max_so_far = 0, max_curr = 0; for (int k = 0; k < n; ++k) { sum[k] += v[j][k]; max_curr = max(0, max_curr + sum[k]); max_so_far = max(max_so_far, max_curr); } max_all = max(max_all, max_so_far); } } return max_all; }
18410259a2d0a0eab07736fa7f758557056ac012
bddb40149f9028297d9b4f3f6b77514cadac9bca
/Source/James/SmartDashboard/networktables2/type/NetworkTableEntryTypeManager.h
4474f915330c2da2526b058a4b108ae5813680c1
[]
no_license
JamesTerm/GremlinGames
91d61a50d0926b8e95cad21053ba2cf6c3316003
fd0366af007bff8cffe4941b4bb5bb16948a8c66
refs/heads/master
2021-10-20T21:15:53.121770
2019-03-01T15:45:58
2019-03-01T15:45:58
173,261,435
0
1
null
null
null
null
UTF-8
C++
false
false
578
h
NetworkTableEntryTypeManager.h
/* * NetworkTableEntryTypeManager.h * * Created on: Sep 16, 2012 * Author: Mitchell Wills */ #ifndef NETWORKTABLEENTRYTYPEMANAGER_H_ #define NETWORKTABLEENTRYTYPEMANAGER_H_ class NetworkTableEntryTypeManager; #include "NetworkTableEntryType.h" class NetworkTableEntryTypeManager { private: NetworkTableEntryType* entryTypes[MAX_NUM_TABLE_ENTRY_TYPES]; public: NetworkTableEntryTypeManager(); NetworkTableEntryType* GetType(TypeId type); void RegisterType(NetworkTableEntryType& type); }; #endif /* NETWORKTABLEENTRYTYPEMANAGER_H_ */
b101751b8f3a3d0e6ab5b1a28105c13636f0a820
51cc9b73921bd44c99d4e228d9b61bec507e2f50
/graph/ex53_4.cpp
d311788c3a622d33a0674da6250ecfc667144a55
[]
no_license
PingAnZi/data_structure
d528f88046f3c0d5ec68c61c719986aaa9b3129d
18250fc363a07a7e1ce828ebd9ee646cec449a03
refs/heads/master
2020-04-09T11:11:20.038107
2014-08-04T13:50:25
2014-08-04T13:50:25
22,604,832
1
0
null
null
null
null
UTF-8
C++
false
false
1,037
cpp
ex53_4.cpp
#include <stdio.h> #include <stdlib.h> #include "graph.h" int visited[MaxVertexNum] = {0}; //深度优先搜索 路径 int Exist_Path_DFS(ALGraph G, int i, int j) { int p; if(i==j) { return 1; }else { visited[i] = 1; for(p=FirstNeighbor(G, i); p>=0; p=NextNeighbor(G, i, p)) { if(!visited[p] && Exist_Path_DFS(G, p, j)) { return 1; } } } return 0; } int Exist_Path_BFS(ALGraph G, int i, int j) { int u, p; int queue[MaxVertexNum]; int front = 0, rear = 0; for(p=0; p<G.vexnum; p++) { visited[p] = 0; } queue[rear++] = i; while(front != rear) { u = queue[front++]; visited[u] = 1; for(p=FirstNeighbor(G, u); p>=0; p=NextNeighbor(G, u, p)) { //p>=0不能不写 if (p==j) { return 1; } if (!visited[p]) { queue[rear++] = p; } } } return 0; } int main() { ALGraph G; CreateUDG(G); // Display(G); // if(Exist_Path_DFS(G, 0, 3)){ // printf("yes\n"); // } if(Exist_Path_BFS(G, 0, 3)){ printf("yes\n"); } }
ab4c268793e1e9b76b387ddbf549cba619eb12b2
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/2.68/U
faf59278545f3331b4d7d05efb8d0717a87461b8
[ "MIT" ]
permissive
ishantja/KUHPC
6355c61bf348974a7b81b4c6bf8ce56ac49ce111
74967d1b7e6c84fdadffafd1f7333bf533e7f387
refs/heads/main
2023-01-21T21:57:02.402186
2020-11-19T13:10:42
2020-11-19T13:10:42
312,429,902
0
0
null
null
null
null
UTF-8
C++
false
false
468,326
U
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "2.68"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 12556 ( (99.99900745 0.002393928042 -3.754888053e-21) (99.99861653 0.008205721762 6.663314939e-26) (99.99760222 0.01772104013 -3.749226713e-21) (99.99588912 0.03343339938 -3.727299613e-21) (99.99972431 0.02672869502 3.598699093e-21) (99.99788651 0.04461852357 0) (99.99672327 0.07272553946 0) (99.9963088 0.1119420276 -6.347396336e-21) (99.99515144 0.1648370271 7.415186177e-22) (99.99421699 0.2312230844 -4.851143832e-21) (99.99401135 0.3052941526 6.27919282e-22) (99.99523251 0.3740756632 0) (99.99798289 0.4192964678 0) (100.0014715 0.4267366976 1.246158147e-21) (100.0040905 0.3955666782 -1.78250273e-21) (100.0055366 0.3371615943 1.010913665e-21) (100.0056679 0.2685453268 0) (100.0052836 0.2028193983 1.643669883e-21) (100.0050055 0.1451851388 6.750216418e-21) (100.0026906 0.1026532991 -1.8940852e-21) (100.01098 0.1177855673 -1.64530773e-20) (100.0075493 0.07270446785 0) (100.0055908 0.03885744562 -2.065824383e-21) (100.0053815 0.01227076295 -1.454609746e-20) (99.99122246 0.006124012198 1.503902163e-20) (99.9869559 0.02143213148 3.757227051e-21) (99.97754353 0.04711128207 2.625103909e-20) (99.96148934 0.09018541142 -1.124347738e-20) (99.96313078 0.1249357181 3.625184945e-21) (99.93814596 0.2112293239 -4.075021845e-23) (99.90477159 0.3447871242 0) (99.88583789 0.4684936177 -6.37967195e-21) (99.84561128 0.6979142204 -5.923732971e-21) (99.80954796 0.9932015429 -1.034518693e-20) (99.79310895 1.333638062 -4.276388551e-21) (99.8170482 1.663172818 -8.0323603e-21) (99.88992626 1.890096531 -3.505698207e-21) (99.98421729 1.944770285 3.568999482e-22) (100.0756459 1.819337214 -5.79949181e-22) (100.1330283 1.559715493 5.18171872e-21) (100.1489438 1.242392694 -1.006939582e-20) (100.1343459 0.9408612117 0) (100.1449773 0.7131640695 -2.863318081e-20) (100.1043541 0.4887319506 5.517438665e-20) (100.1034312 0.3375142441 1.593084066e-20) (100.0725186 0.2075811277 3.282904074e-20) (100.0546262 0.1113429959 -3.292623263e-20) (100.0477765 0.0352013614 1.66126125e-20) (99.97717082 0.007065180725 -1.500552498e-20) (99.96521806 0.02595240822 -3.012689566e-20) (99.93952599 0.06031910985 -6.758140611e-20) (99.89679532 0.1197210904 8.992894893e-20) (99.87320092 0.191906262 -7.429702166e-21) (99.79901309 0.3365186527 -7.238095748e-21) (99.6968969 0.5618006684 -1.256749877e-20) (99.63518025 0.8133956012 0) (99.50659302 1.242255877 2.455815888e-20) (99.38775909 1.811665228 7.48289414e-20) (99.33690217 2.502739967 2.921801424e-19) (99.43413254 3.203896355 -3.633449032e-19) (99.70884635 3.703472574 5.044380627e-21) (100.0780916 3.826105954 -6.960684357e-22) (100.3973184 3.545015468 -1.782098352e-19) (100.5753356 2.992574301 6.26237366e-21) (100.6100221 2.348131306 -1.078894665e-20) (100.5423191 1.734172591 -2.543929007e-20) (100.4817404 1.224084351 -1.717894199e-19) (100.3558507 0.8262283166 -3.815514267e-20) (100.2865424 0.5135741223 -1.634007648e-20) (100.2042473 0.3134586759 3.713959964e-20) (100.1544826 0.1682266386 -4.173652661e-21) (100.1326148 0.05287858197 0) (99.96299169 0.003569729887 -7.560869944e-21) (99.94022428 0.0165585362 5.293809253e-20) (99.89190845 0.04888608356 -1.514497436e-20) (99.81266788 0.1097364312 0) (99.74831017 0.2087943584 0) (99.6026542 0.3907904503 -5.847770756e-20) (99.39798476 0.6841795656 -1.170380964e-19) (99.22659348 1.048726759 2.75960149e-20) (98.93352282 1.660512459 2.952574714e-22) (98.63945827 2.541616554 7.587087602e-19) (98.47993826 3.710040072 6.133911985e-19) (98.67693304 4.993013172 8.348682679e-19) (99.37759612 5.921997119 -1.620579328e-19) (100.331451 6.05750196 3.877550161e-19) (101.0576791 5.444815442 4.257991278e-19) (101.3829565 4.451942193 0) (101.388419 3.375338185 -9.829125225e-20) (101.2161704 2.427353014 0) (101.0058507 1.627459958 6.251277862e-20) (100.738142 1.071746679 -4.835057126e-20) (100.5439775 0.6186582845 -4.185166448e-20) (100.3897566 0.3732270434 2.11908728e-20) (100.2935165 0.1979632394 -4.25277088e-21) (100.2494263 0.06167716606 0) (99.95916787 -0.00536233004 0) (99.92391562 -0.01002400463 0) (99.84987711 0.006618018903 7.636696285e-21) (99.72752503 0.0531482022 1.154059418e-20) (99.61244906 0.1630906599 1.908749213e-20) (99.37544533 0.3515655548 0) (99.0411378 0.6608530481 0) (98.70789059 1.104508586 5.818629155e-20) (98.16110055 1.874009763 -5.463691558e-19) (97.53411747 3.094574008 6.315636025e-19) (97.04460219 4.932973678 1.169109243e-20) (97.32034737 7.210848058 0) (98.90292695 8.962525627 -4.644697719e-20) (101.0677679 8.954483906 0) (102.4125579 7.560326635 0) (102.7976735 5.80332725 0) (102.6012725 4.218100805 -1.214987137e-19) (102.1523553 2.90219621 -5.779515233e-22) (101.691706 1.848712203 -1.036214167e-19) (101.2228451 1.183742081 8.624594429e-21) (100.8451154 0.6251324587 0) (100.6003157 0.3715332872 4.338639547e-21) (100.446923 0.1922250705 -3.258381595e-21) (100.375556 0.05904803052 -1.080504148e-21) (99.97737471 -0.02004183263 0) (99.92949049 -0.0546965908 0) (99.83021303 -0.0690193049 -1.530212692e-20) (99.66362231 -0.05432333893 3.114542843e-20) (99.48866487 0.04559464788 0) (99.15574241 0.2029585753 0) (98.67388805 0.4801685223 2.434616046e-20) (98.14444987 0.9397113972 0) (97.26124496 1.747330335 -2.427905111e-19) (96.03495401 3.200375348 2.366713524e-19) (94.72149274 5.768225808 0) (94.48882773 9.844279182 5.155951393e-20) (97.87014932 13.7959321 -4.218640195e-21) (102.9740701 13.0796409 1.330426776e-19) (105.064653 9.701259158 0) (105.0446041 6.774422676 1.135397465e-18) (104.2795577 4.632129779 3.279377028e-19) (103.346956 3.052839676 7.189492508e-20) (102.4725281 1.806078843 2.668899838e-20) (101.7557853 1.115687591 -1.78699588e-20) (101.1526557 0.5167406845 0) (100.802804 0.2972155564 0) (100.586741 0.1453196652 -1.096331077e-21) (100.4857179 0.04344363087 -3.289723869e-21) (100.0287843 -0.0400622972 3.740467099e-21) (99.96966022 -0.1159206417 -3.767884533e-21) (99.84871238 -0.1756015323 7.68500298e-21) (99.64355801 -0.2107996136 -2.811393781e-20) (99.406644 -0.1437276541 6.470961474e-23) (98.98698612 -0.05474273697 2.400691042e-20) (98.37050058 0.1373503183 -4.124233138e-20) (97.64213071 0.5211122971 3.798431982e-19) (96.38011604 1.198518285 0) (94.37826158 2.512631032 5.317610723e-21) (91.48069225 5.059843091 0) (87.8829946 11.06224891 1.532749039e-18) (93.64232889 22.94020224 0) (108.5732139 19.10200493 -5.796831123e-19) (109.7453814 11.12703495 -2.004962368e-19) (108.1476444 6.792065675 0) (106.3168998 4.290700166 -3.907242862e-19) (104.6651003 2.68113362 -5.214296064e-19) (103.2482942 1.428552258 0) (102.2624085 0.8220115952 9.790526199e-21) (101.4144114 0.2910529417 2.885870927e-21) (100.9591729 0.1435845382 -3.411697087e-21) (100.6839589 0.05631728898 -3.879068385e-21) (100.5541119 0.01479816074 9.338083712e-21) (100.1229357 -0.06433003098 -3.74086457e-21) (100.0553555 -0.1902307981 3.769242613e-21) (99.91879966 -0.3062123785 -4.782118003e-21) (99.68623261 -0.4054922313 -3.213861785e-21) (99.39614295 -0.3922120143 1.369883776e-20) (98.91155723 -0.4015697046 8.150583598e-21) (98.19788928 -0.3475397959 6.403665728e-20) (97.32865153 -0.1298985918 -1.458543745e-20) (95.77320572 0.2197682167 1.753886429e-20) (93.21125823 0.8763616042 0) (89.08519001 1.85199459 4.543406024e-19) (81.46356537 3.40997368 -5.714686446e-19) (123.0733705 22.38402241 -8.15879956e-19) (116.3031629 9.416296625 6.04013002e-19) (111.546977 5.058100196 0) (108.2912953 2.939093772 0) (105.8642858 1.68136005 0) (103.8713702 0.6998060275 -5.226099879e-21) (102.6401932 0.3140218447 2.21239967e-20) (101.5713217 -0.04555095608 -3.521615074e-21) (101.0310887 -0.07872170782 2.87925445e-21) (100.7096286 -0.06903264257 -5.46549571e-22) (100.555654 -0.02551533556 -8.775037401e-21) (100.2667377 -0.09119123422 -1.804596572e-21) (100.194508 -0.2725026707 -1.356115379e-21) (100.0502788 -0.4511529569 -4.64594309e-22) (99.80444971 -0.6226912939 1.407088377e-21) (99.47610748 -0.678038154 -2.577436471e-23) (98.95873561 -0.8031741367 0) (98.20243673 -0.9138486924 1.921266764e-20) (97.27301958 -0.9119178853 -2.94631846e-19) (95.62125311 -0.9740123619 0) (93.02590675 -1.099080966 -4.256370207e-20) (89.37465603 -1.701525784 -8.874042009e-19) (85.07612581 -3.750812054 5.078866173e-19) (135.9870276 7.45900681 -2.325765702e-18) (120.9870843 3.084971812 -7.805741724e-19) (113.8619794 1.432394479 -4.575901475e-19) (109.5763626 0.6183800007 4.987905515e-19) (106.6082376 0.1515779349 0) (104.1891001 -0.2963091671 -5.348406582e-21) (102.7949642 -0.3573100754 1.245985105e-20) (101.5783256 -0.4587378618 1.211571551e-21) (100.9880129 -0.3486228111 0) (100.6394315 -0.219393888 4.428392284e-21) (100.4699895 -0.07407100751 4.374701617e-21) (100.4635358 -0.1186620219 3.556799112e-21) (100.3908884 -0.3566230969 5.311741236e-23) (100.2476756 -0.5990768546 0) (100.0039141 -0.8448817388 1.850033724e-22) (99.65528666 -0.9761002089 -1.883327347e-21) (99.13956676 -1.219351253 2.003794876e-21) (98.39834547 -1.495424247 0) (97.48516076 -1.706855476 2.899966552e-19) (95.90899651 -2.133224743 -7.120597376e-20) (93.58388318 -2.796055994 -1.68502064e-19) (90.71735037 -3.944361642 8.192410567e-19) (88.04051033 -5.651859985 -1.058806624e-19) (133.7038432 -8.498973008 -1.141735072e-18) (120.8921725 -4.520397845 8.095314742e-19) (114.0173677 -2.932871486 1.58105973e-19) (109.6940867 -2.120830369 1.50774488e-20) (106.6532691 -1.628448612 0) (104.0972346 -1.412113424 4.523520494e-20) (102.6741436 -1.1061062 0) (101.4087127 -0.9017080655 -1.184164606e-21) (100.812298 -0.6367932161 -4.893336069e-21) (100.4592495 -0.3796413991 5.46436391e-22) (100.2852172 -0.12598281 0) (100.7127686 -0.1448256045 -1.75205024e-21) (100.6436955 -0.4365523728 1.76728799e-21) (100.5094442 -0.7388307973 1.725151264e-21) (100.2835891 -1.055096564 -1.611892058e-21) (99.93048098 -1.261738229 -1.859201183e-21) (99.44738069 -1.611608092 0) (98.76766476 -2.034543418 -2.016242e-21) (97.92524338 -2.429709914 -1.570113564e-20) (96.51288134 -3.130036835 -3.299039837e-20) (94.50331918 -4.109302531 -2.98627786e-22) (92.12726212 -5.421178385 0) (89.93565733 -6.827026663 0) (125.2027891 -17.43758261 8.834396423e-19) (117.2566664 -10.20098874 -6.779560526e-19) (112.205297 -6.637433318 0) (108.6540118 -4.604091303 9.644473928e-19) (105.979628 -3.308626785 -9.984552929e-20) (103.5875524 -2.463298461 0) (102.2769927 -1.822875257 -2.946588783e-20) (101.0597443 -1.322630719 -1.475729234e-20) (100.5026866 -0.9110972938 1.117794488e-21) (100.1674045 -0.5333288521 -3.524597607e-21) (99.99961803 -0.1759890628 5.166869616e-22) (101.010111 -0.1679826916 6.436007115e-21) (100.9481321 -0.5068600356 0) (100.8288647 -0.8590151152 -1.721783646e-21) (100.6316698 -1.244053087 0) (100.2848261 -1.514703677 0) (99.86359128 -1.949283076 -5.535810969e-21) (99.27723315 -2.489104213 1.036433983e-21) (98.54055684 -3.028424482 1.469242425e-20) (97.3331646 -3.921206518 2.770442768e-19) (95.62163937 -5.108187365 -1.410023831e-20) (93.54471677 -6.568727023 3.247701249e-19) (91.45074428 -8.000207027 -8.45085815e-20) (116.0410407 -20.75408859 -1.167404337e-20) (112.2389404 -13.12899669 -2.624269369e-19) (109.2766364 -8.973345569 -2.388401064e-19) (106.8188706 -6.373989533 0) (104.7534439 -4.599133834 -6.912875242e-19) (102.7437286 -3.30362251 2.340253989e-21) (101.6480606 -2.420396735 -3.571085216e-20) (100.560434 -1.68386556 8.749810618e-21) (100.0748551 -1.143096147 0) (99.77423379 -0.6662526186 4.060356983e-21) (99.62155055 -0.2194846409 0) (101.3484814 -0.1875438283 6.427796246e-21) (101.2958097 -0.5667214973 1.015275932e-19) (101.1945906 -0.9598403719 -2.045757192e-19) (101.0290666 -1.397272051 -5.664873233e-22) (100.7229848 -1.715739843 -1.620661287e-21) (100.3658908 -2.21250127 0) (99.89127645 -2.835170512 -2.762241411e-19) (99.27602598 -3.473725694 0) (98.29836957 -4.488722048 2.781273179e-20) (96.90135384 -5.82030295 -1.251751485e-19) (95.15732888 -7.501890482 6.398889815e-19) (93.24141785 -9.240673198 -2.372293852e-19) (103.7250989 -30.0059407 1.016905321e-19) (107.5624424 -19.33766948 -4.643386323e-19) (107.3502463 -13.62246799 -5.295299188e-19) (106.0960694 -9.871072128 -7.117690713e-19) (104.6674458 -7.280997003 3.387819335e-19) (103.2451399 -5.371943894 1.433062435e-19) (101.7053872 -3.852985894 -7.083939249e-20) (100.8587956 -2.842780279 0) (99.95783404 -1.950151677 0) (99.55569767 -1.317781265 1.265418762e-20) (99.29925552 -0.7693360145 2.336410664e-21) (99.16744883 -0.2533276198 -7.571725696e-21) (101.7183875 -0.2016115455 0) (101.6763645 -0.6103753351 0) (101.5962416 -1.032405501 0) (101.4645764 -1.500135888 0) (101.1995577 -1.865977385 0) (100.909816 -2.409121251 0) (100.5434434 -3.083659961 -4.278306475e-20) (100.0682398 -3.772460133 0) (99.32556241 -4.841241994 0) (98.27388353 -6.235368894 2.637396847e-19) (97.01915668 -8.072527748 -4.523291918e-19) (95.79145192 -10.58297932 -5.660919913e-20) (96.6692302 -19.58793143 1.889043196e-20) (102.4050053 -15.92374331 -1.504656527e-19) (103.5343775 -12.43850029 1.126193264e-19) (103.3083975 -9.643871432 0) (102.6054837 -7.442297947 2.708015496e-19) (101.6921144 -5.652741449 -2.972863777e-20) (100.6038593 -4.122631349 -9.784438092e-20) (99.99589463 -3.086165181 -3.696135631e-20) (99.2952734 -2.108820748 -2.058236836e-20) (98.97586331 -1.431768042 2.022887029e-20) (98.76705156 -0.8383838897 0) (98.65846796 -0.2759821134 2.027353788e-20) (102.1101311 -0.2101344149 0) (102.0795415 -0.6370738223 0) (102.0226182 -1.076368168 0) (101.9264924 -1.555749668 0) (101.7023086 -1.947996705 0) (101.4896865 -2.509495934 0) (101.2310627 -3.182443091 -5.844902047e-20) (100.8957831 -3.879479316 -7.888787089e-20) (100.4034616 -4.897849469 0) (99.69500059 -6.204597293 -2.718326002e-21) (98.99319332 -7.871541533 -1.246339495e-20) (98.7080461 -10.16835987 3.790289169e-20) (98.05970495 -12.6817761 -4.853485437e-20) (100.2594128 -12.25000105 4.592437095e-20) (101.1145736 -10.58477273 -1.890971973e-20) (101.1904606 -8.771941048 7.516275191e-19) (100.8550283 -7.084215308 -4.040346024e-19) (100.2873924 -5.572459101 -2.578716946e-20) (99.53616972 -4.15866254 0) (99.13332179 -3.171995438 0) (98.60993477 -2.170312004 -3.811884951e-20) (98.3659651 -1.486350478 1.881148647e-20) (98.2029854 -0.8730511156 7.902156668e-22) (98.1169627 -0.2874311052 -1.395265599e-20) (102.51338 -0.2133454665 0) (102.4936711 -0.6470713749 0) (102.4588456 -1.092211576 0) (102.396339 -1.569293923 0) (102.2113049 -1.973031179 0) (102.0672888 -2.528903348 0) (101.9015566 -3.172978125 0) (101.6809758 -3.840594708 -1.497537658e-19) (101.392077 -4.738852958 0) (100.940088 -5.843573394 0) (100.5412546 -7.1404105 -2.462234395e-19) (98.77718792 -8.452922616 3.72480607e-19) (98.86626579 -9.664803831 5.030032823e-20) (99.49818511 -9.624437901 -1.985339878e-20) (99.75445633 -8.83373364 6.327806916e-21) (99.72109256 -7.702964467 -4.004191029e-19) (99.4830207 -6.458838683 -7.586217123e-20) (99.09804402 -5.250565045 0) (98.57249569 -4.021806028 -3.173449469e-20) (98.32378766 -3.133403803 4.855088652e-20) (97.93437653 -2.153851937 1.182558158e-20) (97.75392011 -1.489716386 2.023891669e-20) (97.6303526 -0.8774372576 -2.29857066e-20) (97.56374358 -0.2888764596 0) (102.9183654 -0.2118957811 0) (102.908191 -0.6423662185 0) (102.8922647 -1.083210728 0) (102.8586509 -1.546897891 0) (102.7089034 -1.949490917 0) (102.6219728 -2.481786447 0) (102.5286397 -3.078238535 0) (102.3907281 -3.694699401 5.225700544e-22) (102.2306055 -4.455874032 0) (101.9299369 -5.325212824 -2.127164675e-19) (101.5949527 -6.253611531 -2.193590584e-20) (99.66208335 -7.02399304 2.39792393e-19) (99.31306847 -7.771655003 2.680230549e-20) (99.22224873 -7.798556559 7.255008289e-20) (98.99821792 -7.381031583 -1.256381424e-21) (98.74384553 -6.650944938 4.932535764e-20) (98.44858826 -5.747688289 0) (98.13134901 -4.812025563 0) (97.7417464 -3.783781938 0) (97.58424865 -3.002289719 0) (97.29255307 -2.078381537 4.090720638e-20) (97.16104258 -1.452001008 -3.826328102e-20) (97.06798886 -0.8568599814 -2.593186083e-21) (97.01641547 -0.2825871991 2.601853352e-21) (103.3165421 -0.2066014817 0) (103.3142787 -0.6256008432 0) (103.3134591 -1.053825757 0) (103.302925 -1.495347059 0) (103.1833337 -1.886207009 0) (103.1396099 -2.383317964 0) (103.0976742 -2.922908529 0) (103.0104388 -3.478209572 0) (102.914139 -4.108593189 -1.254811995e-20) (102.6725288 -4.775683932 -2.300795671e-20) (102.317798 -5.436769748 1.492705207e-19) (100.3637097 -5.908071801 8.077698936e-22) (99.57597984 -6.439134159 -4.880717439e-21) (99.11900297 -6.465745442 4.275579184e-20) (98.54795231 -6.211610499 5.379170299e-20) (98.07414802 -5.709859167 1.405620009e-22) (97.68187774 -5.050264744 0) (97.36374924 -4.332933358 0) (97.03440129 -3.483283679 0) (96.92346918 -2.807446161 0) (96.69731702 -1.960011492 0) (96.60036613 -1.381962233 0) (96.52946985 -0.8182820411 0) (96.48884219 -0.2710650601 0) (103.7011431 -0.1982939184 0) (103.7051004 -0.5994603882 0) (103.7155852 -1.008712725 0) (103.7221381 -1.422204136 0) (103.6263064 -1.793559554 0) (103.6122687 -2.249368611 0) (103.6018186 -2.729473977 0) (103.5419308 -3.219050564 0) (103.4618077 -3.742161217 0) (103.2219995 -4.258208882 0) (102.8189073 -4.735056861 9.543170983e-21) (100.400683 -5.005803294 1.220767976e-21) (99.72917137 -5.430838395 -7.98295437e-21) (99.05866787 -5.442771864 2.370895713e-22) (98.24270762 -5.263284964 0) (97.59600636 -4.903292083 0) (97.10799203 -4.415697192 0) (96.75455448 -3.857575322 0) (96.44153558 -3.15709799 0) (96.34514672 -2.580594842 0) (96.15588473 -1.81716567 0) (96.08014574 -1.291710223 0) (96.02303624 -0.7669369628 0) (95.99058474 -0.2547653989 0) (104.0671473 -0.1877972688 0) (104.075644 -0.5665825111 0) (104.0937911 -0.9524269463 0) (104.1117665 -1.334709434 0) (104.0334413 -1.68163896 0) (104.0372323 -2.093868371 0) (104.0426468 -2.517517435 0) (103.9916467 -2.942395611 0) (103.9036871 -3.374457755 0) (103.6362545 -3.781000371 0) (103.1720964 -4.138490764 0) (99.94676877 -4.266580029 0) (99.81827842 -4.634557702 0) (98.99825433 -4.630036739 0) (98.01907703 -4.493249055 0) (97.24425086 -4.225428275 0) (96.66899477 -3.854249227 0) (96.26676871 -3.413220912 0) (95.94536463 -2.832996382 0) (95.8433952 -2.343265051 0) (95.67013064 -1.6634011 0) (95.60474746 -1.190749349 0) (95.55467056 -0.7086816466 0) (95.52698789 -0.2359486907 0) (104.4111396 -0.175889477 0) (104.4226136 -0.5294305557 0) (104.4451368 -0.8891246452 0) (104.4695475 -1.239158411 0) (104.4032414 -1.559028033 0) (104.4152061 -1.928212396 0) (104.4241604 -2.301363228 0) (104.3703579 -2.66562855 0) (104.2608816 -3.022561146 0) (103.9567256 -3.345514573 0) (103.437608 -3.620645962 0) (99.6583151 -3.681524637 0) (99.85502875 -3.989130712 -2.769560117e-35) (98.94355848 -3.971697908 0) (97.84864988 -3.861710773 0) (96.97603592 -3.654278504 0) (96.32579056 -3.364018174 0) (95.87333927 -3.01062656 0) (95.52823777 -2.526687439 0) (95.4094671 -2.109568159 0) (95.23797285 -1.508208362 0) (95.17476875 -1.086212933 0) (95.12659607 -0.6477826217 0) (95.10116968 -0.2161541825 0) (104.7311106 -0.1632463696 0) (104.7442175 -0.4901434355 0) (104.7683543 -0.8223793323 0) (104.795032 -1.140567278 0) (104.736429 -1.43254395 0) (104.7491268 -1.761179817 0) (104.7525398 -2.089124123 0) (104.6889325 -2.399798087 0) (104.5509942 -2.69550012 0) (104.2083808 -2.954571145 0) (103.6403221 -3.170468912 0) (99.5317658 -3.200539488 0) (99.86030585 -3.4547002 0) (98.89329463 -3.428230256 0) (97.71326125 -3.336603486 0) (96.76514889 -3.170764273 0) (96.05189993 -2.938410139 0) (95.55200132 -2.65077494 0) (95.17633821 -2.244484728 0) (95.03435506 -1.887915652 0) (94.85534214 -1.358041078 0) (94.78863349 -0.9831450348 0) (94.73874647 -0.5873069837 0) (94.71368064 -0.1964131479 0) (105.0262633 -0.1504139607 0) (105.0399081 -0.4504459392 0) (105.0634933 -0.7550930639 0) (105.0891393 -1.042750022 0) (105.03491 -1.307304314 0) (105.042975 -1.598776909 0) (105.034821 -1.886270084 0) (104.9572667 -2.151148568 0) (104.788096 -2.397163705 0) (104.4089872 -2.607120924 0) (103.7951836 -2.778993968 0) (99.50823277 -2.795632558 0) (99.84525342 -3.006200039 -2.407069277e-35) (98.84651483 -2.973764741 0) (97.60238317 -2.895499346 0) (96.59511349 -2.75959039 0) (95.82930204 -2.569899979 0) (95.28625999 -2.332449848 0) (94.87802565 -1.989005996 0) (94.70967453 -1.682949575 0) (94.51745024 -1.216967561 0) (94.44355045 -0.8848699256 0) (94.38955941 -0.5293251625 0) (94.36350533 -0.1774156793 0) (105.2967747 -0.1378130584 0) (105.3100966 -0.4116449366 0) (105.3315312 -0.6894653769 0) (105.3536997 -0.9485091749 0) (105.3012491 -1.186932336 0) (105.3010905 -1.444965502 0) (105.2776155 -1.695940704 0) (105.1838103 -1.922942368 0) (104.9831874 -2.128494988 0) (104.5712233 -2.300341913 0) (103.9132047 -2.438446982 0) (99.55009309 -2.451061985 0) (99.81752886 -2.626609351 0) (98.80266299 -2.590309576 0) (97.509486 -2.52222213 0) (96.45518442 -2.408676772 0) (95.64554388 -2.251285064 0) (95.06401499 -2.052863681 0) (94.6236013 -1.76064078 0) (94.42798795 -1.496791568 0) (94.21940087 -1.087263404 0) (94.13609811 -0.7934215347 0) (94.07653373 -0.475145085 0) (94.04857891 -0.1596014142 0) (105.5435249 -0.1257565729 0) (105.5558665 -0.3746863434 0) (105.5740251 -0.6270695739 0) (105.591012 -0.8597968244 0) (105.5383951 -1.073868303 0) (105.5277404 -1.302069748 0) (105.4872777 -1.520856579 0) (105.3756028 -1.716222301 0) (105.1447956 -1.888875083 0) (104.7040614 -2.0308759 0) (104.0029519 -2.142526247 0) (99.63339169 -2.155048295 0) (99.78230991 -2.303861378 3.705974016e-36) (98.76129989 -2.264970302 0) (97.43029831 -2.204869373 0) (96.33813549 -2.10855295 0) (95.49185861 -1.976198056 0) (94.87635565 -1.808650285 0) (94.40532208 -1.558489359 0) (94.18288676 -1.32999219 0) (93.956466 -0.9699671039 0) (93.86259534 -0.7099099188 0) (93.79665787 -0.4255155117 0) (93.76622206 -0.1432277836 0) (105.767878 -0.1144680817 0) (105.7787534 -0.3402267075 0) (105.7928822 -0.568975428 0) (105.8035698 -0.7778914005 0) (105.7493717 -0.9696261416 0) (105.7268795 -1.171451704 0) (105.6687113 -1.362441867 0) (105.538685 -1.531057325 0) (105.2796327 -1.67689313 0) (104.8139122 -1.795296155 0) (104.0711323 -1.885989451 0) (99.7419911 -1.899893244 0) (99.74266692 -2.028553679 0) (98.72205097 -1.988055915 0) (97.3618631 -1.934378342 0) (96.23890801 -1.851664613 0) (95.36187971 -1.73910412 0) (94.71653702 -1.596330241 0) (94.21695915 -1.380969011 0) (93.96888237 -1.18215173 0) (93.72423315 -0.8653088962 0) (93.61934275 -0.6348004506 0) (93.54670168 -0.3807849985 0) (93.51344937 -0.1284215435 0) (105.9715329 -0.1040977421 0) (105.9805966 -0.3086942472 0) (105.9902247 -0.5158652532 0) (105.9939376 -0.7035571327 0) (105.9371224 -0.8750876933 0) (105.9021217 -1.053812667 0) (105.8261526 -1.22099454 0) (105.6779986 -1.366916491 0) (105.392973 -1.490850449 0) (104.9054783 -1.590427455 0) (104.1229876 -1.664454006 0) (99.86539509 -1.680210213 0) (99.7003397 -1.793557423 0) (98.68464614 -1.752165214 0) (97.30206521 -1.7037647 0) (96.15385294 -1.631991356 0) (95.25088428 -1.535318108 0) (94.57937767 -1.412638749 0) (94.0535008 -1.226245543 0) (93.78132386 -1.052376503 0) (93.51866062 -0.773024013 0) (93.40275792 -0.5681305353 0) (93.32339058 -0.3410280101 0) (93.28715738 -0.1152188975 0) (106.1564142 -0.09473769165 0) (106.1634304 -0.2803411118 0) (106.168297 -0.4681284666 0) (106.1646802 -0.6371758055 0) (106.1045046 -0.7906403366 0) (106.056772 -0.9493117293 0) (105.9633109 -1.096211685 0) (105.7976452 -1.222892449 0) (105.4890018 -1.328924358 0) (104.9823262 -1.413337095 0) (104.1624646 -1.473981902 0) (99.99684902 -1.491490038 0) (99.65647758 -1.593377805 0) (98.6488679 -1.551568798 0) (97.24930614 -1.507528658 0) (96.08022207 -1.444654938 0) (95.15524545 -1.360861721 0) (94.46077829 -1.254596167 0) (93.91080458 -1.092405778 0) (93.61619486 -0.9395010733 0) (93.33607304 -0.6925568412 0) (93.20944165 -0.5096689098 0) (93.12351084 -0.3061437781 0) (93.08424493 -0.10359729 0) (106.3245431 -0.08643815144 0) (106.3293592 -0.2552934429 0) (106.329353 -0.4259487351 0) (106.318277 -0.5788806589 0) (106.2541999 -0.7163662489 0) (106.1937999 -0.8577988559 0) (106.083338 -0.9874473244 0) (105.9010422 -1.097942447 0) (105.5710288 -1.189353944 0) (105.0471906 -1.261463687 0) (104.1925309 -1.311337087 0) (100.1313069 -1.330173931 0) (99.61209566 -1.423664612 0) (98.6144778 -1.381785455 0) (97.20232118 -1.341326251 0) (96.01588301 -1.285722271 0) (95.07211542 -1.212415781 0) (94.357444 -1.11958462 0) (93.78543104 -0.9776295047 0) (93.47003974 -0.8422916711 0) (93.17316823 -0.6232275311 0) (93.03624046 -0.4590413984 0) (92.94400889 -0.2759347805 0) (92.90172926 -0.09350112254 0) (106.4780408 -0.07921821984 0) (106.4805589 -0.2335866889 0) (106.4756655 -0.3893648964 0) (106.4571567 -0.5286292596 0) (106.3887205 -0.6521529202 0) (106.3159049 -0.7789433548 0) (106.1889566 -0.8937412056 0) (105.9910543 -0.9910289946 0) (105.6417146 -1.070502909 0) (105.1022722 -1.132617477 0) (104.2155148 -1.17386559 0) (100.2651806 -1.193528893 0) (99.56798685 -1.280912046 0) (98.58123516 -1.239216075 0) (97.16006024 -1.201663212 0) (95.95910953 -1.151979672 0) (94.99917424 -1.087197557 0) (94.26662031 -1.00531278 0) (93.67447598 -0.880254341 0) (93.33984324 -0.7595477068 0) (93.02692123 -0.5643096117 0) (92.88019702 -0.4158063691 0) (92.78196527 -0.2501537342 0) (92.73672609 -0.08485645508 0) (106.6188463 -0.07308226007 0) (106.6190199 -0.2152080607 0) (106.60929 -0.3583212889 0) (106.5834767 -0.4863314237 0) (106.5104006 -0.5977591878 0) (106.4255458 -0.7122644474 0) (106.2827955 -0.8143400417 0) (106.0700562 -0.9010889919 0) (105.7032337 -0.970892965 0) (105.1493954 -1.024934112 0) (104.2332039 -1.059314939 0) (100.3959023 -1.079310112 0) (99.5247783 -1.162324319 1.402819478e-36) (98.5489026 -1.120980517 0) (97.12162161 -1.085724127 0) (95.9084634 -1.040802905 0) (94.93450287 -0.982903504 0) (94.18598789 -0.9100186094 0) (93.57540656 -0.7989181167 0) (93.22294015 -0.6901442388 0) (92.89472851 -0.5151488119 0) (92.73871812 -0.3795109486 0) (92.63479312 -0.2285495683 0) (92.58667755 -0.07758873733 0) (106.7495477 -0.06800833565 0) (106.7473094 -0.2000897379 0) (106.7327834 -0.3327031763 0) (106.6998122 -0.4516833297 0) (106.6214609 -0.5528965825 0) (106.5249496 -0.6572318667 0) (106.367304 -0.7489398601 0) (106.1401057 -0.8270936728 0) (105.7574234 -0.8892082431 0) (105.1901139 -0.9368446759 0) (104.2469629 -0.9658555634 0) (100.5215791 -0.9857656175 0) (99.48299221 -1.065594572 0) (98.51725098 -1.024740976 0) (97.08620562 -0.9912221444 0) (95.8627129 -0.9500367235 0) (94.8765044 -0.8976002535 0) (94.11380156 -0.8321566736 0) (93.48586557 -0.7324656882 0) (93.11694378 -0.6331069886 0) (92.77372549 -0.4750085541 0) (92.60889971 -0.3497205554 0) (92.49952691 -0.210859715 0) (92.44857289 -0.07161144797 0) (106.8701654 -0.06402203084 0) (106.8655993 -0.1882470742 0) (106.8464161 -0.3124276823 0) (106.806526 -0.4249106048 0) (106.7239414 -0.517165997 0) (106.6161365 -0.613334246 0) (106.4445112 -0.6977406831 0) (106.2031718 -0.767985538 0) (105.8059138 -0.8243001993 0) (105.2258144 -0.8670229365 0) (104.257914 -0.89199811 0) (100.6409772 -0.9115922458 0) (99.4430408 -0.9888047678 0) (98.48606405 -0.9485855795 0) (97.05308033 -0.9162880205 0) (95.82075667 -0.8779046654 0) (94.82374401 -0.8296334469 0) (94.04838185 -0.7697445919 0) (93.40394504 -0.6794798887 0) (93.01962691 -0.5873772197 0) (92.66321491 -0.4437469421 0) (92.49004531 -0.3260845863 0) (92.37551376 -0.1969442381 0) (92.32189527 -0.06690002039 0) (106.9901486 -0.06097379965 0) (106.9828802 -0.1793918382 0) (106.9588308 -0.2972458984 0) (106.9113473 -0.4039252275 0) (106.8203283 -0.490432546 0) (106.7009052 -0.5805023006 0) (106.5156185 -0.6597308881 0) (106.261026 -0.7232511586 0) (105.8501337 -0.7752554759 0) (105.2577308 -0.8143663078 0) (104.2670277 -0.836470661 0) (100.753279 -0.8557047606 0) (99.40531696 -0.9304701817 0) (98.45514347 -0.8910340409 0) (97.02156907 -0.8594713578 0) (95.78159497 -0.8230236944 0) (94.77489087 -0.7777511899 0) (93.98774319 -0.7218208845 0) (93.32816461 -0.6389272827 0) (92.92919217 -0.5529249919 0) (92.55564592 -0.4190524653 0) (92.37370108 -0.3081526268 0) (92.2539018 -0.1863835419 0) (92.19727685 -0.06325675816 0) (107.0824939 -0.05930565511 0) (107.0734876 -0.1742787585 0) (107.045682 -0.2880554141 0) (106.9933915 -0.3937000973 0) (106.9102259 -0.4720287179 0) (106.780803 -0.5580889866 0) (106.5823077 -0.6341873392 0) (106.3150802 -0.6922719278 0) (105.8913184 -0.7413285003 0) (105.2869515 -0.7779773833 0) (104.2751226 -0.7982350903 0) (100.8579328 -0.8171503993 0) (99.3701323 -0.8895280632 0) (98.42430246 -0.850965183 0) (96.99102607 -0.8196745746 0) (95.74430797 -0.7843499874 0) (94.72879737 -0.7410245885 0) (93.93072954 -0.6877922763 0) (93.25690013 -0.6103296495 0) (92.84416887 -0.5287645954 0) (92.47110916 -0.4057142332 0) (92.28314103 -0.2968176351 0) (92.1592892 -0.1799804006 0) (92.10076933 -0.06115600132 0) (107.2578221 -0.05755918784 0) (107.2450697 -0.1700570653 0) (107.2100006 -0.2808419006 0) (107.1446021 -0.3813941937 0) (106.9937132 -0.4627216351 0) (106.8536379 -0.5462793918 0) (106.6433411 -0.6212827321 0) (106.3666353 -0.6745726785 0) (105.930541 -0.7219459065 0) (105.3144453 -0.7571592879 0) (104.2829495 -0.776620327 0) (100.9544662 -0.7953558593 0) (99.33766094 -0.8653284659 0) (98.39340412 -0.8275396732 0) (96.96087331 -0.7960814089 0) (95.70807535 -0.7611206864 0) (94.68443177 -0.7187589797 0) (93.87618227 -0.6670630449 0) (93.19178698 -0.5934131429 0) (92.76721086 -0.5147153217 0) (92.31800387 -0.3895870313 0) (92.11568504 -0.2869651178 0) (91.98416313 -0.173998732 0) (91.92161059 -0.05878450779 0) (84.53745236 -3.342928524 1.683717382e-21) (138.1650882 10.60495659 -9.459399741e-19) (124.1287592 25.19501437 8.114160414e-19) (87.76005528 -5.473266898 -8.574182228e-19) (136.5688153 -7.641046752 -1.497270169e-18) (138.7796832 8.003889253 2.562048052e-18) (89.73170107 -6.695675038 -9.397400428e-20) (127.4355996 -17.96562123 1.949649111e-19) (135.6393069 -9.403501414 2.63084661e-18) (91.25692615 -7.839644854 6.790893773e-19) (117.5920747 -21.81238516 1.225619373e-18) (126.1836968 -18.73690521 3.289730285e-20) (93.11432352 -9.148888631 -2.403577613e-19) (103.5423153 -30.79933416 -5.147015262e-21) (104.442982 -30.38863184 0) (108.6902597 -21.27207505 -9.903798813e-19) (116.405766 -21.9690684 -5.581796154e-19) (95.52776497 -10.3879782 1.969457319e-19) (95.35910453 -20.73797906 -1.488847846e-19) (103.1868534 -30.66376792 -5.177317485e-21) (96.86019299 -20.96587984 1.257366992e-19) (102.6918994 -18.08249749 -2.138445925e-19) (107.7175067 -21.03292644 0) (81.75175183 4.876839703 1.42875086e-20) (91.8385812 21.61994478 2.238677072e-19) (121.0829032 25.77094054 0) (106.6412378 20.77104021 0) (146.2170583 29.67487061 0) (126.3983731 43.73199299 1.953618411e-18) (135.3563611 9.748434651 1.150213197e-18) (122.7152743 5.95297659 -1.622912777e-18) (117.8715802 11.23775561 1.951694093e-18) (90.36193668 -3.480331189 0) (88.05685455 -5.170400639 8.521411785e-19) (85.60702856 -3.256292597 -4.87452641e-19) (149.5089217 -2.726114411 -1.064205139e-18) (151.7634269 10.44642276 1.174731464e-18) (134.4915968 -6.86183779 1.145699092e-18) (123.8638705 -3.143988079 0) (123.5971585 3.704308732 1.677439712e-18) (91.77852371 -5.094159713 -3.84962053e-19) (89.97246382 -6.47863293 3.703834473e-19) (88.33073275 -5.363518445 4.162636946e-19) (88.82139436 -6.139283569 1.002210103e-19) (88.03868729 -7.058412057 -2.718584585e-19) (87.00655269 -6.569670994 -9.563840896e-20) (136.7846975 -19.97708523 2.984830153e-18) (143.4623346 -13.71980591 -2.002185433e-18) (126.358302 -16.67955854 -1.740607004e-18) (120.1822172 -10.27768469 0) (123.2778484 -5.217846299 -7.976148587e-19) (93.18097641 -6.30147929 3.369226254e-19) (91.49084911 -7.640283266 -3.360538666e-19) (90.17330876 -6.619796984 0) (90.51001966 -7.234739936 -4.4264367e-19) (89.55596369 -7.872223045 -5.093835187e-23) (89.04822067 -7.464421838 3.50296539e-19) (124.2647574 -26.06015504 -7.131628763e-19) (129.6283339 -24.15564069 -2.226504855e-19) (94.72729682 -7.292772721 -2.889294095e-19) (93.21444807 -8.916259718 3.665204369e-19) (91.68392046 -7.796517877 0) (92.17464803 -8.485620974 2.601982922e-19) (90.68030404 -9.275106482 -2.387939205e-22) (90.15215067 -8.587719598 -4.679659618e-23) (108.503475 -32.06278029 4.421524493e-20) (112.7406499 -26.9471166 0) (117.6935338 -27.13909253 5.479028717e-19) (96.53226712 -7.999836742 -1.845428884e-19) (95.5554219 -10.09513042 -5.79299849e-20) (93.46733472 -9.072191526 -2.089024042e-19) (94.22408909 -9.784225031 -1.118818503e-21) (91.5136699 -10.85138505 -4.58514069e-19) (91.27833913 -10.0974915 0) (98.76812005 -10.25286409 1.49307116e-19) (96.90399283 -13.11323003 0) (95.33683877 -19.9725669 -8.540696787e-20) (78.37389937 -5.636934001 -4.351843095e-19) (83.34634134 -6.418351618 6.214390014e-20) (71.25636005 4.49874917 0) (77.34408436 -5.156783079 0) (151.7741847 11.46835254 1.16255137e-18) (146.9641087 28.52596884 0) (134.2802058 18.23711912 2.279720529e-18) (145.3867201 26.83618607 0) (150.6883205 11.4337458 8.345937754e-22) (86.86617688 -6.486388764 0) (85.84781761 -6.078718836 -4.033143391e-19) (86.79999571 -4.864667653 -4.608509508e-19) (85.69539792 -6.258367292 -3.073896468e-19) (86.73720972 -6.611933916 0) (83.77018431 -6.392953837 -1.045941809e-19) (85.52734733 -6.241542988 -1.037009631e-19) (143.8727951 -13.17199733 -3.504625601e-20) (149.2464691 -3.486449246 0) (138.117544 -1.038040334 1.113912152e-18) (148.5193726 -3.1627634 -1.042561655e-18) (143.4445759 -12.74910683 -2.019703289e-18) (150.7217748 10.43389212 1.162304651e-18) (148.7703924 -2.418859198 8.52073014e-21) (138.2712873 0.07279011989 -3.369445547e-18) (88.95350532 -7.415419523 8.832937008e-20) (88.17343986 -7.106755916 4.498466756e-19) (89.06369615 -6.287315755 3.883878486e-19) (88.00076338 -7.201930848 -2.770051198e-19) (88.81792641 -7.49517044 0) (86.80619655 -6.661054409 2.869486175e-19) (87.93335355 -7.17456681 -4.865870432e-22) (130.4133019 -23.79165476 -1.143026214e-18) (136.3327194 -20.32210402 -8.507842329e-19) (131.1355377 -15.04141424 4.632616111e-20) (135.8481936 -19.73489012 7.457950858e-19) (130.1769045 -22.99202494 2.220312016e-20) (143.0483254 -13.29378727 1.984967244e-18) (136.71702 -19.11988248 -5.375952571e-19) (132.3325722 -13.83710145 -2.123808372e-18) (90.11014747 -8.542820304 -5.055561818e-19) (89.58662387 -7.908659276 2.601465193e-19) (90.69494903 -7.379178491 4.427559153e-19) (89.43446944 -7.93561651 -2.69851439e-19) (89.8863245 -8.582846394 0) (88.86315626 -7.523701468 0) (89.40825644 -7.900202568 5.380986277e-19) (118.4118304 -27.09069147 -1.114964765e-18) (123.5162729 -26.2491192 1.597397652e-20) (91.24093205 -10.04405979 -4.650379351e-19) (90.71586273 -9.329938806 1.191023488e-21) (92.282934 -8.57492689 5.124754698e-19) (106.0939182 -31.92941463 7.173560966e-19) (90.3399189 -9.359101191 -2.492588662e-19) (90.51274364 -10.05209483 -4.876722963e-19) (89.92668487 -8.626999429 2.596802521e-19) (90.31663039 -9.306602932 2.420558247e-22) (105.668139 -31.79533859 5.046325992e-19) (107.702152 -25.96768083 6.154570862e-19) (112.0409784 -26.91170181 -1.148155207e-18) (108.4769133 -32.05900893 0) (81.99777114 -10.16133774 2.889337741e-19) (91.55842744 -10.91421396 0) (94.37817912 -9.869262863 2.155900343e-19) (97.67500081 -26.15988128 0) (90.13795288 -10.84690421 -1.242877353e-18) (45.24143179 -8.322834064 3.117169467e-19) (90.53488046 -10.10200444 -2.474139897e-19) (90.10105773 -10.78316856 0) (98.20681346 -26.86157497 -1.429924672e-20) (89.1271594 -0.9400827131 9.102825624e-19) (85.15721969 -2.814385918 -4.990298747e-19) (82.99157311 3.290821104 0) (82.21077521 -0.4897989117 -5.761577763e-19) (78.01854447 -4.164580813 0) (73.31836569 4.477234808 6.842729149e-19) (150.5494459 53.39883935 7.113597924e-18) (124.2629221 66.25470253 -9.28591883e-19) (86.42793373 -4.634968765 -8.991973659e-21) (85.67208306 -6.049381311 4.010930392e-19) (83.79987008 -5.969939361 4.559476798e-19) (122.6348434 -27.5979935 1.083434363e-17) (117.1513516 -20.57433787 5.698615371e-19) (114.5414122 -14.08730841 0) (118.8612736 -11.53994506 7.166369077e-19) (104.4398511 -30.67134572 -1.744375981e-18) (114.9651171 -30.24464642 -3.783663225e-19) (117.4738095 -30.04722106 -4.601185821e-19) (99.19305279 -26.33559602 -9.816657523e-21) (103.2236908 -23.27869762 0) (106.4704243 -25.40820589 -2.93207776e-19) (83.37570606 -5.936457695 -4.690371658e-19) (78.88355632 -4.674067416 0) (82.7603463 -1.441779205 0) (81.34665153 -9.03750321 0) (57.36025416 5.97105318 0) (66.1927635 -8.886144438 0) (125.9874497 40.07988337 2.294105867e-18) (143.9327392 29.07683861 0) (132.2254508 20.49954736 -2.822238898e-19) (117.8508273 -29.97738397 0) (120.3704857 -29.67718521 -5.240774857e-19) (121.2310896 -20.93669337 0) (123.3730346 -25.47807486 1.392190492e-18) (118.3360152 -26.3229643 -1.108231853e-18) (129.4025203 -23.35290619 8.682617628e-19) (124.1106495 -25.28172877 2.067605132e-20) (122.4611296 -20.50322222 0) (105.7023221 -31.84432292 -9.96141248e-21) (86.64679688 -28.83705476 0) (100.683539 -29.28833292 6.835804514e-20) (83.71237836 31.66105545 5.89893644e-19) (79.23144716 16.54614486 0) (71.48484933 6.669487339 0) (122.5898159 43.75466796 1.03411967e-19) (105.0938358 35.31295577 0) (86.29040707 34.30067253 7.203396803e-20) (151.9491812 50.17865116 -1.033992672e-17) (140.0347793 38.05725416 -1.247024475e-18) (150.5336147 50.08280397 0) (124.4496405 61.80309395 0) (148.3446362 52.71021422 0) (137.0861889 40.08493536 1.096863823e-18) (150.7660759 2.999659462 -2.507095369e-18) (150.939744 3.868402313 1.034580054e-20) (139.951741 -17.47861029 1.896246378e-18) (140.4054374 -17.04801878 0) (123.1025979 -29.05039878 6.305635008e-19) (123.3369809 -27.76289523 -9.277405053e-18) (126.5343804 -25.37597126 7.797197707e-19) (125.7612347 -27.79615473 0) (123.7876451 -28.69529483 6.175440202e-19) (126.4411336 -26.31978182 3.383299599e-18) (125.8165238 -27.68266682 1.258672109e-18) (127.2998522 -25.10605475 1.787268739e-21) (90.460577 -8.920841049 1.042326181e-22) (91.30807124 -8.658990774 -2.952752418e-19) (91.61346109 -8.933989637 2.901117607e-19) (112.0054793 -29.95273882 -8.400233345e-19) (114.230808 -30.21337064 0) (105.6052838 -30.92559631 -5.504873284e-18) (91.62497267 -10.48366325 1.277502867e-19) (93.18443205 -10.15047232 0) (93.62547987 -10.43403085 6.227074324e-20) (92.65986495 -9.771804103 2.713983776e-19) (93.04835212 -10.05451086 -2.637971003e-19) (91.59099844 -10.41765491 2.552634982e-19) (77.43999208 -10.95615994 -3.246551634e-18) (80.95089733 -9.278656565 -1.991159394e-18) (80.97414888 -6.323362665 0) (81.10589694 -8.973052319 -1.311811143e-18) (77.46572539 -10.05037135 4.707580541e-18) (83.01221827 -7.7442837 1.648671422e-18) (81.4720365 -8.779094723 0) (81.67278908 -6.390026932 -2.559524064e-19) (72.95713779 -1.197364768 0) (67.19388873 -7.30122896 0) (60.07505362 5.77046379 0) (76.65805517 -10.04402927 0) (68.59236393 -8.175234234 0) (74.01466246 -2.604373241 0) (67.8584602 -9.751453831 0) (76.67568376 -10.89524495 0) (150.6572372 18.96903684 1.193213961e-18) (150.3715589 20.14052378 -1.181411562e-18) (86.21307153 -6.330210676 -5.782349262e-19) (84.57219892 -6.669055741 -1.319352239e-18) (86.27943972 -6.360221701 2.875773619e-19) (84.69621168 -6.274247752 4.245752047e-19) (84.00705847 -6.957799866 8.687807084e-19) (83.13231525 -7.628778898 0) (84.53448326 -6.66490635 2.192326846e-18) (84.08629003 -6.875167374 8.696853004e-19) (84.93506304 -6.248414414 -1.055141523e-19) (146.4985916 -8.933911623 -1.179589768e-18) (146.8403138 -8.285064916 1.176574663e-18) (146.3256779 -7.961703344 0) (142.1968563 -5.773072008 2.499760023e-18) (143.395668 -2.089350489 -3.061248451e-20) (140.0601826 -10.10548584 1.179202863e-18) (141.7158543 -6.923969584 -2.437637344e-18) (145.9952002 -8.608752773 -1.103306406e-18) (150.2001165 4.021205414 -1.169577857e-18) (144.38873 4.875346351 2.59019555e-18) (144.1809773 9.503293048 -1.277630392e-18) (143.7009995 -0.7727448478 0) (144.3063285 3.408475351 -5.945589109e-21) (150.0512581 3.158491863 0) (88.42563802 -7.32976702 0) (88.47987645 -7.353709371 -6.484589223e-22) (87.33516686 -6.944999434 0) (87.41236796 -6.986158028 0) (132.9486152 -22.30918224 7.591476581e-19) (126.7588859 -26.06020033 3.251761737e-18) (133.3590901 -22.04127269 0) (89.65832278 -8.227686926 -2.770048601e-19) (89.68998802 -8.26715037 5.579604834e-22) (89.15273206 -7.684074851 -2.613821305e-19) (89.18849445 -7.710397537 2.879019154e-24) (123.4190906 -28.78320219 1.186166527e-18) (120.9141125 -29.2439343 -6.080509856e-21) (121.3036205 -26.71206109 0) (120.7045413 -29.61832349 0) (122.8031678 -29.15888201 -1.836932846e-18) (91.10640963 -9.747108221 0) (92.17721137 -9.404336725 0) (92.53682228 -9.678502909 0) (91.72071227 -9.029322819 0) (92.0591303 -9.312246021 2.373014433e-21) (91.05042988 -9.703566506 0) (105.9159131 -31.94443775 2.548881772e-19) (90.64658402 -9.743256125 0) (90.7026377 -9.783349817 0) (90.18269021 -8.899533537 -5.49102969e-19) (90.20938453 -8.943666669 -8.325843804e-19) (101.7766948 -30.33663409 1.785370053e-17) (106.823257 -31.67460318 2.605858625e-19) (109.044359 -29.29871085 -8.218977391e-19) (111.2617818 -29.82423784 0) (93.78584314 -10.52516443 -3.055467381e-19) (94.28448632 -10.77269082 8.600728296e-19) (92.72059669 -11.74840624 3.145617591e-18) (92.5728837 -11.96983478 -4.008113546e-18) (88.98921113 -24.25538119 -1.855898482e-22) (87.81754462 -26.99608494 0) (90.83346717 -10.39374393 0) (78.99602565 -27.22739756 0) (87.33000345 -27.23138173 0) (80.4781996 -27.36279053 7.934127736e-19) (90.86097732 -10.46743587 1.354207948e-19) (100.0195136 -28.74975552 -2.164270302e-19) (87.49868623 -28.80597541 0) (90.91750719 -27.67208256 -1.510181552e-20) (118.3619853 88.29546909 0) (114.4159302 -31.42181757 -4.442021353e-19) (114.8087286 -31.14656217 -1.027771169e-18) (98.5270985 -7.988043114 0) (98.33003669 -9.746599243 0) (95.92580812 -10.17122659 2.190508643e-19) (97.08479748 -10.59553508 0) (81.89685759 -9.258586767 -2.142985521e-19) (79.60673715 -9.850502449 -2.431174673e-19) (97.78881696 -13.75195664 -1.883136744e-20) (100.1020931 -13.46417957 -2.931565401e-20) (101.7069668 -16.85415974 -1.574303381e-19) (37.49737135 7.602500398 0) (114.6506703 -30.9941161 -1.017942146e-18) (114.0210881 -30.46607314 0) (106.2260708 -28.24850833 1.174943804e-19) (108.321581 -29.07509521 9.276345565e-19) (106.5167147 -31.56163815 -5.163556357e-19) (100.3201921 -19.67633353 0) (102.336421 -22.42045724 2.67978502e-19) (98.66266993 -25.68671361 -9.361253023e-21) (69.10870233 42.66373426 0) (67.45305961 22.91313841 0) (57.56862614 8.876945029 0) (119.4095724 65.31322841 1.44343823e-21) (99.83740063 52.14573607 -7.717066666e-19) (76.05349152 49.60289566 1.269575314e-19) (150.1296463 -0.3319221738 1.084804941e-18) (154.6028818 10.29068555 0) (154.0098964 7.10835325 6.16387466e-18) (151.5338903 7.510120533 1.21746981e-18) (138.1261618 -19.01963714 0) (138.4291938 -20.53725561 1.821798179e-18) (137.1342593 -21.4482821 0) (143.6909789 -15.19857849 -6.415805321e-18) (142.1829222 -16.81281081 -2.767838857e-18) (142.1865796 -15.24455681 0) (89.31572981 -7.674397347 2.548284927e-19) (89.85891085 -7.402125867 -3.129829211e-19) (90.12283518 -7.600097519 -3.09717205e-19) (89.47846544 -7.162914234 0) (89.76735985 -7.34011092 -6.318009001e-19) (89.27717189 -7.649593706 2.54281898e-19) (90.92430487 -8.311864719 -2.121938103e-21) (91.21083371 -8.569854512 0) (90.42736905 -8.874728242 2.626373611e-19) (91.49188149 -10.71881205 0) (92.87897394 -10.56326248 0) (93.08115201 -10.73183769 -4.061271428e-19) (49.07779321 -8.553382801 -4.838739935e-19) (73.77262227 -12.09483001 -1.821719118e-19) (95.7665153 -16.01495305 -8.165416486e-20) (151.4959958 14.59121918 0) (154.5481555 14.65810478 2.617274794e-17) (154.7932124 11.38109442 0) (149.2306134 19.74143673 1.16162166e-18) (141.9112224 17.77797251 3.764796152e-18) (139.0371007 22.77762048 1.195924401e-18) (143.9377471 11.11933134 0) (142.5919927 16.08482953 -1.276225458e-18) (149.4918821 18.63972263 1.16620554e-18) (145.0542583 -11.43754219 9.366646523e-21) (145.6004712 -12.76524891 4.686929888e-18) (144.1898378 -14.63410526 -1.304286807e-18) (148.3000368 -5.674462339 1.04057376e-18) (88.65069813 -7.279715519 6.213713042e-19) (89.0565373 -6.934140602 0) (89.37733839 -7.104983724 -3.214152817e-19) (88.264221 -7.610729939 -6.406534239e-19) (88.15932155 -7.544104659 0) (88.6807048 -7.431368853 2.786778709e-19) (136.661078 -21.75931795 9.391025519e-19) (135.2380866 -22.55889512 0) (135.0259307 -21.08857202 0) (133.348082 -21.30957301 1.205336484e-18) (131.6724477 -18.85401672 -4.356228684e-22) (133.8547333 -17.22269702 9.918648229e-19) (140.1138973 -16.5920206 0) (137.4540471 -13.71033336 0) (139.443764 -11.07784588 1.140152063e-18) (134.5857767 -16.60569693 3.014897073e-18) (136.752296 -14.50018884 1.055553527e-18) (139.679238 -17.01973422 0) (89.86549918 -8.234173234 -6.545458002e-20) (90.55813968 -7.979989241 0) (90.83077416 -8.22715168 3.02231763e-19) (90.20878572 -7.67175561 6.211015118e-19) (90.46937551 -7.900016238 0) (89.82953742 -8.192846399 -2.64026421e-19) (89.51877178 -8.058217498 2.7511185e-19) (88.45380138 -8.094043913 0) (88.43441407 -7.940758876 0) (87.87204617 -8.577253367 1.333781699e-18) (87.82679638 -8.442289948 0) (89.77943985 -8.439227762 0) (88.99621239 -7.590409781 0) (88.40909596 -7.708161795 3.243959713e-19) (88.3037567 -7.636326379 3.232791774e-19) (88.43276494 -7.908199113 0) (88.40606784 -7.846183345 -5.935520218e-19) (89.3239521 -7.810484662 -2.644467445e-19) (120.5786114 -26.83255828 6.216537913e-19) (120.5585113 -29.30624743 5.226275499e-19) (118.1940732 -29.4036209 0) (94.23225812 -30.20789061 0) (106.4166938 -32.08943118 -5.728731409e-21) (90.4404184 -9.51484576 -2.584064351e-19) (90.68320059 -9.911103057 -2.963229967e-18) (90.05045822 -8.748019846 0) (88.07313915 -8.743649355 -3.367656943e-19) (87.90568399 -8.634849521 -1.345497156e-18) (88.12403363 -9.133237646 8.43237456e-19) (90.30399505 -9.160893038 -1.0237876e-21) (103.1495602 -31.03260746 4.516938959e-18) (91.64642803 -10.86617527 -1.889844568e-18) (94.32332395 -10.90398055 -4.357239678e-19) (94.76229557 -11.24788439 0) (93.15559238 -10.78700738 2.049207057e-19) (93.41267376 -10.94170141 2.028367117e-19) (91.79590163 -11.15582214 -1.072953314e-18) (91.04812979 -27.34734109 0) (91.53399517 -24.56838049 -1.053189531e-20) (96.37764226 -23.91024224 7.413893538e-20) (90.37719986 -11.11296306 9.594752642e-19) (62.82901985 -21.16863385 -1.809849978e-19) (87.03414832 -19.73914232 0) (88.94315343 -23.75441158 -4.203232351e-19) (87.44373144 -11.47897727 -1.085445314e-18) (90.71026518 -10.25754566 1.019453297e-18) (90.17373915 -10.73267682 3.120139368e-21) (141.5519309 62.53984501 -6.544373296e-20) (120.1024635 84.62190113 0) (137.6171162 65.01476241 0) (123.8863774 -27.10805201 0) (124.1552063 -26.97262204 -1.10859543e-18) (113.6600434 -31.49748826 8.294494839e-19) (114.2986077 -31.42672612 0) (104.2070451 -30.26315239 -4.657358611e-17) (82.14147722 -8.423155207 1.248672672e-22) (82.38628491 -8.279090076 -1.440341216e-22) (59.62582146 -2.426015909 0) (50.29999606 -8.912167755 -1.556170918e-17) (44.55288011 7.466256961 0) (53.62601279 -10.77233757 0) (61.07560264 -4.564755205 0) (116.1828185 -30.08807412 0) (116.7075294 -30.57928572 5.224594706e-19) (119.305085 -29.83020532 0) (113.1673698 -30.1486459 0) (112.6266737 -29.66734268 -9.82488048e-18) (96.94953159 -31.03880519 1.990774801e-19) (99.03987174 -31.50062172 1.219085206e-19) (104.8542556 -31.47424625 -1.037627144e-18) (94.2231397 -30.57455387 6.477056431e-20) (91.97815418 -30.07829551 0) (96.66366029 -31.09877365 -9.273978567e-20) (94.74412815 -30.73873616 0) (83.04476482 -28.35828381 -3.045286803e-19) (97.84754431 -30.92397722 0) (97.16163869 -31.17351624 1.68397082e-19) (97.50167812 -30.11827998 -9.896878122e-21) (97.85971506 -30.77077206 -5.180400636e-19) (84.31009116 -28.46700421 -1.756075999e-18) (154.1088056 42.1808538 0) (148.7935375 39.67846717 0) (144.0236797 44.34507574 0) (152.7787425 33.22603906 4.922442363e-18) (150.0366131 38.06835609 0) (142.1691294 45.84936394 2.207911498e-18) (135.7390692 49.71836426 0) (139.992372 59.05044991 -2.197483881e-18) (152.6667048 2.398508621 -3.110924701e-18) (151.5172947 -0.302715425 0) (150.2774459 0.4765359685 -1.466599696e-17) (151.4107666 6.566548929 3.005730267e-19) (153.7524789 6.09753158 1.53800979e-18) (152.9450049 3.300502191 1.542014403e-18) (140.4322115 -18.89410335 0) (138.9164106 -20.17435041 3.888122481e-18) (138.5852675 -18.66526676 -1.787741123e-18) (137.7481405 -20.74415906 -1.103478977e-18) (139.5557834 -19.4238068 0) (136.5460765 -21.8576415 -1.281143824e-18) (137.2359282 -21.11718968 -2.082781908e-18) (140.0752575 -18.86261479 2.601632066e-18) (141.7480744 -15.70968129 2.332804328e-19) (141.654761 -17.2373408 7.983891107e-18) (140.9099199 -18.40956082 -1.157427808e-18) (123.41191 -28.67724305 -3.198869474e-19) (123.5353933 -28.4790567 -1.341347632e-18) (125.0606749 -28.320132 1.302967328e-18) (125.6806172 -27.07269571 0) (126.8234491 -26.75805896 -3.254922894e-19) (126.6897263 -26.96748106 1.225630402e-18) (128.7742128 -26.01433706 0) (129.9516169 -25.52628907 -7.205015743e-19) (127.2025183 -26.58419111 0) (128.3806246 -26.17124091 6.878514496e-19) (126.5227035 -27.16229905 -4.045460686e-19) (107.3256387 -31.72286576 -7.554656029e-19) (112.4353256 -31.43619053 9.686110827e-21) (113.3754035 -31.47978823 -5.932440511e-19) (92.6318444 -10.36056665 2.204655347e-19) (92.81236142 -10.51118182 2.134995357e-19) (91.56933883 -10.65974814 1.617753439e-18) (91.49106928 -10.28090623 0) (92.40117818 -10.1590563 -2.209518773e-19) (92.57375803 -10.30008767 4.427725593e-19) (79.20360858 -10.2184317 0) (79.6891161 -9.941634235 0) (79.85206005 -9.517138263 0) (79.79774063 -7.856016961 4.327498567e-19) (81.15214501 -7.764302491 -4.050501643e-19) (77.52601087 -7.674828474 0) (79.28130918 -7.854247456 0) (79.35212674 -9.701306577 0) (82.56317285 -8.130390033 -2.703659814e-21) (82.72635007 -7.402631842 0) (83.35925872 -7.171411317 0) (81.53945293 -7.708428835 0) (82.47587433 -7.481870703 0) (82.31287638 -8.25100528 2.226209865e-19) (73.67939622 -9.909409703 0) (74.52468833 -6.908054115 0) (76.8232707 -7.549909908 -5.184569226e-19) (72.26065403 -11.11416788 0) (73.58176617 -11.17056663 0) (154.4472129 19.63044712 0) (154.4647311 15.91816531 0) (151.3291391 15.65134109 0) (155.3056672 16.02278316 -3.878669054e-18) (155.5330473 19.75099596 -7.829015217e-19) (155.1381723 14.66213326 -1.101792728e-16) (154.5227255 26.83865318 0) (153.4696172 31.59827912 -2.47630841e-18) (155.5795941 21.00265089 7.235781294e-19) (154.7418424 25.37989357 2.817579537e-18) (149.2464133 23.63501698 1.216918821e-18) (153.5574709 25.01560181 -2.632972298e-18) (154.4030715 20.92824312 0) (84.83491556 -6.672453454 0) (85.57532519 -6.540562625 3.498730452e-19) (85.69905471 -6.574297582 -1.267788059e-18) (85.29976306 -6.521764496 -7.093860622e-19) (85.51161427 -6.534704331 0) (84.77045651 -6.694856592 0) (85.9100755 -6.72899631 -6.415068639e-19) (86.05668116 -6.880194115 6.558690114e-19) (85.731142 -6.60098561 6.271336919e-19) (85.8648105 -6.691347329 6.352401284e-19) (83.68997487 -7.194109339 8.753454518e-19) (84.15458782 -6.843535491 -3.358014509e-19) (84.51821995 -6.695644557 0) (83.5378143 -7.100067383 0) (84.01560518 -6.902933118 -6.69622968e-19) (83.57569755 -7.29276395 4.387523018e-19) (84.34078815 -6.766079901 4.366488174e-19) (84.98819926 -6.558446673 0) (85.22783623 -6.523579018 -5.814781603e-22) (84.62345824 -6.655010756 1.021302717e-21) (84.90097625 -6.575045538 0) (84.25394518 -6.784581774 0) (147.289252 -10.06190037 -1.41813115e-18) (146.0500403 -12.10284551 6.091234889e-18) (145.4302105 -10.82998699 -1.118321745e-18) (147.9303755 -6.347535131 1.094038049e-18) (148.4763142 -7.506196972 0) (147.6358256 -9.359968846 2.208911935e-18) (87.42669753 -7.480846202 3.118741059e-19) (87.56577707 -7.528616871 -9.516741826e-19) (87.22905964 -7.493761271 5.974580818e-19) (87.38816393 -7.47635644 -3.085660628e-19) (87.77375874 -7.556607272 3.26703149e-19) (87.85913304 -7.627616967 6.682590004e-19) (87.61988708 -7.538772539 0) (87.747042 -7.546769629 -3.236121492e-19) (86.43990763 -7.154135303 0) (86.69497873 -7.268223747 1.653688502e-21) (86.11751796 -6.942363741 -9.862842604e-19) (86.35499793 -7.109649452 6.684330074e-19) (87.09719026 -7.412364205 0) (87.19522535 -7.476854208 -1.798945545e-18) (86.77941655 -7.300528287 0) (87.02528533 -7.386264467 1.749221382e-19) (131.8666465 -24.61093827 0) (133.0481737 -24.03951978 -2.527783341e-18) (130.3528292 -25.35239329 1.48378363e-18) (131.5137468 -24.77619108 0) (127.1027634 -25.38492188 -6.846999569e-18) (134.767861 -22.94067038 0) (136.1466657 -22.16701641 4.36259287e-18) (133.4267787 -23.80329658 2.08113444e-18) (134.3635173 -23.18742405 1.650585385e-18) (88.59453393 -8.279755226 -3.277374168e-19) (88.48317415 -8.156100698 -1.906780195e-18) (89.55160694 -8.102344525 0) (87.52985236 -8.132861806 1.796126831e-18) (87.67275743 -8.240953533 1.826602842e-19) (87.51450154 -7.879182944 -1.41781136e-18) (87.49409132 -8.056920009 -3.587725301e-19) (87.66093661 -8.267430293 1.532721795e-18) (89.75841533 -8.389909086 1.939959266e-19) (87.9405382 -8.398073126 0) (88.58411852 -8.316918295 -1.657162923e-19) (88.31538795 -7.790337397 0) (88.43551723 -7.741654907 -9.354898551e-19) (89.03726044 -7.618140306 -1.373531176e-19) (88.00456935 -7.757144846 -1.70863607e-19) (87.45411885 -7.77660396 0) (87.89731951 -7.655588269 0) (87.98083001 -7.729501967 0) (87.51735399 -7.805969634 6.978998839e-19) (87.52524889 -7.850444409 0) (87.4521499 -7.778307637 6.7501603e-19) (87.504133 -7.796216961 -1.392729503e-18) (89.29259057 -7.784392265 0) (88.38993198 -7.831830974 0) (88.32694722 -7.804878119 -5.684850791e-19) (111.9652963 -29.43565632 4.804227453e-18) (121.7192278 -29.43987816 -5.748603573e-19) (115.1720381 -29.25827303 9.408483917e-19) (115.407723 -29.79706911 0) (115.3496079 -29.14245315 -2.239241494e-19) (122.0233867 -29.34647137 1.151263681e-18) (91.10305581 -29.88989647 -9.064114519e-18) (106.4062563 -32.09089843 2.423223378e-21) (94.81609854 -30.40135998 0) (95.49004129 -30.68072971 -3.64968026e-18) (90.47918068 -9.576838123 1.269116201e-21) (90.79264205 -9.909056108 5.248436212e-19) (88.17350747 -8.823588244 1.358987396e-18) (88.11381662 -8.762695785 0) (90.08829917 -8.784546109 2.660302649e-19) (90.2832495 -9.100947729 4.155158346e-19) (88.11369718 -9.062421783 -1.812110884e-19) (88.17195579 -8.852325969 0) (101.9115871 -30.76600438 -9.310068988e-18) (91.86902772 -11.24542675 1.950727938e-21) (93.50707818 -10.98135505 0) (93.7105886 -11.02831148 -2.742846957e-18) (66.26495936 -20.75299139 0) (64.54766825 -21.16354854 6.268108672e-21) (90.42301145 -11.24267679 0) (67.66796629 -23.05527637 0) (72.28363305 -23.21045988 0) (88.71433529 -25.99184208 -1.112856934e-19) (90.77193493 -10.2719202 -2.579946543e-19) (79.4491581 -27.57011681 -1.202953501e-17) (85.27880591 -27.68173142 -1.056690937e-20) (68.1547283 -23.39134844 1.864672672e-19) (84.26530134 -27.69257578 2.132455183e-20) (90.32969493 -10.6875642 -1.637869854e-18) (120.5241384 22.96936668 0) (115.790769 12.21088489 -6.243353522e-19) (109.9403068 12.70811121 0) (107.6710891 -30.38539059 3.043496124e-19) (107.9287117 -30.30242308 6.417417091e-18) (108.825446 -20.31220458 2.726284681e-20) (108.8541394 -14.98373765 -7.585661431e-19) (113.0692982 -14.55648022 -5.226537878e-19) (107.2596972 -30.06637704 -1.734694052e-17) (104.5327574 -31.37342821 -4.356582408e-19) (99.36372919 -31.59213085 0) (99.94414995 -31.43625366 2.687200829e-19) (117.6324572 -26.38595479 1.04981219e-18) (113.1313459 -25.94976164 4.495434774e-19) (112.9374041 -22.06680093 -1.395940957e-18) (54.76500562 54.12688113 -3.641182652e-18) (52.90968907 30.43568889 5.48979695e-18) (40.09322089 17.05353606 7.472908724e-18) (104.5281314 92.11929508 3.38965757e-18) (89.18476833 70.71708499 -3.503063869e-19) (61.66769206 63.13301776 -1.108754581e-19) (113.1697623 24.66396226 0) (108.4583477 32.6496923 -1.471752838e-18) (122.7324258 40.18478691 0) (143.5676863 33.47445337 0) (148.0149699 36.79403141 0) (150.9621533 32.30839355 0) (87.60268736 -6.881563842 0) (88.04607626 -6.433370492 0) (88.45064069 -6.637550553 3.321036888e-19) (87.48331158 -6.122939489 3.497101783e-19) (87.90648886 -6.359081014 -3.406002122e-19) (87.45168405 -6.810490495 0) (111.0349421 -31.24773319 -1.022121279e-18) (112.0881634 -31.45210822 3.708442848e-19) (107.7826331 -31.80969109 1.484286725e-18) (117.4542992 -29.45931186 1.44409332e-19) (115.2361864 -29.44996988 5.052570542e-19) (115.55253 -27.17804978 4.88839846e-19) (92.16799548 -9.964163577 -6.625159848e-19) (92.34260994 -10.10415701 2.209446331e-19) (91.43776578 -10.2483707 0) (151.743503 30.84100751 0) (153.2078714 26.41024685 0) (148.7642879 24.79520329 0) (88.5791602 -6.700636952 0) (88.9427917 -6.87687643 6.527214218e-19) (88.53993558 -7.23710051 -2.638660895e-19) (88.19446754 -7.254234019 2.759866726e-19) (87.73407057 -7.439515854 -1.398878146e-21) (87.55225136 -7.417465325 0) (87.49662886 -7.398208443 1.166141392e-18) (87.31564966 -7.336092054 2.437974064e-19) (87.71823445 -7.108032631 0) (91.23391969 -9.897246833 1.194723557e-18) (91.95827575 -9.771334219 2.235111576e-19) (92.11350052 -9.908017049 2.204424922e-19) (102.0918563 -31.24927846 7.834177665e-19) (102.5386383 -31.46940107 0) (106.2937239 -32.05360342 -5.153182126e-19) (89.17681501 -9.956999383 2.027805553e-18) (89.20662187 -9.919367557 8.285692848e-19) (90.51899225 -10.0024848 5.944824143e-20) (105.1328633 -31.70135875 1.342249492e-20) (99.76999808 -30.70520435 2.945266157e-18) (100.9514808 -30.91411659 -5.021324076e-18) (107.9638554 -31.97484416 -3.100557804e-19) (109.5784279 -30.94781108 -4.542974324e-19) (110.663743 -31.2329947 6.623424478e-19) (90.19771381 -10.92586713 1.110981368e-18) (90.57364749 -10.16295748 -7.575044948e-19) (89.22138363 -10.11115447 8.925739557e-19) (89.18359566 -10.01792581 0) (90.08977314 -10.71686306 8.019973839e-19) (148.5922192 56.13028763 1.279610417e-18) (123.0677965 -27.43597119 6.348485547e-18) (109.6133326 -31.55492868 4.454475277e-19) (109.3555113 -31.35164596 -8.987925907e-19) (104.8616389 -30.57024526 6.305508658e-18) (116.3432663 -31.04012557 -9.723503594e-19) (115.4816953 -31.15167772 8.860725846e-19) (116.3739779 -30.02765548 -4.366016548e-19) (81.67390951 -8.779837957 -1.961651084e-18) (137.7661256 24.37870122 0) (133.0212033 28.59861365 0) (137.8672586 35.3103006 0) (118.9500984 -29.92251179 0) (116.8570907 -30.72888963 -5.358192727e-19) (116.5261042 -30.98568163 4.930637165e-19) (86.16724202 -29.05436927 4.955985045e-19) (85.29892448 -28.91434578 0) (82.55304434 -28.27369365 5.130948437e-18) (87.25626158 -29.17665445 -2.127476345e-18) (85.89877683 -29.00597064 -3.8006651e-19) (112.9420253 40.56195545 0) (104.7089504 49.3120985 -6.627867888e-19) (120.5137145 61.24097982 -1.478317371e-21) (152.1975464 47.46108877 0) (149.9885563 46.5825733 1.279905943e-18) (148.1795745 48.78065253 0) (155.3061971 33.85544079 8.615560658e-17) (154.9802489 36.016392 0) (123.3238101 -28.89654511 -1.605804721e-19) (121.1804567 -28.89739169 1.727021e-19) (121.1667858 -29.08504735 2.391889484e-18) (120.4671243 -27.59083547 2.389162521e-17) (121.0911977 -27.87730141 0) (123.8174536 -28.03064603 0) (124.1417024 -27.48416732 5.908416866e-19) (125.2862504 -27.22983298 6.080497209e-19) (124.7371059 -28.42439197 -6.199882454e-19) (125.9368797 -26.58728665 -1.168785919e-17) (128.6202479 -26.47867085 1.550665806e-18) (128.8226671 -26.22923947 -3.028425995e-18) (106.683313 -31.28144638 3.311154647e-19) (110.3316012 -31.78838826 -6.114310097e-19) (110.0085366 -31.64023684 8.262514033e-19) (78.11500227 -10.78444048 -1.787734779e-18) (77.11825069 -11.21891827 0) (80.53974853 -9.486088021 0) (80.71483985 -9.150653827 1.319971009e-18) (80.78094989 -8.720724 -2.082680291e-18) (81.17005326 -8.574404289 2.073163197e-18) (82.89782891 -7.880714719 -7.577890254e-19) (83.04124601 -7.677482915 0) (83.20397042 -7.572141065 0) (81.5293162 -8.417054804 -4.1840862e-19) (81.85297217 -8.260625764 8.317554995e-19) (81.79491214 -8.575967996 -1.315572517e-18) (71.10441237 -4.8188126 0) (73.7011854 -6.436282204 0) (72.48959628 -9.724426022 0) (69.41170344 -10.46174307 0) (69.06176068 -12.59332607 0) (67.13014458 -11.38068344 0) (76.48529118 -11.44774087 0) (75.66062769 -11.75039405 0) (75.7869539 -11.00193978 0) (84.72007896 -6.623859166 0) (85.08213375 -6.629543046 -4.765102889e-18) (85.02172807 -6.646166091 5.578179922e-18) (84.93013776 -6.644961268 7.846406872e-19) (84.9920778 -6.649815046 0) (84.62445953 -6.680378661 0) (85.12263616 -6.86118395 0) (85.14377816 -6.937358989 1.229856497e-18) (84.99254367 -6.666058826 -7.555533757e-19) (85.00910984 -6.683182845 8.502459322e-22) (83.89976572 -7.047256867 -4.373709595e-19) (84.16058849 -6.981629286 3.743150233e-19) (84.2662824 -6.912499001 0) (83.35962918 -7.479153164 0) (83.51638128 -7.391878917 7.290696239e-19) (83.27841336 -7.521655688 -4.395290336e-19) (84.49520202 -6.683081366 -8.735712729e-19) (84.81687497 -6.666077983 -3.865500529e-19) (84.87484859 -6.648008116 -3.890215764e-19) (84.35675119 -6.846185973 3.755149757e-19) (84.43097397 -6.795921193 3.783763033e-19) (84.13790296 -6.82250646 0) (87.93697586 -7.49221409 -3.011198894e-19) (87.78460542 -7.448801086 5.881522202e-19) (88.25445792 -7.278053514 0) (88.63325051 -7.406214879 2.779151263e-19) (88.12403025 -7.530530841 0) (87.98936925 -7.503971174 -3.020696584e-19) (86.91481144 -7.18985788 1.304261929e-18) (86.66663284 -7.073998348 0) (87.10235759 -6.834862695 0) (85.72781188 -7.362130273 -4.0932655e-19) (85.81214142 -7.393479826 2.039775954e-18) (85.18629189 -7.037794877 -1.234361112e-18) (85.26553341 -7.129371447 -1.649330273e-18) (86.03720524 -7.538993466 -2.908997848e-18) (85.89495367 -7.421483971 -2.098903673e-21) (85.97568499 -7.446243015 -4.085427823e-19) (87.64364855 -7.074285132 0) (87.2404854 -7.31088045 -6.569819906e-19) (86.99752832 -7.223259215 0) (129.7817024 -24.70966272 1.475587412e-18) (130.2794861 -24.50391074 5.314155779e-19) (129.1146124 -26.01252501 -5.680634167e-18) (129.4494893 -25.80126802 4.216686086e-19) (127.1958437 -25.85293917 -7.642417381e-18) (130.5840793 -24.27040137 5.020508966e-18) (130.2518408 -23.99068534 -7.254277573e-18) (134.596862 -21.38723051 -7.874070917e-19) (134.8018869 -22.7955392 0) (133.5742023 -23.37440827 -1.204541179e-18) (91.73774866 -9.592059834 -4.57085665e-19) (91.90586665 -9.720546226 -1.128860034e-19) (91.22651208 -9.869285512 -7.449990725e-19) (90.88611862 -9.544911395 1.008576033e-18) (91.51082321 -9.397272666 -2.288596329e-19) (91.68027967 -9.539377962 -1.080946568e-21) (89.97357661 -9.756830998 -1.130545451e-18) (89.90066631 -9.712074374 -1.399214349e-18) (90.58561676 -9.696468328 1.872376211e-18) (90.7502982 -9.822282164 2.735478682e-19) (90.08242774 -9.823655002 0) (90.03442477 -9.791353865 0) (102.4464512 -30.5855811 -2.451562453e-18) (91.70650625 -11.39385036 1.509382103e-18) (92.8358103 -11.19432065 0) (92.88573969 -11.36111116 2.82492595e-18) (38.16280493 -14.37649961 0) (90.02348727 -11.64894053 -2.3205148e-18) (88.84519024 -25.65452524 -1.265603674e-19) (73.52787811 -23.00085872 0) (75.8431707 -22.49738292 0) (89.52929213 -10.313721 0) (89.52856708 -10.2447971 0) (90.81832076 -10.3326306 0) (79.58393624 -27.39483212 -9.038716062e-19) (75.14164983 -26.35864222 -1.983600361e-18) (75.88121621 -26.3661256 4.068710318e-19) (82.21165488 -27.60119 1.236677233e-19) (90.86216097 -10.54498674 -1.382780761e-19) (89.57753611 -10.46317843 1.236733813e-18) (89.55964107 -10.39241357 0) (89.64691585 -28.67480812 0) (96.66514013 -28.91568031 -1.145448716e-20) (97.29719483 -29.90022878 0) (106.8748181 -30.59854061 -5.561180383e-18) (107.3281437 -30.48148976 1.615695835e-18) (111.7310414 -30.79849368 1.105918126e-18) (111.8604889 -31.0065262 0) (114.7456477 -31.29559392 0) (38.60433547 0.867096904 -1.941740131e-17) (28.44188834 11.13114858 0) (41.40576646 -5.302958906 0) (114.4146986 -30.90128475 2.504478666e-19) (109.8824751 -30.25686874 -1.827488617e-18) (110.8932446 -30.48867486 7.271591911e-18) (110.3421075 -29.98897144 0) (110.331785 -30.11069982 2.472861728e-18) (114.2577606 -30.68648086 0) (108.3977787 60.42565844 -1.908632627e-18) (95.89677359 68.16034042 -2.814333843e-18) (111.6922192 83.61265482 1.655779865e-18) (151.1090342 -1.781540499 -5.096497821e-18) (151.291413 -0.9775717051 9.303671205e-18) (150.5173832 -3.329399753 -2.70889131e-18) (150.8304067 -2.555662166 0) (154.4104529 9.224021939 -3.103115096e-18) (153.5842013 9.301381037 2.593401202e-18) (153.7297862 10.34768699 0) (153.2541233 7.258196385 -5.417228238e-18) (153.428592 8.272151723 3.958272705e-18) (154.2194319 8.167731428 0) (143.1921192 -15.78352592 -3.712955258e-18) (143.7359352 -15.1664248 4.299537947e-18) (144.1848781 -14.60953417 -4.35233325e-18) (142.8091709 -16.2019341 -3.446115006e-18) (143.2767318 -15.70768402 -2.100286451e-18) (142.6667698 -16.34843536 2.393023131e-18) (154.7728259 13.6189997 5.03710474e-18) (153.8116454 13.70996251 -5.890881795e-18) (153.6761854 14.81210709 9.891356564e-18) (153.8445522 11.42903152 0) (153.8780591 12.56103643 1.212435887e-18) (154.8809382 12.52215354 0) (145.1418248 -13.37218837 0) (145.4649511 -12.82628182 1.170799946e-18) (145.8734603 -12.20987175 -8.110626565e-20) (144.6274625 -14.03737769 4.46583552e-18) (145.0526011 -13.4353401 3.408026381e-18) (144.6774844 -14.00956903 -3.994818956e-18) (149.9255667 -4.989654097 2.673749533e-18) (150.2325105 -4.13664485 -1.343306312e-18) (149.1383902 -6.465009066 1.16015596e-18) (149.5726996 -5.764064725 0) (88.44011543 -8.03327226 0) (88.96038526 -8.047532936 0) (88.98069418 -8.098782549 0) (87.84527688 -8.530309891 0) (88.93253016 -8.580409739 -5.545691729e-19) (88.96272532 -8.621052722 -1.407459947e-18) (88.90397609 -8.488848597 5.370376033e-19) (88.90594271 -8.539693584 -5.476391071e-19) (87.81695171 -8.48732725 0) (97.60415004 -30.49754852 -2.622186781e-20) (97.62745047 -30.42790202 -6.281921187e-18) (98.42312245 -30.85499101 0) (97.1899156 -30.58929815 -6.63251706e-19) (88.4990699 -9.376773507 -1.592006246e-18) (88.50229926 -9.43824416 0) (88.47666305 -9.308230924 0) (88.49127609 -9.336057561 -3.143391333e-19) (88.49304409 -9.804952498 -3.43580047e-18) (90.58209688 -9.947485944 0) (89.34383432 -9.897560967 3.006479233e-18) (89.55582128 -9.877824438 -1.763879193e-18) (88.01838701 -8.720448594 3.349402529e-19) (89.08459948 -8.747710724 -2.886324349e-19) (89.12883519 -8.776351035 0) (88.99600216 -8.666546195 2.844735954e-19) (89.03745463 -8.711316326 2.854377328e-19) (87.95672685 -8.686305247 0) (88.59500919 -9.266995238 -3.229174833e-18) (88.48834789 -9.286087103 -1.179417628e-18) (89.23949691 -9.205073596 -1.100778269e-18) (88.76404214 -9.236058942 3.789593721e-18) (87.75009525 -9.175041993 1.240065312e-18) (99.05582948 -30.39646131 -2.214902629e-17) (99.96812734 -30.63789172 -6.18548415e-18) (104.428606 -31.39987907 3.95559844e-21) (96.94749167 -30.21544371 0) (93.59971281 -11.04444615 0) (93.29302138 -11.31798266 4.279129864e-19) (81.27376777 -10.27152289 -1.029228289e-18) (91.69709521 -11.06966296 1.894612208e-18) (92.52621784 -11.04484284 -8.961166982e-19) (92.62194756 -11.11409395 0) (90.27672093 -11.02573147 -8.247661632e-19) (63.57014125 -21.58499603 6.6464503e-19) (62.89527956 -21.68884965 -6.437128102e-19) (46.02009456 -3.778413239 -8.685934734e-20) (61.85572341 -16.84335337 0) (66.30977995 -20.22870269 2.316226329e-18) (89.43176792 -10.21096045 2.768781202e-22) (89.31328451 -10.19068499 2.99524331e-19) (90.63534474 -10.22265499 2.52644273e-19) (90.10126271 -10.71046141 7.695061273e-19) (144.1354785 64.18989622 1.382080162e-18) (147.8445823 59.71693673 0) (145.7208989 59.39684017 0) (131.1904768 78.39824395 1.206127256e-16) (129.7720878 76.2900222 -3.118726495e-18) (121.8426428 78.68947006 7.349261505e-18) (141.7563573 68.03990173 3.519301281e-17) (136.3425238 72.21674389 2.455866941e-17) (123.4067677 -27.26464776 0) (123.7406402 -26.74736461 1.262724014e-19) (104.902461 -30.48493844 5.28993632e-18) (109.0270738 -31.14045747 -2.395027179e-19) (108.0032514 -30.82460592 5.287312858e-18) (81.91992532 -8.573432809 0) (82.52978161 -8.073138247 0) (47.32734479 -5.505518083 1.288394895e-17) (51.61719906 -2.002852013 0) (53.79239115 -5.279112873 0) (61.98103259 -12.56911866 0) (64.29192157 -12.99386559 0) (56.4803161 -8.053395771 0) (59.31526294 -11.36347481 0) (57.09254573 -12.35774078 0) (112.1709777 -29.92505873 -3.37398466e-20) (109.6572636 -29.74621404 0) (112.6058381 -29.78477788 5.263394135e-18) (92.94831927 -30.26831462 -3.486539739e-18) (88.58778912 -29.45330246 0) (89.17712124 -29.59392967 0) (91.71497233 -30.09379541 2.261571215e-18) (95.93373637 -30.97791565 9.420506536e-20) (89.96692406 -29.77589147 -2.760557722e-18) (91.54541757 -30.12500182 0) (89.07290273 -29.55985576 0) (88.57671262 -29.54885811 3.214922887e-18) (95.21986883 -30.91800659 4.158659403e-19) (89.78730634 -29.77466542 -3.778461259e-20) (88.82792346 -29.51000206 3.86058527e-20) (83.35903776 -28.41511559 3.96272846e-19) (85.62154718 -28.69053588 5.62401456e-19) (91.25908159 -29.85482556 -4.393577888e-19) (90.58525382 -29.79989178 1.537218449e-19) (152.891491 41.94481932 4.093318843e-18) (151.5564568 44.40578227 -3.885171923e-18) (153.360591 45.06593342 0) (151.9701396 34.77984718 0) (153.6497138 35.61477505 0) (154.3458697 33.65984272 -5.578081485e-17) (154.5442075 37.77885629 0) (153.89536 39.78253556 1.259215511e-18) (152.3571752 1.543461318 8.248401541e-19) (151.9481081 1.778646542 -5.613288759e-18) (152.1661239 2.64096661 0) (151.4477995 -0.1154997233 0) (151.8183408 0.9509812641 0) (152.0835799 0.7613970316 1.856084867e-18) (153.4732422 5.153439451 1.568936545e-18) (152.8281193 5.333503619 0) (153.0509688 6.274815062 2.708729755e-18) (152.383492 3.519786163 -1.396576481e-18) (152.6051139 4.418364609 6.938800868e-19) (153.2101966 4.218990665 0) (139.9379274 -19.36240046 0) (140.009396 -18.91955203 2.995018556e-18) (140.4992301 -18.47510691 1.041524113e-18) (138.3451298 -20.35474288 1.548448963e-20) (138.9581683 -19.94210385 -1.200544343e-18) (136.7009686 -21.56502418 -2.493813933e-17) (134.994905 -21.86668752 6.421164616e-17) (135.1220958 -22.21593505 1.716806116e-18) (136.6395402 -21.43895979 0) (140.4304387 -18.3891151 0) (140.3934889 -17.95759244 7.121880623e-17) (141.6246149 -17.49312842 -2.766728692e-17) (141.9229079 -17.10098403 0) (142.3628049 -16.66523993 -3.627313613e-20) (140.9880582 -18.02141003 -1.575392813e-18) (141.4703016 -17.55997721 -5.129288507e-19) (141.3407474 -17.93990902 0) (119.9284688 -28.51657815 5.536817564e-18) (120.6435519 -28.66271896 8.82312677e-18) (123.3881981 -28.75785447 0) (117.5358747 -28.4401728 -2.230433499e-17) (117.9012388 -28.79640949 -9.926890465e-18) (118.1359487 -28.66869823 2.392222159e-19) (123.7658267 -28.27914022 1.441816599e-18) (120.8671569 -28.10752833 0) (120.4796645 -28.33553383 6.106822948e-18) (128.2308269 -26.81194897 -1.862810143e-19) (128.4468189 -26.628747 0) (126.4331225 -26.73102802 2.011883238e-17) (78.67718133 -10.5125989 0) (80.12837437 -9.694636881 0) (82.64632353 -7.89740277 7.977816553e-19) (82.85774054 -7.790443423 -2.988198285e-18) (82.7324083 -8.018452194 2.519420195e-18) (82.0676473 -8.394900567 4.455417238e-19) (82.13950061 -8.118348454 0) (82.39914804 -7.997183158 0) (72.13137391 -12.74520929 0) (70.73125185 -12.85929643 0) (70.85315692 -10.89470405 0) (66.46268066 -13.16531568 0) (68.3073287 -13.33071189 0) (74.76106062 -11.11895935 0) (74.66243285 -12.11047065 0) (73.46385747 -12.47394277 0) (154.4488119 18.37766302 0) (153.3914263 18.2498812 1.29686087e-18) (153.3043925 19.46412863 -1.260963495e-18) (153.5464989 15.88437715 1.285141936e-18) (153.4626774 17.05783642 -1.313487919e-18) (154.4606644 17.12670931 0) (155.4197389 17.18984146 1.678145602e-18) (155.4628054 18.50084338 1.616852369e-18) (154.3184761 28.34854108 0) (155.595317 28.62729688 -1.236799485e-17) (155.6425919 27.09780265 -1.058961074e-17) (155.0214678 31.93987947 2.274843561e-17) (155.4550795 30.25636431 5.551572841e-18) (153.9946723 29.9499902 5.212873421e-18) (155.4433737 22.28049773 1.880673032e-19) (155.7637281 25.71329591 -1.186341142e-17) (155.9466151 23.806288 1.112085216e-17) (155.0910481 23.68218632 0) (85.19107535 -6.653886516 -2.027060117e-19) (85.23939901 -6.643474005 -1.997287328e-19) (84.8723568 -6.636756304 1.069166433e-18) (84.69149685 -6.694354605 0) (85.06094106 -6.656698755 0) (85.13302849 -6.659315697 2.011479658e-19) (85.08608289 -6.761799395 8.144237706e-19) (85.10489554 -6.803928023 4.068646091e-19) (85.03862952 -6.70310831 0) (85.06427609 -6.729156466 1.217124115e-18) (83.93711669 -7.123094109 -7.401478892e-19) (84.05033389 -7.048611659 3.721294467e-19) (83.79148408 -7.118241155 -4.392551451e-19) (83.43516825 -7.407521805 -8.742503739e-19) (83.67069177 -7.30154791 0) (83.81244649 -7.209244619 7.397658055e-19) (84.66059744 -6.722330433 3.830339662e-19) (84.74492634 -6.695255095 -3.859210505e-19) (84.43004466 -6.725318899 -4.379104815e-19) (84.18753195 -6.79597135 8.757265694e-19) (84.50085039 -6.763489558 -3.799473928e-19) (84.57656862 -6.742402206 3.832382941e-19) (146.9020732 -10.76779822 4.253079846e-18) (147.0240179 -10.26342943 3.780471548e-18) (147.3735532 -9.587034171 0) (146.2671054 -11.56802306 -3.702431567e-18) (146.6496856 -10.92062463 -7.515022322e-18) (146.4813071 -11.4241256 6.878106357e-18) (148.3156848 -8.052147037 -3.544695004e-18) (148.4697606 -7.596763827 9.766160648e-18) (148.9036875 -6.927253033 4.950853799e-19) (147.7084045 -8.918218717 2.653187813e-18) (148.0641818 -8.25925731 -2.655916005e-18) (147.9859957 -8.69320211 -7.543491422e-19) (87.46703074 -7.494473256 6.265757858e-19) (86.75940055 -7.500210255 -3.697723115e-19) (86.73197335 -7.485086394 3.6975785e-19) (86.85661383 -7.539760811 -7.429250771e-19) (86.80131789 -7.522598966 3.715326689e-19) (87.51354313 -7.512364365 9.449675109e-19) (87.28519417 -7.493616927 0) (86.62755766 -7.528721543 0) (86.58039089 -7.552072346 0) (86.71057593 -7.482860762 -3.675411613e-19) (86.67870027 -7.49952556 0) (87.34245716 -7.483146874 0) (87.79877309 -7.574648433 0) (87.06451774 -7.551303724 0) (87.05336305 -7.533155431 0) (87.10769669 -7.6129927 -7.506758509e-19) (87.0808599 -7.578880177 7.491802646e-19) (87.82640233 -7.599058952 -1.325390499e-18) (87.6703038 -7.5431125 6.401503452e-19) (86.9723219 -7.542462422 -7.409725282e-19) (86.91680963 -7.545086614 -1.48270647e-18) (87.04035527 -7.526582575 0) (87.01475505 -7.532617337 0) (87.71319628 -7.544034657 0) (85.55479089 -7.287948335 -1.638715053e-18) (85.64169388 -7.327675294 1.224011463e-18) (86.52479386 -7.195394131 0) (86.19554872 -7.269703548 -3.578515208e-19) (86.10837648 -7.229902308 0) (86.36962141 -7.338499899 -7.174714495e-19) (86.28292978 -7.305603379 -3.584950888e-19) (86.60999316 -7.233348492 0) (85.36789311 -7.192371948 0) (85.46579937 -7.242137039 0) (86.18500198 -7.513242677 -1.497553608e-18) (86.23809495 -7.521562918 2.963172846e-18) (87.1663056 -7.446780607 0) (86.83845275 -7.509513419 -1.472608299e-18) (86.76348601 -7.47895886 0) (86.58514744 -7.559411304 0) (86.62689325 -7.542216195 0) (87.17641187 -7.457650168 -1.254414093e-18) (86.86292832 -7.330421443 0) (86.5395297 -7.396896513 3.638205943e-19) (86.45528993 -7.368947865 -3.600359403e-19) (86.70128602 -7.450479698 -3.704893203e-19) (86.62126726 -7.424011707 -3.659471746e-19) (86.94511799 -7.358710494 1.04862626e-18) (86.05284179 -7.471001872 0) (86.12898584 -7.492523141 -2.05440584e-19) (129.0050644 -25.10881228 4.74195417e-18) (129.419191 -24.89934903 1.806111062e-18) (127.4755257 -25.664942 4.769647954e-18) (129.6658249 -25.55845609 4.340292214e-19) (129.4815784 -25.2738259 2.651281257e-18) (135.1995979 -22.68411675 9.355131319e-19) (133.5588289 -23.0532129 -7.566184991e-18) (133.0369334 -23.31812071 -9.284780367e-18) (134.693591 -22.53537045 -4.445986721e-18) (134.1029651 -22.80799209 8.423995612e-18) (135.6611348 -22.43677691 -4.863807525e-18) (133.7299119 -23.58760555 8.011412049e-19) (132.3603194 -23.86952937 1.128882832e-17) (132.4486024 -24.10394262 0) (132.6014428 -23.56448956 -3.836733286e-18) (132.0672443 -23.77462963 -1.145885402e-17) (134.0239402 -23.42611068 -3.216502302e-18) (88.56474024 -8.245546056 3.223671556e-19) (89.08036748 -8.239911122 0) (89.11069725 -8.278968553 0) (89.00928933 -8.151214267 3.058227132e-19) (89.04467591 -8.198670554 9.214898942e-19) (88.52512802 -8.206642932 -6.384606806e-19) (87.58806708 -8.183336582 0) (87.63961425 -8.216075007 -1.800751941e-19) (87.50135867 -7.920777406 0) (87.48913085 -7.977631921 0) (87.63920399 -8.280037595 8.677643454e-19) (87.24823994 -8.309224544 0) (88.12701126 -8.360124671 0) (89.035407 -8.38185097 0) (88.95282547 -8.42719069 0) (89.12241579 -8.31691146 6.187234989e-19) (89.12977152 -8.367338459 -2.980564683e-19) (88.58316413 -8.356645924 -1.639435132e-19) (87.65387205 -7.758224594 8.496213282e-18) (86.91478025 -7.72405987 -2.035710861e-17) (87.2255345 -7.712508516 3.311630501e-21) (87.52938067 -7.772046913 0) (87.93624786 -7.680302111 0) (87.18538603 -7.664462017 3.782994612e-19) (87.14567669 -7.642533039 -3.755654239e-19) (87.22271821 -7.703873949 0) (87.21948864 -7.682213887 0) (87.97246508 -7.703178351 -3.432530564e-19) (87.52696432 -7.816939812 -6.998066204e-19) (87.52984846 -7.830632504 0) (87.47233097 -7.781546593 0) (87.4897141 -7.787798739 -1.387021974e-18) (114.9051307 -29.40790631 -6.695846303e-19) (118.5750759 -29.82923772 -5.688750472e-19) (118.6893811 -29.68052219 -3.086236291e-19) (118.7556173 -30.11523022 8.224334906e-19) (118.6042933 -30.02155981 8.931248597e-20) (114.459557 -29.58193086 -4.605344628e-18) (117.0854854 -29.0786786 0) (117.5593441 -28.93840436 5.705095098e-18) (118.6224776 -29.48885879 -3.256201618e-19) (117.9455002 -29.24409478 -8.103507296e-18) (114.6730993 -28.91715592 -9.025035429e-20) (94.6744715 -30.42083586 -1.445905457e-18) (99.97550699 -31.41932527 -1.263238526e-18) (99.57618586 -31.21499004 -6.771786813e-19) (100.9381297 -31.69139898 0) (100.3442187 -31.61878087 0) (94.16618196 -30.44502978 2.305742635e-18) (88.68208682 -9.689337292 0) (88.78136799 -9.727788398 1.566027903e-19) (88.52407833 -9.528115294 0) (88.58603538 -9.622247158 0) (90.09435971 -9.894744347 -1.013737144e-18) (90.08395644 -9.858676789 -1.464227085e-19) (90.775049 -9.859142401 0) (88.92815526 -9.799947285 0) (88.92791213 -9.800808855 2.34387734e-18) (88.85789532 -9.755150698 1.125213686e-18) (88.91577986 -9.777857838 1.299803421e-18) (88.16272868 -8.801635287 1.352122689e-18) (89.21631362 -8.855101488 -8.94255253e-19) (89.23257245 -8.886832423 -3.008271532e-19) (89.16508825 -8.801662892 -5.839056281e-19) (89.19385143 -8.82725315 0) (88.14259762 -8.781591544 0) (88.14080792 -8.965260424 -1.048403235e-18) (89.24735526 -9.039155591 7.856105284e-19) (89.2256554 -9.12042927 1.149483191e-21) (89.2425207 -8.92509671 -6.064713084e-19) (89.24541319 -8.975302137 -6.149276932e-19) (88.15825763 -8.899229273 1.720420492e-19) (102.3767862 -30.68097208 5.829518285e-18) (92.71720532 -11.17274551 0) (92.8550463 -11.24844613 0) (92.06581481 -11.37162668 2.272215974e-19) (67.20139323 -21.15876353 -2.531524747e-19) (56.26350776 -18.76638072 -1.198405751e-18) (53.06036938 -17.62794249 -1.128344012e-18) (57.36440265 -19.65326994 8.027902944e-18) (57.65799476 -19.39420338 0) (66.12156108 -21.16136776 -7.95800991e-21) (90.62662854 -11.39694685 -3.489059402e-20) (69.23235376 -23.0426493 0) (77.41240747 -24.77181212 -3.213981448e-20) (76.29100531 -24.92886217 0) (90.80404131 -10.29232485 -1.038232298e-18) (89.53474764 -10.20710916 0) (89.51319353 -10.2001374 1.184613074e-18) (79.85509787 -27.594086 1.286773068e-18) (71.71455237 -24.70869197 6.671845156e-20) (72.19039926 -24.98794155 3.315821998e-21) (75.09212383 -24.83908476 0) (73.21005167 -24.7061181 -9.528453242e-21) (67.36026291 -23.46314609 -2.312246432e-18) (71.43106365 -25.01296204 -9.374563312e-20) (83.26643296 -27.76242272 0) (75.47122978 -26.12625768 -3.051818613e-19) (76.93248208 -26.15428704 1.5230971e-21) (89.15015759 -10.61689375 4.292165293e-18) (89.58257611 -10.50114595 -1.419091878e-18) (90.87806561 -10.61314903 1.089757817e-18) (99.71517507 0.7346571178 -1.286250295e-20) (99.64440502 1.00861717 6.101829568e-21) (99.87873072 0.6264287358 6.110527451e-21) (99.61567086 1.114571065 -1.827865557e-20) (99.55040763 1.478165469 -5.657860348e-21) (99.85014801 0.9040837256 -3.360602991e-22) (99.52586452 1.613387266 0) (99.49517836 2.054920083 1.569985674e-19) (99.83775304 1.235380191 4.275597849e-21) (99.48782816 2.209208752 2.851599608e-19) (99.54055276 2.661456541 -4.517062944e-19) (99.8602398 1.575512162 -1.598079442e-21) (99.56451201 2.801910549 0) (99.72286616 3.150282624 -1.926227223e-19) (99.93156703 1.83964885 -1.623934662e-21) (99.77608884 3.227940374 1.873905035e-19) (99.98799654 3.337873334 0) (100.0288221 1.947501648 -3.568980941e-22) (100.0505072 3.332736151 6.91033854e-22) (100.2527578 3.185826295 0) (100.1188318 1.872782061 0) (100.2971021 3.100136627 -5.124858236e-21) (100.4216228 2.762117644 -9.034861621e-21) (100.1780143 1.643465901 0) (100.4381088 2.631579329 2.112534699e-21) (100.4761919 2.216735102 5.37624093e-21) (100.1939127 1.333237111 -4.451991579e-21) (100.4670303 2.075241782 -2.52672116e-21) (100.4370678 1.66798446 0) (100.1763089 1.020968432 -1.137973455e-20) (99.3412177 1.00352239 -1.369439101e-20) (99.16102033 1.410760307 -1.336186449e-20) (99.54131596 1.122314315 0) (99.09720149 1.571769118 -3.265952906e-21) (98.9097849 2.149572925 4.705686694e-19) (99.41701054 1.656213485 1.117950828e-20) (98.85555371 2.372454137 -2.815730904e-19) (98.74969708 3.1265868 4.120118897e-20) (99.34161817 2.32408653 -3.115859984e-19) (98.7388629 3.402029218 5.919246201e-19) (98.8293947 4.245940043 3.088840259e-20) (99.39802771 3.037016941 3.485828292e-21) (98.90620399 4.512954779 0) (99.29260913 5.166941827 3.949007406e-19) (99.63400386 3.617486841 1.412976535e-20) (99.46905767 5.308741243 -4.028564128e-19) (100.0499461 5.485735402 -1.996786617e-19) (99.98993627 3.835454846 0) (100.2377266 5.4524767 -1.341579533e-19) (100.7216378 5.121253592 -3.887471921e-19) (100.334571 3.647100135 2.256680681e-21) (100.8438935 4.94985495 3.882305641e-19) (101.0913548 4.320717127 -5.974423309e-19) (100.5497742 3.145717647 0) (101.1341935 4.087998673 -3.848339707e-20) (101.1725753 3.368089155 3.310015973e-20) (100.6170657 2.509892376 -2.025076807e-20) (101.158468 3.131488411 9.620759768e-20) (101.065617 2.46797424 -3.066578579e-19) (100.566576 1.879012814 -1.229557025e-20) (98.84505912 1.111067714 4.48991585e-19) (98.49558157 1.632350162 5.523997676e-20) (99.01087186 1.485478394 6.669901846e-20) (98.36801166 1.848914455 -2.128973741e-19) (97.97836511 2.650732194 -1.271182535e-20) (98.70551284 2.295239499 -7.591898904e-19) (97.8487436 2.981366518 -8.197820222e-19) (97.53010392 4.176892023 0) (98.4971879 3.394848186 -4.096304592e-20) (97.47333313 4.637245201 -7.178570968e-19) (97.58590362 6.120043415 8.659700527e-21) (98.58202043 4.68371677 -6.316397703e-20) (97.74736309 6.608766017 -5.694176737e-19) (98.64031633 7.827867705 7.30717992e-20) (99.15348785 5.757655898 4.198527666e-19) (99.0443957 8.093809438 9.133443447e-20) (100.3993374 8.272222124 -1.752262647e-19) (100.1001076 6.105206928 -6.416783942e-21) (100.8132431 8.142820771 5.345364178e-19) (101.7705127 7.35762117 0) (100.9136929 5.648486972 -1.133443004e-18) (101.9821728 7.01291556 -2.308333041e-21) (102.3323619 5.883838469 5.132305886e-20) (101.3374271 4.716408701 3.826368805e-20) (102.3708043 5.492497917 0) (102.3168473 4.381492717 5.810455317e-20) (101.4101807 3.642547695 0) (102.254979 4.036741399 -1.16416068e-19) (101.9911389 3.087693629 0) (101.2691521 2.644504374 0) (98.28468368 1.003899367 -3.13129179e-20) (97.71326057 1.567970607 7.01754663e-19) (98.30741435 1.645460816 4.972092977e-19) (97.49298785 1.812814216 -9.343037584e-19) (96.72567257 2.800898692 -4.618868433e-19) (97.69371807 2.735208709 9.982132937e-21) (96.44496447 3.237054278 -2.322275718e-19) (95.62190522 4.937079472 3.762051439e-20) (97.12586568 4.415216353 -1.276715617e-20) (95.40263802 5.645414209 0) (95.21949618 8.218572123 -2.025221146e-19) (97.13646057 6.637085949 0) (95.42828696 9.177970477 1.784535831e-19) (97.2677164 11.76860102 -7.726661054e-20) (98.41014084 8.647256602 3.601887055e-19) (98.25852618 12.31024157 7.760791926e-20) (101.4372342 12.34131798 0) (100.569012 9.131284535 -4.090624772e-20) (102.3127711 11.88232953 -6.891395585e-19) (103.9630826 9.908119644 -2.287960957e-19) (102.1797292 7.972301625 -5.213702681e-19) (104.2332499 9.185910063 0) (104.4673021 7.188489 0) (102.7689841 6.242850844 -5.012233705e-20) (104.4022585 6.594953121 1.532351795e-19) (103.9967932 5.037068791 9.024532159e-19) (102.6869948 4.591543942 -5.992005987e-20) (103.8184768 4.585072729 -2.90382956e-19) (103.2301695 3.400060554 2.116674617e-19) (102.2728217 3.201796894 -3.100726765e-20) (97.75462223 0.6495854741 1.246832528e-19) (96.93133641 1.150013602 -1.255249909e-18) (97.51170593 1.500157179 -5.57102486e-21) (96.5845663 1.380280042 -2.507371817e-19) (95.29389352 2.340771977 -2.686764159e-19) (96.37001398 2.752441906 4.73740085e-19) (94.7766614 2.777783066 2.826553451e-19) (92.98162839 4.605436582 7.082483863e-20) (95.01957045 4.992006549 -3.007865061e-20) (92.32427529 5.46336304 1.291637311e-19) (90.45955218 9.298954259 -1.152275724e-19) (94.31600775 8.688632837 -2.51227288e-19) (90.07776122 11.29707238 -1.569113535e-19) (93.03252896 20.0003818 0) (96.62160266 13.10840734 0) (94.45699092 21.11520473 0) (104.7649414 19.27781961 -7.134828353e-20) (101.9187893 13.70923492 -7.43505488e-20) (106.4591594 17.52679479 5.847433312e-19) (108.371171 12.32454394 0) (104.8026573 10.56009734 1.632482668e-18) (108.361609 10.93865957 2.022137522e-19) (107.6440924 7.733886711 0) (105.1597325 7.426596536 1.237232663e-18) (107.2993948 6.918224614 1.93912432e-19) (106.1765368 4.983913291 0) (104.4989847 5.106291333 0) (105.7941032 4.467576389 1.134189796e-18) (104.6869917 3.182807631 3.460792974e-19) (103.581281 3.403515149 7.295670509e-20) (97.38341513 0.05054646236 2.744313417e-19) (96.33559837 0.3530351614 0) (96.7569143 0.9840411612 5.085937591e-19) (95.88320912 0.4960922634 -6.926160553e-20) (94.14542949 1.088050287 -3.75363475e-20) (94.95867424 2.099162246 0) (93.41695143 1.350455236 0) (90.63196804 2.38703695 -3.94905108e-19) (92.29274213 4.242487444 -8.315424113e-20) (89.43585421 2.829183402 4.14354186e-19) (83.24867052 4.493788081 0) (88.79702059 8.942225846 -1.605443977e-18) (85.25290149 9.32061943 0) (82.80138093 14.61630252 0) (88.36663221 14.68864892 0) (89.50014875 31.45728811 0) (102.9941525 31.90188613 0) (100.3172174 23.93171868 -3.092549e-19) (111.7955978 21.83144544 0) (111.9717831 17.59224768 0) (109.5451427 16.74360649 0) (114.6364996 10.3076441 -6.024061036e-19) (111.6008193 6.521822146 1.314087936e-19) (108.6010211 7.644349775 4.360554385e-19) (110.7324957 5.678374035 1.231299433e-19) (108.4822906 3.831416343 -4.673142838e-19) (106.7647615 4.807322067 -8.281238982e-19) (107.8299967 3.373047462 0) (106.1038937 2.282601704 -7.969834265e-19) (105.0563433 3.022795629 1.082583177e-18) (97.26133686 -0.7100729176 2.28721913e-19) (96.10848343 -0.6872533 0) (96.24280792 0.1067493397 0) (95.61414757 -0.6703101137 3.006271288e-19) (93.74763518 -0.6207421947 7.884921177e-20) (93.968212 0.6798467246 -7.641007735e-20) (92.9842224 -0.6174286896 4.245238794e-20) (90.21505179 -0.7722473546 4.166216628e-19) (90.32233723 1.584135026 3.990959771e-19) (88.93947008 0.859504829 -2.692816432e-20) (87.53866876 0.9240755253 4.666441729e-19) (87.65719642 2.115378806 -4.60126509e-19) (81.48389975 1.978249505 5.827848598e-19) (79.79116844 1.805347327 0) (79.67705507 3.506788372 0) (129.9256791 18.29313821 0) (124.6912426 13.22745478 0) (120.2617167 16.21207646 1.413074888e-18) (120.2389908 4.959384956 -7.350988517e-19) (114.8178477 2.92056929 9.749603252e-19) (112.5564182 5.843799927 0) (113.4644374 2.467042322 1.36940556e-19) (110.230239 1.497162764 0) (109.0102201 3.357216498 -6.313725589e-20) (109.3512409 1.263496306 -3.916243588e-19) (107.1192122 0.7200475331 0) (106.4122265 1.945791682 1.951868035e-19) (97.40894336 -1.511888524 0) (96.2781205 -1.757989774 0) (96.11538047 -0.9593495217 0) (95.80291145 -1.855723437 7.172092097e-20) (94.07326051 -2.237741375 0) (93.77263506 -1.047638501 0) (93.39951606 -2.409580676 2.121430235e-19) (91.15235512 -3.139222782 -3.925575883e-19) (90.38008724 -1.456332883 8.339905368e-19) (89.67765109 -2.371204284 0) (88.73197121 -2.740009675 0) (88.31786955 -2.022979372 4.565405285e-19) (85.56953953 -4.08986186 1.081782044e-20) (85.18865027 -4.64399084 5.013967841e-19) (84.62730057 -4.35603359 -1.010129847e-18) (136.4527072 0.8618054206 1.194377385e-18) (129.9265566 1.036003465 1.020543686e-18) (129.2139433 5.929234095 0) (121.3381225 -2.721364395 7.530070053e-19) (115.6354116 -2.009834601 1.333845227e-18) (115.2803932 1.738414906 8.2364809e-20) (114.1881986 -1.859046981 -8.140144983e-19) (110.7120138 -1.523557471 5.643428086e-19) (110.4888428 0.776039053 -4.081828115e-19) (109.7710321 -1.437004709 0) (107.3894104 -1.230846765 1.08866008e-21) (107.2663395 0.2529116747 -2.807660591e-20) (97.7965026 -2.258884303 0) (96.76505874 -2.718250396 -1.630870427e-20) (96.37383207 -2.011767361 0) (96.33821354 -2.899197566 0) (94.82429062 -3.552457138 -4.380090014e-21) (94.23101338 -2.596075784 1.564808108e-19) (94.2515151 -3.813248846 1.553664558e-19) (92.40531414 -4.738403262 0) (91.45447747 -3.594578688 -2.292166407e-21) (91.07335859 -4.362442099 0) (90.39730217 -4.756398336 -6.252323043e-19) (89.99563221 -4.343664881 -1.068903217e-19) (88.30949677 -5.821952352 0) (88.03798864 -6.213857002 3.338234333e-19) (87.61795787 -5.976963152 -3.445134046e-19) (130.8116185 -12.68047293 1.029372617e-18) (126.502639 -9.789903282 2.338014387e-20) (128.4616323 -6.32455855 0) (118.3700475 -9.036255777 5.01187465e-21) (113.985898 -6.444487094 1.874943459e-20) (115.4231729 -3.221785713 -6.813364301e-19) (112.8020906 -5.824703703 5.736589308e-19) (109.8413191 -4.40576751 1.056706902e-18) (110.6220282 -2.286150562 -1.649614679e-18) (109.0082419 -4.038956118 -4.862249885e-19) (106.8430113 -3.153487243 -6.285616974e-19) (107.3310671 -1.729496246 4.438691861e-19) (98.3730763 -2.892125379 9.172826934e-22) (97.47978329 -3.50578384 -6.257554107e-20) (96.92564699 -2.932728841 5.499234771e-19) (97.111698 -3.743712973 -1.460179339e-21) (95.81527277 -4.570737665 -6.702298298e-20) (95.05378213 -3.833370422 1.466697338e-19) (95.32627595 -4.884900143 1.462885828e-19) (93.73515433 -5.927707393 -3.321950804e-19) (92.73041485 -5.064076558 -7.018738287e-19) (92.4753513 -5.729189898 0) (91.89439758 -6.102657724 2.704687235e-19) (91.53235963 -5.796402652 -9.554284137e-20) (90.13201725 -6.959449905 0) (89.89038319 -7.242068032 3.062627682e-19) (89.59721568 -7.059103313 0) (121.7180325 -19.22179666 -7.152848884e-19) (119.5499874 -15.84881362 0) (122.301213 -14.21646727 7.291505449e-19) (113.5291276 -12.64507901 8.259768688e-19) (110.8550324 -9.369096528 -9.967577578e-19) (113.2979253 -7.337292933 -1.877096719e-20) (110.0633928 -8.531423006 1.243302886e-18) (107.95409 -6.542707077 1.633370555e-21) (109.4410371 -5.024017557 -4.94136803e-19) (107.3252498 -6.010617971 0) (105.6187538 -4.687735092 3.720917962e-19) (106.5890087 -3.583562803 -1.950416776e-19) (99.08391775 -3.37780156 2.75061779e-20) (98.35088277 -4.092915012 0) (97.68567976 -3.672223307 -4.490106482e-19) (98.0464631 -4.368794235 0) (96.97409463 -5.315200505 1.257303231e-19) (96.09099294 -4.782629835 1.372645832e-19) (96.56684046 -5.671398179 -2.246459745e-19) (95.21589664 -6.855324568 -5.661458424e-19) (94.08574714 -6.184258639 -3.15240645e-19) (93.92266942 -6.819139002 -2.455861721e-19) (93.33217977 -7.416488097 -5.961642299e-19) (92.99329332 -6.962527137 3.449106481e-19) (91.64964982 -8.163768224 0) (91.36806689 -8.467571547 0) (91.07596983 -8.214456502 -5.813889293e-19) (112.7611161 -20.88166799 -1.829613379e-20) (112.7576654 -18.34088125 -1.202531512e-19) (114.5887048 -18.13478422 -9.676688031e-19) (108.5014319 -13.68673268 7.711974356e-19) (107.2973552 -10.59838333 -7.670540129e-19) (109.9680803 -9.826336667 0) (106.8765951 -9.769629241 7.71967406e-19) (105.6207124 -7.709155897 1.464698207e-18) (107.3908079 -6.927566398 0) (105.211371 -7.133684582 -1.086418788e-18) (104.0201826 -5.652330895 8.028917462e-19) (105.2411739 -4.985305858 1.787748509e-19) (99.86827226 -3.715287038 4.103791805e-19) (99.30196926 -4.486256989 -4.192725148e-21) (98.58523353 -4.206946934 4.061945085e-19) (99.06625179 -4.78064716 0) (98.23815696 -5.790361349 8.688960036e-19) (97.28641474 -5.455535564 1.195482144e-19) (97.92611229 -6.172387126 -9.440491568e-19) (96.90012196 -7.47201414 4.026718738e-21) (95.62064442 -7.03838533 5.468188767e-19) (95.60868361 -7.684171458 -6.738028232e-20) (95.14944301 -8.344168322 -4.176225611e-21) (94.41265311 -8.036470083 -6.180284736e-21) (93.64266969 -9.474209246 -2.325324695e-19) (93.24000853 -9.913684815 0) (92.84257885 -9.64071244 0) (101.627461 -28.67518559 -6.675040345e-20) (103.6317843 -26.69887132 2.363993468e-19) (105.5515024 -27.90615084 -2.247854582e-19) (103.3747526 -16.90319295 -5.29628148e-20) (104.3149824 -13.74699545 1.104763255e-19) (107.5758806 -14.83266858 -3.150747213e-19) (104.3521172 -12.83141909 -5.93477825e-20) (104.1067532 -10.46518575 4.203998239e-19) (106.443841 -10.6709306 7.167536761e-19) (103.9481019 -9.780754794 0) (103.3345924 -7.988218811 2.931848313e-19) (105.0271907 -7.851407977 -6.767645059e-19) (103.0970704 -7.460228993 7.483378191e-21) (102.3368259 -6.045055175 1.290688982e-19) (103.5971305 -5.798792765 -7.652052574e-19) (100.6922325 -3.867949217 -7.886192245e-19) (100.3035301 -4.622104677 -1.810588478e-19) (99.54410354 -4.546188221 -1.327323198e-20) (100.1384595 -4.908242085 -1.78174656e-19) (99.56357248 -5.881762595 3.551393112e-19) (98.56026898 -5.852413113 -1.503544544e-21) (99.35139726 -6.249225011 -7.13891211e-19) (98.71634402 -7.501441527 0) (97.34532455 -7.545946477 0) (97.52950362 -8.09094463 2.114434652e-19) (97.28323257 -8.637675065 0) (96.48509496 -8.757605924 0) (96.20545462 -10.64272965 -5.259174583e-20) (96.0770784 -11.37075519 0) (95.28947919 -11.13279824 -2.06016118e-19) (96.86999625 -16.22867646 8.117905628e-20) (99.06690011 -16.23512218 -1.796323138e-20) (99.8889177 -18.74336015 0) (100.6017105 -13.07279771 2.435758589e-19) (101.4780018 -11.5853175 -2.332148563e-19) (103.4490885 -13.25080069 -2.094837211e-19) (101.6012847 -11.05519745 3.229419923e-19) (101.695391 -9.515914257 0) (103.4252681 -10.27980029 -3.712426077e-19) (101.6552649 -9.025063461 -1.952494925e-19) (101.3855138 -7.643248461 -4.270923196e-19) (102.8062195 -7.948848234 0) (101.2568695 -7.208202556 2.009974368e-19) (100.7918211 -5.995097245 0) (101.9315581 -6.067418414 -1.281767362e-19) (101.4910163 -3.862184773 7.704833913e-20) (101.2627467 -4.539538371 1.49698876e-19) (100.5521292 -4.618484424 -3.20176812e-21) (101.1567348 -4.794323161 -4.460039961e-19) (100.7846429 -5.64350633 -7.388406696e-20) (99.88354296 -5.848848668 0) (100.6516809 -5.955059965 0) (100.2875803 -6.979414769 0) (99.14458003 -7.409774288 -6.838732828e-21) (100.2058412 -7.352474552 0) (100.2541868 -8.442087669 -2.335063581e-19) (98.99974335 -9.485335933 1.436280318e-19) (98.64839717 -8.862075446 -9.437189706e-20) (98.06383355 -9.825754578 1.581253426e-19) (96.965565 -12.04516229 9.561249507e-20) (98.70059106 -10.27969241 -4.466256559e-20) (99.43934152 -10.31113759 8.665738848e-20) (99.84891235 -12.53960527 -1.059968383e-19) (99.62313414 -10.19092104 -4.579684146e-20) (99.97108379 -9.529628425 -1.937802205e-19) (101.0000343 -11.03979495 -3.051979693e-19) (100.0217545 -9.247187954 -6.557112658e-21) (100.0577237 -8.304768158 -3.593708245e-19) (101.2193613 -9.217828587 -3.667365565e-19) (100.0363355 -7.971641352 3.571914418e-19) (99.87324169 -6.96240089 8.298804701e-20) (100.9662131 -7.492200858 2.071596768e-19) (99.79138574 -6.627838136 -8.190531687e-20) (99.48275607 -5.650418415 0) (100.4402436 -5.928719016 0) (102.2216186 -3.738974452 0) (102.09751 -4.324062054 -1.296930004e-19) (101.4839861 -4.495827882 0) (102.0355761 -4.535184054 0) (101.7972075 -5.218668422 -2.980449146e-19) (101.0593926 -5.548584442 0) (101.7072625 -5.461601184 -2.241242108e-19) (101.4429439 -6.217036428 -6.04437464e-19) (100.6179526 -6.802990776 3.043696308e-19) (101.3675259 -6.472098243 4.492243762e-19) (101.1643391 -7.072186779 3.857002598e-20) (100.5321949 -8.072257628 -1.907729608e-19) (99.44009015 -7.361747245 -2.595194055e-19) (98.66936127 -7.868720445 0) (98.28934447 -9.260414397 -1.369642539e-19) (99.22165152 -8.179457739 2.193912288e-21) (99.28087462 -8.235623497 3.957809123e-20) (99.37383522 -9.714150967 -2.150290446e-20) (99.26729108 -8.199094241 -1.180601103e-19) (99.19050731 -7.874952859 -1.151573177e-19) (99.72662245 -9.076871856 0) (99.14984942 -7.715194348 1.790410561e-20) (99.00852001 -7.128443399 -2.474560049e-19) (99.7493789 -8.002689974 1.820210182e-20) (98.9532796 -6.905239497 -1.690943098e-19) (98.75599788 -6.181743242 -1.599377954e-20) (99.56055738 -6.771680812 -7.420065748e-20) (98.67899749 -5.928252905 1.582850504e-20) (98.43295512 -5.170313551 0) (99.19701869 -5.53780185 0) (102.8639065 -3.537610397 0) (102.7970997 -4.027725157 -2.130026463e-20) (102.2853055 -4.255213571 0) (102.7572677 -4.198086351 5.355580878e-20) (102.5815776 -4.729747368 5.014601969e-20) (102.0139165 -5.099036014 0) (102.5071276 -4.911461492 -1.239041849e-21) (102.2515884 -5.452137513 -1.504158759e-19) (101.6727477 -6.019605047 5.800504056e-21) (102.1611286 -5.631197944 1.116534699e-20) (101.7875453 -6.033333105 -2.49712282e-19) (101.3485589 -6.786729622 2.688766879e-19) (100.2247733 -6.158660097 9.936289436e-20) (98.81672153 -6.514370851 0) (98.72934263 -7.484956453 0) (99.52317883 -6.73601686 -1.499521778e-20) (99.26938327 -6.776887274 -6.275272843e-21) (99.27110236 -7.82567436 0) (99.13747644 -6.76474168 2.298800151e-21) (98.76136871 -6.580241604 6.021954635e-21) (99.06010002 -7.521440857 7.033252722e-21) (98.64239109 -6.480955969 -1.421166223e-20) (98.31931483 -6.090093019 -9.68784199e-20) (98.80975973 -6.854462903 0) (98.22051606 -5.933278672 1.851920963e-20) (97.94063942 -5.406769838 0) (98.52746129 -5.983036136 0) (97.85265386 -5.21954048 0) (97.61034077 -4.64415909 0) (98.20823241 -5.040350407 0) (103.4170652 -3.286427754 0) (103.3692249 -3.696910192 0) (102.9510406 -3.947439922 -6.427967178e-21) (103.3357114 -3.834739157 0) (103.1739267 -4.24750296 5.276687608e-21) (102.745864 -4.606821536 -1.182135793e-19) (103.0997134 -4.383388059 0) (102.8201599 -4.775626675 0) (102.4130915 -5.27404989 -2.956608887e-19) (102.7103358 -4.899533957 7.59673685e-21) (102.1551804 -5.205132001 -4.849696881e-20) (101.8943754 -5.807259339 1.312671769e-19) (100.4639889 -5.216981481 -3.804687983e-20) (98.92933965 -5.529120581 1.784745933e-20) (98.83709735 -6.241224655 0) (99.69804594 -5.659872231 -1.783588845e-20) (99.28125818 -5.681845423 -3.164312437e-23) (99.27229025 -6.476017736 -8.293550487e-21) (99.07370908 -5.675902128 -2.381334186e-22) (98.4890357 -5.551190461 8.298144051e-21) (98.68360692 -6.301312034 -4.771427803e-20) (98.31023812 -5.482335111 -3.639041091e-22) (97.83845981 -5.204805715 0) (98.18355051 -5.854341928 0) (97.70154011 -5.092015395 0) (97.34158203 -4.707605592 0) (97.77366496 -5.223989062 0) (97.23694041 -4.56761552 0) (96.96815875 -4.125543234 0) (97.43485009 -4.511998455 0) (103.8863171 -3.01228587 0) (103.8374268 -3.353457041 0) (103.4952963 -3.611287272 0) (103.8019212 -3.465413153 0) (103.6256103 -3.792130746 0) (103.2979133 -4.131263299 0) (103.542666 -3.896635618 0) (103.22244 -4.189892784 0) (102.9335274 -4.621451551 -1.494851144e-20) (103.0934838 -4.279624931 0) (102.3033263 -4.513102666 0) (102.2176751 -5.023930188 0) (100.0527881 -4.43479775 0) (99.12958255 -4.751524372 0) (98.97378397 -5.319875718 7.895573052e-21) (99.80170527 -4.817228233 0) (99.26952247 -4.824150588 0) (99.28050609 -5.448704694 -2.214976694e-21) (99.01274616 -4.816761829 0) (98.28861355 -4.721933145 0) (98.43312237 -5.326826991 0) (98.06903829 -4.671248235 0) (97.49009089 -4.467547115 0) (97.74109987 -5.007509781 0) (97.32303656 -4.384063208 0) (96.89106832 -4.094920093 0) (97.21713292 -4.546353557 0) (96.76849505 -3.987736584 0) (96.46156709 -3.642383482 0) (96.83031228 -4.000291416 0) (104.2817292 -2.734315229 0) (104.2198984 -3.017392508 0) (103.9403976 -3.26816922 0) (104.1784986 -3.108448406 0) (103.9777266 -3.368692194 0) (103.7218505 -3.682900597 0) (103.8838912 -3.450231248 0) (103.5228453 -3.675415183 0) (103.3053906 -4.05498122 0) (103.3778308 -3.743397179 0) (102.2788052 -3.899173276 0) (102.3063395 -4.351678647 0) (99.7126133 -3.816372073 0) (99.27441302 -4.102549576 0) (99.17433264 -4.578001087 0) (99.84930004 -4.138915052 0) (99.2471097 -4.133026004 0) (99.2646329 -4.637835644 0) (98.95676274 -4.124269613 0) (98.13630433 -4.047830751 0) (98.24686343 -4.540590987 0) (97.88743242 -4.008559462 0) (97.22794128 -3.852273614 0) (97.41783463 -4.303328173 0) (97.03689762 -3.78816928 0) (96.54355829 -3.56419771 0) (96.795918 -3.954876834 0) (96.40422846 -3.480226805 0) (96.0571822 -3.20584516 0) (96.35198482 -3.52826283 0) (104.6143646 -2.465062039 0) (104.5330776 -2.70027229 0) (104.3041038 -2.936036132 0) (104.4839302 -2.77465922 0) (104.2554376 -2.983674251 0) (104.0533118 -3.268723554 0) (104.1508487 -3.048143613 0) (103.754451 -3.224540945 0) (103.5863104 -3.556980792 0) (103.5946312 -3.277171624 0) (102.2076546 -3.375502243 0) (102.2626283 -3.759881947 0) (99.55182762 -3.312933684 0) (99.35359582 -3.560867009 2.069058839e-35) (99.29907385 -3.958034293 2.776796126e-35) (99.86125231 -3.579411263 -2.063775009e-35) (99.21949203 -3.564342027 0) (99.24059872 -3.980678763 0) (98.9055071 -3.554902586 0) (98.01509648 -3.490889744 0) (98.10355262 -3.898798888 0) (97.74448567 -3.459253271 0) (97.02357765 -3.33506373 0) (97.1722536 -3.714586508 0) (96.81351676 -3.284321206 0) (96.26911143 -3.10635487 0) (96.46901419 -3.443288217 0) (96.11497214 -3.039163145 0) (95.73004653 -2.81738219 0) (95.96899447 -3.103832495 0) (104.8943999 -2.211743065 0) (104.7906705 -2.407846532 0) (104.6022118 -2.624717636 0) (104.7331412 -2.468968446 0) (104.4771311 -2.638372755 0) (104.3155124 -2.893648548 0) (104.3628552 -2.690044859 0) (103.9360262 -2.830666306 0) (103.8039769 -3.121001875 0) (103.7603024 -2.871813431 0) (102.1365536 -2.932903797 0) (102.1889822 -3.257837978 0) (99.50682451 -2.890637282 0) (99.39312374 -3.10414348 0) (99.36650461 -3.43946738 0) (99.85046 -3.111319556 0) (99.18863945 -3.089820131 0) (99.21202286 -3.437763827 0) (98.85791646 -3.08012561 0) (97.91537404 -3.025085492 0) (97.98842623 -3.366718007 0) (97.6282101 -2.998870012 0) (96.85966342 -2.897480276 0) (96.97932081 -3.2188213 0) (96.63445324 -2.85631194 0) (96.04783386 -2.711842125 0) (96.20942254 -3.00214992 0) (95.88089853 -2.657081088 0) (95.46171177 -2.475045619 0) (95.65805615 -2.72722552 0) (105.1306969 -1.978241775 0) (105.0037002 -2.142368598 0) (104.8477305 -2.338915421 0) (104.9378531 -2.192894756 0) (104.656297 -2.331444305 0) (104.5254708 -2.558128342 0) (104.5337204 -2.373401466 0) (104.0796197 -2.486962561 0) (103.9751139 -2.740290057 0) (103.886651 -2.51916975 0) (102.0817683 -2.557047006 0) (102.1209975 -2.833190807 0) (99.53496428 -2.532274036 0) (99.40785962 -2.715636719 -1.659840229e-35) (99.39867973 -3.00116049 2.413057255e-35) (99.8253233 -2.715753231 1.655781908e-35) (99.15585486 -2.690009438 0) (99.18058471 -2.983482559 0) (98.81337627 -2.680284519 0) (97.83131953 -2.632070185 0) (97.89306461 -2.920598958 0) (97.53128517 -2.609888372 0) (96.72516965 -2.525373585 0) (96.82361629 -2.798789246 0) (96.48778342 -2.491308653 0) (95.86625291 -2.371945856 0) (95.99913893 -2.622062106 0) (95.68836922 -2.326622196 0) (95.23880511 -2.175221204 0) (95.40216595 -2.395933423 0) (105.3305631 -1.766093277 0) (105.1808468 -1.904096463 0) (105.0510526 -2.080271017 0) (105.1071384 -1.946126359 0) (104.8027894 -2.060460673 0) (104.6956611 -2.260437329 0) (104.6732225 -2.09493464 0) (104.1935726 -2.187428951 0) (104.1106124 -2.408154201 0) (103.9827711 -2.212628063 0) (102.0475226 -2.236318891 0) (102.0712971 -2.47208872 0) (99.60967096 -2.224972583 0) (99.40737662 -2.383632611 0) (99.40888816 -2.627707306 0) (99.791621 -2.379776298 0) (99.12195457 -2.351066301 0) (99.14746154 -2.600020614 0) (98.77142927 -2.341430416 0) (97.75918617 -2.298572206 0) (97.81228501 -2.543553025 0) (97.44898879 -2.279500092 0) (96.61282708 -2.207898371 0) (96.69523386 -2.441250645 0) (96.36555794 -2.179264083 0) (95.71505734 -2.079207585 0) (95.82590256 -2.294606737 0) (95.52784146 -2.041206571 0) (95.05161316 -1.913854468 0) (95.18898263 -2.106148584 0) (105.5003222 -1.575546775 0) (105.3290524 -1.692189904 0) (105.2203735 -1.848694564 0) (105.2481248 -1.727386145 0) (104.9238617 -1.822579129 0) (104.8352036 -1.998000244 0) (104.7883257 -1.851190684 0) (104.2841673 -1.926964219 0) (104.218199 -2.118828746 0) (104.0558003 -1.946677111 0) (102.0320317 -1.961782506 0) (102.0420185 -2.163648752 0) (99.71312779 -1.960165808 0) (99.39738787 -2.099623066 -1.749212793e-36) (99.40561192 -2.308424503 -3.714865296e-36) (99.75288032 -2.093353624 1.745072961e-36) (99.08742643 -2.062670104 0) (99.11336637 -2.274573452 0) (98.73168136 -2.053180407 0) (97.69639622 -2.014625923 0) (97.74269492 -2.223273384 0) (97.37809002 -1.99801724 0) (96.51762716 -1.93656188 0) (96.58757949 -2.136028101 0) (96.26226153 -1.912183055 0) (95.58760103 -1.827296958 0) (95.68118308 -2.012626231 0) (95.39243152 -1.795083796 0) (94.89290859 -1.686909255 0) (95.00951018 -1.853793109 0) (105.6451624 -1.406203847 0) (105.4538366 -1.505345185 0) (105.3622542 -1.643187376 0) (105.3664079 -1.535028811 0) (105.0248668 -1.614981226 0) (104.9508172 -1.767949422 0) (104.8840894 -1.638931007 0) (104.3563463 -1.701334003 0) (104.3037684 -1.867445483 0) (104.1113179 -1.716781879 0) (102.0318143 -1.726746332 0) (102.0306845 -1.899549999 0) (99.8335622 -1.732064506 0) (99.38116793 -1.856721979 0) (99.39382571 -2.03528892 0) (99.71110727 -1.848851217 0) (99.05262708 -1.816938522 0) (99.07873956 -1.99750347 0) (98.69383616 -1.807629891 0) (97.64111695 -1.772616713 0) (97.68193204 -1.950449745 0) (97.3162991 -1.758002331 0) (96.43600462 -1.704685095 0) (96.49606505 -1.8751231 0) (96.1739506 -1.683705028 0) (95.47902898 -1.610942816 0) (95.55884814 -1.770061627 0) (95.2770671 -1.583371405 0) (94.75722483 -1.490677884 0) (94.85701726 -1.634891196 0) (105.7693791 -1.25722929 0) (105.5596333 -1.342021278 0) (105.4819134 -1.462371191 0) (105.4664219 -1.3672466 0) (105.1098347 -1.43496399 0) (105.0474787 -1.567492309 0) (104.9643318 -1.455156126 0) (104.4140026 -1.50676924 0) (104.3719923 -1.649917398 0) (104.1535803 -1.518881548 0) (102.0435308 -1.525850879 0) (102.0337459 -1.673504126 0) (99.9635276 -1.535983884 0) (99.36081684 -1.649238969 0) (99.37639125 -1.801722504 0) (99.66752952 -1.640415741 0) (99.01783609 -1.607788368 0) (99.04392022 -1.761424903 0) (98.6576735 -1.598675146 0) (97.59197713 -1.566602848 0) (97.62830269 -1.717939901 0) (97.26191069 -1.553622825 0) (96.36530804 -1.506920262 0) (96.4173944 -1.652229474 0) (96.09768519 -1.48869023 0) (95.38566757 -1.425732016 0) (95.4543857 -1.561875131 0) (95.17788382 -1.401921447 0) (94.64030087 -1.32183106 0) (94.7263828 -1.445829498 0) (105.8765511 -1.127587663 0) (105.6500135 -1.200630881 0) (105.5835528 -1.304674623 0) (105.5516796 -1.222243187 0) (105.1818309 -1.280062538 0) (105.1289487 -1.39396934 0) (105.0319703 -1.297193945 0) (104.4601256 -1.340039942 0) (104.426514 -1.462584668 0) (104.1857594 -1.349542293 0) (102.0641682 -1.354897299 0) (102.0479674 -1.480443546 0) (100.0976282 -1.368092877 0) (99.33833177 -1.472713683 0) (99.355322 -1.602353663 0) (99.6231922 -1.463442706 0) (98.98319984 -1.430484973 0) (99.0091584 -1.560634892 0) (98.62295866 -1.421553306 0) (97.54788428 -1.391903133 0) (97.58051773 -1.520147848 0) (97.21358661 -1.380265374 0) (96.30349138 -1.338969795 0) (96.34908949 -1.462281456 0) (96.03119685 -1.322979619 0) (95.30465825 -1.267997828 0) (95.36435277 -1.383846935 0) (95.09185974 -1.247249975 0) (94.53874367 -1.177458344 0) (94.61358791 -1.283379431 0) (105.9696724 -1.016234442 0) (105.7278649 -1.079673377 0) (105.6705505 -1.168532679 0) (105.6249808 -1.098356494 0) (105.2432581 -1.148143815 0) (105.1980952 -1.245005403 0) (105.0893138 -1.162777044 0) (104.4971175 -1.198523272 0) (104.4701457 -1.302390329 0) (104.2103267 -1.206002997 0) (102.0910391 -1.210582245 0) (102.0703956 -1.316435383 0) (100.2319185 -1.225507159 0) (99.31530942 -1.32360408 0) (99.33257878 -1.432988399 0) (99.57895228 -1.314234732 0) (98.9487871 -1.281248166 0) (98.97457399 -1.390675077 0) (98.58945112 -1.272474749 0) (97.5079317 -1.244795742 0) (97.53754039 -1.352668316 0) (97.17023385 -1.234254602 0) (96.24891976 -1.197371932 0) (96.28922647 -1.30122046 0) (95.97267623 -1.183205798 0) (95.2337115 -1.13471297 0) (95.28605823 -1.232491262 0) (95.01656531 -1.11645771 0) (94.44977996 -1.055063196 0) (94.51542245 -1.144746474 0) (106.0512226 -0.9221153629 0) (105.7955598 -0.9777473032 0) (105.7456574 -1.05246031 0) (105.6886088 -0.994065605 0) (105.2960861 -1.037357498 0) (105.257202 -1.118532642 0) (105.1382726 -1.049960709 0) (104.5269378 -1.079990299 0) (104.5051776 -1.166814629 0) (104.2291979 -1.085910335 0) (102.1219667 -1.090212242 0) (102.0984661 -1.178340359 0) (100.3636317 -1.105865787 0) (99.29293562 -1.199028949 0) (99.30961198 -1.290261173 0) (99.53546438 -1.189838204 0) (98.91461148 -1.157040348 0) (98.94022178 -1.247954734 0) (98.55691309 -1.148392943 0) (97.47133369 -1.122275526 0) (97.49849634 -1.211964654 0) (97.13091779 -1.112616725 0) (96.20022957 -1.079297752 0) (96.23624434 -1.165746624 0) (95.9206203 -1.066605523 0) (95.17093233 -1.023360578 0) (95.21731761 -1.104907006 0) (94.94998654 -1.007125188 0) (94.37106876 -0.9525564572 0) (94.42922437 -1.027520954 0) (106.1233319 -0.8441970117 0) (105.8550901 -0.8935780322 0) (105.811136 -0.9550879696 0) (105.7444712 -0.9080154083 0) (105.3419715 -0.9461292208 0) (105.3081485 -1.01277341 0) (105.1804564 -0.9571065686 0) (104.5511614 -0.9825970309 0) (104.5334632 -1.05372426 0) (104.2438274 -0.9873288433 0) (102.155207 -0.9916019592 0) (102.1301213 -1.063593272 0) (100.4907069 -1.007290124 0) (99.27227896 -1.096641301 0) (99.28757554 -1.171433913 -1.405912832e-36) (99.49328181 -1.087839563 0) (98.88064839 -1.055405502 0) (98.90610201 -1.129601831 0) (98.52511213 -1.046850683 0) (97.43739138 -1.021916829 0) (97.4626251 -1.095193259 0) (97.09481736 -1.012947283 0) (96.15625564 -0.9824413702 0) (96.18883632 -1.053175692 0) (95.87375361 -0.9709185163 0) (95.11474205 -0.9318566862 0) (95.15632357 -0.9986983415 0) (94.89045824 -0.9172414375 0) (94.30076205 -0.8681998939 0) (94.3527709 -0.9297427785 0) (106.1879496 -0.7814278648 0) (105.9082161 -0.8260171151 0) (105.8689065 -0.8751719145 0) (105.7942437 -0.8390073709 0) (105.3823765 -0.8731155546 0) (105.3525328 -0.9262157571 0) (105.2172897 -0.8828290485 0) (104.5711252 -0.904832674 0) (104.5565031 -0.9613691835 0) (104.2553837 -0.9086967998 0) (102.1894204 -0.9131101854 0) (102.1637154 -0.9701475797 0) (100.611763 -0.9283783363 0) (99.25408994 -1.014493041 0) (99.26748083 -1.074275815 0) (99.45283412 -1.006221115 0) (98.8468659 -0.9743225358 0) (98.87218705 -1.03327758 0) (98.49382819 -0.9658288602 0) (97.4054626 -0.9417303177 0) (97.42924437 -1.000047614 0) (97.06118436 -0.9332726069 0) (96.11596003 -0.9048995212 0) (96.14587519 -0.9613109887 0) (95.83094593 -0.8942723485 0) (95.06375306 -0.8584354058 0) (95.10155886 -0.9118679822 0) (94.83651849 -0.8450758412 0) (94.23725795 -0.800326935 0) (94.28431391 -0.8497039883 0) (106.2469732 -0.7331570808 0) (105.9565066 -0.7741554383 0) (105.9206867 -0.8116107886 0) (105.839409 -0.7860730026 0) (105.4186024 -0.8172035045 0) (105.3917774 -0.8575735646 0) (105.2500447 -0.8259741278 0) (104.5880048 -0.8454211371 0) (104.5755919 -0.8883054734 0) (104.264874 -0.8486962798 0) (102.223693 -0.8534360386 0) (102.1980153 -0.8964766231 0) (100.7258977 -0.8680175294 0) (99.23881266 -0.9510217097 -7.932674419e-36) (99.24998524 -0.9969258102 0) (99.41451971 -0.9433886227 7.916035448e-36) (98.81323967 -0.9122069442 0) (98.83844555 -0.9570687949 0) (98.46285904 -0.9037445604 0) (97.37495364 -0.8801551806 0) (97.39772481 -0.9246442036 0) (97.02933142 -0.8720423763 0) (96.07840176 -0.8451712397 0) (96.10634905 -0.8883479953 0) (95.79117499 -0.8351888457 0) (95.01669276 -0.8017046577 0) (95.05166673 -0.8427335293 0) (94.78680267 -0.7892681574 0) (94.17878348 -0.7476782469 0) (94.22223013 -0.785717943 0) (106.3018463 -0.6987881492 0) (106.0012957 -0.7372572055 0) (105.9679836 -0.7635541016 0) (105.881245 -0.748427104 0) (105.4517958 -0.7774791906 0) (105.4271433 -0.805786044 0) (105.2798442 -0.7855898504 0) (104.6028124 -0.8032930839 0) (104.591865 -0.8333045417 0) (104.2731531 -0.8062156176 0) (102.2574476 -0.8114368479 0) (102.2322073 -0.8413191121 0) (100.8325032 -0.8251981859 0) (99.22680282 -0.9051051936 2.889499723e-36) (99.23549117 -0.9379318266 0) (99.37867803 -0.8981753976 -2.8835664e-36) (98.77974772 -0.8678529565 0) (98.80485511 -0.8994929705 0) (98.43201489 -0.8593931698 0) (97.34529684 -0.8360041011 0) (97.36748116 -0.8675232096 0) (96.99860474 -0.8280766997 0) (96.04270738 -0.8021138117 0) (96.06933616 -0.8328817223 0) (95.75350112 -0.7925447208 0) (94.9724309 -0.7606293005 0) (95.00540615 -0.7900028025 0) (94.74012044 -0.748827137 0) (94.12401791 -0.7094738357 0) (94.16479247 -0.7367717501 0) (106.3539171 -0.6778146327 0) (106.0437726 -0.7147385535 0) (106.0120872 -0.7302987397 0) (105.9208839 -0.7254529029 0) (105.4829819 -0.7532299918 0) (105.4597418 -0.7699904736 0) (105.3077003 -0.7609399355 0) (104.6164624 -0.7776835376 0) (104.606297 -0.7953654148 0) (104.2809808 -0.7804896073 0) (102.290312 -0.786368468 0) (102.26577 -0.803602028 0) (100.9312921 -0.799280145 0) (99.21836554 -0.8760356467 0) (99.22435356 -0.8962785472 0) (99.34548278 -0.8698141463 0) (98.74632961 -0.840370768 0) (98.77139214 -0.8594297088 0) (98.40109864 -0.8318773557 0) (97.31594689 -0.8083926762 0) (97.33795248 -0.8275795081 0) (96.96837784 -0.8004995453 0) (96.00806158 -0.7748854908 0) (96.03397912 -0.793850065 0) (95.71705501 -0.7655142736 0) (94.92994237 -0.7344386874 0) (94.96168196 -0.7527110247 0) (94.69539643 -0.7229990588 0) (94.07176135 -0.6849789569 0) (94.11076102 -0.7020551023 0) (106.4105921 -0.6694310667 0) (106.0898447 -0.7058691631 0) (106.0541285 -0.7113042451 0) (105.9638086 -0.7163744263 0) (105.5165612 -0.7434437272 0) (105.4905469 -0.7495127957 0) (105.3376852 -0.7509362605 0) (104.6317957 -0.7675905592 0) (104.6197882 -0.7737958263 0) (104.2906082 -0.7707716106 0) (102.3258581 -0.7789821769 0) (102.2982627 -0.7826644101 0) (101.0323129 -0.790913167 0) (99.2129653 -0.861838616 -2.895103996e-37) (99.21679345 -0.8714428362 0) (99.31147969 -0.8566036883 2.890924249e-37) (98.70892368 -0.8287082474 0) (98.73805565 -0.8360470722 0) (98.36615547 -0.8201707859 0) (97.28277657 -0.796228222 0) (97.30864428 -0.8039885335 0) (96.93436896 -0.7881962116 0) (95.96959395 -0.7623743611 0) (95.99951128 -0.7704732967 0) (95.67673458 -0.7530047502 0) (94.88330917 -0.7221044742 0) (94.91951539 -0.7301490662 0) (94.64639291 -0.7107618277 0) (94.01460771 -0.6730015778 0) (94.05896498 -0.6808927239 0) (83.99178417 -3.992910489 6.550549155e-19) (83.28117789 -3.52333986 -5.537441257e-19) (83.95844495 -2.840747149 -1.063208546e-18) (137.2323137 13.21132087 -8.947917744e-19) (140.8337674 15.43522104 -1.203593863e-18) (142.1932018 10.81035764 1.219976901e-18) (125.1862227 28.46202339 0) (128.8104531 27.2047301 4.137130602e-19) (127.0770818 24.02415783 -9.694296611e-19) (87.47596585 -5.892741185 -6.985023711e-19) (87.03290254 -5.655391113 -3.579422865e-19) (87.46307312 -5.284218445 5.421966212e-19) (137.4017653 -5.735371145 3.169395995e-19) (140.4262151 -6.447566974 1.205420872e-18) (138.9165139 -9.494851498 2.243963134e-18) (142.4559324 9.273990386 1.279499911e-18) (142.7584706 4.915149387 -1.283908765e-18) (139.0835609 5.467132201 -9.514180989e-19) (89.49517316 -6.996872283 -3.117345652e-19) (89.17310729 -6.81758196 -3.155991049e-19) (89.51857702 -6.563162545 3.772334254e-19) (128.6798321 -17.08764349 9.249526744e-19) (130.3894862 -18.59522665 0) (128.305355 -19.88268008 8.304135891e-19) (138.3509503 -10.44518259 -1.124379006e-18) (136.5087473 -12.99989 -2.112375145e-18) (134.6044523 -11.02108211 0) (90.98098732 -8.129102809 2.901356622e-19) (90.70275138 -7.887286913 5.894944475e-19) (91.06692368 -7.682137515 -6.827312599e-19) (118.791812 -21.58664362 2.66161e-20) (119.259796 -22.9151669 2.806772178e-20) (118.0006263 -23.11792639 -6.068027343e-19) (127.100389 -20.05037919 -1.105170523e-18) (125.758302 -20.73507206 -2.198083546e-19) (124.9372002 -19.40892229 0) (92.7164472 -9.550188924 0) (92.34989607 -9.281064022 0) (92.74463028 -8.909252658 0) (103.870816 -31.03479703 -5.224933477e-21) (103.1401251 -31.33821496 0) (102.850515 -31.15457179 8.978949263e-20) (105.1599079 -29.68185776 4.879533417e-19) (105.887607 -30.01683018 -5.344556981e-19) (105.165651 -30.73466858 4.40280085e-21) (111.8305774 -21.96464863 0) (111.829445 -25.76558225 8.985576242e-19) (108.0913945 -24.73878383 -6.133864938e-19) (116.7502108 -23.25067618 0) (115.5097169 -23.32199761 0) (115.2301656 -22.06517239 0) (95.06873177 -11.04279996 0) (94.5831913 -10.74282806 3.550983591e-18) (95.01998318 -10.21108658 3.258694832e-18) (96.06236145 -23.09958389 2.322426131e-19) (91.53204222 -23.52181079 7.445898599e-20) (90.75318918 -20.32370518 0) (100.0034847 -31.35102511 -5.208565526e-19) (99.69533984 -30.87639344 -6.800842591e-20) (102.0615952 -30.27074467 -1.141385067e-19) (98.2794054 -20.63156332 0) (98.78988654 -21.86550173 0) (97.03747156 -22.88113614 -1.23875901e-19) (104.4574903 -19.19215854 2.04481074e-19) (103.0454803 -21.54897287 -5.783027452e-19) (101.0452799 -19.15255042 8.685474432e-20) (106.9355065 -24.24143528 -1.923664754e-20) (103.8957835 -22.306917 3.624873844e-19) (105.2056014 -19.60780373 -2.043450525e-19) (73.53107324 6.268436566 -6.900424314e-19) (80.5098082 13.70516251 6.776254944e-20) (84.18900674 8.500353976 0) (34.97119473 61.91423647 3.743893607e-18) (29.95170756 44.21278713 1.840354391e-18) (23.96110879 32.68679791 0) (88.54501826 16.38702763 0) (82.22003899 17.39875104 0) (85.37316832 28.28748206 0) (67.35921776 91.1748783 3.831387845e-18) (48.56156829 79.5246062 -2.930396964e-19) (118.1589086 25.82922299 0) (117.9732537 28.95155797 1.19335125e-18) (121.4881 29.01625174 0) (102.3105049 23.34385191 1.388717031e-20) (106.0206933 29.99982923 9.802280878e-19) (111.1220908 23.70361013 0) (145.3492633 30.95451753 -2.23845577e-18) (146.8079145 31.87395698 1.11030154e-18) (147.633876 30.5747203 0) (126.6819863 47.91066616 0) (131.267856 47.1837986 -1.622620153e-19) (130.1883192 43.03556109 -1.951727082e-18) (128.6556211 7.49341577 0) (125.9223451 12.06788445 -1.725270437e-18) (131.7319874 16.35443115 -8.607494889e-20) (121.4313056 8.02709561 -7.673574089e-19) (124.1129717 9.725106085 1.860407775e-18) (125.6786783 7.204254072 0) (119.6281288 13.51512745 -6.64457877e-19) (122.0607543 11.87659097 -8.239127351e-19) (119.7894094 9.821676662 7.479161277e-19) (89.58190003 -3.880338988 0) (89.15840648 -3.351798413 6.643888732e-19) (90.01218616 -2.959922995 -4.358971679e-19) (87.14248365 -4.507063235 0) (88.39865294 -3.598282974 8.1701858e-21) (89.12358175 -4.347235909 0) (87.36764027 -2.204702848 0) (88.14628885 -3.273339377 0) (86.79821693 -4.247958769 -4.650444494e-19) (149.7504827 -1.949926683 3.210280378e-18) (150.561931 -2.184530256 -3.328050298e-18) (150.2899176 -2.975878087 1.135522378e-18) (152.7651167 10.41778168 -1.219384834e-18) (152.6611316 9.394536637 -2.513877801e-18) (151.7119616 9.449951314 -1.191702195e-18) (128.9700637 -4.927506634 0) (129.8658218 -0.5538990192 1.015597991e-18) (136.1872313 -1.206910342 -2.346567294e-18) (124.1433867 -0.9257195076 0) (127.2031106 -1.058085876 2.533186688e-19) (126.7755401 -3.65583304 -9.291658691e-19) (126.7063248 4.47511039 -6.961246599e-19) (127.200265 1.682243805 2.109791695e-18) (124.0674917 1.381100253 -1.756846473e-18) (91.16421853 -5.4742781 4.835334231e-19) (90.78656861 -5.130178597 0) (91.42739923 -4.743277886 0) (89.32262292 -6.039456089 0) (90.21248095 -5.366580945 0) (90.80727921 -5.846094587 -3.631645243e-19) (89.35163988 -4.591917911 4.019955162e-19) (90.00606409 -5.167187542 -3.725728472e-21) (89.08837405 -5.882800714 0) (88.57200214 -6.501400527 -9.718655848e-19) (88.17529187 -6.292384502 -6.643639322e-19) (88.56964539 -5.98438702 -1.015813076e-19) (87.89794263 -7.005393987 0) (88.05392806 -6.856503012 -7.144172989e-19) (88.1912185 -6.913731445 7.115290857e-19) (87.18805054 -6.421255003 -2.409606183e-21) (87.33182783 -6.502151621 7.367349701e-19) (87.15169571 -6.653188009 -8.496698566e-19) (137.2223302 -19.72812244 -8.537013299e-19) (137.4062241 -20.16317287 -4.352347271e-19) (136.9426937 -20.45902199 -4.304439642e-19) (143.8816042 -14.22919061 3.163610321e-18) (143.4480196 -14.77184387 0) (143.0436599 -14.24876352 9.810728344e-19) (123.2046163 -13.39845347 0) (125.7251675 -10.90012886 -7.226404793e-21) (129.7383442 -13.83697442 1.006357156e-18) (121.3869007 -8.801477676 0) (123.6098039 -10.10132956 -1.673277267e-18) (122.1517761 -11.73088846 8.144187909e-19) (125.9866189 -6.050735769 9.310451799e-19) (124.9085273 -8.205758514 1.658092209e-20) (122.4350877 -7.111183403 8.425990248e-19) (92.61812722 -6.683447652 1.047070833e-20) (92.25477071 -6.397529751 -1.073108562e-18) (92.82541988 -6.021852123 3.55011114e-19) (90.92984163 -7.186991251 -3.497148179e-19) (91.73197307 -6.619766487 0) (92.28326397 -7.037939056 -3.268097883e-19) (90.99623031 -6.020901847 0) (91.55107202 -6.454664834 -3.456935312e-19) (90.74490518 -7.04205707 3.494766958e-19) (90.25538036 -7.508234508 0) (89.98385053 -7.307778305 0) (90.32300338 -7.095024681 0) (89.46017381 -7.779216854 2.571718899e-19) (89.73622939 -7.702748042 8.281285846e-20) (89.81248905 -7.768960041 1.65396144e-19) (89.21335786 -7.366699178 -3.4140492e-19) (89.30860504 -7.41929168 0) (89.14032886 -7.513946781 0) (125.0182598 -25.85142322 0) (125.0905286 -26.65162145 0) (124.3281109 -26.86133101 0) (129.968408 -25.11582116 1.425625022e-18) (128.7824091 -25.60449436 0) (128.8473709 -24.49469434 0) (94.18282175 -7.91539039 5.471418869e-19) (93.53571189 -7.547428162 -5.896475803e-19) (94.31480703 -7.063908907 6.173587966e-19) (92.51263041 -8.435738003 9.06886362e-22) (93.27471132 -7.753379094 2.947862441e-19) (93.92990561 -8.157855808 2.761924138e-19) (92.4704859 -7.201680425 0) (93.07097004 -7.610030339 0) (92.29653528 -8.273069528 -6.268649135e-19) (91.78175632 -8.823216645 0) (91.46760248 -8.557122669 2.827792435e-19) (91.85456443 -8.331362697 -2.405602097e-19) (90.5913065 -9.123584456 0) (91.07363513 -9.043020528 -3.860169086e-20) (91.25676681 -9.145506274 0) (90.54433894 -8.500233531 7.993342731e-20) (90.6339847 -8.586049677 2.369053283e-19) (90.27915959 -8.711998841 0) (109.9246063 -31.91412443 -3.466559147e-19) (110.1440484 -31.94376048 2.715782385e-19) (108.4449881 -32.05968113 -4.588936801e-19) (114.8475535 -27.23598841 1.90865777e-20) (114.4945802 -29.40959566 4.698179596e-19) (112.2769551 -29.18013141 1.256543684e-18) (117.675836 -27.8919079 -5.492110831e-19) (116.9496009 -27.92497485 -5.083819527e-19) (116.9753828 -27.17093937 5.207391681e-19) (96.1973642 -8.710956797 2.202413576e-19) (95.41304981 -8.435910724 0) (96.07806479 -7.845418982 0) (94.60249268 -9.651354045 -3.176369926e-19) (95.19781498 -8.720336029 2.458446215e-19) (96.0231672 -9.02632315 2.231645405e-19) (94.16556025 -8.28391332 -2.76347174e-19) (94.9237266 -8.624678463 -2.544535549e-19) (94.29663607 -9.517866314 -5.942761832e-19) (93.82719233 -10.27483622 2.424169677e-19) (93.37947299 -10.00503429 0) (93.78157485 -9.564695153 0) (91.48300883 -10.80118409 -4.514925287e-19) (92.266265 -10.79129101 0) (92.31786127 -10.8469967 8.68961377e-19) (91.69951399 -10.06515165 0) (91.75045793 -10.11719203 2.321433083e-21) (91.32441372 -10.15272221 -4.745127889e-19) (81.48663822 -8.135151673 0) (81.88765173 -9.189794143 0) (97.53236425 -10.53907139 -1.78078104e-19) (96.07433416 -15.14044954 1.041899859e-19) (76.35743725 -11.70093875 1.546375001e-19) (82.10810267 -11.5934025 0) (91.25364828 -19.44829186 0) (92.4127679 -17.18840862 0) (95.11793455 -18.20300726 0) (79.3272439 -5.978918309 5.804730999e-19) (79.28999718 -7.294685674 0) (77.6063138 -7.037352657 0) (83.40517498 -6.962405066 -1.642145972e-19) (82.75088151 -7.149910543 0) (82.85332273 -6.423173048 0) (71.45724229 2.40431551 0) (69.13042594 1.95021641 0) (68.76850083 4.567256002 0) (76.8014982 -6.425784085 1.557273451e-19) (75.47955884 -5.834841656 0) (76.26073417 -4.54507903 0) (151.7295932 12.50198129 -2.318475883e-18) (152.8219232 12.54827237 1.151797363e-18) (152.8274522 11.468657 1.190201107e-18) (148.3877499 29.24102641 0) (149.0529461 27.94788092 0) (147.6388291 27.23431096 0) (137.4285455 21.58858491 0) (140.1686265 17.01789817 -4.008631595e-20) (135.944672 15.77941507 -1.111881078e-18) (146.5818916 24.57803378 0) (144.2293941 23.39741373 1.354687599e-18) (143.0387746 25.41604797 0) (147.8659067 11.67277585 1.382873322e-18) (147.5869034 13.53877739 -1.418990229e-18) (150.353143 14.44221958 0) (86.45685176 -6.266043496 3.867441608e-19) (86.90738684 -5.808451242 0) (87.34149649 -6.042460152 3.523135765e-19) (86.24241484 -5.532102042 -3.831585118e-19) (86.75799385 -5.734116791 -7.272005004e-19) (86.31674213 -6.207208982 9.75270513e-20) (87.1450247 -5.08105814 0) (86.87530411 -5.577208797 3.644866214e-19) (86.51614655 -5.27608291 1.131167392e-19) (85.85233489 -6.282990726 8.204349478e-19) (85.63840045 -6.466262836 -4.983990542e-19) (85.41923202 -6.449721231 3.336025885e-19) (86.2914674 -6.820660351 3.135080084e-19) (86.12322561 -6.679009028 -6.170732034e-19) (86.53871314 -6.492619816 0) (84.12551915 -6.353035488 3.278851518e-21) (84.0763547 -6.744695076 3.251459409e-19) (83.5893186 -6.904059777 0) (85.34285931 -6.448315993 3.318854991e-19) (85.0923429 -6.470623815 0) (85.345758 -6.233896721 -1.041695305e-19) (144.2747878 -12.60879882 -1.061534205e-18) (144.7212997 -13.08431956 -5.544267575e-18) (144.3068218 -13.66673725 -1.135326138e-18) (150.0097449 -3.757589751 1.135379555e-18) (149.7112104 -4.544060693 1.1003645e-18) (148.9633493 -4.238825886 0) (141.9409719 -1.761865988 -1.235515829e-18) (140.8582253 -5.319057555 1.18098323e-18) (137.5161851 -4.074708882 -3.277029013e-20) (147.6453975 -5.32027124 -2.116500309e-18) (145.7029796 -4.411830937 0) (146.2606852 -2.441189031 1.072024587e-18) (142.506829 -11.48816963 -3.137655743e-19) (143.2001414 -10.39944234 -1.242258425e-18) (144.5915482 -11.0580687 1.048525505e-18) (150.637654 7.587288076 0) (148.1043084 8.07659707 0) (148.036436 9.849241033 1.422245309e-18) (146.4462989 -1.721819789 0) (146.890018 0.4144893268 -3.276304688e-18) (149.3924601 -0.08590460029 2.115347842e-18) (138.4333097 3.507786121 1.077436251e-18) (142.6988276 3.533174696 -1.252334696e-18) (142.2039781 -0.504300342 -8.460803418e-21) (88.85665619 -7.367919582 -4.42428924e-19) (89.01510861 -7.263439656 -3.425635886e-19) (89.11560424 -7.314560357 0) (88.32385314 -6.967420735 -1.976221608e-21) (88.45137816 -7.018391133 -1.052600354e-18) (88.30201737 -7.151492367 4.478478035e-19) (89.29605202 -6.427939647 -1.012544451e-19) (89.05972074 -6.754705904 3.158467662e-19) (88.69877158 -6.56931179 6.435433028e-19) (88.06740378 -7.216517936 -2.756781808e-19) (87.95536273 -7.286734459 -2.759305555e-19) (87.8892674 -7.269474529 0) (88.68588946 -7.540468854 0) (88.64261617 -7.517471676 0) (88.77247357 -7.475939214 -2.790815708e-19) (87.02641955 -6.787444725 0) (86.58477503 -7.02967954 -6.404247334e-19) (86.35597271 -6.875143459 1.300657306e-21) (87.82244356 -7.248517511 2.804577662e-19) (87.75376507 -7.228661078 -2.827742002e-19) (87.86340052 -7.157928228 0) (131.205885 -23.40415847 1.143402676e-18) (131.5484547 -24.36252595 0) (130.3645745 -24.93322514 -7.30572093e-19) (136.4863629 -20.76169038 -8.565503863e-19) (136.0275113 -21.04179203 1.70219083e-18) (135.8932997 -20.55549802 8.324777065e-19) (133.1439978 -16.47889136 1.914527993e-18) (131.073035 -18.10491483 0) (129.9147358 -16.1219283 0) (134.999263 -20.30202526 -1.034310538e-18) (134.5251411 -19.44593041 -9.886560399e-19) (135.3437947 -18.88079164 -1.036442002e-18) (128.8051078 -20.60482037 -1.663632923e-18) (130.9518587 -19.33264508 0) (132.540828 -21.76607944 -7.206191734e-19) (141.8190659 -14.79559757 -9.327375118e-19) (141.0322221 -13.50058177 0) (141.7826721 -12.52271554 0) (136.1719408 -18.27084798 3.15775452e-18) (137.0065917 -17.60690869 2.425549005e-20) (137.9222096 -18.53877683 8.479533484e-19) (133.4938839 -12.49809287 9.13654458e-21) (135.8574093 -13.78409571 0) (133.8291714 -15.85557582 -1.957069245e-18) (89.99379381 -8.405267863 -1.256425944e-19) (90.3697924 -8.326550952 4.003169616e-19) (90.45565422 -8.413665309 0) (89.88779075 -7.840170323 0) (89.9640196 -7.915902463 0) (89.68275256 -8.026640251 0) (90.87998722 -7.528453119 0) (90.6120285 -7.80647483 2.546832146e-23) (90.3441262 -7.581779449 0) (89.46097231 -7.97390192 2.719362854e-19) (89.25240249 -7.994204656 5.29901578e-22) (89.23198544 -7.955126818 -2.802137873e-19) (89.5499331 -8.611501461 0) (89.51302365 -8.566613147 7.748993943e-24) (89.84646761 -8.53768338 0) (88.90857183 -7.54319767 0) (88.77344569 -7.588338907 5.803139159e-19) (88.72958718 -7.565204131 0) (89.21187508 -7.920312704 -8.340845992e-19) (89.19077323 -7.889517274 -6.13799366e-22) (89.38148578 -7.867936527 0) (119.132854 -27.02282532 5.60314078e-19) (119.1374902 -27.77347353 5.639033632e-19) (118.4057145 -27.84135956 -5.772542226e-19) (123.5727135 -27.05203314 1.799431208e-19) (122.8231692 -27.21153062 0) (122.77073 -26.41994525 0) (91.22044023 -9.989334451 8.630304613e-19) (91.61568036 -9.957961069 -1.128816094e-19) (91.65335046 -10.01196425 2.270795479e-19) (91.30366286 -9.197839695 2.296346876e-19) (91.45762417 -9.341373709 -4.594707709e-19) (90.84068739 -9.488264946 -7.468744381e-19) (92.62660127 -8.816947227 -2.505107306e-19) (92.23105873 -9.190705442 2.724004699e-19) (91.89028941 -8.916017231 0) (90.37310449 -9.407787638 -5.060759386e-19) (89.70986266 -9.404215575 5.317090016e-19) (89.68863836 -9.368666216 2.629589241e-19) (89.96791774 -8.669752389 -2.624539268e-19) (89.62741315 -8.700312475 -2.707196924e-19) (89.58744969 -8.656637867 0) (89.6850687 -9.327569141 -5.123631046e-19) (89.72826536 -9.273826047 5.130372313e-19) (90.31125131 -9.251174905 -7.527031946e-19) (108.983062 -26.44771284 -7.788004087e-19) (108.6864609 -28.36224532 -6.135895496e-19) (106.6426509 -27.56074615 3.708627694e-19) (111.5471899 -29.06223458 0) (109.3869795 -28.56033533 -1.51144902e-21) (110.0445239 -26.36769564 6.633771974e-19) (108.3667185 -32.06294069 6.629485929e-19) (109.3896151 -31.82417469 0) (109.6695117 -31.8672726 3.339531563e-19) (80.99263467 -10.36033255 4.522757495e-19) (93.41457673 -11.49721292 0) (93.61929062 -12.17855065 -2.486277982e-19) (92.37691083 -10.90944767 0) (92.44599644 -10.97562981 0) (91.62075609 -10.98582344 0) (94.87134718 -10.08282342 0) (94.48829026 -10.60896695 0) (93.98717639 -10.36033547 3.076815975e-21) (96.47491165 -26.61267525 -1.80597046e-21) (95.99603745 -25.8359591 4.124362051e-20) (97.18891694 -25.44152499 3.027012298e-20) (64.71290018 -15.78375079 0) (64.36834693 -16.60019989 -1.226457148e-20) (45.07887052 -4.480394468 6.857545359e-20) (98.77945129 -27.53163939 -1.148941518e-19) (97.54744137 -28.05738039 1.072020337e-20) (96.99537916 -27.35132349 -1.077962136e-20) (87.94572877 -1.178241485 -4.63564865e-19) (87.66232109 -0.1924253923 1.240915319e-19) (88.96825688 -0.08391587334 -4.493000644e-19) (83.77626196 -0.924502998 5.296077104e-19) (86.47904678 -0.1351050636 0) (87.11424701 -1.738775122 -4.688815952e-19) (86.41507298 2.684568316 2.691719471e-21) (86.3588987 0.5116418055 0) (83.39037483 -0.05397342379 0) (80.92298589 -1.057257613 0) (80.24007321 0.2588323386 0) (81.76067552 0.6560889233 -7.162339152e-21) (75.34626172 -1.629198998 0) (78.76320336 0.02623386548 0) (80.13052695 -2.042078363 5.596098265e-19) (77.37258475 3.701814676 -1.741872516e-19) (78.45762919 0.933483883 0) (74.54616434 -0.3536815978 0) (123.6055959 72.0124368 -4.049567695e-18) (129.147102 72.44880981 -1.036777337e-18) (129.1423603 66.68068329 1.77001189e-18) (86.12361015 -5.08716367 0) (85.6841154 -4.881695236 4.790262189e-19) (86.01895249 -4.379902496 4.759768472e-19) (85.05052038 -6.011405842 0) (85.36180216 -5.219783737 4.185236185e-19) (86.04658002 -5.44178843 -3.921126505e-19) (84.17798145 -4.806568051 0) (85.09880647 -5.109449106 0) (84.79949611 -6.009700328 -4.201330035e-19) (116.4937345 -17.68012405 7.356263615e-19) (118.6210198 -16.41208455 6.197179066e-19) (120.5620592 -19.66824896 -1.355839707e-18) (116.0129691 -13.43719194 0) (117.2600269 -15.1243883 -1.65273877e-19) (115.5693931 -15.78080089 0) (120.5821853 -13.10240198 -1.956767182e-19) (118.94086 -14.22349896 -8.926507158e-19) (117.4608275 -12.59090558 -6.294987002e-19) (115.7004681 -30.24502994 3.92064706e-19) (115.1870094 -31.16030418 0) (114.2093958 -31.15322005 6.000774526e-21) (117.3019671 -30.37803411 4.635079564e-19) (116.9350958 -30.3911716 -4.623127858e-19) (117.1088558 -30.02115425 0) (101.3269907 -24.76809117 2.079102125e-19) (103.0224681 -26.31425776 2.999023489e-19) (100.9745534 -28.14275575 6.683453262e-20) (104.2128863 -24.07505564 -1.526471557e-19) (103.4539739 -25.15213301 2.783686109e-19) (102.3892466 -24.2613186 -2.413912004e-19) (106.0024729 -27.24767532 4.620847409e-19) (104.6277299 -25.96985896 0) (105.2994276 -24.78638361 -4.516956583e-19) (81.80187048 -5.713211377 0) (82.60265363 -4.077753662 4.969662883e-19) (83.82548971 -4.634374651 -2.535750723e-21) (80.64848978 -2.628222866 -5.590392996e-19) (82.14459956 -3.760440599 0) (81.1606704 -5.562034573 0) (83.3560065 -2.216120171 5.399906694e-19) (82.50953914 -2.909958854 5.556530927e-19) (81.70751508 -2.103585226 0) (57.69823742 2.98173326 0) (54.32649061 2.585467347 0) (54.01048447 6.298634555 0) (65.11896996 -10.57134998 0) (63.06090509 -9.579507854 0) (64.44844285 -7.757922987 0) (135.2375376 37.02673494 0) (131.1711791 29.68590871 -4.725728447e-19) (124.8785989 31.98737582 0) (141.6312897 27.40439918 0) (139.9911822 29.32202463 1.283827414e-18) (142.2051177 31.24608142 -1.618036371e-18) (129.8023535 22.4566959 9.736376284e-19) (131.9153963 26.62810731 -3.896615396e-18) (136.234747 23.05324594 0) (118.2185402 -29.99607959 4.833517474e-19) (118.0220165 -30.32802333 -4.84672861e-19) (117.657169 -30.34552776 0) (119.9621985 -30.02883874 -5.12112172e-19) (119.678049 -30.10448715 -5.315133942e-19) (120.0241345 -29.7384093 1.031836945e-18) (121.8216 -22.29629022 0) (120.5325408 -22.64557788 -1.356511625e-18) (120.0061351 -21.29697056 6.836956327e-19) (121.1969063 -25.95309542 0) (121.0000236 -24.01855054 -1.824147529e-19) (122.5857887 -23.28463272 -6.706687159e-19) (118.31357 -24.5353658 0) (119.6432085 -24.31403303 1.713894627e-19) (120.4844747 -26.08433551 -6.047275669e-19) (127.1068389 -24.30331801 0) (126.0179836 -21.95865304 -7.474184333e-19) (128.1065416 -21.06127228 1.920005058e-20) (123.2666997 -22.99415948 6.709399005e-19) (125.3164288 -22.32238431 1.49133271e-18) (126.3518362 -24.57557382 0) (123.6975522 -19.99499558 7.750433386e-19) (124.435601 -21.33320248 -2.088502701e-19) (123.123094 -21.85046227 0) (104.2597877 -31.99845252 1.934125899e-19) (104.2154937 -31.9469754 -7.432708439e-19) (105.4527221 -31.74117261 2.371691955e-19) (92.01560841 -29.80056289 2.695952131e-19) (91.67916377 -29.88058975 -1.504904232e-19) (86.1248963 -28.75560294 0) (101.3705095 -29.80065757 0) (99.50611823 -30.6878303 5.910658474e-19) (98.74275581 -29.97124217 4.475091321e-20) (79.64416912 24.46388383 4.283236216e-19) (71.2164274 24.27469757 0) (74.78082644 39.28495661 -1.647363183e-18) (75.71407479 13.54647264 0) (72.12580391 20.52347821 0) (79.64620634 21.79901225 0) (61.92749939 9.208290327 0) (69.17908789 18.95027093 0) (74.36981461 12.24411362 0) (118.9851396 43.10544557 0) (117.7912605 46.87925345 0) (122.0564955 47.83875596 -1.021632484e-19) (98.6402638 36.58491341 0) (102.0806318 45.57018029 -6.10185913e-19) (110.4332883 39.05509967 0) (79.73522211 44.22715305 0) (97.72848953 47.35354161 0) (95.90076231 36.92047739 0) (142.470672 42.60255897 0) (146.8273757 38.2745639 0) (142.625411 35.73831557 0) (136.4661667 60.31058635 -1.988945302e-18) (133.4004449 50.35141818 4.582092878e-19) (126.7448864 52.85626422 -5.832133388e-19) (146.1673656 50.55960002 0) (143.8604909 52.39759877 0) (145.9806214 55.12120487 -1.271198014e-18) (133.7913098 41.7325768 0) (135.5270571 45.66475063 0) (140.8400431 43.93680846 0) (151.4720712 2.820213787 0) (151.2860377 1.952653618 5.331835351e-18) (150.5908628 2.145420451 1.233703995e-18) (151.1083951 4.748447322 5.411035492e-19) (151.8562591 4.592049691 7.516264822e-19) (151.6624522 3.698292856 0) (140.2417832 -17.95525712 1.415179859e-20) (139.7694184 -18.37776084 -3.85797334e-18) (139.4976433 -17.89334319 3.710670248e-18) (140.8568354 -16.60721412 -2.354800958e-19) (141.1852388 -17.08594509 0) (140.715152 -17.5225813 -9.840977921e-19) (126.6315106 -26.16036493 -5.886500154e-19) (125.8586127 -26.41764794 7.949128657e-19) (125.775054 -25.62372695 -7.774619003e-19) (125.6531254 -27.97257777 0) (126.241169 -27.63270423 6.592526944e-19) (126.5578173 -27.50500129 -6.491259162e-19) (124.001778 -28.29532256 -1.202319731e-18) (124.3755138 -28.19525586 1.208694268e-18) (124.1303414 -28.58563911 -4.596061191e-19) (126.8601042 -27.40801863 8.273338387e-20) (127.1788094 -27.29146915 1.372726989e-18) (125.9446939 -27.48903906 -1.390996592e-18) (128.0705792 -24.8094934 0) (128.3938516 -25.76276008 -6.803172831e-19) (127.1990091 -26.18878824 1.003328536e-20) (90.89621491 -8.850704328 -3.141412328e-19) (90.98300869 -8.945818532 3.939851268e-19) (90.559292 -9.069621364 0) (91.40696163 -8.749038297 -2.917625915e-19) (91.21787045 -8.850936495 0) (91.12305099 -8.758257123 6.100301439e-19) (91.41667497 -9.039742321 -5.952587488e-19) (91.31525404 -8.945422378 3.003513877e-19) (91.5086442 -8.840649458 2.920023212e-19) (112.7488197 -30.0646989 -8.90825173e-19) (112.3484293 -30.82412674 8.903934538e-19) (111.6133353 -30.73072545 1.08094968e-19) (113.8635831 -31.14370144 4.013836009e-19) (112.7757017 -31.08352116 -7.494561578e-19) (113.4913983 -30.15687771 0) (92.09190658 -10.45656198 0) (92.13388326 -10.51513454 0) (91.64901626 -10.54985429 -1.281175513e-19) (93.32525759 -10.24648024 -2.547145189e-19) (93.06430368 -10.3892241 0) (92.92941963 -10.2884335 0) (93.29387169 -10.65815006 1.976044793e-19) (93.08443128 -10.5045084 -2.014583442e-19) (93.47291959 -10.33953898 3.162069869e-19) (92.78624556 -9.865548518 -2.660369128e-19) (92.55132756 -9.993399656 -6.937428342e-20) (92.42978897 -9.897398363 -5.571059473e-19) (92.80146851 -10.18764556 2.708074533e-19) (92.67575234 -10.08962573 2.725008021e-19) (92.9159686 -9.959626355 -5.29600742e-19) (91.56160106 -10.36045645 -5.027075544e-19) (92.00586726 -10.34379668 0) (92.04785096 -10.39761751 2.403967926e-19) (81.10930282 -7.33163357 0) (79.79148693 -7.330313665 0) (80.1948425 -6.195807755 5.487361819e-19) (77.40938736 -9.207374523 -2.375733971e-18) (78.13879362 -9.232066446 1.806755601e-18) (78.17061255 -9.985551022 -8.842981773e-19) (82.29633514 -6.417119586 0) (82.48142892 -7.200227172 0) (81.49431649 -7.311010074 0) (71.21419053 -2.263432165 0) (70.00051814 -0.4102800002 0) (72.06374054 0.4827281645 0) (62.94609999 -3.243100213 0) (67.56694319 -1.468097207 0) (70.29963844 -3.946980862 0) (65.67909785 4.595177245 0) (66.23054101 1.332182007 0) (61.79383477 -1.305938296 0) (75.757721 -10.00849215 0) (75.78490095 -9.056948999 0) (76.62218915 -9.146158703 5.03719096e-19) (69.52969711 -6.794454135 0) (70.65577224 -7.526352755 0) (69.92521119 -8.844951583 0) (75.136776 -3.710251094 0) (74.06044127 -4.970824488 0) (72.60102258 -3.791957028 0) (152.0215452 19.24166928 1.221645159e-18) (152.2068987 18.06476617 -1.237418157e-18) (150.9174797 17.82885258 -1.20017643e-18) (150.0704817 21.28021157 2.373823487e-18) (151.4649073 21.68061031 -2.369344202e-18) (151.7788149 20.45842982 1.201440634e-18) (85.86904478 -6.520603744 6.96586418e-19) (85.70531711 -6.476848968 7.400938748e-19) (85.9993094 -6.315411585 0) (86.4743203 -6.450664858 -2.87561344e-19) (86.07058725 -6.640921701 -9.2135634e-19) (85.91587068 -6.546616912 0) (84.59656131 -6.578654189 -3.271913172e-19) (84.21942293 -6.698041335 9.759816472e-19) (84.42790652 -6.311473842 0) (85.14949131 -6.2357323 1.049458696e-19) (85.00176497 -6.48280019 3.296614427e-19) (84.70702652 -6.547305724 -6.530876729e-19) (147.0183109 -9.313409852 0) (146.6631984 -9.972310691 -3.680030238e-18) (146.153517 -9.576736521 2.3444074e-18) (147.1905336 -7.640979401 0) (147.7308964 -8.014341033 1.27644847e-18) (147.3668974 -8.658748877 1.260276535e-18) (145.0603581 -6.818396281 -9.658341592e-19) (145.6145035 -5.528311872 -3.365173686e-19) (147.3232253 -6.015834216 5.345630762e-19) (142.6396572 -4.588546524 -1.235779454e-18) (144.0796391 -5.083194279 0) (143.5974732 -6.310168399 4.516769369e-20) (144.9450456 -2.444955967 2.606221601e-18) (144.5352362 -3.803676649 -1.316778407e-18) (143.0402712 -3.364354691 -1.273537407e-18) (140.6467605 -9.089664935 -1.180639783e-18) (141.9174711 -9.734456568 3.025795055e-20) (141.2825054 -10.78007303 1.215525775e-18) (143.0784488 -7.497839269 -2.547485593e-18) (142.5175142 -8.640632655 -1.266052325e-20) (141.1997767 -8.027813204 0) (144.9568109 -10.45526695 -1.072581894e-18) (143.8595472 -9.257035993 -3.098281739e-20) (144.4806095 -8.062051547 2.916626271e-18) (147.9809521 4.695039187 -2.818942178e-18) (148.0825662 6.358059389 1.422957786e-18) (150.5580933 6.65625586 -3.006543527e-19) (144.3992557 6.377674658 5.612513438e-20) (146.1921936 6.386475182 -1.33870138e-18) (146.139353 4.800847002 1.394865914e-18) (146.053605 9.694691445 0) (146.1664703 8.01814188 0) (144.3326316 7.924665254 0) (143.9552607 0.5858082364 0) (145.5834696 0.3394057723 3.317786307e-19) (145.2978987 -1.072450841 -9.965739992e-19) (146.0158814 3.262252572 0) (145.8235133 1.760868083 1.345623052e-18) (144.1583149 1.974502711 -1.304104105e-18) (149.5711072 0.7074821341 3.367194425e-18) (147.5616271 1.531388996 6.908440083e-19) (147.8201877 3.082546631 -3.607292165e-19) (88.3089221 -7.386669211 0) (88.25389909 -7.36998557 7.104283237e-22) (88.36968275 -7.31578263 6.182828292e-22) (88.53298179 -7.367558622 -5.34718704e-22) (88.41461377 -7.420339961 0) (88.3626494 -7.404549501 2.813138167e-19) (87.21800684 -7.02774911 0) (87.13859126 -6.992043747 -2.940182766e-19) (87.25695889 -6.913964587 0) (87.49038422 -7.013402029 0) (87.37645241 -7.094941652 0) (87.29730014 -7.063491576 0) (133.1622102 -23.58796135 7.945130867e-19) (131.933883 -24.16721883 7.575492901e-19) (131.7914365 -22.8730234 -5.754450558e-21) (133.7642859 -21.86046193 -7.675370509e-19) (133.8709977 -22.28210843 0) (133.4562843 -22.49662365 -3.873690773e-19) (89.43316245 -8.257563238 0) (89.40054479 -8.217558037 9.048621085e-22) (89.62314887 -8.187373849 5.543801044e-19) (89.71705598 -8.307413281 2.358109645e-19) (89.47389277 -8.338108482 0) (89.45774428 -8.295664254 7.222986718e-20) (88.98468453 -7.72398027 2.664522378e-19) (88.95551608 -7.698644841 6.663882899e-22) (89.11556921 -7.658973643 1.317442072e-19) (89.22418723 -7.735351869 -2.619083375e-19) (89.05180523 -7.771499435 0) (89.01727107 -7.749159562 -5.633929048e-22) (122.3614203 -28.982221 -2.851701808e-19) (122.786067 -27.98415724 -5.181482081e-19) (123.7550526 -27.6229875 0) (121.2979928 -28.27647953 -8.451707279e-19) (122.0389153 -28.14050172 2.233920372e-18) (122.012444 -29.06706435 0) (122.0336016 -26.5736985 -6.541747657e-19) (122.0808415 -27.35270845 -6.798339135e-19) (121.3422975 -27.47996436 0) (121.0382264 -29.56771616 0) (120.4024669 -29.92012572 0) (120.1950899 -29.96122729 1.325930393e-18) (120.9866735 -29.22489863 1.257804876e-18) (120.9488944 -29.39176916 0) (122.5277199 -29.22700723 0) (91.37772155 -9.699173318 2.451078766e-19) (91.43153564 -9.742205052 -4.904916143e-19) (91.15726021 -9.788498602 -2.589856929e-19) (92.29636447 -9.49536652 0) (92.08415058 -9.615634096 -2.152312733e-19) (91.96790951 -9.52428526 2.867153343e-19) (92.3126539 -9.80144186 2.786107577e-19) (92.19859846 -9.707206337 -3.552845223e-20) (92.41610182 -9.586351922 0) (91.83061187 -9.124406468 0) (91.62677483 -9.2367806 7.384402608e-20) (91.51959186 -9.138028975 0) (91.85137984 -9.430960722 2.629131591e-21) (91.73731062 -9.334816318 -5.094518552e-19) (91.94340592 -9.218801903 5.677155172e-19) (90.99253623 -9.655349553 -1.021804598e-18) (91.26400602 -9.605215442 4.903546141e-19) (91.32120203 -9.653781104 -2.448471364e-19) (106.1202527 -32.03460213 -1.11727182e-20) (104.1180286 -32.09531256 0) (104.2037212 -32.04139495 -2.660970411e-19) (89.82396465 -8.908838231 2.879015637e-19) (89.80186178 -8.871603473 0) (90.15398586 -8.859128735 -2.730852278e-19) (90.23501727 -8.992152554 8.39704674e-19) (89.85807042 -9.000599719 2.979716567e-19) (89.84245323 -8.95098894 5.831486606e-19) (108.104383 -30.82321671 3.360710474e-19) (108.8466645 -31.02618673 1.820780209e-19) (107.7226062 -31.92734726 9.028450313e-19) (109.7801034 -29.49806911 7.069532528e-19) (109.3864525 -30.27331927 -8.987666533e-19) (108.6392955 -30.06746359 0) (110.8752877 -30.60906166 0) (110.1333455 -30.4554751 -1.906857608e-19) (110.5197668 -29.67316562 3.894373656e-19) (93.95250596 -10.60873577 -2.390680435e-19) (93.6279637 -10.85052007 -3.885795827e-19) (93.3712001 -10.71002276 0) (93.93871113 -10.96656103 2.670659346e-18) (93.71880773 -10.88931511 2.907662384e-19) (94.12087033 -10.68507393 2.377960492e-19) (88.97127241 -24.7640392 3.895025926e-19) (86.1203677 -24.43165109 -3.873808279e-19) (86.11829138 -24.0092746 4.474753151e-19) (82.93083393 -26.21935803 0) (83.69543592 -26.00964477 -2.710611389e-20) (88.19219871 -26.70808756 0) (86.74781528 -27.44510132 0) (80.93448728 -26.3371792 1.366026375e-20) (82.02859088 -26.29012543 -1.083215457e-20) (98.73375248 -29.35042981 1.484669983e-19) (98.13120654 -28.73080985 -1.850039126e-19) (99.38356702 -28.16614011 1.483212637e-19) (88.40846188 -28.84900758 0) (92.76639761 -29.48622341 5.657029963e-20) (92.40231234 -29.63837668 0) (95.26817622 -27.80876118 5.483077452e-21) (96.39275179 -28.62973509 1.148193934e-20) (90.1197018 -28.47620488 0) (114.5683529 -31.38404191 0) (111.7975975 -31.14648692 0) (111.9319591 -31.33100637 0) (98.39056734 -8.512315765 0) (97.84789054 -8.604611172 -1.959163794e-19) (98.03668866 -8.062796731 -8.443941264e-21) (97.47114557 -10.16423582 0) (97.70096476 -9.214427339 0) (98.30883966 -9.083630348 0) (96.33170491 -9.074951245 2.147487805e-19) (97.27287463 -9.089863999 1.907903699e-19) (97.09894648 -10.21073898 0) (97.20191636 -11.17217206 0) (96.64945876 -11.22234713 0) (96.63879289 -10.63363352 0) (82.29350025 -9.392516359 8.132931684e-21) (96.00700136 -12.07101645 0) (95.77014992 -12.00647616 0) (95.01210469 -11.34551447 2.124311867e-19) (96.05913142 -11.74331212 -1.993873884e-19) (73.60726767 -7.748539445 2.013355806e-19) (98.76133882 -13.87601359 -1.712357944e-20) (98.73811206 -15.15145855 -3.266378165e-21) (97.01999725 -15.38109077 0) (100.456798 -14.49684172 7.771169046e-20) (99.7195945 -14.92097557 3.585126152e-20) (99.50456256 -13.74865482 -3.43343274e-20) (100.6050165 -18.3355492 0) (100.082835 -16.27252682 -3.144103634e-20) (100.9721939 -15.63827034 1.907038338e-19) (106.9127832 -28.55283575 -5.355182585e-19) (106.4439275 -29.2715092 5.277183802e-19) (105.733821 -28.94726254 -4.816377967e-19) (107.8976373 -29.83078679 6.203859147e-19) (107.1654318 -29.56681016 5.778341026e-19) (107.6090944 -28.83189389 -7.215943225e-19) (105.8832 -31.04490703 2.873370446e-19) (106.6219482 -30.31670711 0) (107.3604757 -30.58468168 -4.723508916e-19) (100.8769522 -20.59374617 0) (99.94747405 -21.23721977 0) (99.40904649 -20.17252987 0) (101.4490995 -23.30173765 2.945313646e-19) (100.6336102 -22.2889528 0) (101.5516016 -21.52134139 0) (97.35783822 -23.61205423 -2.909135192e-21) (99.48961998 -23.06111907 -2.024127122e-20) (100.333746 -24.22877223 -1.561127909e-19) (66.46669302 35.00506032 0) (57.10844187 32.24462699 4.803910545e-18) (61.11366543 51.17216406 6.164026111e-19) (63.3549032 20.32423979 0) (58.5231951 27.37123525 -4.867966641e-18) (66.24771015 28.14523284 0) (45.74740207 13.45073298 -1.092518709e-17) (55.02660052 25.41081918 2.88624656e-18) (61.09343603 16.75674589 0) (115.1263333 63.81533336 0) (112.7867091 68.16632731 0) (117.9930418 70.39288907 4.086449226e-18) (93.36868995 54.0289319 0) (93.65174903 63.46699869 0) (103.2723377 57.19117253 4.831518623e-19) (66.29227787 57.9840585 -1.453594564e-18) (88.09635279 64.83119573 0) (85.17288677 53.63367128 0) (150.9097107 -0.5403672035 -1.007243809e-17) (150.783181 -1.367227215 5.569302173e-18) (149.9595265 -1.147733469 0) (151.6341841 8.469527964 -6.096433687e-19) (152.536953 8.389683666 -1.931077482e-18) (152.3944611 7.40197905 -1.27781794e-18) (138.3443958 -19.5112365 -8.881813897e-19) (137.8712318 -19.84126228 -4.179869931e-19) (137.6670738 -19.3544288 4.325273451e-19) (137.9858867 -20.87758104 -1.787786461e-18) (138.0416569 -20.39559681 -8.842010636e-19) (138.5231063 -20.07939618 -1.800937589e-18) (137.095934 -20.96082871 0) (137.5664134 -20.67608707 1.320180699e-18) (137.5615272 -21.14514387 0) (142.6186293 -14.75865951 -9.705821732e-19) (143.0066478 -15.29275375 0) (142.5568052 -15.77963282 0) (89.57493175 -7.582143623 -9.541992225e-23) (89.65729546 -7.640870905 -3.324631695e-19) (89.4258997 -7.750548119 0) (89.94843935 -7.465565277 6.271401565e-19) (89.81137214 -7.555933847 -3.223241726e-19) (89.7248921 -7.494439644 6.501587854e-19) (89.97798672 -7.687593027 0) (89.89554222 -7.620107501 -3.212688116e-19) (90.03625756 -7.531745527 3.124531323e-19) (89.57719171 -7.22093804 -6.335184318e-19) (89.44985387 -7.321292436 0) (89.35263214 -7.265826748 0) (89.63594414 -7.434784734 3.437885368e-22) (89.54425592 -7.37754131 -6.531848076e-19) (89.67348447 -7.280178824 6.326749172e-19) (89.22927771 -7.563574548 8.585209584e-20) (89.40062155 -7.472350741 3.367875229e-19) (89.49004917 -7.525509563 4.166163096e-19) (91.01901688 -8.39668937 2.375634658e-23) (90.84409112 -8.49360908 3.098743183e-19) (90.75154338 -8.407896355 -5.241685782e-23) (91.02977442 -8.667899335 -3.050589231e-19) (90.93689685 -8.580004092 3.064132715e-19) (91.11454075 -8.482857282 -2.978333077e-19) (90.31922176 -8.752588882 -5.173410575e-19) (90.72280158 -8.671778515 -2.385109746e-19) (90.80989552 -8.759487716 -3.148375137e-19) (92.19990817 -10.68071737 -2.147772548e-19) (92.22394932 -10.7393104 1.610084936e-19) (91.46612562 -10.76747449 0) (92.94519508 -10.61906742 0) (92.65771847 -10.68801066 2.620448142e-19) (92.60590395 -10.62970447 -2.10295447e-19) (92.78086953 -10.80145326 -2.101436615e-19) (92.71643879 -10.74515039 -2.081758357e-19) (93.01158917 -10.67617603 2.033935634e-19) (58.42620629 -10.51670442 -1.948145315e-19) (90.2572205 -16.94325604 1.561065038e-19) (87.99297168 -18.88790869 -1.654854271e-19) (90.37806122 -14.82491538 0) (89.12089855 -15.57628081 -4.269744983e-20) (70.76377957 -12.70104787 3.901599816e-19) (95.44140253 -17.02285061 0) (93.57637388 -16.57573417 0) (94.18211812 -15.58955518 0) (152.6462593 14.72470694 -1.182765356e-18) (152.756193 13.63926259 8.164006492e-18) (151.6328313 13.54474087 -6.205829944e-20) (146.0401069 19.36796892 0) (145.2259613 21.36658427 -1.355618534e-18) (147.5843723 22.33523882 3.689992441e-19) (141.0993309 19.45906913 -1.244355318e-18) (143.0634037 20.41533924 -1.286358275e-18) (143.89336 18.58361734 4.076639839e-20) (140.9123948 24.0705577 0) (142.0747593 22.25481816 2.523786908e-18) (140.1453899 21.13830565 -3.615540278e-18) (143.596264 12.75129866 1.292908449e-18) (145.5312544 13.15795642 1.359732309e-18) (145.8438181 11.41072336 -2.752422601e-18) (144.5723245 16.74933664 -1.356946027e-18) (145.1115848 14.9358119 -2.658135949e-18) (143.1511148 14.41064599 5.178914388e-20) (150.1842546 15.47982906 0) (147.2020016 15.4417348 -3.632155761e-19) (146.6973957 17.39089902 1.362417051e-18) (145.5255203 -11.8808266 -4.655786007e-18) (145.1275145 -12.48974201 1.121301935e-18) (144.6690065 -12.02960072 1.823000916e-20) (148.6486396 -4.972319744 1.082656784e-18) (149.3664169 -5.301533805 -3.229235941e-18) (148.9780903 -6.012900571 -1.076008952e-18) (88.80313434 -7.164780826 -3.464203687e-19) (88.91120971 -7.213590125 0) (88.7561921 -7.322922861 2.641190706e-19) (89.16673613 -6.990789803 -3.235952022e-19) (89.04455393 -7.103147698 3.325753623e-19) (88.93505725 -7.05013887 0) (89.25287872 -7.210858652 0) (89.15033483 -7.156707547 1.413777339e-21) (89.27354689 -7.047970335 9.639460531e-19) (88.22732775 -7.585436707 9.53000282e-19) (88.47245767 -7.555660449 0) (88.51290033 -7.579606291 -3.042317443e-19) (88.39362261 -7.513813984 -5.971557999e-19) (88.43305968 -7.533421699 -6.018030624e-19) (88.19288191 -7.562745357 6.291359349e-19) (88.72700708 -7.448592693 2.788560392e-19) (88.59961078 -7.494292165 0) (88.55610178 -7.474149557 4.658024244e-22) (136.1683579 -22.0417433 2.777927513e-18) (136.1478057 -21.52946414 8.734028841e-19) (136.6228642 -21.2508986 0) (135.2357966 -22.04210968 0) (135.6844248 -21.79149691 8.384569199e-19) (135.6919657 -22.30426057 0) (135.4517162 -20.87670838 -8.270307771e-19) (135.5814647 -21.31779773 -1.686751469e-18) (135.1402087 -21.56990784 -8.084423146e-19) (132.9147313 -20.46650166 0) (133.715242 -19.97289548 2.21004378e-20) (134.1667964 -20.82423552 2.003286885e-21) (132.3968649 -18.34386178 1.852796723e-18) (133.0684864 -19.12921796 1.913286875e-18) (132.3044848 -19.63489912 -9.467329983e-19) (134.6145667 -18.0144849 2.300680807e-20) (133.838983 -18.59016103 0) (133.1245043 -17.8015368 0) (139.4666634 -15.29189061 -1.129650219e-18) (140.2596575 -14.42203621 0) (141.4007033 -15.27075656 -2.242810455e-19) (138.1382885 -12.87814875 0) (139.2075449 -13.62070571 0) (138.4706883 -14.4705592 -1.106490994e-18) (140.6161966 -11.77715632 0) (139.9232501 -12.72431618 1.146542621e-18) (138.8021735 -12.00140044 -3.406043644e-18) (135.314502 -15.94680226 -3.082359476e-18) (136.172202 -16.73952318 -2.447035924e-20) (135.3936557 -17.39941929 -3.064608588e-18) (137.7154173 -15.27514222 -4.048974248e-21) (136.9474122 -16.03223583 1.059872006e-18) (136.0377705 -15.24579101 -1.051545877e-18) (138.3585406 -18.18091051 -8.724472686e-19) (137.8339825 -16.88272122 -1.082283874e-18) (138.6565597 -16.11392878 1.947573731e-18) (90.20554866 -8.156908166 0) (90.28718798 -8.240398512 0) (89.96215553 -8.358183449 6.345061725e-20) (90.64784433 -8.060853948 0) (90.48263312 -8.15295096 0) (90.395943 -8.070737431 0) (90.6600887 -8.322269694 -6.229966536e-19) (90.57043515 -8.237053108 -2.083285864e-21) (90.73862308 -8.143667376 0) (90.2948175 -7.745533881 0) (90.14178144 -7.833470113 0) (90.05970607 -7.75887334 -3.193873838e-19) (90.30998769 -7.990014646 0) (90.22510603 -7.910849099 0) (90.38155322 -7.82209436 0) (89.71783228 -8.06969734 -2.625147599e-19) (90.04261293 -7.994807023 1.329494346e-22) (90.12365411 -8.075270433 0) (89.30041542 -8.083459969 0) (89.27467633 -8.037331929 2.857549479e-19) (89.48877782 -8.015138954 -2.730524349e-19) (88.93371093 -7.961369043 0) (88.94570269 -8.001427131 0) (88.43572984 -7.982344712 0) (89.80924027 -8.489784443 2.547132697e-19) (89.47947748 -8.519394989 5.207531621e-19) (89.46022094 -8.466660175 -5.198378968e-19) (88.85679077 -7.634091225 -7.172371468e-20) (88.81642077 -7.61234674 -5.792053431e-19) (88.95292308 -7.571498805 2.796695505e-19) (88.38271593 -7.684737826 3.268670087e-19) (88.63762987 -7.651404711 -3.065281097e-19) (88.67321848 -7.673224619 -2.26822354e-19) (88.55455935 -7.604071791 3.067281071e-19) (88.59672236 -7.627984678 -6.149153783e-19) (88.34411243 -7.660675645 3.2501796e-19) (88.42814145 -7.882912797 0) (88.90859548 -7.89894368 8.586601818e-19) (88.92195744 -7.927468391 0) (88.87327024 -7.852996689 0) (88.8924462 -7.874561318 -2.834582111e-19) (88.41927472 -7.862897317 5.980695482e-19) (89.35350778 -7.838084493 0) (89.16780913 -7.86201051 -2.737172981e-19) (89.14262559 -7.837064395 0) (120.6053983 -27.59259886 -6.270797883e-19) (119.8709501 -27.69012215 -6.463852477e-21) (119.8542746 -26.93695633 6.01261574e-19) (119.4361964 -29.4594579 1.000121089e-18) (119.8202232 -28.49374389 0) (120.5575877 -28.39303412 0) (118.346481 -28.61333779 0) (119.0834993 -28.56255239 0) (118.9353228 -29.32398909 -1.563288432e-19) (106.3712618 -32.10369069 3.205056636e-19) (102.9236963 -31.69015709 6.663173777e-19) (103.4360954 -31.79342718 0) (89.75020044 -9.504033643 -2.725935134e-19) (89.72997458 -9.447379187 -2.701561204e-19) (90.406774 -9.458482554 0) (89.7096545 -8.773520437 0) (89.66934094 -8.739307776 2.742335592e-19) (90.00974714 -8.710243501 0) (90.31331916 -9.203725684 -2.588153037e-19) (89.80457201 -9.228164373 0) (89.8934021 -9.201975329 0) (92.9403354 -10.87673791 0) (91.58277306 -9.531007239 0) (83.03088333 -9.076037266 3.368591908e-18) (94.39961352 -11.02642094 2.273975477e-19) (93.9093618 -11.13248871 -2.944214828e-19) (93.86779738 -10.99513003 -5.130226455e-18) (94.43227707 -11.55935915 0) (94.05931147 -11.35836736 4.690794788e-19) (94.54957946 -11.15067946 -3.380471894e-21) (93.23539281 -10.84135074 -2.036632761e-19) (92.92635105 -10.91829056 0) (92.8502587 -10.85939451 0) (93.10462675 -11.03217951 -2.112698835e-19) (93.01068019 -10.97684284 0) (93.32114957 -10.89373485 0) (91.09219852 -26.2304333 1.124528824e-19) (94.42426539 -26.18368878 -6.506701828e-20) (94.83707973 -27.02603719 -1.549955243e-20) (93.70190693 -24.41277188 -1.325235119e-19) (94.05974594 -25.30849414 2.026751487e-20) (91.78041892 -25.52976503 1.287470376e-20) (96.75502353 -24.68483667 -4.050608915e-20) (95.56989249 -25.02317221 4.116190978e-20) (95.19816068 -24.1831276 4.169829478e-20) (86.04802596 -20.71614832 1.943585157e-19) (76.98778545 -19.36897063 -3.005887102e-19) (79.45676544 -18.40713314 0) (75.13966782 -21.79475348 -2.594903731e-18) (71.28429651 -19.3347068 1.328172247e-20) (85.86984438 -22.11204822 0) (19.87095507 -10.89210949 1.36468409e-17) (29.86661934 -13.08480015 0) (133.688461 65.94123362 0) (134.3626031 69.95925322 3.424111657e-18) (139.7028653 67.47949561 -1.808250655e-17) (113.9323417 -31.49372407 -1.252543393e-18) (112.5064468 -31.68481165 -6.360076802e-21) (112.4328514 -31.73616976 -8.240624736e-19) (112.2448819 -31.41088533 8.788972692e-19) (112.4843334 -31.55286045 6.603602323e-19) (114.1507545 -31.4569158 0) (57.07873581 -3.999820374 0) (55.43406792 -0.9440825574 0) (58.47657646 0.1058478805 0) (49.86651329 6.645118256 0) (50.19685683 1.894920444 0) (45.32954224 1.379731251 0) (62.7123869 -6.326062605 0) (61.02356241 -8.273083312 0) (58.99397499 -6.438359936 0) (116.3747425 -30.2930118 0) (118.7426682 -30.39891253 0) (118.8379146 -30.25981139 -3.425828331e-20) (118.3864738 -30.50332845 1.032218268e-18) (118.5675438 -30.4736991 -3.878411483e-19) (116.496989 -30.49365336 -9.983357694e-20) (119.6664927 -29.78909087 -6.427086041e-21) (119.3574442 -30.15542204 0) (119.0298924 -30.190694 0) (97.78820853 -31.32896374 -3.985507236e-19) (101.8942116 -31.91077481 2.542653892e-19) (101.5333321 -31.82325672 7.401020653e-20) (102.1720591 -31.83016002 -2.381450699e-19) (102.0828287 -31.87709804 -2.426278037e-19) (98.46876969 -31.39657173 -1.206525471e-19) (105.1548738 -31.67618585 -6.047392117e-19) (104.0794953 -31.86993041 4.842207487e-19) (103.8870822 -31.75183147 9.167101151e-19) (97.72315704 -31.02283803 0) (94.10663936 -30.5698347 -7.886452333e-20) (94.67345732 -30.62978887 0) (92.49082477 -30.40563044 0) (93.31804475 -30.46854401 1.174949502e-19) (97.48969973 -31.11180691 -1.684507467e-19) (97.66862087 -30.37033488 -2.162938026e-19) (95.42674429 -30.32271905 9.786578323e-20) (95.47298069 -30.12847707 -5.414745205e-19) (95.05258703 -30.55651889 2.605574212e-19) (95.29810734 -30.44857395 0) (97.78589695 -30.58170523 0) (147.358632 41.23329803 -1.232086564e-18) (149.4994006 42.9629896 3.652779634e-18) (150.9090526 41.23271843 -4.92621518e-18) (146.0492003 46.370876 0) (147.8603982 44.70329769 1.206191005e-18) (145.7634319 42.8141741 -1.157995141e-18) (152.0647849 39.32083188 -6.415281915e-19) (152.9458744 37.43447268 -6.523933125e-19) (151.0745375 36.41399196 0) (140.1909187 47.23567069 -3.902013923e-20) (141.8481268 49.59399622 1.072832261e-18) (144.0594786 47.97540337 -1.102135081e-18) (136.8482933 52.22367656 9.321995731e-19) (139.4350909 51.02041497 -4.878057113e-20) (138.0704701 48.46763763 -2.117029136e-18) (143.1604231 57.58036917 0) (141.2378993 53.98077553 5.375984623e-19) (138.3274604 55.23061503 1.568149512e-18) (150.4271859 1.300622779 -4.684252577e-18) (151.1481904 1.105248605 0) (150.9963985 0.271183273 1.037389956e-17) (152.2298625 6.437602429 -1.221249476e-20) (152.0470475 5.502583842 0) (151.2669443 5.648921933 -1.247922522e-18) (139.0139502 -19.72583765 2.777188469e-18) (139.5126498 -19.33873323 -1.933885388e-18) (139.4264223 -19.78381648 0) (139.0427758 -18.28974123 -9.133871985e-19) (139.2953915 -18.78049349 -1.867942395e-18) (138.8193037 -19.15861426 3.609784235e-18) (142.1029531 -16.23016328 -1.913409735e-18) (141.6467918 -16.65573703 0) (141.3040833 -16.16095457 0) (125.5038336 -27.90431885 1.260579055e-18) (125.887951 -27.77697901 0) (125.3966788 -28.16770819 -1.356609514e-18) (126.0643032 -27.00008259 0) (126.023665 -27.3750372 0) (125.6314545 -27.49349339 -1.2473825e-18) (126.7658409 -27.1147111 3.224700263e-19) (126.3961356 -27.23688144 0) (126.4528104 -26.83115959 0) (129.1667838 -25.85484568 0) (129.0445374 -26.27795607 7.084382951e-19) (128.680969 -26.42877653 -1.252896106e-18) (129.7476665 -25.97067939 0) (129.3954474 -26.13964882 -9.004905861e-20) (129.5579324 -25.69425975 0) (127.5901218 -26.45546655 -6.59906355e-19) (127.5072473 -26.86482329 0) (127.1300768 -26.98554142 0) (128.2960802 -26.58869979 -7.125948374e-19) (127.8982095 -26.73490412 0) (127.9836362 -26.32010282 0) (126.2101364 -27.3278257 0) (127.535568 -27.15590266 -1.4190603e-18) (127.909584 -26.99952412 1.482345225e-18) (110.379231 -31.96812555 -3.761407701e-19) (110.4125119 -31.92334222 -7.908198587e-19) (107.04054 -31.50992553 -8.465206951e-19) (112.7712034 -31.46027483 9.535210983e-21) (112.0493618 -31.77819238 1.541165242e-18) (111.7931961 -31.76416044 -7.533016214e-19) (112.3550034 -31.72939742 1.999898704e-19) (112.2428038 -31.75018989 -5.88490812e-19) (113.0822134 -31.46839156 9.34154452e-21) (92.69178125 -10.4059452 0) (92.45721887 -10.46604432 0) (92.40422946 -10.41199398 1.294914143e-21) (92.55776623 -10.57537875 0) (92.50830282 -10.52314554 8.633619445e-22) (92.75178653 -10.46726383 -2.16046602e-19) (91.67114434 -10.6260859 2.450701423e-19) (92.16938348 -10.5771273 0) (92.18921058 -10.62424107 0) (91.91532337 -10.25461103 0) (91.96315997 -10.29643723 0) (91.53115479 -10.3152609 1.240701479e-18) (92.45944484 -10.19972461 2.200954957e-19) (92.24930182 -10.25476663 -4.537848178e-19) (92.19550083 -10.20997921 4.503180842e-19) (92.35170088 -10.35569627 -4.558483793e-19) (92.30056456 -10.30479995 1.319196487e-21) (92.51622424 -10.25638123 -4.418713068e-19) (79.89881335 -8.993314993 0) (80.36213509 -8.859677291 -1.249785416e-18) (80.30165979 -9.328346367 1.751989833e-18) (80.28116024 -7.840378874 -8.613528308e-19) (80.33926117 -8.361111262 -4.174743341e-19) (79.84882021 -8.42388203 0) (81.19399686 -8.184569093 8.134222393e-19) (80.78561529 -8.28026845 4.176372866e-19) (80.73220022 -7.807578188 -4.166163408e-19) (78.15527634 -7.767806857 0) (78.09164657 -8.473868132 4.681507079e-19) (77.40564604 -8.407903606 -4.797229108e-19) (79.31144152 -8.469692087 0) (78.72634293 -8.490840472 0) (78.73426033 -7.825996619 0) (78.79441942 -9.863902642 2.161772391e-19) (78.79411522 -9.198865916 -2.161777723e-19) (79.37780302 -9.112428658 0) (82.95714532 -7.323365596 0) (82.9155314 -7.556556021 3.688776684e-21) (82.69026873 -7.648369807 -1.11752257e-18) (83.30113483 -7.378986069 0) (83.11802009 -7.466202994 3.491746352e-19) (83.16730249 -7.246190499 0) (81.89064026 -7.638931927 0) (81.88498348 -7.961401274 0) (81.55968615 -8.076730671 0) (82.44403828 -7.740497298 0) (82.17815399 -7.845773518 0) (82.20133955 -7.56051861 0) (73.90346137 -8.774018007 0) (74.88044286 -8.944485473 0) (74.77157027 -9.983080749 0) (75.33567466 -7.129804853 0) (75.04646714 -7.987999702 0) (74.145006 -7.757168916 0) (76.67068546 -8.30275047 0) (75.88822118 -8.176409871 0) (76.09518764 -7.441548941 0) (151.1390822 16.72354274 0) (152.3599538 16.92071072 1.239559356e-18) (152.5052083 15.80467494 -1.217470593e-18) (150.6423538 24.09652179 2.232306886e-20) (151.0862187 22.88715508 -1.193869515e-18) (149.7130086 22.4101219 -1.178125199e-18) (153.9250995 23.67751315 4.90989178e-18) (152.5616294 23.31125524 -4.941241844e-18) (152.1351471 24.58673687 0) (153.1564512 20.71971675 1.224049288e-18) (152.9085902 22.01574415 -1.207269086e-18) (154.2311832 22.29756186 5.014483545e-18) (85.62980915 -6.549518097 -6.672503932e-22) (85.46254409 -6.607078937 -3.622740917e-19) (85.41485485 -6.599774278 3.775536648e-19) (85.45713481 -6.620641056 -6.561938853e-19) (85.46004527 -6.603719741 3.430586989e-19) (85.66945275 -6.557247675 6.536708858e-19) (85.37098765 -6.524134121 -9.384210146e-22) (85.2151431 -6.588532424 7.558224439e-19) (85.14788124 -6.585685894 0) (85.35414843 -6.597813489 -3.805757261e-19) (85.28479887 -6.593436068 0) (85.44216814 -6.529048718 -7.503650947e-22) (85.95582914 -6.772755088 9.676438081e-19) (85.63423899 -6.807712082 -6.870114285e-19) (85.60010913 -6.764001472 6.807488947e-19) (85.71182991 -6.926298235 -1.389565225e-18) (85.67029386 -6.861585204 0) (86.00390875 -6.823205764 -3.251348572e-19) (85.77229933 -6.629764817 -6.265641891e-19) (85.49248359 -6.675640584 0) (85.4638257 -6.649758546 6.531265014e-19) (85.56592511 -6.728469828 0) (85.52988038 -6.69987257 0) (85.81857954 -6.658976932 6.323344816e-19) (84.28369468 -6.789690044 0) (84.19228897 -6.919238356 0) (84.06933468 -6.98435626 -3.510267563e-19) (84.41717335 -6.80467419 -7.095971924e-19) (84.30819043 -6.860489269 3.522278546e-19) (84.4047142 -6.740521485 0) (83.70644147 -7.032138741 0) (83.63428108 -7.215635428 0) (83.47140664 -7.295946161 0) (83.93593515 -7.05737958 -1.045851014e-18) (83.79022509 -7.135744527 -3.474383534e-21) (83.86598851 -6.966260709 9.990796018e-19) (85.07284766 -6.543684002 -7.093414887e-22) (84.93756674 -6.620096921 0) (84.85471275 -6.640313369 0) (85.08228326 -6.588650618 0) (85.01373225 -6.600912705 0) (85.15288569 -6.531310138 -7.016974451e-19) (84.72065084 -6.621432163 3.435933245e-19) (84.60429647 -6.711623144 -7.178969794e-19) (84.5159463 -6.753155152 3.578013517e-19) (84.77024203 -6.659409913 0) (84.68729074 -6.681500638 0) (84.81220274 -6.595124278 0) (145.7973326 -10.21077501 0) (146.2935442 -10.62055972 -1.205964229e-18) (145.9135948 -11.25603438 0) (148.5583314 -6.704750767 1.128897145e-18) (148.132028 -7.369525851 -9.672905466e-18) (147.5561299 -6.996678619 2.250136927e-18) (86.18923945 -7.004701486 6.620979096e-19) (85.84011583 -7.076351068 -1.572611932e-21) (85.76610866 -7.00160549 1.049455151e-18) (86.02036492 -7.186214567 0) (85.92920415 -7.137270144 3.496538987e-19) (86.27024382 -7.060765436 -1.000579434e-18) (132.2320683 -24.43628086 7.797071388e-19) (131.4910107 -24.74579164 3.204918821e-18) (131.2704506 -24.96465731 1.875434831e-20) (132.195815 -24.3454179 1.799647604e-18) (131.8207884 -24.55458811 -1.724772128e-18) (132.6307841 -24.24924764 -4.878494338e-18) (130.7588924 -25.16476187 7.588316311e-19) (130.5109782 -25.59309494 -8.060316209e-19) (130.1226624 -25.78920365 0) (131.086563 -25.14073383 -2.320121974e-18) (130.852094 -25.36678041 1.59999993e-18) (131.1488699 -24.96597138 -1.902128983e-19) (89.58690349 -8.145562505 -9.058947474e-22) (89.36518858 -8.175673504 -2.759510332e-23) (89.33083286 -8.130575672 0) (89.46250189 -8.412697227 2.622547784e-19) (89.47401175 -8.37034468 -5.391301013e-19) (89.73980064 -8.347036797 5.264663586e-19) (88.33628368 -7.763856373 0) (88.7280584 -7.732110931 2.739480358e-19) (88.74084769 -7.757916818 0) (88.70344591 -7.698068053 1.471433796e-18) (88.72058066 -7.712686395 -8.470382865e-19) (88.380068 -7.743891841 8.787713446e-19) (89.07603945 -7.636266215 1.793915109e-22) (88.92646587 -7.67741955 -9.61126349e-19) (88.89358613 -7.657485797 0) (89.11509164 -7.814014765 0) (89.08488973 -7.792479166 0) (89.25923413 -7.759702888 -2.62184711e-19) (88.37182429 -7.820177562 0) (88.82622631 -7.815323207 5.517600242e-19) (88.85127769 -7.833361338 -5.58061542e-19) (88.7661525 -7.780599378 2.711378081e-19) (88.79722523 -7.798516332 0) (88.35050509 -7.812003813 0) (120.8840823 -29.74548501 0) (120.633182 -29.85132494 0) (121.3792466 -29.51417954 0) (122.2822412 -29.27045487 0) (121.0262106 -29.45966666 0) (121.04457 -29.59493331 -2.991861277e-19) (103.8650974 -31.94943356 5.140048968e-21) (104.0434723 -32.07225155 -5.988498176e-19) (106.2980337 -32.09039318 1.455681026e-18) (90.52767966 -9.639793135 5.326379944e-19) (89.83164619 -9.649348117 -5.537762485e-19) (89.78094829 -9.574619236 1.253490723e-21) (90.1227294 -8.821061268 -5.407484325e-19) (89.7758287 -8.837615442 0) (89.74529266 -8.80547049 1.116093283e-18) (89.87909521 -9.123759479 1.480298241e-19) (89.8732564 -9.059365296 0) (90.26044492 -9.045775508 -2.796020561e-19) (93.59996026 -11.01328282 1.961973707e-19) (93.30607514 -11.1178598 0) (93.20250055 -11.07667723 2.126332934e-19) (93.33731311 -11.12043811 -2.24737965e-18) (93.36968781 -11.10094119 -1.935460678e-19) (93.66918883 -11.02867851 -1.900653133e-19) (79.48584164 -24.58515617 -8.542628534e-20) (78.55303951 -24.68975789 3.228887522e-20) (71.14136047 -23.15497679 0) (88.49278461 -26.36951298 0) (84.37228151 -25.7633435 2.726495756e-20) (84.94979747 -25.49074857 -3.772075148e-20) (78.73744852 -26.32807603 4.295151324e-20) (79.86801616 -26.45441589 8.302233071e-21) (86.08462005 -27.63451767 -1.09141097e-20) (118.7044646 16.62543866 6.150569525e-19) (114.9248068 17.91330221 0) (113.6644395 22.50161299 1.023952851e-18) (113.6981026 12.74000947 0) (114.3852058 15.07102042 5.769012831e-19) (116.9905991 14.57363731 8.604139138e-20) (109.9238746 14.58062988 7.310577169e-19) (112.0051329 15.01141112 0) (111.7236386 12.87865015 -1.451309853e-20) (109.3079496 -18.11201046 -1.327772974e-18) (110.9918236 -18.31839871 6.099709436e-19) (111.7257155 -20.82504913 4.341397577e-19) (110.207156 -14.99642823 4.461691061e-19) (110.6810763 -16.52852597 0) (109.1611228 -16.43350805 3.989861123e-19) (113.902552 -16.21447251 1.049862301e-18) (112.2702903 -16.45933145 4.484716858e-19) (111.6181922 -14.85731908 9.222040853e-19) (103.6722046 -31.64052313 2.128188418e-19) (103.4122192 -31.49312722 -6.228783127e-19) (104.2122752 -31.15681604 5.207991303e-19) (99.56917217 -31.59264048 -2.100750852e-19) (102.0738056 -31.67942983 6.249305176e-19) (102.1648226 -31.77695303 -4.397255223e-19) (101.7910028 -31.3899183 1.889557957e-19) (101.9460659 -31.53796475 -1.88179944e-19) (99.77622369 -31.51118552 -1.976894988e-19) (115.5117847 -26.44639079 -4.794310939e-19) (115.7044897 -24.73893271 0) (117.0003034 -24.67435202 0) (113.1595254 -24.59322377 -4.863322376e-19) (114.4241884 -24.70013207 4.79847927e-19) (114.4611799 -26.04719624 5.086522924e-19) (51.8019485 45.0389128 4.875682972e-18) (44.42295099 44.28674467 4.837568655e-19) (47.10362103 56.99244966 1.141737141e-18) (48.53643849 27.49629633 -5.656325166e-18) (45.45867464 34.71097724 0) (51.66801294 37.16472131 0) (32.74651397 22.83449156 0) (39.86225884 29.77929071 0) (43.89049662 23.11556224 0) (97.73691462 85.17489568 -3.152938188e-18) (83.57262538 93.41475194 -2.282584788e-18) (96.09609749 96.63570811 0) (80.65818743 71.5200218 4.906354289e-20) (82.84652655 79.774562 -1.904801925e-18) (92.52007659 77.25177823 1.278744309e-18) (55.95670998 69.88316457 0) (68.41752196 78.36273149 -4.752258749e-19) (70.97014985 69.40642222 1.185451662e-19) (111.8303983 35.1932448 0) (113.7293994 31.5025883 2.67559184e-19) (110.731758 29.80014981 9.486207899e-19) (122.7983716 32.01916873 0) (117.5085954 32.62951838 3.255929224e-19) (114.3032114 37.97717488 0) (145.0325751 34.40293661 0) (145.9736144 33.19931257 0) (144.4460388 32.06728822 2.18793897e-18) (149.0903682 35.27684162 0) (147.2883954 34.22599532 0) (146.3083607 35.59894791 0) (149.1134691 31.38533608 0) (148.2260845 32.79160855 0) (150.0663846 33.76502488 0) (87.76889237 -6.728350513 0) (87.91278411 -6.794842426 7.184446092e-19) (87.75202943 -6.946576755 -3.689458964e-19) (88.18373189 -6.503998851 0) (88.05380353 -6.648634754 -6.95382987e-19) (87.91384239 -6.579619934 6.995738843e-19) (88.32574123 -6.775197565 -3.448098341e-19) (88.19137662 -6.713793107 6.912682386e-19) (88.31871903 -6.572438889 0) (87.62462539 -6.202992288 0) (87.48706542 -6.350863824 -7.147198266e-19) (87.34466069 -6.270511471 -2.364878039e-21) (87.7723071 -6.506478964 -3.504983874e-19) (87.62981903 -6.42999488 -3.549192122e-19) (87.76594292 -6.282240362 -3.427389631e-19) (87.30073187 -6.734042461 3.779705641e-19) (87.47729636 -6.581235483 3.650856467e-19) (87.62336801 -6.656958011 0) (111.3870646 -31.35205717 -3.520858941e-19) (110.9527975 -31.6616856 5.254584285e-19) (110.625541 -31.6073568 1.022684132e-18) (111.525407 -31.7357696 1.923906698e-19) (111.2447818 -31.68753115 7.182347637e-19) (111.7470778 -31.35238393 -3.581339257e-19) (108.223962 -31.95248363 -6.828642771e-21) (110.2840837 -31.94259317 -3.552106033e-19) (110.3448974 -31.94463368 -1.82181313e-19) (116.7152126 -29.49122927 -2.601066901e-19) (116.8690844 -28.67286078 -5.327053617e-19) (117.6078769 -28.65159668 5.550471729e-19) (115.3919541 -28.67082381 -4.822122598e-19) (116.1303989 -28.68006713 5.171567234e-19) (115.9764934 -29.47927765 -5.142425654e-19) (92.22513498 -10.00704156 4.427124495e-19) (92.02520804 -10.06577838 4.490220208e-19) (91.97081789 -10.01648701 0) (92.1390952 -10.16293041 -4.498361794e-19) (92.08154689 -10.1164505 2.235922585e-19) (92.28303888 -10.0628784 2.198825526e-19) (91.37861179 -10.20599527 0) (91.8049251 -10.16749054 0) (91.86140764 -10.21319855 0) (152.371845 29.34814636 -1.225938253e-18) (150.6056156 28.62131611 0) (149.9153488 29.99812952 0) (151.6782146 25.90029265 1.239324345e-18) (151.1835932 27.24391216 -1.529622026e-18) (152.8442359 27.8543952 1.271310326e-18) (148.2221936 26.06410909 5.935245501e-19) (149.637467 26.62977568 -2.825605725e-19) (150.1624993 25.36664345 0) (88.70412418 -6.760743556 0) (88.58245117 -6.889571151 3.403186656e-19) (88.45622778 -6.833669565 0) (88.82168645 -6.997125387 0) (88.70423343 -6.943858045 0) (88.82534897 -6.819576602 3.744734486e-22) (88.42397626 -7.194446257 5.979570469e-22) (88.5735609 -7.067726331 -3.496910414e-19) (88.69066379 -7.116325722 3.481373886e-19) (88.08187313 -7.31859879 -2.770129282e-19) (88.01989601 -7.304055979 3.691518155e-22) (88.13169727 -7.241321011 -2.750084582e-19) (87.67785411 -7.43460445 1.158545223e-18) (87.87764018 -7.371294192 8.463406192e-19) (87.93806365 -7.382401411 -2.839499258e-19) (87.74834803 -7.343157129 -8.459307048e-19) (87.81342747 -7.359022855 -2.79032071e-19) (87.61509425 -7.429409066 -2.866783557e-19) (87.44481878 -7.379617625 9.023179178e-19) (87.61980642 -7.304115173 0) (87.68454314 -7.323907003 2.851034246e-19) (87.47812908 -7.258706536 3.826036822e-19) (87.55092325 -7.282997456 0) (87.38562423 -7.362506856 3.130024125e-19) (87.79219695 -7.12779941 -1.408453259e-19) (87.68248343 -7.2049934 1.434963019e-19) (87.60856623 -7.181442645 0) (91.55817504 -9.864155152 -2.332560734e-19) (91.5867164 -9.907060452 -2.144332689e-19) (91.22326317 -9.936152502 -2.317706339e-19) (92.00977901 -9.810923461 0) (91.82858755 -9.863893157 -1.403924088e-20) (91.7846294 -9.820225624 -1.131183592e-19) (91.91947253 -9.964080223 2.230479335e-19) (91.87222193 -9.913969989 -3.337565777e-19) (92.06056364 -9.864859177 0) (108.7648727 -31.69234083 -6.127571712e-19) (109.087465 -31.76630896 0) (108.1843125 -32.0344454 -1.06820026e-20) (109.9260995 -31.09203833 4.920666716e-21) (109.6056813 -31.42497072 -3.17811261e-19) (109.2214226 -31.36577714 0) (110.2925657 -31.55626847 -6.674349513e-19) (109.9448451 -31.48727268 -9.804453305e-21) (110.3065652 -31.11610407 1.681051715e-19) (116.093281 -31.10798641 4.826705879e-19) (116.6567198 -30.77088248 4.712040535e-19) (116.9925784 -30.73333827 6.320419618e-21) (115.9443475 -30.80212391 -4.511657063e-19) (116.3039979 -30.7956604 4.479008663e-19) (115.7916727 -31.14627861 0) (116.7262982 -30.08524539 -4.397354547e-19) (116.5742971 -30.41615586 -4.415632053e-19) (116.173366 -30.43246139 8.774738037e-19) (136.3302285 25.90462032 0) (138.0337049 27.55479806 0) (139.567802 25.8454261 0) (140.1980698 33.33743763 -6.128635615e-19) (138.1084387 31.13733046 6.151595951e-19) (135.9914491 32.82572424 0) (118.7101241 -30.24289972 4.990662048e-19) (118.3711759 -30.28106362 -5.007443345e-19) (118.5949974 -29.91361558 0) (116.8162213 -30.87652925 -5.171039953e-19) (117.9311284 -30.62999795 0) (118.1867942 -30.56015232 -5.176072414e-19) (117.3119422 -30.70142627 -4.866241098e-19) (117.6296635 -30.67387783 0) (116.6789235 -30.95491331 5.097108807e-19) (110.9213864 43.2760626 0) (114.0656936 45.27805473 0) (115.7714844 41.98977042 0) (108.4069057 53.13856455 -1.437159103e-18) (111.800921 49.01925662 5.073264701e-19) (108.3678045 46.23923848 3.514757774e-18) (121.0900971 52.55365298 0) (116.0776693 51.20532481 -2.486093163e-18) (113.4148178 56.36331264 2.297955085e-18) (124.5171986 -27.43243471 -5.914183458e-19) (124.4799796 -27.80463136 -6.018346806e-19) (124.0968132 -27.89271228 6.936131571e-21) (125.244202 -27.60920587 6.194548824e-19) (124.8554416 -27.70270153 -6.093607553e-19) (124.9050889 -27.2882099 -6.089862891e-19) (124.4371703 -28.49219647 1.250605222e-18) (124.7433562 -28.09963819 1.228781219e-18) (125.1187746 -28.00653878 -1.865154029e-18) (71.9658216 -5.388085503 0) (71.19245075 -6.41862929 0) (70.17343161 -5.74224628 0) (73.19219086 -7.416433511 0) (72.19961836 -6.985453748 0) (72.83023541 -6.052754525 0) (71.22812314 -9.371920349 0) (71.77012267 -8.092282832 0) (72.86146561 -8.500931755 0) (87.88455837 -7.477657906 2.971827317e-19) (88.10319181 -7.425889912 -5.766070665e-19) (88.1571341 -7.441615854 0) (87.9945861 -7.395160031 -8.552050617e-19) (88.04911154 -7.409917922 0) (87.83383479 -7.462294332 -5.935025166e-19) (88.3130101 -7.29157199 0) (88.19803776 -7.351591277 -2.785648581e-19) (88.14092115 -7.335510598 0) (88.51124154 -7.454469626 0) (88.46417618 -7.437789205 -5.670568657e-19) (88.58396442 -7.391381786 0) (88.08431084 -7.521072523 0) (88.30860322 -7.48301638 8.826747933e-19) (88.35261044 -7.497201707 -8.626910461e-22) (88.21015364 -7.456293555 0) (88.26098727 -7.469768275 0) (88.0391786 -7.51301159 3.051693854e-19) (86.83189187 -7.154007363 -9.712255104e-19) (87.00060248 -7.072711475 6.165914914e-19) (87.08166344 -7.109162101 -3.095223328e-19) (86.83942565 -6.992581295 0) (86.91974505 -7.033761158 3.069971351e-19) (86.74904107 -7.115412521 0) (87.17985134 -6.869452585 0) (87.05951264 -6.952124944 0) (86.98087646 -6.912377538 -2.939140622e-19) (87.53261061 -7.153874336 0) (87.45493056 -7.126547449 0) (87.56689429 -7.050888838 0) (87.16093991 -7.283412489 -1.116436201e-21) (87.32325682 -7.205244863 0) (87.40195969 -7.232990361 -4.628397072e-19) (87.16267218 -7.143436256 0) (87.24329735 -7.17534595 0) (87.07967396 -7.254344265 0) (134.7121625 -21.82160149 8.011334691e-19) (134.2855529 -22.05142225 0) (134.1822944 -21.58114953 7.799202587e-19) (134.3828483 -23.00120651 -1.570320239e-18) (134.3699067 -22.50041715 0) (134.7992346 -22.27841887 0) (133.5321734 -22.92707752 3.887814355e-19) (133.9478398 -22.71275904 0) (133.9764461 -23.17752738 7.873914271e-19) (91.79537553 -9.631471091 -2.267812447e-19) (91.63394163 -9.689523889 4.683371315e-19) (91.5779098 -9.64610088 1.216004022e-22) (91.73771572 -9.775996221 1.156201389e-19) (91.68742601 -9.734051931 -1.157249725e-19) (91.85115347 -9.682271356 1.137123932e-19) (91.19767842 -9.826895787 0) (91.48028078 -9.783376826 0) (91.52242718 -9.824684652 2.37685254e-19) (91.15581987 -9.49936091 -7.306722663e-19) (91.20835457 -9.553212235 -4.888826164e-19) (90.93671507 -9.601750892 7.605914468e-19) (91.5661469 -9.442017844 1.085724332e-21) (91.40709209 -9.499543907 1.052606408e-21) (91.35293151 -9.448880766 -2.334978628e-19) (91.5206504 -9.59862563 4.686761757e-19) (91.46323743 -9.551302396 -2.337387366e-19) (91.62235762 -9.497122602 4.586141972e-19) (85.41692625 -25.17167025 3.786135196e-20) (85.82435192 -24.8373675 0) (88.97199354 -25.1818072 1.414295949e-19) (74.3313369 -22.83391325 -1.198862345e-19) (80.96293989 -24.07604569 0) (80.34725213 -24.32396549 8.506394017e-20) (81.82345894 -23.36722364 -4.77690466e-19) (81.61314962 -23.78053191 0) (75.26604295 -22.70813816 3.637931767e-19) (93.17256269 -29.06717585 -8.569533415e-20) (93.02474986 -29.30819734 -1.651219731e-19) (89.09661565 -28.83548871 0) (96.88725464 -29.28934316 1.250483374e-19) (95.42864966 -29.40571713 1.022450395e-19) (95.31801577 -29.10589684 5.986017276e-20) (95.49050598 -29.90976851 8.342645974e-20) (95.47666406 -29.65799438 -1.071462234e-19) (97.10438931 -29.54382693 2.900081909e-19) (105.3321097 62.46894711 0) (108.6269464 65.48246416 5.53173071e-19) (111.5617636 62.02672959 1.581289129e-18) (99.3744414 73.27918681 3.024833098e-18) (104.8516502 69.20679424 0) (101.2373009 65.34792533 1.414461842e-18) (115.8672284 76.38936907 -1.421765643e-18) (109.7652335 73.0742976 -2.839446658e-18) (105.2381149 78.56235886 -2.279202302e-18) (93.50708085 -11.00382697 -2.091875046e-19) (93.18455021 -10.67613843 1.710401236e-18) (93.29550898 -11.04771687 -3.350091569e-19) (92.75152055 -11.52505752 -4.354138909e-19) (92.8144808 -11.09691407 0) (93.33848484 -11.10966239 2.053509353e-19) (81.43736936 -10.15437912 0) (90.50772396 -10.58304884 0) (90.81344426 -11.41752724 0) (26.71839465 -9.85601411 0) (18.27080524 -8.742483778 -4.682985983e-18) (44.16411583 -4.493997749 1.635528936e-18) (60.28622997 -17.76356368 0) (45.16036041 -15.84958934 -9.396130841e-19) (49.14502924 -15.49799798 0) (52.39438345 -17.70405254 2.123642818e-18) (45.99267913 -16.58453687 -8.300982403e-20) (62.46884145 -19.40711761 -5.048943884e-18) (99.97862822 0.1309712143 3.576077618e-21) (99.97327359 0.1685507395 -8.745360612e-21) (99.99734795 0.05714996334 1.746802282e-21) (99.96676325 0.2157141882 3.475577326e-21) (99.95711374 0.2702618447 0) (99.99675184 0.09091526568 0) (99.94839661 0.3321632847 0) (99.94011763 0.405709786 -4.549928941e-21) (99.99573473 0.136564503 4.789399724e-21) (99.9318662 0.4904196774 5.370818185e-21) (99.92423687 0.585726559 -2.863760731e-21) (99.9946267 0.1965631108 0) (99.91811152 0.6901472697 5.549456336e-21) (99.91468877 0.801097352 2.435277166e-21) (99.99397284 0.2679420987 -2.618136103e-23) (99.91505443 0.9144485091 -3.850540592e-21) (99.92019643 1.024476231 1.226009351e-21) (99.99442402 0.3414058244 3.674213217e-21) (99.93084869 1.124351062 -1.596498986e-21) (99.94779985 1.205119728 0) (99.9965134 0.4010588114 0) (99.96873401 1.260094879 2.884141367e-22) (99.99157588 1.287451651 0) (99.99952412 0.4282074577 0) (100.0135795 1.28353827 -1.261394304e-21) (100.0354666 1.249844241 -8.659903047e-22) (100.0028698 0.4155298823 8.534937264e-22) (100.0537472 1.190708864 4.383809078e-22) (100.0676281 1.10964537 8.312572725e-22) (100.0049853 0.3685588573 -8.297369017e-22) (100.0759675 1.013988536 3.13546534e-21) (100.0795856 0.9107931085 -1.947280208e-21) (100.005753 0.3031934764 0) (100.0792707 0.8057877581 0) (100.0760973 0.703730294 2.982164905e-21) (100.0054025 0.2347306682 0) (100.0696963 0.6084605277 1.560316596e-21) (100.0570579 0.5176599057 0) (100.0056664 0.172804093 -9.952823553e-21) (100.0499219 0.4332394252 0) (100.0425999 0.3600122155 0) (100.0042238 0.1212752978 0) (99.92372536 0.159996842 -7.333252578e-21) (99.90217918 0.2142814371 -7.239598456e-21) (99.95114098 0.1624008617 3.608225046e-21) (99.87723293 0.2809363446 -7.239736828e-21) (99.84791667 0.363291295 7.172013515e-21) (99.92301341 0.2720200016 -3.417540055e-23) (99.81400958 0.462492605 0) (99.74052752 0.656757791 0) (99.91176929 0.4170905368 6.378230585e-21) (99.84183865 0.5605760361 -1.275090916e-20) (99.84045894 0.6211993454 3.334787144e-21) (99.8948106 0.5127568538 -1.95446245e-22) (99.78636414 0.840320849 -1.765190154e-20) (99.79094994 0.9212215782 1.128538655e-20) (99.86342284 0.7571667132 1.79043939e-22) (99.73776612 1.202196191 1.030786637e-20) (99.75333724 1.300899445 0) (99.84083076 1.064893146 -2.461169331e-21) (99.71806227 1.62334011 0) (99.75173066 1.727836885 1.488321264e-20) (99.843377 1.408711567 -1.923359724e-21) (99.75654952 2.034458301 8.487919393e-20) (99.81508739 2.118637899 -8.502038285e-20) (99.89027982 1.72303581 2.612971943e-21) (99.86613037 2.323210074 -2.881126695e-20) (99.94244446 2.36107423 3.080523948e-20) (99.98021093 1.916430878 7.520688183e-22) (100.0069408 2.393571697 6.819628431e-21) (100.0824275 2.378417898 -4.458500093e-22) (100.074952 1.933965949 -2.072030143e-21) (100.1369767 2.239268653 5.787152799e-22) (100.1985718 2.173464311 8.494271165e-21) (100.1538047 1.773245161 5.23136973e-21) (100.2161033 1.917404469 3.790194085e-21) (100.2571226 1.82454385 -1.250604242e-20) (100.1911384 1.49288859 -3.981298674e-21) (100.2341883 1.522907465 5.212416066e-21) (100.2567101 1.427151313 -5.211448961e-21) (100.1885144 1.173370604 5.16773198e-21) (100.4153979 1.539216275 0) (100.3292306 1.165792089 0) (100.1651652 0.844626872 0) (100.289834 0.9787398177 5.77348674e-20) (100.2498541 0.809628952 -2.973803553e-20) (100.1244102 0.5918989673 -3.044896138e-20) (100.2124709 0.6642087198 -9.127787345e-20) (100.1767259 0.5398712427 6.885025895e-20) (100.0827424 0.4054772121 -3.80536386e-21) (99.81310949 0.202351919 -1.028564677e-19) (99.76495698 0.2801052831 1.16909964e-19) (99.83908372 0.2547538689 0) (99.70657112 0.3742414849 5.817662091e-20) (99.63756694 0.4916381387 -5.890120897e-20) (99.75175692 0.4380575247 2.165931055e-20) (99.55674198 0.6383723599 -5.900480473e-20) (99.39609875 0.8897587988 0) (99.6657953 0.7269554419 0) (99.54601256 0.8850285466 1.33143373e-20) (99.50799742 0.9900274954 0) (99.60575867 0.9081863546 -1.281962596e-20) (99.38380281 1.361858213 -1.238191289e-20) (99.34402902 1.506353955 -1.23729238e-20) (99.47674254 1.371517663 5.952289098e-21) (99.22977836 2.005130398 3.490044119e-19) (99.20189844 2.19367906 -3.467115991e-19) (99.36811398 1.976141249 -8.552323403e-20) (99.16434624 2.798381027 -5.404913391e-19) (99.17591601 3.008914859 4.226596215e-20) (99.34967418 2.682810386 -8.124252672e-21) (99.28218192 3.621294818 0) (99.35171941 3.805421455 0) (99.49162278 3.359938235 3.651094124e-19) (99.63256905 4.205204348 -3.957776263e-19) (99.75256772 4.28339786 0) (99.79901483 3.767936697 0) (100.1156547 4.341108644 7.018496627e-20) (100.23381 4.295631608 -2.576351999e-21) (100.1734514 3.790173897 2.553918592e-21) (100.5188988 4.000763792 4.013267386e-19) (100.5942972 3.859533011 -6.106950961e-19) (100.4613152 3.424886203 1.826016794e-19) (100.7341753 3.356470667 3.427385431e-20) (100.7609087 3.172214723 -3.574491166e-20) (100.6002941 2.833226904 9.196084046e-21) (100.7714869 2.615481701 0) (100.7602826 2.434244543 -1.143545785e-20) (100.6028272 2.187214328 2.272537456e-20) (101.0221693 2.26560614 1.018230237e-19) (100.8213889 1.740422184 0) (100.5471828 1.467102105 1.140406448e-19) (100.7211666 1.443611965 0) (100.6231402 1.183989069 3.120226933e-20) (100.4170065 1.009482159 9.050314195e-20) (100.5317573 0.9610390631 -2.342510568e-20) (100.4488628 0.7708796457 7.91119065e-21) (100.2978426 0.6780828557 -1.56995665e-20) (99.68009617 0.1892587869 2.636925338e-20) (99.5943278 0.2779182874 -3.010837369e-20) (99.68224124 0.2887527727 0) (99.49065582 0.3842742366 0) (99.36828936 0.5195774867 -5.950160415e-20) (99.50875908 0.5194582926 1.766778133e-19) (99.2248294 0.6914280261 0) (98.94602775 0.9725720301 -2.255898411e-19) (99.29162127 0.9282407187 0) (99.10475587 1.083182214 4.219967665e-20) (99.02397301 1.223397548 1.38074445e-20) (99.15790657 1.181192718 -1.382077594e-20) (98.75675414 1.737649903 4.760357337e-19) (98.66247524 1.948112283 -5.839493203e-21) (98.85536579 1.853952243 0) (98.400683 2.701115785 -1.532421577e-18) (98.32499352 2.99881332 2.395159143e-20) (98.58111126 2.807817913 0) (98.18572949 4.020622556 -6.777725795e-19) (98.18793474 4.39214072 1.996299671e-20) (98.48622557 4.034320123 -6.168608938e-19) (98.41344585 5.500336634 -8.76395185e-19) (98.57244908 5.833094537 1.627170302e-18) (98.80475427 5.281695624 -8.424103816e-19) (99.27889601 6.585159153 0) (99.57203574 6.711221569 -1.043691874e-20) (99.61409745 6.036571284 -1.655316492e-19) (100.4539991 6.702940253 0) (100.7148051 6.579374918 0) (100.5479383 5.96155568 -3.996321742e-19) (101.3137935 5.95386076 4.699744955e-19) (101.4478366 5.687684477 -1.71803855e-20) (101.1764645 5.217582821 -5.348064196e-19) (101.6691165 4.811809988 1.443430534e-18) (101.6920296 4.509135601 -7.361911748e-19) (101.4094421 4.182752929 4.087788503e-19) (101.6471913 3.608827578 5.93690672e-19) (101.6049798 3.328944276 -2.050656666e-19) (101.3557062 3.118689185 4.533496025e-19) (101.8912937 2.805980881 -7.660416974e-21) (101.5339517 2.170292634 8.731526836e-21) (101.1539103 1.979024421 -2.310734902e-20) (101.3313279 1.766041144 -9.850407815e-20) (101.1418851 1.429940176 1.573170682e-20) (100.865907 1.326588577 1.665592568e-20) (100.9703789 1.146622986 1.629364496e-20) (100.8212557 0.9040880967 1.680645349e-20) (100.624097 0.8680865562 3.272916834e-20) (99.54727348 0.1093832115 -1.541004072e-20) (99.41778175 0.1906065189 2.306934574e-20) (99.50481017 0.2450066176 -3.813133382e-20) (99.26198932 0.2916331728 -3.128995559e-20) (99.07526757 0.4254818081 1.557985286e-20) (99.22165226 0.4890158288 7.777623273e-21) (98.85494814 0.5903392116 -8.016521141e-21) (98.44900839 0.8623075986 -4.607420749e-20) (98.82321871 0.9649033149 0) (98.56756433 1.085372415 1.018931059e-21) (98.42609671 1.245788543 -1.17245396e-19) (98.58376034 1.26159748 0) (97.94683226 1.874296772 -2.98192998e-21) (97.77009252 2.141323784 4.331226254e-19) (98.01022581 2.128093764 2.133019231e-19) (97.19336508 3.182958506 4.351363989e-19) (97.00328144 3.616876963 -9.657472267e-19) (97.38084126 3.494191533 0) (96.55976171 5.20977838 -1.635918726e-18) (96.49845391 5.832477703 8.58479553e-19) (97.01053359 5.482786232 6.651587897e-19) (96.80841264 7.843572478 6.6969113e-19) (97.12764331 8.492749009 0) (97.59535075 7.753856531 -4.500259439e-19) (98.74439592 9.935375698 5.017067978e-20) (99.43052366 10.15539926 0) (99.46494136 9.149905257 0) (101.3885537 9.840652209 -4.088158952e-19) (101.9065524 9.493655159 -1.10776433e-19) (101.5069124 8.688281437 -5.066351228e-19) (102.9188976 8.10397316 1.483598174e-19) (103.0950382 7.596101596 -1.590680307e-18) (102.58354 7.130516342 -5.109552997e-21) (103.2820887 6.101081004 -6.316882454e-20) (103.2491873 5.640694783 -1.319994298e-19) (102.7914431 5.387908984 6.998658229e-21) (102.9775849 4.37298179 -5.338647926e-19) (102.8519052 3.99276775 5.226663547e-19) (102.5009504 3.861225525 -1.883499646e-19) (103.0289689 3.055240386 0) (102.406674 2.323127609 5.403245568e-20) (101.9526046 2.290404505 -2.466909407e-20) (102.0760775 1.865307221 3.29871508e-20) (101.7675907 1.489595201 3.456212321e-20) (101.4454002 1.486759571 6.651394067e-20) (101.4875182 1.175107364 -1.723962518e-20) (101.249769 0.9040989614 -1.607741148e-22) (101.0307339 0.9401700854 -1.68428823e-20) (99.43992287 -0.04211610428 -1.557827676e-20) (99.26877988 0.01309008221 -1.584492989e-20) (99.33754835 0.1115116305 0) (99.06223606 0.08729889522 -1.913369152e-22) (98.81190394 0.1925013426 2.435455497e-20) (98.93617612 0.3265296568 -1.310500043e-22) (98.50929582 0.3293038888 8.278215724e-21) (97.98144196 0.5274655316 -9.261882853e-23) (98.32568581 0.7993351757 0) (98.00761367 0.8597594018 -1.240346446e-19) (97.79407588 1.018231447 -1.213519374e-19) (97.94780152 1.102797686 0) (97.02989759 1.654612026 9.82304396e-19) (96.71802836 1.941227469 -9.883037386e-19) (96.98645106 2.033955132 0) (95.61489251 3.116942017 5.126882915e-19) (95.20497708 3.639458084 1.326143511e-19) (95.69131228 3.715108101 -4.794426305e-19) (93.9741823 5.795863754 0) (93.62567819 6.750791305 0) (94.48188782 6.641932748 0) (93.32424873 10.45874073 -3.4032821e-20) (93.72152105 11.93084238 -2.402927144e-19) (94.90915837 11.02479728 -5.222017086e-20) (97.35882852 15.56869256 -1.373541457e-19) (99.1597399 15.98973254 3.185126256e-20) (99.26073934 14.13599651 5.811249279e-21) (103.8254974 14.41171492 0) (104.7556655 13.36758028 1.237902616e-20) (103.7907336 12.29942947 1.708507864e-19) (106.0292528 10.18795667 -1.439168172e-18) (106.093518 9.25154022 6.360046945e-20) (105.1966606 8.89265512 -2.681333271e-19) (105.743213 6.896889895 -6.963644182e-19) (105.5286698 6.252257253 5.163836528e-19) (104.8899568 6.173414533 -2.592028665e-18) (104.7645699 4.631834461 -6.747561777e-19) (104.4922562 4.17698185 3.244806706e-19) (104.0503201 4.19074201 -1.439049527e-23) (104.3361595 2.833137255 0) (103.3864025 2.102420393 0) (102.8895869 2.262766001 -2.724080341e-20) (102.8687146 1.662207858 9.426202608e-21) (102.417207 1.294038798 0) (102.0963153 1.426532251 0) (102.017921 1.000282852 0) (101.669423 0.7432069724 -1.805229436e-20) (101.4637095 0.8620491451 4.475236646e-20) (99.39059465 -0.2599952018 -5.847625319e-21) (99.18468446 -0.2468563421 0) (99.21637421 -0.1095586655 0) (98.93532966 -0.218742103 -1.214498827e-20) (98.63299931 -0.1684516608 0) (98.70892369 0.02598166393 1.683019273e-20) (98.26444448 -0.09082155628 -5.953386371e-20) (97.65309576 -0.01807769106 -1.625877831e-20) (97.88178111 0.4082977123 -2.546977731e-19) (97.54166542 0.3783435409 -5.079771105e-19) (97.26609186 0.4939290061 2.561794647e-19) (97.38210279 0.6511498952 0) (96.19151139 0.9897299522 5.347394526e-19) (95.73494668 1.219717775 0) (95.95646529 1.451912436 2.619743114e-19) (94.01224266 2.180172717 -1.488998063e-19) (93.30425534 2.616569533 -1.951700249e-20) (93.74251608 2.993185737 1.755347082e-19) (90.68252906 4.480154685 0) (89.60319822 5.394824504 0) (90.60939778 6.072999429 -5.761133428e-19) (92.56986302 25.16590766 0) (95.35833371 26.21377661 1.023006202e-19) (95.85732786 23.78080715 -5.867985843e-20) (111.2771261 11.12538722 1.482275611e-20) (110.7494595 9.666273725 -2.320919072e-19) (109.4261384 9.779369976 0) (109.0157729 6.542822263 0) (108.4434451 5.786346087 0) (107.6858229 6.044167709 0) (106.8354198 4.04997316 -8.563410597e-19) (106.3419113 3.596056319 -3.62309209e-21) (105.881845 3.824641295 -7.793414488e-19) (105.5938746 1.992984309 0) (104.3231803 1.469986178 3.103025204e-20) (103.8750707 1.839182631 -4.221748189e-20) (103.5896452 1.104766221 -5.484689265e-21) (102.9817486 0.8150625802 -1.477896109e-22) (102.716976 1.088719635 -9.846415401e-21) (102.4747706 0.5954943523 -2.645884465e-20) (102.0345849 0.4114706271 5.903032779e-23) (101.8635848 0.6108261499 9.398890389e-21) (99.42379932 -0.5255515456 2.922562945e-21) (99.19528683 -0.5661039892 -1.99518095e-21) (99.17691384 -0.4028356237 -1.960323962e-21) (98.91864708 -0.597670575 -4.079773518e-21) (98.58340175 -0.6184793359 0) (98.58983793 -0.3852108553 4.23967057e-21) (98.17618191 -0.6246092788 0) (97.55129321 -0.707273591 2.451022147e-19) (97.60521124 -0.1834793219 2.600176646e-19) (97.28951965 -0.3172547759 -2.597725475e-19) (96.96742638 -0.2740025848 -3.933349198e-19) (97.015523 -0.06662126779 -5.121772373e-19) (95.68994465 -0.0690552844 -2.7987965e-19) (95.14464742 0.02553793132 -3.604273512e-19) (95.24166979 0.3523341341 2.692686511e-19) (93.07091729 0.3813293289 -6.385790447e-20) (92.20872183 0.5142729372 2.688789093e-19) (92.36146629 1.0929798 0) (125.5426678 21.36011966 0) (124.1978435 19.05210901 5.294479264e-20) (122.0994626 19.94931933 0) (117.8471184 8.194159203 -1.354281354e-18) (116.1774484 6.892337063 -3.105354356e-19) (114.9121552 7.958583797 2.94177774e-19) (112.2927224 4.300531618 1.391436117e-19) (111.2653373 3.714668736 -1.408542407e-19) (110.6281637 4.397679822 0) (108.7037286 2.431309099 -4.913852828e-19) (107.9829258 2.108594296 4.68637309e-19) (107.623251 2.569663028 4.452668077e-19) (106.4820319 0.5781757634 -2.54034772e-20) (104.9800104 0.4224154563 -1.206796529e-19) (104.6991143 0.9920379101 4.544068892e-20) (104.0765319 0.2276473349 2.233566611e-20) (103.3443549 0.08910316819 -3.879873223e-21) (103.1951855 0.4777461695 7.862216233e-21) (102.7494753 -0.001191306504 -1.123124067e-20) (102.246302 -0.07293806805 0) (102.163994 0.190845583 -1.258491667e-22) (99.55318375 -0.8158630884 0) (99.3172453 -0.9151369434 0) (99.2419248 -0.7411839179 0) (99.03249131 -1.011839528 -2.003577225e-21) (98.68892059 -1.109194506 0) (98.61619913 -0.8620473909 -2.120707788e-21) (98.27706205 -1.206708894 -1.710337324e-20) (97.69522286 -1.438680485 -1.601612312e-20) (97.56451457 -0.8928789749 3.302613386e-20) (97.302325 -1.113179518 -1.593349557e-20) (96.96731534 -1.15116327 1.218233045e-20) (96.93756408 -0.9295164527 0) (95.65703462 -1.274415681 0) (95.11010461 -1.325135812 2.937828661e-19) (95.06755245 -0.9911038816 0) (93.11399622 -1.560292285 -2.113795936e-20) (92.33034697 -1.688918985 1.837383267e-19) (92.21103299 -1.177016649 0) (136.3554898 5.173064003 -1.198599448e-18) (133.8724595 4.910262906 0) (133.475896 6.936853783 8.056720862e-20) (121.4127769 1.134595091 7.797783108e-19) (119.1610972 0.8915767049 3.656153502e-19) (118.7838865 2.551028613 3.319288465e-19) (114.1155342 0.3490124207 1.584824357e-19) (112.8323022 0.2210848166 -3.029213274e-19) (112.6102538 1.175811826 4.529921891e-19) (109.7244551 -0.0557947047 -9.212879263e-19) (108.8706727 -0.1231257184 6.25038543e-19) (108.7420614 0.480827139 1.572892902e-20) (106.7107799 -1.174862158 -1.032467878e-19) (105.1789015 -0.8951881374 -9.393038163e-20) (105.1453331 -0.2161560611 1.463865794e-19) (104.1973879 -0.8511107369 0) (103.4060885 -0.7933859428 0) (103.4172965 -0.3408258824 2.794028263e-21) (102.7705176 -0.7250212519 0) (102.2412784 -0.6582488857 0) (102.2722802 -0.3622992449 -9.674427951e-21) (99.78165091 -1.105718936 9.325162571e-22) (99.55309287 -1.261537574 0) (99.42142375 -1.092828883 0) (99.27853933 -1.420513267 0) (98.94978579 -1.589881997 0) (98.80075888 -1.35364905 0) (98.56315976 -1.773347703 -4.209318582e-21) (98.05994615 -2.126606587 0) (97.76722782 -1.619944178 -2.886267107e-19) (97.57559824 -1.896556869 -5.136928817e-19) (97.25767375 -2.007216458 -5.141490204e-19) (97.16090792 -1.800503002 1.048393765e-18) (96.03462041 -2.400209815 -3.626268028e-20) (95.53638904 -2.558854741 5.718326758e-19) (95.3962615 -2.268814186 -2.169851238e-19) (93.78940484 -3.158003066 -2.053462489e-20) (93.1360481 -3.409590315 0) (92.89990925 -3.025968081 2.590656077e-19) (132.8124276 -10.01429973 0) (131.0705266 -9.054741117 -2.04549244e-18) (131.8473577 -7.625762464 2.056061372e-18) (120.2236841 -6.186956005 -1.460018227e-18) (118.2839553 -5.46913668 1.100042829e-18) (118.8186952 -3.998343315 -3.601086317e-19) (113.7263111 -3.963658105 -1.432063357e-18) (112.5187657 -3.60648322 -5.120543829e-21) (112.7647722 -2.687719667 8.850275636e-19) (109.5357457 -2.788349876 5.190731091e-19) (108.7026091 -2.577252867 -4.869426526e-19) (108.8427352 -1.974896822 -2.42844456e-19) (106.2096135 -2.912391166 8.076633558e-19) (104.8366056 -2.243209288 -6.810519199e-20) (105.0741871 -1.580457039 0) (103.8912801 -1.956175909 8.320858523e-20) (103.125783 -1.699236212 -4.297635176e-20) (103.3081998 -1.252575425 -4.376471125e-20) (102.5079691 -1.470296868 0) (101.9988113 -1.262451265 4.654850243e-21) (102.1492896 -0.9789097678 0) (100.0999045 -1.372665846 1.269314609e-23) (99.89241787 -1.57630027 -9.085035095e-22) (99.71092439 -1.4266678 1.857846636e-21) (99.64337113 -1.788849075 3.694621481e-21) (99.34776155 -2.019058438 -3.781737198e-21) (99.13327809 -1.812989343 1.999026819e-21) (99.00717527 -2.274381095 9.953372025e-21) (98.60099554 -2.715272442 -9.286698824e-22) (98.18066149 -2.287187362 2.449848034e-19) (98.06484912 -2.592288728 -1.51610556e-20) (97.78162825 -2.759377088 0) (97.63211894 -2.584112308 1.553563732e-20) (96.7010435 -3.347831164 0) (96.26641462 -3.577902672 2.047525107e-19) (96.06189923 -3.344894318 -2.729229453e-19) (94.76698429 -4.385933245 1.537509775e-19) (94.21368525 -4.695489972 -3.165620327e-19) (93.92804816 -4.406823421 -1.598314125e-19) (124.0415813 -18.10966526 7.809834139e-19) (123.1251428 -16.92649265 7.876075896e-19) (124.1992059 -16.25524791 3.227112741e-20) (116.0610061 -11.18864407 2.458121143e-18) (114.7841758 -10.01197517 -1.238079755e-18) (115.8074152 -9.09406601 -1.554975324e-18) (111.5452592 -7.364500438 1.113870883e-18) (110.6280518 -6.701400068 2.583003829e-19) (111.2056928 -6.02904298 -2.772993052e-19) (108.2495699 -5.12389811 1.639006645e-20) (107.5582389 -4.705405454 -4.385432609e-19) (107.920123 -4.227917446 -4.685642781e-19) (105.0973712 -4.318475247 0) (104.014857 -3.397634548 4.128597743e-20) (104.4770004 -2.855838847 2.264865983e-20) (103.1994599 -2.916726979 -4.116379039e-20) (102.531634 -2.499162336 -3.768607407e-20) (102.8636907 -2.119377344 4.138283067e-20) (101.986746 -2.137457882 2.826198291e-20) (101.5373122 -1.811167445 4.392799764e-21) (101.7927018 -1.573569077 -1.128678829e-21) (100.4953841 -1.598478556 0) (100.319095 -1.832538941 3.514236081e-21) (100.0954495 -1.715653613 3.51829815e-21) (100.1047055 -2.090923702 0) (99.85424506 -2.36776168 9.085734421e-22) (99.58956511 -2.204723765 7.509176517e-21) (99.5725486 -2.676851471 5.603974205e-20) (99.26812717 -3.171620241 0) (98.75807884 -2.844871448 1.434578353e-20) (98.71632547 -3.15421898 -4.511355352e-19) (98.47747585 -3.361443513 1.810278348e-21) (98.28991727 -3.227051369 -1.455730679e-20) (97.5636126 -4.084644128 -2.754437326e-19) (97.19650826 -4.362646408 0) (96.94878832 -4.1889642 1.429720564e-21) (95.92715578 -5.313994036 1.737319569e-20) (95.45402096 -5.668570289 0) (95.12860447 -5.451595198 -1.448153486e-19) (114.9256683 -20.83645173 -5.019194816e-19) (114.6246991 -19.74252115 4.966667726e-19) (115.6642798 -19.73499541 -5.322892488e-19) (110.9589806 -13.45503854 -1.160280013e-18) (110.3158239 -12.2227773 0) (111.4490803 -11.88002569 2.563692548e-19) (108.4751965 -9.32724039 8.672181044e-19) (107.9006145 -8.564525996 -8.735769698e-19) (108.6165172 -8.217824939 -2.338036024e-19) (106.2953716 -6.682756987 -3.871985522e-19) (105.7970291 -6.162880436 0) (106.2715174 -5.869464131 3.94226029e-19) (103.6337322 -5.225423747 1.533201242e-19) (102.871096 -4.219114728 -2.888392681e-20) (103.4716203 -3.853518424 9.753859989e-21) (102.2394442 -3.616589811 3.821725658e-20) (101.7076101 -3.101174307 -3.583974684e-20) (102.1415281 -2.828104415 3.631485985e-20) (101.2674675 -2.648866621 5.452782047e-22) (100.905491 -2.250435353 -3.312162264e-20) (101.2426207 -2.081501795 -4.392761869e-21) (100.9569138 -1.775002029 4.100774975e-19) (100.8093059 -2.037009497 0) (100.5613329 -1.941162524 0) (100.6330914 -2.324818957 0) (100.43166 -2.630581666 4.299346478e-19) (100.1406876 -2.504786016 0) (100.2130887 -2.98178237 -4.187282589e-19) (100.0063422 -3.490431325 6.858999743e-21) (99.44813836 -3.264222701 0) (99.47267488 -3.558223825 -2.58020946e-20) (99.2841096 -3.790291354 4.124533019e-19) (99.07476168 -3.700896646 5.432443682e-20) (98.55581404 -4.592870013 -6.746475575e-21) (98.26221225 -4.899637958 -2.254848731e-19) (97.9857062 -4.790193462 1.098597319e-19) (97.24454053 -5.948056383 0) (96.86280088 -6.342184604 0) (96.49385931 -6.20655384 2.55634771e-19) (93.3725181 -9.312565322 0) (93.25744841 -9.454675432 -3.919225621e-22) (93.12642476 -9.37210395 -2.803056996e-21) (103.0120033 -29.60399263 -1.020528834e-19) (103.7409164 -28.90916855 -2.941528676e-19) (104.4435471 -29.31256068 -1.035888756e-19) (105.9731966 -18.62275177 3.649351889e-19) (106.2809724 -17.2202005 -9.188273662e-21) (107.7281117 -17.74024753 9.872289092e-19) (106.2622667 -13.43974213 -3.138864508e-19) (106.0916866 -12.43116356 3.814329396e-20) (107.0747943 -12.54226865 0) (105.3492342 -9.912435426 0) (105.0604696 -9.199012768 3.188852908e-19) (105.7436682 -9.140191258 1.418226275e-18) (104.1293106 -7.381162955 3.090946784e-19) (103.8123129 -6.858388478 -3.177281917e-19) (104.3087668 -6.751470445 6.440901435e-19) (102.070021 -5.616782034 -9.710912706e-20) (101.6089715 -4.674813348 -1.688400477e-20) (102.2425963 -4.496758517 8.803661171e-20) (101.156414 -4.019848293 1.042087091e-21) (100.7609571 -3.47654832 3.127197817e-20) (101.2428478 -3.316657666 0) (100.4312176 -2.981562363 -2.371646711e-20) (100.1566305 -2.546025011 0) (100.540922 -2.455447213 0) (101.4491323 -1.8870693 0) (101.3326419 -2.170435389 0) (101.0662174 -2.115116318 0) (101.1978221 -2.470629 0) (101.0456201 -2.787487872 0) (100.7323007 -2.722431409 0) (100.8861854 -3.148003346 9.607019669e-20) (100.7821641 -3.647437971 -1.782175094e-19) (100.1950557 -3.548576119 1.409062979e-19) (100.2767252 -3.815404619 4.576219996e-19) (100.1394128 -4.055194503 -1.909987846e-19) (99.91691771 -4.013068924 3.772384244e-19) (99.59703711 -4.880596719 4.27409767e-21) (99.37876148 -5.194205183 -1.906066709e-19) (99.08771552 -5.156590679 0) (98.63685763 -6.266564903 0) (98.36555734 -6.673915831 -1.045318397e-19) (97.9739181 -6.644690547 1.048505433e-19) (96.64824585 -18.32048065 0) (97.81715916 -18.27836776 0) (97.9700265 -19.4161109 -3.844883373e-20) (101.6409046 -14.9271112 -9.703144196e-20) (102.1559443 -14.19836569 0) (102.9403721 -15.02802877 1.524459963e-19) (102.805316 -11.99932758 3.313433055e-19) (102.8533482 -11.31860085 -4.33492939e-19) (103.5487486 -11.67010219 -4.778346095e-19) (102.7117747 -9.466399413 0) (102.596422 -8.908285868 -4.922806028e-19) (103.1591619 -9.044946572 0) (102.1324154 -7.39054168 -2.370744527e-19) (101.9450662 -6.926932224 -4.877987242e-19) (102.3894334 -6.957879433 -2.590211965e-19) (100.6184543 -5.617861681 2.578775492e-20) (100.3727055 -4.778753933 -2.744749547e-20) (100.9817595 -4.763640786 4.514126687e-20) (100.0600428 -4.166318869 7.26252585e-21) (99.7880232 -3.63668231 6.726830773e-21) (100.2724117 -3.581400273 5.933656199e-20) (99.56057723 -3.144916597 -2.743803368e-20) (99.36862691 -2.697529381 -3.513064119e-21) (99.76174605 -2.678491415 3.513257396e-21) (101.9578054 -1.93889724 0) (101.8750374 -2.229543727 0) (101.6036619 -2.209694408 0) (101.7803683 -2.528728238 0) (101.6758834 -2.844007793 0) (101.3622768 -2.827303785 0) (101.5707248 -3.189956009 5.444965387e-21) (101.5443225 -3.658089192 -1.584569975e-19) (100.9760096 -3.663497034 1.709335324e-19) (101.0975798 -3.882753406 3.316155264e-19) (101.0156818 -4.105999016 -1.598815997e-19) (100.8014235 -4.108758552 3.12853836e-21) (100.6617628 -4.875367809 3.218455652e-19) (100.5148529 -5.165116026 -3.201455795e-19) (100.2410348 -5.195346795 -1.71579015e-19) (100.0278262 -6.138487541 0) (99.86055268 -6.50072442 0) (99.5055967 -6.582478298 3.369079042e-19) (99.42986084 -7.721927709 -1.594363538e-19) (99.36430372 -8.182931582 -1.458732049e-19) (98.89838638 -8.366889913 -1.660235633e-19) (98.65869754 -9.754156678 1.309210727e-19) (88.86235354 -8.490525579 0) (88.3074802 -8.786439202 0) (98.28883557 -11.77748355 4.859037914e-20) (98.87979412 -11.84449633 0) (98.81311061 -12.78756524 1.712557592e-20) (99.99221945 -11.49788841 1.511100256e-19) (100.2614993 -11.21457441 2.097483892e-19) (100.5912028 -11.8901577 0) (100.6915692 -10.1258325 5.152224885e-19) (100.7557377 -9.725500463 -2.916368232e-19) (101.1859287 -10.1264929 1.877809059e-20) (100.7679611 -8.509080004 -1.764482205e-19) (100.7226667 -8.109301845 1.754709835e-19) (101.1364483 -8.336377863 -1.89817493e-19) (100.4763366 -6.943209282 3.843034841e-19) (100.3642989 -6.569311749 -1.473872488e-19) (100.7289846 -6.687850835 -5.622370876e-21) (99.37300667 -5.343728562 0) (99.24933447 -4.639061995 0) (99.79262465 -4.732537065 1.349142782e-20) (99.03880815 -4.108213975 0) (98.86277957 -3.617442572 -2.468280064e-20) (99.31613465 -3.645333675 5.846384453e-21) (98.7199582 -3.164073891 9.222402079e-21) (98.59755622 -2.731258918 2.315886697e-20) (98.9787606 -2.767350445 0) (102.4631186 -1.938947834 0) (102.409577 -2.225463173 0) (102.1443468 -2.235474936 0) (102.3484943 -2.513131734 0) (102.283466 -2.816066974 0) (101.9836217 -2.83945376 0) (102.2215154 -3.134703087 0) (102.2472885 -3.558854262 5.360912569e-22) (101.7264959 -3.642991704 3.940474726e-20) (101.8663756 -3.812611914 0) (101.8205663 -4.013878332 1.404844965e-19) (101.6271986 -4.048354913 1.481601928e-19) (101.6165331 -4.677251117 2.709384377e-19) (101.5254804 -4.921082654 -4.077331473e-19) (101.2886106 -4.995888054 -2.851060471e-19) (101.2131312 -5.722546456 -2.503894995e-19) (101.1069609 -6.010975967 4.873805432e-19) (100.8223991 -6.150938076 7.99993033e-21) (100.8427252 -6.917874502 5.389026383e-20) (100.793626 -7.220037865 -2.597980141e-19) (100.4933179 -7.48026815 5.53845856e-20) (98.97473923 -8.074758523 1.332431183e-20) (90.75270869 -7.34573797 0) (90.36201536 -7.63412367 0) (99.0032014 -9.117840357 3.13630732e-20) (99.18111788 -9.131780077 0) (99.11020226 -9.687679402 0) (99.40101097 -9.107375255 0) (99.46112026 -8.991408375 -2.541519508e-20) (99.602944 -9.481019781 -3.06030889e-21) (99.52340364 -8.440686179 1.641420652e-19) (99.51748678 -8.210496079 -2.594865317e-20) (99.76721505 -8.571308121 5.436932274e-20) (99.43889175 -7.433142894 3.095245114e-19) (99.39201894 -7.153956496 6.44000404e-20) (99.68007793 -7.395460766 -2.941972095e-19) (99.19512392 -6.285209329 -5.077783827e-20) (99.11107273 -5.992348569 3.977396403e-20) (99.39481611 -6.146953028 -1.926898126e-20) (98.35270025 -4.926462649 0) (98.27945246 -4.354287412 0) (98.74334179 -4.508459684 0) (98.14088583 -3.913087692 4.317798851e-20) (98.03118895 -3.481956519 0) (98.43379659 -3.560635149 -5.664114323e-20) (97.9444017 -3.076843034 -4.302790354e-20) (97.8687963 -2.670391795 4.289004426e-20) (98.22719019 -2.749515477 -2.131648116e-20) (102.9502528 -1.895181839 0) (102.9206524 -2.169284864 0) (102.668798 -2.20381937 0) (102.8860695 -2.438292398 0) (102.8511545 -2.721318422 0) (102.5732419 -2.775834914 0) (102.8210743 -3.006662356 0) (102.8741307 -3.380816133 0) (102.4113563 -3.521544605 -1.062160945e-21) (102.5541104 -3.646313699 0) (102.5324528 -3.819469291 0) (102.3643637 -3.874877191 0) (102.4157688 -4.372558291 1.155628497e-19) (102.3574315 -4.56869517 -1.1497384e-19) (102.1661662 -4.663600107 2.339618049e-19) (102.1368734 -5.187170951 0) (102.0536977 -5.400100961 0) (101.8437274 -5.555374866 8.733605567e-21) (101.8018524 -6.039904413 -1.538750089e-19) (101.7299523 -6.221893941 -1.729891138e-19) (101.5301796 -6.45667074 2.068560356e-20) (99.86745759 -6.713631292 -6.435709182e-20) (92.25592627 -6.286966696 -2.249848202e-19) (91.88635078 -6.536982332 -3.01658294e-19) (99.39332729 -7.398101711 1.146407599e-20) (99.43217097 -7.386869636 1.270507774e-20) (99.3751501 -7.765273024 -2.70013859e-20) (99.18724017 -7.428182805 -5.504283595e-20) (99.10987837 -7.372820694 -2.564834788e-20) (99.17391787 -7.733228275 -6.007732512e-20) (98.8650705 -7.064631298 1.197449042e-19) (98.78508012 -6.922193395 -1.16957056e-19) (98.93599808 -7.221622256 -1.8878422e-20) (98.55348656 -6.40404461 -1.139736092e-19) (98.47587761 -6.20706497 -5.018214305e-20) (98.67519773 -6.436793501 0) (98.23461472 -5.568723818 0) (98.15339291 -5.348642284 0) (98.36800714 -5.510662191 0) (97.53881212 -4.453040207 0) (97.47322576 -4.002563916 0) (97.85766548 -4.184517072 0) (97.37297083 -3.639018802 0) (97.2984377 -3.265002469 0) (97.65270535 -3.381000051 0) (97.24291167 -2.909216167 0) (97.19772246 -2.540220424 0) (97.52543352 -2.648461217 0) (103.40958 -1.81720055 0) (103.3974928 -2.073938212 0) (103.1637822 -2.126393112 0) (103.3818323 -2.320167331 0) (103.3673439 -2.578618077 0) (103.1160655 -2.654722201 0) (103.3579139 -2.829674914 0) (103.4205486 -3.152155624 0) (103.0182871 -3.327995996 0) (103.1514327 -3.416406699 0) (103.1406507 -3.564460588 0) (102.9978407 -3.632464701 0) (103.0623752 -4.018187963 0) (103.0175848 -4.172559807 -9.476216552e-21) (102.8674287 -4.272458815 3.800032384e-20) (102.825906 -4.642149102 -2.087776794e-20) (102.7447054 -4.79816962 1.100562141e-20) (102.5919791 -4.944224362 -2.079219237e-20) (102.4609073 -5.250192972 -1.088188689e-21) (102.3600645 -5.37912441 9.508299412e-22) (102.225622 -5.576302829 8.58014901e-21) (100.4506655 -5.668268418 9.044854433e-20) (93.48269343 -5.366582498 -9.503029604e-20) (93.21172002 -5.582530075 -7.979828804e-22) (99.6222318 -6.162124134 2.570847411e-20) (99.61083029 -6.142378367 -2.350489337e-20) (99.5738197 -6.41822975 -2.234146511e-21) (99.10304806 -6.185549984 2.048201958e-20) (98.93537004 -6.152767979 8.253959531e-21) (98.97078255 -6.428939263 -4.446409355e-20) (98.46213898 -5.955964766 -5.087002871e-20) (98.31943495 -5.859855974 1.051117851e-20) (98.41954628 -6.10647639 -7.184100834e-21) (97.93956329 -5.495060533 1.863108501e-23) (97.8268959 -5.352778559 0) (97.96963474 -5.555376874 -1.586737819e-22) (97.52298537 -4.885026742 0) (97.43263164 -4.719738568 0) (97.59452425 -4.873004182 0) (96.89404452 -3.974539519 0) (96.80956617 -3.625819226 0) (97.12452744 -3.815032857 0) (96.72469049 -3.321424021 0) (96.66449034 -3.002568912 0) (96.96931188 -3.136812152 0) (96.62385702 -2.695275765 0) (96.5946733 -2.366407973 0) (96.88733155 -2.49027006 0) (103.8348539 -1.715335033 0) (103.8343329 -1.951926478 0) (103.6210673 -2.016193118 0) (103.8307373 -2.173848981 0) (103.8283366 -2.406050159 0) (103.6047515 -2.495014577 0) (103.829888 -2.624668895 0) (103.8887087 -2.898651176 0) (103.5446951 -3.090896806 0) (103.6616514 -3.15085654 0) (103.6539352 -3.275777408 0) (103.5339966 -3.349603124 0) (103.5813078 -3.649533432 0) (103.536711 -3.773081418 0) (103.4178754 -3.872717014 0) (103.3360907 -4.135387454 0) (103.2470295 -4.251540008 0) (103.1356775 -4.382763606 0) (102.9178906 -4.577437923 -2.255349915e-23) (102.7892163 -4.672185696 0) (102.6962881 -4.837202743 0) (100.3006452 -4.80463461 -1.752053607e-20) (94.38378094 -4.614887829 8.102597329e-21) (94.18589088 -4.784886361 0) (99.75665989 -5.214688967 -1.811221517e-21) (99.71812269 -5.20101839 -2.078460136e-21) (99.69802097 -5.415420749 1.200440956e-21) (99.04291405 -5.222311168 -1.391488499e-22) (98.8144249 -5.197565792 9.700182562e-23) (98.84295153 -5.416474279 7.361719691e-22) (98.18037293 -5.055552219 0) (97.99160657 -4.986356095 0) (98.06385802 -5.188345486 0) (97.49826063 -4.722644076 0) (97.3560672 -4.618474914 0) (97.46073951 -4.791072153 0) (96.98739528 -4.268420455 0) (96.88273964 -4.141899538 0) (97.00711613 -4.280690406 0) (96.37872212 -3.521328751 0) (96.268513 -3.252465768 0) (96.52525977 -3.43767596 0) (96.18253296 -2.993556604 0) (96.12256717 -2.725039319 0) (96.38277153 -2.863853098 0) (96.08488983 -2.461245802 0) (96.06072088 -2.171604063 0) (96.31897646 -2.300485181 0) (104.2231889 -1.598865717 0) (104.2292322 -1.814158987 0) (104.0370005 -1.885025672 0) (104.2319463 -2.011969361 0) (104.2349081 -2.21786005 0) (104.03828 -2.313103167 0) (104.2404971 -2.409388611 0) (104.2870435 -2.638208535 0) (103.9944827 -2.833890209 0) (104.0925434 -2.87283533 0) (104.0829898 -2.9775963 0) (103.9829099 -3.052016538 0) (104.0001767 -3.284531784 0) (103.9501768 -3.383750117 0) (103.8553548 -3.479229198 0) (103.7240379 -3.668011652 0) (103.6227819 -3.757076753 0) (103.5381044 -3.876029757 0) (103.2454142 -4.002182534 0) (103.0955035 -4.074914437 0) (103.0273155 -4.215978303 0) (99.85572552 -4.10805595 0) (95.07112459 -4.035269726 0) (94.90780231 -4.169087095 0) (99.83124419 -4.461098174 0) (99.76801276 -4.451498078 0) (99.75929618 -4.624643534 0) (98.98409051 -4.452848282 0) (98.71533825 -4.432602773 0) (98.73818874 -4.60888125 0) (97.9723745 -4.32383603 0) (97.75088858 -4.271846297 0) (97.80485543 -4.437663138 0) (97.17060708 -4.073445748 0) (97.00376677 -3.994437707 0) (97.08312026 -4.141024518 0) (96.57542277 -3.725233961 0) (96.45547316 -3.626408837 0) (96.55282848 -3.749319989 0) (95.96403311 -3.108145822 0) (95.82516686 -2.895737387 0) (96.03621836 -3.071289021 0) (95.72787056 -2.67715391 0) (95.66062066 -2.451087276 0) (95.88239951 -2.586427084 0) (95.61825361 -2.224556001 0) (95.59143739 -1.971155575 0) (95.8180493 -2.09817766 0) (104.5744179 -1.475386621 0) (104.5829199 -1.669451564 0) (104.4110861 -1.742735213 0) (104.5874447 -1.844700072 0) (104.5906208 -2.025403927 0) (104.418798 -2.121520288 0) (104.5945394 -2.194351367 0) (104.6249154 -2.383728588 0) (104.3768379 -2.573586895 0) (104.4552378 -2.598047437 0) (104.4407735 -2.685753759 0) (104.3573187 -2.75749073 0) (104.339098 -2.938241491 0) (104.2812168 -3.018325857 0) (104.2050999 -3.107001678 0) (104.0253001 -3.243589017 0) (103.9120786 -3.313019252 0) (103.8463905 -3.419290992 0) (103.4935037 -3.502111949 0) (103.3195237 -3.557873954 0) (103.2702779 -3.680370077 0) (99.61413848 -3.553018958 0) (95.66770984 -3.550257235 0) (95.5271975 -3.665190989 0) (99.85879324 -3.846225114 -2.515070277e-35) (99.78520379 -3.836288603 0) (99.78321223 -3.979404175 0) (98.93062491 -3.82623106 0) (98.63360901 -3.808884728 0) (98.65276908 -3.95372235 0) (97.81201868 -3.721453278 0) (97.5662465 -3.680656914 0) (97.60831814 -3.818512331 0) (96.91870548 -3.525832359 0) (96.73177592 -3.464056263 0) (96.79374054 -3.588752027 0) (96.25163594 -3.251840631 0) (96.11727834 -3.173121732 0) (96.19490744 -3.280838961 0) (95.62645793 -2.73759816 0) (95.45724721 -2.566095509 0) (95.63282072 -2.727086111 0) (95.34489361 -2.382386521 0) (95.2664844 -2.190922252 0) (95.4558003 -2.318485156 0) (95.21487703 -1.996243272 0) (95.18075656 -1.775109974 0) (95.37887086 -1.896028792 0) (104.8899101 -1.350766293 0) (104.8977228 -1.524564709 0) (104.7449683 -1.597140387 0) (104.9007957 -1.679356706 0) (104.9007756 -1.837013329 0) (104.7510529 -1.930271461 0) (104.8990357 -1.986283419 0) (104.9113766 -2.14278171 0) (104.7010243 -2.321632947 0) (104.7603655 -2.3361087 0) (104.7393546 -2.409622539 0) (104.6696539 -2.476820551 0) (104.6147609 -2.61814958 0) (104.5481362 -2.683234963 0) (104.4865782 -2.764001881 0) (104.2627475 -2.863724271 0) (104.1389717 -2.91875176 0) (104.0870848 -3.012802575 0) (103.6830405 -3.067428978 0) (103.478825 -3.109286054 0) (103.4441166 -3.215504269 0) (99.51802626 -3.092853115 0) (96.17720771 -3.126658674 0) (96.05721772 -3.227385132 0) (99.85810499 -3.335314 0) (99.78108002 -3.324300971 0) (99.78370312 -3.443940692 0) (98.88129817 -3.307082486 0) (98.56372451 -3.291796641 0) (98.58028495 -3.412486066 0) (97.68354995 -3.219173204 0) (97.41933736 -3.186108854 0) (97.45321599 -3.301844284 0) (96.71930679 -3.061711848 0) (96.51609955 -3.012165097 0) (96.5656966 -3.118519324 0) (95.99200626 -2.841223446 0) (95.84473035 -2.777378612 0) (95.90770296 -2.871236238 0) (95.34812841 -2.409056311 0) (95.1496546 -2.268367352 0) (95.29672348 -2.413151923 0) (95.0211418 -2.113380207 0) (94.92934995 -1.950257519 0) (95.0914299 -2.067600931 0) (94.86602236 -1.782657103 0) (94.82196662 -1.589727964 0) (94.99498769 -1.702076261 0) (105.1719211 -1.229271278 0) (105.1768556 -1.38430722 0) (105.0415076 -1.454013966 0) (105.176229 -1.520848225 0) (105.1707702 -1.658095574 0) (105.0404531 -1.746071537 0) (105.1607201 -1.789359477 0) (105.1545954 -1.919711354 0) (104.9759602 -2.084638736 0) (105.017533 -2.092372253 0) (104.9892413 -2.154157086 0) (104.9308301 -2.215890846 0) (104.8404369 -2.327221593 0) (104.7651069 -2.380508726 0) (104.7149072 -2.453144513 0) (104.4527385 -2.526741982 0) (104.3200911 -2.571043477 0) (104.2784091 -2.653826264 0) (103.8277727 -2.689350706 0) (103.5900218 -2.72035221 0) (103.5659304 -2.81244442 0) (99.51366665 -2.704381252 0) (96.61284922 -2.756031584 0) (96.51026904 -2.844023205 0) (99.8392667 -2.905367648 0) (99.76254956 -2.893658029 0) (99.76821881 -2.994633904 0) (98.83529589 -2.871819023 0) (98.50252668 -2.858097011 0) (98.51713233 -2.959687039 0) (97.5776697 -2.796348516 0) (97.29915624 -2.768893429 0) (97.32712585 -2.866793335 0) (96.55763906 -2.666623455 0) (96.34121096 -2.626048732 0) (96.38174108 -2.717011301 0) (95.78011583 -2.485834568 0) (95.62151962 -2.433242789 0) (95.67338934 -2.514767075 0) (95.11596679 -2.120017226 0) (94.89045175 -2.00305211 0) (95.01463919 -2.131716025 0) (94.74585126 -1.871503419 0) (94.63984977 -1.73175495 0) (94.77917663 -1.837870717 0) (94.56373761 -1.587036775 0) (94.50845989 -1.418553283 0) (94.6596451 -1.521127301 0) (105.4232564 -1.113872196 0) (105.4238801 -1.251862071 0) (105.3041351 -1.31729692 0) (105.4180982 -1.372260393 0) (105.4059356 -1.491959055 0) (105.2923994 -1.573282661 0) (105.3862611 -1.606365623 0) (105.3613383 -1.716369016 0) (105.2094268 -1.866459516 0) (105.2347608 -1.869466265 0) (105.1990719 -1.921557275 0) (105.1499607 -1.977487525 0) (105.0264384 -2.0659138 0) (104.9429273 -2.109863885 0) (104.9016562 -2.174581177 0) (104.6069019 -2.22961387 0) (104.4667862 -2.265760855 0) (104.4328688 -2.338333539 0) (103.9380012 -2.360507252 0) (103.666734 -2.383286904 0) (103.6501693 -2.463062783 0) (99.56777272 -2.372862865 0) (96.98598348 -2.432590389 0) (96.89786509 -2.509353913 0) (99.80927687 -2.541004351 0) (99.73465388 -2.528727411 0) (99.74230931 -2.614473376 0) (98.79210483 -2.503950574 0) (98.44804547 -2.491461477 0) (98.46111806 -2.577538173 0) (97.48853718 -2.438036558 0) (97.19873786 -2.414814792 0) (97.22227143 -2.49804362 0) (96.42400467 -2.329209036 0) (96.19677488 -2.295416137 0) (96.23045788 -2.373352307 0) (95.60458599 -2.178664009 0) (95.43617326 -2.134769204 0) (95.47945253 -2.205410792 0) (94.92038064 -1.867215698 0) (94.67036645 -1.768790813 0) (94.77601244 -1.882165797 0) (94.51036387 -1.656407257 0) (94.39020565 -1.536049097 0) (94.5104854 -1.630808016 0) (94.30111276 -1.410630509 0) (94.23421382 -1.263246024 0) (94.36650085 -1.355683235 0) (105.6469195 -1.006500033 0) (105.6423586 -1.129202341 0) (105.5364519 -1.189515985 0) (105.6305182 -1.235358932 0) (105.6108824 -1.340024544 0) (105.5119192 -1.414134935 0) (105.581246 -1.439528693 0) (105.5378072 -1.533132979 0) (105.4080706 -1.668165916 0) (105.4188559 -1.668134083 0) (105.3759704 -1.712260758 0) (105.3344895 -1.762385075 0) (105.1807864 -1.833353076 0) (105.0898533 -1.869879664 0) (105.0556408 -1.927103009 0) (104.7334715 -1.968934104 0) (104.5868266 -1.998726918 0) (104.5589837 -2.062119885 0) (104.0217911 -2.074881714 0) (103.7193021 -2.091542331 0) (103.7079739 -2.160548701 0) (99.65866463 -2.087666118 0) (97.30936794 -2.15050638 0) (97.2325158 -2.21744147 0) (99.77272856 -2.230900692 0) (99.70057991 -2.218164694 0) (99.70954583 -2.291219547 0) (98.75130212 -2.191526322 0) (98.39890977 -2.180024946 0) (98.41075289 -2.253240998 0) (97.41227592 -2.13315804 0) (97.11345097 -2.113230013 0) (97.13354947 -2.18418916 0) (96.3118203 -2.040537124 0) (96.07570247 -2.012003037 0) (96.10408336 -2.078820503 0) (95.4573497 -1.913560911 0) (95.28046211 -1.876512994 0) (95.3169736 -1.937581341 0) (94.75414881 -1.647163014 0) (94.48216299 -1.563409566 0) (94.57266819 -1.662643037 0) (94.30773819 -1.466789037 0) (94.17396947 -1.36259627 0) (94.27827764 -1.446376316 0) (94.07221407 -1.253454952 0) (93.99384162 -1.12423165 0) (94.10984677 -1.206702104 0) (105.8459017 -0.9083191089 0) (105.8356637 -1.017459088 0) (105.7419409 -1.072178516 0) (105.8172747 -1.111166239 0) (105.7897539 -1.202939598 0) (105.7033333 -1.269579635 0) (105.7501854 -1.289606809 0) (105.6890616 -1.369852838 0) (105.5777991 -1.490002907 0) (105.5755694 -1.488270521 0) (105.5258391 -1.525830873 0) (105.4906287 -1.570310827 0) (105.3098027 -1.628021622 0) (105.2122831 -1.658620164 0) (105.1836813 -1.708852454 0) (104.8383616 -1.741319524 0) (104.6857693 -1.76606181 0) (104.6627645 -1.8211979 0) (104.0854512 -1.827487353 0) (103.7551819 -1.83964524 0) (103.747456 -1.899145545 0) (99.77175907 -1.841834887 0) (97.59438186 -1.905005734 0) (97.52620769 -1.963148032 0) (99.73228817 -1.966264807 0) (99.6624909 -1.953281692 0) (99.67229974 -2.015616322 0) (98.7125354 -1.925486826 0) (98.3541145 -1.914798048 0) (98.36494953 -1.977177278 0) (97.34617338 -1.873224133 0) (97.04005857 -1.855922053 0) (97.05743055 -1.916471659 0) (96.21643571 -1.793466109 0) (95.97295083 -1.76909567 0) (95.99714006 -1.826338809 0) (95.33250875 -1.68520268 0) (95.14831096 -1.653628167 0) (95.17940959 -1.706269027 0) (94.61175437 -1.456534568 0) (94.32015123 -1.384487285 0) (94.3981883 -1.470792605 0) (94.13239495 -1.300903186 0) (93.9858077 -1.210234383 0) (94.07667917 -1.283659045 0) (93.871991 -1.114825086 0) (93.782606 -1.001198082 0) (93.88461145 -1.07415605 0) (106.023111 -0.8199412951 0) (106.0069677 -0.9171568361 0) (105.9238623 -0.966092342 0) (105.9818303 -1.000084661 0) (105.9463182 -1.080824205 0) (105.8706065 -1.139995896 0) (105.8970571 -1.156552478 0) (105.8193229 -1.225905676 0) (105.7234407 -1.331678521 0) (105.7096108 -1.329232462 0) (105.6534703 -1.361374229 0) (105.6234183 -1.400466508 0) (105.4184603 -1.448179631 0) (105.3151692 -1.474023847 0) (105.2910525 -1.517788185 0) (104.9259512 -1.543658691 0) (104.7678095 -1.564336972 0) (104.748693 -1.612043265 0) (104.1338883 -1.614064636 0) (103.7796357 -1.622918614 0) (103.7743743 -1.674042709 0) (99.89772282 -1.630286407 0) (97.8497781 -1.69243474 0) (97.78830477 -1.74269982 0) (99.68947628 -1.740435097 0) (99.621858 -1.727328991 0) (99.63219278 -1.780473824 0) (98.67555813 -1.698901126 0) (98.31293209 -1.688896956 0) (98.32292241 -1.742000691 0) (97.28826979 -1.651670712 0) (96.97622236 -1.63649919 0) (96.99139034 -1.688100297 0) (96.13446649 -1.582294712 0) (95.88483174 -1.561271759 0) (95.90565544 -1.610196699 0) (95.22565768 -1.489095533 0) (95.03514619 -1.461946479 0) (95.06186638 -1.507146172 0) (94.48885929 -1.292273112 0) (94.1797784 -1.229616364 0) (94.24750942 -1.30419276 0) (93.97978653 -1.156853952 0) (93.82126826 -1.077519262 0) (93.90083979 -1.141333862 0) (93.69612542 -0.9936873701 0) (93.59634852 -0.8934222025 0) (93.68637335 -0.9574887697 0) (106.1813172 -0.7415865523 0) (106.1592173 -0.8284133289 0) (106.0852886 -0.8715481511 0) (106.1273163 -0.9020967776 0) (106.0838953 -0.9734329891 0) (106.0172896 -1.025290428 0) (106.0252903 -1.03988155 0) (105.9321426 -1.10041619 0) (105.8490337 -1.19248323 0) (105.8248973 -1.19005642 0) (105.7628165 -1.217731998 0) (105.7370061 -1.25173656 0) (105.5107074 -1.292002897 0) (105.4023708 -1.314014257 0) (105.381865 -1.351818971 0) (104.9995722 -1.373096684 0) (104.8361787 -1.390466712 0) (104.8202216 -1.431472839 0) (104.1707626 -1.43082385 0) (103.7962738 -1.437246713 0) (103.7926933 -1.480942962 0) (100.0303443 -1.448709361 0) (98.08230621 -1.509071739 0) (98.02601488 -1.552351991 0) (99.6453954 -1.548244851 0) (99.57970364 -1.535121226 0) (99.59034015 -1.580246868 0) (98.64014992 -1.506389073 0) (98.27477234 -1.496956107 0) (98.28405845 -1.542003373 0) (97.23706274 -1.463312409 0) (96.92016039 -1.449884397 0) (96.93352872 -1.493696733 0) (96.06333957 -1.402396113 0) (95.80853405 -1.384090288 0) (95.82662832 -1.425721306 0) (95.13338871 -1.321429723 0) (94.93740714 -1.297884125 0) (94.96055986 -1.33648194 0) (94.38198616 -1.151661962 0) (94.05733008 -1.09653129 0) (94.11651858 -1.160484819 0) (93.84614502 -1.032762887 0) (93.67659035 -0.9629226002 0) (93.746662 -1.017886032 0) (93.54089745 -0.8888281467 0) (93.43140872 -0.7999695354 0) (93.51121888 -0.8558190088 0) (106.3231173 -0.6732341616 0) (106.2951231 -0.7510987162 0) (106.2290435 -0.7885250281 0) (106.2565589 -0.8169529219 0) (106.2054135 -0.8803595677 0) (106.1464897 -0.9251121089 0) (106.1377811 -0.9387739001 0) (106.0305262 -0.9924991597 0) (105.9579797 -1.071527873 0) (105.9247024 -1.069689694 0) (105.8571446 -1.09369487 0) (105.834813 -1.122914174 0) (105.5896717 -1.157758967 0) (105.4768952 -1.176668503 0) (105.4593124 -1.208978865 0) (105.0618014 -1.227171077 0) (104.8933977 -1.241836973 0) (104.8800184 -1.276755099 0) (104.1988624 -1.27470343 0) (103.8076478 -1.279364365 0) (103.8051884 -1.316385351 0) (100.1649418 -1.293794667 0) (98.29708118 -1.351945622 0) (98.24481483 -1.388900623 0) (99.60101646 -1.385567885 0) (99.53678158 -1.372545813 0) (99.54755024 -1.410607052 0) (98.60606865 -1.343714852 0) (98.2391097 -1.334749056 0) (98.24781791 -1.372711933 0) (97.19135024 -1.30404249 0) (96.87046242 -1.292042485 0) (96.88235765 -1.328995854 0) (96.00104056 -1.250036413 0) (95.74185538 -1.233943278 0) (95.75772735 -1.269117979 0) (95.05300591 -1.179031142 0) (94.85226277 -1.158424358 0) (94.87250305 -1.191129149 0) (94.28827486 -1.032336618 0) (93.94973923 -0.9831759826 0) (94.00184742 -1.037508914 0) (93.7283159 -0.9268811347 0) (93.54857075 -0.864970292 0) (93.61068341 -0.9118045016 0) (93.40308488 -0.7990220417 0) (93.28456044 -0.719852571 0) (93.3557181 -0.7681535316 0) (106.4509216 -0.6146998649 0) (106.4171895 -0.6849174423 0) (106.3577314 -0.7168053829 0) (106.372141 -0.7442424589 0) (106.3135583 -0.8011618655 0) (106.2610006 -0.839040578 0) (106.2371937 -0.8522787195 0) (106.1169257 -0.9012632437 0) (106.0531469 -0.9679835223 0) (106.0117554 -0.9670861792 0) (105.9391682 -0.9880808668 0) (105.9196847 -1.01280885 0) (105.6578788 -1.043848344 0) (105.5411509 -1.060247801 0) (105.5259346 -1.087480408 0) (105.1147359 -1.103776117 0) (104.9415406 -1.116238693 0) (104.9302554 -1.145588695 0) (104.2203747 -1.143155321 0) (103.8155543 -1.146555937 0) (103.8138274 -1.177542367 0) (100.2982437 -1.162946006 0) (98.49805668 -1.218682002 0) (98.44892791 -1.249887344 0) (99.55707628 -1.249094133 0) (99.49365413 -1.236274812 0) (99.50443148 -1.26803356 0) (98.57307518 -1.207472397 0) (98.20547235 -1.198878354 0) (98.21371659 -1.230537871 0) (97.15012395 -1.170548785 0) (96.82595816 -1.159709938 0) (96.83665515 -1.190557133 0) (95.94592332 -1.12215854 0) (95.6829978 -1.107861468 0) (95.69706623 -1.137268871 0) (94.98229644 -1.059240546 0) (94.77737828 -1.041022655 0) (94.79525094 -1.06842789 0) (94.20526772 -0.9323314399 0) (93.85451336 -0.8875959843 0) (93.90071416 -0.9332931449 0) (93.62360722 -0.837666835 0) (93.43442697 -0.782314436 0) (93.48992634 -0.8216703904 0) (93.27985757 -0.7231038086 0) (93.15294692 -0.6521000467 0) (93.21683189 -0.6934914 0) (106.5670355 -0.5657373805 0) (106.5277337 -0.6294849674 0) (106.4737612 -0.6560224583 0) (106.4763979 -0.6834475943 0) (106.4107109 -0.735239574 0) (106.363371 -0.7665680186 0) (106.3260544 -0.7798859735 0) (106.1935019 -0.8257322364 0) (106.1368995 -0.8809046794 0) (106.088336 -0.881193889 0) (106.0111488 -0.8997527617 0) (105.9939826 -0.9202657365 0) (105.7174017 -0.9488397067 0) (105.5971107 -0.9632247646 0) (105.5838021 -0.9857390918 0) (105.1601189 -1.001130727 0) (104.9823326 -1.011813641 0) (104.9727394 -1.036025391 0) (104.2369653 -1.034035747 0) (103.8212167 -1.036542783 0) (103.8199616 -1.062016754 0) (100.4278499 -1.05404301 0) (98.68798768 -1.1071402 0) (98.64142681 -1.133088063 0) (99.51418102 -1.136174519 1.391598692e-36) (99.45074336 -1.123641019 0) (99.4614314 -1.149712365 0) (98.54093453 -1.094940668 0) (98.17342927 -1.086627905 0) (98.1813133 -1.112605579 0) (97.1125139 -1.060169186 0) (96.78564837 -1.050256787 0) (96.79538292 -1.075600801 0) (95.89661168 -1.016273962 0) (95.63046491 -1.003418827 0) (95.64307875 -1.027617876 0) (94.91943526 -0.9598671807 0) (94.71083232 -0.9435843548 0) (94.72677872 -0.9661751798 0) (94.13111911 -0.8501034691 0) (93.76940479 -0.8079186744 0) (93.81085084 -0.8458546746 0) (93.52957902 -0.7639272103 0) (93.33169679 -0.7137657552 0) (93.3817826 -0.7462224904 0) (93.16869183 -0.6600188477 0) (93.03396895 -0.5958469052 0) (93.09186177 -0.6308845391 0) (106.6734585 -0.525961853 0) (106.628861 -0.5843801586 0) (106.5793439 -0.605805224 0) (106.5714497 -0.634023474 0) (106.4989554 -0.6817906463 0) (106.4558365 -0.7070121033 0) (106.4067665 -0.7216145164 0) (106.2622317 -0.7647572366 0) (106.2113136 -0.8092927593 0) (106.1564401 -0.8109779562 0) (106.0750618 -0.8276152963 0) (106.0597389 -0.8441861999 0) (105.7700203 -0.8714484044 0) (105.6464678 -0.8842522883 0) (105.6346626 -0.9023692522 0) (105.1994584 -0.9177236646 0) (105.017259 -0.9270011256 0) (105.0090023 -0.9464404408 0) (104.2499234 -0.9456066641 0) (103.8254595 -0.9475009881 0) (103.8244958 -0.9678793794 0) (100.5520502 -0.9654497479 0) (98.86859627 -1.015726107 0) (98.82424744 -1.036760355 0) (99.4728167 -1.044593905 0) (99.40838685 -1.032423614 0) (99.4189072 -1.053325428 0) (98.5094189 -1.003884636 0) (98.14257618 -0.9957695064 0) (98.15019872 -1.016583894 0) (97.07773684 -0.9707181704 0) (96.74864261 -0.9615202256 0) (96.75762964 -0.9818644617 0) (95.85190891 -0.9303178574 0) (95.58296358 -0.918592927 0) (95.59443228 -0.9380568494 0) (94.86287783 -0.8790405268 0) (94.65101803 -0.8642976081 0) (94.66542207 -0.8825085525 0) (94.06424099 -0.7839515603 0) (93.69190159 -0.7433362516 0) (93.72985932 -0.7737353403 0) (93.44404336 -0.7044093957 0) (93.2381764 -0.6581614698 0) (93.28391335 -0.6842970897 0) (93.06733748 -0.6087909876 0) (92.92543994 -0.550219701 0) (92.97834368 -0.5794901969 0) (106.7728251 -0.4952743934 0) (106.722712 -0.5492979055 0) (106.6765892 -0.5656101534 0) (106.6592366 -0.5956711361 0) (106.5800001 -0.6400586232 0) (106.540261 -0.6594494837 0) (106.4807173 -0.6771464232 0) (106.3252101 -0.7177282749 0) (106.2784699 -0.7517800672 0) (106.2180687 -0.7555155116 0) (106.1327812 -0.7707092503 0) (106.1188392 -0.7835370939 0) (105.8173183 -0.8105837064 0) (105.6907238 -0.8221913872 0) (105.6800632 -0.8361740909 0) (105.2341034 -0.8522884471 0) (105.0476491 -0.8604967094 0) (105.04041 -0.8754692577 0) (104.2603299 -0.8764436134 0) (103.8289227 -0.8779642386 0) (103.8280983 -0.8935918208 0) (100.6697384 -0.8959463138 0) (99.04074532 -0.9432540899 0) (98.99847734 -0.9596586223 0) (99.43338663 -0.9725394624 0) (99.36689584 -0.9608252183 0) (99.37716957 -0.9769673432 0) (98.47831643 -0.932503035 0) (98.11254054 -0.924508608 0) (98.11999185 -0.9405679139 0) (97.04507692 -0.9004338039 0) (96.71413173 -0.8917550702 0) (96.7225671 -0.9074971545 0) (95.81074148 -0.862613275 0) (95.53933439 -0.8517349318 0) (95.54993778 -0.866839883 0) (94.81121181 -0.8151946877 0) (94.59643921 -0.8016124221 0) (94.60967446 -0.8157941978 0) (94.0025085 -0.7324052081 0) (93.62036371 -0.6937903958 0) (93.6554094 -0.7167875289 0) (93.36539029 -0.657682785 0) (93.15192617 -0.6146567202 0) (93.19425239 -0.634788953 0) (92.97356414 -0.5686760281 0) (92.82457129 -0.5147306983 0) (92.87408657 -0.5384684087 0) (106.8664508 -0.4726037359 0) (106.8106278 -0.5242600567 0) (106.767243 -0.5357591276 0) (106.741473 -0.5681039186 0) (106.6557365 -0.6098527686 0) (106.6183923 -0.6235313056 0) (106.5495164 -0.645403553 0) (106.3838071 -0.6842228702 0) (106.3402174 -0.708191862 0) (106.2748413 -0.7142720498 0) (106.1858814 -0.7283853916 0) (106.1729637 -0.7376288349 0) (105.8606693 -0.7653820399 0) (105.7311895 -0.7761247979 0) (105.7213634 -0.786185684 0) (105.2652488 -0.8037741685 0) (105.0746789 -0.8112084989 0) (105.0681779 -0.8219684487 0) (104.2691173 -0.8253235986 0) (103.8321689 -0.8266699754 0) (103.831352 -0.8378444014 0) (100.7801698 -0.8444686784 0) (99.20447244 -0.8886121516 0) (99.16432824 -0.9006594501 0) (99.39627336 -0.9186367735 6.888068249e-36) (99.32658173 -0.9074692219 0) (99.33653527 -0.9191587001 0) (98.44743295 -0.8794149667 0) (98.08297775 -0.8714701412 0) (98.09034234 -0.8830832178 0) (97.01386711 -0.8479628465 0) (96.68136587 -0.8396191552 0) (96.68943336 -0.8510606978 0) (95.77213183 -0.8118702417 0) (95.4985257 -0.8015806388 0) (95.50851717 -0.8126098807 0) (94.76315126 -0.7671801286 0) (94.54571894 -0.7544360213 0) (94.55810165 -0.7648256305 0) (93.94472003 -0.6949727808 0) (93.55374662 -0.6577700583 0) (93.58657879 -0.6741650016 0) (93.29196863 -0.6231743751 0) (93.07130713 -0.582723112 0) (93.11105044 -0.5972201613 0) (92.88601856 -0.5394057478 0) (92.72987438 -0.4880140719 0) (92.776416 -0.5073292822 0) (106.9545633 -0.4611296062 0) (106.8955321 -0.5086089079 0) (106.8527823 -0.5154655865 0) (106.8206731 -0.5508636436 0) (106.7285226 -0.5907903307 0) (106.6918875 -0.5989537219 0) (106.615467 -0.6256896464 0) (106.4394199 -0.6637625331 0) (106.3979568 -0.6779741997 0) (106.3281582 -0.6866640859 0) (106.2357209 -0.7000483347 0) (106.2234966 -0.705841135 0) (105.9012718 -0.7351380827 0) (105.7690143 -0.7453097133 0) (105.759748 -0.751617162 0) (105.2939529 -0.771338095 0) (105.0993887 -0.7782652057 0) (105.093375 -0.7850068561 0) (104.2770731 -0.7912914022 0) (103.8356669 -0.7926330501 0) (103.8347478 -0.7995622148 0) (100.8828615 -0.8101439942 0) (99.3594322 -0.8509370458 0) (99.32150257 -0.8587926815 0) (99.36175413 -0.881923733 -4.56609209e-36) (99.28766887 -0.8713595818 0) (99.29725971 -0.8788109907 0) (98.41658206 -0.8435775165 0) (98.05355864 -0.8356142144 0) (98.06091772 -0.8430129588 0) (96.98346876 -0.8122847678 0) (96.64963182 -0.8041007764 0) (96.65750608 -0.8114666651 0) (95.73517816 -0.777119627 0) (95.4595787 -0.7671811392 0) (95.4691903 -0.7743451347 0) (94.71758014 -0.7341246982 0) (94.49769795 -0.7219269794 0) (94.50951079 -0.7287167694 0) (93.88962396 -0.6709381191 0) (93.48981249 -0.6342431604 0) (93.52193669 -0.6445889141 0) (93.22148854 -0.6003360274 0) (92.99393836 -0.5616971764 0) (93.03278246 -0.5707623173 0) (92.8020019 -0.5201596097 0) (92.64164153 -0.473129843 0) (92.68594303 -0.4852054315 0) (107.0661441 -0.4473758268 0) (106.9967267 -0.4994856772 0) (106.9304355 -0.5046896051 0) (106.9148955 -0.5422462667 0) (106.8150334 -0.5814300013 0) (106.7589478 -0.5856039336 0) (106.6927232 -0.6162961047 0) (106.500197 -0.6551647625 0) (106.4529797 -0.6607347414 0) (106.3794546 -0.6722340641 0) (106.2836746 -0.6852513856 0) (106.2716902 -0.6876841065 0) (105.9402903 -0.7193238954 0) (105.8053103 -0.7291798095 0) (105.7962424 -0.7318598692 0) (105.3212838 -0.7543125807 0) (105.1228559 -0.7609884274 0) (105.1169698 -0.7638761187 0) (104.2850588 -0.7737629494 0) (103.8399637 -0.7753318542 0) (103.8387276 -0.7780888303 0) (100.9784179 -0.7926664689 0) (99.50647948 -0.8299403569 0) (99.46926863 -0.8336684268 0) (99.32963157 -0.8617171279 0) (99.24991908 -0.8517598389 0) (99.25950797 -0.8551766628 0) (98.38537462 -0.8242162561 0) (98.02379253 -0.816170745 0) (98.03144625 -0.819519654 0) (96.95313724 -0.7926494359 0) (96.61812588 -0.7844591048 0) (96.62613689 -0.787908185 0) (95.69892969 -0.757665897 0) (95.42149454 -0.7478594909 0) (95.43108397 -0.75130094 0) (94.673342 -0.7153974466 0) (94.45116526 -0.7034617756 0) (94.46281832 -0.7067837272 0) (93.82913922 -0.6586753021 0) (93.41459552 -0.6207506802 0) (93.46266118 -0.627991523 0) (93.13755329 -0.5869330526 0) (92.90194661 -0.5489229216 0) (92.96148973 -0.5554162171 0) (92.70196323 -0.5069464185 0) (92.52944112 -0.4553179632 0) (92.60147791 -0.4726300739 0) (92.99838931 -9.285102849 2.43129477e-19) (92.87257754 -9.20213267 0) (92.9884421 -9.075677151 0) (109.7022328 -21.57102983 1.429084841e-18) (109.6324297 -22.69480039 -1.086247595e-18) (108.5544962 -22.36496912 1.28720418e-18) (95.43146981 -10.61288587 -1.990851192e-19) (95.22780035 -10.54763916 -4.068446311e-19) (95.32988382 -10.36275868 1.964460426e-19) (95.53638821 -21.54561547 -3.485343719e-19) (94.26145246 -21.57976827 8.68856557e-20) (94.1932158 -20.67359873 -5.958516742e-21) (102.5724006 -30.97978964 1.726487655e-19) (102.2430152 -30.80187615 1.666639949e-19) (102.873588 -30.41033776 -8.613939436e-20) (107.5357778 -22.00916625 5.717549367e-19) (106.5750392 -21.56509714 1.035339848e-18) (106.8348451 -20.52598465 -5.27462436e-19) (79.98065504 5.391928335 0) (80.71287549 7.165240083 0) (82.34218842 6.266852693 2.899225089e-19) (90.27672246 20.042957 2.22221839e-19) (88.50521095 21.42968033 -2.521794766e-19) (90.2772562 23.49663113 -2.554242847e-19) (132.8581816 8.970631932 -1.130644528e-18) (132.0031273 10.970327 -1.020688999e-18) (134.4458239 12.02647155 3.013906019e-20) (87.76922027 -4.964871624 -4.374825561e-19) (88.11249543 -4.662636652 -8.585892407e-19) (88.38520486 -4.881871119 -4.241279896e-19) (86.16597582 -2.842067334 -4.765744264e-19) (86.53016657 -3.23512505 0) (86.03159344 -3.633050946 9.638534229e-19) (132.5309392 -6.093284503 -2.121515845e-18) (133.1075582 -4.473754827 2.138504948e-18) (135.1702121 -5.112496883 -2.313446436e-18) (89.76433004 -6.335714928 -7.597627738e-19) (90.03045593 -6.115807308 0) (90.23399616 -6.265257285 -3.709514959e-19) (88.64698614 -5.087528651 -4.166124026e-19) (88.89852411 -5.280762245 0) (88.5929753 -5.545945507 0) (125.2632886 -15.50378913 8.204883045e-19) (126.3116991 -14.66732338 0) (127.502762 -15.83016906 0) (91.3014704 -7.486349814 3.404435388e-19) (91.54938881 -7.289990699 -3.326608957e-19) (91.73671 -7.440641102 0) (90.43165496 -6.412283916 3.613082965e-19) (90.6238749 -6.557359684 -3.608042801e-19) (90.36821704 -6.759684277 0) (89.52492581 -7.8398291 0) (89.64246659 -7.808137466 -2.535952491e-19) (89.67662173 -7.838649226 -5.088383808e-19) (92.97145134 -8.757912912 -6.621085553e-19) (93.19927686 -8.509718468 2.950328809e-19) (93.43803112 -8.657837394 2.853267583e-19) (91.92777648 -7.592693001 -3.231343721e-19) (92.12285737 -7.745162333 0) (91.88187705 -7.95438684 3.219507013e-19) (90.65074214 -9.2208349 2.467384032e-19) (90.8860661 -9.179216909 0) (90.92805793 -9.231413827 -1.194077116e-19) (90.32040921 -8.546919518 -5.023968158e-19) (90.36412679 -8.585593367 7.066605468e-22) (90.19469201 -8.629831695 2.552613817e-19) (113.4271059 -27.11265332 0) (113.3683823 -27.78964996 4.342631753e-19) (112.6533311 -27.69160694 1.206147575e-18) (95.22795278 -9.981186148 -9.426289971e-19) (95.39206912 -9.60738134 1.900474469e-18) (95.70561253 -9.707363117 2.258696034e-19) (93.68613992 -8.802825898 -2.791828964e-19) (93.94428996 -8.94352236 -2.760375843e-19) (93.73131442 -9.225208451 3.530357574e-19) (94.11573248 -9.946975914 4.476041672e-19) (93.96278871 -9.87064129 0) (94.07207568 -9.720722846 -2.242347499e-19) (149.5549633 11.34760077 0) (149.4559955 12.32012381 2.310517347e-18) (150.6126859 12.42135213 -2.283149623e-18) (86.72935916 -6.406534007 0) (86.90557007 -6.261966321 -2.70644648e-21) (87.04624262 -6.340502766 -2.73048594e-21) (85.98879232 -5.898236608 3.885400427e-19) (86.15929627 -5.94301951 0) (86.01255792 -6.114555091 -7.978892457e-19) (86.61328594 -6.684575076 -2.929099931e-19) (86.54756216 -6.640582187 -2.921438781e-19) (86.66965214 -6.573705976 -2.878117198e-19) (148.2486948 -3.895451952 1.034553694e-18) (147.5992451 -3.605849007 0) (147.8474333 -2.885437364 1.027203119e-18) (143.0425306 -12.3211876 -1.737512631e-21) (143.4170486 -11.82179058 0) (143.834921 -12.20532056 0) (150.7213369 9.476943693 -1.167242776e-18) (149.651659 9.45606694 0) (149.6171546 10.39401307 0) (148.0729015 -2.147950965 1.053304871e-18) (148.275234 -1.398759837 -1.051130721e-18) (148.9983929 -1.658656899 0) (86.87783049 -6.700374464 0) (86.75279077 -6.777820081 -6.259059721e-23) (86.68149985 -6.732145586 2.922804853e-19) (129.8026979 -22.17260739 0) (130.5704374 -21.78186614 -8.770639312e-19) (130.9573285 -22.60965023 -8.920952932e-19) (142.6433589 -13.80695609 -9.720816214e-19) (142.2681474 -13.36077076 -9.704212298e-19) (142.6560446 -12.89128063 2.908191031e-18) (90.06873832 -8.49894497 5.034881106e-19) (90.23486933 -8.458722423 0) (90.27758312 -8.498739848 2.51438278e-19) (89.71053166 -7.877520063 0) (89.74473357 -7.911554078 0) (89.61761046 -7.945539875 0) (90.96956278 -9.285997805 2.403811088e-19) (91.01314268 -9.33917555 0) (90.75633557 -9.382186781 -2.44681219e-19) (92.39582819 -8.649766747 0) (92.27654443 -8.771673983 0) (92.16468178 -8.688870004 -2.570873142e-19) (111.9560073 -27.58861581 -3.96957204e-19) (111.254063 -27.44955409 7.182640062e-22) (111.3754978 -26.70912316 3.571383267e-19) (94.53828419 -9.927326776 0) (94.43355247 -10.09604478 -4.336743039e-19) (94.2725803 -10.02543573 0) (84.68996152 -2.289806027 0) (85.41448405 -1.869006825 4.937099281e-19) (85.79113004 -2.389675295 0) (84.26612883 3.067708107 0) (84.22235158 2.082271586 0) (82.95779688 2.085887603 0) (77.11984302 -3.508941076 0) (77.96366494 -2.678754307 0) (78.69978407 -3.341175742 0) (75.08701764 4.367071212 0) (75.14493246 2.918113228 6.497318823e-19) (73.43418385 2.737302999 0) (85.48246565 -6.028377852 0) (85.61120616 -5.821972067 4.040672186e-21) (85.80663592 -5.857653433 3.931438588e-19) (83.87254713 -5.550529499 -1.367348907e-18) (84.24154179 -5.611275562 1.339272184e-18) (84.17774721 -5.995094433 -1.383473994e-22) (116.7324188 -19.43285685 0) (117.7690045 -19.31057079 -6.233984292e-19) (118.2807056 -20.36581751 0) (100.0469092 -25.82652275 0) (100.5812654 -26.41788959 -1.951244244e-19) (99.75605818 -26.97178224 1.364030635e-19) (82.9043877 -5.888804279 0) (83.0233334 -5.386079438 4.77059764e-19) (83.46771379 -5.477907533 -9.416873564e-19) (79.42940448 -3.878103226 0) (80.13130752 -4.307521138 0) (79.6984875 -5.062301915 0) (129.2247899 39.4942035 -1.859181977e-18) (128.397179 36.40452753 1.929764785e-18) (125.6105859 36.9426065 -4.362901724e-19) (122.6382411 -25.65733219 0) (122.4238626 -24.89105505 0) (123.1380695 -24.70533416 0) (118.2140587 -25.60256079 5.503577154e-19) (118.900547 -25.60231095 0) (119.0531765 -26.27095693 -1.322940407e-20) (128.6326814 -23.69225324 0) (128.2883609 -22.88975143 0) (129.0420397 -22.54182873 0) (123.8622009 -24.50884865 0) (124.5895933 -24.28954578 -7.271092049e-19) (124.8535871 -25.06483802 -7.181683241e-19) (81.5532873 29.47726239 -2.974185164e-19) (79.08678512 30.84440096 5.826926941e-19) (81.58137883 33.97258779 -2.850265484e-19) (69.01319046 7.303405267 0) (69.87176741 9.947280064 0) (72.1267991 8.779480729 0) (84.54542368 36.91133075 -7.388649095e-20) (88.40282642 38.87774224 7.670127047e-20) (89.45265225 35.70345006 -7.511232094e-20) (128.5841401 61.80440006 0) (128.1216875 57.69083859 1.057178046e-19) (124.6878632 58.11156728 0) (90.64917743 -8.889633243 2.550170956e-19) (90.68730139 -8.932092047 -2.553860893e-19) (90.49346123 -8.967517266 -9.021560141e-22) (65.73483181 -6.203148448 0) (67.12685026 -4.831943232 0) (68.35969235 -5.894426332 0) (62.63301741 5.480302564 0) (62.9104994 3.324221161 0) (60.26918571 3.268831633 0) (86.11434526 -6.401050257 0) (86.05261165 -6.378884727 0) (86.14514151 -6.31639467 2.971782355e-19) (86.34512412 -6.384094619 -5.756848883e-19) (86.23720235 -6.45266222 2.893700752e-19) (86.17626507 -6.425754304 0) (145.8350122 -7.635744551 -1.061573915e-18) (146.1519869 -7.036170072 2.700638526e-19) (146.6576663 -7.327989109 -2.744148202e-19) (145.6597713 -9.228568703 1.102152812e-18) (145.1878808 -8.874996562 -2.096915353e-18) (145.5130695 -8.297139136 0) (149.3570194 4.1489253 1.17818379e-18) (149.4557478 4.980935953 -3.506327403e-18) (150.3357717 4.87467897 5.731265672e-19) (149.8959874 2.334424919 0) (149.117592 2.498623314 2.273451482e-18) (149.2422358 3.300270748 1.157579923e-18) (133.0513603 -22.71935533 -7.599514837e-19) (132.6426136 -22.92632917 0) (132.5510227 -22.48130457 -7.442816978e-19) (123.0539403 -28.84821971 -5.870359217e-19) (123.2414529 -28.46036683 0) (123.6215406 -28.3839288 -1.176080217e-18) (121.0305516 -28.86237776 -5.2931386e-19) (121.3951889 -28.85044696 1.073538932e-18) (121.2801543 -29.19760134 -9.057374062e-21) (107.3726917 -31.30554874 -4.051246592e-19) (107.723289 -31.47103501 -5.501154421e-19) (107.1466141 -31.7857929 0) (93.15720137 -27.76839343 -1.293589457e-20) (93.22917363 -28.18889207 -1.901729745e-20) (90.7414448 -27.98507969 3.010398818e-21) (96.05403643 -9.776271352 -2.181589683e-19) (96.41713662 -9.818950688 0) (96.31485065 -10.21838909 0) (93.54231166 -12.48848481 2.36892455e-19) (93.24963101 -12.44169598 -2.21680455e-19) (77.59660633 -9.445190065 2.277053645e-19) (106.1593467 -31.46117019 0) (106.6627739 -31.0483001 -4.991498828e-19) (106.9997862 -31.23571866 -1.305097342e-19) (98.17536076 -25.01808644 -4.583512256e-20) (99.03181627 -24.58038001 8.103279714e-21) (99.50342525 -25.28015926 -2.334578275e-20) (54.45432831 9.908483974 0) (55.60570883 13.32332053 0) (58.41463731 11.70743725 0) (89.4189836 -7.635483525 0) (89.45909555 -7.657829536 0) (89.35322546 -7.698366416 2.546495434e-19) (89.24008957 -7.623829516 -1.302429861e-19) (89.33788604 -7.587084159 0) (89.37941091 -7.607023829 -5.078819486e-19) (90.39305516 -8.833164943 2.604424378e-19) (90.57261041 -8.800317347 0) (90.61123305 -8.839475962 0) (52.60488175 -9.024994671 0) (71.13602105 -15.18535656 0) (68.0600747 -15.43049308 2.289313517e-19) (147.8533062 19.31593312 0) (147.5571064 20.47171582 0) (148.8876973 20.81405523 -1.167939067e-18) (149.758501 17.57921225 -1.169192262e-18) (148.5088526 17.26712506 -3.674445151e-21) (148.1954306 18.30716109 -1.146720208e-18) (139.8215796 -16.12615881 8.936292824e-19) (140.2374653 -15.74256603 -2.724849808e-18) (140.5481573 -16.1666937 1.147867794e-18) (139.2391658 -17.41880211 -1.791769978e-18) (138.9725107 -16.94661684 8.838984982e-19) (139.3949569 -16.58948551 8.799429215e-19) (90.00690312 -8.198381388 0) (90.04479492 -8.235552509 0) (89.89949245 -8.273966626 2.910629196e-19) (89.79216123 -8.153105627 6.228209675e-23) (89.92928598 -8.116828023 2.562335254e-19) (89.96847573 -8.153751643 -2.559462669e-19) (120.1924627 -29.35192954 -1.022407532e-18) (120.2948186 -28.97099767 0) (120.657011 -28.96214472 0) (91.11280728 -26.98625662 0) (92.95666295 -26.98599857 9.200951076e-20) (93.05929925 -27.43425657 1.978353229e-20) (86.75610724 -23.63172734 0) (85.32360063 -23.05680379 0) (88.42895866 -23.39303525 -1.149363163e-20) (119.945194 20.52275678 0) (117.8123897 20.75070286 3.108085275e-19) (118.0259305 23.14419932 -3.108866505e-19) (116.920999 -26.40432003 4.988556286e-19) (116.8351657 -25.70020812 -2.042928046e-18) (117.5132915 -25.73540102 -1.14819014e-20) (114.072913 -22.09612772 4.750550581e-19) (114.2814786 -23.32968834 -5.021130029e-19) (113.0733413 -23.27411081 9.187653217e-19) (112.1821765 27.1006067 0) (114.8465265 28.24590546 -1.466607916e-18) (115.5076657 25.42067748 5.592936012e-19) (122.811661 37.10678946 0) (120.0857561 36.91475535 9.670007585e-19) (119.5998861 39.83791726 0) (116.2582499 -27.18066236 0) (116.2256685 -27.93767935 5.150116111e-19) (115.5031645 -27.92860978 -4.822365252e-19) (134.3784004 30.654627 -1.05103028e-18) (136.2992457 29.17331179 0) (134.7419684 27.34301347 0) (121.532428 57.42972559 -1.412651246e-18) (118.3819326 57.33533228 1.427991322e-18) (117.0501189 59.98453588 0) (99.69391724 0.8189234449 6.414467577e-21) (99.77249364 0.7230901516 -9.394446935e-21) (99.78501458 0.6501030065 2.561307e-20) (99.73598233 0.8878695701 3.026748593e-21) (99.74760253 0.8025780454 -1.856767429e-20) (99.66590845 0.9099514263 2.511295328e-20) (99.86570328 0.5745719989 0) (99.81396013 0.6900227436 1.234606665e-20) (99.81521259 0.7606493617 -3.214361208e-21) (99.59536424 1.228408698 -1.310159323e-22) (99.70033121 1.078099914 5.882426389e-21) (99.71005643 0.9800892992 5.957649534e-21) (99.66806997 1.293288208 4.013736707e-21) (99.67434028 1.183054018 1.733807731e-22) (99.56741814 1.349514785 4.352852911e-23) (99.82632497 0.8379949671 1.092941304e-20) (99.76017669 1.011581349 8.566046548e-23) (99.76941568 1.102167929 7.171302272e-21) (99.51508819 1.75530152 0) (99.64320449 1.530627047 0) (99.6437282 1.409951592 -5.371853395e-21) (99.630557 1.78437844 -4.609629577e-21) (99.62318435 1.656446657 0) (99.49664044 1.902721159 -1.72873341e-19) (99.79765587 1.160392483 -9.191278087e-21) (99.72239359 1.408441397 0) (99.74602568 1.512234845 0) (99.50161608 2.3626909 -5.068422663e-19) (99.63564175 2.045255095 -1.213630069e-19) (99.61708026 1.915680365 -1.727868758e-20) (99.66524608 2.295394077 -2.023780664e-22) (99.63215021 2.173621102 1.284237328e-19) (99.50915422 2.513917861 6.981432866e-19) (99.79874814 1.504796254 6.833161061e-21) (99.72851153 1.837202409 -2.20711197e-20) (99.77436309 1.935337923 1.792799345e-21) (99.61360133 2.932700584 0) (99.72059479 2.520236311 -1.476061691e-19) (99.67343134 2.41287846 0) (99.80078826 2.700456179 1.732027749e-21) (99.74037154 2.618195048 1.480007679e-19) (99.65490774 3.049850945 0) (99.84815087 1.794855231 2.047008651e-21) (99.80370027 2.20101434 5.709417725e-20) (99.87301192 2.265316358 6.253100081e-20) (99.84601329 3.280615538 1.569413256e-21) (99.89492912 2.814752858 -1.564373117e-21) (99.8296848 2.769023337 -2.780776494e-21) (99.99240233 2.858615589 0) (99.92284718 2.84348643 -3.139797068e-22) (99.9049827 3.317735059 3.154618287e-22) (99.93752301 1.941427232 0) (99.93479893 2.388098086 -2.827996737e-21) (100.0099209 2.39689598 2.828440586e-21) (100.128468 3.304222947 -8.804237761e-20) (100.0975572 2.834537761 -5.305755137e-20) (100.0287839 2.856237481 5.384394753e-20) (100.1900075 2.737076149 2.144979942e-20) (100.1276655 2.793336796 -7.568796363e-22) (100.183355 3.254782176 8.636521005e-20) (100.032014 1.902888967 0) (100.0767444 2.343652435 -4.292225704e-21) (100.1469401 2.300181608 -3.880049346e-21) (100.3520111 2.998841213 -5.754090321e-21) (100.2633048 2.581902131 1.450414188e-22) (100.2126763 2.665331222 -1.750395486e-20) (100.3157925 2.384114704 7.269876656e-21) (100.2760321 2.486562984 3.971122845e-22) (100.3823636 2.885805399 3.446286712e-21) (100.1094526 1.702161443 0) (100.1837302 2.093008465 -3.336073192e-21) (100.2359503 2.011488032 0) (100.4628091 2.496170099 -8.771459038e-21) (100.3468304 2.160117839 -7.499073184e-23) (100.3193213 2.2740086 2.115872555e-21) (100.3562863 1.920867896 9.892004101e-21) (100.3407857 2.040806248 4.439295273e-21) (100.4660188 2.357598896 4.547466555e-21) (100.1454731 1.403015133 0) (100.2320179 1.722685575 4.660320688e-21) (100.2630009 1.625614493 -4.659544474e-21) (100.4649997 1.935773453 0) (100.3481084 1.682006501 5.540577831e-21) (100.3417475 1.800022641 -2.612126125e-21) (100.3266349 1.454077769 0) (100.3276538 1.565729666 -8.349830818e-21) (100.4470773 1.799874175 -5.820299305e-21) (100.1451832 1.085896902 0) (100.2255096 1.328198348 2.809705688e-21) (100.240097 1.237186151 0) (99.28365895 1.12754129 0) (99.40054021 1.063493737 3.333662062e-21) (99.44790426 0.9487738984 -2.00115356e-20) (99.29965449 1.324592276 -1.598554792e-20) (99.35016308 1.188418449 9.75335885e-21) (99.22293579 1.262895774 3.315616493e-21) (99.57191693 1.010806357 -6.2281039e-21) (99.46661953 1.103999863 -1.301085405e-20) (99.42648416 1.228021605 1.282552131e-20) (99.0334846 1.747997421 0) (99.1964495 1.631952327 -3.072058529e-20) (99.24734136 1.47203808 1.090637576e-22) (99.09710453 1.992484032 0) (99.1448721 1.805013329 -2.402999257e-20) (98.9696866 1.94051594 4.845199166e-20) (99.4432925 1.509280656 -1.159755963e-20) (99.30275796 1.661159331 2.415020418e-20) (99.26621068 1.827622004 0) (98.81079902 2.609385857 -4.351116869e-20) (99.01652411 2.405085696 -3.084264254e-19) (99.05208244 2.193227736 2.627658331e-19) (98.97247812 2.858450385 0) (98.98837932 2.626355565 0) (98.77386973 2.861099183 0) (99.34745206 2.147672504 1.967935873e-20) (99.17841059 2.389232505 0) (99.16846718 2.591139578 1.895262129e-20) (98.74751966 3.684126315 -5.901703049e-19) (98.97626535 3.342384797 -4.42200661e-21) (98.96604229 3.098018568 -1.827679562e-20) (99.04540614 3.82691245 -4.908725632e-19) (99.0002214 3.586731453 4.900925057e-19) (98.77577161 3.967238924 0) (99.36412495 2.861646506 0) (99.19540879 3.218701111 5.177395355e-19) (99.23397748 3.424681278 -3.47438718e-21) (99.00975109 4.763333347 0) (99.19154948 4.272347678 -7.769541551e-19) (99.10687542 4.056750025 7.71449599e-19) (99.4180529 4.617838006 1.488482972e-20) (99.29436335 4.463222139 -5.319321141e-19) (99.13637949 4.985474337 0) (99.55214222 3.500015168 0) (99.43254431 3.969925426 0) (99.53157487 4.104441357 3.790214112e-19) (99.65924143 5.411991919 -1.066435269e-19) (99.70551179 4.830069474 3.850555173e-19) (99.55310099 4.738455376 -2.756206908e-19) (100.0169704 4.904545686 0) (99.8585667 4.887351701 -1.248804303e-19) (99.85387333 5.472355297 1.136006598e-19) (99.88791288 3.815331825 1.080430172e-21) (99.87110963 4.336857366 -1.085989187e-21) (99.99821596 4.355854148 -6.988038287e-20) (100.4160879 5.377782824 3.437267935e-19) (100.3131433 4.823730389 6.256584335e-21) (100.1673778 4.881949094 -7.948043067e-21) (100.5647113 4.613013155 -2.930785903e-19) (100.4437781 4.73307485 2.90404239e-19) (100.5768436 5.265914553 2.137812692e-21) (100.2517478 3.730140668 2.562215391e-21) (100.3371529 4.222021234 -1.379810076e-21) (100.4373061 4.122210327 -2.281398981e-21) (100.9473616 4.75581254 1.458884894e-20) (100.7549321 4.303072208 -4.311382281e-19) (100.6661589 4.468704227 4.060177551e-19) (100.8804829 3.926224484 -2.614125175e-19) (100.8237124 4.1214373 2.631979146e-19) (101.0280904 4.545003945 5.631769224e-19) (100.5053361 3.291423237 -1.707246202e-21) (100.6508058 3.70348589 4.689221951e-19) (100.7011967 3.53418142 -2.458195826e-19) (101.162119 3.849241998 1.292880658e-19) (100.9470038 3.51153606 -4.833714865e-21) (100.919061 3.722249967 3.790243704e-20) (100.962427 3.085423767 1.504140017e-20) (100.959346 3.298511614 -5.343793294e-21) (101.1732704 3.60857742 -2.144903371e-19) (100.6088442 2.67192431 4.988959667e-21) (100.7720597 2.98559261 3.105956478e-22) (100.77816 2.79889014 5.285978395e-21) (101.135247 2.901614212 -1.454075518e-19) (100.9375629 2.673084746 0) (100.9532119 2.876564117 1.396345434e-21) (100.8804894 2.280989762 1.012025265e-19) (100.9114866 2.474727775 1.876229774e-20) (101.1029058 2.680000221 -2.44395448e-20) (100.5834975 2.030629189 5.556941006e-23) (100.7382268 2.256730068 3.050126539e-20) (100.714449 2.084043529 -1.210682551e-20) (98.73594657 1.264540129 -2.792077117e-19) (98.88261797 1.252326612 5.687598064e-20) (98.97695171 1.104610768 -2.255701535e-19) (98.67741461 1.597871036 2.189096655e-19) (98.78268037 1.415725797 -5.666506328e-20) (98.61919645 1.437966753 3.3728841e-19) (99.08555631 1.326287125 0) (98.9386899 1.377541496 0) (98.84949436 1.548076726 -2.167384199e-19) (98.24010783 2.087757803 2.122687981e-19) (98.45712029 2.026786677 0) (98.5675937 1.801715584 -1.096358965e-19) (98.24163187 2.547051397 -1.499809878e-20) (98.348781 2.273694679 6.076262005e-19) (98.10991951 2.353336619 1.043045204e-18) (98.77763995 2.066015883 0) (98.57065458 2.177792299 -4.071041822e-19) (98.48367553 2.427748685 6.814694816e-19) (97.72627781 3.346388756 -7.85138059e-19) (98.04057406 3.179611698 0) (98.1374464 2.84880627 -7.965677114e-19) (97.89090061 3.923663769 0) (97.95600972 3.538442581 0) (97.61728465 3.745297337 7.884660746e-19) (98.53188616 3.09277918 0) (98.26005571 3.319539359 7.330350175e-19) (98.21203968 3.661521508 6.74080857e-19) (97.45720234 5.121001301 1.380230026e-18) (97.84712053 4.755559642 1.914675533e-18) (97.85186516 4.3310926 -6.696285306e-19) (97.96891357 5.620732154 -1.404130982e-19) (97.88361845 5.188658529 -1.308428895e-18) (97.49141491 5.618982133 -5.414009349e-20) (98.51844383 4.361147477 -1.770557594e-20) (98.22323799 4.768583462 -1.049080381e-18) (98.29770927 5.141726703 1.214236185e-18) (97.98084949 7.066212135 0) (98.30213574 6.427062065 0) (98.10720762 6.038595363 0) (98.83188044 7.081421954 0) (98.5477689 6.776305052 4.563663396e-20) (98.28432828 7.472524146 -4.578595984e-20) (98.95978965 5.541362283 -4.124076998e-20) (98.76709835 6.135960123 -7.08335765e-19) (99.00069848 6.394816856 0) (99.49767745 8.252322979 0) (99.5332929 7.445104339 2.698626967e-19) (99.16939458 7.305789707 -3.016525739e-19) (100.2692177 7.489449116 2.995692015e-20) (99.905204 7.509555074 0) (99.95528864 8.313946294 -1.178903041e-20) (99.85801434 6.099143262 -9.960810432e-20) (99.87383563 6.775263282 0) (100.1714413 6.770402795 -2.633739755e-21) (101.1843785 7.937072688 1.435400712e-19) (100.9239854 7.236065862 0) (100.6119675 7.39543674 -2.934791183e-20) (101.4300144 6.765588076 -8.849621529e-19) (101.1975569 7.022481329 8.79536952e-19) (101.5044401 7.670507228 -4.056503499e-19) (100.7422277 5.823191047 7.072827542e-19) (100.9465663 6.407724585 0) (101.1473328 6.196175813 -4.685280344e-19) (102.1432417 6.646946898 -7.081120365e-19) (101.7677431 6.164853855 0) (101.619289 6.476824887 2.289374452e-21) (101.9527878 5.502822612 -4.445762073e-20) (101.8773094 5.838429351 -4.131765298e-20) (102.2577921 6.26926911 7.665356647e-19) (101.2683553 4.973406474 5.127611178e-19) (101.5495593 5.405242248 7.88317217e-20) (101.6229457 5.111441727 -6.602081148e-19) (102.3758664 5.110568495 -6.834188532e-21) (102.0135273 4.822510756 -8.251529395e-19) (101.9971357 5.163154882 0) (101.9790725 4.148793824 8.137506225e-19) (102.0058984 4.481825811 -3.538579565e-20) (102.3563463 4.73880559 0) (101.4171411 3.912740941 -3.59652651e-19) (101.69377 4.20631402 0) (101.677939 3.902969834 -4.000706857e-19) (102.176562 3.704379929 4.112222446e-19) (101.8786202 3.52593985 -5.611614937e-20) (101.9371126 3.832082075 1.058364426e-19) (101.7302923 2.955286642 5.689638916e-20) (101.8081176 3.231819359 2.643130256e-20) (102.0874358 3.386948149 -1.166589739e-19) (101.3148229 2.874496341 -2.978194296e-19) (101.5509093 3.060179347 -1.877822654e-19) (101.4902533 2.807525361 5.476561519e-20) (98.10591619 1.168575169 1.193032385e-19) (98.26619242 1.215428391 3.545586716e-19) (98.42617514 1.052039338 -1.204532469e-19) (97.9141592 1.613800578 0) (98.0939975 1.402785885 2.930155746e-21) (97.91525961 1.355800448 -7.089157725e-19) (98.44987211 1.442021707 -5.422590381e-20) (98.2735125 1.431026493 2.263190833e-19) (98.11316557 1.638872038 -4.349108372e-19) (97.25383804 2.095555575 9.172786261e-19) (97.51709486 2.130201523 -4.477914665e-19) (97.72259711 1.854138831 0) (97.06642222 2.814986328 8.799639347e-19) (97.29768833 2.449953775 -4.383337865e-19) (96.99687823 2.423951024 0) (97.85376595 2.414031281 -8.558931748e-19) (97.58282821 2.447794262 -4.37173788e-19) (97.38833359 2.794095148 0) (96.15834921 3.73348462 0) (96.59456555 3.703039639 -1.231848105e-18) (96.83006908 3.23350144 -2.215129209e-19) (96.17334726 4.810637901 -8.902339002e-19) (96.37235285 4.227684467 9.044262419e-19) (95.88066111 4.302234839 1.205840707e-19) (97.24154342 3.934531263 0) (96.8266582 4.099119384 8.620233732e-19) (96.67440034 4.630692492 8.417939405e-19) (95.24226709 6.432501655 0) (95.91138048 6.157092454 0) (96.01324174 5.454205585 8.907938115e-19) (95.97409051 7.699619142 1.001274957e-18) (95.89059909 6.909787744 -6.820487967e-19) (95.17010596 7.295343531 1.045848071e-20) (97.03670323 6.054988617 -6.306645699e-19) (96.50776438 6.489218917 -8.126824198e-19) (96.60538374 7.16668852 6.888267028e-20) (95.82887456 10.13170711 -5.2083514e-19) (96.55127433 9.285549227 0) (96.18799738 8.502844955 1.842808324e-19) (97.75045438 10.59510621 -2.121806238e-19) (97.07346416 10.0012786 -1.167962867e-19) (96.44238403 11.02127264 3.627776369e-20) (97.96340734 8.236823949 3.488372737e-19) (97.56803943 9.076325999 2.227703935e-19) (98.12125879 9.560240621 -7.826300067e-20) (99.33533388 12.59636674 7.540152854e-21) (99.39004386 11.28828226 -6.33356308e-20) (98.54095352 11.03834321 1.276932533e-20) (101.0697971 11.14472746 -3.453849809e-20) (100.2531617 11.31456632 6.176287359e-20) (100.4233908 12.59819443 -1.080312516e-20) (100.0271751 9.202494755 1.181235911e-20) (100.1244384 10.19384535 0) (100.7877713 10.08248358 -6.112748896e-20) (103.0224742 11.2890083 3.916875409e-19) (102.4034105 10.3556738 -5.9883733e-19) (101.7948305 10.81124648 0) (103.2598752 9.246824899 8.081282797e-19) (102.8897121 9.821914945 -1.91661454e-19) (103.5669037 10.61855732 8.853304688e-20) (101.8785012 8.354546709 9.499221703e-19) (102.3342012 9.070321499 -3.044820228e-20) (102.6688154 8.598121368 1.941330029e-18) (104.3987541 8.483902673 1.286579558e-18) (103.6994687 8.049153412 -1.855535231e-18) (103.523564 8.65117962 0) (103.8378764 6.902564901 1.226863166e-19) (103.8010385 7.46339109 1.855982109e-18) (104.4724884 7.819473883 -1.015441953e-18) (102.6992984 6.691334499 -4.860243626e-20) (103.2077196 7.084391591 0) (103.2681675 6.580909832 -1.18119472e-19) (104.2955685 6.039534959 0) (103.7488938 5.859556448 1.3423663e-19) (103.8162918 6.36831993 6.49844207e-20) (103.5261232 4.924149147 -8.605289183e-19) (103.6498481 5.376808222 0) (104.158372 5.520362152 0) (102.7515261 4.980756203 0) (103.181701 5.194974619 0) (103.0894285 4.77371918 0) (103.628335 4.1623352 -5.946081879e-19) (103.2282197 4.094591588 -4.180097235e-19) (103.3837648 4.496996853 5.608354539e-19) (102.893629 3.361562433 -2.358916345e-19) (103.0635613 3.716686374 6.874967839e-19) (103.4307908 3.768060512 1.410846369e-19) (102.3903643 3.522254838 0) (102.716214 3.633635431 2.579568644e-19) (102.5740277 3.294924484 -9.585961488e-20) (97.51023993 0.7912318632 0) (97.64809119 0.913761175 1.239860275e-19) (97.87722838 0.7622373507 3.692262711e-19) (97.1168033 1.292736777 2.545750558e-19) (97.39759276 1.087825518 1.252157251e-19) (97.23858333 0.9551225584 2.513229574e-19) (97.73877403 1.288466368 0) (97.56538727 1.199305898 0) (97.31203592 1.408673557 2.407630555e-19) (96.19661089 1.651957657 -2.629145859e-19) (96.45315257 1.814216591 0) (96.8026506 1.532878736 6.122104305e-21) (95.647461 2.527759656 8.014586685e-19) (96.06786773 2.143912938 0) (95.76680068 1.969540108 0) (96.68827498 2.367667213 0) (96.37702342 2.275888721 4.974987325e-19) (96.00870057 2.663527256 -5.109230147e-19) (94.21703573 3.28667751 0) (94.70927201 3.499989661 -6.854041456e-19) (95.19257558 2.97830346 -1.290865434e-19) (93.68168043 4.84288699 7.218022238e-20) (94.20150226 4.119119103 -2.843565535e-19) (93.61588761 3.891730901 0) (95.34934349 4.315247488 3.706692136e-19) (94.7840096 4.257076016 -2.624428159e-19) (94.36765894 4.967258814 4.031551593e-19) (91.65698614 6.503910446 -3.408717795e-19) (92.67887262 6.712879823 0) (93.16783887 5.701348724 3.814217093e-20) (91.95043546 9.313207503 1.622487887e-19) (92.25512715 7.899770691 1.441534013e-19) (91.0206218 7.743218116 0) (94.33252629 7.614629809 -1.180979559e-19) (93.36029782 7.838679316 -1.4532053e-19) (93.23405213 9.075215007 2.521750514e-19) (90.14223442 13.54074016 3.035414169e-19) (92.18041834 12.85529345 0) (91.87192049 10.95818819 4.297147608e-19) (94.47677612 16.52661948 1.202372121e-19) (93.02030572 14.77875532 0) (89.99009437 15.88980509 -1.152579237e-18) (95.61755033 12.14900958 0) (94.52759049 13.39173272 0) (95.77581748 14.6573703 1.017515829e-19) (99.97428898 22.04408221 1.324026864e-19) (99.10580918 18.27868734 0) (96.61173366 17.75084782 -7.580589966e-20) (103.4311787 17.14257056 0) (101.4407236 18.02410133 -2.097237483e-19) (102.2796037 20.62506884 2.340662247e-19) (100.6530123 14.09383614 1.11238702e-19) (100.9712077 15.86871385 0) (102.5638913 15.29242502 0) (107.5536876 15.64200943 0) (105.990391 14.48549799 -4.559652541e-19) (104.9510577 15.88395149 0) (106.9992627 11.80143792 -5.859660857e-19) (106.6446563 13.10154023 0) (108.1450231 13.89534605 -7.310526747e-19) (104.387813 11.44307109 -9.083225046e-19) (105.398413 12.27087108 4.557426658e-19) (105.8092073 11.19607006 1.183672131e-18) (108.205997 9.721821234 0) (107.0951235 9.535851426 6.163025745e-19) (107.1265152 10.61224255 -1.003766707e-18) (106.7500979 7.715164196 0) (106.9563398 8.574331488 2.257269965e-20) (107.954543 8.660935182 -2.383453058e-20) (105.218634 8.134246036 -1.257159542e-18) (106.0447282 8.390718425 6.584843779e-19) (105.9216091 7.607025492 0) (106.9342357 6.200611991 -1.93660345e-19) (106.2110704 6.264057863 3.748880227e-19) (106.4961674 6.948038897 -1.948307898e-19) (105.5936628 5.086846187 3.562358524e-19) (105.907474 5.645256414 -1.91304764e-19) (106.5573797 5.561095604 -1.175831071e-20) (104.7064794 5.618272586 1.295979555e-18) (105.2906416 5.662183585 -6.969028195e-19) (105.0320849 5.123748177 3.349563373e-19) (105.4165463 3.997106282 -1.468960376e-18) (104.9515255 4.11436134 1.733664591e-18) (105.2738209 4.581550519 -7.087275325e-19) (104.3154092 3.297657593 0) (104.6311284 3.688881392 -8.427117358e-19) (105.0468145 3.571506022 3.635748831e-19) (103.816065 3.782472334 -4.620300501e-19) (104.2189531 3.759003304 1.634467967e-19) (103.9456597 3.371485701 0) (97.08072854 0.1323812255 5.201938252e-19) (97.16495259 0.3200559485 -2.540928713e-19) (97.45492795 0.2202250357 2.217399673e-19) (96.4546532 0.5839189171 1.29551041e-19) (96.83355131 0.4400534903 9.01427223e-19) (96.73334206 0.2325074896 -5.209316221e-19) (97.08945231 0.8028054735 0) (96.95319115 0.6311831768 -5.168426639e-19) (96.59638732 0.7954014402 0) (95.37130157 0.6646814477 1.050929492e-19) (95.53757209 0.9559095714 0) (96.02416035 0.7544002067 -5.308453041e-19) (94.37592525 1.466529308 0) (94.99020467 1.191813765 0) (94.79413412 0.8612572724 1.230714469e-21) (95.48419028 1.749303617 0) (95.2230978 1.489751417 2.84526019e-19) (94.65032262 1.806519197 -2.849811663e-19) (92.59868453 1.650249584 0) (92.91848431 2.164649231 0) (93.6882064 1.789254339 0) (91.08346401 3.122722756 -1.846504199e-19) (92.05516321 2.607508452 1.80220787e-19) (91.67709949 1.996413027 0) (93.04727835 3.565014048 -1.59307512e-19) (92.51869505 3.135546281 8.278334802e-20) (91.64805143 3.747058247 0) (88.05163466 3.321546173 -4.766895342e-19) (88.71991613 4.470967913 0) (89.9828867 3.728790484 -4.158291553e-19) (85.23821544 7.445673088 0) (87.20459582 5.427087851 -4.535318961e-19) (86.31824569 3.992195346 6.000820531e-19) (89.69498435 7.31575803 7.557745774e-19) (88.38034618 6.552482725 4.471509847e-19) (87.00120108 8.016411716 0) (84.9094278 15.03950813 -2.003139762e-19) (85.19384358 12.90994252 3.345223846e-19) (83.51647576 12.37572836 -9.087980396e-19) (94.5139257 33.16083994 0) (94.83473502 29.25051936 -2.58648838e-21) (91.25227603 27.94650851 -1.009329806e-19) (101.7058533 28.75575673 9.931785682e-20) (98.4269246 29.4514115 -9.999503624e-20) (99.13727521 33.13056878 0) (98.09740944 24.06514194 -3.7906809e-20) (98.19379879 26.49573165 3.776526876e-20) (100.879429 26.14010333 2.095167015e-19) (113.54883 8.771766947 0) (112.1431605 9.336870678 -2.516736049e-19) (112.9311523 10.866496 0) (110.6074216 7.045186915 0) (111.3635399 8.088932199 1.47619327e-20) (112.5381076 7.539992208 0) (109.0341279 8.630032441 -2.035680624e-19) (110.1821055 8.449939727 2.563907749e-19) (109.5993736 7.417736085 0) (109.9278072 4.96447078 -9.564634063e-21) (109.1951729 5.427094083 4.758565704e-19) (109.8831667 6.172612083 0) (107.9265608 4.231742991 -4.434211191e-19) (108.543092 4.788603922 -1.41976853e-20) (109.1795646 4.357159654 -2.516109355e-19) (107.2217281 5.389489629 1.031331757e-18) (107.8870132 5.132321666 8.810980958e-19) (107.3508374 4.556940273 -5.421781096e-21) (107.2187031 2.966953814 -2.298084535e-19) (106.7901575 3.31008564 0) (107.3427538 3.743972353 4.320568012e-19) (105.7700143 2.571593684 3.926843613e-19) (106.2661935 2.922714662 4.120780185e-19) (106.6441899 2.606613637 -6.250831701e-19) (105.4612824 3.405163717 -3.736920605e-19) (105.8698521 3.189342569 3.915106152e-19) (105.4194617 2.820627968 1.011820867e-20) (96.9279872 -0.7079470833 3.271422898e-20) (96.93810952 -0.4887144906 5.176602135e-19) (97.26691743 -0.5120255499 -2.60594148e-19) (96.1271535 -0.4164572578 1.685551648e-20) (96.55965456 -0.4568975469 -8.706419482e-21) (96.54516746 -0.7001703018 0) (96.65541376 0.01178868099 -5.30964063e-19) (96.59673272 -0.2184538192 3.990873254e-19) (96.17237255 -0.1503483195 0) (95.05837298 -0.6515080876 -3.107774702e-19) (95.08371887 -0.3113378958 2.917858571e-19) (95.63663857 -0.3675722505 -1.484993524e-21) (93.76907895 -0.1845089315 0) (94.4632964 -0.2492352773 -3.043748749e-19) (94.43756545 -0.6338601866 -7.872657778e-20) (94.64219894 0.5056787522 7.561288996e-20) (94.53083919 0.1333937669 3.555538409e-20) (93.84199979 0.2525210173 5.883282204e-20) (92.1432915 -0.6342366888 -9.029358061e-20) (92.13859616 -0.06708581051 9.00593957e-20) (92.99659845 -0.1210511686 -4.204351033e-20) (90.13296296 -0.02789029696 -1.237147133e-18) (91.18634458 -0.03018629707 3.960259796e-19) (91.22080614 -0.680582628 1.929608848e-19) (91.40466088 1.331785676 0) (91.24298813 0.6475390927 -1.860202335e-19) (90.16083977 0.7659934358 -1.119239675e-20) (127.9685692 16.40406079 9.6081468e-19) (126.1707531 17.85128086 -8.522793225e-19) (127.8472156 19.98157464 0) (123.3038618 14.48832547 0) (124.6456527 16.02573182 0) (126.2225927 14.77318219 0) (118.1496695 4.139134702 -3.469719824e-19) (117.2729946 5.601030405 3.468419031e-19) (119.1817521 6.684720323 7.347951226e-19) (114.1976976 4.015018952 0) (115.6293439 4.729600665 3.298206099e-19) (116.3633258 3.471077377 -9.795290068e-19) (113.6717478 6.79734452 -3.014593563e-19) (114.7210456 5.852616279 3.179687632e-19) (113.436593 5.000663525 0) (112.2669311 2.087974134 -3.026342049e-19) (111.8141146 2.937515536 0) (112.9364067 3.427938533 0) (109.8915937 2.172094953 -5.181200984e-19) (110.8054931 2.5247237 1.095589863e-18) (111.1962409 1.769153862 -5.56481509e-19) (109.7860538 3.838536779 6.312362909e-20) (110.3343253 3.220544149 -1.054919002e-18) (109.4846845 2.797257832 1.032647898e-18) (108.5461153 1.058959368 -1.844178192e-19) (108.2897779 1.601654071 -4.141654835e-19) (109.0567126 1.868449667 4.954921632e-19) (106.9237977 1.157799504 -4.263595694e-19) (107.5811019 1.366609194 3.917848679e-19) (107.8049149 0.8792235478 5.895507855e-20) (106.9977883 2.24038629 2.103498018e-19) (107.3120804 1.823254125 -4.440507629e-19) (106.6876436 1.569797709 3.206225076e-19) (97.07965531 -1.588102253 -5.257124392e-19) (97.01492547 -1.37125482 0) (97.34785516 -1.314068189 2.621331344e-19) (96.20210756 -1.496913276 5.522622381e-19) (96.63374593 -1.431694637 -5.373338871e-19) (96.70329532 -1.669513637 1.072816346e-18) (96.55303598 -0.9449597794 0) (96.58329039 -1.189535806 1.271786028e-20) (96.14732802 -1.230046488 -5.597492381e-19) (95.27691911 -1.96573353 -4.394891421e-19) (95.18078284 -1.650674717 -1.710463224e-21) (95.71827982 -1.568937266 0) (93.9411161 -1.859362715 -2.47832705e-21) (94.58848365 -1.745665309 0) (94.70008111 -2.091509939 7.48177911e-20) (94.45199305 -1.01375408 3.068445369e-19) (94.50457884 -1.385544686 0) (93.83915464 -1.461785324 -1.604385016e-19) (92.68300628 -2.612682565 -3.500121623e-19) (92.49069042 -2.167497049 8.870243803e-20) (93.24087819 -1.997671108 1.659787959e-19) (90.86551579 -2.635664645 0) (91.69609025 -2.378248891 0) (91.93063029 -2.854714308 1.853167311e-19) (91.32826343 -1.291998501 -1.934430809e-19) (91.49152244 -1.858142308 2.034387384e-19) (90.60339832 -2.076676922 -8.127246376e-19) (134.0616699 0.9543164894 0) (134.0631903 2.914712807 0) (136.5047014 3.000988912 5.778097249e-19) (129.8414435 2.646492788 -1.971720064e-18) (131.8443022 2.781496259 1.017478609e-18) (131.8938855 1.02563539 -1.021547905e-18) (131.2288538 6.409419345 2.090167989e-18) (131.6302929 4.608523492 1.044630389e-18) (129.6120244 4.261597302 -9.476634204e-19) (119.1605458 -2.428015584 -1.482127559e-18) (119.2817965 -0.7837918667 6.258028892e-20) (121.522529 -0.8207791275 -7.562841224e-19) (115.6866859 -0.7584694917 -8.155711531e-19) (117.357439 -0.7651585246 1.405992993e-18) (117.2788412 -2.193789258 3.995339339e-19) (116.9037316 2.107726605 -7.152203878e-19) (117.2357643 0.6812051043 0) (115.570929 0.5006094801 8.672788185e-22) (112.901539 -1.731960181 0) (112.9255657 -0.751438931 3.027483822e-19) (114.2216973 -0.7542329006 -1.584199238e-19) (110.7272836 -0.7487086288 1.389468103e-18) (111.7684466 -0.7498541284 -1.144789058e-18) (111.749731 -1.621183453 -5.623253688e-19) (111.4939098 0.9600294661 -8.603366615e-19) (111.6885009 0.1135509573 5.735761294e-19) (110.6589774 0.0220230827 8.160057187e-19) (108.9107325 -1.360465356 4.985765038e-19) (108.922012 -0.7415656222 -9.964112791e-19) (109.7836582 -0.7458821785 2.554196549e-19) (107.4005572 -0.734290282 -1.004347979e-18) (108.1306772 -0.7374623189 -3.561013351e-19) (108.1197055 -1.292330847 4.720319611e-19) (107.9751339 0.3600193619 4.96858946e-19) (108.0864224 -0.1821385363 -4.683903801e-19) (107.3620252 -0.2335029713 4.449748879e-19) (97.49431146 -2.399863958 2.012946905e-21) (97.3691502 -2.207326489 1.590673799e-20) (97.67972425 -2.081209583 2.396161305e-19) (96.61857686 -2.492806919 -3.390190044e-20) (97.01562052 -2.343978217 -5.26442119e-19) (97.15060016 -2.552398357 -4.994262154e-19) (96.79089527 -1.901583746 -1.066398429e-18) (96.89534527 -2.126739017 1.04095172e-18) (96.48772833 -2.25703768 -2.594335013e-20) (95.87109361 -3.097232324 0) (95.69528529 -2.83514233 -2.855617182e-19) (96.17821716 -2.655763936 3.387839655e-20) (94.6091679 -3.253027477 0) (95.17138906 -3.033366412 0) (95.36552608 -3.31434077 -1.47109263e-19) (94.83635785 -2.421766756 0) (94.99427542 -2.735822106 7.343063908e-20) (94.41059727 -2.934403304 -1.566678006e-19) (93.65243395 -4.09763034 -8.34018723e-20) (93.38779015 -3.765993359 8.331213471e-20) (94.01282501 -3.496616279 0) (92.08365193 -4.388236309 0) (92.74131581 -4.063295701 0) (93.0338166 -4.40637411 0) (92.18657328 -3.2914956 -1.855055914e-19) (92.45806656 -3.69296052 0) (91.76606315 -4.00881076 0) (87.8988784 -6.138000956 6.773791244e-19) (88.03439254 -5.996872347 -3.440841147e-19) (88.17087854 -6.067349061 0) (87.75776123 -5.832458955 6.980483163e-19) (87.89751315 -5.905169613 -2.706763457e-21) (87.75909471 -6.055619888 3.437665446e-19) (129.3010237 -11.60368569 2.996835359e-20) (130.2160622 -10.38224116 2.847434224e-20) (131.8410018 -11.40726802 4.485762683e-20) (127.2152168 -8.772463777 -9.005673995e-19) (128.6673974 -9.519915164 1.877553346e-18) (127.8563052 -10.66961 9.069785668e-19) (130.0902142 -6.922863565 -1.021352042e-18) (129.4159569 -8.252915999 -1.178072485e-20) (127.8800245 -7.512554083 -1.862816366e-18) (116.7492755 -8.026700907 1.654231713e-18) (117.5844079 -6.817264643 -7.160161604e-19) (119.3703247 -7.697287673 1.439568817e-18) (114.5844622 -5.457389751 -1.00109923e-20) (115.9993656 -6.074870385 1.617778448e-19) (115.2957145 -7.166985275 -8.187816556e-19) (117.0123 -3.569175901 3.203884488e-19) (116.5788095 -4.87068795 0) (115.0697681 -4.378943231 1.309450387e-18) (111.726125 -5.288864006 -1.527194804e-20) (112.1687303 -4.475534593 1.670541674e-20) (113.3160353 -4.929635121 -4.362061753e-19) (110.1764404 -3.736262949 1.034765603e-20) (111.1263841 -4.081610958 -1.186508721e-20) (110.7434052 -4.81929334 -1.079637159e-18) (111.640141 -2.473832736 5.472452552e-19) (111.429596 -3.295926311 5.621204656e-19) (110.4407463 -3.026447956 -5.376798909e-19) (108.2354842 -3.7116758 4.818185682e-19) (108.4973076 -3.159059381 1.449846144e-18) (109.3036456 -3.430813928 -4.963169067e-19) (107.052723 -2.698289822 4.403261194e-19) (107.7493451 -2.916084525 -9.146695667e-19) (107.5158239 -3.418139528 0) (108.0579196 -1.84516232 2.395794056e-19) (107.932372 -2.389104447 2.279495785e-19) (107.2171386 -2.220398413 -2.237618568e-19) (98.1110926 -3.081260439 0) (97.94131482 -2.925445643 -3.084245626e-20) (98.21429987 -2.746869219 0) (97.28393511 -3.327088187 0) (97.6311748 -3.118399183 5.214392492e-19) (97.81326392 -3.285342685 -9.71294038e-19) (97.29897084 -2.751281813 5.143570039e-19) (97.45977583 -2.939979077 -1.591093908e-20) (97.09927732 -3.135658188 -5.017292002e-19) (96.71037921 -4.000116524 -6.738783736e-20) (96.48252632 -3.796651676 0) (96.90059369 -3.55278256 0) (95.55010479 -4.342207454 2.145502856e-19) (96.03156044 -4.05961823 -1.391264537e-19) (96.27752208 -4.275702973 2.686182334e-19) (95.57460989 -3.578885984 -2.823696687e-19) (95.79728566 -3.827102383 3.519206532e-19) (95.29629149 -4.096318201 -1.46900908e-19) (94.81365023 -5.217105873 -3.013823761e-19) (94.5087805 -4.965288891 4.653834714e-19) (95.0412734 -4.644379502 -1.46293147e-19) (93.39372285 -5.656312985 -6.761155794e-19) (93.95728674 -5.303382702 1.222285425e-20) (94.28128923 -5.565532214 3.14197424e-19) (93.33412789 -4.725650773 3.433980044e-19) (93.64184842 -5.023932172 1.634639848e-19) (93.05944683 -5.369095544 6.93228322e-19) (89.79479158 -7.18138985 1.850598196e-21) (89.91190848 -7.082003826 0) (90.00869922 -7.139651371 -3.003883026e-19) (89.71290844 -6.955152371 0) (89.81380049 -7.011046395 0) (89.69715249 -7.1180929 1.665467522e-21) (120.9661779 -18.03778693 7.155635755e-19) (122.0467737 -17.51722731 -7.255216387e-19) (122.8792631 -18.70224789 -1.557101735e-18) (112.5838172 -11.40044648 7.839717263e-19) (113.7014836 -10.77695496 0) (114.8105888 -12.00001636 -1.168206815e-18) (111.714799 -8.797407265 -1.095500816e-18) (112.6716762 -9.714202848 1.077737439e-18) (111.6931315 -10.314151 -1.061061222e-18) (114.4935557 -8.143837176 1.25623648e-18) (113.6135054 -8.995211348 1.135633412e-18) (112.5372935 -8.124718391 -2.257879748e-18) (109.3186239 -7.791723339 1.178216616e-18) (109.9952373 -7.287021065 -7.513764603e-19) (110.8247646 -7.993392152 0) (108.4924708 -6.097554387 -4.578224646e-19) (109.2205022 -6.659196268 9.922017649e-19) (108.617524 -7.133715653 -3.428390095e-20) (110.2882469 -5.495587519 -5.163153843e-19) (109.7803665 -6.114567796 1.835413854e-20) (108.9888059 -5.591138175 -4.770107113e-19) (106.7285462 -5.527544192 0) (107.1605582 -5.14097299 -4.252215489e-19) (107.8058674 -5.595499105 4.584859971e-19) (105.9717558 -4.354164963 -3.969048635e-19) (106.5505116 -4.729053954 4.064191121e-19) (106.1606828 -5.08859006 -4.028715526e-19) (107.2336751 -3.889345578 -4.315451787e-19) (106.9086033 -4.327182023 1.2808091e-18) (106.2958222 -3.984107167 8.065334005e-19) (98.86988829 -3.598891187 4.17876332e-19) (98.67001665 -3.486491786 -5.856207814e-19) (98.89740174 -3.271742545 -3.405185223e-19) (98.12112714 -3.966997547 -2.875860082e-20) (98.411073 -3.718025304 5.196213055e-19) (98.62562056 -3.836715043 0) (98.00495403 -3.441179579 9.531744198e-19) (98.20496399 -3.585137332 -2.71842113e-20) (97.90021725 -3.825736604 5.250911941e-19) (97.71509612 -4.663885307 -1.188739005e-19) (97.45152449 -4.521692636 0) (97.8008914 -4.234608169 0) (96.67068091 -5.155698022 -1.272640594e-19) (97.07432537 -4.828696581 3.152127092e-21) (97.35726129 -4.97928576 3.615692487e-19) (96.5341113 -4.476066796 -6.485375726e-20) (96.80030701 -4.660255454 0) (96.37659324 -4.977536783 0) (96.13666184 -6.047299849 2.627687265e-19) (95.78974286 -5.8676689 2.786835535e-19) (96.24197661 -5.502321544 -3.269141538e-20) (94.82519363 -6.650145816 -6.052938139e-19) (95.31623426 -6.250761398 -2.307714747e-21) (95.68518381 -6.442148251 -2.49685792e-21) (94.61510358 -5.811036889 -1.466885005e-19) (94.9598843 -6.039848817 6.004850163e-19) (94.44879849 -6.424873774 -2.967965799e-19) (91.26959924 -8.383522548 0) (91.4089334 -8.283579709 0) (91.50911598 -8.360364203 0) (91.21313946 -8.116735354 2.83091838e-19) (91.31080813 -8.191928798 0) (91.1722971 -8.296425682 2.891875859e-19) (108.1134853 -12.54100527 0) (109.1996423 -12.44223031 8.538134299e-19) (109.7078222 -13.63822778 -1.05906087e-18) (108.1776466 -10.43982495 -9.508883207e-19) (108.6871808 -11.38293073 8.054665185e-19) (107.7098917 -11.5165157 -5.812063344e-21) (110.6913477 -10.78502933 0) (109.6838441 -11.13897108 -2.728338169e-20) (109.0703041 -10.18167165 -1.079039538e-19) (106.4544804 -9.020217624 7.542036726e-19) (107.1756986 -8.827812094 1.683181861e-20) (107.6715101 -9.590681016 -8.125223982e-19) (106.2175259 -7.507630035 3.904220324e-19) (106.6912155 -8.136742186 8.159760204e-19) (106.0357375 -8.335329496 -1.857505669e-18) (107.9895579 -7.539464146 -4.540955221e-19) (107.3466522 -7.875270182 4.095483086e-19) (106.8115602 -7.250678171 0) (104.8081647 -6.602008706 0) (105.3058148 -6.404467402 -3.666065464e-19) (105.7557811 -6.932798083 3.537207394e-19) (104.4379336 -5.466892593 -3.284948085e-19) (104.8671039 -5.917918616 0) (104.4114035 -6.110091799 0) (105.7466915 -5.408697297 -7.655871367e-19) (105.3151788 -5.686086576 0) (104.8467229 -5.245591949 -1.723220458e-19) (99.70411438 -3.955235248 -7.921830622e-19) (99.49710375 -3.874294523 -4.056275669e-19) (99.6731091 -3.63811954 -3.922997452e-19) (99.06754522 -4.398203843 4.05319774e-19) (99.29507018 -4.126991308 -8.150969811e-19) (99.51501872 -4.211458084 4.032439653e-19) (98.84469197 -3.944903218 -5.409081571e-20) (99.06810622 -4.039039845 4.161752157e-19) (98.82494924 -4.306146464 -4.274705209e-19) (98.80945521 -5.095463818 0) (98.5409809 -5.000226157 -6.308904923e-19) (98.81568715 -4.689065285 4.166874702e-19) (97.92798963 -5.687121686 -2.779113311e-21) (98.244715 -5.332650252 -1.123844014e-19) (98.53301451 -5.43172561 -4.274355982e-19) (97.64804837 -5.112346418 -1.212263621e-19) (97.94524246 -5.227420723 5.426559918e-20) (97.60589443 -5.576816686 5.77674173e-20) (97.59812884 -6.579949123 -4.218515144e-21) (97.23697162 -6.46541034 -2.338979582e-19) (97.59169679 -6.064179984 2.247009591e-19) (96.47650067 -7.336880568 -2.449569566e-19) (96.86497216 -6.889869258 7.122500265e-19) (97.25590556 -7.012640055 6.969629712e-19) (96.0662635 -6.612649075 -5.322638108e-19) (96.46190224 -6.75802751 0) (96.0431984 -7.194427966 -2.692801914e-19) (93.52890997 -9.622892508 0) (93.39153737 -9.541190673 2.382287983e-19) (93.50537402 -9.404075387 -6.803948451e-23) (93.10433524 -9.822525882 5.099120965e-19) (93.25960976 -9.682476209 -4.91405723e-19) (93.39670297 -9.769790282 2.418122662e-19) (92.99513166 -9.507010172 2.496277471e-19) (93.12571051 -9.594571827 -4.967883404e-19) (92.97176175 -9.731499528 2.586188607e-19) (102.3975175 -28.01204596 3.934004251e-19) (103.0583159 -28.47502683 -8.130342815e-20) (102.3094041 -29.16300908 0) (104.2331011 -27.20971958 8.773920006e-20) (103.6926574 -27.81719964 -8.418988738e-20) (103.054587 -27.37413145 -5.486431086e-19) (105.0353862 -28.59169157 1.050830468e-19) (104.3515136 -28.20402424 2.876314584e-19) (104.8912111 -27.53609549 1.074391256e-19) (103.8854006 -15.83527305 -4.220076042e-20) (104.9961505 -16.57076098 -2.543782956e-19) (104.5639729 -17.80359437 -3.318278786e-19) (105.2954948 -14.19437814 7.788429234e-19) (105.2364706 -15.30841396 -4.775345893e-19) (104.1840637 -14.73010971 8.470137679e-19) (107.7354363 -16.18601224 3.649748184e-19) (106.4218187 -15.80189365 2.975188797e-19) (106.3831524 -14.55997169 6.044305822e-19) (104.3223358 -11.98402864 0) (105.1706149 -12.24144524 5.483104256e-19) (105.2618337 -13.17232756 -4.045653684e-19) (104.8396901 -10.59797873 0) (105.0242283 -11.38050902 -5.888744473e-19) (104.2352093 -11.19243896 -5.132512368e-19) (106.772191 -11.55566629 -7.04296654e-19) (105.8773768 -11.50719326 0) (105.6246053 -10.67624959 0) (103.7600393 -9.142373672 8.65490057e-19) (104.4010853 -9.198820063 -6.122593377e-19) (104.6319659 -9.872336158 0) (103.8806624 -7.988244073 -9.029493543e-19) (104.1438714 -8.575519504 1.98364611e-20) (103.5541186 -8.547557241 -2.743476289e-19) (105.3873623 -8.468521977 -3.428284756e-19) (104.7539798 -8.543805113 -3.173072812e-19) (104.4425787 -7.94191142 3.335462427e-19) (102.8510802 -6.958356547 -5.489910422e-19) (103.3252891 -6.927271699 -2.910092891e-19) (103.60531 -7.440636497 2.924515084e-19) (102.7509862 -5.992307779 -2.572845605e-21) (103.0401459 -6.445690506 1.443658007e-19) (102.5966156 -6.489371024 2.706346802e-19) (103.9521222 -6.259130174 -6.289539562e-19) (103.4934267 -6.370083563 3.082521308e-19) (103.1726789 -5.911150309 4.420486491e-19) (100.5837102 -4.101605198 3.532186317e-19) (100.3629285 -4.084248396 -2.627266404e-19) (100.4859562 -3.846805329 -1.098160736e-20) (100.0523761 -4.611722046 -1.359056609e-20) (100.2174002 -4.339414932 -1.794126135e-19) (100.4529231 -4.353602157 -6.458720908e-22) (99.7416686 -4.270463889 0) (99.97895622 -4.312085198 -1.855696546e-19) (99.79768518 -4.586880182 -1.368496108e-20) (99.95875768 -5.211888555 1.716838164e-19) (99.67045266 -5.212255766 0) (99.86954197 -4.902374923 3.635168965e-19) (99.23344496 -5.894373131 0) (99.45861882 -5.543295258 0) (99.76661298 -5.536133455 0) (98.83217194 -5.493333375 -2.033290468e-19) (99.14485094 -5.529057281 0) (98.89604308 -5.885757364 0) (99.13684441 -6.640836981 7.216999085e-19) (98.75622041 -6.672247817 3.839661079e-19) (98.9986696 -6.269821638 -3.786737167e-19) (98.26946337 -7.556965248 1.966378619e-19) (98.51186484 -7.099444111 6.560705767e-21) (98.92329465 -7.057022027 -3.646125028e-19) (97.66381566 -7.080653225 -2.140113854e-19) (98.08855201 -7.107864489 1.207758208e-20) (97.80882851 -7.572503204 2.102927997e-19) (95.4807257 -10.91958219 4.023771257e-19) (95.70738383 -10.95308165 0) (95.52903365 -11.20877801 0) (97.77136401 -16.30091167 0) (97.76408067 -17.24234902 0) (96.73408676 -17.20601062 0) (99.02429366 -19.10404293 0) (98.77694463 -18.08592588 -1.138493821e-20) (99.58361173 -17.82996155 3.077203488e-20) (101.0017564 -12.61587292 -2.923806055e-19) (101.5176505 -13.38776064 2.173743797e-19) (101.0500633 -13.9682531 -1.83606048e-19) (102.0365362 -12.14511309 0) (101.8327376 -12.75978021 0) (101.2853599 -12.10475519 0) (103.2719241 -14.09953634 -3.763251665e-19) (102.4889743 -13.43119819 1.755879541e-19) (102.6912059 -12.70819425 -2.814832086e-19) (101.6740254 -10.53125806 -1.142316233e-20) (102.2283116 -10.9328139 -1.148759734e-20) (102.1615146 -11.53046466 -3.683376236e-19) (102.222063 -9.800450638 4.189082962e-19) (102.2454015 -10.35587991 2.951016029e-20) (101.7032921 -10.01744658 -4.863490308e-20) (103.5077357 -10.94936427 9.522631369e-19) (102.8458794 -10.67035532 4.413523374e-19) (102.7976562 -10.05693719 0) (101.5870577 -8.550861762 0) (102.0730532 -8.74344674 -4.588784138e-19) (102.1626207 -9.259964904 0) (101.830428 -7.770707964 4.657130691e-19) (101.9622755 -8.247020809 -8.645743595e-21) (101.4966016 -8.08962642 -2.065797365e-19) (102.9916667 -8.480980881 0) (102.4602029 -8.378168261 2.420919499e-19) (102.3037596 -7.87342336 2.551989459e-19) (101.1134932 -6.788677375 -1.121933672e-19) (101.5186044 -6.868343478 0) (101.6814972 -7.310295797 6.886897787e-19) (101.1579308 -6.039961452 0) (101.343874 -6.446149434 1.168657476e-19) (100.9584163 -6.384518565 2.139144949e-19) (102.165042 -6.501236242 2.553228975e-19) (101.7473059 -6.486864288 2.695822194e-21) (101.5382145 -6.066590564 1.186314116e-19) (101.4286493 -4.075489338 -5.039242629e-22) (101.2249784 -4.094577267 0) (101.2965347 -3.876224531 0) (101.0331521 -4.575562162 -1.583074271e-19) (101.138505 -4.326589238 -1.592612473e-19) (101.3535313 -4.300316844 -1.536807988e-19) (100.6857652 -4.355610337 2.932343389e-22) (100.9155026 -4.345277166 1.58939605e-19) (100.7963284 -4.602073274 -1.672905443e-19) (101.0398246 -5.063331705 2.964769028e-19) (100.7814335 -5.120505404 1.55598414e-19) (100.9125359 -4.840727731 1.509587965e-19) (100.4961903 -5.72682191 1.518580978e-19) (100.6416672 -5.415697809 -2.991198204e-19) (100.9149006 -5.346319442 4.413856039e-19) (100.0662328 -5.512516775 0) (100.3580055 -5.471973006 1.649671026e-19) (100.1950537 -5.796229395 -7.806097915e-20) (100.5200731 -6.2814216 2.766682028e-19) (100.1992725 -6.399205172 0) (100.3473209 -6.054291584 0) (99.93171249 -7.142464431 0) (100.0577883 -6.761985268 -3.57242972e-20) (100.3955815 -6.622847188 -2.435693104e-19) (99.31968412 -6.983679689 -5.224135417e-21) (99.69867603 -6.883764764 3.125449071e-19) (99.5504952 -7.287887287 -3.161865329e-19) (100.1582702 -7.733758711 0) (99.78371944 -7.969820606 0) (99.83430987 -7.547824934 0) (99.92298352 -8.811530272 -1.316922087e-20) (99.7998261 -8.378553807 1.253958373e-19) (100.1835236 -8.104717659 -8.857015357e-21) (98.87014751 -8.880969413 1.515775451e-19) (99.36578938 -8.63904213 -3.608815817e-21) (99.52047292 -9.164862779 -1.429703635e-19) (89.93046999 -7.926540453 0) (89.43324249 -8.21538221 0) (98.60568871 -9.303497054 -1.180375057e-19) (97.77304528 -10.4591993 -1.830261627e-19) (91.6770476 -10.27727194 -8.34275649e-20) (92.47029339 -9.680858375 1.578508845e-19) (89.41974521 -11.75767587 9.618910134e-20) (90.66358738 -10.9621064 0) (97.42194353 -11.18705304 6.792818525e-20) (99.0349938 -10.312285 -5.61428193e-20) (98.95650005 -11.02461687 0) (98.50443224 -10.97986888 9.45920281e-20) (99.53294205 -10.97427641 -3.279956162e-20) (99.25919184 -11.06043908 3.262069039e-20) (99.24320313 -10.37024729 0) (99.37684919 -12.73140614 0) (99.30034533 -11.8417714 0) (99.6651789 -11.71345129 -8.915198959e-20) (99.77770014 -10.01212818 2.841115348e-20) (99.99394723 -10.5888922 -1.533872926e-19) (99.78424181 -10.81327506 1.161096565e-19) (100.2587201 -10.00935362 -2.212460759e-19) (100.1497163 -10.31483306 4.066011153e-20) (99.8920868 -9.786994032 1.278479301e-19) (100.8312779 -11.47674042 1.837618006e-19) (100.4590381 -10.87856123 -1.233916981e-19) (100.596635 -10.51383953 -2.150971071e-19) (100.0516462 -8.946207054 -2.842607003e-20) (100.3781527 -9.332355021 2.709083576e-19) (100.3304065 -9.678924773 2.19979708e-19) (100.4050702 -8.608311421 -2.19754353e-19) (100.403187 -8.973218384 -5.290070945e-20) (100.0632337 -8.630959054 6.231103945e-20) (101.2193079 -9.669650119 -8.10829118e-20) (100.7880346 -9.319984757 1.549503832e-19) (100.790717 -8.913722164 0) (99.99755172 -7.635794524 1.491328997e-19) (100.3438951 -7.874615334 -1.622426972e-19) (100.3845344 -8.241085075 1.63220453e-19) (100.2106848 -7.147827436 -3.52589435e-19) (100.2853212 -7.509563381 1.740473966e-19) (99.94254093 -7.298726083 1.545628572e-19) (101.0609972 -7.90909037 2.046945061e-19) (100.6574815 -7.714074373 0) (100.5745242 -7.32542907 8.697173037e-20) (99.69766974 -6.296205932 -1.077269938e-19) (100.0205487 -6.437750221 -4.891291309e-21) (100.1220827 -6.790078116 0) (99.7851565 -5.753633685 0) (99.9067722 -6.090588374 -2.304342487e-20) (99.59319973 -5.968399838 2.099748712e-20) (100.5900457 -6.302049186 4.919735453e-20) (100.2391306 -6.202912029 2.151937764e-20) (100.1043157 -5.848194627 0) (102.1895502 -3.926298938 0) (102.008172 -3.972874082 -3.385435574e-21) (102.0467387 -3.77829055 0) (101.9011753 -4.387742184 -2.707883005e-19) (101.9602155 -4.175856561 -1.417096038e-21) (102.1486942 -4.121241088 1.307135108e-19) (101.5621715 -4.266298599 -1.486309464e-19) (101.7645886 -4.22451757 1.401828013e-19) (101.6966003 -4.445220717 -3.532849566e-21) (101.9636547 -4.754724512 1.263152729e-19) (101.7500331 -4.840809919 -3.803860899e-19) (101.830763 -4.609291513 0) (101.5665276 -5.334202862 1.23304107e-19) (101.661163 -5.08257548 1.252093256e-19) (101.8835169 -4.98271084 2.378773029e-19) (101.1765133 -5.266005359 2.788612519e-19) (101.4256563 -5.176914811 1.288391793e-19) (101.320545 -5.444390241 -6.318283529e-20) (101.6164634 -5.710285786 2.532578952e-19) (101.3716206 -5.862983821 -2.837926647e-20) (101.4689511 -5.594647181 0) (101.1920114 -6.416162407 3.948124741e-19) (101.27821 -6.138012461 -8.565020787e-22) (101.5275201 -5.963039063 2.083458156e-19) (100.7122415 -6.470866334 -1.559260196e-20) (101.007175 -6.309272675 -2.296876868e-19) (100.9187698 -6.613486443 -3.20189798e-20) (101.3072366 -6.703143647 -4.75376906e-20) (101.0626157 -6.959529787 -7.372732237e-19) (101.1174421 -6.693504715 -1.287171507e-19) (100.9733865 -7.37897147 0) (101.0714343 -7.267882026 3.831446975e-19) (101.296295 -6.99592638 0) (100.5197979 -7.82403189 1.138368799e-19) (100.8130033 -7.543935163 2.075151921e-19) (100.7667508 -7.714036116 -1.742423801e-19) (91.50614215 -6.793510725 3.216377543e-19) (91.12529854 -7.063331096 0) (99.20611473 -7.713936057 7.774691523e-20) (98.57910444 -8.288875461 -1.466708827e-19) (93.88184615 -8.198103469 -1.012648015e-19) (94.14491926 -7.79498596 0) (93.07311381 -9.139219626 -7.438540528e-20) (93.53096722 -8.644313533 1.110296297e-19) (98.45532067 -8.750559772 9.490930393e-20) (99.31392986 -8.178431947 0) (99.24893861 -8.632072321 0) (99.11942669 -8.625933782 -6.037351568e-20) (99.29888581 -8.683159642 4.417452139e-20) (99.27329263 -8.705134949 2.70553819e-22) (99.29780124 -8.252107451 -3.018815896e-22) (99.24390779 -9.755658458 0) (99.25456428 -9.20385214 -2.702912989e-22) (99.32859079 -9.174271033 0) (99.2512929 -8.120983466 6.591146249e-20) (99.34561386 -8.539283372 0) (99.32558763 -8.633858509 -4.436312213e-20) (99.34205106 -8.251021946 0) (99.35063274 -8.409782303 0) (99.22532797 -8.01164553 1.150415152e-19) (99.67804515 -9.294954724 0) (99.49977483 -8.836723458 -1.380014213e-19) (99.51900434 -8.651118172 -2.545700638e-20) (99.10599447 -7.535821401 0) (99.29849829 -7.865327189 0) (99.32352266 -8.068127459 0) (99.22960913 -7.411901373 -1.177407567e-19) (99.267457 -7.645490618 0) (99.05918935 -7.339322684 1.506541549e-19) (99.76566404 -8.292945541 1.85701117e-19) (99.50185085 -7.963700196 0) (99.47574662 -7.704031468 -1.884058319e-19) (98.89313417 -6.671992696 1.116931134e-19) (99.13153781 -6.911750928 6.320373845e-20) (99.1843122 -7.166466514 1.698753273e-19) (99.00221781 -6.380834969 0) (99.07056639 -6.649104464 -1.257807803e-19) (98.82730746 -6.430147655 0) (99.62665253 -7.084353125 -8.019578093e-20) (99.33583933 -6.868396168 1.420611819e-19) (99.26997011 -6.577712261 7.63577518e-20) (98.59801983 -5.672968228 0) (98.84530637 -5.834300454 -2.260340245e-21) (98.92703517 -6.108531983 3.527974366e-20) (98.67227964 -5.296443181 0) (98.75915722 -5.562462241 0) (98.51518323 -5.419372734 0) (99.29791176 -5.838209251 0) (99.02025718 -5.702440903 0) (98.92713793 -5.420043331 0) (102.8489809 -3.697948851 0) (102.693928 -3.760370741 0) (102.7118024 -3.593649354 0) (102.635028 -4.106148077 -5.821804928e-20) (102.6689573 -3.930938762 5.98973055e-20) (102.8273012 -3.861177165 -1.422150924e-20) (102.3297296 -4.061627907 -6.235491621e-20) (102.5031725 -3.997905234 3.26832482e-20) (102.4644687 -4.182257239 0) (102.707624 -4.372244123 5.025523177e-20) (102.5377672 -4.471249444 0) (102.5912356 -4.286331905 5.693235391e-20) (102.4053568 -4.853346322 4.688917289e-20) (102.4754417 -4.660481786 1.041095111e-19) (102.6487707 -4.549697072 -1.030531526e-19) (102.0933714 -4.878182015 -2.895287984e-19) (102.2905317 -4.77032706 5.657600784e-20) (102.2164359 -4.9768007 0) (102.4265656 -5.093623905 0) (102.2475141 -5.245838427 0) (102.3288901 -5.048892802 -1.764928778e-19) (102.0753661 -5.636092416 -1.593268742e-20) (102.1624979 -5.442542159 1.746055028e-19) (102.3409423 -5.27482149 0) (101.7573124 -5.787694559 2.174706116e-19) (101.9684746 -5.613808685 1.722686175e-19) (101.8829954 -5.825603507 -1.674636511e-20) (102.0774439 -5.781668993 2.725121722e-19) (101.9119446 -5.995433524 0) (101.9898466 -5.832884364 -1.657742822e-19) (101.6605876 -6.271840983 0) (101.8285431 -6.216531155 0) (101.9733751 -5.97469576 -1.269286984e-20) (101.4908045 -6.730613603 -2.652786131e-19) (101.6685598 -6.468475887 3.983227012e-19) (101.5153239 -6.520363279 -3.079275714e-20) (92.92301492 -5.808667334 3.43917915e-20) (92.60444531 -6.044387093 -1.134649518e-19) (100.05706 -6.424340906 2.880359025e-20) (98.79441279 -6.810748461 6.931860792e-20) (94.66667755 -6.769963026 6.873935054e-20) (94.81390951 -6.476163893 0) (94.34782497 -7.426825558 0) (94.51531302 -7.086330955 2.161781782e-20) (98.7682562 -7.13323111 -1.620814402e-20) (99.53212309 -6.716279292 3.600241087e-20) (99.4847221 -7.038425583 5.310236056e-21) (99.46303191 -7.054465571 -7.532739162e-20) (99.26733956 -7.099807341 2.783167151e-20) (99.38029537 -7.108697248 0) (99.40714716 -6.784468383 -2.134196527e-21) (99.32435509 -7.838457308 2.779443289e-20) (99.3520971 -7.458788448 -3.204135963e-21) (99.26723281 -7.448369459 -9.960211012e-21) (99.01052646 -6.723045577 -6.627815302e-20) (99.05622242 -7.036928109 -6.718532577e-20) (99.15968844 -7.084572845 -3.027979493e-20) (98.84845897 -6.875627051 -1.25383737e-20) (98.95212834 -6.967156349 7.11296414e-20) (98.88475091 -6.661694588 6.620002245e-20) (99.11953301 -7.640043776 0) (99.02951429 -7.292611265 7.682108496e-20) (98.94713973 -7.188859846 -4.831615045e-22) (98.529221 -6.365286519 1.624328066e-20) (98.65033312 -6.636964381 -7.948126044e-20) (98.74734425 -6.764955938 7.769859108e-20) (98.4675699 -6.33527955 9.856061898e-20) (98.55740274 -6.493201831 -9.736594211e-20) (98.42183613 -6.234543575 5.513551402e-20) (98.87351781 -7.045342131 4.492912e-20) (98.70717083 -6.763369037 0) (98.63031294 -6.590061587 9.190303069e-20) (98.12460856 -5.765674912 -2.245268041e-23) (98.29294318 -5.983168297 2.130927003e-20) (98.37974579 -6.164773421 -1.593486312e-21) (98.12100106 -5.594547632 0) (98.20661747 -5.792241603 0) (98.03132016 -5.589425062 2.237498197e-23) (98.60309832 -6.213555128 0) (98.39670394 -6.000584174 2.573252659e-20) (98.31613121 -5.78688845 0) (97.76788308 -5.029225576 0) (97.95374109 -5.187946944 0) (98.03643905 -5.392497705 0) (97.79711765 -4.776374583 0) (97.8737497 -4.982083579 0) (97.6869451 -4.836948242 0) (98.28739449 -5.274224068 0) (98.07361506 -5.128146693 0) (97.99617317 -4.908978131 0) (103.408573 -3.42260764 0) (103.2775163 -3.494330708 0) (103.2869409 -3.352187004 0) (103.2366908 -3.781749977 0) (103.2612866 -3.637529386 0) (103.3931525 -3.559468029 0) (102.9785819 -3.788820681 0) (103.1231592 -3.714133076 0) (103.0974089 -3.865381732 0) (103.2920539 -3.972693856 0) (103.1588407 -4.072672039 -2.986769458e-21) (103.2027046 -3.926857378 0) (103.041328 -4.365355506 -5.247307568e-21) (103.1050012 -4.218962709 -3.429682257e-22) (103.2381068 -4.110420363 3.440140812e-22) (102.8111112 -4.438778062 7.190182248e-20) (102.9630011 -4.328369939 2.39668945e-20) (102.8988962 -4.485194331 2.299786161e-20) (103.0156944 -4.517337844 0) (102.8856601 -4.655801599 -2.564356167e-20) (102.9680631 -4.511280288 -1.892114569e-20) (102.6962724 -4.935728899 0) (102.7947247 -4.797900609 7.55525848e-20) (102.9222198 -4.64859724 -4.251593088e-21) (102.5050789 -5.111206213 1.669058408e-19) (102.6559997 -4.952139255 6.47048671e-20) (102.560945 -5.101873489 -8.413798983e-20) (102.5943903 -5.009866547 -9.026168635e-22) (102.4826904 -5.19039213 6.182460658e-20) (102.5913703 -5.071169839 -6.532307472e-20) (102.0789578 -5.39472671 -8.489994208e-20) (102.347514 -5.324171244 0) (102.4509454 -5.129593441 4.808934113e-20) (102.109933 -5.74601632 -1.082305087e-19) (102.2343804 -5.529392867 -7.385352111e-21) (101.9913528 -5.594753358 -6.278910605e-21) (93.97053986 -4.966957395 7.232957177e-20) (93.73614762 -5.161035346 -4.359445806e-21) (100.4827476 -5.437950035 9.749203057e-20) (98.89152396 -5.751159545 5.337449695e-20) (95.28650887 -5.718739845 -3.659192759e-21) (95.46221971 -5.501195198 -2.725631551e-20) (94.96430903 -6.203712965 8.512114856e-21) (95.12099775 -5.951923326 4.911397236e-20) (98.86099171 -5.987798013 0) (99.67339757 -5.642933066 4.491419972e-22) (99.64418943 -5.884764653 -4.502895134e-22) (99.66264555 -5.903061021 0) (99.27978244 -5.929607973 1.21759892e-20) (99.47331557 -5.936542821 0) (99.49099339 -5.68829382 0) (99.43064339 -6.482950858 8.329678383e-21) (99.45244057 -6.201092503 8.119819321e-21) (99.27624573 -6.193865323 -8.164089244e-21) (98.87250085 -5.64800094 1.2475667e-20) (98.90296004 -5.892975 -7.736486168e-21) (99.08829569 -5.922947418 -3.216250205e-20) (98.54891125 -5.787880954 1.750431134e-20) (98.7227217 -5.848369801 1.012286828e-20) (98.67713959 -5.606919632 -1.863791279e-20) (98.82519526 -6.374435987 0) (98.7716699 -6.103789937 6.010446209e-21) (98.61329619 -6.037570266 7.780360249e-21) (98.14216916 -5.401019748 3.626670181e-22) (98.22721846 -5.624765686 5.38805106e-21) (98.38333845 -5.713114664 -1.229447822e-20) (97.94401365 -5.411539305 0) (98.08091434 -5.523858932 5.346908497e-21) (97.98507179 -5.308157843 0) (98.29838161 -5.987012864 0) (98.18514795 -5.750151615 6.281485078e-21) (98.05873698 -5.628060742 -8.127670648e-21) (97.57350604 -4.970845181 0) (97.69522446 -5.157996482 0) (97.81572045 -5.289144673 0) (97.47518712 -4.874302225 0) (97.58186157 -5.019322098 0) (97.45368245 -4.84235782 0) (97.869559 -5.392834097 0) (97.720131 -5.202794074 0) (97.61887819 -5.046452681 0) (97.13974659 -4.423372502 0) (97.28131744 -4.569773696 0) (97.37498198 -4.72408659 0) (97.11443283 -4.252204561 0) (97.1943977 -4.412202149 0) (97.05011614 -4.275698971 0) (97.5120466 -4.69320118 0) (97.34812553 -4.551548595 0) (97.2697592 -4.38164702 0) (103.8781813 -3.126716838 0) (103.7685964 -3.20136027 0) (103.7763898 -3.081703534 0) (103.7291068 -3.439249424 0) (103.7533778 -3.320570851 0) (103.8624302 -3.240481605 0) (103.5189834 -3.480371161 0) (103.6389757 -3.40063007 0) (103.6151575 -3.525289909 0) (103.7550725 -3.57607981 0) (103.6489803 -3.674108342 0) (103.6945683 -3.557187332 0) (103.5231976 -3.903399361 0) (103.5919174 -3.789659478 0) (103.6963851 -3.685122344 0) (103.3632455 -4.002578666 0) (103.4810215 -3.895566499 0) (103.414135 -4.016519287 0) (103.4476147 -3.998133397 0) (103.3507831 -4.123332492 0) (103.442789 -4.014813384 0) (103.1333318 -4.329150038 0) (103.2474542 -4.228381977 0) (103.3407089 -4.09611661 0) (103.0392975 -4.504240177 4.2766855e-21) (103.1472599 -4.364349913 0) (103.0373655 -4.472872636 1.774555413e-21) (102.9537984 -4.362200223 0) (102.87464 -4.514062702 0) (103.0090041 -4.425823809 0) (102.2904852 -4.67907019 -1.581381873e-22) (102.7080031 -4.601270384 1.57143433e-22) (102.7768329 -4.44088919 0) (102.5454194 -4.944736249 -3.644229024e-22) (102.6310534 -4.768979993 3.658513644e-22) (102.2635217 -4.849307225 9.435763713e-21) (94.73966155 -4.309661889 0) (94.56618434 -4.457722626 7.81649458e-22) (100.1737194 -4.613885412 -3.347418263e-23) (99.07832207 -4.932698743 3.990336282e-22) (96.04166388 -4.921066381 -1.653569224e-22) (96.23187373 -4.744810028 0) (95.6480616 -5.296842166 -3.948486309e-22) (95.84207434 -5.104013589 3.949873652e-22) (99.02391115 -5.121753711 4.045027743e-21) (99.74820572 -4.806620371 0) (99.73449946 -4.998404424 0) (99.78099316 -5.010269483 2.133647819e-22) (99.27377363 -5.020823465 0) (99.52179557 -5.027394742 0) (99.52733788 -4.830887116 0) (99.50471746 -5.454877444 1.010901718e-21) (99.51455962 -5.23504108 -1.12160219e-24) (99.27750811 -5.228713006 0) (98.76221024 -4.794582219 0) (98.78755114 -4.990515254 0) (99.02758852 -5.013884124 0) (98.33331562 -4.912910963 0) (98.55555591 -4.957333949 0) (98.52026102 -4.763403958 0) (98.63385523 -5.378351351 -9.089421329e-22) (98.59332093 -5.162060129 0) (98.38134104 -5.114279318 0) (97.86265189 -4.611644797 0) (97.92473078 -4.794342745 0) (98.12265472 -4.858455177 0) (97.56764292 -4.639360312 0) (97.73983678 -4.721123477 0) (97.66976379 -4.543587004 0) (97.89680436 -5.102817362 0) (97.81530398 -4.907347526 0) (97.65108611 -4.819196497 0) (97.16791259 -4.293716211 0) (97.25869002 -4.452777759 0) (97.40750299 -4.549686424 0) (96.99258121 -4.240104536 0) (97.12055185 -4.349343192 0) (97.02409006 -4.19712348 0) (97.33461704 -4.671782112 0) (97.22383315 -4.507503357 0) (97.10104917 -4.390549873 0) (96.65615753 -3.876192623 0) (96.76595045 -4.007049321 0) (96.87443957 -4.125774812 0) (96.5775482 -3.758489706 0) (96.66702804 -3.884510928 0) (96.55391527 -3.760876173 0) (96.91454535 -4.142037405 0) (96.78705479 -4.011685403 0) (96.7002823 -3.87851489 0) (104.27 -2.830172515 0) (104.178622 -2.903552212 0) (104.1891845 -2.803191134 0) (104.1313753 -3.099961425 0) (104.1599097 -3.002477761 0) (104.2499485 -2.924564223 0) (103.9663778 -3.160621219 0) (104.0654607 -3.081221043 0) (104.0382926 -3.183607062 0) (104.1247457 -3.19751836 0) (104.0398694 -3.289802962 0) (104.0916862 -3.195812624 0) (103.8975222 -3.471087295 0) (103.9752753 -3.381664266 0) (104.0579569 -3.284358305 0) (103.7948439 -3.582169084 0) (103.8876855 -3.480970704 0) (103.8123542 -3.575850246 0) (103.7765226 -3.528706876 0) (103.7021146 -3.641300096 0) (103.8064506 -3.557739682 0) (103.4551305 -3.797832719 0) (103.5848111 -3.721470357 0) (103.6559592 -3.603880006 0) (103.4276509 -3.967553628 0) (103.5088534 -3.842681828 0) (103.3827869 -3.924325012 0) (103.2167242 -3.807265999 0) (103.1585621 -3.938730951 0) (103.3138734 -3.870529676 0) (102.2924427 -4.044305798 0) (102.9404802 -3.996736697 0) (102.9818748 -3.859657827 0) (102.8383056 -4.28706099 0) (102.8927752 -4.139128962 0) (102.302141 -4.195240628 0) (95.38100425 -3.784071187 0) (95.22897346 -3.907236793 0) (99.77808459 -3.958276566 0) (99.24577863 -4.253777207 0) (96.72049352 -4.255309525 0) (96.85826867 -4.105481485 0) (96.40826588 -4.574785977 0) (96.57081699 -4.411618454 0) (99.21268233 -4.412139147 0) (99.77976641 -4.129334201 0) (99.77474675 -4.28654903 0) (99.8414334 -4.296069917 0) (99.25331702 -4.292956655 0) (99.53493896 -4.299929913 0) (99.53514786 -4.140078019 0) (99.53125297 -4.644683479 0) (99.53370307 -4.467933819 0) (99.25918573 -4.461017945 0) (98.67272238 -4.105605429 0) (98.6935489 -4.265049101 0) (98.97026438 -4.284468057 0) (98.170966 -4.204128076 0) (98.42649462 -4.238578308 0) (98.39859526 -4.080399856 0) (98.48714124 -4.579452977 0) (98.45595281 -4.404731819 0) (98.20774034 -4.368195168 0) (97.65293558 -3.962718991 0) (97.70036109 -4.113687583 0) (97.92859019 -4.162444875 0) (97.28718944 -3.996063963 0) (97.4866148 -4.0581366 0) (97.43314922 -3.910548284 0) (97.60452071 -4.374224932 0) (97.5436137 -4.212556904 0) (97.35035305 -4.146294984 0) (96.85948668 -3.718549407 0) (96.92936661 -3.853696953 0) (97.10163007 -3.927794962 0) (96.62262148 -3.689663651 0) (96.7698519 -3.774176322 0) (96.69518965 -3.643766549 0) (96.93383981 -4.050654493 0) (96.84925603 -3.909738827 0) (96.70659626 -3.819839899 0) (96.27690976 -3.392236775 0) (96.36363881 -3.50739915 0) (96.48731005 -3.600594426 0) (96.15018713 -3.310005487 0) (96.25135981 -3.41046438 0) (96.16133197 -3.300619045 0) (96.44723538 -3.640572303 0) (96.34652684 -3.523850223 0) (96.24830956 -3.418089683 0) (104.5967647 -2.545336072 0) (104.5205279 -2.614962233 0) (104.5365197 -2.530866316 0) (104.4604836 -2.777385776 0) (104.4957414 -2.697127085 0) (104.5702262 -2.623775727 0) (104.3357938 -2.847622019 0) (104.4176643 -2.77177067 0) (104.3842316 -2.855996362 0) (104.4217162 -2.846789764 0) (104.3533384 -2.931575859 0) (104.4133691 -2.855589297 0) (104.1918864 -3.076193388 0) (104.2796534 -3.005170994 0) (104.3456925 -2.916512175 0) (104.13605 -3.189136882 0) (104.2098618 -3.096052314 0) (104.1246051 -3.171208928 0) (104.0321404 -3.109827735 0) (103.9738946 -3.209883177 0) (104.0899096 -3.144474395 0) (103.7018305 -3.331642812 0) (103.8443223 -3.272317048 0) (103.8998299 -3.168658299 0) (103.7226916 -3.48986535 0) (103.7853759 -3.379357758 0) (103.6458754 -3.442416172 0) (103.4061714 -3.325583725 0) (103.3647298 -3.439661534 0) (103.5457644 -3.387672674 0) (102.2264433 -3.498239886 0) (103.0743593 -3.478008122 0) (103.0965208 -3.36001417 0) (103.0175811 -3.727659689 0) (103.0482204 -3.600497291 0) (102.2449342 -3.626288154 0) (95.93246055 -3.331499041 0) (95.80270815 -3.439084136 0) (99.57897949 -3.430310133 0) (99.33826411 -3.687543031 0) (97.20956909 -3.692248047 0) (97.30899526 -3.565869818 0) (96.98507631 -3.961830158 0) (97.10188096 -3.824143093 0) (99.32021254 -3.819812519 2.521595252e-35) (99.78533362 -3.568932074 0) (99.78587002 -3.699597383 0) (99.86080247 -3.709792707 0) (99.22676186 -3.696761954 0) (99.53051783 -3.704197049 0) (99.52746798 -3.571929014 0) (99.53443201 -3.987838676 0) (99.5328636 -3.842688592 0) (99.23380668 -3.83539821 0) (98.59742203 -3.538665706 0) (98.61517983 -3.670674288 0) (98.91794645 -3.687443245 0) (98.04309167 -3.620719578 0) (98.32285963 -3.648620462 0) (98.29989349 -3.51749359 0) (98.37210686 -3.929664389 0) (98.34689711 -3.785872829 0) (98.07253088 -3.756556908 0) (97.48888606 -3.422653213 0) (97.52650386 -3.548820814 0) (97.77735507 -3.587426063 0) (97.07033231 -3.456260419 0) (97.29085432 -3.505054973 0) (97.24860407 -3.381219939 0) (97.38288888 -3.769407993 0) (97.33553868 -3.634343541 0) (97.1198063 -3.582670705 0) (96.61802127 -3.229155691 0) (96.67329766 -3.344266807 0) (96.8646231 -3.402599954 0) (96.3320919 -3.214511648 0) (96.49592019 -3.281487371 0) (96.43668005 -3.169761385 0) (96.62487743 -3.518312052 0) (96.55855479 -3.397605801 0) (96.39862685 -3.326768412 0) (95.97395523 -2.968419191 0) (96.0437262 -3.069013231 0) (96.18146282 -3.143599444 0) (95.80570533 -2.909655593 0) (95.91858069 -2.990989585 0) (95.84575596 -2.894374368 0) (96.07607996 -3.194053768 0) (95.99525793 -3.090925417 0) (95.88524641 -3.005662197 0) (104.8698003 -2.279115598 0) (104.8060217 -2.343657723 0) (104.8288099 -2.273067305 0) (104.7308368 -2.478471571 0) (104.7739113 -2.412113458 0) (104.8357666 -2.344523137 0) (104.6413017 -2.551783016 0) (104.7091417 -2.481215219 0) (104.6680725 -2.550771576 0) (104.6621216 -2.527805733 0) (104.6065892 -2.604501478 0) (104.6754179 -2.542633163 0) (104.4261507 -2.721020908 0) (104.5236229 -2.663987865 0) (104.5768991 -2.584289638 0) (104.4082204 -2.830092611 0) (104.4674611 -2.745918874 0) (104.3723443 -2.806104128 0) (104.2344417 -2.739327946 0) (104.1880236 -2.827614647 0) (104.314171 -2.775563394 0) (103.8945814 -2.924173486 0) (104.0482137 -2.877178004 0) (104.0923359 -2.786237265 0) (103.9521612 -3.068303588 0) (104.0015519 -2.971171751 0) (103.8506226 -3.020916125 0) (103.5395066 -2.9078851 0) (103.5105443 -3.006790558 0) (103.7229757 -2.967918927 0) (102.1531898 -3.036772918 0) (103.1438464 -3.031410682 0) (103.1545787 -2.929813195 0) (103.1152008 -3.246355089 0) (103.1308406 -3.136873941 0) (102.1707373 -3.145011641 0) (96.40357973 -2.93506217 0) (96.29260931 -3.029244335 0) (99.50991412 -2.989630618 0) (99.38604386 -3.211364799 0) (97.56497506 -3.216885428 0) (97.63824634 -3.109711045 0) (97.40092397 -3.444709927 0) (97.48604659 -3.328472917 0) (99.37724193 -3.323056496 0) (99.77324832 -3.09990943 0) (99.77756374 -3.209714549 0) (99.85478195 -3.220943759 0) (99.1965762 -3.200801092 0) (99.51471255 -3.208822452 0) (99.5094364 -3.097967445 0) (99.52377959 -3.445502746 0) (99.51951001 -3.324572563 0) (99.20437728 -3.31668762 0) (98.53218119 -3.065670096 0) (98.54770141 -3.176285992 0) (98.86950832 -3.191143337 0) (97.93865318 -3.13409776 0) (98.23661306 -3.157387985 0) (98.21716737 -3.047429103 0) (98.2779128 -3.392128691 0) (98.25684166 -3.27219506 0) (97.96297635 -3.247885407 0) (97.35641051 -2.968819366 0) (97.38711029 -3.075182031 0) (97.65523447 -3.106681396 0) (96.89753179 -3.000248313 0) (97.13455702 -3.039682719 0) (97.10024141 -2.935004838 0) (97.20858712 -3.262552705 0) (97.17062464 -3.148789183 0) (96.93736471 -3.107291645 0) (96.42429637 -2.81157987 0) (96.46902705 -2.909909648 0) (96.67579907 -2.956958495 0) (96.09899031 -2.805029698 0) (96.27686925 -2.859220807 0) (96.22886351 -2.763384245 0) (96.38057648 -3.062252158 0) (96.32737652 -2.958792405 0) (96.15278775 -2.901754676 0) (95.72776591 -2.599238606 0) (95.78481812 -2.686741442 0) (95.9350724 -2.747484602 0) (95.52409414 -2.556138641 0) (95.6479289 -2.622941094 0) (95.58814124 -2.538474643 0) (95.77652759 -2.800811839 0) (95.7106572 -2.71042143 0) (95.58946567 -2.640654011 0) (105.0986937 -2.034941113 0) (105.0451609 -2.093786841 0) (105.0753078 -2.034388595 0) (104.9541138 -2.206170692 0) (105.0052866 -2.15103861 0) (105.0568778 -2.089693567 0) (104.8948551 -2.278466277 0) (104.9513164 -2.213971615 0) (104.9021634 -2.271691079 0) (104.8583474 -2.241243442 0) (104.812877 -2.309875835 0) (104.8903142 -2.25912966 0) (104.6149038 -2.404699098 0) (104.721155 -2.358393452 0) (104.764565 -2.287415109 0) (104.6274695 -2.50680749 0) (104.6755013 -2.431520203 0) (104.5713405 -2.480252705 0) (104.3971923 -2.41335906 0) (104.359643 -2.490903843 0) (104.4942712 -2.448847172 0) (104.0467844 -2.568526967 0) (104.2110883 -2.530877339 0) (104.2465973 -2.451310216 0) (104.1340885 -2.698263997 0) (104.1736249 -2.613174682 0) (104.0119876 -2.652945336 0) (103.6319686 -2.545761755 0) (103.6119755 -2.631487044 0) (103.8582182 -2.602769163 0) (102.0935524 -2.645437927 0) (103.1761545 -2.646796595 0) (103.1806401 -2.559291333 0) (103.1633571 -2.831935601 0) (103.1704665 -2.737644069 0) (102.1066391 -2.737434572 0) (96.80644779 -2.588786307 0) (96.71151453 -2.670978399 0) (99.52270734 -2.616653386 0) (99.40589998 -2.807081685 1.891001474e-35) (97.82857733 -2.812710796 0) (97.88345653 -2.721322007 0) (97.70633036 -3.006744388 0) (97.7696467 -2.907804555 0) (99.40288531 -2.902206664 0) (99.74954131 -2.70376065 0) (99.75630444 -2.796758251 0) (99.83259422 -2.808608485 -1.886356583e-35) (99.16417981 -2.783785067 0) (99.49116339 -2.792261932 0) (99.48437987 -2.698585509 0) (99.5037267 -2.991746435 0) (99.49762375 -2.889921712 0) (99.17242753 -2.881548503 0) (98.4745417 -2.66721435 0) (98.48833661 -2.760667047 0) (98.82425124 -2.774053625 0) (97.85109346 -2.724290763 0) (98.16301836 -2.744160461 0) (98.14622049 -2.651218555 0) (98.19845136 -2.942061041 0) (98.18041678 -2.841048017 0) (97.87165866 -2.820408636 0) (97.24680561 -2.584689668 0) (97.27240798 -2.67491262 0) (97.55399146 -2.701201113 0) (96.75647891 -2.612898979 0) (97.00658287 -2.645468623 0) (96.97811286 -2.556510205 0) (97.0675496 -2.834541723 0) (97.03636591 -2.738095094 0) (96.78926174 -2.703990191 0) (96.26568643 -2.454349989 0) (96.30256457 -2.538534775 0) (96.52189838 -2.577239842 0) (95.90848921 -2.452225855 0) (96.09818982 -2.496840399 0) (96.05860104 -2.414543491 0) (96.18318562 -2.671135515 0) (96.13967728 -2.582335357 0) (95.95274236 -2.535566432 0) (95.52468599 -2.278647844 0) (95.57199569 -2.354557311 0) (95.73318161 -2.404769163 0) (95.29085883 -2.246102531 0) (95.42465356 -2.301667271 0) (95.37493044 -2.228120059 0) (95.53111176 -2.456769279 0) (95.47666942 -2.377916955 0) (95.3452602 -2.320073851 0) (105.2912396 -1.814008903 0) (105.2461318 -1.867024612 0) (105.2836441 -1.81687484 0) (105.1395179 -1.961148692 0) (105.198578 -1.915108806 0) (105.2418132 -1.860047441 0) (105.1062151 -2.029924288 0) (105.1534128 -1.971733282 0) (105.0962881 -2.019868617 0) (105.0198139 -1.986154235 0) (104.9822769 -2.047064555 0) (105.0677195 -2.005131373 0) (104.7687953 -2.124990328 0) (104.8826704 -2.086991183 0) (104.9183895 -2.024235631 0) (104.8058715 -2.218544853 0) (104.845201 -2.151748716 0) (104.7331218 -2.191634108 0) (104.5297517 -2.127716432 0) (104.4990486 -2.195576374 0) (104.6408674 -2.16116287 0) (104.1674922 -2.258466965 0) (104.3425392 -2.228154421 0) (104.371321 -2.158703357 0) (104.2802721 -2.374384939 0) (104.31222 -2.300024418 0) (104.1398699 -2.332016083 0) (103.6955116 -2.232119254 0) (103.6818051 -2.306336712 0) (103.9611544 -2.285262179 0) (102.0542077 -2.311864165 0) (103.1886381 -2.315558172 0) (103.1899668 -2.240199256 0) (103.1841082 -2.474997566 0) (103.186726 -2.393789223 0) (102.0621206 -2.390408916 0) (97.15311966 -2.286717347 0) (97.07100156 -2.358407012 0) (99.58772028 -2.297540566 0) (99.40855997 -2.461834623 0) (98.02691813 -2.467789874 0) (98.06862428 -2.389678739 0) (97.93460914 -2.633471477 0) (97.98233643 -2.549008451 0) (99.40909004 -2.543150635 0) (99.71823546 -2.367243144 0) (99.72661648 -2.446366554 0) (99.8006244 -2.458777177 0) (99.13050413 -2.430707885 0) (99.46236713 -2.439558443 0) (99.45455595 -2.359999623 0) (99.47730209 -2.608692042 0) (99.46995645 -2.522404409 0) (99.13900882 -2.51364132 0) (98.42287972 -2.329461272 0) (98.43530511 -2.408820489 0) (98.78169568 -2.421042498 0) (97.77625796 -2.37695768 0) (98.09907276 -2.394191466 0) (98.08433717 -2.31523977 0) (98.12998533 -2.562024004 0) (98.11427945 -2.476402241 0) (97.79394498 -2.458568315 0) (97.15443105 -2.258022886 0) (97.17614318 -2.33485458 0) (97.46838733 -2.357177484 0) (96.63913944 -2.282644366 0) (96.89974095 -2.310007023 0) (96.87572451 -2.234153779 0) (96.95086695 -2.471046984 0) (96.92476662 -2.388926684 0) (96.66658391 -2.360385872 0) (96.13367179 -2.148259953 0) (96.16454201 -2.220423007 0) (96.39415627 -2.252778297 0) (95.75040706 -2.148335954 0) (95.9500425 -2.185599456 0) (95.91691957 -2.114900827 0) (96.02078589 -2.335313618 0) (95.98463339 -2.259035506 0) (95.78732278 -2.220103685 0) (95.35503465 -2.000932443 0) (95.3947355 -2.066633884 0) (95.56538592 -2.108666794 0) (95.09549765 -1.975547208 0) (95.23820041 -2.02227086 0) (95.19638622 -1.958439132 0) (95.32736204 -2.157037113 0) (95.28182305 -2.088492935 0) (95.14124498 -2.039988234 0) (105.4539637 -1.616232464 0) (105.4157669 -1.66351246 0) (105.4603993 -1.620969923 0) (105.2943884 -1.742765135 0) (105.3608761 -1.704097973 0) (105.3973094 -1.655140186 0) (105.2832143 -1.806532711 0) (105.3228732 -1.75455632 0) (105.2581912 -1.794924306 0) (105.1537934 -1.760783622 0) (105.1225415 -1.814452657 0) (105.2151999 -1.779534215 0) (104.8956553 -1.879107059 0) (105.0160321 -1.8476062 0) (105.0457088 -1.792476085 0) (104.9524601 -1.963444831 0) (104.9849781 -1.904581012 0) (104.8661303 -1.937563827 0) (104.6386489 -1.878317466 0) (104.6133569 -1.937480316 0) (104.7615334 -1.909057994 0) (104.2634181 -1.988664979 0) (104.4492658 -1.964197055 0) (104.4727011 -1.903761785 0) (104.3986501 -2.091603164 0) (104.4246068 -2.026788501 0) (104.2414545 -2.052596142 0) (103.7389545 -1.960912085 0) (103.7295977 -2.025023854 0) (104.0393786 -2.009623637 0) (102.0343317 -2.026485473 0) (103.1914383 -2.030374579 0) (103.1913531 -1.965549253 0) (103.1908174 -2.16761028 0) (103.1912826 -2.097697714 0) (102.0376406 -2.09373898 0) (97.45607233 -2.023409016 0) (97.38383179 -2.085849531 0) (99.68530089 -2.022735308 0) (99.40056856 -2.166529408 -2.349113285e-36) (98.17895169 -2.172769747 0) (98.21153531 -2.105898714 0) (98.10770764 -2.314548838 0) (98.14441033 -2.242282411 0) (99.40332438 -2.236093089 0) (99.68193175 -2.080471218 0) (99.69136688 -2.147956289 0) (99.76290971 -2.160772106 2.343533305e-36) (99.09609749 -2.130501683 0) (99.42998351 -2.139649943 0) (99.42146915 -2.0718779 0) (99.44654299 -2.283584205 0) (99.43834642 -2.210176474 0) (99.1047456 -2.201093944 0) (98.37601961 -2.042103452 0) (98.38733658 -2.109687701 0) (98.7414312 -2.120971926 0) (97.71132914 -2.081422171 0) (98.04271075 -2.096568327 0) (98.02962083 -2.029316502 0) (98.07004727 -2.239405833 0) (98.05617899 -2.166556679 0) (97.72675247 -2.150930578 0) (97.07542938 -1.979473073 0) (97.09409172 -2.045030134 0) (97.39488517 -2.064247157 0) (96.54003584 -2.00046728 0) (96.80915728 -2.023771328 0) (96.78862381 -1.958990022 0) (96.85265784 -2.161241284 0) (96.83048555 -2.091150898 0) (96.56333488 -2.06691991 0) (96.02229066 -1.88584764 0) (96.04846036 -1.947711601 0) (96.28654947 -1.975114988 0) (95.61753171 -1.886756548 0) (95.82553126 -1.918257414 0) (95.79747936 -1.857552396 0) (95.88517892 -2.046840056 0) (95.85474057 -1.981322336 0) (95.64870054 -1.948504 0) (95.21175391 -1.76092122 0) (95.24541624 -1.817649386 0) (95.42423385 -1.853216321 0) (94.93024432 -1.740398259 0) (95.08084297 -1.780060517 0) (95.04533596 -1.724833655 0) (95.15628292 -1.8967938 0) (95.11779675 -1.837398056 0) (94.96907753 -1.796322567 0) (105.5921695 -1.440924841 0) (105.5596641 -1.482675178 0) (105.6110385 -1.446409891 0) (105.4245773 -1.549789272 0) (105.4979107 -1.517115855 0) (105.5287835 -1.473988115 0) (105.432242 -1.607671417 0) (105.4657525 -1.561671539 0) (105.394072 -1.595728621 0) (105.2659051 -1.563120726 0) (105.2396693 -1.610053801 0) (105.3387054 -1.580742863 0) (105.0012573 -1.664192751 0) (105.1271951 -1.637831525 0) (105.1520727 -1.589733436 0) (105.0740787 -1.739165312 0) (105.1012183 -1.687629774 0) (104.976594 -1.715168186 0) (104.7286801 -1.66153423 0) (104.7077229 -1.712857355 0) (104.861735 -1.689213188 0) (104.3397972 -1.754689335 0) (104.536293 -1.734877902 0) (104.5554535 -1.682531457 0) (104.4949743 -1.84543808 0) (104.5161519 -1.789162105 0) (104.3222907 -1.810040462 0) (103.7685805 -1.72716255 0) (103.7622023 -1.782340916 0) (104.0988253 -1.771105689 0) (102.0306276 -1.782115703 0) (103.1901731 -1.785305284 0) (103.1896114 -1.729696309 0) (103.1910831 -1.903153583 0) (103.1906757 -1.843098914 0) (102.0302338 -1.839689878 0) (97.72531854 -1.79484282 0) (97.66071179 -1.848924203 0) (99.80231906 -1.785915805 0) (99.3856861 -1.913928127 0) (98.29918279 -1.920257747 0) (98.32551087 -1.863065603 0) (98.24232954 -2.04158701 0) (98.27149863 -1.979736171 0) (99.38991398 -1.973421771 0) (99.6424201 -1.835795835 0) (99.65252497 -1.893370987 0) (99.72176257 -1.906392947 0) (99.06133531 -1.874731771 0) (99.39517143 -1.884079794 0) (99.3861975 -1.826321524 0) (99.41282034 -2.006764293 0) (99.40404989 -1.944197433 0) (99.07004102 -1.934889931 0) (98.33311029 -1.797297858 0) (98.34350451 -1.854868454 0) (98.70313154 -1.865375128 0) (97.65431357 -1.829537077 0) (97.99245579 -1.842990604 0) (97.98071338 -1.785696699 0) (98.01689391 -1.9647073 0) (98.00451089 -1.902630828 0) (97.66791187 -1.888785135 0) (97.00706775 -1.741819589 0) (97.02328093 -1.797733193 0) (97.33099389 -1.814461205 0) (96.45529475 -1.759267589 0) (96.73139658 -1.779339491 0) (96.71365106 -1.724052035 0) (96.76884684 -1.896722714 0) (96.74978352 -1.836868703 0) (96.47530182 -1.81605345 0) (95.92725482 -1.661097061 0) (95.94967157 -1.714039826 0) (96.19479788 -1.737505349 0) (95.50461893 -1.661953125 0) (95.71968538 -1.688859172 0) (95.69568713 -1.636847327 0) (95.77052823 -1.799139157 0) (95.74461523 -1.742932957 0) (95.53120712 -1.71497056 0) (95.08959783 -1.554124619 0) (95.11839371 -1.602931237 0) (95.30425719 -1.633312484 0) (94.78924105 -1.536842018 0) (94.94680748 -1.570795498 0) (94.91640263 -1.523207067 0) (95.0112099 -1.671550789 0) (94.97838884 -1.620260623 0) (94.82247968 -1.585172669 0) (105.7102093 -1.28702919 0) (105.6823825 -1.323539123 0) (105.7400513 -1.29245577 0) (105.5347562 -1.380734218 0) (105.6143043 -1.352940835 0) (105.6406365 -1.315300174 0) (105.5584335 -1.432262768 0) (105.5869215 -1.391922332 0) (105.5088675 -1.420842637 0) (105.3605246 -1.391072469 0) (105.3383097 -1.431795697 0) (105.4429255 -1.406987573 0) (105.0899153 -1.477522315 0) (105.2206826 -1.45527332 0) (105.241718 -1.413612849 0) (105.1759101 -1.5432984 0) (105.1987628 -1.498490321 0) (105.0691451 -1.521685759 0) (104.8035316 -1.474097035 0) (104.786075 -1.5183695 0) (104.9455544 -1.498581874 0) (104.4007745 -1.552685514 0) (104.6075524 -1.536599306 0) (104.6232762 -1.491495194 0) (104.573685 -1.632069687 0) (104.5910362 -1.583441975 0) (104.386786 -1.600385144 0) (103.7887526 -1.526424829 0) (103.7844138 -1.573731022 0) (104.1440702 -1.565558164 0) (102.0396515 -1.573120672 0) (103.1878552 -1.57527012 0) (103.1873227 -1.527716006 0) (103.1890207 -1.676198587 0) (103.1884278 -1.624744465 0) (102.0363739 -1.622317727 0) (97.96854521 -1.597313652 0) (97.90982663 -1.643990284 0) (99.93046264 -1.582229904 0) (99.36618243 -1.698049834 0) (98.39749813 -1.704374547 0) (98.41951254 -1.655519557 0) (98.35059915 -1.808074377 0) (98.37456061 -1.755202886 0) (99.371384 -1.748855487 0) (99.60092003 -1.627285335 0) (99.61142953 -1.67628896 0) (99.6785342 -1.689410904 0) (99.02652274 -1.656922943 0) (99.35881142 -1.666385086 0) (99.34955739 -1.617270484 0) (99.37713976 -1.770838016 0) (99.36800809 -1.71755081 0) (99.03521808 -1.708111513 0) (98.29350921 -1.588970463 0) (98.30313049 -1.63791067 0) (98.6665686 -1.647761514 0) (97.6037498 -1.615005498 0) (97.94722197 -1.627067019 0) (97.93659255 -1.578356477 0) (97.96926946 -1.730663848 0) (97.95811001 -1.677812513 0) (97.61585287 -1.665427759 0) (96.94731546 -1.539366352 0) (96.96153854 -1.586943924 0) (97.27489173 -1.601646489 0) (96.38207784 -1.553413728 0) (96.66394658 -1.570872819 0) (96.64845922 -1.523805905 0) (96.69651449 -1.670927287 0) (96.6799559 -1.619891116 0) (96.39942979 -1.601828542 0) (95.84535542 -1.469095668 0) (95.86474403 -1.514258288 0) (96.11575531 -1.534548549 0) (95.40774933 -1.469326719 0) (95.62881444 -1.492523948 0) (95.60808845 -1.448116437 0) (95.67257242 -1.586829665 0) (95.65029568 -1.538742353 0) (95.43064113 -1.514689335 0) (94.98454069 -1.37666573 0) (95.00938677 -1.418468191 0) (95.20133941 -1.444647372 0) (94.66797325 -1.361464379 0) (94.83168051 -1.390763561 0) (94.80542864 -1.349956344 0) (94.88711661 -1.477338899 0) (94.85889305 -1.433239624 0) (94.69664671 -1.403022712 0) (105.8116756 -1.153337923 0) (105.7876911 -1.184913078 0) (105.8511824 -1.15809952 0) (105.6286964 -1.234005264 0) (105.7138371 -1.210186524 0) (105.7364607 -1.17768508 0) (105.6659724 -1.278970642 0) (105.6903561 -1.243942418 0) (105.6065574 -1.268678719 0) (105.4410551 -1.242622019 0) (105.4220875 -1.277624724 0) (105.5315858 -1.25645106 0) (105.1649083 -1.316554402 0) (105.2999611 -1.29763312 0) (105.3178882 -1.261871204 0) (105.2619165 -1.373470426 0) (105.2813167 -1.334822654 0) (105.1472929 -1.354512357 0) (104.8660434 -1.313143462 0) (104.8514412 -1.351035781 0) (105.0161085 -1.334393874 0) (104.4495371 -1.379263185 0) (104.6660882 -1.366178657 0) (104.6790271 -1.327608723 0) (104.6382495 -1.448080373 0) (104.6525074 -1.406323146 0) (104.4383454 -1.420098143 0) (103.802491 -1.355011509 0) (103.7995291 -1.395284474 0) (104.178515 -1.389357908 0) (102.0583285 -1.3950207 0) (103.1861125 -1.396025708 0) (103.1858721 -1.355622657 0) (103.1868464 -1.482020755 0) (103.1864398 -1.438142307 0) (102.0529138 -1.436852679 0) (98.19164054 -1.427382698 0) (98.13748941 -1.467427939 0) (100.0639583 -1.407591233 0) (99.34405522 -1.514148922 0) (98.48090748 -1.520182745 0) (98.50008772 -1.478636607 0) (98.4406967 -1.608569249 0) (98.46113546 -1.563476491 0) (99.34972503 -1.557344282 0) (99.55829916 -1.450356176 0) (99.56902 -1.491843318 0) (99.63429629 -1.504951933 0) (98.99183982 -1.472045028 0) (99.32151697 -1.481570865 0) (99.31209841 -1.440020147 0) (99.34025194 -1.570134189 0) (99.33090342 -1.524922985 0) (99.00049306 -1.515409092 0) (98.25665962 -1.412366049 0) (98.26564189 -1.453762849 0) (98.63151482 -1.46306983 0) (97.5584862 -1.432858685 0) (97.90613557 -1.443774041 0) (97.89642328 -1.402565658 0) (97.92620857 -1.531608128 0) (97.91606034 -1.486769146 0) (97.56935944 -1.475588048 0) (96.89459381 -1.367587329 0) (96.90718847 -1.407866302 0) (97.22516186 -1.42090992 0) (96.31820762 -1.378362776 0) (96.60487696 -1.393692449 0) (96.59123304 -1.353831228 0) (96.63346658 -1.478621873 0) (96.6189474 -1.435271359 0) (96.33339876 -1.419449085 0) (95.77411282 -1.305837033 0) (95.7910388 -1.344145488 0) (96.04700706 -1.361854745 0) (95.32388506 -1.305029551 0) (95.55007097 -1.325211716 0) (95.53200621 -1.287518099 0) (95.58807772 -1.405459207 0) (95.56875061 -1.364509423 0) (95.3437717 -1.343630571 0) (94.89341668 -1.225249045 0) (94.91503898 -1.260819395 0) (95.11227253 -1.283573748 0) (94.56285389 -1.211245938 0) (94.73197944 -1.236733784 0) (94.70912456 -1.201977884 0) (94.78008849 -1.310677993 0) (94.75562028 -1.272980571 0) (94.58778502 -1.24674839 0) (105.8995441 -1.038658148 0) (105.8787091 -1.065594123 0) (105.9475642 -1.042295326 0) (105.7094393 -1.108075714 0) (105.7996007 -1.087491626 0) (105.8191994 -1.059798885 0) (105.758269 -1.146414636 0) (105.779303 -1.116357597 0) (105.6903464 -1.137688226 0) (105.5101742 -1.115943945 0) (105.4938383 -1.145665246 0) (105.6076441 -1.127434225 0) (105.2287782 -1.17907474 0) (105.3677174 -1.162860885 0) (105.3831192 -1.132523831 0) (105.3351338 -1.227507407 0) (105.3517328 -1.194513174 0) (105.2137338 -1.211352479 0) (104.9184881 -1.176284172 0) (104.9062114 -1.208357079 0) (105.0758327 -1.194285431 0) (104.488611 -1.231666984 0) (104.7143197 -1.220989474 0) (104.7250114 -1.188367464 0) (104.6913574 -1.290576967 0) (104.7031116 -1.25504839 0) (104.4796303 -1.266277764 0) (103.8119464 -1.209980467 0) (103.8098931 -1.243908973 0) (104.2047849 -1.23960413 0) (102.0838651 -1.244319037 0) (103.1857174 -1.244247203 0) (103.185863 -1.210259453 0) (103.1857238 -1.316887502 0) (103.1856714 -1.279776226 0) (102.0769722 -1.279589778 0) (98.3990899 -1.282474737 0) (98.34848598 -1.31648246 0) (100.1984945 -1.2589179 0) (99.32104975 -1.358478179 1.310930991e-36) (98.55468497 -1.364003867 0) (98.57208753 -1.328973482 0) (98.51873748 -1.438789718 0) (98.53691997 -1.400594036 0) (99.32681065 -1.394924955 0) (99.51521538 -1.301302506 0) (99.52600096 -1.33612589 0) (99.58996577 -1.349106028 -1.307980905e-36) (98.95736746 -1.31610356 0) (99.28370205 -1.32565271 0) (99.27420437 -1.290798473 0) (99.30265326 -1.400217013 0) (99.29318631 -1.362110408 0) (98.96596317 -1.35256391 0) (98.22206595 -1.263706586 0) (98.23052796 -1.298429296 0) (98.59772771 -1.307293274 0) (97.51757635 -1.279161112 0) (97.86845951 -1.289138102 0) (97.85949626 -1.25456751 0) (97.88691335 -1.363090345 0) (97.8775953 -1.325297137 0) (97.52744196 -1.315103479 0) (96.84762732 -1.222866245 0) (96.85889104 -1.256680783 0) (97.18065929 -1.268366907 0) (96.26196188 -1.230465305 0) (96.55265535 -1.244057401 0) (96.54051621 -1.21058305 0) (96.57799489 -1.315636793 0) (96.56514201 -1.279060766 0) (96.27539059 -1.265067195 0) (95.71154917 -1.168058393 0) (95.72647086 -1.20027037 0) (95.98664599 -1.215878175 0) (95.25061438 -1.165887812 0) (95.4812011 -1.183615898 0) (95.46530195 -1.151903355 0) (95.51452583 -1.251382852 0) (95.49760006 -1.216762584 0) (95.26805374 -1.198467915 0) (94.81366841 -1.097107817 0) (94.83266199 -1.127094647 0) (95.03449952 -1.147057209 0) (94.47097728 -1.083592014 0) (94.64489951 -1.105963112 0) (94.62481823 -1.076639994 0) (94.68701781 -1.168596342 0) (94.66562105 -1.136627284 0) (94.49284362 -1.113655336 0) (105.9762841 -0.9418256219 0) (105.9580229 -0.964410817 0) (106.0317968 -0.9440019249 0) (105.7794747 -1.001515846 0) (105.8741462 -0.9835562627 0) (105.8912866 -0.9603596228 0) (105.8381336 -1.033258358 0) (105.8564399 -1.007848797 0) (105.7628513 -1.026412435 0) (105.5700565 -1.009400477 0) (105.5558485 -1.034229582 0) (105.6734998 -1.018377227 0) (105.2835909 -1.063162509 0) (105.4261191 -1.049147551 0) (105.4394743 -1.023822357 0) (105.3979675 -1.103476244 0) (105.4122929 -1.075690074 0) (105.2706384 -1.090211723 0) (104.9627581 -1.061484202 0) (104.9523664 -1.088213679 0) (105.1267273 -1.076233315 0) (104.5200639 -1.107575401 0) (104.7542569 -1.098815673 0) (104.7631455 -1.071644158 0) (104.7352138 -1.157151298 0) (104.7449547 -1.127307917 0) (104.5128186 -1.136506295 0) (103.8186075 -1.088825119 0) (103.8171429 -1.116995107 0) (104.2249283 -1.113847842 0) (102.1139582 -1.118188023 0) (103.1869004 -1.117163067 0) (103.1874412 -1.088973148 0) (103.1861092 -1.1777743 0) (103.1864554 -1.146751301 0) (102.1061145 -1.147551569 0) (98.59427506 -1.160311448 0) (98.54648876 -1.188834797 0) (100.331072 -1.133735929 0) (99.29840734 -1.228008365 0) (98.62258081 -1.232819087 0) (98.63899286 -1.203620913 0) (98.5891712 -1.295460209 0) (98.60599044 -1.263418874 0) (99.30396996 -1.258406019 0) (99.47214924 -1.177152403 0) (99.48289198 -1.205994655 0) (99.5462335 -1.218749627 0) (98.92313406 -1.185887246 0) (99.24566197 -1.195434531 0) (99.23614169 -1.166584934 0) (99.26469671 -1.25750494 0) (99.25518086 -1.225727583 0) (98.93167039 -1.216178393 0) (98.18927767 -1.139950444 0) (98.19732847 -1.168696172 0) (98.56496941 -1.177211637 0) (97.48020783 -1.150740493 0) (97.83354859 -1.159962352 0) (97.82518388 -1.131335259 0) (97.85069642 -1.22154227 0) (97.84204947 -1.190017817 0) (97.48925814 -1.180623398 0) (96.80533694 -1.102268897 0) (96.8155239 -1.130293783 0) (97.14041447 -1.140879955 0) (96.21191679 -1.10674371 0) (96.506008 -1.11892738 0) (96.49508678 -1.091175425 0) (96.52870702 -1.178596387 0) (96.51720888 -1.148054658 0) (96.22391533 -1.135547141 0) (95.65602565 -1.053070616 0) (95.6693251 -1.079807762 0) (95.93310067 -1.09371307 0) (95.18595173 -1.049261588 0) (95.42035136 -1.065000157 0) (95.40620589 -1.03866532 0) (95.44987723 -1.121587324 0) (95.43490031 -1.092628814 0) (95.20140492 -1.076432078 0) (94.74316888 -0.9899265845 0) (94.76002704 -1.014865868 0) (94.9659097 -1.032561006 0) (94.38989664 -0.9763064473 0) (94.56810026 -0.99613621 0) (94.55027437 -0.9717363751 0) (94.60534546 -1.048559221 0) (94.58644709 -1.021752563 0) (94.40926846 -1.001434118 0) (106.0439983 -0.8617281122 0) (106.0278112 -0.8802359722 0) (106.1060826 -0.8621639398 0) (105.8408739 -0.9130214194 0) (105.9396101 -0.8971651964 0) (105.9547806 -0.8781732956 0) (105.9078912 -0.9382407605 0) (105.9239897 -0.9171815721 0) (105.8262314 -0.9335185716 0) (105.6225168 -0.9215585311 0) (105.6100076 -0.9418376018 0) (105.7311389 -0.9278866429 0) (105.3310683 -0.9671801099 0) (105.4769633 -0.9549312516 0) (105.4886807 -0.9342603584 0) (105.4523836 -0.9996920301 0) (105.4648721 -0.9767352624 0) (105.3198014 -0.9893880423 0) (105.0004427 -0.9670422581 0) (104.9915599 -0.9888264143 0) (105.1704652 -0.9785284918 0) (104.5455542 -1.005050759 0) (104.7875579 -0.9978036331 0) (104.7950171 -0.975671031 0) (104.7716436 -1.045767544 0) (104.7797739 -1.021161778 0) (104.5396615 -1.028752316 0) (103.8234735 -0.989497526 0) (103.8223841 -1.012377719 0) (104.2405007 -1.010048075 0) (102.1467633 -1.014312914 0) (103.1896078 -1.012500215 0) (103.1904964 -0.9896212054 0) (103.1880758 -1.062150993 0) (103.1887987 -1.036668551 0) (102.1383914 -1.038301732 0) (98.77938246 -1.058994675 0) (98.73395834 -1.082449519 0) (100.4594618 -1.03004369 0) (99.27723548 -1.120270304 -1.37759497e-36) (98.68751461 -1.124121077 0) (98.70355936 -1.100222664 0) (98.65526028 -1.175792075 0) (98.67142614 -1.149301357 0) (99.28233626 -1.145191227 -1.39465475e-36) (99.42947654 -1.075477216 0) (99.44009022 -1.098906061 0) (99.50368055 -1.111356418 1.374587611e-36) (98.889121 -1.078815883 0) (99.20759881 -1.08834727 0) (99.19809891 -1.064930818 0) (99.22662274 -1.139142827 0) (99.21710757 -1.113074466 0) (98.89760546 -1.103537837 0) (98.15787793 -1.038646742 0) (98.16561941 -1.061985102 0) (98.53300553 -1.07024086 0) (97.44566401 -1.045044855 0) (97.8008217 -1.053678509 0) (97.7929172 -1.030427929 0) (97.81694689 -1.104100957 0) (97.80882887 -1.078226106 0) (97.454072 -1.069460323 0) (96.76678464 -1.003417446 0) (96.77611987 -1.026205539 0) (97.10358305 -1.035920144 0) (96.16686556 -1.004777103 0) (96.46384711 -1.015838575 0) (96.45389224 -0.9932633253 0) (96.48442977 -1.064764559 0) (96.47402143 -1.039662608 0) (96.17772054 -1.028345609 0) (95.60616016 -0.9586655461 0) (95.61816484 -0.9804440457 0) (95.88504759 -0.99298858 0) (95.12824996 -0.9529739526 0) (95.36597673 -0.9671154182 0) (95.3532343 -0.9456545369 0) (95.39244235 -1.013592665 0) (95.37903939 -0.9897523463 0) (95.14210346 -0.9752455249 0) (94.68017715 -0.901776517 0) (94.69530618 -0.9221270621 0) (94.90476123 -0.9379887702 0) (94.31764187 -0.8876119343 0) (94.49967697 -0.9053477244 0) (94.4836895 -0.8854286159 0) (94.53294549 -0.9484727917 0) (94.51608726 -0.9263661813 0) (94.33496607 -0.9082150971 0) (106.104587 -0.7972982306 0) (106.090003 -0.811979122 0) (106.1723802 -0.7957064599 0) (105.8954449 -0.8414043193 0) (105.9978705 -0.8271829601 0) (106.0115183 -0.8121362665 0) (105.9695284 -0.8601903059 0) (105.9838818 -0.8431985389 0) (105.8823488 -0.8577860527 0) (105.6691474 -0.8511686917 0) (105.6579564 -0.8671892737 0) (105.7822869 -0.8547182758 0) (105.3727154 -0.8897253205 0) (105.5218144 -0.8788589846 0) (105.532257 -0.8625397792 0) (105.5000467 -0.9147035299 0) (105.5110838 -0.8962428323 0) (105.3627734 -0.9074210517 0) (105.0329442 -0.8915324139 0) (105.0252339 -0.9087031755 0) (105.208511 -0.8997229558 0) (104.5664668 -0.9225058929 0) (104.8156503 -0.9164161578 0) (104.8220117 -0.8989813984 0) (104.8021719 -0.9547426006 0) (104.8090429 -0.9349982888 0) (104.5615983 -0.9413462495 0) (103.8272514 -0.9103766018 0) (103.8263755 -0.9283390057 0) (104.2527255 -0.9265590731 0) (102.1808377 -0.9309204145 0) (103.1936177 -0.9284939933 0) (103.194798 -0.9105517494 0) (103.1914641 -0.9680087569 0) (103.1925038 -0.9476405326 0) (102.1722586 -0.9499271707 0) (98.9557131 -0.9771915833 0) (98.91240722 -0.9958754288 0) (100.5821231 -0.9463257463 0) (99.25837953 -1.033225382 0) (98.75159317 -1.035962348 0) (98.76761939 -1.016939641 0) (98.7195737 -1.077580987 0) (98.73558332 -1.056169209 0) (99.26284382 -1.053146316 0) (99.3875124 -0.9942665902 0) (99.39791947 -1.012743867 0) (99.46276145 -1.024809333 0) (98.85529582 -0.9927597664 0) (99.16967562 -1.002261209 0) (99.16023553 -0.9838140256 0) (99.18861038 -1.042795865 0) (99.17913547 -1.021915318 0) (98.86373678 -1.012404947 0) (98.12747784 -0.9577834013 0) (98.13500375 -0.9761758379 0) (98.50161179 -0.9842537287 0) (97.41328889 -0.9599776617 0) (97.76974076 -0.9681762477 0) (97.76216921 -0.9498427384 0) (97.78510765 -1.008445396 0) (97.77738496 -0.9877040552 0) (97.42121374 -0.9794103615 0) (96.73112277 -0.9243579327 0) (96.73981023 -0.9423577085 0) (97.06939939 -0.9514079796 0) (96.12574161 -0.9225624621 0) (96.42520403 -0.9327581264 0) (96.41598882 -0.914916238 0) (96.44414291 -0.9719089415 0) (96.43458499 -0.9517494796 0) (96.13570929 -0.9413601319 0) (95.56073266 -0.883004612 0) (95.57173514 -0.9002481509 0) (95.84132446 -0.9117357465 0) (95.07608384 -0.8751782499 0) (95.31673405 -0.8880716883 0) (95.30508092 -0.8710684111 0) (95.3407928 -0.9253434056 0) (95.32863272 -0.9061575586 0) (95.08868014 -0.8929834047 0) (94.62316747 -0.8309589954 0) (94.63693984 -0.8471205358 0) (94.84955545 -0.8615381384 0) (94.25258787 -0.8158072752 0) (94.4380271 -0.8318840219 0) (94.42349006 -0.8160476447 0) (94.4681023 -0.8665517508 0) (94.45289033 -0.8487197036 0) (94.26826305 -0.8323061686 0) (106.1598218 -0.7477648378 0) (106.1464349 -0.7587810769 0) (106.2326615 -0.7438626283 0) (105.9448113 -0.785691555 0) (106.0506509 -0.772691768 0) (106.0631635 -0.7614050868 0) (106.0248495 -0.7980463715 0) (106.0378867 -0.7849017246 0) (105.9328781 -0.7981726846 0) (105.7113554 -0.7972094236 0) (105.7011484 -0.8092073969 0) (105.8284768 -0.7978453156 0) (105.4098725 -0.8296317784 0) (105.5620606 -0.8198071575 0) (105.5715493 -0.8075913093 0) (105.5424327 -0.8472677569 0) (105.5523612 -0.8330282234 0) (105.4009366 -0.8430838037 0) (105.0615164 -0.8337608486 0) (105.054679 -0.8465989598 0) (105.2421744 -0.8386103321 0) (104.584016 -0.8586165321 0) (104.8398047 -0.8533697355 0) (104.8453622 -0.8403412929 0) (104.8281461 -0.8826736045 0) (104.8340715 -0.8674752391 0) (104.5798833 -0.872905782 0) (103.8305416 -0.8501075579 0) (103.8297356 -0.8634757062 0) (104.2626459 -0.8620154571 0) (102.215162 -0.8666579957 0) (103.1987536 -0.8637413163 0) (103.2002016 -0.8504124461 0) (103.1960504 -0.8937922582 0) (103.1973662 -0.8781945528 0) (102.2065908 -0.8809977084 0) (99.12367945 -0.9137701433 0) (99.08246194 -0.9279655291 0) (100.6980547 -0.8814285749 0) (99.24234122 -0.9652074039 0) (98.81583528 -0.9667568042 0) (98.83198523 -0.9522574998 0) (98.78365998 -0.9990789112 0) (98.7997346 -0.9823568528 0) (99.24606536 -0.9805030084 0) (99.34657455 -0.9319377772 0) (99.35669606 -0.9458213028 0) (99.42387812 -0.9574065623 0) (98.82163276 -0.9260296193 0) (99.13205284 -0.9354841897 0) (99.1227127 -0.9216468329 0) (99.15081676 -0.9665491495 0) (99.14142165 -0.9504456202 0) (98.83003469 -0.9409775406 0) (98.09772097 -0.8957834914 0) (98.10511858 -0.9095864757 0) (98.47058242 -0.9175620246 0) (97.38247926 -0.8938749102 0) (97.73981157 -0.9017812623 0) (97.73245367 -0.8880100386 0) (97.75466217 -0.9326792015 0) (97.74721199 -0.9166650355 0) (97.39006676 -0.9086986708 0) (96.69757614 -0.8635536219 0) (96.70580512 -0.8771130861 0) (97.03716406 -0.8856911158 0) (96.08758359 -0.8585014345 0) (96.38920225 -0.8680667013 0) (96.38051749 -0.8546137117 0) (96.40692544 -0.8982000976 0) (96.39800073 -0.8825897424 0) (96.09689491 -0.8728879935 0) (95.51863929 -0.8246356834 0) (95.5289066 -0.8376723573 0) (95.8008858 -0.8483802173 0) (95.02815394 -0.8143839132 0) (95.27140959 -0.8263496607 0) (95.26055898 -0.8134837321 0) (95.29365412 -0.8551255857 0) (95.28243587 -0.8402249824 0) (95.03980633 -0.8280550329 0) (94.57067059 -0.7761424816 0) (94.58344365 -0.7884003648 0) (94.7989039 -0.801744712 0) (94.19300746 -0.7594131954 0) (94.38155822 -0.7743090301 0) (94.36807855 -0.7622923649 0) (94.40924746 -0.8011717019 0) (94.39527543 -0.787271293 0) (94.20748324 -0.7721375106 0) (106.211128 -0.7124982979 0) (106.1985957 -0.7200046842 0) (106.2884402 -0.7060773837 0) (105.9903588 -0.7451146199 0) (106.0993941 -0.7329876267 0) (106.1111026 -0.7252976826 0) (106.0754447 -0.751032085 0) (106.0875151 -0.7415624168 0) (105.9792613 -0.7538768115 0) (105.7503659 -0.7588495504 0) (105.7408512 -0.7670163446 0) (105.8710334 -0.7564426594 0) (105.4437236 -0.7859353426 0) (105.5989219 -0.7768541975 0) (105.607738 -0.7685410774 0) (105.5808444 -0.7963682259 0) (105.5899632 -0.7861261997 0) (105.4355116 -0.7953670781 0) (105.0872626 -0.792737962 0) (105.0810352 -0.801469033 0) (105.2726144 -0.7941859594 0) (104.5992548 -0.8122528116 0) (104.8611357 -0.8075781914 0) (104.8661446 -0.7987224653 0) (104.8507596 -0.8283753732 0) (104.8560125 -0.8174584304 0) (104.5956101 -0.8222525088 0) (103.8338594 -0.8075384216 0) (103.8330049 -0.8165726275 0) (104.271156 -0.8152428086 0) (102.249093 -0.8203324139 0) (103.20495 -0.8170214693 0) (103.206654 -0.8080428988 0) (103.2017218 -0.838193321 0) (103.2032992 -0.8270662143 0) (102.240663 -0.8302867657 0) (99.28307571 -0.867683786 0) (99.24402575 -0.8776265742 0) (100.8065865 -0.8343067952 0) (99.22948081 -0.9149853013 -3.175375215e-36) (98.88073582 -0.9152237839 0) (98.89712967 -0.9049898532 0) (98.84817344 -0.9388460002 0) (98.86442927 -0.9265039569 0) (99.2323765 -0.9259232982 -6.902397942e-36) (99.30694159 -0.8873063153 0) (99.31671675 -0.896856089 0) (99.38739326 -0.907875968 3.168817678e-36) (98.78811037 -0.8773301464 0) (99.0948851 -0.8867202399 0) (99.0856774 -0.8772256421 0) (99.11340354 -0.9089170325 0) (99.10412713 -0.8972795344 0) (98.79647893 -0.8878721744 0) (98.0682699 -0.8514476902 0) (98.07562222 -0.8609297274 0) (98.43972478 -0.8688727044 0) (97.35266175 -0.8454618798 0) (97.71056496 -0.8532121247 0) (97.70330625 -0.8437359612 0) (97.72513137 -0.8753348619 0) (97.71783736 -0.8637403768 0) (97.36005344 -0.8559635295 0) (96.66541238 -0.81983423 0) (96.67336274 -0.8292150175 0) (97.00621595 -0.8375026254 0) (96.05150228 -0.8113665857 0) (96.3550247 -0.8205205058 0) (96.34667346 -0.8111975576 0) (96.37193444 -0.8422147654 0) (96.36344074 -0.8308549818 0) (96.06037402 -0.8216180087 0) (95.47887578 -0.7824593586 0) (95.48865029 -0.7915348727 0) (95.76277212 -0.8017150127 0) (94.9832919 -0.7694776463 0) (95.22890501 -0.7807983047 0) (95.21860064 -0.7718301274 0) (95.24986847 -0.801612249 0) (95.23932217 -0.7907214057 0) (94.994278 -0.7792645957 0) (94.52144028 -0.736391704 0) (94.5335047 -0.7449624544 0) (94.75156717 -0.7575430065 0) (94.13742975 -0.7176847171 0) (94.32887714 -0.7316962773 0) (94.3161591 -0.723288571 0) (94.35481783 -0.7511857155 0) (94.34175668 -0.7409978739 0) (94.15101366 -0.7268243611 0) (106.2598115 -0.6909719503 0) (106.2478153 -0.6950902726 0) (106.3410877 -0.6818158165 0) (106.0333057 -0.7190461407 0) (106.1453766 -0.7074762415 0) (106.1565849 -0.7032599311 0) (106.1226566 -0.7184875159 0) (106.1340762 -0.7125491788 0) (106.022752 -0.7242305407 0) (105.7872631 -0.7354383502 0) (105.7781788 -0.7399190476 0) (105.9111192 -0.7298483153 0) (105.4753173 -0.7578747339 0) (105.633474 -0.7492695747 0) (105.6418714 -0.74470571 0) (105.6164247 -0.7611790204 0) (105.624999 -0.7547582154 0) (105.4675778 -0.7634588703 0) (105.1111849 -0.7677110088 0) (105.1053175 -0.7725026484 0) (105.3008616 -0.7656617106 0) (104.6131036 -0.7825682217 0) (104.8806307 -0.7782120616 0) (104.885338 -0.7733632658 0) (104.8710529 -0.7908828958 0) (104.8758769 -0.7840494267 0) (104.6097222 -0.7884599925 0) (103.8376562 -0.7819010735 0) (103.8366362 -0.7867475964 0) (104.2790209 -0.7853780563 0) (102.282193 -0.7910655787 0) (103.2121724 -0.7874512013 0) (103.2141384 -0.7826855255 0) (103.2084341 -0.8001282684 0) (103.2102636 -0.7932642143 0) (102.2740022 -0.7968103679 0) (99.43358174 -0.8383601688 0) (99.39667965 -0.8441328583 0) (100.9072799 -0.8041862047 0) (99.22013421 -0.8817583777 0) (98.94671471 -0.880554056 0) (98.96348649 -0.8744612429 0) (98.91357812 -0.8958042817 0) (98.93013017 -0.8876530341 0) (99.22212958 -0.8884941225 4.575381531e-36) (99.26874301 -0.8595485142 0) (99.27817541 -0.8649426716 0) (99.35354801 -0.8753589953 0) (98.75469538 -0.8456981355 0) (99.05827474 -0.8550234067 0) (99.04918616 -0.8496816938 0) (99.07650691 -0.8687854539 0) (99.0673705 -0.8613888239 0) (98.7630398 -0.8520492341 0) (98.03879541 -0.8238797177 0) (98.04619271 -0.8292380691 0) (98.40885631 -0.8372165249 0) (97.32329132 -0.8137827472 0) (97.68155668 -0.8215067312 0) (97.67428012 -0.8161297404 0) (97.6960568 -0.8353008666 0) (97.68880764 -0.827895486 0) (97.33061883 -0.820176596 0) (96.63393507 -0.7923325928 0) (96.64178229 -0.7977248399 0) (96.97592703 -0.8058949733 0) (96.01667213 -0.78024467 0) (96.3219056 -0.7891923296 0) (96.31369822 -0.7838121452 0) (96.33837788 -0.8028761212 0) (96.33012469 -0.7955447934 0) (96.02530399 -0.7865638834 0) (95.44052008 -0.7556677119 0) (95.45002932 -0.760957732 0) (95.72610126 -0.770843372 0) (94.9404562 -0.7396237895 0) (95.1882302 -0.7505602582 0) (95.17823192 -0.745318357 0) (95.20839698 -0.7638079429 0) (95.19827763 -0.7567210903 0) (94.95102832 -0.7457121171 0) (94.47435294 -0.7109671568 0) (94.48598728 -0.7160141213 0) (94.70645467 -0.7281189454 0) (94.08465901 -0.6898403143 0) (94.27881203 -0.7032724928 0) (94.26656581 -0.6983082485 0) (94.30358703 -0.7157480765 0) (94.29114219 -0.709086225 0) (94.09764314 -0.6955598937 0) (106.3127333 -0.6824451413 0) (106.2944819 -0.683658647 0) (106.3909746 -0.6707276981 0) (106.073998 -0.7070539725 0) (106.1889739 -0.6957537427 0) (106.2059771 -0.6945755469 0) (106.1676781 -0.6999002716 0) (106.1788744 -0.6973941725 0) (106.0645815 -0.7087394452 0) (105.8271399 -0.7261320921 0) (105.8134314 -0.7273961802 0) (105.9490513 -0.7175903867 0) (105.5049867 -0.7448382242 0) (105.6660207 -0.7364847343 0) (105.6786849 -0.7351593581 0) (105.6501658 -0.7410567414 0) (105.6585475 -0.7383184248 0) (105.4982005 -0.7467177056 0) (105.1370095 -0.7575473225 0) (105.1279986 -0.7590574307 0) (105.3273064 -0.7523978884 0) (104.6261908 -0.7690169551 0) (104.898854 -0.7646599335 0) (104.9062709 -0.7631474521 0) (104.8899819 -0.7694897728 0) (104.8947376 -0.7665795177 0) (104.6232385 -0.7708914868 0) (103.8435946 -0.7728731555 0) (103.8409535 -0.7736017653 0) (104.2868311 -0.7719618139 0) (102.3129927 -0.778202472 0) (103.2200838 -0.7745899743 0) (103.2242809 -0.7746077322 0) (103.2161481 -0.7789493663 0) (103.2183739 -0.7763369188 0) (102.3065625 -0.7801756125 0) (99.58990403 -0.8251768709 0) (99.53547459 -0.8276333797 0) (100.9970069 -0.7903903516 0) (99.21420527 -0.8657415631 -5.729607923e-37) (99.01126989 -0.8634050727 0) (99.03896269 -0.8587833983 0) (98.97998637 -0.8695390474 0) (98.99767315 -0.8653021315 0) (99.21543895 -0.8675910324 0) (99.22772818 -0.8473174054 0) (99.24220479 -0.8495059331 0) (99.32318775 -0.8595515619 5.718315417e-37) (98.72233001 -0.8304328867 0) (99.02332983 -0.839718282 0) (99.00902507 -0.8378627448 0) (99.04023552 -0.8453478394 0) (99.03090404 -0.8420087691 0) (98.72941738 -0.8327342404 0) (98.00535494 -0.8120423069 0) (98.01736918 -0.8138224754 0) (98.37871168 -0.8218956814 0) (97.29461625 -0.7981603306 0) (97.65316311 -0.8059833471 0) (97.64136854 -0.804127132 0) (97.66704602 -0.8117457869 0) (97.65953482 -0.8083663867 0) (97.30108914 -0.8005803091 0) (96.59868517 -0.7799233601 0) (96.61114538 -0.7819737622 0) (96.94645009 -0.7901943759 0) (95.98306962 -0.7644879346 0) (96.28986964 -0.7734220167 0) (96.27693565 -0.771333842 0) (96.30554543 -0.779389648 0) (96.29719673 -0.7759308596 0) (95.99078102 -0.7670126029 0) (95.39821972 -0.7431911136 0) (95.41293311 -0.7453267365 0) (95.69080552 -0.7551333345 0) (94.89944978 -0.724241374 0) (95.14923158 -0.7350391431 0) (95.13382921 -0.7329018772 0) (95.1683138 -0.7409863127 0) (95.15825329 -0.7375652402 0) (94.9089557 -0.7267547979 0) (94.42282337 -0.6988289452 0) (94.4406154 -0.7009867884 0) (94.66332671 -0.7129015276 0) (94.03442042 -0.6753290787 0) (94.23107116 -0.6884737 0) (94.2123324 -0.686258981 0) (94.25442379 -0.6941832322 0) (94.24217308 -0.6909197127 0) (94.04607762 -0.6777057579 0) (141.3899162 13.89357934 1.258243997e-18) (139.7856646 13.32994196 -1.149840594e-18) (139.2279923 14.83787777 0) (140.6014041 10.45371442 1.166827726e-18) (140.23465 11.92768036 -2.359703239e-18) (141.8383366 12.326346 0) (139.9609225 -7.495047541 -1.150790224e-18) (138.8483326 -6.998277335 3.498922945e-20) (139.258503 -6.016639823 0) (137.8796635 -8.936056014 -3.188471573e-20) (138.37717 -8.046264108 -1.1381526e-18) (139.4551218 -8.526139739 1.133887219e-18) (142.6364126 7.7992458 0) (141.0831685 7.621342033 1.207429851e-18) (140.8775557 9.050117102 -1.199409998e-18) (141.2839282 4.880250426 -1.21165685e-18) (141.2089311 6.244309492 -1.185140708e-18) (142.734105 6.322392654 1.284743813e-18) (89.39060624 -6.938447 -1.703611951e-21) (89.50519065 -6.829898218 3.074179854e-19) (89.61045064 -6.885204398 0) (89.2877416 -6.70406638 3.826706166e-22) (89.39800254 -6.759663638 0) (89.28340894 -6.876311123 3.143162836e-19) (129.7009602 -19.0414251 0) (129.1835688 -18.30239548 1.841004365e-20) (129.8332968 -17.91897585 -8.526531491e-19) (137.7589696 -11.33121576 2.200290019e-18) (136.7996941 -10.70515141 -1.071601515e-18) (137.3481252 -9.904976967 -2.146765923e-18) (135.6281135 -12.32310877 1.048322436e-18) (136.2190039 -11.60049633 1.062457575e-18) (137.145628 -12.19530581 1.071265624e-18) (90.88711699 -8.048726761 0) (91.02214694 -7.953275232 0) (91.11740421 -8.027125534 0) (90.83528191 -7.793742942 -5.816814644e-19) (90.9285754 -7.865721403 0) (90.79447823 -7.965346532 0) (92.59260184 -9.460259843 0) (92.74220812 -9.331761598 0) (92.86750208 -9.419139036 0) (92.49769392 -9.156522684 2.353991467e-21) (92.61897368 -9.244024303 0) (92.47048559 -9.370735249 0) (92.86599625 -8.983583918 2.445707405e-19) (92.74907186 -9.114717091 0) (92.62752494 -9.031336573 2.517285557e-19) (111.8941496 -23.14914448 -8.523475665e-19) (110.7463351 -22.95679549 3.724730513e-19) (110.7522373 -21.80543356 -3.742950216e-19) (110.5505616 -25.50050872 4.088148075e-19) (110.695956 -24.19007246 0) (111.9145327 -24.42515457 -4.500191519e-19) (108.3716882 -23.51296667 -6.37344642e-19) (109.5132076 -23.88607872 0) (109.3007424 -25.15791861 6.938170976e-19) (94.86205725 -10.94662724 -2.182893783e-19) (95.07638213 -10.74816453 2.12666665e-19) (95.2762511 -10.83003464 2.068468753e-19) (94.76579692 -10.56652477 -3.247367481e-18) (94.89504174 -10.66039262 -4.245870576e-19) (94.6902196 -10.84396967 -2.216418691e-19) (95.15866712 -10.28271704 0) (95.04633929 -10.47212076 2.032566406e-19) (94.90720732 -10.3854321 0) (94.9098722 -23.28696609 -4.715534292e-19) (94.57591977 -22.46032532 6.401582863e-20) (95.83189737 -22.28017006 -5.795141443e-20) (90.82956913 -22.43421265 0) (92.99769815 -22.61848348 0) (93.50487203 -23.44098421 1.000568019e-19) (92.72567403 -20.61751047 0) (92.64524547 -21.64457954 0) (90.47379102 -21.32749187 0) (99.95282846 -31.20727272 3.32137342e-19) (101.3595864 -31.0435638 -2.415119424e-19) (101.6033093 -31.23234307 -1.769765408e-19) (100.8224926 -30.61145964 2.93392982e-19) (101.0864274 -30.89304832 7.96951262e-20) (99.84576312 -31.06122284 0) (96.79398954 -22.16085777 0) (97.51041909 -21.93705946 -1.277012895e-20) (97.84653296 -22.6401926 0) (102.2855791 -20.75296128 0) (102.8997414 -20.02281774 -4.233318934e-19) (103.6114488 -20.7245948 3.079684031e-19) (101.6584487 -18.58443236 0) (102.2247513 -19.37958606 1.273883659e-19) (101.6150662 -19.94671296 -8.682215672e-20) (105.846145 -23.6667815 4.856209229e-19) (106.2601406 -22.57430746 -1.227850514e-18) (107.2843688 -23.07373313 -1.708640537e-20) (104.4198148 -21.39215342 -3.632233743e-19) (105.3050968 -22.00705138 2.337632064e-19) (104.8313527 -23.01626808 0) (75.82813846 10.97353242 -1.194661292e-18) (78.62825899 8.262851735 -4.592300782e-19) (77.66925876 6.045109686 1.481907337e-19) (81.75497368 11.4755505 4.916701149e-19) (80.06612981 10.11600226 1.472054947e-19) (78.15231203 12.05301993 -7.144383904e-20) (83.18126657 7.502350836 2.64261526e-19) (81.8037924 8.710604167 0) (83.10565226 9.928007343 0) (86.79262855 16.93021262 0) (87.41279381 19.1413158 0) (89.28756121 18.23788233 2.687363329e-19) (82.19700905 20.61978807 0) (85.10864255 19.98064904 0) (84.71636445 17.31778721 0) (88.29191054 25.68994814 0) (86.20731277 22.89434291 0) (83.07398016 24.40341552 0) (103.0772336 25.34643647 -3.292014869e-19) (105.1526144 24.25570659 0) (104.0990661 22.61990925 3.988966688e-20) (108.3362806 27.88859369 -4.415874599e-19) (106.502447 26.0215138 0) (104.3074105 27.54257918 0) (109.340594 22.64294832 0) (108.055701 24.28866395 0) (109.9229714 25.73688193 0) (127.9141085 9.136420385 9.554272853e-19) (129.8385065 9.991887104 6.956661582e-20) (130.6370385 8.238368031 -1.022657696e-18) (127.6253865 13.29551065 0) (128.8355921 11.7193765 1.924500209e-18) (127.00827 10.55732062 -4.820262139e-20) (133.2399421 14.24750342 2.285040074e-18) (130.9026828 12.91318822 -9.931860775e-19) (129.5544848 14.73141923 -1.984670736e-18) (87.5274319 -4.171154799 1.332774661e-18) (87.8268938 -4.426436349 -1.032637561e-21) (87.46522835 -4.744480241 -7.604715518e-22) (88.74552658 -4.607042103 8.33053669e-19) (88.49059759 -4.380890437 4.324432425e-19) (88.88752153 -4.131124208 0) (86.42854901 -3.959568479 -4.762412093e-19) (86.87954419 -3.58233857 4.670952117e-19) (87.21183089 -3.89135941 -9.005737808e-19) (129.3713283 -3.571195842 -9.987326418e-19) (131.1665753 -3.975320451 -4.665154152e-20) (130.679291 -5.475616742 2.062564041e-18) (131.7876565 -0.7162066543 -2.062825737e-18) (131.5429688 -2.361396718 -2.105012107e-18) (129.6787176 -2.056708517 -9.547392599e-19) (135.7470954 -3.240282832 1.166852984e-18) (133.564692 -2.758861541 1.071551177e-18) (133.8881968 -0.9466504298 1.152689806e-18) (89.60154547 -5.803289702 3.89553393e-19) (89.81966149 -5.962098392 0) (89.54785552 -6.189917819 -4.261386686e-21) (90.41586749 -5.519315379 -3.727534808e-19) (90.11081139 -5.739612831 0) (89.90003981 -5.576929159 3.857746273e-19) (90.51397914 -6.056101311 0) (90.31483574 -5.903917245 0) (90.61275697 -5.704175851 3.720844143e-19) (89.57585249 -4.780355373 0) (89.2294149 -5.025667348 -3.997583021e-19) (88.99122312 -4.827126343 -4.124417278e-19) (89.68347491 -5.399395513 3.927135619e-19) (89.4596644 -5.22143847 8.936958566e-22) (89.79265738 -4.999275721 -5.658814401e-21) (88.84530913 -5.71871282 0) (89.14128023 -5.463866418 3.978775624e-19) (89.37529446 -5.637395273 -3.906562398e-19) (88.44215826 -6.435885205 6.501776436e-19) (88.56716526 -6.305712095 -3.261733734e-19) (88.69549718 -6.368106601 0) (88.30449049 -6.155473723 6.701206688e-19) (88.43736681 -6.222946901 -6.640343986e-19) (88.31022421 -6.36314085 3.278917142e-19) (124.0679153 -12.7091803 8.164155953e-19) (125.1656501 -13.62603191 -2.951584802e-20) (124.2059444 -14.42926695 -1.641308905e-18) (126.9974416 -11.75053942 8.800812107e-19) (126.0951691 -12.72115972 8.503264248e-19) (124.9217227 -11.74864118 -8.164234873e-19) (128.6319063 -14.88539004 -9.607342463e-19) (127.3388524 -13.74300824 9.189309449e-19) (128.338509 -12.72233441 7.47055104e-20) (91.18084035 -6.993286233 3.421481927e-19) (91.36426905 -7.140703361 -6.783912761e-19) (91.11480552 -7.335108781 3.410353373e-19) (91.91498007 -6.747785064 3.360093824e-19) (91.63343451 -6.946133217 3.553777738e-21) (91.45030639 -6.802857176 -3.425116765e-19) (92.00338731 -7.241015615 -3.287189374e-19) (91.81690232 -7.096726218 6.615445591e-19) (92.09709233 -6.911426866 3.268912118e-19) (91.18394828 -6.155673202 3.527044411e-19) (90.89757955 -6.357930041 0) (90.70747515 -6.211935302 0) (91.26799676 -6.652758635 -3.512208666e-19) (91.08357008 -6.509337035 3.478773717e-19) (91.36740857 -6.324200386 3.459500294e-19) (90.55831665 -6.899943023 0) (90.81213227 -6.70217236 0) (90.99713813 -6.847073162 3.467521914e-19) (90.16598559 -7.440668767 0) (90.28841296 -7.348128076 0) (90.37982281 -7.411510339 5.911222288e-19) (90.10315945 -7.212454988 3.009098153e-19) (90.19664028 -7.272653348 0) (90.07567848 -7.371422947 0) (89.57232527 -7.745494302 -2.538668881e-19) (89.60784655 -7.772712162 5.175921472e-22) (89.49314163 -7.807801689 -2.572964935e-19) (129.5691039 -25.28170817 0) (129.5409519 -24.84477877 0) (129.931353 -24.71989734 7.036311479e-19) (128.7548423 -25.17058506 0) (129.1420749 -25.05566334 0) (129.1783534 -25.45110784 0) (92.7475158 -8.206628025 -6.085121657e-19) (92.96937011 -8.359257209 9.051936235e-22) (92.73768442 -8.597620996 6.057525015e-19) (93.48379014 -7.892306462 0) (93.22134691 -8.123708518 0) (93.00429967 -7.978962284 0) (93.67947058 -8.404246448 -2.848213473e-19) (93.44626331 -8.265403087 0) (93.70256776 -8.02711097 0) (92.66295339 -7.323913699 -3.13336297e-19) (92.38537482 -7.535949315 0) (92.1921809 -7.392563088 3.232033546e-19) (92.79276852 -7.830712056 0) (92.58552859 -7.681450971 3.135645618e-19) (92.86651275 -7.465434504 0) (92.08503854 -8.114004785 3.168438778e-19) (92.32390839 -7.898115128 -3.135563251e-19) (92.53255162 -8.052009213 3.120738459e-19) (91.67433106 -8.731249502 -5.613574134e-19) (91.82204449 -8.619438817 1.999271573e-21) (91.93023628 -8.709758994 -2.678621657e-19) (91.60996833 -8.454275916 -5.565881081e-19) (91.71305759 -8.530190996 1.68185027e-21) (91.56904523 -8.642676783 2.81529327e-19) (90.80355585 -9.08622811 -2.503867533e-19) (90.84274778 -9.130494977 3.716865006e-19) (90.6223143 -9.171990152 0) (91.10893812 -9.193839575 -1.163023656e-19) (91.06714344 -9.143105491 0) (91.20847174 -9.103528362 0) (90.23726884 -8.672589393 0) (90.40735628 -8.632741612 2.511966041e-19) (90.45060366 -8.669913531 0) (114.7940971 -27.91300925 0) (114.0768111 -27.84745601 4.526264228e-19) (114.1518666 -27.10620957 -4.364505788e-19) (113.7530285 -29.35285921 -4.694764147e-19) (113.9361082 -28.59665178 0) (114.6615522 -28.64298223 4.819762445e-19) (112.4984869 -28.43901248 -3.956093228e-19) (113.216401 -28.52698508 -4.177628982e-19) (113.0131522 -29.27546788 -4.250272226e-19) (94.78901055 -9.323330126 -2.493845896e-19) (95.09573659 -9.452424638 2.375855929e-19) (94.92400433 -9.798434487 3.76550291e-21) (95.47861363 -8.825122131 -2.054530934e-18) (95.28201273 -9.131135884 9.20010034e-19) (94.98841046 -9.01555726 -2.464404005e-19) (95.85924444 -9.354502605 -4.489392418e-19) (95.56211097 -9.268163066 -3.771126916e-18) (95.74317287 -8.949583324 2.109801017e-18) (94.40925084 -8.404271187 2.654585538e-19) (94.17219207 -8.669322266 2.669347085e-19) (93.92130513 -8.539224385 2.786133051e-19) (94.70404494 -8.91011469 5.149095356e-19) (94.43315948 -8.793300442 -2.648858182e-19) (94.66218793 -8.518277355 -5.205363172e-19) (94.00763173 -9.374289886 2.72157529e-19) (94.21347331 -9.078615574 2.690646425e-19) (94.49381232 -9.206727036 5.17463917e-19) (93.67256619 -10.18586028 3.640797626e-21) (93.83179499 -10.02853575 -2.328167401e-19) (93.98585924 -10.11170886 2.761172091e-21) (93.53740693 -9.857019697 -4.814053701e-19) (93.68226476 -9.943145984 2.395865048e-19) (93.52329723 -10.09598939 -2.451594925e-19) (93.92586577 -9.632055779 2.24111468e-19) (93.8141442 -9.787764147 2.312098403e-19) (93.66949502 -9.708066945 -2.307248966e-19) (95.38060755 -11.72216615 0) (94.98554729 -11.27971253 0) (81.82933629 -9.038523414 0) (97.96255362 -10.45333158 1.673325922e-19) (98.0299687 -10.87729433 4.231814138e-21) (97.65036506 -11.04503281 7.073264323e-21) (94.70958744 -14.70438701 2.579788601e-20) (95.18892454 -13.93565025 1.208774841e-19) (96.39050306 -14.39241872 0) (78.64073842 -11.50115443 1.401171778e-19) (92.45071882 -13.59180685 -1.622392888e-20) (91.4423516 -14.14437271 -2.04402874e-20) (91.66863639 -18.61508614 0) (93.26364984 -18.93698239 0) (93.00949023 -19.73823405 0) (78.75488753 -7.25025784 0) (78.87347815 -6.720649416 0) (79.38672619 -6.758160038 0) (77.79047879 -6.516582189 -5.03685833e-19) (78.33948513 -6.568057918 0) (78.18732637 -7.170216513 0) (83.20632656 -7.028903652 -1.66327935e-19) (83.23357291 -6.804993488 -1.024260411e-22) (83.44173619 -6.74517853 1.652202993e-19) (82.73978228 -6.873316958 0) (82.99891797 -6.826201733 0) (82.99026079 -7.090288605 0) (138.4765809 20.10789259 1.180747625e-18) (136.9356355 19.03010956 0) (135.9243391 20.48587766 0) (138.577511 16.21726654 -3.872935849e-20) (137.8064919 17.72026244 -1.134789218e-18) (139.3845928 18.55084087 1.185930009e-18) (150.4994071 13.44201362 -2.333689381e-18) (149.3277887 13.28944805 -1.149959793e-18) (149.1658279 14.28261041 0) (86.62150116 -6.117741329 -3.790408246e-19) (86.76453037 -6.187349325 3.748026974e-19) (86.5937267 -6.332622858 9.67357873e-20) (87.05373142 -5.884450906 0) (86.91605149 -6.035405096 -3.630192394e-19) (86.76998669 -5.96273738 0) (87.20255025 -6.190222932 -3.596250262e-19) (87.05998934 -6.111575099 3.636550953e-19) (87.19868519 -5.962958079 0) (86.42416636 -5.587134227 7.618525443e-19) (86.29682567 -5.768390574 -1.153474203e-21) (86.12234436 -5.715506514 3.79994714e-19) (86.6198791 -5.893751522 0) (86.46255488 -5.828465598 -2.243855305e-21) (86.59972531 -5.661195291 -2.233470224e-21) (86.16812792 -6.157338759 0) (86.32064458 -5.994892056 0) (86.4743838 -6.053334183 0) (85.56729968 -6.459606227 -3.343885243e-19) (85.67364486 -6.392386125 0) (85.74708849 -6.396124601 1.600910366e-19) (85.52007344 -6.377903674 -6.433940068e-19) (85.59796104 -6.377313813 0) (85.49397654 -6.452151051 -3.343826779e-19) (86.23227542 -6.769107376 0) (86.40595298 -6.706492015 3.015217514e-19) (86.46902576 -6.754208784 6.056042808e-19) (86.28698001 -6.619991205 3.002257649e-19) (86.34557001 -6.661433166 0) (86.17667879 -6.721707758 0) (86.60379803 -6.527336875 2.866598888e-19) (86.48386925 -6.596440266 0) (86.42144144 -6.557115375 0) (83.92366805 -6.796173314 -3.260057882e-19) (83.97386836 -6.627559816 0) (84.12998663 -6.573833078 -3.222551902e-19) (83.63085412 -6.7156615 3.265609574e-19) (83.80788908 -6.657706825 3.250750154e-19) (83.7616169 -6.847778816 -1.502365892e-21) (85.26332673 -6.453143681 6.622829534e-19) (85.35717549 -6.374354784 6.422127667e-19) (85.44038649 -6.367435701 -6.822144734e-22) (85.18010819 -6.38273644 6.405382794e-19) (85.27076685 -6.369538909 -9.618252112e-19) (85.17987031 -6.45966761 6.608912858e-19) (141.6248104 -2.981046731 0) (140.3338758 -2.639872846 1.174078224e-18) (140.611779 -1.467673221 0) (139.6278138 -4.885286353 -1.181425338e-18) (140.0034046 -3.778783502 -1.176837198e-18) (141.261789 -4.166140444 1.235855118e-18) (147.0401497 -5.007751147 5.22577728e-19) (147.3292826 -4.313044272 0) (147.9575994 -4.615304413 7.719068066e-21) (145.8721682 -3.812120732 0) (146.6702878 -4.031115129 0) (146.3589982 -4.675032225 1.582218533e-18) (147.1506009 -2.64876614 -2.101867267e-18) (146.9230903 -3.337609198 0) (146.0627158 -3.101849804 0) (144.2170137 -11.62998827 1.048535304e-18) (143.7894157 -11.22427981 0) (144.1493112 -10.69621885 1.023608011e-18) (149.6408494 7.624413978 0) (149.6572589 8.527005466 0) (150.6918684 8.511495945 1.176355033e-18) (146.6094564 -1.046461292 2.16188283e-20) (147.5535308 -1.228278804 1.3263204e-20) (147.3598026 -1.930434433 0) (147.8378655 0.2652375682 -1.100630905e-18) (147.735033 -0.4935425808 -1.078205999e-18) (146.7393898 -0.310247486 0) (149.2029344 -0.8785809542 -1.056780066e-18) (148.463911 -0.6382078439 3.164839869e-18) (148.6530267 0.1215932727 -3.242659083e-18) (142.5791175 2.153792935 2.724281508e-20) (141.1080133 2.297011698 1.201499285e-18) (141.2277307 3.582578903 1.204353329e-18) (140.8255117 -0.2525230581 0) (140.979973 1.002433135 -1.176455296e-18) (142.4146522 0.8004891185 1.242944937e-18) (88.94293834 -6.695027875 -3.185722494e-19) (89.05979793 -6.576461711 -1.768428378e-21) (89.17534949 -6.632733432 -3.125550337e-19) (88.8200672 -6.445289174 -6.405210988e-19) (88.9420059 -6.503575986 6.366651277e-19) (88.82273222 -6.630644301 -3.189674785e-19) (86.90319637 -6.868524377 -1.201426246e-21) (86.82685512 -6.825070392 2.923501105e-19) (86.95093855 -6.749792805 2.863571463e-19) (86.50420645 -6.981889256 -3.188771054e-19) (86.681987 -6.902751395 -3.048055323e-19) (86.75993571 -6.948872616 3.068203718e-19) (86.53576333 -6.803989247 -3.047686734e-19) (86.60684073 -6.853968608 -3.042325403e-19) (86.42710634 -6.929920539 6.336496812e-19) (131.1583164 -24.55029988 1.871070184e-19) (131.1253098 -24.12771178 7.414474728e-19) (131.5088089 -23.98916093 -1.476854695e-18) (130.3329331 -24.49722324 2.783211045e-21) (130.7250654 -24.36123268 0) (130.7674611 -24.75041585 -1.479193711e-18) (132.4518024 -17.0484209 -2.037733749e-20) (131.8091018 -16.3068159 -1.846596389e-20) (132.456348 -15.80608896 -9.240424621e-19) (130.4963648 -17.36180165 0) (131.1467372 -16.92364945 0) (131.7649285 -17.60093664 -9.268067269e-19) (129.5172395 -20.20526991 1.56968978e-21) (130.0513469 -20.97816751 2.597662846e-18) (129.3096039 -21.37802498 -1.868274338e-20) (131.5471857 -20.10971322 -9.230405343e-19) (130.7963274 -20.55695807 -1.782566081e-18) (130.2341413 -19.78399649 1.9078889e-20) (131.7454974 -22.20244781 -2.327616125e-19) (131.3431466 -21.36883524 8.992203722e-19) (132.1241846 -20.93100318 0) (141.4715234 -14.33818376 0) (141.8693371 -13.90155164 -1.897572511e-18) (142.23495 -14.31782505 1.89735417e-18) (137.4442809 -18.88372215 -8.564378794e-19) (137.3076096 -18.38154615 8.383845541e-19) (137.6915744 -18.11603596 0) (135.1891452 -14.50863966 1.031315363e-18) (134.3910526 -13.79708237 0) (135.0105122 -13.15022222 0) (133.1122235 -15.1232024 9.67035158e-19) (133.7497616 -14.55153423 -9.674829632e-19) (134.5148069 -15.21084032 0) (90.15495122 -8.368243214 1.255532509e-19) (90.19405766 -8.409469768 -5.009876865e-19) (90.02936167 -8.451643981 -2.518938521e-19) (89.64944336 -7.986273556 0) (89.77948265 -7.953755911 0) (89.81534123 -7.990386238 2.555836417e-19) (90.52201768 -7.731121215 0) (90.65165203 -7.63903134 0) (90.7433874 -7.708700815 -1.901257866e-21) (90.47027113 -7.490253343 -5.899588075e-19) (90.56107329 -7.556973494 0) (90.43290736 -7.653545525 0) (91.35387432 -9.24143662 2.392600491e-23) (91.20172443 -9.292800083 -2.317813473e-19) (91.15503425 -9.244067854 2.324737129e-19) (91.30090539 -9.395516377 0) (91.25040905 -9.344998645 0) (91.40499522 -9.296372973 2.290505538e-19) (90.79818019 -9.43412753 -2.476810463e-19) (91.05897186 -9.391887325 0) (91.10637025 -9.44506983 7.257510528e-19) (92.50821195 -8.943373591 -2.538217038e-19) (92.39101697 -8.859571297 -2.559785897e-19) (92.50968979 -8.741724317 2.503519441e-19) (92.11462137 -9.099706158 1.101427248e-22) (92.26174847 -8.979825659 2.628296473e-19) (92.37850368 -9.068148213 2.314173058e-22) (92.03784666 -8.800989784 0) (92.14801648 -8.890563705 -2.667327213e-19) (92.00100476 -9.008114255 1.321320858e-22) (107.9904246 -28.11913341 5.768837312e-19) (108.3048746 -27.37004056 1.183559115e-20) (108.9732601 -27.6952332 -2.953539978e-19) (106.9840914 -26.81481584 -7.426838569e-19) (107.6294507 -27.17626525 0) (107.3188155 -27.86420858 6.602669293e-19) (110.8226955 -28.92204011 1.103470821e-18) (111.0772115 -28.18775673 -7.357728048e-19) (111.7873866 -28.3222532 7.744264599e-19) (109.677879 -27.83367898 6.744700045e-19) (110.3723076 -28.01968539 -3.373464226e-19) (110.1023389 -28.75524913 -3.599896145e-19) (110.6986799 -26.63944767 -3.386546886e-19) (110.5796506 -27.29742582 0) (109.8907646 -27.15027103 0) (90.71707524 -11.48841246 -4.332856065e-19) (91.32877 -11.29006252 -3.442883109e-19) (77.39607951 -9.558908047 0) (93.64609454 -11.67020576 0) (93.14943336 -11.93321448 2.2195635e-19) (92.86295594 -11.57160475 0) (94.76909993 -10.2544688 1.351425464e-18) (94.59853439 -10.17098406 4.48930366e-19) (94.69938486 -10.01243155 -1.285340611e-20) (94.3191333 -10.5166478 -2.003846803e-19) (94.47381144 -10.34386928 -5.464861512e-20) (94.64413134 -10.43494289 -1.582106885e-18) (94.14447266 -10.19241852 0) (94.30712142 -10.26907849 2.241460215e-19) (94.15156853 -10.44050427 4.669247896e-19) (53.80851819 -15.14984161 2.220787331e-19) (56.4618144 -15.03286999 0) (67.02638692 -16.85771071 0) (44.37486079 -5.32054487 0) (40.01737681 -10.86560488 -7.216447655e-19) (34.45139833 -10.23081437 2.44432927e-19) (84.71966879 -0.5736815311 -1.866628751e-20) (85.04954805 -1.265265315 0) (84.22096756 -1.664782911 0) (83.10415858 0.9546910402 0) (84.28920781 1.110349506 0) (84.45685761 0.2192204151 0) (76.59807503 -0.8838178249 0) (77.25313968 -1.865068652 -6.331233512e-19) (76.2167718 -2.674611121 6.369056276e-19) (79.16042381 -0.7150988977 0) (78.14385381 -1.230969824 0) (77.61318464 -0.3643271227 0) (79.35122303 -2.635032042 0) (78.72890718 -1.999721058 0) (79.62393191 -1.467872055 0) (77.12845884 0.6553076695 0) (76.80562716 1.815593788 0) (78.18277262 1.929563671 0) (73.87679654 1.120967559 6.748415102e-19) (75.48669058 1.546745582 -6.674207975e-19) (76.0026596 0.2701904752 0) (85.15316439 -5.752905024 0) (85.39548363 -5.787970763 -4.014112596e-19) (85.27610137 -6.016682919 0) (85.60739791 -5.284013409 0) (85.49774717 -5.53438611 4.073640182e-19) (85.24826373 -5.472946381 -8.24962909e-19) (85.93242726 -5.655006385 3.897630908e-19) (85.72486176 -5.600532108 -3.932181479e-19) (85.83469378 -5.381514828 0) (84.5093165 -4.901691754 0) (84.35610162 -5.242926789 -4.450247056e-19) (84.00514896 -5.154505551 4.561523784e-19) (84.97539143 -5.399435042 4.241238849e-19) (84.67850137 -5.329621329 0) (84.81368285 -5.035319769 0) (84.51093878 -6.00643306 4.312321593e-19) (84.57786922 -5.664423794 -4.34150644e-19) (84.8812589 -5.712362952 -4.222845731e-19) (119.410648 -20.04557783 6.741397347e-19) (118.8136832 -18.86299795 6.224748621e-19) (119.8831885 -18.48250744 1.994395284e-20) (114.8790192 -31.15153269 0) (115.243871 -30.80728895 0) (115.593435 -30.85874737 -4.383194475e-19) (114.510907 -30.79356701 -8.133809457e-19) (114.8723025 -30.85207455 -1.518738358e-21) (114.5578662 -31.16821177 0) (101.8824997 -25.34975446 2.31259938e-19) (101.3007654 -25.88018026 1.925977388e-19) (100.7727436 -25.37081059 -7.948331175e-20) (102.4477201 -26.91285991 3.334709014e-19) (101.8517152 -26.4057605 -6.481073677e-20) (102.4580135 -25.77253509 0) (100.351047 -27.5741476 4.516979281e-20) (101.157076 -26.98307372 6.049060988e-20) (101.7643505 -27.51026871 -3.325349505e-19) (105.3656507 -26.92523451 -4.281967094e-19) (105.7190932 -26.16199817 4.283637049e-19) (106.3352617 -26.58513908 -2.19675867e-19) (82.00315632 -5.111806297 0) (82.536035 -5.267678975 0) (82.38186189 -5.818346325 0) (83.03921551 -4.270444429 -4.948529666e-19) (82.75639202 -4.748560325 4.878017973e-19) (82.26803711 -4.554854114 0) (83.62331627 -5.040084824 1.907801566e-21) (83.20722719 -4.913781549 -4.830932005e-19) (83.44226042 -4.501947935 -4.872033518e-22) (81.16227716 -3.040350704 0) (80.59372551 -3.631475207 0) (79.98053379 -3.186839666 0) (81.74260581 -4.305051081 0) (81.18326801 -4.008506433 0) (81.66000481 -3.476287565 0) (80.45893028 -5.35059998 -5.5001194e-19) (80.79810029 -4.645683875 5.352206616e-19) (81.42296541 -4.909414786 -5.317209242e-19) (133.6496804 34.29632867 2.081098032e-18) (131.1032271 35.49178834 -5.011382953e-18) (132.3361905 38.4309579 5.140906436e-19) (129.1067014 30.77603571 9.086177071e-19) (130.0444133 32.96822786 -4.98002233e-19) (132.3022514 31.92887996 2.039648531e-18) (125.2341141 34.34958407 0) (127.6595723 33.82124692 4.337605103e-19) (127.0134342 31.25210424 -4.362823115e-19) (133.4879794 25.64705189 1.997799966e-18) (132.184968 23.97947569 9.569489095e-19) (130.7617201 25.29804238 -9.557489404e-19) (134.8038784 21.6579675 -1.029240397e-18) (133.532694 22.9874507 2.028718318e-18) (134.9052681 24.39190973 0) (121.0255116 -25.19694956 6.141705709e-19) (121.7216802 -25.1369298 0) (121.9201345 -25.82946354 6.526588524e-19) (122.8673216 -23.95537938 0) (122.1433624 -24.1591003 -6.491949292e-19) (121.9378294 -23.35404606 1.290601652e-18) (119.7616799 -26.17345783 0) (119.6078765 -25.43248462 5.952341681e-19) (120.3058629 -25.39978358 -1.197887007e-18) (126.7953033 -23.51404238 -7.726996815e-19) (127.5401545 -23.21186526 -7.932561643e-19) (127.8671315 -24.00858377 0) (126.7089941 -21.72942024 7.66360677e-19) (127.1338522 -22.43777166 1.570401221e-18) (126.4083271 -22.73557758 -3.45816466e-21) (128.5809962 -21.76396451 -8.16492415e-19) (127.8523403 -22.1038279 8.15948691e-19) (127.4199282 -21.32589892 1.596716732e-18) (123.943229 -22.83985284 0) (124.2747815 -23.53497175 7.156587599e-19) (123.5637114 -23.74820704 0) (125.6962539 -23.02744821 -1.493398159e-18) (124.9787615 -23.28351601 -7.16533891e-19) (124.6352651 -22.51421163 7.27598752e-19) (125.6011893 -24.82958375 0) (125.3205806 -24.05216681 7.277407124e-19) (126.0561145 -23.79184784 7.526313411e-19) (99.2685978 -30.45003855 -2.424483381e-19) (100.2300507 -30.13354982 2.408567738e-19) (100.5260632 -30.43288459 -2.627081971e-19) (99.60719429 -29.61530288 2.534852575e-19) (99.89400403 -29.9326753 -4.964086893e-19) (99.03472885 -30.21310163 3.820850804e-19) (77.27506344 24.70823624 0) (78.0138161 27.5445942 -4.203372429e-19) (80.55448942 26.50493271 0) (71.02511507 28.78465614 0) (74.89794171 28.37895487 0) (74.51546266 24.77025873 0) (78.59728642 36.52064334 2.739945378e-19) (76.03656076 32.40576592 -1.943647211e-19) (71.99586554 33.87119282 1.706456875e-18) (74.86028652 21.43097453 0) (75.39191045 18.5786782 0) (73.22860995 17.60273067 0) (63.65482185 13.38469349 0) (67.09579216 11.40692969 0) (65.9552036 8.045130854 0) (70.98096528 16.13456664 0) (68.86653214 14.08024462 0) (66.22808434 16.64742295 0) (73.1300827 10.69151454 0) (71.20901746 12.22946755 0) (72.82478942 14.07453883 0) (99.17041239 39.19477541 0) (102.0625387 38.25572248 0) (101.08486 36.28085809 0) (105.6447787 43.38829216 -9.314273253e-19) (103.5354019 40.67602674 0) (100.2782313 42.19689789 0) (108.3213582 37.7767935 0) (106.2099069 38.97714394 0) (108.2634989 41.15925004 0) (86.12123314 47.41795263 -2.970113388e-19) (87.22825476 42.67866875 3.694975702e-19) (82.4102326 40.17055601 -2.598723334e-19) (96.54776262 43.33234208 0) (92.03915707 43.55665446 -6.683632678e-20) (92.3521792 48.20636011 0) (92.71596676 36.65938359 7.57806869e-20) (92.15357294 39.74582516 -7.599797217e-20) (96.07924118 39.86945696 0) (144.0456553 41.21969382 0) (142.6172747 39.55986966 0) (141.0892278 40.95427716 2.088020871e-18) (145.2326657 36.92742665 0) (143.9594615 38.38635855 0) (145.5013889 39.73361669 0) (135.0774958 56.36637416 0) (131.6107667 57.18161769 9.651143165e-19) (132.6853792 61.16478259 1.080174559e-18) (130.8144291 51.47195607 5.501062847e-20) (131.269089 53.7254532 3.607003231e-18) (134.1256933 53.24060579 -3.828349488e-18) (139.4987255 41.98444642 -1.603303084e-18) (137.8114485 43.42923446 0) (139.0711804 45.00549229 0) (127.9978579 -25.90502192 0) (127.9747359 -25.47471144 0) (128.3591037 -25.36976184 0) (127.2285003 -25.73411423 1.292466707e-18) (127.5834818 -25.6650521 -1.287713595e-18) (127.6144075 -26.04647365 7.35471445e-21) (90.52655277 -9.019072209 0) (90.72550593 -8.98578389 2.432140667e-22) (90.76441714 -9.030713013 -2.539214727e-19) (113.509261 -31.11330393 -3.871589376e-19) (113.7749275 -30.74757065 7.71227885e-19) (114.1349344 -30.82030688 4.019017436e-19) (113.0481127 -30.67164856 7.483053458e-19) (113.3957883 -30.7688188 -7.55394974e-19) (113.1655002 -31.09857719 3.741401949e-19) (93.22064722 -10.6093574 -1.981031722e-19) (93.38378002 -10.53826704 -1.947482162e-19) (93.46067581 -10.57779241 9.589358812e-22) (93.23910495 -10.44515716 0) (93.31200497 -10.48370276 -1.96141286e-19) (93.14943226 -10.55825258 1.987909828e-19) (80.69809764 -7.344762161 0) (80.72311576 -6.928599211 0) (81.11728866 -6.908530586 0) (79.86286051 -6.862116355 0) (80.30826408 -6.867037694 0) (80.25959796 -7.342621473 4.323686344e-19) (82.18245545 -7.245443954 0) (82.15394488 -6.914563026 0) (82.4588372 -6.873932898 0) (81.48274473 -6.939154718 8.101378839e-19) (81.83136949 -6.903322289 -1.573344915e-21) (81.85336587 -7.279345957 0) (64.86638955 -2.254522418 0) (65.91670768 -3.60795635 0) (64.29036837 -4.865732889 0) (69.12294158 -4.886497052 0) (68.146513 -3.78827942 0) (69.45899447 -3.113595389 0) (60.90739933 0.8485658593 0) (63.32190568 1.260467744 0) (63.98046835 -0.4857893825 0) (85.82078802 -6.500794219 -6.315343835e-19) (85.94800054 -6.438495164 0) (86.00555567 -6.459875095 -7.536018647e-20) (85.81746576 -6.41436943 2.378870487e-19) (85.88334248 -6.421219725 -3.152145481e-19) (85.76624271 -6.487207239 -6.46613938e-19) (86.35980157 -6.518565705 0) (86.29833099 -6.485112534 0) (86.40987327 -6.420879914 5.667055178e-23) (86.01786081 -6.606961806 0) (86.17189793 -6.547502186 0) (86.22926812 -6.581974714 0) (86.05998309 -6.486259299 0) (86.11516826 -6.515607405 0) (85.96558877 -6.575833901 0) (84.47862138 -6.614824169 3.249704311e-19) (84.54202006 -6.486995736 -3.201700979e-19) (84.66368582 -6.450507782 1.789758264e-21) (84.27598942 -6.549727683 -3.219611857e-19) (84.41300076 -6.505580412 0) (84.35312968 -6.653917833 0) (84.90804586 -6.499739133 6.586668434e-19) (84.98852124 -6.402506924 -9.639682919e-19) (85.08641251 -6.382937269 -3.210671242e-19) (84.77841612 -6.437154979 6.422837472e-19) (84.88662142 -6.408937042 3.202008275e-19) (84.81046442 -6.520446554 1.581531014e-21) (146.9923423 -6.66871525 -3.29669306e-18) (146.467468 -6.354549099 0) (146.7621371 -5.726807569 -5.27644212e-19) (144.5054582 -10.07437355 8.343129721e-21) (144.8495351 -9.519340747 8.185712502e-21) (145.3138623 -9.857087268 1.078959973e-18) (150.4569562 5.76849665 1.190616119e-18) (149.5381125 5.85587621 1.164014582e-18) (149.5992759 6.721888592 0) (148.8376401 0.9044024981 2.229374495e-18) (148.9803606 1.676680235 -1.127988457e-18) (149.7346973 1.503884047 4.59236656e-18) (132.7425475 -23.79247128 7.816782907e-19) (132.7084454 -23.35523056 -7.829840782e-19) (133.1203962 -23.14400218 -8.995569025e-21) (131.899642 -23.74801202 0) (132.3012034 -23.55456671 -7.615589411e-19) (132.3314992 -23.98270866 -1.53282183e-18) (132.151315 -22.73966956 0) (132.2474427 -23.13292751 0) (131.8189207 -23.33910051 7.384105938e-19) (122.5142858 -28.60374048 0) (122.873097 -28.58219202 -5.6975083e-19) (122.7085107 -28.91930921 0) (123.723063 -27.98603533 1.742672841e-18) (123.3149282 -28.07736617 -5.799592151e-19) (123.4023066 -27.64220936 -5.709771079e-19) (121.6436251 -29.130599 5.434150671e-19) (121.772698 -28.74319316 -1.088236507e-18) (122.139678 -28.72070559 0) (107.4454386 -31.86185169 -5.772512088e-19) (108.0863653 -31.52215952 1.462144912e-19) (108.4223655 -31.66586743 -7.38393086e-19) (93.53857977 -10.80769214 0) (93.706333 -10.72562129 0) (93.79389032 -10.75861164 0) (93.5395785 -10.63373405 0) (93.6219854 -10.67225943 1.924733424e-19) (93.45279536 -10.75879225 1.96884222e-19) (93.87613918 -10.9491933 0) (94.03888793 -10.8766187 0) (94.10799742 -10.9039861 -2.62779452e-18) (93.8807233 -10.80538479 -9.445707153e-20) (93.96640566 -10.83151554 1.856112251e-19) (93.80713925 -10.92001692 -1.895368863e-19) (95.19807713 -28.78578641 0) (94.99727241 -28.47991419 9.916345158e-20) (96.16089777 -28.24378174 -5.499241184e-20) (90.48706231 -28.25015283 -2.994974427e-21) (93.28488303 -28.46373199 -4.415883924e-20) (93.25911375 -28.77854489 0) (96.6416515 -9.109375217 0) (96.52522163 -9.447799164 0) (96.18685146 -9.41251096 -2.154656309e-19) (96.70900721 -10.23057533 1.987596649e-19) (96.78431316 -9.832275893 -1.977684179e-19) (97.14391335 -9.819084202 1.887688654e-19) (95.31117469 -11.45758165 -6.593734351e-21) (95.20368155 -11.83134704 0) (94.80876878 -11.71593844 0) (95.86957703 -12.191984 2.046047801e-19) (95.42028422 -11.85857026 0) (95.62343327 -11.56067742 -2.066803806e-19) (76.66065492 -9.159801591 5.524592806e-21) (92.16261371 -12.18230725 0) (92.3321801 -11.60562958 0) (98.21152206 -23.26447016 6.617866268e-20) (98.59479018 -23.98028102 -3.801930664e-20) (97.74774645 -24.32441562 6.235727353e-20) (57.06203506 37.79765317 0) (61.66166993 37.41774823 0) (60.89042189 33.4535159 0) (65.48549975 47.94878717 0) (62.21963667 43.15228674 0) (57.7101702 44.25474542 -1.002553175e-18) (61.87434915 28.65010163 0) (62.12452519 25.71016536 -1.288861396e-18) (59.55943846 23.67171064 0) (48.12308558 18.67969972 0) (52.10194495 15.47161513 0) (50.56155861 11.25329616 0) (56.89915079 21.6365919 0) (54.31412879 19.0255717 0) (51.42412814 22.60186033 0) (59.6479958 14.1680695 0) (57.22735216 16.35274102 0) (59.3027233 18.75490815 0) (98.53490017 61.7806402 -1.417686115e-18) (96.62058945 58.9237393 0) (92.37995674 59.36478011 0) (73.47949052 62.72715903 3.578776204e-19) (75.69001282 57.15334516 -3.506713095e-19) (69.75405076 53.81929914 4.765976536e-19) (87.53912599 59.91873482 0) (81.70817509 59.28497532 -2.593016974e-19) (80.82415623 64.65472905 2.462480444e-19) (89.39010167 -7.724726904 -5.511555264e-23) (89.49804813 -7.688358401 0) (89.5358747 -7.712864752 2.530655361e-19) (90.49241026 -8.716083389 0) (90.53330304 -8.753106478 -2.52948954e-19) (90.35719736 -8.791323324 5.19992054e-19) (76.62257733 -15.32859391 1.893160132e-19) (73.22145179 -14.93044326 -1.997230488e-19) (56.2955973 -9.434769816 -5.392399502e-21) (89.38719257 -17.42392426 0) (84.42974994 -16.12710973 0) (85.47336725 -15.4242756 0) (81.40051739 -17.45543771 0) (82.97023316 -16.66621586 -1.764931357e-19) (88.7896692 -18.11374289 3.392875674e-19) (148.9813178 15.25860525 1.141585789e-18) (148.7629238 16.27538762 1.154499432e-18) (149.9894709 16.50620713 0) (140.9746057 -15.7175078 4.71088293e-19) (140.6552336 -15.25673755 1.371758338e-18) (141.0626419 -14.84898438 0) (138.1176314 -17.70748937 0) (138.5414203 -17.38101909 -8.727442137e-19) (138.8017427 -17.81527482 1.752425927e-18) (89.93150374 -8.316203747 -2.563300244e-19) (90.08155863 -8.281132372 0) (90.11811933 -8.319942003 0) (89.85224288 -8.03470471 -2.560886999e-19) (89.89053515 -8.072130874 2.556956287e-19) (89.75460417 -8.110761559 -2.628467033e-19) (119.5704812 -29.04684495 0) (119.9176543 -29.06746306 0) (119.8328157 -29.40742425 -4.97272841e-19) (94.0775749 -10.95797384 5.065378977e-18) (94.02981664 -10.98072463 1.755255248e-18) (93.77954568 -10.99656406 -1.602882694e-18) (92.67302205 -26.17153053 6.309579709e-21) (92.79496812 -26.6154449 -1.350563874e-20) (91.16158156 -26.59834662 -7.592262271e-20) (73.18715252 -21.15863018 2.634835624e-18) (80.7088358 -22.17421627 0) (82.16046672 -23.02670167 0) (78.67142353 -20.7549835 0) (78.52979991 -21.36566937 0) (71.24000102 -19.98098948 4.250348151e-19) (115.7308632 22.97119368 -1.0909145e-18) (115.8197467 20.72446827 -5.268912275e-19) (113.9950283 20.68188295 3.145308797e-20) (115.4856528 -25.68562316 0) (116.14626 -25.79895489 4.999740868e-19) (116.2271362 -26.4295565 0) (116.7582871 39.11796366 0) (117.6058286 36.48833558 -1.309707586e-18) (115.3525351 36.1941911 1.423289185e-19) (99.9888391 0.07675289125 0) (99.98361875 0.1009076886 -1.769579412e-21) (99.99858791 0.03509019051 -1.805191629e-21) (100.0342623 0.2972670513 1.875741716e-21) (100.0225765 0.24394153 3.819021464e-21) (99.9991381 0.08371102861 5.663882061e-21) (100.2075028 1.142542814 -3.042340418e-21) (100.2214347 1.056069026 -2.176165583e-20) (100.1605311 0.8812154326 1.239123121e-20) (100.6850522 1.917087254 0) (100.6594614 1.755162097 -1.290588155e-20) (100.5249171 1.598826235 3.846993631e-20) (101.4247029 2.568841563 0) (101.3554479 2.339770467 0) (101.1577178 2.226052803 0) (102.4296941 2.975371903 2.390500107e-20) (102.2853833 2.681918299 -1.637773342e-20) (102.029158 2.647633365 4.710830667e-20) (103.6744639 3.015654023 7.678952664e-20) (103.4130665 2.661844509 2.431133869e-22) (103.1185128 2.735102587 -1.061653844e-19) (104.9872569 2.49197868 5.374079137e-19) (104.5698575 2.163560737 0) (104.2880047 2.366063172 0) (106.1051813 1.344849703 1.010485767e-19) (105.5549336 1.130156338 -1.898930359e-19) (105.3436607 1.457330389 1.815216881e-19) (106.6885626 -0.279352042 0) (106.0598007 -0.3254655104 -4.200458599e-19) (105.9894138 0.07111083233 0) (106.5482925 -2.067105604 0) (105.9167081 -1.926321394 0) (106.0147868 -1.539350863 3.950406685e-19) (105.7133081 -3.670268921 0) (105.1562822 -3.374749523 8.982413653e-20) (105.3979432 -3.066198947 -9.443604731e-20) (104.3909593 -4.839387252 6.77130551e-19) (103.950284 -4.451830856 -3.232714801e-19) (104.2799706 -4.257269194 2.504936375e-19) (102.8501197 -5.475068666 -7.408979973e-20) (102.5378584 -5.078559536 -6.516455528e-20) (102.9031397 -5.000727256 -8.883724948e-20) (101.3225261 -5.659623786 -5.464749828e-20) (101.1094372 -5.276190896 5.064571253e-20) (101.4526174 -5.293825164 1.281841926e-19) (99.96757214 -5.506815732 0) (99.83508226 -5.165331045 0) (100.1366923 -5.244244619 3.253733902e-21) (98.83589587 -5.145861491 0) (98.74812447 -4.857300612 0) (99.00139579 -4.969356934 0) (97.9216149 -4.692793041 0) (97.85282207 -4.458404889 0) (98.0588172 -4.582016991 0) (97.19803212 -4.212083726 0) (97.13427502 -4.025679724 0) (97.29904498 -4.150112822 0) (96.62230942 -3.743514649 0) (96.55379372 -3.597257414 0) (96.68700857 -3.715326643 0) (96.16036741 -3.309463605 0) (96.08279997 -3.19258793 0) (96.19110187 -3.301112487 0) (95.78684974 -2.917516693 0) (95.70006294 -2.821862869 0) (95.78857895 -2.919585195 0) (95.48080055 -2.56820564 0) (95.38456811 -2.488959911 0) (95.45784946 -2.57580779 0) (95.22694597 -2.259797065 0) (95.12155223 -2.193434358 0) (95.18287761 -2.270025668 0) (95.01409956 -1.989305744 0) (94.90016317 -1.933210174 0) (94.95195257 -2.000373332 0) (94.8339753 -1.753312113 0) (94.71223907 -1.705499537 0) (94.75633302 -1.764133403 0) (94.680267 -1.548370099 0) (94.5514849 -1.507307597 0) (94.58930658 -1.558282943 0) (94.54810333 -1.371285779 0) (94.41298954 -1.335764636 0) (94.44566236 -1.379883978 0) (94.43360861 -1.219164828 0) (94.29281396 -1.188211132 0) (94.32124219 -1.226191823 0) (94.33364733 -1.089474546 0) (94.18775427 -1.062284125 0) (94.21268425 -1.094759186 0) (94.24556191 -0.9800153946 0) (94.09504685 -0.9558595821 0) (94.11716042 -0.9833948126 0) (94.16718614 -0.8890959851 0) (94.01241632 -0.8670630296 0) (94.03221488 -0.8901401538 0) (94.09687357 -0.8151413799 0) (93.93836254 -0.7945349888 0) (93.95614596 -0.8134993388 0) (94.03280568 -0.756354873 0) (93.87098149 -0.7374173234 0) (93.88734737 -0.7525183361 0) (93.97319957 -0.7119801265 0) (93.80802714 -0.6945649456 0) (93.82331195 -0.7061082902 0) (93.91688639 -0.6813278605 0) (93.74857998 -0.6650864289 0) (93.7631471 -0.6732505303 0) (93.86259077 -0.663667556 0) (93.6918969 -0.6488888129 0) (93.70610804 -0.6533493736 0) (105.4575142 21.48196936 4.193426826e-19) (106.5644313 22.86664444 0) (107.8544853 21.60325707 0) (92.05374082 -8.602759858 1.940275156e-21) (91.94567171 -8.515537415 2.666785624e-19) (92.06817752 -8.416086045 -2.626340676e-19) (98.48417685 -10.61030293 -1.417726761e-19) (98.24821723 -10.66137898 -1.54128717e-19) (98.34249859 -10.3800758 0) (96.65269478 -13.69276715 7.169431753e-20) (95.59576434 -13.29781857 0) (96.01500032 -12.53675271 0) (94.32228381 -19.87617162 8.590817285e-20) (94.4860532 -19.17738553 8.860385661e-20) (95.35214959 -19.2874683 -1.719105909e-20) (139.4714639 -1.226000972 0) (139.21951 -2.327062747 0) (137.919322 -2.075844964 0) (138.3579395 1.151213074 -2.115275022e-20) (139.798561 1.079275597 2.306186153e-18) (139.6615661 -0.06873469496 -2.108156603e-20) (108.8471552 -19.2667918 3.592198371e-19) (109.7327128 -19.6045259 1.097165047e-18) (109.7471231 -20.5107335 -1.065447024e-18) (93.87529856 18.55587542 1.809472763e-19) (92.69113673 17.68612963 -4.055042454e-21) (91.61093286 18.78825951 -1.99045397e-19) (96.32699251 21.77381189 4.393023815e-20) (96.70215987 20.04591601 -6.286363594e-20) (95.15530379 19.57590011 -1.012452965e-19) (83.74251788 5.628202061 0) (84.90220281 5.02906572 4.929722092e-19) (84.47697634 4.044289965 0) (84.47024868 10.78275704 0) (85.85453518 11.24178359 0) (86.31470447 10.12618988 0) (88.12511465 13.50306045 0) (86.71238291 13.22480298 1.019599669e-19) (86.75798939 15.03387652 2.051809253e-19) (112.3549917 20.09494682 0) (110.8371136 19.83397835 0) (110.1849902 20.96303543 0) (121.1235713 17.91838832 -6.998506338e-19) (122.9304583 17.10896731 7.967978392e-19) (121.8235957 15.2846079 -7.143130401e-19) (120.4695823 -15.44192648 6.747188129e-19) (121.2468915 -16.41869388 7.254693195e-19) (120.240035 -16.92646627 0) (123.2331271 -15.17421183 0) (122.2403074 -15.82364135 -7.309897847e-19) (121.4007949 -14.75919859 7.320201901e-19) (93.1393337 -7.275663031 6.060845543e-19) (93.40871501 -7.104031762 -2.993779523e-19) (93.6057914 -7.201769858 0) (112.5706443 -19.80750323 4.343011198e-19) (113.5621942 -19.91415513 -4.965838007e-19) (113.8353438 -20.89973765 9.703679156e-19) (94.8956474 -8.25232834 2.561732809e-19) (95.12990552 -8.017380157 5.091958864e-19) (95.3769376 -8.084923338 -2.532984416e-19) (94.66277742 -7.811728389 0) (94.89521132 -7.895096484 -5.249480669e-19) (94.65088406 -8.143329045 -2.691437298e-19) (96.64182371 -8.481741315 0) (96.93182208 -8.461963446 0) (96.77405122 -8.793524904 0) (95.79100003 -11.27119014 0) (95.95120324 -11.01622514 0) (96.21087683 -11.00757508 1.868450515e-19) (99.31604541 -17.02318449 -1.944865197e-20) (98.63489789 -17.15399468 0) (98.5733498 -16.33144852 1.385403282e-20) (87.33160275 -5.813694143 0) (87.4719187 -5.664137157 -3.564014349e-19) (87.61686935 -5.737904979 7.088231748e-19) (87.16666748 -5.494065403 0) (87.32281095 -5.567399893 -3.617517666e-19) (87.18444054 -5.730575547 3.572482712e-19) (127.927603 -19.09509328 0) (128.5334117 -18.81287067 -8.104067734e-19) (129.0197466 -19.46896433 1.443810965e-21) (104.0867771 -19.95894837 1.682139938e-19) (103.419836 -19.39027458 -2.158662207e-20) (103.7406618 -18.56764539 3.617924461e-19) (105.9814897 -20.17496759 -9.564357419e-19) (105.6859639 -21.08760004 4.713312542e-19) (104.8460208 -20.53661482 0) (74.04569681 7.996054848 0) (75.67370025 7.279689535 0) (75.26194702 5.826576603 6.397951124e-19) (88.64708763 -3.852026615 -8.519728887e-19) (88.22646007 -4.127828892 4.338799891e-19) (87.95175157 -3.863960752 -8.767707965e-19) (87.62727197 -2.581494309 0) (87.06488403 -2.882936923 0) (86.75310665 -2.487770334 9.497446866e-19) (87.66647141 -3.565152505 4.501288841e-19) (87.37032332 -3.247557553 0) (87.88730128 -2.967686202 0) (93.95882833 -7.79773686 0) (94.22042759 -7.583189661 0) (94.44091361 -7.677853221 -2.75503612e-19) (93.80093759 -7.342214782 2.883652741e-19) (94.00922844 -7.442354324 -1.17623211e-21) (93.743811 -7.669465395 -2.859080157e-19) (95.93316681 -8.643184659 0) (96.13335061 -8.37363187 0) (96.37962122 -8.416291382 -4.413706299e-19) (95.62892498 -8.191953229 -2.373029413e-19) (95.89067295 -8.252483187 1.134986483e-18) (95.68235905 -8.524795482 5.514306752e-21) (82.38957897 -8.919177418 0) (94.18838588 -10.81429887 0) (94.40768254 -10.13729577 0) (94.19638796 -12.92004692 0) (92.92995534 -13.07825509 0) (80.94475389 -11.28698714 0) (93.64172514 -17.58659053 0) (93.42223974 -18.20472884 0) (92.02963312 -17.87617036 0) (86.7135121 -5.49687852 -3.757027311e-19) (86.84045284 -5.334613311 0) (87.00629569 -5.397400499 0) (137.7101151 -3.157958917 -1.079111801e-18) (138.9098509 -3.414064695 1.125291912e-18) (138.4862152 -4.409692089 -2.010279493e-20) (139.9333282 3.52438239 1.14350664e-18) (139.9223609 2.286736295 -2.516538141e-20) (138.3834409 2.293166859 -1.834501497e-20) (86.65840193 -0.709926865 -4.714206481e-19) (85.84566395 -0.9423515834 0) (85.59656773 -0.3045141302 -5.077739738e-19) (86.43986511 -2.028334053 -4.744990295e-19) (86.13328979 -1.525332024 -4.925504116e-19) (86.87353413 -1.269086746 4.69397499e-19) (86.35784204 1.883888755 -4.784199673e-19) (85.27511084 2.036203414 0) (85.37324441 2.886915416 0) (85.41440403 0.418196617 0) (85.31457398 1.192360335 0) (86.32208016 1.179094958 0) (119.2380089 -17.37183733 6.615313999e-19) (118.2008896 -17.79496646 -6.040820231e-19) (117.7272524 -16.62174038 0) (74.56157451 15.48444581 0) (76.3943172 16.39743121 0) (77.10620666 14.87025088 0) (79.36824682 20.08283795 0) (77.41951271 19.28977061 0) (77.37314587 21.80312484 0) (97.48600205 -9.805663533 0) (97.82713133 -9.67847134 1.70218182e-19) (97.8265088 -10.09500544 -1.709837386e-19) (97.18179221 -9.461623476 -3.794834169e-19) (96.85977051 -9.46136617 0) (96.94895601 -9.147992083 0) (97.25008861 -14.679422 0) (97.7792059 -14.79204273 0) (97.75648058 -15.49639164 0) (100.2794765 -17.56163468 0) (100.7186974 -17.14932719 0) (101.1757611 -17.9142016 0) (117.1752971 17.28503252 -6.151287392e-19) (117.5002528 18.63900489 0) (119.2951881 18.47871439 0) (110.7100158 -20.69421875 4.051203397e-19) (110.6468656 -19.65053262 -1.162967012e-18) (111.5778053 -19.85975598 -8.404198975e-19) (120.7183888 32.44413091 0) (120.5149236 34.2751138 -9.57732579e-19) (122.8219893 34.54147486 0) (99.80761892 0.5828549746 3.22981121e-21) (99.81732638 0.5220048833 -1.320683e-20) (99.75771256 0.5833706027 -1.137971437e-22) (99.90516665 0.3790996439 0) (99.86658283 0.4478456182 -3.246373025e-21) (99.86586809 0.5015079709 6.36514976e-24) (100.4068931 1.414974728 0) (100.304261 1.245336632 1.246637993e-20) (100.3034243 1.345806665 0) (99.49366512 0.8444779192 -2.715478798e-23) (99.53620563 0.7531881507 6.683348798e-21) (99.44738474 0.7864687644 1.372634328e-20) (99.69079593 0.6495185062 9.954609832e-21) (99.61632213 0.6986931327 -1.69698898e-20) (99.58348881 0.7885957107 0) (100.9758338 2.068048992 1.077009491e-19) (100.8080101 1.928056781 0) (100.8438096 2.097632724 0) (99.06545196 0.9698090293 -2.065085077e-21) (99.14808655 0.8551122309 -5.633890111e-20) (99.03918368 0.8453317695 2.793512505e-20) (99.35316078 0.8251794668 1.405408934e-20) (99.25241276 0.8384760539 -1.396124083e-20) (99.18081436 0.9545609061 -5.580158196e-20) (101.7874944 2.548621382 -3.806570702e-20) (101.5602954 2.471913976 3.745285302e-20) (101.6484207 2.697937019 0) (98.57351587 0.9106770232 -7.469928111e-21) (98.70939993 0.7847489145 2.286424092e-20) (98.60004154 0.7291900113 0) (98.93068012 0.8421010355 2.919030361e-20) (98.81906746 0.8108368771 7.530641197e-21) (98.69849174 0.9440213885 -7.521273283e-21) (102.834402 2.724891138 -6.845519264e-20) (102.5537769 2.740913798 3.342053699e-20) (102.7225076 3.028528009 -8.379672703e-20) (98.09033123 0.6302685301 -1.264684682e-19) (98.28587862 0.5209977002 0) (98.18984371 0.4173144236 9.631329714e-20) (98.49211448 0.6782242331 -3.105466238e-20) (98.38684848 0.597925403 -3.127256805e-20) (98.20569494 0.7227716758 0) (103.9978626 2.478288921 0) (103.7054711 2.614687105 0) (104.0049931 2.944324098 -7.790974015e-20) (97.71599398 0.1341006685 3.416949764e-20) (97.95773049 0.06415054649 -3.409665574e-20) (97.90190201 -0.07997516331 0) (98.10298577 0.3151953215 -9.614845689e-20) (98.02438034 0.1899051477 0) (97.79273494 0.2796495205 0) (105.1064818 1.713772034 -1.818188072e-19) (104.8444801 1.9804198 8.715326298e-20) (105.2983874 2.256402598 -3.635772988e-19) (97.55367155 -0.5296327 -2.641534527e-19) (97.81447976 -0.5407113902 2.070008789e-21) (97.81329539 -0.7048985088 1.659712941e-20) (97.85982017 -0.2247404105 8.250481907e-21) (97.82988105 -0.3816660897 0) (97.5717957 -0.3512929946 -2.593271009e-19) (105.8802994 0.4419039242 4.362462325e-19) (105.733775 0.8113499153 -2.20589514e-19) (106.3112799 0.9687107005 2.501415124e-20) (97.63709609 -1.259854401 -2.603711012e-19) (97.89550025 -1.208966901 1.308144515e-19) (97.95045584 -1.370951422 1.640004309e-20) (97.8265968 -0.8725339737 0) (97.85420392 -1.038121985 -1.391476674e-19) (97.5932993 -1.074072432 2.684202124e-19) (106.0723581 -1.127114952 1.017947916e-19) (106.0860717 -0.7270837755 -3.244777328e-22) (106.7221161 -0.7332306309 0) (97.95024782 -1.964726839 2.693785747e-19) (98.189406 -1.859277926 1.26604322e-19) (98.29265053 -2.002977353 0) (98.01783268 -1.540464094 0) (98.0981174 -1.694921734 -1.270488135e-19) (97.85244097 -1.792103029 2.24682068e-21) (105.6081478 -2.68691022 1.929572822e-19) (105.7809436 -2.332000291 9.456301637e-20) (106.3996251 -2.504282779 -4.04834869e-19) (98.45190375 -2.581941312 -2.969962115e-20) (98.66000615 -2.43370323 2.385713883e-19) (98.80070743 -2.548577886 -4.787665421e-19) (98.40536038 -2.158808723 2.603812992e-19) (98.52884225 -2.289043277 -2.601954145e-19) (98.3117129 -2.435867138 -2.296668248e-19) (104.5946826 -3.967835165 0) (104.8870819 -3.714250046 -1.788936058e-19) (105.4191034 -4.014404683 0) (99.09294389 -3.07321367 0) (99.26277166 -2.895141066 -2.212282073e-19) (99.42797295 -2.976300235 2.203928536e-19) (98.94781868 -2.680054166 2.04879403e-19) (99.10331838 -2.77801744 1.786784586e-20) (98.92288147 -2.960946997 -1.407284892e-20) (103.2578158 -4.822001665 9.251130137e-20) (103.6090924 -4.686794029 -2.499164057e-21) (104.0180274 -5.053777898 -1.585962126e-19) (99.82239409 -3.420298594 5.957657794e-19) (99.94927769 -3.230472884 -1.989961694e-19) (100.1254286 -3.287470141 1.80120698e-18) (99.59580181 -3.07805546 0) (99.77272023 -3.139983863 -1.923681966e-19) (99.6336684 -3.341388115 -1.784007974e-19) (101.8078596 -5.22447132 0) (102.1677072 -5.19888763 6.100078728e-20) (102.4575055 -5.563391186 6.604662813e-20) (100.5870824 -3.624751714 4.973993944e-19) (100.6790306 -3.429122146 -5.119890153e-20) (100.865167 -3.436308827 -9.156364167e-20) (100.3064485 -3.356448961 -3.614356639e-19) (100.4929678 -3.381849273 3.758101556e-19) (100.3906435 -3.590094768 -4.652856572e-19) (100.4490181 -5.251647223 5.023320641e-20) (100.7736369 -5.303067457 0) (100.9654026 -5.650321709 -3.550942378e-21) (101.357837 -3.668049962 1.991871039e-19) (101.4136302 -3.477147849 -6.151680699e-20) (101.5930099 -3.455584561 0) (101.049506 -3.467968867 -4.37278199e-20) (101.2332837 -3.460378772 0) (101.1680915 -3.669260657 0) (99.26707032 -5.02841084 0) (99.54496063 -5.127537383 0) (99.66373018 -5.432782478 0) (102.0782314 -3.59291469 3.66694047e-20) (102.1057058 -3.416649225 -2.325740886e-21) (102.2700979 -3.372720773 0) (101.7668329 -3.458842317 3.883725668e-20) (101.9388147 -3.4253896 -1.652162239e-20) (101.9046329 -3.61997635 -1.786189197e-20) (98.27584259 -4.664748874 0) (98.50613578 -4.783677878 0) (98.58781814 -5.040308866 0) (102.7248503 -3.432030145 0) (102.735373 -3.272753226 0) (102.8821153 -3.213569988 0) (102.4291127 -3.353395373 0) (102.5849832 -3.300912165 0) (102.5706152 -3.478012255 0) (97.47430414 -4.243248231 0) (97.65765303 -4.368710618 0) (97.72476191 -4.574550153 0) (103.2914587 -3.21319731 0) (103.2931265 -3.07310788 0) (103.4212655 -3.005528556 0) (103.0234835 -3.178221659 0) (103.1609503 -3.114066307 0) (103.1574259 -3.271020046 0) (96.82868104 -3.809440647 0) (96.97669495 -3.931254043 0) (97.04188961 -4.092675104 0) (103.7786612 -2.963842073 0) (103.7774772 -2.842782025 0) (103.887354 -2.772222211 0) (103.544345 -2.960399679 0) (103.663322 -2.890760219 0) (103.6640481 -3.027228364 0) (96.3056955 -3.391166585 0) (96.42620688 -3.504697234 0) (96.49737734 -3.630329686 0) (104.1935164 -2.703265853 0) (104.1934418 -2.601143119 0) (104.2877033 -2.531348999 0) (103.9933313 -2.722441735 0) (104.0952348 -2.651913522 0) (104.096012 -2.76833207 0) (95.88191544 -3.00259693 0) (95.97961625 -3.105799801 0) (96.05979009 -3.206603712 0) (104.5456324 -2.446063085 0) (104.549618 -2.360862316 0) (104.6300922 -2.294040791 0) (104.3785402 -2.480254573 0) (104.4656685 -2.41172166 0) (104.4629645 -2.509649226 0) (95.53494257 -2.650657003 0) (95.61536066 -2.742881976 0) (95.70480482 -2.825377131 0) (104.8441195 -2.200984395 0) (104.8536227 -2.130015266 0) (104.9223157 -2.067493972 0) (104.7076459 -2.24388734 0) (104.7819807 -2.179100049 0) (104.7740298 -2.261240396 0) (95.24725303 -2.336627903 0) (95.31420885 -2.418254687 0) (95.41302579 -2.486573489 0) (105.0974661 -1.973085937 0) (105.1132655 -1.913469833 0) (105.1719803 -1.855912422 0) (104.9885343 -2.019748657 0) (105.0521345 -1.959657974 0) (105.0379666 -2.028825746 0) (95.00621256 -2.05906996 0) (95.0625082 -2.130836342 0) (95.1703148 -2.188013853 0) (105.3127016 -1.764799047 0) (105.3348743 -1.714034977 0) (105.3850566 -1.66176194 0) (105.2284264 -1.811491285 0) (105.2826611 -1.756550966 0) (105.2621075 -1.81554196 0) (94.80244883 -1.815477421 0) (94.85018998 -1.878264596 0) (94.9663265 -1.92655528 0) (105.4962243 -1.576576828 0) (105.5247087 -1.53316165 0) (105.5678036 -1.486217011 0) (105.4334097 -1.62123951 0) (105.4798875 -1.571644258 0) (105.4530163 -1.622236018 0) (94.62879671 -1.602893785 0) (94.6696027 -1.65760072 0) (94.79332224 -1.698716615 0) (105.6533612 -1.40839827 0) (105.6880067 -1.371123706 0) (105.7251582 -1.329381449 0) (105.6093908 -1.449795332 0) (105.64938 -1.405479187 0) (105.6163037 -1.449029674 0) (94.47972064 -1.418377077 0) (94.51484309 -1.465829805 0) (94.645403 -1.501100122 0) (105.7885166 -1.259745343 0) (105.8290591 -1.227598497 0) (105.861237 -1.190826896 0) (105.761073 -1.297083989 0) (105.7956266 -1.25785979 0) (105.7565814 -1.295513463 0) (94.35082787 -1.259145039 0) (94.38127678 -1.300111435 0) (94.51798117 -1.33058518 0) (105.9053938 -1.129781168 0) (105.9515038 -1.10189447 0) (105.9795475 -1.069816013 0) (105.892403 -1.162568715 0) (105.9224114 -1.128181136 0) (105.8777135 -1.160910042 0) (94.23857366 -1.122681954 0) (94.26516748 -1.157836001 0) (94.40738566 -1.184362917 0) (106.0071302 -1.01762918 0) (106.058489 -0.9931229329 0) (106.0831339 -0.9654360583 0) (106.0067514 -1.045453 0) (106.0330179 -1.015608251 0) (105.9829742 -1.044313334 0) (94.14002832 -1.006759103 0) (94.16345701 -1.036696622 0) (94.31062553 -1.059985272 0) (106.0963122 -0.9224504237 0) (106.1525798 -0.9003638047 0) (106.174353 -0.8767942544 0) (106.10701 -0.9447942454 0) (106.1301508 -0.9191931513 0) (106.0750837 -0.9448582878 0) (94.05256684 -0.9093599181 0) (94.07348449 -0.9346103992 0) (94.22514779 -0.9553795757 0) (106.1751617 -0.8432283607 0) (106.2359853 -0.8228843817 0) (106.2553992 -0.8032227676 0) (106.1954829 -0.8597529233 0) (106.2160257 -0.8381592933 0) (106.1563211 -0.861592342 0) (93.97440861 -0.8288220256 0) (93.99316715 -0.8498111282 0) (94.14893839 -0.8690185932 0) (106.2456425 -0.7787814766 0) (106.3105963 -0.7601515486 0) (106.3281326 -0.7442274504 0) (106.2742722 -0.7897103165 0) (106.292528 -0.7719354454 0) (106.2286669 -0.7935129575 0) (93.90415536 -0.7641064316 0) (93.92097734 -0.7811117443 0) (94.08037995 -0.79918407 0) (106.3099363 -0.7282771904 0) (106.3789672 -0.7114766724 0) (106.3951687 -0.6990640312 0) (106.3454722 -0.7341125761 0) (106.3623159 -0.7199766061 0) (106.2943599 -0.739514077 0) (93.83897865 -0.7142813398 0) (93.85476193 -0.7275687758 0) (94.01752485 -0.7439910196 0) (106.3694926 -0.6914540886 0) (106.4424107 -0.6760863293 0) (106.4575883 -0.6669947128 0) (106.411219 -0.6921525001 0) (106.4268693 -0.6814249435 0) (106.3549668 -0.6993233124 0) (93.77797637 -0.6781702588 0) (93.79282778 -0.6880312257 0) (93.95886953 -0.7031272913 0) (106.4257309 -0.667808172 0) (106.5024385 -0.6535439485 0) (106.5169777 -0.6475341721 0) (106.4727287 -0.6632139929 0) (106.487593 -0.6557855254 0) (106.4119316 -0.6723987184 0) (93.71973059 -0.6550420764 0) (93.73400683 -0.6617484559 0) (93.90321152 -0.6758408614 0) (106.4790715 -0.6568287293 0) (106.5602897 -0.6431963267 0) (106.583253 -0.6377436109 0) (106.530911 -0.6469011741 0) (106.5453826 -0.6431537206 0) (106.466696 -0.6581908467 0) (93.65441572 -0.6415027535 0) (93.6769901 -0.6478021497 0) (93.85020947 -0.6614160376 0) (90.79073702 17.34946928 -2.740230315e-19) (91.98364816 16.42125437 0) (91.20883436 15.55570504 0) (99.8252382 20.48921806 0) (98.26138571 20.40033837 0) (98.09807762 22.06306505 9.383847936e-21) (86.10470152 6.757637686 0) (85.45751678 5.850002537 -4.940009912e-19) (84.39701823 6.647006397 0) (77.06207515 10.05786999 1.176184789e-18) (76.28911612 8.609925757 0) (74.79374931 9.628548895 0) (87.8077824 -10.56492487 0) (83.4251744 -10.20243995 0) (69.35865816 -8.735407659 0) (87.85101441 -10.62592371 2.951529362e-18) (83.52423855 -10.22396481 -1.406633319e-22) (69.19390427 -8.714661852 -2.678333115e-18) (81.04640867 -9.444844277 1.338813477e-18) (80.36028284 -9.302840289 0) (75.76654211 -9.626959276 0) (148.8175929 59.40615993 4.385032953e-17) (162.9928331 56.64467057 -4.329385497e-17) (111.6726432 45.93207981 4.362996422e-17) (112.7724999 -25.70032914 5.378023337e-18) (100.0598252 -23.49381655 0) (74.40033564 -17.81104632 0) (80.61688665 -9.764323799 2.769470963e-18) (79.93726899 -9.631280871 0) (75.22711687 -9.896236351 0) (92.3924504 -27.96085736 0) (81.76691214 -25.22365825 0) (61.59748133 -19.38782104 0) (67.15718661 -23.73386583 -2.434960565e-18) (56.02101992 -20.66861706 1.597492345e-18) (35.15207473 -13.85393081 6.155102607e-19) (91.29983676 -12.500624 5.123468529e-19) (83.70744447 -12.20195278 0) (52.47280337 -8.784399679 2.834143444e-18) (150.6827004 54.52415697 -6.005331435e-17) (163.2791349 52.80113365 -3.056708675e-18) (112.2744229 41.61785168 -2.334560474e-18) (110.8339951 107.6658401 0) (136.7731067 96.38625348 1.953870794e-17) (96.74721112 120.2255836 0) (85.95639602 -8.43229724 0) (82.01981753 -8.157808866 0) (69.08273858 -7.051935717 0) (85.88076837 -8.287932757 0) (82.01543235 -8.024155433 0) (69.09414019 -6.949113161 0) (85.97706458 -8.51218057 2.82414114e-18) (82.01661152 -8.261831187 0) (69.07536021 -7.131870656 3.435541396e-18) (86.14600147 -8.607805026 9.279572315e-19) (82.17097993 -8.352638384 0) (69.39063835 -7.252063203 0) (86.18412329 -9.007568371 9.700609684e-19) (82.08219409 -8.777654993 -1.290708485e-18) (68.72818704 -7.527322184 3.979641981e-18) (84.96350412 -27.74486871 1.282885606e-17) (74.72788187 -24.90936963 -1.503219972e-17) (55.06764794 -18.82471022 0) (87.72444582 -10.57266508 -2.573451733e-18) (83.45504201 -10.33777933 0) (69.98481002 -8.884684001 -7.665519894e-19) (74.9133923 -10.87526494 2.738449636e-19) (39.31498673 -5.69989169 -4.968139847e-18) (88.07127632 -10.92320217 0) (83.75314649 -10.55944914 0) (68.96531143 -8.929524321 6.621261073e-19) (47.987236 -16.89326749 -9.044073009e-20) (32.9374495 -12.86159653 -2.056138245e-18) (12.65431993 -6.234529791 3.580278617e-18) (155.1802365 11.28497802 0) (149.2785136 10.47315556 1.191856701e-17) (105.8299587 7.005337755 -1.520513675e-17) (154.8483586 10.19235793 4.330360481e-18) (148.5125137 9.38193504 0) (105.750314 6.295742403 2.141153488e-18) (153.9332589 6.92892852 -4.234480374e-18) (146.5287258 6.071937837 0) (105.5953564 4.081241747 0) (139.9487373 -14.37101087 0) (127.864408 -14.04105263 2.466717325e-18) (95.83045779 -10.50674136 0) (141.8373797 -12.56844552 7.463920728e-18) (129.9101531 -12.4019053 -2.448689702e-18) (97.6887464 -9.283337419 -1.432257426e-17) (139.3175588 -14.84679462 -6.541539848e-20) (127.1637161 -14.3678843 1.208095468e-17) (95.66590091 -10.78081821 3.46281333e-18) (137.2104172 -16.41207612 0) (124.8369576 -15.80449398 4.869396425e-18) (92.81151906 -11.8034079 1.753174005e-17) (82.03811976 -8.598570099 -2.760589067e-18) (81.1891466 -8.410603437 3.709087683e-18) (75.37569688 -8.467491612 0) (81.7689613 -8.7474136 2.661045865e-18) (80.91977081 -8.498335247 -3.560297039e-18) (75.11309832 -8.600927887 0) (81.02841683 -27.19030045 0) (70.74578849 -24.36586122 5.370249669e-18) (50.64485774 -18.02204985 3.814365288e-18) (71.52262331 -25.07956541 9.758962412e-20) (60.84355296 -22.11302277 -2.753364479e-18) (40.52539625 -15.5115352 -9.470983756e-19) (115.188584 -25.36175066 6.637936674e-20) (102.2156473 -23.16537684 3.620375836e-18) (75.6192423 -17.46137388 0) (114.6079825 -25.36362811 -1.271897813e-20) (101.7187145 -23.17105164 1.356170123e-17) (75.50115954 -17.54260155 0) (102.2397065 -27.34476923 8.245255581e-18) (90.61275848 -24.78865823 0) (68.31188415 -19.05576595 -7.855292392e-18) (78.92315919 -10.75762641 0) (78.40882834 -10.54207741 0) (74.51069124 -11.13173013 0) (79.38397676 -10.45034106 2.890352351e-18) (78.81016682 -10.18758737 -3.878438626e-18) (74.7663203 -10.71757492 0) (85.80709429 -7.653998843 0) (82.32845057 -7.438072614 -6.892736663e-19) (70.60998772 -6.583347872 0) (85.80219322 -7.713067025 9.801917896e-19) (82.2082829 -7.45077 0) (70.01145859 -6.565516262 0) (85.84705231 -7.688483857 0) (82.28414863 -7.445376639 -3.261036299e-18) (70.35671066 -6.580642957 3.545885515e-18) (85.82986414 -7.654232219 0) (82.32679057 -7.435209913 -6.605012907e-19) (70.58643034 -6.58315466 0) (85.8491025 -7.681369981 2.953288513e-18) (82.29977222 -7.443332573 0) (70.42413262 -6.581691398 -3.9968349e-18) (85.88229197 -8.246299852 0) (82.04232591 -7.959103744 7.287548279e-19) (69.13351263 -6.898240986 0) (85.90554301 -8.124054488 5.229015005e-22) (82.15033871 -7.880429318 -2.568155306e-18) (69.47953852 -6.86471811 0) (85.7692718 -7.735244297 9.790530147e-19) (82.16528525 -7.466727321 -3.258892386e-18) (69.83134757 -6.563782161 3.546108173e-18) (85.67330343 -7.947500246 0) (82.00977355 -7.705109853 0) (69.1022398 -6.669305067 0) (85.88927757 -8.114190365 0) (82.16664779 -7.889381922 0) (69.49752742 -6.864732506 0) (85.71988279 -8.046458667 0) (82.0575016 -7.840956855 -2.613368812e-18) (69.20872919 -6.775115722 3.999748123e-18) (86.1946475 -8.651334981 -1.828090908e-18) (82.13210857 -8.336561046 2.429443699e-18) (69.37574539 -7.264003779 -3.307545356e-18) (86.175491 -8.615415557 2.763977488e-18) (82.17522779 -8.340740553 -5.508468705e-22) (69.4195537 -7.254533341 -1.7991753e-22) (90.49801986 -27.7609495 1.216174688e-17) (80.00613418 -25.17851813 4.047939253e-18) (59.77945593 -19.2655375 -2.864469424e-18) (86.17133019 -8.665736626 0) (82.10053187 -8.335384985 0) (69.23457064 -7.254892536 0) (86.08731338 -8.915790086 -2.778335771e-18) (81.97539424 -8.631213646 3.079663063e-18) (68.52312842 -7.400929241 0) (84.19440299 -27.61052149 -4.54372839e-18) (73.86613492 -24.79642088 3.010138696e-18) (54.12211714 -18.67502032 8.655496336e-18) (81.81696623 -27.36369009 -1.666217522e-19) (71.59983254 -24.49745717 -1.874672869e-18) (51.65361555 -18.20429196 1.9021488e-17) (88.08860855 -11.1220298 0) (83.79987731 -10.86552166 -1.960348755e-18) (68.0346303 -9.066398915 2.691565448e-18) (155.5518128 14.72716026 -1.908150186e-19) (150.6480348 14.01067721 2.074208713e-17) (104.5966475 9.229268088 2.655439458e-17) (156.3755291 19.82600729 0) (153.5126141 19.1833316 0) (105.6427415 12.64887866 0) (155.9229043 15.87232448 0) (151.533365 15.00314562 -6.278588859e-18) (104.7593265 9.812164661 4.648138836e-18) (156.5397906 21.05205685 9.37509141e-18) (154.2560634 20.4478053 0) (105.8592663 13.48544815 4.728228902e-18) (152.3016514 3.158007532 1.041936905e-18) (143.5329381 2.392445067 -2.829778216e-18) (104.783718 1.542467068 6.643364506e-18) (153.5105591 5.905917566 4.281871728e-18) (145.6640151 5.035517227 -4.269641326e-18) (105.0195315 3.350303855 8.365057337e-18) (151.8644315 2.230730674 -1.039377377e-18) (142.7924483 1.44982703 0) (104.2804211 0.8610294524 4.577001332e-18) (144.2098234 -9.900115443 -1.887653896e-18) (132.6564683 -9.906600245 -2.566477527e-18) (100.1814201 -7.425436036 -1.842509893e-18) (142.4930526 -11.91883394 0) (130.7218429 -11.78695374 2.502394442e-18) (98.64737001 -8.831998388 1.44871192e-17) (144.7000424 -9.163356278 -3.804297561e-18) (133.1543888 -9.181344443 2.577645251e-18) (100.4559169 -6.886700959 1.849012741e-18) (136.6187165 -16.74727241 -1.168715307e-17) (124.2385333 -16.06866501 5.215848989e-18) (92.42251706 -12.03503776 -3.819198646e-18) (134.787849 -18.24023572 0) (122.3097428 -17.27744654 -4.618264199e-18) (91.92088093 -13.04029628 1.314558344e-17) (130.8985654 -20.44623031 1.996590977e-17) (118.1582205 -19.3285253 -1.794992683e-17) (86.64428488 -14.34493804 0) (134.0580598 -18.89493954 0) (121.6398607 -18.0381876 4.513169412e-18) (90.86990378 -13.54310816 0) (131.6311258 -20.06092147 -1.967779879e-17) (118.9265752 -18.98115037 1.761129848e-17) (87.61711551 -14.12495137 -2.53497476e-17) (102.8397631 -27.39760256 0) (91.21185944 -24.84453154 0) (68.67799742 -19.0353441 2.674459985e-18) (88.38524474 -27.67450925 1.129111077e-17) (77.96173783 -25.06666789 1.178940133e-19) (57.57368029 -19.00870229 -1.342445298e-17) (86.93834328 -9.721294289 -2.489720959e-18) (82.58101083 -9.335819366 -2.212188674e-18) (69.33123946 -8.076076975 3.015054025e-18) (86.93677312 -9.687069324 -8.640574764e-19) (82.59242199 -9.304610328 2.29189132e-18) (69.46236938 -8.064590816 0) (86.92174557 -9.799897366 0) (82.55285862 -9.39840463 0) (68.94451644 -8.070601945 0) (86.95156241 -9.966184221 0) (82.5659814 -9.651034766 0) (68.87060616 -8.245057812 0) (87.80501743 -10.43398214 0) (83.48304525 -10.03361212 0) (69.33410982 -8.616664962 6.706272836e-19) (87.89597509 -10.73362891 -7.328509444e-19) (83.52773579 -10.34660049 -4.885558357e-19) (69.07607707 -8.785000645 3.375684882e-18) (81.37062898 -9.073008735 1.338744296e-18) (80.75925837 -8.786865451 0) (75.54077523 -9.108420808 0) (73.30631815 -25.7505367 0) (62.7774907 -22.64525928 9.459315671e-18) (42.55575452 -16.05582414 -1.08417198e-17) (148.1751828 62.84017529 -4.448311792e-17) (163.3189687 58.85930408 0) (111.9103892 49.2286882 0) (113.3620004 -25.65364149 -1.50692441e-17) (100.6141384 -23.45445984 0) (74.77538764 -17.76526011 4.890411763e-18) (76.15395271 -12.34938823 0) (75.81952618 -12.13273184 0) (72.59738305 -13.09250922 1.55119069e-18) (75.35661188 -12.71562569 0) (75.11247033 -12.51537371 0) (72.12424534 -13.62720699 -1.473041851e-18) (77.09031752 -11.74529743 0) (76.6681767 -11.6762695 1.559001111e-18) (73.27376477 -12.54494215 0) (77.90017296 -11.34636633 3.491391555e-18) (77.42579204 -11.22479694 -2.345509293e-18) (73.86346896 -11.97669343 -6.19160963e-18) (80.18268812 -9.988688874 0) (79.47920624 -9.789371616 0) (74.8503005 -10.09752391 0) (91.77834122 -27.94229085 0) (81.17067189 -25.26764115 0) (61.01495405 -19.41104987 0) (87.26368775 -10.1089499 0) (82.87739417 -9.688794177 5.289741559e-19) (69.08436726 -8.317561993 7.251135961e-19) (87.28680682 -10.01049137 0) (82.95572764 -9.582059782 0) (69.26333358 -8.270330672 0) (68.06075812 -24.13770214 5.202304754e-18) (56.93121659 -20.99118642 3.542937346e-22) (35.86085609 -14.11559774 -3.061799833e-18) (87.30652046 -10.21979343 0) (82.9193976 -9.847605633 -5.278191684e-19) (69.18387696 -8.43619223 -3.611502946e-18) (87.38218201 -10.28021312 2.869013516e-21) (83.01981177 -9.915564853 -2.087657513e-18) (69.35629455 -8.502355611 7.11605862e-19) (64.35980383 -23.17536335 -1.475646088e-18) (52.71405284 -19.83217424 -3.697876358e-22) (31.33299881 -12.75404856 -8.238845654e-21) (88.1706424 -12.05319197 -7.241944289e-19) (85.11934093 -12.65415515 0) (61.98803299 -9.69577442 3.446007022e-19) (123.6637506 -22.95254971 -4.453502011e-18) (110.3514747 -21.11576203 -2.375443269e-17) (80.38243067 -15.71245773 2.059908603e-18) (112.173482 -25.92324908 -1.432915344e-17) (99.51812542 -23.55086491 -2.400743053e-18) (74.2981273 -17.90004241 0) (111.7224072 -26.03466676 4.967889265e-18) (99.21506054 -23.62725009 3.387496143e-18) (74.69330784 -18.09103533 0) (31.68769413 -3.334835849 3.184310332e-17) (26.76570918 -7.381300805 0) (23.49543139 -12.43002697 1.743037571e-17) (85.94668378 -8.381674566 0) (82.03892169 -8.120698779 0) (69.18144105 -7.032055442 -3.003883508e-18) (85.9146643 -8.336051493 0) (82.02785975 -8.081475891 0) (69.14941014 -6.997859833 3.039065208e-18) (86.03112438 -8.571546253 -9.398427092e-19) (82.07392446 -8.3345618 6.20390719e-19) (69.19330341 -7.20066818 0) (86.09629268 -8.596641315 -9.280411582e-19) (82.13716452 -8.354359826 -3.090887238e-18) (69.31772251 -7.235796929 6.729427485e-18) (89.68874548 -27.9552459 1.161353335e-17) (79.25246513 -25.22983726 -2.666356054e-18) (59.06793187 -19.21875372 1.841877707e-18) (88.99603666 -27.87898638 1.144169492e-17) (78.53072536 -25.1771702 3.906750006e-18) (58.23752845 -19.12706412 -1.085548239e-17) (86.2992326 -9.067597372 0) (82.21154752 -8.824177477 5.942035215e-21) (68.97331993 -7.584752942 -4.836353013e-21) (86.94243663 -9.68703392 -9.468688525e-19) (82.61619255 -9.306711864 1.25787613e-18) (69.51308685 -8.064190114 0) (86.95663323 -9.6689002 2.552563732e-18) (82.63367106 -9.307163948 -3.406511189e-18) (69.53173028 -8.06307796 4.31031877e-18) (87.26299169 -10.06197632 3.607172355e-21) (83.03525823 -9.797049929 -4.205005531e-18) (69.71469014 -8.45447055 2.860082304e-18) (87.09365006 -10.08516021 -2.427412371e-18) (82.79868648 -9.850651896 2.156655729e-18) (69.28029867 -8.436158235 -2.960245531e-18) (87.82037674 -10.43312333 7.78093484e-19) (83.63905659 -10.08682472 -2.010618491e-18) (69.76881419 -8.693701249 2.75109961e-18) (87.97592893 -10.86775016 -7.303161163e-19) (83.58105236 -10.53585432 -1.464299147e-18) (69.36849743 -8.959558884 -1.344241036e-18) (52.06363206 -18.76687565 2.090567263e-18) (38.01214964 -14.6991107 -3.609036259e-18) (17.22074413 -7.851520651 -2.638593417e-19) (49.81124818 -17.80284643 0) (35.11423859 -13.65836352 0) (14.58100172 -6.922726106 -6.681198421e-19) (155.4092717 12.46179374 4.540043554e-18) (149.9914713 11.73440324 3.059788639e-18) (106.0047588 7.855708201 -2.271098027e-18) (155.4359467 13.5560814 -1.45047618e-17) (150.3155892 12.93968807 -3.272195119e-18) (105.6198044 8.652446831 -4.871961332e-18) (154.5493506 9.10525672 4.308173784e-18) (147.8060699 8.274025717 -5.785463086e-18) (105.6757701 5.554201166 -1.117255562e-20) (154.2561179 8.04764552 0) (147.2083011 7.254930217 0) (105.99733 4.916729155 -2.127310214e-18) (140.6441751 -13.75967497 1.090509235e-17) (128.7085882 -13.46560426 -1.238090204e-17) (96.88958785 -10.09564125 -5.997050599e-20) (141.2568927 -13.08988994 -3.666174415e-18) (129.2770086 -12.77097079 0) (97.65441599 -9.583564378 0) (138.6601016 -15.45459652 -3.545878207e-18) (126.5475448 -14.9858341 -2.15804897e-20) (94.89598601 -11.23081114 -3.474763556e-18) (137.9152286 -16.01101485 1.071519099e-17) (125.6814194 -15.5183277 -1.198190183e-17) (93.63571457 -11.5861872 0) (81.56659067 -8.862589003 0) (80.80101827 -8.542534102 0) (75.18058447 -8.765179318 0) (80.32072799 -26.92086743 3.886357167e-18) (70.03751215 -24.20450269 -5.245225712e-18) (49.74586397 -17.81245538 -7.539465095e-18) (72.32596109 -25.45202336 -2.176945692e-18) (61.66942763 -22.36809335 5.916647594e-18) (41.37508011 -15.76409154 -5.295024647e-18) (126.2557429 97.07377767 -9.288312977e-17) (150.8559304 84.6359158 -1.959358857e-17) (105.9311752 97.43178083 0) (137.201333 82.09556463 0) (158.9416386 72.45379616 0) (111.6748524 72.83747483 0) (141.45044 75.98081504 0) (161.4912681 68.20259451 0) (114.7107938 64.99271684 0) (113.9837881 -25.49522603 -4.991587504e-18) (101.2023831 -23.31879922 0) (75.24122895 -17.67535711 -4.744063021e-18) (101.7466054 -27.33237633 -1.191121321e-17) (90.22648081 -24.79874609 -1.079929647e-17) (68.26843799 -19.13887778 1.904837101e-17) (100.425096 -27.60448201 -1.374016218e-17) (89.06311372 -25.00687737 1.095397907e-17) (67.26976257 -19.22711088 -2.291714478e-17) (101.1427038 -27.357353 4.18834282e-18) (89.76438042 -24.91734539 5.59323285e-18) (67.84103832 -19.20666472 2.000823321e-17) (73.16424068 -13.73643785 0) (73.08702396 -13.93765006 0) (70.52800623 -15.13727411 -1.268206293e-17) (74.3823232 -13.1903676 0) (74.27766161 -13.11680605 0) (71.59403544 -14.34169497 0) (68.46254548 -14.67174926 0) (68.26582864 -15.17124668 0) (66.00119792 -16.80849372 2.549568198e-18) (71.83619171 -14.12829018 0) (71.66381943 -14.44688401 0) (69.03283177 -15.6370374 0) (70.50314731 -14.3448999 0) (70.30800519 -14.63703232 0) (67.82686116 -16.0060221 -3.914174856e-18) (78.42666764 -11.06461743 -3.113070402e-18) (77.93583348 -10.89364852 4.181420633e-18) (74.20826723 -11.55561452 0) (79.79187999 -10.17665583 0) (79.1565659 -9.876377133 0) (74.75351752 -10.30573279 0) (85.79460945 -7.663428658 0) (82.33562096 -7.445462305 -1.74728914e-21) (70.62768377 -6.582966452 -5.191418846e-19) (85.82635308 -7.700248431 0) (82.24293573 -7.444433647 -6.509321886e-19) (70.15919045 -6.570369534 -3.538663928e-18) (85.84095959 -7.694157243 0) (82.266475 -7.445564744 1.30267547e-18) (70.27694453 -6.577598436 3.541146517e-18) (85.84513199 -7.662965673 0) (82.32312332 -7.437088953 -1.967425655e-18) (70.54582768 -6.58266947 3.565080337e-18) (85.84938873 -7.672958385 9.86471796e-19) (82.31268817 -7.440563603 0) (70.49149809 -6.582609841 -3.114203928e-18) (85.93105601 -8.124318323 -1.018995908e-18) (82.12614003 -7.879485599 0) (69.43700216 -6.868534743 0) (85.73104302 -7.772421188 0) (82.1207658 -7.501742296 6.520852885e-19) (69.61683533 -6.573565374 -3.556557533e-18) (85.68754883 -7.830268451 0) (82.06806814 -7.545907765 0) (69.24139746 -6.568943946 0) (85.85310643 -8.104778929 2.901068393e-18) (82.16788005 -7.894692203 -5.130382858e-18) (69.45471899 -6.853619888 3.930092316e-18) (85.79535175 -8.089004779 -2.913035759e-18) (82.13291646 -7.888819889 2.580478012e-18) (69.37087925 -6.830422805 -8.804932767e-19) (86.1984166 -8.640591538 0) (82.14658377 -8.337785466 2.435753907e-18) (69.41876647 -7.263451863 -3.315418623e-18) (86.191117 -8.626746018 -9.205936251e-19) (82.16307718 -8.335203458 0) (69.42162662 -7.256689061 0) (91.16432859 -27.87121768 -1.166846984e-17) (80.59450847 -25.23854578 0) (60.33891508 -19.34117384 0) (86.1309759 -8.705237285 9.160889472e-19) (82.0547957 -8.36772375 0) (69.01722067 -7.26224443 4.164409011e-19) (86.08622256 -8.774738064 -9.194897597e-19) (81.99657978 -8.424465311 0) (68.61397239 -7.26028846 -4.17651383e-19) (82.7313675 -27.25693789 2.451739178e-20) (72.51079341 -24.58089245 -5.902633243e-18) (52.48946856 -18.35971812 -8.405905874e-18) (83.5063851 -27.43661701 -7.423516765e-21) (73.21839369 -24.66759096 1.16350215e-17) (53.362105 -18.52158704 -8.203229441e-18) (87.34291863 -9.995104536 7.868579481e-19) (83.09001021 -9.656212666 -5.335623762e-19) (69.78675176 -8.375986582 -2.835528123e-18) (87.33055039 -9.976600751 0) (83.02507437 -9.58700413 5.22859539e-19) (69.61407261 -8.317361647 0) (68.99080758 -24.58845322 -4.486078469e-18) (57.9778569 -21.40212674 4.096165331e-18) (36.99313559 -14.51510624 -2.902475488e-18) (87.44159904 -10.29769754 1.653315492e-18) (83.03056112 -9.914286911 5.558337591e-19) (69.15127439 -8.480180767 -6.022401917e-18) (63.28623709 -22.58028905 1.242983073e-19) (51.46399608 -19.32298492 7.075198909e-19) (29.95242998 -12.23476832 -1.010345204e-18) (88.35493061 -11.40151809 0) (84.21290417 -11.51509808 0) (66.34381366 -9.45892054 2.80389981e-18) (156.2391506 18.58230727 4.467486138e-18) (153.1256093 18.05399384 -1.210184316e-17) (106.6898183 12.10405451 2.229041011e-17) (156.2089888 17.12875266 -4.46409788e-18) (152.5516752 16.36032064 2.989565734e-18) (105.9384566 10.81875508 -4.502150127e-18) (156.6878693 22.26636957 -2.997921647e-17) (155.0488476 21.73866286 1.333244718e-17) (106.3097214 14.3842797 -5.075247601e-18) (152.6975713 4.06610497 0) (144.215702 3.2570006 2.839860256e-18) (104.7243214 2.12549345 1.042900388e-18) (153.0834083 5.004750745 -4.195453432e-18) (144.8977216 4.194988861 -1.427502741e-18) (104.921346 2.785747712 -8.286183421e-18) (151.4048295 1.410692446 -1.033395291e-18) (142.0301551 0.6817997381 0) (104.0503403 0.3242556753 0) (150.9746587 0.6173824917 -2.701036585e-19) (141.3286597 -0.07167414402 -3.645930013e-19) (103.7108729 -0.2247236561 0) (143.6280138 -10.62301398 -5.628540384e-18) (131.9215878 -10.61780447 -2.544567077e-18) (99.39978554 -7.949407801 0) (143.0782765 -11.2127626 0) (131.2906523 -11.07005145 2.548001795e-18) (99.35045125 -8.297971691 0) (145.1788326 -8.541606217 -3.89478718e-18) (133.6658724 -8.689529183 5.210661788e-18) (100.3514171 -6.520776251 0) (145.6995291 -7.923922804 4.061876835e-18) (134.2969707 -8.111345461 0) (100.8318205 -6.07911275 0) (135.3089468 -17.8137834 3.624904254e-18) (122.7708019 -16.92744627 -4.867677199e-18) (91.49348802 -12.70584111 0) (130.1568561 -20.7126735 -7.138809519e-18) (117.3279603 -19.55308841 9.623156844e-18) (85.66706184 -14.48943498 -1.386220566e-17) (133.1830727 -19.40567964 -6.76858071e-18) (120.5904704 -18.51569177 1.34017968e-17) (89.24615546 -13.79595893 3.191889985e-18) (132.362483 -19.71680509 -9.192542038e-20) (119.6489204 -18.70157516 1.774810476e-17) (88.27404217 -13.91599701 -5.381894333e-17) (109.6742324 -26.5225969 5.377173932e-20) (97.41800756 -24.31235107 -1.706787271e-17) (72.71505866 -18.44429956 -4.82213595e-18) (110.4421535 -26.4511684 -1.912243747e-17) (98.18551381 -24.21275445 1.615003998e-17) (73.74088389 -18.46508364 -4.664620881e-18) (111.1908001 -26.21597858 4.766076144e-18) (98.86059407 -23.90546872 -1.285202915e-17) (74.64864015 -18.33843729 -1.380848802e-17) (24.94193303 -2.914755042 0) (97.99923986 -27.85889078 1.546766411e-17) (86.91359067 -25.23134058 -3.087889323e-17) (65.78630945 -19.43054098 2.421592504e-18) (97.38732395 -27.81521655 -7.200908255e-18) (86.27710662 -25.17475094 7.617878058e-20) (65.3072192 -19.42448038 0) (14.52269715 35.58333997 0) (1.658372868 37.09132907 0) (-13.25215013 37.4295967 -1.367805391e-16) (21.11472033 68.00463264 -2.201910907e-17) (8.384111171 74.14566342 1.574062759e-17) (-16.09912342 81.37334683 1.375575308e-19) (38.58649309 91.01101173 0) (33.5812011 100.1168457 -1.692901928e-18) (1.834668085 115.8832731 -1.25253551e-19) (82.59530113 -7.849627863 0) (81.63493656 -7.595893355 0) (75.00147145 -7.593359509 -5.94621685e-19) (82.68896314 -7.783501291 1.284633543e-18) (81.65159207 -7.553755329 -6.818774037e-18) (74.83099637 -7.459154059 4.029911379e-18) (83.4866071 -7.045209393 -2.438768353e-18) (82.20928992 -6.879671268 8.121763741e-19) (74.43316199 -6.62087008 -5.440198454e-19) (93.06741269 -27.73587898 0) (82.4043823 -25.1839186 0) (61.82358105 -19.33519145 -3.1975233e-18) (75.15179203 -26.07891782 -2.813418369e-18) (64.6305372 -23.07962081 5.626961148e-18) (44.35936399 -16.53923968 -5.26070536e-18) (74.4014017 -25.72713365 2.619139382e-18) (63.87327109 -22.84284692 1.822662356e-18) (43.54849081 -16.30699512 0) (118.0568962 -24.50837279 -5.284172667e-18) (104.9448016 -22.40026968 0) (78.1322 -16.98844914 0) (117.52834 -24.81830201 4.769569909e-20) (104.5591627 -22.71317351 3.663038046e-18) (78.27792034 -17.27295383 -5.238853476e-18) (83.84715008 -6.675795624 -1.199467645e-18) (82.17956464 -6.505613546 0) (72.96301704 -6.045261241 0) (83.53667812 -6.927818146 -1.219604187e-18) (82.21223772 -6.735461063 -8.048311079e-19) (74.1630358 -6.469374602 3.273189721e-18) (84.08168367 -6.885395148 0) (81.68510282 -6.71625987 0) (70.7767234 -5.946518448 -1.589258774e-18) (84.10790675 -6.639910044 6.129556389e-19) (81.99803419 -6.486105146 -8.145990575e-19) (71.95249812 -5.882685037 2.772904211e-18) (83.85598251 -6.691152202 -1.200194685e-18) (82.1226875 -6.529632383 3.191256397e-18) (72.76326376 -6.026225757 -2.162647298e-18) (84.10553968 -6.620558731 0) (82.0332479 -6.456718854 0) (72.02842612 -5.876048794 -3.071827472e-18) (84.09822453 -7.033454431 2.34927337e-18) (81.6423302 -6.931791848 -3.11616757e-18) (70.6670913 -6.093662044 4.798529069e-18) (84.66662427 -7.366443591 2.503428017e-21) (81.9267932 -7.253052707 -2.230427311e-18) (71.28360657 -6.44559502 0) (84.73445586 -7.391778328 -2.22950279e-18) (81.9578509 -7.270242225 3.698726532e-18) (71.33701993 -6.470208693 0) (30.622945 -12.70172495 0) (17.8844451 -9.103494328 -9.226750499e-18) (5.83331222 -4.224245832 1.408520684e-17) (155.7806657 34.79406454 7.157598916e-18) (159.6203774 34.82594233 4.843225974e-18) (107.6161409 23.67546989 -5.680122481e-17) (122.3430654 -23.29390083 5.731153895e-18) (109.0221333 -21.49217946 3.878008557e-18) (79.58697785 -16.05679871 -2.733321338e-18) (123.0065686 -23.13543366 -5.973735608e-18) (109.6968352 -21.30681458 -4.052329656e-18) (80.1755676 -15.9258259 0) (47.84336103 -12.79195518 1.320902257e-17) (46.50982553 -15.49219578 4.606667051e-17) (44.20557924 -19.74539107 -5.039947029e-17) (40.41799387 -8.566306415 -9.680245018e-18) (37.70404806 -12.36408327 4.468145588e-17) (34.85667826 -17.21541436 -6.998195181e-17) (95.53869645 -27.79297748 3.524849414e-18) (84.6957891 -25.31094359 0) (63.74186647 -19.43676801 -1.709947846e-17) (87.5771957 -27.79814918 1.433496896e-17) (77.18775272 -24.99437028 -1.430595926e-17) (56.91290601 -18.90354119 2.808501323e-17) (86.36779743 -9.075881048 0) (82.24599877 -8.794337251 1.515089385e-21) (69.09543897 -7.599588001 0) (86.96833783 -27.65972839 1.475456081e-20) (76.53464872 -24.852144 3.411002018e-18) (56.4396284 -18.84163816 -2.404585417e-18) (86.3985889 -9.097212566 0) (82.24173384 -8.801328352 2.099195338e-21) (69.12742542 -7.612711231 0) (86.36826156 -9.232388547 0) (82.1649771 -8.87178223 -5.884007792e-19) (68.68291492 -7.621820968 0) (55.51383326 -19.91145508 -6.382737116e-19) (42.04951551 -16.05568707 1.752047729e-18) (20.61994252 -9.033911432 -1.605744152e-18) (15.31681745 -8.258151912 4.559710199e-19) (5.103858683 -3.59876013 1.080977655e-18) (54.17720145 -19.17411554 1.728392244e-18) (40.47831738 -15.44263486 -2.244490154e-18) (19.24866096 -8.522454844 8.067400044e-19) (148.833733 -3.352968053 -1.505965946e-18) (138.3067131 -3.746428032 1.014058421e-18) (103.0781711 -2.865424532 -4.866219607e-19) (150.5399461 -0.2431758287 2.07665342e-19) (140.7655667 -0.7863372654 2.967385946e-19) (104.1976993 -0.6786568227 0) (150.1178084 -1.256395998 5.782340876e-19) (140.1970178 -1.821943745 -7.973324271e-19) (103.7827062 -1.447847626 0) (148.4754652 -4.142399658 1.007482163e-18) (137.9071105 -4.464927054 2.050495023e-18) (103.6415047 -3.370619948 -3.416763543e-18) (146.3040135 -7.248688381 0) (135.0690845 -7.499113707 1.067615158e-18) (101.2475407 -5.604965875 -1.198072031e-17) (146.9233765 -6.481442579 2.258696189e-20) (135.9047806 -6.825933068 -1.499707902e-18) (101.9488254 -5.118264621 5.499745887e-18) (105.1909377 -26.95101738 4.36263949e-18) (93.22332712 -24.43208707 5.949852754e-18) (69.82478974 -18.68771867 -1.253378374e-17) (52.20421421 -14.61565069 -3.790159551e-17) (51.58258599 -16.60810627 3.342310133e-17) (49.72735583 -20.39772941 0) (64.01253986 -15.38060752 -4.793708566e-18) (63.90263259 -15.78096707 6.144619962e-18) (61.8899782 -18.05129584 -1.255494861e-17) (83.10958304 -7.428373232 0) (81.96389703 -7.238809053 -4.126655919e-18) (74.88283454 -7.073957096 4.455169746e-18) (83.19409434 -7.308910975 3.715856487e-18) (82.01159049 -7.099619131 -3.300544274e-18) (74.60793287 -6.903546383 -5.550173496e-19) (94.82718534 -27.95586237 2.080370176e-17) (83.99956097 -25.2793456 0) (63.2184882 -19.38985635 3.654070253e-17) (119.9022129 -24.13397487 4.114048624e-18) (106.6796445 -22.08591108 0) (78.67860075 -16.59701814 1.933023063e-18) (66.04654609 -15.31527236 0) (65.94273323 -15.55630263 -1.852365123e-17) (63.71734898 -17.46665623 1.652368902e-17) (83.7141239 -6.860843073 -6.019988841e-19) (82.17451923 -6.747145788 3.212847541e-18) (73.45056465 -6.288794661 2.175414028e-18) (83.62131259 -6.868910835 2.513173395e-21) (82.12239803 -6.707598095 -8.075377739e-19) (73.34442077 -6.271398894 0) (84.1354273 -6.721037581 1.323964335e-21) (81.84253038 -6.567262207 -7.758357373e-19) (71.57499715 -5.902044697 5.268549726e-19) (84.14041513 -6.696510346 -1.169040292e-18) (81.88710041 -6.546278446 1.554824732e-18) (71.70263424 -5.895992133 5.282583474e-19) (84.03593993 -6.747086845 0) (82.16088874 -6.663659228 0) (72.67057986 -6.080670046 -1.602470325e-18) (84.11676704 -6.687712941 0) (82.21261446 -6.594600365 0) (72.79495441 -6.049156636 1.587490673e-18) (84.3779161 -7.23007664 0) (81.82371448 -7.154142115 0) (71.06346557 -6.314841597 0) (84.4526409 -7.271304304 1.139784592e-18) (81.84790011 -7.188275343 0) (71.12613033 -6.357282466 -5.125343065e-19) (84.99555185 -7.473046759 2.19586762e-18) (82.08557549 -7.332258521 7.319903668e-19) (71.49954187 -6.552469755 3.959406816e-18) (84.92834705 -7.459332292 0) (82.0452836 -7.32260072 -7.264490688e-19) (71.44949723 -6.535770806 -3.025061002e-21) (85.92210257 -8.197712014 0) (82.09321673 -7.920393179 -4.936361762e-19) (69.30786492 -6.881843398 0) (86.7472803 -9.596941532 -8.457782198e-19) (82.52957564 -9.308892347 -2.257009787e-18) (69.29988075 -8.029060737 6.152540527e-18) (86.92814411 -9.613674147 -6.141128302e-22) (82.63168579 -9.287706911 -2.363787388e-18) (69.50121553 -8.053509744 -2.825546599e-18) (86.66871931 -9.585634922 8.584778756e-19) (82.47298336 -9.319091108 0) (69.19147839 -8.013241419 3.097034966e-18) (86.36169077 -9.363484826 -1.776289425e-18) (82.11153602 -9.034308624 4.728889287e-18) (68.54532717 -7.722907088 -6.475863983e-18) (70.19125406 -25.06722218 5.697818024e-18) (59.44188585 -21.86380988 0) (38.8407642 -15.07452337 -8.118151624e-18) (60.24955047 -21.70037898 4.993660491e-20) (47.84589207 -18.12865017 5.939925427e-20) (26.29948103 -11.03070158 1.088215699e-20) (61.71848811 -22.33997317 2.709767199e-19) (49.69414623 -18.78283603 9.539364915e-19) (28.22084881 -11.67101947 -1.321920391e-18) (154.0136363 44.2985495 0) (162.2975234 43.90400703 8.007777962e-17) (110.4722291 31.78044982 -1.088757471e-16) (154.910372 41.19953526 -3.166713762e-17) (161.6343434 40.83173515 2.760946344e-17) (108.9963026 28.58296369 -1.089997574e-17) (135.9658509 -17.35189376 -1.082313329e-17) (123.4985521 -16.54200082 1.451023458e-17) (91.85672079 -12.37868426 0) (120.558786 -23.69447341 -2.436138941e-17) (107.2949375 -21.73065045 8.240743188e-18) (78.98397773 -16.34261349 -1.185026816e-17) (107.7449605 -26.65864613 8.860996947e-18) (95.6379823 -24.27760882 5.968863666e-18) (71.64609563 -18.54983533 0) (104.7430184 -26.94223748 4.150630724e-18) (92.90154415 -24.44230314 -1.681501694e-17) (69.97230707 -18.79724252 0) (107.0903729 -26.78750822 4.490366438e-18) (95.08395425 -24.43917684 -1.816016877e-17) (71.12350705 -18.63798983 -2.146882517e-17) (21.69281731 9.200618124 9.128238806e-18) (14.09160324 6.079168687 0) (7.534373968 2.305862957 -9.844237322e-18) (98.77039412 -27.59878099 -3.976651666e-18) (87.66486759 -25.12641988 2.657128892e-17) (66.54668214 -19.44178541 -3.691560651e-18) (96.85683907 -27.75321767 3.452615314e-18) (85.85075577 -25.1666712 9.241931384e-18) (65.10103796 -19.46810317 0) (82.51861444 -7.967858391 -7.526835213e-21) (81.59541705 -7.747090904 -2.928750878e-18) (75.35417695 -7.825459016 6.550711939e-19) (82.33849589 -8.225097976 3.928423351e-18) (81.4615887 -8.062015678 -4.629194029e-18) (75.53388822 -8.164683869 0) (82.83086314 -7.702452589 -1.257583663e-18) (81.75114412 -7.509859248 7.155073615e-21) (74.86756523 -7.359416207 5.108672205e-18) (83.37726559 -7.184244635 0) (82.0622572 -7.044836227 0) (74.52375751 -6.774349839 0) (93.68898218 -27.81152212 -9.556254263e-18) (82.94860502 -25.20458747 8.614072754e-18) (62.29923435 -19.36283699 3.010140838e-18) (76.04979379 -26.35762859 1.838769389e-18) (65.66968762 -23.348935 2.587910543e-18) (45.48169451 -16.82493024 0) (145.4764516 68.53829035 1.551002817e-17) (163.1404587 63.19696087 0) (114.5209383 57.02830028 0) (118.5826774 -24.34769673 5.374512964e-18) (105.3050567 -22.28101028 -3.469724315e-20) (77.90392943 -16.82464927 1.799721108e-17) (116.8552544 -25.0699508 5.759148632e-18) (103.9628149 -23.06387182 -2.345351197e-17) (77.54726426 -17.46927883 2.800876489e-17) (115.9744983 -25.36339745 -3.472471144e-17) (103.0286516 -23.19349697 4.158094321e-17) (76.40854196 -17.46541247 -2.88561642e-17) (83.84652748 -6.700023073 6.020656913e-19) (82.25545476 -6.543342107 1.590539448e-18) (73.26067625 -6.112490671 0) (83.54958929 -6.868359321 -1.218671418e-18) (82.17517997 -6.668574216 8.105011809e-19) (73.81536817 -6.3588397 2.190367459e-18) (84.10274419 -6.804877574 0) (81.74071139 -6.646019166 1.555693288e-18) (71.17794848 -5.932748557 -2.640047469e-18) (84.12734628 -6.653845656 5.885960383e-19) (81.97493121 -6.502334101 1.975770266e-21) (71.87807719 -5.88250658 -2.126164425e-18) (83.88991555 -6.711169029 -1.795539628e-18) (82.10836611 -6.556581366 7.964422656e-19) (72.57939601 -6.010399752 -2.158367108e-18) (84.13958155 -6.594849658 0) (82.13868454 -6.428611197 0) (72.26660797 -5.886285931 -3.693486029e-18) (84.18391268 -7.142412272 2.318918253e-18) (81.71665821 -7.078062929 3.096467943e-18) (70.8341838 -6.214937905 -4.732675337e-18) (84.59775708 -7.335829491 2.2540724e-18) (81.89945454 -7.228195854 -2.989085094e-18) (71.23342426 -6.414834828 0) (85.154232 -7.502534774 1.670269984e-18) (82.17229863 -7.365914355 2.228185571e-18) (71.58248125 -6.58889691 -3.373107014e-18) (85.22023378 -7.508148263 1.229320038e-18) (82.23130842 -7.374294908 -8.183232354e-19) (71.65126995 -6.6056892 -1.665552885e-18) (84.79848757 -7.412932837 -3.323878638e-18) (81.98156409 -7.279947397 2.206883865e-18) (71.3677772 -6.486256407 0) (85.58668152 -7.543483479 -1.024208058e-18) (82.32631314 -7.326745139 3.398845116e-18) (70.61728664 -6.483309931 0) (85.57081908 -7.493997694 1.028860647e-18) (82.34206897 -7.258908354 -6.764532292e-19) (70.65560925 -6.442362261 -4.612275003e-19) (85.5148184 -7.499754072 1.033810377e-18) (82.39921618 -7.31671868 -3.441298082e-18) (71.28368679 -6.531726197 3.734169041e-18) (85.56399271 -7.488527549 -2.061095211e-18) (82.42823046 -7.308696775 2.736928062e-18) (71.35250025 -6.538182782 3.712738591e-18) (85.28376371 -7.488167921 1.10704989e-18) (82.29278115 -7.35779413 -2.211042201e-18) (71.72233534 -6.607676756 2.000373946e-18) (85.35268232 -7.454535878 -1.067827434e-18) (82.34828357 -7.314235207 2.81947028e-18) (71.82952839 -6.594144322 -3.826291411e-18) (85.45823622 -7.498385067 -6.769928651e-21) (82.35816338 -7.312144684 3.458908496e-18) (71.23361335 -6.523000517 -3.761363821e-18) (85.40737306 -7.472365056 -1.053265169e-18) (82.32096003 -7.271985822 -5.815158289e-21) (71.17939438 -6.49302254 3.787469064e-18) (85.62207575 -7.576081944 -1.015823739e-18) (82.34151571 -7.368674845 0) (70.6503987 -6.514438725 0) (85.65873574 -7.590570108 1.015935659e-18) (82.35113808 -7.381691408 -3.364782944e-18) (70.6766123 -6.528391801 -5.464548503e-22) (65.72928703 -23.69795475 0) (54.44213776 -20.38087309 0) (33.41055377 -13.40999505 0) (38.40116915 -13.83760938 8.840120235e-18) (23.61400571 -10.03787229 -7.754896666e-18) (7.655993166 -4.687598238 0) (152.5513537 50.50855425 -2.156464425e-17) (163.2668841 49.18588911 1.425902825e-17) (111.1956739 37.00874306 -3.371878464e-17) (155.4245092 37.17497042 -2.027597064e-17) (160.1398034 37.02817496 1.982842437e-17) (106.9898425 25.08779757 1.022524835e-17) (156.2691221 32.47660762 -2.348034129e-20) (159.193625 32.46423799 0) (108.0901545 22.02666134 -1.058616786e-17) (156.5277235 30.73948835 -2.875305966e-17) (158.660162 30.59460556 0) (107.7949089 20.60640866 4.919654877e-18) (128.6455061 -21.4159099 0) (115.7147048 -20.05924919 4.446364311e-18) (84.66834244 -14.92742515 -3.205944772e-18) (129.4282315 -21.07946181 1.947520955e-17) (116.5120241 -19.68600889 -3.153512323e-18) (85.47678315 -14.64308095 2.331875934e-18) (121.6329332 -23.43426319 5.593414097e-18) (108.2723496 -21.59259702 3.776762257e-18) (78.99672857 -16.12392349 2.73250069e-18) (127.8642352 -21.67011917 -1.244176194e-17) (114.848068 -20.32018876 4.066399132e-18) (83.54017762 -15.06237142 2.402349003e-17) (127.0382686 -21.86889876 -1.212379658e-17) (113.9134319 -20.44816891 -8.220517334e-18) (82.5068046 -15.11575324 0) (86.87301669 112.5175779 8.181703729e-17) (107.6115995 110.0604041 -1.146606591e-16) (68.77027841 136.41379 1.306839357e-16) (99.85330108 -27.56822436 3.906472461e-18) (88.47841197 -24.96472624 1.049176544e-17) (66.95336353 -19.26380784 -2.954168528e-17) (99.38315406 -27.55901344 7.521414587e-18) (88.1122232 -24.97093333 -5.008640575e-18) (67.01438083 -19.36474805 -1.431269503e-17) (96.20186223 -27.813892 3.383638349e-18) (85.31074294 -25.27784156 -4.676644686e-18) (64.48319614 -19.48732367 0) (86.34500124 -9.079119077 0) (82.2534743 -8.811369899 1.964985922e-21) (69.08855809 -7.59945239 -4.651629246e-19) (86.4551512 -27.5516064 0) (76.07326827 -24.76511205 0) (56.26565792 -18.84874897 -1.166987607e-17) (85.85760475 -27.47196115 0) (75.58901015 -24.77500697 -6.854386434e-18) (56.01735606 -18.87779373 9.668317361e-18) (86.41397006 -9.12720798 0) (82.23806899 -8.809471567 1.279073875e-21) (69.10834675 -7.618139617 3.202619381e-18) (86.40108636 -9.166691026 1.76319532e-18) (82.21349178 -8.829431555 5.410650099e-22) (68.99331814 -7.624631819 -3.203438334e-18) (87.55037053 -10.52298338 -2.350414945e-18) (83.16792749 -10.24214265 -3.589110023e-18) (69.30230598 -8.72446247 3.777421113e-18) (57.1802279 -20.69310539 1.300100106e-18) (44.17539884 -16.8617081 1.053582845e-19) (22.5752255 -9.724378542 0) (149.2505675 -2.657892825 1.017389729e-18) (138.8086021 -3.139612052 1.031341325e-18) (102.9837598 -2.426443066 5.397487492e-21) (149.7120314 -1.987172859 4.54556937e-21) (139.5179774 -2.531201645 -7.071448147e-19) (103.3135882 -1.971872752 0) (148.0096283 -5.063675601 -1.981903338e-18) (137.3185645 -5.461662709 0) (103.0374059 -4.104248227 0) (147.4694734 -5.821166412 -4.1125886e-18) (136.5519339 -6.155741266 2.761670335e-18) (102.6979422 -4.605643378 -9.981412171e-19) (61.61316586 -15.33785238 0) (61.37362478 -16.14345215 0) (59.54770393 -18.82705283 -4.643445151e-18) (57.41072933 -14.83464526 0) (57.02088683 -16.3584535 0) (55.23631859 -19.66150185 0) (82.98602892 -7.575606656 0) (81.87014208 -7.396309577 -2.488529326e-18) (74.95521552 -7.234771104 4.48178109e-18) (83.26998591 -7.246505399 -1.239057764e-18) (82.00165273 -7.053568721 0) (74.42492296 -6.805258736 -3.890283445e-18) (94.24248861 -27.87628622 -1.326448671e-17) (83.43327703 -25.22567231 0) (62.75447813 -19.38103805 0) (77.88173267 -26.47350126 -3.148923695e-18) (67.50041295 -23.56112221 6.333757968e-18) (47.37110778 -17.21300477 0) (77.10932465 -26.26880043 0) (66.78048615 -23.4636098 -4.295749667e-18) (46.65946359 -17.07859097 0) (78.52697457 -26.69697724 0) (68.12801406 -23.74641263 -2.225617542e-18) (47.81720005 -17.32356252 6.402956959e-18) (79.31898018 -26.97429905 0) (69.02393102 -24.01760748 1.17601647e-19) (48.68882786 -17.54632926 1.642892746e-17) (132.4275942 90.35871041 -6.668279471e-17) (155.9117312 78.08268103 -6.334439442e-17) (109.4832414 82.81207715 9.267965786e-17) (119.1869243 -24.29602334 -1.137787978e-17) (105.8923915 -22.2500882 0) (78.14911636 -16.74931089 -4.037412623e-20) (83.80635608 -6.781648977 -5.985595648e-19) (82.25790355 -6.658656594 -7.987732612e-19) (73.48392215 -6.22063099 0) (83.56994389 -6.851381826 -1.828925491e-18) (82.148988 -6.652453671 8.118112406e-19) (73.46791205 -6.278111296 -5.483017773e-19) (84.1221462 -6.753830144 0) (81.78971706 -6.595849445 -7.765423876e-19) (71.40445394 -5.911206195 -2.636107839e-18) (84.13873464 -6.673771414 0) (81.9321181 -6.52403787 7.788869279e-19) (71.79907248 -5.888622364 -5.276112025e-19) (83.94749211 -6.745593923 1.792416349e-18) (82.10148667 -6.629985315 -7.91637332e-19) (72.54316611 -6.048229703 -2.156749797e-18) (84.15969298 -6.604299267 -1.249021658e-18) (82.22535749 -6.47231591 0) (72.64377727 -5.955503513 5.630183581e-19) (84.29115862 -7.190177317 2.304720335e-18) (81.79282541 -7.119877306 -6.121341287e-18) (70.98982434 -6.268893565 4.155797386e-18) (84.52662902 -7.304963381 1.135896539e-18) (81.87507343 -7.208337147 -7.504378186e-19) (71.18887805 -6.387350474 5.125093704e-19) (85.07288294 -7.475694715 5.813250374e-23) (82.12122759 -7.336389394 -1.537778666e-18) (71.53221463 -6.564455879 -5.239640292e-19) (84.8605533 -7.438845499 1.105988934e-18) (82.00746786 -7.303873478 0) (71.3986289 -6.512244309 4.961065162e-19) (85.58448113 -7.438297667 3.988723122e-22) (82.39847457 -7.207610035 0) (70.99175556 -6.444235935 0) (85.57366231 -7.458161876 5.130291672e-19) (82.37179176 -7.222141169 0) (70.81169085 -6.435424168 4.629746831e-19) (85.59673037 -7.434918638 -5.129371987e-19) (82.43588094 -7.214085803 0) (71.16250723 -6.46385488 0) (85.59415822 -7.456525994 0) (82.45485339 -7.256222112 -2.719928993e-18) (71.30949449 -6.502722502 3.693298136e-18) (85.39012334 -7.388512101 -2.631461715e-18) (82.36524704 -7.182217779 5.585755925e-18) (71.57764872 -6.483197981 -3.31459962e-18) (85.39115667 -7.408168963 5.259835193e-19) (82.38994089 -7.22963438 0) (71.7546089 -6.531597674 -4.723973189e-19) (85.37912677 -7.399784107 0) (82.33524108 -7.182408345 0) (71.38925195 -6.462456223 0) (85.38091395 -7.428489316 0) (82.32027165 -7.20828985 2.794994555e-18) (71.22040981 -6.457742916 -3.791713267e-18) (85.71175889 -7.615391245 1.016173099e-18) (82.3349915 -7.401959854 0) (70.6427677 -6.546971528 -3.66759824e-18) (85.68880169 -7.600322786 -1.008657119e-18) (82.34678319 -7.387696213 6.72034836e-19) (70.66175405 -6.535334666 0) (85.7555522 -7.618960166 -1.068146446e-18) (82.33598564 -7.417504613 -2.133784234e-18) (70.64428763 -6.562789119 1.937747068e-18) (85.78892008 -7.655169723 0) (82.34067611 -7.441911137 1.032825667e-18) (70.64464668 -6.577070515 3.472357418e-19) (86.81095048 -9.610573177 8.090098982e-22) (82.57026346 -9.305505726 -2.244054786e-18) (69.37887289 -8.043297547 0) (86.86266058 -9.620364402 0) (82.60366149 -9.296444386 0) (69.45027641 -8.049154631 -3.061490343e-18) (86.55482457 -9.566939452 -1.732706775e-18) (82.35500339 -9.314786999 1.720971416e-18) (68.9843031 -7.976546894 0) (86.43199265 -9.497670601 0) (82.19595183 -9.225077126 5.807562188e-19) (68.69552324 -7.875864836 0) (59.01020163 -21.04422874 -2.683518387e-19) (46.34800235 -17.56527843 -3.71949928e-19) (24.67449218 -10.44456336 -2.712912021e-19) (45.18983993 -16.35683664 -3.431931553e-18) (29.86716735 -11.99839432 -7.812730199e-19) (10.64580564 -5.615712315 0) (42.21603965 -15.19660744 0) (26.71827526 -10.97208596 1.304813834e-18) (8.913330842 -5.110394035 0) (153.1297025 47.83040181 0) (162.82562 47.08120006 0) (110.9345788 34.8146848 3.258439345e-17) (155.2559144 39.09510903 1.000536391e-17) (160.8727284 38.85579923 2.680131597e-17) (107.6607847 26.62474197 -4.034999241e-17) (156.5899011 27.43540057 3.724395191e-17) (156.9606199 27.07856631 -1.848680535e-17) (106.0691069 17.89201207 4.687817792e-18) (156.6148968 29.02270321 1.847633812e-17) (157.827896 28.70286491 -6.237740103e-18) (106.6926392 19.06974177 -4.279207922e-17) (156.5929614 26.03593893 1.945825119e-17) (156.4665968 25.72488009 6.848001967e-18) (106.4265708 17.07004914 -4.372359161e-17) (156.6865821 24.10898276 0) (155.8839566 23.7517678 -4.766161525e-18) (106.8653785 15.82842773 0) (121.029542 -23.58295919 -5.479783651e-20) (107.6526359 -21.66064089 -3.890827092e-18) (78.74349082 -16.21099727 0) (125.6886925 -22.31301782 -6.033815428e-18) (112.5330814 -20.75860315 1.209175383e-17) (81.73492621 -15.39253174 5.800258239e-18) (126.3513782 -22.05568015 1.197116077e-17) (113.1892929 -20.53511842 -8.127570011e-18) (82.19008775 -15.21836426 4.349710918e-17) (125.0016283 -22.55459376 1.221461769e-17) (111.7854599 -20.95398867 0) (81.04281042 -15.51930629 -2.980393761e-18) (124.3213933 -22.6828391 1.299783768e-17) (111.0500099 -21.04327115 -8.756547663e-18) (80.43640602 -15.59236269 -3.145556444e-18) (108.2733097 -26.64919776 4.663580225e-18) (96.05422038 -24.23795804 3.195970458e-18) (71.66779066 -18.43857065 -1.790310975e-17) (108.890451 -26.68236551 3.334615165e-18) (96.64076627 -24.28835548 -2.228593446e-18) (71.96559981 -18.39190854 3.161557102e-18) (103.57801 -27.18004301 1.323202189e-17) (91.95593775 -24.78590208 1.200875981e-17) (69.36203697 -19.04512094 -1.271691778e-17) (104.1994721 -27.08548446 4.258000441e-18) (92.49090987 -24.60729021 -1.705007942e-17) (69.91719715 -18.95943669 1.210643918e-17) (106.4260733 -26.82692459 -6.887958363e-20) (94.45285983 -24.50847777 0) (70.45956556 -18.64580754 -1.357403706e-17) (105.7332985 -26.98882016 9.295691393e-18) (93.75910285 -24.49324995 -2.092805063e-17) (69.9802156 -18.63424577 2.028683008e-17) (60.02974762 107.1269152 0) (67.13739224 114.8752398 1.778138227e-18) (32.33299216 138.2167636 0) (3.911553423 -4.612699589 -1.576809594e-17) ) ; boundaryField { topAndBottom { type slip; } inlet { type fixedValue; value uniform (100 0 0); } outlet { type inletOutlet; inletValue uniform (0 0 0); value nonuniform List<vector> 62 ( (107.2578221 -0.05755918784 0) (107.2450697 -0.1700570653 0) (107.2100006 -0.2808419006 0) (107.1446021 -0.3813941937 0) (92.31800387 -0.3895870313 0) (92.11568504 -0.2869651178 0) (91.98416313 -0.173998732 0) (91.92161059 -0.05878450779 0) (106.4105921 -0.6694310667 0) (106.0898447 -0.7058691631 0) (105.9638086 -0.7163744263 0) (105.5165612 -0.7434437272 0) (105.3376852 -0.7509362605 0) (104.6317957 -0.7675905592 0) (104.2906082 -0.7707716106 0) (102.3258581 -0.7789821769 0) (101.0323129 -0.790913167 0) (99.2129653 -0.861838616 -2.895103996e-37) (99.31147969 -0.8566036883 2.890924249e-37) (98.70892368 -0.8287082474 0) (98.36615547 -0.8201707859 0) (97.28277657 -0.796228222 0) (96.93436896 -0.7881962116 0) (95.96959395 -0.7623743611 0) (95.67673458 -0.7530047502 0) (94.88330917 -0.7221044742 0) (94.64639291 -0.7107618277 0) (94.01460771 -0.6730015778 0) (107.0661441 -0.4473758268 0) (106.9967267 -0.4994856772 0) (106.9148955 -0.5422462667 0) (106.8150334 -0.5814300013 0) (106.6927232 -0.6162961047 0) (106.500197 -0.6551647625 0) (93.82913922 -0.6586753021 0) (93.41459552 -0.6207506802 0) (93.13755329 -0.5869330526 0) (92.90194661 -0.5489229216 0) (92.70196323 -0.5069464185 0) (92.52944112 -0.4553179632 0) (106.3127333 -0.6824451413 0) (106.2059771 -0.6945755469 0) (105.8271399 -0.7261320921 0) (105.6786849 -0.7351593581 0) (105.1370095 -0.7575473225 0) (104.9062709 -0.7631474521 0) (103.8435946 -0.7728731555 0) (103.2242809 -0.7746077322 0) (99.58990403 -0.8251768709 0) (99.03896269 -0.8587833983 0) (99.22772818 -0.8473174054 0) (99.00902507 -0.8378627448 0) (98.00535494 -0.8120423069 0) (97.64136854 -0.804127132 0) (96.59868517 -0.7799233601 0) (96.27693565 -0.771333842 0) (95.39821972 -0.7431911136 0) (95.13382921 -0.7329018772 0) (94.42282337 -0.6988289452 0) (94.2123324 -0.686258981 0) (106.583253 -0.6377436109 0) (93.65441572 -0.6415027535 0) ) ; } wing { type movingWallVelocity; value nonuniform List<vector> 378 ( (-0.02957678806 -1.751170441 0) (-0.02823476215 -1.737232963 -1.51339846e-12) (-0.02837587518 -1.738639414 -7.5669923e-13) (-0.0119995448 -1.523208173 7.5669923e-13) (0.00983581396 -1.499627407 -7.5669923e-13) (0.006270813208 -1.635444162 7.5669923e-13) (-0.01185274857 -1.52180053 0) (-0.005715310971 -1.682169706 -1.51339846e-12) (-0.01985525716 -1.725663891 -7.5669923e-13) (-0.02938319459 -1.748410977 1.563788446e-25) (0.0103906369 -1.50117667 2.474204995e-24) (0.004514882554 -1.489806133 -7.5669923e-13) (-0.0221133768 -1.669228711 -1.51339846e-12) (-0.02178647833 -1.665036836 -1.51339846e-12) (-0.02222604017 -1.670641889 1.079311764e-25) (-0.02257037838 -1.674877687 -1.51339846e-12) (-0.02359862221 -1.687513338 -1.51339846e-12) (-0.01043353473 -1.697719765 -7.5669923e-13) (-0.02783591365 -1.73320066 -7.5669923e-13) (-0.02955242507 -1.750045521 -2.27009769e-12) (-0.02881172756 -1.742862383 0) (-0.0261765916 -1.742582507 -1.352199432e-24) (0.01641299477 -1.533825484 7.5669923e-13) (0.01651866706 -1.535227796 7.5669923e-13) (0.01677717068 -1.539459976 0) (0.01569763353 -1.579173594 -4.54019538e-12) (0.01608375175 -1.574944071 0) (0.01555874877 -1.580581698 0) (0.015097064 -1.584747315 7.5669923e-13) (-0.01250813245 -1.528779732 -1.51339846e-12) (-0.01238722235 -1.527431372 0) (-0.01274190709 -1.704875051 2.27009769e-12) (-0.01789586864 -1.720141823 1.51339846e-12) (0.007402237 -1.630209232 0) (0.007123927761 -1.631519707 7.5669923e-13) (0.0004327686039 -1.659804747 0) (-0.01122177461 -1.516190796 0) (-0.01138677163 -1.517586037 0) (-0.01963083928 -1.635269432 0) (-0.02041832585 -1.646534148 -7.5669923e-13) (-0.0201225351 -1.642292005 7.5669923e-13) (-0.01972701676 -1.636640762 -1.51339846e-12) (-0.02002358029 -1.640877877 -1.51339846e-12) (-0.02168953637 -1.663776155 -7.5669923e-13) (-0.02134931285 -1.659248693 1.51339846e-12) (-0.02051672415 -1.647948156 0) (-0.02081567548 -1.652189988 0) (-0.02124340933 -1.657842369 0) (-0.02092219229 -1.653603161 0) (-0.02302631153 -1.680526143 -1.51339846e-12) (-0.02268469033 -1.67628976 1.069798292e-25) (-0.006912856952 -1.686223711 -7.5669923e-13) (-0.02313921599 -1.681938379 0) (-0.02348143073 -1.686165021 7.5669923e-13) (-0.01094140339 -1.699315164 -7.5669923e-13) (-0.01222909053 -1.703305853 1.51339846e-12) (-0.02895502233 -1.744270547 0) (0.01602789563 -1.529611481 -1.921772605e-25) (0.01536854054 -1.523852595 7.5669923e-13) (0.01585626374 -1.527971807 -1.51339846e-12) (0.01518418812 -1.522499976 0) (0.016990019 -1.54512709 -5.849818976e-27) (0.01684111117 -1.540875074 -2.379557598e-26) (0.0170215576 -1.546547033 -1.51339846e-12) (0.01650575698 -1.569283981 0) (0.01620210355 -1.573530632 -1.51339846e-12) (0.01659131911 -1.567865031 0) (0.01495111505 -1.58600626 0) (0.01439207602 -1.590551872 0) (0.01339184669 -1.597473655 -4.54019538e-12) (0.01420318845 -1.591945351 0) (0.01359801679 -1.596121216 -1.51339846e-12) (0.0008469052785 -1.658188291 -1.51339846e-12) (-0.008220043204 -1.690539306 -7.5669923e-13) (-0.02602337861 -1.714584062 -1.51339846e-12) (-0.02589884616 -1.713215601 0) (-0.02615085809 -1.715989253 0) (-0.02628501071 -1.717400793 7.5669923e-13) (-0.02809214737 -1.735828622 7.5669923e-13) (-0.02851879586 -1.740048514 1.462566526e-25) (-0.01213355596 -1.524618055 -1.51339846e-12) (-0.01695604766 -1.717430144 -2.27009769e-12) (0.00940070711 -1.498503433 -2.27009769e-12) (0.006543652737 -1.634199898 0) (-0.01043316337 -1.510367122 0) (-0.01022668981 -1.509033235 0) (-0.01067041007 -1.511997893 0) (-0.01088902836 -1.513576248 7.5669923e-13) (-0.01169900586 -1.520394878 -1.51339846e-12) (-0.006184396323 -1.683773634 0) (-0.02709649512 -1.725853712 0) (-0.02696324026 -1.724445072 -1.51339846e-12) (-0.01943778439 -1.724477808 0) (-0.02723445359 -1.727261584 -1.51339846e-12) (-0.02737254123 -1.7286635 7.5669923e-13) (-0.02098535111 -1.728765172 -1.269129879e-24) (-0.02925017563 -1.747090578 -1.51339846e-12) (0.01103247108 -1.61160312 -7.800617426e-25) (0.00592269594 -1.637031744 0) (0.005565767161 -1.638659485 -1.51339846e-12) (-0.004966389642 -1.490836871 0) (-0.02200305554 -1.667815228 -1.026259699e-25) (-0.0218933076 -1.666407404 1.032917621e-25) (-0.02234085034 -1.672053821 7.5669923e-13) (-0.02245566053 -1.673465753 1.079313053e-25) (-0.007385208593 -1.687795776 0) (-0.007863711218 -1.689372579 -7.5669923e-13) (-0.02373953345 -1.689134635 7.5669923e-13) (-0.02578369985 -1.711955199 7.5669923e-13) (-0.02564044968 -1.710389868 -1.51339846e-12) (-0.02656522531 -1.720218519 -1.51339846e-12) (-0.0264262161 -1.718811226 7.5669923e-13) (-0.0279592037 -1.734458076 -1.51339846e-12) (-0.02866755559 -1.741455878 -1.48620925e-25) (-0.0251344909 -1.739911993 -7.5669923e-13) (-0.02573336674 -1.741452275 -1.51339846e-12) (0.01630238881 -1.532463285 -1.51339846e-12) (0.0161886119 -1.531200951 0) (0.01661492275 -1.536636766 1.51339846e-12) (0.0167020499 -1.538046973 0) (0.01583628425 -1.577765352 -1.51339846e-12) (0.01596491986 -1.576355387 0) (0.01541096411 -1.581985699 0) (0.01525294435 -1.583382972 0) (-0.01226005744 -1.526027889 0) (-0.01312472669 -1.706031963 -1.169458496e-24) (-0.01749549879 -1.718992156 0) (0.005773802293 -1.491416191 -7.5669923e-13) (0.007406670397 -1.494124768 -7.5669923e-13) (0.00813756821 -1.495542687 0) (0.006833423919 -1.63287213 0) (0.0001093896552 -1.661062277 0) (-0.0006279767578 -1.663870606 -7.5669923e-13) (-0.0002101222113 -1.662287068 7.5669923e-13) (-0.009761293811 -1.506278568 -5.151901577e-25) (-0.01000236792 -1.507651783 0) (-0.008907464465 -1.5021074 0) (-0.009502441753 -1.504942839 0) (-0.009249457111 -1.50369423 -7.5669923e-13) (-0.01105263863 -1.514832701 0) (-0.01154403834 -1.518989494 0) (-0.01954239264 -1.634010023 0) (-0.02031992464 -1.645120008 -1.51339846e-12) (-0.02022136828 -1.643706004 8.983481853e-26) (-0.01982567649 -1.638049885 -1.51339846e-12) (-0.0199246284 -1.639463881 -1.51339846e-12) (-0.0214506344 -1.660598547 -3.02679692e-12) (-0.02061512245 -1.649362164 7.5669923e-13) (-0.02071352366 -1.650776305 0) (-0.02113645816 -1.65642921 0) (-0.02102932524 -1.655016185 -1.51339846e-12) (-0.02291268208 -1.679113923 0) (-0.02279868621 -1.677701842 7.5669923e-13) (-0.006552625887 -1.685012101 -3.02679692e-12) (-0.02325177808 -1.683350624 -1.51339846e-12) (-0.02336439027 -1.68476155 -7.5669923e-13) (-0.0117212765 -1.701739859 -1.51339846e-12) (-0.01133371167 -1.700540188 0) (-0.02669974268 -1.721626578 -1.51339846e-12) (-0.02683209628 -1.723035746 7.5669923e-13) (-0.01901047157 -1.723272573 0) (-0.02750335672 -1.730010721 -7.5669923e-13) (-0.02140228355 -1.729908001 0) (-0.02910399817 -1.745682918 7.5669923e-13) (0.01554990391 -1.525238372 -7.5669923e-13) (0.01571351587 -1.526629095 0) (0.01500546292 -1.521239668 0) (0.0169490876 -1.543708542 -1.51339846e-12) (0.01689952471 -1.542290843 2.069145789e-26) (0.01704486786 -1.547960306 0) (0.01706155664 -1.549315688 7.5669923e-13) (0.01640939429 -1.570701873 0) (0.01631049511 -1.572115871 0) (0.01666823495 -1.566455823 0) (0.01673872818 -1.565101709 0) (0.01456022333 -1.589208488 0) (0.01319684036 -1.598730977 0) (0.01400249237 -1.593339827 0) (0.01380178596 -1.594734171 -4.617983997e-25) (0.004674881889 -1.64251338 0) (0.004967591602 -1.641274038 -1.51339846e-12) (0.005273820556 -1.639959146 -3.02679692e-12) (-0.02967623063 -1.751220926 0) (-0.002148424787 -1.669543219 -2.27009769e-12) (-0.002590560801 -1.671158003 -7.5669923e-13) (-0.002460377165 -1.488111139 -1.51339846e-12) (-0.0009383035219 -1.487367663 0) (0.0003522389983 -1.487287896 -1.51339846e-12) (-0.01286476889 -1.533220006 -1.51339846e-12) (-0.0129682097 -1.53459118 0) (-0.01366419287 -1.544479671 0) (-0.005259332844 -1.680591356 -7.5669923e-13) (-0.01602951478 -1.714722266 -7.5669923e-13) (-0.0164227218 -1.715874731 0) (0.008611152505 -1.624414068 -1.51339846e-12) (0.008344419213 -1.625748038 0) (-0.01436620335 -1.555801383 -1.51339846e-12) (-0.0137533277 -1.545894013 0) (-0.01572914632 -1.57850865 -3.789445702e-26) (-0.01513788694 -1.568646283 1.51339846e-12) (-0.01445089359 -1.557216883 0) (-0.01506306911 -1.567387759 -4.4597168e-26) (-0.01581970172 -1.579925099 -3.02679692e-12) (-0.01649366927 -1.589825601 0) (-0.01659146417 -1.591239755 -1.51339846e-12) (-0.02841601929 -1.748294889 -7.5669923e-13) (0.01315101253 -1.511158362 8.47824229e-25) (0.0104962117 -1.614557137 -1.51339846e-12) (0.01074041265 -1.613234558 -1.51339846e-12) (-0.006411515304 -1.493746146 0) (-0.005716625253 -1.492258469 -7.5669923e-13) (-0.003648220845 -1.674944892 1.51339846e-12) (-0.008699674416 -1.692108822 -7.5669923e-13) (-0.023983642 -1.691958309 7.5669923e-13) (-0.009189034063 -1.693709245 -7.5669923e-13) (-0.02410169418 -1.693327706 0) (-0.02446330726 -1.697555734 -1.51339846e-12) (-0.024123703 -1.737234702 0) (-0.02899110568 -1.749762471 -7.5669923e-13) (-0.02454920142 -1.738372737 -1.51339846e-12) (0.01703564167 -1.55650951 -1.51339846e-12) (0.01707418245 -1.550926929 -2.27009769e-12) (0.01707659055 -1.552471132 1.51339846e-12) (0.01701116413 -1.557920821 -1.51339846e-12) (0.01681390309 -1.563491737 -6.12366793e-26) (0.01688185926 -1.561951902 2.424541123e-26) (0.002204879036 -1.652774778 -3.02679692e-12) (-0.006865377252 -1.494873508 -7.5669923e-13) (-0.008217548346 -1.499228586 -7.401145444e-25) (-0.01327969001 -1.538823724 -1.51339846e-12) (-0.0133766273 -1.540236702 -1.51339846e-12) (-0.00409521969 -1.676524885 7.5669923e-13) (0.009454678837 -1.620104883 0) (-0.00853230843 -1.500490085 7.33913619e-25) (-0.01410802738 -1.551554604 -1.51339846e-12) (-0.01401701907 -1.55013964 -1.51339846e-12) (-0.01547352525 -1.574260606 1.51339846e-12) (-0.01538863458 -1.572844981 3.750250724e-26) (-0.01471197153 -1.561461782 -3.974236855e-26) (-0.01479911605 -1.562871414 -1.51339846e-12) (-0.01610585483 -1.584168514 -1.51339846e-12) (-0.01620246934 -1.585582958 0) (-0.0169845008 -1.596889078 1.51339846e-12) (-0.01688620099 -1.595481925 0) (-0.02157208838 -1.662216581 1.51339846e-12) (-0.02510878362 -1.704606989 1.256870018e-25) (-0.02549172988 -1.708767293 -1.51339846e-12) (-0.02497850328 -1.703197377 7.5669923e-13) (-0.0245872023 -1.698967486 -1.51339846e-12) (-0.01844650571 -1.72169569 1.51339846e-12) (-0.02254245768 -1.733003376 -3.02679692e-12) (-0.02196872786 -1.731453726 -7.5669923e-13) (0.01172785492 -1.505474925 1.51339846e-12) (0.01215750097 -1.507058632 2.27009769e-12) (0.01476060075 -1.587579799 0) (0.00975910488 -1.618518546 2.27009769e-12) (0.003609410811 -1.647018648 -1.51339846e-12) (0.001888831544 -1.654065958 -7.5669923e-13) (0.003292905679 -1.648329489 -8.017958586e-25) (-0.004016446477 -1.489528982 7.5669923e-13) (-0.00171533986 -1.667961336 7.5669923e-13) (-0.002941337939 -1.672432075 0) (-0.01276939152 -1.531961416 0) (-0.01264490229 -1.530400567 -7.5669923e-13) (-0.01307453753 -1.535998813 -1.51339846e-12) (-0.0135705745 -1.543065842 -1.51339846e-12) (-0.004909359672 -1.679375959 -1.51339846e-12) (-0.01549757177 -1.713157726 1.51339846e-12) (0.008783338561 -1.496997854 -1.51339846e-12) (0.008877974554 -1.623051645 7.5669923e-13) (0.008085348535 -1.626992898 0) (0.007748164006 -1.628580457 0) (-0.01428206678 -1.554385873 7.5669923e-13) (-0.01384122752 -1.547309172 3.864132694e-26) (-0.01564362007 -1.577091718 0) (-0.01521951717 -1.570018726 -3.741318584e-26) (-0.01453592632 -1.558632373 -1.51339846e-12) (-0.0149724175 -1.565836558 1.51339846e-12) (-0.01591486626 -1.581339574 -1.51339846e-12) (-0.01639616417 -1.58841144 -3.02679692e-12) (-0.01719237664 -1.599855846 1.51339846e-12) (-0.01730200415 -1.601412425 -3.02679692e-12) (-0.01668924587 -1.592653909 0) (-0.01883138137 -1.623837498 0) (-0.01873415532 -1.622423457 7.5669923e-13) (-0.01815955124 -1.613937613 -1.51339846e-12) (-0.01825760975 -1.615351761 7.5669923e-13) (-0.01739071731 -1.60267196 7.5669923e-13) (-0.01748647275 -1.604042109 1.51339846e-12) (-0.01806149272 -1.612523465 -7.5669923e-13) (-0.01796344739 -1.611109317 0) (-0.01892983532 -1.625251637 0) (-0.01902828925 -1.626665776 -3.02679692e-12) (-0.02041613807 -1.727214647 1.51339846e-12) (-0.02783008316 -1.746801043 0) (0.01090911424 -1.502736645 9.859591574e-25) (0.01277272557 -1.509533934 0) (0.01350438434 -1.51275408 0) (0.01375648035 -1.513994208 0) (0.01269087632 -1.601945986 0) (0.01295135824 -1.600313834 -2.27009769e-12) (0.01024187124 -1.615924055 0) (0.01246848743 -1.603276425 -1.51339846e-12) (0.01223714498 -1.604655324 0) (0.002999405743 -1.488417098 -6.152145838e-24) (-0.001054004326 -1.665485086 7.5669923e-13) (-0.001385999269 -1.666739259 0) (-0.003302325713 -1.673722284 0) (-0.02387498355 -1.690697894 -1.51339846e-12) (-0.009566480982 -1.694943025 -1.005206922e-24) (-0.009938019323 -1.696148861 0) (-0.02422247874 -1.694733701 1.147929309e-25) (-0.02434300203 -1.696144583 -3.02679692e-12) (-0.02767066784 -1.731635831 0) (-0.0235443691 -1.735685188 0) (0.01705399093 -1.555098606 4.257628067e-27) (0.01706724718 -1.553727276 -7.5669923e-13) (0.01697370956 -1.559326726 0) (0.01692876455 -1.560699846 0) (-0.00788849642 -1.498007802 2.27009769e-12) (-0.007402805543 -1.496435169 -7.5669923e-13) (-0.01317900252 -1.537411096 -1.51339846e-12) (-0.01347303435 -1.541651286 -8.792064497e-26) (-0.004552181827 -1.678132364 -7.5669923e-13) (-0.01457078549 -1.710403679 0) (-0.01496925733 -1.711597585 -1.51339846e-12) (-0.01416748738 -1.709184052 0) (-0.0136415663 -1.707594063 2.715128449e-24) (0.006634136428 -1.492740872 -2.27009769e-12) (0.009136011946 -1.621734129 7.5669923e-13) (-0.01419689714 -1.552970128 -1.51339846e-12) (-0.01392820808 -1.548724487 -1.51339846e-12) (-0.01555852142 -1.57567623 -3.761353981e-26) (-0.01530377318 -1.571429487 0) (-0.01462292286 -1.560047171 -3.971183001e-26) (-0.01487923831 -1.564223966 0) (-0.01601003079 -1.582754049 -1.51339846e-12) (-0.01629919949 -1.586997267 -1.51339846e-12) (-0.01707886869 -1.598239349 -1.51339846e-12) (-0.01678747315 -1.594067923 0) (-0.01854397081 -1.619594499 -1.51339846e-12) (-0.01863875602 -1.621009115 0) (-0.01844918852 -1.618180016 -1.51339846e-12) (-0.01835421446 -1.616765801 1.51339846e-12) (-0.01767705942 -1.606864847 -1.51339846e-12) (-0.01758240602 -1.605450228 0) (-0.0177717128 -1.608279465 -7.5669923e-13) (-0.01786673105 -1.609694473 0) (-0.01922495536 -1.629486675 -1.51339846e-12) (-0.01912675347 -1.628079783 0) (-0.01931958696 -1.630836942 0) (-0.01943309756 -1.632453568 0) (-0.02523892189 -1.706016737 -1.51339846e-12) (-0.02536804166 -1.707419779 -1.259713948e-25) (-0.02484772241 -1.701787778 7.5669923e-13) (-0.02471653543 -1.700378318 0) (-0.02296747255 -1.734141555 1.51339846e-12) (-0.02677602074 -1.744118271 -7.5669923e-13) (-0.02738157133 -1.745660484 0) (0.01126945577 -1.503894961 -9.552249778e-25) (0.01246618572 -1.508279988 -1.51339846e-12) (0.01425839002 -1.516679527 -1.51339846e-12) (0.01401028119 -1.515321947 5.129241681e-25) (0.01449183212 -1.517997226 0) (0.01476116086 -1.519639233 0) (0.009992094706 -1.617266414 0) (0.01176909968 -1.607418432 -1.51339846e-12) (0.01200476955 -1.606040397 -1.51339846e-12) (0.01153332178 -1.608763349 0) (0.0113121598 -1.610017325 0) (0.00391641201 -1.645724623 0) (0.004300134886 -1.644099979 -7.5669923e-13) (0.001252861858 -1.656603699 0) (0.001565099754 -1.655372024 -1.51339846e-12) (0.00299023374 -1.649566106 -7.5669923e-13) (0.002602064259 -1.651152013 0) (0.001593790383 -1.48757088 0) (-0.02933198893 -1.750631772 -7.5669923e-13) ) ; } front { type empty; } back { type empty; } } // ************************************************************************* //
38db114bc8e4fb675675ce9970d2f1c2116e3a71
ef243e14ec6931257cc49d1546a94bf8ba218927
/Principios-Da-Mecatronica-2020-2/Pratica07/prog_03.ino
08fe982bd21671045e9d6f818e3d1170b974b1c3
[]
no_license
Murilo-ZC/FATEC-MECATRONICA-MURILO
32315bdc3b072ef49d9d0f20d866eec13407064b
4c8902f66a427551c6c9e390446163a42d9c9554
refs/heads/master
2023-08-18T12:22:52.191741
2021-09-28T12:23:14
2021-09-28T12:23:14
288,732,068
4
12
null
null
null
null
UTF-8
C++
false
false
2,474
ino
prog_03.ino
const int ENTRADA_1 = 3; const int LED_1 = 13; const int LED_2 = 12; const int LED_3 = 11; const int LED_4 = 10; const int LED_5 = 9; const int LIGADO = HIGH; const int DESLIGADO = LOW; //Variável global int quantidade_de_acionamentos = 0; void setup() { //Configurar as entradas pinMode(ENTRADA_1, INPUT); //Configurar as saídas pinMode(LED_1, OUTPUT); pinMode(LED_2, OUTPUT); pinMode(LED_3, OUTPUT); pinMode(LED_4, OUTPUT); pinMode(LED_5, OUTPUT); } void loop() { //Lógica do problema if (digitalRead(ENTRADA_1) == LIGADO){ quantidade_de_acionamentos = quantidade_de_acionamentos + 1; if (quantidade_de_acionamentos > 7){ quantidade_de_acionamentos = 0; } delay(500); } if(quantidade_de_acionamentos == 0){ digitalWrite(LED_1, DESLIGADO); digitalWrite(LED_2, DESLIGADO); digitalWrite(LED_3, DESLIGADO); digitalWrite(LED_4, DESLIGADO); digitalWrite(LED_5, DESLIGADO); } else if(quantidade_de_acionamentos == 1){ digitalWrite(LED_1, DESLIGADO); digitalWrite(LED_2, LIGADO); digitalWrite(LED_3, DESLIGADO); digitalWrite(LED_4, LIGADO); digitalWrite(LED_5, DESLIGADO); } else if(quantidade_de_acionamentos == 2){ digitalWrite(LED_1, LIGADO); digitalWrite(LED_2, DESLIGADO); digitalWrite(LED_3, LIGADO); digitalWrite(LED_4, DESLIGADO); digitalWrite(LED_5, LIGADO); } else if(quantidade_de_acionamentos == 3){ digitalWrite(LED_1, DESLIGADO); digitalWrite(LED_2, DESLIGADO); digitalWrite(LED_3, DESLIGADO); digitalWrite(LED_4, DESLIGADO); digitalWrite(LED_5, LIGADO); } else if(quantidade_de_acionamentos == 4){ digitalWrite(LED_1, DESLIGADO); digitalWrite(LED_2, DESLIGADO); digitalWrite(LED_3, DESLIGADO); digitalWrite(LED_4, LIGADO); digitalWrite(LED_5, LIGADO); } else if(quantidade_de_acionamentos == 5){ digitalWrite(LED_1, DESLIGADO); digitalWrite(LED_2, DESLIGADO); digitalWrite(LED_3, LIGADO); digitalWrite(LED_4, LIGADO); digitalWrite(LED_5, LIGADO); } else if(quantidade_de_acionamentos == 6){ digitalWrite(LED_1, DESLIGADO); digitalWrite(LED_2, LIGADO); digitalWrite(LED_3, LIGADO); digitalWrite(LED_4, LIGADO); digitalWrite(LED_5, LIGADO); } else if(quantidade_de_acionamentos == 7){ digitalWrite(LED_1, LIGADO); digitalWrite(LED_2, LIGADO); digitalWrite(LED_3, LIGADO); digitalWrite(LED_4, LIGADO); digitalWrite(LED_5, LIGADO); } }
fafe29bd5956f1d4cb29d15af1bb9a05a58b1f72
0ddab72dd0ddb5fc7cc0c1bfe85071d63bc5758e
/tsi.h
7e3d9be9af178f11d9cd9959fb40e31739c33b64
[]
no_license
dhrinch/LexAnalyser
bb6485ae78aa7a6dfaff0b863cee395720d82484
99f6c9aa51e0ffe437a3d3bb5e32ba4758f28088
refs/heads/master
2022-11-20T10:01:36.034509
2020-07-07T13:42:42
2020-07-07T13:42:42
277,206,629
0
0
null
null
null
null
UTF-8
C++
false
false
357
h
tsi.h
#ifndef TSI_H #define TSI_H #include <string> #include <vector> using namespace std; class TSI { vector<string>names; public: TSI(); void addLex(string lex){names.push_back(lex);} int getSize() const{return names.size();} string getLexByIdx(int idx) const; int indexOf(string lex) const; void show() const; }; #endif // TSI_H
b756dcf5027b4afeb03a2ab54e0f8407153ce429
c8683218ba532188d0f42324c6da019468c43c11
/practice/aoj/ALDS/1-8-B.cpp
88d839f9eb0ec295c6245ec78c181546397f85aa
[]
no_license
minszszsz/algorithm
0c91a3c0afbd385d8db59999ac67e948448ac7cc
41ca7e1cea1272076900adb21fa03adc7da4b8a8
refs/heads/master
2022-04-17T19:58:51.347012
2020-04-12T10:33:11
2020-04-12T10:33:11
250,272,595
0
0
null
null
null
null
UTF-8
C++
false
false
1,814
cpp
1-8-B.cpp
#include<iostream> #include<cstdlib> #include<cstdio> #include<string> #include<vector> using namespace std; struct Node{ int value; Node *left; Node *right; }; struct Node *NIL; class BinarySearchTree{ private: Node *root; public: BinarySearchTree(){ root=NIL; } void insert(int value){ Node *node = (Node*)malloc(sizeof(Node)); node->value = value; node->right = NIL; node->left = NIL; Node* x=root; Node* y=NIL; while(x!=NIL){ y = x; if(node->value < x->value){ x = x->left; } else{ x = x->right; } } if(y==NIL)root = node; else if(node->value < y->value)y->left = node; else y->right = node; } bool find(int value){ Node *node = root; while(node != NIL){ if(node->value == value)return true; else if(value < node-> value)node = node->left; else node = node->right; } return false; } void print(){ inorderWalk(root); cout << endl; preorderWalk(root); cout << endl; } void inorderWalk(Node *node){ if(node == NIL)return; inorderWalk(node->left); cout << ' ' << node->value; inorderWalk(node->right); } void preorderWalk(Node *node){ if(node == NIL)return; cout << ' ' << node->value; preorderWalk(node->left); preorderWalk(node->right); } }; int main(){ int n;cin >> n; string com; BinarySearchTree T; for(int i=0;i<n;i++){ cin >> com; if(com == "insert"){ int num;cin >> num; T.insert(num); } else if(com == "print"){ T.print(); } else if(com == "find"){ int num;cin >> num; cout << (T.find(num)?"yes": "no") << endl; } } }
b0279d1f945eaa93c66397f02263e9d952518aba
faad51c181c1ea6107b732a36ecd18b4b5fc5c32
/thesis_skeleton_face/src/readDataSet.h
7b7d74b6e79f9e99d4bccbe522a85b23d1078ede
[]
no_license
gharghabi/MEng_thesis
35e2cdf0f4a90a7e4cb2d8dcbb2dd8492fa318d2
1eb1f0055f438946c6787b0e0c2e3beeb34b13bb
refs/heads/master
2016-09-10T18:00:53.688684
2014-11-12T18:22:47
2014-11-12T18:22:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,301
h
readDataSet.h
#include "calc_features.h" #include <boost/filesystem.hpp> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <boost/filesystem.hpp> #include <pcl/io/pcd_io.h> struct frameData{ cv::Mat RGBImage; cv::Mat depthImage; upperbodycore_msgs::Skeleton skeletonData; std::string skeletonDataLine; }; class readDataSet{ private: static int const dataNum = 4; int frameNum; int personNum; cv::Mat RGBImage; cv::Mat depthImage; frameData allData; std::string action; std::string dataLocation; std::string skeletonDataLine; upperbodycore_msgs::Skeleton skeletonData; std::vector<std::string> skeletonFilesLine; std::map<std::string, std::string> all_files[dataNum]; void readDataActMap(); void readSkeletonLines(); void get_data(); upperbodycore_msgs::Skeleton extractData (const std::string line); public: readDataSet(std::string baseAddress); ~readDataSet(); cv::Mat get_rgbImage(); cv::Mat get_depthImage(); frameData get_frameData(); std::string get_skeletonFileData(); void set_frameNum(int frameNumber); int set_parameters(int dataNum, std::string actionName); upperbodycore_msgs::Skeleton get_skeletonData(); };
be8bf9f223b7843c0213bddffea9e05d4997d3d0
974d04d2ea27b1bba1c01015a98112d2afb78fe5
/paddle/fluid/operators/gru_unit_op.cc
3c8b2947e5fce846b3815adb1a3faead0b034631
[ "Apache-2.0" ]
permissive
PaddlePaddle/Paddle
b3d2583119082c8e4b74331dacc4d39ed4d7cff0
22a11a60e0e3d10a3cf610077a3d9942a6f964cb
refs/heads/develop
2023-08-17T21:27:30.568889
2023-08-17T12:38:22
2023-08-17T12:38:22
65,711,522
20,414
5,891
Apache-2.0
2023-09-14T19:20:51
2016-08-15T06:59:08
C++
UTF-8
C++
false
false
13,083
cc
gru_unit_op.cc
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include "paddle/fluid/operators/gru_unit_op.h" #include <memory> namespace paddle { namespace operators { class GRUUnitOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; void InferShape(framework::InferShapeContext* ctx) const override { OP_INOUT_CHECK(ctx->HasInput("Input"), "Input", "Input", "GRUUnit"); OP_INOUT_CHECK( ctx->HasInput("HiddenPrev"), "Input", "HiddenPrev", "GRUUnit"); OP_INOUT_CHECK(ctx->HasInput("Weight"), "Input", "Weight", "GRUUnit"); OP_INOUT_CHECK(ctx->HasOutput("Gate"), "Output", "Gate", "GRUUnit"); OP_INOUT_CHECK(ctx->HasOutput("ResetHiddenPrev"), "Output", "ResetHiddenPrev", "GRUUnit"); OP_INOUT_CHECK(ctx->HasOutput("Hidden"), "Output", "Hidden", "GRUUnit"); auto input_dims = ctx->GetInputDim("Input"); auto hidden_prev_dims = ctx->GetInputDim("HiddenPrev"); auto weight_dims = ctx->GetInputDim("Weight"); int batch_size = input_dims[0]; int input_size = input_dims[1]; int frame_size = hidden_prev_dims[1]; int weight_height = weight_dims[0]; int weight_width = weight_dims[1]; if (ctx->IsRuntime() || input_size >= 0) { PADDLE_ENFORCE_EQ(input_size, frame_size * 3, platform::errors::InvalidArgument( "The second dimension of Input(Input) must be 3 " "times of frame_size in GRUUnitOp, but received %d " "(Input) vs %d (frame_size).", input_size, frame_size)); } PADDLE_ENFORCE_EQ( weight_height, frame_size, platform::errors::InvalidArgument( "The shape of Input(Weight) matrix must be [frame_size, frame_size " "* 3] in GRUUnitOp, but received [%d, %d] (Weight) vs [%d, %d] " "(frame_size).", weight_height, weight_width, frame_size, frame_size * 3)); PADDLE_ENFORCE_EQ( weight_width, frame_size * 3, platform::errors::InvalidArgument( "The shape of Input(Weight) matrix must be [frame_size, frame_size " "* 3] in GRUUnitOp, but received [%d, %d] (Weight) vs [%d, %d] " "(frame_size).", weight_height, weight_width, frame_size, frame_size * 3)); if (ctx->HasInput("Bias")) { auto bias_dims = ctx->GetInputDim("Bias"); int bias_height = bias_dims[0]; int bias_width = bias_dims[1]; PADDLE_ENFORCE_EQ( bias_height, 1, platform::errors::InvalidArgument( "The shape of Bias must be [1, frame_size * 3], but received " "[%d, %d] (Bias) vs [1, %d] (frame_size * 3).", bias_height, bias_width, frame_size * 3)); PADDLE_ENFORCE_EQ( bias_width, frame_size * 3, platform::errors::InvalidArgument( "The shape of Bias must be [1, frame_size * 3], but received " "[%d, %d] (Bias) vs [1, %d] (frame_size * 3).", bias_height, bias_width, frame_size * 3)); } ctx->SetOutputDim("Gate", {batch_size, frame_size * 3}); ctx->SetOutputDim("ResetHiddenPrev", {batch_size, frame_size}); ctx->SetOutputDim("Hidden", {batch_size, frame_size}); } }; class GRUUnitOpMaker : public framework::OpProtoAndCheckerMaker { public: void Make() override { AddInput("Input", "(Tensor) Matrix with shape [batch_size, frame_size * 3] for the " "input."); AddInput("HiddenPrev", "(Tensor) Matrix with shape [batch_size, frame_size] for the " "states of previous time step."); AddInput( "Weight", "(Tensor) Weight matrix with shape [frame_size, frame_size * 3]. " "The elements continuous in memory can be divided into two parts. " "The first part are weights of the update gate and reset gate " "with shape [frame_size, frame_size * 2], and the second part are " "weights of output candidate with shape [frame_size, frame_size]."); AddInput( "Bias", "(Tensor) Bias vector with shape [1, frame_size * 3] concatenating " "bias of the update gate, reset gate and output candidate.") .AsDispensable(); AddOutput("Gate", "(Tensor) Matrix with shape [batch_size, frame_size * 3] for the " "output of update gate, reset gate and output candidate.") .AsIntermediate(); AddOutput("ResetHiddenPrev", "(Tensor) Matrix with shape [batch_size, frame_size] for the " "reset hidden state of previous time step.") .AsIntermediate(); AddOutput("Hidden", "(Tensor) The GRU hidden state of the current time step " "with shape [batch_size, frame_size]."); AddAttr<int>("activation", "(enum int, default tanh) " "The activation type used for output candidate {h}_t.") .SetDefault(tanh) .InEnum({identity, sigmoid, tanh, relu}); AddAttr<int>("gate_activation", "(enum int, default sigmoid) " "The activation type used in update gate and reset gate.") .SetDefault(sigmoid) .InEnum({identity, sigmoid, tanh, relu}); AddAttr<bool>("origin_mode", "bool" "use origin mode in article <Learning Phrase Representations " "using RNN Encoder–Decoder\n" "for Statistical Machine " "Translation>(https://arxiv.org/pdf/1406.1078.pdf)") .SetDefault(false); AddComment(R"DOC( GRUUnit Operator implements partial calculations of the GRU unit as following: $$ update \ gate: u_t = actGate(xu_t + W_u * h_{t-1} + b_u) \\ reset \ gate: r_t = actGate(xr_t + W_r * h_{t-1} + b_r) \\ output \ candidate: {h}_t = actNode(xc_t + W_c * dot(r_t, h_{t-1}) + b_c) \\ output: h_t = dot((1 - u_t), h_{t-1}) + dot(u_t, {h}_t) $$ which is same as one time step of GRU Operator. @note To implement the complete GRU unit, fully-connected operator must be used before to feed xu, xr and xc as the Input of GRUUnit operator. )DOC"); } }; class GRUUnitGradOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; void InferShape(framework::InferShapeContext* ctx) const override { OP_INOUT_CHECK(ctx->HasInput("Input"), "Input", "Input", "GRUUnitGrad"); OP_INOUT_CHECK( ctx->HasInput("HiddenPrev"), "Input", "HiddenPrev", "GRUUnitGrad"); OP_INOUT_CHECK(ctx->HasInput("Weight"), "Input", "Weight", "GRUUnitGrad"); OP_INOUT_CHECK(ctx->HasInput("Gate"), "Input", "Gate", "GRUUnitGrad"); OP_INOUT_CHECK(ctx->HasInput("ResetHiddenPrev"), "Input", "ResetHiddenPrev", "GRUUnitGrad"); OP_INOUT_CHECK(ctx->HasInput(framework::GradVarName("Hidden")), "Input", "Hidden@GRAD", "GRUUnitGrad"); auto input_dims = ctx->GetInputDim("Input"); auto hidden_prev_dims = ctx->GetInputDim("HiddenPrev"); auto weight_dims = ctx->GetInputDim("Weight"); // int batch_size = input_dims[0]; int input_size = input_dims[1]; int frame_size = hidden_prev_dims[1]; int weight_height = weight_dims[0]; int weight_width = weight_dims[1]; if (ctx->IsRuntime() || input_size >= 0) { PADDLE_ENFORCE_EQ( input_size, frame_size * 3, platform::errors::InvalidArgument( "The second dimension of Input(Input) must be 3 " "times of frame_size in GRUUnitGradOp, but received %d " "(Input) vs %d (frame_size).", input_size, frame_size)); } PADDLE_ENFORCE_EQ( weight_height, frame_size, platform::errors::InvalidArgument( "The shape of Input(Weight) matrix must be [frame_size, frame_size " "* 3] in GRUUnitGradOp, but received [%d, %d] (Weight) vs [%d, %d] " "(frame_size).", weight_height, weight_width, frame_size, frame_size * 3)); PADDLE_ENFORCE_EQ( weight_width, frame_size * 3, platform::errors::InvalidArgument( "The shape of Input(Weight) matrix must be [frame_size, frame_size " "* 3] in GRUUnitGradOp, but received [%d, %d] (Weight) vs [%d, %d] " "(frame_size).", weight_height, weight_width, frame_size, frame_size * 3)); if (ctx->HasInput("Bias")) { auto bias_dims = ctx->GetInputDim("Bias"); int bias_height = bias_dims[0]; int bias_width = bias_dims[1]; PADDLE_ENFORCE_EQ( bias_height, 1, platform::errors::InvalidArgument( "The shape of Bias must be [1, frame_size * 3], but received " "[%d, %d] (Bias) vs [1, %d] (frame_size * 3).", bias_height, bias_width, frame_size * 3)); PADDLE_ENFORCE_EQ( bias_width, frame_size * 3, platform::errors::InvalidArgument( "The shape of Bias must be [1, frame_size * 3], but received " "[%d, %d] (Bias) vs [1, %d] (frame_size * 3).", bias_height, bias_width, frame_size * 3)); auto bias_grad_name = framework::GradVarName("Bias"); if (ctx->HasOutput(bias_grad_name)) ctx->SetOutputDim(bias_grad_name, bias_dims); } auto input_grad_name = framework::GradVarName("Input"); if (ctx->HasOutput(input_grad_name)) ctx->SetOutputDim(input_grad_name, input_dims); auto hidden_prev_grad_name = framework::GradVarName("HiddenPrev"); if (ctx->HasOutput(hidden_prev_grad_name)) ctx->SetOutputDim(hidden_prev_grad_name, hidden_prev_dims); auto weight_grad_name = framework::GradVarName("Weight"); if (ctx->HasOutput(weight_grad_name)) ctx->SetOutputDim(weight_grad_name, weight_dims); } phi::KernelKey GetExpectedKernelType( const framework::ExecutionContext& ctx) const override { return phi::KernelKey(OperatorWithKernel::IndicateVarDataType( ctx, framework::GradVarName("Hidden")), ctx.device_context().GetPlace()); } }; template <typename T> class GRUUnitGradOpMaker : public framework::SingleGradOpMaker<T> { public: using framework::SingleGradOpMaker<T>::SingleGradOpMaker; protected: void Apply(GradOpPtr<T> op) const override { op->SetType("gru_unit_grad"); op->SetInput("Input", this->Input("Input")); op->SetInput("HiddenPrev", this->Input("HiddenPrev")); op->SetInput("Weight", this->Input("Weight")); op->SetInput("Bias", this->Input("Bias")); op->SetInput("Gate", this->Output("Gate")); op->SetInput("ResetHiddenPrev", this->Output("ResetHiddenPrev")); op->SetInput(framework::GradVarName("Hidden"), this->OutputGrad("Hidden")); op->SetAttrMap(this->Attrs()); op->SetOutput(framework::GradVarName("Input"), this->InputGrad("Input")); op->SetOutput(framework::GradVarName("HiddenPrev"), this->InputGrad("HiddenPrev")); op->SetOutput(framework::GradVarName("Weight"), this->InputGrad("Weight")); op->SetOutput(framework::GradVarName("Bias"), this->InputGrad("Bias")); } }; DECLARE_NO_NEED_BUFFER_VARS_INFERER(GRUUnitGradOpNoNeedBufferVarInferer, "Bias"); } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OPERATOR(gru_unit, ops::GRUUnitOp, ops::GRUUnitOpMaker, ops::GRUUnitGradOpMaker<paddle::framework::OpDesc>, ops::GRUUnitGradOpMaker<paddle::imperative::OpBase>); REGISTER_OPERATOR(gru_unit_grad, ops::GRUUnitGradOp, ops::GRUUnitGradOpNoNeedBufferVarInferer); PD_REGISTER_STRUCT_KERNEL( gru_unit, CPU, ALL_LAYOUT, ops::GRUUnitKernel, float, double) {} PD_REGISTER_STRUCT_KERNEL( gru_unit_grad, CPU, ALL_LAYOUT, ops::GRUUnitGradKernel, float, double) {}
48090a8e66a2378c04bc15b6828bbf9da22d9bd3
dd9b5bdca831aa90b6572a59d15a314230cd4e45
/MaximumvalueofdifferenceofpairofelementsandtheirIndex.cpp
8964d3cb2feeaaee22e826de008a10491d3c81f4
[]
no_license
kishankr7979/CP
62fdea662b391a132cdb2b55dc2a845e44790d53
150e304eea519a964d34e4e9ffd49cac5dad5198
refs/heads/main
2023-06-18T06:47:52.908559
2021-07-17T14:26:25
2021-07-17T14:26:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,112
cpp
MaximumvalueofdifferenceofpairofelementsandtheirIndex.cpp
//Maximum value of difference of a pair of elements and their Index//Initial Template for C++ #include <bits/stdc++.h> using namespace std; // } Driver Code Ends //User function Template for C++ class Solution { public: int maxValue(int arr[], int N) { // code here int ans = 0; for (int i = 0; i < N; i++) { for (int j = i + 1; j < N; j++) { ans = max(ans, abs(arr[i] - arr[j]) + abs(i - j)); } } return ans; } int maxValue(int arr[], int N) { // code here int ans1 = 0, ans2 = 0, ma1 = 0, ma2 = 0, mi1 = INT_MAX, mi2 = INT_MAX; int a[N], b[N]; for (int i = 0; i < N; i++) { a[i] = arr[i] - i; b[i] = arr[i] + i; ma1 = max(ma1, a[i]); ma2 = max(ma2, b[i]); mi1 = min(mi1, a[i]); mi2 = min(mi2, b[i]); ans1 = max(ans1, ma1 - mi1); ans2 = max(ans2, ma2 - mi2); } return max(ans1, ans2); } }; // { Driver Code Starts. int main() { int t; cin >> t; while (t--) { int N; cin >> N; int arr[N]; for (int i = 0; i < N; i++) cin >> arr[i]; Solution ob; cout << ob.maxValue(arr, N) << endl; } return 0; } // } Driver Code Ends
1e5a98e087fd2a70b2f741fc10035c99c14db789
1a77e7343291fc894fc93a76132fb40b89210b2c
/src/symmetries.hh
1a9f86144d5f6a3383b9ba60cf2aaa509a19249c
[ "MIT" ]
permissive
vincarlet/glasgow-subgraph-solver
d71af9f1f0025207fa1b74aeb51ca15f694ccb45
901e53f3be3bd1553430ada359d2628dbfdae790
refs/heads/master
2020-08-07T22:49:16.920252
2019-10-08T10:26:53
2019-10-08T10:26:53
213,611,647
1
0
MIT
2019-10-08T10:18:52
2019-10-08T10:18:51
null
UTF-8
C++
false
false
650
hh
symmetries.hh
/* vim: set sw=4 sts=4 et foldmethod=syntax : */ #ifndef GLASGOW_SUBGRAPH_SOLVER_GUARD_SRC_SYMMETRIES_HH #define GLASGOW_SUBGRAPH_SOLVER_GUARD_SRC_SYMMETRIES_HH 1 #include "formats/input_graph.hh" #include <exception> #include <list> #include <string> class GapFailedUs : public std::exception { private: std::string _what; public: GapFailedUs(const std::string & message) noexcept; auto what() const noexcept -> const char *; }; auto find_symmetries(const char * const argv0, const InputGraph & graph, std::list<std::pair<std::string, std::string> > & constraints, std::string & aut_size) -> void; #endif
4a8cce9824084349ea07ce13b871f6abeb69c8aa
e18f125f6281c24ad302ef522f4092ca846d75e3
/pickteam-c++/PickTeam.h
6522ae14e87d3227bda48d812508cd110a082cf4
[]
no_license
syed/tc
0ac16cf95ee77bf2cfd873abe88cbe230ce5633c
6bf1ef0ec865e3eb5fcd33c9fef12ade2fc00bf4
refs/heads/master
2020-04-08T06:19:39.349515
2013-12-29T07:17:52
2013-12-29T07:17:52
3,890,080
2
1
null
null
null
null
UTF-8
C++
false
false
1,578
h
PickTeam.h
#include <algorithm> #include <iostream> #include <map> #include <numeric> #include <set> #include <sstream> #include <string> #include <vector> #include <cstdio> #include <cstring> using namespace std; #define FOR(i,s,e) for (int i = int(s); i != int(e); i++) #define FORIT(i,c) for (typeof((c).begin()) i = (c).begin(); i != (c).end(); i++) #define ISEQ(c) (c).begin(), (c).end() #define SZ(n) (n>=0?(n>9?(n>99?3:2):1):(n>=-99?((n>=-9)?2:3):4)) int vec[30][30]; int max_score = -999999; vector<int> res; int combinations(vector<int> v,int n,int r,int start,int cpos) { if(cpos == r ) { v.push_back(start); int score = 0 ; FOR(i,1,v.size()) { FOR(j,i,v.size()) score+= vec[v[i]-1][v[j]-1]; } if ( score > max_score ) { max_score = score; res = v; } return 0; } v.push_back(start); FOR(i,start,n) combinations(v,n,r,i+1,cpos+1); return 0; } class PickTeam { public: vector<string> pickPeople(int teamSize, vector<string> people) { vector<string> names; max_score = -999999; FOR(i,0,people.size()) { char name[50]; char *ip = (char *)people[i].c_str(); sscanf(ip,"%s",name); //printf("%s ",name ); names.push_back(string(name)); ip += strlen(name) +1 ; FOR(j,0,people.size()) { int n; sscanf(ip,"%d",&n); //printf(" %d",n); vec[i][j] = n; ip += SZ(n) + 1; } printf("\n"); } vector<int> v; combinations(v,people.size(),teamSize,0,0); vector<string> ret; FOR(i,1,res.size()) ret.push_back(names[res[i]-1]); sort(ret.begin(),ret.end()); return ret; } };
e98db81a2dfdb3efc8a80b409ec15f5554878bc6
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/admin/snapin/framewrk/inc/stddtobj.cpp
5ec9225f9f21ac54c272eeab384ffa1c4ea5f99c
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
729
cpp
stddtobj.cpp
// StdDtObj.cpp : Implementation of DataObject base classe #include "stddtobj.h" CDataObject::~CDataObject() { } // Register the clipboard formats CLIPFORMAT CDataObject::m_CFNodeType = (CLIPFORMAT)RegisterClipboardFormat(CCF_NODETYPE); CLIPFORMAT CDataObject::m_CFNodeTypeString = (CLIPFORMAT)RegisterClipboardFormat(CCF_SZNODETYPE); CLIPFORMAT CDataObject::m_CFSnapInCLSID = (CLIPFORMAT)RegisterClipboardFormat(CCF_SNAPIN_CLASSID); CLIPFORMAT CDataObject::m_CFDataObjectType = (CLIPFORMAT)RegisterClipboardFormat(L"FRAMEWRK_DATA_OBJECT_TYPE"); CLIPFORMAT CDataObject::m_CFSnapinPreloads = (CLIPFORMAT)RegisterClipboardFormat(CCF_SNAPIN_PRELOADS); // m_cfRawCookie must be different for each snapin
4cb85fe1ae1cf8edc2fc6111bce0d35515fb9f49
2358915cdf73f332bacf1096e88205163fdcc40d
/footballTest/FibTest.cpp
1d9bd363b62a6a0a2278dc2f4e6077088099a069
[]
no_license
richfox/Dortmund
e4fe55d4a10f50de4af9f2999549941d2b93cfd2
cfc15a4b47adea7b3b4e5523fcc6fc34cc626467
refs/heads/master
2023-09-01T17:28:27.387610
2023-08-23T13:43:27
2023-08-23T13:43:27
92,736,298
2
0
null
null
null
null
UTF-8
C++
false
false
1,406
cpp
FibTest.cpp
//######################################################## //## ## //## Author: xfu ## //## E-Mail: tech@zhongwenshu.de ## //## ## //######################################################## #include "stdafx.h" #include "FibTest.h" #include "..\Algorithm\fib.h" #include "..\Tool\Time.h" using namespace std; using namespace XFU; CPPUNIT_TEST_SUITE_REGISTRATION(FibTest); void FibTest::test() { cout << "\r\ntest fibonacci sequence...\r\n" << endl; for (int i=0; i<_countof(fib); i++) { CPPUNIT_ASSERT(fibonacci(i) == fib[i]); CPPUNIT_ASSERT(dynamic_fibonacci(i) == fib[i]); } CPPUNIT_ASSERT(fibonacci(10) > dynamic_fibonacci(8)); CPPUNIT_ASSERT(fibonacci(10) == dynamic_fibonacci(10)); CPPUNIT_ASSERT(fibonacci(10) < dynamic_fibonacci(12)); auto elapsed = time_call([&]() { dynamic_fibonacci(100); }); CPPUNIT_ASSERT(iterative_fibonacci(4) == dynamic_fibonacci(4)); CPPUNIT_ASSERT(iterative_fibonacci(4) < dynamic_fibonacci(5)); CPPUNIT_ASSERT(matrix_fibonacci(1) == fibonacci(1)); CPPUNIT_ASSERT(matrix_fibonacci(10) == dynamic_fibonacci(10)); CPPUNIT_ASSERT(formula_fibonacci(1) == fibonacci(1)); CPPUNIT_ASSERT(formula_fibonacci(6) == dynamic_fibonacci(6)); }
a1b0b1ef381ce7ee6133573e5368495c14e09e5e
5c93333a71b27cfd5e5a017f29f74b25e3dd17fd
/TopCoder/Div 2/SquareOfDigits.cpp
94195ef477e992b11452c59dd2e68ee581dcc0e6
[]
no_license
sktheboss/ProblemSolving
7bcd7e8c2de1f4b1d251093c88754e2b1015684b
5aff87cc10036a0e6ff255ae47e68a5d71cb7e9d
refs/heads/master
2021-05-29T03:29:28.980054
2015-03-11T10:06:00
2015-03-11T10:06:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,033
cpp
SquareOfDigits.cpp
// TC SRM 439-D2-1 Points=117.3 of 250 #include <iostream> #include <vector> #include <string> #include <cmath> using namespace std; class SquareOfDigits { public: int getMax(vector <string> data){ int Max =1; string cur; int diff=0; for(int i=0; i<data.size(); i++){ cur = data[i]; //searching for(int j=0; j<cur.length(); j++){ for(int k=j+1; k<cur.length(); k++){ if(cur[j]==cur[k]){ diff = k - j; if((i+diff)<data.size() && data[i+diff][j]==cur[j] && data[i+diff][k]==cur[k]){ Max = max(Max,(diff+1)*(diff+1)); } } } } } return Max; } }; int main() { string test[] = {"9785409507", "2055103694", "0861396761", "3073207669", "1233049493", "2300248968", "9769239548", "7984130001", "1670020095", "8894239889", "4053971072"}; vector<string> v(test,test+sizeof(test)/sizeof(*test)); SquareOfDigits x; cout<<x.getMax(v); return 0; }
14765a78972a44c8e176fcdb5f525c080855efdc
993cdbf580320ee6801154102f1f7952f79e195d
/hprose/writer.h
52ed0029be67e14614f20004cf4548223be6bcc7
[ "MIT" ]
permissive
hprose/hprose-phpcpp
0dc1f40fd54561789e1ab2adacce8b6f1a8a7f0e
c53c4f71ac5d4f3f2b165f708a9e624d937a7c8f
refs/heads/master
2023-05-30T03:32:00.625220
2015-03-21T05:48:21
2015-03-21T05:48:21
21,139,935
15
4
null
2014-10-20T12:47:35
2014-06-23T19:47:55
C++
UTF-8
C++
false
false
21,520
h
writer.h
/**********************************************************\ | | | hprose | | | | Official WebSite: http://www.hprose.com/ | | http://www.hprose.org/ | | | \**********************************************************/ /**********************************************************\ * * * hprose/writer.h * * * * hprose writer class for php-cpp. * * * * LastModified: Feb 27, 2015 * * Author: Ma Bingyao <andot@hprose.com> * * * \**********************************************************/ #ifndef HPROSE_WRITER_H_ #define HPROSE_WRITER_H_ #include <unordered_map> #include <phpcpp.h> #include <math.h> namespace Hprose { class WriterRefer { public: virtual void set(const Php::Value &value) = 0; virtual bool write(const Php::Value &value) = 0; virtual void reset() = 0; WriterRefer() {} virtual ~WriterRefer() {} }; class FakeWriterRefer : public WriterRefer { public: virtual void set(const Php::Value &value) override {} virtual bool write(const Php::Value &value) override { return false; }; virtual void reset() override {}; FakeWriterRefer() {} virtual ~FakeWriterRefer() {} }; struct HashPhpValue { size_t operator()(const Php::Value &key) const { return key.hash(); } }; struct EqualPhpValue { bool operator()(const Php::Value &k1, const Php::Value &k2) const { Php::Type t1 = k1.type(); Php::Type t2 = k2.type(); if (t1 != t2) return false; switch (t1) { case Php::Type::Array: return k1.refequals(k2); case Php::Type::Object: return k1.id() == k2.id(); default: return k1 == k2; } } }; class RealWriterRefer : public WriterRefer { private: std::unordered_map<Php::Value, int32_t, HashPhpValue, EqualPhpValue> ref; int32_t refcount; StringStream *stream; public: RealWriterRefer(StringStream *stream):stream(stream) { reset(); } virtual ~RealWriterRefer() {} virtual void set(const Php::Value &value) override { ref[value] = refcount++; } virtual bool write(const Php::Value &value) override { auto it = ref.find(value); if (it != ref.end()) { stream->write(TagRef).write(it->second).write(TagSemicolon); return true; } return false; }; virtual void reset() override { ref.clear(); refcount = 0; }; }; class Writer : public Php::Base { private: std::map<std::string, int32_t> classref; std::vector<std::vector<std::string>> fieldsref; WriterRefer *refer; inline void init_refer(bool simple) { if (simple) { refer = new FakeWriterRefer(); } else { refer = new RealWriterRefer(stream); } } public: StringStream *stream; Writer() {}; Writer(StringStream &stream, bool simple = false) : stream(&stream) { init_refer(simple); } virtual ~Writer() { reset(); delete refer; } inline void reset() { classref.clear(); fieldsref.clear(); refer->reset(); } inline void writeInteger(int32_t i) { stream->write(TagInteger).write(i).write(TagSemicolon); } inline void writeLong(int64_t i) { stream->write(TagLong).write(i).write(TagSemicolon); } inline void writeDouble(double d) { if (isnan(d)) { stream->write(TagNaN); } else if (isinf(d)) { writeInfinity(d > 0); } else { stream->write(TagDouble).write(d).write(TagSemicolon); } } inline void writeNaN() { stream->write(TagNaN); } inline void writeInfinity(bool positive) { stream->write(TagInfinity).write(positive ? TagPos : TagNeg); } inline void writeNull() { stream->write(TagNull); } inline void writeEmpty() { stream->write(TagEmpty); } inline void writeBoolean(bool boolean) { stream->write(boolean ? TagTrue : TagFalse); } void writeDateTime(const Php::Value &value) { refer->set(value); Php::Array getOffset; getOffset[0] = value; getOffset[1] = "getOffset"; Php::Array format; format[0] = value; format[1] = "format"; if (getOffset() == 0) { stream->write(format("\\DYmd\\THis.u\\Z").stringValue()); } else { stream->write(format("\\DYmd\\THis.u;").stringValue()); } } void writeDateTimeWithRef(const Php::Value &value) { if (!refer->write(value)) writeDateTime(value); } void writeHproseDateTime(const Php::Value &value) { refer->set(value); DateTime *date = (DateTime *)value.implementation(); stream->write(TagDate).write(date->to_string(false)); if (!date->utc) { stream->write(TagSemicolon); } } void writeHproseDateTimeWithRef(const Php::Value &value) { if (!refer->write(value)) writeHproseDateTime(value); } void writeHproseDate(const Php::Value &value) { refer->set(value); Date *date = (Date *)value.implementation(); stream->write(TagDate).write(date->to_string(false)); if (!date->utc) { stream->write(TagSemicolon); } } void writeHproseDateWithRef(const Php::Value &value) { if (!refer->write(value)) writeHproseDate(value); } void writeHproseTime(const Php::Value &value) { refer->set(value); Time *time = (Time *)value.implementation(); stream->write(TagTime).write(time->to_string(false)); if (!time->utc) { stream->write(TagSemicolon); } } void writeHproseTimeWithRef(const Php::Value &value) { if (!refer->write(value)) writeHproseTime(value); } void writeBytes(const Php::Value &value) { refer->set(value); std::string bytes = (value.className() == "HproseBytes" ? ((Bytes *)value.implementation())->value : value.stringValue()); int32_t len = (int32_t)bytes.size(); stream->write(TagBytes); if (len > 0) stream->write(len); stream->write(TagQuote).write(bytes).write(TagQuote); } void writeBytesWithRef(const Php::Value &value) { if (!refer->write(value)) writeBytes(value); } void writeUTF8Char(const std::string c) { stream->write(TagUTF8Char).write(c); } void writeString(const Php::Value &value) { refer->set(value); int32_t len = ustrlen(value); stream->write(TagString); if (len > 0) stream->write(len); stream->write(TagQuote).write(value.stringValue()).write(TagQuote); } void writeStringWithRef(const Php::Value &value) { if (!refer->write(value)) writeString(value); } void writeList(const Php::Value &value) { refer->set(value); int32_t count = value.size(); stream->write(TagList); if (count > 0) stream->write(count); stream->write(TagOpenbrace); for (int32_t i = 0; i < count; ++i) { serialize(value[i]); } stream->write(TagClosebrace); } void writeListWithRef(const Php::Value &value) { if (!refer->write(value)) writeList(value); } void writeMap(const Php::Value &value) { refer->set(value); const Php::Value &val = (value.className() == "HproseMap" ? ((Map *)value.implementation())->value : value); int32_t count = val.size(); stream->write(TagMap); if (count > 0) stream->write(count); stream->write(TagOpenbrace); for (auto &iter : val) { serialize(iter.first); serialize(iter.second); }; stream->write(TagClosebrace); } void writeMapWithRef(const Php::Value &value) { if (!refer->write(value)) writeMap(value); } int32_t writeClass(const std::string alias, std::vector<std::string> &fields) { stream->write(TagClass).write((int32_t)alias.size()).write(TagQuote).write(alias).write(TagQuote); int32_t count = (int32_t)fields.size(); if (count > 0) stream->write(count); stream->write(TagOpenbrace); for (int32_t i = 0; i < count; ++i) { writeString(fields[i]); } stream->write(TagClosebrace); int32_t index = (int32_t)fieldsref.size(); fieldsref.push_back(fields); classref[alias] = index; return index; } void writeObject(const Php::Value &value) { std::string classname = value.className(); std::string alias = ClassManager::get_alias(classname); std::vector<std::string> fields; int32_t index; auto find = classref.find(alias); if (find == classref.end()) { fields = value.properties(false); index = writeClass(alias, fields); } else { index = classref[alias]; fields = fieldsref[index]; } refer->set(value); int32_t count = (int32_t)fields.size(); stream->write(TagObject).write(index).write(TagOpenbrace); for (int32_t i = 0; i < count; ++i) { serialize(value.get(fields[i])); } stream->write(TagClosebrace); } void writeObjectWithRef(const Php::Value &value) { if (!refer->write(value)) writeObject(value); } void serialize(const Php::Value &value) { switch (value.type()) { case Php::Type::Null: writeNull(); break; case Php::Type::Numeric: { int64_t i = value.numericValue(); if (i >= 0 && i <= 9) { stream->write((char)('0' + i)); } else if (i >= INT32_MIN && i <= INT32_MAX) { writeInteger((int32_t)i); } else { writeLong(i); } break; } case Php::Type::Float: writeDouble(value.floatValue()); break; case Php::Type::Bool: writeBoolean(value.boolValue()); break; case Php::Type::String: if (value.size() == 0) { writeEmpty(); } else if ((value.size() < 4) && is_utf8(value) && (ustrlen(value) == 1)) { writeUTF8Char(value); } else if (is_utf8(value)) { writeStringWithRef(value); } else { writeBytesWithRef(value); } break; case Php::Type::Array: if (value.isList()) { writeListWithRef(value); } else { writeMapWithRef(value); } break; case Php::Type::Object: { std::string className = value.className(); if (className == "stdClass") { writeMapWithRef(value); } else if (className == "DateTime") { writeDateTimeWithRef(value); } else if (className == "HproseDateTime") { writeHproseDateTimeWithRef(value); } else if (className == "HproseDate") { writeHproseDateWithRef(value); } else if (className == "HproseTime") { writeHproseTimeWithRef(value); } else if (className == "HproseBytes") { writeBytesWithRef(value); } else if (className == "HproseMap") { writeMapWithRef(value); } else { writeObjectWithRef(value); } break; } default: throw Php::Exception("Not support to serialize this data"); break; } } // ----------------------------------------------------------- // for PHP void __construct(Php::Parameters &params) { stream = (StringStream *)params[0].implementation(); bool simple = false; if (params.size() > 1) { simple = params[1]; } init_refer(simple); } void serialize(Php::Parameters &params) { serialize(params[0]); } void writeInteger(Php::Parameters &params) { writeInteger(params[0]); } void writeLong(Php::Parameters &params) { writeLong(params[0]); } void writeDouble(Php::Parameters &params) { writeDouble(params[0]); } void writeBoolean(Php::Parameters &params) { writeBoolean(params[0]); } void writeDateTime(Php::Parameters &params) { writeDateTime(params[0]); } void writeDateTimeWithRef(Php::Parameters &params) { writeDateTimeWithRef(params[0]); } void writeDate(Php::Parameters &params) { if (params[0].instanceOf("HproseDateTime")) { writeHproseDateTime(params[0]); } else { writeHproseDate(params[0]); } } void writeDateWithRef(Php::Parameters &params) { if (params[0].instanceOf("HproseDateTime")) { writeHproseDateTimeWithRef(params[0]); } else { writeHproseDateWithRef(params[0]); } } void writeTime(Php::Parameters &params) { writeHproseTime(params[0]); } void writeTimeWithRef(Php::Parameters &params) { writeHproseTimeWithRef(params[0]); } void writeBytes(Php::Parameters &params) { writeBytes(params[0]); } void writeBytesWithRef(Php::Parameters &params) { writeBytesWithRef(params[0]); } void writeUTF8Char(Php::Parameters &params) { writeUTF8Char(params[0]); } void writeString(Php::Parameters &params) { writeString(params[0]); } void writeStringWithRef(Php::Parameters &params) { writeStringWithRef(params[0]); } void writeList(Php::Parameters &params) { writeList(params[0]); } void writeListWithRef(Php::Parameters &params) { writeListWithRef(params[0]); } void writeMap(Php::Parameters &params) { writeMap(params[0]); } void writeMapWithRef(Php::Parameters &params) { writeMapWithRef(params[0]); } void writeObject(Php::Parameters &params) { writeObject(params[0]); } void writeObjectWithRef(Php::Parameters &params) { writeObjectWithRef(params[0]); } }; inline void publish_writer(Php::Extension &ext) { Php::Class<Writer> c("HproseWriter"); c.method("__construct", &Hprose::Writer::__construct, { Php::ByVal("stream", "HproseStringStream"), Php::ByVal("simple", Php::Type::Bool, false) }) .method("serialize", &Hprose::Writer::serialize, { Php::ByRef("var", Php::Type::Null) }) .method("writeInteger", &Hprose::Writer::writeInteger, { Php::ByVal("i", Php::Type::Numeric) }) .method("writeLong", &Hprose::Writer::writeLong, { Php::ByVal("l", Php::Type::Numeric) }) .method("writeDouble", &Hprose::Writer::writeDouble, { Php::ByVal("d", Php::Type::Float) }) .method("writeBoolean", &Hprose::Writer::writeBoolean, { Php::ByVal("b", Php::Type::Bool) }) .method("writeDateTime", &Hprose::Writer::writeDateTime, { Php::ByVal("datetime", "DateTime") }) .method("writeDateTimeWithRef", &Hprose::Writer::writeDateTimeWithRef, { Php::ByVal("datetime", "DateTime") }) .method("writeDate", &Hprose::Writer::writeDate, { Php::ByVal("date", "HproseDate") }) .method("writeDateWithRef", &Hprose::Writer::writeDateWithRef, { Php::ByVal("date", "HproseDate") }) .method("writeTime", &Hprose::Writer::writeTime, { Php::ByVal("time", "HproseTime") }) .method("writeTimeWithRef", &Hprose::Writer::writeTimeWithRef, { Php::ByVal("time", "HproseTime") }) .method("writeBytes", &Hprose::Writer::writeBytes, { Php::ByVal("bytes", Php::Type::Null) }) .method("writeBytesWithRef", &Hprose::Writer::writeBytesWithRef, { Php::ByVal("bytes", Php::Type::Null) }) .method("writeUTF8Char", &Hprose::Writer::writeUTF8Char, { Php::ByVal("char", Php::Type::String) }) .method("writeString", &Hprose::Writer::writeString, { Php::ByVal("str", Php::Type::String) }) .method("writeStringWithRef", &Hprose::Writer::writeStringWithRef, { Php::ByVal("str", Php::Type::String) }) .method("writeList", &Hprose::Writer::writeList, { Php::ByRef("list", Php::Type::Array) }) .method("writeListWithRef", &Hprose::Writer::writeListWithRef, { Php::ByRef("list", Php::Type::Array) }) .method("writeMap", &Hprose::Writer::writeMap, { Php::ByRef("map", Php::Type::Null) }) .method("writeMapWithRef", &Hprose::Writer::writeMapWithRef, { Php::ByRef("map", Php::Type::Null) }) .method("writeObject", &Hprose::Writer::writeObject, { Php::ByVal("obj", Php::Type::Object) }) .method("writeObjectWithRef", &Hprose::Writer::writeObjectWithRef, { Php::ByVal("obj", Php::Type::Object) }) .method("reset", &Hprose::Writer::reset); ext.add(std::move(c)); } } #endif /* HPROSE_WRITER_H_ */
7de84ab2c4ccaa56f08c30d23d51cd7a6e6f9db5
c977b63a9284bae21ff70f4015881fc78b0752c9
/chapter5/liurujia-solution/chapter5/printer-queue/main.cpp
808a89e67a54513bdde33ba62dc6ab241f847c83
[]
no_license
fogsail/solution-to-ICPC
32e7946371f2ec80a1787d46b74e30b2fc648f31
20680db9d0c23ce33a9e76970b982cfa3b0ea8b2
refs/heads/master
2021-07-16T20:01:51.880864
2020-07-18T12:44:45
2020-07-18T12:44:45
188,792,479
4
1
null
null
null
null
UTF-8
C++
false
false
1,206
cpp
main.cpp
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cstdlib> #include <queue> using namespace std; int readint(){ int x; scanf("%d",&x); return x; } const int maxn = 130; const int maxp = 10; int priority[maxn],pcnt[maxp]; queue<int> q; int n,m; void init(){ while(!q.empty()) q.pop(); n = readint(); m = readint(); fill_n(priority,maxn,0); fill_n(pcnt,maxp,0); for(int i = 0; i < n; i++){ q.push(i); priority[i] = readint(); pcnt[priority[i]]++; } } int main(){ int kase; scanf("%d",&kase); while(kase--){ init(); int timer = 1; while(!q.empty()){ int id = q.front(); int p = priority[id]; bool lower = false; for(int hp = maxp-1; hp > p; hp--){ if(pcnt[hp] > 0){ lower = true; break; } } q.pop(); if(lower){ q.push(id); continue; } if(id == m) break; pcnt[priority[id]]--; timer++; } printf("%d\n",timer); } }
56a503243c7abbc815cb2de9daaaaf61d86a4ee9
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/chrome/browser/interests/interests_fetcher_unittest.cc
f015810e3fb03e78e6c65b27e93e658ca88d22a3
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
6,441
cc
interests_fetcher_unittest.cc
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/interests/interests_fetcher.h" #include "base/bind.h" #include "base/bind_helpers.h" #include "base/command_line.h" #include "base/memory/ref_counted.h" #include "base/message_loop/message_loop.h" #include "base/threading/thread_task_runner_handle.h" #include "chrome/common/chrome_switches.h" #include "components/signin/core/browser/fake_profile_oauth2_token_service.h" #include "net/base/net_errors.h" #include "net/http/http_status_code.h" #include "net/url_request/test_url_fetcher_factory.h" #include "net/url_request/url_request_status.h" #include "net/url_request/url_request_test_util.h" #include "testing/gmock/include/gmock/gmock-generated-function-mockers.h" #include "testing/gmock/include/gmock/gmock-matchers.h" #include "testing/gmock/include/gmock/gmock-more-matchers.h" #include "testing/gmock/include/gmock/gmock-spec-builders.h" #include "testing/gtest/include/gtest/gtest.h" using testing::IsEmpty; using testing::Not; namespace { const int kInterestsFetcherURLFetcherID = 0; const char kInterestsURL[] = "http://www.fake.com"; const char kEmptyResponse[] = "{\n" " \"interests\": []\n" "}\n"; const char kSuccessfulResponse[] = "{\n" " \"interests\": [\n" " {\n" " \"name\": \"Google\",\n" " \"imageUrl\": \"https://fake.com/fake.png\",\n" " \"relevance\": 0.9\n" " },\n" " {\n" " \"name\": \"Google Chrome\",\n" " \"imageUrl\": \"https://fake.com/fake.png\",\n" " \"relevance\": 0.98\n" " }\n" " ]\n" "}\n"; const char kAccountId[] = "account@gmail.com"; std::vector<InterestsFetcher::Interest> GetExpectedEmptyResponse() { return std::vector<InterestsFetcher::Interest>(); } std::vector<InterestsFetcher::Interest> GetExpectedSuccessfulResponse() { std::vector<InterestsFetcher::Interest> res; res.push_back(InterestsFetcher::Interest{ "Google", GURL("https://fake.com/fake.png"), 0.9}); res.push_back(InterestsFetcher::Interest{ "Google Chrome", GURL("https://fake.com/fake.png"), 0.98}); return res; } } // namespace class InterestsFetcherTest : public testing::Test { public: InterestsFetcherTest() : request_context_(new net::TestURLRequestContextGetter( base::ThreadTaskRunnerHandle::Get())), url_fetcher_factory_(new net::TestURLFetcherFactory()) { token_service_.UpdateCredentials(kAccountId, "refresh_token"); base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); command_line->AppendSwitchASCII(switches::kInterestsURL, kInterestsURL); } MOCK_METHOD0(OnSuccessfulResponse, void()); MOCK_METHOD0(OnEmptyResponse, void()); MOCK_METHOD0(OnFailedResponse, void()); void OnReceivedInterests( std::unique_ptr<std::vector<InterestsFetcher::Interest>> interests) { if (!interests) { OnFailedResponse(); return; } if (*interests == GetExpectedEmptyResponse()) OnEmptyResponse(); else if (*interests == GetExpectedSuccessfulResponse()) OnSuccessfulResponse(); else FAIL() << "Unexpected interests response."; } protected: void RequestInterests() { request_.reset(new InterestsFetcher(&token_service_, kAccountId, request_context_.get())); request_->FetchInterests(base::Bind( &InterestsFetcherTest::OnReceivedInterests, base::Unretained(this))); } net::TestURLFetcher* GetURLFetcher() { net::TestURLFetcher* url_fetcher = url_fetcher_factory_->GetFetcherByID(kInterestsFetcherURLFetcherID); EXPECT_TRUE(url_fetcher); return url_fetcher; } void IssueAccessTokenErrors() { token_service_.IssueErrorForAllPendingRequestsForAccount( kAccountId, GoogleServiceAuthError::FromServiceError("Error!")); } void IssueAccessTokens() { token_service_.IssueAllTokensForAccount( kAccountId, "access_token", base::Time::Now() + base::TimeDelta::FromHours(1)); } void SendResponse(net::Error error, int response_code, const std::string& response) { net::TestURLFetcher* url_fetcher = GetURLFetcher(); url_fetcher->set_status(net::URLRequestStatus::FromError(error)); url_fetcher->set_response_code(response_code); url_fetcher->SetResponseString(response); url_fetcher->delegate()->OnURLFetchComplete(url_fetcher); } void SendValidResponse(const std::string& response) { SendResponse(net::OK, net::HTTP_OK, response); } void SendFailedResponse() { SendResponse(net::ERR_ABORTED, 0, std::string()); } void SendAuthorizationError() { SendResponse(net::OK, net::HTTP_UNAUTHORIZED, std::string()); } base::MessageLoop message_loop_; FakeProfileOAuth2TokenService token_service_; scoped_refptr<net::TestURLRequestContextGetter> request_context_; std::unique_ptr<net::TestURLFetcherFactory> url_fetcher_factory_; std::unique_ptr<InterestsFetcher> request_; }; TEST_F(InterestsFetcherTest, EmptyResponse) { RequestInterests(); EXPECT_CALL(*this, OnEmptyResponse()); IssueAccessTokens(); SendValidResponse(kEmptyResponse); } TEST_F(InterestsFetcherTest, SuccessfullResponse) { RequestInterests(); EXPECT_CALL(*this, OnSuccessfulResponse()); IssueAccessTokens(); SendValidResponse(kSuccessfulResponse); } TEST_F(InterestsFetcherTest, FailedResponse) { RequestInterests(); EXPECT_CALL(*this, OnFailedResponse()); IssueAccessTokens(); SendFailedResponse(); } TEST_F(InterestsFetcherTest, FailedOAuthRequest) { RequestInterests(); EXPECT_CALL(*this, OnFailedResponse()); IssueAccessTokenErrors(); } TEST_F(InterestsFetcherTest, RetryOnAuthorizationError) { RequestInterests(); EXPECT_CALL(*this, OnEmptyResponse()).Times(0); IssueAccessTokens(); SendAuthorizationError(); EXPECT_CALL(*this, OnEmptyResponse()); IssueAccessTokens(); SendValidResponse(kEmptyResponse); } TEST_F(InterestsFetcherTest, RetryOnlyOnceOnAuthorizationError) { RequestInterests(); EXPECT_CALL(*this, OnEmptyResponse()).Times(0); IssueAccessTokens(); SendAuthorizationError(); EXPECT_CALL(*this, OnFailedResponse()); IssueAccessTokens(); SendAuthorizationError(); }
4af60e3ed7cdf6bb59f3a3968777ef4405346786
41d772203dee3172340749995bfbb12d7564d348
/include/inversion/ToleranceChoice.h
39f57e458b83671dfe1370f6ad2737a62fa77e82
[]
no_license
thiesgerken/wavepi
d394ae3b1156e4b50afa7ac6226897b945377a42
5af37946dcc1910ad1cccdc76d2e2f546eeafec4
refs/heads/master
2023-03-21T06:45:25.333474
2021-03-10T21:37:37
2021-03-10T21:37:37
346,441,884
0
0
null
null
null
null
UTF-8
C++
false
false
1,334
h
ToleranceChoice.h
/* * ToleranceChoice.h * * Created on: 26.07.2017 * Author: thies */ #ifndef INCLUDE_INVERSION_TOLERANCECHOICE_H_ #define INCLUDE_INVERSION_TOLERANCECHOICE_H_ #include <deal.II/base/parameter_handler.h> #include <vector> namespace wavepi { namespace inversion { using namespace dealii; class ToleranceChoice { public: virtual ~ToleranceChoice() = default; // reset iteration history void reset(double target_discrepancy, double initial_discrepancy); // calculate a tolerance from the history (and add it to the tolerance history) double get_tolerance(); // add a new iteration to the history void add_iteration(double new_residual, int steps); static void declare_parameters(ParameterHandler &prm); virtual void get_parameters(ParameterHandler &prm); protected: // previous values. Note that they will have the same size when calculate_tolerance is called. std::vector<double> previous_tolerances; std::vector<int> required_steps; std::vector<double> discrepancies; std::string tolerance_prefix; double target_discrepancy; double initial_discrepancy; // calculate a new tolerance (possibly using the vectors above) virtual double calculate_tolerance() const = 0; }; } /* namespace inversion */ } /* namespace wavepi */ #endif /* INCLUDE_INVERSION_TOLERANCECHOICE_H_ */
c461c271f1ace0b039c839b654e7d538532e2758
3813f47d927fb0c7c6f2d56308eaad0549a698eb
/V3 - Big Numbers - Operators + Extra/POO- Proiect 2- Numere mari- Clase/Addition + Substraction.h
fb26dc2078d1b9428b460d21cb13513966d19bee
[]
no_license
IoanaToma/BasicCalculator-BigNumbers
c117355a598540ad274173066d5376a4d15dad7a
b8b2caa2739456a795156cd33e77430b3be406f5
refs/heads/master
2021-01-01T04:05:07.227490
2016-04-30T17:04:45
2016-04-30T17:04:45
57,452,049
0
0
null
null
null
null
UTF-8
C++
false
false
8,609
h
Addition + Substraction.h
// // Addition + Substraction.h // POO- Proiect 2- Numere mari- Clase // // Created by Ioana Toma on 24/03/14. // Copyright (c) 2014 Ioana Toma. All rights reserved. // #include <iostream> #include <fstream> using namespace std; //suma se face plecand de la cifra unitatilor void BigNumber::sum (BigNumber FirstNr, BigNumber SecondNr) //suma a doua numere de acelasi semn (suma uzuala) { int k = 0, s; elem *first = FirstNr.start->next, *second = SecondNr.start->next; while (first && second) //creez lista suma; atata timp cat exista cifre pentru ambele numere { if (first->info + second->info + k >= 10) //decid daca am transport la urmatoarea cifra; la suma celor doua cifre adaug si { //transportul,daca exista s = (first->info + second->info + k)%10; k = 1; //k = transportul } else { s = first->info + second->info + k; k = 0; } add_elem(s); //creez un nou nod in lista suma first = first->next; second = second->next; if (!first && !second && k) //decid daca dupa adunarea ultimelor doua cifre este necesar sa creez un nou nod pentru transportul ramas add_elem(k); } while (first) //acest while este doar pentru cazul in care numarul mai mare in modul are mai multe cifre { //si in acest caz se verifica daca exista transport if (first->info + k >= 10) { s = (first->info +k)%10; k = 1; } else { s = first->info + k; k = 0; } add_elem(s); first = first->next; if (!first && k) //daca s-a terminat lista repr. numarul mai mare in modul, dar mai aveam inca un transport de facut,creez inca un nod add_elem(k); } } //diferenta se face plecand de la cifra unitatilor void BigNumber::sub (BigNumber FirstNr, BigNumber SecondNr) //diferenta a doua numere de acelasi semn (diferenta uzuala) { int k = 0, d; elem *first = FirstNr.start->next, *second = SecondNr.start->next; while (first && second) //creez lista scadere; atata timp cat am cifre in ambele numere { if (first->info - k < second->info) //decid daca trebuie sa 'imprumut' de la urmatoarea cifra { d = first->info - second->info - k + 10; k = 1; //k= 'imprumutul' } else { d = first->info - second->info - k; k = 0; } add_elem(d); //creez/adaug un nou nod la lista diferenta first = first->next; second = second->next; } while (first) //pentru cazul in care numarul mai mare in modul are mai multe cifre { if (first->info - k < 0) { d = first->info - k + 10; k = 1; } else { d = first->info - k; k = 0; } add_elem(d); //adaug noi elemente la lista scadere first = first->next; } elem *p = end, *q; while (p->prev && !p->info) //avand in vedere ca rezultatul scaderii poate avea mai putine { //cifre decat numerele initiale, sterg toate zerourile de la q = end; //capat inspre inceput, pentru a nu afisa numere precum end = p->prev; // "0001" sau "0000" (pentru a lasa doar cifrele diferite de 0 end->next = NULL; //incepand cu cifra unitatilor delete q; p = end; } } //"adunarea" a doua numere poate fi si 'adunare uzuala', si 'scadere uzuala', in functie de ce semn au BigNumber BigNumber::operator+ (BigNumber SecondNr) //supraincarcarea operatorului + { BigNumber Sum; if (!start) //daca vreunul dintre numere nu exista, atunci functia va returna numarul care exista Sum = SecondNr; else if (!SecondNr.start) Sum = *this; else { int n1, n2, ok; n1 = count(*this); //n1 = numarul de cifre al primului numar; voi avea nevoie de el pentru a afla care numar este mai mare n2 = count(SecondNr); greater_number(*this, SecondNr, ok, n1, n2, Sum); Sum.delete_number(); //sterg Sum, in care este retinut cel mai mare dintre cele doua numere, deoarece am nevoie numai de valoarea lui ok elem *t; t = new elem; if (!ok || ok == 1) //daca cele doua numere sunt egale sau primul numar este mai mare in modul { if (start->info == SecondNr.start->info) //daca au acelasi semn, apelez suma uzuala, considerand primul numar mai mare in modul { Sum.sum (*this, SecondNr); t->info = start->info; //rezultatul va avea semnul comun al numerelor } else { Sum.sub (*this, SecondNr); //daca au semne diferite, apelez diferenta uzuala if (!ok) t->info = 10; //daca cele doua numere sunt egale, semnul va fi + (sa afiseze "+0") else t->info = start->info; //altfel rezultatul va avea semnul numarului mai mare in modul } } else //daca cel de-al doilea numar este mai mare in modul { if (start->info == SecondNr.start->info) //daca cele doua numere au acelasi semn { Sum.sum (SecondNr, *this); //apelez suma uzuala, considerand cel de-al doilea numar mai mare in modul t->info = SecondNr.start->info; //semnul rezultatului va fi semnul comun al celor doua numere } else //daca au semne diferite { Sum.sub (SecondNr, *this); //apelez diferenta uzuala, considerand cel de-al doilea numar mai mare in modul t->info = SecondNr.start->info; //semnul rezultatului va fi semnul numarului mai mare in modul } } t->next = Sum.start; //creez nodul pentru semn, pe care il adaug inaintea primul nod al listei suma t->prev = NULL; Sum.start->prev = t; Sum.start = t; } return Sum; } //"scaderea" a doua numere poate fi si 'adunare uzuala', si 'scadere uzuala', in functie de ce semn au BigNumber operator- (BigNumber FirstNr, BigNumber SecondNr) //supraincarcarea operatorului - { int n1, n2, ok; n1 = count(FirstNr); //n1 = numarul de cifre al primul numar, de care voi avea nevoia pentru a afla care dintre cele doua este mai mare n2 = count(SecondNr); //n2 = numarul de cifre al celui de-al doilea numar BigNumber Sub; greater_number(FirstNr, SecondNr, ok, n1, n2, Sub); Sub.delete_number(); elem *t; t = new elem; if (!ok || ok == 1) //daca numerele sunt egale sau primul este mai mare in modul { if (FirstNr.start->info == SecondNr.start->info) //daca au acelasi semn { Sub.sub (FirstNr, SecondNr);//apelez diferenta uzuala, considerand primul numar mai mare in modul if (!ok) t->info = 10; //daca numerele sunt egale, vreau sa imi afiseze "+0" else t->info = FirstNr.start->info; //altfel semnul rezultatului va fi semnul comun al celor doua numere } else //daca au semne diferite { Sub.sum (FirstNr, SecondNr);//apelez suma, considerand primul numar mai mare in modul t->info = FirstNr.start->info; //semnul rezultatului va fi semnul numarului mai mare in modul } } else //daca al doilea numar este mai mare in modul { if (FirstNr.start->info == SecondNr.start->info) //daca au acelasi semn { Sub.sub (SecondNr, FirstNr);//apelez diferenta uzuala, considerand al doilea numar mai mare in modul if (SecondNr.start->info == 10) t->info = 11; //semnul rezultatului va fi "inversul" semnului numarului care este mai mare in modul else t->info = 10; } else //daca au semne diferite { Sub.sum (SecondNr, FirstNr); //apelez suma, considerand al doilea numar mai mare in modul if (SecondNr.start->info == 10) t->info = 11; //semnul rezultatului va fi "inversul" semnului numarului mai mare in modul else t->info = 10; } } t->next = Sub.start; //creez nodul pentru semn, pe care il adaug inainte de primul nod al listei diferenta t->prev = NULL; Sub.start->prev = t; Sub.start = t; return Sub; }
8ed0def4f77778ed2d38fe88224e5141e8a5db71
10742a27296b2c886ff447826858852da758a857
/src/reranker/candidate-set.H
c1ec2d4ba74742c93cb0164d6198705dd148287a
[ "BSD-3-Clause" ]
permissive
alshamiri5/refr
cfb6a5a19112eccf8faa786d6a72e833edd00123
1db7e8cc53f9f245d0e24144c33599e980fa5d4c
refs/heads/master
2020-09-07T15:17:40.335609
2015-04-22T00:37:17
2015-04-22T00:37:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,625
h
candidate-set.H
// Copyright 2012, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE 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. // ----------------------------------------------------------------------------- // // /// \file /// Class to hold a single training instance for a reranker, which is a /// set of examples, typically the n-best output of some input process, posibly /// including a gold-standard feature vector. /// \author dbikel@google.com (Dan Bikel) #ifndef RERANKER_CANDIDATE_SET_H_ #define RERANKER_CANDIDATE_SET_H_ #include <iostream> #include <string> #include <memory> #include <vector> #include "candidate.H" #include "factory.H" namespace reranker { using std::shared_ptr; using std::ostream; using std::string; using std::vector; /// \class CandidateSet /// /// A class to hold a set of candidates, either for training or test. During /// training, a candidate set typically consists of a reference instance with /// one or more candidate instances. During test, a candidate set is simply /// a set of candidate instances. class CandidateSet { public: /// Constructs a new candidate set with no information set. CandidateSet() : compiled_(false) { } /// Constructs a candidate set with the specified key. /// /// \param key the unique key that identifies this candidate set CandidateSet(const string &key) : training_key_(key), compiled_(false) { } /// Destroys this instance. virtual ~CandidateSet() { } typedef vector<shared_ptr<Candidate> >::iterator iterator; typedef vector<shared_ptr<Candidate> >::const_iterator const_iterator; /// \class Scorer /// /// An inner interface for a model to score a \link CandidateSet\endlink. class Scorer : public FactoryConstructible { public: virtual void Score(Model *model, CandidateSet &candidates, bool training) = 0; }; // accessors const_iterator begin() const { return candidates_.begin(); } const_iterator end() const { return candidates_.end(); } iterator begin() { return candidates_.begin(); } iterator end() { return candidates_.end(); } size_t size() const { return candidates_.size(); } size_t best_scoring_index() const { return best_scoring_index_; } size_t gold_index() const { return gold_index_; } const string &training_key() const { return training_key_; } Candidate &Get(size_t idx) { return *(candidates_[idx]); } const Candidate &GetGold() const { return *(candidates_[gold_index_]); } const Candidate &GetBestScoring() const { return *(candidates_[best_scoring_index_]); } const string &reference_string() const { return reference_string_; } int reference_string_token_count() const { return reference_string_token_count_; } /// Returns the weight of the loss for this candidate set&rsquo;s reference. /// For now, this method returns the <tt>double</tt> representation of /// the value returned by the \link reference_string_token_count \endlink /// method. double loss_weight() const { return reference_string_token_count_; } /// Returns whether any symbolic features in any of the candidates /// in this candidate set were compiled by an invocation of \link /// CompileFeatures \endlink or any previous invocations of \link /// CompileFeatures \endlink bool compiled() const { return compiled_; } // mutators void AddCandidate(shared_ptr<Candidate> candidate) { candidates_.push_back(candidate); } /// Compiles any symbolic features in this candidate set. For each /// candidate, feature weights for symbolic features will be added /// to those for any features already specified with <tt>int</tt> /// uid&rsquo;s. /// /// \param symbols the map from symbols (string instances) /// to unique integer id&rsquo;s /// \param clear_features whether to clear each candidate&rsquo;s /// &ldquo;normal&rdquo; feature /// vector <b><i>prior to</i></b> /// compiling symbolic features /// \param clear_symbolic_features whether to clear each /// candidate&rsquo;s symbolic /// feature vector /// <b><i>after</i></b> updating the /// &ldquo;regular&rdquo; feature /// vector (to save space) /// \param force forces feature compilation on each /// candidate, even if this method has been /// previously invoked /// \return whether any symbolic features in any of the candidates /// in this candidate set were actually compiled by this /// method invocation or any previous invocations of this /// method /// /// \see Candidate::Compile bool CompileFeatures(Symbols *symbols, bool clear_features = false, bool clear_symbolic_features = true, bool force = false) { if (!compiled_ || force) { for (iterator it = begin(); it != end(); ++it) { compiled_ |= (*it)->Compile(symbols, clear_features, clear_symbolic_features, force); } } return compiled_; } /// Decompiles any non-symbolic features in the candidates in this /// candidate set. For each candidate, feature weights for /// non-symbolic features will be added to those for any features /// already specified with <tt>string</tt> uid&rsquo;s. /// /// \param symbols the map from symbols (string instances) /// to unique integer id&rsquo;s /// \param clear_symbolic_features whether to clear each /// candidate&rsquo;s symbolic /// feature vector <b><i>prior /// to</i></b> decompiling features /// \param clear_features whether to clear each candidate&rsquo;s /// &ldquo;normal&rdquo; feature /// vector <b><i>after</i></b> /// updating the symbolic feature /// vector (to save space) /// \param force forces feature decompilation on each /// candidate, even if this method has been /// previously invoked /// /// \see Candidate::Decompile void DecompileFeatures(Symbols *symbols, bool clear_symbolic_features = false, bool clear_features = true, bool force = false) { if (compiled_ || force) { for (iterator it = begin(); it != end(); ++it) { (*it)->Decompile(symbols, clear_symbolic_features, clear_features, force); } } compiled_ = false; } /// Clears the raw data for all candidates in this set by setting each /// to be the empty string. void ClearRawData() { for (iterator it = begin(); it != end(); ++it) { (*it)->set_raw_data(empty_string); } } void set_best_scoring_index(size_t index) { best_scoring_index_ = index; } void set_gold_index(size_t index) { gold_index_ = index; } void set_training_key(const string &training_key) { training_key_ = training_key; } void set_reference_string(const string &reference_string) { reference_string_ = reference_string; } void set_reference_string_token_count(int reference_string_token_count) { reference_string_token_count_ = reference_string_token_count; } // I/O methods friend ostream &operator<<(ostream &os, const CandidateSet &set) { os << "Candidate set with key \"" << set.training_key() << "\" and reference string\n\t" << set.reference_string() << "\nwith " << set.size() << " candidates:\n"; for (const_iterator it = set.begin(); it != set.end(); ++it) { os << "\t" << *(*it) << "\n"; } return os; } private: // data members /// The candidates stored by this instance. vector<shared_ptr<Candidate> > candidates_; /// The unique key of the training example that this candidate belongs to. string training_key_; /// The index in candidates_ for the gold-standard "candidate". size_t gold_index_; /// The index in candidates_ for the bet-scoring candidate. size_t best_scoring_index_; /// The reference string against which all these candidates may be judged. string reference_string_; /// The number of tokens in the reference string. int reference_string_token_count_; /// Whether the \link CompileFeatures \endlink method has been invoked. bool compiled_; static string empty_string; }; #define REGISTER_NAMED_CANDIDATE_SET_SCORER(TYPE,NAME) \ REGISTER_NAMED(TYPE,NAME,CandidateSet::Scorer) #define REGISTER_CANDIDATE_SET_SCORER(TYPE) \ REGISTER_NAMED_CANDIDATE_SET_SCORER(TYPE,TYPE) } // namespace reranker #endif
19d5c92ee84b846b9c544fd50b4e4ec8be9f8475
7b216079d6a97057f072f50dfea528a3162572c0
/ED1I3/ex18-09-20.cpp
ef225ce044b693940334bbd5ddf75c730683c77b
[]
no_license
PedroPaulo-Faria/IFSP
39a0b0eb29aa3b2d0d5c674d801e13ecba8b0b38
43efbfee3a5a98b10422a85b9c07c1e5c68ed000
refs/heads/master
2023-01-09T04:26:56.469635
2020-11-12T20:23:13
2020-11-12T20:23:13
291,893,834
0
0
null
null
null
null
UTF-8
C++
false
false
3,939
cpp
ex18-09-20.cpp
#include <iostream> using namespace std; struct Funcionario { int prontuario; string nome; double salario; struct Funcionario *prox; }; Funcionario* init(){ return NULL; }; int isEmpty(Funcionario* lista) { return (lista== NULL); } Funcionario* insert(Funcionario* lista,int p,string n, double s) { Funcionario* novo = new Funcionario; novo->prontuario = p; novo->nome=n; novo->salario=s; novo->prox = lista; return novo; } void print(Funcionario* lista) { Funcionario* aux; aux = lista; double sal=0; while (aux != NULL) { sal=sal+aux->salario; cout<<"----------------------------------"<<endl; cout << "Prontuario: " << aux->prontuario << endl; cout << "Nome: " << aux->nome << endl; cout << "Salario:R$ " << aux->salario << endl; cout<<"----------------------------------"<<endl; aux = aux->prox; } cout<<"Total de salario:R$"<<sal<<endl; cout<<"----------------------------------"<<endl; } Funcionario* find(Funcionario* lista, int p) { Funcionario* aux; aux = lista; while (aux != NULL && aux->prontuario != p) { aux = aux->prox; } if (aux == NULL) { aux = new Funcionario; aux->prontuario = -1; aux->prox = NULL; } return aux; } Funcionario* remove(Funcionario* lista, int p) { Funcionario *ant = NULL; Funcionario *aux; aux = lista; while (aux != NULL && aux->prontuario != p) { ant = aux; aux = aux->prox; } if (aux == NULL) { return lista; } if (ant == NULL) { lista = aux->prox; } else { ant->prox = aux->prox; } free(aux); return lista; } void freeList(Funcionario* lista) { Funcionario *aux; aux = lista; while (aux != NULL) { Funcionario *ant = aux->prox; free(aux); aux = ant; } } int main(int argc, char** argv) { Funcionario *listafunc; int escolha; int sair =1; string nome; int prontuario; double salario; listafunc = init(); while(sair!=0) { cout<< "0.Sair:" <<endl; cout<<"1.Incluir: "<<endl; cout<<"2.Excluir: "<<endl; cout<<"3.Pesquisar: "<<endl; cout<<"4.listar: "<<endl; cout<<"Selecione a opcao que deseja: "; cin>>escolha; cout <<endl; if(escolha==0){ sair=0; } if(escolha==1){ cout<<"Insira o prontuario: "; cin>>prontuario; cout<<endl; cout<<"Insira o nome: "; cin>>nome; cout<<endl; cout<<"Insira salario:R$ "; cin>>salario; listafunc=insert(listafunc,prontuario,nome,salario); cout<<endl; } if(escolha==2){ cout<<"Digite o prontuario: "; cin>>prontuario; Funcionario *procurado; procurado = find(listafunc,prontuario); if (procurado->prontuario > -1) { cout << "Item excluido: Nome: " << procurado->nome<<" -- Prontuario: "<<procurado->prontuario<<" -- Salario: R$"<<procurado->salario << endl; listafunc = remove(listafunc,prontuario); } else { cout <<"Prontuario nao encontrado!" << endl; } cout<<endl; } if(escolha==3){ cout<<"Digite o prontuario que deseja pesquisar: "; cin>>prontuario; cout<<endl; Funcionario *procurado; procurado = find(listafunc,prontuario); if (procurado->prontuario > -1) { cout << "Resultado da busca: Nome: " << procurado->nome<<" -- Prontuario: "<<procurado->prontuario<<" -- Salarario: R$"<<procurado->salario << endl; } else { cout <<"Nao encontrado" << endl; } } if(escolha==4){ Funcionario *listavazia; listavazia=listafunc; if(listavazia==NULL){ cout <<endl; cout << "Lista vazia!" << endl; cout <<endl; } else { print(listafunc); } } } freeList(listafunc); return 0; }
9a7a00ea567a5bd54e84f80aa2939827e18c4c53
52ca17dca8c628bbabb0f04504332c8fdac8e7ea
/boost/math/special_functions/sqrt1pm1.hpp
f61407f649c6d44848095f523119146c48bb14ef
[]
no_license
qinzuoyan/thirdparty
f610d43fe57133c832579e65ca46e71f1454f5c4
bba9e68347ad0dbffb6fa350948672babc0fcb50
refs/heads/master
2021-01-16T17:47:57.121882
2015-04-21T06:59:19
2015-04-21T06:59:19
33,612,579
0
0
null
2015-04-08T14:39:51
2015-04-08T14:39:51
null
UTF-8
C++
false
false
77
hpp
sqrt1pm1.hpp
#include "thirdparty/boost_1_58_0/boost/math/special_functions/sqrt1pm1.hpp"
4fb9014242ba419c21796f958f5f9b7f09f6ef43
b6e8488c1fe0c0978f77dfebcd79c8c7779815bd
/os_Nitros/nitros/core/sem.hpp
17c1d84db86efd2a8c41cbfd0c0497d6372d2ab9
[ "MIT" ]
permissive
wolfram77/todo-avr-os
2b1e121b212208d83f4702cd116e81ae71b11506
88fb0f8eb849cbe8f5b4d81216ea5cdfdc299a3c
refs/heads/master
2023-06-08T16:16:15.715322
2020-05-02T19:37:25
2020-05-02T19:37:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
875
hpp
sem.hpp
#ifndef _CORE_SEM_HPP_ #define _CORE_SEM_HPP_ // Define typedef word sempahore; // Wait void sem_WaitF(sempahore* sem) { task_Now->Block = sem; task_Blk.Add((uint) task_Now); } #define sem_Wait(sem, ...) \ macro_Begin \ (sem)--; \ if((sem) < 0) \ { \ sem_WaitF(&sem); \ task_Save(__VA_ARGS__); \ task_Block(); \ } \ macro_End #define sem_Take sem_Wait // Signal void sem_SignalF(sempahore* sem) { for(uword i=0; i<task_Blk.Count; i++) { task* tsk = (task*) task_Blk.Item[i]; if(tsk->Block == sem) { task_RdyH.PushRear(tsk); task_Blk.DeleteAt(i); tsk->Block = null; return; } } } #define sem_Signal(sem, ...) \ macro_Begin \ (sem)++; \ if((sem) <= 0) \ { \ sem_SignalF(&(sem)); \ task_Yield(); \ } \ macro_End #define sem_Release sem_Signal // Check if free to use #define sem_IsFree(sem) \ ((semp) > 0) #endif /* _CORE_SEM_HPP_ */
6f31da171ff2cd94b6be2ff5582710d028e32a70
37fd355d5d0b9a60e6c5799b029ef95eac749afe
/src/ldk/tools/InSequenceChecker.hpp
c3a06234623301e4b32798bb4e77731723f472e2
[]
no_license
freiheitsnetz/openwns-library
7a903aff2ad9d120d53195076d900bd020367980
eb98600df8b0baca1d90907b5dd2c80c64ab9ffa
refs/heads/master
2021-01-18T05:07:32.803956
2014-03-26T16:16:19
2014-03-26T16:16:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,910
hpp
InSequenceChecker.hpp
/****************************************************************************** * WNS (Wireless Network Simulator) * * __________________________________________________________________________ * * * * Copyright (C) 2004-2006 * * Chair of Communication Networks (ComNets) * * Kopernikusstr. 16, D-52074 Aachen, Germany * * phone: ++49-241-80-27910 (phone), fax: ++49-241-80-22242 * * email: wns@comnets.rwth-aachen.de * * www: http://wns.comnets.rwth-aachen.de * ******************************************************************************/ #ifndef WNS_LDK_TOOLS_INSEQUENCECHECKER_HPP #define WNS_LDK_TOOLS_INSEQUENCECHECKER_HPP #include <WNS/ldk/Processor.hpp> #include <WNS/ldk/CommandTypeSpecifier.hpp> #include <WNS/ldk/HasReceptor.hpp> #include <WNS/ldk/HasConnector.hpp> #include <WNS/ldk/HasDeliverer.hpp> #include <WNS/Cloneable.hpp> #include <WNS/pyconfig/View.hpp> #include <WNS/logger/Logger.hpp> namespace wns { namespace ldk { namespace tools { class InSequenceCheckerCommand : public wns::ldk::Command { public: InSequenceCheckerCommand() { magic.sequenceID = 0; } struct {} local; struct {} peer; struct { unsigned int sequenceID; } magic; }; // InSequenceChecker /** * @brief The InSequenceChecker FU assures that all compounds of a * flow are delivered in the order they are sent. * @author Klaus Sambale <ksw@comnets.rwth-aachen.de> */ class InSequenceChecker : public wns::ldk::Processor<InSequenceChecker>, public wns::ldk::CommandTypeSpecifier<InSequenceCheckerCommand>, public wns::ldk::HasReceptor<>, public wns::ldk::HasConnector<>, public wns::ldk::HasDeliverer<>, public wns::Cloneable<InSequenceChecker> { public: /** * @brief Constructor */ explicit InSequenceChecker(wns::ldk::fun::FUN* fun, const wns::pyconfig::View& config); /** * @brief Destructor */ virtual ~InSequenceChecker(); private: /** * @name FunctionalUnit interface */ //@{ virtual void processOutgoing(const wns::ldk::CompoundPtr&); virtual void processIncoming(const wns::ldk::CompoundPtr&); //@} unsigned int sequenceIDOutgoing; unsigned int sequenceIDExpected; wns::logger::Logger logger; }; } // tools } // ldk } // wns #endif // NOT defined WNS_LDK_TOOLS_INSEQUENCECHECKER_HPP
cdd14d09372b5031dfdffce8106886842e8ebeff
56a77194fc0cd6087b0c2ca1fb6dc0de64b8a58a
/applications/PfemFluidDynamicsApplication/pfem_fluid_dynamics_application.cpp
647542fa32f4daa70b7d46bbdb82e63bbb77041a
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
KratosMultiphysics/Kratos
82b902a2266625b25f17239b42da958611a4b9c5
366949ec4e3651702edc6ac3061d2988f10dd271
refs/heads/master
2023-08-30T20:31:37.818693
2023-08-30T18:01:01
2023-08-30T18:01:01
81,815,495
994
285
NOASSERTION
2023-09-14T13:22:43
2017-02-13T10:58:24
C++
UTF-8
C++
false
false
29,824
cpp
pfem_fluid_dynamics_application.cpp
// // Project Name: KratosPfemFluidDynamicsApplication $ // Created by: $Author: JMCarbonell $ // Last modified by: $Co-Author: $ // Date: $Date: February 2016 $ // Revision: $Revision: 0.0 $ // // // System includes // External includes // Project includes #include "includes/define.h" #include "geometries/triangle_2d_3.h" #include "geometries/triangle_2d_6.h" #include "geometries/quadrilateral_2d_4.h" #include "geometries/quadrilateral_2d_8.h" #include "geometries/triangle_3d_3.h" #include "geometries/line_2d_3.h" #include "geometries/quadrilateral_3d_4.h" #include "geometries/quadrilateral_3d_8.h" #include "geometries/quadrilateral_3d_9.h" #include "geometries/tetrahedra_3d_4.h" #include "geometries/tetrahedra_3d_10.h" #include "geometries/hexahedra_3d_8.h" #include "geometries/hexahedra_3d_20.h" #include "geometries/hexahedra_3d_27.h" #include "geometries/prism_3d_6.h" #include "geometries/prism_3d_15.h" #include "geometries/point_2d.h" #include "geometries/point_3d.h" #include "includes/element.h" #include "includes/condition.h" #include "includes/variables.h" #include "pfem_fluid_dynamics_application.h" namespace Kratos { KratosPfemFluidDynamicsApplication::KratosPfemFluidDynamicsApplication() : KratosApplication("PfemFluidDynamicsApplication"), mTwoStepUpdatedLagrangianVPImplicitElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianVPImplicitElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianVPImplicitElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianVPImplicitElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mTwoStepUpdatedLagrangianVPImplicitSolidElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianVPImplicitSolidElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianVPImplicitSolidElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianVPImplicitSolidElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedSolidElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedSolidElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedSolidElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedSolidElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mUpdatedLagrangianVImplicitSolidElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mUpdatedLagrangianVImplicitSolidElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mUpdatedLagrangianVImplicitSolidElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mUpdatedLagrangianVImplicitSolidElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mTwoStepUpdatedLagrangianVPImplicitFluidFicElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianVPImplicitFluidFicElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianVPImplicitFluidFicElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianVPImplicitFluidFicElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mTwoStepUpdatedLagrangianVPImplicitFluidPspgElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianVPImplicitFluidPspgElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianVPImplicitFluidPspgElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianVPImplicitFluidPspgElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mTwoStepUpdatedLagrangianVPImplicitFluidDEMcouplingElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianVPImplicitFluidDEMcouplingElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianVPImplicitFluidDEMcouplingElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianVPImplicitFluidDEMcouplingElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedFluidElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedFluidElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedFluidElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedFluidElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mUpdatedLagrangianElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mUpdatedLagrangianElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mUpdatedLagrangianElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mUpdatedLagrangianElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mTwoStepUpdatedLagrangianElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mTwoStepUpdatedLagrangianElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mTwoStepUpdatedLagrangianElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mTwoStepUpdatedLagrangianElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mThreeStepUpdatedLagrangianElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mThreeStepUpdatedLagrangianElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mThreeStepUpdatedLagrangianElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mThreeStepUpdatedLagrangianElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mThreeStepFirstOrderUpdatedLagrangianElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mThreeStepFirstOrderUpdatedLagrangianElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mThreeStepFirstOrderUpdatedLagrangianElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mThreeStepFirstOrderUpdatedLagrangianElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mThreeStepSecondOrderUpdatedLagrangianElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mThreeStepSecondOrderUpdatedLagrangianElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mThreeStepSecondOrderUpdatedLagrangianElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mThreeStepSecondOrderUpdatedLagrangianElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))), mThreeStepSecondOrderPspgUpdatedLagrangianElement2D(0, Element::GeometryType::Pointer(new Triangle2D3<Node>(Element::GeometryType::PointsArrayType(3)))), mThreeStepSecondOrderPspgUpdatedLagrangianElement2Dquadratic(0, Element::GeometryType::Pointer(new Triangle2D6<Node>(Element::GeometryType::PointsArrayType(6)))), mThreeStepSecondOrderPspgUpdatedLagrangianElement3D(0, Element::GeometryType::Pointer(new Tetrahedra3D4<Node>(Element::GeometryType::PointsArrayType(4)))), mThreeStepSecondOrderPspgUpdatedLagrangianElement3Dquadratic(0, Element::GeometryType::Pointer(new Tetrahedra3D10<Node>(Element::GeometryType::PointsArrayType(10)))) { } void KratosPfemFluidDynamicsApplication::Register() { std::cout << " ___ __ ___ _ _ _ " << std::endl; std::cout << " KRATOS| _ \\/ _|___ _ __ | __| |_ _(_)__| | " << std::endl; std::cout << " | _/ _/ -_) ' \\| _|| | || | / _` | " << std::endl; std::cout << " |_| |_| \\___|_|_|_|_| |_|\\_,_|_\\__,_|DYNAMICS " << std::endl; std::cout << "Initializing KratosPfemFluidDynamicsApplication... " << std::endl; // Register Variables (variables created in pfem_fluid_dynamics_application_variables.cpp) // Material postprocess + invariants // KRATOS_REGISTER_VARIABLE(M_MODULUS) // KRATOS_REGISTER_VARIABLE(PATCH_INDEX); // KRATOS_REGISTER_VARIABLE(NORMVELOCITY); KRATOS_REGISTER_VARIABLE(NO_MESH); KRATOS_REGISTER_VARIABLE(INITIAL_DELTA_TIME); KRATOS_REGISTER_VARIABLE(CURRENT_DELTA_TIME); KRATOS_REGISTER_VARIABLE(TIME_INTERVAL_CHANGED); KRATOS_REGISTER_VARIABLE(BAD_VELOCITY_CONVERGENCE); KRATOS_REGISTER_VARIABLE(BAD_PRESSURE_CONVERGENCE); KRATOS_REGISTER_VARIABLE(STEPS_WITH_CHANGED_DT); KRATOS_REGISTER_VARIABLE(MAIN_MATERIAL_PROPERTY); KRATOS_REGISTER_VARIABLE(ISOLATED_NODE); KRATOS_REGISTER_VARIABLE(NODAL_H_WALL); KRATOS_REGISTER_VARIABLE(MECHANICAL_DISSIPATION); // Papanastasiou variables KRATOS_REGISTER_VARIABLE(YIELDED); KRATOS_REGISTER_VARIABLE(FLOW_INDEX); KRATOS_REGISTER_VARIABLE(YIELD_SHEAR); KRATOS_REGISTER_VARIABLE(ADAPTIVE_EXPONENT); // Frictional Viscoplastic variables KRATOS_REGISTER_VARIABLE(COHESION); // mu(I)-rheology variables KRATOS_REGISTER_VARIABLE(STATIC_FRICTION); KRATOS_REGISTER_VARIABLE(DYNAMIC_FRICTION); KRATOS_REGISTER_VARIABLE(INERTIAL_NUMBER_ZERO); KRATOS_REGISTER_VARIABLE(GRAIN_DIAMETER); KRATOS_REGISTER_VARIABLE(GRAIN_DENSITY); KRATOS_REGISTER_VARIABLE(REGULARIZATION_COEFFICIENT); KRATOS_REGISTER_VARIABLE(PRESSURE_VELOCITY); KRATOS_REGISTER_VARIABLE(PRESSURE_ACCELERATION); KRATOS_REGISTER_VARIABLE(NODAL_ERROR_XX); KRATOS_REGISTER_VARIABLE(NODAL_CAUCHY_STRESS); KRATOS_REGISTER_VARIABLE(NODAL_DEVIATORIC_CAUCHY_STRESS); KRATOS_REGISTER_VARIABLE(NODAL_SFD_NEIGHBOURS); KRATOS_REGISTER_VARIABLE(NODAL_SFD_NEIGHBOURS_ORDER); KRATOS_REGISTER_VARIABLE(NODAL_DEFORMATION_GRAD); KRATOS_REGISTER_VARIABLE(NODAL_DEFORMATION_GRAD_VEL); KRATOS_REGISTER_VARIABLE(NODAL_SPATIAL_DEF_RATE); KRATOS_REGISTER_VARIABLE(NODAL_VOLUMETRIC_DEF_RATE); KRATOS_REGISTER_VARIABLE(NODAL_EQUIVALENT_STRAIN_RATE); KRATOS_REGISTER_VARIABLE(NODAL_MEAN_MESH_SIZE); KRATOS_REGISTER_VARIABLE(NODAL_TAU); KRATOS_REGISTER_VARIABLE(NODAL_FREESURFACE_AREA); KRATOS_REGISTER_VARIABLE(VOLUMETRIC_COEFFICIENT); KRATOS_REGISTER_VARIABLE(DEVIATORIC_COEFFICIENT); KRATOS_REGISTER_VARIABLE(INTERFACE_NODE); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_VOLUME); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_CAUCHY_STRESS); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_DEVIATORIC_CAUCHY_STRESS); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_SFD_NEIGHBOURS); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_SFD_NEIGHBOURS_ORDER); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_DEFORMATION_GRAD); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_DEFORMATION_GRAD_VEL); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_SPATIAL_DEF_RATE); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_VOLUMETRIC_DEF_RATE); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_EQUIVALENT_STRAIN_RATE); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_MEAN_MESH_SIZE); KRATOS_REGISTER_VARIABLE(SOLID_DENSITY); KRATOS_REGISTER_VARIABLE(SOLID_NODAL_FREESURFACE_AREA); // Register Elements KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPImplicitElement2D", mTwoStepUpdatedLagrangianVPImplicitElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPImplicitElement2Dquadratic", mTwoStepUpdatedLagrangianVPImplicitElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPImplicitElement3D", mTwoStepUpdatedLagrangianVPImplicitElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPImplicitElement3Dquadratic", mTwoStepUpdatedLagrangianVPImplicitElement3Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement2D", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement2Dquadratic", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement3D", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement3Dquadratic", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedElement3Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPSolidElement2D", mTwoStepUpdatedLagrangianVPImplicitSolidElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPSolidElement2Dquadratic", mTwoStepUpdatedLagrangianVPImplicitSolidElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPSolidElement3D", mTwoStepUpdatedLagrangianVPImplicitSolidElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPSolidElement3Dquadratic", mTwoStepUpdatedLagrangianVPImplicitSolidElement3Dquadratic); KRATOS_REGISTER_ELEMENT("UpdatedLagrangianVSolidElement2D", mUpdatedLagrangianVImplicitSolidElement2D); KRATOS_REGISTER_ELEMENT("UpdatedLagrangianVSolidElement2Dquadratic", mUpdatedLagrangianVImplicitSolidElement2Dquadratic); KRATOS_REGISTER_ELEMENT("UpdatedLagrangianVSolidElement3D", mUpdatedLagrangianVImplicitSolidElement3D); KRATOS_REGISTER_ELEMENT("UpdatedLagrangianVSolidElement3Dquadratic", mUpdatedLagrangianVImplicitSolidElement3Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPNodallyIntegratedSolidElement2D", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedSolidElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPNodallyIntegratedSolidElement2Dquadratic", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedSolidElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPNodallyIntegratedSolidElement3D", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedSolidElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPNodallyIntegratedSolidElement3Dquadratic", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedSolidElement3Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidElement2D", mTwoStepUpdatedLagrangianVPImplicitFluidFicElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidElement2Dquadratic", mTwoStepUpdatedLagrangianVPImplicitFluidFicElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidElement3D", mTwoStepUpdatedLagrangianVPImplicitFluidFicElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidElement3Dquadratic", mTwoStepUpdatedLagrangianVPImplicitFluidFicElement3Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidPspgElement2D", mTwoStepUpdatedLagrangianVPImplicitFluidPspgElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidPspgElement2Dquadratic", mTwoStepUpdatedLagrangianVPImplicitFluidPspgElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidPspgElement3D", mTwoStepUpdatedLagrangianVPImplicitFluidPspgElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidPspgElement3Dquadratic", mTwoStepUpdatedLagrangianVPImplicitFluidPspgElement3Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidDEMcouplingElement2D", mTwoStepUpdatedLagrangianVPImplicitFluidDEMcouplingElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidDEMcouplingElement2Dquadratic", mTwoStepUpdatedLagrangianVPImplicitFluidDEMcouplingElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidDEMcouplingElement3D", mTwoStepUpdatedLagrangianVPImplicitFluidDEMcouplingElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPFluidDEMcouplingElement3Dquadratic", mTwoStepUpdatedLagrangianVPImplicitFluidDEMcouplingElement3Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPNodallyIntegratedFluidElement2D", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedFluidElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPNodallyIntegratedFluidElement2Dquadratic", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedFluidElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPNodallyIntegratedFluidElement3D", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedFluidElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianVPNodallyIntegratedFluidElement3Dquadratic", mTwoStepUpdatedLagrangianVPImplicitNodallyIntegratedFluidElement3Dquadratic); KRATOS_REGISTER_ELEMENT("UpdatedLagrangianElement2D", mUpdatedLagrangianElement2D); KRATOS_REGISTER_ELEMENT("UpdatedLagrangianElement2Dquadratic", mUpdatedLagrangianElement2Dquadratic); KRATOS_REGISTER_ELEMENT("UpdatedLagrangianElement3D", mUpdatedLagrangianElement3D); KRATOS_REGISTER_ELEMENT("UpdatedLagrangianElement3Dquadratic", mUpdatedLagrangianElement3Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianElement2D", mTwoStepUpdatedLagrangianElement2D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianElement2Dquadratic", mTwoStepUpdatedLagrangianElement2Dquadratic); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianElement3D", mTwoStepUpdatedLagrangianElement3D); KRATOS_REGISTER_ELEMENT("TwoStepUpdatedLagrangianElement3Dquadratic", mTwoStepUpdatedLagrangianElement3Dquadratic); KRATOS_REGISTER_ELEMENT("ThreeStepUpdatedLagrangianElement2D", mThreeStepUpdatedLagrangianElement2D); KRATOS_REGISTER_ELEMENT("ThreeStepUpdatedLagrangianElement2Dquadratic", mThreeStepUpdatedLagrangianElement2Dquadratic); KRATOS_REGISTER_ELEMENT("ThreeStepUpdatedLagrangianElement3D", mThreeStepUpdatedLagrangianElement3D); KRATOS_REGISTER_ELEMENT("ThreeStepUpdatedLagrangianElement3Dquadratic", mThreeStepUpdatedLagrangianElement3Dquadratic); KRATOS_REGISTER_ELEMENT("ThreeStepFirstOrderUpdatedLagrangianElement2D", mThreeStepFirstOrderUpdatedLagrangianElement2D); KRATOS_REGISTER_ELEMENT("ThreeStepFirstOrderUpdatedLagrangianElement2Dquadratic", mThreeStepFirstOrderUpdatedLagrangianElement2Dquadratic); KRATOS_REGISTER_ELEMENT("ThreeStepFirstOrderUpdatedLagrangianElement3D", mThreeStepFirstOrderUpdatedLagrangianElement3D); KRATOS_REGISTER_ELEMENT("ThreeStepFirstOrderUpdatedLagrangianElement3Dquadratic", mThreeStepFirstOrderUpdatedLagrangianElement3Dquadratic); KRATOS_REGISTER_ELEMENT("ThreeStepSecondOrderUpdatedLagrangianElement2D", mThreeStepSecondOrderUpdatedLagrangianElement2D); KRATOS_REGISTER_ELEMENT("ThreeStepSecondOrderUpdatedLagrangianElement2Dquadratic", mThreeStepSecondOrderUpdatedLagrangianElement2Dquadratic); KRATOS_REGISTER_ELEMENT("ThreeStepSecondOrderUpdatedLagrangianElement3D", mThreeStepSecondOrderUpdatedLagrangianElement3D); KRATOS_REGISTER_ELEMENT("ThreeStepSecondOrderUpdatedLagrangianElement3Dquadratic", mThreeStepSecondOrderUpdatedLagrangianElement3Dquadratic); KRATOS_REGISTER_ELEMENT("ThreeStepSecondOrderPspgUpdatedLagrangianElement2D", mThreeStepSecondOrderPspgUpdatedLagrangianElement2D); KRATOS_REGISTER_ELEMENT("ThreeStepSecondOrderPspgUpdatedLagrangianElement2Dquadratic", mThreeStepSecondOrderPspgUpdatedLagrangianElement2Dquadratic); KRATOS_REGISTER_ELEMENT("ThreeStepSecondOrderPspgUpdatedLagrangianElement3D", mThreeStepSecondOrderPspgUpdatedLagrangianElement3D); KRATOS_REGISTER_ELEMENT("ThreeStepSecondOrderPspgUpdatedLagrangianElement3Dquadratic", mThreeStepSecondOrderPspgUpdatedLagrangianElement3Dquadratic); // Register Conditions // Register Fluid Constitutive Laws KRATOS_REGISTER_CONSTITUTIVE_LAW("Bingham2DLaw", mBingham2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("Bingham3DLaw", mBingham3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("BinghamTemperatureDependent2DLaw", mBinghamTemperatureDependent2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("BinghamTemperatureDependent3DLaw", mBinghamTemperatureDependent3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("HerschelBulkley2DLaw", mHerschelBulkley2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("HerschelBulkley3DLaw", mHerschelBulkley3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("FrictionalViscoplastic2DLaw", mFrictionalViscoplastic2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("FrictionalViscoplastic3DLaw", mFrictionalViscoplastic3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("FrictionalViscoplasticTemperatureDependent2DLaw", mFrictionalViscoplasticTemperatureDependent2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("FrictionalViscoplasticTemperatureDependent3DLaw", mFrictionalViscoplasticTemperatureDependent3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("Newtonian2DLaw", mNewtonian2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("Newtonian3DLaw", mNewtonian3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("NewtonianTemperatureDependent2DLaw", mNewtonianTemperatureDependent2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("NewtonianTemperatureDependent3DLaw", mNewtonianTemperatureDependent3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("MuIRheology2DLaw", mMuIRheology2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("MuIRheology3DLaw", mMuIRheology3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("MuIRheologyTemperatureDependent2DLaw", mMuIRheologyTemperatureDependent2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("MuIRheologyTemperatureDependent3DLaw", mMuIRheologyTemperatureDependent3DLaw); // Register Solid Constitutive Laws KRATOS_REGISTER_CONSTITUTIVE_LAW("Hypoelastic2DLaw", mHypoelastic2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("Hypoelastic3DLaw", mHypoelastic3DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("HypoelasticTemperatureDependent2DLaw", mHypoelasticTemperatureDependent2DLaw); KRATOS_REGISTER_CONSTITUTIVE_LAW("HypoelasticTemperatureDependent3DLaw", mHypoelasticTemperatureDependent3DLaw); // Register Flow Rules // Register Yield Criterion // Register Hardening Laws } } // namespace Kratos.
4fb6a7f1b7230907f9ba02de02aa059f558bd5a4
d705efe198924c605d31e079dcaab483140c5e56
/IT 111 - Programming 1/letter grade.cpp
d9ebbce23569a9827089104d72198bc5e9be0706
[]
no_license
rjxircgz/programming
5ccc6dbf76ea1199c7981ae94cc48a833c111fee
b761d3e9788c26127c4bbb7673b065f5fab0d416
refs/heads/master
2021-01-10T05:13:09.535360
2016-03-22T00:56:22
2016-03-22T00:56:22
54,433,760
0
0
null
null
null
null
UTF-8
C++
false
false
316
cpp
letter grade.cpp
#include <stdio.h> void main() { int grade; printf("enter grade\n"); scanf("%d",&grade); if (grade<=100 || grade>=90) { printf("letter grade is A\n"); } if (grade<=89 || grade>=80) { printf("letter grade is B\n"); } if (grade<80) { printf("the student bogo\n"); } }
71a4b874fe1eef33909779e5d78dac89a404471c
d14b5d78b72711e4614808051c0364b7bd5d6d98
/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
3af02ea36c7ba44d711965046d885d7266e189a1
[ "Apache-2.0" ]
permissive
google/swiftshader
76659addb1c12eb1477050fded1e7d067f2ed25b
5be49d4aef266ae6dcc95085e1e3011dad0e7eb7
refs/heads/master
2023-07-21T23:19:29.415159
2023-07-21T19:58:29
2023-07-21T20:50:19
62,297,898
1,981
306
Apache-2.0
2023-07-05T21:29:34
2016-06-30T09:25:24
C++
UTF-8
C++
false
false
2,297
cpp
DIALineNumber.cpp
//===- DIALineNumber.cpp - DIA implementation of IPDBLineNumber -*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "llvm/DebugInfo/PDB/DIA/DIALineNumber.h" using namespace llvm; using namespace llvm::pdb; DIALineNumber::DIALineNumber(CComPtr<IDiaLineNumber> DiaLineNumber) : LineNumber(DiaLineNumber) {} uint32_t DIALineNumber::getLineNumber() const { DWORD Line = 0; return (S_OK == LineNumber->get_lineNumber(&Line)) ? Line : 0; } uint32_t DIALineNumber::getLineNumberEnd() const { DWORD LineEnd = 0; return (S_OK == LineNumber->get_lineNumberEnd(&LineEnd)) ? LineEnd : 0; } uint32_t DIALineNumber::getColumnNumber() const { DWORD Column = 0; return (S_OK == LineNumber->get_columnNumber(&Column)) ? Column : 0; } uint32_t DIALineNumber::getColumnNumberEnd() const { DWORD ColumnEnd = 0; return (S_OK == LineNumber->get_columnNumberEnd(&ColumnEnd)) ? ColumnEnd : 0; } uint32_t DIALineNumber::getAddressSection() const { DWORD Section = 0; return (S_OK == LineNumber->get_addressSection(&Section)) ? Section : 0; } uint32_t DIALineNumber::getAddressOffset() const { DWORD Offset = 0; return (S_OK == LineNumber->get_addressOffset(&Offset)) ? Offset : 0; } uint32_t DIALineNumber::getRelativeVirtualAddress() const { DWORD RVA = 0; return (S_OK == LineNumber->get_relativeVirtualAddress(&RVA)) ? RVA : 0; } uint64_t DIALineNumber::getVirtualAddress() const { ULONGLONG Addr = 0; return (S_OK == LineNumber->get_virtualAddress(&Addr)) ? Addr : 0; } uint32_t DIALineNumber::getLength() const { DWORD Length = 0; return (S_OK == LineNumber->get_length(&Length)) ? Length : 0; } uint32_t DIALineNumber::getSourceFileId() const { DWORD Id = 0; return (S_OK == LineNumber->get_sourceFileId(&Id)) ? Id : 0; } uint32_t DIALineNumber::getCompilandId() const { DWORD Id = 0; return (S_OK == LineNumber->get_compilandId(&Id)) ? Id : 0; } bool DIALineNumber::isStatement() const { BOOL Statement = 0; return (S_OK == LineNumber->get_statement(&Statement)) ? Statement : false; }
7cec02234d04259c76a0df5975f2c2419c2a51d8
7dc3648dca4bd22c3ac5a59c96687fc8baf72d02
/APro4/examples/cbuilder/exanswe0.cpp
9609ae1178e0598c4e1686d5bdf742f105405b90
[]
no_license
bravesoftdz/work
53fd5aa2baa79751b32645557352a0af262e8c76
c9d1bc8645dced6db136b50fe0ec80743a1adb3c
refs/heads/master
2020-03-25T10:21:18.478804
2018-08-04T18:12:56
2018-08-04T18:12:56
143,691,114
1
4
null
null
null
null
UTF-8
C++
false
false
3,703
cpp
exanswe0.cpp
// ***** BEGIN LICENSE BLOCK ***** // * Version: MPL 1.1 // * // * The contents of this file are subject to the Mozilla Public License Version // * 1.1 (the "License"); you may not use this file except in compliance with // * the License. You may obtain a copy of the License at // * http://www.mozilla.org/MPL/ // * // * Software distributed under the License is distributed on an "AS IS" basis, // * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License // * for the specific language governing rights and limitations under the // * License. // * // * The Original Code is TurboPower Async Professional // * // * The Initial Developer of the Original Code is // * TurboPower Software // * // * Portions created by the Initial Developer are Copyright (C) 1991-2002 // * the Initial Developer. All Rights Reserved. // * // * Contributor(s): // * // * ***** END LICENSE BLOCK ***** /*********************************************************/ /* EXANSWE0.CPP */ /*********************************************************/ //--------------------------------------------------------------------------- #include <vcl\vcl.h> #pragma hdrstop #include "exanswe0.h" //--------------------------------------------------------------------------- #pragma link "AdPort" #pragma link "AdMdm" #pragma link "OoMisc" #pragma resource "*.dfm" TForm1 *Form1; void TForm1::AddStatus(const String Msg) { ListBox1->Items->Add(Msg); ListBox1->ItemIndex = ListBox1->Items->Count - 1; } //--------------------------------------------------------------------------- __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TForm1::BitBtn1Click(TObject *Sender) { AdModem1->AnswerOnRing = 2; AdModem1->AutoAnswer(); } //--------------------------------------------------------------------------- void __fastcall TForm1::ApdModem1GotLineSpeed(TObject *M, int Speed) { AddStatus("Connected at " + IntToStr(Speed) + " baud"); } //--------------------------------------------------------------------------- void __fastcall TForm1::FormCreate(TObject *Sender) { ApdComPort1->Open = true; } //--------------------------------------------------------------------------- void __fastcall TForm1::AdModem1ModemCallerID(TAdCustomModem *Modem, TApdCallerIDInfo &CallerID) { AddStatus("CallerID Name: " + CallerID.Name); AddStatus("CallerID Number: " + CallerID.Number); } //--------------------------------------------------------------------------- void __fastcall TForm1::AdModem1ModemConnect(TAdCustomModem *Modem) { AddStatus("Connected"); } //--------------------------------------------------------------------------- void __fastcall TForm1::AdModem1ModemDisconnect(TAdCustomModem *Modem) { AddStatus("Disconnected"); } //--------------------------------------------------------------------------- void __fastcall TForm1::AdModem1ModemLog(TAdCustomModem *Modem, TApdModemLogCode LogCode) { AddStatus("Log event: " + Modem->ModemLogToString(LogCode)); } //--------------------------------------------------------------------------- void __fastcall TForm1::AdModem1ModemStatus(TAdCustomModem *Modem, TApdModemState ModemState) { AddStatus("Status event: " + Modem->ModemStatusMsg(ModemState)); } //--------------------------------------------------------------------------- void __fastcall TForm1::AdModem1ModemFail(TAdCustomModem *Modem, int FailCode) { AddStatus("Failed: " + Modem->FailureCodeMsg(FailCode)); } //---------------------------------------------------------------------------
e00cab21f54735c3580443115d3b17a34966a389
0adc8fff0bf3051144687bff4abaa319f631c027
/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino
fe1aa63f79d821151591514e97c58490c82e3f51
[ "MIT" ]
permissive
f4goh/arduino-LoRa
3cc6495b56821d88cb68a2d902335f4abb64dacc
5178191991e81ed18fa4daa2bcad6e0d7cc00e28
refs/heads/master
2020-03-07T14:46:25.665775
2018-03-31T14:50:59
2018-03-31T14:50:59
127,535,267
1
0
MIT
2018-03-31T13:39:17
2018-03-31T13:39:17
null
UTF-8
C++
false
false
1,308
ino
LoRaDumpRegisters.ino
/* LoRa register dump This examples shows how to inspect and output the LoRa radio's registers on the Serial interface */ #define RADIO_RESET_PORT PC_0 #define RADIO_MOSI_PORT PA_7 #define RADIO_MISO_PORT PA_6 #define RADIO_SCLK_PORT PB_3 #define RADIO_NSS_PORT PA_15 #define RADIO_DIO_0_PORT PB_4 #define RADIO_DIO_1_PORT PB_1 #define RADIO_DIO_2_PORT PB_0 #define RADIO_DIO_3_PORT PC_13 #define RADIO_DIO_4_PORT PA_5 #define RADIO_DIO_5_PORT PA_4 #include <SPI.h> // include libraries #include <LoRa.h> void setup() { Serial.begin(9600); // initialize serial while (!Serial); Serial.println("LoRa Dump Registers"); // override the default CS, reset, and IRQ pins (optional) // LoRa.setPins(7, 6, 1); // set CS, reset, IRQ pin SPI.setMISO(RADIO_MISO_PORT); SPI.setMOSI(RADIO_MOSI_PORT); SPI.setSCLK(RADIO_SCLK_PORT); SPI.setSSEL(RADIO_NSS_PORT); LoRa.setPins(RADIO_NSS_PORT, RADIO_RESET_PORT, RADIO_DIO_0_PORT); if (!LoRa.begin(915E6)) { // initialize ratio at 915 MHz Serial.println("LoRa init failed. Check your connections."); while (true); // if failed, do nothing } LoRa.dumpRegisters(Serial); } void loop() { }
3d98f44ff9ebd8a52a5ac88c9d48dae3364dac14
e922f9dd851d17057a208fd45570cc4849c2c1cc
/Set 8/A8/Bubble.cpp
6df121fc1b1777dfa225659134a25ad2d0535737
[]
no_license
rocketminer24/CSCI-261
86c7ce33c9a94cda8f16e5c2860eb05a79058c88
59d22422b39087a885339ac5e3e45207d85e747f
refs/heads/master
2020-05-31T03:14:21.441654
2019-06-04T02:05:34
2019-06-04T02:05:34
190,078,142
0
0
null
null
null
null
UTF-8
C++
false
false
2,025
cpp
Bubble.cpp
// // Created by Jarod Spencer1 on 2019-04-27. // #include "Bubble.h" using namespace std; //default constructor Bubble::Bubble() { myBubble.setRadius(radius); myBubble.setPosition(xPos,yPos); myBubble.setFillColor(Color::White); xDir = 0.1; yDir = 0.2; } //function initializes a Bubble object to random characteristics within specific ranges void Bubble::initializeBubble() { xPos = (rand() % 301) + 100; yPos = (rand() % 301) + 100; xDir = (double)(rand() % 26) / 10.0; yDir = (double)(rand() % 26) / 10.0; radius = (rand() % 41) + 10; myBubble.setFillColor(Color(rand() % 256, rand() % 256, rand() % 256)); } //function initializes an added Bubble object to specified location and other characteristics to // random in their respective ranges void Bubble::initializeNewBubble(const int &xLocation, const int &yLocation) { xPos = xLocation; yPos = yLocation; xDir = (double)(rand() % 26) / 10.0; yDir = (double)(rand() % 26) / 10.0; radius = (rand() % 41) + 10; myBubble.setFillColor(Color(rand() % 256, rand() % 256, rand() % 256)); } //updates and sets new position of a Bubble object void Bubble::updatePosition() { xPos += xDir; yPos += yDir; myBubble.setPosition(xPos, yPos); } //allows user to manually set initial x direction of a Bubble object void Bubble::setInitialXDir(const double &xDir) { this->xDir = xDir; } //allows user to manually set initial y direction of a Bubble object void Bubble::setInitialYDir(const double &yDir) { this->yDir = yDir; } //draws a Bubble object in the window void Bubble::drawBubble(RenderWindow &window) { window.draw(myBubble); } //bounces a Bubble object if it is at the edge of the window void Bubble::bounce(const int &windowWidth, const int &windowHeight) { if (xPos >= (windowWidth - (2 * radius)) || xPos <= 0) { xDir = (-1) * xDir; } if (yPos >= (windowHeight - (2 * radius)) || yPos <= 0) { yDir = (-1) * yDir; } }
09fe7fa9c2d960a61dd7fd6f5a37ecc013bf45be
1ed046feef46d52738a8c9a987f7daf5e0af997a
/sdk/storage/azure-storage-queues/test/ut/queue_client_test.cpp
86a598fc2315928fa52285c37751d7fb40d870b6
[ "LicenseRef-scancode-generic-cla", "MIT", "BSD-3-Clause", "curl", "LGPL-2.1-or-later", "Apache-2.0" ]
permissive
Azure/azure-sdk-for-cpp
72809cf59d2a6f262a6dd01d6f78661f81e70b93
dd236311193c6a3debf3b12c47f14e49a20c72c7
refs/heads/main
2023-08-25T11:57:56.773041
2023-08-23T23:33:32
2023-08-23T23:33:32
233,147,271
159
134
MIT
2023-09-14T21:25:14
2020-01-10T23:29:08
C++
UTF-8
C++
false
false
8,598
cpp
queue_client_test.cpp
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #include "queue_client_test.hpp" #include <chrono> #include <thread> namespace Azure { namespace Storage { namespace Queues { namespace Models { bool operator==(const SignedIdentifier& lhs, const SignedIdentifier& rhs) { return lhs.Id == rhs.Id && lhs.StartsOn.HasValue() == rhs.StartsOn.HasValue() && (!lhs.StartsOn.HasValue() || lhs.StartsOn.Value() == rhs.StartsOn.Value()) && lhs.ExpiresOn.HasValue() == rhs.ExpiresOn.HasValue() && (!lhs.ExpiresOn.HasValue() || lhs.ExpiresOn.Value() == rhs.ExpiresOn.Value()) && lhs.Permissions == rhs.Permissions; } }}}} // namespace Azure::Storage::Queues::Models namespace Azure { namespace Storage { namespace Test { void QueueClientTest::SetUp() { StorageTest::SetUp(); if (shouldSkipTest()) { return; } auto options = InitStorageClientOptions<Queues::QueueClientOptions>(); m_queueServiceClient = std::make_shared<Queues::QueueServiceClient>( Queues::QueueServiceClient::CreateFromConnectionString( StandardStorageConnectionString(), options)); m_queueName = GetLowercaseIdentifier(); m_queueClient = std::make_shared<Queues::QueueClient>(m_queueServiceClient->GetQueueClient(m_queueName)); while (true) { try { m_queueClient->Create(); break; } catch (StorageException& e) { if (e.ErrorCode != "QueueBeingDeleted") { throw; } SUCCEED() << "Queue is being deleted. Will try again after 3 seconds."; std::this_thread::sleep_for(std::chrono::seconds(3)); } } m_resourceCleanupFunctions.push_back( [queueClient = *m_queueClient]() { queueClient.Delete(); }); } Queues::QueueClient QueueClientTest::GetQueueClientForTest( const std::string& queueName, Queues::QueueClientOptions clientOptions) { InitStorageClientOptions(clientOptions); auto queueClient = Queues::QueueClient::CreateFromConnectionString( StandardStorageConnectionString(), queueName, clientOptions); m_resourceCleanupFunctions.push_back([queueClient]() { queueClient.Delete(); }); return queueClient; } TEST_F(QueueClientTest, Constructors) { auto keyCredential = _internal::ParseConnectionString(StandardStorageConnectionString()).KeyCredential; auto getSas = [&]() { auto sasStartsOn = std::chrono::system_clock::now() - std::chrono::minutes(5); auto sasExpiresOn = std::chrono::system_clock::now() + std::chrono::minutes(60); Sas::AccountSasBuilder accountSasBuilder; accountSasBuilder.Protocol = Sas::SasProtocol::HttpsAndHttp; accountSasBuilder.StartsOn = sasStartsOn; accountSasBuilder.ExpiresOn = sasExpiresOn; accountSasBuilder.Services = Sas::AccountSasServices::Queue; accountSasBuilder.ResourceTypes = Sas::AccountSasResource::All; accountSasBuilder.SetPermissions(Sas::AccountSasPermissions::Read); auto sasToken = accountSasBuilder.GenerateSasToken(*keyCredential); return sasToken; }; auto clientOptions = InitStorageClientOptions<Queues::QueueClientOptions>(); { auto queueClient = Queues::QueueClient::CreateFromConnectionString( StandardStorageConnectionString(), m_queueName, clientOptions); EXPECT_NO_THROW(queueClient.GetProperties()); } { auto queueClient = Queues::QueueClient(m_queueClient->GetUrl(), keyCredential, clientOptions); EXPECT_NO_THROW(queueClient.GetProperties()); } { auto queueClient = Queues::QueueClient(m_queueClient->GetUrl() + getSas(), clientOptions); EXPECT_NO_THROW(queueClient.GetProperties()); } } TEST_F(QueueClientTest, CreateDelete) { auto queueClient = GetQueueClientForTest(LowercaseRandomString()); Azure::Storage::Queues::CreateQueueOptions options; options.Metadata = RandomMetadata(); auto res = queueClient.Create(options); EXPECT_TRUE(res.Value.Created); EXPECT_FALSE(res.RawResponse->GetHeaders().at(_internal::HttpHeaderRequestId).empty()); EXPECT_FALSE(res.RawResponse->GetHeaders().at(_internal::HttpHeaderDate).empty()); EXPECT_FALSE(res.RawResponse->GetHeaders().at(_internal::HttpHeaderXMsVersion).empty()); res = queueClient.Create(options); EXPECT_FALSE(res.Value.Created); res = queueClient.Create(); EXPECT_FALSE(res.Value.Created); auto res2 = queueClient.Delete(); EXPECT_FALSE(res2.RawResponse->GetHeaders().at(_internal::HttpHeaderRequestId).empty()); EXPECT_FALSE(res2.RawResponse->GetHeaders().at(_internal::HttpHeaderDate).empty()); EXPECT_FALSE(res2.RawResponse->GetHeaders().at(_internal::HttpHeaderXMsVersion).empty()); queueClient = GetQueueClientForTest(LowercaseRandomString() + "UPPERCASE"); EXPECT_THROW(queueClient.Create(), StorageException); queueClient = GetQueueClientForTest(LowercaseRandomString()); { auto response = queueClient.Delete(); EXPECT_FALSE(response.Value.Deleted); } { auto response = queueClient.Create(); EXPECT_TRUE(response.Value.Created); } { auto response = queueClient.Delete(); EXPECT_TRUE(response.Value.Deleted); } } TEST_F(QueueClientTest, Metadata) { Azure::Storage::Metadata metadata; metadata["key1"] = "one"; metadata["key2"] = "TWO"; auto res = m_queueClient->SetMetadata(metadata); EXPECT_FALSE(res.RawResponse->GetHeaders().at(_internal::HttpHeaderRequestId).empty()); EXPECT_FALSE(res.RawResponse->GetHeaders().at(_internal::HttpHeaderDate).empty()); EXPECT_FALSE(res.RawResponse->GetHeaders().at(_internal::HttpHeaderXMsVersion).empty()); auto res2 = m_queueClient->GetProperties(); EXPECT_FALSE(res2.RawResponse->GetHeaders().at(_internal::HttpHeaderRequestId).empty()); EXPECT_FALSE(res2.RawResponse->GetHeaders().at(_internal::HttpHeaderDate).empty()); EXPECT_FALSE(res2.RawResponse->GetHeaders().at(_internal::HttpHeaderXMsVersion).empty()); auto properties = res2.Value; EXPECT_EQ(properties.Metadata, metadata); Queues::ListQueuesOptions listOptions; listOptions.Prefix = m_queueName; listOptions.Include = Queues::Models::ListQueuesIncludeFlags::Metadata; for (auto page = m_queueServiceClient->ListQueues(listOptions); page.HasPage(); page.MoveToNextPage()) { for (auto& q : page.Queues) { if (q.Name == m_queueName) { EXPECT_EQ(q.Metadata, metadata); } } } metadata.clear(); m_queueClient->SetMetadata(metadata); properties = m_queueClient->GetProperties().Value; EXPECT_TRUE(properties.Metadata.empty()); } TEST_F(QueueClientTest, AccessControlList) { auto queueClient = *m_queueClient; std::vector<Queues::Models::SignedIdentifier> signedIdentifiers; { Queues::Models::SignedIdentifier identifier; identifier.Id = RandomString(64); identifier.StartsOn = std::chrono::system_clock::now() - std::chrono::minutes(1); identifier.ExpiresOn = std::chrono::system_clock::now() + std::chrono::minutes(1); identifier.Permissions = "r"; signedIdentifiers.emplace_back(identifier); } { Queues::Models::SignedIdentifier identifier; identifier.Id = RandomString(64); identifier.StartsOn = std::chrono::system_clock::now() - std::chrono::minutes(2); identifier.ExpiresOn.Reset(); /* cspell:disable-next-line */ identifier.Permissions = "raup"; signedIdentifiers.emplace_back(identifier); } { Queues::Models::SignedIdentifier identifier; identifier.Id = RandomString(64); identifier.Permissions = "r"; signedIdentifiers.emplace_back(identifier); } { Queues::Models::SignedIdentifier identifier; identifier.Id = RandomString(64); identifier.StartsOn = std::chrono::system_clock::now() - std::chrono::minutes(1); identifier.ExpiresOn = std::chrono::system_clock::now() + std::chrono::minutes(1); signedIdentifiers.emplace_back(identifier); } Queues::Models::QueueAccessPolicy accessPolicy; accessPolicy.SignedIdentifiers = signedIdentifiers; EXPECT_NO_THROW(queueClient.SetAccessPolicy(accessPolicy)); auto ret = queueClient.GetAccessPolicy(); if (m_testContext.IsLiveMode()) { EXPECT_EQ(ret.Value.SignedIdentifiers, signedIdentifiers); } queueClient.Delete(); } }}} // namespace Azure::Storage::Test
3cbb8ab9d8e763318e62fd7cbc9f1bd3bc919434
360835b2f5963d0ced8725eee09b08680bd44217
/Examen _1/mainwindow.cpp
6170219eff5184e22f71347aa832fc25f8e1cc8a
[]
no_license
jorvasquez/Examen-1-Estructuras
808ff3cb8cd6f2b327760845d32a401b5adaaba8
44becbd7c6055f886f9b438b7f51ec5cfc3f14f5
refs/heads/master
2020-03-31T20:38:33.829357
2018-10-11T14:28:59
2018-10-11T14:28:59
152,548,825
0
0
null
null
null
null
UTF-8
C++
false
false
7,718
cpp
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); ui->lineEdit->setText(intToQString(getPresicion())); } MainWindow::~MainWindow() { delete ui; } int MainWindow::getPresicion(){ return presicion; } int MainWindow::setPresicion(int pPresicion){ presicion=pPresicion; } void MainWindow::on_disPres_clicked() { if(getPresicion()>0){ setPresicion(getPresicion()-1); ui->lineEdit->setText(intToQString(getPresicion())); } } void MainWindow::on_aumPres_clicked() { setPresicion(getPresicion()+1); ui->lineEdit->setText(intToQString(getPresicion())); } void MainWindow::on_convBin_clicked() { QString numero_str=ui->lineDec->text(); ListaCircular<char> lista= construirListaDec(numero_str); QString numeroResultado=obtenerParteEnteraStr(obtenerParteEntera(lista)); if(getPresicion()>0){ numeroResultado+='.'+ obtenerMantisaStr(obtenerMantisa(lista),getPresicion()); } ui->lineBin->setText(numeroResultado); } void MainWindow::on_convDec_clicked() { if(ui->lineBin->text()!=""){ ListaCircular<char> hola=construirListaDec(ui->lineBin->text()); QString num_str; if(getPresicion()!=0){ num_str=QString(obtenerParteEnteraDec(hola)+'.'+obtenerParteDecimalDec(hola)); ui->lineDec->setText(ajustarPresicion(num_str,getPresicion())); }else{ num_str=QString(obtenerParteEnteraDec(hola)); ui->lineDec->setText(num_str); } } } ListaCircular<char> MainWindow::construirListaDec(QString numeroDecimal){ char hola=0; ListaCircular<char> lista(0); bool aparecePunto=false; for(int n=0;n<numeroDecimal.length();n++){ if (numeroDecimal.at(n)=='.'){ aparecePunto=true; } } if(!aparecePunto){ numeroDecimal+='.'; numeroDecimal+='0'; } for(int n=0; n<numeroDecimal.length();n++){ hola= (numeroDecimal.at(n).toLatin1()-'0'); lista.agregarSiguiente(hola); lista.avanzarEnLista(); } return lista; } //Lo siguiente son funciones para operar con String y con numeros QString obtenerParteEnteraDec(ListaCircular<char> lista){// esta funcion se encarga de obtener la parte entera de un numero en base 10 long long parteEntera=0; int valorHastaElPunto=contarHastaElPunto(lista); lista.irNodoInicio(); lista.avanzarEnLista(); while (valorHastaElPunto>-1){ parteEntera+=lista.getDatoNodoActual()*pow(2,valorHastaElPunto); lista.avanzarEnLista(); valorHastaElPunto--; } QString parteEntera_str=""; if (parteEntera==0){ parteEntera_str=QChar('0'); } char caracter=0; while (parteEntera>0){ caracter=(parteEntera%10 +'0'); parteEntera_str=QChar(caracter)+parteEntera_str; parteEntera=parteEntera/10; } return parteEntera_str; } QString obtenerParteDecimalDec(ListaCircular<char> lista){// esto optiene la mantisa de una numero en base 10 long double parteDecimal=0; int valorDespuesDelPunto=contarDespuesdelPunto(lista); lista.irNodoInicio(); do{ lista.avanzarEnLista(); } while(lista.getDatoNodoActual()!=('.'-'0')); lista.avanzarEnLista(); int cont=1; while (valorDespuesDelPunto-cont>=0){ parteDecimal+=lista.getDatoNodoActual()*pow(0.5,cont); lista.avanzarEnLista(); cont++; } long double diez= 10.0000; char caracter; QString parteDecimal_str=""; while (parteDecimal!=0){ caracter=lround(floor(fmod((parteDecimal*diez),diez))+'0'); parteDecimal_str=parteDecimal_str+QChar(caracter); parteDecimal=(parteDecimal*diez)-lround(floor(fmod((parteDecimal*diez),diez))); } if (parteDecimal_str==""){ parteDecimal_str+='0'; } return parteDecimal_str; } // esta funcion se encarga de contar la cantidad de digitos de la parte entera int contarHastaElPunto(ListaCircular<char> lista){ int cont=-2; lista.irNodoInicio(); while(lista.getDatoNodoActual()!=('.'-'0')){ lista.avanzarEnLista(); cont++;//1001. } return cont; } // ajusta la presicion para que imprima unicamenta la cantidad de caracteres de presicion. QString ajustarPresicion(QString numero,int pPresicion){ if(pPresicion<0){ pPresicion=0; } QString numeroResultado; int n=0; while(numero.at(n)!='.'&& n<=numero.length()){ numeroResultado=numeroResultado+numero.at(n); n++; } numeroResultado=numeroResultado+numero.at(n); //Cambio if(pPresicion==0){ return numeroResultado+'0'; } n++; while(pPresicion>0 && n<numero.length()){ numeroResultado=numeroResultado+numero.at(n); pPresicion--; n++; } return numeroResultado; } // pasa de un entero a un string QString intToQString(int numero){ char caracter; QString numeroStr=""; bool negative=false; if (numero<0){ numero=-numero; negative=true; } if (numero==0){ caracter='0'; numeroStr=numeroStr+caracter; return numeroStr; } while(numero>0){ caracter= numero%10+'0'; numeroStr=caracter+numeroStr; numero=numero/10; } qDebug()<< numeroStr; if(negative){ numeroStr='-'+numeroStr; } return numeroStr; } // esta funcion se encarga de contar la cantidad de digitos que tiene la mantisa int contarDespuesdelPunto(ListaCircular<char> lista){ int cont=1; lista.irNodoInicio(); while(lista.getDatoNodoActual()!=('.'-'0')){ lista.avanzarEnLista(); } lista.avanzarEnLista(); while(lista.verSiguiente()){ lista.avanzarEnLista(); cont++;//1001. } return cont; } // obtiene el string de la mantisa double long obtenerMantisa(ListaCircular<char> lista){ lista.irNodoInicio(); int n=0; while(lista.getDatoNodoActual()!='.'-'0'){ lista.avanzarEnLista(); n++; } lista.avanzarEnLista(); double long valor=0; int j=1; while(lista.verSiguiente()){ valor += lista.getDatoNodoActual()/pow(10,j); lista.avanzarEnLista(); j++; } valor += lista.getDatoNodoActual()/pow(10,j); return valor; } // esto obtiene la parte entera long long obtenerParteEntera(ListaCircular<char> lista){ lista.irNodoInicio(); long long valor=0; int n=0; while(lista.getDatoNodoActual()!='.'-'0'){ lista.avanzarEnLista(); n++; } lista.irNodoInicio(); n--; while(lista.getDatoNodoActual()!='.'-'0'){ valor+=lista.getDatoNodoActual()*pow(10,n); lista.avanzarEnLista(); n--; } return valor; } // esto pasa de un numero de tipo long long a String QString obtenerParteEnteraStr(long long numero){ QString valorStr=""; char caracter; if (numero==0){ valorStr+='0'; return valorStr; } while(numero>0){ caracter=numero%2+'0'; valorStr=QChar(caracter)+valorStr; numero=numero/2; } return valorStr; } // obtiene el String del numero double long numero, tomando en cuenta la presicion QString obtenerMantisaStr(double long numero, int presicion){ QString valorStr=""; if (numero==0){ valorStr+='0'; return valorStr; } while(presicion>0){ numero=numero*2; if(numero<1){ valorStr+='0'; } if (numero>=1){ valorStr+='1'; numero=numero-1; } presicion--; } return valorStr; } //long long obtenerParteEntera(QString numero);
457d12b2945c1e4df16de273b69c8f7beabf2f0c
2d9d555c3369cca1be12432dddb1db734ff326e3
/HeapMin.cpp
862e8550c420a97c42e82c022a2c3bb7d28a8709
[]
no_license
mmatuk/Minimum_Spanning_Tree
98f32672ae60bbe8851e3ffcccb5455f2d571f7a
b0925caedeca82036f8e6786395fbb2e65d83f5e
refs/heads/master
2021-09-09T09:49:12.211999
2018-03-14T21:43:37
2018-03-14T21:43:37
116,510,693
1
0
null
null
null
null
UTF-8
C++
false
false
3,268
cpp
HeapMin.cpp
//******************************************************* //Author: Matt Matuk //Created: 09/07/2017 //Source File: Heap.cpp //Description: // //Editor: Emacs //******************************************************* #include <iostream> #include <string> #include <cstdlib> using namespace std; template <class T> HeapMin<T>::HeapMin() : MAX_SIZE(100) { heapSize = 0; A = new T *[MAX_SIZE]; } template <class T> HeapMin<T>::HeapMin(int const maxSize) : MAX_SIZE(maxSize) { heapSize = 0; A = new T *[maxSize]; } template <class T> void HeapMin<T>::PrintHeap() { for (int i = 0; i < heapSize; i++) { cout << *A[i]; } cout << "\n"; } template <class T> int HeapMin<T>::Parent(int const i) { if (i % 2 == 0) { return ((i - 1) / 2); } else { return (i / 2); } } template <class T> int HeapMin<T>::LeftChild(int const i) { return ((2 * i) + 1); } template <class T> int HeapMin<T>::RightChild(int const i) { return ((2 * i) + 2); } template <class T> void HeapMin<T>::BuildHeap() { for (int i = ((heapSize / 2) - 1); i >= 0; i--) { Heapify(i); } } template <class T> void HeapMin<T>::Heapify(int const i) { int l = LeftChild(i); // index of left child int r = RightChild(i); // index of right child int smallest = -1; if (l <= heapSize - 1 && A[l] < A[i]) { smallest = l; } else { smallest = i; } if (r <= heapSize - 1 && A[r] < A[smallest]) { smallest = r; } if (smallest != i) { swap(A[i], A[smallest]); Heapify(smallest); } } template <class T> void HeapMin<T>::Heapify(T *arr, int const i, int size) { int l = LeftChild(i); int r = RightChild(i); int smallest = -1; if (l <= size - 1 && arr[l] < arr[i]) { smallest = l; } else { smallest = i; } if (r <= size - 1 && arr[r] < arr[smallest]) { smallest = r; } if (smallest != i) { swap(arr[i], arr[smallest]); Heapify(arr, smallest, size); } } template <class T> void HeapMin<T>::swap(T *first, T *second) { T *temp = first; first = second; second = temp; } template <class T> T *HeapMin<T>::ExtractMin() { if (heapSize < 1) { cout << "Error: heap Underflow"; return NULL; } else { T *min = A[0]; A[0] = A[heapSize - 1]; heapSize--; Heapify(0); return min; } } template <class T> T HeapMin<T>::Minimun() { return A[0]; } template <class T> void HeapMin<T>::DeleteHeap() { delete[] A; } /* * Returns -1 if no more room in heap array, else returns 0 if insert completed; */ template <class T> int HeapMin<T>::Insert(T *key) { if (heapSize < MAX_SIZE) { heapSize++; int i = heapSize - 1; while (i > 0 && A[Parent(i)] > key) { A[i] = A[Parent(i)]; i = Parent(i); } A[i] = key; return 0; } else { return -1; } } template <class T> T *HeapMin<T>::HeapSort() { T *temp = new T[heapSize]; int tempSize = heapSize; copy(A, A + heapSize, temp); for (int i = tempSize - 1; i >= 1; i--) { swap(temp[0], temp[i]); tempSize--; Heapify(temp, 0, tempSize); } return temp; } template <class T> int HeapMin<T>::getSize() { return heapSize; }